zephyr/drivers/pinmux/Kconfig
Kumar Gala b1602c8e39 arm: Removed support for CC2650
The SoC, driver, and board support for the CC2650 and CC2650 Sensortag
aren't currently supported and we are removing them as such.  If anyone
is interesting in supporting this platform we can easily recovery it
from git.

Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
2020-01-18 09:27:55 -06:00

58 lines
1.3 KiB
Plaintext

# Pinmux configuration options
# Copyright (c) 2015 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
#
# PinMux options
#
menuconfig PINMUX
bool "Enable board pinmux driver"
if PINMUX
config PINMUX_NAME
string "Pinmux driver name"
default "PINMUX"
help
The name of the pinmux driver.
config PINMUX_INIT_PRIORITY
int "Init priority"
default 45
help
Pinmux driver initialization priority.
Pinmux driver almost certainly should be initialized before the
rest of hardware devices (which may need specific pins already
configured for them), and usually after generic GPIO drivers.
Thus, its priority should be between KERNEL_INIT_PRIORITY_DEFAULT
and KERNEL_INIT_PRIORITY_DEVICE. There are exceptions to this
rule for particular boards. Don't change this value unless you
know what you are doing.
source "drivers/pinmux/Kconfig.mcux"
source "drivers/pinmux/Kconfig.mcux_lpc"
source "drivers/pinmux/Kconfig.stm32"
source "drivers/pinmux/Kconfig.beetle"
source "drivers/pinmux/Kconfig.sifive"
source "drivers/pinmux/Kconfig.cc13xx_cc26xx"
source "drivers/pinmux/Kconfig.esp32"
source "drivers/pinmux/Kconfig.sam0"
source "drivers/pinmux/Kconfig.intel_s1000"
source "drivers/pinmux/Kconfig.rv32m1"
source "drivers/pinmux/Kconfig.xec"
source "drivers/pinmux/Kconfig.hsdk"
endif # PINMUX