2019-06-10 11:09:51 -04:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
2020-08-23 09:00:17 -04:00
|
|
|
#
|
|
|
|
# This file is part of LiteX-Boards.
|
|
|
|
#
|
|
|
|
# Copyright (c) 2019 msloniewski <marcin.sloniewski@gmail.com>
|
|
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
2019-06-24 06:13:30 -04:00
|
|
|
|
2019-06-10 11:09:51 -04:00
|
|
|
from migen import *
|
2020-01-08 14:56:12 -05:00
|
|
|
from migen.genlib.resetsync import AsyncResetSynchronizer
|
2019-06-10 11:09:51 -04:00
|
|
|
|
2020-04-10 05:46:23 -04:00
|
|
|
from litex.build.io import DDROutput
|
|
|
|
|
2019-08-26 03:09:40 -04:00
|
|
|
from litex_boards.platforms import de10lite
|
2019-06-10 11:09:51 -04:00
|
|
|
|
2020-04-08 02:55:30 -04:00
|
|
|
from litex.soc.cores.clock import Max10PLL
|
2020-06-11 13:59:32 -04:00
|
|
|
from litex.soc.integration.soc import SoCRegion
|
2020-03-21 07:43:39 -04:00
|
|
|
from litex.soc.integration.soc_core import *
|
2019-06-10 11:09:51 -04:00
|
|
|
from litex.soc.integration.builder import *
|
2021-03-03 12:05:24 -05:00
|
|
|
from litex.soc.cores.video import VideoVGAPHY
|
2020-05-08 16:16:13 -04:00
|
|
|
from litex.soc.cores.led import LedChaser
|
2019-06-10 11:09:51 -04:00
|
|
|
|
|
|
|
from litedram.modules import IS42S16320
|
|
|
|
from litedram.phy import GENSDRPHY
|
2019-12-30 17:05:14 -05:00
|
|
|
|
2019-06-10 11:09:51 -04:00
|
|
|
# CRG ----------------------------------------------------------------------------------------------
|
2019-12-03 03:33:08 -05:00
|
|
|
|
2019-06-10 11:09:51 -04:00
|
|
|
class _CRG(Module):
|
2020-04-08 02:55:30 -04:00
|
|
|
def __init__(self, platform, sys_clk_freq):
|
2020-11-04 05:09:30 -05:00
|
|
|
self.rst = Signal()
|
2019-12-03 03:33:08 -05:00
|
|
|
self.clock_domains.cd_sys = ClockDomain()
|
2020-03-24 14:59:42 -04:00
|
|
|
self.clock_domains.cd_sys_ps = ClockDomain(reset_less=True)
|
2019-12-31 11:26:09 -05:00
|
|
|
self.clock_domains.cd_vga = ClockDomain(reset_less=True)
|
2019-06-10 11:09:51 -04:00
|
|
|
|
|
|
|
# # #
|
|
|
|
|
2020-01-09 13:46:39 -05:00
|
|
|
# Clk / Rst
|
2019-12-30 16:42:20 -05:00
|
|
|
clk50 = platform.request("clk50")
|
|
|
|
|
2020-01-09 13:46:39 -05:00
|
|
|
# PLL
|
2020-04-08 02:55:30 -04:00
|
|
|
self.submodules.pll = pll = Max10PLL(speedgrade="-7")
|
2020-11-04 05:09:30 -05:00
|
|
|
self.comb += pll.reset.eq(self.rst)
|
2020-04-08 02:55:30 -04:00
|
|
|
pll.register_clkin(clk50, 50e6)
|
|
|
|
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-01-09 13:46:39 -05:00
|
|
|
|
|
|
|
# SDRAM clock
|
2020-04-10 05:46:23 -04:00
|
|
|
self.specials += DDROutput(1, 0, platform.request("sdram_clock"), ClockSignal("sys_ps"))
|
2019-06-10 11:09:51 -04:00
|
|
|
|
|
|
|
# BaseSoC ------------------------------------------------------------------------------------------
|
|
|
|
|
2020-03-21 07:43:39 -04:00
|
|
|
class BaseSoC(SoCCore):
|
2021-07-06 17:39:37 -04:00
|
|
|
def __init__(self, sys_clk_freq=int(50e6), with_led_chaser=True, with_video_terminal=False,
|
|
|
|
**kwargs):
|
2019-06-10 11:09:51 -04:00
|
|
|
platform = de10lite.Platform()
|
2019-12-03 03:33:08 -05:00
|
|
|
|
2020-03-21 07:43:39 -04:00
|
|
|
# SoCCore ----------------------------------------------------------------------------------
|
2020-06-30 12:11:04 -04:00
|
|
|
SoCCore.__init__(self, platform, sys_clk_freq,
|
2022-01-18 11:13:02 -05:00
|
|
|
ident = "LiteX SoC on DE10-Lite",
|
2020-06-30 12:11:04 -04:00
|
|
|
**kwargs)
|
2019-06-10 11:09:51 -04:00
|
|
|
|
2019-12-03 03:33:08 -05:00
|
|
|
# CRG --------------------------------------------------------------------------------------
|
2020-04-08 02:55:30 -04:00
|
|
|
self.submodules.crg = _CRG(platform, sys_clk_freq)
|
2019-06-10 11:09:51 -04:00
|
|
|
|
2019-12-03 03:33:08 -05:00
|
|
|
# SDR SDRAM --------------------------------------------------------------------------------
|
2019-06-10 11:09:51 -04:00
|
|
|
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-03-21 07:43:39 -04:00
|
|
|
self.add_sdram("sdram",
|
2021-03-29 09:28:04 -04:00
|
|
|
phy = self.sdrphy,
|
|
|
|
module = IS42S16320(sys_clk_freq, "1:1"),
|
|
|
|
l2_cache_size = kwargs.get("l2_size", 8192)
|
2020-03-21 07:43:39 -04:00
|
|
|
)
|
2019-06-10 11:09:51 -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-06-11 13:59:32 -04:00
|
|
|
|
2020-05-08 16:16:13 -04:00
|
|
|
# Leds -------------------------------------------------------------------------------------
|
2021-07-06 17:39:37 -04:00
|
|
|
if with_led_chaser:
|
|
|
|
self.submodules.leds = LedChaser(
|
|
|
|
pads = platform.request_all("user_led"),
|
|
|
|
sys_clk_freq = sys_clk_freq)
|
2020-05-08 16:16:13 -04:00
|
|
|
|
2019-06-10 11:09:51 -04:00
|
|
|
# Build --------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
def main():
|
2022-03-21 11:59:40 -04:00
|
|
|
from litex.soc.integration.soc import LiteXSoCArgumentParser
|
|
|
|
parser = LiteXSoCArgumentParser(description="LiteX SoC on DE10-Lite")
|
2022-03-21 13:30:10 -04:00
|
|
|
target_group = parser.add_argument_group(title="Target options")
|
|
|
|
target_group.add_argument("--build", action="store_true", help="Build bitstream.")
|
|
|
|
target_group.add_argument("--load", action="store_true", help="Load bitstream.")
|
|
|
|
target_group.add_argument("--sys-clk-freq", default=50e6, help="System clock frequency.")
|
|
|
|
target_group.add_argument("--with-video-terminal", action="store_true", help="Enable Video Terminal (VGA).")
|
2019-06-10 11:09:51 -04:00
|
|
|
builder_args(parser)
|
2021-03-24 10:01:23 -04:00
|
|
|
soc_core_args(parser)
|
2019-06-10 11:09:51 -04:00
|
|
|
args = parser.parse_args()
|
|
|
|
|
2020-11-12 12:07:28 -05:00
|
|
|
soc = BaseSoC(
|
2021-03-03 12:05:24 -05:00
|
|
|
sys_clk_freq = int(float(args.sys_clk_freq)),
|
|
|
|
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
|
|
|
)
|
2019-06-10 11:09:51 -04:00
|
|
|
builder = Builder(soc, **builder_argdict(args))
|
2020-05-05 09:11:38 -04:00
|
|
|
builder.build(run=args.build)
|
2019-06-10 11:09:51 -04:00
|
|
|
|
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"))
|
2019-06-10 11:09:51 -04:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|