blob: 7c9bac2ece8b9046cd66107424e830117c527e8e [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 Egorovabea3242023-12-20 10:18:10 +010034
35config TARGET_PHYCORE_AM62X_R5
36 bool "PHYTEC phyCORE-AM62x running on R5"
37 select CPU_V7R
38 select SYS_THUMB_BUILD
39 select K3_LOAD_SYSFW
40 select RAM
41 select SPL_RAM
42 select K3_DDRSS
43 select BINMAN
44 imply SYS_K3_SPL_ATF
45
Andrew Davis308b6002023-11-01 15:35:28 -050046config TARGET_VERDIN_AM62_A53
47 bool "Toradex Verdin AM62 running on A53"
48 select ARM64
49 select BINMAN
Andrew Davise4f64a92024-02-14 10:30:06 -060050 select OF_SYSTEM_SETUP
Andrew Davis308b6002023-11-01 15:35:28 -050051
52config TARGET_VERDIN_AM62_R5
53 bool "Toradex Verdin AM62 running on R5"
54 select CPU_V7R
55 select SYS_THUMB_BUILD
56 select K3_LOAD_SYSFW
57 select RAM
58 select SPL_RAM
59 select K3_DDRSS
60 select BINMAN
61 imply SYS_K3_SPL_ATF
62
63endchoice
64
Nishanth Menon9dd6bdc2023-11-04 03:01:35 -050065source "board/beagle/beagleplay/Kconfig"
Wadim Egorovabea3242023-12-20 10:18:10 +010066source "board/phytec/phycore_am62x/Kconfig"
Andrew Davis308b6002023-11-01 15:35:28 -050067source "board/ti/am62x/Kconfig"
68source "board/toradex/verdin-am62/Kconfig"
69
70endif