Kconfig 544 B

123456789101112131415161718192021222324
  1. if ARCH_STM32 || COMPILE_TEST
  2. config PINCTRL_STM32
  3. bool
  4. depends on OF
  5. select PINMUX
  6. select GENERIC_PINCONF
  7. select GPIOLIB
  8. select MFD_SYSCON
  9. config PINCTRL_STM32F429
  10. bool "STMicroelectronics STM32F429 pin control" if COMPILE_TEST && !MACH_STM32F429
  11. depends on OF && IRQ_DOMAIN_HIERARCHY
  12. default MACH_STM32F429
  13. select PINCTRL_STM32
  14. config PINCTRL_STM32F746
  15. bool "STMicroelectronics STM32F746 pin control" if COMPILE_TEST && !MACH_STM32F746
  16. depends on OF && IRQ_DOMAIN_HIERARCHY
  17. default MACH_STM32F746
  18. select PINCTRL_STM32
  19. endif