snippets: nordic-flpr: Fix nRF54LM20A memory layout
Fixes wrongly set memory space for FLPR core. Signed-off-by: Karol Lasończyk <karol.lasonczyk@nordicsemi.no>
This commit is contained in:
parent
713c7ac1f8
commit
cd42555ea6
@ -9,22 +9,27 @@
|
||||
#address-cells = <1>;
|
||||
#size-cells = <1>;
|
||||
|
||||
cpuflpr_code_partition: image@1ed000 {
|
||||
cpuflpr_code_partition: image@1e5000 {
|
||||
/* FLPR core code partition */
|
||||
reg = <0x1ed000 DT_SIZE_K(64)>;
|
||||
reg = <0x1e5000 DT_SIZE_K(96)>;
|
||||
};
|
||||
};
|
||||
|
||||
cpuflpr_sram_code_data: memory@2006fc00 {
|
||||
cpuflpr_sram_code_data: memory@20067c00 {
|
||||
compatible = "mmio-sram";
|
||||
reg = <0x2006fc00 DT_SIZE_K(64)>;
|
||||
reg = <0x20067c00 DT_SIZE_K(96)>;
|
||||
#address-cells = <1>;
|
||||
#size-cells = <1>;
|
||||
ranges = <0x0 0x2006fc00 0x10000>;
|
||||
ranges = <0x0 0x20067c00 DT_SIZE_K(96)>;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
&cpuapp_sram {
|
||||
reg = <0x20000000 DT_SIZE_K(415)>;
|
||||
ranges = <0x0 0x20000000 DT_SIZE_K(415)>;
|
||||
};
|
||||
|
||||
&uart30 {
|
||||
status = "reserved";
|
||||
};
|
||||
|
||||
Loading…
Reference in New Issue
Block a user