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 *
|
|
|
|
|
2023-02-23 03:09:33 -05:00
|
|
|
from litex.gen import *
|
2022-10-27 10:58:55 -04:00
|
|
|
|
2021-01-30 05:14:51 -05:00
|
|
|
from litex_boards.platforms import ztex213
|
|
|
|
|
|
|
|
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 ----------------------------------------------------------------------------------------------
|
|
|
|
|
2022-10-27 10:58:55 -04:00
|
|
|
class _CRG(LiteXModule):
|
2021-01-30 05:14:51 -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()
|
|
|
|
self.cd_sys4x = ClockDomain()
|
|
|
|
self.cd_sys4x_dqs = ClockDomain()
|
|
|
|
self.cd_idelay = ClockDomain()
|
|
|
|
self.cd_por = ClockDomain()
|
2021-01-30 05:14:51 -05:00
|
|
|
|
|
|
|
# # #
|
|
|
|
clk48 = platform.request("clk48")
|
|
|
|
|
2022-10-27 10:58:55 -04:00
|
|
|
self.pll = pll = S7MMCM(speedgrade=-1)
|
2021-01-30 05:14:51 -05:00
|
|
|
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))
|
2023-07-26 10:56:27 -04:00
|
|
|
self.comb += pll.reset.eq(~por_done | self.rst)
|
2021-01-30 05:14:51 -05:00
|
|
|
|
2022-10-27 10:58:55 -04:00
|
|
|
self.idelayctrl = S7IDELAYCTRL(self.cd_idelay)
|
2021-01-30 05:14:51 -05:00
|
|
|
|
|
|
|
# BaseSoC ------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class BaseSoC(SoCCore):
|
2022-11-08 05:54:17 -05:00
|
|
|
def __init__(self, variant="ztex2.13a", sys_clk_freq=100e6, expansion="debug",
|
2022-11-08 06:29:11 -05:00
|
|
|
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 --------------------------------------------------------------------------------------
|
2022-10-27 10:58:55 -04:00
|
|
|
self.crg = _CRG(platform, sys_clk_freq)
|
2021-01-30 05:14:51 -05:00
|
|
|
|
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:
|
2022-10-27 10:58:55 -04:00
|
|
|
self.ddrphy = s7ddrphy.A7DDRPHY(platform.request("ddram"),
|
2021-01-30 05:14:51 -05:00
|
|
|
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:
|
2022-10-27 10:58:55 -04:00
|
|
|
self.leds = LedChaser(
|
2021-07-06 17:39:37 -04:00
|
|
|
pads = platform.request_all("user_led"),
|
|
|
|
sys_clk_freq = sys_clk_freq)
|
2021-01-30 05:14:51 -05:00
|
|
|
|
|
|
|
# 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=ztex213.Platform, description="LiteX SoC on Ztex 2.13.")
|
|
|
|
parser.add_target_argument("--expansion", default="debug", help="Expansion board (debug or sbus).")
|
|
|
|
parser.add_target_argument("--sys-clk-freq", default=100e6, type=float, help="System clock frequency.")
|
|
|
|
parser.add_target_argument("--with-spi-sdcard", action="store_true", help="Enable SPI-mode SDCard support.")
|
|
|
|
parser.add_target_argument("--with-sdcard", action="store_true", help="Enable SDCard support.")
|
2021-01-30 05:14:51 -05:00
|
|
|
args = parser.parse_args()
|
|
|
|
|
2022-11-08 04:41:35 -05:00
|
|
|
soc = BaseSoC(sys_clk_freq=args.sys_clk_freq, expansion=args.expansion, **parser.soc_argdict)
|
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
|
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-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()
|