50d56c9503
Add definition of the nRF54H20 SoC revision EngA with its Application, Radio, and Peripheral Processor (PPR) cores and basic peripherals: GRTC, GPIOs, GPIOTE, and UARTs. Signed-off-by: Grzegorz Swiderski <grzegorz.swiderski@nordicsemi.no> Signed-off-by: Gerard Marull-Paretas <gerard@teslabs.com> Signed-off-by: Andrzej Głąbek <andrzej.glabek@nordicsemi.no>
39 lines
612 B
Plaintext
39 lines
612 B
Plaintext
/*
|
|
* Copyright (c) 2024 Nordic Semiconductor ASA
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <nordic/nrf54h20_enga.dtsi>
|
|
|
|
cpu: &cpurad {};
|
|
systick: &cpurad_systick {};
|
|
nvic: &cpurad_nvic {};
|
|
|
|
/delete-node/ &cpuapp;
|
|
/delete-node/ &cpuapp_peripherals;
|
|
/delete-node/ &cpuapp_ppb;
|
|
/delete-node/ &cpuapp_ram0;
|
|
/delete-node/ &cpuppr;
|
|
|
|
/ {
|
|
soc {
|
|
compatible = "simple-bus";
|
|
interrupt-parent = <&cpurad_nvic>;
|
|
ranges;
|
|
};
|
|
};
|
|
|
|
&cpurad_ppb {
|
|
compatible = "simple-bus";
|
|
ranges;
|
|
};
|
|
|
|
&gpiote130 {
|
|
interrupts = <105 NRF_DEFAULT_IRQ_PRIORITY>;
|
|
};
|
|
|
|
&grtc {
|
|
interrupts = <109 NRF_DEFAULT_IRQ_PRIORITY>;
|
|
};
|