Skip to content

Commit 0dbd510

Browse files
Revert "[nrf noup] boards: nordic: Remove nrf54l20pdk"
This reverts commit a2b6884. Signed-off-by: Bjarki Arge Andreasen <[email protected]>
1 parent fb1a0a9 commit 0dbd510

File tree

1 file changed

+131
-0
lines changed

1 file changed

+131
-0
lines changed
Lines changed: 131 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,131 @@
1+
/*
2+
* Copyright (c) 2024 Nordic Semiconductor ASA
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
7+
/* This file is common to the secure and non-secure domain */
8+
9+
#include <nordic/nrf54l20_enga_cpuapp.dtsi>
10+
#include "nrf54l20pdk_nrf54l20-common.dtsi"
11+
12+
/ {
13+
chosen {
14+
zephyr,console = &uart20;
15+
zephyr,shell-uart = &uart20;
16+
zephyr,uart-mcumgr = &uart20;
17+
zephyr,bt-mon-uart = &uart20;
18+
zephyr,bt-c2h-uart = &uart20;
19+
zephyr,flash-controller = &rram_controller;
20+
zephyr,flash = &cpuapp_rram;
21+
zephyr,bt-hci = &bt_hci_sdc;
22+
zephyr,ieee802154 = &ieee802154;
23+
};
24+
};
25+
26+
&cpuapp_sram {
27+
status = "okay";
28+
};
29+
30+
&lfxo {
31+
load-capacitors = "internal";
32+
load-capacitance-femtofarad = <15500>;
33+
};
34+
35+
&hfxo {
36+
load-capacitors = "internal";
37+
load-capacitance-femtofarad = <15000>;
38+
};
39+
40+
&grtc {
41+
owned-channels = <0 1 2 3 4 5 6 7 8 9 10 11>;
42+
/* Channels 7-11 reserved for Zero Latency IRQs, 3-4 for FLPR */
43+
child-owned-channels = <3 4 7 8 9 10 11>;
44+
status = "okay";
45+
};
46+
47+
&cpuapp_rram {
48+
partitions {
49+
compatible = "fixed-partitions";
50+
#address-cells = <1>;
51+
#size-cells = <1>;
52+
53+
boot_partition: partition@0 {
54+
label = "mcuboot";
55+
reg = <0x0 DT_SIZE_K(64)>;
56+
};
57+
58+
slot0_partition: partition@10000 {
59+
label = "image-0";
60+
reg = <0x10000 DT_SIZE_K(449)>;
61+
};
62+
63+
slot0_ns_partition: partition@80400 {
64+
label = "image-0-nonsecure";
65+
reg = <0x80400 DT_SIZE_K(449)>;
66+
};
67+
68+
slot1_partition: partition@f0800 {
69+
label = "image-1";
70+
reg = <0xf0800 DT_SIZE_K(449)>;
71+
};
72+
73+
slot1_ns_partition: partition@160c00 {
74+
label = "image-1-nonsecure";
75+
reg = <0x160c00 DT_SIZE_K(449)>;
76+
};
77+
78+
storage_partition: partition@1d1000 {
79+
label = "storage";
80+
reg = <0x1d1000 DT_SIZE_K(36)>;
81+
};
82+
};
83+
};
84+
85+
&uart20 {
86+
status = "okay";
87+
};
88+
89+
&nfct {
90+
status = "okay";
91+
};
92+
93+
&gpio0 {
94+
status = "okay";
95+
};
96+
97+
&gpio1 {
98+
status = "okay";
99+
};
100+
101+
&gpio2 {
102+
status = "okay";
103+
};
104+
105+
&gpiote20 {
106+
status = "okay";
107+
};
108+
109+
&gpiote30 {
110+
status = "okay";
111+
};
112+
113+
&radio {
114+
status = "okay";
115+
};
116+
117+
&temp {
118+
status = "okay";
119+
};
120+
121+
&clock {
122+
status = "okay";
123+
};
124+
125+
&bt_hci_sdc {
126+
status = "okay";
127+
};
128+
129+
&ieee802154 {
130+
status = "okay";
131+
};

0 commit comments

Comments
 (0)