mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-29 08:01:08 +00:00
77c29cb1b6
Support has been added for both HS-SE(SR 2.0) and GP(SR 2.0) images. HS-SE: * tiboot3-am65x_sr2-hs-evm.bin * sysfw-am65x_sr2-hs-evm.itb * tispl.bin * u-boot.img GP: * tiboot3.bin --> tiboot3-am65x_sr2-gp-evm.bin * sysfw.itb --> sysfw-am65x_sr2-gp-evm.itb * tispl.bin_unsigned * u-boot.img_unsigned Note that the bootflow followed by AM65x requires: tiboot3.bin: * R5 SPL * R5 SPL dtbs sysfw.itb: * sysfw * board-cfg * pm-cfg * sec-cfg * rm-cfg tispl.bin: * ATF * OP-TEE * A53 SPL * A53 SPL dtbs u-boot.img: * A53 U-Boot * A53 U-Boot dtbs Reviewed-by: Simon Glass <sjg@chromium.org> [afd@ti.com: changed output binary names appropriately] Signed-off-by: Andrew Davis <afd@ti.com> Signed-off-by: Neha Malcom Francis <n-francis@ti.com>
58 lines
1,011 B
Text
58 lines
1,011 B
Text
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright (C) 2017-2018 Texas Instruments Incorporated - http://www.ti.com/
|
|
# Lokesh Vutla <lokeshvutla@ti.com>
|
|
|
|
choice
|
|
prompt "K3 AM65 based boards"
|
|
optional
|
|
|
|
config TARGET_AM654_A53_EVM
|
|
bool "TI K3 based AM654 EVM running on A53"
|
|
select ARM64
|
|
select SYS_DISABLE_DCACHE_OPS
|
|
select BOARD_LATE_INIT
|
|
select BINMAN
|
|
imply TI_I2C_BOARD_DETECT
|
|
|
|
config TARGET_AM654_R5_EVM
|
|
bool "TI K3 based AM654 EVM running on R5"
|
|
select CPU_V7R
|
|
select SYS_THUMB_BUILD
|
|
select K3_LOAD_SYSFW
|
|
select K3_AM654_DDRSS
|
|
select BINMAN
|
|
imply SYS_K3_SPL_ATF
|
|
imply TI_I2C_BOARD_DETECT
|
|
|
|
endchoice
|
|
|
|
if TARGET_AM654_A53_EVM
|
|
|
|
config SYS_BOARD
|
|
default "am65x"
|
|
|
|
config SYS_VENDOR
|
|
default "ti"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "am65x_evm"
|
|
|
|
source "board/ti/common/Kconfig"
|
|
|
|
endif
|
|
|
|
if TARGET_AM654_R5_EVM
|
|
|
|
config SYS_BOARD
|
|
default "am65x"
|
|
|
|
config SYS_VENDOR
|
|
default "ti"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "am65x_evm"
|
|
|
|
source "board/ti/common/Kconfig"
|
|
|
|
endif
|