Kconfig 523 B

123456789101112131415161718192021222324252627282930313233
  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. bool
  10. choice
  11. prompt "MX7ULP board select"
  12. optional
  13. config TARGET_MX7ULP_COM
  14. bool "Support MX7ULP COM board"
  15. select MX7ULP
  16. select SYS_ARCH_TIMER
  17. config TARGET_MX7ULP_EVK
  18. bool "Support mx7ulp EVK board"
  19. select MX7ULP
  20. select SYS_ARCH_TIMER
  21. endchoice
  22. source "board/ea/mx7ulp_com/Kconfig"
  23. source "board/freescale/mx7ulp_evk/Kconfig"
  24. endif