2020-06-27 06:26:44 -04:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
2020-08-23 09:00:17 -04:00
|
|
|
#
|
|
|
|
# This file is part of LiteX-Boards.
|
|
|
|
#
|
|
|
|
# Copyright (c) 2020 Owen Kirby <oskirby@gmail.com>
|
|
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
2020-06-27 06:26:44 -04:00
|
|
|
|
|
|
|
import os
|
|
|
|
import sys
|
2022-03-21 11:59:40 -04:00
|
|
|
|
2020-06-27 06:26:44 -04:00
|
|
|
from migen import *
|
|
|
|
from migen.genlib.resetsync import AsyncResetSynchronizer
|
|
|
|
|
|
|
|
from litex_boards.platforms import logicbone
|
|
|
|
|
|
|
|
from litex.build.lattice.trellis import trellis_args, trellis_argdict
|
|
|
|
|
|
|
|
from litex.soc.cores.clock import *
|
|
|
|
from litex.soc.integration.soc_core import *
|
|
|
|
from litex.soc.integration.builder import *
|
|
|
|
from litex.soc.cores.led import LedChaser
|
|
|
|
|
|
|
|
from litedram.modules import MT41K512M16
|
|
|
|
from litedram.phy import ECP5DDRPHY
|
|
|
|
from liteeth.phy.ecp5rgmii import LiteEthPHYRGMII
|
|
|
|
|
|
|
|
# _CRG ---------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class _CRG(Module):
|
|
|
|
def __init__(self, platform, sys_clk_freq, with_usb_pll=False):
|
2020-11-04 05:09:30 -05:00
|
|
|
self.rst = Signal()
|
2020-06-27 06:26:44 -04:00
|
|
|
self.clock_domains.cd_init = ClockDomain()
|
|
|
|
self.clock_domains.cd_por = ClockDomain(reset_less=True)
|
|
|
|
self.clock_domains.cd_sys = ClockDomain()
|
2022-03-22 12:32:35 -04:00
|
|
|
self.clock_domains.cd_sys2x = ClockDomain(reset_less=True)
|
2020-06-27 06:26:44 -04:00
|
|
|
self.clock_domains.cd_sys2x_i = ClockDomain(reset_less=True)
|
|
|
|
|
|
|
|
# # #
|
|
|
|
|
2020-09-01 07:38:28 -04:00
|
|
|
self.stop = Signal()
|
2020-06-29 10:28:28 -04:00
|
|
|
self.reset = Signal()
|
2020-06-27 06:26:44 -04:00
|
|
|
|
|
|
|
# Clk / Rst
|
2020-11-03 04:48:41 -05:00
|
|
|
clk25 = platform.request("clk25")
|
2020-06-27 06:26:44 -04:00
|
|
|
|
|
|
|
# Power on reset
|
|
|
|
por_count = Signal(16, reset=2**16-1)
|
|
|
|
por_done = Signal()
|
2020-06-29 10:28:28 -04:00
|
|
|
self.comb += self.cd_por.clk.eq(clk25)
|
2020-06-27 06:26:44 -04:00
|
|
|
self.comb += por_done.eq(por_count == 0)
|
|
|
|
self.sync.por += If(~por_done, por_count.eq(por_count - 1))
|
|
|
|
|
|
|
|
# PLL
|
|
|
|
sys2x_clk_ecsout = Signal()
|
|
|
|
self.submodules.pll = pll = ECP5PLL()
|
2020-11-04 05:09:30 -05:00
|
|
|
self.comb += pll.reset.eq(~por_done | self.rst)
|
2020-06-27 06:26:44 -04:00
|
|
|
pll.register_clkin(clk25, 25e6)
|
|
|
|
pll.create_clkout(self.cd_sys2x_i, 2*sys_clk_freq)
|
|
|
|
pll.create_clkout(self.cd_init, 24e6)
|
|
|
|
self.specials += [
|
|
|
|
Instance("ECLKBRIDGECS",
|
|
|
|
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),
|
|
|
|
Instance("CLKDIVF",
|
|
|
|
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,
|
2020-06-27 06:26:44 -04:00
|
|
|
o_CDIVX = self.cd_sys.clk),
|
2022-03-22 12:32:35 -04:00
|
|
|
AsyncResetSynchronizer(self.cd_sys, ~pll.locked | self.reset),
|
2020-06-27 06:26:44 -04:00
|
|
|
]
|
|
|
|
|
|
|
|
# USB PLL
|
|
|
|
if with_usb_pll:
|
|
|
|
self.clock_domains.cd_usb_12 = ClockDomain()
|
|
|
|
self.clock_domains.cd_usb_48 = ClockDomain()
|
|
|
|
usb_pll = ECP5PLL()
|
|
|
|
self.submodules += usb_pll
|
2020-11-04 05:09:30 -05:00
|
|
|
self.comb += usb_pll.reset.eq(~por_done | self.rst)
|
2020-06-27 06:26:44 -04:00
|
|
|
usb_pll.register_clkin(clk25, 25e6)
|
|
|
|
usb_pll.create_clkout(self.cd_usb_48, 48e6)
|
|
|
|
usb_pll.create_clkout(self.cd_usb_12, 12e6)
|
|
|
|
|
|
|
|
# BaseSoC ------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class BaseSoC(SoCCore):
|
|
|
|
def __init__(self, revision="rev0", device="45F", sdram_device="MT41K512M16",
|
2022-01-18 11:13:02 -05:00
|
|
|
sys_clk_freq = int(75e6),
|
|
|
|
with_ethernet = False,
|
|
|
|
with_led_chaser = True,
|
|
|
|
toolchain = "trellis",
|
|
|
|
**kwargs):
|
2020-06-27 06:26:44 -04:00
|
|
|
platform = logicbone.Platform(revision=revision, device=device ,toolchain=toolchain)
|
|
|
|
|
|
|
|
# Serial -----------------------------------------------------------------------------------
|
|
|
|
if kwargs["uart_name"] == "usb_acm":
|
|
|
|
# FIXME: do proper install of ValentyUSB.
|
2020-11-27 12:53:45 -05:00
|
|
|
os.system("git clone https://github.com/litex-hub/valentyusb -b hw_cdc_eptri")
|
2020-06-27 06:26:44 -04:00
|
|
|
sys.path.append("valentyusb")
|
|
|
|
|
|
|
|
# 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 Logicbone",
|
2020-06-30 12:11:04 -04:00
|
|
|
**kwargs)
|
2020-06-27 06:26:44 -04:00
|
|
|
|
|
|
|
# CRG --------------------------------------------------------------------------------------
|
|
|
|
with_usb_pll = kwargs.get("uart_name", None) == "usb_acm"
|
|
|
|
self.submodules.crg = _CRG(platform, sys_clk_freq, with_usb_pll)
|
|
|
|
|
|
|
|
# DDR3 SDRAM -------------------------------------------------------------------------------
|
|
|
|
if not self.integrated_main_ram_size:
|
|
|
|
available_sdram_modules = {
|
|
|
|
"MT41K512M16": MT41K512M16,
|
|
|
|
#"AS4C1GM8": AS4C1GM8, ## Too many rows, seems to break things.
|
|
|
|
}
|
|
|
|
sdram_module = available_sdram_modules.get(sdram_device)
|
|
|
|
|
|
|
|
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-06-27 06:26:44 -04:00
|
|
|
self.add_sdram("sdram",
|
2021-03-29 09:28:04 -04:00
|
|
|
phy = self.ddrphy,
|
|
|
|
module = sdram_module(sys_clk_freq, "1:2"),
|
|
|
|
l2_cache_size = kwargs.get("l2_size", 8192)
|
2020-06-27 06:26:44 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
# Ethernet ---------------------------------------------------------------------------------
|
|
|
|
if with_ethernet:
|
|
|
|
self.submodules.ethphy = LiteEthPHYRGMII(
|
|
|
|
clock_pads = self.platform.request("eth_clocks"),
|
|
|
|
pads = self.platform.request("eth"))
|
|
|
|
self.add_ethernet(phy=self.ethphy)
|
|
|
|
|
|
|
|
|
|
|
|
# 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-06-27 06:26:44 -04:00
|
|
|
|
|
|
|
# Build --------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
def main():
|
2022-03-21 11:59:40 -04:00
|
|
|
from litex.soc.integration.soc import LiteXSoCArgumentParser
|
|
|
|
parser = LiteXSoCArgumentParser(description="LiteX SoC on Logicbone")
|
2022-03-21 13:30:10 -04:00
|
|
|
target_group = parser.add_argument_group(title="Target options")
|
|
|
|
target_group.add_argument("--build", action="store_true", help="Build bitstream.")
|
|
|
|
target_group.add_argument("--load", action="store_true", help="Load bitstream.")
|
|
|
|
target_group.add_argument("--toolchain", default="trellis", help="FPGA toolchain (trellis or diamond).")
|
|
|
|
target_group.add_argument("--sys-clk-freq", default=75e6, help="System clock frequency.")
|
|
|
|
target_group.add_argument("--device", default="45F", help="FPGA device (45F or 85F).")
|
|
|
|
target_group.add_argument("--sdram-device", default="MT41K512M16", help="SDRAM device (MT41K512M16).")
|
|
|
|
target_group.add_argument("--with-ethernet", action="store_true", help="Enable Ethernet support.")
|
|
|
|
target_group.add_argument("--with-sdcard", action="store_true", help="Enable SDCard support.")
|
2020-06-27 06:26:44 -04:00
|
|
|
builder_args(parser)
|
2021-03-24 10:01:23 -04:00
|
|
|
soc_core_args(parser)
|
2020-06-27 06:26:44 -04:00
|
|
|
trellis_args(parser)
|
|
|
|
args = parser.parse_args()
|
2020-06-29 10:28:28 -04:00
|
|
|
|
2020-06-27 06:26:44 -04:00
|
|
|
soc = BaseSoC(
|
2020-06-29 10:28:28 -04:00
|
|
|
toolchain = args.toolchain,
|
|
|
|
device = args.device,
|
2020-11-12 12:07:28 -05:00
|
|
|
sys_clk_freq = int(float(args.sys_clk_freq)),
|
2020-06-29 10:28:28 -04:00
|
|
|
sdram_device = args.sdram_device,
|
|
|
|
with_ethernet = args.with_ethernet,
|
2021-03-24 10:01:23 -04:00
|
|
|
**soc_core_argdict(args)
|
2020-11-12 12:07:28 -05:00
|
|
|
)
|
2020-06-27 06:26:44 -04:00
|
|
|
if args.with_sdcard:
|
|
|
|
soc.add_sdcard()
|
|
|
|
builder = Builder(soc, **builder_argdict(args))
|
|
|
|
builder_kargs = trellis_argdict(args) if args.toolchain == "trellis" else {}
|
|
|
|
builder.build(**builder_kargs, run=args.build)
|
|
|
|
|
|
|
|
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"))
|
2020-06-27 06:26:44 -04:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|