2020-01-08 03:56:37 -05:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
2020-08-23 09:00:17 -04:00
|
|
|
#
|
|
|
|
# This file is part of LiteX-Boards.
|
|
|
|
#
|
|
|
|
# Copyright (c) 2019 Florent Kermarrec <florent@enjoy-digital.fr>
|
|
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
2020-01-08 03:56:37 -05:00
|
|
|
|
|
|
|
from migen import *
|
|
|
|
from migen.genlib.resetsync import AsyncResetSynchronizer
|
|
|
|
|
2023-02-23 03:09:33 -05:00
|
|
|
from litex.gen import *
|
2022-10-27 10:58:55 -04:00
|
|
|
|
2020-01-08 03:56:37 -05:00
|
|
|
from litex_boards.platforms import camlink_4k
|
|
|
|
|
|
|
|
from litex.soc.cores.clock import *
|
2020-03-21 07:43:39 -04:00
|
|
|
from litex.soc.integration.soc_core import *
|
2020-01-08 03:56:37 -05:00
|
|
|
from litex.soc.integration.builder import *
|
2020-05-09 06:27:07 -04:00
|
|
|
from litex.soc.cores.led import LedChaser
|
2020-01-08 03:56:37 -05:00
|
|
|
|
|
|
|
from litedram.modules import MT41K64M16
|
|
|
|
from litedram.phy import ECP5DDRPHY
|
|
|
|
|
|
|
|
# CRG ----------------------------------------------------------------------------------------------
|
|
|
|
|
2022-10-27 10:58:55 -04:00
|
|
|
class _CRG(LiteXModule):
|
2020-01-08 03:56:37 -05:00
|
|
|
def __init__(self, platform, sys_clk_freq):
|
2022-10-27 10:58:55 -04:00
|
|
|
self.rst = Signal()
|
|
|
|
self.cd_init = ClockDomain()
|
|
|
|
self.cd_por = ClockDomain()
|
|
|
|
self.cd_sys = ClockDomain()
|
|
|
|
self.cd_sys2x = ClockDomain()
|
|
|
|
self.cd_sys2x_i = ClockDomain()
|
2020-01-08 03:56:37 -05:00
|
|
|
|
|
|
|
# # #
|
|
|
|
|
|
|
|
self.stop = Signal()
|
|
|
|
|
|
|
|
# clk / rst
|
|
|
|
clk27 = platform.request("clk27")
|
|
|
|
|
|
|
|
# power on reset
|
|
|
|
por_count = Signal(16, reset=2**16-1)
|
|
|
|
por_done = Signal()
|
|
|
|
self.comb += self.cd_por.clk.eq(ClockSignal())
|
|
|
|
self.comb += por_done.eq(por_count == 0)
|
|
|
|
self.sync.por += If(~por_done, por_count.eq(por_count - 1))
|
|
|
|
|
|
|
|
# pll
|
2022-10-27 10:58:55 -04:00
|
|
|
self.pll = pll = ECP5PLL()
|
2020-11-04 05:09:30 -05:00
|
|
|
self.comb += pll.reset.eq(~por_done | self.rst)
|
2020-01-08 03:56:37 -05:00
|
|
|
pll.register_clkin(clk27, 27e6)
|
|
|
|
pll.create_clkout(self.cd_sys2x_i, 2*sys_clk_freq)
|
|
|
|
pll.create_clkout(self.cd_init, 27e6)
|
|
|
|
self.specials += [
|
|
|
|
Instance("ECLKSYNCB",
|
|
|
|
i_ECLKI = self.cd_sys2x_i.clk,
|
|
|
|
i_STOP = self.stop,
|
|
|
|
o_ECLKO = self.cd_sys2x.clk),
|
|
|
|
Instance("CLKDIVF",
|
|
|
|
p_DIV = "2.0",
|
|
|
|
i_ALIGNWD = 0,
|
|
|
|
i_CLKI = self.cd_sys2x.clk,
|
|
|
|
i_RST = self.cd_sys2x.rst,
|
|
|
|
o_CDIVX = self.cd_sys.clk),
|
2020-09-01 07:38:28 -04:00
|
|
|
AsyncResetSynchronizer(self.cd_sys, ~pll.locked)
|
2020-01-08 03:56:37 -05:00
|
|
|
]
|
|
|
|
|
|
|
|
# BaseSoC ------------------------------------------------------------------------------------------
|
|
|
|
|
2020-03-21 07:43:39 -04:00
|
|
|
class BaseSoC(SoCCore):
|
2022-11-08 05:54:17 -05:00
|
|
|
def __init__(self, sys_clk_freq=81e6, toolchain="trellis", with_led_chaser=True, **kwargs):
|
|
|
|
platform = camlink_4k.Platform(toolchain=toolchain)
|
|
|
|
|
2020-01-08 03:56:37 -05:00
|
|
|
|
|
|
|
# CRG --------------------------------------------------------------------------------------
|
2022-10-27 10:58:55 -04:00
|
|
|
self.crg = _CRG(platform, sys_clk_freq)
|
2020-01-08 03:56:37 -05:00
|
|
|
|
2022-04-21 06:17:26 -04:00
|
|
|
# SoCCore ----------------------------------------------------------------------------------
|
|
|
|
SoCCore.__init__(self, platform, sys_clk_freq, ident="LiteX SoC on Cam Link 4K", **kwargs)
|
|
|
|
|
2020-01-08 03:56:37 -05:00
|
|
|
# DDR3 SDRAM -------------------------------------------------------------------------------
|
|
|
|
if not self.integrated_main_ram_size:
|
2022-10-27 10:58:55 -04:00
|
|
|
self.ddrphy = ECP5DDRPHY(
|
2020-01-08 03:56:37 -05:00
|
|
|
platform.request("ddram"),
|
|
|
|
sys_clk_freq=sys_clk_freq)
|
|
|
|
self.comb += self.crg.stop.eq(self.ddrphy.init.stop)
|
2020-03-21 07:43:39 -04:00
|
|
|
self.add_sdram("sdram",
|
2021-03-29 09:28:04 -04:00
|
|
|
phy = self.ddrphy,
|
|
|
|
module = MT41K64M16(sys_clk_freq, "1:2"),
|
|
|
|
l2_cache_size = kwargs.get("l2_size", 8192)
|
2020-03-21 07:43:39 -04:00
|
|
|
)
|
2020-01-08 03:56:37 -05:00
|
|
|
|
2020-05-08 16:16:13 -04:00
|
|
|
# Leds -------------------------------------------------------------------------------------
|
2021-07-06 17:39:37 -04:00
|
|
|
# Disable leds when serial is used.
|
|
|
|
if platform.lookup_request("serial", loose=True) is None and with_led_chaser:
|
2022-10-27 10:58:55 -04:00
|
|
|
self.leds = LedChaser(
|
2021-01-25 06:19:29 -05:00
|
|
|
pads = platform.request_all("user_led"),
|
|
|
|
sys_clk_freq = sys_clk_freq)
|
2020-05-08 16:16:13 -04:00
|
|
|
|
2020-01-08 03:56:37 -05: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=camlink_4k.Platform, description="LiteX SoC on Cam Link 4K.")
|
|
|
|
parser.add_target_argument("--sys-clk-freq", default=81e6, type=float, help="System clock frequency.")
|
2020-01-08 03:56:37 -05:00
|
|
|
args = parser.parse_args()
|
|
|
|
|
2020-11-12 12:07:28 -05:00
|
|
|
soc = BaseSoC(
|
2022-11-08 04:41:35 -05:00
|
|
|
sys_clk_freq = args.sys_clk_freq,
|
2020-11-12 12:07:28 -05:00
|
|
|
toolchain = args.toolchain,
|
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)
|
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", ext=".svf")) # FIXME
|
2020-01-08 03:56:37 -05:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|