mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-08-24 08:01:21 +02:00
The phycore-am64x can be migrated to OF_UPSTREAM. Drop redundant device tree files, update MAINTAINERS and defconfig's DEFAULT_DEVICE_TREE for ti vendor prefix accordingly. While at it, drop the redundant definitions of AM642_PHYBOARD_ELECTRA_DTB & SPL_AM642_PHYBOARD_ELECTRA_DTB from the binman dtsi file. Signed-off-by: Wadim Egorov <w.egorov@phytec.de>
57 lines
1.1 KiB
Plaintext
57 lines
1.1 KiB
Plaintext
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright (C) 2023 Texas Instruments Incorporated - https://www.ti.com/
|
|
# Andrew Davis <afd@ti.com>
|
|
|
|
if SOC_K3_AM642
|
|
|
|
choice
|
|
prompt "K3 AM64 based boards"
|
|
optional
|
|
|
|
config TARGET_AM642_A53_EVM
|
|
bool "TI K3 based AM642 EVM running on A53"
|
|
select ARM64
|
|
select BINMAN
|
|
imply BOARD
|
|
imply SPL_BOARD
|
|
imply TI_I2C_BOARD_DETECT
|
|
|
|
config TARGET_AM642_R5_EVM
|
|
bool "TI K3 based AM642 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
|
|
imply TI_I2C_BOARD_DETECT
|
|
|
|
config TARGET_PHYCORE_AM64X_A53
|
|
bool "PHYTEC phyCORE-AM64x running on A53"
|
|
select ARM64
|
|
select BINMAN
|
|
imply BOARD
|
|
imply SPL_BOARD
|
|
imply OF_UPSTREAM
|
|
|
|
config TARGET_PHYCORE_AM64X_R5
|
|
bool "PHYTEC phyCORE-AM64x 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/phytec/phycore_am64x/Kconfig"
|
|
source "board/ti/am64x/Kconfig"
|
|
|
|
endif
|