blob: 76ae86b66222fc0f0e4add1a94ba972a8deb3bdf [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
Bryan Brattlofe0b71382024-05-23 11:43:20 -050016 select OF_SYSTEM_SETUP
Bryan Brattlofa4d5cc22024-03-12 15:20:24 -050017
18config TARGET_AM62P5_R5_EVM
19 bool "TI K3 based AM62P5 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
29endchoice
30
31source "board/ti/am62px/Kconfig"
32
33endif