Kconfig 625 B

1234567891011121314151617181920212223242526272829
  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. endif