2015-10-06 06:25:30 +08:00
|
|
|
# Kconfig - GPIO configuration options
|
|
|
|
|
|
|
|
#
|
|
|
|
# Copyright (c) 2015 Intel Corporation
|
|
|
|
#
|
2015-10-07 00:00:37 +08:00
|
|
|
# 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
|
2015-10-06 06:25:30 +08:00
|
|
|
#
|
2015-10-07 00:00:37 +08:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2015-10-06 06:25:30 +08:00
|
|
|
#
|
2015-10-07 00:00:37 +08:00
|
|
|
# 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.
|
2015-10-06 06:25:30 +08:00
|
|
|
#
|
|
|
|
|
2015-07-21 23:12:17 +08:00
|
|
|
menuconfig GPIO
|
2016-05-25 07:17:13 +08:00
|
|
|
bool
|
2015-07-21 23:12:17 +08:00
|
|
|
prompt "GPIO Drivers"
|
2016-05-25 07:17:13 +08:00
|
|
|
default n
|
|
|
|
help
|
|
|
|
Include GPIO drivers in system config
|
2015-07-21 23:12:17 +08:00
|
|
|
|
2015-09-21 02:11:48 +08:00
|
|
|
if GPIO
|
2015-11-11 18:43:15 +08:00
|
|
|
|
|
|
|
config GPIO_DEBUG
|
2016-03-23 19:01:06 +08:00
|
|
|
bool "Debug output for GPIO drivers"
|
2015-11-11 18:43:15 +08:00
|
|
|
default n
|
|
|
|
help
|
|
|
|
Enable the debug output for GPIO drivers
|
|
|
|
|
2016-03-18 01:52:14 +08:00
|
|
|
source "drivers/gpio/Kconfig.dw"
|
2015-09-19 07:53:26 +08:00
|
|
|
|
2016-03-18 01:52:14 +08:00
|
|
|
source "drivers/gpio/Kconfig.pcal9535a"
|
2015-09-30 02:22:23 +08:00
|
|
|
|
2016-03-18 01:52:14 +08:00
|
|
|
source "drivers/gpio/Kconfig.mmio"
|
2015-09-30 02:22:23 +08:00
|
|
|
|
2016-03-18 01:52:14 +08:00
|
|
|
source "drivers/gpio/Kconfig.qmsi"
|
2015-09-30 02:22:23 +08:00
|
|
|
|
2016-04-19 09:17:22 +08:00
|
|
|
source "drivers/gpio/Kconfig.qmsi_ss"
|
|
|
|
|
2016-03-18 01:52:14 +08:00
|
|
|
source "drivers/gpio/Kconfig.sch"
|
2015-09-30 02:22:23 +08:00
|
|
|
|
2016-03-18 01:52:14 +08:00
|
|
|
source "drivers/gpio/Kconfig.k64"
|
2015-12-12 02:23:10 +08:00
|
|
|
|
2016-01-30 05:51:57 +08:00
|
|
|
source "drivers/gpio/Kconfig.atmel_sam3"
|
|
|
|
|
2016-03-03 22:33:26 +08:00
|
|
|
source "drivers/gpio/Kconfig.stm32"
|
|
|
|
|
2016-05-18 22:49:04 +08:00
|
|
|
source "drivers/gpio/Kconfig.nrf5"
|
|
|
|
|
2015-09-21 02:11:48 +08:00
|
|
|
endif # GPIO
|