zephyr/drivers/gpio/Kconfig.pca95xx
Kumar Gala 957e263120 drivers: gpio: Update drivers to use devicetree Kconfig symbol
Update gpio drivers to use DT_HAS_<compat>_ENABLED Kconfig symbol
to expose the driver and enable it by default based on devicetree.

We remove 'depend on' Kconfig for symbols that would be implied by
the devicetree node existing.

Signed-off-by: Kumar Gala <galak@kernel.org>
2022-07-23 09:26:09 -05:00

28 lines
666 B
Plaintext

# PCA95XX GPIO configuration options
# Copyright (c) 2016 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
menuconfig GPIO_PCA95XX
bool "PCA95XX I2C-based GPIO chip"
default y
depends on DT_HAS_NXP_PCA95XX_ENABLED
depends on I2C
help
Enable driver for PCA95XX I2C-based GPIO chip.
config GPIO_PCA95XX_INIT_PRIORITY
int "Init priority"
default 70
depends on GPIO_PCA95XX
help
Device driver initialization priority.
config GPIO_PCA95XX_INTERRUPT
bool "Interrupt enable"
depends on GPIO_PCA95XX
help
Enable interrupt support in PCA95XX driver.
Note that the PCA95XX cannot reliably detect
short-pulse interrupts due to its design.