1# Copyright (c) 2023 Martin Kiepfer
2# SPDX-License-Identifier: Apache-2.0
3
4config GPIO_AXP192
5	bool "AXP192 GPIO driver"
6	default y
7	depends on DT_HAS_X_POWERS_AXP192_GPIO_ENABLED
8	depends on DT_HAS_X_POWERS_AXP192_ENABLED
9	select I2C
10	select MFD
11	help
12	  Enable the AXP192 GPIO driver.
13
14config GPIO_AXP192_INIT_PRIORITY
15	int "AXP192 GPIO driver initialization priority"
16	depends on GPIO_AXP192
17	default 80
18	help
19	  Initialization priority for the AXP192 GPIO driver. It must be
20	  greater than the I2C controller init priority and the mfd driver
21	  init priority.
22