Skip to content

Commit 9a2ffcb

Browse files
committed
Revert "[nrf fromtree] boards: nordic: nRF54L15DK: Add basic support for the L05 and L10 ICs"
This reverts commit 270c1e9. Signed-off-by: Gerard Marull-Paretas <[email protected]>
1 parent 38d8bbb commit 9a2ffcb

21 files changed

+41
-403
lines changed
Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
# Copyright (c) 2024 Nordic Semiconductor ASA
22
# SPDX-License-Identifier: Apache-2.0
33

4-
if BOARD_NRF54L15DK_NRF54L05_CPUAPP || BOARD_NRF54L15DK_NRF54L10_CPUAPP || \
5-
BOARD_NRF54L15DK_NRF54L15_CPUAPP
4+
if BOARD_NRF54L15DK_NRF54L15_CPUAPP
65

76
config BT_CTLR
87
default BT
@@ -11,5 +10,4 @@ config ROM_START_OFFSET
1110
default 0 if PARTITION_MANAGER_ENABLED
1211
default 0x800 if BOOTLOADER_MCUBOOT
1312

14-
endif # BOARD_NRF54L15DK_NRF54L05_CPUAPP || BOARD_NRF54L15DK_NRF54L10_CPUAPP || \
15-
# BOARD_NRF54L15DK_NRF54L15_CPUAPP
13+
endif # BOARD_NRF54L15DK_NRF54L15_CPUAPP

boards/nordic/nrf54l15dk/Kconfig.nrf54l15dk

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
# SPDX-License-Identifier: Apache-2.0
33

44
config BOARD_NRF54L15DK
5-
select SOC_NRF54L05_CPUAPP if BOARD_NRF54L15DK_NRF54L05_CPUAPP
6-
select SOC_NRF54L10_CPUAPP if BOARD_NRF54L15DK_NRF54L10_CPUAPP
75
select SOC_NRF54L15_CPUAPP if BOARD_NRF54L15DK_NRF54L15_CPUAPP
86
select SOC_NRF54L15_CPUFLPR if BOARD_NRF54L15DK_NRF54L15_CPUFLPR || \
97
BOARD_NRF54L15DK_NRF54L15_CPUFLPR_XIP

boards/nordic/nrf54l15dk/board.cmake

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
# Copyright (c) 2024 Nordic Semiconductor ASA
22
# SPDX-License-Identifier: Apache-2.0
33

4-
if(CONFIG_SOC_NRF54L05_CPUAPP OR CONFIG_SOC_NRF54L10_CPUAPP OR
5-
CONFIG_SOC_NRF54L15_CPUAPP)
4+
if(CONFIG_SOC_NRF54L15_CPUAPP)
65
board_runner_args(jlink "--device=cortex-m33" "--speed=4000")
7-
elseif(CONFIG_SOC_NRF54L05_CPUFLPR OR CONFIG_SOC_NRF54L10_CPUFLPR OR
8-
CONFIG_SOC_NRF54L15_CPUFLPR)
6+
elseif(CONFIG_SOC_NRF54L15_CPUFLPR)
97
board_runner_args(jlink "--speed=4000")
108
endif()
119

boards/nordic/nrf54l15dk/board.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ board:
33
full_name: nRF54L15 DK
44
vendor: nordic
55
socs:
6-
- name: nrf54l05
7-
- name: nrf54l10
86
- name: nrf54l15
97
variants:
108
- name: xip

boards/nordic/nrf54l15dk/nrf54l_05_10_15_cpuapp_common.dtsi renamed to boards/nordic/nrf54l15dk/nrf54l15_cpuapp_common.dtsi

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
/* This file is common to the secure and non-secure domain */
88

9+
#include <nordic/nrf54l15_cpuapp.dtsi>
910
#include "nrf54l15dk_common.dtsi"
1011

1112
/ {
@@ -51,6 +52,39 @@
5152
status = "okay";
5253
};
5354

55+
&cpuapp_rram {
56+
partitions {
57+
compatible = "fixed-partitions";
58+
#address-cells = <1>;
59+
#size-cells = <1>;
60+
boot_partition: partition@0 {
61+
label = "mcuboot";
62+
reg = <0x0 DT_SIZE_K(64)>;
63+
};
64+
slot0_partition: partition@10000 {
65+
label = "image-0";
66+
reg = <0x10000 DT_SIZE_K(324)>;
67+
};
68+
slot0_ns_partition: partition@61000 {
69+
label = "image-0-nonsecure";
70+
reg = <0x61000 DT_SIZE_K(324)>;
71+
};
72+
slot1_partition: partition@b2000 {
73+
label = "image-1";
74+
reg = <0xb2000 DT_SIZE_K(324)>;
75+
};
76+
slot1_ns_partition: partition@103000 {
77+
label = "image-1-nonsecure";
78+
reg = <0x103000 DT_SIZE_K(324)>;
79+
};
80+
/* 32k from 0x154000 to 0x15bfff reserved for TF-M partitions */
81+
storage_partition: partition@15c000 {
82+
label = "storage";
83+
reg = <0x15c000 DT_SIZE_K(36)>;
84+
};
85+
};
86+
};
87+
5488
&uart20 {
5589
status = "okay";
5690
};

boards/nordic/nrf54l15dk/nrf54l15dk_common.dtsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* SPDX-License-Identifier: Apache-2.0
55
*/
66

7-
#include "nrf54l15dk_nrf54l_05_10_15-pinctrl.dtsi"
7+
#include "nrf54l15dk_nrf54l15-pinctrl.dtsi"
88

99
/ {
1010
leds {

boards/nordic/nrf54l15dk/nrf54l15dk_nrf54l05_cpuapp.dts

Lines changed: 0 additions & 63 deletions
This file was deleted.

boards/nordic/nrf54l15dk/nrf54l15dk_nrf54l05_cpuapp.yaml

Lines changed: 0 additions & 24 deletions
This file was deleted.

boards/nordic/nrf54l15dk/nrf54l15dk_nrf54l05_cpuapp_defconfig

Lines changed: 0 additions & 29 deletions
This file was deleted.

boards/nordic/nrf54l15dk/nrf54l15dk_nrf54l10_cpuapp.dts

Lines changed: 0 additions & 63 deletions
This file was deleted.

0 commit comments

Comments
 (0)