Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Simon Glass | c861fbf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 2 | /* |
3 | * Copyright (c) 2011 The Chromium OS Authors. | ||||
Simon Glass | c861fbf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 4 | */ |
5 | |||||
6 | #ifndef __CONFIG_H | ||||
7 | #define __CONFIG_H | ||||
8 | |||||
Simon Glass | 1c12bce | 2016-07-04 11:57:52 -0600 | [diff] [blame] | 9 | #ifndef CONFIG_SPL_BUILD |
Simon Glass | 42d3b29 | 2014-06-11 23:29:43 -0600 | [diff] [blame] | 10 | #define CONFIG_IO_TRACE |
Simon Glass | 1c12bce | 2016-07-04 11:57:52 -0600 | [diff] [blame] | 11 | #endif |
Simon Glass | 42d3b29 | 2014-06-11 23:29:43 -0600 | [diff] [blame] | 12 | |
Simon Glass | b53e94b | 2014-07-10 22:23:32 -0600 | [diff] [blame] | 13 | #define CONFIG_MALLOC_F_ADDR 0x0010000 |
Simon Glass | c861fbf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 14 | |
Simon Glass | c861fbf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 15 | #define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */ |
16 | |||||
Simon Glass | c861fbf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 17 | /* Size of our emulated memory */ |
Heinrich Schuchardt | e85497a | 2020-06-07 18:47:35 +0200 | [diff] [blame] | 18 | #define SB_CONCAT(x, y) x ## y |
19 | #define SB_TO_UL(s) SB_CONCAT(s, UL) | ||||
Simon Glass | a733b06 | 2013-04-26 02:53:43 +0000 | [diff] [blame] | 20 | #define CONFIG_SYS_SDRAM_BASE 0 |
Heinrich Schuchardt | e85497a | 2020-06-07 18:47:35 +0200 | [diff] [blame] | 21 | #define CONFIG_SYS_SDRAM_SIZE \ |
22 | (SB_TO_UL(CONFIG_SANDBOX_RAM_SIZE_MB) << 20) | ||||
Simon Glass | c861fbf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 23 | |
Simon Glass | c861fbf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 24 | #define CONFIG_SYS_BAUDRATE_TABLE {4800, 9600, 19200, 38400, 57600,\ |
25 | 115200} | ||||
Simon Glass | c861fbf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 26 | |
Simon Glass | ad0e463 | 2014-03-22 17:12:58 -0600 | [diff] [blame] | 27 | #ifndef SANDBOX_NO_SDL |
Simon Glass | 2c072c9 | 2014-02-27 13:26:25 -0700 | [diff] [blame] | 28 | #define CONFIG_SANDBOX_SDL |
Simon Glass | ad0e463 | 2014-03-22 17:12:58 -0600 | [diff] [blame] | 29 | #endif |
30 | |||||
Simon Glass | c861fbf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 31 | #endif |