blob: 935d596c87908203e7faa26e4117032f2bbe8482 [file] [log] [blame]
Andrew Davis308b6002023-11-01 15:35:28 -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_AM625
7
8choice
9 prompt "K3 AM62x based boards"
10 optional
11
12config TARGET_AM625_A53_EVM
13 bool "TI K3 based AM625 EVM running on A53"
14 select ARM64
15 select BINMAN
16
17config TARGET_AM625_R5_EVM
18 bool "TI K3 based AM625 EVM running on R5"
19 select CPU_V7R
20 select SYS_THUMB_BUILD
21 select K3_LOAD_SYSFW
22 select RAM
23 select SPL_RAM
24 select K3_DDRSS
25 select BINMAN
26 imply SYS_K3_SPL_ATF
27
Wadim Egorovabea3242023-12-20 10:18:10 +010028config TARGET_PHYCORE_AM62X_A53
29 bool "PHYTEC phyCORE-AM62x running on A53"
30 select ARM64
31 select BINMAN
32
33config TARGET_PHYCORE_AM62X_R5
34 bool "PHYTEC phyCORE-AM62x running on R5"
35 select CPU_V7R
36 select SYS_THUMB_BUILD
37 select K3_LOAD_SYSFW
38 select RAM
39 select SPL_RAM
40 select K3_DDRSS
41 select BINMAN
42 imply SYS_K3_SPL_ATF
43
Andrew Davis308b6002023-11-01 15:35:28 -050044config TARGET_VERDIN_AM62_A53
45 bool "Toradex Verdin AM62 running on A53"
46 select ARM64
47 select BINMAN
48
49config TARGET_VERDIN_AM62_R5
50 bool "Toradex Verdin AM62 running on R5"
51 select CPU_V7R
52 select SYS_THUMB_BUILD
53 select K3_LOAD_SYSFW
54 select RAM
55 select SPL_RAM
56 select K3_DDRSS
57 select BINMAN
58 imply SYS_K3_SPL_ATF
59
60endchoice
61
Nishanth Menon9dd6bdc2023-11-04 03:01:35 -050062source "board/beagle/beagleplay/Kconfig"
Wadim Egorovabea3242023-12-20 10:18:10 +010063source "board/phytec/phycore_am62x/Kconfig"
Andrew Davis308b6002023-11-01 15:35:28 -050064source "board/ti/am62x/Kconfig"
65source "board/toradex/verdin-am62/Kconfig"
66
67endif