global: Migrate CONFIG_MXC_UART_BASE to CFG
[platform/kernel/u-boot.git] / include / configs / sandbox.h
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               0x0010000
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
18 #define CFG_SYS_BAUDRATE_TABLE  {4800, 9600, 19200, 38400, 57600,\
19                                         115200}
20
21 #endif