2020-01-18 15:40:04 -05:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
# This file is Copyright (c) 2019-2020 Florent Kermarrec <florent@enjoy-digital.fr>
|
|
|
|
# License: BSD
|
|
|
|
|
|
|
|
import argparse
|
|
|
|
|
|
|
|
from migen import *
|
2020-03-24 14:59:42 -04:00
|
|
|
from migen.genlib.io import DDROutput
|
2020-01-18 15:40:04 -05:00
|
|
|
|
|
|
|
from litex_boards.platforms import linsn_rv901t
|
|
|
|
|
2020-03-21 07:43:39 -04:00
|
|
|
from litex.soc.integration.soc_core import *
|
2020-01-18 15:40:04 -05:00
|
|
|
from litex.soc.integration.soc_sdram import *
|
|
|
|
from litex.soc.integration.builder import *
|
|
|
|
from litex.soc.cores.clock import S6PLL
|
|
|
|
|
|
|
|
from litedram.modules import M12L64322A
|
|
|
|
from litedram.phy import GENSDRPHY
|
|
|
|
|
|
|
|
from liteeth.phy.s6rgmii import LiteEthPHYRGMII
|
|
|
|
from liteeth.mac import LiteEthMAC
|
|
|
|
|
|
|
|
# CRG ----------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class _CRG(Module):
|
|
|
|
def __init__(self, platform, sys_clk_freq):
|
|
|
|
self.clock_domains.cd_sys = ClockDomain()
|
|
|
|
self.clock_domains.cd_sys_ps = ClockDomain(reset_less=True)
|
|
|
|
|
|
|
|
# # #
|
|
|
|
|
|
|
|
clk25 = platform.request("clk25")
|
|
|
|
platform.add_period_constraint(clk25, 1e9/25e6)
|
|
|
|
|
|
|
|
self.submodules.pll = pll = S6PLL(speedgrade=-2)
|
|
|
|
pll.register_clkin(clk25, 25e6)
|
|
|
|
pll.create_clkout(self.cd_sys, sys_clk_freq)
|
2020-03-24 14:59:42 -04:00
|
|
|
pll.create_clkout(self.cd_sys_ps, sys_clk_freq, phase=90)
|
2020-01-18 15:40:04 -05:00
|
|
|
|
2020-03-24 14:59:42 -04:00
|
|
|
# SDRAM clock
|
|
|
|
self.specials += DDROutput(0, 1, platform.request("sdram_clock"), ClockSignal("sys_ps"))
|
2020-01-18 15:40:04 -05:00
|
|
|
|
|
|
|
# BaseSoC ------------------------------------------------------------------------------------------
|
|
|
|
|
2020-03-21 07:43:39 -04:00
|
|
|
class BaseSoC(SoCCore):
|
2020-01-18 15:40:04 -05:00
|
|
|
def __init__(self, **kwargs):
|
|
|
|
platform = linsn_rv901t.Platform()
|
|
|
|
sys_clk_freq = int(75e6)
|
|
|
|
|
2020-03-21 07:43:39 -04:00
|
|
|
# SoCCore ----------------------------------------------------------------------------------
|
|
|
|
SoCCore.__init__(self, platform, clk_freq=sys_clk_freq, **kwargs)
|
2020-01-18 15:40:04 -05:00
|
|
|
|
|
|
|
# CRG --------------------------------------------------------------------------------------
|
|
|
|
self.submodules.crg = _CRG(platform, sys_clk_freq)
|
|
|
|
|
|
|
|
# SDR SDRAM --------------------------------------------------------------------------------
|
2020-03-21 07:43:39 -04:00
|
|
|
if not self.integrated_main_ram_size:
|
2020-03-24 14:59:42 -04:00
|
|
|
self.submodules.sdrphy = GENSDRPHY(platform.request("sdram"), cmd_latency=2)
|
2020-03-21 07:43:39 -04:00
|
|
|
self.add_sdram("sdram",
|
|
|
|
phy = self.sdrphy,
|
|
|
|
module = M12L64322A(sys_clk_freq, "1:1"),
|
|
|
|
origin = self.mem_map["main_ram"],
|
|
|
|
size = kwargs.get("max_sdram_size", 0x40000000),
|
|
|
|
l2_cache_size = kwargs.get("l2_size", 8192),
|
|
|
|
l2_cache_min_data_width = kwargs.get("min_l2_data_width", 128),
|
|
|
|
l2_cache_reverse = True
|
|
|
|
)
|
2020-01-18 15:40:04 -05:00
|
|
|
|
|
|
|
# EthernetSoC --------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class EthernetSoC(BaseSoC):
|
|
|
|
mem_map = {
|
|
|
|
"ethmac": 0xb0000000,
|
|
|
|
}
|
|
|
|
mem_map.update(BaseSoC.mem_map)
|
|
|
|
|
|
|
|
def __init__(self, eth_phy=0, **kwargs):
|
|
|
|
BaseSoC.__init__(self, **kwargs)
|
|
|
|
|
|
|
|
# Ethernet ---------------------------------------------------------------------------------
|
|
|
|
# phy
|
|
|
|
self.submodules.ethphy = LiteEthPHYRGMII(
|
|
|
|
clock_pads = self.platform.request("eth_clocks", eth_phy),
|
|
|
|
pads = self.platform.request("eth", eth_phy))
|
|
|
|
self.add_csr("ethphy")
|
|
|
|
# mac
|
|
|
|
self.submodules.ethmac = LiteEthMAC(
|
|
|
|
phy = self.ethphy,
|
|
|
|
dw = 32,
|
|
|
|
interface = "wishbone",
|
|
|
|
endianness = self.cpu.endianness)
|
|
|
|
self.add_memory_region("ethmac", self.mem_map["ethmac"], 0x2000, type="io")
|
2020-02-11 11:45:35 -05:00
|
|
|
self.add_wb_slave(self.mem_map["ethmac"], self.ethmac.bus, 0x2000)
|
2020-01-18 15:40:04 -05:00
|
|
|
self.add_csr("ethmac")
|
|
|
|
self.add_interrupt("ethmac")
|
|
|
|
# timing constraints
|
|
|
|
self.platform.add_period_constraint(self.ethphy.crg.cd_eth_rx.clk, 1e9/125e6)
|
|
|
|
self.platform.add_period_constraint(self.ethphy.crg.cd_eth_tx.clk, 1e9/125e6)
|
|
|
|
self.platform.add_false_path_constraints(
|
|
|
|
self.crg.cd_sys.clk,
|
|
|
|
self.ethphy.crg.cd_eth_rx.clk,
|
|
|
|
self.ethphy.crg.cd_eth_tx.clk)
|
|
|
|
|
|
|
|
# Build --------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
def main():
|
|
|
|
parser = argparse.ArgumentParser(description="LiteX SoC on Linsn RV901T")
|
|
|
|
builder_args(parser)
|
|
|
|
soc_sdram_args(parser)
|
2020-01-22 03:04:28 -05:00
|
|
|
parser.add_argument("--with-ethernet", action="store_true", help="enable Ethernet support")
|
|
|
|
parser.add_argument("--eth-phy", default=0, type=int, help="Ethernet PHY 0 or 1 (default=0)")
|
2020-01-18 15:40:04 -05:00
|
|
|
args = parser.parse_args()
|
|
|
|
|
|
|
|
if args.with_ethernet:
|
|
|
|
soc = EthernetSoC(eth_phy=args.eth_phy, **soc_sdram_argdict(args))
|
|
|
|
else:
|
|
|
|
soc = BaseSoC(**soc_sdram_argdict(args))
|
|
|
|
builder = Builder(soc, **builder_argdict(args))
|
|
|
|
builder.build()
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|