cpu/blackparrot: Re-map csr and keep the lower 128MBs for the SoC IO auto-allocation.

This commit is contained in:
Florent Kermarrec 2021-07-20 12:05:12 +02:00
parent 1bf7abfc8a
commit c64c6e4056
1 changed files with 2 additions and 1 deletions

View File

@ -68,8 +68,9 @@ class BlackParrotRV64(CPU):
# Memory Mapping. # Memory Mapping.
@property @property
def mem_map(self): def mem_map(self):
# Keep the lower 128MBs for SoC IOs auto-allocation.
return { return {
"csr" : 0x50000000, "csr" : 0x58000000,
"rom" : 0x70000000, "rom" : 0x70000000,
"sram" : 0x71000000, "sram" : 0x71000000,
"main_ram" : 0x80000000, "main_ram" : 0x80000000,