1# PCA95XX GPIO configuration options 2 3# Copyright (c) 2016 Intel Corporation 4# SPDX-License-Identifier: Apache-2.0 5 6menuconfig GPIO_PCA95XX 7 bool "PCA95XX I2C-based GPIO chip" 8 default y 9 depends on DT_HAS_NXP_PCA95XX_ENABLED 10 depends on I2C 11 help 12 Enable driver for PCA95XX I2C-based GPIO chip. 13 14config GPIO_PCA95XX_INIT_PRIORITY 15 int "Init priority" 16 default 70 17 depends on GPIO_PCA95XX 18 help 19 Device driver initialization priority. 20 21config GPIO_PCA95XX_INTERRUPT 22 bool "Interrupt enable" 23 depends on GPIO_PCA95XX 24 help 25 Enable interrupt support in PCA95XX driver. 26 Note that the PCA95XX cannot reliably detect 27 short-pulse interrupts due to its design. 28