2021-01-30 05:14:51 -05:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
#
|
|
|
|
# This file is part of LiteX-Boards.
|
|
|
|
#
|
|
|
|
# Copyright (c) 2015-2019 Florent Kermarrec <florent@enjoy-digital.fr>
|
|
|
|
# Copyright (c) 2020-2021 Romain Dolbeau <romain@dolbeau.org>
|
|
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
2021-03-29 10:22:39 -04:00
|
|
|
# Support for the ZTEX USB-FGPA Module 2.13:https://www.ztex.de/usb-fpga-2/usb-fpga-2.13.e.html.
|
|
|
|
# With (no-so-optional) expansion, either the ZTEX Debug board:
|
|
|
|
# https://www.ztex.de/usb-fpga-2/debug.e.html
|
|
|
|
# Or the SBusFPGA adapter board:
|
|
|
|
# https://github.com/rdolbeau/SBusFPGA
|
|
|
|
|
2021-01-30 05:14:51 -05:00
|
|
|
from migen import *
|
|
|
|
|
|
|
|
from litex_boards.platforms import ztex213
|
|
|
|
from litex.build.xilinx.vivado import vivado_build_args, vivado_build_argdict
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
from litedram.modules import MT41J128M16
|
|
|
|
from litedram.phy import s7ddrphy
|
|
|
|
|
|
|
|
# CRG ----------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class _CRG(Module):
|
|
|
|
def __init__(self, platform, sys_clk_freq):
|
|
|
|
self.clock_domains.cd_sys = ClockDomain()
|
2022-04-01 05:30:38 -04:00
|
|
|
self.clock_domains.cd_sys4x = ClockDomain()
|
|
|
|
self.clock_domains.cd_sys4x_dqs = ClockDomain()
|
2021-01-30 05:14:51 -05:00
|
|
|
self.clock_domains.cd_idelay = ClockDomain()
|
2022-04-01 05:30:38 -04:00
|
|
|
self.clock_domains.cd_por = ClockDomain()
|
2021-01-30 05:14:51 -05:00
|
|
|
|
|
|
|
# # #
|
|
|
|
clk48 = platform.request("clk48")
|
|
|
|
|
|
|
|
self.submodules.pll = pll = S7MMCM(speedgrade=-1)
|
|
|
|
pll.register_clkin(clk48, 48e6)
|
|
|
|
pll.create_clkout(self.cd_sys, sys_clk_freq)
|
|
|
|
pll.create_clkout(self.cd_sys4x, 4*sys_clk_freq)
|
|
|
|
pll.create_clkout(self.cd_sys4x_dqs, 4*sys_clk_freq, phase=90)
|
|
|
|
pll.create_clkout(self.cd_idelay, 200e6)
|
|
|
|
|
|
|
|
# Power on reset
|
|
|
|
por_count = Signal(16, reset=2**16-1)
|
|
|
|
por_done = Signal()
|
|
|
|
self.comb += self.cd_por.clk.eq(clk48)
|
|
|
|
self.comb += por_done.eq(por_count == 0)
|
|
|
|
self.sync.por += If(~por_done, por_count.eq(por_count - 1))
|
|
|
|
self.comb += pll.reset.eq(~por_done)
|
|
|
|
|
|
|
|
self.submodules.idelayctrl = S7IDELAYCTRL(self.cd_idelay)
|
|
|
|
|
|
|
|
# BaseSoC ------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class BaseSoC(SoCCore):
|
2021-07-06 17:39:37 -04:00
|
|
|
def __init__(self, variant="ztex2.13a", sys_clk_freq=int(100e6), expansion="debug",
|
|
|
|
with_led_chaser=True, **kwargs):
|
2021-03-27 06:01:27 -04:00
|
|
|
platform = ztex213.Platform(variant=variant, expansion=expansion)
|
2021-01-30 05:14:51 -05:00
|
|
|
|
|
|
|
# CRG --------------------------------------------------------------------------------------
|
|
|
|
self.submodules.crg = _CRG(platform, sys_clk_freq)
|
|
|
|
|
2022-04-21 06:17:26 -04:00
|
|
|
# SoCCore ----------------------------------------------------------------------------------
|
|
|
|
SoCCore.__init__(self, platform, sys_clk_freq, ident="LiteX SoC on Ztex 2.13", **kwargs)
|
|
|
|
|
2021-01-30 05:14:51 -05:00
|
|
|
# DDR3 SDRAM -------------------------------------------------------------------------------
|
|
|
|
if not self.integrated_main_ram_size:
|
|
|
|
self.submodules.ddrphy = s7ddrphy.A7DDRPHY(platform.request("ddram"),
|
|
|
|
memtype = "DDR3",
|
|
|
|
nphases = 4,
|
|
|
|
sys_clk_freq = sys_clk_freq)
|
|
|
|
self.add_sdram("sdram",
|
2021-03-29 09:28:04 -04:00
|
|
|
phy = self.ddrphy,
|
2021-03-29 10:22:39 -04:00
|
|
|
module = MT41J128M16(sys_clk_freq, "1:4"),
|
2021-03-29 09:28:04 -04:00
|
|
|
l2_cache_size = kwargs.get("l2_size", 8192)
|
2021-01-30 05:14:51 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
# Leds -------------------------------------------------------------------------------------
|
2021-07-06 17:39:37 -04:00
|
|
|
if with_led_chaser:
|
|
|
|
self.submodules.leds = LedChaser(
|
|
|
|
pads = platform.request_all("user_led"),
|
|
|
|
sys_clk_freq = sys_clk_freq)
|
2021-01-30 05:14:51 -05:00
|
|
|
|
|
|
|
# Build --------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
def main():
|
2022-03-21 11:59:40 -04:00
|
|
|
from litex.soc.integration.soc import LiteXSoCArgumentParser
|
|
|
|
parser = LiteXSoCArgumentParser(description="LiteX SoC on Ztex 2.13")
|
2022-03-21 13:30:10 -04:00
|
|
|
target_group = parser.add_argument_group(title="Target options")
|
2022-05-06 09:14:32 -04:00
|
|
|
target_group.add_argument("--build", action="store_true", help="Build design.")
|
2022-03-21 13:30:10 -04:00
|
|
|
target_group.add_argument("--load", action="store_true", help="Load bitstream.")
|
|
|
|
target_group.add_argument("--expansion", default="debug", help="Expansion board (debug or sbus).")
|
|
|
|
target_group.add_argument("--sys-clk-freq", default=100e6, help="System clock frequency.")
|
|
|
|
target_group.add_argument("--with-spi-sdcard", action="store_true", help="Enable SPI-mode SDCard support.")
|
|
|
|
target_group.add_argument("--with-sdcard", action="store_true", help="Enable SDCard support.")
|
2021-01-30 05:14:51 -05:00
|
|
|
builder_args(parser)
|
2021-03-24 10:01:23 -04:00
|
|
|
soc_core_args(parser)
|
2021-01-30 05:14:51 -05:00
|
|
|
vivado_build_args(parser)
|
|
|
|
args = parser.parse_args()
|
|
|
|
|
2021-03-24 10:01:23 -04:00
|
|
|
soc = BaseSoC(sys_clk_freq=int(float(args.sys_clk_freq)), expansion=args.expansion, **soc_core_argdict(args))
|
2021-01-30 05:14:51 -05:00
|
|
|
assert not (args.with_spi_sdcard and args.with_sdcard)
|
|
|
|
if args.with_spi_sdcard:
|
2021-03-29 10:22:39 -04:00
|
|
|
soc.add_spi_sdcard() # SBus only
|
2021-01-30 05:14:51 -05:00
|
|
|
if args.with_sdcard:
|
2021-03-29 10:22:39 -04:00
|
|
|
soc.add_sdcard() # SBus only
|
2021-01-30 05:14:51 -05:00
|
|
|
builder = Builder(soc, **builder_argdict(args))
|
2022-05-06 09:14:32 -04:00
|
|
|
if args.build:
|
|
|
|
builder.build(**vivado_build_argdict(args))
|
2021-01-30 05:14:51 -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-01-30 05:14:51 -05:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|