Kconfig 1.6 KB

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