2020-01-13 08:21:54 -05:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
2020-08-23 09:00:17 -04:00
|
|
|
#
|
|
|
|
# This file is part of LiteX-Boards.
|
|
|
|
#
|
|
|
|
# Copyright (c) 2020 Mark Standke <mstandke@cern.ch>
|
2023-04-10 23:23:33 -04:00
|
|
|
# Copyright (c) 2023 Hans Baier <hansfbaier@gmail.com>
|
2020-08-23 09:00:17 -04:00
|
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
2020-01-13 08:21:54 -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
|
|
|
|
2023-04-10 23:19:03 -04:00
|
|
|
from litex_boards.platforms import enclustra_mercury_kx2, enclustra_st1
|
2020-01-13 08:21:54 -05:00
|
|
|
|
|
|
|
from litex.soc.cores.clock import *
|
2020-03-21 07:43:39 -04:00
|
|
|
from litex.soc.integration.soc_core import *
|
2020-01-13 08:21:54 -05:00
|
|
|
from litex.soc.integration.builder import *
|
2020-05-08 16:16:13 -04:00
|
|
|
from litex.soc.cores.led import LedChaser
|
2020-01-13 08:21:54 -05:00
|
|
|
|
|
|
|
from litedram.modules import H5TC4G63CFR
|
|
|
|
from litedram.phy import s7ddrphy
|
|
|
|
|
|
|
|
# CRG ----------------------------------------------------------------------------------------------
|
|
|
|
|
2022-10-27 10:58:55 -04:00
|
|
|
class _CRG(LiteXModule):
|
2020-01-13 08:21:54 -05:00
|
|
|
def __init__(self, platform, sys_clk_freq):
|
2022-10-27 10:58:55 -04:00
|
|
|
self.rst = Signal()
|
|
|
|
self.cd_sys = ClockDomain()
|
|
|
|
self.cd_sys4x = ClockDomain()
|
|
|
|
self.cd_idelay = ClockDomain()
|
2020-01-13 08:21:54 -05:00
|
|
|
|
|
|
|
# # #
|
|
|
|
|
2023-04-10 23:19:03 -04:00
|
|
|
self.pll = pll = S7PLL(speedgrade=-2)
|
2020-11-04 05:09:30 -05:00
|
|
|
self.comb += pll.reset.eq(~platform.request("cpu_reset_n") | self.rst)
|
2020-01-13 08:21:54 -05:00
|
|
|
pll.register_clkin(platform.request("clk200"), 200e6)
|
2020-01-13 11:22:33 -05:00
|
|
|
pll.create_clkout(self.cd_sys, sys_clk_freq)
|
|
|
|
pll.create_clkout(self.cd_sys4x, 4*sys_clk_freq)
|
2020-10-13 06:10:29 -04:00
|
|
|
pll.create_clkout(self.cd_idelay, 200e6)
|
2021-01-07 02:00:40 -05:00
|
|
|
platform.add_false_path_constraints(self.cd_sys.clk, pll.clkin) # Ignore sys_clk to pll.clkin path created by SoC's rst.
|
2020-01-13 08:21:54 -05:00
|
|
|
|
2022-10-27 10:58:55 -04:00
|
|
|
self.idelayctrl = S7IDELAYCTRL(self.cd_idelay)
|
2020-01-13 08:21:54 -05:00
|
|
|
|
|
|
|
|
|
|
|
# BaseSoC ------------------------------------------------------------------------------------------
|
|
|
|
|
2020-03-21 07:43:39 -04:00
|
|
|
class BaseSoC(SoCCore):
|
2023-04-10 23:19:03 -04:00
|
|
|
def __init__(self, sys_clk_freq=125e6, with_led_chaser=True, with_st1_baseboard=False, **kwargs):
|
2022-05-02 06:42:04 -04:00
|
|
|
platform = enclustra_mercury_kx2.Platform()
|
2023-04-10 23:19:03 -04:00
|
|
|
if with_st1_baseboard:
|
|
|
|
baseboard = enclustra_st1.EnclustraST1()
|
|
|
|
platform.add_baseboard(baseboard)
|
2020-01-13 08:21:54 -05:00
|
|
|
|
|
|
|
# CRG --------------------------------------------------------------------------------------
|
2022-10-27 10:58:55 -04:00
|
|
|
self.crg = _CRG(platform, sys_clk_freq)
|
2020-01-13 08:21:54 -05:00
|
|
|
|
2022-04-21 06:17:26 -04:00
|
|
|
# SoCCore ----------------------------------------------------------------------------------
|
2024-07-22 05:38:22 -04:00
|
|
|
SoCCore.__init__(self, platform, sys_clk_freq, ident="LiteX SoC on Enclustra Mercury+ KX2", **kwargs)
|
2022-04-21 06:17:26 -04:00
|
|
|
|
2020-01-13 08:21:54 -05:00
|
|
|
# DDR3 SDRAM -------------------------------------------------------------------------------
|
|
|
|
if not self.integrated_main_ram_size:
|
2022-10-27 10:58:55 -04:00
|
|
|
self.ddrphy = s7ddrphy.K7DDRPHY(platform.request("ddram"),
|
2020-01-13 11:22:33 -05:00
|
|
|
memtype = "DDR3",
|
|
|
|
nphases = 4,
|
2020-10-12 11:33:40 -04:00
|
|
|
sys_clk_freq = sys_clk_freq)
|
2020-03-21 07:43:39 -04:00
|
|
|
self.add_sdram("sdram",
|
2021-03-29 09:28:04 -04:00
|
|
|
phy = self.ddrphy,
|
|
|
|
module = H5TC4G63CFR(sys_clk_freq, "1:4"),
|
|
|
|
l2_cache_size = kwargs.get("l2_size", 8192)
|
2020-03-21 07:43:39 -04:00
|
|
|
)
|
2020-01-13 08:21:54 -05:00
|
|
|
|
2020-05-08 16:16:13 -04: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)
|
2020-05-08 16:16:13 -04:00
|
|
|
|
2020-01-13 08:21:54 -05:00
|
|
|
# Build --------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
def main():
|
2022-11-06 15:39:52 -05:00
|
|
|
from litex.build.parser import LiteXArgumentParser
|
2024-07-22 05:38:22 -04:00
|
|
|
parser = LiteXArgumentParser(platform=enclustra_mercury_kx2.Platform, description="LiteX SoC on Enclustra Mercury+ KX2.")
|
2022-11-08 04:41:35 -05:00
|
|
|
parser.add_target_argument("--sys-clk-freq", default=100e6, type=float, help="System clock frequency.")
|
2023-04-10 23:19:03 -04:00
|
|
|
parser.add_argument("--with-st1-baseboard", action="store_true", help="add enclustra ST1 baseboard")
|
2020-01-13 08:21:54 -05:00
|
|
|
args = parser.parse_args()
|
|
|
|
|
2020-11-12 12:07:28 -05:00
|
|
|
soc = BaseSoC(
|
2022-11-08 04:41:35 -05:00
|
|
|
sys_clk_freq = args.sys_clk_freq,
|
2023-04-10 23:19:03 -04:00
|
|
|
with_st1_baseboard = args.with_st1_baseboard,
|
2022-11-07 02:43:26 -05:00
|
|
|
**parser.soc_argdict
|
2020-11-12 12:07:28 -05:00
|
|
|
)
|
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)
|
2020-01-13 08:21:54 -05:00
|
|
|
|
2020-05-05 09:11:38 -04: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"))
|
2020-01-13 08:21:54 -05:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|