2019-12-30 05:30:33 -05:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
# This file is Copyright (c) Greg Davill <greg.davill@gmail.com>
|
|
|
|
# License: BSD
|
|
|
|
|
|
|
|
import argparse
|
|
|
|
|
|
|
|
from migen import *
|
|
|
|
from migen.genlib.resetsync import AsyncResetSynchronizer
|
|
|
|
|
2019-12-30 06:06:33 -05:00
|
|
|
from litex_boards.platforms import orangecrab
|
2019-12-30 05:30:33 -05:00
|
|
|
|
2019-12-30 05:53:19 -05:00
|
|
|
from litex.build.lattice.trellis import trellis_args, trellis_argdict
|
|
|
|
|
2019-12-30 05:30:33 -05:00
|
|
|
from litex.soc.cores.clock import *
|
|
|
|
from litex.soc.integration.soc_sdram import *
|
|
|
|
from litex.soc.integration.builder import *
|
|
|
|
|
|
|
|
from litedram.modules import MT41K64M16
|
2019-12-30 05:53:19 -05:00
|
|
|
from litedram.phy import ECP5DDRPHY
|
2019-12-30 05:30:33 -05:00
|
|
|
|
2019-12-30 05:53:19 -05:00
|
|
|
# _CRG ---------------------------------------------------------------------------------------------
|
2019-12-30 05:30:33 -05:00
|
|
|
|
2019-12-30 05:53:19 -05:00
|
|
|
class _CRG(Module):
|
2019-12-30 05:30:33 -05:00
|
|
|
def __init__(self, platform, sys_clk_freq):
|
2019-12-30 05:53:19 -05:00
|
|
|
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)
|
2019-12-30 05:30:33 -05:00
|
|
|
self.clock_domains.cd_sys2x_eb = ClockDomain(reset_less=True)
|
|
|
|
|
|
|
|
|
|
|
|
# # #
|
|
|
|
|
|
|
|
self.stop = Signal()
|
|
|
|
|
2020-01-09 08:24:18 -05:00
|
|
|
# Clk / Rst
|
2019-12-30 05:53:19 -05:00
|
|
|
clk48 = platform.request("clk48")
|
|
|
|
platform.add_period_constraint(clk48, 1e9/48e6)
|
2019-12-30 05:30:33 -05:00
|
|
|
|
2020-01-09 08:24:18 -05:00
|
|
|
# Power on reset
|
2019-12-30 05:30:33 -05:00
|
|
|
por_count = Signal(16, reset=2**16-1)
|
2019-12-30 05:53:19 -05:00
|
|
|
por_done = Signal()
|
2019-12-30 05:30:33 -05:00
|
|
|
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))
|
|
|
|
|
2020-01-09 08:24:18 -05:00
|
|
|
# PLL
|
2019-12-30 05:53:19 -05:00
|
|
|
sys2x_clk_ecsout = Signal()
|
2019-12-30 05:30:33 -05:00
|
|
|
self.submodules.pll = pll = ECP5PLL()
|
2019-12-30 05:53:19 -05:00
|
|
|
pll.register_clkin(clk48, 48e6)
|
|
|
|
pll.create_clkout(self.cd_sys2x_i, 2*sys_clk_freq)
|
2019-12-30 05:30:33 -05:00
|
|
|
pll.create_clkout(self.cd_init, 24e6)
|
|
|
|
self.specials += [
|
|
|
|
Instance("ECLKBRIDGECS",
|
2019-12-30 05:53:19 -05:00
|
|
|
i_CLK0 = self.cd_sys2x_i.clk,
|
|
|
|
i_SEL = 0,
|
|
|
|
o_ECSOUT = sys2x_clk_ecsout,
|
|
|
|
),
|
|
|
|
Instance("ECLKSYNCB",
|
|
|
|
i_ECLKI = sys2x_clk_ecsout,
|
|
|
|
i_STOP = self.stop,
|
|
|
|
o_ECLKO = self.cd_sys2x.clk),
|
2019-12-30 05:30:33 -05:00
|
|
|
Instance("CLKDIVF",
|
2019-12-30 05:53:19 -05:00
|
|
|
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),
|
2020-01-09 08:24:18 -05:00
|
|
|
AsyncResetSynchronizer(self.cd_sys, ~por_done | ~pll.locked)
|
2019-12-30 05:30:33 -05:00
|
|
|
]
|
|
|
|
|
|
|
|
# BaseSoC ------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class BaseSoC(SoCSDRAM):
|
2020-01-13 09:20:37 -05:00
|
|
|
def __init__(self, sys_clk_freq=int(48e6), toolchain="diamond", **kwargs):
|
2019-12-30 06:06:33 -05:00
|
|
|
platform = orangecrab.Platform(toolchain=toolchain)
|
2019-12-30 05:53:19 -05:00
|
|
|
|
|
|
|
# SoCSDRAM ---------------------------------------------------------------------------------
|
2020-01-13 09:20:37 -05:00
|
|
|
SoCSDRAM.__init__(self, platform, clk_freq=sys_clk_freq, **kwargs)
|
2019-12-30 05:30:33 -05:00
|
|
|
|
2019-12-30 05:53:19 -05:00
|
|
|
# CRG --------------------------------------------------------------------------------------
|
|
|
|
self.submodules.crg = _CRG(platform, sys_clk_freq)
|
2019-12-30 05:30:33 -05:00
|
|
|
|
2019-12-30 05:53:19 -05:00
|
|
|
# DDR3 SDRAM -------------------------------------------------------------------------------
|
2019-12-30 05:30:33 -05:00
|
|
|
self.submodules.ddrphy = ECP5DDRPHY(
|
|
|
|
platform.request("ddram"),
|
|
|
|
sys_clk_freq=sys_clk_freq)
|
2019-12-30 05:53:19 -05:00
|
|
|
self.add_csr("ddrphy")
|
2019-12-30 05:30:33 -05:00
|
|
|
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,
|
2019-12-30 05:53:19 -05:00
|
|
|
geom_settings = sdram_module.geom_settings,
|
|
|
|
timing_settings = sdram_module.timing_settings)
|
2019-12-30 05:30:33 -05:00
|
|
|
|
|
|
|
# Build --------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
def main():
|
2019-12-30 05:53:19 -05:00
|
|
|
parser = argparse.ArgumentParser(description="LiteX SoC on OrangeCrab")
|
|
|
|
parser.add_argument("--gateware-toolchain", dest="toolchain", default="diamond",
|
|
|
|
help='gateware toolchain to use, diamond (default) or trellis')
|
|
|
|
builder_args(parser)
|
|
|
|
soc_sdram_args(parser)
|
|
|
|
trellis_args(parser)
|
|
|
|
parser.add_argument("--sys-clk-freq", default=48e6,
|
|
|
|
help="system clock frequency (default=48MHz)")
|
|
|
|
args = parser.parse_args()
|
|
|
|
|
|
|
|
soc = BaseSoC(toolchain=args.toolchain, sys_clk_freq=int(float(args.sys_clk_freq)), **soc_sdram_argdict(args))
|
|
|
|
builder = Builder(soc, **builder_argdict(args))
|
|
|
|
builder.build(**trellis_argdict(args))
|
2019-12-30 05:30:33 -05:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|