2021-03-30 08:44:15 -04:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
#
|
|
|
|
# This file is part of LiteX-Boards.
|
|
|
|
#
|
|
|
|
# Copyright (c) 2021 Antmicro <www.antmicro.com>
|
|
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
|
|
|
import os
|
|
|
|
import argparse
|
|
|
|
|
|
|
|
from migen import *
|
|
|
|
|
|
|
|
from litex_boards.platforms import lpddr4_test_board
|
|
|
|
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 *
|
2021-11-08 10:39:49 -05:00
|
|
|
from litex.soc.integration.soc import SoCRegion
|
2021-03-30 08:44:15 -04:00
|
|
|
from litex.soc.integration.builder import *
|
|
|
|
from litex.soc.cores.led import LedChaser
|
|
|
|
|
|
|
|
from litedram.modules import MT53E256M16D1
|
|
|
|
from litedram.phy import lpddr4
|
|
|
|
|
|
|
|
from liteeth.phy import LiteEthS7PHYRGMII
|
|
|
|
from litehyperbus.core.hyperbus import HyperRAM
|
|
|
|
|
|
|
|
# CRG ----------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class _CRG(Module):
|
|
|
|
def __init__(self, platform, sys_clk_freq, iodelay_clk_freq):
|
|
|
|
self.clock_domains.cd_sys = ClockDomain()
|
|
|
|
self.clock_domains.cd_sys2x = ClockDomain(reset_less=True)
|
|
|
|
self.clock_domains.cd_sys8x = ClockDomain(reset_less=True)
|
|
|
|
self.clock_domains.cd_idelay = ClockDomain()
|
|
|
|
|
|
|
|
# # #
|
|
|
|
|
|
|
|
self.submodules.pll = pll = S7PLL(speedgrade=-1)
|
|
|
|
pll.register_clkin(platform.request("clk100"), 100e6)
|
|
|
|
pll.create_clkout(self.cd_sys, sys_clk_freq)
|
|
|
|
pll.create_clkout(self.cd_sys2x, 2 * sys_clk_freq)
|
|
|
|
pll.create_clkout(self.cd_sys8x, 8 * sys_clk_freq)
|
|
|
|
pll.create_clkout(self.cd_idelay, iodelay_clk_freq)
|
|
|
|
|
|
|
|
self.submodules.idelayctrl = S7IDELAYCTRL(self.cd_idelay)
|
|
|
|
|
|
|
|
# BaseSoC ------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class BaseSoC(SoCCore):
|
|
|
|
def __init__(self, *, sys_clk_freq=int(50e6), iodelay_clk_freq=200e6,
|
|
|
|
with_ethernet=False, with_etherbone=False, eth_ip="192.168.1.50", eth_dynamic_ip=False,
|
|
|
|
with_hyperram=False, with_sdcard=False, with_jtagbone=True, with_uartbone=False,
|
2021-07-06 17:39:37 -04:00
|
|
|
with_led_chaser=True, ident_version=True, **kwargs):
|
2021-03-30 08:44:15 -04:00
|
|
|
platform = lpddr4_test_board.Platform()
|
|
|
|
|
|
|
|
# SoCCore ----------------------------------------------------------------------------------
|
|
|
|
SoCCore.__init__(self, platform, sys_clk_freq,
|
|
|
|
ident = "LiteX SoC on LPDDR4 Test Board",
|
|
|
|
ident_version = ident_version,
|
|
|
|
**kwargs)
|
|
|
|
|
|
|
|
# CRG --------------------------------------------------------------------------------------
|
|
|
|
self.submodules.crg = _CRG(platform, sys_clk_freq, iodelay_clk_freq=iodelay_clk_freq)
|
|
|
|
|
|
|
|
# LDDR4 SDRAM ------------------------------------------------------------------------------
|
|
|
|
if not self.integrated_main_ram_size:
|
|
|
|
self.submodules.ddrphy = lpddr4.K7LPDDR4PHY(platform.request("lpddr4"),
|
|
|
|
iodelay_clk_freq = iodelay_clk_freq,
|
|
|
|
sys_clk_freq = sys_clk_freq,
|
|
|
|
)
|
|
|
|
self.add_sdram("sdram",
|
|
|
|
phy = self.ddrphy,
|
|
|
|
module = MT53E256M16D1(sys_clk_freq, "1:8"),
|
|
|
|
l2_cache_size = kwargs.get("l2_size", 8192),
|
|
|
|
l2_cache_min_data_width = 256,
|
|
|
|
)
|
|
|
|
|
|
|
|
# HyperRAM ---------------------------------------------------------------------------------
|
|
|
|
if with_hyperram:
|
|
|
|
self.submodules.hyperram = HyperRAM(platform.request("hyperram"))
|
2021-11-08 10:39:49 -05:00
|
|
|
self.bus.add_slave("hyperram", slave=self.hyperram.bus, region=SoCRegion(origin=0x20000000, size=8*1024*1024))
|
2021-03-30 08:44:15 -04:00
|
|
|
|
|
|
|
# SD Card ----------------------------------------------------------------------------------
|
|
|
|
if with_sdcard:
|
|
|
|
self.add_sdcard()
|
|
|
|
|
|
|
|
# Ethernet / Etherbone ---------------------------------------------------------------------
|
|
|
|
if with_ethernet or with_etherbone:
|
2021-04-23 09:25:47 -04:00
|
|
|
# Traces between PHY and FPGA introduce ignorable delays of ~0.165ns +/- 0.015ns.
|
|
|
|
# PHY chip does not introduce delays on TX (FPGA->PHY), however it includes 1.2ns
|
|
|
|
# delay for RX CLK so we only need 0.8ns to match the desired 2ns.
|
2021-03-30 08:44:15 -04:00
|
|
|
self.submodules.ethphy = LiteEthS7PHYRGMII(
|
|
|
|
clock_pads = self.platform.request("eth_clocks"),
|
2021-04-23 09:25:47 -04:00
|
|
|
pads = self.platform.request("eth"),
|
|
|
|
rx_delay = 0.8e-9,
|
|
|
|
)
|
2021-03-30 08:44:15 -04:00
|
|
|
if with_ethernet:
|
|
|
|
self.add_ethernet(phy=self.ethphy, dynamic_ip=eth_dynamic_ip)
|
|
|
|
if with_etherbone:
|
|
|
|
self.add_etherbone(phy=self.ethphy, ip_address=eth_ip)
|
|
|
|
|
|
|
|
# Jtagbone ---------------------------------------------------------------------------------
|
|
|
|
if with_jtagbone:
|
|
|
|
self.add_jtagbone()
|
|
|
|
|
|
|
|
# UartBone ---------------------------------------------------------------------------------
|
|
|
|
if with_uartbone:
|
|
|
|
self.add_uartbone("serial", baudrate=1e6)
|
|
|
|
|
|
|
|
# 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-03-30 08:44:15 -04:00
|
|
|
|
|
|
|
# Build --------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
def main():
|
|
|
|
parser = argparse.ArgumentParser(description="LiteX SoC on LPDDR4 Test Board")
|
|
|
|
target = parser.add_argument_group(title="Target options")
|
|
|
|
target.add_argument("--build", action="store_true", help="Build bitstream")
|
|
|
|
target.add_argument("--load", action="store_true", help="Load bitstream")
|
|
|
|
target.add_argument("--flash", action="store_true", help="Flash bitstream")
|
|
|
|
target.add_argument("--sys-clk-freq", default=50e6, help="System clock frequency")
|
|
|
|
target.add_argument("--iodelay-clk-freq", default=200e6, help="IODELAYCTRL frequency")
|
|
|
|
ethopts = target.add_mutually_exclusive_group()
|
|
|
|
ethopts.add_argument("--with-ethernet", action="store_true", help="Add Ethernet")
|
|
|
|
ethopts.add_argument("--with-etherbone", action="store_true", help="Add EtherBone")
|
|
|
|
target.add_argument("--eth-ip", default="192.168.1.50", help="Ethernet/Etherbone IP address")
|
|
|
|
target.add_argument("--eth-dynamic-ip", action="store_true", help="Enable dynamic Ethernet IP addresses setting")
|
|
|
|
target.add_argument("--with-hyperram", action="store_true", help="Add HyperRAM")
|
|
|
|
target.add_argument("--with-sdcard", action="store_true", help="Add SDCard")
|
|
|
|
target.add_argument("--with-jtagbone", action="store_true", help="Add JTAGBone")
|
|
|
|
target.add_argument("--with-uartbone", action="store_true", help="Add UartBone on 2nd serial")
|
|
|
|
parser.add_argument("--no-ident-version", action="store_false", help="Disable build time output")
|
|
|
|
builder_args(parser)
|
|
|
|
soc_core_args(parser)
|
|
|
|
vivado_build_args(parser)
|
|
|
|
args = parser.parse_args()
|
|
|
|
|
|
|
|
assert not (args.with_etherbone and args.eth_dynamic_ip)
|
|
|
|
|
|
|
|
soc = BaseSoC(
|
|
|
|
sys_clk_freq = int(float(args.sys_clk_freq)),
|
|
|
|
iodelay_clk_freq = int(float(args.iodelay_clk_freq)),
|
|
|
|
with_ethernet = args.with_ethernet,
|
|
|
|
with_etherbone = args.with_etherbone,
|
|
|
|
eth_ip = args.eth_ip,
|
|
|
|
eth_dynamic_ip = args.eth_dynamic_ip,
|
|
|
|
with_hyperram = args.with_hyperram,
|
|
|
|
with_sdcard = args.with_sdcard,
|
|
|
|
with_jtagbone = args.with_jtagbone,
|
|
|
|
with_uartbone = args.with_uartbone,
|
|
|
|
ident_version = args.no_ident_version,
|
|
|
|
**soc_core_argdict(args))
|
|
|
|
builder = Builder(soc, **builder_argdict(args))
|
|
|
|
vns = builder.build(**vivado_build_argdict(args), run=args.build)
|
|
|
|
|
|
|
|
if args.load:
|
|
|
|
prog = soc.platform.create_programmer()
|
|
|
|
prog.load_bitstream(os.path.join(builder.gateware_dir, soc.build_name + ".bit"))
|
|
|
|
|
|
|
|
if args.flash:
|
|
|
|
prog = soc.platform.create_programmer()
|
|
|
|
prog.flash(0, os.path.join(builder.gateware_dir, soc.build_name + ".bin"))
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|