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