43 lines
690 B
Plaintext
43 lines
690 B
Plaintext
/*
|
|
* Copyright (c) 2024 Nordic Semiconductor ASA
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <nordic/nrf54l20.dtsi>
|
|
|
|
cpu: &cpuapp {};
|
|
systick: &cpuapp_systick {};
|
|
nvic: &cpuapp_nvic {};
|
|
|
|
/ {
|
|
soc {
|
|
compatible = "simple-bus";
|
|
interrupt-parent = <&cpuapp_nvic>;
|
|
ranges;
|
|
};
|
|
|
|
psa_rng: psa-rng {
|
|
compatible = "zephyr,psa-crypto-rng";
|
|
status = "disabled";
|
|
};
|
|
};
|
|
|
|
&cpuapp_ppb {
|
|
compatible = "simple-bus";
|
|
ranges;
|
|
};
|
|
|
|
&grtc {
|
|
interrupts = <228 NRF_DEFAULT_IRQ_PRIORITY>,
|
|
<229 NRF_DEFAULT_IRQ_PRIORITY>; /* reserved for Zero Latency IRQs */
|
|
};
|
|
|
|
&gpiote20 {
|
|
interrupts = <219 NRF_DEFAULT_IRQ_PRIORITY>;
|
|
};
|
|
|
|
&gpiote30 {
|
|
interrupts = <269 NRF_DEFAULT_IRQ_PRIORITY>;
|
|
};
|