Skip to content

Commit 7e49329

Browse files
mbolivar-nordiccfriedt
authored andcommitted
dts: nrf52805: add some missing nodes
Add missing FICR, UICR, RADIO, and EGU nodes. We already have compatibles for these defined, and the peripherals are present, so define them for consistency across SoCs. Signed-off-by: Martí Bolívar <[email protected]>
1 parent c7503e0 commit 7e49329

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

dts/arm/nordic/nrf52805.dtsi

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,18 @@
2525
};
2626

2727
soc {
28+
ficr: ficr@10000000 {
29+
compatible = "nordic,nrf-ficr";
30+
reg = <0x10000000 0x1000>;
31+
status = "okay";
32+
};
33+
34+
uicr: uicr@10001000 {
35+
compatible = "nordic,nrf-uicr";
36+
reg = <0x10001000 0x1000>;
37+
status = "okay";
38+
};
39+
2840
sram0: memory@20000000 {
2941
compatible = "mmio-sram";
3042
};
@@ -37,6 +49,13 @@
3749
label = "CLOCK";
3850
};
3951

52+
radio: radio@40001000 {
53+
compatible = "nordic,nrf-radio";
54+
reg = <0x40001000 0x1000>;
55+
interrupts = <1 NRF_DEFAULT_IRQ_PRIORITY>;
56+
status = "okay";
57+
};
58+
4059
uart0: uart@40002000 {
4160
/* uart can be either UART or UARTE, for the user to pick */
4261
/* compatible = "nordic,nrf-uarte" or "nordic,nrf-uart"; */
@@ -188,6 +207,20 @@
188207
label = "QDEC";
189208
};
190209

210+
egu0: egu@40014000 {
211+
compatible = "nordic,nrf-egu";
212+
reg = <0x40014000 0x1000>;
213+
interrupts = <20 NRF_DEFAULT_IRQ_PRIORITY>;
214+
status = "okay";
215+
};
216+
217+
egu1: egu@40015000 {
218+
compatible = "nordic,nrf-egu";
219+
reg = <0x40015000 0x1000>;
220+
interrupts = <21 NRF_DEFAULT_IRQ_PRIORITY>;
221+
status = "okay";
222+
};
223+
191224
flash_controller: flash-controller@4001e000 {
192225
compatible = "nordic,nrf52-flash-controller";
193226
reg = <0x4001e000 0x1000>;

0 commit comments

Comments
 (0)