zephyr/drivers/pinmux/dev/Kconfig
David B. Kinder ac74d8b652 license: Replace Apache boilerplate with SPDX tag
Replace the existing Apache 2.0 boilerplate header with an SPDX tag
throughout the zephyr code tree. This patch was generated via a
script run over the master branch.

Also updated doc/porting/application.rst that had a dependency on
line numbers in a literal include.

Manually updated subsys/logging/sys_log.c that had a malformed
header in the original file.  Also cleanup several cases that already
had a SPDX tag and we either got a duplicate or missed updating.

Jira: ZEP-1457

Change-Id: I6131a1d4ee0e58f5b938300c2d2fc77d2e69572c
Signed-off-by: David B. Kinder <david.b.kinder@intel.com>
Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
2017-01-19 03:50:58 +00:00

68 lines
1.7 KiB
Plaintext

# Kconfig - Pinmux Dev configuration options
#
# Copyright (c) 2016 Intel Corporation
#
# SPDX-License-Identifier: Apache-2.0
#
config PINMUX_DEV
bool "Configure pinmux for early board testing"
depends on PINMUX
default n
help
Enables the use of the pinmux_set and pinmux_get functions for early
prototyping on new hardware. WARNING: When using these options, it
is possible to permanently damage the hardware.
config PINMUX_DEV_NAME
string "Configure pinmux for early board testing"
depends on PINMUX_DEV
default "PINMUX_DEV"
help
The name of the pinmux dev driver.
config PINMUX_DEV_ATMEL_SAM3X
bool "Enable pinmux dev driver for Atmel SAM3X boards"
depends on PINMUX_DEV && SOC_ATMEL_SAM3X8E
help
Enables the pinmux dev driver for boards based on the
Atmel SAM3X family of microcontrollers.
default n
config PINMUX_DEV_K64
bool "Enable the pinmux dev driver for Freescale K64"
depends on PINMUX_DEV && SOC_MK64F12
help
Enables the pinmux dev driver for Freescale K64.
default n
config PINMUX_DEV_GALILEO
bool "Enable pinmux dev driver for Galileo"
depends on PINMUX_DEV && BOARD_GALILEO
help
Enables the pinmux dev driver for the Galileo board.
default n
config PINMUX_DEV_QMSI
bool "Enable QMSI pinmux dev driver"
depends on PINMUX_DEV && QMSI
help
Enables the pinmux dev driver for QMSI supported boards.
default n
config PINMUX_DEV_STM32
bool "Enable pinmux dev driver for the ST STM32 family."
depends on PINMUX_DEV && SOC_FAMILY_STM32
help
Enables the STM32 pinmux dev driver.
default n
config PINMUX_DEV_ARM_V2M_BEETLE
bool "Enable pinmux dev driver for ARM V2M Beetle boards"
depends on PINMUX_DEV && SOC_SERIES_BEETLE
help
Enables the pinmux dev driver for boards based on the
ARM Beetle SoC MCUs.
default n