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:
Marcio Ribeiro 2024-12-10 14:03:40 -03:00 committed by Benjamin Cabé
commit 674529e11b
2 changed files with 4 additions and 4 deletions

View file

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

View file

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