Kconfig 613 B

123456789101112131415161718192021222324252627
  1. comment "Pin function controller options"
  2. config SH_PFC
  3. # XXX move off the gpio dependency
  4. depends on GENERIC_GPIO
  5. select GPIO_SH_PFC if ARCH_REQUIRE_GPIOLIB
  6. select PINCTRL_SH_PFC
  7. def_bool y
  8. #
  9. # Placeholder for now, rehome to drivers/pinctrl once the PFC APIs
  10. # have settled.
  11. #
  12. config PINCTRL_SH_PFC
  13. tristate "SuperH PFC pin controller driver"
  14. depends on SH_PFC
  15. select PINCTRL
  16. select PINMUX
  17. select PINCONF
  18. select GENERIC_PINCONF
  19. config GPIO_SH_PFC
  20. tristate "SuperH PFC GPIO support"
  21. depends on SH_PFC && GPIOLIB
  22. help
  23. This enables support for GPIOs within the SoC's pin function
  24. controller.