diff --git a/litex/soc/cores/cpu/blackparrot/core.py b/litex/soc/cores/cpu/blackparrot/core.py index a34c60dc6..930fab8f2 100644 --- a/litex/soc/cores/cpu/blackparrot/core.py +++ b/litex/soc/cores/cpu/blackparrot/core.py @@ -68,8 +68,9 @@ class BlackParrotRV64(CPU): # Memory Mapping. @property def mem_map(self): + # Keep the lower 128MBs for SoC IOs auto-allocation. return { - "csr" : 0x50000000, + "csr" : 0x58000000, "rom" : 0x70000000, "sram" : 0x71000000, "main_ram" : 0x80000000,