2019-07-09 10:50:26 -04:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
2019-07-12 13:36:49 -04:00
|
|
|
# This file is Copyright (c) 2019 David Shah <dave@ds0.me>
|
|
|
|
# License: BSD
|
|
|
|
|
2019-07-09 10:50:26 -04:00
|
|
|
import argparse
|
|
|
|
|
|
|
|
from migen import *
|
|
|
|
from migen.genlib.resetsync import AsyncResetSynchronizer
|
|
|
|
|
2019-08-26 03:09:40 -04:00
|
|
|
from litex_boards.platforms import trellisboard
|
2019-07-09 10:50:26 -04:00
|
|
|
|
2019-10-29 12:29:47 -04:00
|
|
|
from litex.build.lattice.trellis import trellis_args, trellis_argdict
|
|
|
|
|
2019-07-09 10:50:26 -04:00
|
|
|
from litex.soc.cores.clock import *
|
2020-03-18 15:06:38 -04:00
|
|
|
from litex.soc.integration.soc_core import *
|
2019-07-09 10:50:26 -04:00
|
|
|
from litex.soc.integration.soc_sdram import *
|
|
|
|
from litex.soc.integration.builder import *
|
|
|
|
|
|
|
|
from litedram.modules import MT41J256M16
|
|
|
|
from litedram.phy import ECP5DDRPHY
|
|
|
|
|
|
|
|
from liteeth.phy.ecp5rgmii import LiteEthPHYRGMII
|
|
|
|
|
|
|
|
# CRG ----------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class _CRG(Module):
|
|
|
|
def __init__(self, platform, sys_clk_freq):
|
2019-12-03 03:33:08 -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()
|
2019-07-09 10:50:26 -04:00
|
|
|
self.clock_domains.cd_sys2x_i = ClockDomain(reset_less=True)
|
|
|
|
|
|
|
|
# # #
|
|
|
|
|
|
|
|
self.stop = Signal()
|
|
|
|
|
2020-01-09 08:24:18 -05:00
|
|
|
# Clk / Rst
|
2019-07-09 10:50:26 -04:00
|
|
|
clk12 = platform.request("clk12")
|
2019-12-03 03:33:08 -05:00
|
|
|
rst = platform.request("user_btn", 0)
|
2019-07-09 10:50:26 -04:00
|
|
|
platform.add_period_constraint(clk12, 1e9/12e6)
|
|
|
|
|
2020-01-09 08:24:18 -05:00
|
|
|
# Power on reset
|
2019-07-09 10:50:26 -04:00
|
|
|
por_count = Signal(16, reset=2**16-1)
|
2019-12-03 03:33:08 -05:00
|
|
|
por_done = Signal()
|
2019-07-09 10:50:26 -04: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-11-01 05:52:36 -04:00
|
|
|
sys2x_clk_ecsout = Signal()
|
2019-07-09 10:50:26 -04:00
|
|
|
self.submodules.pll = pll = ECP5PLL()
|
|
|
|
pll.register_clkin(clk12, 12e6)
|
|
|
|
pll.create_clkout(self.cd_sys2x_i, 2*sys_clk_freq)
|
|
|
|
pll.create_clkout(self.cd_init, 25e6)
|
|
|
|
self.specials += [
|
2019-11-01 05:52:36 -04:00
|
|
|
Instance("ECLKBRIDGECS",
|
2019-12-03 03:33:08 -05:00
|
|
|
i_CLK0 = self.cd_sys2x_i.clk,
|
|
|
|
i_SEL = 0,
|
|
|
|
o_ECSOUT = sys2x_clk_ecsout,
|
2019-11-01 05:52:36 -04:00
|
|
|
),
|
2019-07-09 10:50:26 -04:00
|
|
|
Instance("ECLKSYNCB",
|
2019-12-03 03:33:08 -05:00
|
|
|
i_ECLKI = sys2x_clk_ecsout,
|
|
|
|
i_STOP = self.stop,
|
|
|
|
o_ECLKO = self.cd_sys2x.clk),
|
2019-07-09 10:50:26 -04:00
|
|
|
Instance("CLKDIVF",
|
2019-12-03 03:33:08 -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),
|
2019-07-09 10:50:26 -04:00
|
|
|
AsyncResetSynchronizer(self.cd_init, ~por_done | ~pll.locked | rst),
|
2020-01-09 08:24:18 -05:00
|
|
|
AsyncResetSynchronizer(self.cd_sys, ~por_done | ~pll.locked | rst)
|
2019-07-09 10:50:26 -04:00
|
|
|
]
|
|
|
|
|
2020-01-09 08:24:18 -05:00
|
|
|
self.comb += platform.request("dram_vtt_en").eq(1)
|
2019-07-09 10:50:26 -04:00
|
|
|
|
|
|
|
# BaseSoC ------------------------------------------------------------------------------------------
|
|
|
|
|
2020-03-18 15:06:38 -04:00
|
|
|
class BaseSoC(SoCCore):
|
|
|
|
def __init__(self, sys_clk_freq=int(75e6), toolchain="trellis", with_ethernet=False, **kwargs):
|
2019-07-09 10:50:26 -04:00
|
|
|
platform = trellisboard.Platform(toolchain=toolchain)
|
2019-12-03 03:33:08 -05:00
|
|
|
|
2020-03-21 07:43:39 -04:00
|
|
|
# SoCCore -----------------------------------------------------------------_----------------
|
|
|
|
SoCCore.__init__(self, platform, clk_freq=sys_clk_freq, **kwargs)
|
2019-07-09 10:50:26 -04:00
|
|
|
|
2019-12-03 03:33:08 -05:00
|
|
|
# CRG --------------------------------------------------------------------------------------
|
|
|
|
self.submodules.crg = _CRG(platform, sys_clk_freq)
|
2019-07-09 10:50:26 -04:00
|
|
|
|
2019-12-03 03:33:08 -05:00
|
|
|
# DDR3 SDRAM -------------------------------------------------------------------------------
|
2020-03-18 15:06:38 -04:00
|
|
|
if not self.integrated_main_ram_size:
|
|
|
|
self.submodules.ddrphy = ECP5DDRPHY(
|
|
|
|
platform.request("ddram"),
|
|
|
|
sys_clk_freq=sys_clk_freq)
|
|
|
|
self.add_csr("ddrphy")
|
|
|
|
self.add_sdram("sdram",
|
|
|
|
phy = self.ddrphy,
|
|
|
|
module = MT41J256M16(sys_clk_freq, "1:2"),
|
|
|
|
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
|
|
|
|
)
|
2019-07-09 10:50:26 -04:00
|
|
|
|
2020-01-16 04:28:09 -05:00
|
|
|
# Ethernet ---------------------------------------------------------------------------------
|
2020-03-18 15:06:38 -04:00
|
|
|
if with_ethernet:
|
|
|
|
self.submodules.ethphy = LiteEthPHYRGMII(
|
|
|
|
clock_pads = self.platform.request("eth_clocks"),
|
|
|
|
pads = self.platform.request("eth"))
|
|
|
|
self.add_csr("ethphy")
|
|
|
|
self.add_ethernet(phy=self.ethphy)
|
2019-07-09 10:50:26 -04:00
|
|
|
|
|
|
|
# Build --------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
def main():
|
2019-07-12 13:39:12 -04:00
|
|
|
parser = argparse.ArgumentParser(description="LiteX SoC on Trellis Board")
|
2020-02-28 03:46:54 -05:00
|
|
|
parser.add_argument("--gateware-toolchain", dest="toolchain", default="trellis",
|
|
|
|
help="gateware toolchain to use, trellis (default) or diamond")
|
2019-07-09 10:50:26 -04:00
|
|
|
builder_args(parser)
|
|
|
|
soc_sdram_args(parser)
|
2019-10-29 12:29:47 -04:00
|
|
|
trellis_args(parser)
|
2019-07-09 10:50:26 -04:00
|
|
|
parser.add_argument("--sys-clk-freq", default=75e6,
|
|
|
|
help="system clock frequency (default=75MHz)")
|
|
|
|
parser.add_argument("--with-ethernet", action="store_true",
|
|
|
|
help="enable Ethernet support")
|
2020-03-19 22:14:54 -04:00
|
|
|
parser.add_argument("--with-spi-sdcard", action="store_true",
|
|
|
|
help="enable SPI-mode SDCard support")
|
2019-07-09 10:50:26 -04:00
|
|
|
args = parser.parse_args()
|
|
|
|
|
2020-03-18 15:06:38 -04:00
|
|
|
soc = BaseSoC(sys_clk_freq=int(float(args.sys_clk_freq)),
|
|
|
|
with_ethernet=args.with_ethernet,
|
|
|
|
**soc_sdram_argdict(args))
|
2020-03-19 22:14:54 -04:00
|
|
|
if args.with_spi_sdcard:
|
|
|
|
soc.add_spi_sdcard()
|
2019-07-09 10:50:26 -04:00
|
|
|
builder = Builder(soc, **builder_argdict(args))
|
2020-02-28 03:46:54 -05:00
|
|
|
builder_kargs = trellis_argdict(args) if args.toolchain == "trellis" else {}
|
|
|
|
builder.build(**builder_kargs)
|
2019-07-09 10:50:26 -04:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|