Kconfig 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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_PXA3xx
  26. bool
  27. select PINMUX
  28. config PINCTRL_MMP2
  29. bool "MMP2 pin controller driver"
  30. depends on ARCH_MMP
  31. select PINCTRL_PXA3xx
  32. select PINCONF
  33. config PINCTRL_PXA168
  34. bool "PXA168 pin controller driver"
  35. depends on ARCH_MMP
  36. select PINCTRL_PXA3xx
  37. select PINCONF
  38. config PINCTRL_PXA910
  39. bool "PXA910 pin controller driver"
  40. depends on ARCH_MMP
  41. select PINCTRL_PXA3xx
  42. select PINCONF
  43. config PINCTRL_SIRF
  44. bool "CSR SiRFprimaII pin controller driver"
  45. depends on ARCH_PRIMA2
  46. select PINMUX
  47. config PINCTRL_TEGRA
  48. bool
  49. config PINCTRL_TEGRA20
  50. bool
  51. select PINMUX
  52. select PINCONF
  53. select PINCTRL_TEGRA
  54. config PINCTRL_TEGRA30
  55. bool
  56. select PINMUX
  57. select PINCONF
  58. select PINCTRL_TEGRA
  59. config PINCTRL_U300
  60. bool "U300 pin controller driver"
  61. depends on ARCH_U300
  62. select PINMUX
  63. select GENERIC_PINCONF
  64. config PINCTRL_COH901
  65. bool "ST-Ericsson U300 COH 901 335/571 GPIO"
  66. depends on GPIOLIB && ARCH_U300 && PINMUX_U300
  67. help
  68. Say yes here to support GPIO interface on ST-Ericsson U300.
  69. The names of the two IP block variants supported are
  70. COH 901 335 and COH 901 571/3. They contain 3, 5 or 7
  71. ports of 8 GPIO pins each.
  72. endmenu
  73. endif