1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * include/configs/gose.h
4  *
5  * Copyright (C) 2014 Renesas Electronics Corporation
6  */
7 
8 #ifndef __GOSE_H
9 #define __GOSE_H
10 
11 #include "rcar-gen2-common.h"
12 
13 #define STACK_AREA_SIZE			0x00100000
14 #define LOW_LEVEL_MERAM_STACK \
15 		(SYS_INIT_SP_ADDR + STACK_AREA_SIZE - 4)
16 
17 /* MEMORY */
18 #define RCAR_GEN2_SDRAM_BASE		0x40000000
19 #define RCAR_GEN2_SDRAM_SIZE		(1048u * 1024 * 1024)
20 #define RCAR_GEN2_UBOOT_SDRAM_SIZE	(512u * 1024 * 1024)
21 
22 #define CFG_EXTRA_ENV_SETTINGS	\
23 	"bootm_size=0x10000000\0"
24 
25 #endif	/* __GOSE_H */
26