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