Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ sysbuild: true
ram: 46
flash: 46
supported:
- counter
- gpio
- i2c
- pwm
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ ram: 46
flash: 48
supported:
- gpio
- counter
3 changes: 2 additions & 1 deletion tests/arch/common/gen_isr_table/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@

#if defined(CONFIG_NRFX_CLIC)

#if defined(CONFIG_SOC_SERIES_NRF54LX) && defined(CONFIG_RISCV_CORE_NORDIC_VPR)
#if (defined(CONFIG_SOC_SERIES_NRF54LX) || defined(CONFIG_SOC_NRF54H20_CPUFLPR)) && \
defined(CONFIG_RISCV_CORE_NORDIC_VPR)

Check notice on line 31 in tests/arch/common/gen_isr_table/src/main.c

View workflow job for this annotation

GitHub Actions / Run compliance checks on patch series (PR)

You may want to run clang-format on this change

tests/arch/common/gen_isr_table/src/main.c:31 -#if (defined(CONFIG_SOC_SERIES_NRF54LX) || defined(CONFIG_SOC_NRF54H20_CPUFLPR)) && \ +#if (defined(CONFIG_SOC_SERIES_NRF54LX) || defined(CONFIG_SOC_NRF54H20_CPUFLPR)) && \
#define ISR1_OFFSET 16
#define ISR3_OFFSET 17
#define ISR5_OFFSET 18
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
/* SPDX-License-Identifier: Apache-2.0 */

#include "nrf54h20dk_nrf54h20_common.dtsi"

/* FLPR does not have interrupts for slow peripherals. */
&timer130 {
status = "disabled";
};

&timer131 {
status = "disabled";
};

&timer132 {
status = "disabled";
};

&timer133 {
status = "disabled";
};

&timer134 {
status = "disabled";
};

&timer135 {
status = "disabled";
};

&timer136 {
status = "disabled";
};

&timer137 {
status = "disabled";
};

&rtc130 {
status = "disabled";
};

&rtc131 {
status = "disabled";
};
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
/* SPDX-License-Identifier: Apache-2.0 */

&timer120 {
status = "reserved";
interrupt-parent = <&cpuflpr_clic>;
};

&timer121 {
status = "reserved";
interrupt-parent = <&cpuflpr_clic>;
};

&timer130 {
status = "reserved";
interrupt-parent = <&cpuppr_clic>;
Expand Down
Loading