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:
Jaxson Han 2022-03-15 18:37:43 +08:00 committed by Maureen Helm
commit 357aacab6b
2 changed files with 8 additions and 8 deletions

View file

@ -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)>;
};
};
};

View file

@ -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)>;
};
};
};