2021-11-12 02:42:10 -05:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
#
|
|
|
|
# This file is part of LiteX-Boards.
|
|
|
|
#
|
|
|
|
# Copyright (c) 2021 Florent Kermarrec <florent@enjoy-digital.fr>
|
|
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
|
|
|
from migen import *
|
|
|
|
from migen.genlib.resetsync import AsyncResetSynchronizer
|
|
|
|
|
2023-02-23 03:09:33 -05:00
|
|
|
from litex.gen import *
|
2024-10-08 07:40:30 -04:00
|
|
|
from litex.gen.genlib.misc import WaitTimer
|
2022-10-27 10:58:55 -04:00
|
|
|
|
2021-11-12 02:42:10 -05:00
|
|
|
from litex_boards.platforms import efinix_trion_t20_mipi_dev_kit
|
|
|
|
|
|
|
|
from litex.build.generic_platform import *
|
|
|
|
|
|
|
|
from litex.soc.cores.clock import *
|
|
|
|
from litex.soc.integration.soc_core import *
|
|
|
|
from litex.soc.integration.builder import *
|
|
|
|
from litex.soc.cores.led import LedChaser
|
|
|
|
|
|
|
|
# CRG ----------------------------------------------------------------------------------------------
|
|
|
|
|
2022-10-27 10:58:55 -04:00
|
|
|
class _CRG(LiteXModule):
|
2021-11-12 02:42:10 -05:00
|
|
|
def __init__(self, platform, sys_clk_freq):
|
2023-07-26 10:56:27 -04:00
|
|
|
self.rst = Signal()
|
2022-10-27 10:58:55 -04:00
|
|
|
self.cd_sys = ClockDomain()
|
2024-10-08 07:40:30 -04:00
|
|
|
self.cd_rst = ClockDomain(reset_less=True)
|
2021-11-12 02:42:10 -05:00
|
|
|
|
|
|
|
# # #
|
|
|
|
|
|
|
|
clk50 = platform.request("clk50")
|
|
|
|
rst_n = platform.request("user_btn", 0)
|
|
|
|
|
2024-10-08 07:40:30 -04:00
|
|
|
self.comb += self.cd_rst.clk.eq(clk50)
|
|
|
|
|
|
|
|
# A pulse is necessary to do a reset.
|
|
|
|
self.rst_pulse = Signal()
|
|
|
|
self.reset_timer = reset_timer = ClockDomainsRenamer("rst")(WaitTimer(25e-6*platform.default_clk_freq))
|
|
|
|
self.comb += self.rst_pulse.eq(self.rst ^ reset_timer.done)
|
|
|
|
self.comb += reset_timer.wait.eq(self.rst)
|
|
|
|
|
2021-11-12 02:42:10 -05:00
|
|
|
# PLL
|
2022-10-27 10:58:55 -04:00
|
|
|
self.pll = pll = TRIONPLL(platform)
|
2024-10-08 07:40:30 -04:00
|
|
|
self.comb += pll.reset.eq(~rst_n | self.rst_pulse)
|
|
|
|
pll.register_clkin(clk50, platform.default_clk_freq)
|
2021-11-12 02:42:10 -05:00
|
|
|
pll.create_clkout(self.cd_sys, sys_clk_freq, with_reset=True)
|
|
|
|
|
|
|
|
# BaseSoC ------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class BaseSoC(SoCCore):
|
2022-11-08 05:54:17 -05:00
|
|
|
def __init__(self, sys_clk_freq=100e6, with_spi_flash=False, with_led_chaser=True, **kwargs):
|
2021-11-12 02:42:10 -05:00
|
|
|
platform = efinix_trion_t20_mipi_dev_kit.Platform()
|
|
|
|
|
|
|
|
# CRG --------------------------------------------------------------------------------------
|
2022-10-27 10:58:55 -04:00
|
|
|
self.crg = _CRG(platform, sys_clk_freq)
|
2021-11-12 02:42:10 -05:00
|
|
|
|
2022-04-21 06:17:26 -04:00
|
|
|
# SoCCore ----------------------------------------------------------------------------------
|
|
|
|
SoCCore.__init__(self, platform, sys_clk_freq, ident="LiteX SoC on Efinix Trion T20 MIPI Dev Kit", **kwargs)
|
|
|
|
|
2021-11-12 02:42:10 -05:00
|
|
|
# SPI Flash --------------------------------------------------------------------------------
|
|
|
|
if with_spi_flash:
|
|
|
|
from litespi.modules import W25Q32JV
|
|
|
|
from litespi.opcodes import SpiNorFlashOpCodes as Codes
|
|
|
|
self.add_spi_flash(mode="1x", module=W25Q32JV(Codes.READ_1_1_1), with_master=True)
|
|
|
|
|
|
|
|
# Leds -------------------------------------------------------------------------------------
|
|
|
|
if with_led_chaser:
|
2022-10-27 10:58:55 -04:00
|
|
|
self.leds = LedChaser(
|
2021-11-12 02:42:10 -05:00
|
|
|
pads = platform.request_all("user_led"),
|
|
|
|
sys_clk_freq = sys_clk_freq)
|
|
|
|
|
|
|
|
# Build --------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
def main():
|
2022-11-06 15:39:52 -05:00
|
|
|
from litex.build.parser import LiteXArgumentParser
|
2022-11-08 04:41:35 -05:00
|
|
|
parser = LiteXArgumentParser(platform=efinix_trion_t20_mipi_dev_kit.Platform, description="LiteX SoC on Efinix Trion T20 MIPI Dev Kit.")
|
|
|
|
parser.add_target_argument("--sys-clk-freq", default=100e6, type=float, help="System clock frequency.")
|
|
|
|
parser.add_target_argument("--with-spi-flash", action="store_true", help="Enable SPI Flash (MMAPed).")
|
2021-11-12 02:42:10 -05:00
|
|
|
args = parser.parse_args()
|
|
|
|
|
|
|
|
soc = BaseSoC(
|
2022-11-08 04:41:35 -05:00
|
|
|
sys_clk_freq = args.sys_clk_freq,
|
2021-11-12 02:42:10 -05:00
|
|
|
with_spi_flash = args.with_spi_flash,
|
2022-11-07 02:43:26 -05:00
|
|
|
**parser.soc_argdict)
|
2022-11-05 03:07:14 -04:00
|
|
|
builder = Builder(soc, **parser.builder_argdict)
|
2022-05-06 09:14:32 -04:00
|
|
|
if args.build:
|
2022-11-05 03:07:14 -04:00
|
|
|
builder.build(**parser.toolchain_argdict)
|
2021-11-12 02:42:10 -05:00
|
|
|
|
|
|
|
if args.load:
|
|
|
|
prog = soc.platform.create_programmer()
|
2022-03-17 04:21:05 -04:00
|
|
|
prog.load_bitstream(builder.get_bitstream_filename(mode="sram"))
|
2021-11-12 02:42:10 -05:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|