From a15b66309dc08597311c340787616296014648ee Mon Sep 17 00:00:00 2001 From: Guillaume Gautier Date: Fri, 11 Apr 2025 15:11:32 +0200 Subject: [PATCH] dts: arm: st: n6: fix axisram1 size In STM32N6, AXISRAM1 is next to the 400kB FLEXRAM. By default, the FLEXRAM is configured to extend the AXISRAM1 which put its total size to 1024kB. Signed-off-by: Guillaume Gautier --- dts/arm/st/n6/stm32n657X0.dtsi | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dts/arm/st/n6/stm32n657X0.dtsi b/dts/arm/st/n6/stm32n657X0.dtsi index 613c3ee443e..b503ffed905 100644 --- a/dts/arm/st/n6/stm32n657X0.dtsi +++ b/dts/arm/st/n6/stm32n657X0.dtsi @@ -8,7 +8,8 @@ / { axisram1: memory@34000000 { - reg = <0x34000000 DT_SIZE_K(624)>; + /* 400 kB of FLEXRAM followed by 624 kB of AXISRAM1 */ + reg = <0x34000000 (DT_SIZE_K(400) + DT_SIZE_K(624))>; }; axisram2: memory@34180400 {