Commit 5a0e275cbbc4f462495e9a7e04acf0f6bfbd13c5

Authored by Simon Glass
Committed by Tom Rini
1 parent c87dc38d8f

bootstage: Change CONFIG_BOOTSTAGE_USER_COUNT to an int

There is no good read to make this hex, and integer is more natural for
this type of setting. Update it.

Signed-off-by: Simon Glass <sjg@chromium.org>

Showing 5 changed files with 5 additions and 5 deletions Inline Diff

1 menu "Boot timing" 1 menu "Boot timing"
2 2
3 config BOOTSTAGE 3 config BOOTSTAGE
4 bool "Boot timing and reporting" 4 bool "Boot timing and reporting"
5 help 5 help
6 Enable recording of boot time while booting. To use it, insert 6 Enable recording of boot time while booting. To use it, insert
7 calls to bootstage_mark() with a suitable BOOTSTAGE_ID from 7 calls to bootstage_mark() with a suitable BOOTSTAGE_ID from
8 bootstage.h. Only a single entry is recorded for each ID. You can 8 bootstage.h. Only a single entry is recorded for each ID. You can
9 give the entry a name with bootstage_mark_name(). You can also 9 give the entry a name with bootstage_mark_name(). You can also
10 record elapsed time in a particular stage using bootstage_start() 10 record elapsed time in a particular stage using bootstage_start()
11 before starting and bootstage_accum() when finished. Bootstage will 11 before starting and bootstage_accum() when finished. Bootstage will
12 add up all the accumulated time and report it. 12 add up all the accumulated time and report it.
13 13
14 Normally, IDs are defined in bootstage.h but a small number of 14 Normally, IDs are defined in bootstage.h but a small number of
15 additional 'user' IDs can be used by passing BOOTSTAGE_ID_ALLOC 15 additional 'user' IDs can be used by passing BOOTSTAGE_ID_ALLOC
16 as the ID. 16 as the ID.
17 17
18 Calls to show_boot_progress() will also result in log entries but 18 Calls to show_boot_progress() will also result in log entries but
19 these will not have names. 19 these will not have names.
20 20
21 config BOOTSTAGE_REPORT 21 config BOOTSTAGE_REPORT
22 bool "Display a detailed boot timing report before booting the OS" 22 bool "Display a detailed boot timing report before booting the OS"
23 depends on BOOTSTAGE 23 depends on BOOTSTAGE
24 help 24 help
25 Enable output of a boot time report just before the OS is booted. 25 Enable output of a boot time report just before the OS is booted.
26 This shows how long it took U-Boot to go through each stage of the 26 This shows how long it took U-Boot to go through each stage of the
27 boot process. The report looks something like this: 27 boot process. The report looks something like this:
28 28
29 Timer summary in microseconds: 29 Timer summary in microseconds:
30 Mark Elapsed Stage 30 Mark Elapsed Stage
31 0 0 reset 31 0 0 reset
32 3,575,678 3,575,678 board_init_f start 32 3,575,678 3,575,678 board_init_f start
33 3,575,695 17 arch_cpu_init A9 33 3,575,695 17 arch_cpu_init A9
34 3,575,777 82 arch_cpu_init done 34 3,575,777 82 arch_cpu_init done
35 3,659,598 83,821 board_init_r start 35 3,659,598 83,821 board_init_r start
36 3,910,375 250,777 main_loop 36 3,910,375 250,777 main_loop
37 29,916,167 26,005,792 bootm_start 37 29,916,167 26,005,792 bootm_start
38 30,361,327 445,160 start_kernel 38 30,361,327 445,160 start_kernel
39 39
40 config BOOTSTAGE_USER_COUNT 40 config BOOTSTAGE_USER_COUNT
41 hex "Number of boot ID numbers available for user use" 41 int "Number of boot ID numbers available for user use"
42 default 20 42 default 20
43 help 43 help
44 This is the number of available user bootstage records. 44 This is the number of available user bootstage records.
45 Each time you call bootstage_mark(BOOTSTAGE_ID_ALLOC, ...) 45 Each time you call bootstage_mark(BOOTSTAGE_ID_ALLOC, ...)
46 a new ID will be allocated from this stash. If you exceed 46 a new ID will be allocated from this stash. If you exceed
47 the limit, recording will stop. 47 the limit, recording will stop.
48 48
49 config BOOTSTAGE_FDT 49 config BOOTSTAGE_FDT
50 bool "Store boot timing information in the OS device tree" 50 bool "Store boot timing information in the OS device tree"
51 depends on BOOTSTAGE 51 depends on BOOTSTAGE
52 help 52 help
53 Stash the bootstage information in the FDT. A root 'bootstage' 53 Stash the bootstage information in the FDT. A root 'bootstage'
54 node is created with each bootstage id as a child. Each child 54 node is created with each bootstage id as a child. Each child
55 has a 'name' property and either 'mark' containing the 55 has a 'name' property and either 'mark' containing the
56 mark time in microseconds, or 'accum' containing the 56 mark time in microseconds, or 'accum' containing the
57 accumulated time for that bootstage id in microseconds. 57 accumulated time for that bootstage id in microseconds.
58 For example: 58 For example:
59 59
60 bootstage { 60 bootstage {
61 154 { 61 154 {
62 name = "board_init_f"; 62 name = "board_init_f";
63 mark = <3575678>; 63 mark = <3575678>;
64 }; 64 };
65 170 { 65 170 {
66 name = "lcd"; 66 name = "lcd";
67 accum = <33482>; 67 accum = <33482>;
68 }; 68 };
69 }; 69 };
70 70
71 Code in the Linux kernel can find this in /proc/devicetree. 71 Code in the Linux kernel can find this in /proc/devicetree.
72 72
73 config BOOTSTAGE_STASH 73 config BOOTSTAGE_STASH
74 bool "Stash the boot timing information in memory before booting OS" 74 bool "Stash the boot timing information in memory before booting OS"
75 depends on BOOTSTAGE 75 depends on BOOTSTAGE
76 help 76 help
77 Some OSes do not support device tree. Bootstage can instead write 77 Some OSes do not support device tree. Bootstage can instead write
78 the boot timing information in a binary format at a given address. 78 the boot timing information in a binary format at a given address.
79 This happens through a call to bootstage_stash(), typically in 79 This happens through a call to bootstage_stash(), typically in
80 the CPU's cleanup_before_linux() function. You can use the 80 the CPU's cleanup_before_linux() function. You can use the
81 'bootstage stash' and 'bootstage unstash' commands to do this on 81 'bootstage stash' and 'bootstage unstash' commands to do this on
82 the command line. 82 the command line.
83 83
84 config BOOTSTAGE_STASH_ADDR 84 config BOOTSTAGE_STASH_ADDR
85 hex "Address to stash boot timing information" 85 hex "Address to stash boot timing information"
86 default 0 86 default 0
87 help 87 help
88 Provide an address which will not be overwritten by the OS when it 88 Provide an address which will not be overwritten by the OS when it
89 starts, so that it can read this information when ready. 89 starts, so that it can read this information when ready.
90 90
91 config BOOTSTAGE_STASH_SIZE 91 config BOOTSTAGE_STASH_SIZE
92 hex "Size of boot timing stash region" 92 hex "Size of boot timing stash region"
93 default 0x1000 93 default 0x1000
94 help 94 help
95 This should be large enough to hold the bootstage stash. A value of 95 This should be large enough to hold the bootstage stash. A value of
96 4096 (4KiB) is normally plenty. 96 4096 (4KiB) is normally plenty.
97 97
98 endmenu 98 endmenu
99 99
100 menu "Boot media" 100 menu "Boot media"
101 101
102 config NOR_BOOT 102 config NOR_BOOT
103 bool "Support for booting from NOR flash" 103 bool "Support for booting from NOR flash"
104 depends on NOR 104 depends on NOR
105 help 105 help
106 Enabling this will make a U-Boot binary that is capable of being 106 Enabling this will make a U-Boot binary that is capable of being
107 booted via NOR. In this case we will enable certain pinmux early 107 booted via NOR. In this case we will enable certain pinmux early
108 as the ROM only partially sets up pinmux. We also default to using 108 as the ROM only partially sets up pinmux. We also default to using
109 NOR for environment. 109 NOR for environment.
110 110
111 config NAND_BOOT 111 config NAND_BOOT
112 bool "Support for booting from NAND flash" 112 bool "Support for booting from NAND flash"
113 default n 113 default n
114 help 114 help
115 Enabling this will make a U-Boot binary that is capable of being 115 Enabling this will make a U-Boot binary that is capable of being
116 booted via NAND flash. This is not a must, some SoCs need this, 116 booted via NAND flash. This is not a must, some SoCs need this,
117 some not. 117 some not.
118 118
119 config ONENAND_BOOT 119 config ONENAND_BOOT
120 bool "Support for booting from ONENAND" 120 bool "Support for booting from ONENAND"
121 default n 121 default n
122 help 122 help
123 Enabling this will make a U-Boot binary that is capable of being 123 Enabling this will make a U-Boot binary that is capable of being
124 booted via ONENAND. This is not a must, some SoCs need this, 124 booted via ONENAND. This is not a must, some SoCs need this,
125 some not. 125 some not.
126 126
127 config QSPI_BOOT 127 config QSPI_BOOT
128 bool "Support for booting from QSPI flash" 128 bool "Support for booting from QSPI flash"
129 default n 129 default n
130 help 130 help
131 Enabling this will make a U-Boot binary that is capable of being 131 Enabling this will make a U-Boot binary that is capable of being
132 booted via QSPI flash. This is not a must, some SoCs need this, 132 booted via QSPI flash. This is not a must, some SoCs need this,
133 some not. 133 some not.
134 134
135 config SATA_BOOT 135 config SATA_BOOT
136 bool "Support for booting from SATA" 136 bool "Support for booting from SATA"
137 default n 137 default n
138 help 138 help
139 Enabling this will make a U-Boot binary that is capable of being 139 Enabling this will make a U-Boot binary that is capable of being
140 booted via SATA. This is not a must, some SoCs need this, 140 booted via SATA. This is not a must, some SoCs need this,
141 some not. 141 some not.
142 142
143 config SD_BOOT 143 config SD_BOOT
144 bool "Support for booting from SD/EMMC" 144 bool "Support for booting from SD/EMMC"
145 default n 145 default n
146 help 146 help
147 Enabling this will make a U-Boot binary that is capable of being 147 Enabling this will make a U-Boot binary that is capable of being
148 booted via SD/EMMC. This is not a must, some SoCs need this, 148 booted via SD/EMMC. This is not a must, some SoCs need this,
149 some not. 149 some not.
150 150
151 config SPI_BOOT 151 config SPI_BOOT
152 bool "Support for booting from SPI flash" 152 bool "Support for booting from SPI flash"
153 default n 153 default n
154 help 154 help
155 Enabling this will make a U-Boot binary that is capable of being 155 Enabling this will make a U-Boot binary that is capable of being
156 booted via SPI flash. This is not a must, some SoCs need this, 156 booted via SPI flash. This is not a must, some SoCs need this,
157 some not. 157 some not.
158 158
159 endmenu 159 endmenu
160 160
161 menu "Environment" 161 menu "Environment"
162 162
163 if ARCH_SUNXI 163 if ARCH_SUNXI
164 164
165 choice 165 choice
166 prompt "Environment Device" 166 prompt "Environment Device"
167 default ENV_IS_IN_MMC if ARCH_SUNXI 167 default ENV_IS_IN_MMC if ARCH_SUNXI
168 168
169 config ENV_IS_IN_MMC 169 config ENV_IS_IN_MMC
170 bool "Environment in an MMC device" 170 bool "Environment in an MMC device"
171 depends on CMD_MMC 171 depends on CMD_MMC
172 help 172 help
173 Define this if you have an MMC device which you want to use for the 173 Define this if you have an MMC device which you want to use for the
174 environment. 174 environment.
175 175
176 config ENV_IS_IN_NAND 176 config ENV_IS_IN_NAND
177 bool "Environment in a NAND device" 177 bool "Environment in a NAND device"
178 depends on CMD_NAND 178 depends on CMD_NAND
179 help 179 help
180 Define this if you have a NAND device which you want to use for the 180 Define this if you have a NAND device which you want to use for the
181 environment. 181 environment.
182 182
183 config ENV_IS_IN_UBI 183 config ENV_IS_IN_UBI
184 bool "Environment in a UBI volume" 184 bool "Environment in a UBI volume"
185 depends on CMD_UBI 185 depends on CMD_UBI
186 depends on CMD_MTDPARTS 186 depends on CMD_MTDPARTS
187 help 187 help
188 Define this if you have a UBI volume which you want to use for the 188 Define this if you have a UBI volume which you want to use for the
189 environment. 189 environment.
190 190
191 config ENV_IS_NOWHERE 191 config ENV_IS_NOWHERE
192 bool "Environment is not stored" 192 bool "Environment is not stored"
193 help 193 help
194 Define this if you don't want to or can't have an environment stored 194 Define this if you don't want to or can't have an environment stored
195 on a storage medium 195 on a storage medium
196 196
197 endchoice 197 endchoice
198 198
199 config ENV_OFFSET 199 config ENV_OFFSET
200 hex "Environment Offset" 200 hex "Environment Offset"
201 depends on !ENV_IS_IN_UBI 201 depends on !ENV_IS_IN_UBI
202 depends on !ENV_IS_NOWHERE 202 depends on !ENV_IS_NOWHERE
203 default 0x88000 if ARCH_SUNXI 203 default 0x88000 if ARCH_SUNXI
204 help 204 help
205 Offset from the start of the device (or partition) 205 Offset from the start of the device (or partition)
206 206
207 config ENV_SIZE 207 config ENV_SIZE
208 hex "Environment Size" 208 hex "Environment Size"
209 depends on !ENV_IS_NOWHERE 209 depends on !ENV_IS_NOWHERE
210 default 0x20000 if ARCH_SUNXI 210 default 0x20000 if ARCH_SUNXI
211 help 211 help
212 Size of the environment storage area 212 Size of the environment storage area
213 213
214 config ENV_UBI_PART 214 config ENV_UBI_PART
215 string "UBI partition name" 215 string "UBI partition name"
216 depends on ENV_IS_IN_UBI 216 depends on ENV_IS_IN_UBI
217 help 217 help
218 MTD partition containing the UBI device 218 MTD partition containing the UBI device
219 219
220 config ENV_UBI_VOLUME 220 config ENV_UBI_VOLUME
221 string "UBI volume name" 221 string "UBI volume name"
222 depends on ENV_IS_IN_UBI 222 depends on ENV_IS_IN_UBI
223 help 223 help
224 Name of the volume that you want to store the environment in. 224 Name of the volume that you want to store the environment in.
225 225
226 endif 226 endif
227 227
228 endmenu 228 endmenu
229 229
230 config BOOTDELAY 230 config BOOTDELAY
231 int "delay in seconds before automatically booting" 231 int "delay in seconds before automatically booting"
232 default 2 232 default 2
233 depends on AUTOBOOT 233 depends on AUTOBOOT
234 help 234 help
235 Delay before automatically running bootcmd; 235 Delay before automatically running bootcmd;
236 set to 0 to autoboot with no delay, but you can stop it by key input. 236 set to 0 to autoboot with no delay, but you can stop it by key input.
237 set to -1 to disable autoboot. 237 set to -1 to disable autoboot.
238 set to -2 to autoboot with no delay and not check for abort 238 set to -2 to autoboot with no delay and not check for abort
239 239
240 See doc/README.autoboot for details. 240 See doc/README.autoboot for details.
241 241
242 menu "Console" 242 menu "Console"
243 243
244 config MENU 244 config MENU
245 bool 245 bool
246 help 246 help
247 This is the library functionality to provide a text-based menu of 247 This is the library functionality to provide a text-based menu of
248 choices for the user to make choices with. 248 choices for the user to make choices with.
249 249
250 config CONSOLE_RECORD 250 config CONSOLE_RECORD
251 bool "Console recording" 251 bool "Console recording"
252 help 252 help
253 This provides a way to record console output (and provide console 253 This provides a way to record console output (and provide console
254 input) through circular buffers. This is mostly useful for testing. 254 input) through circular buffers. This is mostly useful for testing.
255 Console output is recorded even when the console is silent. 255 Console output is recorded even when the console is silent.
256 To enable console recording, call console_record_reset_enable() 256 To enable console recording, call console_record_reset_enable()
257 from your code. 257 from your code.
258 258
259 config CONSOLE_RECORD_OUT_SIZE 259 config CONSOLE_RECORD_OUT_SIZE
260 hex "Output buffer size" 260 hex "Output buffer size"
261 depends on CONSOLE_RECORD 261 depends on CONSOLE_RECORD
262 default 0x400 if CONSOLE_RECORD 262 default 0x400 if CONSOLE_RECORD
263 help 263 help
264 Set the size of the console output buffer. When this fills up, no 264 Set the size of the console output buffer. When this fills up, no
265 more data will be recorded until some is removed. The buffer is 265 more data will be recorded until some is removed. The buffer is
266 allocated immediately after the malloc() region is ready. 266 allocated immediately after the malloc() region is ready.
267 267
268 config CONSOLE_RECORD_IN_SIZE 268 config CONSOLE_RECORD_IN_SIZE
269 hex "Input buffer size" 269 hex "Input buffer size"
270 depends on CONSOLE_RECORD 270 depends on CONSOLE_RECORD
271 default 0x100 if CONSOLE_RECORD 271 default 0x100 if CONSOLE_RECORD
272 help 272 help
273 Set the size of the console input buffer. When this contains data, 273 Set the size of the console input buffer. When this contains data,
274 tstc() and getc() will use this in preference to real device input. 274 tstc() and getc() will use this in preference to real device input.
275 The buffer is allocated immediately after the malloc() region is 275 The buffer is allocated immediately after the malloc() region is
276 ready. 276 ready.
277 277
278 config IDENT_STRING 278 config IDENT_STRING
279 string "Board specific string to be added to uboot version string" 279 string "Board specific string to be added to uboot version string"
280 help 280 help
281 This options adds the board specific name to u-boot version. 281 This options adds the board specific name to u-boot version.
282 282
283 config SILENT_CONSOLE 283 config SILENT_CONSOLE
284 bool "Support a silent console" 284 bool "Support a silent console"
285 help 285 help
286 This option allows the console to be silenced, meaning that no 286 This option allows the console to be silenced, meaning that no
287 output will appear on the console devices. This is controlled by 287 output will appear on the console devices. This is controlled by
288 setting the environment vaariable 'silent' to a non-empty value. 288 setting the environment vaariable 'silent' to a non-empty value.
289 Note this also silences the console when booting Linux. 289 Note this also silences the console when booting Linux.
290 290
291 When the console is set up, the variable is checked, and the 291 When the console is set up, the variable is checked, and the
292 GD_FLG_SILENT flag is set. Changing the environment variable later 292 GD_FLG_SILENT flag is set. Changing the environment variable later
293 will update the flag. 293 will update the flag.
294 294
295 config SILENT_U_BOOT_ONLY 295 config SILENT_U_BOOT_ONLY
296 bool "Only silence the U-Boot console" 296 bool "Only silence the U-Boot console"
297 depends on SILENT_CONSOLE 297 depends on SILENT_CONSOLE
298 help 298 help
299 Normally when the U-Boot console is silenced, Linux's console is 299 Normally when the U-Boot console is silenced, Linux's console is
300 also silenced (assuming the board boots into Linux). This option 300 also silenced (assuming the board boots into Linux). This option
301 allows the linux console to operate normally, even if U-Boot's 301 allows the linux console to operate normally, even if U-Boot's
302 is silenced. 302 is silenced.
303 303
304 config SILENT_CONSOLE_UPDATE_ON_SET 304 config SILENT_CONSOLE_UPDATE_ON_SET
305 bool "Changes to the 'silent' environment variable update immediately" 305 bool "Changes to the 'silent' environment variable update immediately"
306 depends on SILENT_CONSOLE 306 depends on SILENT_CONSOLE
307 default y if SILENT_CONSOLE 307 default y if SILENT_CONSOLE
308 help 308 help
309 When the 'silent' environment variable is changed, update the 309 When the 'silent' environment variable is changed, update the
310 console silence flag immediately. This allows 'setenv' to be used 310 console silence flag immediately. This allows 'setenv' to be used
311 to silence or un-silence the console. 311 to silence or un-silence the console.
312 312
313 The effect is that any change to the variable will affect the 313 The effect is that any change to the variable will affect the
314 GD_FLG_SILENT flag. 314 GD_FLG_SILENT flag.
315 315
316 config SILENT_CONSOLE_UPDATE_ON_RELOC 316 config SILENT_CONSOLE_UPDATE_ON_RELOC
317 bool "Allow flags to take effect on relocation" 317 bool "Allow flags to take effect on relocation"
318 depends on SILENT_CONSOLE 318 depends on SILENT_CONSOLE
319 help 319 help
320 In some cases the environment is not available until relocation 320 In some cases the environment is not available until relocation
321 (e.g. NAND). This option makes the value of the 'silent' 321 (e.g. NAND). This option makes the value of the 'silent'
322 environment variable take effect at relocation. 322 environment variable take effect at relocation.
323 323
324 config PRE_CONSOLE_BUFFER 324 config PRE_CONSOLE_BUFFER
325 bool "Buffer characters before the console is available" 325 bool "Buffer characters before the console is available"
326 help 326 help
327 Prior to the console being initialised (i.e. serial UART 327 Prior to the console being initialised (i.e. serial UART
328 initialised etc) all console output is silently discarded. 328 initialised etc) all console output is silently discarded.
329 Defining CONFIG_PRE_CONSOLE_BUFFER will cause U-Boot to 329 Defining CONFIG_PRE_CONSOLE_BUFFER will cause U-Boot to
330 buffer any console messages prior to the console being 330 buffer any console messages prior to the console being
331 initialised to a buffer. The buffer is a circular buffer, so 331 initialised to a buffer. The buffer is a circular buffer, so
332 if it overflows, earlier output is discarded. 332 if it overflows, earlier output is discarded.
333 333
334 Note that this is not currently supported in SPL. It would be 334 Note that this is not currently supported in SPL. It would be
335 useful to be able to share the pre-console buffer with SPL. 335 useful to be able to share the pre-console buffer with SPL.
336 336
337 config PRE_CON_BUF_SZ 337 config PRE_CON_BUF_SZ
338 int "Sets the size of the pre-console buffer" 338 int "Sets the size of the pre-console buffer"
339 depends on PRE_CONSOLE_BUFFER 339 depends on PRE_CONSOLE_BUFFER
340 default 4096 340 default 4096
341 help 341 help
342 The size of the pre-console buffer affects how much console output 342 The size of the pre-console buffer affects how much console output
343 can be held before it overflows and starts discarding earlier 343 can be held before it overflows and starts discarding earlier
344 output. Normally there is very little output at this early stage, 344 output. Normally there is very little output at this early stage,
345 unless debugging is enabled, so allow enough for ~10 lines of 345 unless debugging is enabled, so allow enough for ~10 lines of
346 text. 346 text.
347 347
348 This is a useful feature if you are using a video console and 348 This is a useful feature if you are using a video console and
349 want to see the full boot output on the console. Without this 349 want to see the full boot output on the console. Without this
350 option only the post-relocation output will be displayed. 350 option only the post-relocation output will be displayed.
351 351
352 config PRE_CON_BUF_ADDR 352 config PRE_CON_BUF_ADDR
353 hex "Address of the pre-console buffer" 353 hex "Address of the pre-console buffer"
354 depends on PRE_CONSOLE_BUFFER 354 depends on PRE_CONSOLE_BUFFER
355 default 0x2f000000 if ARCH_SUNXI && MACH_SUN9I 355 default 0x2f000000 if ARCH_SUNXI && MACH_SUN9I
356 default 0x4f000000 if ARCH_SUNXI && !MACH_SUN9I 356 default 0x4f000000 if ARCH_SUNXI && !MACH_SUN9I
357 help 357 help
358 This sets the start address of the pre-console buffer. This must 358 This sets the start address of the pre-console buffer. This must
359 be in available memory and is accessed before relocation and 359 be in available memory and is accessed before relocation and
360 possibly before DRAM is set up. Therefore choose an address 360 possibly before DRAM is set up. Therefore choose an address
361 carefully. 361 carefully.
362 362
363 We should consider removing this option and allocating the memory 363 We should consider removing this option and allocating the memory
364 in board_init_f_init_reserve() instead. 364 in board_init_f_init_reserve() instead.
365 365
366 config CONSOLE_MUX 366 config CONSOLE_MUX
367 bool "Enable console multiplexing" 367 bool "Enable console multiplexing"
368 default y if DM_VIDEO || VIDEO || LCD 368 default y if DM_VIDEO || VIDEO || LCD
369 help 369 help
370 This allows multiple devices to be used for each console 'file'. 370 This allows multiple devices to be used for each console 'file'.
371 For example, stdout can be set to go to serial and video. 371 For example, stdout can be set to go to serial and video.
372 Similarly, stdin can be set to come from serial and keyboard. 372 Similarly, stdin can be set to come from serial and keyboard.
373 Input can be provided from either source. Console multiplexing 373 Input can be provided from either source. Console multiplexing
374 adds a small amount of size to U-Boot. Changes to the environment 374 adds a small amount of size to U-Boot. Changes to the environment
375 variables stdout, stdin and stderr will take effect immediately. 375 variables stdout, stdin and stderr will take effect immediately.
376 376
377 config SYS_CONSOLE_IS_IN_ENV 377 config SYS_CONSOLE_IS_IN_ENV
378 bool "Select console devices from the environment" 378 bool "Select console devices from the environment"
379 default y if CONSOLE_MUX 379 default y if CONSOLE_MUX
380 help 380 help
381 This allows multiple input/output devices to be set at boot time. 381 This allows multiple input/output devices to be set at boot time.
382 For example, if stdout is set to "serial,video" then output will 382 For example, if stdout is set to "serial,video" then output will
383 be sent to both the serial and video devices on boot. The 383 be sent to both the serial and video devices on boot. The
384 environment variables can be updated after boot to change the 384 environment variables can be updated after boot to change the
385 input/output devices. 385 input/output devices.
386 386
387 config SYS_CONSOLE_OVERWRITE_ROUTINE 387 config SYS_CONSOLE_OVERWRITE_ROUTINE
388 bool "Allow board control over console overwriting" 388 bool "Allow board control over console overwriting"
389 help 389 help
390 If this is enabled, and the board-specific function 390 If this is enabled, and the board-specific function
391 overwrite_console() returns 1, the stdin, stderr and stdout are 391 overwrite_console() returns 1, the stdin, stderr and stdout are
392 switched to the serial port, else the settings in the environment 392 switched to the serial port, else the settings in the environment
393 are used. If this is not enabled, the console will not be switched 393 are used. If this is not enabled, the console will not be switched
394 to serial. 394 to serial.
395 395
396 config SYS_CONSOLE_ENV_OVERWRITE 396 config SYS_CONSOLE_ENV_OVERWRITE
397 bool "Update environment variables during console init" 397 bool "Update environment variables during console init"
398 help 398 help
399 The console environment variables (stdout, stdin, stderr) can be 399 The console environment variables (stdout, stdin, stderr) can be
400 used to determine the correct console devices on start-up. This 400 used to determine the correct console devices on start-up. This
401 option writes the console devices to these variables on console 401 option writes the console devices to these variables on console
402 start-up (after relocation). This causes the environment to be 402 start-up (after relocation). This causes the environment to be
403 updated to match the console devices actually chosen. 403 updated to match the console devices actually chosen.
404 404
405 config SYS_CONSOLE_INFO_QUIET 405 config SYS_CONSOLE_INFO_QUIET
406 bool "Don't display the console devices on boot" 406 bool "Don't display the console devices on boot"
407 help 407 help
408 Normally U-Boot displays the current settings for stdout, stdin 408 Normally U-Boot displays the current settings for stdout, stdin
409 and stderr on boot when the post-relocation console is set up. 409 and stderr on boot when the post-relocation console is set up.
410 Enable this option to supress this output. It can be obtained by 410 Enable this option to supress this output. It can be obtained by
411 calling stdio_print_current_devices() from board code. 411 calling stdio_print_current_devices() from board code.
412 412
413 config SYS_STDIO_DEREGISTER 413 config SYS_STDIO_DEREGISTER
414 bool "Allow deregistering stdio devices" 414 bool "Allow deregistering stdio devices"
415 default y if USB_KEYBOARD 415 default y if USB_KEYBOARD
416 help 416 help
417 Generally there is no need to deregister stdio devices since they 417 Generally there is no need to deregister stdio devices since they
418 are never deactivated. But if a stdio device is used which can be 418 are never deactivated. But if a stdio device is used which can be
419 removed (for example a USB keyboard) then this option can be 419 removed (for example a USB keyboard) then this option can be
420 enabled to ensure this is handled correctly. 420 enabled to ensure this is handled correctly.
421 421
422 endmenu 422 endmenu
423 423
424 config DEFAULT_FDT_FILE 424 config DEFAULT_FDT_FILE
425 string "Default fdt file" 425 string "Default fdt file"
426 help 426 help
427 This option is used to set the default fdt file to boot OS. 427 This option is used to set the default fdt file to boot OS.
428 428
429 config VERSION_VARIABLE 429 config VERSION_VARIABLE
430 bool "add U-Boot environment variable vers" 430 bool "add U-Boot environment variable vers"
431 default n 431 default n
432 help 432 help
433 If this variable is defined, an environment variable 433 If this variable is defined, an environment variable
434 named "ver" is created by U-Boot showing the U-Boot 434 named "ver" is created by U-Boot showing the U-Boot
435 version as printed by the "version" command. 435 version as printed by the "version" command.
436 Any change to this variable will be reverted at the 436 Any change to this variable will be reverted at the
437 next reset. 437 next reset.
438 438
439 config BOARD_LATE_INIT 439 config BOARD_LATE_INIT
440 bool 440 bool
441 help 441 help
442 Sometimes board require some initialization code that might 442 Sometimes board require some initialization code that might
443 require once the actual init done, example saving board specific env, 443 require once the actual init done, example saving board specific env,
444 boot-modes etc. which eventually done at late. 444 boot-modes etc. which eventually done at late.
445 445
446 So this config enable the late init code with the help of board_late_init 446 So this config enable the late init code with the help of board_late_init
447 function which should defined on respective boards. 447 function which should defined on respective boards.
448 448
449 config DISPLAY_CPUINFO 449 config DISPLAY_CPUINFO
450 bool "Display information about the CPU during start up" 450 bool "Display information about the CPU during start up"
451 default y if ARM || NIOS2 || X86 || XTENSA || MPC5xxx 451 default y if ARM || NIOS2 || X86 || XTENSA || MPC5xxx
452 help 452 help
453 Display information about the CPU that U-Boot is running on 453 Display information about the CPU that U-Boot is running on
454 when U-Boot starts up. The function print_cpuinfo() is called 454 when U-Boot starts up. The function print_cpuinfo() is called
455 to do this. 455 to do this.
456 456
457 config DISPLAY_BOARDINFO 457 config DISPLAY_BOARDINFO
458 bool "Display information about the board during start up" 458 bool "Display information about the board during start up"
459 default y if ARM || M68K || MIPS || PPC || XTENSA 459 default y if ARM || M68K || MIPS || PPC || XTENSA
460 help 460 help
461 Display information about the board that U-Boot is running on 461 Display information about the board that U-Boot is running on
462 when U-Boot starts up. The board function checkboard() is called 462 when U-Boot starts up. The board function checkboard() is called
463 to do this. 463 to do this.
464 464
465 menu "Start-up hooks" 465 menu "Start-up hooks"
466 466
467 config ARCH_EARLY_INIT_R 467 config ARCH_EARLY_INIT_R
468 bool "Call arch-specific init soon after relocation" 468 bool "Call arch-specific init soon after relocation"
469 default y if X86 469 default y if X86
470 help 470 help
471 With this option U-Boot will call arch_early_init_r() soon after 471 With this option U-Boot will call arch_early_init_r() soon after
472 relocation. Driver model is running by this point, and the cache 472 relocation. Driver model is running by this point, and the cache
473 is on. Note that board_early_init_r() is called first, if 473 is on. Note that board_early_init_r() is called first, if
474 enabled. This can be used to set up architecture-specific devices. 474 enabled. This can be used to set up architecture-specific devices.
475 475
476 config ARCH_MISC_INIT 476 config ARCH_MISC_INIT
477 bool "Call arch-specific init after relocation, when console is ready" 477 bool "Call arch-specific init after relocation, when console is ready"
478 help 478 help
479 With this option U-Boot will call arch_misc_init() after 479 With this option U-Boot will call arch_misc_init() after
480 relocation to allow miscellaneous arch-dependent initialisation 480 relocation to allow miscellaneous arch-dependent initialisation
481 to be performed. This function should be defined by the board 481 to be performed. This function should be defined by the board
482 and will be called after the console is set up, after relocaiton. 482 and will be called after the console is set up, after relocaiton.
483 483
484 config BOARD_EARLY_INIT_F 484 config BOARD_EARLY_INIT_F
485 bool "Call board-specific init before relocation" 485 bool "Call board-specific init before relocation"
486 default y if X86 486 default y if X86
487 help 487 help
488 Some boards need to perform initialisation as soon as possible 488 Some boards need to perform initialisation as soon as possible
489 after boot. With this option, U-Boot calls board_early_init_f() 489 after boot. With this option, U-Boot calls board_early_init_f()
490 after driver model is ready in the pre-relocation init sequence. 490 after driver model is ready in the pre-relocation init sequence.
491 Note that the normal serial console is not yet set up, but the 491 Note that the normal serial console is not yet set up, but the
492 debug UART will be available if enabled. 492 debug UART will be available if enabled.
493 493
494 endmenu 494 endmenu
495 495
496 menu "Security support" 496 menu "Security support"
497 497
498 config HASH 498 config HASH
499 bool # "Support hashing API (SHA1, SHA256, etc.)" 499 bool # "Support hashing API (SHA1, SHA256, etc.)"
500 help 500 help
501 This provides a way to hash data in memory using various supported 501 This provides a way to hash data in memory using various supported
502 algorithms (such as SHA1, MD5, CRC32). The API is defined in hash.h 502 algorithms (such as SHA1, MD5, CRC32). The API is defined in hash.h
503 and the algorithms it supports are defined in common/hash.c. See 503 and the algorithms it supports are defined in common/hash.c. See
504 also CMD_HASH for command-line access. 504 also CMD_HASH for command-line access.
505 505
506 endmenu 506 endmenu
507 507
508 source "common/spl/Kconfig" 508 source "common/spl/Kconfig"
509 509
configs/sandbox_defconfig
1 CONFIG_SYS_MALLOC_F_LEN=0x2000 1 CONFIG_SYS_MALLOC_F_LEN=0x2000
2 CONFIG_DEFAULT_DEVICE_TREE="sandbox" 2 CONFIG_DEFAULT_DEVICE_TREE="sandbox"
3 CONFIG_DISTRO_DEFAULTS=y 3 CONFIG_DISTRO_DEFAULTS=y
4 CONFIG_FIT=y 4 CONFIG_FIT=y
5 CONFIG_FIT_SIGNATURE=y 5 CONFIG_FIT_SIGNATURE=y
6 CONFIG_FIT_VERBOSE=y 6 CONFIG_FIT_VERBOSE=y
7 CONFIG_SPL_LOAD_FIT=y 7 CONFIG_SPL_LOAD_FIT=y
8 CONFIG_BOOTSTAGE=y 8 CONFIG_BOOTSTAGE=y
9 CONFIG_BOOTSTAGE_REPORT=y 9 CONFIG_BOOTSTAGE_REPORT=y
10 CONFIG_BOOTSTAGE_USER_COUNT=0x20 10 CONFIG_BOOTSTAGE_USER_COUNT=32
11 CONFIG_BOOTSTAGE_FDT=y 11 CONFIG_BOOTSTAGE_FDT=y
12 CONFIG_BOOTSTAGE_STASH=y 12 CONFIG_BOOTSTAGE_STASH=y
13 CONFIG_BOOTSTAGE_STASH_ADDR=0x0 13 CONFIG_BOOTSTAGE_STASH_ADDR=0x0
14 CONFIG_BOOTSTAGE_STASH_SIZE=0x4096 14 CONFIG_BOOTSTAGE_STASH_SIZE=0x4096
15 CONFIG_CONSOLE_RECORD=y 15 CONFIG_CONSOLE_RECORD=y
16 CONFIG_CONSOLE_RECORD_OUT_SIZE=0x1000 16 CONFIG_CONSOLE_RECORD_OUT_SIZE=0x1000
17 CONFIG_SILENT_CONSOLE=y 17 CONFIG_SILENT_CONSOLE=y
18 CONFIG_CMD_CPU=y 18 CONFIG_CMD_CPU=y
19 CONFIG_CMD_LICENSE=y 19 CONFIG_CMD_LICENSE=y
20 CONFIG_CMD_BOOTZ=y 20 CONFIG_CMD_BOOTZ=y
21 # CONFIG_CMD_ELF is not set 21 # CONFIG_CMD_ELF is not set
22 # CONFIG_CMD_IMLS is not set 22 # CONFIG_CMD_IMLS is not set
23 CONFIG_CMD_ASKENV=y 23 CONFIG_CMD_ASKENV=y
24 CONFIG_CMD_GREPENV=y 24 CONFIG_CMD_GREPENV=y
25 CONFIG_CMD_ENV_CALLBACK=y 25 CONFIG_CMD_ENV_CALLBACK=y
26 CONFIG_CMD_ENV_FLAGS=y 26 CONFIG_CMD_ENV_FLAGS=y
27 CONFIG_CMD_MD5SUM=y 27 CONFIG_CMD_MD5SUM=y
28 CONFIG_LOOPW=y 28 CONFIG_LOOPW=y
29 CONFIG_CMD_MEMTEST=y 29 CONFIG_CMD_MEMTEST=y
30 CONFIG_CMD_MX_CYCLIC=y 30 CONFIG_CMD_MX_CYCLIC=y
31 CONFIG_CMD_MEMINFO=y 31 CONFIG_CMD_MEMINFO=y
32 CONFIG_CMD_DEMO=y 32 CONFIG_CMD_DEMO=y
33 CONFIG_CMD_IDE=y 33 CONFIG_CMD_IDE=y
34 CONFIG_CMD_GPT=y 34 CONFIG_CMD_GPT=y
35 CONFIG_CMD_SF=y 35 CONFIG_CMD_SF=y
36 CONFIG_CMD_SPI=y 36 CONFIG_CMD_SPI=y
37 CONFIG_CMD_I2C=y 37 CONFIG_CMD_I2C=y
38 CONFIG_CMD_USB=y 38 CONFIG_CMD_USB=y
39 CONFIG_CMD_REMOTEPROC=y 39 CONFIG_CMD_REMOTEPROC=y
40 CONFIG_CMD_GPIO=y 40 CONFIG_CMD_GPIO=y
41 CONFIG_CMD_TFTPPUT=y 41 CONFIG_CMD_TFTPPUT=y
42 CONFIG_CMD_TFTPSRV=y 42 CONFIG_CMD_TFTPSRV=y
43 CONFIG_CMD_RARP=y 43 CONFIG_CMD_RARP=y
44 CONFIG_CMD_CDP=y 44 CONFIG_CMD_CDP=y
45 CONFIG_CMD_SNTP=y 45 CONFIG_CMD_SNTP=y
46 CONFIG_CMD_DNS=y 46 CONFIG_CMD_DNS=y
47 CONFIG_CMD_LINK_LOCAL=y 47 CONFIG_CMD_LINK_LOCAL=y
48 CONFIG_CMD_ETHSW=y 48 CONFIG_CMD_ETHSW=y
49 CONFIG_CMD_BMP=y 49 CONFIG_CMD_BMP=y
50 CONFIG_CMD_TIME=y 50 CONFIG_CMD_TIME=y
51 CONFIG_CMD_TIMER=y 51 CONFIG_CMD_TIMER=y
52 CONFIG_CMD_SOUND=y 52 CONFIG_CMD_SOUND=y
53 CONFIG_CMD_QFW=y 53 CONFIG_CMD_QFW=y
54 CONFIG_CMD_BOOTSTAGE=y 54 CONFIG_CMD_BOOTSTAGE=y
55 CONFIG_CMD_PMIC=y 55 CONFIG_CMD_PMIC=y
56 CONFIG_CMD_REGULATOR=y 56 CONFIG_CMD_REGULATOR=y
57 CONFIG_CMD_TPM=y 57 CONFIG_CMD_TPM=y
58 CONFIG_CMD_TPM_TEST=y 58 CONFIG_CMD_TPM_TEST=y
59 CONFIG_CMD_CBFS=y 59 CONFIG_CMD_CBFS=y
60 CONFIG_CMD_CRAMFS=y 60 CONFIG_CMD_CRAMFS=y
61 CONFIG_CMD_EXT4_WRITE=y 61 CONFIG_CMD_EXT4_WRITE=y
62 CONFIG_MAC_PARTITION=y 62 CONFIG_MAC_PARTITION=y
63 CONFIG_AMIGA_PARTITION=y 63 CONFIG_AMIGA_PARTITION=y
64 CONFIG_OF_CONTROL=y 64 CONFIG_OF_CONTROL=y
65 CONFIG_OF_LIVE=y 65 CONFIG_OF_LIVE=y
66 CONFIG_OF_HOSTFILE=y 66 CONFIG_OF_HOSTFILE=y
67 CONFIG_NETCONSOLE=y 67 CONFIG_NETCONSOLE=y
68 CONFIG_REGMAP=y 68 CONFIG_REGMAP=y
69 CONFIG_SPL_REGMAP=y 69 CONFIG_SPL_REGMAP=y
70 CONFIG_SYSCON=y 70 CONFIG_SYSCON=y
71 CONFIG_SPL_SYSCON=y 71 CONFIG_SPL_SYSCON=y
72 CONFIG_DEVRES=y 72 CONFIG_DEVRES=y
73 CONFIG_DEBUG_DEVRES=y 73 CONFIG_DEBUG_DEVRES=y
74 CONFIG_ADC=y 74 CONFIG_ADC=y
75 CONFIG_ADC_SANDBOX=y 75 CONFIG_ADC_SANDBOX=y
76 CONFIG_CLK=y 76 CONFIG_CLK=y
77 CONFIG_CPU=y 77 CONFIG_CPU=y
78 CONFIG_DM_DEMO=y 78 CONFIG_DM_DEMO=y
79 CONFIG_DM_DEMO_SIMPLE=y 79 CONFIG_DM_DEMO_SIMPLE=y
80 CONFIG_DM_DEMO_SHAPE=y 80 CONFIG_DM_DEMO_SHAPE=y
81 CONFIG_PM8916_GPIO=y 81 CONFIG_PM8916_GPIO=y
82 CONFIG_SANDBOX_GPIO=y 82 CONFIG_SANDBOX_GPIO=y
83 CONFIG_DM_I2C_COMPAT=y 83 CONFIG_DM_I2C_COMPAT=y
84 CONFIG_I2C_CROS_EC_TUNNEL=y 84 CONFIG_I2C_CROS_EC_TUNNEL=y
85 CONFIG_I2C_CROS_EC_LDO=y 85 CONFIG_I2C_CROS_EC_LDO=y
86 CONFIG_DM_I2C_GPIO=y 86 CONFIG_DM_I2C_GPIO=y
87 CONFIG_SYS_I2C_SANDBOX=y 87 CONFIG_SYS_I2C_SANDBOX=y
88 CONFIG_I2C_MUX=y 88 CONFIG_I2C_MUX=y
89 CONFIG_SPL_I2C_MUX=y 89 CONFIG_SPL_I2C_MUX=y
90 CONFIG_I2C_ARB_GPIO_CHALLENGE=y 90 CONFIG_I2C_ARB_GPIO_CHALLENGE=y
91 CONFIG_CROS_EC_KEYB=y 91 CONFIG_CROS_EC_KEYB=y
92 CONFIG_I8042_KEYB=y 92 CONFIG_I8042_KEYB=y
93 CONFIG_LED=y 93 CONFIG_LED=y
94 CONFIG_LED_BLINK=y 94 CONFIG_LED_BLINK=y
95 CONFIG_LED_GPIO=y 95 CONFIG_LED_GPIO=y
96 CONFIG_DM_MAILBOX=y 96 CONFIG_DM_MAILBOX=y
97 CONFIG_SANDBOX_MBOX=y 97 CONFIG_SANDBOX_MBOX=y
98 CONFIG_MISC=y 98 CONFIG_MISC=y
99 CONFIG_CROS_EC=y 99 CONFIG_CROS_EC=y
100 CONFIG_CROS_EC_I2C=y 100 CONFIG_CROS_EC_I2C=y
101 CONFIG_CROS_EC_LPC=y 101 CONFIG_CROS_EC_LPC=y
102 CONFIG_CROS_EC_SANDBOX=y 102 CONFIG_CROS_EC_SANDBOX=y
103 CONFIG_CROS_EC_SPI=y 103 CONFIG_CROS_EC_SPI=y
104 CONFIG_PWRSEQ=y 104 CONFIG_PWRSEQ=y
105 CONFIG_SPL_PWRSEQ=y 105 CONFIG_SPL_PWRSEQ=y
106 CONFIG_I2C_EEPROM=y 106 CONFIG_I2C_EEPROM=y
107 CONFIG_MMC_SANDBOX=y 107 CONFIG_MMC_SANDBOX=y
108 CONFIG_SPI_FLASH_SANDBOX=y 108 CONFIG_SPI_FLASH_SANDBOX=y
109 CONFIG_SPI_FLASH=y 109 CONFIG_SPI_FLASH=y
110 CONFIG_SPI_FLASH_ATMEL=y 110 CONFIG_SPI_FLASH_ATMEL=y
111 CONFIG_SPI_FLASH_EON=y 111 CONFIG_SPI_FLASH_EON=y
112 CONFIG_SPI_FLASH_GIGADEVICE=y 112 CONFIG_SPI_FLASH_GIGADEVICE=y
113 CONFIG_SPI_FLASH_MACRONIX=y 113 CONFIG_SPI_FLASH_MACRONIX=y
114 CONFIG_SPI_FLASH_SPANSION=y 114 CONFIG_SPI_FLASH_SPANSION=y
115 CONFIG_SPI_FLASH_STMICRO=y 115 CONFIG_SPI_FLASH_STMICRO=y
116 CONFIG_SPI_FLASH_SST=y 116 CONFIG_SPI_FLASH_SST=y
117 CONFIG_SPI_FLASH_WINBOND=y 117 CONFIG_SPI_FLASH_WINBOND=y
118 CONFIG_DM_ETH=y 118 CONFIG_DM_ETH=y
119 CONFIG_PCI=y 119 CONFIG_PCI=y
120 CONFIG_DM_PCI=y 120 CONFIG_DM_PCI=y
121 CONFIG_DM_PCI_COMPAT=y 121 CONFIG_DM_PCI_COMPAT=y
122 CONFIG_PCI_SANDBOX=y 122 CONFIG_PCI_SANDBOX=y
123 CONFIG_PINCTRL=y 123 CONFIG_PINCTRL=y
124 CONFIG_PINCONF=y 124 CONFIG_PINCONF=y
125 CONFIG_PINCTRL_ROCKCHIP_RK3036=y 125 CONFIG_PINCTRL_ROCKCHIP_RK3036=y
126 CONFIG_PINCTRL_ROCKCHIP_RK3288=y 126 CONFIG_PINCTRL_ROCKCHIP_RK3288=y
127 CONFIG_PINCTRL_SANDBOX=y 127 CONFIG_PINCTRL_SANDBOX=y
128 CONFIG_POWER_DOMAIN=y 128 CONFIG_POWER_DOMAIN=y
129 CONFIG_SANDBOX_POWER_DOMAIN=y 129 CONFIG_SANDBOX_POWER_DOMAIN=y
130 CONFIG_DM_PMIC=y 130 CONFIG_DM_PMIC=y
131 CONFIG_PMIC_ACT8846=y 131 CONFIG_PMIC_ACT8846=y
132 CONFIG_DM_PMIC_PFUZE100=y 132 CONFIG_DM_PMIC_PFUZE100=y
133 CONFIG_DM_PMIC_MAX77686=y 133 CONFIG_DM_PMIC_MAX77686=y
134 CONFIG_PMIC_PM8916=y 134 CONFIG_PMIC_PM8916=y
135 CONFIG_PMIC_RK8XX=y 135 CONFIG_PMIC_RK8XX=y
136 CONFIG_PMIC_S2MPS11=y 136 CONFIG_PMIC_S2MPS11=y
137 CONFIG_DM_PMIC_SANDBOX=y 137 CONFIG_DM_PMIC_SANDBOX=y
138 CONFIG_PMIC_S5M8767=y 138 CONFIG_PMIC_S5M8767=y
139 CONFIG_PMIC_TPS65090=y 139 CONFIG_PMIC_TPS65090=y
140 CONFIG_DM_REGULATOR=y 140 CONFIG_DM_REGULATOR=y
141 CONFIG_REGULATOR_ACT8846=y 141 CONFIG_REGULATOR_ACT8846=y
142 CONFIG_DM_REGULATOR_PFUZE100=y 142 CONFIG_DM_REGULATOR_PFUZE100=y
143 CONFIG_DM_REGULATOR_MAX77686=y 143 CONFIG_DM_REGULATOR_MAX77686=y
144 CONFIG_DM_REGULATOR_FIXED=y 144 CONFIG_DM_REGULATOR_FIXED=y
145 CONFIG_REGULATOR_RK8XX=y 145 CONFIG_REGULATOR_RK8XX=y
146 CONFIG_REGULATOR_S5M8767=y 146 CONFIG_REGULATOR_S5M8767=y
147 CONFIG_DM_REGULATOR_SANDBOX=y 147 CONFIG_DM_REGULATOR_SANDBOX=y
148 CONFIG_REGULATOR_TPS65090=y 148 CONFIG_REGULATOR_TPS65090=y
149 CONFIG_DM_PWM=y 149 CONFIG_DM_PWM=y
150 CONFIG_PWM_SANDBOX=y 150 CONFIG_PWM_SANDBOX=y
151 CONFIG_RAM=y 151 CONFIG_RAM=y
152 CONFIG_REMOTEPROC_SANDBOX=y 152 CONFIG_REMOTEPROC_SANDBOX=y
153 CONFIG_DM_RESET=y 153 CONFIG_DM_RESET=y
154 CONFIG_SANDBOX_RESET=y 154 CONFIG_SANDBOX_RESET=y
155 CONFIG_DM_RTC=y 155 CONFIG_DM_RTC=y
156 CONFIG_SANDBOX_SERIAL=y 156 CONFIG_SANDBOX_SERIAL=y
157 CONFIG_SOUND=y 157 CONFIG_SOUND=y
158 CONFIG_SOUND_SANDBOX=y 158 CONFIG_SOUND_SANDBOX=y
159 CONFIG_SANDBOX_SPI=y 159 CONFIG_SANDBOX_SPI=y
160 CONFIG_SPMI=y 160 CONFIG_SPMI=y
161 CONFIG_SPMI_SANDBOX=y 161 CONFIG_SPMI_SANDBOX=y
162 CONFIG_SYSRESET=y 162 CONFIG_SYSRESET=y
163 CONFIG_TIMER=y 163 CONFIG_TIMER=y
164 CONFIG_TIMER_EARLY=y 164 CONFIG_TIMER_EARLY=y
165 CONFIG_SANDBOX_TIMER=y 165 CONFIG_SANDBOX_TIMER=y
166 CONFIG_TPM_TIS_SANDBOX=y 166 CONFIG_TPM_TIS_SANDBOX=y
167 CONFIG_USB=y 167 CONFIG_USB=y
168 CONFIG_DM_USB=y 168 CONFIG_DM_USB=y
169 CONFIG_USB_EMUL=y 169 CONFIG_USB_EMUL=y
170 CONFIG_USB_STORAGE=y 170 CONFIG_USB_STORAGE=y
171 CONFIG_USB_KEYBOARD=y 171 CONFIG_USB_KEYBOARD=y
172 CONFIG_SYS_USB_EVENT_POLL=y 172 CONFIG_SYS_USB_EVENT_POLL=y
173 CONFIG_DM_VIDEO=y 173 CONFIG_DM_VIDEO=y
174 CONFIG_CONSOLE_ROTATION=y 174 CONFIG_CONSOLE_ROTATION=y
175 CONFIG_CONSOLE_TRUETYPE=y 175 CONFIG_CONSOLE_TRUETYPE=y
176 CONFIG_CONSOLE_TRUETYPE_CANTORAONE=y 176 CONFIG_CONSOLE_TRUETYPE_CANTORAONE=y
177 CONFIG_VIDEO_SANDBOX_SDL=y 177 CONFIG_VIDEO_SANDBOX_SDL=y
178 CONFIG_FS_CBFS=y 178 CONFIG_FS_CBFS=y
179 CONFIG_FS_CRAMFS=y 179 CONFIG_FS_CRAMFS=y
180 CONFIG_PHY=y 180 CONFIG_PHY=y
181 CONFIG_PHY_SANDBOX=y 181 CONFIG_PHY_SANDBOX=y
182 CONFIG_CMD_DHRYSTONE=y 182 CONFIG_CMD_DHRYSTONE=y
183 CONFIG_TPM=y 183 CONFIG_TPM=y
184 CONFIG_LZ4=y 184 CONFIG_LZ4=y
185 CONFIG_ERRNO_STR=y 185 CONFIG_ERRNO_STR=y
186 CONFIG_UNIT_TEST=y 186 CONFIG_UNIT_TEST=y
187 CONFIG_UT_TIME=y 187 CONFIG_UT_TIME=y
188 CONFIG_UT_DM=y 188 CONFIG_UT_DM=y
189 CONFIG_UT_ENV=y 189 CONFIG_UT_ENV=y
190 CONFIG_WDT=y 190 CONFIG_WDT=y
191 CONFIG_WDT_SANDBOX=y 191 CONFIG_WDT_SANDBOX=y
192 192
configs/sandbox_flattree_defconfig
1 CONFIG_SYS_MALLOC_F_LEN=0x2000 1 CONFIG_SYS_MALLOC_F_LEN=0x2000
2 CONFIG_DEFAULT_DEVICE_TREE="sandbox" 2 CONFIG_DEFAULT_DEVICE_TREE="sandbox"
3 CONFIG_DISTRO_DEFAULTS=y 3 CONFIG_DISTRO_DEFAULTS=y
4 CONFIG_FIT=y 4 CONFIG_FIT=y
5 CONFIG_FIT_SIGNATURE=y 5 CONFIG_FIT_SIGNATURE=y
6 CONFIG_FIT_VERBOSE=y 6 CONFIG_FIT_VERBOSE=y
7 CONFIG_SPL_LOAD_FIT=y 7 CONFIG_SPL_LOAD_FIT=y
8 CONFIG_BOOTSTAGE=y 8 CONFIG_BOOTSTAGE=y
9 CONFIG_BOOTSTAGE_REPORT=y 9 CONFIG_BOOTSTAGE_REPORT=y
10 CONFIG_BOOTSTAGE_USER_COUNT=0x20 10 CONFIG_BOOTSTAGE_USER_COUNT=32
11 CONFIG_BOOTSTAGE_FDT=y 11 CONFIG_BOOTSTAGE_FDT=y
12 CONFIG_BOOTSTAGE_STASH=y 12 CONFIG_BOOTSTAGE_STASH=y
13 CONFIG_BOOTSTAGE_STASH_ADDR=0x0 13 CONFIG_BOOTSTAGE_STASH_ADDR=0x0
14 CONFIG_BOOTSTAGE_STASH_SIZE=0x4096 14 CONFIG_BOOTSTAGE_STASH_SIZE=0x4096
15 CONFIG_CONSOLE_RECORD=y 15 CONFIG_CONSOLE_RECORD=y
16 CONFIG_CONSOLE_RECORD_OUT_SIZE=0x1000 16 CONFIG_CONSOLE_RECORD_OUT_SIZE=0x1000
17 CONFIG_SILENT_CONSOLE=y 17 CONFIG_SILENT_CONSOLE=y
18 CONFIG_CMD_CPU=y 18 CONFIG_CMD_CPU=y
19 CONFIG_CMD_LICENSE=y 19 CONFIG_CMD_LICENSE=y
20 CONFIG_CMD_BOOTZ=y 20 CONFIG_CMD_BOOTZ=y
21 # CONFIG_CMD_ELF is not set 21 # CONFIG_CMD_ELF is not set
22 # CONFIG_CMD_IMLS is not set 22 # CONFIG_CMD_IMLS is not set
23 CONFIG_CMD_ASKENV=y 23 CONFIG_CMD_ASKENV=y
24 CONFIG_CMD_GREPENV=y 24 CONFIG_CMD_GREPENV=y
25 CONFIG_CMD_MD5SUM=y 25 CONFIG_CMD_MD5SUM=y
26 CONFIG_LOOPW=y 26 CONFIG_LOOPW=y
27 CONFIG_CMD_MEMTEST=y 27 CONFIG_CMD_MEMTEST=y
28 CONFIG_CMD_MX_CYCLIC=y 28 CONFIG_CMD_MX_CYCLIC=y
29 CONFIG_CMD_MEMINFO=y 29 CONFIG_CMD_MEMINFO=y
30 CONFIG_CMD_DEMO=y 30 CONFIG_CMD_DEMO=y
31 CONFIG_CMD_GPT=y 31 CONFIG_CMD_GPT=y
32 CONFIG_CMD_SF=y 32 CONFIG_CMD_SF=y
33 CONFIG_CMD_SPI=y 33 CONFIG_CMD_SPI=y
34 CONFIG_CMD_I2C=y 34 CONFIG_CMD_I2C=y
35 CONFIG_CMD_USB=y 35 CONFIG_CMD_USB=y
36 CONFIG_CMD_REMOTEPROC=y 36 CONFIG_CMD_REMOTEPROC=y
37 CONFIG_CMD_GPIO=y 37 CONFIG_CMD_GPIO=y
38 CONFIG_CMD_TFTPPUT=y 38 CONFIG_CMD_TFTPPUT=y
39 CONFIG_CMD_TFTPSRV=y 39 CONFIG_CMD_TFTPSRV=y
40 CONFIG_CMD_RARP=y 40 CONFIG_CMD_RARP=y
41 CONFIG_CMD_CDP=y 41 CONFIG_CMD_CDP=y
42 CONFIG_CMD_SNTP=y 42 CONFIG_CMD_SNTP=y
43 CONFIG_CMD_DNS=y 43 CONFIG_CMD_DNS=y
44 CONFIG_CMD_LINK_LOCAL=y 44 CONFIG_CMD_LINK_LOCAL=y
45 CONFIG_CMD_TIME=y 45 CONFIG_CMD_TIME=y
46 CONFIG_CMD_TIMER=y 46 CONFIG_CMD_TIMER=y
47 CONFIG_CMD_SOUND=y 47 CONFIG_CMD_SOUND=y
48 CONFIG_CMD_QFW=y 48 CONFIG_CMD_QFW=y
49 CONFIG_CMD_BOOTSTAGE=y 49 CONFIG_CMD_BOOTSTAGE=y
50 CONFIG_CMD_PMIC=y 50 CONFIG_CMD_PMIC=y
51 CONFIG_CMD_REGULATOR=y 51 CONFIG_CMD_REGULATOR=y
52 CONFIG_CMD_TPM=y 52 CONFIG_CMD_TPM=y
53 CONFIG_CMD_TPM_TEST=y 53 CONFIG_CMD_TPM_TEST=y
54 CONFIG_CMD_EXT4_WRITE=y 54 CONFIG_CMD_EXT4_WRITE=y
55 CONFIG_MAC_PARTITION=y 55 CONFIG_MAC_PARTITION=y
56 CONFIG_AMIGA_PARTITION=y 56 CONFIG_AMIGA_PARTITION=y
57 CONFIG_OF_CONTROL=y 57 CONFIG_OF_CONTROL=y
58 CONFIG_OF_HOSTFILE=y 58 CONFIG_OF_HOSTFILE=y
59 CONFIG_NETCONSOLE=y 59 CONFIG_NETCONSOLE=y
60 CONFIG_REGMAP=y 60 CONFIG_REGMAP=y
61 CONFIG_SPL_REGMAP=y 61 CONFIG_SPL_REGMAP=y
62 CONFIG_SYSCON=y 62 CONFIG_SYSCON=y
63 CONFIG_SPL_SYSCON=y 63 CONFIG_SPL_SYSCON=y
64 CONFIG_DEVRES=y 64 CONFIG_DEVRES=y
65 CONFIG_DEBUG_DEVRES=y 65 CONFIG_DEBUG_DEVRES=y
66 CONFIG_ADC=y 66 CONFIG_ADC=y
67 CONFIG_ADC_SANDBOX=y 67 CONFIG_ADC_SANDBOX=y
68 CONFIG_CLK=y 68 CONFIG_CLK=y
69 CONFIG_CPU=y 69 CONFIG_CPU=y
70 CONFIG_DM_DEMO=y 70 CONFIG_DM_DEMO=y
71 CONFIG_DM_DEMO_SIMPLE=y 71 CONFIG_DM_DEMO_SIMPLE=y
72 CONFIG_DM_DEMO_SHAPE=y 72 CONFIG_DM_DEMO_SHAPE=y
73 CONFIG_PM8916_GPIO=y 73 CONFIG_PM8916_GPIO=y
74 CONFIG_SANDBOX_GPIO=y 74 CONFIG_SANDBOX_GPIO=y
75 CONFIG_DM_I2C_COMPAT=y 75 CONFIG_DM_I2C_COMPAT=y
76 CONFIG_I2C_CROS_EC_TUNNEL=y 76 CONFIG_I2C_CROS_EC_TUNNEL=y
77 CONFIG_I2C_CROS_EC_LDO=y 77 CONFIG_I2C_CROS_EC_LDO=y
78 CONFIG_DM_I2C_GPIO=y 78 CONFIG_DM_I2C_GPIO=y
79 CONFIG_SYS_I2C_SANDBOX=y 79 CONFIG_SYS_I2C_SANDBOX=y
80 CONFIG_I2C_MUX=y 80 CONFIG_I2C_MUX=y
81 CONFIG_SPL_I2C_MUX=y 81 CONFIG_SPL_I2C_MUX=y
82 CONFIG_I2C_ARB_GPIO_CHALLENGE=y 82 CONFIG_I2C_ARB_GPIO_CHALLENGE=y
83 CONFIG_CROS_EC_KEYB=y 83 CONFIG_CROS_EC_KEYB=y
84 CONFIG_I8042_KEYB=y 84 CONFIG_I8042_KEYB=y
85 CONFIG_LED=y 85 CONFIG_LED=y
86 CONFIG_LED_BLINK=y 86 CONFIG_LED_BLINK=y
87 CONFIG_LED_GPIO=y 87 CONFIG_LED_GPIO=y
88 CONFIG_DM_MAILBOX=y 88 CONFIG_DM_MAILBOX=y
89 CONFIG_SANDBOX_MBOX=y 89 CONFIG_SANDBOX_MBOX=y
90 CONFIG_MISC=y 90 CONFIG_MISC=y
91 CONFIG_CROS_EC=y 91 CONFIG_CROS_EC=y
92 CONFIG_CROS_EC_I2C=y 92 CONFIG_CROS_EC_I2C=y
93 CONFIG_CROS_EC_LPC=y 93 CONFIG_CROS_EC_LPC=y
94 CONFIG_CROS_EC_SANDBOX=y 94 CONFIG_CROS_EC_SANDBOX=y
95 CONFIG_CROS_EC_SPI=y 95 CONFIG_CROS_EC_SPI=y
96 CONFIG_PWRSEQ=y 96 CONFIG_PWRSEQ=y
97 CONFIG_SPL_PWRSEQ=y 97 CONFIG_SPL_PWRSEQ=y
98 CONFIG_I2C_EEPROM=y 98 CONFIG_I2C_EEPROM=y
99 CONFIG_MMC_SANDBOX=y 99 CONFIG_MMC_SANDBOX=y
100 CONFIG_SPI_FLASH_SANDBOX=y 100 CONFIG_SPI_FLASH_SANDBOX=y
101 CONFIG_SPI_FLASH=y 101 CONFIG_SPI_FLASH=y
102 CONFIG_SPI_FLASH_ATMEL=y 102 CONFIG_SPI_FLASH_ATMEL=y
103 CONFIG_SPI_FLASH_EON=y 103 CONFIG_SPI_FLASH_EON=y
104 CONFIG_SPI_FLASH_GIGADEVICE=y 104 CONFIG_SPI_FLASH_GIGADEVICE=y
105 CONFIG_SPI_FLASH_MACRONIX=y 105 CONFIG_SPI_FLASH_MACRONIX=y
106 CONFIG_SPI_FLASH_SPANSION=y 106 CONFIG_SPI_FLASH_SPANSION=y
107 CONFIG_SPI_FLASH_STMICRO=y 107 CONFIG_SPI_FLASH_STMICRO=y
108 CONFIG_SPI_FLASH_SST=y 108 CONFIG_SPI_FLASH_SST=y
109 CONFIG_SPI_FLASH_WINBOND=y 109 CONFIG_SPI_FLASH_WINBOND=y
110 CONFIG_DM_ETH=y 110 CONFIG_DM_ETH=y
111 CONFIG_PCI=y 111 CONFIG_PCI=y
112 CONFIG_DM_PCI=y 112 CONFIG_DM_PCI=y
113 CONFIG_DM_PCI_COMPAT=y 113 CONFIG_DM_PCI_COMPAT=y
114 CONFIG_PCI_SANDBOX=y 114 CONFIG_PCI_SANDBOX=y
115 CONFIG_PINCTRL=y 115 CONFIG_PINCTRL=y
116 CONFIG_PINCONF=y 116 CONFIG_PINCONF=y
117 CONFIG_PINCTRL_ROCKCHIP_RK3036=y 117 CONFIG_PINCTRL_ROCKCHIP_RK3036=y
118 CONFIG_PINCTRL_ROCKCHIP_RK3288=y 118 CONFIG_PINCTRL_ROCKCHIP_RK3288=y
119 CONFIG_PINCTRL_SANDBOX=y 119 CONFIG_PINCTRL_SANDBOX=y
120 CONFIG_POWER_DOMAIN=y 120 CONFIG_POWER_DOMAIN=y
121 CONFIG_SANDBOX_POWER_DOMAIN=y 121 CONFIG_SANDBOX_POWER_DOMAIN=y
122 CONFIG_DM_PMIC=y 122 CONFIG_DM_PMIC=y
123 CONFIG_PMIC_ACT8846=y 123 CONFIG_PMIC_ACT8846=y
124 CONFIG_DM_PMIC_PFUZE100=y 124 CONFIG_DM_PMIC_PFUZE100=y
125 CONFIG_DM_PMIC_MAX77686=y 125 CONFIG_DM_PMIC_MAX77686=y
126 CONFIG_PMIC_PM8916=y 126 CONFIG_PMIC_PM8916=y
127 CONFIG_PMIC_RK808=y 127 CONFIG_PMIC_RK808=y
128 CONFIG_PMIC_S2MPS11=y 128 CONFIG_PMIC_S2MPS11=y
129 CONFIG_DM_PMIC_SANDBOX=y 129 CONFIG_DM_PMIC_SANDBOX=y
130 CONFIG_PMIC_S5M8767=y 130 CONFIG_PMIC_S5M8767=y
131 CONFIG_PMIC_TPS65090=y 131 CONFIG_PMIC_TPS65090=y
132 CONFIG_DM_REGULATOR=y 132 CONFIG_DM_REGULATOR=y
133 CONFIG_REGULATOR_ACT8846=y 133 CONFIG_REGULATOR_ACT8846=y
134 CONFIG_DM_REGULATOR_PFUZE100=y 134 CONFIG_DM_REGULATOR_PFUZE100=y
135 CONFIG_DM_REGULATOR_MAX77686=y 135 CONFIG_DM_REGULATOR_MAX77686=y
136 CONFIG_DM_REGULATOR_FIXED=y 136 CONFIG_DM_REGULATOR_FIXED=y
137 CONFIG_REGULATOR_RK808=y 137 CONFIG_REGULATOR_RK808=y
138 CONFIG_REGULATOR_S5M8767=y 138 CONFIG_REGULATOR_S5M8767=y
139 CONFIG_DM_REGULATOR_SANDBOX=y 139 CONFIG_DM_REGULATOR_SANDBOX=y
140 CONFIG_REGULATOR_TPS65090=y 140 CONFIG_REGULATOR_TPS65090=y
141 CONFIG_RAM=y 141 CONFIG_RAM=y
142 CONFIG_REMOTEPROC_SANDBOX=y 142 CONFIG_REMOTEPROC_SANDBOX=y
143 CONFIG_DM_RESET=y 143 CONFIG_DM_RESET=y
144 CONFIG_SANDBOX_RESET=y 144 CONFIG_SANDBOX_RESET=y
145 CONFIG_DM_RTC=y 145 CONFIG_DM_RTC=y
146 CONFIG_SANDBOX_SERIAL=y 146 CONFIG_SANDBOX_SERIAL=y
147 CONFIG_SOUND=y 147 CONFIG_SOUND=y
148 CONFIG_SOUND_SANDBOX=y 148 CONFIG_SOUND_SANDBOX=y
149 CONFIG_SANDBOX_SPI=y 149 CONFIG_SANDBOX_SPI=y
150 CONFIG_SPMI=y 150 CONFIG_SPMI=y
151 CONFIG_SPMI_SANDBOX=y 151 CONFIG_SPMI_SANDBOX=y
152 CONFIG_SYSRESET=y 152 CONFIG_SYSRESET=y
153 CONFIG_TIMER=y 153 CONFIG_TIMER=y
154 CONFIG_TIMER_EARLY=y 154 CONFIG_TIMER_EARLY=y
155 CONFIG_SANDBOX_TIMER=y 155 CONFIG_SANDBOX_TIMER=y
156 CONFIG_TPM_TIS_SANDBOX=y 156 CONFIG_TPM_TIS_SANDBOX=y
157 CONFIG_USB=y 157 CONFIG_USB=y
158 CONFIG_DM_USB=y 158 CONFIG_DM_USB=y
159 CONFIG_USB_EMUL=y 159 CONFIG_USB_EMUL=y
160 CONFIG_USB_STORAGE=y 160 CONFIG_USB_STORAGE=y
161 CONFIG_USB_KEYBOARD=y 161 CONFIG_USB_KEYBOARD=y
162 CONFIG_SYS_USB_EVENT_POLL=y 162 CONFIG_SYS_USB_EVENT_POLL=y
163 CONFIG_DM_VIDEO=y 163 CONFIG_DM_VIDEO=y
164 CONFIG_CONSOLE_ROTATION=y 164 CONFIG_CONSOLE_ROTATION=y
165 CONFIG_CONSOLE_TRUETYPE=y 165 CONFIG_CONSOLE_TRUETYPE=y
166 CONFIG_CONSOLE_TRUETYPE_CANTORAONE=y 166 CONFIG_CONSOLE_TRUETYPE_CANTORAONE=y
167 CONFIG_VIDEO_SANDBOX_SDL=y 167 CONFIG_VIDEO_SANDBOX_SDL=y
168 CONFIG_PHY=y 168 CONFIG_PHY=y
169 CONFIG_PHY_SANDBOX=y 169 CONFIG_PHY_SANDBOX=y
170 CONFIG_CMD_DHRYSTONE=y 170 CONFIG_CMD_DHRYSTONE=y
171 CONFIG_TPM=y 171 CONFIG_TPM=y
172 CONFIG_LZ4=y 172 CONFIG_LZ4=y
173 CONFIG_ERRNO_STR=y 173 CONFIG_ERRNO_STR=y
174 CONFIG_UNIT_TEST=y 174 CONFIG_UNIT_TEST=y
175 CONFIG_UT_TIME=y 175 CONFIG_UT_TIME=y
176 CONFIG_UT_DM=y 176 CONFIG_UT_DM=y
177 CONFIG_UT_ENV=y 177 CONFIG_UT_ENV=y
178 CONFIG_DM_PWM=y 178 CONFIG_DM_PWM=y
179 CONFIG_PWM_SANDBOX=y 179 CONFIG_PWM_SANDBOX=y
180 180
configs/sandbox_noblk_defconfig
1 CONFIG_SYS_MALLOC_F_LEN=0x2000 1 CONFIG_SYS_MALLOC_F_LEN=0x2000
2 CONFIG_DEFAULT_DEVICE_TREE="sandbox" 2 CONFIG_DEFAULT_DEVICE_TREE="sandbox"
3 CONFIG_FIT=y 3 CONFIG_FIT=y
4 CONFIG_FIT_SIGNATURE=y 4 CONFIG_FIT_SIGNATURE=y
5 CONFIG_FIT_VERBOSE=y 5 CONFIG_FIT_VERBOSE=y
6 CONFIG_SPL_LOAD_FIT=y 6 CONFIG_SPL_LOAD_FIT=y
7 CONFIG_BOOTSTAGE=y 7 CONFIG_BOOTSTAGE=y
8 CONFIG_BOOTSTAGE_REPORT=y 8 CONFIG_BOOTSTAGE_REPORT=y
9 CONFIG_BOOTSTAGE_USER_COUNT=0x20 9 CONFIG_BOOTSTAGE_USER_COUNT=32
10 CONFIG_BOOTSTAGE_FDT=y 10 CONFIG_BOOTSTAGE_FDT=y
11 CONFIG_BOOTSTAGE_STASH=y 11 CONFIG_BOOTSTAGE_STASH=y
12 CONFIG_BOOTSTAGE_STASH_ADDR=0x0 12 CONFIG_BOOTSTAGE_STASH_ADDR=0x0
13 CONFIG_BOOTSTAGE_STASH_SIZE=0x4096 13 CONFIG_BOOTSTAGE_STASH_SIZE=0x4096
14 CONFIG_CONSOLE_RECORD=y 14 CONFIG_CONSOLE_RECORD=y
15 CONFIG_CONSOLE_RECORD_OUT_SIZE=0x1000 15 CONFIG_CONSOLE_RECORD_OUT_SIZE=0x1000
16 CONFIG_SILENT_CONSOLE=y 16 CONFIG_SILENT_CONSOLE=y
17 CONFIG_HUSH_PARSER=y 17 CONFIG_HUSH_PARSER=y
18 CONFIG_CMD_CPU=y 18 CONFIG_CMD_CPU=y
19 CONFIG_CMD_LICENSE=y 19 CONFIG_CMD_LICENSE=y
20 CONFIG_CMD_BOOTZ=y 20 CONFIG_CMD_BOOTZ=y
21 # CONFIG_CMD_ELF is not set 21 # CONFIG_CMD_ELF is not set
22 # CONFIG_CMD_IMLS is not set 22 # CONFIG_CMD_IMLS is not set
23 CONFIG_CMD_ASKENV=y 23 CONFIG_CMD_ASKENV=y
24 CONFIG_CMD_GREPENV=y 24 CONFIG_CMD_GREPENV=y
25 CONFIG_CMD_ENV_CALLBACK=y 25 CONFIG_CMD_ENV_CALLBACK=y
26 CONFIG_CMD_ENV_FLAGS=y 26 CONFIG_CMD_ENV_FLAGS=y
27 CONFIG_CMD_MD5SUM=y 27 CONFIG_CMD_MD5SUM=y
28 CONFIG_LOOPW=y 28 CONFIG_LOOPW=y
29 CONFIG_CMD_MEMTEST=y 29 CONFIG_CMD_MEMTEST=y
30 CONFIG_CMD_MX_CYCLIC=y 30 CONFIG_CMD_MX_CYCLIC=y
31 CONFIG_CMD_MEMINFO=y 31 CONFIG_CMD_MEMINFO=y
32 CONFIG_CMD_DEMO=y 32 CONFIG_CMD_DEMO=y
33 CONFIG_CMD_IDE=y 33 CONFIG_CMD_IDE=y
34 CONFIG_CMD_GPT=y 34 CONFIG_CMD_GPT=y
35 CONFIG_CMD_PART=y 35 CONFIG_CMD_PART=y
36 CONFIG_CMD_SF=y 36 CONFIG_CMD_SF=y
37 CONFIG_CMD_SPI=y 37 CONFIG_CMD_SPI=y
38 CONFIG_CMD_I2C=y 38 CONFIG_CMD_I2C=y
39 CONFIG_CMD_USB=y 39 CONFIG_CMD_USB=y
40 CONFIG_CMD_REMOTEPROC=y 40 CONFIG_CMD_REMOTEPROC=y
41 CONFIG_CMD_GPIO=y 41 CONFIG_CMD_GPIO=y
42 CONFIG_CMD_TFTPPUT=y 42 CONFIG_CMD_TFTPPUT=y
43 CONFIG_CMD_TFTPSRV=y 43 CONFIG_CMD_TFTPSRV=y
44 CONFIG_CMD_RARP=y 44 CONFIG_CMD_RARP=y
45 CONFIG_CMD_DHCP=y 45 CONFIG_CMD_DHCP=y
46 CONFIG_CMD_MII=y 46 CONFIG_CMD_MII=y
47 CONFIG_CMD_PING=y 47 CONFIG_CMD_PING=y
48 CONFIG_CMD_CDP=y 48 CONFIG_CMD_CDP=y
49 CONFIG_CMD_SNTP=y 49 CONFIG_CMD_SNTP=y
50 CONFIG_CMD_DNS=y 50 CONFIG_CMD_DNS=y
51 CONFIG_CMD_LINK_LOCAL=y 51 CONFIG_CMD_LINK_LOCAL=y
52 CONFIG_CMD_BMP=y 52 CONFIG_CMD_BMP=y
53 CONFIG_CMD_TIME=y 53 CONFIG_CMD_TIME=y
54 CONFIG_CMD_TIMER=y 54 CONFIG_CMD_TIMER=y
55 CONFIG_CMD_SOUND=y 55 CONFIG_CMD_SOUND=y
56 CONFIG_CMD_BOOTSTAGE=y 56 CONFIG_CMD_BOOTSTAGE=y
57 CONFIG_CMD_PMIC=y 57 CONFIG_CMD_PMIC=y
58 CONFIG_CMD_REGULATOR=y 58 CONFIG_CMD_REGULATOR=y
59 CONFIG_CMD_TPM=y 59 CONFIG_CMD_TPM=y
60 CONFIG_CMD_TPM_TEST=y 60 CONFIG_CMD_TPM_TEST=y
61 CONFIG_CMD_CBFS=y 61 CONFIG_CMD_CBFS=y
62 CONFIG_CMD_CRAMFS=y 62 CONFIG_CMD_CRAMFS=y
63 CONFIG_CMD_EXT2=y 63 CONFIG_CMD_EXT2=y
64 CONFIG_CMD_EXT4=y 64 CONFIG_CMD_EXT4=y
65 CONFIG_CMD_EXT4_WRITE=y 65 CONFIG_CMD_EXT4_WRITE=y
66 CONFIG_CMD_FAT=y 66 CONFIG_CMD_FAT=y
67 CONFIG_CMD_FS_GENERIC=y 67 CONFIG_CMD_FS_GENERIC=y
68 CONFIG_MAC_PARTITION=y 68 CONFIG_MAC_PARTITION=y
69 CONFIG_ISO_PARTITION=y 69 CONFIG_ISO_PARTITION=y
70 CONFIG_AMIGA_PARTITION=y 70 CONFIG_AMIGA_PARTITION=y
71 CONFIG_OF_CONTROL=y 71 CONFIG_OF_CONTROL=y
72 CONFIG_OF_HOSTFILE=y 72 CONFIG_OF_HOSTFILE=y
73 CONFIG_NETCONSOLE=y 73 CONFIG_NETCONSOLE=y
74 CONFIG_REGMAP=y 74 CONFIG_REGMAP=y
75 CONFIG_SPL_REGMAP=y 75 CONFIG_SPL_REGMAP=y
76 CONFIG_SYSCON=y 76 CONFIG_SYSCON=y
77 CONFIG_SPL_SYSCON=y 77 CONFIG_SPL_SYSCON=y
78 CONFIG_DEVRES=y 78 CONFIG_DEVRES=y
79 CONFIG_DEBUG_DEVRES=y 79 CONFIG_DEBUG_DEVRES=y
80 CONFIG_ADC=y 80 CONFIG_ADC=y
81 CONFIG_ADC_SANDBOX=y 81 CONFIG_ADC_SANDBOX=y
82 # CONFIG_BLK is not set 82 # CONFIG_BLK is not set
83 CONFIG_CLK=y 83 CONFIG_CLK=y
84 CONFIG_CPU=y 84 CONFIG_CPU=y
85 CONFIG_DM_DEMO=y 85 CONFIG_DM_DEMO=y
86 CONFIG_DM_DEMO_SIMPLE=y 86 CONFIG_DM_DEMO_SIMPLE=y
87 CONFIG_DM_DEMO_SHAPE=y 87 CONFIG_DM_DEMO_SHAPE=y
88 CONFIG_PM8916_GPIO=y 88 CONFIG_PM8916_GPIO=y
89 CONFIG_SANDBOX_GPIO=y 89 CONFIG_SANDBOX_GPIO=y
90 CONFIG_DM_I2C_COMPAT=y 90 CONFIG_DM_I2C_COMPAT=y
91 CONFIG_I2C_CROS_EC_TUNNEL=y 91 CONFIG_I2C_CROS_EC_TUNNEL=y
92 CONFIG_I2C_CROS_EC_LDO=y 92 CONFIG_I2C_CROS_EC_LDO=y
93 CONFIG_DM_I2C_GPIO=y 93 CONFIG_DM_I2C_GPIO=y
94 CONFIG_SYS_I2C_SANDBOX=y 94 CONFIG_SYS_I2C_SANDBOX=y
95 CONFIG_I2C_MUX=y 95 CONFIG_I2C_MUX=y
96 CONFIG_SPL_I2C_MUX=y 96 CONFIG_SPL_I2C_MUX=y
97 CONFIG_I2C_ARB_GPIO_CHALLENGE=y 97 CONFIG_I2C_ARB_GPIO_CHALLENGE=y
98 CONFIG_CROS_EC_KEYB=y 98 CONFIG_CROS_EC_KEYB=y
99 CONFIG_I8042_KEYB=y 99 CONFIG_I8042_KEYB=y
100 CONFIG_LED=y 100 CONFIG_LED=y
101 CONFIG_LED_BLINK=y 101 CONFIG_LED_BLINK=y
102 CONFIG_LED_GPIO=y 102 CONFIG_LED_GPIO=y
103 CONFIG_CROS_EC=y 103 CONFIG_CROS_EC=y
104 CONFIG_CROS_EC_I2C=y 104 CONFIG_CROS_EC_I2C=y
105 CONFIG_CROS_EC_LPC=y 105 CONFIG_CROS_EC_LPC=y
106 CONFIG_CROS_EC_SANDBOX=y 106 CONFIG_CROS_EC_SANDBOX=y
107 CONFIG_CROS_EC_SPI=y 107 CONFIG_CROS_EC_SPI=y
108 CONFIG_PWRSEQ=y 108 CONFIG_PWRSEQ=y
109 CONFIG_SPL_PWRSEQ=y 109 CONFIG_SPL_PWRSEQ=y
110 # CONFIG_MMC is not set 110 # CONFIG_MMC is not set
111 CONFIG_SPI_FLASH_SANDBOX=y 111 CONFIG_SPI_FLASH_SANDBOX=y
112 CONFIG_SPI_FLASH=y 112 CONFIG_SPI_FLASH=y
113 CONFIG_SPI_FLASH_ATMEL=y 113 CONFIG_SPI_FLASH_ATMEL=y
114 CONFIG_SPI_FLASH_EON=y 114 CONFIG_SPI_FLASH_EON=y
115 CONFIG_SPI_FLASH_GIGADEVICE=y 115 CONFIG_SPI_FLASH_GIGADEVICE=y
116 CONFIG_SPI_FLASH_MACRONIX=y 116 CONFIG_SPI_FLASH_MACRONIX=y
117 CONFIG_SPI_FLASH_SPANSION=y 117 CONFIG_SPI_FLASH_SPANSION=y
118 CONFIG_SPI_FLASH_STMICRO=y 118 CONFIG_SPI_FLASH_STMICRO=y
119 CONFIG_SPI_FLASH_SST=y 119 CONFIG_SPI_FLASH_SST=y
120 CONFIG_SPI_FLASH_WINBOND=y 120 CONFIG_SPI_FLASH_WINBOND=y
121 CONFIG_DM_ETH=y 121 CONFIG_DM_ETH=y
122 CONFIG_PCI=y 122 CONFIG_PCI=y
123 CONFIG_DM_PCI=y 123 CONFIG_DM_PCI=y
124 CONFIG_DM_PCI_COMPAT=y 124 CONFIG_DM_PCI_COMPAT=y
125 CONFIG_PCI_SANDBOX=y 125 CONFIG_PCI_SANDBOX=y
126 CONFIG_PINCTRL=y 126 CONFIG_PINCTRL=y
127 CONFIG_PINCONF=y 127 CONFIG_PINCONF=y
128 CONFIG_PINCTRL_ROCKCHIP_RK3036=y 128 CONFIG_PINCTRL_ROCKCHIP_RK3036=y
129 CONFIG_PINCTRL_ROCKCHIP_RK3288=y 129 CONFIG_PINCTRL_ROCKCHIP_RK3288=y
130 CONFIG_PINCTRL_SANDBOX=y 130 CONFIG_PINCTRL_SANDBOX=y
131 CONFIG_DM_PMIC=y 131 CONFIG_DM_PMIC=y
132 CONFIG_PMIC_ACT8846=y 132 CONFIG_PMIC_ACT8846=y
133 CONFIG_DM_PMIC_PFUZE100=y 133 CONFIG_DM_PMIC_PFUZE100=y
134 CONFIG_DM_PMIC_MAX77686=y 134 CONFIG_DM_PMIC_MAX77686=y
135 CONFIG_PMIC_PM8916=y 135 CONFIG_PMIC_PM8916=y
136 CONFIG_PMIC_RK8XX=y 136 CONFIG_PMIC_RK8XX=y
137 CONFIG_PMIC_S2MPS11=y 137 CONFIG_PMIC_S2MPS11=y
138 CONFIG_DM_PMIC_SANDBOX=y 138 CONFIG_DM_PMIC_SANDBOX=y
139 CONFIG_PMIC_S5M8767=y 139 CONFIG_PMIC_S5M8767=y
140 CONFIG_PMIC_TPS65090=y 140 CONFIG_PMIC_TPS65090=y
141 CONFIG_DM_REGULATOR=y 141 CONFIG_DM_REGULATOR=y
142 CONFIG_REGULATOR_ACT8846=y 142 CONFIG_REGULATOR_ACT8846=y
143 CONFIG_DM_REGULATOR_PFUZE100=y 143 CONFIG_DM_REGULATOR_PFUZE100=y
144 CONFIG_DM_REGULATOR_MAX77686=y 144 CONFIG_DM_REGULATOR_MAX77686=y
145 CONFIG_DM_REGULATOR_FIXED=y 145 CONFIG_DM_REGULATOR_FIXED=y
146 CONFIG_REGULATOR_RK8XX=y 146 CONFIG_REGULATOR_RK8XX=y
147 CONFIG_REGULATOR_S5M8767=y 147 CONFIG_REGULATOR_S5M8767=y
148 CONFIG_DM_REGULATOR_SANDBOX=y 148 CONFIG_DM_REGULATOR_SANDBOX=y
149 CONFIG_REGULATOR_TPS65090=y 149 CONFIG_REGULATOR_TPS65090=y
150 CONFIG_DM_PWM=y 150 CONFIG_DM_PWM=y
151 CONFIG_PWM_SANDBOX=y 151 CONFIG_PWM_SANDBOX=y
152 CONFIG_RAM=y 152 CONFIG_RAM=y
153 CONFIG_REMOTEPROC_SANDBOX=y 153 CONFIG_REMOTEPROC_SANDBOX=y
154 CONFIG_DM_RTC=y 154 CONFIG_DM_RTC=y
155 CONFIG_SANDBOX_SERIAL=y 155 CONFIG_SANDBOX_SERIAL=y
156 CONFIG_SOUND=y 156 CONFIG_SOUND=y
157 CONFIG_SOUND_SANDBOX=y 157 CONFIG_SOUND_SANDBOX=y
158 CONFIG_SANDBOX_SPI=y 158 CONFIG_SANDBOX_SPI=y
159 CONFIG_SPMI=y 159 CONFIG_SPMI=y
160 CONFIG_SPMI_SANDBOX=y 160 CONFIG_SPMI_SANDBOX=y
161 CONFIG_SYSRESET=y 161 CONFIG_SYSRESET=y
162 CONFIG_TIMER=y 162 CONFIG_TIMER=y
163 CONFIG_TIMER_EARLY=y 163 CONFIG_TIMER_EARLY=y
164 CONFIG_SANDBOX_TIMER=y 164 CONFIG_SANDBOX_TIMER=y
165 CONFIG_TPM_TIS_SANDBOX=y 165 CONFIG_TPM_TIS_SANDBOX=y
166 CONFIG_USB=y 166 CONFIG_USB=y
167 CONFIG_DM_USB=y 167 CONFIG_DM_USB=y
168 CONFIG_USB_EMUL=y 168 CONFIG_USB_EMUL=y
169 CONFIG_USB_STORAGE=y 169 CONFIG_USB_STORAGE=y
170 CONFIG_USB_KEYBOARD=y 170 CONFIG_USB_KEYBOARD=y
171 CONFIG_SYS_USB_EVENT_POLL=y 171 CONFIG_SYS_USB_EVENT_POLL=y
172 CONFIG_DM_VIDEO=y 172 CONFIG_DM_VIDEO=y
173 CONFIG_CONSOLE_ROTATION=y 173 CONFIG_CONSOLE_ROTATION=y
174 CONFIG_CONSOLE_TRUETYPE=y 174 CONFIG_CONSOLE_TRUETYPE=y
175 CONFIG_CONSOLE_TRUETYPE_CANTORAONE=y 175 CONFIG_CONSOLE_TRUETYPE_CANTORAONE=y
176 CONFIG_VIDEO_SANDBOX_SDL=y 176 CONFIG_VIDEO_SANDBOX_SDL=y
177 CONFIG_FS_CBFS=y 177 CONFIG_FS_CBFS=y
178 CONFIG_FS_CRAMFS=y 178 CONFIG_FS_CRAMFS=y
179 CONFIG_PHY=y 179 CONFIG_PHY=y
180 CONFIG_PHY_SANDBOX=y 180 CONFIG_PHY_SANDBOX=y
181 CONFIG_CMD_DHRYSTONE=y 181 CONFIG_CMD_DHRYSTONE=y
182 CONFIG_TPM=y 182 CONFIG_TPM=y
183 CONFIG_LZ4=y 183 CONFIG_LZ4=y
184 CONFIG_ERRNO_STR=y 184 CONFIG_ERRNO_STR=y
185 CONFIG_UNIT_TEST=y 185 CONFIG_UNIT_TEST=y
186 CONFIG_UT_TIME=y 186 CONFIG_UT_TIME=y
187 CONFIG_UT_DM=y 187 CONFIG_UT_DM=y
188 CONFIG_UT_ENV=y 188 CONFIG_UT_ENV=y
189 189
configs/sandbox_spl_defconfig
1 CONFIG_SPL_LIBCOMMON_SUPPORT=y 1 CONFIG_SPL_LIBCOMMON_SUPPORT=y
2 CONFIG_SPL_LIBGENERIC_SUPPORT=y 2 CONFIG_SPL_LIBGENERIC_SUPPORT=y
3 CONFIG_SYS_MALLOC_F_LEN=0x2000 3 CONFIG_SYS_MALLOC_F_LEN=0x2000
4 CONFIG_SPL_SERIAL_SUPPORT=y 4 CONFIG_SPL_SERIAL_SUPPORT=y
5 CONFIG_SPL_DRIVERS_MISC_SUPPORT=y 5 CONFIG_SPL_DRIVERS_MISC_SUPPORT=y
6 CONFIG_SANDBOX_SPL=y 6 CONFIG_SANDBOX_SPL=y
7 CONFIG_DEFAULT_DEVICE_TREE="sandbox" 7 CONFIG_DEFAULT_DEVICE_TREE="sandbox"
8 CONFIG_DISTRO_DEFAULTS=y 8 CONFIG_DISTRO_DEFAULTS=y
9 CONFIG_FIT=y 9 CONFIG_FIT=y
10 CONFIG_FIT_SIGNATURE=y 10 CONFIG_FIT_SIGNATURE=y
11 CONFIG_FIT_VERBOSE=y 11 CONFIG_FIT_VERBOSE=y
12 CONFIG_SPL_LOAD_FIT=y 12 CONFIG_SPL_LOAD_FIT=y
13 CONFIG_BOOTSTAGE=y 13 CONFIG_BOOTSTAGE=y
14 CONFIG_BOOTSTAGE_REPORT=y 14 CONFIG_BOOTSTAGE_REPORT=y
15 CONFIG_BOOTSTAGE_USER_COUNT=0x20 15 CONFIG_BOOTSTAGE_USER_COUNT=32
16 CONFIG_BOOTSTAGE_FDT=y 16 CONFIG_BOOTSTAGE_FDT=y
17 CONFIG_BOOTSTAGE_STASH=y 17 CONFIG_BOOTSTAGE_STASH=y
18 CONFIG_BOOTSTAGE_STASH_ADDR=0x0 18 CONFIG_BOOTSTAGE_STASH_ADDR=0x0
19 CONFIG_BOOTSTAGE_STASH_SIZE=0x4096 19 CONFIG_BOOTSTAGE_STASH_SIZE=0x4096
20 CONFIG_CONSOLE_RECORD=y 20 CONFIG_CONSOLE_RECORD=y
21 CONFIG_CONSOLE_RECORD_OUT_SIZE=0x1000 21 CONFIG_CONSOLE_RECORD_OUT_SIZE=0x1000
22 CONFIG_SILENT_CONSOLE=y 22 CONFIG_SILENT_CONSOLE=y
23 CONFIG_SPL=y 23 CONFIG_SPL=y
24 CONFIG_SPL_BOARD_INIT=y 24 CONFIG_SPL_BOARD_INIT=y
25 CONFIG_SPL_ENV_SUPPORT=y 25 CONFIG_SPL_ENV_SUPPORT=y
26 CONFIG_CMD_CPU=y 26 CONFIG_CMD_CPU=y
27 CONFIG_CMD_LICENSE=y 27 CONFIG_CMD_LICENSE=y
28 CONFIG_CMD_BOOTZ=y 28 CONFIG_CMD_BOOTZ=y
29 # CONFIG_CMD_ELF is not set 29 # CONFIG_CMD_ELF is not set
30 # CONFIG_CMD_IMLS is not set 30 # CONFIG_CMD_IMLS is not set
31 CONFIG_CMD_ASKENV=y 31 CONFIG_CMD_ASKENV=y
32 CONFIG_CMD_GREPENV=y 32 CONFIG_CMD_GREPENV=y
33 CONFIG_CMD_ENV_CALLBACK=y 33 CONFIG_CMD_ENV_CALLBACK=y
34 CONFIG_CMD_ENV_FLAGS=y 34 CONFIG_CMD_ENV_FLAGS=y
35 CONFIG_CMD_MD5SUM=y 35 CONFIG_CMD_MD5SUM=y
36 CONFIG_LOOPW=y 36 CONFIG_LOOPW=y
37 CONFIG_CMD_MEMTEST=y 37 CONFIG_CMD_MEMTEST=y
38 CONFIG_CMD_MX_CYCLIC=y 38 CONFIG_CMD_MX_CYCLIC=y
39 CONFIG_CMD_MEMINFO=y 39 CONFIG_CMD_MEMINFO=y
40 CONFIG_CMD_DEMO=y 40 CONFIG_CMD_DEMO=y
41 CONFIG_CMD_IDE=y 41 CONFIG_CMD_IDE=y
42 CONFIG_CMD_GPT=y 42 CONFIG_CMD_GPT=y
43 CONFIG_CMD_SF=y 43 CONFIG_CMD_SF=y
44 CONFIG_CMD_SPI=y 44 CONFIG_CMD_SPI=y
45 CONFIG_CMD_I2C=y 45 CONFIG_CMD_I2C=y
46 CONFIG_CMD_USB=y 46 CONFIG_CMD_USB=y
47 CONFIG_CMD_REMOTEPROC=y 47 CONFIG_CMD_REMOTEPROC=y
48 CONFIG_CMD_GPIO=y 48 CONFIG_CMD_GPIO=y
49 CONFIG_CMD_TFTPPUT=y 49 CONFIG_CMD_TFTPPUT=y
50 CONFIG_CMD_TFTPSRV=y 50 CONFIG_CMD_TFTPSRV=y
51 CONFIG_CMD_RARP=y 51 CONFIG_CMD_RARP=y
52 CONFIG_CMD_CDP=y 52 CONFIG_CMD_CDP=y
53 CONFIG_CMD_SNTP=y 53 CONFIG_CMD_SNTP=y
54 CONFIG_CMD_DNS=y 54 CONFIG_CMD_DNS=y
55 CONFIG_CMD_LINK_LOCAL=y 55 CONFIG_CMD_LINK_LOCAL=y
56 CONFIG_CMD_BMP=y 56 CONFIG_CMD_BMP=y
57 CONFIG_CMD_TIME=y 57 CONFIG_CMD_TIME=y
58 CONFIG_CMD_TIMER=y 58 CONFIG_CMD_TIMER=y
59 CONFIG_CMD_SOUND=y 59 CONFIG_CMD_SOUND=y
60 CONFIG_CMD_QFW=y 60 CONFIG_CMD_QFW=y
61 CONFIG_CMD_BOOTSTAGE=y 61 CONFIG_CMD_BOOTSTAGE=y
62 CONFIG_CMD_PMIC=y 62 CONFIG_CMD_PMIC=y
63 CONFIG_CMD_REGULATOR=y 63 CONFIG_CMD_REGULATOR=y
64 CONFIG_CMD_TPM=y 64 CONFIG_CMD_TPM=y
65 CONFIG_CMD_TPM_TEST=y 65 CONFIG_CMD_TPM_TEST=y
66 CONFIG_CMD_CBFS=y 66 CONFIG_CMD_CBFS=y
67 CONFIG_CMD_CRAMFS=y 67 CONFIG_CMD_CRAMFS=y
68 CONFIG_CMD_EXT4_WRITE=y 68 CONFIG_CMD_EXT4_WRITE=y
69 CONFIG_MAC_PARTITION=y 69 CONFIG_MAC_PARTITION=y
70 CONFIG_AMIGA_PARTITION=y 70 CONFIG_AMIGA_PARTITION=y
71 CONFIG_OF_CONTROL=y 71 CONFIG_OF_CONTROL=y
72 CONFIG_SPL_OF_CONTROL=y 72 CONFIG_SPL_OF_CONTROL=y
73 CONFIG_OF_HOSTFILE=y 73 CONFIG_OF_HOSTFILE=y
74 CONFIG_SPL_OF_PLATDATA=y 74 CONFIG_SPL_OF_PLATDATA=y
75 CONFIG_NETCONSOLE=y 75 CONFIG_NETCONSOLE=y
76 CONFIG_SPL_DM=y 76 CONFIG_SPL_DM=y
77 CONFIG_REGMAP=y 77 CONFIG_REGMAP=y
78 CONFIG_SPL_REGMAP=y 78 CONFIG_SPL_REGMAP=y
79 CONFIG_SYSCON=y 79 CONFIG_SYSCON=y
80 CONFIG_SPL_SYSCON=y 80 CONFIG_SPL_SYSCON=y
81 CONFIG_DEVRES=y 81 CONFIG_DEVRES=y
82 CONFIG_DEBUG_DEVRES=y 82 CONFIG_DEBUG_DEVRES=y
83 # CONFIG_SPL_SIMPLE_BUS is not set 83 # CONFIG_SPL_SIMPLE_BUS is not set
84 CONFIG_ADC=y 84 CONFIG_ADC=y
85 CONFIG_ADC_SANDBOX=y 85 CONFIG_ADC_SANDBOX=y
86 CONFIG_CLK=y 86 CONFIG_CLK=y
87 CONFIG_CPU=y 87 CONFIG_CPU=y
88 CONFIG_DM_DEMO=y 88 CONFIG_DM_DEMO=y
89 CONFIG_DM_DEMO_SIMPLE=y 89 CONFIG_DM_DEMO_SIMPLE=y
90 CONFIG_DM_DEMO_SHAPE=y 90 CONFIG_DM_DEMO_SHAPE=y
91 CONFIG_PM8916_GPIO=y 91 CONFIG_PM8916_GPIO=y
92 CONFIG_SANDBOX_GPIO=y 92 CONFIG_SANDBOX_GPIO=y
93 CONFIG_DM_I2C_COMPAT=y 93 CONFIG_DM_I2C_COMPAT=y
94 CONFIG_I2C_CROS_EC_TUNNEL=y 94 CONFIG_I2C_CROS_EC_TUNNEL=y
95 CONFIG_I2C_CROS_EC_LDO=y 95 CONFIG_I2C_CROS_EC_LDO=y
96 CONFIG_DM_I2C_GPIO=y 96 CONFIG_DM_I2C_GPIO=y
97 CONFIG_SYS_I2C_SANDBOX=y 97 CONFIG_SYS_I2C_SANDBOX=y
98 CONFIG_I2C_MUX=y 98 CONFIG_I2C_MUX=y
99 CONFIG_SPL_I2C_MUX=y 99 CONFIG_SPL_I2C_MUX=y
100 CONFIG_I2C_ARB_GPIO_CHALLENGE=y 100 CONFIG_I2C_ARB_GPIO_CHALLENGE=y
101 CONFIG_CROS_EC_KEYB=y 101 CONFIG_CROS_EC_KEYB=y
102 CONFIG_I8042_KEYB=y 102 CONFIG_I8042_KEYB=y
103 CONFIG_LED=y 103 CONFIG_LED=y
104 CONFIG_LED_BLINK=y 104 CONFIG_LED_BLINK=y
105 CONFIG_LED_GPIO=y 105 CONFIG_LED_GPIO=y
106 CONFIG_DM_MAILBOX=y 106 CONFIG_DM_MAILBOX=y
107 CONFIG_SANDBOX_MBOX=y 107 CONFIG_SANDBOX_MBOX=y
108 CONFIG_MISC=y 108 CONFIG_MISC=y
109 CONFIG_CROS_EC=y 109 CONFIG_CROS_EC=y
110 CONFIG_CROS_EC_I2C=y 110 CONFIG_CROS_EC_I2C=y
111 CONFIG_CROS_EC_LPC=y 111 CONFIG_CROS_EC_LPC=y
112 CONFIG_CROS_EC_SANDBOX=y 112 CONFIG_CROS_EC_SANDBOX=y
113 CONFIG_CROS_EC_SPI=y 113 CONFIG_CROS_EC_SPI=y
114 CONFIG_PWRSEQ=y 114 CONFIG_PWRSEQ=y
115 CONFIG_SPL_PWRSEQ=y 115 CONFIG_SPL_PWRSEQ=y
116 CONFIG_MMC_SANDBOX=y 116 CONFIG_MMC_SANDBOX=y
117 CONFIG_SPI_FLASH_SANDBOX=y 117 CONFIG_SPI_FLASH_SANDBOX=y
118 CONFIG_SPI_FLASH=y 118 CONFIG_SPI_FLASH=y
119 CONFIG_SPI_FLASH_ATMEL=y 119 CONFIG_SPI_FLASH_ATMEL=y
120 CONFIG_SPI_FLASH_EON=y 120 CONFIG_SPI_FLASH_EON=y
121 CONFIG_SPI_FLASH_GIGADEVICE=y 121 CONFIG_SPI_FLASH_GIGADEVICE=y
122 CONFIG_SPI_FLASH_MACRONIX=y 122 CONFIG_SPI_FLASH_MACRONIX=y
123 CONFIG_SPI_FLASH_SPANSION=y 123 CONFIG_SPI_FLASH_SPANSION=y
124 CONFIG_SPI_FLASH_STMICRO=y 124 CONFIG_SPI_FLASH_STMICRO=y
125 CONFIG_SPI_FLASH_SST=y 125 CONFIG_SPI_FLASH_SST=y
126 CONFIG_SPI_FLASH_WINBOND=y 126 CONFIG_SPI_FLASH_WINBOND=y
127 CONFIG_DM_ETH=y 127 CONFIG_DM_ETH=y
128 CONFIG_PCI=y 128 CONFIG_PCI=y
129 CONFIG_DM_PCI=y 129 CONFIG_DM_PCI=y
130 CONFIG_DM_PCI_COMPAT=y 130 CONFIG_DM_PCI_COMPAT=y
131 CONFIG_PCI_SANDBOX=y 131 CONFIG_PCI_SANDBOX=y
132 CONFIG_PINCTRL=y 132 CONFIG_PINCTRL=y
133 CONFIG_PINCONF=y 133 CONFIG_PINCONF=y
134 CONFIG_PINCTRL_SANDBOX=y 134 CONFIG_PINCTRL_SANDBOX=y
135 CONFIG_DM_PMIC=y 135 CONFIG_DM_PMIC=y
136 CONFIG_PMIC_ACT8846=y 136 CONFIG_PMIC_ACT8846=y
137 CONFIG_DM_PMIC_PFUZE100=y 137 CONFIG_DM_PMIC_PFUZE100=y
138 CONFIG_DM_PMIC_MAX77686=y 138 CONFIG_DM_PMIC_MAX77686=y
139 CONFIG_PMIC_PM8916=y 139 CONFIG_PMIC_PM8916=y
140 CONFIG_PMIC_RK8XX=y 140 CONFIG_PMIC_RK8XX=y
141 CONFIG_PMIC_S2MPS11=y 141 CONFIG_PMIC_S2MPS11=y
142 CONFIG_DM_PMIC_SANDBOX=y 142 CONFIG_DM_PMIC_SANDBOX=y
143 CONFIG_PMIC_S5M8767=y 143 CONFIG_PMIC_S5M8767=y
144 CONFIG_PMIC_TPS65090=y 144 CONFIG_PMIC_TPS65090=y
145 CONFIG_DM_REGULATOR=y 145 CONFIG_DM_REGULATOR=y
146 CONFIG_REGULATOR_ACT8846=y 146 CONFIG_REGULATOR_ACT8846=y
147 CONFIG_DM_REGULATOR_PFUZE100=y 147 CONFIG_DM_REGULATOR_PFUZE100=y
148 CONFIG_DM_REGULATOR_MAX77686=y 148 CONFIG_DM_REGULATOR_MAX77686=y
149 CONFIG_DM_REGULATOR_FIXED=y 149 CONFIG_DM_REGULATOR_FIXED=y
150 CONFIG_REGULATOR_RK8XX=y 150 CONFIG_REGULATOR_RK8XX=y
151 CONFIG_REGULATOR_S5M8767=y 151 CONFIG_REGULATOR_S5M8767=y
152 CONFIG_DM_REGULATOR_SANDBOX=y 152 CONFIG_DM_REGULATOR_SANDBOX=y
153 CONFIG_REGULATOR_TPS65090=y 153 CONFIG_REGULATOR_TPS65090=y
154 CONFIG_DM_PWM=y 154 CONFIG_DM_PWM=y
155 CONFIG_PWM_SANDBOX=y 155 CONFIG_PWM_SANDBOX=y
156 CONFIG_RAM=y 156 CONFIG_RAM=y
157 CONFIG_REMOTEPROC_SANDBOX=y 157 CONFIG_REMOTEPROC_SANDBOX=y
158 CONFIG_DM_RESET=y 158 CONFIG_DM_RESET=y
159 CONFIG_SANDBOX_RESET=y 159 CONFIG_SANDBOX_RESET=y
160 CONFIG_DM_RTC=y 160 CONFIG_DM_RTC=y
161 CONFIG_SANDBOX_SERIAL=y 161 CONFIG_SANDBOX_SERIAL=y
162 CONFIG_SOUND=y 162 CONFIG_SOUND=y
163 CONFIG_SOUND_SANDBOX=y 163 CONFIG_SOUND_SANDBOX=y
164 CONFIG_SANDBOX_SPI=y 164 CONFIG_SANDBOX_SPI=y
165 CONFIG_SPMI=y 165 CONFIG_SPMI=y
166 CONFIG_SPMI_SANDBOX=y 166 CONFIG_SPMI_SANDBOX=y
167 CONFIG_SYSRESET=y 167 CONFIG_SYSRESET=y
168 CONFIG_TIMER=y 168 CONFIG_TIMER=y
169 CONFIG_TIMER_EARLY=y 169 CONFIG_TIMER_EARLY=y
170 CONFIG_SANDBOX_TIMER=y 170 CONFIG_SANDBOX_TIMER=y
171 CONFIG_TPM_TIS_SANDBOX=y 171 CONFIG_TPM_TIS_SANDBOX=y
172 CONFIG_USB=y 172 CONFIG_USB=y
173 CONFIG_DM_USB=y 173 CONFIG_DM_USB=y
174 CONFIG_USB_EMUL=y 174 CONFIG_USB_EMUL=y
175 CONFIG_USB_STORAGE=y 175 CONFIG_USB_STORAGE=y
176 CONFIG_USB_KEYBOARD=y 176 CONFIG_USB_KEYBOARD=y
177 CONFIG_SYS_USB_EVENT_POLL=y 177 CONFIG_SYS_USB_EVENT_POLL=y
178 CONFIG_DM_VIDEO=y 178 CONFIG_DM_VIDEO=y
179 CONFIG_CONSOLE_ROTATION=y 179 CONFIG_CONSOLE_ROTATION=y
180 CONFIG_CONSOLE_TRUETYPE=y 180 CONFIG_CONSOLE_TRUETYPE=y
181 CONFIG_CONSOLE_TRUETYPE_CANTORAONE=y 181 CONFIG_CONSOLE_TRUETYPE_CANTORAONE=y
182 CONFIG_VIDEO_SANDBOX_SDL=y 182 CONFIG_VIDEO_SANDBOX_SDL=y
183 CONFIG_FS_CBFS=y 183 CONFIG_FS_CBFS=y
184 CONFIG_FS_CRAMFS=y 184 CONFIG_FS_CRAMFS=y
185 CONFIG_PHY=y 185 CONFIG_PHY=y
186 CONFIG_PHY_SANDBOX=y 186 CONFIG_PHY_SANDBOX=y
187 CONFIG_CMD_DHRYSTONE=y 187 CONFIG_CMD_DHRYSTONE=y
188 CONFIG_TPM=y 188 CONFIG_TPM=y
189 CONFIG_LZ4=y 189 CONFIG_LZ4=y
190 CONFIG_ERRNO_STR=y 190 CONFIG_ERRNO_STR=y
191 CONFIG_UNIT_TEST=y 191 CONFIG_UNIT_TEST=y
192 CONFIG_UT_TIME=y 192 CONFIG_UT_TIME=y
193 CONFIG_UT_DM=y 193 CONFIG_UT_DM=y
194 CONFIG_UT_ENV=y 194 CONFIG_UT_ENV=y
195 195