Skip to content

Commit 101cff9

Browse files
nordic-seglnordicjm
authored andcommitted
[nrf fromlist] snippets: nordic-flpr: Fix nRF54LM20A memory layout
Fixes wrongly set memory space for FLPR core. Upstream PR #: 92437 Signed-off-by: Karol Lasończyk <karol.lasonczyk@nordicsemi.no> Signed-off-by: Sebastian Głąb <sebastian.glab@nordicsemi.no>
1 parent c99d866 commit 101cff9

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

snippets/nordic-flpr/soc/nrf54lm20a_cpuapp.overlay

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,27 @@
99
#address-cells = <1>;
1010
#size-cells = <1>;
1111

12-
cpuflpr_code_partition: image@1ed000 {
12+
cpuflpr_code_partition: image@1e5000 {
1313
/* FLPR core code partition */
14-
reg = <0x1ed000 DT_SIZE_K(64)>;
14+
reg = <0x1e5000 DT_SIZE_K(96)>;
1515
};
1616
};
1717

18-
cpuflpr_sram_code_data: memory@2006fc00 {
18+
cpuflpr_sram_code_data: memory@20067c00 {
1919
compatible = "mmio-sram";
20-
reg = <0x2006fc00 DT_SIZE_K(64)>;
20+
reg = <0x20067c00 DT_SIZE_K(96)>;
2121
#address-cells = <1>;
2222
#size-cells = <1>;
23-
ranges = <0x0 0x2006fc00 0x10000>;
23+
ranges = <0x0 0x20067c00 DT_SIZE_K(96)>;
2424
};
2525
};
2626
};
2727

28+
&cpuapp_sram {
29+
reg = <0x20000000 DT_SIZE_K(415)>;
30+
ranges = <0x0 0x20000000 DT_SIZE_K(415)>;
31+
};
32+
2833
&uart30 {
2934
status = "reserved";
3035
};

0 commit comments

Comments
 (0)