blob: 6e1efaaf85d76b600c51093819861a4189bae9f1 [file] [log] [blame]
Simon Glass29499a02016-01-17 20:53:51 -07001menu "Command line interface"
2
Simon Glassaa34ef22016-03-13 19:07:28 -06003config CMDLINE
4 bool "Support U-Boot commands"
5 default y
6 help
7 Enable U-Boot's command-line functions. This provides a means
8 to enter commands into U-Boot for a wide variety of purposes. It
9 also allows scripts (containing commands) to be executed.
10 Various commands and command categorys can be indivdually enabled.
11 Depending on the number of commands enabled, this can add
12 substantially to the size of U-Boot.
13
Simon Glass29499a02016-01-17 20:53:51 -070014config HUSH_PARSER
15 bool "Use hush shell"
Simon Glassaa34ef22016-03-13 19:07:28 -060016 depends on CMDLINE
Simon Glass29499a02016-01-17 20:53:51 -070017 help
18 This option enables the "hush" shell (from Busybox) as command line
19 interpreter, thus enabling powerful command line syntax like
20 if...then...else...fi conditionals or `&&' and '||'
21 constructs ("shell scripts").
22
23 If disabled, you get the old, much simpler behaviour with a somewhat
24 smaller memory footprint.
25
Adam Ford58dbf862018-02-06 07:58:59 -060026config CMDLINE_EDITING
27 bool "Enable command line editing"
28 depends on CMDLINE
29 default y
30 help
31 Enable editing and History functions for interactive command line
32 input operations
33
34config AUTO_COMPLETE
35 bool "Enable auto complete using TAB"
36 depends on CMDLINE
37 default y
38 help
39 Enable auto completion of commands using TAB.
40
41config SYS_LONGHELP
42 bool "Enable long help messages"
43 depends on CMDLINE
44 default y if CMDLINE
45 help
46 Defined when you want long help messages included
47 Do not set this option when short of memory.
48
Simon Glass29499a02016-01-17 20:53:51 -070049config SYS_PROMPT
50 string "Shell prompt"
Michal Simekf048cae2019-09-25 12:32:41 +020051 default "Zynq> " if ARCH_ZYNQ
Michal Simek4f107432019-09-25 12:37:15 +020052 default "ZynqMP> " if ARCH_ZYNQMP
Simon Glass29499a02016-01-17 20:53:51 -070053 default "=> "
54 help
55 This string is displayed in the command line to the left of the
56 cursor.
57
Christoph Muellner388b1452019-04-05 13:03:46 +020058config SYS_XTRACE
59 string "Command execution tracer"
60 depends on CMDLINE
61 default y if CMDLINE
62 help
63 This option enables the possiblity to print all commands before
64 executing them and after all variables are evaluated (similar
65 to Bash's xtrace/'set -x' feature).
66 To enable the tracer a variable "xtrace" needs to be defined in
67 the environment.
68
Simon Glass29499a02016-01-17 20:53:51 -070069menu "Autoboot options"
70
Masahiro Yamada622a01c2016-06-20 17:33:39 +090071config AUTOBOOT
72 bool "Autoboot"
73 default y
74 help
75 This enables the autoboot. See doc/README.autoboot for detail.
76
Simon Glass29499a02016-01-17 20:53:51 -070077config AUTOBOOT_KEYED
78 bool "Stop autobooting via specific input key / string"
79 default n
80 help
81 This option enables stopping (aborting) of the automatic
82 boot feature only by issuing a specific input key or
83 string. If not enabled, any input key will abort the
84 U-Boot automatic booting process and bring the device
85 to the U-Boot prompt for user input.
86
87config AUTOBOOT_PROMPT
88 string "Autoboot stop prompt"
89 depends on AUTOBOOT_KEYED
90 default "Autoboot in %d seconds\\n"
91 help
92 This string is displayed before the boot delay selected by
93 CONFIG_BOOTDELAY starts. If it is not defined there is no
94 output indicating that autoboot is in progress.
95
96 Note that this define is used as the (only) argument to a
97 printf() call, so it may contain '%' format specifications,
98 provided that it also includes, sepearated by commas exactly
99 like in a printf statement, the required arguments. It is
100 the responsibility of the user to select only such arguments
101 that are valid in the given context.
102
103config AUTOBOOT_ENCRYPTION
104 bool "Enable encryption in autoboot stopping"
105 depends on AUTOBOOT_KEYED
Simon Glassa8cab882019-07-20 20:51:17 -0600106 help
107 This option allows a string to be entered into U-Boot to stop the
108 autoboot. The string itself is hashed and compared against the hash
109 in the environment variable 'bootstopkeysha256'. If it matches then
110 boot stops and a command-line prompt is presented.
111
112 This provides a way to ship a secure production device which can also
113 be accessed at the U-Boot command line.
Simon Glass29499a02016-01-17 20:53:51 -0700114
115config AUTOBOOT_DELAY_STR
116 string "Delay autobooting via specific input key / string"
117 depends on AUTOBOOT_KEYED && !AUTOBOOT_ENCRYPTION
118 help
119 This option delays the automatic boot feature by issuing
120 a specific input key or string. If CONFIG_AUTOBOOT_DELAY_STR
121 or the environment variable "bootdelaykey" is specified
122 and this string is received from console input before
123 autoboot starts booting, U-Boot gives a command prompt. The
124 U-Boot prompt will time out if CONFIG_BOOT_RETRY_TIME is
125 used, otherwise it never times out.
126
127config AUTOBOOT_STOP_STR
128 string "Stop autobooting via specific input key / string"
129 depends on AUTOBOOT_KEYED && !AUTOBOOT_ENCRYPTION
130 help
131 This option enables stopping (aborting) of the automatic
132 boot feature only by issuing a specific input key or
133 string. If CONFIG_AUTOBOOT_STOP_STR or the environment
134 variable "bootstopkey" is specified and this string is
135 received from console input before autoboot starts booting,
136 U-Boot gives a command prompt. The U-Boot prompt never
137 times out, even if CONFIG_BOOT_RETRY_TIME is used.
138
139config AUTOBOOT_KEYED_CTRLC
140 bool "Enable Ctrl-C autoboot interruption"
141 depends on AUTOBOOT_KEYED && !AUTOBOOT_ENCRYPTION
142 default n
143 help
144 This option allows for the boot sequence to be interrupted
145 by ctrl-c, in addition to the "bootdelaykey" and "bootstopkey".
146 Setting this variable provides an escape sequence from the
147 limited "password" strings.
148
149config AUTOBOOT_STOP_STR_SHA256
150 string "Stop autobooting via SHA256 encrypted password"
151 depends on AUTOBOOT_KEYED && AUTOBOOT_ENCRYPTION
152 help
153 This option adds the feature to only stop the autobooting,
154 and therefore boot into the U-Boot prompt, when the input
155 string / password matches a values that is encypted via
156 a SHA256 hash and saved in the environment.
157
Simon Glass9e476d92019-07-20 20:51:21 -0600158config AUTOBOOT_USE_MENUKEY
159 bool "Allow a specify key to run a menu from the environment"
160 depends on !AUTOBOOT_KEYED
161 help
162 If a specific key is pressed to stop autoboot, then the commands in
163 the environment variable 'menucmd' are executed before boot starts.
164
165config AUTOBOOT_MENUKEY
166 int "ASCII value of boot key to show a menu"
167 default 0
168 depends on AUTOBOOT_USE_MENUKEY
169 help
170 If this key is pressed to stop autoboot, then the commands in the
171 environment variable 'menucmd' will be executed before boot starts.
172 For example, 33 means "!" in ASCII, so pressing ! at boot would take
173 this action.
174
Simon Glass32679ba2019-07-20 20:51:25 -0600175config AUTOBOOT_MENU_SHOW
176 bool "Show a menu on boot"
AKASHI Takahiroc4927522019-09-12 15:31:22 +0900177 depends on CMD_BOOTMENU
Simon Glass32679ba2019-07-20 20:51:25 -0600178 help
179 This enables the boot menu, controlled by environment variables
180 defined by the board. The menu starts after running the 'preboot'
181 environmnent variable (if enabled) and before handling the boot delay.
182 See README.bootmenu for more details.
183
Simon Glass29499a02016-01-17 20:53:51 -0700184endmenu
185
Sam Protsenko13c1f3a2017-09-28 12:33:45 -0700186config BUILD_BIN2C
187 bool
188
Simon Glass29499a02016-01-17 20:53:51 -0700189comment "Commands"
190
191menu "Info commands"
192
193config CMD_BDI
194 bool "bdinfo"
195 default y
196 help
197 Print board info
198
Masahiro Yamadabb92b422017-01-30 11:12:07 +0900199config CMD_CONFIG
200 bool "config"
Masahiro Yamadabb92b422017-01-30 11:12:07 +0900201 default SANDBOX
Michal Simek84f3dec2018-07-23 15:55:13 +0200202 select BUILD_BIN2C
Masahiro Yamadabb92b422017-01-30 11:12:07 +0900203 help
204 Print ".config" contents.
205
206 If this option is enabled, the ".config" file contents are embedded
207 in the U-Boot image and can be printed on the console by the "config"
208 command. This provides information of which options are enabled on
209 the running U-Boot.
210
Simon Glass29499a02016-01-17 20:53:51 -0700211config CMD_CONSOLE
212 bool "coninfo"
213 default y
214 help
215 Print console devices and information.
216
217config CMD_CPU
218 bool "cpu"
219 help
220 Print information about available CPUs. This normally shows the
221 number of CPUs, type (e.g. manufacturer, architecture, product or
222 internal name) and clock frequency. Other information may be
223 available depending on the CPU driver.
224
225config CMD_LICENSE
226 bool "license"
Masahiro Yamada81680332017-01-30 11:12:08 +0900227 select BUILD_BIN2C
Simon Glass29499a02016-01-17 20:53:51 -0700228 help
229 Print GPL license text
230
Simon Glass8c501022019-12-06 21:41:54 -0700231config CMD_PMC
232 bool "pmc"
233 help
234 Provides access to the Intel Power-Management Controller (PMC) so
235 that its state can be examined. This does not currently support
236 changing the state but it is still useful for debugging and seeing
237 what is going on.
238
Christophe Leroye538bbc2017-08-04 16:34:40 -0600239config CMD_REGINFO
240 bool "reginfo"
241 depends on PPC
242 help
243 Register dump
244
Baruch Siachfad48982020-01-21 15:44:54 +0200245config CMD_TLV_EEPROM
246 bool "tlv_eeprom"
247 depends on I2C_EEPROM
248 help
249 Display and program the system EEPROM data block in ONIE Tlvinfo
250 format. TLV stands for Type-Length-Value.
251
252config SPL_CMD_TLV_EEPROM
253 bool "tlv_eeprom for SPL"
254 depends on SPL_I2C_EEPROM
255 select SPL_DRIVERS_MISC_SUPPORT
256 help
257 Read system EEPROM data block in ONIE Tlvinfo format from SPL.
258
Simon Glass29499a02016-01-17 20:53:51 -0700259endmenu
260
261menu "Boot commands"
262
263config CMD_BOOTD
264 bool "bootd"
265 default y
266 help
267 Run the command stored in the environment "bootcmd", i.e.
268 "bootd" does the same thing as "run bootcmd".
269
270config CMD_BOOTM
271 bool "bootm"
272 default y
273 help
274 Boot an application image from the memory.
275
Cristian Ciocaltea6aca5982019-12-24 18:05:39 +0200276config BOOTM_EFI
277 bool "Support booting UEFI FIT images"
278 depends on CMD_BOOTEFI && CMD_BOOTM && FIT
279 default y
280 help
281 Support booting UEFI FIT images via the bootm command.
282
Dinh Nguyen0685bef2016-04-21 09:05:23 -0500283config CMD_BOOTZ
284 bool "bootz"
285 help
286 Boot the Linux zImage
287
Masahiro Yamada04cf1552016-08-12 08:31:16 -0400288config CMD_BOOTI
289 bool "booti"
Atish Patra583b4092019-05-06 17:49:39 -0700290 depends on ARM64 || RISCV
Masahiro Yamada04cf1552016-08-12 08:31:16 -0400291 default y
292 help
293 Boot an AArch64 Linux Kernel image from memory.
294
Tom Rini9a102072019-09-20 17:36:50 -0400295config BOOTM_LINUX
296 bool "Support booting Linux OS images"
297 depends on CMD_BOOTM || CMD_BOOTZ || CMD_BOOTI
298 default y
299 help
300 Support booting the Linux kernel directly via a command such as bootm
301 or booti or bootz.
302
303config BOOTM_NETBSD
304 bool "Support booting NetBSD (non-EFI) loader images"
305 depends on CMD_BOOTM
306 default y
307 help
308 Support booting NetBSD via the bootm command.
309
310config BOOTM_OPENRTOS
311 bool "Support booting OPENRTOS / FreeRTOS images"
312 depends on CMD_BOOTM
313 help
314 Support booting OPENRTOS / FreeRTOS via the bootm command.
315
316config BOOTM_OSE
317 bool "Support booting Enea OSE images"
Tom Rini1d0b1fc2019-12-05 18:46:11 -0500318 depends on (ARM && (ARM64 || CPU_V7A || CPU_V7R) || SANDBOX || PPC || X86)
Tom Rini9a102072019-09-20 17:36:50 -0400319 depends on CMD_BOOTM
320 help
321 Support booting Enea OSE images via the bootm command.
322
323config BOOTM_PLAN9
324 bool "Support booting Plan9 OS images"
325 depends on CMD_BOOTM
326 default y
327 help
328 Support booting Plan9 images via the bootm command.
329
330config BOOTM_RTEMS
331 bool "Support booting RTEMS OS images"
332 depends on CMD_BOOTM
333 default y
334 help
335 Support booting RTEMS images via the bootm command.
336
337config BOOTM_VXWORKS
338 bool "Support booting VxWorks OS images"
339 depends on CMD_BOOTM
340 default y
341 help
342 Support booting VxWorks images via the bootm command.
343
AKASHI Takahiro8d95b6e2019-11-08 10:32:15 +0900344config CMD_BOOTEFI
345 bool "bootefi"
346 depends on EFI_LOADER
347 default y
348 help
349 Boot an EFI image from memory.
350
Alexander Grafb5483512016-11-17 22:40:10 +0100351config CMD_BOOTEFI_HELLO_COMPILE
352 bool "Compile a standard EFI hello world binary for testing"
Heinrich Schuchardt0f675d92019-11-07 08:05:17 +0100353 depends on CMD_BOOTEFI && !CPU_V7M
Alexander Grafb5483512016-11-17 22:40:10 +0100354 default y
355 help
356 This compiles a standard EFI hello world application with U-Boot so
357 that it can be used with the test/py testing framework. This is useful
358 for testing that EFI is working at a basic level, and for bringing
359 up EFI support on a new architecture.
360
361 No additional space will be required in the resulting U-Boot binary
362 when this option is enabled.
363
Simon Glassfac4ced2016-11-07 08:47:08 -0700364config CMD_BOOTEFI_HELLO
365 bool "Allow booting a standard EFI hello world for testing"
Alexander Grafb5483512016-11-17 22:40:10 +0100366 depends on CMD_BOOTEFI_HELLO_COMPILE
Simon Glassfac4ced2016-11-07 08:47:08 -0700367 help
368 This adds a standard EFI hello world application to U-Boot so that
369 it can be used with the 'bootefi hello' command. This is useful
370 for testing that EFI is working at a basic level, and for bringing
371 up EFI support on a new architecture.
372
Heinrich Schuchardtd33ae3e2017-09-15 10:06:11 +0200373source lib/efi_selftest/Kconfig
374
Tom Rini697f4732016-11-29 09:14:56 -0500375config CMD_BOOTMENU
376 bool "bootmenu"
377 select MENU
378 help
379 Add an ANSI terminal boot menu command.
380
Eugeniu Roscaee98dac2019-12-24 17:51:06 +0100381config CMD_ADTIMG
382 bool "adtimg"
Sam Protsenko92f95bb2018-08-16 23:34:13 +0300383 help
384 Android DTB/DTBO image manipulation commands. Read dtb/dtbo files from
385 image into RAM, dump image structure information, etc. Those dtb/dtbo
386 files should be merged in one dtb further, which needs to be passed to
387 the kernel, as part of a boot process.
388
Simon Glass29499a02016-01-17 20:53:51 -0700389config CMD_ELF
390 bool "bootelf, bootvx"
391 default y
392 help
393 Boot an ELF/vxWorks image from the memory.
394
Michal Simekf168c652016-04-06 20:28:04 +0200395config CMD_FDT
396 bool "Flattened Device Tree utility commands"
397 default y
398 depends on OF_LIBFDT
399 help
400 Do FDT related setup before booting into the Operating System.
401
Simon Glass29499a02016-01-17 20:53:51 -0700402config CMD_GO
403 bool "go"
404 default y
405 help
406 Start an application at a given address.
407
408config CMD_RUN
409 bool "run"
410 default y
411 help
412 Run the command in the given environment variable.
413
414config CMD_IMI
415 bool "iminfo"
416 default y
417 help
418 Print header information for application image.
419
420config CMD_IMLS
421 bool "imls"
Simon Glass29499a02016-01-17 20:53:51 -0700422 help
423 List all images found in flash
424
425config CMD_XIMG
426 bool "imxtract"
427 default y
428 help
429 Extract a part of a multi-image.
430
Simon Glassc6567fa2017-08-04 16:34:48 -0600431config CMD_SPL
432 bool "spl export - Export boot information for Falcon boot"
433 depends on SPL
434 help
435 Falcon mode allows booting directly from SPL into an Operating
436 System such as Linux, thus skipping U-Boot proper. See
437 doc/README.falcon for full information about how to use this
438 command.
439
Simon Glassc034e3d2017-08-04 16:34:49 -0600440config CMD_SPL_NAND_OFS
Lukasz Majewski10797442019-05-16 16:01:36 +0200441 hex "Offset of OS args or dtb for Falcon-mode NAND boot"
Lukasz Majewskie73ce322019-05-16 16:01:35 +0200442 depends on CMD_SPL && (TPL_NAND_SUPPORT || SPL_NAND_SUPPORT)
Simon Glassc034e3d2017-08-04 16:34:49 -0600443 default 0
444 help
445 This provides the offset of the command line arguments for Linux
446 when booting from NAND in Falcon mode. See doc/README.falcon
447 for full information about how to use this option (and also see
448 board/gateworks/gw_ventana/README for an example).
449
Lukasz Majewski06d92532019-05-16 16:01:37 +0200450config CMD_SPL_NOR_OFS
451 hex "Offset of OS args or dtb for Falcon-mode NOR boot"
452 depends on CMD_SPL && SPL_NOR_SUPPORT
453 default 0
454 help
455 This provides the offset of the command line arguments or dtb for
456 Linux when booting from NOR in Falcon mode.
457
Simon Glass51ef45a2017-08-04 16:34:50 -0600458config CMD_SPL_WRITE_SIZE
459 hex "Size of argument area"
460 depends on CMD_SPL
461 default 0x2000
462 help
463 This provides the size of the command-line argument area in NAND
464 flash used by Falcon-mode boot. See the documentation until CMD_SPL
465 for detail.
466
Marek Vasut113c0252018-02-10 16:22:05 +0100467config CMD_FITUPD
468 bool "fitImage update command"
469 help
470 Implements the 'fitupd' command, which allows to automatically
471 store software updates present on a TFTP server in NOR Flash
472
Simon Glassa18b9692017-08-04 16:34:57 -0600473config CMD_THOR_DOWNLOAD
474 bool "thor - TIZEN 'thor' download"
Marek Szyprowskide4752e2019-10-02 12:29:08 +0200475 select DFU
Simon Glassa18b9692017-08-04 16:34:57 -0600476 help
477 Implements the 'thor' download protocol. This is a way of
478 downloading a software update over USB from an attached host.
479 There is no documentation about this within the U-Boot source code
480 but you should be able to find something on the interwebs.
481
Simon Glass01d097d2017-08-04 16:35:03 -0600482config CMD_ZBOOT
483 bool "zboot - x86 boot command"
484 help
485 With x86 machines it is common to boot a bzImage file which
486 contains both a kernel and a setup.bin file. The latter includes
487 configuration information from the dark ages which x86 boards still
488 need to pick things out of.
489
490 Consider using FIT in preference to this since it supports directly
491 booting both 32- and 64-bit kernels, as well as secure boot.
492 Documentation is available in doc/uImage.FIT/x86-fit-boot.txt
493
Simon Glass29499a02016-01-17 20:53:51 -0700494endmenu
495
496menu "Environment commands"
497
Dinh Nguyen0685bef2016-04-21 09:05:23 -0500498config CMD_ASKENV
499 bool "ask for env variable"
500 help
501 Ask for environment variable
502
Simon Glass29499a02016-01-17 20:53:51 -0700503config CMD_EXPORTENV
504 bool "env export"
505 default y
506 help
507 Export environments.
508
509config CMD_IMPORTENV
510 bool "env import"
511 default y
512 help
513 Import environments.
514
515config CMD_EDITENV
516 bool "editenv"
517 default y
518 help
519 Edit environment variable.
520
Dinh Nguyen0685bef2016-04-21 09:05:23 -0500521config CMD_GREPENV
522 bool "search env"
523 help
524 Allow for searching environment variables
525
Simon Glass29499a02016-01-17 20:53:51 -0700526config CMD_SAVEENV
527 bool "saveenv"
528 default y
529 help
530 Save all environment variables into the compiled-in persistent
531 storage.
532
Frank Wunderlich33afa932019-06-29 11:36:19 +0200533config CMD_ERASEENV
534 bool "eraseenv"
535 default n
536 depends on CMD_SAVEENV
537 help
538 Erase environment variables from the compiled-in persistent
539 storage.
540
Simon Glass29499a02016-01-17 20:53:51 -0700541config CMD_ENV_EXISTS
542 bool "env exists"
543 default y
544 help
545 Check if a variable is defined in the environment for use in
546 shell scripting.
547
Simon Glass84d67c72017-05-17 03:25:13 -0600548config CMD_ENV_CALLBACK
549 bool "env callbacks - print callbacks and their associated variables"
550 help
551 Some environment variable have callbacks defined by
552 U_BOOT_ENV_CALLBACK. These are called when the variable changes.
553 For example changing "baudrate" adjust the serial baud rate. This
554 command lists the currently defined callbacks.
555
Simon Glassc31e2d82017-05-17 03:25:14 -0600556config CMD_ENV_FLAGS
557 bool "env flags -print variables that have non-default flags"
558 help
559 Some environment variables have special flags that control their
560 behaviour. For example, serial# can only be written once and cannot
561 be deleted. This command shows the variables that have special
562 flags.
563
AKASHI Takahiro117e68a2019-02-25 15:54:36 +0900564config CMD_NVEDIT_EFI
565 bool "env [set|print] -e - set/print UEFI variables"
566 depends on EFI_LOADER
AKASHI Takahiro117e68a2019-02-25 15:54:36 +0900567 imply HEXDUMP
568 help
569 UEFI variables are encoded as some form of U-Boot variables.
570 If enabled, we are allowed to set/print UEFI variables using
571 "env" command with "-e" option without knowing details.
572
Leo Ruan7450b872019-05-24 17:20:19 +0200573config CMD_NVEDIT_INFO
574 bool "env info - print or evaluate environment information"
575 help
576 Print environment information:
577 - env_valid : is environment valid
578 - env_ready : is environment imported into hash table
579 - env_use_default : is default environment used
580
581 This command can be optionally used for evaluation in scripts:
582 [-d] : evaluate whether default environment is used
583 [-p] : evaluate whether environment can be persisted
584 The result of multiple evaluations will be combined with AND.
585
Simon Glass29499a02016-01-17 20:53:51 -0700586endmenu
587
588menu "Memory commands"
589
Mario Six8a4f6642018-03-28 14:39:18 +0200590config CMD_BINOP
591 bool "binop"
592 help
593 Compute binary operations (xor, or, and) of byte arrays of arbitrary
594 size from memory and store the result in memory or the environment.
595
Simon Glass29499a02016-01-17 20:53:51 -0700596config CMD_CRC32
597 bool "crc32"
598 default y
Michal Simek84f3dec2018-07-23 15:55:13 +0200599 select HASH
Simon Glass29499a02016-01-17 20:53:51 -0700600 help
601 Compute CRC32.
602
Daniel Thompsona9e2c672017-05-19 17:26:58 +0100603config CRC32_VERIFY
604 bool "crc32 -v"
605 depends on CMD_CRC32
606 help
607 Add -v option to verify data against a crc32 checksum.
608
Simon Glass4590d4e2017-05-17 03:25:10 -0600609config CMD_EEPROM
610 bool "eeprom - EEPROM subsystem"
611 help
612 (deprecated, needs conversion to driver model)
613 Provides commands to read and write EEPROM (Electrically Erasable
614 Programmable Read Only Memory) chips that are connected over an
615 I2C bus.
616
617config CMD_EEPROM_LAYOUT
618 bool "Enable layout-aware eeprom commands"
619 depends on CMD_EEPROM
620 help
621 (deprecated, needs conversion to driver model)
622 When enabled, additional eeprom sub-commands become available.
623
624 eeprom print - prints the contents of the eeprom in a human-readable
625 way (eeprom layout fields, and data formatted to be fit for human
626 consumption).
627
628 eeprom update - allows user to update eeprom fields by specifying
629 the field name, and providing the new data in a human readable format
630 (same format as displayed by the eeprom print command).
631
632 Both commands can either auto detect the layout, or be told which
633 layout to use.
634
635 Feature API:
636 __weak int parse_layout_version(char *str)
637 - override to provide your own layout name parsing
638 __weak void __eeprom_layout_assign(struct eeprom_layout *layout,
639 int layout_version);
640 - override to setup the layout metadata based on the version
641 __weak int eeprom_layout_detect(unsigned char *data)
642 - override to provide your own algorithm for detecting layout
643 version
644 eeprom_field.c
645 - contains various printing and updating functions for common
646 types of eeprom fields. Can be used for defining
647 custom layouts.
648
649config EEPROM_LAYOUT_HELP_STRING
650 string "Tells user what layout names are supported"
651 depends on CMD_EEPROM_LAYOUT
652 default "<not defined>"
653 help
654 Help printed with the LAYOUT VERSIONS part of the 'eeprom'
655 command's help.
656
Simon Glass26c20532017-08-04 16:34:51 -0600657config LOOPW
658 bool "loopw"
659 help
660 Infinite write loop on address range
661
Andre Przywaraf0fa1132017-03-15 01:19:05 +0000662config CMD_MD5SUM
663 bool "md5sum"
664 default n
665 select MD5
666 help
667 Compute MD5 checksum.
668
Daniel Thompsona9e2c672017-05-19 17:26:58 +0100669config MD5SUM_VERIFY
Andre Przywaraf0fa1132017-03-15 01:19:05 +0000670 bool "md5sum -v"
671 default n
672 depends on CMD_MD5SUM
673 help
674 Add -v option to verify data against an MD5 checksum.
675
Simon Glass26c20532017-08-04 16:34:51 -0600676config CMD_MEMINFO
677 bool "meminfo"
Daniel Thompsona9e2c672017-05-19 17:26:58 +0100678 help
Simon Glass26c20532017-08-04 16:34:51 -0600679 Display memory information.
Daniel Thompsona9e2c672017-05-19 17:26:58 +0100680
Simon Glass26c20532017-08-04 16:34:51 -0600681config CMD_MEMORY
682 bool "md, mm, nm, mw, cp, cmp, base, loop"
683 default y
Simon Glass29499a02016-01-17 20:53:51 -0700684 help
Simon Glass26c20532017-08-04 16:34:51 -0600685 Memory commands.
686 md - memory display
687 mm - memory modify (auto-incrementing address)
688 nm - memory modify (constant address)
689 mw - memory write (fill)
690 cp - memory copy
691 cmp - memory compare
692 base - print or set address offset
693 loop - initialize loop on address range
Simon Glass29499a02016-01-17 20:53:51 -0700694
Adam Ford1ef0c492019-08-14 07:54:34 -0500695config MX_CYCLIC
696 bool "Enable cyclic md/mw commands"
697 depends on CMD_MEMORY
698 help
699 Add the "mdc" and "mwc" memory commands. These are cyclic
700 "md/mw" commands.
701 Examples:
702
703 => mdc.b 10 4 500
704 This command will print 4 bytes (10,11,12,13) each 500 ms.
705
706 => mwc.l 100 12345678 10
707 This command will write 12345678 to address 100 all 10 ms.
708
Jean-Jacques Hiblotd3f09372019-07-02 14:23:26 +0200709config CMD_RANDOM
710 bool "random"
711 default y
712 depends on CMD_MEMORY && (LIB_RAND || LIB_HW_RAND)
713 help
714 random - fill memory with random data
715
Simon Glass29499a02016-01-17 20:53:51 -0700716config CMD_MEMTEST
717 bool "memtest"
718 help
719 Simple RAM read/write test.
720
Mario Six00518992018-03-28 14:38:14 +0200721if CMD_MEMTEST
722
723config SYS_ALT_MEMTEST
724 bool "Alternative test"
725 help
726 Use a more complete alternative memory test.
727
728endif
729
Simon Glass29499a02016-01-17 20:53:51 -0700730config CMD_MX_CYCLIC
731 bool "mdc, mwc"
732 help
733 mdc - memory display cyclic
734 mwc - memory write cyclic
735
Simon Glass26c20532017-08-04 16:34:51 -0600736config CMD_SHA1SUM
737 bool "sha1sum"
738 select SHA1
Simon Glass29499a02016-01-17 20:53:51 -0700739 help
Simon Glass26c20532017-08-04 16:34:51 -0600740 Compute SHA1 checksum.
741
742config SHA1SUM_VERIFY
743 bool "sha1sum -v"
744 depends on CMD_SHA1SUM
745 help
746 Add -v option to verify data against a SHA1 checksum.
Simon Glass29499a02016-01-17 20:53:51 -0700747
Simon Glass8e83ca82017-08-04 16:34:52 -0600748config CMD_STRINGS
749 bool "strings - display strings in memory"
750 help
751 This works similarly to the Unix 'strings' command except that it
752 works with a memory range. String of printable characters found
753 within the range are displayed. The minimum number of characters
754 for a sequence to be considered a string can be provided.
755
Simon Glassbecaa8f2017-05-17 03:25:43 -0600756endmenu
757
758menu "Compression commands"
759
760config CMD_LZMADEC
761 bool "lzmadec"
Tom Rini3237bc62017-09-29 14:32:44 -0400762 default y if CMD_BOOTI
Simon Glassbecaa8f2017-05-17 03:25:43 -0600763 select LZMA
764 help
765 Support decompressing an LZMA (Lempel-Ziv-Markov chain algorithm)
766 image from memory.
767
Masahiro Yamada2737fd32017-02-05 10:42:56 +0900768config CMD_UNZIP
769 bool "unzip"
Tom Rini3237bc62017-09-29 14:32:44 -0400770 default y if CMD_BOOTI
Masahiro Yamada2737fd32017-02-05 10:42:56 +0900771 help
772 Uncompress a zip-compressed memory region.
773
774config CMD_ZIP
775 bool "zip"
776 help
777 Compress a memory region with zlib deflate method.
778
Simon Glass29499a02016-01-17 20:53:51 -0700779endmenu
780
781menu "Device access commands"
782
Simon Glass036bbb12017-08-04 16:34:28 -0600783config CMD_ARMFLASH
784 #depends on FLASH_CFI_DRIVER
785 bool "armflash"
786 help
787 ARM Ltd reference designs flash partition access
788
Neil Armstrong49261c72018-04-27 15:17:57 +0200789config CMD_ADC
790 bool "adc - Access Analog to Digital Converters info and data"
791 select ADC
792 select DM_REGULATOR
793 help
794 Shows ADC device info and permit printing one-shot analog converted
795 data from a named Analog to Digital Converter.
796
Eugeniu Rosca35c34be2019-05-23 17:32:22 +0200797config CMD_BCB
798 bool "bcb"
799 depends on MMC
800 depends on PARTITIONS
801 help
802 Read/modify/write the fields of Bootloader Control Block, usually
803 stored on the flash "misc" partition with its structure defined in:
804 https://android.googlesource.com/platform/bootable/recovery/+/master/
805 bootloader_message/include/bootloader_message/bootloader_message.h
806
807 Some real-life use-cases include (but are not limited to):
808 - Determine the "boot reason" (and act accordingly):
809 https://source.android.com/devices/bootloader/boot-reason
810 - Get/pass a list of commands from/to recovery:
811 https://android.googlesource.com/platform/bootable/recovery
812 - Inspect/dump the contents of the BCB fields
813
Jean-Jacques Hiblote83a31b2018-08-09 16:17:46 +0200814config CMD_BIND
815 bool "bind/unbind - Bind or unbind a device to/from a driver"
816 depends on DM
817 help
818 Bind or unbind a device to/from a driver from the command line.
819 This is useful in situations where a device may be handled by several
820 drivers. For example, this can be used to bind a UDC to the usb ether
821 gadget driver from the command line.
822
Simon Glass04ac6f12017-04-26 22:28:02 -0600823config CMD_CLK
824 bool "clk - Show clock frequencies"
825 help
826 (deprecated)
827 Shows clock frequences by calling a sock_clk_dump() hook function.
828 This is depreated in favour of using the CLK uclass and accessing
829 clock values from associated drivers. However currently no command
830 exists for this.
831
Simon Glass036bbb12017-08-04 16:34:28 -0600832config CMD_DEMO
833 bool "demo - Demonstration commands for driver model"
834 depends on DM
835 help
836 Provides a 'demo' command which can be used to play around with
837 driver model. To use this properly you will need to enable one or
838 both of the demo devices (DM_DEMO_SHAPE and DM_DEMO_SIMPLE).
839 Otherwise you will always get an empty list of devices. The demo
840 devices are defined in the sandbox device tree, so the easiest
841 option is to use sandbox and pass the -d point to sandbox's
842 u-boot.dtb file.
843
844config CMD_DFU
845 bool "dfu"
Marek Vasutea84f802018-02-16 16:41:17 +0100846 select DFU
Simon Glass036bbb12017-08-04 16:34:28 -0600847 help
848 Enables the command "dfu" which is used to have U-Boot create a DFU
Simon Glass663b0cc2017-08-04 16:35:06 -0600849 class device via USB. This command requires that the "dfu_alt_info"
850 environment variable be set and define the alt settings to expose to
851 the host.
Simon Glass036bbb12017-08-04 16:34:28 -0600852
Simon Glass29499a02016-01-17 20:53:51 -0700853config CMD_DM
854 bool "dm - Access to driver model information"
855 depends on DM
Simon Glass29499a02016-01-17 20:53:51 -0700856 help
857 Provides access to driver model data structures and information,
858 such as a list of devices, list of uclasses and the state of each
859 device (e.g. activated). This is not required for operation, but
860 can be useful to see the state of driver model for debugging or
861 interest.
862
Alex Kiernan65de9552018-05-29 15:30:39 +0000863config CMD_FASTBOOT
864 bool "fastboot - Android fastboot support"
865 depends on FASTBOOT
866 help
867 This enables the command "fastboot" which enables the Android
868 fastboot mode for the platform. Fastboot is a protocol for
869 downloading images, flashing and device control used on
Alex Kiernand5aa57c2018-05-29 15:30:53 +0000870 Android devices. Fastboot requires either the network stack
871 enabled or support for acting as a USB device.
Alex Kiernan65de9552018-05-29 15:30:39 +0000872
Eugeniu Roscac37e68f2019-07-19 23:26:11 +0200873 See doc/android/fastboot.txt for more information.
Alex Kiernan65de9552018-05-29 15:30:39 +0000874
Simon Glass036bbb12017-08-04 16:34:28 -0600875config CMD_FLASH
876 bool "flinfo, erase, protect"
877 default y
Miquel Raynald2418202019-10-25 19:39:30 +0200878 depends on MTD || FLASH_CFI_DRIVER || MTD_NOR_FLASH
Simon Glass036bbb12017-08-04 16:34:28 -0600879 help
880 NOR flash support.
881 flinfo - print FLASH memory information
882 erase - FLASH memory
883 protect - enable or disable FLASH write protection
884
885config CMD_FPGA
886 bool "fpga"
Tuomas Tynkkynen5ca16b32018-01-27 20:28:40 +0200887 depends on FPGA
Simon Glass036bbb12017-08-04 16:34:28 -0600888 default y
889 help
890 FPGA support.
891
892config CMD_FPGA_LOADBP
893 bool "fpga loadbp - load partial bitstream (Xilinx only)"
894 depends on CMD_FPGA
895 help
896 Supports loading an FPGA device from a bitstream buffer containing
897 a partial bitstream.
898
899config CMD_FPGA_LOADFS
900 bool "fpga loadfs - load bitstream from FAT filesystem (Xilinx only)"
901 depends on CMD_FPGA
902 help
903 Supports loading an FPGA device from a FAT filesystem.
904
905config CMD_FPGA_LOADMK
906 bool "fpga loadmk - load bitstream from image"
907 depends on CMD_FPGA
908 help
909 Supports loading an FPGA device from a image generated by mkimage.
910
911config CMD_FPGA_LOADP
912 bool "fpga loadp - load partial bitstream"
913 depends on CMD_FPGA
914 help
915 Supports loading an FPGA device from a bitstream buffer containing
916 a partial bitstream.
917
Siva Durga Prasad Paladugucce0cb02018-05-31 15:10:22 +0530918config CMD_FPGA_LOAD_SECURE
919 bool "fpga loads - loads secure bitstreams (Xilinx only)"
920 depends on CMD_FPGA
921 help
922 Enables the fpga loads command which is used to load secure
923 (authenticated or encrypted or both) bitstreams on to FPGA.
924
Simon Glass036bbb12017-08-04 16:34:28 -0600925config CMD_FPGAD
926 bool "fpgad - dump FPGA registers"
927 help
928 (legacy, needs conversion to driver model)
929 Provides a way to dump FPGA registers by calling the board-specific
930 fpga_get_reg() function. This functions similarly to the 'md'
931 command.
932
933config CMD_FUSE
934 bool "fuse - support for the fuse subssystem"
935 help
936 (deprecated - needs conversion to driver model)
937 This allows reading, sensing, programming or overriding fuses
938 which control the behaviour of the device. The command uses the
939 fuse_...() API.
940
941config CMD_GPIO
942 bool "gpio"
943 help
944 GPIO support.
945
946config CMD_GPT
947 bool "GPT (GUID Partition Table) command"
Simon Glass036bbb12017-08-04 16:34:28 -0600948 select EFI_PARTITION
Adam Fordb10ba902018-02-06 12:43:56 -0600949 select HAVE_BLOCK_DEVICE
Michal Simek84f3dec2018-07-23 15:55:13 +0200950 select PARTITION_UUIDS
Maxime Ripard24336442017-08-24 11:52:32 +0200951 imply RANDOM_UUID
Simon Glass036bbb12017-08-04 16:34:28 -0600952 help
953 Enable the 'gpt' command to ready and write GPT style partition
954 tables.
955
Maxime Ripard24336442017-08-24 11:52:32 +0200956config RANDOM_UUID
957 bool "GPT Random UUID generation"
Adam Ford70c8f052018-02-06 12:14:28 -0600958 select LIB_UUID
Maxime Ripard24336442017-08-24 11:52:32 +0200959 help
960 Enable the generation of partitions with random UUIDs if none
961 are provided.
962
Simon Glass036bbb12017-08-04 16:34:28 -0600963config CMD_GPT_RENAME
964 bool "GPT partition renaming commands"
965 depends on CMD_GPT
966 help
967 Enables the 'gpt' command to interchange names on two GPT
968 partitions via the 'gpt swap' command or to rename single
969 partitions via the 'rename' command.
Simon Glass29499a02016-01-17 20:53:51 -0700970
Simon Glassa831eca2017-05-17 03:25:29 -0600971config CMD_IDE
972 bool "ide - Support for IDE drivers"
Simon Glassb569a012017-05-17 03:25:30 -0600973 select IDE
Simon Glassa831eca2017-05-17 03:25:29 -0600974 help
975 Provides an 'ide' command which allows accessing the IDE drive,
976 reseting the IDE interface, printing the partition table and
977 geting device info. It also enables the 'diskboot' command which
978 permits booting from an IDE drive.
979
Simon Glass3bebbe62017-05-17 03:25:34 -0600980config CMD_IO
981 bool "io - Support for performing I/O accesses"
982 help
983 Provides an 'iod' command to display I/O space and an 'iow' command
984 to write values to the I/O space. This can be useful for manually
985 checking the state of devices during boot when debugging device
986 drivers, etc.
987
Simon Glass30daabc2017-05-17 03:25:36 -0600988config CMD_IOTRACE
989 bool "iotrace - Support for tracing I/O activity"
990 help
991 Provides an 'iotrace' command which supports recording I/O reads and
992 writes in a trace buffer in memory . It also maintains a checksum
993 of the trace records (even if space is exhausted) so that the
994 sequence of I/O accesses can be verified.
995
996 When debugging drivers it is useful to see what I/O accesses were
997 done and in what order.
998
999 Even if the individual accesses are of little interest it can be
1000 useful to verify that the access pattern is consistent each time
1001 an operation is performed. In this case a checksum can be used to
1002 characterise the operation of a driver. The checksum can be compared
1003 across different runs of the operation to verify that the driver is
1004 working properly.
1005
1006 In particular, when performing major refactoring of the driver, where
1007 the access pattern should not change, the checksum provides assurance
1008 that the refactoring work has not broken the driver.
1009
1010 This works by sneaking into the io.h heder for an architecture and
1011 redirecting I/O accesses through iotrace's tracing mechanism.
1012
1013 For now no commands are provided to examine the trace buffer. The
1014 format is fairly simple, so 'md' is a reasonable substitute.
1015
1016 Note: The checksum feature is only useful for I/O regions where the
1017 contents do not change outside of software control. Where this is not
1018 suitable you can fall back to manually comparing the addresses. It
1019 might be useful to enhance tracing to only checksum the accesses and
1020 not the data read/written.
1021
Simon Glass036bbb12017-08-04 16:34:28 -06001022config CMD_I2C
1023 bool "i2c"
1024 help
1025 I2C support.
1026
Eugen Hristevb879c842018-09-18 10:35:33 +03001027config CMD_W1
1028 depends on W1
1029 default y if W1
1030 bool "w1 - Support for Dallas 1-Wire protocol"
1031 help
1032 Dallas 1-wire protocol support
1033
Simon Glass29499a02016-01-17 20:53:51 -07001034config CMD_LOADB
1035 bool "loadb"
1036 default y
1037 help
1038 Load a binary file over serial line.
1039
1040config CMD_LOADS
1041 bool "loads"
1042 default y
1043 help
1044 Load an S-Record file over serial line
1045
Dinh Nguyen0685bef2016-04-21 09:05:23 -05001046config CMD_MMC
1047 bool "mmc"
1048 help
1049 MMC memory mapped support.
1050
Alex Kiernan60e0f612018-05-08 04:43:31 +00001051config CMD_MMC_RPMB
1052 bool "Enable support for RPMB in the mmc command"
1053 depends on CMD_MMC
1054 help
1055 Enable the commands for reading, writing and programming the
1056 key for the Replay Protection Memory Block partition in eMMC.
1057
Alex Kiernanc568bcb2018-05-29 15:30:52 +00001058config CMD_MMC_SWRITE
1059 bool "mmc swrite"
1060 depends on CMD_MMC && MMC_WRITE
1061 select IMAGE_SPARSE
1062 help
1063 Enable support for the "mmc swrite" command to write Android sparse
1064 images to eMMC.
1065
Miquel Raynal741f4c72018-09-29 12:58:28 +02001066config CMD_MTD
1067 bool "mtd"
Miquel Raynald2418202019-10-25 19:39:30 +02001068 depends on MTD
Miquel Raynal741f4c72018-09-29 12:58:28 +02001069 select MTD_PARTITIONS
1070 help
1071 MTD commands support.
1072
Simon Glass29499a02016-01-17 20:53:51 -07001073config CMD_NAND
1074 bool "nand"
Maxime Ripard5a5d71f2017-03-03 15:13:30 +01001075 default y if NAND_SUNXI
Miquel Raynald2418202019-10-25 19:39:30 +02001076 depends on MTD_RAW_NAND
Simon Glass29499a02016-01-17 20:53:51 -07001077 help
1078 NAND support.
1079
Boris Brezillon19907782017-02-27 18:22:07 +01001080if CMD_NAND
1081config CMD_NAND_TRIMFFS
1082 bool "nand write.trimffs"
Hans de Goedefd42c052017-02-27 18:22:10 +01001083 default y if ARCH_SUNXI
Boris Brezillon19907782017-02-27 18:22:07 +01001084 help
1085 Allows one to skip empty pages when flashing something on a NAND.
1086
1087config CMD_NAND_LOCK_UNLOCK
1088 bool "nand lock/unlock"
1089 help
1090 NAND locking support.
1091
1092config CMD_NAND_TORTURE
1093 bool "nand torture"
1094 help
1095 NAND torture support.
1096
1097endif # CMD_NAND
1098
Zhikang Zhang49455652017-08-03 02:30:59 -07001099config CMD_NVME
1100 bool "nvme"
1101 depends on NVME
1102 default y if NVME
1103 help
1104 NVM Express device support
1105
Simon Glassa2a82072017-08-04 16:34:31 -06001106config CMD_ONENAND
1107 bool "onenand - access to onenand device"
Miquel Raynald2418202019-10-25 19:39:30 +02001108 depends on MTD
Simon Glassa2a82072017-08-04 16:34:31 -06001109 help
1110 OneNAND is a brand of NAND ('Not AND' gate) flash which provides
1111 various useful features. This command allows reading, writing,
1112 and erasing blocks. It allso provides a way to show and change
1113 bad blocks, and test the device.
1114
Mario Sixf8395902018-09-27 09:19:34 +02001115config CMD_OSD
1116 bool "osd"
1117 help
1118 Enable the 'osd' command which allows to query information from and
1119 write text data to a on-screen display (OSD) device; a virtual device
1120 associated with a display capable of displaying a text overlay on the
1121 display it's associated with..
1122
Patrick Delaunay73287092017-01-27 11:00:42 +01001123config CMD_PART
1124 bool "part"
Adam Fordb10ba902018-02-06 12:43:56 -06001125 select HAVE_BLOCK_DEVICE
Michal Simek84f3dec2018-07-23 15:55:13 +02001126 select PARTITION_UUIDS
Patrick Delaunay73287092017-01-27 11:00:42 +01001127 help
1128 Read and display information about the partition table on
1129 various media.
1130
Simon Glassc88a09a2017-08-04 16:34:34 -06001131config CMD_PCI
1132 bool "pci - Access PCI devices"
1133 help
1134 Provide access to PCI (Peripheral Interconnect Bus), a type of bus
1135 used on some devices to allow the CPU to communicate with its
1136 peripherals. Sub-commands allow bus enumeration, displaying and
1137 changing configuration space and a few other features.
1138
Patrice Chotardc4b4ef02018-10-24 14:10:17 +02001139config CMD_PINMUX
1140 bool "pinmux - show pins muxing"
1141 default y if PINCTRL
1142 help
1143 Parse all available pin-controllers and show pins muxing. This
1144 is useful for debug purpoer to check the pin muxing and to know if
1145 a pin is configured as a GPIO or as an alternate function.
1146
Adam Fordc4f16322018-09-09 07:05:57 -05001147config CMD_POWEROFF
1148 bool "poweroff"
1149 help
1150 Poweroff/Shutdown the system
1151
Simon Glassc05459b2017-08-04 16:34:39 -06001152config CMD_READ
1153 bool "read - Read binary data from a partition"
1154 help
1155 Provides low-level access to the data in a partition.
1156
Simon Glass036bbb12017-08-04 16:34:28 -06001157config CMD_REMOTEPROC
1158 bool "remoteproc"
1159 depends on REMOTEPROC
1160 help
1161 Support for Remote Processor control
1162
1163config CMD_SATA
1164 bool "sata - Access SATA subsystem"
1165 select SATA
1166 help
1167 SATA (Serial Advanced Technology Attachment) is a serial bus
1168 standard for connecting to hard drives and other storage devices.
1169 This command provides information about attached devices and allows
1170 reading, writing and other operations.
1171
1172 SATA replaces PATA (originally just ATA), which stands for Parallel AT
1173 Attachment, where AT refers to an IBM AT (Advanced Technology)
1174 computer released in 1984.
1175
Simon Glassd09f3772017-08-04 16:34:43 -06001176config CMD_SAVES
1177 bool "saves - Save a file over serial in S-Record format"
1178 help
1179 Provides a way to save a binary file using the Motorola S-Record
1180 format over the serial line.
1181
Heinrich Schuchardta0f52832018-02-14 08:05:44 +01001182config CMD_SCSI
1183 bool "scsi - Access to SCSI devices"
1184 default y if SCSI
1185 help
1186 This provides a 'scsi' command which provides access to SCSI (Small
1187 Computer System Interface) devices. The command provides a way to
1188 scan the bus, reset the bus, read and write data and get information
1189 about devices.
1190
Simon Glass6870d2e2017-08-04 16:34:45 -06001191config CMD_SDRAM
1192 bool "sdram - Print SDRAM configuration information"
1193 help
1194 Provides information about attached SDRAM. This assumed that the
1195 SDRAM has an EEPROM with information that can be read using the
1196 I2C bus. This is only available on some boards.
1197
Simon Glass29499a02016-01-17 20:53:51 -07001198config CMD_SF
1199 bool "sf"
Tom Rinie5289a72019-05-29 17:01:28 -04001200 depends on DM_SPI_FLASH || SPI_FLASH
Jagan Teki132e81f2019-10-16 17:59:42 +05301201 default y if DM_SPI_FLASH
Simon Glass29499a02016-01-17 20:53:51 -07001202 help
1203 SPI Flash support
1204
Simon Glass86b1b652017-08-04 16:34:46 -06001205config CMD_SF_TEST
1206 bool "sf test - Allow testing of SPI flash"
Tom Rinie5289a72019-05-29 17:01:28 -04001207 depends on CMD_SF
Simon Glass86b1b652017-08-04 16:34:46 -06001208 help
1209 Provides a way to test that SPI flash is working correctly. The
1210 test is destructive, in that an area of SPI flash must be provided
1211 for the test to use. Performance information is also provided,
1212 measuring the performance of reading, writing and erasing in
1213 Mbps (Million Bits Per Second). This value should approximately
1214 equal the SPI bus speed for a single-bit-wide SPI bus, assuming
1215 everything is working properly.
1216
Simon Glass29499a02016-01-17 20:53:51 -07001217config CMD_SPI
Patrick Delaunay5a6b52b2019-02-27 15:20:37 +01001218 bool "sspi - Command to access spi device"
Tom Rinie5289a72019-05-29 17:01:28 -04001219 depends on SPI
Simon Glass29499a02016-01-17 20:53:51 -07001220 help
1221 SPI utility command.
1222
Patrick Delaunay5a6b52b2019-02-27 15:20:37 +01001223config DEFAULT_SPI_BUS
1224 int "default spi bus used by sspi command"
1225 depends on CMD_SPI
1226 default 0
1227
1228config DEFAULT_SPI_MODE
1229 hex "default spi mode used by sspi command (see include/spi.h)"
1230 depends on CMD_SPI
1231 default 0
1232
Simon Glass80a56cd2017-08-04 16:35:00 -06001233config CMD_TSI148
1234 bool "tsi148 - Command to access tsi148 device"
1235 help
1236 This provides various sub-commands to initialise and configure the
1237 Turndra tsi148 device. See the command help for full details.
1238
Faiz Abbas61e9fbb2019-10-15 18:24:40 +05301239config CMD_UFS
1240 bool "Enable UFS - Universal Flash Subsystem commands"
1241 depends on UFS
1242 help
1243 "This provides commands to initialise and configure universal flash
1244 subsystem devices"
1245
Simon Glass0c03c1a2017-08-04 16:35:01 -06001246config CMD_UNIVERSE
1247 bool "universe - Command to set up the Turndra Universe controller"
1248 help
1249 This allows setting up the VMEbus provided by this controller.
1250 See the command help for full details.
1251
Simon Glass29499a02016-01-17 20:53:51 -07001252config CMD_USB
1253 bool "usb"
Adam Fordb10ba902018-02-06 12:43:56 -06001254 select HAVE_BLOCK_DEVICE
Simon Glass29499a02016-01-17 20:53:51 -07001255 help
1256 USB support.
1257
Stefan Agnerd9d661c2017-08-16 11:00:53 -07001258config CMD_USB_SDP
1259 bool "sdp"
1260 select USB_FUNCTION_SDP
1261 help
1262 Enables the command "sdp" which is used to have U-Boot emulating the
1263 Serial Download Protocol (SDP) via USB.
Michal Simekf751ff52018-07-23 15:55:12 +02001264
Eddie Cai5e3020b2017-12-15 08:17:11 +08001265config CMD_ROCKUSB
1266 bool "rockusb"
1267 depends on USB_FUNCTION_ROCKUSB
1268 help
Michal Simekf751ff52018-07-23 15:55:12 +02001269 Rockusb protocol is widely used by Rockchip SoC based devices. It can
Eddie Cai5e3020b2017-12-15 08:17:11 +08001270 read/write info, image to/from devices. This enable rockusb command
1271 support to communication with rockusb device. for more detail about
1272 this command, please read doc/README.rockusb.
Stefan Agnerd9d661c2017-08-16 11:00:53 -07001273
Dinh Nguyen0685bef2016-04-21 09:05:23 -05001274config CMD_USB_MASS_STORAGE
1275 bool "UMS usb mass storage"
Lukasz Majewski6e782742018-01-29 19:28:02 +01001276 select USB_FUNCTION_MASS_STORAGE
Dinh Nguyen0685bef2016-04-21 09:05:23 -05001277 help
1278 USB mass storage support
1279
Tuomas Tynkkynen10a60d22018-10-15 02:21:12 -07001280config CMD_VIRTIO
1281 bool "virtio"
1282 depends on VIRTIO
1283 default y if VIRTIO
1284 help
1285 VirtIO block device support
1286
Michael Walle23964a82019-04-06 02:24:02 +02001287config CMD_WDT
1288 bool "wdt"
1289 depends on WDT
1290 help
1291 This provides commands to control the watchdog timer devices.
1292
Mario Sixfd1cc422018-08-09 14:51:21 +02001293config CMD_AXI
1294 bool "axi"
1295 depends on AXI
1296 help
1297 Enable the command "axi" for accessing AXI (Advanced eXtensible
1298 Interface) busses, a on-chip interconnect specification for managing
1299 functional blocks in SoC designs, which is also often used in designs
1300 involving FPGAs (e.g. communication with IP cores in Xilinx FPGAs).
Simon Glass29499a02016-01-17 20:53:51 -07001301endmenu
1302
1303
1304menu "Shell scripting commands"
1305
1306config CMD_ECHO
1307 bool "echo"
1308 default y
1309 help
1310 Echo args to console
1311
1312config CMD_ITEST
1313 bool "itest"
1314 default y
1315 help
1316 Return true/false on integer compare.
1317
1318config CMD_SOURCE
1319 bool "source"
1320 default y
1321 help
1322 Run script from memory
1323
1324config CMD_SETEXPR
1325 bool "setexpr"
1326 default y
1327 help
1328 Evaluate boolean and math expressions and store the result in an env
1329 variable.
1330 Also supports loading the value at a memory location into a variable.
1331 If CONFIG_REGEX is enabled, setexpr also supports a gsub function.
1332
1333endmenu
1334
Ruslan Trofymenkoa24f9b42019-07-05 15:37:33 +03001335menu "Android support commands"
1336
1337config CMD_AB_SELECT
1338 bool "ab_select"
1339 default n
1340 depends on ANDROID_AB
1341 help
1342 On Android devices with more than one boot slot (multiple copies of
1343 the kernel and system images) this provides a command to select which
1344 slot should be used to boot from and register the boot attempt. This
1345 is used by the new A/B update model where one slot is updated in the
1346 background while running from the other slot.
1347
1348endmenu
1349
Michal Simek2f785a12018-02-26 16:01:02 +01001350if NET
1351
Joe Hershbergerb0429462018-04-13 15:26:30 -05001352menuconfig CMD_NET
1353 bool "Network commands"
1354 default y
Adam Ford53705472018-07-20 23:03:57 -05001355 imply NETDEVICES
Joe Hershbergerb0429462018-04-13 15:26:30 -05001356
1357if CMD_NET
1358
1359config CMD_BOOTP
1360 bool "bootp"
Simon Glass29499a02016-01-17 20:53:51 -07001361 default y
1362 help
Simon Glass29499a02016-01-17 20:53:51 -07001363 bootp - boot image via network using BOOTP/TFTP protocol
Joe Hershbergerb0429462018-04-13 15:26:30 -05001364
Joe Hershberger01261792018-04-13 15:26:33 -05001365config CMD_DHCP
1366 bool "dhcp"
1367 depends on CMD_BOOTP
1368 help
1369 Boot image via network using DHCP/TFTP protocol
1370
Joe Hershberger0824ad92018-04-13 15:26:32 -05001371config BOOTP_BOOTPATH
Joe Hershberger06661e12018-04-13 15:26:34 -05001372 bool "Request & store 'rootpath' from BOOTP/DHCP server"
Joe Hershberger8ffe7e52018-04-13 15:26:37 -05001373 default y
Joe Hershberger0824ad92018-04-13 15:26:32 -05001374 depends on CMD_BOOTP
Joe Hershberger06661e12018-04-13 15:26:34 -05001375 help
1376 Even though the config is called BOOTP_BOOTPATH, it stores the
1377 path in the variable 'rootpath'.
Joe Hershberger0824ad92018-04-13 15:26:32 -05001378
1379config BOOTP_DNS
Joe Hershberger06661e12018-04-13 15:26:34 -05001380 bool "Request & store 'dnsip' from BOOTP/DHCP server"
Joe Hershberger8ffe7e52018-04-13 15:26:37 -05001381 default y
Joe Hershberger0824ad92018-04-13 15:26:32 -05001382 depends on CMD_BOOTP
Joe Hershberger06661e12018-04-13 15:26:34 -05001383 help
1384 The primary DNS server is stored as 'dnsip'. If two servers are
1385 returned, you must set BOOTP_DNS2 to store that second server IP
1386 also.
Joe Hershberger0824ad92018-04-13 15:26:32 -05001387
Joe Hershberger63e70712018-04-13 15:26:35 -05001388config BOOTP_DNS2
1389 bool "Store 'dnsip2' from BOOTP/DHCP server"
1390 depends on BOOTP_DNS
1391 help
1392 If a DHCP client requests the DNS server IP from a DHCP server,
1393 it is possible that more than one DNS serverip is offered to the
1394 client. If CONFIG_BOOTP_DNS2 is enabled, the secondary DNS
1395 server IP will be stored in the additional environment
1396 variable "dnsip2". The first DNS serverip is always
1397 stored in the variable "dnsip", when BOOTP_DNS is defined.
1398
Joe Hershberger0824ad92018-04-13 15:26:32 -05001399config BOOTP_GATEWAY
Joe Hershberger06661e12018-04-13 15:26:34 -05001400 bool "Request & store 'gatewayip' from BOOTP/DHCP server"
Joe Hershberger8ffe7e52018-04-13 15:26:37 -05001401 default y
Joe Hershberger0824ad92018-04-13 15:26:32 -05001402 depends on CMD_BOOTP
1403
1404config BOOTP_HOSTNAME
Joe Hershberger06661e12018-04-13 15:26:34 -05001405 bool "Request & store 'hostname' from BOOTP/DHCP server"
Joe Hershberger8ffe7e52018-04-13 15:26:37 -05001406 default y
Joe Hershberger0824ad92018-04-13 15:26:32 -05001407 depends on CMD_BOOTP
Joe Hershberger06661e12018-04-13 15:26:34 -05001408 help
1409 The name may or may not be qualified with the local domain name.
Joe Hershberger0824ad92018-04-13 15:26:32 -05001410
Alexander Graf427e6952018-06-15 10:29:28 +02001411config BOOTP_PREFER_SERVERIP
1412 bool "serverip variable takes precedent over DHCP server IP."
1413 depends on CMD_BOOTP
1414 help
1415 By default a BOOTP/DHCP reply will overwrite the 'serverip' variable.
1416
1417 With this option enabled, the 'serverip' variable in the environment
1418 takes precedence over DHCP server IP and will only be set by the DHCP
1419 server if not already set in the environment.
1420
Joe Hershberger0824ad92018-04-13 15:26:32 -05001421config BOOTP_SUBNETMASK
Joe Hershberger06661e12018-04-13 15:26:34 -05001422 bool "Request & store 'netmask' from BOOTP/DHCP server"
Joe Hershberger8ffe7e52018-04-13 15:26:37 -05001423 default y
Joe Hershberger0824ad92018-04-13 15:26:32 -05001424 depends on CMD_BOOTP
1425
Chris Packhambfa7c212018-05-03 20:19:02 +12001426config BOOTP_NTPSERVER
1427 bool "Request & store 'ntpserverip' from BOOTP/DHCP server"
1428 depends on CMD_BOOTP
1429
Ramon Friedac598c12019-07-18 21:43:30 +03001430config CMD_PCAP
1431 bool "pcap capture"
1432 help
1433 Selecting this will allow capturing all Ethernet packets and store
1434 them in physical memory in a PCAP formated file,
1435 later to be analyzed by PCAP reader application (IE. WireShark).
1436
Joe Hershberger0824ad92018-04-13 15:26:32 -05001437config BOOTP_PXE
Joe Hershberger84ccdbe2018-04-13 15:26:36 -05001438 bool "Send PXE client arch to BOOTP/DHCP server"
Joe Hershberger8ffe7e52018-04-13 15:26:37 -05001439 default y
Joe Hershberger84ccdbe2018-04-13 15:26:36 -05001440 depends on CMD_BOOTP && CMD_PXE
1441 help
1442 Supported for ARM, ARM64, and x86 for now.
Joe Hershberger0824ad92018-04-13 15:26:32 -05001443
1444config BOOTP_PXE_CLIENTARCH
1445 hex
Joe Hershberger84ccdbe2018-04-13 15:26:36 -05001446 depends on BOOTP_PXE
Joe Hershberger0824ad92018-04-13 15:26:32 -05001447 default 0x16 if ARM64
1448 default 0x15 if ARM
1449 default 0 if X86
1450
1451config BOOTP_VCI_STRING
1452 string
1453 depends on CMD_BOOTP
Michal Simekf4359382018-04-26 18:21:29 +05301454 default "U-Boot.armv7" if CPU_V7A || CPU_V7M || CPU_V7R
Joe Hershberger0824ad92018-04-13 15:26:32 -05001455 default "U-Boot.armv8" if ARM64
1456 default "U-Boot.arm" if ARM
1457 default "U-Boot"
1458
Joe Hershbergerb0429462018-04-13 15:26:30 -05001459config CMD_TFTPBOOT
1460 bool "tftpboot"
1461 default y
1462 help
Simon Glass29499a02016-01-17 20:53:51 -07001463 tftpboot - boot image via network using TFTP protocol
1464
1465config CMD_TFTPPUT
1466 bool "tftp put"
Joe Hershbergerb0429462018-04-13 15:26:30 -05001467 depends on CMD_TFTPBOOT
Simon Glass29499a02016-01-17 20:53:51 -07001468 help
1469 TFTP put command, for uploading files to a server
1470
1471config CMD_TFTPSRV
1472 bool "tftpsrv"
Joe Hershbergerb0429462018-04-13 15:26:30 -05001473 depends on CMD_TFTPBOOT
Simon Glass29499a02016-01-17 20:53:51 -07001474 help
1475 Act as a TFTP server and boot the first received file
1476
Joe Hershberger0824ad92018-04-13 15:26:32 -05001477config NET_TFTP_VARS
1478 bool "Control TFTP timeout and count through environment"
1479 depends on CMD_TFTPBOOT
1480 default y
1481 help
1482 If set, allows controlling the TFTP timeout through the
1483 environment variable tftptimeout, and the TFTP maximum
1484 timeout count through the variable tftptimeoutcountmax.
1485 If unset, timeout and maximum are hard-defined as 1 second
1486 and 10 timouts per TFTP transfer.
1487
Simon Glass29499a02016-01-17 20:53:51 -07001488config CMD_RARP
1489 bool "rarpboot"
1490 help
1491 Boot image via network using RARP/TFTP protocol
1492
Simon Glass29499a02016-01-17 20:53:51 -07001493config CMD_NFS
1494 bool "nfs"
1495 default y
1496 help
1497 Boot image via network using NFS protocol.
1498
Dinh Nguyen0685bef2016-04-21 09:05:23 -05001499config CMD_MII
1500 bool "mii"
Ramon Frieddeb6c502019-09-13 18:25:03 +03001501 imply CMD_MDIO
1502 help
1503 If set, allows 802.3(clause 22) MII Management functions interface access
1504 The management interface specified in Clause 22 provides
1505 a simple, two signal, serial interface to connect a
1506 Station Management entity and a managed PHY for providing access
1507 to management parameters and services.
1508 The interface is referred to as the MII management interface.
1509
1510config CMD_MDIO
1511 bool "mdio"
1512 depends on PHYLIB
Dinh Nguyen0685bef2016-04-21 09:05:23 -05001513 help
Ramon Frieddeb6c502019-09-13 18:25:03 +03001514 If set, allows Enable 802.3(clause 45) MDIO interface registers access
1515 The MDIO interface is orthogonal to the MII interface and extends
1516 it by adding access to more registers through indirect addressing.
Dinh Nguyen0685bef2016-04-21 09:05:23 -05001517
Simon Glass29499a02016-01-17 20:53:51 -07001518config CMD_PING
1519 bool "ping"
1520 help
1521 Send ICMP ECHO_REQUEST to network host
1522
1523config CMD_CDP
1524 bool "cdp"
1525 help
1526 Perform CDP network configuration
1527
1528config CMD_SNTP
1529 bool "sntp"
1530 help
1531 Synchronize RTC via network
1532
1533config CMD_DNS
1534 bool "dns"
1535 help
1536 Lookup the IP of a hostname
1537
1538config CMD_LINK_LOCAL
1539 bool "linklocal"
Joe Hershberger51d78982018-04-30 12:45:22 -05001540 select LIB_RAND
Simon Glass29499a02016-01-17 20:53:51 -07001541 help
1542 Acquire a network IP address using the link-local protocol
1543
Joe Hershberger0824ad92018-04-13 15:26:32 -05001544endif
1545
Simon Glass12b85702017-05-17 03:25:17 -06001546config CMD_ETHSW
1547 bool "ethsw"
1548 help
1549 Allow control of L2 Ethernet switch commands. These are supported
1550 by the vsc9953 Ethernet driver at present. Sub-commands allow
1551 operations such as enabling / disabling a port and
1552 viewing/maintaining the filtering database (FDB)
1553
Joe Hershberger0824ad92018-04-13 15:26:32 -05001554config CMD_PXE
1555 bool "pxe"
1556 select MENU
1557 help
1558 Boot image via network using PXE protocol
Michal Simek2f785a12018-02-26 16:01:02 +01001559
Lothar Felten776fc102018-06-22 22:29:54 +02001560config CMD_WOL
1561 bool "wol"
1562 help
1563 Wait for wake-on-lan Magic Packet
1564
Joe Hershbergerb0429462018-04-13 15:26:30 -05001565endif
Simon Glass29499a02016-01-17 20:53:51 -07001566
1567menu "Misc commands"
1568
Simon Glassb575bfc2017-04-26 22:27:55 -06001569config CMD_BMP
1570 bool "Enable 'bmp' command"
1571 depends on LCD || DM_VIDEO || VIDEO
1572 help
Andrius Å tikonas1d5ccd62019-09-23 22:43:41 +01001573 This provides a way to obtain information about a BMP-format image
Simon Glassb575bfc2017-04-26 22:27:55 -06001574 and to display it. BMP (which presumably stands for BitMaP) is a
1575 file format defined by Microsoft which supports images of various
1576 depths, formats and compression methods. Headers on the file
1577 determine the formats used. This command can be used by first loading
1578 the image into RAM, then using this command to look at it or display
1579 it.
1580
Alex Kiernane710fa62018-05-12 05:49:47 +00001581config CMD_BOOTCOUNT
1582 bool "bootcount"
1583 depends on BOOTCOUNT_LIMIT
1584 help
1585 Enable the bootcount command, which allows interrogation and
1586 reset of the bootcounter.
1587
Simon Glassffab9a02017-04-26 22:27:56 -06001588config CMD_BSP
1589 bool "Enable board-specific commands"
1590 help
1591 (deprecated: instead, please define a Kconfig option for each command)
1592
1593 Some boards have board-specific commands which are only enabled
1594 during developemnt and need to be turned off for production. This
1595 option provides a way to control this. The commands that are enabled
1596 vary depending on the board.
1597
Tomas Melinc17dae52016-11-25 11:01:03 +02001598config CMD_BKOPS_ENABLE
1599 bool "mmc bkops enable"
1600 depends on CMD_MMC
1601 default n
1602 help
1603 Enable command for setting manual background operations handshake
1604 on a eMMC device. The feature is optionally available on eMMC devices
1605 conforming to standard >= 4.41.
1606
Eric Nelsonfaf4f052016-03-28 10:05:44 -07001607config CMD_BLOCK_CACHE
1608 bool "blkcache - control and stats for block cache"
1609 depends on BLOCK_CACHE
1610 default y if BLOCK_CACHE
1611 help
1612 Enable the blkcache command, which can be used to control the
1613 operation of the cache functions.
1614 This is most useful when fine-tuning the operation of the cache
1615 during development, but also allows the cache to be disabled when
1616 it might hurt performance (e.g. when using the ums command).
1617
Dinh Nguyen0685bef2016-04-21 09:05:23 -05001618config CMD_CACHE
1619 bool "icache or dcache"
1620 help
1621 Enable the "icache" and "dcache" commands
1622
Heinrich Schuchardt13ea6852018-09-07 19:43:11 +02001623config CMD_CONITRACE
1624 bool "conitrace - trace console input codes"
1625 help
1626 Enable the 'conitrace' command which displays the codes received
1627 from the console input as hexadecimal numbers.
1628
Anatolij Gustschine0455a42018-12-01 10:47:20 +01001629config CMD_CLS
1630 bool "Enable clear screen command 'cls'"
1631 depends on CFB_CONSOLE || DM_VIDEO || LCD || VIDEO
1632 default y if LCD
1633 help
1634 Enable the 'cls' command which clears the screen contents
1635 on video frame buffer.
1636
AKASHI Takahiroe7c08832019-02-25 15:54:38 +09001637config CMD_EFIDEBUG
1638 bool "efidebug - display/configure UEFI environment"
1639 depends on EFI_LOADER
Heinrich Schuchardt3db35912019-05-11 09:53:33 +02001640 select EFI_DEVICE_PATH_TO_TEXT
AKASHI Takahiroe7c08832019-02-25 15:54:38 +09001641 default n
1642 help
1643 Enable the 'efidebug' command which provides a subset of UEFI
1644 shell utility with simplified functionality. It will be useful
1645 particularly for managing boot parameters as well as examining
1646 various EFI status for debugging.
1647
Heinrich Schuchardtf7d6b072018-12-26 17:20:35 +01001648config CMD_EXCEPTION
1649 bool "exception - raise exception"
1650 depends on ARM || RISCV || X86
1651 help
1652 Enable the 'exception' command which allows to raise an exception.
1653
Simon Glassfc8a5292017-04-10 11:34:59 -06001654config CMD_LED
1655 bool "led"
Jan Kiszka89077ba2019-01-03 09:08:42 +01001656 depends on LED
Simon Glassfc8a5292017-04-10 11:34:59 -06001657 default y if LED
1658 help
1659 Enable the 'led' command which allows for control of LEDs supported
1660 by the board. The LEDs can be listed with 'led list' and controlled
1661 with led on/off/togle/blink. Any LED drivers can be controlled with
1662 this command, e.g. led_gpio.
1663
Chris Packham3e257df2017-04-29 15:20:28 +12001664config CMD_DATE
1665 bool "date"
1666 default y if DM_RTC
AKASHI Takahiro51ba5222019-11-13 09:44:49 +09001667 select LIB_DATE
Chris Packham3e257df2017-04-29 15:20:28 +12001668 help
1669 Enable the 'date' command for getting/setting the time/date in RTC
1670 devices.
1671
Simon Glass29499a02016-01-17 20:53:51 -07001672config CMD_TIME
1673 bool "time"
1674 help
1675 Run commands and summarize execution time.
1676
Simon Glassfa744522017-05-17 03:25:23 -06001677config CMD_GETTIME
1678 bool "gettime - read elapsed time"
1679 help
1680 Enable the 'gettime' command which reads the elapsed time since
1681 U-Boot started running. This shows the time in seconds and
1682 milliseconds. See also the 'bootstage' command which provides more
1683 flexibility for boot timing.
1684
Heinrich Schuchardta31a5942019-12-24 22:17:37 +01001685config CMD_RNG
1686 bool "rng command"
1687 depends on DM_RNG
1688 select HEXDUMP
1689 help
1690 Print bytes from the hardware random number generator.
1691
Simon Glass29499a02016-01-17 20:53:51 -07001692# TODO: rename to CMD_SLEEP
1693config CMD_MISC
1694 bool "sleep"
1695 default y
1696 help
1697 Delay execution for some time
1698
Siva Durga Prasad Paladugu8e45f1a2018-06-19 12:24:23 +02001699config MP
1700 bool "support for multiprocessor"
1701 help
1702 This provides an option to brinup
1703 different processors in multiprocessor
1704 cases.
1705
Simon Glass29499a02016-01-17 20:53:51 -07001706config CMD_TIMER
1707 bool "timer"
1708 help
1709 Access the system timer.
1710
Simon Glass29499a02016-01-17 20:53:51 -07001711config CMD_SOUND
1712 bool "sound"
1713 depends on SOUND
1714 help
1715 This provides basic access to the U-Boot's sound support. The main
1716 feature is to play a beep.
1717
1718 sound init - set up sound system
1719 sound play - play a sound
1720
Patrice Chotard7b81c052019-11-25 09:07:38 +01001721config CMD_SYSBOOT
1722 bool "sysboot"
1723 select MENU
1724 help
1725 Boot image via local extlinux.conf file
1726
Miao Yan92106272016-05-22 19:37:17 -07001727config CMD_QFW
Tom Rinibcb3c8d2016-05-06 10:40:22 -04001728 bool "qfw"
Miao Yan4fcd7f22016-05-22 19:37:14 -07001729 select QFW
Tom Rinibcb3c8d2016-05-06 10:40:22 -04001730 help
1731 This provides access to the QEMU firmware interface. The main
1732 feature is to allow easy loading of files passed to qemu-system
1733 via -kernel / -initrd
Konstantin Porotchkin97d26782016-12-08 12:22:28 +02001734
1735source "cmd/mvebu/Kconfig"
1736
Simon Glass89342ef2017-08-04 16:34:55 -06001737config CMD_TERMINAL
1738 bool "terminal - provides a way to attach a serial terminal"
1739 help
1740 Provides a 'cu'-like serial terminal command. This can be used to
1741 access other serial ports from the system console. The terminal
1742 is very simple with no special processing of characters. As with
1743 cu, you can press ~. (tilde followed by period) to exit.
1744
Simon Glass6d56aad2017-08-04 16:35:02 -06001745config CMD_UUID
1746 bool "uuid, guid - generation of unique IDs"
Adam Ford70c8f052018-02-06 12:14:28 -06001747 select LIB_UUID
Simon Glass6d56aad2017-08-04 16:35:02 -06001748 help
1749 This enables two commands:
1750
1751 uuid - generate random Universally Unique Identifier
1752 guid - generate Globally Unique Identifier based on random UUID
1753
1754 The two commands are very similar except for the endianness of the
1755 output.
1756
Simon Glass29499a02016-01-17 20:53:51 -07001757endmenu
1758
Lokesh Vutla962c4e02017-12-29 11:47:49 +05301759source "cmd/ti/Kconfig"
1760
Simon Glass29499a02016-01-17 20:53:51 -07001761config CMD_BOOTSTAGE
1762 bool "Enable the 'bootstage' command"
1763 depends on BOOTSTAGE
1764 help
1765 Add a 'bootstage' command which supports printing a report
1766 and un/stashing of bootstage data.
1767
1768menu "Power commands"
1769config CMD_PMIC
1770 bool "Enable Driver Model PMIC command"
1771 depends on DM_PMIC
1772 help
1773 This is the pmic command, based on a driver model pmic's API.
1774 Command features are unchanged:
1775 - list - list pmic devices
1776 - pmic dev <id> - show or [set] operating pmic device (NEW)
1777 - pmic dump - dump registers
1778 - pmic read address - read byte of register at address
1779 - pmic write address - write byte to register at address
1780 The only one change for this command is 'dev' subcommand.
1781
1782config CMD_REGULATOR
1783 bool "Enable Driver Model REGULATOR command"
1784 depends on DM_REGULATOR
1785 help
1786 This command is based on driver model regulator's API.
1787 User interface features:
1788 - list - list regulator devices
1789 - regulator dev <id> - show or [set] operating regulator device
1790 - regulator info - print constraints info
1791 - regulator status - print operating status
1792 - regulator value <val] <-f> - print/[set] voltage value [uV]
1793 - regulator current <val> - print/[set] current value [uA]
1794 - regulator mode <id> - print/[set] operating mode id
1795 - regulator enable - enable the regulator output
1796 - regulator disable - disable the regulator output
1797
1798 The '-f' (force) option can be used for set the value which exceeds
1799 the limits, which are found in device-tree and are kept in regulator's
1800 uclass platdata structure.
1801
1802endmenu
1803
1804menu "Security commands"
Simon Glass528fdd12017-04-26 22:27:49 -06001805config CMD_AES
1806 bool "Enable the 'aes' command"
1807 select AES
1808 help
1809 This provides a means to encrypt and decrypt data using the AES
1810 (Advanced Encryption Standard). This algorithm uses a symetric key
1811 and is widely used as a streaming cipher. Different key lengths are
1812 supported by the algorithm but this command only supports 128 bits
1813 at present.
1814
Simon Glass311ec4f2017-04-26 22:27:53 -06001815config CMD_BLOB
1816 bool "Enable the 'blob' command"
1817 help
1818 This is used with the Freescale secure boot mechanism.
1819
1820 Freescale's SEC block has built-in Blob Protocol which provides
1821 a method for protecting user-defined data across system power
1822 cycles. SEC block protects data in a data structure called a Blob,
1823 which provides both confidentiality and integrity protection.
1824
1825 Encapsulating data as a blob
1826 Each time that the Blob Protocol is used to protect data, a
1827 different randomly generated key is used to encrypt the data.
1828 This random key is itself encrypted using a key which is derived
1829 from SoC's non-volatile secret key and a 16 bit Key identifier.
1830 The resulting encrypted key along with encrypted data is called a
1831 blob. The non-volatile secure key is available for use only during
1832 secure boot.
1833
1834 During decapsulation, the reverse process is performed to get back
1835 the original data.
1836
1837 Sub-commands:
Michal Simekf751ff52018-07-23 15:55:12 +02001838 blob enc - encapsulating data as a cryptgraphic blob
Simon Glass311ec4f2017-04-26 22:27:53 -06001839 blob dec - decapsulating cryptgraphic blob to get the data
1840
1841 Syntax:
1842
1843 blob enc src dst len km
1844
1845 Encapsulate and create blob of data $len bytes long
1846 at address $src and store the result at address $dst.
1847 $km is the 16 byte key modifier is also required for
1848 generation/use as key for cryptographic operation. Key
1849 modifier should be 16 byte long.
1850
1851 blob dec src dst len km
1852
1853 Decapsulate the blob of data at address $src and
1854 store result of $len byte at addr $dst.
1855 $km is the 16 byte key modifier is also required for
1856 generation/use as key for cryptographic operation. Key
1857 modifier should be 16 byte long.
1858
Simon Glass027608e2017-05-17 03:25:25 -06001859config CMD_HASH
1860 bool "Support 'hash' command"
Simon Glassb22ec7a2017-05-17 09:05:34 -06001861 select HASH
Simon Glass027608e2017-05-17 03:25:25 -06001862 help
1863 This provides a way to hash data in memory using various supported
1864 algorithms (such as SHA1, MD5, CRC32). The computed digest can be
1865 saved to memory or to an environment variable. It is also possible
1866 to verify a hash against data in memory.
1867
Michalis Pappasd382d222018-04-13 10:40:57 +03001868config CMD_HVC
1869 bool "Support the 'hvc' command"
1870 depends on ARM_SMCCC
1871 help
1872 Allows issuing Hypervisor Calls (HVCs). Mostly useful for
1873 development and testing.
1874
1875config CMD_SMC
1876 bool "Support the 'smc' command"
1877 depends on ARM_SMCCC
1878 help
1879 Allows issuing Secure Monitor Calls (SMCs). Mostly useful for
1880 development and testing.
1881
Daniel Thompsona9e2c672017-05-19 17:26:58 +01001882config HASH_VERIFY
1883 bool "hash -v"
1884 depends on CMD_HASH
1885 help
1886 Add -v option to verify data against a hash.
1887
Miquel Raynal294f82a2018-05-15 11:57:05 +02001888config CMD_TPM_V1
1889 bool
1890
1891config CMD_TPM_V2
1892 bool
Tom Rini124a7ac2018-07-28 09:20:12 -04001893 select CMD_LOG
Miquel Raynal294f82a2018-05-15 11:57:05 +02001894
Simon Glass29499a02016-01-17 20:53:51 -07001895config CMD_TPM
1896 bool "Enable the 'tpm' command"
Miquel Raynal294f82a2018-05-15 11:57:05 +02001897 depends on TPM_V1 || TPM_V2
1898 select CMD_TPM_V1 if TPM_V1
1899 select CMD_TPM_V2 if TPM_V2
Simon Glass29499a02016-01-17 20:53:51 -07001900 help
1901 This provides a means to talk to a TPM from the command line. A wide
1902 range of commands if provided - see 'tpm help' for details. The
1903 command requires a suitable TPM on your board and the correct driver
1904 must be enabled.
1905
Miquel Raynal294f82a2018-05-15 11:57:05 +02001906if CMD_TPM
1907
Simon Glass29499a02016-01-17 20:53:51 -07001908config CMD_TPM_TEST
1909 bool "Enable the 'tpm test' command"
Miquel Raynal294f82a2018-05-15 11:57:05 +02001910 depends on TPM_V1
Simon Glass29499a02016-01-17 20:53:51 -07001911 help
Miquel Raynal294f82a2018-05-15 11:57:05 +02001912 This provides a a series of tests to confirm that the TPMv1.x is
1913 working correctly. The tests cover initialisation, non-volatile RAM,
1914 extend, global lock and checking that timing is within expectations.
1915 The tests pass correctly on Infineon TPMs but may need to be adjusted
Simon Glass29499a02016-01-17 20:53:51 -07001916 for other devices.
1917
Miquel Raynal294f82a2018-05-15 11:57:05 +02001918endif
1919
Simon Glass29499a02016-01-17 20:53:51 -07001920endmenu
1921
Moritz Fischer62b30272016-10-04 17:08:08 -07001922menu "Firmware commands"
1923config CMD_CROS_EC
1924 bool "Enable crosec command"
1925 depends on CROS_EC
1926 default y
1927 help
1928 Enable command-line access to the Chrome OS EC (Embedded
1929 Controller). This provides the 'crosec' command which has
1930 a number of sub-commands for performing EC tasks such as
1931 updating its flash, accessing a small saved context area
1932 and talking to the I2C bus behind the EC (if there is one).
1933endmenu
1934
Dinh Nguyen0685bef2016-04-21 09:05:23 -05001935menu "Filesystem commands"
Marek Behún27cec792017-09-03 17:00:30 +02001936config CMD_BTRFS
1937 bool "Enable the 'btrsubvol' command"
1938 select FS_BTRFS
1939 help
1940 This enables the 'btrsubvol' command to list subvolumes
1941 of a BTRFS filesystem. There are no special commands for
1942 listing BTRFS directories or loading BTRFS files - this
1943 can be done by the generic 'fs' commands (see CMD_FS_GENERIC)
1944 when BTRFS is enabled (see FS_BTRFS).
1945
Simon Glass0501e3e2017-04-26 22:27:58 -06001946config CMD_CBFS
1947 bool "Enable the 'cbfs' command"
Simon Glass579b51a2017-04-26 22:27:59 -06001948 depends on FS_CBFS
Simon Glass0501e3e2017-04-26 22:27:58 -06001949 help
1950 Define this to enable support for reading from a Coreboot
1951 filesystem. This is a ROM-based filesystem used for accessing files
1952 on systems that use coreboot as the first boot-loader and then load
1953 U-Boot to actually boot the Operating System. Available commands are
1954 cbfsinit, cbfsinfo, cbfsls and cbfsload.
1955
Simon Glass519805e2017-04-26 22:28:03 -06001956config CMD_CRAMFS
1957 bool "Enable the 'cramfs' command"
Simon Glass690f5092017-04-26 22:28:04 -06001958 depends on FS_CRAMFS
Simon Glass519805e2017-04-26 22:28:03 -06001959 help
1960 This provides commands for dealing with CRAMFS (Compressed ROM
1961 filesystem). CRAMFS is useful when space is tight since files are
1962 compressed. Two commands are provided:
1963
1964 cramfsls - lists files in a cramfs image
1965 cramfsload - loads a file from a cramfs image
1966
Dinh Nguyen0685bef2016-04-21 09:05:23 -05001967config CMD_EXT2
1968 bool "ext2 command support"
Tuomas Tynkkynen388f9a02018-01-05 02:45:17 +02001969 select FS_EXT4
Dinh Nguyen0685bef2016-04-21 09:05:23 -05001970 help
1971 Enables EXT2 FS command
1972
1973config CMD_EXT4
1974 bool "ext4 command support"
Tuomas Tynkkynen388f9a02018-01-05 02:45:17 +02001975 select FS_EXT4
Dinh Nguyen0685bef2016-04-21 09:05:23 -05001976 help
1977 Enables EXT4 FS command
1978
1979config CMD_EXT4_WRITE
1980 depends on CMD_EXT4
1981 bool "ext4 write command support"
Tuomas Tynkkynen388f9a02018-01-05 02:45:17 +02001982 select EXT4_WRITE
Dinh Nguyen0685bef2016-04-21 09:05:23 -05001983 help
1984 Enables EXT4 FS write command
1985
1986config CMD_FAT
1987 bool "FAT command support"
Sekhar Nori1909a7b2017-06-02 17:53:59 +05301988 select FS_FAT
Dinh Nguyen0685bef2016-04-21 09:05:23 -05001989 help
1990 Support for the FAT fs
1991
1992config CMD_FS_GENERIC
1993 bool "filesystem commands"
1994 help
1995 Enables filesystem commands (e.g. load, ls) that work for multiple
1996 fs types.
Maxime Ripardbf2fbd12017-02-27 18:22:04 +01001997
Josua Mayerf5ebfe72017-04-24 10:10:45 +02001998config CMD_FS_UUID
1999 bool "fsuuid command"
2000 help
2001 Enables fsuuid command for filesystem UUID.
2002
Simon Glassc4abb4b2017-05-17 03:25:37 -06002003config CMD_JFFS2
2004 bool "jffs2 command"
Simon Glass8c6c7c22017-05-17 03:25:38 -06002005 select FS_JFFS2
Simon Glassc4abb4b2017-05-17 03:25:37 -06002006 help
2007 Enables commands to support the JFFS2 (Journalling Flash File System
2008 version 2) filesystem. This enables fsload, ls and fsinfo which
2009 provide the ability to load files, list directories and obtain
2010 filesystem information.
2011
Maxime Ripardbf2fbd12017-02-27 18:22:04 +01002012config CMD_MTDPARTS
Maxime Ripardbf2fbd12017-02-27 18:22:04 +01002013 bool "MTD partition support"
Miquel Raynald2418202019-10-25 19:39:30 +02002014 depends on MTD
Maxime Ripardbf2fbd12017-02-27 18:22:04 +01002015 help
Miquel Raynal007dddc2018-09-29 12:58:30 +02002016 MTD partitioning tool support.
2017 It is strongly encouraged to avoid using this command
2018 anymore along with 'sf', 'nand', 'onenand'. One can still
2019 declare the partitions in the mtdparts environment variable
2020 but better use the MTD stack and the 'mtd' command instead.
Maxime Ripardbf2fbd12017-02-27 18:22:04 +01002021
Simon Glass66d7db02017-08-04 16:34:30 -06002022config CMD_MTDPARTS_SPREAD
2023 bool "Padd partition size to take account of bad blocks"
2024 depends on CMD_MTDPARTS
2025 help
2026 This enables the 'spread' sub-command of the mtdparts command.
2027 This command will modify the existing mtdparts variable by increasing
2028 the size of the partitions such that 1) each partition's net size is
2029 at least as large as the size specified in the mtdparts variable and
2030 2) each partition starts on a good block.
2031
Alexander Dahl6cae4f42019-10-30 16:53:55 +01002032config CMD_MTDPARTS_SHOW_NET_SIZES
2033 bool "Show net size (w/o bad blocks) of partitions"
2034 depends on CMD_MTDPARTS
2035 help
2036 Adds two columns to the printed partition table showing the
2037 effective usable size of a partition, if bad blocks are taken
2038 into account.
2039
Miquel Raynalf21322f2019-10-03 19:50:25 +02002040config MTDIDS_DEFAULT
2041 string "Default MTD IDs"
Miquel Raynald2418202019-10-25 19:39:30 +02002042 depends on MTD || SPI_FLASH
Miquel Raynalf21322f2019-10-03 19:50:25 +02002043 help
2044 Defines a default MTD IDs list for use with MTD partitions in the
2045 Linux MTD command line partitions format.
2046
2047config MTDPARTS_DEFAULT
2048 string "Default MTD partition scheme"
Miquel Raynald2418202019-10-25 19:39:30 +02002049 depends on MTD || SPI_FLASH
Miquel Raynalf21322f2019-10-03 19:50:25 +02002050 help
2051 Defines a default MTD partitioning scheme in the Linux MTD command
2052 line partitions format
2053
Simon Glassed4ee312017-08-04 16:34:41 -06002054config CMD_REISER
2055 bool "reiser - Access to reiserfs filesystems"
2056 help
2057 This provides two commands which operate on a resierfs filesystem,
2058 commonly used some years ago:
2059
2060 reiserls - list files
2061 reiserload - load a file
2062
Simon Glass19c5caf2017-08-04 16:34:58 -06002063config CMD_YAFFS2
2064 bool "yaffs2 - Access of YAFFS2 filesystem"
2065 depends on YAFFS2
2066 default y
2067 help
2068 This provides commands for accessing a YAFFS2 filesystem. Yet
2069 Another Flash Filesystem 2 is a filesystem designed specifically
2070 for NAND flash. It incorporates bad-block management and ensures
2071 that device writes are sequential regardless of filesystem
2072 activity.
2073
Simon Glassdc82dee2017-08-04 16:35:04 -06002074config CMD_ZFS
2075 bool "zfs - Access of ZFS filesystem"
2076 help
2077 This provides commands to accessing a ZFS filesystem, commonly used
2078 on Solaris systems. Two sub-commands are provided:
2079
2080 zfsls - list files in a directory
2081 zfsload - load a file
2082
2083 See doc/README.zfs for more details.
2084
Dinh Nguyen0685bef2016-04-21 09:05:23 -05002085endmenu
2086
Simon Glass3423f212017-04-26 22:27:52 -06002087menu "Debug commands"
2088
2089config CMD_BEDBUG
2090 bool "bedbug"
2091 help
2092 The bedbug (emBEDded deBUGger) command provides debugging features
2093 for some PowerPC processors. For details please see the
2094 docuemntation in doc/README.beddbug
2095
Simon Glass20ea5632017-04-26 22:28:08 -06002096config CMD_DIAG
2097 bool "diag - Board diagnostics"
2098 help
2099 This command provides access to board diagnostic tests. These are
2100 called Power-on Self Tests (POST). The command allows listing of
2101 available tests and running either all the tests, or specific tests
2102 identified by name.
2103
Simon Glass4c3a6202017-05-17 03:25:39 -06002104config CMD_IRQ
2105 bool "irq - Show information about interrupts"
Heiko Schocher6f90e582017-06-14 05:49:40 +02002106 depends on !ARM && !MIPS && !SH
Simon Glass4c3a6202017-05-17 03:25:39 -06002107 help
2108 This enables two commands:
2109
2110 interrupts - enable or disable interrupts
2111 irqinfo - print device-specific interrupt information
Simon Glassfd9948c2017-05-17 03:25:40 -06002112
2113config CMD_KGDB
2114 bool "kgdb - Allow debugging of U-Boot with gdb"
Michal Simek9d364412018-10-04 14:26:13 +02002115 depends on PPC
Simon Glassfd9948c2017-05-17 03:25:40 -06002116 help
2117 This enables a 'kgdb' command which allows gdb to connect to U-Boot
2118 over a serial link for debugging purposes. This allows
2119 single-stepping, inspecting variables, etc. This is supported only
2120 on PowerPC at present.
2121
Simon Glass5684f8f2017-12-04 13:48:26 -07002122config CMD_LOG
2123 bool "log - Generation, control and access to logging"
Heinrich Schuchardt74bad682018-04-19 22:02:46 +02002124 select LOG
Simon Glass5684f8f2017-12-04 13:48:26 -07002125 help
2126 This provides access to logging features. It allows the output of
2127 log data to be controlled to a limited extent (setting up the default
Simon Glass14c8a062017-12-04 13:48:27 -07002128 maximum log level for emitting of records). It also provides access
2129 to a command used for testing the log system.
Simon Glass5684f8f2017-12-04 13:48:26 -07002130
Simon Glass126cb792017-08-04 16:34:59 -06002131config CMD_TRACE
2132 bool "trace - Support tracing of function calls and timing"
2133 help
2134 Enables a command to control using of function tracing within
2135 U-Boot. This allows recording of call traces including timing
2136 information. The command can write data to memory for exporting
Simon Glassbfce7fc2019-04-08 13:20:51 -06002137 for analysis (e.g. using bootchart). See doc/README.trace for full
Simon Glass126cb792017-08-04 16:34:59 -06002138 details.
2139
Igor Opaniuk60291192018-06-03 21:56:39 +03002140config CMD_AVB
2141 bool "avb - Android Verified Boot 2.0 operations"
Igor Opaniuke0df0352018-07-17 14:33:25 +03002142 depends on AVB_VERIFY
Igor Opaniuk60291192018-06-03 21:56:39 +03002143 default n
2144 help
2145 Enables a "avb" command to perform verification of partitions using
2146 Android Verified Boot 2.0 functionality. It includes such subcommands:
2147 avb init - initialize avb2 subsystem
2148 avb read_rb - read rollback index
2149 avb write_rb - write rollback index
2150 avb is_unlocked - check device lock state
2151 avb get_uuid - read and print uuid of a partition
2152 avb read_part - read data from partition
2153 avb read_part_hex - read data from partition and output to stdout
2154 avb write_part - write data to partition
2155 avb verify - run full verification chain
Simon Glass3423f212017-04-26 22:27:52 -06002156endmenu
2157
Heiko Schocher09dbb852016-09-21 07:58:19 +02002158config CMD_UBI
2159 tristate "Enable UBI - Unsorted block images commands"
Heiko Schocher09dbb852016-09-21 07:58:19 +02002160 select MTD_UBI
2161 help
2162 UBI is a software layer above MTD layer which admits use of LVM-like
2163 logical volumes on top of MTD devices, hides some complexities of
2164 flash chips like wear and bad blocks and provides some other useful
2165 capabilities. Please, consult the MTD web site for more details
2166 (www.linux-mtd.infradead.org). Activate this option if you want
2167 to use U-Boot UBI commands.
Miquel Raynal12f1ff12018-09-29 12:58:29 +02002168 It is also strongly encouraged to also enable CONFIG_MTD to get full
2169 partition support.
Heiko Schocher09dbb852016-09-21 07:58:19 +02002170
Boris Brezillonaa57d0f2017-02-27 18:22:06 +01002171config CMD_UBIFS
2172 tristate "Enable UBIFS - Unsorted block images filesystem commands"
Maxime Ripard1e6a0962017-03-03 14:53:22 +01002173 depends on CMD_UBI
Michal Simek84f3dec2018-07-23 15:55:13 +02002174 default y if CMD_UBI
Karl Beldan3418eeb2017-07-12 16:11:47 +00002175 select LZO
Boris Brezillonaa57d0f2017-02-27 18:22:06 +01002176 help
2177 UBIFS is a file system for flash devices which works on top of UBI.
2178
Simon Glass29499a02016-01-17 20:53:51 -07002179endmenu