Jayesh Choudhary 5e291ee34f arch: mach-k3: Introduce basic files to support J722S SoC family
Introduce the basic functions and definitions needed to properly
initialize TI J722S family of SoCs.

Co-developed-by: Vaishnav Achath <vaishnav.a@ti.com>
Signed-off-by: Vaishnav Achath <vaishnav.a@ti.com>
Signed-off-by: Jayesh Choudhary <j-choudhary@ti.com>
2024-06-19 12:07:44 -06:00

34 lines
578 B
Plaintext

# SPDX-License-Identifier: GPL-2.0+
#
# Copyright (C) 2024 Texas Instruments Incorporated - https://www.ti.com/
#
if SOC_K3_J722S
choice
prompt "TI K3 J722S based boards"
optional
config TARGET_J722S_A53_EVM
bool "TI K3 based J722S EVM running on A53"
select ARM64
select BINMAN
select OF_SYSTEM_SETUP
config TARGET_J722S_R5_EVM
bool "TI K3 based J722S 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/j722s/Kconfig"
endif