Kconfig 762 B

123456789101112131415161718192021222324252627282930313233343536
  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_U300
  24. bool "U300 pinmux driver"
  25. depends on ARCH_U300
  26. select PINMUX
  27. help
  28. Say Y here to enable the U300 pinmux driver
  29. endif