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