This renames the dtsi files in the dts/vendor/nordic to include the cpuapp in the filename. At the same time it updates the inclusion of these files to include the vendor in the path because the same filenames exists in both: dts/vendor/nordic dts/arm/nordic Signed-off-by: Georgios Vasilakis <georgios.vasilakis@nordicsemi.no>
38 lines
757 B
Plaintext
38 lines
757 B
Plaintext
/*
|
|
* Copyright (c) 2025 Nordic Semiconductor ASA
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
&cpuapp_rram {
|
|
partitions {
|
|
compatible = "fixed-partitions";
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
/* nRF54LM20A has 2036 kB of non-volatile memory (RRAM) but the last
|
|
* 96 kB are reserved for the FLPR MCU, so we have ~1940 kB available.
|
|
*/
|
|
|
|
boot_partition: partition@0 {
|
|
label = "mcuboot";
|
|
reg = <0x0 DT_SIZE_K(64)>;
|
|
};
|
|
|
|
slot0_partition: partition@10000 {
|
|
label = "image-0";
|
|
reg = <0x10000 DT_SIZE_K(920)>;
|
|
};
|
|
|
|
slot1_partition: partition@f6000 {
|
|
label = "image-1";
|
|
reg = <0xf6000 DT_SIZE_K(920)>;
|
|
};
|
|
|
|
storage_partition: partition@1dc000 {
|
|
label = "storage";
|
|
reg = <0x1dc000 DT_SIZE_K(36)>;
|
|
};
|
|
};
|
|
};
|