boards: stm32: Fix external storage

The stm32l562e_dk and b_u585i_iot02a boards have same external NOR
memory. This harmonize both definitions and fix total partition size
to correct 64MB.

Signed-off-by: Gerson Fernando Budke <gerson.budke@ossystems.com.br>
This commit is contained in:
Gerson Fernando Budke 2022-12-31 12:07:33 +01:00 committed by Carles Cufí
commit 79184d9dde
2 changed files with 4 additions and 6 deletions

View file

@ -166,8 +166,7 @@
#size-cells = <1>;
partition@0 {
label = "nor";
reg = <0x00000000 DT_SIZE_M(4)>;
reg = <0x00000000 DT_SIZE_M(64)>;
};
};
};

View file

@ -163,7 +163,6 @@
data-rate = <OSPI_DTR_TRANSFER>;
four-byte-opcodes;
status = "okay";
sfdp-bfp = [
53 46 44 50 06 01 02 ff
00 06 01 10 30 00 00 ff
@ -190,15 +189,15 @@
00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00
7f ef ff ff 21 5c dc ff
];
];
partitions {
compatible = "fixed-partitions";
#address-cells = <1>;
#size-cells = <1>;
partition@0 {
label = "nor";
reg = <0x00000000 DT_SIZE_M(4)>;
reg = <0x00000000 DT_SIZE_M(64)>;
};
};
};