mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2026-06-02 09:46:37 +03:00
Add support for the PHYTEC phyCORE-AM68x/TDA4x (J721S2 family) SoM. Supported features: - 4GB LPDDR4 RAM - eMMC - SD-Card - Ethernet - OSPI - AVS - debug UART Signed-off-by: Dominik Haller <d.haller@phytec.de> Reviewed-by: Wadim Egorov <w.egorov@phytec.de>
42 lines
731 B
Plaintext
42 lines
731 B
Plaintext
# SPDX-License-Identifier: GPL-2.0-only OR MIT
|
|
#
|
|
# Copyright (C) 2025 PHYTEC Messtechnik GmbH
|
|
# Author: Dominik Haller <d.haller@phytec.de>
|
|
|
|
if TARGET_PHYCORE_AM68X_A72
|
|
|
|
config SYS_BOARD
|
|
default "phycore_am68x"
|
|
|
|
config SYS_VENDOR
|
|
default "phytec"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "phycore_am68x"
|
|
|
|
config ENV_SOURCE_FILE
|
|
default "phycore_am68x"
|
|
|
|
source "board/phytec/common/Kconfig"
|
|
|
|
endif
|
|
|
|
if TARGET_PHYCORE_AM68X_R5
|
|
|
|
config SYS_BOARD
|
|
default "phycore_am68x"
|
|
|
|
config SYS_VENDOR
|
|
default "phytec"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "phycore_am68x"
|
|
|
|
config ENV_SOURCE_FILE
|
|
default "phycore_am68x"
|
|
|
|
source "board/phytec/common/Kconfig"
|
|
source "board/phytec/common/k3/Kconfig"
|
|
|
|
endif
|