1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (c) 2011 The Chromium OS Authors.
4  */
5 
6 #ifndef __CONFIG_H
7 #define __CONFIG_H
8 
9 #define CFG_MALLOC_F_ADDR		0x000f4000
10 
11 /* Size of our emulated memory */
12 #define SB_CONCAT(x, y) x ## y
13 #define SB_TO_UL(s) SB_CONCAT(s, UL)
14 #define CFG_SYS_SDRAM_BASE		0
15 #define CFG_SYS_SDRAM_SIZE \
16 		(SB_TO_UL(CONFIG_SANDBOX_RAM_SIZE_MB) << 20)
17 /** define SB_SDRAM_ALIGN - Alignment of emulated RAM */
18 #define SB_SDRAM_ALIGN			0x400000
19 
20 #define CFG_SYS_BAUDRATE_TABLE	{4800, 9600, 19200, 38400, 57600,\
21 					115200}
22 
23 /* Unused but necessary to build */
24 #define CFG_SYS_UBOOT_BASE	CONFIG_TEXT_BASE
25 
26 #endif
27