2020-10-17 06:28:22 -04:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
#
|
|
|
|
# This file is part of LiteX-Boards.
|
|
|
|
#
|
2020-10-22 04:48:58 -04:00
|
|
|
# Copyright (c) 2020 Krzysztof Jankowski <yanekx@gmail.com>
|
2020-10-17 06:28:22 -04:00
|
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
|
|
|
import os
|
|
|
|
import argparse
|
|
|
|
|
|
|
|
from migen import *
|
|
|
|
from migen.genlib.resetsync import AsyncResetSynchronizer
|
|
|
|
|
|
|
|
from litex.build.io import DDROutput
|
|
|
|
|
|
|
|
from litex_boards.platforms import mist
|
|
|
|
|
|
|
|
from litex.soc.cores.clock import CycloneIVPLL
|
|
|
|
from litex.soc.integration.soc import SoCRegion
|
|
|
|
from litex.soc.integration.soc_core import *
|
|
|
|
from litex.soc.integration.builder import *
|
2021-03-03 12:05:24 -05:00
|
|
|
from litex.soc.cores.video import VideoVGAPHY
|
2020-10-17 06:28:22 -04:00
|
|
|
from litex.soc.cores.led import LedChaser
|
|
|
|
|
|
|
|
from litedram.modules import MT48LC16M16
|
|
|
|
from litedram.phy import GENSDRPHY
|
|
|
|
|
|
|
|
# CRG ----------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class _CRG(Module):
|
|
|
|
def __init__(self, platform, sys_clk_freq):
|
2020-11-04 05:09:30 -05:00
|
|
|
self.rst = Signal()
|
2020-10-17 06:28:22 -04:00
|
|
|
self.clock_domains.cd_sys = ClockDomain()
|
|
|
|
self.clock_domains.cd_sys_ps = ClockDomain(reset_less=True)
|
|
|
|
self.clock_domains.cd_vga = ClockDomain(reset_less=True)
|
|
|
|
|
|
|
|
# # #
|
|
|
|
|
|
|
|
# Clk / Rst
|
|
|
|
clk27 = platform.request("clk27")
|
|
|
|
|
|
|
|
# PLL
|
|
|
|
self.submodules.pll = pll = CycloneIVPLL(speedgrade="-8")
|
2020-11-04 05:09:30 -05:00
|
|
|
self.comb += pll.reset.eq(self.rst)
|
2020-10-17 06:28:22 -04:00
|
|
|
pll.register_clkin(clk27, 27e6)
|
|
|
|
pll.create_clkout(self.cd_sys, sys_clk_freq)
|
|
|
|
pll.create_clkout(self.cd_sys_ps, sys_clk_freq, phase=90)
|
2021-03-03 12:05:24 -05:00
|
|
|
pll.create_clkout(self.cd_vga, 40e6)
|
2020-10-17 06:28:22 -04:00
|
|
|
|
|
|
|
# SDRAM clock
|
|
|
|
self.specials += DDROutput(1, 0, platform.request("sdram_clock"), ClockSignal("sys_ps"))
|
|
|
|
|
|
|
|
# BaseSoC ------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class BaseSoC(SoCCore):
|
2021-03-03 12:05:24 -05:00
|
|
|
def __init__(self, sys_clk_freq=int(50e6), with_video_terminal=False, **kwargs):
|
2020-10-17 06:28:22 -04:00
|
|
|
platform = mist.Platform()
|
|
|
|
|
|
|
|
# SoCCore ----------------------------------------------------------------------------------
|
|
|
|
SoCCore.__init__(self, platform, sys_clk_freq,
|
|
|
|
ident = "LiteX SoC on MIST",
|
|
|
|
ident_version = True,
|
|
|
|
**kwargs)
|
|
|
|
|
|
|
|
# CRG --------------------------------------------------------------------------------------
|
|
|
|
self.submodules.crg = _CRG(platform, sys_clk_freq)
|
|
|
|
|
|
|
|
# SDR SDRAM --------------------------------------------------------------------------------
|
|
|
|
if not self.integrated_main_ram_size:
|
2021-01-04 05:38:07 -05:00
|
|
|
self.submodules.sdrphy = GENSDRPHY(platform.request("sdram"), sys_clk_freq)
|
2020-10-17 06:28:22 -04:00
|
|
|
self.add_sdram("sdram",
|
2021-03-29 09:28:04 -04:00
|
|
|
phy = self.sdrphy,
|
|
|
|
module = MT48LC16M16(sys_clk_freq, "1:1"),
|
|
|
|
l2_cache_size = kwargs.get("l2_size", 8192)
|
2020-10-17 06:28:22 -04:00
|
|
|
)
|
|
|
|
|
2021-03-03 12:05:24 -05:00
|
|
|
# Video Terminal ---------------------------------------------------------------------------
|
|
|
|
if with_video_terminal:
|
|
|
|
self.submodules.videophy = VideoVGAPHY(platform.request("vga"), clock_domain="vga")
|
|
|
|
self.add_video_terminal(phy=self.videophy, timings="800x600@60Hz", clock_domain="vga")
|
2020-10-17 06:28:22 -04:00
|
|
|
|
|
|
|
# Leds -------------------------------------------------------------------------------------
|
|
|
|
self.submodules.leds = LedChaser(
|
|
|
|
pads = platform.request_all("user_led"),
|
|
|
|
sys_clk_freq = sys_clk_freq)
|
|
|
|
|
|
|
|
# Build --------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
def main():
|
|
|
|
parser = argparse.ArgumentParser(description="LiteX SoC on MIST")
|
2021-03-03 12:05:24 -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=50e6, help="System clock frequency (default: 50MHz)")
|
|
|
|
parser.add_argument("--with-video-terminal", action="store_true", help="Enable Video Terminal (VGA)")
|
2020-10-17 06:28:22 -04:00
|
|
|
builder_args(parser)
|
2021-03-24 10:01:23 -04:00
|
|
|
soc_core_args(parser)
|
2020-10-17 06:28:22 -04:00
|
|
|
args = parser.parse_args()
|
|
|
|
|
2020-11-12 12:07:28 -05:00
|
|
|
soc = BaseSoC(
|
|
|
|
sys_clk_freq = int(float(args.sys_clk_freq)),
|
2021-03-03 12:05:24 -05:00
|
|
|
with_video_terminal=args.with_video_terminal,
|
2021-03-24 10:01:23 -04:00
|
|
|
**soc_core_argdict(args)
|
2020-11-12 12:07:28 -05:00
|
|
|
)
|
2020-10-17 06:28:22 -04:00
|
|
|
builder = Builder(soc, **builder_argdict(args))
|
|
|
|
builder.build(run=args.build)
|
|
|
|
|
|
|
|
if args.load:
|
|
|
|
prog = soc.platform.create_programmer()
|
|
|
|
prog.load_bitstream(os.path.join(builder.gateware_dir, soc.build_name + ".sof"))
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|
|
|
|
|