]> git.ipfire.org Git - people/ms/u-boot.git/blob - arch/arm/mach-keystone/Kconfig
Convert CONFIG_SPL_BOARD_INIT to Kconfig
[people/ms/u-boot.git] / arch / arm / mach-keystone / Kconfig
1 if ARCH_KEYSTONE
2
3 choice
4 prompt "TI Keystone board select"
5 optional
6
7 config TARGET_K2HK_EVM
8 bool "TI Keystone 2 Kepler/Hawking EVM"
9 select SPL_BOARD_INIT if SPL
10 imply DM_I2C
11
12 config TARGET_K2E_EVM
13 bool "TI Keystone 2 Edison EVM"
14 select SPL_BOARD_INIT if SPL
15 imply DM_I2C
16
17 config TARGET_K2L_EVM
18 bool "TI Keystone 2 Lamar EVM"
19 select SPL_BOARD_INIT if SPL
20 imply DM_I2C
21
22 config 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
29 endchoice
30
31 config SYS_SOC
32 default "keystone"
33
34 source "board/ti/ks2_evm/Kconfig"
35
36 endif