zephyr/drivers/gpio/Kconfig.nrfx
Kumar Gala 5a8a06661d drivers: gpio: cleanup select HAS_DTS_GPIO
All GPIO controller drivers support DTS so we can select HAS_DTS_GPIO
at the GPIO driver subsystem level rather than for each specific driver.

Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
2020-04-04 09:27:12 -05:00

35 lines
650 B
Plaintext

# Copyright (c) 2018 Nordic Semiconductor ASA
# SPDX-License-Identifier: Apache-2.0
menuconfig GPIO_NRFX
bool "nRF GPIO driver"
default y
depends on SOC_FAMILY_NRF
help
Enable GPIO driver for nRF line of MCUs.
if GPIO_NRFX
config GPIO_NRF_INIT_PRIORITY
int "nRF GPIO initialization priority"
default 40
help
Initialization priority for nRF GPIO.
config GPIO_NRF_P0
bool "nRF GPIO Port P0"
depends on HAS_HW_NRF_GPIO0
default y
help
Enable nRF GPIO port P0 config options.
config GPIO_NRF_P1
bool "nRF GPIO Port P1"
depends on HAS_HW_NRF_GPIO1
default y
help
Enable nRF GPIO port P1 config options.
endif # GPIO_NRFX