2019-08-05 08:34:56 -04:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
2020-08-23 09:00:17 -04:00
|
|
|
#
|
|
|
|
# This file is part of LiteX-Boards.
|
|
|
|
#
|
|
|
|
# Copyright (c) 2019 Arnaud Durand <arnaud.durand@unifr.ch>
|
|
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
2019-08-05 08:34:56 -04:00
|
|
|
|
|
|
|
from migen import *
|
|
|
|
from migen.genlib.resetsync import AsyncResetSynchronizer
|
|
|
|
|
2022-05-02 06:42:04 -04:00
|
|
|
from litex_boards.platforms import lattice_ecp5_evn
|
2019-08-05 08:34:56 -04:00
|
|
|
|
2022-06-21 14:14:58 -04:00
|
|
|
from litex.build.lattice.trellis import trellis_args, trellis_argdict
|
|
|
|
|
2019-08-05 08:34:56 -04:00
|
|
|
from litex.soc.cores.clock import *
|
|
|
|
from litex.soc.integration.soc_core import *
|
|
|
|
from litex.soc.integration.builder import *
|
2020-05-08 16:16:13 -04:00
|
|
|
from litex.soc.cores.led import LedChaser
|
2019-08-05 08:34:56 -04:00
|
|
|
|
|
|
|
# CRG ----------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class _CRG(Module):
|
2019-08-09 03:42:17 -04:00
|
|
|
def __init__(self, platform, sys_clk_freq, x5_clk_freq):
|
2020-11-04 05:09:30 -05:00
|
|
|
self.rst = Signal()
|
2019-08-05 08:34:56 -04:00
|
|
|
self.clock_domains.cd_sys = ClockDomain()
|
|
|
|
|
|
|
|
# # #
|
|
|
|
|
2022-02-15 04:58:38 -05:00
|
|
|
# Clk / Rst.
|
2019-08-09 03:42:17 -04:00
|
|
|
clk = clk12 = platform.request("clk12")
|
2019-08-05 08:34:56 -04:00
|
|
|
rst_n = platform.request("rst_n")
|
2019-08-09 03:42:17 -04:00
|
|
|
if x5_clk_freq is not None:
|
|
|
|
clk = clk50 = platform.request("ext_clk50")
|
|
|
|
self.comb += platform.request("ext_clk50_en").eq(1)
|
|
|
|
platform.add_period_constraint(clk50, 1e9/x5_clk_freq)
|
2019-08-05 08:34:56 -04:00
|
|
|
|
2022-02-15 04:58:38 -05:00
|
|
|
# PLL.
|
2019-08-09 03:42:17 -04:00
|
|
|
self.submodules.pll = pll = ECP5PLL()
|
2020-11-04 05:09:30 -05:00
|
|
|
self.comb += pll.reset.eq(~rst_n | self.rst)
|
2019-08-09 03:42:17 -04:00
|
|
|
pll.register_clkin(clk, x5_clk_freq or 12e6)
|
|
|
|
pll.create_clkout(self.cd_sys, sys_clk_freq)
|
2019-08-05 08:34:56 -04:00
|
|
|
|
|
|
|
# BaseSoC ------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class BaseSoC(SoCCore):
|
2021-07-06 17:39:37 -04:00
|
|
|
def __init__(self, sys_clk_freq=int(50e6), x5_clk_freq=None, toolchain="trellis",
|
|
|
|
with_led_chaser=True, **kwargs):
|
2022-05-02 06:42:04 -04:00
|
|
|
platform = lattice_ecp5_evn.Platform(toolchain=toolchain)
|
2019-12-03 03:33:08 -05:00
|
|
|
|
|
|
|
# CRG --------------------------------------------------------------------------------------
|
2022-04-21 06:17:26 -04:00
|
|
|
self.submodules.crg = _CRG(platform, sys_clk_freq, x5_clk_freq)
|
|
|
|
|
|
|
|
# SoCCore ----------------------------------------------------------------------------------
|
|
|
|
SoCCore.__init__(self, platform, sys_clk_freq, ident="LiteX SoC on ECP5 Evaluation Board", **kwargs)
|
2019-08-05 08:34:56 -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-08-05 08:34:56 -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 ECP5 Evaluation Board")
|
2022-03-21 13:30:10 -04:00
|
|
|
target_group = parser.add_argument_group(title="Target options")
|
2022-05-06 09:14:32 -04:00
|
|
|
target_group.add_argument("--build", action="store_true", help="Build design.")
|
2022-03-21 13:30:10 -04:00
|
|
|
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=60e6, help="System clock frequency.")
|
|
|
|
target_group.add_argument("--x5-clk-freq", type=int, help="Use X5 oscillator as system clock at the specified frequency.")
|
2019-08-05 08:34:56 -04:00
|
|
|
builder_args(parser)
|
|
|
|
soc_core_args(parser)
|
2022-06-21 14:14:58 -04:00
|
|
|
trellis_args(parser)
|
2019-08-05 08:34:56 -04:00
|
|
|
args = parser.parse_args()
|
|
|
|
|
2020-05-05 09:11:38 -04:00
|
|
|
soc = BaseSoC(toolchain=args.toolchain,
|
2019-12-03 03:33:08 -05:00
|
|
|
sys_clk_freq = int(float(args.sys_clk_freq)),
|
|
|
|
x5_clk_freq = args.x5_clk_freq,
|
2019-08-09 03:42:17 -04:00
|
|
|
**soc_core_argdict(args))
|
2019-08-05 08:34:56 -04:00
|
|
|
builder = Builder(soc, **builder_argdict(args))
|
2022-06-21 14:14:58 -04:00
|
|
|
builder_kargs = trellis_argdict(args) if args.toolchain == "trellis" else {}
|
2022-05-06 09:14:32 -04:00
|
|
|
if args.build:
|
2022-06-21 14:14:58 -04:00
|
|
|
builder.build(**builder_kargs)
|
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-08-05 08:34:56 -04:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|