2019-06-10 11:09:51 -04:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
2020-08-23 09:00:17 -04:00
|
|
|
#
|
|
|
|
# This file is part of LiteX-Boards.
|
|
|
|
#
|
|
|
|
# Copyright (c) 2018-2019 Florent Kermarrec <florent@enjoy-digital.fr>
|
|
|
|
# Copyright (c) 2018-2019 David Shah <dave@ds0.me>
|
|
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
2019-07-12 13:19:01 -04:00
|
|
|
|
2020-05-05 09:11:38 -04:00
|
|
|
import os
|
2019-06-10 11:09:51 -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 versa_ecp5
|
2019-06-10 11:09:51 -04:00
|
|
|
|
2019-10-29 12:29:47 -04:00
|
|
|
from litex.build.lattice.trellis import trellis_args, trellis_argdict
|
|
|
|
|
2019-06-10 11:09:51 -04:00
|
|
|
from litex.soc.cores.clock import *
|
2020-03-21 07:43:39 -04:00
|
|
|
from litex.soc.integration.soc_core import *
|
2019-06-10 11:09:51 -04:00
|
|
|
from litex.soc.integration.builder import *
|
2020-05-08 16:16:13 -04:00
|
|
|
from litex.soc.cores.led import LedChaser
|
2019-06-10 11:09:51 -04:00
|
|
|
|
|
|
|
from litedram.modules import MT41K64M16
|
|
|
|
from litedram.phy import ECP5DDRPHY
|
|
|
|
|
|
|
|
from liteeth.phy.ecp5rgmii import LiteEthPHYRGMII
|
|
|
|
|
|
|
|
# CRG ----------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class _CRG(Module):
|
|
|
|
def __init__(self, platform, sys_clk_freq):
|
2020-11-04 05:09:30 -05:00
|
|
|
self.rst = Signal()
|
2019-12-03 03:07:09 -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-06-10 11:09:51 -04:00
|
|
|
self.clock_domains.cd_sys2x_i = ClockDomain(reset_less=True)
|
|
|
|
|
|
|
|
# # #
|
|
|
|
|
2020-06-29 10:28:28 -04:00
|
|
|
self.stop = Signal()
|
|
|
|
self.reset = Signal()
|
2019-06-10 11:09:51 -04:00
|
|
|
|
2020-01-09 08:24:18 -05:00
|
|
|
# Clk / Rst
|
2019-06-10 11:09:51 -04:00
|
|
|
clk100 = platform.request("clk100")
|
2019-12-03 03:07:09 -05:00
|
|
|
rst_n = platform.request("rst_n")
|
2019-06-10 11:09:51 -04:00
|
|
|
|
2020-01-09 08:24:18 -05:00
|
|
|
# Power on reset
|
2019-06-10 11:09:51 -04:00
|
|
|
por_count = Signal(16, reset=2**16-1)
|
2019-12-03 03:07:09 -05:00
|
|
|
por_done = Signal()
|
2020-06-29 10:28:28 -04:00
|
|
|
self.comb += self.cd_por.clk.eq(clk100)
|
2019-06-10 11:09:51 -04:00
|
|
|
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-06-10 11:09:51 -04:00
|
|
|
self.submodules.pll = pll = ECP5PLL()
|
2020-11-04 05:09:30 -05:00
|
|
|
self.comb += pll.reset.eq(~por_done | ~rst_n | self.rst)
|
2019-06-10 11:09:51 -04:00
|
|
|
pll.register_clkin(clk100, 100e6)
|
|
|
|
pll.create_clkout(self.cd_sys2x_i, 2*sys_clk_freq)
|
|
|
|
pll.create_clkout(self.cd_init, 25e6)
|
|
|
|
self.specials += [
|
|
|
|
Instance("ECLKSYNCB",
|
2019-12-03 03:07:09 -05:00
|
|
|
i_ECLKI = self.cd_sys2x_i.clk,
|
|
|
|
i_STOP = self.stop,
|
|
|
|
o_ECLKO = self.cd_sys2x.clk),
|
2019-06-10 11:09:51 -04:00
|
|
|
Instance("CLKDIVF",
|
2019-12-03 03:07:09 -05:00
|
|
|
p_DIV = "2.0",
|
|
|
|
i_ALIGNWD = 0,
|
|
|
|
i_CLKI = self.cd_sys2x.clk,
|
2020-06-29 10:28:28 -04:00
|
|
|
i_RST = self.reset,
|
2019-12-03 03:07:09 -05:00
|
|
|
o_CDIVX = self.cd_sys.clk),
|
2020-09-01 07:38:28 -04:00
|
|
|
AsyncResetSynchronizer(self.cd_sys, ~pll.locked | self.reset),
|
|
|
|
AsyncResetSynchronizer(self.cd_sys2x, ~pll.locked | self.reset),
|
2019-06-10 11:09:51 -04:00
|
|
|
]
|
|
|
|
|
|
|
|
# BaseSoC ------------------------------------------------------------------------------------------
|
|
|
|
|
2020-03-21 07:43:39 -04:00
|
|
|
class BaseSoC(SoCCore):
|
2021-07-06 17:39:37 -04:00
|
|
|
def __init__(self, sys_clk_freq=int(75e6), device="LFE5UM5G", with_ethernet=False,
|
|
|
|
with_etherbone=False, with_led_chaser=True, eth_ip="192.168.1.50", eth_phy=0,
|
|
|
|
toolchain="trellis", **kwargs):
|
2020-06-12 19:33:28 -04:00
|
|
|
platform = versa_ecp5.Platform(toolchain=toolchain, device=device)
|
2019-12-03 03:07:09 -05:00
|
|
|
|
2020-06-13 05:16:29 -04:00
|
|
|
# FIXME: adapt integrated rom size for Microwatt
|
|
|
|
if kwargs.get("cpu_type", None) == "microwatt":
|
|
|
|
kwargs["integrated_rom_size"] = 0xb000 if with_ethernet else 0x9000
|
2020-06-12 13:04:49 -04:00
|
|
|
|
2020-03-21 07:43:39 -04:00
|
|
|
# SoCCore -----------------------------------------_----------------------------------------
|
2020-06-30 12:11:04 -04:00
|
|
|
SoCCore.__init__(self, platform, sys_clk_freq,
|
2022-01-18 11:13:02 -05:00
|
|
|
ident = "LiteX SoC on Versa ECP5",
|
2020-06-30 12:11:04 -04:00
|
|
|
**kwargs)
|
2019-12-03 03:07:09 -05:00
|
|
|
|
|
|
|
# CRG --------------------------------------------------------------------------------------
|
|
|
|
self.submodules.crg = _CRG(platform, sys_clk_freq)
|
|
|
|
|
|
|
|
# DDR3 SDRAM -------------------------------------------------------------------------------
|
|
|
|
if not self.integrated_main_ram_size:
|
|
|
|
self.submodules.ddrphy = ECP5DDRPHY(
|
|
|
|
platform.request("ddram"),
|
|
|
|
sys_clk_freq=sys_clk_freq)
|
|
|
|
self.comb += self.crg.stop.eq(self.ddrphy.init.stop)
|
2020-06-29 10:28:28 -04:00
|
|
|
self.comb += self.crg.reset.eq(self.ddrphy.init.reset)
|
2020-03-21 07:43:39 -04:00
|
|
|
self.add_sdram("sdram",
|
2021-03-29 09:28:04 -04:00
|
|
|
phy = self.ddrphy,
|
|
|
|
module = MT41K64M16(sys_clk_freq, "1:2"),
|
|
|
|
l2_cache_size = kwargs.get("l2_size", 8192)
|
2020-03-21 07:43:39 -04:00
|
|
|
)
|
2019-06-10 11:09:51 -04:00
|
|
|
|
2020-10-09 17:33:33 -04:00
|
|
|
# Ethernet / Etherbone ---------------------------------------------------------------------
|
|
|
|
if with_ethernet or with_etherbone:
|
2020-03-21 13:29:52 -04:00
|
|
|
self.submodules.ethphy = LiteEthPHYRGMII(
|
2020-10-09 17:33:33 -04:00
|
|
|
clock_pads = self.platform.request("eth_clocks", eth_phy),
|
2021-03-08 11:39:13 -05:00
|
|
|
pads = self.platform.request("eth", eth_phy),
|
|
|
|
tx_delay = 0e-9,
|
|
|
|
rx_delay = 0e-9)
|
2020-10-09 17:33:33 -04:00
|
|
|
if with_ethernet:
|
|
|
|
self.add_ethernet(phy=self.ethphy)
|
|
|
|
if with_etherbone:
|
2021-01-07 18:44:15 -05:00
|
|
|
self.add_etherbone(phy=self.ethphy, ip_address=eth_ip)
|
2020-10-08 18:53:08 -04:00
|
|
|
|
2020-05-08 16:16:13 -04:00
|
|
|
# Leds -------------------------------------------------------------------------------------
|
2021-07-06 17:39:37 -04:00
|
|
|
if with_led_chaser:
|
|
|
|
self.submodules.leds = LedChaser(
|
|
|
|
pads = platform.request_all("user_led"),
|
|
|
|
sys_clk_freq = sys_clk_freq)
|
2020-05-08 16:16:13 -04:00
|
|
|
|
2019-06-10 11:09:51 -04:00
|
|
|
# Build --------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
def main():
|
|
|
|
parser = argparse.ArgumentParser(description="LiteX SoC on Versa ECP5")
|
2022-01-05 11:06:22 -05:00
|
|
|
parser.add_argument("--build", action="store_true", help="Build bitstream.")
|
|
|
|
parser.add_argument("--load", action="store_true", help="Load bitstream.")
|
|
|
|
parser.add_argument("--toolchain", default="trellis", help="FPGA toolchain (trellis or diamond).")
|
|
|
|
parser.add_argument("--sys-clk-freq", default=75e6, help="System clock frequency.")
|
|
|
|
parser.add_argument("--device", default="LFE5UM5G", help="FPGA device (LFE5UM5G or LFE5UM).")
|
2021-03-08 11:39:13 -05:00
|
|
|
ethopts = parser.add_mutually_exclusive_group()
|
2022-01-05 11:06:22 -05:00
|
|
|
ethopts.add_argument("--with-ethernet", action="store_true", help="Enable Ethernet support.")
|
|
|
|
ethopts.add_argument("--with-etherbone", action="store_true", help="Enable Etherbone support.")
|
|
|
|
parser.add_argument("--eth-ip", default="192.168.1.50", type=str, help="Ethernet/Etherbone IP address.")
|
|
|
|
parser.add_argument("--eth-phy", default=0, type=int, help="Ethernet PHY (0 or 1).")
|
2019-06-10 11:09:51 -04:00
|
|
|
builder_args(parser)
|
2021-03-24 10:01:23 -04:00
|
|
|
soc_core_args(parser)
|
2019-10-29 12:29:47 -04:00
|
|
|
trellis_args(parser)
|
2019-06-10 11:09:51 -04:00
|
|
|
args = parser.parse_args()
|
|
|
|
|
2020-11-12 12:07:28 -05:00
|
|
|
soc = BaseSoC(
|
|
|
|
sys_clk_freq = int(float(args.sys_clk_freq)),
|
2020-10-08 18:53:08 -04:00
|
|
|
device = args.device,
|
|
|
|
with_ethernet = args.with_ethernet,
|
|
|
|
with_etherbone = args.with_etherbone,
|
2021-01-07 18:44:15 -05:00
|
|
|
eth_ip = args.eth_ip,
|
2020-10-09 17:33:33 -04:00
|
|
|
eth_phy = args.eth_phy,
|
2020-10-08 18:53:08 -04:00
|
|
|
toolchain = args.toolchain,
|
2021-03-24 10:01:23 -04:00
|
|
|
**soc_core_argdict(args)
|
2020-11-12 12:07:28 -05:00
|
|
|
)
|
2019-06-10 11:09:51 -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 {}
|
2020-05-05 09:11:38 -04:00
|
|
|
builder.build(**builder_kargs, run=args.build)
|
|
|
|
|
|
|
|
if args.load:
|
|
|
|
prog = soc.platform.create_programmer()
|
2020-05-21 03:12:29 -04:00
|
|
|
prog.load_bitstream(os.path.join(builder.gateware_dir, soc.build_name + ".svf"))
|
2019-06-10 11:09:51 -04:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|