2019-09-10 05:25:57 -04:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
2020-08-23 09:00:17 -04:00
|
|
|
#
|
|
|
|
# This file is part of LiteX-Boards.
|
|
|
|
#
|
|
|
|
# Copyright (c) 2019 Antti Lukats <antti.lukats@gmail.com>
|
|
|
|
# Copyright (c) 2019 msloniewski <marcin.sloniewski@gmail.com>
|
|
|
|
# Copyright (c) 2019 Florent Kermarrec <florent@enjoy-digital.fr>
|
|
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
2019-09-10 05:25:57 -04:00
|
|
|
|
|
|
|
from migen import *
|
|
|
|
|
2022-05-02 06:42:04 -04:00
|
|
|
from litex_boards.platforms import trenz_c10lprefkit
|
2019-09-10 05:25:57 -04:00
|
|
|
|
2020-04-08 02:34:59 -04:00
|
|
|
from litex.soc.cores.clock import Cyclone10LPPLL
|
2019-09-10 05:25:57 -04:00
|
|
|
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-09-10 05:25:57 -04:00
|
|
|
|
|
|
|
from litedram.modules import MT48LC16M16
|
|
|
|
from litedram.phy import GENSDRPHY
|
|
|
|
|
|
|
|
from liteeth.phy.mii import LiteEthPHYMII
|
|
|
|
|
2022-03-01 03:10:19 -05:00
|
|
|
from litex.soc.cores.hyperbus import HyperRAM
|
2019-09-10 05:25:57 -04:00
|
|
|
|
|
|
|
# CRG ----------------------------------------------------------------------------------------------
|
2020-04-08 02:34:59 -04:00
|
|
|
|
2019-09-10 05:25:57 -04:00
|
|
|
class _CRG(Module):
|
2020-04-08 02:34:59 -04:00
|
|
|
def __init__(self, platform, sys_clk_freq):
|
2020-11-04 05:09:30 -05:00
|
|
|
self.rst = Signal()
|
2019-12-03 03:33:08 -05:00
|
|
|
self.clock_domains.cd_sys = ClockDomain()
|
2022-04-01 05:30:38 -04:00
|
|
|
self.clock_domains.cd_sys_ps = ClockDomain()
|
2019-09-10 05:25:57 -04:00
|
|
|
|
|
|
|
# # #
|
|
|
|
|
2020-04-08 02:34:59 -04:00
|
|
|
# Clk / Rst
|
2019-09-10 05:25:57 -04:00
|
|
|
clk12 = platform.request("clk12")
|
2020-04-08 02:34:59 -04:00
|
|
|
|
|
|
|
# PLL
|
|
|
|
self.submodules.pll = pll = Cyclone10LPPLL(speedgrade="-A7")
|
2020-11-04 05:09:30 -05:00
|
|
|
self.comb += pll.reset.eq(~platform.request("cpu_reset") | self.rst)
|
2020-04-08 02:34:59 -04:00
|
|
|
pll.register_clkin(clk12, 12e6)
|
|
|
|
pll.create_clkout(self.cd_sys, sys_clk_freq)
|
|
|
|
pll.create_clkout(self.cd_sys_ps, sys_clk_freq, phase=90)
|
2019-09-10 05:25:57 -04:00
|
|
|
|
2020-04-08 02:34:59 -04:00
|
|
|
# SDRAM clock
|
2019-09-10 05:25:57 -04:00
|
|
|
self.comb += platform.request("sdram_clock").eq(self.cd_sys_ps.clk)
|
|
|
|
|
|
|
|
# BaseSoC ------------------------------------------------------------------------------------------
|
|
|
|
|
2020-03-21 07:43:39 -04:00
|
|
|
class BaseSoC(SoCCore):
|
2019-09-10 05:25:57 -04:00
|
|
|
mem_map = {
|
|
|
|
"hyperram": 0x20000000,
|
|
|
|
}
|
|
|
|
mem_map.update(SoCCore.mem_map)
|
|
|
|
|
2022-01-19 08:46:29 -05:00
|
|
|
def __init__(self, sys_clk_freq=int(50e6), with_led_chaser=True,
|
|
|
|
with_ethernet=False, with_etherbone=False,
|
|
|
|
**kwargs):
|
2022-05-02 06:42:04 -04:00
|
|
|
platform = trenz_c10lprefkit.Platform()
|
2019-12-03 03:33:08 -05:00
|
|
|
|
|
|
|
# CRG --------------------------------------------------------------------------------------
|
2020-04-08 02:34:59 -04:00
|
|
|
self.submodules.crg = _CRG(platform, sys_clk_freq)
|
2019-09-10 05:25:57 -04:00
|
|
|
|
2022-04-21 06:17:26 -04:00
|
|
|
# SoCCore ----------------------------------------------------------------------------------
|
|
|
|
SoCCore.__init__(self, platform, sys_clk_freq, ident="LiteX SoC on C10 LP RefKit", **kwargs)
|
|
|
|
|
2019-12-03 03:33:08 -05:00
|
|
|
# HyperRam ---------------------------------------------------------------------------------
|
2022-05-02 10:43:52 -04:00
|
|
|
self.submodules.hyperram = HyperRAM(platform.request("hyperram"), sys_clk_freq=sys_clk_freq)
|
2020-02-11 15:59:42 -05:00
|
|
|
self.add_wb_slave(self.mem_map["hyperram"], self.hyperram.bus)
|
2019-09-10 05:25:57 -04:00
|
|
|
self.add_memory_region("hyperram", self.mem_map["hyperram"], 8*1024*1024)
|
|
|
|
|
2019-12-03 03:33:08 -05:00
|
|
|
# SDR SDRAM --------------------------------------------------------------------------------
|
2019-09-10 05:25:57 -04:00
|
|
|
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 = MT48LC16M16(sys_clk_freq, "1:1"),
|
|
|
|
l2_cache_size = kwargs.get("l2_size", 8192)
|
2020-03-21 07:43:39 -04:00
|
|
|
)
|
2019-09-10 05:25:57 -04:00
|
|
|
|
2022-01-19 08:46:29 -05:00
|
|
|
# Ethernet / Etherbone ---------------------------------------------------------------------
|
|
|
|
if with_ethernet or with_etherbone:
|
2020-03-21 13:29:52 -04:00
|
|
|
self.submodules.ethphy = LiteEthPHYMII(
|
|
|
|
clock_pads = self.platform.request("eth_clocks"),
|
|
|
|
pads = self.platform.request("eth"))
|
2022-01-19 08:46:29 -05:00
|
|
|
if with_ethernet:
|
|
|
|
self.add_ethernet(phy=self.ethphy)
|
|
|
|
if with_etherbone:
|
|
|
|
self.add_etherbone(phy=self.ethphy)
|
2019-09-10 05:25:57 -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-09-10 05:25:57 -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 C10 LP RefKit")
|
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("--sys-clk-freq", default=50e6, help="System clock frequency.")
|
|
|
|
target_group.add_argument("--with-ethernet", action="store_true", help="Enable Ethernet support.")
|
|
|
|
target_group.add_argument("--with-etherbone", action="store_true", help="Enable Etherbone support.")
|
2019-09-10 05:25:57 -04:00
|
|
|
builder_args(parser)
|
2021-03-24 10:01:23 -04:00
|
|
|
soc_core_args(parser)
|
2019-09-10 05:25:57 -04:00
|
|
|
args = parser.parse_args()
|
|
|
|
|
2020-11-12 12:07:28 -05:00
|
|
|
soc = BaseSoC(
|
2022-01-19 08:46:29 -05:00
|
|
|
sys_clk_freq = int(float(args.sys_clk_freq)),
|
|
|
|
with_ethernet = args.with_ethernet,
|
|
|
|
with_etherbone = args.with_etherbone,
|
2021-03-24 10:01:23 -04:00
|
|
|
**soc_core_argdict(args)
|
2020-11-12 12:07:28 -05:00
|
|
|
)
|
2019-09-10 05:25:57 -04:00
|
|
|
builder = Builder(soc, **builder_argdict(args))
|
2022-05-06 09:14:32 -04:00
|
|
|
if args.build:
|
|
|
|
builder.build()
|
2019-09-10 05:25:57 -04:00
|
|
|
|
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"))
|
2019-09-10 05:25:57 -04:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|