xref: /openbmc/u-boot/arch/arm/mach-keystone/Kconfig (revision 78a88f79)
1if ARCH_KEYSTONE
2
3choice
4	prompt "TI Keystone board select"
5	optional
6
7config TARGET_K2HK_EVM
8	bool "TI Keystone 2 Kepler/Hawking EVM"
9	select SPL_BOARD_INIT if SPL
10	select CMD_DDR3
11	imply DM_I2C
12
13config TARGET_K2E_EVM
14	bool "TI Keystone 2 Edison EVM"
15	select SPL_BOARD_INIT if SPL
16	select CMD_DDR3
17	imply DM_I2C
18
19config TARGET_K2L_EVM
20	bool "TI Keystone 2 Lamar EVM"
21	select SPL_BOARD_INIT if SPL
22	select CMD_DDR3
23	imply DM_I2C
24
25config TARGET_K2G_EVM
26	bool "TI Keystone 2 Galileo EVM"
27        select BOARD_LATE_INIT
28	select SPL_BOARD_INIT if SPL
29        select TI_I2C_BOARD_DETECT
30	select CMD_DDR3
31	imply DM_I2C
32
33endchoice
34
35config SYS_SOC
36	default "keystone"
37
38source "board/ti/ks2_evm/Kconfig"
39
40endif
41