Skip to content

Commit a15b663

Browse files
gautierg-stkartben
authored andcommitted
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 <guillaume.gautier-ext@st.com>
1 parent 5c04df9 commit a15b663

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

dts/arm/st/n6/stm32n657X0.dtsi

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88

99
/ {
1010
axisram1: memory@34000000 {
11-
reg = <0x34000000 DT_SIZE_K(624)>;
11+
/* 400 kB of FLEXRAM followed by 624 kB of AXISRAM1 */
12+
reg = <0x34000000 (DT_SIZE_K(400) + DT_SIZE_K(624))>;
1213
};
1314

1415
axisram2: memory@34180400 {

0 commit comments

Comments
 (0)