1/*
2 * Copyright (c) 2024 Nordic Semiconductor ASA
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7#include <nordic/nrf54l20.dtsi>
8
9cpu: &cpuapp {};
10systick: &cpuapp_systick {};
11nvic: &cpuapp_nvic {};
12
13/ {
14	soc {
15		compatible = "simple-bus";
16		interrupt-parent = <&cpuapp_nvic>;
17		ranges;
18	};
19
20	psa_rng: psa-rng {
21		compatible = "zephyr,psa-crypto-rng";
22		status = "disabled";
23	};
24};
25
26&cpuapp_ppb {
27	compatible = "simple-bus";
28	ranges;
29};
30
31&grtc {
32	interrupts = <228 NRF_DEFAULT_IRQ_PRIORITY>,
33		<229 NRF_DEFAULT_IRQ_PRIORITY>; /* reserved for Zero Latency IRQs */
34};
35
36&gpiote20 {
37	interrupts = <219 NRF_DEFAULT_IRQ_PRIORITY>;
38};
39
40&gpiote30 {
41	interrupts = <269 NRF_DEFAULT_IRQ_PRIORITY>;
42};
43
44&dppic00 {
45	status = "okay";
46};
47
48&dppic10 {
49	status = "okay";
50};
51
52&dppic20 {
53	status = "okay";
54};
55
56&dppic30 {
57	status = "okay";
58};
59
60&ppib00 {
61	status = "okay";
62};
63
64&ppib01 {
65	status = "okay";
66};
67
68&ppib10 {
69	status = "okay";
70};
71
72&ppib11 {
73	status = "okay";
74};
75
76&ppib20 {
77	status = "okay";
78};
79
80&ppib21 {
81	status = "okay";
82};
83
84&ppib22 {
85	status = "okay";
86};
87
88&ppib30 {
89	status = "okay";
90};
91