Kconfig 919 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. #
  2. # PINCTRL infrastructure and drivers
  3. #
  4. menuconfig PINCTRL
  5. bool "PINCTRL Support"
  6. depends on EXPERIMENTAL
  7. help
  8. This enables the PINCTRL subsystem for controlling pins
  9. on chip packages, for example multiplexing pins on primarily
  10. PGA and BGA packages for systems on chip.
  11. If unsure, say N.
  12. if PINCTRL
  13. config PINMUX
  14. bool "Support pinmux controllers"
  15. help
  16. Say Y here if you want the pincontrol subsystem to handle pin
  17. multiplexing drivers.
  18. config DEBUG_PINCTRL
  19. bool "Debug PINCTRL calls"
  20. depends on DEBUG_KERNEL
  21. help
  22. Say Y here to add some extra checks and diagnostics to PINCTRL calls.
  23. config PINMUX_SIRF
  24. bool "CSR SiRFprimaII pinmux driver"
  25. depends on ARCH_PRIMA2
  26. select PINMUX
  27. help
  28. Say Y here to enable the SiRFprimaII pinmux driver
  29. config PINMUX_U300
  30. bool "U300 pinmux driver"
  31. depends on ARCH_U300
  32. select PINMUX
  33. help
  34. Say Y here to enable the U300 pinmux driver
  35. endif