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>
|
|
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
2020-01-13 08:21:54 -05:00
|
|
|
|
2020-05-05 09:11:38 -04:00
|
|
|
import os
|
2020-01-13 08:21:54 -05:00
|
|
|
import argparse
|
|
|
|
|
|
|
|
from migen import *
|
|
|
|
|
2021-03-25 09:09:23 -04:00
|
|
|
from litex_boards.platforms import mercury_kx2
|
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 ----------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class _CRG(Module):
|
|
|
|
def __init__(self, platform, sys_clk_freq):
|
2020-11-04 05:09:30 -05:00
|
|
|
self.rst = Signal()
|
2020-01-13 11:22:33 -05:00
|
|
|
self.clock_domains.cd_sys = ClockDomain()
|
|
|
|
self.clock_domains.cd_sys4x = ClockDomain(reset_less=True)
|
2020-10-13 06:10:29 -04:00
|
|
|
self.clock_domains.cd_idelay = ClockDomain()
|
2020-01-13 08:21:54 -05:00
|
|
|
|
|
|
|
# # #
|
|
|
|
|
|
|
|
self.submodules.pll = pll = S7MMCM(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
|
|
|
|
2020-10-13 06:10:29 -04:00
|
|
|
self.submodules.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):
|
2021-07-06 17:39:37 -04:00
|
|
|
def __init__(self, sys_clk_freq=int(125e6), with_led_chaser=True, **kwargs):
|
2021-03-29 10:03:19 -04:00
|
|
|
platform = mercury_kx2.Platform()
|
2020-01-13 08:21:54 -05:00
|
|
|
|
2020-03-21 07:43:39 -04:00
|
|
|
# SoCCore ----------------------------------------------------------------------------------
|
2020-06-30 12:11:04 -04:00
|
|
|
SoCCore.__init__(self, platform, sys_clk_freq,
|
|
|
|
ident = "LiteX SoC on KX2",
|
|
|
|
ident_version = True,
|
|
|
|
**kwargs)
|
2020-01-13 08:21:54 -05:00
|
|
|
|
|
|
|
# CRG --------------------------------------------------------------------------------------
|
|
|
|
self.submodules.crg = _CRG(platform, sys_clk_freq)
|
|
|
|
|
|
|
|
# DDR3 SDRAM -------------------------------------------------------------------------------
|
|
|
|
if not self.integrated_main_ram_size:
|
|
|
|
self.submodules.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:
|
|
|
|
self.submodules.leds = LedChaser(
|
|
|
|
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():
|
|
|
|
parser = argparse.ArgumentParser(description="LiteX SoC on KX2")
|
2020-11-12 12:07:28 -05:00
|
|
|
parser.add_argument("--build", action="store_true", help="Build bitstream")
|
|
|
|
parser.add_argument("--load", action="store_true", help="Load bitstream")
|
|
|
|
parser.add_argument("--sys-clk-freq", default=100e6, help="System clock frequency (default: 125MHz)")
|
2020-01-13 08:21:54 -05:00
|
|
|
builder_args(parser)
|
2021-03-24 10:01:23 -04:00
|
|
|
soc_core_args(parser)
|
2020-01-13 08:21:54 -05:00
|
|
|
args = parser.parse_args()
|
|
|
|
|
2020-11-12 12:07:28 -05:00
|
|
|
soc = BaseSoC(
|
|
|
|
sys_clk_freq = int(float(args.sys_clk_freq)),
|
2021-03-24 10:01:23 -04:00
|
|
|
**soc_core_argdict(args)
|
2020-11-12 12:07:28 -05:00
|
|
|
)
|
2020-01-13 08:21:54 -05:00
|
|
|
builder = Builder(soc, **builder_argdict(args))
|
2020-05-05 09:11:38 -04:00
|
|
|
builder.build(run=args.build)
|
2020-01-13 08:21:54 -05:00
|
|
|
|
2020-05-05 09:11:38 -04:00
|
|
|
if args.load:
|
|
|
|
prog = soc.platform.create_programmer()
|
2020-05-21 03:12:29 -04:00
|
|
|
prog.load_bitstream(os.path.join(builder.gateware_dir, soc.build_name + ".bit"))
|
2020-01-13 08:21:54 -05:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|