mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 16:07:30 +00:00
4b62ba8fa2
Move the individual keystone 2 SoC symbols to the mach Kconfig file, select them as needed. Signed-off-by: Tom Rini <trini@konsulko.com>
64 lines
1,016 B
Text
64 lines
1,016 B
Text
if ARCH_KEYSTONE
|
|
|
|
choice
|
|
prompt "TI Keystone board select"
|
|
optional
|
|
|
|
config TARGET_K2HK_EVM
|
|
bool "TI Keystone 2 Kepler/Hawking EVM"
|
|
select SOC_K2HK
|
|
select SPL_BOARD_INIT if SPL
|
|
select CMD_DDR3
|
|
imply DM_I2C
|
|
imply SOC_TI
|
|
imply TI_KEYSTONE_SERDES
|
|
|
|
config TARGET_K2E_EVM
|
|
bool "TI Keystone 2 Edison EVM"
|
|
select SOC_K2E
|
|
select SPL_BOARD_INIT if SPL
|
|
select CMD_DDR3
|
|
imply DM_I2C
|
|
imply SOC_TI
|
|
imply TI_KEYSTONE_SERDES
|
|
|
|
config TARGET_K2L_EVM
|
|
bool "TI Keystone 2 Lamar EVM"
|
|
select SOC_K2L
|
|
select SPL_BOARD_INIT if SPL
|
|
select CMD_DDR3
|
|
imply DM_I2C
|
|
imply SOC_TI
|
|
imply TI_KEYSTONE_SERDES
|
|
|
|
config TARGET_K2G_EVM
|
|
bool "TI Keystone 2 Galileo EVM"
|
|
select BOARD_LATE_INIT
|
|
select SOC_K2G
|
|
select SPL_BOARD_INIT if SPL
|
|
select TI_I2C_BOARD_DETECT
|
|
select CMD_DDR3
|
|
imply DM_I2C
|
|
imply SOC_TI
|
|
imply TI_KEYSTONE_SERDES
|
|
|
|
endchoice
|
|
|
|
config SOC_K2E
|
|
bool
|
|
|
|
config SOC_K2G
|
|
bool
|
|
|
|
config SOC_K2HK
|
|
bool
|
|
|
|
config SOC_K2L
|
|
bool
|
|
|
|
config SYS_SOC
|
|
default "keystone"
|
|
|
|
source "board/ti/ks2_evm/Kconfig"
|
|
|
|
endif
|