Kconfig 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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_DB8500
  72. bool "DB8500 pin controller driver"
  73. depends on PINCTRL_NOMADIK && ARCH_U8500
  74. config PINCTRL_PXA168
  75. bool "PXA168 pin controller driver"
  76. depends on ARCH_MMP
  77. select PINCTRL_PXA3xx
  78. select PINCONF
  79. config PINCTRL_PXA910
  80. bool "PXA910 pin controller driver"
  81. depends on ARCH_MMP
  82. select PINCTRL_PXA3xx
  83. select PINCONF
  84. config PINCTRL_SIRF
  85. bool "CSR SiRFprimaII pin controller driver"
  86. depends on ARCH_PRIMA2
  87. select PINMUX
  88. config PINCTRL_TEGRA
  89. bool
  90. config PINCTRL_TEGRA20
  91. bool
  92. select PINMUX
  93. select PINCONF
  94. select PINCTRL_TEGRA
  95. config PINCTRL_TEGRA30
  96. bool
  97. select PINMUX
  98. select PINCONF
  99. select PINCTRL_TEGRA
  100. config PINCTRL_U300
  101. bool "U300 pin controller driver"
  102. depends on ARCH_U300
  103. select PINMUX
  104. select GENERIC_PINCONF
  105. config PINCTRL_COH901
  106. bool "ST-Ericsson U300 COH 901 335/571 GPIO"
  107. depends on GPIOLIB && ARCH_U300 && PINMUX_U300
  108. help
  109. Say yes here to support GPIO interface on ST-Ericsson U300.
  110. The names of the two IP block variants supported are
  111. COH 901 335 and COH 901 571/3. They contain 3, 5 or 7
  112. ports of 8 GPIO pins each.
  113. source "drivers/pinctrl/spear/Kconfig"
  114. endmenu
  115. endif