2019-06-10 11:09:51 -04:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
2020-08-23 09:00:17 -04:00
|
|
|
#
|
|
|
|
# This file is part of LiteX-Boards.
|
|
|
|
#
|
|
|
|
# Copyright (c) 2018-2019 Florent Kermarrec <florent@enjoy-digital.fr>
|
|
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
2019-07-12 13:19:01 -04:00
|
|
|
|
2020-05-05 09:11:38 -04:00
|
|
|
import os
|
2019-06-10 11:09:51 -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 kosagi_netv2
|
2019-06-10 11:09:51 -04:00
|
|
|
|
2020-11-12 06:16:01 -05:00
|
|
|
from litex.soc.interconnect.csr import *
|
2020-03-21 07:43:39 -04:00
|
|
|
from litex.soc.integration.soc_core import *
|
2019-06-10 11:09:51 -04:00
|
|
|
from litex.soc.integration.builder import *
|
2020-11-12 06:16:01 -05:00
|
|
|
|
|
|
|
from litex.soc.cores.clock import *
|
2020-05-08 16:16:13 -04:00
|
|
|
from litex.soc.cores.led import LedChaser
|
2019-06-10 11:09:51 -04:00
|
|
|
|
2019-09-12 03:52:13 -04:00
|
|
|
from litedram.modules import K4B2G1646F
|
2019-06-10 11:09:51 -04:00
|
|
|
from litedram.phy import s7ddrphy
|
|
|
|
|
|
|
|
from liteeth.phy.rmii import LiteEthPHYRMII
|
|
|
|
|
2020-11-12 06:16:01 -05:00
|
|
|
from litepcie.phy.s7pciephy import S7PCIEPHY
|
|
|
|
from litepcie.software import generate_litepcie_software
|
|
|
|
|
2019-06-10 11:09:51 -04:00
|
|
|
# CRG ----------------------------------------------------------------------------------------------
|
|
|
|
|
2022-10-27 10:58:55 -04:00
|
|
|
class _CRG(LiteXModule):
|
2019-06-10 11:09:51 -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_sys4x = ClockDomain()
|
|
|
|
self.cd_sys4x_dqs = ClockDomain()
|
|
|
|
self.cd_idelay = ClockDomain()
|
|
|
|
self.cd_clk100 = ClockDomain()
|
|
|
|
self.cd_eth = ClockDomain()
|
2019-06-10 11:09:51 -04:00
|
|
|
|
2020-11-12 06:16:01 -05:00
|
|
|
# Clk/Rst
|
|
|
|
clk50 = platform.request("clk50")
|
2019-06-10 11:09:51 -04:00
|
|
|
|
2020-11-12 06:16:01 -05:00
|
|
|
# PLL
|
2022-10-27 10:58:55 -04:00
|
|
|
self.pll = pll = S7PLL(speedgrade=-1)
|
2020-11-04 05:09:30 -05:00
|
|
|
self.comb += pll.reset.eq(self.rst)
|
2020-11-12 06:16:01 -05:00
|
|
|
pll.register_clkin(clk50, 50e6)
|
2020-01-16 04:28:09 -05:00
|
|
|
pll.create_clkout(self.cd_sys, sys_clk_freq)
|
|
|
|
pll.create_clkout(self.cd_sys4x, 4*sys_clk_freq)
|
2019-06-10 11:09:51 -04:00
|
|
|
pll.create_clkout(self.cd_sys4x_dqs, 4*sys_clk_freq, phase=90)
|
2020-10-13 06:10:29 -04:00
|
|
|
pll.create_clkout(self.cd_idelay, 200e6)
|
2020-01-16 04:28:09 -05:00
|
|
|
pll.create_clkout(self.cd_clk100, 100e6)
|
|
|
|
pll.create_clkout(self.cd_eth, 50e6)
|
2021-01-07 02:00:40 -05:00
|
|
|
platform.add_false_path_constraints(self.cd_sys.clk, pll.clkin) # Ignore sys_clk to pll.clkin path created by SoC's rst.
|
2019-06-10 11:09:51 -04:00
|
|
|
|
2022-10-27 10:58:55 -04:00
|
|
|
self.idelayctrl = S7IDELAYCTRL(self.cd_idelay)
|
2019-06-10 11:09:51 -04:00
|
|
|
|
|
|
|
# BaseSoC ------------------------------------------------------------------------------------------
|
|
|
|
|
2020-03-21 07:43:39 -04:00
|
|
|
class BaseSoC(SoCCore):
|
2022-11-08 06:29:11 -05:00
|
|
|
def __init__(self, variant="a7-35", sys_clk_freq=100e6,
|
|
|
|
with_pcie = False,
|
|
|
|
with_ethernet = False,
|
|
|
|
with_led_chaser = True,
|
|
|
|
**kwargs):
|
2022-05-02 06:42:04 -04:00
|
|
|
platform = kosagi_netv2.Platform(variant=variant)
|
2019-12-03 03:07:09 -05:00
|
|
|
|
|
|
|
# CRG --------------------------------------------------------------------------------------
|
2022-10-27 10:58:55 -04:00
|
|
|
self.crg = _CRG(platform, sys_clk_freq)
|
2019-06-10 11:09:51 -04:00
|
|
|
|
2022-04-21 06:17:26 -04:00
|
|
|
# SoCCore ----------------------------------------------------------------------------------
|
|
|
|
SoCCore.__init__(self, platform, sys_clk_freq, ident="LiteX SoC on NeTV2", **kwargs)
|
|
|
|
|
2019-12-03 03:07:09 -05:00
|
|
|
# DDR3 SDRAM -------------------------------------------------------------------------------
|
|
|
|
if not self.integrated_main_ram_size:
|
2022-10-27 10:58:55 -04:00
|
|
|
self.ddrphy = s7ddrphy.A7DDRPHY(platform.request("ddram"),
|
2019-12-03 03:07:09 -05:00
|
|
|
memtype = "DDR3",
|
|
|
|
nphases = 4,
|
|
|
|
sys_clk_freq = 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.ddrphy,
|
|
|
|
module = K4B2G1646F(sys_clk_freq, "1:4"),
|
|
|
|
l2_cache_size = kwargs.get("l2_size", 8192)
|
2020-03-21 07:43:39 -04:00
|
|
|
)
|
2019-06-10 11:09:51 -04:00
|
|
|
|
2020-01-16 04:28:09 -05:00
|
|
|
# Ethernet ---------------------------------------------------------------------------------
|
2020-03-21 13:29:52 -04:00
|
|
|
if with_ethernet:
|
2022-10-27 10:58:55 -04:00
|
|
|
self.ethphy = LiteEthPHYRMII(
|
2020-03-21 13:29:52 -04:00
|
|
|
clock_pads = self.platform.request("eth_clocks"),
|
|
|
|
pads = self.platform.request("eth"))
|
|
|
|
self.add_ethernet(phy=self.ethphy)
|
2019-06-10 11:09:51 -04:00
|
|
|
|
2020-11-12 06:16:01 -05:00
|
|
|
# PCIe -------------------------------------------------------------------------------------
|
|
|
|
if with_pcie:
|
2022-10-27 10:58:55 -04:00
|
|
|
self.pcie_phy = S7PCIEPHY(platform, platform.request("pcie_x4"),
|
2020-11-12 06:16:01 -05:00
|
|
|
data_width = 128,
|
|
|
|
bar0_size = 0x20000)
|
2021-03-25 12:47:06 -04:00
|
|
|
self.add_pcie(phy=self.pcie_phy, ndmas=1)
|
2020-11-12 06:16:01 -05: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-06-10 11:09:51 -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=kosagi_netv2.Platform, description="LiteX SoC on NeTV2.")
|
|
|
|
parser.add_target_argument("--variant", default="a7-35", help="Board variant (a7-35 or a7-100).")
|
|
|
|
parser.add_target_argument("--sys-clk-freq", default=100e6, type=float, help="System clock frequency.")
|
|
|
|
parser.add_target_argument("--with-ethernet", action="store_true", help="Enable Ethernet support.")
|
|
|
|
parser.add_target_argument("--with-pcie", action="store_true", help="Enable PCIe support.")
|
|
|
|
parser.add_target_argument("--driver", action="store_true", help="Generate PCIe driver.")
|
2022-11-05 03:07:14 -04:00
|
|
|
sdopts = parser.target_group.add_mutually_exclusive_group()
|
2022-01-05 11:06:22 -05:00
|
|
|
sdopts.add_argument("--with-spi-sdcard", action="store_true", help="Enable SPI-mode SDCard support.")
|
|
|
|
sdopts.add_argument("--with-sdcard", action="store_true", help="Enable SDCard support.")
|
2019-06-10 11:09:51 -04:00
|
|
|
args = parser.parse_args()
|
|
|
|
|
2020-11-12 10:39:42 -05:00
|
|
|
soc = BaseSoC(
|
2021-01-28 07:19:53 -05:00
|
|
|
variant = args.variant,
|
2022-11-08 04:41:35 -05:00
|
|
|
sys_clk_freq = args.sys_clk_freq,
|
2020-11-12 10:39:42 -05:00
|
|
|
with_ethernet = args.with_ethernet,
|
|
|
|
with_pcie = args.with_pcie,
|
2022-11-07 02:43:26 -05:00
|
|
|
**parser.soc_argdict
|
2020-11-12 10:39:42 -05:00
|
|
|
)
|
2020-11-12 06:16:01 -05:00
|
|
|
if args.with_spi_sdcard:
|
|
|
|
soc.add_spi_sdcard()
|
|
|
|
if args.with_sdcard:
|
|
|
|
soc.add_sdcard()
|
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-06-10 11:09:51 -04:00
|
|
|
|
2020-11-12 06:16:01 -05:00
|
|
|
if args.driver:
|
|
|
|
generate_litepcie_software(soc, os.path.join(builder.output_dir, "driver"))
|
|
|
|
|
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-06-10 11:09:51 -04:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|