diff options
| author | Svyatoslav Ryhel <[email protected]> | 2023-07-15 22:25:03 +0300 |
|---|---|---|
| committer | Svyatoslav Ryhel <[email protected]> | 2023-12-19 20:53:53 +0200 |
| commit | 6b24c372c1e59e461e2f00e09dd1f8da29263450 (patch) | |
| tree | dca65430d56c7557b1e636ed52495e46ca116e96 /drivers/gpio/Kconfig | |
| parent | 936d0f9dd713a913fe952eae576c893e1d5ecbd1 (diff) | |
drivers: gpio: implement MAX77663 GPIO cell
MAXIM Semiconductor's PMIC, MAX77663 has 8 GPIO pins and 3 GPIO-like
pins. It also supports interrupts from these pins.
Add GPIO driver for these pins to control via GPIO APIs.
Signed-off-by: Svyatoslav Ryhel <[email protected]>
Diffstat (limited to 'drivers/gpio/Kconfig')
| -rw-r--r-- | drivers/gpio/Kconfig | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig index ba42b0768e1..250f1ebbb31 100644 --- a/drivers/gpio/Kconfig +++ b/drivers/gpio/Kconfig @@ -238,6 +238,15 @@ config MAX7320_GPIO original maxim device has 8 push/pull outputs, some clones offers 16bit. +config MAX77663_GPIO + bool "MAX77663 GPIO cell of PMIC driver" + depends on DM_GPIO && DM_PMIC_MAX77663 + help + GPIO driver for MAX77663 PMIC from Maxim Semiconductor. + MAX77663 PMIC has 8 pins that can be configured as GPIOs + and 3 GPIO-like pins dedicated for power/reset buttons + and LID sensor. + config MCP230XX_GPIO bool "MCP230XX GPIO driver" depends on DM |
