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 *
|
|
|
|
|
2023-02-23 03:09:33 -05:00
|
|
|
from litex.gen import *
|
2022-10-27 10:58:55 -04:00
|
|
|
|
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 *
|
2022-11-08 04:41:35 -05:00
|
|
|
from litex.soc.integration.soc import SoCRegion
|
2019-09-10 05:25:57 -04:00
|
|
|
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
|
|
|
|
2022-10-27 10:58:55 -04:00
|
|
|
class _CRG(LiteXModule):
|
2020-04-08 02:34:59 -04:00
|
|
|
def __init__(self, platform, sys_clk_freq):
|
2022-10-27 10:58:55 -04:00
|
|
|
self.rst = Signal()
|
|
|
|
self.cd_sys = ClockDomain()
|
|
|
|
self.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
|
2022-10-27 10:58:55 -04:00
|
|
|
self.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-11-08 06:29:11 -05:00
|
|
|
def __init__(self, sys_clk_freq=50e6,
|
|
|
|
with_led_chaser = True,
|
|
|
|
with_ethernet = False,
|
|
|
|
with_etherbone = False,
|
2022-01-19 08:46:29 -05:00
|
|
|
**kwargs):
|
2022-05-02 06:42:04 -04:00
|
|
|
platform = trenz_c10lprefkit.Platform()
|
2019-12-03 03:33:08 -05:00
|
|
|
|
|
|
|
# CRG --------------------------------------------------------------------------------------
|
2022-10-27 10:58:55 -04:00
|
|
|
self.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-10-27 10:58:55 -04:00
|
|
|
self.hyperram = HyperRAM(platform.request("hyperram"), sys_clk_freq=sys_clk_freq)
|
2022-11-08 04:41:35 -05:00
|
|
|
self.bus.add_slave("hyperram", slave=self.hyperram.bus, region=SoCRegion(origin=0x20000000, size=8*1024*1024))
|
2019-09-10 05:25:57 -04:00
|
|
|
|
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:
|
2022-10-27 10:58:55 -04:00
|
|
|
self.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:
|
2022-10-27 10:58:55 -04:00
|
|
|
self.ethphy = LiteEthPHYMII(
|
2020-03-21 13:29:52 -04:00
|
|
|
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:
|
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-09-10 05:25:57 -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=trenz_c10lprefkit.Platform, description="LiteX SoC on C10 LP RefKit.")
|
|
|
|
parser.add_target_argument("--sys-clk-freq", default=50e6, type=float, help="System clock frequency.")
|
|
|
|
parser.add_target_argument("--with-ethernet", action="store_true", help="Enable Ethernet support.")
|
|
|
|
parser.add_target_argument("--with-etherbone", action="store_true", help="Enable Etherbone support.")
|
2019-09-10 05:25:57 -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,
|
2022-01-19 08:46:29 -05:00
|
|
|
with_ethernet = args.with_ethernet,
|
|
|
|
with_etherbone = args.with_etherbone,
|
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)
|
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()
|