Merge pull request #603 from pepijndevos/apicula
make Gowin boards work with Apicula
This commit is contained in:
commit
185f8d5da4
|
@ -62,8 +62,8 @@ class _CRG(LiteXModule):
|
|||
# BaseSoC ------------------------------------------------------------------------------------------
|
||||
|
||||
class BaseSoC(SoCMini):
|
||||
def __init__(self, sys_clk_freq=48e6, with_led_chaser=True, **kwargs):
|
||||
platform = sipeed_tang_nano.Platform()
|
||||
def __init__(self, toolchain="gowin", sys_clk_freq=48e6, with_led_chaser=True, **kwargs):
|
||||
platform = sipeed_tang_nano.Platform(toolchain=toolchain)
|
||||
|
||||
# CRG --------------------------------------------------------------------------------------
|
||||
self.crg = _CRG(platform, sys_clk_freq)
|
||||
|
@ -90,6 +90,7 @@ def main():
|
|||
args = parser.parse_args()
|
||||
|
||||
soc = BaseSoC(
|
||||
toolchain = args.toolchain,
|
||||
sys_clk_freq = args.sys_clk_freq,
|
||||
**parser.soc_argdict
|
||||
)
|
||||
|
|
|
@ -53,13 +53,13 @@ class _CRG(LiteXModule):
|
|||
# BaseSoC ------------------------------------------------------------------------------------------
|
||||
|
||||
class BaseSoC(SoCCore):
|
||||
def __init__(self, sys_clk_freq=48e6,
|
||||
def __init__(self, toolchain="gowin", sys_clk_freq=48e6,
|
||||
with_led_chaser = True,
|
||||
with_rgb_led = False,
|
||||
with_buttons = True,
|
||||
**kwargs):
|
||||
|
||||
platform = sipeed_tang_nano_20k.Platform(toolchain="gowin")
|
||||
platform = sipeed_tang_nano_20k.Platform(toolchain=toolchain)
|
||||
|
||||
# CRG --------------------------------------------------------------------------------------
|
||||
self.crg = _CRG(platform, sys_clk_freq)
|
||||
|
@ -131,6 +131,7 @@ def main():
|
|||
args = parser.parse_args()
|
||||
|
||||
soc = BaseSoC(
|
||||
toolchain = args.toolchain,
|
||||
sys_clk_freq = args.sys_clk_freq,
|
||||
**parser.soc_argdict
|
||||
)
|
||||
|
|
|
@ -59,12 +59,12 @@ class _CRG(LiteXModule):
|
|||
# BaseSoC ------------------------------------------------------------------------------------------
|
||||
|
||||
class BaseSoC(SoCCore):
|
||||
def __init__(self, sys_clk_freq=27e6,
|
||||
def __init__(self, toolchain="gowin", sys_clk_freq=27e6,
|
||||
with_hyperram = False,
|
||||
with_led_chaser = True,
|
||||
with_video_terminal = True,
|
||||
**kwargs):
|
||||
platform = sipeed_tang_nano_4k.Platform()
|
||||
platform = sipeed_tang_nano_4k.Platform(toolchain=toolchain)
|
||||
|
||||
# CRG --------------------------------------------------------------------------------------
|
||||
self.crg = _CRG(platform, sys_clk_freq, with_video_pll=with_video_terminal)
|
||||
|
@ -151,6 +151,7 @@ def main():
|
|||
args = parser.parse_args()
|
||||
|
||||
soc = BaseSoC(
|
||||
toolchain = args.toolchain,
|
||||
sys_clk_freq = args.sys_clk_freq,
|
||||
with_hyperram = args.with_hyperram,
|
||||
with_video_terminal = args.with_video_terminal,
|
||||
|
|
|
@ -59,11 +59,11 @@ class _CRG(LiteXModule):
|
|||
# BaseSoC ------------------------------------------------------------------------------------------
|
||||
|
||||
class BaseSoC(SoCCore):
|
||||
def __init__(self, sys_clk_freq=27e6, bios_flash_offset=0x0,
|
||||
def __init__(self, toolchain="gowin", sys_clk_freq=27e6, bios_flash_offset=0x0,
|
||||
with_led_chaser = True,
|
||||
with_video_terminal = False,
|
||||
**kwargs):
|
||||
platform = sipeed_tang_nano_9k.Platform()
|
||||
platform = sipeed_tang_nano_9k.Platform(toolchain=toolchain)
|
||||
|
||||
# CRG --------------------------------------------------------------------------------------
|
||||
self.crg = _CRG(platform, sys_clk_freq, with_video_pll=with_video_terminal)
|
||||
|
@ -141,6 +141,7 @@ def main():
|
|||
args = parser.parse_args()
|
||||
|
||||
soc = BaseSoC(
|
||||
toolchain = args.toolchain,
|
||||
sys_clk_freq = args.sys_clk_freq,
|
||||
bios_flash_offset = int(args.bios_flash_offset, 0),
|
||||
with_video_terminal = args.with_video_terminal,
|
||||
|
|
|
@ -31,10 +31,11 @@ from litedram.phy import GW2DDRPHY
|
|||
# CRG ----------------------------------------------------------------------------------------------
|
||||
|
||||
class _CRG(LiteXModule):
|
||||
def __init__(self, platform, sys_clk_freq, with_video_pll=False):
|
||||
def __init__(self, platform, sys_clk_freq, with_video_pll=False, with_dram=False):
|
||||
self.rst = Signal()
|
||||
self.cd_sys = ClockDomain()
|
||||
self.cd_por = ClockDomain()
|
||||
if with_dram:
|
||||
self.cd_init = ClockDomain()
|
||||
self.cd_sys2x = ClockDomain()
|
||||
self.cd_sys2x_i = ClockDomain()
|
||||
|
@ -58,6 +59,8 @@ class _CRG(LiteXModule):
|
|||
self.pll = pll = GW2APLL(devicename=platform.devicename, device=platform.device)
|
||||
self.comb += pll.reset.eq(~por_done)
|
||||
pll.register_clkin(clk27, 27e6)
|
||||
if with_dram:
|
||||
# 2:1 clock needed for DDR
|
||||
pll.create_clkout(self.cd_sys2x_i, 2*sys_clk_freq)
|
||||
self.specials += [
|
||||
Instance("DHCEN",
|
||||
|
@ -70,12 +73,15 @@ class _CRG(LiteXModule):
|
|||
i_HCLKIN = self.cd_sys2x.clk,
|
||||
i_RESETN = ~self.reset,
|
||||
o_CLKOUT = self.cd_sys.clk),
|
||||
AsyncResetSynchronizer(self.cd_sys, ~pll.locked | self.rst | self.reset),
|
||||
]
|
||||
|
||||
# Init clock domain
|
||||
self.comb += self.cd_init.clk.eq(clk27)
|
||||
self.comb += self.cd_init.rst.eq(pll.reset)
|
||||
else:
|
||||
pll.create_clkout(self.cd_sys, sys_clk_freq)
|
||||
|
||||
self.specials += AsyncResetSynchronizer(self.cd_sys, ~pll.locked | self.rst | self.reset)
|
||||
|
||||
# Video PLL
|
||||
if with_video_pll:
|
||||
|
@ -95,7 +101,7 @@ class _CRG(LiteXModule):
|
|||
# BaseSoC ------------------------------------------------------------------------------------------
|
||||
|
||||
class BaseSoC(SoCCore):
|
||||
def __init__(self, sys_clk_freq=48e6,
|
||||
def __init__(self, toolchain="gowin", sys_clk_freq=48e6,
|
||||
with_spi_flash = False,
|
||||
with_led_chaser = True,
|
||||
with_rgb_led = False,
|
||||
|
@ -110,19 +116,21 @@ class BaseSoC(SoCCore):
|
|||
|
||||
assert dock in ["standard", "lite"]
|
||||
|
||||
platform = sipeed_tang_primer_20k.Platform(dock, toolchain="gowin")
|
||||
platform = sipeed_tang_primer_20k.Platform(dock, toolchain=toolchain)
|
||||
|
||||
if dock == "lite":
|
||||
with_led_chaser = False # No leds on core board nor on dock lite.
|
||||
|
||||
# CRG --------------------------------------------------------------------------------------
|
||||
self.crg = _CRG(platform, sys_clk_freq, with_video_pll=with_video_terminal)
|
||||
with_dram = (kwargs.get("integrated_main_ram_size", 0) == 0)
|
||||
assert not (toolchain == "apicula" and with_dram)
|
||||
self.crg = _CRG(platform, sys_clk_freq, with_video_pll=with_video_terminal, with_dram=with_dram)
|
||||
|
||||
# SoCCore ----------------------------------------------------------------------------------
|
||||
SoCCore.__init__(self, platform, sys_clk_freq, ident="LiteX SoC on Tang Primer 20K", **kwargs)
|
||||
|
||||
# DDR3 SDRAM -------------------------------------------------------------------------------
|
||||
if not self.integrated_main_ram_size:
|
||||
if with_dram:
|
||||
self.ddrphy = GW2DDRPHY(
|
||||
pads = platform.request("ddram"),
|
||||
sys_clk_freq = sys_clk_freq
|
||||
|
@ -208,6 +216,7 @@ def main():
|
|||
args = parser.parse_args()
|
||||
|
||||
soc = BaseSoC(
|
||||
toolchain = args.toolchain,
|
||||
sys_clk_freq = args.sys_clk_freq,
|
||||
with_spi_flash = args.with_spi_flash,
|
||||
with_video_terminal = args.with_video_terminal,
|
||||
|
|
|
@ -71,7 +71,7 @@ class _CRG(LiteXModule):
|
|||
# BaseSoC ------------------------------------------------------------------------------------------
|
||||
|
||||
class BaseSoC(SoCCore):
|
||||
def __init__(self, sys_clk_freq=50e6,
|
||||
def __init__(self, toolchain="gowin", sys_clk_freq=50e6,
|
||||
with_spi_flash = False,
|
||||
with_led_chaser = True,
|
||||
with_buttons = True,
|
||||
|
@ -80,7 +80,7 @@ class BaseSoC(SoCCore):
|
|||
sdram_rate = "1:2",
|
||||
**kwargs):
|
||||
|
||||
platform = sipeed_tang_primer_25k.Platform(toolchain="gowin")
|
||||
platform = sipeed_tang_primer_25k.Platform(toolchain=toolchain)
|
||||
|
||||
assert not with_sdram or (sdram_model in ["sipeed", "mister"])
|
||||
|
||||
|
@ -147,6 +147,7 @@ def main():
|
|||
args = parser.parse_args()
|
||||
|
||||
soc = BaseSoC(
|
||||
toolchain = args.toolchain,
|
||||
sys_clk_freq = args.sys_clk_freq,
|
||||
with_spi_flash = args.with_spi_flash,
|
||||
with_sdram = args.with_sdram,
|
||||
|
|
Loading…
Reference in New Issue