Merge pull request #18 from xobs/fomu-cpu-updates

Fomu cpu updates
This commit is contained in:
Sean Cross 2019-09-27 16:55:27 +08:00 committed by GitHub
commit 19e2a12266
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 18 additions and 10 deletions

View File

@ -54,7 +54,10 @@ _io = [
Subsignal("clk", Pins("15"), IOStandard("LVCMOS33")),
Subsignal("dq", Pins("14 17 19 18"), IOStandard("LVCMOS33")),
),
("i2c", 0,
Subsignal("scl", Pins("12"), IOStandard("LVCMOS18")),
Subsignal("sda", Pins("20"), IOStandard("LVCMOS18")),
),
]
# Connectors ---------------------------------------------------------------------------------------

View File

@ -127,13 +127,8 @@ class BaseSoC(SoCCore):
"csr": 0x60000000, # (default shadow @0xe0000000)
}
interrupt_map = {
"usb": 3,
}
interrupt_map.update(SoCCore.interrupt_map)
def __init__(self, board,
pnr_placer=None, pnr_seed=0, usb_core="dummyusb", usb_bridge=False,
pnr_placer="heap", pnr_seed=0, usb_core="dummyusb", usb_bridge=False,
**kwargs):
"""Create a basic SoC for Fomu.
@ -164,11 +159,13 @@ class BaseSoC(SoCCore):
raise ValueError("unrecognized fomu board: {}".format(board))
platform = Platform()
if "cpu_type" not in kwargs:
kwargs["cpu_type"] = None
kwargs["cpu_variant"] = None
clk_freq = int(12e6)
SoCCore.__init__(self, platform, clk_freq,
cpu_type=None,
cpu_variant=None,
integrated_sram_size=0,
with_uart=False,
with_ctrl=False,
@ -180,7 +177,7 @@ class BaseSoC(SoCCore):
# Use this as CPU RAM.
spram_size = 128*1024
self.submodules.spram = up5kspram.Up5kSPRAM(size=spram_size)
self.register_mem("sram", 0x10000000, self.spram.bus, spram_size)
self.register_mem("sram", self.mem_map["sram"], self.spram.bus, spram_size)
if usb_core is not None:
# Add USB pads. We use DummyUsb, which simply enumerates as a USB
@ -212,6 +209,14 @@ class BaseSoC(SoCCore):
if pnr_placer is not None:
platform.toolchain.nextpnr_build_template[1] += " --placer {}".format(pnr_placer)
class USBSoC(BaseSoC):
"""A SoC for Fomu with interrupts for a softcore CPU"""
interrupt_map = {
"usb": 3,
}
interrupt_map.update(SoCCore.interrupt_map)
# Build --------------------------------------------------------------------------------------------