summaryrefslogtreecommitdiffstats
path: root/board/ti/am64x/Kconfig
blob: 57527be1dfd2b2af3c9c4a0a79d5d29d1f69d562 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# SPDX-License-Identifier: GPL-2.0+
#
# Copyright (C) 2020-2021 Texas Instruments Incorporated - https://www.ti.com/

choice
	prompt "K3 AM64 based boards"
	optional

config TARGET_AM642_A53_EVM
	bool "TI K3 based AM642 EVM running on A53"
	select ARM64
	select SOC_K3_AM642
	imply BOARD
	imply SPL_BOARD

config TARGET_AM642_R5_EVM
	bool "TI K3 based AM642 EVM running on R5"
	select CPU_V7R
	select SYS_THUMB_BUILD
	select K3_LOAD_SYSFW
	select SOC_K3_AM642
	imply SYS_K3_SPL_ATF

endchoice

if TARGET_AM642_A53_EVM

config SYS_BOARD
       default "am64x"

config SYS_VENDOR
       default "ti"

config SYS_CONFIG_NAME
       default "am64x_evm"

endif

if TARGET_AM642_R5_EVM

config SYS_BOARD
       default "am64x"

config SYS_VENDOR
       default "ti"

config SYS_CONFIG_NAME
       default "am64x_evm"

config SPL_LDSCRIPT
	default "arch/arm/mach-omap2/u-boot-spl.lds"

endif