The PCA6416A is a 16-bit general purpose I/O expander that provides remote I/O expansion for most microcontroller families via the I2C-bus interface. Signed-off-by: Jiafei Pan <Jiafei.Pan@nxp.com>
23 lines
427 B
Plaintext
23 lines
427 B
Plaintext
# PCA6416 GPIO configuration options
|
|
|
|
# Copyright 2024 NXP
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menuconfig GPIO_PCA6416
|
|
bool "PCA6416 I2C GPIO chip"
|
|
default y
|
|
depends on DT_HAS_NXP_PCA6416_ENABLED
|
|
select I2C
|
|
help
|
|
Enable driver for PCA6416 I2C GPIO chip.
|
|
|
|
if GPIO_PCA6416
|
|
|
|
config GPIO_PCA6416_INIT_PRIORITY
|
|
int "Init priority"
|
|
default 70
|
|
help
|
|
PCA6416 Device driver initialization priority.
|
|
|
|
endif # GPIO_PCA6416
|