forked from OERV-BSP/u-boot
Introduce the basic files needed to support the TI J742S2 family of SoCs. Signed-off-by: Manorit Chawdhry <m-chawdhry@ti.com>
71 lines
1.1 KiB
Plaintext
71 lines
1.1 KiB
Plaintext
# 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 TARGET_J784S4_A72_EVM
|
|
|
|
config SYS_BOARD
|
|
default "j784s4"
|
|
|
|
config SYS_VENDOR
|
|
default "ti"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "j784s4_evm"
|
|
|
|
source "board/ti/common/Kconfig"
|
|
|
|
endif
|
|
|
|
if TARGET_J784S4_R5_EVM
|
|
|
|
config SYS_BOARD
|
|
default "j784s4"
|
|
|
|
config SYS_VENDOR
|
|
default "ti"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "j784s4_evm"
|
|
|
|
config SPL_LDSCRIPT
|
|
default "arch/arm/mach-omap2/u-boot-spl.lds"
|
|
|
|
source "board/ti/common/Kconfig"
|
|
|
|
endif
|
|
|
|
if TARGET_J742S2_A72_EVM
|
|
|
|
config SYS_BOARD
|
|
default "j784s4"
|
|
|
|
config SYS_VENDOR
|
|
default "ti"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "j784s4_evm"
|
|
|
|
source "board/ti/common/Kconfig"
|
|
|
|
endif
|
|
|
|
if TARGET_J742S2_R5_EVM
|
|
|
|
config SYS_BOARD
|
|
default "j784s4"
|
|
|
|
config SYS_VENDOR
|
|
default "ti"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "j784s4_evm"
|
|
|
|
config SPL_LDSCRIPT
|
|
default "arch/arm/mach-omap2/u-boot-spl.lds"
|
|
|
|
source "board/ti/common/Kconfig"
|
|
|
|
endif
|