Skip to content
Snippets Groups Projects
Commit 6e31d12f authored by Florent Kermarrec's avatar Florent Kermarrec
Browse files

trenz_tec0117: Avoid forcing CPU type (only force to lite variant when...

trenz_tec0117: Avoid forcing CPU type (only force to lite variant when VexRiscv is selected=default).
parent 8c1e6c6a
No related branches found
No related tags found
No related merge requests found
......@@ -59,8 +59,8 @@ class BaseSoC(SoCCore):
# Use custom default configuration to fit in LittleBee.
kwargs["integrated_sram_size"] = 0x1000
kwargs["integrated_rom_size"] = 0x6000
kwargs["cpu_type"] = "vexriscv"
kwargs["cpu_variant"] = "lite"
if kwargs.get("cpu_type", "vexriscv") == "vexriscv":
kwargs["cpu_variant"] = "lite"
# Set CPU variant / reset address
kwargs["cpu_reset_address"] = self.mem_map["spiflash"] + bios_flash_offset
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment