blob: 38a9e6811b119b38c141163cac6dd43f1fef199f [file] [log] [blame]
Bryan Brattlofa4d5cc22024-03-12 15:20:24 -05001# SPDX-License-Identifier: GPL-2.0+
2#
3# Copyright (C) 2024 Texas Instruments Incorporated - https://www.ti.com/
4#
5
6if SOC_K3_AM62P5
7
8choice
9 prompt "TI K3 AM62Px based boards"
10 optional
11
12config TARGET_AM62P5_A53_EVM
13 bool "TI K3 based AM62P5 EVM running on A53"
14 select ARM64
15 select BINMAN
16
17config TARGET_AM62P5_R5_EVM
18 bool "TI K3 based AM62P5 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
28endchoice
29
30source "board/ti/am62px/Kconfig"
31
32endif