blob: 8b0cdd74f4f1f9097494fa50e2998bce5a9b2546 [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
Andrew Davise4f64a92024-02-14 10:30:06 -060016 select OF_SYSTEM_SETUP
Andrew Davis308b6002023-11-01 15:35:28 -050017
18config TARGET_AM625_R5_EVM
19 bool "TI K3 based AM625 EVM running on R5"
20 select CPU_V7R
21 select SYS_THUMB_BUILD
22 select K3_LOAD_SYSFW
23 select RAM
24 select SPL_RAM
25 select K3_DDRSS
26 select BINMAN
27 imply SYS_K3_SPL_ATF
28
Wadim Egorovabea3242023-12-20 10:18:10 +010029config TARGET_PHYCORE_AM62X_A53
30 bool "PHYTEC phyCORE-AM62x running on A53"
31 select ARM64
32 select BINMAN
Andrew Davise4f64a92024-02-14 10:30:06 -060033 select OF_SYSTEM_SETUP
Wadim Egorov1ea14d12024-04-19 08:51:15 +020034 imply OF_UPSTREAM
Wadim Egorovabea3242023-12-20 10:18:10 +010035
36config TARGET_PHYCORE_AM62X_R5
37 bool "PHYTEC phyCORE-AM62x running on R5"
38 select CPU_V7R
39 select SYS_THUMB_BUILD
40 select K3_LOAD_SYSFW
41 select RAM
42 select SPL_RAM
43 select K3_DDRSS
44 select BINMAN
45 imply SYS_K3_SPL_ATF
46
Andrew Davis308b6002023-11-01 15:35:28 -050047config TARGET_VERDIN_AM62_A53
48 bool "Toradex Verdin AM62 running on A53"
49 select ARM64
50 select BINMAN
Andrew Davise4f64a92024-02-14 10:30:06 -060051 select OF_SYSTEM_SETUP
Marcel Ziswiler62a2d3a2024-04-03 09:15:10 +020052 imply OF_UPSTREAM
Andrew Davis308b6002023-11-01 15:35:28 -050053
54config TARGET_VERDIN_AM62_R5
55 bool "Toradex Verdin AM62 running on R5"
56 select CPU_V7R
57 select SYS_THUMB_BUILD
58 select K3_LOAD_SYSFW
59 select RAM
60 select SPL_RAM
61 select K3_DDRSS
62 select BINMAN
63 imply SYS_K3_SPL_ATF
64
65endchoice
66
Nishanth Menon9dd6bdc2023-11-04 03:01:35 -050067source "board/beagle/beagleplay/Kconfig"
Wadim Egorovabea3242023-12-20 10:18:10 +010068source "board/phytec/phycore_am62x/Kconfig"
Andrew Davis308b6002023-11-01 15:35:28 -050069source "board/ti/am62x/Kconfig"
70source "board/toradex/verdin-am62/Kconfig"
71
72endif