xref: /openbmc/u-boot/include/configs/sandbox.h (revision 3f41ffe4)
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_SYS_TIMER_RATE		1000000
20 
21 #define CONFIG_BOOTSTAGE
22 #define CONFIG_BOOTSTAGE_REPORT
23 #define CONFIG_DM
24 #define CONFIG_CMD_DEMO
25 #define CONFIG_CMD_DM
26 #define CONFIG_DM_DEMO
27 #define CONFIG_DM_DEMO_SIMPLE
28 #define CONFIG_DM_DEMO_SHAPE
29 #define CONFIG_DM_GPIO
30 #define CONFIG_DM_TEST
31 
32 /* Number of bits in a C 'long' on this architecture */
33 #define CONFIG_SANDBOX_BITS_PER_LONG	64
34 
35 #define CONFIG_OF_CONTROL
36 #define CONFIG_OF_HOSTFILE
37 #define CONFIG_OF_LIBFDT
38 #define CONFIG_LMB
39 #define CONFIG_FIT
40 #define CONFIG_FIT_SIGNATURE
41 #define CONFIG_RSA
42 #define CONFIG_CMD_FDT
43 #define CONFIG_DEFAULT_DEVICE_TREE	sandbox
44 
45 #define CONFIG_FS_FAT
46 #define CONFIG_FS_EXT4
47 #define CONFIG_EXT4_WRITE
48 #define CONFIG_CMD_FAT
49 #define CONFIG_CMD_EXT4
50 #define CONFIG_CMD_EXT4_WRITE
51 #define CONFIG_CMD_PART
52 #define CONFIG_DOS_PARTITION
53 #define CONFIG_HOST_MAX_DEVICES 4
54 #define CONFIG_CMD_FS_GENERIC
55 
56 #define CONFIG_SYS_VSNPRINTF
57 
58 #define CONFIG_CMD_GPIO
59 #define CONFIG_SANDBOX_GPIO
60 #define CONFIG_SANDBOX_GPIO_COUNT	20
61 
62 #define CONFIG_CMD_GPT
63 #define CONFIG_PARTITION_UUIDS
64 #define CONFIG_EFI_PARTITION
65 
66 /*
67  * Size of malloc() pool, although we don't actually use this yet.
68  */
69 #define CONFIG_SYS_MALLOC_LEN		(4 << 20)	/* 4MB  */
70 
71 #define CONFIG_SYS_HUSH_PARSER
72 #define CONFIG_SYS_LONGHELP			/* #undef to save memory */
73 #define CONFIG_SYS_CBSIZE		1024	/* Console I/O Buffer Size */
74 
75 /* Print Buffer Size */
76 #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
77 #define CONFIG_SYS_MAXARGS	16
78 
79 /* turn on command-line edit/c/auto */
80 #define CONFIG_CMDLINE_EDITING
81 #define CONFIG_COMMAND_HISTORY
82 #define CONFIG_AUTO_COMPLETE
83 
84 #define CONFIG_ENV_SIZE		8192
85 #define CONFIG_ENV_IS_NOWHERE
86 
87 /* SPI */
88 #define CONFIG_SANDBOX_SPI
89 #define CONFIG_CMD_SF
90 #define CONFIG_CMD_SF_TEST
91 #define CONFIG_CMD_SPI
92 #define CONFIG_SPI_FLASH
93 #define CONFIG_SPI_FLASH_SANDBOX
94 #define CONFIG_SPI_FLASH_STMICRO
95 #define CONFIG_SPI_FLASH_WINBOND
96 
97 /* Memory things - we don't really want a memory test */
98 #define CONFIG_SYS_LOAD_ADDR		0x00000000
99 #define CONFIG_SYS_MEMTEST_START	0x00100000
100 #define CONFIG_SYS_MEMTEST_END		(CONFIG_SYS_MEMTEST_START + 0x1000)
101 #define CONFIG_SYS_FDT_LOAD_ADDR	0x1000000
102 
103 /* Size of our emulated memory */
104 #define CONFIG_SYS_SDRAM_BASE		0
105 #define CONFIG_SYS_SDRAM_SIZE		(128 << 20)
106 #define CONFIG_SYS_TEXT_BASE		0
107 #define CONFIG_SYS_MONITOR_BASE	0
108 #define CONFIG_NR_DRAM_BANKS		1
109 
110 #define CONFIG_BAUDRATE			115200
111 #define CONFIG_SYS_BAUDRATE_TABLE	{4800, 9600, 19200, 38400, 57600,\
112 					115200}
113 #define CONFIG_SANDBOX_SERIAL
114 
115 #define CONFIG_SYS_NO_FLASH
116 
117 /* include default commands */
118 #include <config_cmd_default.h>
119 
120 /* We don't have networking support yet */
121 #undef CONFIG_CMD_NET
122 #undef CONFIG_CMD_NFS
123 
124 #define CONFIG_CMD_HASH
125 #define CONFIG_HASH_VERIFY
126 #define CONFIG_SHA1
127 #define CONFIG_SHA256
128 
129 #define CONFIG_CMD_SANDBOX
130 
131 #define CONFIG_BOOTARGS ""
132 
133 #define CONFIG_EXTRA_ENV_SETTINGS	"stdin=serial\0" \
134 					"stdout=serial\0" \
135 					"stderr=serial\0"
136 
137 #define CONFIG_GZIP_COMPRESSED
138 #define CONFIG_BZIP2
139 #define CONFIG_LZO
140 #define CONFIG_LZMA
141 
142 #define CONFIG_TPM_TIS_SANDBOX
143 
144 #endif
145