Merge branch '2018-11-16-master-imports'
[oweals/u-boot.git] / board / ti / am65x / Kconfig
1 # SPDX-License-Identifier: GPL-2.0+
2 #
3 # Copyright (C) 2017-2018 Texas Instruments Incorporated - http://www.ti.com/
4 #       Lokesh Vutla <lokeshvutla@ti.com>
5
6 choice
7         prompt "K3 AM65 based boards"
8         optional
9
10 config TARGET_AM654_A53_EVM
11         bool "TI K3 based AM654 EVM running on A53"
12         select ARM64
13         select SOC_K3_AM6
14
15 config TARGET_AM654_R5_EVM
16         bool "TI K3 based AM654 EVM running on R5"
17         select CPU_V7R
18         select SYS_THUMB_BUILD
19         select SOC_K3_AM6
20         select K3_AM654_DDRSS
21         imply SYS_K3_SPL_ATF
22
23 endchoice
24
25 if TARGET_AM654_A53_EVM
26
27 config SYS_BOARD
28        default "am65x"
29
30 config SYS_VENDOR
31        default "ti"
32
33 config SYS_CONFIG_NAME
34        default "am65x_evm"
35
36 endif
37
38 if TARGET_AM654_R5_EVM
39
40 config SYS_BOARD
41        default "am65x"
42
43 config SYS_VENDOR
44        default "ti"
45
46 config SYS_CONFIG_NAME
47        default "am65x_evm"
48
49 config SPL_LDSCRIPT
50         default "arch/arm/mach-omap2/u-boot-spl.lds"
51
52 endif