mirror of
https://github.com/smaeul/u-boot.git
synced 2025-09-15 14:36:03 +01:00
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>
34 lines
578 B
Plaintext
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
|