Kconfig 589 B

1234567891011121314151617181920212223242526272829
  1. #
  2. # Renesas SH and SH Mobile PINCTRL drivers
  3. #
  4. if ARCH_SHMOBILE || SUPERH
  5. config PINCTRL_SH_PFC
  6. # XXX move off the gpio dependency
  7. depends on GENERIC_GPIO
  8. select GPIO_SH_PFC if ARCH_REQUIRE_GPIOLIB
  9. select PINMUX
  10. select PINCONF
  11. def_bool y
  12. help
  13. This enables pin control drivers for SH and SH Mobile platforms
  14. config GPIO_SH_PFC
  15. bool "SuperH PFC GPIO support"
  16. depends on PINCTRL_SH_PFC && GPIOLIB
  17. help
  18. This enables support for GPIOs within the SoC's pin function
  19. controller.
  20. config PINCTRL_PFC_R8A7740
  21. def_bool y
  22. depends on ARCH_R8A7740
  23. select PINCTRL_SH_PFC
  24. endif