File tree Expand file tree Collapse file tree 6 files changed +499
-0
lines changed
include/zephyr/drivers/mfd Expand file tree Collapse file tree 6 files changed +499
-0
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ zephyr_library_sources_ifdef(CONFIG_GPIO_IMX gpio_imx.c)
3434zephyr_library_sources_ifdef(CONFIG_GPIO_INFINEON_CAT1 gpio_ifx_cat1.c)
3535zephyr_library_sources_ifdef(CONFIG_GPIO_INTEL gpio_intel.c)
3636zephyr_library_sources_ifdef(CONFIG_GPIO_IPROC gpio_iproc.c)
37+ zephyr_library_sources_ifdef(CONFIG_GPIO_ITE_IT8801 gpio_ite_it8801.c)
3738zephyr_library_sources_ifdef(CONFIG_GPIO_ITE_IT8XXX2 gpio_ite_it8xxx2.c)
3839zephyr_library_sources_ifdef(CONFIG_GPIO_ITE_IT8XXX2_V2 gpio_ite_it8xxx2_v2.c)
3940zephyr_library_sources_ifdef(CONFIG_GPIO_KSCAN_ITE_IT8XXX2 gpio_kscan_ite_it8xxx2.c)
Original file line number Diff line number Diff line change @@ -127,6 +127,7 @@ source "drivers/gpio/Kconfig.ifx_cat1"
127127source "drivers/gpio/Kconfig.imx"
128128source "drivers/gpio/Kconfig.intel"
129129source "drivers/gpio/Kconfig.iproc"
130+ source "drivers/gpio/Kconfig.it8801"
130131source "drivers/gpio/Kconfig.it8xxx2"
131132source "drivers/gpio/Kconfig.litex"
132133source "drivers/gpio/Kconfig.lmp90xxx"
Original file line number Diff line number Diff line change 1+ # Copyright (c) 2024 ITE Corporation. All Rights Reserved.
2+ # SPDX-License-Identifier: Apache-2.0
3+
4+ config GPIO_ITE_IT8801
5+ bool "ITE IT8801 GPIO device driver"
6+ default y
7+ depends on DT_HAS_ITE_IT8801_GPIO_ENABLED
8+ select I2C
9+ select MFD
10+ help
11+ Enable driver for ITE IT8801 I2C-based GPIO.
You can’t perform that action at this time.
0 commit comments