xref: /openbmc/u-boot/arch/arm/mach-keystone/Kconfig (revision fcf2fba4)
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	imply DM_I2C
10
11config TARGET_K2E_EVM
12	bool "TI Keystone 2 Edison EVM"
13	imply DM_I2C
14
15config TARGET_K2L_EVM
16	bool "TI Keystone 2 Lamar EVM"
17	imply DM_I2C
18
19config TARGET_K2G_EVM
20	bool "TI Keystone 2 Galileo EVM"
21        select BOARD_LATE_INIT
22        select TI_I2C_BOARD_DETECT
23	imply DM_I2C
24
25endchoice
26
27config SYS_SOC
28	default "keystone"
29
30source "board/ti/ks2_evm/Kconfig"
31
32endif
33