2021-06-24 13:55:40 -04:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
#
|
|
|
|
# This file is part of LiteX-Boards.
|
|
|
|
#
|
|
|
|
# Copyright (c) 2021 Florent Kermarrec <florent@enjoy-digital.fr>
|
|
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
2021-06-30 03:06:00 -04:00
|
|
|
# Work-In-Progress...
|
|
|
|
|
2021-06-24 13:55:40 -04:00
|
|
|
import os
|
|
|
|
|
|
|
|
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 decklink_intensity_pro_4k
|
2021-06-24 13:55:40 -04:00
|
|
|
|
|
|
|
from litex.soc.cores.clock import *
|
|
|
|
from litex.soc.integration.soc import SoCRegion
|
|
|
|
from litex.soc.integration.soc_core import *
|
|
|
|
from litex.soc.integration.builder import *
|
|
|
|
|
|
|
|
from litepcie.phy.s7pciephy import S7PCIEPHY
|
|
|
|
from litepcie.software import generate_litepcie_software
|
|
|
|
|
|
|
|
# CRG ----------------------------------------------------------------------------------------------
|
|
|
|
|
2022-10-27 10:58:55 -04:00
|
|
|
class _CRG(LiteXModule):
|
2021-06-24 13:55:40 -04:00
|
|
|
def __init__(self, platform, sys_clk_freq):
|
2023-07-26 10:56:27 -04:00
|
|
|
self.rst = Signal()
|
2022-10-27 10:58:55 -04:00
|
|
|
self.cd_sys = ClockDomain()
|
2021-06-24 13:55:40 -04:00
|
|
|
|
|
|
|
# # #
|
|
|
|
|
2022-10-27 10:58:55 -04:00
|
|
|
self.pll = pll = S7PLL(speedgrade=-1)
|
2023-07-26 10:56:27 -04:00
|
|
|
self.comb += pll.reset.eq(ResetSignal("pcie") | self.rst)
|
2021-06-24 13:55:40 -04:00
|
|
|
pll.register_clkin(ClockSignal("pcie"), 125e6)
|
|
|
|
pll.create_clkout(self.cd_sys, sys_clk_freq)
|
|
|
|
platform.add_false_path_constraints(self.cd_sys.clk, pll.clkin) # Ignore sys_clk to pll.clkin path created by SoC's rst.
|
|
|
|
|
|
|
|
# BaseSoC ------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class BaseSoC(SoCCore):
|
2022-11-08 05:54:17 -05:00
|
|
|
def __init__(self, sys_clk_freq=125e6, with_pcie=False, **kwargs):
|
2022-05-02 06:42:04 -04:00
|
|
|
platform = decklink_intensity_pro_4k.Platform()
|
2021-06-24 13:55:40 -04:00
|
|
|
|
|
|
|
# CRG --------------------------------------------------------------------------------------
|
2022-10-27 10:58:55 -04:00
|
|
|
self.crg = _CRG(platform, sys_clk_freq)
|
2021-06-24 13:55:40 -04:00
|
|
|
|
2022-04-21 06:17:26 -04:00
|
|
|
# SoCCore ----------------------------------------------------------------------------------
|
|
|
|
kwargs["uart_name"] = "crossover"
|
|
|
|
SoCCore.__init__(self, platform, sys_clk_freq, ident="LiteX SoC on Blackmagic Decklink Intensity Pro 4K", **kwargs)
|
|
|
|
|
2021-06-24 13:55:40 -04:00
|
|
|
# PCIe -------------------------------------------------------------------------------------
|
|
|
|
if with_pcie:
|
2022-10-27 10:58:55 -04:00
|
|
|
self.pcie_phy = S7PCIEPHY(platform, platform.request("pcie_x4"),
|
2021-06-24 13:55:40 -04:00
|
|
|
data_width = 128,
|
|
|
|
bar0_size = 0x20000)
|
|
|
|
self.add_pcie(phy=self.pcie_phy, ndmas=1)
|
|
|
|
|
|
|
|
# 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=decklink_intensity_pro_4k.Platform, description="LiteX SoC Blackmagic Decklink Intensity Pro 4K.")
|
|
|
|
parser.add_target_argument("--sys-clk-freq", default=125e6, type=float, help="System clock frequency.")
|
|
|
|
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.")
|
2021-06-24 13:55:40 -04:00
|
|
|
args = parser.parse_args()
|
|
|
|
|
|
|
|
soc = BaseSoC(
|
2022-11-08 04:41:35 -05:00
|
|
|
sys_clk_freq = args.sys_clk_freq,
|
2021-07-28 06:23:12 -04:00
|
|
|
with_pcie = args.with_pcie | True, # FIXME: Always enable PCIe for now.
|
2022-11-07 02:43:26 -05:00
|
|
|
**parser.soc_argdict
|
2021-06-24 13:55:40 -04: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)
|
2021-06-24 13:55:40 -04:00
|
|
|
|
|
|
|
if args.driver:
|
|
|
|
generate_litepcie_software(soc, os.path.join(builder.output_dir, "driver"))
|
|
|
|
|
|
|
|
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"))
|
2021-06-24 13:55:40 -04:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|