xref: /openbmc/u-boot/include/configs/sandbox.h (revision 16437a19)
1 /*
2  * Copyright (c) 2011 The Chromium OS Authors.
3  * SPDX-License-Identifier:	GPL-2.0+
4  */
5 
6 #ifndef __CONFIG_H
7 #define __CONFIG_H
8 
9 #ifdef FTRACE
10 #define CONFIG_TRACE
11 #define CONFIG_CMD_TRACE
12 #define CONFIG_TRACE_BUFFER_SIZE	(16 << 20)
13 #define CONFIG_TRACE_EARLY_SIZE		(8 << 20)
14 #define CONFIG_TRACE_EARLY
15 #define CONFIG_TRACE_EARLY_ADDR		0x00100000
16 
17 #endif
18 
19 #define CONFIG_IO_TRACE
20 #define CONFIG_CMD_IOTRACE
21 
22 #define CONFIG_SYS_TIMER_RATE		1000000
23 
24 #define CONFIG_BOOTSTAGE
25 #define CONFIG_BOOTSTAGE_REPORT
26 #define CONFIG_DM
27 #define CONFIG_CMD_DEMO
28 #define CONFIG_CMD_DM
29 #define CONFIG_DM_DEMO
30 #define CONFIG_DM_DEMO_SIMPLE
31 #define CONFIG_DM_DEMO_SHAPE
32 #define CONFIG_DM_GPIO
33 #define CONFIG_DM_TEST
34 #define CONFIG_DM_SERIAL
35 #define CONFIG_DM_CROS_EC
36 
37 #define CONFIG_SYS_STDIO_DEREGISTER
38 
39 /* Number of bits in a C 'long' on this architecture */
40 #define CONFIG_SANDBOX_BITS_PER_LONG	64
41 
42 #define CONFIG_OF_LIBFDT
43 #define CONFIG_LMB
44 #define CONFIG_FIT
45 #define CONFIG_FIT_SIGNATURE
46 #define CONFIG_RSA
47 #define CONFIG_CMD_FDT
48 #define CONFIG_ANDROID_BOOT_IMAGE
49 
50 #define CONFIG_FS_FAT
51 #define CONFIG_FAT_WRITE
52 #define CONFIG_FS_EXT4
53 #define CONFIG_EXT4_WRITE
54 #define CONFIG_CMD_FAT
55 #define CONFIG_CMD_EXT4
56 #define CONFIG_CMD_EXT4_WRITE
57 #define CONFIG_CMD_PART
58 #define CONFIG_DOS_PARTITION
59 #define CONFIG_HOST_MAX_DEVICES 4
60 #define CONFIG_CMD_FS_GENERIC
61 #define CONFIG_CMD_MD5SUM
62 
63 #define CONFIG_SYS_VSNPRINTF
64 
65 #define CONFIG_CMD_GPIO
66 #define CONFIG_SANDBOX_GPIO
67 #define CONFIG_SANDBOX_GPIO_COUNT	128
68 
69 #define CONFIG_CMD_GPT
70 #define CONFIG_PARTITION_UUIDS
71 #define CONFIG_EFI_PARTITION
72 
73 /*
74  * Size of malloc() pool, before and after relocation
75  */
76 #define CONFIG_SYS_MALLOC_F_LEN	(1 << 10)
77 #define CONFIG_MALLOC_F_ADDR		0x0010000
78 #define CONFIG_SYS_MALLOC_LEN		(32 << 20)	/* 32MB  */
79 
80 #define CONFIG_SYS_HUSH_PARSER
81 #define CONFIG_SYS_LONGHELP			/* #undef to save memory */
82 #define CONFIG_SYS_CBSIZE		1024	/* Console I/O Buffer Size */
83 
84 /* Print Buffer Size */
85 #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
86 #define CONFIG_SYS_MAXARGS	16
87 
88 /* turn on command-line edit/c/auto */
89 #define CONFIG_CMDLINE_EDITING
90 #define CONFIG_COMMAND_HISTORY
91 #define CONFIG_AUTO_COMPLETE
92 #define CONFIG_BOOTDELAY	3
93 
94 #define CONFIG_ENV_SIZE		8192
95 #define CONFIG_ENV_IS_NOWHERE
96 
97 /* SPI - enable all SPI flash types for testing purposes */
98 #define CONFIG_SANDBOX_SPI
99 #define CONFIG_CMD_SF
100 #define CONFIG_CMD_SF_TEST
101 #define CONFIG_CMD_SPI
102 #define CONFIG_SPI_FLASH
103 #define CONFIG_DM_SPI
104 #define CONFIG_DM_SPI_FLASH
105 #define CONFIG_SPI_FLASH_ATMEL
106 #define CONFIG_SPI_FLASH_EON
107 #define CONFIG_SPI_FLASH_GIGADEVICE
108 #define CONFIG_SPI_FLASH_MACRONIX
109 #define CONFIG_SPI_FLASH_SANDBOX
110 #define CONFIG_SPI_FLASH_SPANSION
111 #define CONFIG_SPI_FLASH_SST
112 #define CONFIG_SPI_FLASH_STMICRO
113 #define CONFIG_SPI_FLASH_WINBOND
114 
115 #define CONFIG_DM_I2C
116 #define CONFIG_CMD_I2C
117 #define CONFIG_SYS_I2C_SANDBOX
118 #define CONFIG_I2C_EDID
119 #define CONFIG_I2C_EEPROM
120 
121 /* Memory things - we don't really want a memory test */
122 #define CONFIG_SYS_LOAD_ADDR		0x00000000
123 #define CONFIG_SYS_MEMTEST_START	0x00100000
124 #define CONFIG_SYS_MEMTEST_END		(CONFIG_SYS_MEMTEST_START + 0x1000)
125 #define CONFIG_SYS_FDT_LOAD_ADDR	        0x100
126 
127 #define CONFIG_PHYSMEM
128 
129 /* Size of our emulated memory */
130 #define CONFIG_SYS_SDRAM_BASE		0
131 #define CONFIG_SYS_SDRAM_SIZE		(128 << 20)
132 #define CONFIG_SYS_TEXT_BASE		0
133 #define CONFIG_SYS_MONITOR_BASE	0
134 #define CONFIG_NR_DRAM_BANKS		1
135 
136 #define CONFIG_BAUDRATE			115200
137 #define CONFIG_SYS_BAUDRATE_TABLE	{4800, 9600, 19200, 38400, 57600,\
138 					115200}
139 #define CONFIG_SANDBOX_SERIAL
140 
141 #define CONFIG_SYS_NO_FLASH
142 
143 /* include default commands */
144 #include <config_cmd_default.h>
145 
146 /* We don't have networking support yet */
147 #undef CONFIG_CMD_NET
148 #undef CONFIG_CMD_NFS
149 
150 #define CONFIG_CMD_HASH
151 #define CONFIG_HASH_VERIFY
152 #define CONFIG_SHA1
153 #define CONFIG_SHA256
154 
155 #define CONFIG_TPM_TIS_SANDBOX
156 
157 #define CONFIG_CMD_SANDBOX
158 
159 #define CONFIG_BOOTARGS ""
160 
161 #define CONFIG_CROS_EC
162 #define CONFIG_CMD_CROS_EC
163 #define CONFIG_CROS_EC_SANDBOX
164 #define CONFIG_ARCH_EARLY_INIT_R
165 #define CONFIG_BOARD_LATE_INIT
166 
167 #define CONFIG_SOUND
168 #define CONFIG_SOUND_SANDBOX
169 #define CONFIG_CMD_SOUND
170 
171 #ifndef SANDBOX_NO_SDL
172 #define CONFIG_SANDBOX_SDL
173 #endif
174 
175 /* LCD and keyboard require SDL support */
176 #ifdef CONFIG_SANDBOX_SDL
177 #define CONFIG_LCD
178 #define CONFIG_VIDEO_SANDBOX_SDL
179 #define CONFIG_CMD_BMP
180 #define CONFIG_BOARD_EARLY_INIT_F
181 #define CONFIG_CONSOLE_MUX
182 #define CONFIG_SYS_CONSOLE_IS_IN_ENV
183 #define LCD_BPP			LCD_COLOR16
184 #define CONFIG_LCD_BMP_RLE8
185 
186 #define CONFIG_CROS_EC_KEYB
187 #define CONFIG_KEYBOARD
188 
189 #define CONFIG_EXTRA_ENV_SETTINGS	"stdin=serial,cros-ec-keyb\0" \
190 					"stdout=serial,lcd\0" \
191 					"stderr=serial,lcd\0"
192 #else
193 
194 #define CONFIG_EXTRA_ENV_SETTINGS	"stdin=serial\0" \
195 					"stdout=serial,lcd\0" \
196 					"stderr=serial,lcd\0"
197 #endif
198 
199 #define CONFIG_GZIP_COMPRESSED
200 #define CONFIG_BZIP2
201 #define CONFIG_LZO
202 #define CONFIG_LZMA
203 
204 #define CONFIG_TPM_TIS_SANDBOX
205 
206 #define CONFIG_CMD_LZMADEC
207 
208 #endif
209