Kconfig 540 B

12345678910111213141516171819202122232425262728293031323334
  1. if ARCH_MX7ULP
  2. config SYS_SOC
  3. default "mx7ulp"
  4. config LDO_ENABLED_MODE
  5. bool "i.MX7ULP LDO Enabled Mode"
  6. help
  7. Select this option to enable the PMC1 LDO.
  8. config MX7ULP
  9. select HAS_CAAM
  10. bool
  11. choice
  12. prompt "MX7ULP board select"
  13. optional
  14. config TARGET_MX7ULP_COM
  15. bool "Support MX7ULP COM board"
  16. select MX7ULP
  17. select SYS_ARCH_TIMER
  18. config TARGET_MX7ULP_EVK
  19. bool "Support mx7ulp EVK board"
  20. select MX7ULP
  21. select SYS_ARCH_TIMER
  22. endchoice
  23. source "board/ea/mx7ulp_com/Kconfig"
  24. source "board/freescale/mx7ulp_evk/Kconfig"
  25. endif