2020-05-25 06:26:52 -04:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
2020-08-23 09:00:17 -04:00
|
|
|
#
|
|
|
|
# This file is part of LiteX-Boards.
|
|
|
|
#
|
|
|
|
# Copyright (c) 2020 Florent Kermarrec <florent@enjoy-digital.fr>
|
|
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
2020-05-25 06:26:52 -04:00
|
|
|
|
|
|
|
import os
|
|
|
|
import argparse
|
|
|
|
|
|
|
|
from migen import *
|
|
|
|
|
2020-09-04 14:05:18 -04:00
|
|
|
from litex_boards.platforms import fk33
|
2020-05-25 06:26:52 -04:00
|
|
|
|
|
|
|
from litex.soc.cores.clock import *
|
|
|
|
from litex.soc.integration.soc_core import *
|
|
|
|
from litex.soc.integration.builder import *
|
|
|
|
from litex.soc.cores.led import LedChaser
|
|
|
|
|
2020-09-04 14:02:43 -04:00
|
|
|
|
|
|
|
from litepcie.phy.usppciephy import USPHBMPCIEPHY
|
|
|
|
from litepcie.core import LitePCIeEndpoint, LitePCIeMSI
|
|
|
|
from litepcie.frontend.dma import LitePCIeDMA
|
|
|
|
from litepcie.frontend.wishbone import LitePCIeWishboneBridge
|
|
|
|
from litepcie.software import generate_litepcie_software
|
|
|
|
|
2020-05-25 06:26:52 -04:00
|
|
|
# CRG ----------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class _CRG(Module):
|
|
|
|
def __init__(self, platform, sys_clk_freq):
|
2020-11-04 05:09:30 -05:00
|
|
|
self.rst = Signal()
|
2020-05-25 06:26:52 -04:00
|
|
|
self.clock_domains.cd_sys = ClockDomain()
|
|
|
|
|
|
|
|
# # #
|
|
|
|
|
2020-09-04 14:02:43 -04:00
|
|
|
self.submodules.pll = pll = USPMMCM(speedgrade=-2)
|
2020-11-04 05:09:30 -05:00
|
|
|
self.comb += pll.reset.eq(self.rst)
|
2020-05-25 06:26:52 -04:00
|
|
|
pll.register_clkin(platform.request("clk200"), 200e6)
|
|
|
|
pll.create_clkout(self.cd_sys, sys_clk_freq)
|
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.
|
2020-05-25 06:26:52 -04:00
|
|
|
|
|
|
|
# BaseSoC ------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class BaseSoC(SoCCore):
|
2020-09-04 14:02:43 -04:00
|
|
|
def __init__(self, sys_clk_freq=int(125e6), with_pcie=False, **kwargs):
|
2020-09-04 14:05:18 -04:00
|
|
|
platform = fk33.Platform()
|
2020-05-25 06:26:52 -04:00
|
|
|
|
|
|
|
# SoCCore ----------------------------------------------------------------------------------
|
2021-03-29 10:22:39 -04:00
|
|
|
if kwargs.get("uart_name", "serial") == "serial":
|
|
|
|
kwargs["uart_name"] = "jtag_uart" # Defaults to JTAG-UART.
|
2020-06-30 12:11:04 -04:00
|
|
|
SoCCore.__init__(self, platform, sys_clk_freq,
|
2020-09-04 14:05:18 -04:00
|
|
|
ident = "LiteX SoC on FK33",
|
2020-06-30 12:11:04 -04:00
|
|
|
ident_version = True,
|
|
|
|
**kwargs)
|
2020-05-25 06:26:52 -04:00
|
|
|
|
|
|
|
# CRG --------------------------------------------------------------------------------------
|
|
|
|
self.submodules.crg = _CRG(platform, sys_clk_freq)
|
|
|
|
|
2020-09-04 14:02:43 -04:00
|
|
|
# PCIe -------------------------------------------------------------------------------------
|
|
|
|
if with_pcie:
|
2020-11-12 06:08:20 -05:00
|
|
|
assert self.csr_data_width == 32
|
2020-09-04 14:02:43 -04:00
|
|
|
# PHY
|
|
|
|
self.submodules.pcie_phy = USPHBMPCIEPHY(platform, platform.request("pcie_x4"),
|
|
|
|
data_width = 128,
|
|
|
|
bar0_size = 0x20000)
|
|
|
|
|
|
|
|
# Endpoint
|
|
|
|
self.submodules.pcie_endpoint = LitePCIeEndpoint(self.pcie_phy, max_pending_requests=8)
|
|
|
|
|
|
|
|
# Wishbone bridge
|
|
|
|
self.submodules.pcie_bridge = LitePCIeWishboneBridge(self.pcie_endpoint,
|
|
|
|
base_address = self.mem_map["csr"])
|
|
|
|
self.add_wb_master(self.pcie_bridge.wishbone)
|
|
|
|
|
|
|
|
# DMA0
|
|
|
|
self.submodules.pcie_dma0 = LitePCIeDMA(self.pcie_phy, self.pcie_endpoint,
|
|
|
|
with_buffering = True, buffering_depth=1024,
|
|
|
|
with_loopback = True)
|
|
|
|
|
|
|
|
self.add_constant("DMA_CHANNELS", 1)
|
|
|
|
|
|
|
|
# MSI
|
|
|
|
self.submodules.pcie_msi = LitePCIeMSI()
|
|
|
|
self.comb += self.pcie_msi.source.connect(self.pcie_phy.msi)
|
|
|
|
self.interrupts = {
|
|
|
|
"PCIE_DMA0_WRITER": self.pcie_dma0.writer.irq,
|
|
|
|
"PCIE_DMA0_READER": self.pcie_dma0.reader.irq,
|
|
|
|
}
|
|
|
|
for i, (k, v) in enumerate(sorted(self.interrupts.items())):
|
|
|
|
self.comb += self.pcie_msi.irqs[i].eq(v)
|
|
|
|
self.add_constant(k + "_INTERRUPT", i)
|
|
|
|
|
2020-05-25 06:26:52 -04:00
|
|
|
# Leds -------------------------------------------------------------------------------------
|
|
|
|
self.submodules.leds = LedChaser(
|
2020-08-06 14:04:03 -04:00
|
|
|
pads = platform.request_all("user_led"),
|
2020-05-25 06:26:52 -04:00
|
|
|
sys_clk_freq = sys_clk_freq)
|
|
|
|
|
|
|
|
# Build --------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
def main():
|
2020-09-04 14:05:18 -04:00
|
|
|
parser = argparse.ArgumentParser(description="LiteX SoC on FK33")
|
2020-11-12 12:07:28 -05:00
|
|
|
parser.add_argument("--build", action="store_true", help="Build bitstream")
|
|
|
|
parser.add_argument("--load", action="store_true", help="Load bitstream")
|
|
|
|
parser.add_argument("--sys-clk-freq", default=125e6, help="System clock frequency (default: 125MHz)")
|
|
|
|
parser.add_argument("--with-pcie", action="store_true", help="Enable PCIe support")
|
|
|
|
parser.add_argument("--driver", action="store_true", help="Generate PCIe driver")
|
2020-05-25 06:26:52 -04:00
|
|
|
builder_args(parser)
|
|
|
|
soc_core_args(parser)
|
|
|
|
args = parser.parse_args()
|
|
|
|
|
2020-11-12 12:07:28 -05:00
|
|
|
soc = BaseSoC(
|
|
|
|
sys_clk_freq = int(float(args.sys_clk_freq)),
|
|
|
|
with_pcie=args.with_pcie,
|
|
|
|
**soc_core_argdict(args)
|
|
|
|
)
|
2020-05-25 06:26:52 -04:00
|
|
|
builder = Builder(soc, **builder_argdict(args))
|
|
|
|
builder.build(run=args.build)
|
|
|
|
|
2020-09-04 14:02:43 -04:00
|
|
|
if args.driver:
|
|
|
|
generate_litepcie_software(soc, os.path.join(builder.output_dir, "driver"))
|
|
|
|
|
2020-05-25 06:26:52 -04:00
|
|
|
if args.load:
|
|
|
|
prog = soc.platform.create_programmer()
|
|
|
|
prog.load_bitstream(os.path.join(builder.gateware_dir, soc.build_name + ".bit"))
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|