hc
2024-11-01 2f529f9b558ca1c1bd74be7437a84e4711743404
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
menu "Real-time GPIO drivers"
 
config XENO_DRIVERS_GPIO
       bool "GPIO controller"
       depends on GPIOLIB
       help
 
       Real-time capable GPIO module.
 
if XENO_DRIVERS_GPIO
 
config XENO_DRIVERS_GPIO_BCM2835
   depends on MACH_BCM2708 || ARCH_BCM2835
   tristate "Support for BCM2835 GPIOs"
   help
 
   Enables support for the GPIO controller available from
   Broadcom's BCM2835 SoC.
 
config XENO_DRIVERS_GPIO_MXC
   depends on GPIO_MXC
   tristate "Support for MXC GPIOs"
   help
 
   Suitable for the GPIO controller available from
   Freescale/NXP's MXC architecture.
 
config XENO_DRIVERS_GPIO_SUN8I_H3
   depends on MACH_SUN8I && PINCTRL_SUN8I_H3
   tristate "Support for SUN8I H3 GPIOs"
   help
 
   Suitable for the GPIO controller available from Allwinner's H3
   SoC, as found on the NanoPI boards.
 
config XENO_DRIVERS_GPIO_ZYNQ7000
   depends on ARCH_ZYNQ || ARCH_ZYNQMP
   tristate "Support for Zynq7000 GPIOs"
   help
 
   Enables support for the GPIO controller available from
   Xilinx's Zynq7000 SoC.
 
config XENO_DRIVERS_GPIO_XILINX
   depends on ARCH_ZYNQ || ARCH_ZYNQMP
   tristate "Support for Xilinx GPIOs"
   help
 
   Enables support for the GPIO controller available from
   Xilinx's softcore IP.
 
config XENO_DRIVERS_GPIO_OMAP
   depends on ARCH_OMAP2PLUS || ARCH_OMAP
   tristate "Support for OMAP GPIOs"
   help
 
   Enables support for the GPIO controller available from
   OMAP family SOC.
 
config XENO_DRIVERS_GPIO_CHERRYVIEW
   depends on PINCTRL_CHERRYVIEW
   tristate "Support for Cherryview GPIOs"
   help
 
   Enables support for the Intel Cherryview GPIO controller
 
config XENO_DRIVERS_GPIO_DEBUG
       bool "Enable GPIO core debugging features"
 
endif
 
endmenu