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
|
|
|
|
2019-06-10 11:09:51 -04:00
|
|
|
from migen import *
|
|
|
|
from migen.genlib.resetsync import AsyncResetSynchronizer
|
|
|
|
|
2022-10-27 10:58:55 -04:00
|
|
|
from litex.gen import LiteXModule
|
|
|
|
|
2022-05-02 06:42:04 -04:00
|
|
|
from litex_boards.platforms import lattice_versa_ecp5
|
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 ----------------------------------------------------------------------------------------------
|
|
|
|
|
2022-10-27 10:58:55 -04:00
|
|
|
class _CRG(LiteXModule):
|
2019-06-10 11:09:51 -04:00
|
|
|
def __init__(self, platform, sys_clk_freq):
|
2022-10-27 10:58:55 -04:00
|
|
|
self.rst = Signal()
|
|
|
|
self.cd_init = ClockDomain()
|
|
|
|
self.cd_por = ClockDomain()
|
|
|
|
self.cd_sys = ClockDomain()
|
|
|
|
self.cd_sys2x = ClockDomain()
|
|
|
|
self.cd_sys2x_i = ClockDomain()
|
2019-06-10 11:09:51 -04:00
|
|
|
|
|
|
|
# # #
|
|
|
|
|
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
|
2022-10-27 10:58:55 -04:00
|
|
|
self.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),
|
2022-03-22 12:32:35 -04:00
|
|
|
AsyncResetSynchronizer(self.cd_sys, ~pll.locked | self.reset),
|
2019-06-10 11:09:51 -04:00
|
|
|
]
|
|
|
|
|
|
|
|
# BaseSoC ------------------------------------------------------------------------------------------
|
|
|
|
|
2020-03-21 07:43:39 -04:00
|
|
|
class BaseSoC(SoCCore):
|
2022-11-08 06:29:11 -05:00
|
|
|
def __init__(self, sys_clk_freq=75e6, device="LFE5UM5G", toolchain="trellis",
|
|
|
|
with_ethernet = False,
|
|
|
|
with_etherbone = False,
|
|
|
|
with_led_chaser = True,
|
|
|
|
eth_ip = "192.168.1.50",
|
|
|
|
eth_phy = 0,
|
|
|
|
**kwargs):
|
2022-05-02 06:42:04 -04:00
|
|
|
platform = lattice_versa_ecp5.Platform(toolchain=toolchain, device=device)
|
2019-12-03 03:07:09 -05:00
|
|
|
|
|
|
|
# CRG --------------------------------------------------------------------------------------
|
2022-10-27 10:58:55 -04:00
|
|
|
self.crg = _CRG(platform, sys_clk_freq)
|
2019-12-03 03:07:09 -05:00
|
|
|
|
2022-04-21 06:17:26 -04:00
|
|
|
# SoCCore -----------------------------------------_----------------------------------------
|
|
|
|
SoCCore.__init__(self, platform, sys_clk_freq, ident="LiteX SoC on Versa ECP5", **kwargs)
|
|
|
|
|
2019-12-03 03:07:09 -05:00
|
|
|
# DDR3 SDRAM -------------------------------------------------------------------------------
|
|
|
|
if not self.integrated_main_ram_size:
|
2022-10-27 10:58:55 -04:00
|
|
|
self.ddrphy = ECP5DDRPHY(
|
2019-12-03 03:07:09 -05:00
|
|
|
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:
|
2022-10-27 10:58:55 -04:00
|
|
|
self.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:
|
2022-10-27 10:58:55 -04:00
|
|
|
self.leds = LedChaser(
|
2021-07-06 17:39:37 -04:00
|
|
|
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():
|
2022-11-06 15:39:52 -05:00
|
|
|
from litex.build.parser import LiteXArgumentParser
|
2022-11-08 04:41:35 -05:00
|
|
|
parser = LiteXArgumentParser(platform=lattice_versa_ecp5.Platform, description="LiteX SoC on Versa ECP5.")
|
|
|
|
parser.add_target_argument("--sys-clk-freq", default=75e6, type=float, help="System clock frequency.")
|
|
|
|
parser.add_target_argument("--device", default="LFE5UM5G", help="FPGA device (LFE5UM5G or LFE5UM).")
|
2022-11-05 03:07:14 -04:00
|
|
|
ethopts = parser.target_group.add_mutually_exclusive_group()
|
2022-11-08 04:41:35 -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_target_argument("--eth-ip", default="192.168.1.50", help="Ethernet/Etherbone IP address.")
|
|
|
|
parser.add_target_argument("--eth-phy", default=0, type=int, help="Ethernet PHY (0 or 1).")
|
2019-06-10 11:09:51 -04:00
|
|
|
args = parser.parse_args()
|
|
|
|
|
2020-11-12 12:07:28 -05:00
|
|
|
soc = BaseSoC(
|
2022-11-08 04:41:35 -05:00
|
|
|
sys_clk_freq = 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,
|
2022-11-07 02:43:26 -05:00
|
|
|
**parser.soc_argdict
|
2020-11-12 12:07:28 -05:00
|
|
|
)
|
2022-11-05 03:07:14 -04:00
|
|
|
builder = Builder(soc, **parser.builder_argdict)
|
2022-05-06 09:14:32 -04:00
|
|
|
if args.build:
|
2022-11-05 03:07:14 -04:00
|
|
|
builder.build(**parser.toolchain_argdict)
|
2020-05-05 09:11:38 -04:00
|
|
|
|
|
|
|
if args.load:
|
|
|
|
prog = soc.platform.create_programmer()
|
2022-03-17 04:21:05 -04:00
|
|
|
prog.load_bitstream(builder.get_bitstream_filename(mode="sram", ext=".svf")) # FIXME
|
2019-06-10 11:09:51 -04:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|