Kconfig 964 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. #
  2. # PINCTRL infrastructure and drivers
  3. #
  4. config PINCTRL
  5. bool
  6. depends on EXPERIMENTAL
  7. if PINCTRL
  8. menu "Pin controllers"
  9. depends on PINCTRL
  10. config PINMUX
  11. bool "Support pin multiplexing controllers"
  12. config PINCONF
  13. bool "Support pin configuration controllers"
  14. config DEBUG_PINCTRL
  15. bool "Debug PINCTRL calls"
  16. depends on DEBUG_KERNEL
  17. help
  18. Say Y here to add some extra checks and diagnostics to PINCTRL calls.
  19. config PINCTRL_SIRF
  20. bool "CSR SiRFprimaII pin controller driver"
  21. depends on ARCH_PRIMA2
  22. select PINMUX
  23. config PINCTRL_U300
  24. bool "U300 pin controller driver"
  25. depends on ARCH_U300
  26. select PINMUX
  27. config PINCTRL_COH901
  28. bool "ST-Ericsson U300 COH 901 335/571 GPIO"
  29. depends on GPIOLIB && ARCH_U300 && PINMUX_U300
  30. help
  31. Say yes here to support GPIO interface on ST-Ericsson U300.
  32. The names of the two IP block variants supported are
  33. COH 901 335 and COH 901 571/3. They contain 3, 5 or 7
  34. ports of 8 GPIO pins each.
  35. endmenu
  36. endif