Kconfig 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  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_IMX53
  26. bool "IMX53 pinctrl driver"
  27. depends on OF
  28. depends on SOC_IMX53
  29. select PINCTRL_IMX
  30. help
  31. Say Y here to enable the imx53 pinctrl driver
  32. config PINCTRL_IMX6Q
  33. bool "IMX6Q pinctrl driver"
  34. depends on OF
  35. depends on SOC_IMX6Q
  36. select PINCTRL_IMX
  37. help
  38. Say Y here to enable the imx6q pinctrl driver
  39. config PINCTRL_PXA3xx
  40. bool
  41. select PINMUX
  42. config PINCTRL_MMP2
  43. bool "MMP2 pin controller driver"
  44. depends on ARCH_MMP
  45. select PINCTRL_PXA3xx
  46. select PINCONF
  47. config PINCTRL_MXS
  48. bool
  49. config PINCTRL_IMX23
  50. bool
  51. select PINMUX
  52. select PINCONF
  53. select PINCTRL_MXS
  54. config PINCTRL_IMX28
  55. bool
  56. select PINMUX
  57. select PINCONF
  58. select PINCTRL_MXS
  59. config PINCTRL_PXA168
  60. bool "PXA168 pin controller driver"
  61. depends on ARCH_MMP
  62. select PINCTRL_PXA3xx
  63. select PINCONF
  64. config PINCTRL_PXA910
  65. bool "PXA910 pin controller driver"
  66. depends on ARCH_MMP
  67. select PINCTRL_PXA3xx
  68. select PINCONF
  69. config PINCTRL_SIRF
  70. bool "CSR SiRFprimaII pin controller driver"
  71. depends on ARCH_PRIMA2
  72. select PINMUX
  73. config PINCTRL_TEGRA
  74. bool
  75. config PINCTRL_TEGRA20
  76. bool
  77. select PINMUX
  78. select PINCONF
  79. select PINCTRL_TEGRA
  80. config PINCTRL_TEGRA30
  81. bool
  82. select PINMUX
  83. select PINCONF
  84. select PINCTRL_TEGRA
  85. config PINCTRL_U300
  86. bool "U300 pin controller driver"
  87. depends on ARCH_U300
  88. select PINMUX
  89. select GENERIC_PINCONF
  90. config PINCTRL_COH901
  91. bool "ST-Ericsson U300 COH 901 335/571 GPIO"
  92. depends on GPIOLIB && ARCH_U300 && PINMUX_U300
  93. help
  94. Say yes here to support GPIO interface on ST-Ericsson U300.
  95. The names of the two IP block variants supported are
  96. COH 901 335 and COH 901 571/3. They contain 3, 5 or 7
  97. ports of 8 GPIO pins each.
  98. endmenu
  99. endif