Kconfig 589 B

1234567891011121314151617181920212223242526
  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. config GPIO_SH_PFC
  19. tristate "SuperH PFC GPIO support"
  20. depends on SH_PFC && GPIOLIB
  21. help
  22. This enables support for GPIOs within the SoC's pin function
  23. controller.