1# ADS114S0x GPIO configuration options
2
3# Copyright (c) 2023 SILA Embedded Solutions GmbH
4# SPDX-License-Identifier: Apache-2.0
5
6menuconfig GPIO_ADS114S0X
7	bool "ADS114S0x GPIO driver"
8	default y
9	depends on DT_HAS_TI_ADS114S0X_GPIO_ENABLED
10	depends on ADC_ADS114S0X_GPIO
11	help
12	  Enable GPIO driver for ADS114S0x.
13
14	  The ADS114S0x is a multi-channel analog frontend (AFE).
15
16	  The GPIO port of the ADS114S0x (GPIO0 to GPIO3) is exposed as a
17	  GPIO controller driver with read/write support.
18
19config GPIO_ADS114S0X_INIT_PRIORITY
20	int "Driver init priority"
21	default 99
22	depends on GPIO_ADS114S0X
23	help
24	  Device driver initialization priority. This driver must be
25	  initialized after the ADS114S0x ADC driver.
26