Kconfig 1.5 KB

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