Kconfig 545 B

1234567891011121314151617181920212223242526272829303132333435
  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 pinmux controllers"
  12. config DEBUG_PINCTRL
  13. bool "Debug PINCTRL calls"
  14. depends on DEBUG_KERNEL
  15. help
  16. Say Y here to add some extra checks and diagnostics to PINCTRL calls.
  17. config PINMUX_SIRF
  18. bool "CSR SiRFprimaII pinmux driver"
  19. depends on ARCH_PRIMA2
  20. select PINMUX
  21. config PINMUX_U300
  22. bool "U300 pinmux driver"
  23. depends on ARCH_U300
  24. select PINMUX
  25. endmenu
  26. endif