2020-01-05 18:46:13 -05:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
2020-08-23 09:00:17 -04:00
|
|
|
#
|
|
|
|
# This file is part of LiteX-Boards.
|
|
|
|
#
|
|
|
|
# Copyright (c) 2020 Michael Welling <mwelling@ieee.org>
|
|
|
|
# Copyright (c) 2020 Sean Cross <sean@xobs.io>
|
|
|
|
# Copyright (c) 2020 Drew Fustini <drew@pdp7.com>
|
|
|
|
# Copyright (c) 2020 Florent Kermarrec <florent@enjoy-digital.fr>
|
|
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
2020-01-05 18:46:13 -05:00
|
|
|
|
|
|
|
from migen import *
|
|
|
|
from migen.genlib.resetsync import AsyncResetSynchronizer
|
|
|
|
|
2020-04-10 05:46:23 -04:00
|
|
|
from litex.build.io import DDROutput
|
|
|
|
|
2022-05-02 06:42:04 -04:00
|
|
|
from litex_boards.platforms import hackaday_hadbadge
|
2020-01-05 18:46:13 -05:00
|
|
|
|
2020-02-28 03:46:54 -05:00
|
|
|
from litex.build.lattice.trellis import trellis_args, trellis_argdict
|
|
|
|
|
2020-01-05 18:46:13 -05:00
|
|
|
from litex.soc.cores.clock import *
|
2020-03-21 07:43:39 -04:00
|
|
|
from litex.soc.integration.soc_core import *
|
2020-01-05 18:46:13 -05:00
|
|
|
from litex.soc.integration.builder import *
|
|
|
|
|
|
|
|
from litedram import modules as litedram_modules
|
|
|
|
from litedram.phy import GENSDRPHY
|
2020-01-07 04:29:58 -05:00
|
|
|
from litedram.modules import AS4C32M8
|
2020-01-05 18:46:13 -05:00
|
|
|
|
|
|
|
# CRG ----------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class _CRG(Module):
|
|
|
|
def __init__(self, platform, sys_clk_freq):
|
2020-11-04 05:09:30 -05:00
|
|
|
self.rst = Signal()
|
2020-01-07 04:29:58 -05:00
|
|
|
self.clock_domains.cd_sys = ClockDomain()
|
2022-04-01 05:30:38 -04:00
|
|
|
self.clock_domains.cd_sys_ps = ClockDomain()
|
2020-01-05 18:46:13 -05:00
|
|
|
|
|
|
|
# # #
|
|
|
|
|
2020-01-09 08:24:18 -05:00
|
|
|
# Clk / Rst
|
2020-01-07 04:29:58 -05:00
|
|
|
clk8 = platform.request("clk8")
|
2020-01-05 18:46:13 -05:00
|
|
|
|
2020-01-09 08:24:18 -05:00
|
|
|
# PLL
|
2020-01-05 18:46:13 -05:00
|
|
|
self.submodules.pll = pll = ECP5PLL()
|
2021-07-28 06:25:17 -04:00
|
|
|
pll.pfd_freq_range = (8e6, 400e6) # Lower Min from 10MHz to 8MHz.
|
2020-11-04 05:09:30 -05:00
|
|
|
self.comb += pll.reset.eq(self.rst)
|
2020-01-05 18:46:13 -05:00
|
|
|
pll.register_clkin(clk8, 8e6)
|
2020-03-24 14:59:42 -04:00
|
|
|
pll.create_clkout(self.cd_sys, sys_clk_freq)
|
|
|
|
pll.create_clkout(self.cd_sys_ps, sys_clk_freq, phase=90)
|
2020-01-05 18:46:13 -05:00
|
|
|
|
2020-01-09 08:24:18 -05:00
|
|
|
# SDRAM clock
|
2020-04-10 05:46:23 -04:00
|
|
|
self.specials += DDROutput(1, 0, platform.request("sdram_clock"), ClockSignal("sys_ps"))
|
2020-01-05 18:46:13 -05:00
|
|
|
|
|
|
|
# BaseSoC ------------------------------------------------------------------------------------------
|
|
|
|
|
2020-03-21 07:43:39 -04:00
|
|
|
class BaseSoC(SoCCore):
|
2020-01-07 04:29:58 -05:00
|
|
|
def __init__(self, toolchain="trellis", sys_clk_freq=int(48e6), sdram_module_cls="AS4C32M8", **kwargs):
|
2022-05-02 06:42:04 -04:00
|
|
|
platform = hackaday_hadbadge.Platform(toolchain=toolchain)
|
2020-01-07 04:29:58 -05:00
|
|
|
|
|
|
|
# CRG --------------------------------------------------------------------------------------
|
|
|
|
self.submodules.crg = _CRG(platform, sys_clk_freq)
|
|
|
|
|
2022-04-21 06:17:26 -04:00
|
|
|
# SoCCore ---------------------------------------------------------------------------------
|
|
|
|
SoCCore.__init__(self, platform, sys_clk_freq, ident="LiteX SoC on Hackaday Badge", **kwargs)
|
|
|
|
|
2020-01-07 04:29:58 -05:00
|
|
|
# SDR SDRAM --------------------------------------------------------------------------------
|
|
|
|
if not self.integrated_main_ram_size:
|
2021-01-04 05:38:07 -05:00
|
|
|
self.submodules.sdrphy = GENSDRPHY(platform.request("sdram"), sys_clk_freq)
|
2020-03-21 07:43:39 -04:00
|
|
|
self.add_sdram("sdram",
|
2021-03-29 09:28:04 -04:00
|
|
|
phy = self.sdrphy,
|
|
|
|
module = AS4C32M8(sys_clk_freq, "1:1"),
|
|
|
|
l2_cache_size = kwargs.get("l2_size", 8192)
|
2020-03-21 07:43:39 -04:00
|
|
|
)
|
2020-01-05 18:46:13 -05: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 Hackaday Badge")
|
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("--toolchain", default="trellis", help="FPGA toolchain (trellis or diamond).")
|
|
|
|
target_group.add_argument("--sys-clk-freq", default=48e6, help="System clock frequency.")
|
2020-01-05 18:46:13 -05:00
|
|
|
builder_args(parser)
|
2021-03-24 10:01:23 -04:00
|
|
|
soc_core_args(parser)
|
2020-02-28 03:46:54 -05:00
|
|
|
trellis_args(parser)
|
2020-01-05 18:46:13 -05:00
|
|
|
args = parser.parse_args()
|
|
|
|
|
2020-11-12 12:07:28 -05:00
|
|
|
soc = BaseSoC(
|
|
|
|
toolchain = args.toolchain,
|
|
|
|
sys_clk_freq = int(float(args.sys_clk_freq)),
|
2021-03-24 10:01:23 -04:00
|
|
|
**soc_core_argdict(args))
|
2020-01-05 18:46:13 -05: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 {}
|
2022-05-06 09:14:32 -04:00
|
|
|
if args.build:
|
|
|
|
builder.build(**builder_kargs)
|
2020-01-05 18:46:13 -05:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|