u-boot/board/ti/am65x/Kconfig
Neha Malcom Francis 54ff4eeb59 board: ti: Kconfig: Correct invalid Kconfig syntax
Kconfig does not support using 'select' to select a 'choice'. A choice
can be configured by either setting the choice symbol to 'y' in a
configuration file or by setting a 'default' of the choice.

In board/ti/*/Kconfig the SOC_K3_* choice is already set to 'y' in their
corresponding configs/*_defconfig file. So remove selecting it.

Signed-off-by: Neha Malcom Francis <n-francis@ti.com>
2023-03-29 11:58:26 -04:00

56 lines
981 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
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
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