Kconfig 2.0 KB

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