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>
(cherry picked from commit d13e67c24d)
16 lines
364 B
C
16 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 */
|