dts: nordic: Change IRQ number for GPIOTE instances for nRF54L15

Adjusting the interrupt numbers for individual cores
to match the definitions in nrfx.

Signed-off-by: Jakub Zymelka <jakub.zymelka@nordicsemi.no>
This commit is contained in:
Jakub Zymelka 2024-04-19 10:17:51 +02:00 committed by Fabio Baltieri
parent d82b27b08b
commit 5e4cb886f4
3 changed files with 16 additions and 2 deletions

View file

@ -38,3 +38,11 @@ cpuflpr_vevif: &cpuflpr_vevif_remote {};
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>;
};

View file

@ -488,7 +488,6 @@
gpiote20: gpiote@da000 {
compatible = "nordic,nrf-gpiote";
reg = <0xda000 0x1000>;
interrupts = <219 NRF_DEFAULT_IRQ_PRIORITY>;
status = "disabled";
instance = <20>;
};
@ -594,7 +593,6 @@
gpiote30: gpiote@10c000 {
compatible = "nordic,nrf-gpiote";
reg = <0x10c000 0x1000>;
interrupts = <269 NRF_DEFAULT_IRQ_PRIORITY>;
status = "disabled";
instance = <30>;
};

View file

@ -30,3 +30,11 @@ cpuflpr_vevif: &cpuflpr_vevif_local {};
&grtc {
interrupts = <226 NRF_DEFAULT_IRQ_PRIORITY>;
};
&gpiote20 {
interrupts = <218 NRF_DEFAULT_IRQ_PRIORITY>;
};
&gpiote30 {
interrupts = <268 NRF_DEFAULT_IRQ_PRIORITY>;
};