2022-01-21 22:45:49 -05:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
#
|
|
|
|
# This file is part of LiteX-Boards.
|
|
|
|
#
|
|
|
|
# Copyright (c) 2022 Icenowy Zheng <icenowy@aosc.io>
|
|
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
|
|
|
import os
|
|
|
|
import argparse
|
|
|
|
|
|
|
|
from migen import *
|
|
|
|
from migen.genlib.resetsync import AsyncResetSynchronizer
|
|
|
|
|
|
|
|
from litex.soc.cores.clock.gowin_gw1n import GW1NPLL
|
|
|
|
from litex.soc.integration.soc_core import *
|
|
|
|
from litex.soc.integration.soc import SoCRegion
|
|
|
|
from litex.soc.integration.builder import *
|
|
|
|
from litex.soc.cores.led import LedChaser
|
|
|
|
from litex.soc.cores.video import *
|
|
|
|
|
|
|
|
from litex_boards.platforms import tang_nano_9k
|
|
|
|
|
2022-03-01 03:10:19 -05:00
|
|
|
from litex.soc.cores.hyperbus import HyperRAM
|
2022-01-22 14:17:57 -05:00
|
|
|
|
2022-01-21 22:45:49 -05:00
|
|
|
kB = 1024
|
|
|
|
mB = 1024*kB
|
|
|
|
|
|
|
|
# CRG ----------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class _CRG(Module):
|
|
|
|
def __init__(self, platform, sys_clk_freq, with_video_pll=False):
|
|
|
|
self.rst = Signal()
|
|
|
|
self.clock_domains.cd_sys = ClockDomain()
|
|
|
|
|
|
|
|
# # #
|
|
|
|
|
|
|
|
# Clk / Rst
|
|
|
|
clk27 = platform.request("clk27")
|
|
|
|
rst_n = platform.request("user_btn", 0)
|
|
|
|
|
|
|
|
# PLL
|
|
|
|
self.submodules.pll = pll = GW1NPLL(devicename=platform.devicename, device=platform.device)
|
|
|
|
self.comb += pll.reset.eq(~rst_n)
|
|
|
|
pll.register_clkin(clk27, 27e6)
|
|
|
|
pll.create_clkout(self.cd_sys, sys_clk_freq)
|
|
|
|
|
|
|
|
# BaseSoC ------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class BaseSoC(SoCCore):
|
2022-01-24 12:35:12 -05:00
|
|
|
def __init__(self, sys_clk_freq=int(27e6), bios_flash_offset=0x0,
|
2022-01-21 22:45:49 -05:00
|
|
|
with_led_chaser=True, **kwargs):
|
|
|
|
platform = tang_nano_9k.Platform()
|
|
|
|
|
|
|
|
# Disable Integrated ROM
|
|
|
|
kwargs["integrated_rom_size"] = 0
|
|
|
|
|
|
|
|
# SoCCore ----------------------------------------------------------------------------------
|
|
|
|
SoCCore.__init__(self, platform, sys_clk_freq,
|
|
|
|
ident = "LiteX SoC on Tang Nano 9K",
|
|
|
|
**kwargs)
|
|
|
|
|
|
|
|
# CRG --------------------------------------------------------------------------------------
|
|
|
|
self.submodules.crg = _CRG(platform, sys_clk_freq)
|
|
|
|
|
|
|
|
# SPI Flash --------------------------------------------------------------------------------
|
|
|
|
from litespi.modules import W25Q32
|
|
|
|
from litespi.opcodes import SpiNorFlashOpCodes as Codes
|
|
|
|
self.add_spi_flash(mode="1x", module=W25Q32(Codes.READ_1_1_1), with_master=False)
|
|
|
|
|
|
|
|
# Add ROM linker region --------------------------------------------------------------------
|
|
|
|
self.bus.add_region("rom", SoCRegion(
|
|
|
|
origin = self.bus.regions["spiflash"].origin + bios_flash_offset,
|
|
|
|
size = 64*kB,
|
|
|
|
linker = True)
|
|
|
|
)
|
|
|
|
self.cpu.set_reset_address(self.bus.regions["rom"].origin)
|
|
|
|
|
2022-01-24 12:35:12 -05:00
|
|
|
# HyperRAM ---------------------------------------------------------------------------------
|
|
|
|
if not self.integrated_main_ram_size:
|
|
|
|
# TODO: Use second 32Mbit PSRAM chip.
|
|
|
|
dq = platform.request("IO_psram_dq")
|
|
|
|
rwds = platform.request("IO_psram_rwds")
|
|
|
|
reset_n = platform.request("O_psram_reset_n")
|
|
|
|
cs_n = platform.request("O_psram_cs_n")
|
|
|
|
ck = platform.request("O_psram_ck")
|
|
|
|
ck_n = platform.request("O_psram_ck_n")
|
|
|
|
class HyperRAMPads:
|
|
|
|
def __init__(self, n):
|
|
|
|
self.clk = Signal()
|
|
|
|
self.rst_n = reset_n[n]
|
|
|
|
self.dq = dq[8*n:8*(n+1)]
|
|
|
|
self.cs_n = cs_n[n]
|
|
|
|
self.rwds = rwds[n]
|
|
|
|
|
|
|
|
hyperram_pads = HyperRAMPads(0)
|
|
|
|
self.comb += ck[0].eq(hyperram_pads.clk)
|
|
|
|
self.comb += ck_n[0].eq(~hyperram_pads.clk)
|
|
|
|
self.submodules.hyperram = HyperRAM(hyperram_pads)
|
|
|
|
self.bus.add_slave("main_ram", slave=self.hyperram.bus, region=SoCRegion(origin=self.mem_map["main_ram"], size=4*mB))
|
2022-01-22 14:17:57 -05:00
|
|
|
|
2022-01-21 22:45:49 -05:00
|
|
|
# Leds -------------------------------------------------------------------------------------
|
|
|
|
if with_led_chaser:
|
|
|
|
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 Tang Nano 9K")
|
|
|
|
parser.add_argument("--build", action="store_true", help="Build bitstream.")
|
|
|
|
parser.add_argument("--load", action="store_true", help="Load bitstream.")
|
|
|
|
parser.add_argument("--flash", action="store_true", help="Flash Bitstream.")
|
|
|
|
parser.add_argument("--sys-clk-freq",default=27e6, help="System clock frequency.")
|
|
|
|
parser.add_argument("--bios-flash-offset", default="0x0", help="BIOS offset in SPI Flash.")
|
2022-01-22 14:17:57 -05:00
|
|
|
parser.add_argument("--with-spi-sdcard", action="store_true", help="Enable SPI-mode SDCard support.")
|
2022-01-21 22:45:49 -05:00
|
|
|
builder_args(parser)
|
|
|
|
soc_core_args(parser)
|
|
|
|
args = parser.parse_args()
|
|
|
|
|
|
|
|
soc = BaseSoC(
|
|
|
|
sys_clk_freq=int(float(args.sys_clk_freq)),
|
|
|
|
bios_flash_offset=int(args.bios_flash_offset, 0),
|
|
|
|
**soc_core_argdict(args)
|
|
|
|
)
|
|
|
|
|
2022-01-22 14:17:57 -05:00
|
|
|
if args.with_spi_sdcard:
|
|
|
|
soc.add_spi_sdcard()
|
|
|
|
|
2022-01-21 22:45:49 -05: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, "impl", "pnr", "project.fs"))
|
|
|
|
|
|
|
|
if args.flash:
|
|
|
|
prog = soc.platform.create_programmer()
|
|
|
|
prog.flash(0, os.path.join(builder.gateware_dir, "impl", "pnr", "project.fs"))
|
|
|
|
prog.flash(int(args.bios_flash_offset, 0), "build/sipeed_tang_nano_9k/software/bios/bios.bin", external=True)
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|