Kconfig 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. #
  2. # PINCTRL infrastructure and drivers
  3. #
  4. config PINCTRL
  5. bool
  6. if PINCTRL
  7. menu "Pin controllers"
  8. depends on PINCTRL
  9. config PINMUX
  10. bool "Support pin multiplexing controllers"
  11. config PINCONF
  12. bool "Support pin configuration controllers"
  13. config GENERIC_PINCONF
  14. bool
  15. select PINCONF
  16. config DEBUG_PINCTRL
  17. bool "Debug PINCTRL calls"
  18. depends on DEBUG_KERNEL
  19. help
  20. Say Y here to add some extra checks and diagnostics to PINCTRL calls.
  21. config PINCTRL_IMX
  22. bool
  23. select PINMUX
  24. select PINCONF
  25. config PINCTRL_IMX51
  26. bool "IMX51 pinctrl driver"
  27. depends on OF
  28. depends on SOC_IMX51
  29. select PINCTRL_IMX
  30. help
  31. Say Y here to enable the imx51 pinctrl driver
  32. config PINCTRL_IMX53
  33. bool "IMX53 pinctrl driver"
  34. depends on OF
  35. depends on SOC_IMX53
  36. select PINCTRL_IMX
  37. help
  38. Say Y here to enable the imx53 pinctrl driver
  39. config PINCTRL_IMX6Q
  40. bool "IMX6Q pinctrl driver"
  41. depends on OF
  42. depends on SOC_IMX6Q
  43. select PINCTRL_IMX
  44. help
  45. Say Y here to enable the imx6q pinctrl driver
  46. config PINCTRL_PXA3xx
  47. bool
  48. select PINMUX
  49. config PINCTRL_MMP2
  50. bool "MMP2 pin controller driver"
  51. depends on ARCH_MMP
  52. select PINCTRL_PXA3xx
  53. select PINCONF
  54. config PINCTRL_MXS
  55. bool
  56. config PINCTRL_IMX23
  57. bool
  58. select PINMUX
  59. select PINCONF
  60. select PINCTRL_MXS
  61. config PINCTRL_IMX28
  62. bool
  63. select PINMUX
  64. select PINCONF
  65. select PINCTRL_MXS
  66. config PINCTRL_NOMADIK
  67. bool "Nomadik pin controller driver"
  68. depends on ARCH_U8500 || ARCH_NOMADIK
  69. select PINMUX
  70. select PINCONF
  71. config PINCTRL_STN8815
  72. bool "STN8815 pin controller driver"
  73. depends on PINCTRL_NOMADIK && ARCH_NOMADIK
  74. config PINCTRL_DB8500
  75. bool "DB8500 pin controller driver"
  76. depends on PINCTRL_NOMADIK && ARCH_U8500
  77. config PINCTRL_DB8540
  78. bool "DB8540 pin controller driver"
  79. depends on PINCTRL_NOMADIK && ARCH_U8500
  80. config PINCTRL_PXA168
  81. bool "PXA168 pin controller driver"
  82. depends on ARCH_MMP
  83. select PINCTRL_PXA3xx
  84. select PINCONF
  85. config PINCTRL_PXA910
  86. bool "PXA910 pin controller driver"
  87. depends on ARCH_MMP
  88. select PINCTRL_PXA3xx
  89. select PINCONF
  90. config PINCTRL_SINGLE
  91. tristate "One-register-per-pin type device tree based pinctrl driver"
  92. depends on OF
  93. select PINMUX
  94. select PINCONF
  95. help
  96. This selects the device tree based generic pinctrl driver.
  97. config PINCTRL_SIRF
  98. bool "CSR SiRFprimaII pin controller driver"
  99. depends on ARCH_PRIMA2
  100. select PINMUX
  101. config PINCTRL_TEGRA
  102. bool
  103. config PINCTRL_TEGRA20
  104. bool
  105. select PINMUX
  106. select PINCONF
  107. select PINCTRL_TEGRA
  108. config PINCTRL_TEGRA30
  109. bool
  110. select PINMUX
  111. select PINCONF
  112. select PINCTRL_TEGRA
  113. config PINCTRL_U300
  114. bool "U300 pin controller driver"
  115. depends on ARCH_U300
  116. select PINMUX
  117. select GENERIC_PINCONF
  118. config PINCTRL_COH901
  119. bool "ST-Ericsson U300 COH 901 335/571 GPIO"
  120. depends on GPIOLIB && ARCH_U300 && PINCTRL_U300
  121. help
  122. Say yes here to support GPIO interface on ST-Ericsson U300.
  123. The names of the two IP block variants supported are
  124. COH 901 335 and COH 901 571/3. They contain 3, 5 or 7
  125. ports of 8 GPIO pins each.
  126. source "drivers/pinctrl/spear/Kconfig"
  127. endmenu
  128. endif