190 lines
7.5 KiB
Python
Executable File
190 lines
7.5 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
#
|
|
# This file is part of LiteX-Boards.
|
|
#
|
|
# Copyright (c) 2019 Sean Cross <sean@xobs.io>
|
|
# Copyright (c) 2018 David Shah <dave@ds0.me>
|
|
# Copyright (c) 2020 Piotr Esden-Tempski <piotr@esden.net>
|
|
# Copyright (c) 2020 Florent Kermarrec <florent@enjoy-digital.fr>
|
|
# Copyright (c) 2021 Sylvain Munaut <tnt@246tNt.com>
|
|
# Copyright (c) 2023 Michael Welling <mwelling@ieee.org>
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
# This target file provides a minimal LiteX SoC for the ICE-V with a CPU,
|
|
# its ROM (in SPI PSRAM), its SRAM, close to the others LiteX targets.
|
|
|
|
from migen import *
|
|
from migen.genlib.resetsync import AsyncResetSynchronizer
|
|
|
|
from litex.gen import *
|
|
|
|
from litex_boards.platforms import ice_v_wireless
|
|
|
|
from litex.soc.cores.ram import Up5kSPRAM
|
|
from litex.soc.cores.clock import iCE40PLL
|
|
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
|
|
|
|
# PSRAM flash emulation ----------------------------------------------------------------------------
|
|
|
|
from litespi.spi_nor_flash_module import SpiNorFlashModule
|
|
from litespi.opcodes import SpiNorFlashOpCodes as Codes
|
|
|
|
class PSRAM(SpiNorFlashModule):
|
|
|
|
manufacturer_id = 0x000d
|
|
device_id = 0x0000
|
|
name = "PSRAM"
|
|
|
|
total_size = 8388608 # bytes
|
|
page_size = 1024 # bytes
|
|
total_pages = 8192
|
|
|
|
supported_opcodes = [
|
|
Codes.READ_1_1_1,
|
|
Codes.READ_1_1_1_FAST,
|
|
Codes.READ_1_4_4,
|
|
Codes.PP_1_1_1,
|
|
]
|
|
dummy_bits = 8
|
|
|
|
|
|
# CRG ----------------------------------------------------------------------------------------------
|
|
|
|
class _CRG(LiteXModule):
|
|
def __init__(self, platform, sys_clk_freq=48e6, with_usb_pll=False):
|
|
assert not with_usb_pll or sys_clk_freq == 48e6
|
|
|
|
self.rst = Signal()
|
|
self.cd_sys = ClockDomain()
|
|
self.cd_por = ClockDomain()
|
|
|
|
# # #
|
|
|
|
# Clk/Rst
|
|
clk12 = platform.request("clk12")
|
|
rst_n = platform.request("user_btn_n")
|
|
|
|
# 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
|
|
if with_usb_pll:
|
|
self.cd_usb_12 = ClockDomain()
|
|
self.cd_usb_48 = ClockDomain()
|
|
locked = Signal()
|
|
self.specials.pll = pll = Instance("SB_PLL40_2F_PAD",
|
|
i_PACKAGEPIN = clk12,
|
|
i_RESETB = rst_n,
|
|
i_BYPASS = C(0),
|
|
|
|
# o_PLLOUTGLOBALA = self.cd_sys.clk,
|
|
o_PLLOUTGLOBALA = self.cd_usb_48.clk,
|
|
o_PLLOUTGLOBALB = self.cd_usb_12.clk,
|
|
o_LOCK = locked,
|
|
|
|
# Create a 48 MHz PLL clock...
|
|
p_FEEDBACK_PATH = "SIMPLE",
|
|
p_PLLOUT_SELECT_PORTA = "GENCLK",
|
|
p_PLLOUT_SELECT_PORTB = "SHIFTREG_0deg",
|
|
p_DIVR = 0,
|
|
p_DIVF = 63,
|
|
p_DIVQ = 4,
|
|
p_FILTER_RANGE = 1,
|
|
)
|
|
self.specials += AsyncResetSynchronizer(self.cd_sys, ~por_done | ~locked)
|
|
platform.add_period_constraint(self.cd_sys.clk, 48e6)
|
|
platform.add_period_constraint(self.cd_usb_48.clk, 48e6)
|
|
platform.add_period_constraint(self.cd_usb_12.clk, 12e6)
|
|
self.comb += [
|
|
self.cd_sys.clk.eq(self.cd_usb_48.clk),
|
|
]
|
|
else:
|
|
self.pll = pll = iCE40PLL(primitive="SB_PLL40_PAD")
|
|
self.comb += pll.reset.eq(~rst_n) # FIXME: Add proper iCE40PLL reset support and add back | self.rst.
|
|
pll.register_clkin(clk12, 12e6)
|
|
pll.create_clkout(self.cd_sys, sys_clk_freq, with_reset=False)
|
|
self.specials += AsyncResetSynchronizer(self.cd_sys, ~por_done | ~pll.locked)
|
|
platform.add_period_constraint(self.cd_sys.clk, 1e9/sys_clk_freq)
|
|
|
|
# BaseSoC ------------------------------------------------------------------------------------------
|
|
|
|
class BaseSoC(SoCCore):
|
|
def __init__(self, bios_flash_offset, sys_clk_freq=24e6, revision="v0", with_led_chaser=True, **kwargs):
|
|
platform = ice_v_wireless.Platform(revision=revision)
|
|
|
|
# CRG --------------------------------------------------------------------------------------
|
|
with_usb_acm = kwargs["uart_name"] == "usb_acm"
|
|
if with_usb_acm:
|
|
sys_clk_freq = 48e6
|
|
self.crg = _CRG(platform, sys_clk_freq, with_usb_pll=with_usb_acm)
|
|
|
|
# SoCCore ----------------------------------------------------------------------------------
|
|
# Disable Integrated ROM/SRAM since too large for iCE40 and UP5K has specific SPRAM.
|
|
kwargs["integrated_sram_size"] = 0
|
|
kwargs["integrated_rom_size"] = 0
|
|
SoCCore.__init__(self, platform, sys_clk_freq, ident="LiteX SoC on ICE-V Wireless", **kwargs)
|
|
|
|
# 128KB SPRAM (used as 64kB SRAM / 64kB RAM) -----------------------------------------------
|
|
self.spram = Up5kSPRAM(size=128 * KILOBYTE)
|
|
self.bus.add_slave("psram", self.spram.bus, SoCRegion(origin=self.mem_map["sram"], size=128 * KILOBYTE))
|
|
self.bus.add_region("sram", SoCRegion(
|
|
origin = self.bus.regions["psram"].origin + 0 * KILOBYTE,
|
|
size = 64 * KILOBYTE,
|
|
linker = True)
|
|
)
|
|
if not self.integrated_main_ram_size:
|
|
self.bus.add_region("main_ram", SoCRegion(
|
|
origin = self.bus.regions["psram"].origin + 64 * KILOBYTE,
|
|
size = 64 * KILOBYTE,
|
|
linker = True)
|
|
)
|
|
|
|
# LED Chaser --------------------------------------------------------------------------------
|
|
if with_led_chaser:
|
|
self.leds = LedChaser(
|
|
pads = platform.request_all("user_led_n"),
|
|
sys_clk_freq = sys_clk_freq,
|
|
polarity = 1)
|
|
|
|
# PSRAM emulating flash --------------------------------------------------------------------
|
|
self.add_spi_flash(mode="1x", module=PSRAM(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 = 32 * KILOBYTE,
|
|
linker = True)
|
|
)
|
|
self.cpu.set_reset_address(self.bus.regions["rom"].origin)
|
|
|
|
# Build --------------------------------------------------------------------------------------------
|
|
|
|
def main():
|
|
from litex.build.parser import LiteXArgumentParser
|
|
parser = LiteXArgumentParser(platform=ice_v_wireless.Platform, description="LiteX SoC on ICE-V Wireless.")
|
|
parser.add_target_argument("--sys-clk-freq", default=24e6, type=float, help="System clock frequency.")
|
|
parser.add_target_argument("--bios-flash-offset", default="0xa0000", help="BIOS offset in SPI Flash.")
|
|
parser.add_target_argument("--revision", default="v0", help="Board revision.")
|
|
args = parser.parse_args()
|
|
|
|
soc = BaseSoC(
|
|
bios_flash_offset = int(args.bios_flash_offset, 0),
|
|
sys_clk_freq = args.sys_clk_freq,
|
|
revision = args.revision,
|
|
**parser.soc_argdict
|
|
)
|
|
builder = Builder(soc, **parser.builder_argdict)
|
|
if args.build:
|
|
builder.build(**parser.toolchain_argdict)
|
|
|
|
if __name__ == "__main__":
|
|
main()
|