1# Intel SoC GPIO configuration options
2
3# Copyright (c) 2018 Intel Corporation
4# SPDX-License-Identifier: Apache-2.0
5
6config GPIO_INTEL
7	bool "Intel Soc GPIO"
8	default y
9	depends on DT_HAS_INTEL_GPIO_ENABLED
10	help
11	  Enable driver for Intel SoC GPIO
12
13config GPIO_INTEL_CHECK_PERMS
14	bool "Check permissions before manipulating GPIO"
15	default y
16	depends on GPIO_INTEL
17	help
18	  This option enables the checks to make sure the GPIO
19	  pin can be manipulated. Only if the pin is owned by
20	  the host software and its functioning as GPIO, then
21	  the driver allows manipulating the pin.
22
23	  Say y if unsure.
24