mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-28 00:11:32 +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>
15 lines
364 B
C
15 lines
364 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later OR MIT */
|
|
/*
|
|
* Configuration header file for PHYTEC phyCORE-AM62Ax
|
|
*
|
|
* Copyright (C) 2024 PHYTEC America LLC
|
|
* Author: Garrett Giordano <ggiordano@phytec.com>
|
|
*/
|
|
|
|
#ifndef __PHYCORE_AM62AX_H
|
|
#define __PHYCORE_AM62AX_H
|
|
|
|
/* DDR Configuration */
|
|
#define CFG_SYS_SDRAM_BASE 0x80000000
|
|
|
|
#endif /* __PHYCORE_AM62AX_H */
|