dts: arm: st: Fix incorrect memory mapping and size for STM32L475Xe

This commit updates the SRAM configuration in the STM32L475 device tree:

- `sram0` size reduced from 128K to 96K.
- `sram1` added with 32K.

These changes correct memory settings to prevent initialization failures.

Signed-off-by: Tianshuang Ke <qinyun575@gmail.com>
This commit is contained in:
Tianshuang Ke 2024-04-13 09:16:32 +08:00 committed by Alberto Escolar
parent 72cdbcbbba
commit 8ffefab29f

View file

@ -8,7 +8,10 @@
/ {
sram0: memory@20000000 {
reg = <0x20000000 DT_SIZE_K(128)>;
reg = <0x20000000 DT_SIZE_K(96)>;
};
sram1: memory@10000000 {
reg = <0x10000000 DT_SIZE_K(32)>;
};
soc {