Merge branch '2019-05-05-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         select SYS_DISABLE_DCACHE_OPS
15
16 config TARGET_AM654_R5_EVM
17         bool "TI K3 based AM654 EVM running on R5"
18         select CPU_V7R
19         select SYS_THUMB_BUILD
20         select SOC_K3_AM6
21         select K3_AM654_DDRSS
22         imply SYS_K3_SPL_ATF
23
24 endchoice
25
26 if TARGET_AM654_A53_EVM
27
28 config SYS_BOARD
29        default "am65x"
30
31 config SYS_VENDOR
32        default "ti"
33
34 config SYS_CONFIG_NAME
35        default "am65x_evm"
36
37 endif
38
39 if TARGET_AM654_R5_EVM
40
41 config SYS_BOARD
42        default "am65x"
43
44 config SYS_VENDOR
45        default "ti"
46
47 config SYS_CONFIG_NAME
48        default "am65x_evm"
49
50 config SPL_LDSCRIPT
51         default "arch/arm/mach-omap2/u-boot-spl.lds"
52
53 endif