File tree Expand file tree Collapse file tree 4 files changed +509
-0
lines changed Expand file tree Collapse file tree 4 files changed +509
-0
lines changed Original file line number Diff line number Diff line change @@ -78,6 +78,7 @@ zephyr_library_sources_ifdef(CONFIG_GPIO_PCA6416 gpio_pca6416.c)
78
78
zephyr_library_sources_ifdef (CONFIG_GPIO_PCA953X gpio_pca953x.c )
79
79
zephyr_library_sources_ifdef (CONFIG_GPIO_PCA95XX gpio_pca95xx.c )
80
80
zephyr_library_sources_ifdef (CONFIG_GPIO_PCAL64XXA gpio_pcal64xxa.c )
81
+ zephyr_library_sources_ifdef (CONFIG_GPIO_PCAL9722 gpio_pcal9722.c )
81
82
zephyr_library_sources_ifdef (CONFIG_GPIO_PCA_SERIES gpio_pca_series.c )
82
83
zephyr_library_sources_ifdef (CONFIG_GPIO_PCF857X gpio_pcf857x.c )
83
84
zephyr_library_sources_ifdef (CONFIG_GPIO_PSOC6 gpio_psoc6.c )
Original file line number Diff line number Diff line change @@ -165,6 +165,7 @@ source "drivers/gpio/Kconfig.pca953x"
165
165
source "drivers/gpio/Kconfig.pca95xx"
166
166
source "drivers/gpio/Kconfig.pca_series"
167
167
source "drivers/gpio/Kconfig.pcal64xxa"
168
+ source "drivers/gpio/Kconfig.pcal9722"
168
169
source "drivers/gpio/Kconfig.pcf857x"
169
170
source "drivers/gpio/Kconfig.psoc6"
170
171
source "drivers/gpio/Kconfig.rcar"
Original file line number Diff line number Diff line change
1
+ # PCAL9722 GPIO configuration options
2
+
3
+ # Copyright 2025 Michael Estes
4
+ # SPDX-License-Identifier: Apache-2.0
5
+
6
+ menuconfig GPIO_PCAL9722
7
+ bool "PCAL9722 SPI GPIO chip"
8
+ default y
9
+ depends on DT_HAS_NXP_PCAL9722_ENABLED
10
+ depends on SPI
11
+ help
12
+ Enable driver for PCAL9722 SPI GPIO chip.
13
+
14
+ if GPIO_PCAL9722
15
+
16
+ config GPIO_PCAL9722_INIT_PRIORITY
17
+ int "Init priority"
18
+ default 70
19
+ help
20
+ PCAL9722 Device driver initialization priority.
21
+
22
+ endif # GPIO_PCAL9722
You can’t perform that action at this time.
0 commit comments