Kconfig 2.3 KB

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