2020-12-12 06:33:27 -05:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
#
|
|
|
|
# This file is part of LiteX-Boards.
|
|
|
|
#
|
2021-01-25 03:14:46 -05:00
|
|
|
# Copyright (c) 2020 Hans Baier <hansfbaier@gmail.com>
|
2020-12-12 06:33:27 -05:00
|
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
2021-03-26 17:39:19 -04:00
|
|
|
from migen import *
|
2022-10-27 10:58:55 -04:00
|
|
|
|
2023-02-23 03:09:33 -05:00
|
|
|
from litex.gen import *
|
2022-10-27 10:58:55 -04:00
|
|
|
|
2021-03-26 17:39:19 -04:00
|
|
|
from litex_boards.platforms import terasic_sockit
|
2020-12-12 06:33:27 -05:00
|
|
|
|
2021-03-26 17:39:19 -04:00
|
|
|
from litex.soc.cores.clock import CycloneVPLL
|
|
|
|
from litex.soc.integration.soc_core import *
|
|
|
|
from litex.soc.integration.builder import *
|
|
|
|
from litex.soc.cores.led import LedChaser
|
|
|
|
from litex.soc.cores.video import VideoVGAPHY
|
2021-02-02 00:38:11 -05:00
|
|
|
|
2021-03-26 17:39:19 -04:00
|
|
|
from litex.build.io import DDROutput
|
2020-12-12 06:33:27 -05:00
|
|
|
|
2021-11-08 00:48:03 -05:00
|
|
|
from litedram.modules import W9825G6KH6, AS4C32M16
|
2021-03-26 17:39:19 -04:00
|
|
|
from litedram.phy import HalfRateGENSDRPHY, GENSDRPHY
|
2021-02-02 00:38:11 -05:00
|
|
|
|
2020-12-12 06:33:27 -05:00
|
|
|
# CRG ----------------------------------------------------------------------------------------------
|
|
|
|
|
2022-10-27 10:58:55 -04:00
|
|
|
class _CRG(LiteXModule):
|
2021-04-26 21:52:11 -04:00
|
|
|
def __init__(self, platform, sys_clk_freq, with_sdram=False, sdram_rate="1:2", with_video_terminal=False):
|
2021-02-02 00:38:11 -05:00
|
|
|
self.sdram_rate = sdram_rate
|
2022-10-27 10:58:55 -04:00
|
|
|
self.rst = Signal()
|
|
|
|
self.cd_sys = ClockDomain()
|
2021-04-26 21:52:11 -04:00
|
|
|
if with_video_terminal:
|
2022-10-27 10:58:55 -04:00
|
|
|
self.cd_vga = ClockDomain()
|
2021-02-02 00:38:11 -05:00
|
|
|
if with_sdram:
|
|
|
|
if sdram_rate == "1:2":
|
2022-10-27 10:58:55 -04:00
|
|
|
self.cd_sys2x = ClockDomain()
|
|
|
|
self.cd_sys2x_ps = ClockDomain()
|
2021-02-02 00:38:11 -05:00
|
|
|
else:
|
2022-10-27 10:58:55 -04:00
|
|
|
self.cd_sys_ps = ClockDomain()
|
2020-12-12 06:33:27 -05:00
|
|
|
|
|
|
|
# Clk / Rst
|
|
|
|
clk50 = platform.request("clk50")
|
|
|
|
|
|
|
|
# PLL
|
2022-10-27 10:58:55 -04:00
|
|
|
self.pll = pll = CycloneVPLL(speedgrade="-C6")
|
2020-12-12 06:33:27 -05:00
|
|
|
self.comb += pll.reset.eq(self.rst)
|
|
|
|
pll.register_clkin(clk50, 50e6)
|
2021-03-16 01:01:30 -04:00
|
|
|
pll.create_clkout(self.cd_sys, sys_clk_freq)
|
2021-04-26 21:52:11 -04:00
|
|
|
|
|
|
|
if with_video_terminal:
|
|
|
|
pll.create_clkout(self.cd_vga, 65e6)
|
|
|
|
|
2021-02-02 00:38:11 -05:00
|
|
|
if with_sdram:
|
|
|
|
if sdram_rate == "1:2":
|
|
|
|
pll.create_clkout(self.cd_sys2x, 2*sys_clk_freq)
|
|
|
|
pll.create_clkout(self.cd_sys2x_ps, 2*sys_clk_freq, phase=180) # Idealy 90° but needs to be increased.
|
|
|
|
else:
|
|
|
|
pll.create_clkout(self.cd_sys_ps, sys_clk_freq, phase=90)
|
|
|
|
|
|
|
|
# SDRAM clock
|
|
|
|
if with_sdram:
|
|
|
|
sdram_clk = ClockSignal("sys2x_ps" if sdram_rate == "1:2" else "sys_ps")
|
|
|
|
self.specials += DDROutput(1, 0, platform.request("sdram_clock"), sdram_clk)
|
2020-12-12 06:33:27 -05:00
|
|
|
|
|
|
|
# BaseSoC ------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class BaseSoC(SoCCore):
|
2022-11-08 05:54:17 -05:00
|
|
|
def __init__(self, sys_clk_freq=50e6, revision="revd", sdram_rate="1:2", mister_sdram=None,
|
2022-11-08 06:29:11 -05:00
|
|
|
with_led_chaser = True,
|
|
|
|
with_video_terminal = False,
|
|
|
|
**kwargs):
|
2021-03-25 14:35:44 -04:00
|
|
|
platform = terasic_sockit.Platform(revision)
|
2020-12-12 06:33:27 -05:00
|
|
|
|
2022-04-21 06:17:26 -04:00
|
|
|
# CRG --------------------------------------------------------------------------------------
|
2022-10-27 10:58:55 -04:00
|
|
|
self.crg = _CRG(platform, sys_clk_freq,
|
2022-04-21 06:17:26 -04:00
|
|
|
with_sdram = mister_sdram != None,
|
|
|
|
sdram_rate = sdram_rate,
|
|
|
|
with_video_terminal = with_video_terminal
|
|
|
|
)
|
|
|
|
|
2020-12-12 06:33:27 -05:00
|
|
|
# SoCCore ----------------------------------------------------------------------------------
|
2022-02-01 05:30:26 -05:00
|
|
|
if kwargs.get("uart_name", "serial") == "serial":
|
|
|
|
kwargs["uart_name"] = "jtag_uart" # Defaults to JTAG-UART.
|
2022-04-21 06:17:26 -04:00
|
|
|
SoCCore.__init__(self, platform, sys_clk_freq, ident="LiteX SoC on the Terasic SoCKit", **kwargs)
|
2020-12-12 06:33:27 -05:00
|
|
|
|
2021-03-26 17:39:19 -04:00
|
|
|
# SDR SDRAM --------------------------------------------------------------------------------
|
2021-03-29 10:22:39 -04:00
|
|
|
if mister_sdram is not None:
|
|
|
|
sdrphy_cls = HalfRateGENSDRPHY if sdram_rate == "1:2" else GENSDRPHY
|
|
|
|
sdrphy_mod = {"xs_v22": W9825G6KH6, "xs_v24": AS4C32M16}[mister_sdram]
|
2022-10-27 10:58:55 -04:00
|
|
|
self.sdrphy = sdrphy_cls(platform.request("sdram"), sys_clk_freq)
|
2021-03-29 10:22:39 -04:00
|
|
|
self.add_sdram("sdram",
|
|
|
|
phy = self.sdrphy,
|
|
|
|
module = sdrphy_mod(sys_clk_freq, sdram_rate),
|
|
|
|
l2_cache_size = kwargs.get("l2_size", 8192)
|
|
|
|
)
|
2021-03-24 10:01:23 -04:00
|
|
|
|
2021-03-16 01:01:30 -04:00
|
|
|
# Video Terminal ---------------------------------------------------------------------------
|
|
|
|
if with_video_terminal:
|
|
|
|
vga_pads = platform.request("vga")
|
|
|
|
self.comb += [ vga_pads.sync_n.eq(0), vga_pads.blank_n.eq(1) ]
|
|
|
|
self.specials += DDROutput(i1=1, i2=0, o=vga_pads.clk, clk=ClockSignal("vga"))
|
2022-10-27 10:58:55 -04:00
|
|
|
self.videophy = VideoVGAPHY(vga_pads, clock_domain="vga")
|
2021-03-16 01:01:30 -04:00
|
|
|
self.add_video_terminal(phy=self.videophy, timings="1024x768@60Hz", clock_domain="vga")
|
2020-12-12 06:33:27 -05:00
|
|
|
|
2021-03-26 17:39:19 -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)
|
2021-03-26 17:39:19 -04:00
|
|
|
|
2020-12-12 06:33:27 -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=terasic_sockit.Platform, description="LiteX SoC on the Terasic SoCKit.")
|
|
|
|
parser.add_target_argument("--single-rate-sdram", action="store_true", help="Clock SDRAM with 1x the sytem clock (instead of 2x).")
|
|
|
|
parser.add_target_argument("--mister-sdram-xs-v22", action="store_true", help="Use optional MiSTer SDRAM module XS v2.2 on J2 on GPIO daughter card.")
|
|
|
|
parser.add_target_argument("--mister-sdram-xs-v24", action="store_true", help="Use optional MiSTer SDRAM module XS v2.4 on J2 on GPIO daughter card.")
|
|
|
|
parser.add_target_argument("--revision", default="revd", help="Board revision (revb, revc or revd).")
|
|
|
|
parser.add_target_argument("--sys-clk-freq", default=50e6, type=float, help="System clock frequency.")
|
|
|
|
parser.add_target_argument("--with-video-terminal", action="store_true", help="Enable Video Terminal (VGA).")
|
2020-12-12 06:33:27 -05:00
|
|
|
args = parser.parse_args()
|
|
|
|
|
|
|
|
soc = BaseSoC(
|
2022-11-08 04:41:35 -05:00
|
|
|
sys_clk_freq = args.sys_clk_freq,
|
2021-02-02 00:38:11 -05:00
|
|
|
revision = args.revision,
|
|
|
|
sdram_rate = "1:1" if args.single_rate_sdram else "1:2",
|
|
|
|
mister_sdram = "xs_v22" if args.mister_sdram_xs_v22 else "xs_v24" if args.mister_sdram_xs_v24 else None,
|
2021-03-16 01:01:30 -04:00
|
|
|
with_video_terminal = args.with_video_terminal,
|
2022-11-07 02:43:26 -05:00
|
|
|
**parser.soc_argdict
|
2020-12-12 06:33:27 -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-12-12 06:33:27 -05: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"))
|
2020-12-12 06:33:27 -05:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|