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
|
|
|
|
|
2016-07-04 17:57:52 +00:00
|
|
|
#ifndef CONFIG_SPL_BUILD
|
2014-06-12 05:29:43 +00:00
|
|
|
#define CONFIG_IO_TRACE
|
2016-07-04 17:57:52 +00:00
|
|
|
#endif
|
2014-06-12 05:29:43 +00:00
|
|
|
|
2014-07-11 04:23:32 +00:00
|
|
|
#define CONFIG_MALLOC_F_ADDR 0x0010000
|
2011-10-03 19:26:47 +00:00
|
|
|
|
|
|
|
#define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
|
|
|
|
|
|
|
|
/* 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)
|
2013-04-26 02:53:43 +00:00
|
|
|
#define CONFIG_SYS_SDRAM_BASE 0
|
2020-06-07 16:47:35 +00:00
|
|
|
#define CONFIG_SYS_SDRAM_SIZE \
|
|
|
|
(SB_TO_UL(CONFIG_SANDBOX_RAM_SIZE_MB) << 20)
|
2013-04-26 02:53:43 +00:00
|
|
|
#define CONFIG_SYS_MONITOR_BASE 0
|
2011-10-03 19:26:47 +00:00
|
|
|
|
|
|
|
#define CONFIG_SYS_BAUDRATE_TABLE {4800, 9600, 19200, 38400, 57600,\
|
|
|
|
115200}
|
|
|
|
|
2014-03-22 23:12:58 +00:00
|
|
|
#ifndef SANDBOX_NO_SDL
|
2014-02-27 20:26:25 +00:00
|
|
|
#define CONFIG_SANDBOX_SDL
|
2014-03-22 23:12:58 +00:00
|
|
|
#endif
|
|
|
|
|
2011-10-03 19:26:47 +00:00
|
|
|
#endif
|