Kconfig 634 B

123456789101112131415161718192021222324252627282930313233343536
  1. if ARCH_KEYSTONE
  2. choice
  3. prompt "TI Keystone board select"
  4. optional
  5. config TARGET_K2HK_EVM
  6. bool "TI Keystone 2 Kepler/Hawking EVM"
  7. select SPL_BOARD_INIT if SPL
  8. imply DM_I2C
  9. config TARGET_K2E_EVM
  10. bool "TI Keystone 2 Edison EVM"
  11. select SPL_BOARD_INIT if SPL
  12. imply DM_I2C
  13. config TARGET_K2L_EVM
  14. bool "TI Keystone 2 Lamar EVM"
  15. select SPL_BOARD_INIT if SPL
  16. imply DM_I2C
  17. config TARGET_K2G_EVM
  18. bool "TI Keystone 2 Galileo EVM"
  19. select BOARD_LATE_INIT
  20. select SPL_BOARD_INIT if SPL
  21. select TI_I2C_BOARD_DETECT
  22. imply DM_I2C
  23. endchoice
  24. config SYS_SOC
  25. default "keystone"
  26. source "board/ti/ks2_evm/Kconfig"
  27. endif