cpu/blackparrot: Re-map csr and keep the lower 128MBs for the SoC IO auto-allocation.
This commit is contained in:
parent
1bf7abfc8a
commit
c64c6e4056
|
@ -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,
|
||||||
|
|
Loading…
Reference in New Issue