2021-05-06 03:45:00 -04:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
2021-06-24 13:13:18 -04:00
|
|
|
#
|
|
|
|
# This file is part of LiteX-Boards.
|
|
|
|
#
|
|
|
|
# Copyright (c) 2021 Florent Kermarrec <florent@enjoy-digital.fr>
|
|
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
2021-05-06 03:45:00 -04:00
|
|
|
|
2022-03-08 08:14:18 -05:00
|
|
|
# Build/Use:
|
|
|
|
# ./decklink_mini_4k.py --build --load
|
|
|
|
# litex_term jtag --jtag-config=openocd_xc7_ft232.cfg
|
|
|
|
|
2021-05-06 03:45:00 -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_mini_4k
|
2021-05-06 03:45:00 -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 litex.soc.cores.video import VideoS7GTPHDMIPHY
|
|
|
|
|
|
|
|
from litedram.modules import MT41K128M16
|
|
|
|
from litedram.phy import s7ddrphy
|
|
|
|
|
|
|
|
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-05-06 03:45:00 -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_hdmi = ClockDomain()
|
2021-05-06 03:45:00 -04:00
|
|
|
|
|
|
|
# # #
|
|
|
|
|
2022-01-17 08:41:33 -05:00
|
|
|
# Clk.
|
|
|
|
clk100 = platform.request("clk100")
|
|
|
|
platform.add_platform_command("set_property CLOCK_DEDICATED_ROUTE FALSE [get_nets clk100_IBUF]")
|
2022-11-14 04:20:12 -05:00
|
|
|
platform.add_platform_command("set_property CLOCK_DEDICATED_ROUTE FALSE [get_nets s7pll0_clkin]")
|
2022-01-17 08:41:33 -05:00
|
|
|
|
|
|
|
# Main PLL.
|
2022-10-27 10:58:55 -04:00
|
|
|
self.pll = pll = S7PLL(speedgrade=-1)
|
2021-05-06 03:45:00 -04:00
|
|
|
self.comb += pll.reset.eq(self.rst)
|
2022-01-17 08:41:33 -05:00
|
|
|
pll.register_clkin(clk100, 100e6)
|
2021-05-06 03:45:00 -04:00
|
|
|
pll.create_clkout(self.cd_sys, sys_clk_freq)
|
|
|
|
pll.create_clkout(self.cd_sys4x, 4*sys_clk_freq)
|
|
|
|
pll.create_clkout(self.cd_sys4x_dqs, 4*sys_clk_freq, phase=90)
|
|
|
|
pll.create_clkout(self.cd_idelay, 200e6, margin=1e-1) # FIXME: Re-arrange clocking.
|
|
|
|
pll.create_clkout(self.cd_hdmi, 148.5e6, margin=2e-2) # FIXME: Use a second PLL or move to clkout0 that has fractional support.
|
|
|
|
platform.add_false_path_constraints(self.cd_sys.clk, pll.clkin) # Ignore sys_clk to pll.clkin path created by SoC's rst.
|
|
|
|
|
2022-01-17 08:41:33 -05:00
|
|
|
# IDELAY Ctrl.
|
2022-10-27 10:58:55 -04:00
|
|
|
self.idelayctrl = S7IDELAYCTRL(self.cd_idelay)
|
2021-05-06 03:45:00 -04:00
|
|
|
|
2022-01-17 08:41:33 -05:00
|
|
|
# SATA PLL.
|
2022-10-27 10:58:55 -04:00
|
|
|
self.cd_sata_refclk = ClockDomain()
|
|
|
|
self.sata_pll = sata_pll = S7PLL(speedgrade=-1)
|
2022-01-17 08:41:33 -05:00
|
|
|
self.comb += sata_pll.reset.eq(self.rst)
|
|
|
|
sata_pll.register_clkin(clk100, 100e6)
|
|
|
|
sata_pll.create_clkout(self.cd_sata_refclk, 150e6)
|
2021-05-06 03:45:00 -04:00
|
|
|
|
|
|
|
# BaseSoC ------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class BaseSoC(SoCMini):
|
2022-11-08 06:29:11 -05:00
|
|
|
def __init__(self, sys_clk_freq=100e6,
|
|
|
|
with_pcie = False,
|
|
|
|
with_sata = False,
|
|
|
|
with_video_terminal = False,
|
|
|
|
with_video_framebuffer = False,
|
|
|
|
**kwargs):
|
2021-05-06 03:45:00 -04:00
|
|
|
if with_video_terminal or with_video_framebuffer:
|
|
|
|
sys_clk_freq = int(148.5e6) # FIXME: For now requires sys_clk >= video_clk.
|
2022-05-02 06:42:04 -04:00
|
|
|
platform = decklink_mini_4k.Platform()
|
2021-05-06 03:45:00 -04:00
|
|
|
|
|
|
|
# CRG --------------------------------------------------------------------------------------
|
2022-10-27 10:58:55 -04:00
|
|
|
self.crg = _CRG(platform, sys_clk_freq)
|
2021-05-06 03:45:00 -04:00
|
|
|
|
2022-04-21 06:17:26 -04:00
|
|
|
# SoCCore ----------------------------------------------------------------------------------
|
|
|
|
kwargs["uart_name"] = "jtag_uart"
|
|
|
|
SoCCore.__init__(self, platform, sys_clk_freq, ident="LiteX SoC on Blackmagic Decklink Mini 4K", **kwargs)
|
|
|
|
|
2021-05-06 03:45:00 -04: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"),
|
2021-05-06 03:45:00 -04:00
|
|
|
memtype = "DDR3",
|
|
|
|
nphases = 4,
|
|
|
|
sys_clk_freq = sys_clk_freq)
|
|
|
|
self.add_sdram("sdram",
|
|
|
|
phy = self.ddrphy,
|
|
|
|
module = MT41K128M16(sys_clk_freq, "1:4"),
|
|
|
|
l2_cache_size = kwargs.get("l2_size", 8192)
|
|
|
|
)
|
|
|
|
|
|
|
|
# PCIe -------------------------------------------------------------------------------------
|
|
|
|
if with_pcie:
|
2022-10-27 10:58:55 -04:00
|
|
|
self.pcie_phy = S7PCIEPHY(platform, platform.request("pcie_x4"),
|
2021-05-06 03:45:00 -04:00
|
|
|
data_width = 128,
|
|
|
|
bar0_size = 0x20000)
|
|
|
|
self.add_pcie(phy=self.pcie_phy, ndmas=1)
|
|
|
|
|
2022-01-17 08:19:59 -05:00
|
|
|
# SATA -------------------------------------------------------------------------------------
|
|
|
|
if with_sata:
|
|
|
|
from litex.build.generic_platform import Subsignal, Pins
|
|
|
|
from litesata.phy import LiteSATAPHY
|
|
|
|
|
|
|
|
# IOs
|
|
|
|
_sata_io = [
|
|
|
|
# PCIe 2 SATA Custom Adapter (With PCIe Riser / SATA cable mod).
|
|
|
|
("pcie2sata", 0,
|
|
|
|
Subsignal("tx_p", Pins("B7")),
|
|
|
|
Subsignal("tx_n", Pins("A7")),
|
|
|
|
Subsignal("rx_p", Pins("B11")),
|
|
|
|
Subsignal("rx_n", Pins("A11")),
|
|
|
|
),
|
|
|
|
]
|
|
|
|
platform.add_extension(_sata_io)
|
|
|
|
|
|
|
|
# RefClk, Generate 150MHz from PLL.
|
|
|
|
platform.add_platform_command("set_property SEVERITY {{Warning}} [get_drc_checks REQP-49]")
|
|
|
|
|
|
|
|
# PHY
|
2022-10-27 10:58:55 -04:00
|
|
|
self.sata_phy = LiteSATAPHY(platform.device,
|
2022-01-17 08:41:33 -05:00
|
|
|
refclk = ClockSignal("sata_refclk"),
|
2022-01-17 08:19:59 -05:00
|
|
|
pads = platform.request("pcie2sata"),
|
|
|
|
gen = "gen2",
|
|
|
|
clk_freq = sys_clk_freq,
|
|
|
|
data_width = 16)
|
|
|
|
|
|
|
|
# Core
|
|
|
|
self.add_sata(phy=self.sata_phy, mode="read+write")
|
2021-05-06 03:45:00 -04:00
|
|
|
# Video ------------------------------------------------------------------------------------
|
|
|
|
if with_video_terminal or with_video_framebuffer:
|
2022-10-27 10:58:55 -04:00
|
|
|
self.videophy = VideoS7GTPHDMIPHY(platform.request("hdmi_out"),
|
2021-05-06 03:45:00 -04:00
|
|
|
sys_clk_freq = sys_clk_freq,
|
|
|
|
clock_domain = "hdmi"
|
|
|
|
)
|
|
|
|
if with_video_terminal:
|
|
|
|
self.add_video_terminal(phy=self.videophy, timings="1920x1080@60Hz", clock_domain="hdmi")
|
|
|
|
if with_video_framebuffer:
|
|
|
|
self.add_video_framebuffer(phy=self.videophy, timings="1920x1080@60Hz", clock_domain="hdmi")
|
|
|
|
platform.add_platform_command("set_property SEVERITY {{Warning}} [get_drc_checks REQP-49]") # FIXME: Use GTP refclk.
|
|
|
|
|
|
|
|
# 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_mini_4k.Platform, description="LiteX SoC Blackmagic Decklink Mini 4K.")
|
|
|
|
parser.add_target_argument("--sys-clk-freq", default=148.5e6, type=float, help="System clock frequency.")
|
2022-11-05 03:07:14 -04:00
|
|
|
pcieopts = parser.target_group.add_mutually_exclusive_group()
|
2022-11-08 04:41:35 -05:00
|
|
|
pcieopts.add_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
|
|
|
viopts = parser.target_group.add_mutually_exclusive_group()
|
2022-01-05 11:06:22 -05:00
|
|
|
viopts.add_argument("--with-video-terminal", action="store_true", help="Enable Video Terminal (HDMI).")
|
|
|
|
viopts.add_argument("--with-video-framebuffer", action="store_true", help="Enable Video Framebuffer (HDMI).")
|
2022-01-17 08:19:59 -05:00
|
|
|
pcieopts.add_argument("--with-sata", action="store_true", help="Enable SATA support (over PCIe2SATA).")
|
2021-05-06 03:45:00 -04:00
|
|
|
args = parser.parse_args()
|
|
|
|
|
|
|
|
soc = BaseSoC(
|
2022-11-08 04:41:35 -05:00
|
|
|
sys_clk_freq = args.sys_clk_freq,
|
2021-05-06 03:45:00 -04:00
|
|
|
with_pcie = args.with_pcie,
|
2022-01-17 08:19:59 -05:00
|
|
|
with_sata = args.with_sata,
|
2021-05-06 03:45:00 -04:00
|
|
|
with_video_terminal = args.with_video_terminal,
|
|
|
|
with_video_framebuffer = args.with_video_framebuffer,
|
2022-11-07 02:43:26 -05:00
|
|
|
**parser.soc_argdict
|
2021-05-06 03:45:00 -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-05-06 03:45:00 -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-05-06 03:45:00 -04:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|