2019-06-10 11:09:51 -04:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
2020-08-23 09:00:17 -04:00
|
|
|
#
|
|
|
|
# This file is part of LiteX-Boards.
|
|
|
|
#
|
|
|
|
# Copyright (c) 2015-2020 Florent Kermarrec <florent@enjoy-digital.fr>
|
|
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
2019-07-12 13:19:01 -04:00
|
|
|
|
2022-02-01 09:58:34 -05:00
|
|
|
# Build/Use:
|
|
|
|
# ./terasic_de0nano.py --uart-name=jtag_uart --build --load
|
|
|
|
# litex_term --jtag-config ../prog/openocd_max10_blaster.cfg jtag
|
|
|
|
|
2020-05-05 09:11:38 -04:00
|
|
|
import os
|
2019-06-10 11:09:51 -04:00
|
|
|
import argparse
|
|
|
|
|
|
|
|
from migen import *
|
2020-01-09 13:46:39 -05:00
|
|
|
from migen.genlib.resetsync import AsyncResetSynchronizer
|
2019-06-10 11:09:51 -04:00
|
|
|
|
2020-04-10 05:46:23 -04:00
|
|
|
from litex.build.io import DDROutput
|
|
|
|
|
2019-08-26 03:09:40 -04:00
|
|
|
from litex_boards.platforms import de0nano
|
2019-06-10 11:09:51 -04:00
|
|
|
|
2020-04-07 11:01:58 -04:00
|
|
|
from litex.soc.cores.clock import CycloneIVPLL
|
2020-03-21 07:43:39 -04:00
|
|
|
from litex.soc.integration.soc_core import *
|
2019-06-10 11:09:51 -04:00
|
|
|
from litex.soc.integration.builder import *
|
2020-05-08 16:16:13 -04:00
|
|
|
from litex.soc.cores.led import LedChaser
|
2019-06-10 11:09:51 -04:00
|
|
|
|
|
|
|
from litedram.modules import IS42S16160
|
2020-07-24 10:12:46 -04:00
|
|
|
from litedram.phy import GENSDRPHY, HalfRateGENSDRPHY
|
2019-06-10 11:09:51 -04:00
|
|
|
|
|
|
|
# CRG ----------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class _CRG(Module):
|
2020-07-24 10:12:46 -04:00
|
|
|
def __init__(self, platform, sys_clk_freq, sdram_rate="1:1"):
|
2020-11-04 05:09:30 -05:00
|
|
|
self.rst = Signal()
|
2019-12-03 03:07:09 -05:00
|
|
|
self.clock_domains.cd_sys = ClockDomain()
|
2020-07-24 10:12:46 -04:00
|
|
|
if sdram_rate == "1:2":
|
|
|
|
self.clock_domains.cd_sys2x = ClockDomain()
|
|
|
|
self.clock_domains.cd_sys2x_ps = ClockDomain(reset_less=True)
|
|
|
|
else:
|
|
|
|
self.clock_domains.cd_sys_ps = ClockDomain(reset_less=True)
|
2019-06-10 11:09:51 -04:00
|
|
|
|
|
|
|
# # #
|
|
|
|
|
2020-01-09 13:46:39 -05:00
|
|
|
# Clk / Rst
|
2019-06-10 11:09:51 -04:00
|
|
|
clk50 = platform.request("clk50")
|
2020-01-09 13:46:39 -05:00
|
|
|
|
|
|
|
# PLL
|
2020-04-07 11:01:58 -04:00
|
|
|
self.submodules.pll = pll = CycloneIVPLL(speedgrade="-6")
|
2020-11-04 05:09:30 -05:00
|
|
|
self.comb += pll.reset.eq(self.rst)
|
2020-04-07 11:01:58 -04:00
|
|
|
pll.register_clkin(clk50, 50e6)
|
|
|
|
pll.create_clkout(self.cd_sys, sys_clk_freq)
|
2020-07-24 10:12:46 -04:00
|
|
|
if sdram_rate == "1:2":
|
|
|
|
pll.create_clkout(self.cd_sys2x, 2*sys_clk_freq)
|
2020-08-24 03:28:51 -04:00
|
|
|
pll.create_clkout(self.cd_sys2x_ps, 2*sys_clk_freq, phase=180) # Idealy 90° but needs to be increased.
|
2020-07-24 10:12:46 -04:00
|
|
|
else:
|
|
|
|
pll.create_clkout(self.cd_sys_ps, sys_clk_freq, phase=90)
|
2020-01-09 13:46:39 -05:00
|
|
|
|
|
|
|
# SDRAM clock
|
2020-07-24 10:12:46 -04:00
|
|
|
sdram_clk = ClockSignal("sys2x_ps" if sdram_rate == "1:2" else "sys_ps")
|
|
|
|
self.specials += DDROutput(1, 0, platform.request("sdram_clock"), sdram_clk)
|
2019-06-10 11:09:51 -04: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(50e6), sdram_rate="1:1", with_led_chaser=True, **kwargs):
|
2019-06-10 11:09:51 -04:00
|
|
|
platform = de0nano.Platform()
|
2019-12-03 03:07:09 -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,
|
2022-01-18 11:13:02 -05:00
|
|
|
ident = "LiteX SoC on DE0-Nano",
|
2020-06-30 12:11:04 -04:00
|
|
|
**kwargs)
|
2019-06-10 11:09:51 -04:00
|
|
|
|
2019-12-03 03:07:09 -05:00
|
|
|
# CRG --------------------------------------------------------------------------------------
|
2020-07-24 10:12:46 -04:00
|
|
|
self.submodules.crg = _CRG(platform, sys_clk_freq, sdram_rate=sdram_rate)
|
2019-06-10 11:09:51 -04:00
|
|
|
|
2019-12-03 03:07:09 -05:00
|
|
|
# SDR SDRAM --------------------------------------------------------------------------------
|
2019-06-10 11:09:51 -04:00
|
|
|
if not self.integrated_main_ram_size:
|
2020-07-24 10:12:46 -04:00
|
|
|
sdrphy_cls = HalfRateGENSDRPHY if sdram_rate == "1:2" else GENSDRPHY
|
2021-01-04 05:38:07 -05:00
|
|
|
self.submodules.sdrphy = sdrphy_cls(platform.request("sdram"), 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.sdrphy,
|
|
|
|
module = IS42S16160(sys_clk_freq, sdram_rate),
|
|
|
|
l2_cache_size = kwargs.get("l2_size", 8192)
|
2020-03-21 07:43:39 -04:00
|
|
|
)
|
2019-06-10 11:09:51 -04: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
|
|
|
|
2019-06-10 11:09:51 -04:00
|
|
|
# Build --------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
def main():
|
2020-06-30 12:11:04 -04:00
|
|
|
parser = argparse.ArgumentParser(description="LiteX SoC on DE0-Nano")
|
2022-01-05 11:06:22 -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=50e6, help="System clock frequency.")
|
|
|
|
parser.add_argument("--sdram-rate", default="1:1", help="SDRAM Rate (1:1 Full Rate or 1:2 Half Rate).")
|
2019-06-10 11:09:51 -04:00
|
|
|
builder_args(parser)
|
2021-03-24 10:01:23 -04:00
|
|
|
soc_core_args(parser)
|
2019-06-10 11:09:51 -04:00
|
|
|
args = parser.parse_args()
|
|
|
|
|
2020-11-12 12:07:28 -05:00
|
|
|
soc = BaseSoC(
|
|
|
|
sys_clk_freq = int(float(args.sys_clk_freq)),
|
|
|
|
sdram_rate = args.sdram_rate,
|
2021-03-24 10:01:23 -04:00
|
|
|
**soc_core_argdict(args)
|
2020-11-12 12:07:28 -05:00
|
|
|
)
|
2019-06-10 11:09:51 -04:00
|
|
|
builder = Builder(soc, **builder_argdict(args))
|
2020-05-05 09:11:38 -04:00
|
|
|
builder.build(run=args.build)
|
2019-06-10 11:09:51 -04: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 + ".sof"))
|
2019-06-10 11:09:51 -04:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|