xref: /openbmc/u-boot/board/ti/am65x/Kconfig (revision 6744c0d6)
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
6choice
7	prompt "K3 AM65 based boards"
8	optional
9
10config TARGET_AM654_A53_EVM
11	bool "TI K3 based AM654 EVM running on A53"
12	select ARM64
13	select SOC_K3_AM6
14
15config 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
23endchoice
24
25if TARGET_AM654_A53_EVM
26
27config SYS_BOARD
28       default "am65x"
29
30config SYS_VENDOR
31       default "ti"
32
33config SYS_CONFIG_NAME
34       default "am65x_evm"
35
36endif
37
38if TARGET_AM654_R5_EVM
39
40config SYS_BOARD
41       default "am65x"
42
43config SYS_VENDOR
44       default "ti"
45
46config SYS_CONFIG_NAME
47       default "am65x_evm"
48
49config SPL_LDSCRIPT
50	default "arch/arm/mach-omap2/u-boot-spl.lds"
51
52endif
53