Kconfig 933 B

12345678910111213141516171819202122232425262728293031323334
  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_STM32F469
  15. bool "STMicroelectronics STM32F469 pin control" if COMPILE_TEST && !MACH_STM32F469
  16. depends on OF && IRQ_DOMAIN_HIERARCHY
  17. default MACH_STM32F469
  18. select PINCTRL_STM32
  19. config PINCTRL_STM32F746
  20. bool "STMicroelectronics STM32F746 pin control" if COMPILE_TEST && !MACH_STM32F746
  21. depends on OF && IRQ_DOMAIN_HIERARCHY
  22. default MACH_STM32F746
  23. select PINCTRL_STM32
  24. config PINCTRL_STM32H743
  25. bool "STMicroelectronics STM32H743 pin control" if COMPILE_TEST && !MACH_STM32H743
  26. depends on OF && IRQ_DOMAIN_HIERARCHY
  27. default MACH_STM32H743
  28. select PINCTRL_STM32
  29. endif