mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-05 02:51:00 +00:00
80b93bb71c
The first AM6x device was the AM654x, but being the first we named it just AM6, since more devices have come out with this same prefix we should switch it to the normal convention of using the full name of the first compatibility device the series. This makes what device we are talking about more clear and matches all the K3 devices added since. Signed-off-by: Andrew Davis <afd@ti.com> Reviewed-by: Tom Rini <trini@konsulko.com>
58 lines
1,023 B
Text
58 lines
1,023 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 SOC_K3_AM654
|
|
select SYS_DISABLE_DCACHE_OPS
|
|
select BOARD_LATE_INIT
|
|
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 SOC_K3_AM654
|
|
select K3_LOAD_SYSFW
|
|
select K3_AM654_DDRSS
|
|
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
|