80 lines
2.3 KiB
Plaintext
80 lines
2.3 KiB
Plaintext
# Kconfig - Pinmux Dev configuration options
|
|
|
|
#
|
|
# Copyright (c) 2016 Intel Corporation
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
|
|
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
|
|
|
|
source "drivers/pinmux/dev/Kconfig.ksdk"
|