mirror of
https://github.com/litex-hub/litex-boards.git
synced 2025-01-03 03:43:36 -05:00
170 lines
5.6 KiB
Python
Executable file
170 lines
5.6 KiB
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
# This file is Copyright (c) Greg Davill <greg.davill@gmail.com>
|
|
# License: BSD
|
|
|
|
import sys
|
|
import argparse
|
|
|
|
from migen import *
|
|
from migen.genlib.resetsync import AsyncResetSynchronizer
|
|
|
|
from litex.build.generic_platform import *
|
|
|
|
from litex_boards.platforms import orange_crab
|
|
|
|
from litex.soc.cores.clock 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.uart import UARTWishboneBridge
|
|
from litex.soc.interconnect import wishbone
|
|
|
|
from litedram.modules import MT41K64M16
|
|
from .ecp5ddrphy import ECP5DDRPHY, ECP5DDRPHYInit
|
|
from litedram.init import get_sdram_phy_py_header
|
|
from litedram.frontend.bist import LiteDRAMBISTGenerator
|
|
from litedram.frontend.bist import LiteDRAMBISTChecker
|
|
|
|
|
|
# DDR3TestCRG --------------------------------------------------------------------------------------
|
|
|
|
class DDR3TestCRG(Module):
|
|
def __init__(self, platform, sys_clk_freq):
|
|
self.clock_domains.cd_init = ClockDomain()
|
|
self.clock_domains.cd_por = ClockDomain(reset_less=True)
|
|
self.clock_domains.cd_sys = ClockDomain()
|
|
self.clock_domains.cd_sys2x = ClockDomain()
|
|
self.clock_domains.cd_sys2x_i = ClockDomain(reset_less=True)
|
|
self.clock_domains.cd_sys2x_eb = ClockDomain(reset_less=True)
|
|
|
|
|
|
# # #
|
|
|
|
self.stop = Signal()
|
|
|
|
# clk / rst
|
|
clk100 = platform.request("clk100")
|
|
#rst_n = platform.request("rst_n")
|
|
rst_n = Signal(reset=1)
|
|
platform.add_period_constraint(clk100, 1e9/48e6)
|
|
|
|
# power on reset
|
|
por_count = Signal(16, reset=2**16-1)
|
|
por_done = Signal()
|
|
self.comb += self.cd_por.clk.eq(ClockSignal())
|
|
self.comb += por_done.eq(por_count == 0)
|
|
self.sync.por += If(~por_done, por_count.eq(por_count - 1))
|
|
|
|
# pll
|
|
|
|
sys2x_i_clk = Signal()
|
|
self.submodules.pll = pll = ECP5PLL()
|
|
pll.register_clkin(clk100, 48e6)
|
|
pll.create_clkout(self.cd_sys2x_eb, 2*sys_clk_freq)
|
|
pll.create_clkout(self.cd_init, 24e6)
|
|
self.specials += [
|
|
Instance("ECLKSYNCB",
|
|
i_ECLKI=sys2x_i_clk,
|
|
i_STOP=self.stop,
|
|
o_ECLKO=self.cd_sys2x.clk),
|
|
Instance("ECLKBRIDGECS",
|
|
i_CLK0=self.cd_sys2x_eb.clk,
|
|
i_SEL=0,
|
|
o_ECSOUT=sys2x_i_clk),
|
|
Instance("CLKDIVF",
|
|
p_DIV="2.0",
|
|
i_ALIGNWD=0,
|
|
i_CLKI=self.cd_sys2x.clk,
|
|
i_RST=self.cd_sys2x.rst,
|
|
o_CDIVX=self.cd_sys.clk),
|
|
AsyncResetSynchronizer(self.cd_init, ~por_done | ~pll.locked | ~rst_n),
|
|
AsyncResetSynchronizer(self.cd_sys, ~por_done | ~pll.locked | ~rst_n)
|
|
]
|
|
|
|
# BaseSoC ------------------------------------------------------------------------------------------
|
|
|
|
class BaseSoC(SoCSDRAM):
|
|
csr_map = {
|
|
"ddrphy": 16,
|
|
}
|
|
csr_map.update(SoCSDRAM.csr_map)
|
|
def __init__(self, toolchain="trellis", integrated_rom_size=0x8000, **kwargs):
|
|
platform = OrangeCrab.Platform(toolchain=toolchain)
|
|
sys_clk_freq = int(48e6)
|
|
SoCSDRAM.__init__(self, platform, clk_freq=sys_clk_freq,
|
|
integrated_rom_size=integrated_rom_size,
|
|
**kwargs)
|
|
|
|
# crg
|
|
self.submodules.crg = DDR3TestCRG(platform, sys_clk_freq)
|
|
|
|
# sdram
|
|
self.submodules.ddrphy = ECP5DDRPHY(
|
|
platform.request("ddram"),
|
|
sys_clk_freq=sys_clk_freq)
|
|
self.add_constant("ECP5DDRPHY", None)
|
|
self.comb += self.crg.stop.eq(self.ddrphy.init.stop)
|
|
sdram_module = MT41K64M16(sys_clk_freq, "1:2")
|
|
self.register_sdram(self.ddrphy,
|
|
sdram_module.geom_settings,
|
|
sdram_module.timing_settings)
|
|
|
|
# led blinking
|
|
#led_counter = Signal(32)
|
|
#led = platform.request("rgb_led", 0)
|
|
#
|
|
#self.sync += led_counter.eq(led_counter + 1)
|
|
#self.comb += [
|
|
# led.r.eq(led_counter[24]),
|
|
# led.g.eq(led_counter[27]),
|
|
# led.b.eq(led_counter[28])
|
|
#]
|
|
|
|
|
|
|
|
|
|
# BISTSoC --------------------------------------------------------------------------------------
|
|
class BISTSoC(BaseSoC):
|
|
csr_map = {
|
|
"sdram_generator": 20,
|
|
"sdram_checker": 21
|
|
}
|
|
csr_map.update(BaseSoC.csr_map)
|
|
def __init__(self, **kwargs):
|
|
BaseSoC.__init__(self, **kwargs)
|
|
self.submodules.sdram_generator = LiteDRAMBISTGenerator(self.sdram.crossbar.get_port())
|
|
self.submodules.sdram_checker = LiteDRAMBISTChecker(self.sdram.crossbar.get_port())
|
|
|
|
# Build --------------------------------------------------------------------------------------------
|
|
|
|
def main():
|
|
|
|
if "diamond" in sys.argv[1:]:
|
|
toolchain = "diamond"
|
|
toolchain_path = "/usr/local/diamond/3.10_x64/bin/lin64"
|
|
else:
|
|
toolchain = "trellis"
|
|
toolchain_path = "/usr/share/trellis"
|
|
|
|
|
|
if "ddr3_test" in sys.argv[1:]:
|
|
soc = DDR3TestSoC(toolchain=toolchain)
|
|
elif "base" in sys.argv[1:]:
|
|
soc = BaseSoC(toolchain=toolchain)
|
|
elif "bist" in sys.argv[1:]:
|
|
soc = BISTSoC(toolchain=toolchain)
|
|
else:
|
|
print("missing target, supported: (ddr3_test, base, bist)")
|
|
exit(1)
|
|
builder = Builder(soc, output_dir="build", csr_csv="test/csr.csv")
|
|
vns = builder.build(toolchain_path=toolchain_path)
|
|
if isinstance(soc, DDR3TestSoC):
|
|
soc.do_exit(vns)
|
|
soc.generate_sdram_phy_py_header()
|
|
|
|
# Generate svf
|
|
os.system("python3 openocd/bit_to_svf.py build/gateware/top.bit build/gateware/top.svf")
|
|
|
|
if __name__ == "__main__":
|
|
main()
|