blob: f17b641e1366d43be96759c463d6812a1ce88ee2 [file] [log] [blame]
Andrew Davisecfef3c2023-11-01 15:35:26 -05001# SPDX-License-Identifier: GPL-2.0+
2#
3# Copyright (C) 2023 Texas Instruments Incorporated - https://www.ti.com/
4# Andrew Davis <afd@ti.com>
5
6if SOC_K3_AM654
7
8choice
9 prompt "K3 AM65 based boards"
10 optional
11
12config TARGET_AM654_A53_EVM
13 bool "TI K3 based AM654 EVM running on A53"
14 select ARM64
15 select SYS_DISABLE_DCACHE_OPS
16 select BOARD_LATE_INIT
17 select BINMAN
18 imply TI_I2C_BOARD_DETECT
19
20config TARGET_AM654_R5_EVM
21 bool "TI K3 based AM654 EVM running on R5"
22 select CPU_V7R
23 select SYS_THUMB_BUILD
24 select K3_LOAD_SYSFW
25 select K3_AM654_DDRSS
26 select BINMAN
27 imply SYS_K3_SPL_ATF
28 imply TI_I2C_BOARD_DETECT
29
30config TARGET_IOT2050_A53
31 bool "IOT2050 running on A53"
32 depends on SOC_K3_AM654
33 select ARM64
34 select BOARD_LATE_INIT
35 select SYS_DISABLE_DCACHE_OPS
36 select BINMAN
37 help
38 This builds U-Boot for the IOT2050 devices.
39
40endchoice
41
42source "board/ti/am65x/Kconfig"
43source "board/siemens/iot2050/Kconfig"
44
45endif