dts: esp32: fix sram0 start address for esp32c2 and esp32c3
Changes the sram0 start address from 0x4037_0000 to 0x4037_C000 for: - esp32c2 - esp32c3 Signed-off-by: Marcio Ribeiro <marcio.ribeiro@espressif.com>
This commit is contained in:
parent
cdbb1ddbad
commit
674529e11b
2 changed files with 4 additions and 4 deletions
|
@ -56,9 +56,9 @@
|
|||
compatible = "simple-bus";
|
||||
ranges;
|
||||
|
||||
sram0: memory@40370000 {
|
||||
sram0: memory@4037c000 {
|
||||
compatible = "zephyr,memory-region", "mmio-sram";
|
||||
reg = <0x40370000 DT_SIZE_K(16)>;
|
||||
reg = <0x4037c000 DT_SIZE_K(16)>;
|
||||
zephyr,memory-region = "SRAM0";
|
||||
};
|
||||
|
||||
|
|
|
@ -80,9 +80,9 @@
|
|||
compatible = "simple-bus";
|
||||
ranges;
|
||||
|
||||
sram0: memory@40370000 {
|
||||
sram0: memory@4037c000 {
|
||||
compatible = "zephyr,memory-region", "mmio-sram";
|
||||
reg = <0x40370000 DT_SIZE_K(16)>;
|
||||
reg = <0x4037c000 DT_SIZE_K(16)>;
|
||||
zephyr,memory-region = "SRAM0";
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue