blob: 84194f6efa8d512e660ead75fd42da71b1825f84 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
# SPDX-License-Identifier: GPL-2.0-or-later
#
# Copyright (C) 2023-2024 Texas Instruments Incorporated - https://www.ti.com/
# Hari Nagalla <hnagalla@ti.com>
if SOC_K3_J784S4
choice
prompt "K3 J784S4 board"
optional
config TARGET_J784S4_A72_EVM
bool "TI K3 based J784S4 EVM running on A72"
select ARM64
select BOARD_LATE_INIT
select SYS_DISABLE_DCACHE_OPS
select BINMAN
config TARGET_J784S4_R5_EVM
bool "TI K3 based J784S4 EVM running on R5"
select CPU_V7R
select SYS_THUMB_BUILD
select K3_LOAD_SYSFW
select RAM
select SPL_RAM
select K3_DDRSS
select BINMAN
imply SYS_K3_SPL_ATF
config TARGET_J742S2_A72_EVM
bool "TI K3 based J742S2 EVM running on A72"
select ARM64
select BOARD_LATE_INIT
select SYS_DISABLE_DCACHE_OPS
select BINMAN
config TARGET_J742S2_R5_EVM
bool "TI K3 based J742S2 EVM running on R5"
select CPU_V7R
select SYS_THUMB_BUILD
select K3_LOAD_SYSFW
select RAM
select SPL_RAM
select K3_DDRSS
select BINMAN
imply SYS_K3_SPL_ATF
endchoice
source "board/ti/j784s4/Kconfig"
endif
|