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) 2019 Vamsi K Vytla <vamsi.vytla@gmail.com>
|
2020-11-12 10:39:42 -05:00
|
|
|
# Copyright (c) 2019-2020 Florent Kermarrec <florent@enjoy-digital.fr>
|
2020-08-23 09:00:17 -04:00
|
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
2019-06-24 06:13:30 -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 xilinx_ac701
|
2019-06-10 11:09:51 -04:00
|
|
|
|
|
|
|
from litex.soc.cores.clock 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-05-08 16:16:13 -04:00
|
|
|
from litex.soc.cores.led import LedChaser
|
2019-06-10 11:09:51 -04:00
|
|
|
|
2020-09-05 05:46:01 -04:00
|
|
|
from litedram.common import PHYPadsReducer
|
2019-06-10 11:09:51 -04:00
|
|
|
from litedram.modules import MT8JTF12864
|
|
|
|
from litedram.phy import s7ddrphy
|
|
|
|
|
|
|
|
from liteeth.phy.a7_gtp import QPLLSettings, QPLL
|
|
|
|
from liteeth.phy.a7_1000basex import A7_1000BASEX
|
|
|
|
from liteeth.phy.s7rgmii import LiteEthPHYRGMII
|
|
|
|
|
2020-11-12 10:39:42 -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()
|
2019-06-10 11:09:51 -04:00
|
|
|
|
|
|
|
# # #
|
|
|
|
|
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(platform.request("cpu_reset") | self.rst)
|
2019-06-10 11:09:51 -04:00
|
|
|
pll.register_clkin(platform.request("clk200"), 200e6)
|
2019-12-03 03:33:08 -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)
|
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, sys_clk_freq=100e6,
|
|
|
|
with_ethernet = False,
|
|
|
|
eth_phy = "rgmii",
|
|
|
|
with_spi_flash = False,
|
|
|
|
with_led_chaser = True,
|
|
|
|
with_pcie = False,
|
|
|
|
**kwargs):
|
2022-05-02 06:42:04 -04:00
|
|
|
platform = xilinx_ac701.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-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 AC701", **kwargs)
|
|
|
|
|
2019-12-03 03:33:08 -05:00
|
|
|
# DDR3 SDRAM -------------------------------------------------------------------------------
|
|
|
|
if not self.integrated_main_ram_size:
|
2022-10-27 10:58:55 -04:00
|
|
|
self.ddrphy = s7ddrphy.A7DDRPHY(
|
2020-09-05 05:46:01 -04:00
|
|
|
pads = PHYPadsReducer(platform.request("ddram"), [0, 1, 2, 3]),
|
2019-12-03 03:33:08 -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 = MT8JTF12864(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-03-21 13:29:52 -04:00
|
|
|
# Ethernet ---------------------------------------------------------------------------------
|
|
|
|
if with_ethernet:
|
|
|
|
# RGMII Ethernet PHY -------------------------------------------------------------------
|
2021-01-08 12:50:01 -05:00
|
|
|
if eth_phy == "rgmii":
|
2020-03-21 13:29:52 -04:00
|
|
|
# phy
|
2022-10-27 10:58:55 -04:00
|
|
|
self.ethphy = LiteEthPHYRGMII(
|
2020-03-21 13:29:52 -04:00
|
|
|
clock_pads = self.platform.request("eth_clocks"),
|
|
|
|
pads = self.platform.request("eth"))
|
|
|
|
|
|
|
|
# 1000BaseX Ethernet PHY ---------------------------------------------------------------
|
2021-01-08 12:50:01 -05:00
|
|
|
if eth_phy == "1000basex":
|
2020-03-21 13:29:52 -04:00
|
|
|
# phy
|
|
|
|
self.comb += self.platform.request("sfp_mgt_clk_sel0", 0).eq(0)
|
|
|
|
self.comb += self.platform.request("sfp_mgt_clk_sel1", 0).eq(0)
|
|
|
|
self.comb += self.platform.request("sfp_tx_disable_n", 0).eq(0)
|
|
|
|
qpll_settings = QPLLSettings(
|
|
|
|
refclksel = 0b001,
|
|
|
|
fbdiv = 4,
|
|
|
|
fbdiv_45 = 5,
|
|
|
|
refclk_div = 1)
|
|
|
|
refclk125 = self.platform.request("gtp_refclk")
|
|
|
|
refclk125_se = Signal()
|
|
|
|
self.specials += \
|
|
|
|
Instance("IBUFDS_GTE2",
|
|
|
|
i_CEB = 0,
|
|
|
|
i_I = refclk125.p,
|
|
|
|
i_IB = refclk125.n,
|
|
|
|
o_O = refclk125_se)
|
|
|
|
qpll = QPLL(refclk125_se, qpll_settings)
|
|
|
|
self.submodules += qpll
|
2022-10-27 10:58:55 -04:00
|
|
|
self.ethphy = A7_1000BASEX(
|
2020-03-21 13:29:52 -04:00
|
|
|
qpll_channel = qpll.channels[0],
|
|
|
|
data_pads = self.platform.request("sfp", 0),
|
|
|
|
sys_clk_freq = self.clk_freq)
|
|
|
|
|
|
|
|
self.add_ethernet(phy=self.ethphy)
|
2019-06-10 11:09:51 -04:00
|
|
|
|
2022-04-28 05:05:41 -04:00
|
|
|
# SPI Flash --------------------------------------------------------------------------------
|
|
|
|
if with_spi_flash:
|
|
|
|
from litespi.modules import N25Q256A
|
|
|
|
from litespi.opcodes import SpiNorFlashOpCodes as Codes
|
|
|
|
self.add_spi_flash(mode="4x", module=N25Q256A(Codes.READ_1_1_4), rate="1:1", with_master=True)
|
|
|
|
|
2020-11-12 10:39:42 -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 10:39:42 -05:00
|
|
|
data_width = 128,
|
|
|
|
bar0_size = 0x20000)
|
|
|
|
self.add_pcie(phy=self.pcie_phy, ndmas=1)
|
|
|
|
|
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=xilinx_ac701.Platform, description="LiteX SoC on AC701.")
|
|
|
|
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("--eth-phy", default="rgmii", help="Select Ethernet PHY (rgmii or 1000basex).")
|
|
|
|
parser.add_target_argument("--with-spi-flash", action="store_true", help="Enable SPI Flash (MMAPed).")
|
|
|
|
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.")
|
2019-06-10 11:09:51 -04:00
|
|
|
args = parser.parse_args()
|
|
|
|
|
2020-11-12 10:39:42 -05:00
|
|
|
soc = BaseSoC(
|
2022-11-08 04:41:35 -05:00
|
|
|
sys_clk_freq = args.sys_clk_freq,
|
2022-04-28 05:05:41 -04:00
|
|
|
with_ethernet = args.with_ethernet,
|
|
|
|
eth_phy = args.eth_phy,
|
|
|
|
with_spi_flash = args.with_spi_flash,
|
|
|
|
with_pcie = args.with_pcie,
|
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-06-10 11:09:51 -04:00
|
|
|
|
2020-11-12 10:39:42 -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()
|