Kconfig 702 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. select CMD_DDR3
  9. imply DM_I2C
  10. config TARGET_K2E_EVM
  11. bool "TI Keystone 2 Edison EVM"
  12. select SPL_BOARD_INIT if SPL
  13. select CMD_DDR3
  14. imply DM_I2C
  15. config TARGET_K2L_EVM
  16. bool "TI Keystone 2 Lamar EVM"
  17. select SPL_BOARD_INIT if SPL
  18. select CMD_DDR3
  19. imply DM_I2C
  20. config TARGET_K2G_EVM
  21. bool "TI Keystone 2 Galileo EVM"
  22. select BOARD_LATE_INIT
  23. select SPL_BOARD_INIT if SPL
  24. select TI_I2C_BOARD_DETECT
  25. select CMD_DDR3
  26. imply DM_I2C
  27. endchoice
  28. config SYS_SOC
  29. default "keystone"
  30. source "board/ti/ks2_evm/Kconfig"
  31. endif