forked from OERV-BSP/u-boot
This adds initial support for the Toradex Verdin AM62P module. The module consists of an TI AM62P family SoC, a TPS65219 PMIC, a Gigabit Ethernet PHY, up to 8GB of LPDDR4 RAM, an eMMC, a TLA2024 ADC, an I2C EEPROM, an RX8130 RTC, plus an optional Bluetooth/Wi-Fi module. These specific changes adds support for Toradex Verdin AM62P Quad 2GB WB IT module. Link: https://www.toradex.com/computer-on-modules/verdin-arm-family/ti-am62p Link: https://www.toradex.com/products/carrier-board/verdin-development-board-kit Signed-off-by: Parth Pancholi <parth.pancholi@toradex.com> Signed-off-by: Vitor Soares <vitor.soares@toradex.com>
16 lines
368 B
C
16 lines
368 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* Configuration header file for Verdin AM62P SoM
|
|
*
|
|
* Copyright 2025 Toradex - https://www.toradex.com/
|
|
*/
|
|
|
|
#ifndef __VERDIN_AM62P_H
|
|
#define __VERDIN_AM62P_H
|
|
|
|
/* DDR Configuration */
|
|
#define CFG_SYS_SDRAM_BASE 0x80000000
|
|
#define CFG_SYS_SDRAM_SIZE SZ_2G /* Maximum supported size */
|
|
|
|
#endif /* __VERDIN_AM62P_H */
|