2019-10-20 01:47:37 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0
|
|
|
|
* Copyright (C) 2018 Marvell International Ltd.
|
|
|
|
*
|
|
|
|
* https://spdx.org/licenses
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __OCTEONTX2_COMMON_H__
|
|
|
|
#define __OCTEONTX2_COMMON_H__
|
|
|
|
|
|
|
|
/** Maximum size of image supported for bootm (and bootable FIT images) */
|
|
|
|
|
|
|
|
/** Memory base address */
|
2022-11-16 18:10:37 +00:00
|
|
|
#define CFG_SYS_SDRAM_BASE CONFIG_TEXT_BASE
|
2019-10-20 01:47:37 +00:00
|
|
|
|
|
|
|
/** Stack starting address */
|
|
|
|
|
|
|
|
/** Extra environment settings */
|
2022-12-04 15:03:50 +00:00
|
|
|
#define CFG_EXTRA_ENV_SETTINGS \
|
2019-10-20 01:47:37 +00:00
|
|
|
"loadaddr=20080000\0" \
|
2022-06-14 02:57:35 +00:00
|
|
|
"ethrotate=yes\0"
|
2019-10-20 01:47:37 +00:00
|
|
|
|
|
|
|
#if defined(CONFIG_MMC_OCTEONTX)
|
|
|
|
#define MMC_SUPPORTS_TUNING
|
|
|
|
/** EMMC specific defines */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* __OCTEONTX2_COMMON_H__ */
|