targets/icebreaker: create CRG after SoC.
This commit is contained in:
parent
ba2f31d43d
commit
02cba41d64
|
@ -71,12 +71,12 @@ class BaseSoC(SoCCore):
|
|||
# Set CPU variant / reset address
|
||||
kwargs["cpu_reset_address"] = self.mem_map["spiflash"] + bios_flash_offset
|
||||
|
||||
# CRG --------------------------------------------------------------------------------------
|
||||
self.submodules.crg = _CRG(platform, sys_clk_freq)
|
||||
|
||||
# SoCCore ----------------------------------------------------------------------------------
|
||||
SoCCore.__init__(self, platform, sys_clk_freq, **kwargs)
|
||||
|
||||
# CRG --------------------------------------------------------------------------------------
|
||||
self.submodules.crg = _CRG(platform, sys_clk_freq)
|
||||
|
||||
# 128KB SPRAM (used as SRAM) ---------------------------------------------------------------
|
||||
self.submodules.spram = Up5kSPRAM(size=64*kB)
|
||||
self.register_mem("sram", self.mem_map["sram"], self.spram.bus, 64*kB)
|
||||
|
|
Loading…
Reference in New Issue