2019-09-01 04:02:04 -04:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
# This file is Copyright (c) 2018-2019 Rohit Singh <rohit@rohitksingh.in>
|
2019-09-02 05:43:13 -04:00
|
|
|
# This file is Copyright (c) 2019 Florent Kermarrec <florent@enjoy-digital.fr>
|
2019-09-01 04:02:04 -04:00
|
|
|
# License: BSD
|
|
|
|
|
2020-01-16 04:51:35 -05:00
|
|
|
import argparse
|
2019-09-01 04:02:04 -04:00
|
|
|
import sys
|
|
|
|
|
|
|
|
from migen import *
|
|
|
|
|
|
|
|
from litex.build.generic_platform import *
|
|
|
|
from litex.soc.integration.soc_core import *
|
|
|
|
from litex.soc.integration.soc_sdram import *
|
|
|
|
from litex.soc.integration.builder import *
|
|
|
|
from litex.soc.cores.clock import *
|
|
|
|
from litex.soc.cores import dna, xadc
|
|
|
|
from litex.soc.cores.uart import *
|
|
|
|
from litex.soc.integration.cpu_interface import get_csr_header
|
|
|
|
|
2019-09-09 02:50:06 -04:00
|
|
|
from litedram.modules import MT8KTF51264
|
2019-09-01 04:02:04 -04:00
|
|
|
from litedram.phy import s7ddrphy
|
|
|
|
|
|
|
|
from litepcie.phy.s7pciephy import S7PCIEPHY
|
|
|
|
from litepcie.core import LitePCIeEndpoint, LitePCIeMSI
|
|
|
|
from litepcie.frontend.dma import LitePCIeDMA
|
|
|
|
from litepcie.frontend.wishbone import LitePCIeWishboneBridge
|
|
|
|
|
|
|
|
from litex_boards.platforms import nereid
|
|
|
|
|
|
|
|
# CRG ----------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class CRG(Module):
|
|
|
|
def __init__(self, platform, sys_clk_freq):
|
2019-12-03 03:33:08 -05:00
|
|
|
self.clock_domains.cd_sys = ClockDomain()
|
|
|
|
self.clock_domains.cd_sys4x = ClockDomain(reset_less=True)
|
2019-09-01 04:02:04 -04:00
|
|
|
self.clock_domains.cd_clk200 = ClockDomain()
|
|
|
|
|
|
|
|
clk100 = platform.request("clk100")
|
|
|
|
|
|
|
|
self.submodules.pll = pll = S7PLL()
|
2020-01-16 04:51:35 -05:00
|
|
|
self.comb += pll.reset.eq(platform.request("cpu_reset"))
|
2019-09-01 04:02:04 -04:00
|
|
|
pll.register_clkin(clk100, 100e6)
|
2019-12-03 03:33:08 -05:00
|
|
|
pll.create_clkout(self.cd_sys, sys_clk_freq)
|
|
|
|
pll.create_clkout(self.cd_sys4x, 4*sys_clk_freq)
|
2019-09-01 04:02:04 -04:00
|
|
|
pll.create_clkout(self.cd_clk200, 200e6)
|
|
|
|
|
|
|
|
self.submodules.idelayctrl = S7IDELAYCTRL(self.cd_clk200)
|
|
|
|
|
2020-01-16 04:51:35 -05:00
|
|
|
# PCIeSoC -----------------------------------------------------------------------------------------
|
2019-09-01 04:02:04 -04:00
|
|
|
|
2020-01-16 04:51:35 -05:00
|
|
|
class PCIeSoC(SoCSDRAM):
|
2019-12-03 03:37:18 -05:00
|
|
|
SoCSDRAM.mem_map["csr"] = 0x80000000
|
2019-09-01 04:02:04 -04:00
|
|
|
SoCSDRAM.mem_map["rom"] = 0x20000000
|
|
|
|
|
2020-01-16 04:51:35 -05:00
|
|
|
def __init__(self, platform, **kwargs):
|
2019-09-01 04:02:04 -04:00
|
|
|
sys_clk_freq = int(100e6)
|
2019-12-03 03:33:08 -05:00
|
|
|
|
|
|
|
# SoCSDRAM ---------------------------------------------------------------------------------
|
2019-09-01 04:02:04 -04:00
|
|
|
SoCSDRAM.__init__(self, platform, sys_clk_freq,
|
2020-01-16 04:51:35 -05:00
|
|
|
ident = "LiteX SoC on Nereid", ident_version=True,
|
|
|
|
**kwargs)
|
2019-09-01 04:02:04 -04:00
|
|
|
|
2019-09-02 05:43:13 -04:00
|
|
|
# CRG --------------------------------------------------------------------------------------
|
2019-09-01 04:02:04 -04:00
|
|
|
self.submodules.crg = CRG(platform, sys_clk_freq)
|
|
|
|
self.add_csr("crg")
|
|
|
|
|
2019-09-02 05:43:13 -04:00
|
|
|
# DNA --------------------------------------------------------------------------------------
|
2019-09-01 04:02:04 -04:00
|
|
|
self.submodules.dna = dna.DNA()
|
|
|
|
self.add_csr("dna")
|
|
|
|
|
2019-09-02 05:43:13 -04:00
|
|
|
# XADC -------------------------------------------------------------------------------------
|
2019-09-01 04:02:04 -04:00
|
|
|
self.submodules.xadc = xadc.XADC()
|
|
|
|
self.add_csr("xadc")
|
|
|
|
|
2019-12-03 03:33:08 -05:00
|
|
|
# DDR3 SDRAM -------------------------------------------------------------------------------
|
2019-09-01 04:02:04 -04:00
|
|
|
if not self.integrated_main_ram_size:
|
2019-12-03 03:33:08 -05:00
|
|
|
self.submodules.ddrphy = s7ddrphy.K7DDRPHY(platform.request("ddram"),
|
|
|
|
memtype = "DDR3",
|
|
|
|
nphases = 4,
|
|
|
|
sys_clk_freq = sys_clk_freq,
|
|
|
|
iodelay_clk_freq = 200e6)
|
|
|
|
self.add_csr("ddrphy")
|
2019-09-01 04:02:04 -04:00
|
|
|
sdram_module = MT8KTF51264(sys_clk_freq, "1:4", speedgrade="800")
|
|
|
|
self.register_sdram(self.ddrphy,
|
2019-12-03 03:33:08 -05:00
|
|
|
geom_settings = sdram_module.geom_settings,
|
|
|
|
timing_settings = sdram_module.timing_settings)
|
2019-09-01 04:02:04 -04:00
|
|
|
|
2019-09-02 05:43:13 -04:00
|
|
|
# PCIe -------------------------------------------------------------------------------------
|
2019-09-01 04:02:04 -04:00
|
|
|
# pcie phy
|
|
|
|
self.submodules.pcie_phy = S7PCIEPHY(platform, platform.request("pcie_x1"), bar0_size=0x20000)
|
2019-12-03 03:33:08 -05:00
|
|
|
platform.add_false_path_constraints(self.crg.cd_sys.clk, self.pcie_phy.cd_pcie.clk)
|
2019-09-01 04:02:04 -04:00
|
|
|
self.add_csr("pcie_phy")
|
|
|
|
|
|
|
|
# pcie endpoint
|
|
|
|
self.submodules.pcie_endpoint = LitePCIeEndpoint(self.pcie_phy)
|
|
|
|
|
|
|
|
# pcie wishbone bridge
|
2019-09-02 05:43:13 -04:00
|
|
|
self.submodules.pcie_wishbone = LitePCIeWishboneBridge(self.pcie_endpoint,
|
2019-12-14 16:10:04 -05:00
|
|
|
lambda a: 1, base_address=self.mem_map["csr"])
|
2019-09-01 04:02:04 -04:00
|
|
|
self.add_wb_master(self.pcie_wishbone.wishbone)
|
|
|
|
|
|
|
|
# pcie dma
|
|
|
|
self.submodules.pcie_dma = LitePCIeDMA(self.pcie_phy, self.pcie_endpoint,
|
|
|
|
with_buffering=True, buffering_depth=1024, with_loopback=True)
|
|
|
|
self.add_csr("pcie_dma")
|
|
|
|
|
|
|
|
# pcie msi
|
|
|
|
self.submodules.pcie_msi = LitePCIeMSI()
|
|
|
|
self.add_csr("pcie_msi")
|
|
|
|
self.comb += self.pcie_msi.source.connect(self.pcie_phy.msi)
|
|
|
|
self.msis = {
|
|
|
|
"DMA_WRITER": self.pcie_dma.writer.irq,
|
|
|
|
"DMA_READER": self.pcie_dma.reader.irq
|
|
|
|
}
|
|
|
|
for i, (k, v) in enumerate(sorted(self.msis.items())):
|
|
|
|
self.comb += self.pcie_msi.irqs[i].eq(v)
|
|
|
|
self.add_constant(k + "_INTERRUPT", i)
|
|
|
|
|
|
|
|
def generate_software_header(self, filename):
|
2019-12-13 19:19:20 -05:00
|
|
|
csr_header = get_csr_header(self.csr_regions,
|
|
|
|
self.constants,
|
2019-12-13 20:04:28 -05:00
|
|
|
with_access_functions=False)
|
2019-09-01 04:02:04 -04:00
|
|
|
tools.write_to_file(filename, csr_header)
|
|
|
|
|
|
|
|
|
|
|
|
# Build --------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
def main():
|
2020-01-16 04:51:35 -05:00
|
|
|
parser = argparse.ArgumentParser(description="LiteX SoC on Tagus")
|
|
|
|
builder_args(parser)
|
|
|
|
soc_sdram_args(parser)
|
|
|
|
args = parser.parse_args()
|
|
|
|
|
|
|
|
args.uart_name = "crossover"
|
|
|
|
args.csr_data_width = 32
|
2019-09-01 04:02:04 -04:00
|
|
|
|
2020-01-16 04:51:35 -05:00
|
|
|
platform = nereid.Platform()
|
|
|
|
soc = PCIeSoC(platform, **soc_sdram_argdict(args))
|
|
|
|
builder = Builder(soc, **builder_argdict(args))
|
|
|
|
vns = builder.build()
|
|
|
|
soc.generate_software_header("csr.h")
|
2019-09-01 04:02:04 -04:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|