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
4 changes: 4 additions & 0 deletions boards/nxp/frdm_mcxw23/frdm_mcxw23_common.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,10 @@
status = "okay";
};

&gint0 {
status = "okay";
};

&flash0 {
partitions {
compatible = "fixed-partitions";
Expand Down
8 changes: 8 additions & 0 deletions boards/nxp/lpcxpresso51u68/lpcxpresso51u68.dts
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,14 @@
};
};

&gint0 {
status = "okay";
};

&gint1 {
status = "okay";
};

&flexcomm0 {
status = "okay";
compatible = "nxp,lpc-usart";
Expand Down
8 changes: 8 additions & 0 deletions boards/nxp/lpcxpresso54114/lpcxpresso54114_lpc54114_m4.dts
Original file line number Diff line number Diff line change
Expand Up @@ -116,3 +116,11 @@
};
};
};

&gint0 {
status = "okay";
};

&gint1 {
status = "okay";
};
8 changes: 8 additions & 0 deletions boards/nxp/lpcxpresso55s06/lpcxpresso55s06_common.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -171,3 +171,11 @@
max-bitrate = <5000000>;
};
};

&gint0 {
status = "okay";
};

&gint1 {
status = "okay";
};
8 changes: 8 additions & 0 deletions boards/nxp/lpcxpresso55s16/lpcxpresso55s16_common.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,14 @@
};
};

&gint0 {
status = "okay";
};

&gint1 {
status = "okay";
};

arduino_i2c: &flexcomm4 {};

arduino_spi: &hs_lspi {};
Expand Down
8 changes: 8 additions & 0 deletions boards/nxp/lpcxpresso55s28/lpcxpresso55s28_common.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,14 @@
};
};

&gint0 {
status = "okay";
};

&gint1 {
status = "okay";
};

&flexcomm0 {
compatible = "nxp,lpc-usart";
current-speed = <115200>;
Expand Down
8 changes: 8 additions & 0 deletions boards/nxp/lpcxpresso55s36/lpcxpresso55s36.dts
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,14 @@ zephyr_udc0: &usbfs {
status = "okay";
};

&gint0 {
status = "okay";
};

&gint1 {
status = "okay";
};

&dac0 {
status = "okay";
pinctrl-0 = <&pinmux_dac0>;
Expand Down
8 changes: 8 additions & 0 deletions boards/nxp/lpcxpresso55s69/lpcxpresso55s69_lpc55s69_cpu0.dts
Original file line number Diff line number Diff line change
Expand Up @@ -240,3 +240,11 @@ i2s1: &flexcomm7 {
&counter_rtc {
status = "okay";
};

&gint0 {
status = "okay";
};

&gint1 {
status = "okay";
};
Original file line number Diff line number Diff line change
Expand Up @@ -137,3 +137,11 @@ zephyr_udc0: &usbhs {
&ctimer4 {
status = "okay";
};

&gint0 {
status = "okay";
};

&gint1 {
status = "okay";
};
8 changes: 8 additions & 0 deletions boards/nxp/lpcxpresso55s69/lpcxpresso55s69_lpc55s69_cpu1.dts
Original file line number Diff line number Diff line change
Expand Up @@ -60,3 +60,11 @@
&mma8652fc {
status = "disabled";
};

&gint0 {
status = "okay";
};

&gint1 {
status = "okay";
};
4 changes: 4 additions & 0 deletions boards/nxp/mcxw23_evk/mcxw23_evk_common.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,10 @@
status = "okay";
};

&gint0 {
status = "okay";
};

&flash0 {
partitions {
compatible = "fixed-partitions";
Expand Down
1 change: 1 addition & 0 deletions drivers/interrupt_controller/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ zephyr_library_sources_ifdef(CONFIG_MCHP_ECIA_XEC intc_mchp_ecia_xec.c)
zephyr_library_sources_ifdef(CONFIG_NPCX_MIWU intc_miwu.c)
zephyr_library_sources_ifdef(CONFIG_NRFX_CLIC intc_nrfx_clic.S)
zephyr_library_sources_ifdef(CONFIG_NRFX_CLIC intc_nrfx_clic.c)
zephyr_library_sources_ifdef(CONFIG_NXP_GINT intc_nxp_gint.c)
zephyr_library_sources_ifdef(CONFIG_NXP_IRQSTEER intc_nxp_irqsteer.c)
zephyr_library_sources_ifdef(CONFIG_NXP_PINT intc_nxp_pint.c)
zephyr_library_sources_ifdef(CONFIG_NXP_S32_WKPU intc_wkpu_nxp_s32.c)
Expand Down
1 change: 1 addition & 0 deletions drivers/interrupt_controller/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ source "drivers/interrupt_controller/Kconfig.loapic"
source "drivers/interrupt_controller/Kconfig.mtk_adsp"
source "drivers/interrupt_controller/Kconfig.multilevel"
source "drivers/interrupt_controller/Kconfig.npcx"
source "drivers/interrupt_controller/Kconfig.nxp_gint"
source "drivers/interrupt_controller/Kconfig.nxp_irqsteer"
source "drivers/interrupt_controller/Kconfig.nxp_pint"
source "drivers/interrupt_controller/Kconfig.nxp_s32"
Expand Down
10 changes: 10 additions & 0 deletions drivers/interrupt_controller/Kconfig.nxp_gint
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Copyright 2025 NXP
# SPDX-License-Identifier: Apache-2.0

config NXP_GINT
bool "Grouped GPIO Input Interrupt(GINT) controller for NXP MCUs"
default y
depends on DT_HAS_NXP_GINT_ENABLED
select RESET
help
Enable GINT driver for NXP MCUs
Loading