mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-16 09:54:35 +00:00

Add support for PHYTEC phyCORE-AM62A7 SoM. Supported features: - 2GB LPDDR4 RAM - eMMC - External SD - Ethernet - debug UART Signed-off-by: Garrett Giordano <ggiordano@phytec.com> Reviewed-by: Wadim Egorov <w.egorov@phytec.de> Reviewed-by: Tom Rini <trini@konsulko.com> Reviewed-by: Bryan Brattlof <bb@ti.com>
37 lines
657 B
Text
37 lines
657 B
Text
# SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
|
#
|
|
# Copyright (C) 2024 PHYTEC America LLC
|
|
# Author: Garrett Giordano <ggiordano@phytec.com>
|
|
|
|
if TARGET_PHYCORE_AM62AX_A53
|
|
|
|
config SYS_BOARD
|
|
default "phycore_am62ax"
|
|
|
|
config SYS_VENDOR
|
|
default "phytec"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "phycore_am62ax"
|
|
|
|
source "board/phytec/common/Kconfig"
|
|
|
|
endif
|
|
|
|
if TARGET_PHYCORE_AM62AX_R5
|
|
|
|
config SYS_BOARD
|
|
default "phycore_am62ax"
|
|
|
|
config SYS_VENDOR
|
|
default "phytec"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "phycore_am62ax"
|
|
|
|
config SPL_LDSCRIPT
|
|
default "arch/arm/mach-omap2/u-boot-spl.lds"
|
|
|
|
source "board/phytec/common/Kconfig"
|
|
|
|
endif
|