quicklogic_quickfeather: Use initial EOS-S3 support/integration.

This commit is contained in:
Gwenhael Goavec-Merou 2021-11-09 18:57:24 +01:00 committed by Florent Kermarrec
parent 8ce83ce92f
commit 040e7b3104
2 changed files with 24 additions and 14 deletions

View File

@ -11,10 +11,9 @@ from litex.build.quicklogic import QuickLogicPlatform
_io = [ _io = [
# Leds # Leds
("user_led", 0, Pins("H7"), IOStandard("LVCMOS33")), ("user_led", 0, Pins("38"), IOStandard("LVCMOS33")), # blue
("user_led", 1, Pins("G7"), IOStandard("LVCMOS33")), ("user_led", 1, Pins("39"), IOStandard("LVCMOS33")), # green
("user_led", 2, Pins("F6"), IOStandard("LVCMOS33")), ("user_led", 2, Pins("34"), IOStandard("LVCMOS33")), # red
("user_led", 3, Pins("E8"), IOStandard("LVCMOS33")),
] ]
# Platform ----------------------------------------------------------------------------------------- # Platform -----------------------------------------------------------------------------------------

View File

@ -4,6 +4,7 @@
# This file is part of LiteX-Boards. # This file is part of LiteX-Boards.
# #
# Copyright (c) 2021 Florent Kermarrec <florent@enjoy-digital.fr> # Copyright (c) 2021 Florent Kermarrec <florent@enjoy-digital.fr>
# Copyright (c) 2021 Gwenhael Goavec-Merou <gwenhael.goavec-merou@trabucayre.com>
# SPDX-License-Identifier: BSD-2-Clause # SPDX-License-Identifier: BSD-2-Clause
import os import os
@ -21,28 +22,37 @@ from litex.soc.cores.led import LedChaser
# CRG ---------------------------------------------------------------------------------------------- # CRG ----------------------------------------------------------------------------------------------
class _CRG(Module): class _CRG(Module):
def __init__(self, platform): def __init__(self, platform, is_eoss3_cpu=False):
self.rst = Signal()
self.clock_domains.cd_sys = ClockDomain() self.clock_domains.cd_sys = ClockDomain()
# # # # # #
class Open(Signal): pass class Open(Signal): pass
self.specials += Instance("qlal4s3b_cell_macro", if is_eoss3_cpu:
o_Sys_Clk0 = self.cd_sys.clk, self.comb += ClockSignal("sys").eq(ClockSignal("Sys_Clk0"))
o_Sys_Clk0_Rst = self.cd_sys.rst, self.comb += ResetSignal("sys").eq(ResetSignal("Sys_Clk0") | self.rst)
o_Sys_Clk1 = Open(), else:
o_Sys_Clk1_Rst = Open(), self.specials += Instance("qlal4s3b_cell_macro",
) o_Sys_Clk0 = self.cd_sys.clk,
o_Sys_Clk0_Rst = self.cd_sys.rst,
o_Sys_Clk1 = Open(),
o_Sys_Clk1_Rst = Open(),
)
# BaseSoC ------------------------------------------------------------------------------------------ # BaseSoC ------------------------------------------------------------------------------------------
class BaseSoC(SoCCore): class BaseSoC(SoCCore):
def __init__(self, sys_clk_freq=int(60e6), with_led_chaser=True, **kwargs): def __init__(self, sys_clk_freq=int(10e6), with_led_chaser=True, **kwargs):
platform = quicklogic_quickfeather.Platform() platform = quicklogic_quickfeather.Platform()
# SoCCore ---------------------------------------------------------------------------------- # SoCCore ----------------------------------------------------------------------------------
kwargs["cpu_type"] = None if kwargs.get("cpu_type", None) == "eos-s3":
is_eoss3_cpu = True
else:
is_eoss3_cpu = False
kwargs["cpu_type"] = None
kwargs["with_uart"] = False kwargs["with_uart"] = False
SoCCore.__init__(self, platform, sys_clk_freq, SoCCore.__init__(self, platform, sys_clk_freq,
ident = "LiteX SoC on QuickLogic QuickFeather", ident = "LiteX SoC on QuickLogic QuickFeather",
@ -50,13 +60,14 @@ class BaseSoC(SoCCore):
**kwargs) **kwargs)
# CRG -------------------------------------------------------------------------------------- # CRG --------------------------------------------------------------------------------------
self.submodules.crg = _CRG(platform) self.submodules.crg = _CRG(platform, is_eoss3_cpu)
# Leds ------------------------------------------------------------------------------------- # Leds -------------------------------------------------------------------------------------
if with_led_chaser: if with_led_chaser:
self.submodules.leds = LedChaser( self.submodules.leds = LedChaser(
pads = platform.request_all("user_led"), pads = platform.request_all("user_led"),
sys_clk_freq = sys_clk_freq) sys_clk_freq = sys_clk_freq)
self.add_csr("leds")
# Build -------------------------------------------------------------------------------------------- # Build --------------------------------------------------------------------------------------------