2019-09-10 05:25:57 -04:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
# This file is Copyright (c) 2019 Antti Lukats <antti.lukats@gmail.com>
|
|
|
|
# This file is Copyright (c) 2019 msloniewski <marcin.sloniewski@gmail.com>
|
|
|
|
# This file is Copyright (c) 2019 Florent Kermarrec <florent@enjoy-digital.fr>
|
|
|
|
# License: BSD
|
|
|
|
|
2020-05-05 09:11:38 -04:00
|
|
|
import os
|
2019-09-10 05:25:57 -04:00
|
|
|
import argparse
|
|
|
|
|
|
|
|
from migen import *
|
|
|
|
|
|
|
|
from litex_boards.platforms import c10lprefkit
|
|
|
|
|
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.soc_sdram 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
|
|
|
|
|
|
|
|
from litex.soc.cores.hyperbus import HyperRAM
|
|
|
|
|
|
|
|
# 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):
|
2019-12-03 03:33:08 -05:00
|
|
|
self.clock_domains.cd_sys = ClockDomain()
|
2020-04-08 02:34:59 -04:00
|
|
|
self.clock_domains.cd_sys_ps = ClockDomain(reset_less=True)
|
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")
|
|
|
|
self.comb += pll.reset.eq(~platform.request("cpu_reset"))
|
|
|
|
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)
|
|
|
|
|
2020-03-21 13:29:52 -04:00
|
|
|
def __init__(self, sys_clk_freq=int(50e6), with_ethernet=False, **kwargs):
|
2019-09-10 05:25:57 -04:00
|
|
|
platform = c10lprefkit.Platform()
|
2019-12-03 03:33:08 -05:00
|
|
|
|
2020-03-21 07:43:39 -04:00
|
|
|
# SoCCore ----------------------------------------------------------------------------------
|
|
|
|
SoCCore.__init__(self, platform, clk_freq=sys_clk_freq, **kwargs)
|
2019-09-10 05:25:57 -04:00
|
|
|
|
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
|
|
|
|
2019-12-03 03:33:08 -05:00
|
|
|
# HyperRam ---------------------------------------------------------------------------------
|
2019-09-10 05:25:57 -04:00
|
|
|
self.submodules.hyperram = HyperRAM(platform.request("hyperram"))
|
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:
|
|
|
|
self.submodules.sdrphy = GENSDRPHY(platform.request("sdram"))
|
2020-03-21 07:43:39 -04:00
|
|
|
self.add_sdram("sdram",
|
|
|
|
phy = self.sdrphy,
|
2020-03-21 15:00:56 -04:00
|
|
|
module = MT48LC16M16(sys_clk_freq, "1:1"),
|
2020-03-21 07:43:39 -04:00
|
|
|
origin = self.mem_map["main_ram"],
|
|
|
|
size = kwargs.get("max_sdram_size", 0x40000000),
|
|
|
|
l2_cache_size = kwargs.get("l2_size", 8192),
|
|
|
|
l2_cache_min_data_width = kwargs.get("min_l2_data_width", 128),
|
|
|
|
l2_cache_reverse = True
|
|
|
|
)
|
2019-09-10 05:25:57 -04:00
|
|
|
|
2020-01-16 04:28:09 -05:00
|
|
|
# Ethernet ---------------------------------------------------------------------------------
|
2020-03-21 13:29:52 -04:00
|
|
|
if with_ethernet:
|
|
|
|
self.submodules.ethphy = LiteEthPHYMII(
|
|
|
|
clock_pads = self.platform.request("eth_clocks"),
|
|
|
|
pads = self.platform.request("eth"))
|
|
|
|
self.add_csr("ethphy")
|
|
|
|
self.add_ethernet(phy=self.ethphy)
|
2019-09-10 05:25:57 -04:00
|
|
|
|
2020-05-08 16:16:13 -04:00
|
|
|
# Leds -------------------------------------------------------------------------------------
|
|
|
|
self.submodules.leds = LedChaser(
|
|
|
|
pads = Cat(*[platform.request("user_led", i) for i in range(5)]),
|
|
|
|
sys_clk_freq = sys_clk_freq)
|
|
|
|
self.add_csr("leds")
|
|
|
|
|
2019-09-10 05:25:57 -04:00
|
|
|
# Build --------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
def main():
|
|
|
|
parser = argparse.ArgumentParser(description="LiteX SoC on C10 LP RefKit")
|
2020-05-05 09:11:38 -04:00
|
|
|
parser.add_argument("--build", action="store_true", help="Build bitstream")
|
|
|
|
parser.add_argument("--load", action="store_true", help="Load bitstream")
|
2019-09-10 05:25:57 -04:00
|
|
|
builder_args(parser)
|
|
|
|
soc_sdram_args(parser)
|
2020-05-05 09:11:38 -04:00
|
|
|
parser.add_argument("--with-ethernet", action="store_true", help="Enable Ethernet support")
|
2019-09-10 05:25:57 -04:00
|
|
|
args = parser.parse_args()
|
|
|
|
|
2020-03-21 13:29:52 -04:00
|
|
|
soc = BaseSoC(with_ethernet=args.with_ethernet, **soc_sdram_argdict(args))
|
2019-09-10 05:25:57 -04:00
|
|
|
builder = Builder(soc, **builder_argdict(args))
|
2020-05-05 09:11:38 -04:00
|
|
|
builder.build(run=args.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()
|
|
|
|
prog.load_bitstream(os.path.join(builder.gateware_dir, "top.sof"))
|
2019-09-10 05:25:57 -04:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|