Kconfig 707 B

1234567891011121314151617181920212223242526272829303132333435
  1. if STM32
  2. config STM32F4
  3. bool "stm32f4 family"
  4. config STM32F1
  5. bool "stm32f1 family"
  6. config STM32F7
  7. bool "stm32f7 family"
  8. select SUPPORT_SPL
  9. select SPL
  10. select SPL_CLK
  11. select SPL_DM
  12. select SPL_DM_SEQ_ALIAS
  13. select SPL_DRIVERS_MISC_SUPPORT
  14. select SPL_GPIO_SUPPORT
  15. select SPL_LIBCOMMON_SUPPORT
  16. select SPL_LIBGENERIC_SUPPORT
  17. select SPL_MTD_SUPPORT
  18. select SPL_OF_CONTROL
  19. select SPL_OF_LIBFDT
  20. select SPL_OF_TRANSLATE
  21. select SPL_OS_BOOT
  22. select SPL_PINCTRL
  23. select SPL_RAM
  24. select SPL_SERIAL_SUPPORT
  25. select SPL_SYS_MALLOC_SIMPLE
  26. select SPL_XIP_SUPPORT
  27. source "arch/arm/mach-stm32/stm32f4/Kconfig"
  28. source "arch/arm/mach-stm32/stm32f1/Kconfig"
  29. source "arch/arm/mach-stm32/stm32f7/Kconfig"
  30. endif