1/* 2 * Copyright (c) 2024 Nordic Semiconductor ASA 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7/dts-v1/; 8 9#include <nordic/nrf54l15_cpuapp.dtsi> 10#include "nrf54l_05_10_15_cpuapp_common.dtsi" 11 12/ { 13 compatible = "nordic,nrf54l15dk_nrf54l15-cpuapp"; 14 model = "Nordic nRF54L15 DK nRF54L15 Application MCU"; 15 16 chosen { 17 zephyr,code-partition = &slot0_partition; 18 zephyr,sram = &cpuapp_sram; 19 }; 20}; 21 22&cpuapp_rram { 23 partitions { 24 compatible = "fixed-partitions"; 25 #address-cells = <1>; 26 #size-cells = <1>; 27 boot_partition: partition@0 { 28 label = "mcuboot"; 29 reg = <0x0 DT_SIZE_K(64)>; 30 }; 31 slot0_partition: partition@10000 { 32 label = "image-0"; 33 reg = <0x10000 DT_SIZE_K(324)>; 34 }; 35 slot0_ns_partition: partition@61000 { 36 label = "image-0-nonsecure"; 37 reg = <0x61000 DT_SIZE_K(324)>; 38 }; 39 slot1_partition: partition@b2000 { 40 label = "image-1"; 41 reg = <0xb2000 DT_SIZE_K(324)>; 42 }; 43 slot1_ns_partition: partition@103000 { 44 label = "image-1-nonsecure"; 45 reg = <0x103000 DT_SIZE_K(324)>; 46 }; 47 /* 32k from 0x154000 to 0x15bfff reserved for TF-M partitions */ 48 storage_partition: partition@15c000 { 49 label = "storage"; 50 reg = <0x15c000 DT_SIZE_K(36)>; 51 }; 52 }; 53}; 54