sandbox.h 4.4 KB
Newer Older
S
Simon Glass 已提交
1 2
/*
 * Copyright (c) 2011 The Chromium OS Authors.
3
 * SPDX-License-Identifier:	GPL-2.0+
S
Simon Glass 已提交
4 5 6 7 8
 */

#ifndef __CONFIG_H
#define __CONFIG_H

S
Simon Glass 已提交
9 10 11 12 13 14 15 16 17 18
#ifdef FTRACE
#define CONFIG_TRACE
#define CONFIG_CMD_TRACE
#define CONFIG_TRACE_BUFFER_SIZE	(16 << 20)
#define CONFIG_TRACE_EARLY_SIZE		(8 << 20)
#define CONFIG_TRACE_EARLY
#define CONFIG_TRACE_EARLY_ADDR		0x00100000

#endif

S
Simon Glass 已提交
19 20 21
#define CONFIG_IO_TRACE
#define CONFIG_CMD_IOTRACE

22 23
#define CONFIG_SYS_TIMER_RATE		1000000

S
Simon Glass 已提交
24 25
#define CONFIG_BOOTSTAGE
#define CONFIG_BOOTSTAGE_REPORT
26 27

#define CONFIG_SYS_STDIO_DEREGISTER
S
Simon Glass 已提交
28

S
Simon Glass 已提交
29 30 31
/* Number of bits in a C 'long' on this architecture */
#define CONFIG_SANDBOX_BITS_PER_LONG	64

32 33
#define CONFIG_OF_LIBFDT
#define CONFIG_LMB
34
#define CONFIG_CMD_FDT
35
#define CONFIG_ANDROID_BOOT_IMAGE
36

37
#define CONFIG_FS_FAT
38
#define CONFIG_FAT_WRITE
39 40 41 42 43
#define CONFIG_FS_EXT4
#define CONFIG_EXT4_WRITE
#define CONFIG_CMD_FAT
#define CONFIG_CMD_EXT4
#define CONFIG_CMD_EXT4_WRITE
44 45 46
#define CONFIG_CMD_PART
#define CONFIG_DOS_PARTITION
#define CONFIG_HOST_MAX_DEVICES 4
47
#define CONFIG_CMD_FS_GENERIC
48
#define CONFIG_CMD_MD5SUM
49

50 51
#define CONFIG_SYS_VSNPRINTF

S
Simon Glass 已提交
52 53
#define CONFIG_CMD_GPIO
#define CONFIG_SANDBOX_GPIO
54
#define CONFIG_SANDBOX_GPIO_COUNT	128
S
Simon Glass 已提交
55

56 57 58 59
#define CONFIG_CMD_GPT
#define CONFIG_PARTITION_UUIDS
#define CONFIG_EFI_PARTITION

S
Simon Glass 已提交
60
/*
61
 * Size of malloc() pool, before and after relocation
S
Simon Glass 已提交
62
 */
63
#define CONFIG_MALLOC_F_ADDR		0x0010000
64
#define CONFIG_SYS_MALLOC_LEN		(32 << 20)	/* 32MB  */
S
Simon Glass 已提交
65 66 67 68 69 70 71 72 73 74 75 76

#define CONFIG_SYS_HUSH_PARSER
#define CONFIG_SYS_LONGHELP			/* #undef to save memory */
#define CONFIG_SYS_CBSIZE		1024	/* Console I/O Buffer Size */

/* Print Buffer Size */
#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
#define CONFIG_SYS_MAXARGS	16

/* turn on command-line edit/c/auto */
#define CONFIG_CMDLINE_EDITING
#define CONFIG_COMMAND_HISTORY
77
#define CONFIG_AUTO_COMPLETE
78
#define CONFIG_BOOTDELAY	3
S
Simon Glass 已提交
79 80 81 82

#define CONFIG_ENV_SIZE		8192
#define CONFIG_ENV_IS_NOWHERE

83
/* SPI - enable all SPI flash types for testing purposes */
84 85 86 87 88
#define CONFIG_SANDBOX_SPI
#define CONFIG_CMD_SF
#define CONFIG_CMD_SF_TEST
#define CONFIG_CMD_SPI
#define CONFIG_SPI_FLASH
89 90 91 92
#define CONFIG_SPI_FLASH_ATMEL
#define CONFIG_SPI_FLASH_EON
#define CONFIG_SPI_FLASH_GIGADEVICE
#define CONFIG_SPI_FLASH_MACRONIX
93
#define CONFIG_SPI_FLASH_SANDBOX
94 95
#define CONFIG_SPI_FLASH_SPANSION
#define CONFIG_SPI_FLASH_SST
96 97 98
#define CONFIG_SPI_FLASH_STMICRO
#define CONFIG_SPI_FLASH_WINBOND

