1# SPDX-License-Identifier: GPL-2.0-only 2menu "Pinctrl Drivers" 3 depends on AW_BSP 4 5config AW_PINCTRL 6 tristate "Pinctrl Support for Allwinner SoCs" 7 depends on AW_BSP 8 select PINMUX 9 select GENERIC_PINCONF 10 select GPIOLIB 11 default y 12 13config AW_PINCTRL_DEBUGFS 14 tristate "Pinctrl Debugfs Driver" 15 depends on AW_PINCTRL && DEBUG_FS 16 default n 17 18config AW_PINCTRL_SUN8IW15P1 19 tristate "SUN8IW15P1 PIO" 20 depends on AW_PINCTRL 21 default ARCH_SUN8IW15 22 23config AW_PINCTRL_SUN8IW15P1_R 24 tristate "SUN8IW15P1 R_PIO" 25 depends on AW_PINCTRL 26 default ARCH_SUN8IW15 27 28config AW_PINCTRL_SUN8IW20 29 tristate "SUN8IW20 PIO" 30 depends on AW_PINCTRL 31 default ARCH_SUN8IW20 || ARCH_SUN20IW1 32 33config AW_PINCTRL_SUN50IW9 34 tristate "SUN50IW9 PIO" 35 depends on AW_PINCTRL 36 default ARCH_SUN50IW9 37 38config AW_PINCTRL_SUN50IW9_R 39 tristate "SUN50IW9 R_PIO" 40 depends on AW_PINCTRL 41 default ARCH_SUN50IW9 42 43config AW_PINCTRL_SUN50IW10P1 44 tristate "SUN50IW10P1 PIO" 45 depends on AW_PINCTRL 46 default ARCH_SUN50IW10 47 48config AW_PINCTRL_SUN50IW10P1_R 49 tristate "SUN50IW10P1 R_PIO" 50 depends on AW_PINCTRL 51 default ARCH_SUN50IW10 52 53config AW_PINCTRL_SUN50IW12 54 tristate "SUN50IW12 PIO" 55 depends on AW_PINCTRL 56 default ARCH_SUN50IW12 57 58config AW_PINCTRL_SUN50IW12_R 59 tristate "SUN50IW12 R_PIO" 60 depends on AW_PINCTRL 61 default ARCH_SUN50IW12 62 63endmenu 64