2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2011-10-03 19:26:47 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2011 The Chromium OS Authors.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __CONFIG_H
|
|
|
|
#define __CONFIG_H
|
|
|
|
|
2014-07-11 04:23:32 +00:00
|
|
|
#define CONFIG_MALLOC_F_ADDR 0x0010000
|
2011-10-03 19:26:47 +00:00
|
|
|
|
|
|
|
/* Size of our emulated memory */
|
2020-06-07 16:47:35 +00:00
|
|
|
#define SB_CONCAT(x, y) x ## y
|
|
|
|
#define SB_TO_UL(s) SB_CONCAT(s, UL)
|
2022-11-16 18:10:37 +00:00
|
|
|
#define CFG_SYS_SDRAM_BASE 0
|
|
|
|
#define CFG_SYS_SDRAM_SIZE \
|
2020-06-07 16:47:35 +00:00
|
|
|
(SB_TO_UL(CONFIG_SANDBOX_RAM_SIZE_MB) << 20)
|
2011-10-03 19:26:47 +00:00
|
|
|
|
2022-11-16 18:10:41 +00:00
|
|
|
#define CFG_SYS_BAUDRATE_TABLE {4800, 9600, 19200, 38400, 57600,\
|
2011-10-03 19:26:47 +00:00
|
|
|
115200}
|
|
|
|
|
|
|
|
#endif
|