[PATCH] arm64: dts: ti: k3-am69-sk: Update OSPI partitions offsets
Beleswar Padhi
b-padhi at ti.com
Fri Aug 30 02:07:02 PDT 2024
OSPI NOR flash was partitioned with a size of 1 MB for the initial
bootloader ("ospi.tiboot3"). On the AM69-SK board, boot failures were
sometimes observed when the initial bootloader size exceeded 512 KB. To
address this, the initial bootloader image has been optimized to be
smaller than 512 KB.
Therefore, limit the first OSPI partition size to 512 KB and adjust the
remaining size across the subsequent partitions.
Signed-off-by: Beleswar Padhi <b-padhi at ti.com>
---
arch/arm64/boot/dts/ti/k3-am69-sk.dts | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/arch/arm64/boot/dts/ti/k3-am69-sk.dts b/arch/arm64/boot/dts/ti/k3-am69-sk.dts
index 1e36965a1403..641236918379 100644
--- a/arch/arm64/boot/dts/ti/k3-am69-sk.dts
+++ b/arch/arm64/boot/dts/ti/k3-am69-sk.dts
@@ -1241,27 +1241,27 @@ partitions {
partition at 0 {
label = "ospi.tiboot3";
- reg = <0x0 0x100000>;
+ reg = <0x0 0x80000>;
};
- partition at 100000 {
+ partition at 80000 {
label = "ospi.tispl";
- reg = <0x100000 0x200000>;
+ reg = <0x80000 0x200000>;
};
- partition at 300000 {
+ partition at 280000 {
label = "ospi.u-boot";
- reg = <0x300000 0x400000>;
+ reg = <0x280000 0x400000>;
};
- partition at 700000 {
+ partition at 680000 {
label = "ospi.env";
- reg = <0x700000 0x40000>;
+ reg = <0x680000 0x40000>;
};
- partition at 740000 {
+ partition at 6c0000 {
label = "ospi.env.backup";
- reg = <0x740000 0x40000>;
+ reg = <0x6c0000 0x40000>;
};
partition at 800000 {
--
2.34.1
More information about the linux-arm-kernel
mailing list