1 /* SPDX-License-Identifier:    GPL-2.0
2  * Copyright (C) 2018 Marvell International Ltd.
3  *
4  * https://spdx.org/licenses
5  */
6 
7 #ifndef __OCTEONTX2_COMMON_H__
8 #define __OCTEONTX2_COMMON_H__
9 
10 /** Maximum size of image supported for bootm (and bootable FIT images) */
11 
12 /** Memory base address */
13 #define CFG_SYS_SDRAM_BASE		CONFIG_TEXT_BASE
14 
15 /** Stack starting address */
16 
17 /** Extra environment settings */
18 #define CFG_EXTRA_ENV_SETTINGS	\
19 					"loadaddr=20080000\0"	\
20 					"ethrotate=yes\0"
21 
22 #endif /* __OCTEONTX2_COMMON_H__ */
23