Blame view

kernel/linux-rt-4.4.41/drivers/pinctrl/qcom/Kconfig 3.06 KB
5113f6f70   김현기   kernel add
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
  if (ARCH_QCOM || COMPILE_TEST)
  
  config PINCTRL_MSM
  	bool
  	select PINMUX
  	select PINCONF
  	select GENERIC_PINCONF
  	select GPIOLIB_IRQCHIP
  
  config PINCTRL_APQ8064
  	tristate "Qualcomm APQ8064 pin controller driver"
  	depends on GPIOLIB && OF
  	select PINCTRL_MSM
  	help
  	  This is the pinctrl, pinmux, pinconf and gpiolib driver for the
  	  Qualcomm TLMM block found in the Qualcomm APQ8064 platform.
  
  config PINCTRL_APQ8084
  	tristate "Qualcomm APQ8084 pin controller driver"
  	depends on GPIOLIB && OF
  	select PINCTRL_MSM
  	help
  	  This is the pinctrl, pinmux, pinconf and gpiolib driver for the
  	  Qualcomm TLMM block found in the Qualcomm APQ8084 platform.
  
  config PINCTRL_IPQ8064
  	tristate "Qualcomm IPQ8064 pin controller driver"
  	depends on GPIOLIB && OF
  	select PINCTRL_MSM
  	help
  	  This is the pinctrl, pinmux, pinconf and gpiolib driver for the
  	  Qualcomm TLMM block found in the Qualcomm IPQ8064 platform.
  
  config PINCTRL_MSM8660
  	tristate "Qualcomm 8660 pin controller driver"
  	depends on GPIOLIB && OF
  	select PINCTRL_MSM
  	help
  	  This is the pinctrl, pinmux, pinconf and gpiolib driver for the
  	  Qualcomm TLMM block found in the Qualcomm 8660 platform.
  
  config PINCTRL_MSM8960
  	tristate "Qualcomm 8960 pin controller driver"
  	depends on GPIOLIB && OF
  	select PINCTRL_MSM
  	help
  	  This is the pinctrl, pinmux, pinconf and gpiolib driver for the
  	  Qualcomm TLMM block found in the Qualcomm 8960 platform.
  
  config PINCTRL_MSM8X74
  	tristate "Qualcomm 8x74 pin controller driver"
  	depends on GPIOLIB && OF
  	select PINCTRL_MSM
  	help
  	  This is the pinctrl, pinmux, pinconf and gpiolib driver for the
  	  Qualcomm TLMM block found in the Qualcomm 8974 platform.
  
  config PINCTRL_MSM8916
  	tristate "Qualcomm 8916 pin controller driver"
  	depends on GPIOLIB && OF
  	select PINCTRL_MSM
  	help
  	  This is the pinctrl, pinmux, pinconf and gpiolib driver for the
  	  Qualcomm TLMM block found on the Qualcomm 8916 platform.
  
  config PINCTRL_QDF2XXX
  	tristate "Qualcomm Technologies QDF2xxx pin controller driver"
  	depends on GPIOLIB && ACPI
  	select PINCTRL_MSM
  	help
  	  This is the GPIO driver for the TLMM block found on the
  	  Qualcomm Technologies QDF2xxx SOCs.
  
  config PINCTRL_QCOM_SPMI_PMIC
         tristate "Qualcomm SPMI PMIC pin controller driver"
         depends on GPIOLIB && OF && SPMI
         select REGMAP_SPMI
         select PINMUX
         select PINCONF
         select GENERIC_PINCONF
         help
           This is the pinctrl, pinmux, pinconf and gpiolib driver for the
           Qualcomm GPIO and MPP blocks found in the Qualcomm PMIC's chips,
           which are using SPMI for communication with SoC. Example PMIC's
           devices are pm8841, pm8941 and pma8084.
  
  config PINCTRL_QCOM_SSBI_PMIC
         tristate "Qualcomm SSBI PMIC pin controller driver"
         depends on GPIOLIB && OF
         select PINMUX
         select PINCONF
         select GENERIC_PINCONF
         help
           This is the pinctrl, pinmux, pinconf and gpiolib driver for the
           Qualcomm GPIO and MPP blocks found in the Qualcomm PMIC's chips,
           which are using SSBI for communication with SoC. Example PMIC's
           devices are pm8058 and pm8921.
  
  endif