99 100 101 102 103
#define CONFIG_CMD_I2C
#define CONFIG_SYS_I2C_SANDBOX
#define CONFIG_I2C_EDID
#define CONFIG_I2C_EEPROM

S
Simon Glass 已提交
104
/* Memory things - we don't really want a memory test */
105 106
#define CONFIG_SYS_LOAD_ADDR		0x00000000
#define CONFIG_SYS_MEMTEST_START	0x00100000
S
Simon Glass 已提交
107
#define CONFIG_SYS_MEMTEST_END		(CONFIG_SYS_MEMTEST_START + 0x1000)
108 109 110
#define CONFIG_SYS_FDT_LOAD_ADDR	        0x100

#define CONFIG_PHYSMEM
S
Simon Glass 已提交
111 112

/* Size of our emulated memory */
113
#define CONFIG_SYS_SDRAM_BASE		0
S
Simon Glass 已提交
114
#define CONFIG_SYS_SDRAM_SIZE		(128 << 20)
115 116 117
#define CONFIG_SYS_TEXT_BASE		0
#define CONFIG_SYS_MONITOR_BASE	0
#define CONFIG_NR_DRAM_BANKS		1
S
Simon Glass 已提交
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132

#define CONFIG_BAUDRATE			115200
#define CONFIG_SYS_BAUDRATE_TABLE	{4800, 9600, 19200, 38400, 57600,\
					115200}
#define CONFIG_SANDBOX_SERIAL

#define CONFIG_SYS_NO_FLASH

/* include default commands */
#include <config_cmd_default.h>

/* We don't have networking support yet */
#undef CONFIG_CMD_NET
#undef CONFIG_CMD_NFS

133 134 135 136 137
#define CONFIG_CMD_HASH
#define CONFIG_HASH_VERIFY
#define CONFIG_SHA1
#define CONFIG_SHA256

138 139
#define CONFIG_TPM_TIS_SANDBOX

140 141
#define CONFIG_CMD_SANDBOX

S
Simon Glass 已提交
142 143
#define CONFIG_BOOTARGS ""

144 145 146 147 148 149 150 151 152 153
#define CONFIG_CROS_EC
#define CONFIG_CMD_CROS_EC
#define CONFIG_CROS_EC_SANDBOX
#define CONFIG_ARCH_EARLY_INIT_R
#define CONFIG_BOARD_LATE_INIT

#define CONFIG_SOUND
#define CONFIG_SOUND_SANDBOX
#define CONFIG_CMD_SOUND

154
#ifndef SANDBOX_NO_SDL
155
#define CONFIG_SANDBOX_SDL
156 157 158 159
#endif

/* LCD and keyboard require SDL support */
#ifdef CONFIG_SANDBOX_SDL
160 161 162 163 164 165 166
#define CONFIG_LCD
#define CONFIG_VIDEO_SANDBOX_SDL
#define CONFIG_CMD_BMP
#define CONFIG_BOARD_EARLY_INIT_F
#define CONFIG_CONSOLE_MUX
#define CONFIG_SYS_CONSOLE_IS_IN_ENV
#define LCD_BPP			LCD_COLOR16
167
#define CONFIG_LCD_BMP_RLE8
168

169 170 171
#define CONFIG_CROS_EC_KEYB
#define CONFIG_KEYBOARD

172 173 174
#define CONFIG_EXTRA_ENV_SETTINGS	"stdin=serial,cros-ec-keyb\0" \
					"stdout=serial,lcd\0" \
					"stderr=serial,lcd\0"
175 176 177 178 179 180
#else

#define CONFIG_EXTRA_ENV_SETTINGS	"stdin=serial\0" \
					"stdout=serial,lcd\0" \
					"stderr=serial,lcd\0"
#endif
S
Simon Glass 已提交
181

K
Kees Cook 已提交
182 183 184 185 186
#define CONFIG_GZIP_COMPRESSED
#define CONFIG_BZIP2
#define CONFIG_LZO
#define CONFIG_LZMA

S
Simon Glass 已提交
187 188
#define CONFIG_TPM_TIS_SANDBOX

189 190
#define CONFIG_CMD_LZMADEC

S
Simon Glass 已提交
191
#endif