blob: 8b54c0401b68540faa518e881625b643009b55e2 [file] [log] [blame]
Andrew Davis5710d0a2023-11-01 15:35:30 -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_J721S2
7
8choice
9 prompt "K3 J721S2 based boards"
10 optional
11
12config TARGET_J721S2_A72_EVM
13 bool "TI K3 based J721S2 EVM running on A72"
14 select ARM64
15 select BOARD_LATE_INIT
16 imply TI_I2C_BOARD_DETECT
17 select SYS_DISABLE_DCACHE_OPS
18 select BINMAN
19
20config TARGET_J721S2_R5_EVM
21 bool "TI K3 based J721S2 EVM running on R5"
22 select CPU_V7R
23 select SYS_THUMB_BUILD
24 select K3_LOAD_SYSFW
25 select RAM
26 select SPL_RAM
27 select K3_DDRSS
28 select BINMAN
29 imply SYS_K3_SPL_ATF
30 imply TI_I2C_BOARD_DETECT
31
32endchoice
33
34source "board/ti/j721s2/Kconfig"
35
36endif