boards: fvp v8r: Fix the SRAM/FLASH to the right address
Fix SRAM base address to 0x0 and set the size to 128M Fix FLASH base address to 0x88000000 and set the size to 64MB Signed-off-by: Jaxson Han <jaxson.han@arm.com>
This commit is contained in:
parent
7ea0591d30
commit
357aacab6b
2 changed files with 8 additions and 8 deletions
|
@ -28,14 +28,14 @@
|
|||
};
|
||||
|
||||
soc {
|
||||
flash0: flash@0 {
|
||||
flash0: flash@88000000 {
|
||||
compatible = "soc-nv-flash";
|
||||
reg = <0x0 DT_SIZE_K(64)>;
|
||||
reg = <0x88000000 DT_SIZE_M(64)>;
|
||||
};
|
||||
|
||||
dram0: memory@10000000 {
|
||||
dram0: memory@0 {
|
||||
compatible = "mmio-dram";
|
||||
reg = <0x10000000 DT_SIZE_K(2048)>;
|
||||
reg = <0x0 DT_SIZE_M(128)>;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
@ -28,14 +28,14 @@
|
|||
};
|
||||
|
||||
soc {
|
||||
flash0: flash@0 {
|
||||
flash0: flash@88000000 {
|
||||
compatible = "soc-nv-flash";
|
||||
reg = <0x0 DT_SIZE_K(64)>;
|
||||
reg = <0x88000000 DT_SIZE_M(64)>;
|
||||
};
|
||||
|
||||
dram0: memory@10000000 {
|
||||
dram0: memory@0 {
|
||||
compatible = "mmio-dram";
|
||||
reg = <0x10000000 DT_SIZE_K(2048)>;
|
||||
reg = <0x0 DT_SIZE_M(128)>;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue