blob: 39d38ea5cf5affa451fefcd740a3d09e49cc0206 [file] [log] [blame]
Jayesh Choudhary732d2ff2024-06-12 14:41:18 +05301# SPDX-License-Identifier: GPL-2.0+
2#
3# Copyright (C) 2024 Texas Instruments Incorporated - https://www.ti.com/
4#
5
6if SOC_K3_J722S
7
8choice
9 prompt "TI K3 J722S based boards"
10 optional
11
12config TARGET_J722S_A53_EVM
13 bool "TI K3 based J722S EVM running on A53"
14 select ARM64
15 select BINMAN
16 select OF_SYSTEM_SETUP
17
18config TARGET_J722S_R5_EVM
19 bool "TI K3 based J722S 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/j722s/Kconfig"
32
33endif