zephyr/drivers/gpio/Kconfig.atmel_sam3
Daniel Leung 1904ecc0b5 gpio: restructure Kconfig options
() Moves config options for each controllers into their own
   Kconfig files. This keeps drivers/gpio/Kconfig from getting
   too big.
() Options for each controller are moved under their own
   submenus.
() Re-named the device names to standard as "GPIO_0", "GPIO_1",
   etc.
() Adds the missing copyright to Kconfig.atmel_sam3.

Origin: refactored from existing file
Change-Id: I7c531b0109ca5a6840d3abd9daa6bc784f15233d
Signed-off-by: Daniel Leung <daniel.leung@intel.com>
2016-03-17 21:05:12 +00:00

116 lines
2.8 KiB
Plaintext

# Kconfig.atmel_sam3 - Atmel SAM3 GPIO 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.
#
menuconfig GPIO_ATMEL_SAM3
bool "Atmel SAM3 PIO Controllers"
depends on GPIO && SOC_ATMEL_SAM3
default n
help
Enable config options to support the PIO controllers
on Atmel SAM3 family processors.
Says n if not sure.
if GPIO_ATMEL_SAM3
config GPIO_ATMEL_SAM3_PORTA
bool "Enable driver for Atmel SAM3 PIO Port A"
depends on GPIO_ATMEL_SAM3
default n
help
Build the driver to utilize PIO controller Port A.
config GPIO_ATMEL_SAM3_PORTA_DEV_NAME
string "Device name for Port A"
depends on GPIO_ATMEL_SAM3_PORTA
default "PIOA"
help
Device name for Port A.
config GPIO_ATMEL_SAM3_PORTA_IRQ_PRI
int "Interrupt Priority for Port A"
depends on GPIO_ATMEL_SAM3_PORTA
default 3
help
Interrupt priority for Port A.
config GPIO_ATMEL_SAM3_PORTB
bool "Enable driver for Atmel SAM3 PIO Port B"
depends on GPIO_ATMEL_SAM3
default n
help
Build the driver to utilize PIO controller Port B.
config GPIO_ATMEL_SAM3_PORTB_DEV_NAME
string "Device name for Port B"
depends on GPIO_ATMEL_SAM3_PORTB
default "PIOB"
help
Device name for Port B.
config GPIO_ATMEL_SAM3_PORTB_IRQ_PRI
int "Interrupt Priority for Port B"
depends on GPIO_ATMEL_SAM3_PORTB
default 3
help
Interrupt priority for Port B.
config GPIO_ATMEL_SAM3_PORTC
bool "Enable driver for Atmel SAM3 PIO Port C"
depends on GPIO_ATMEL_SAM3
default n
help
Build the driver to utilize PIO controller Port C.
config GPIO_ATMEL_SAM3_PORTC_DEV_NAME
string "Device name for Port C"
depends on GPIO_ATMEL_SAM3_PORTC
default "PIOC"
help
Device name for Port C.
config GPIO_ATMEL_SAM3_PORTC_IRQ_PRI
int "Interrupt Priority for Port C"
depends on GPIO_ATMEL_SAM3_PORTC
default 3
help
Interrupt priority for Port C.
config GPIO_ATMEL_SAM3_PORTD
bool "Enable driver for Atmel SAM3 PIO Port D"
depends on GPIO_ATMEL_SAM3
default n
help
Build the driver to utilize PIO controller Port D.
config GPIO_ATMEL_SAM3_PORTD_DEV_NAME
string "Device name for Port D"
depends on GPIO_ATMEL_SAM3_PORTD
default "PIOD"
help
Device name for Port D.
config GPIO_ATMEL_SAM3_PORTD_IRQ_PRI
int "Interrupt Priority for Port D"
depends on GPIO_ATMEL_SAM3_PORTD
default 3
help
Interrupt priority for Port D.
endif # GPIO_ATMEL_SAM3