Merge https://gitlab.denx.de/u-boot/custodians/u-boot-samsung
[oweals/u-boot.git] / cmd / Kconfig
1 menu "Command line interface"
2
3 config 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
14 config HUSH_PARSER
15         bool "Use hush shell"
16         depends on CMDLINE
17         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
26 config 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
34 config 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
41 config 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
49 config SYS_PROMPT
50         string "Shell prompt"
51         default "=> "
52         help
53           This string is displayed in the command line to the left of the
54           cursor.
55
56 config SYS_XTRACE
57         string "Command execution tracer"
58         depends on CMDLINE
59         default y if CMDLINE
60         help
61           This option enables the possiblity to print all commands before
62           executing them and after all variables are evaluated (similar
63           to Bash's xtrace/'set -x' feature).
64           To enable the tracer a variable "xtrace" needs to be defined in
65           the environment.
66
67 menu "Autoboot options"
68
69 config AUTOBOOT
70         bool "Autoboot"
71         default y
72         help
73           This enables the autoboot.  See doc/README.autoboot for detail.
74
75 config AUTOBOOT_KEYED
76         bool "Stop autobooting via specific input key / string"
77         default n
78         help
79           This option enables stopping (aborting) of the automatic
80           boot feature only by issuing a specific input key or
81           string. If not enabled, any input key will abort the
82           U-Boot automatic booting process and bring the device
83           to the U-Boot prompt for user input.
84
85 config AUTOBOOT_PROMPT
86         string "Autoboot stop prompt"
87         depends on AUTOBOOT_KEYED
88         default "Autoboot in %d seconds\\n"
89         help
90           This string is displayed before the boot delay selected by
91           CONFIG_BOOTDELAY starts. If it is not defined there is no
92           output indicating that autoboot is in progress.
93
94           Note that this define is used as the (only) argument to a
95           printf() call, so it may contain '%' format specifications,
96           provided that it also includes, sepearated by commas exactly
97           like in a printf statement, the required arguments. It is
98           the responsibility of the user to select only such arguments
99           that are valid in the given context.
100
101 config AUTOBOOT_ENCRYPTION
102         bool "Enable encryption in autoboot stopping"
103         depends on AUTOBOOT_KEYED
104         help
105           This option allows a string to be entered into U-Boot to stop the
106           autoboot. The string itself is hashed and compared against the hash
107           in the environment variable 'bootstopkeysha256'. If it matches then
108           boot stops and a command-line prompt is presented.
109
110           This provides a way to ship a secure production device which can also
111           be accessed at the U-Boot command line.
112
113 config AUTOBOOT_DELAY_STR
114         string "Delay autobooting via specific input key / string"
115         depends on AUTOBOOT_KEYED && !AUTOBOOT_ENCRYPTION
116         help
117           This option delays the automatic boot feature by issuing
118           a specific input key or string. If CONFIG_AUTOBOOT_DELAY_STR
119           or the environment variable "bootdelaykey" is specified
120           and this string is received from console input before
121           autoboot starts booting, U-Boot gives a command prompt. The
122           U-Boot prompt will time out if CONFIG_BOOT_RETRY_TIME is
123           used, otherwise it never times out.
124
125 config AUTOBOOT_STOP_STR
126         string "Stop autobooting via specific input key / string"
127         depends on AUTOBOOT_KEYED && !AUTOBOOT_ENCRYPTION
128         help
129           This option enables stopping (aborting) of the automatic
130           boot feature only by issuing a specific input key or
131           string. If CONFIG_AUTOBOOT_STOP_STR or the environment
132           variable "bootstopkey" is specified and this string is
133           received from console input before autoboot starts booting,
134           U-Boot gives a command prompt. The U-Boot prompt never
135           times out, even if CONFIG_BOOT_RETRY_TIME is used.
136
137 config AUTOBOOT_KEYED_CTRLC
138         bool "Enable Ctrl-C autoboot interruption"
139         depends on AUTOBOOT_KEYED && !AUTOBOOT_ENCRYPTION
140         default n
141         help
142           This option allows for the boot sequence to be interrupted
143           by ctrl-c, in addition to the "bootdelaykey" and "bootstopkey".
144           Setting this variable provides an escape sequence from the
145           limited "password" strings.
146
147 config AUTOBOOT_STOP_STR_SHA256
148         string "Stop autobooting via SHA256 encrypted password"
149         depends on AUTOBOOT_KEYED && AUTOBOOT_ENCRYPTION
150         help
151           This option adds the feature to only stop the autobooting,
152           and therefore boot into the U-Boot prompt, when the input
153           string / password matches a values that is encypted via
154           a SHA256 hash and saved in the environment.
155
156 config AUTOBOOT_USE_MENUKEY
157         bool "Allow a specify key to run a menu from the environment"
158         depends on !AUTOBOOT_KEYED
159         help
160           If a specific key is pressed to stop autoboot, then the commands in
161           the environment variable 'menucmd' are executed before boot starts.
162
163 config AUTOBOOT_MENUKEY
164         int "ASCII value of boot key to show a menu"
165         default 0
166         depends on AUTOBOOT_USE_MENUKEY
167         help
168           If this key is pressed to stop autoboot, then the commands in the
169           environment variable 'menucmd' will be executed before boot starts.
170           For example, 33 means "!" in ASCII, so pressing ! at boot would take
171           this action.
172
173 config AUTOBOOT_MENU_SHOW
174         bool "Show a menu on boot"
175         help
176           This enables the boot menu, controlled by environment variables
177           defined by the board. The menu starts after running the 'preboot'
178           environmnent variable (if enabled) and before handling the boot delay.
179           See README.bootmenu for more details.
180
181 endmenu
182
183 config BUILD_BIN2C
184         bool
185
186 comment "Commands"
187
188 menu "Info commands"
189
190 config CMD_BDI
191         bool "bdinfo"
192         default y
193         help
194           Print board info
195
196 config CMD_CONFIG
197         bool "config"
198         default SANDBOX
199         select BUILD_BIN2C
200         help
201           Print ".config" contents.
202
203           If this option is enabled, the ".config" file contents are embedded
204           in the U-Boot image and can be printed on the console by the "config"
205           command.  This provides information of which options are enabled on
206           the running U-Boot.
207
208 config CMD_CONSOLE
209         bool "coninfo"
210         default y
211         help
212           Print console devices and information.
213
214 config CMD_CPU
215         bool "cpu"
216         help
217           Print information about available CPUs. This normally shows the
218           number of CPUs, type (e.g. manufacturer, architecture, product or
219           internal name) and clock frequency. Other information may be
220           available depending on the CPU driver.
221
222 config CMD_LICENSE
223         bool "license"
224         select BUILD_BIN2C
225         help
226           Print GPL license text
227
228 config CMD_REGINFO
229         bool "reginfo"
230         depends on PPC
231         help
232           Register dump
233
234 endmenu
235
236 menu "Boot commands"
237
238 config CMD_BOOTD
239         bool "bootd"
240         default y
241         help
242           Run the command stored in the environment "bootcmd", i.e.
243           "bootd" does the same thing as "run bootcmd".
244
245 config CMD_BOOTM
246         bool "bootm"
247         default y
248         help
249           Boot an application image from the memory.
250
251 config CMD_BOOTZ
252         bool "bootz"
253         help
254           Boot the Linux zImage
255
256 config CMD_BOOTI
257         bool "booti"
258         depends on ARM64 || RISCV
259         default y
260         help
261           Boot an AArch64 Linux Kernel image from memory.
262
263 config CMD_BOOTEFI
264         bool "bootefi"
265         depends on EFI_LOADER
266         default y
267         help
268           Boot an EFI image from memory.
269
270 config CMD_BOOTEFI_HELLO_COMPILE
271         bool "Compile a standard EFI hello world binary for testing"
272         depends on CMD_BOOTEFI && !CPU_V7M && !SANDBOX
273         default y
274         help
275           This compiles a standard EFI hello world application with U-Boot so
276           that it can be used with the test/py testing framework. This is useful
277           for testing that EFI is working at a basic level, and for bringing
278           up EFI support on a new architecture.
279
280           No additional space will be required in the resulting U-Boot binary
281           when this option is enabled.
282
283 config CMD_BOOTEFI_HELLO
284         bool "Allow booting a standard EFI hello world for testing"
285         depends on CMD_BOOTEFI_HELLO_COMPILE
286         help
287           This adds a standard EFI hello world application to U-Boot so that
288           it can be used with the 'bootefi hello' command. This is useful
289           for testing that EFI is working at a basic level, and for bringing
290           up EFI support on a new architecture.
291
292 source lib/efi_selftest/Kconfig
293
294 config CMD_BOOTMENU
295         bool "bootmenu"
296         select MENU
297         help
298           Add an ANSI terminal boot menu command.
299
300 config CMD_DTIMG
301         bool "dtimg"
302         help
303           Android DTB/DTBO image manipulation commands. Read dtb/dtbo files from
304           image into RAM, dump image structure information, etc. Those dtb/dtbo
305           files should be merged in one dtb further, which needs to be passed to
306           the kernel, as part of a boot process.
307
308 config CMD_ELF
309         bool "bootelf, bootvx"
310         default y
311         help
312           Boot an ELF/vxWorks image from the memory.
313
314 config CMD_FDT
315         bool "Flattened Device Tree utility commands"
316         default y
317         depends on OF_LIBFDT
318         help
319           Do FDT related setup before booting into the Operating System.
320
321 config CMD_GO
322         bool "go"
323         default y
324         help
325           Start an application at a given address.
326
327 config CMD_RUN
328         bool "run"
329         default y
330         help
331           Run the command in the given environment variable.
332
333 config CMD_IMI
334         bool "iminfo"
335         default y
336         help
337           Print header information for application image.
338
339 config CMD_IMLS
340         bool "imls"
341         help
342           List all images found in flash
343
344 config CMD_XIMG
345         bool "imxtract"
346         default y
347         help
348           Extract a part of a multi-image.
349
350 config CMD_SPL
351         bool "spl export - Export boot information for Falcon boot"
352         depends on SPL
353         help
354           Falcon mode allows booting directly from SPL into an Operating
355           System such as Linux, thus skipping U-Boot proper. See
356           doc/README.falcon for full information about how to use this
357           command.
358
359 config CMD_SPL_NAND_OFS
360         hex "Offset of OS args or dtb for Falcon-mode NAND boot"
361         depends on CMD_SPL && (TPL_NAND_SUPPORT || SPL_NAND_SUPPORT)
362         default 0
363         help
364           This provides the offset of the command line arguments for Linux
365           when booting from NAND in Falcon mode.  See doc/README.falcon
366           for full information about how to use this option (and also see
367           board/gateworks/gw_ventana/README for an example).
368
369 config CMD_SPL_NOR_OFS
370         hex "Offset of OS args or dtb for Falcon-mode NOR boot"
371         depends on CMD_SPL && SPL_NOR_SUPPORT
372         default 0
373         help
374           This provides the offset of the command line arguments or dtb for
375           Linux when booting from NOR in Falcon mode.
376
377 config CMD_SPL_WRITE_SIZE
378         hex "Size of argument area"
379         depends on CMD_SPL
380         default 0x2000
381         help
382           This provides the size of the command-line argument area in NAND
383           flash used by Falcon-mode boot. See the documentation until CMD_SPL
384           for detail.
385
386 config CMD_FITUPD
387         bool "fitImage update command"
388         help
389           Implements the 'fitupd' command, which allows to automatically
390           store software updates present on a TFTP server in NOR Flash
391
392 config CMD_THOR_DOWNLOAD
393         bool "thor - TIZEN 'thor' download"
394         help
395           Implements the 'thor' download protocol. This is a way of
396           downloading a software update over USB from an attached host.
397           There is no documentation about this within the U-Boot source code
398           but you should be able to find something on the interwebs.
399
400 config CMD_ZBOOT
401         bool "zboot - x86 boot command"
402         help
403           With x86 machines it is common to boot a bzImage file which
404           contains both a kernel and a setup.bin file. The latter includes
405           configuration information from the dark ages which x86 boards still
406           need to pick things out of.
407
408           Consider using FIT in preference to this since it supports directly
409           booting both 32- and 64-bit kernels, as well as secure boot.
410           Documentation is available in doc/uImage.FIT/x86-fit-boot.txt
411
412 endmenu
413
414 menu "Environment commands"
415
416 config CMD_ASKENV
417         bool "ask for env variable"
418         help
419           Ask for environment variable
420
421 config CMD_EXPORTENV
422         bool "env export"
423         default y
424         help
425           Export environments.
426
427 config CMD_IMPORTENV
428         bool "env import"
429         default y
430         help
431           Import environments.
432
433 config CMD_EDITENV
434         bool "editenv"
435         default y
436         help
437           Edit environment variable.
438
439 config CMD_GREPENV
440         bool "search env"
441         help
442           Allow for searching environment variables
443
444 config CMD_SAVEENV
445         bool "saveenv"
446         default y
447         help
448           Save all environment variables into the compiled-in persistent
449           storage.
450
451 config CMD_ERASEENV
452         bool "eraseenv"
453         default n
454         depends on CMD_SAVEENV
455         help
456           Erase environment variables from the compiled-in persistent
457           storage.
458
459 config CMD_ENV_EXISTS
460         bool "env exists"
461         default y
462         help
463           Check if a variable is defined in the environment for use in
464           shell scripting.
465
466 config CMD_ENV_CALLBACK
467         bool "env callbacks - print callbacks and their associated variables"
468         help
469           Some environment variable have callbacks defined by
470           U_BOOT_ENV_CALLBACK. These are called when the variable changes.
471           For example changing "baudrate" adjust the serial baud rate. This
472           command lists the currently defined callbacks.
473
474 config CMD_ENV_FLAGS
475         bool "env flags -print variables that have non-default flags"
476         help
477           Some environment variables have special flags that control their
478           behaviour. For example, serial# can only be written once and cannot
479           be deleted. This command shows the variables that have special
480           flags.
481
482 config CMD_NVEDIT_EFI
483         bool "env [set|print] -e - set/print UEFI variables"
484         depends on EFI_LOADER
485         default y
486         imply HEXDUMP
487         help
488           UEFI variables are encoded as some form of U-Boot variables.
489           If enabled, we are allowed to set/print UEFI variables using
490           "env" command with "-e" option without knowing details.
491
492 config CMD_NVEDIT_INFO
493         bool "env info - print or evaluate environment information"
494         help
495           Print environment information:
496           - env_valid : is environment valid
497           - env_ready : is environment imported into hash table
498           - env_use_default : is default environment used
499
500           This command can be optionally used for evaluation in scripts:
501           [-d] : evaluate whether default environment is used
502           [-p] : evaluate whether environment can be persisted
503           The result of multiple evaluations will be combined with AND.
504
505 endmenu
506
507 menu "Memory commands"
508
509 config CMD_BINOP
510         bool "binop"
511         help
512           Compute binary operations (xor, or, and) of byte arrays of arbitrary
513           size from memory and store the result in memory or the environment.
514
515 config CMD_CRC32
516         bool "crc32"
517         default y
518         select HASH
519         help
520           Compute CRC32.
521
522 config CRC32_VERIFY
523         bool "crc32 -v"
524         depends on CMD_CRC32
525         help
526           Add -v option to verify data against a crc32 checksum.
527
528 config CMD_EEPROM
529         bool "eeprom - EEPROM subsystem"
530         help
531           (deprecated, needs conversion to driver model)
532           Provides commands to read and write EEPROM (Electrically Erasable
533           Programmable Read Only Memory) chips that are connected over an
534           I2C bus.
535
536 config CMD_EEPROM_LAYOUT
537         bool "Enable layout-aware eeprom commands"
538         depends on CMD_EEPROM
539         help
540           (deprecated, needs conversion to driver model)
541           When enabled, additional eeprom sub-commands become available.
542
543           eeprom print - prints the contents of the eeprom in a human-readable
544           way (eeprom layout fields, and data formatted to be fit for human
545           consumption).
546
547           eeprom update - allows user to update eeprom fields by specifying
548           the field name, and providing the new data in a human readable format
549           (same format as displayed by the eeprom print command).
550
551           Both commands can either auto detect the layout, or be told which
552           layout to use.
553
554           Feature API:
555           __weak int parse_layout_version(char *str)
556                 - override to provide your own layout name parsing
557           __weak void __eeprom_layout_assign(struct eeprom_layout *layout,
558                         int layout_version);
559                 - override to setup the layout metadata based on the version
560           __weak int eeprom_layout_detect(unsigned char *data)
561                 - override to provide your own algorithm for detecting layout
562                         version
563           eeprom_field.c
564                 - contains various printing and updating functions for common
565                         types of eeprom fields. Can be used for defining
566                         custom layouts.
567
568 config EEPROM_LAYOUT_HELP_STRING
569           string "Tells user what layout names are supported"
570           depends on CMD_EEPROM_LAYOUT
571           default "<not defined>"
572           help
573             Help printed with the LAYOUT VERSIONS part of the 'eeprom'
574             command's help.
575
576 config LOOPW
577         bool "loopw"
578         help
579           Infinite write loop on address range
580
581 config CMD_MD5SUM
582         bool "md5sum"
583         default n
584         select MD5
585         help
586           Compute MD5 checksum.
587
588 config MD5SUM_VERIFY
589         bool "md5sum -v"
590         default n
591         depends on CMD_MD5SUM
592         help
593           Add -v option to verify data against an MD5 checksum.
594
595 config CMD_MEMINFO
596         bool "meminfo"
597         help
598           Display memory information.
599
600 config CMD_MEMORY
601         bool "md, mm, nm, mw, cp, cmp, base, loop"
602         default y
603         help
604           Memory commands.
605             md - memory display
606             mm - memory modify (auto-incrementing address)
607             nm - memory modify (constant address)
608             mw - memory write (fill)
609             cp - memory copy
610             cmp - memory compare
611             base - print or set address offset
612             loop - initialize loop on address range
613
614 config MX_CYCLIC
615         bool "Enable cyclic md/mw commands"
616         depends on CMD_MEMORY
617         help
618           Add the "mdc" and "mwc" memory commands. These are cyclic
619           "md/mw" commands.
620           Examples:
621
622           => mdc.b 10 4 500
623           This command will print 4 bytes (10,11,12,13) each 500 ms.
624
625           => mwc.l 100 12345678 10
626           This command will write 12345678 to address 100 all 10 ms.
627
628 config CMD_RANDOM
629         bool "random"
630         default y
631         depends on CMD_MEMORY && (LIB_RAND || LIB_HW_RAND)
632         help
633           random - fill memory with random data
634
635 config CMD_MEMTEST
636         bool "memtest"
637         help
638           Simple RAM read/write test.
639
640 if CMD_MEMTEST
641
642 config SYS_ALT_MEMTEST
643         bool "Alternative test"
644         help
645           Use a more complete alternative memory test.
646
647 endif
648
649 config CMD_MX_CYCLIC
650         bool "mdc, mwc"
651         help
652           mdc - memory display cyclic
653           mwc - memory write cyclic
654
655 config CMD_SHA1SUM
656         bool "sha1sum"
657         select SHA1
658         help
659           Compute SHA1 checksum.
660
661 config SHA1SUM_VERIFY
662         bool "sha1sum -v"
663         depends on CMD_SHA1SUM
664         help
665           Add -v option to verify data against a SHA1 checksum.
666
667 config CMD_STRINGS
668         bool "strings - display strings in memory"
669         help
670           This works similarly to the Unix 'strings' command except that it
671           works with a memory range. String of printable characters found
672           within the range are displayed. The minimum number of characters
673           for a sequence to be considered a string can be provided.
674
675 endmenu
676
677 menu "Compression commands"
678
679 config CMD_LZMADEC
680         bool "lzmadec"
681         default y if CMD_BOOTI
682         select LZMA
683         help
684           Support decompressing an LZMA (Lempel-Ziv-Markov chain algorithm)
685           image from memory.
686
687 config CMD_UNZIP
688         bool "unzip"
689         default y if CMD_BOOTI
690         help
691           Uncompress a zip-compressed memory region.
692
693 config CMD_ZIP
694         bool "zip"
695         help
696           Compress a memory region with zlib deflate method.
697
698 endmenu
699
700 menu "Device access commands"
701
702 config CMD_ARMFLASH
703         #depends on FLASH_CFI_DRIVER
704         bool "armflash"
705         help
706           ARM Ltd reference designs flash partition access
707
708 config CMD_ADC
709         bool "adc - Access Analog to Digital Converters info and data"
710         select ADC
711         select DM_REGULATOR
712         help
713           Shows ADC device info and permit printing one-shot analog converted
714           data from a named Analog to Digital Converter.
715
716 config CMD_BCB
717         bool "bcb"
718         depends on MMC
719         depends on PARTITIONS
720         help
721           Read/modify/write the fields of Bootloader Control Block, usually
722           stored on the flash "misc" partition with its structure defined in:
723           https://android.googlesource.com/platform/bootable/recovery/+/master/
724           bootloader_message/include/bootloader_message/bootloader_message.h
725
726           Some real-life use-cases include (but are not limited to):
727           - Determine the "boot reason" (and act accordingly):
728             https://source.android.com/devices/bootloader/boot-reason
729           - Get/pass a list of commands from/to recovery:
730             https://android.googlesource.com/platform/bootable/recovery
731           - Inspect/dump the contents of the BCB fields
732
733 config CMD_BIND
734         bool "bind/unbind - Bind or unbind a device to/from a driver"
735         depends on DM
736         help
737           Bind or unbind a device to/from a driver from the command line.
738           This is useful in situations where a device may be handled by several
739           drivers. For example, this can be used to bind a UDC to the usb ether
740           gadget driver from the command line.
741
742 config CMD_CLK
743         bool "clk - Show clock frequencies"
744         help
745           (deprecated)
746           Shows clock frequences by calling a sock_clk_dump() hook function.
747           This is depreated in favour of using the CLK uclass and accessing
748           clock values from associated drivers. However currently no command
749           exists for this.
750
751 config CMD_DEMO
752         bool "demo - Demonstration commands for driver model"
753         depends on DM
754         help
755           Provides a 'demo' command which can be used to play around with
756           driver model. To use this properly you will need to enable one or
757           both of the demo devices (DM_DEMO_SHAPE and DM_DEMO_SIMPLE).
758           Otherwise you will always get an empty list of devices. The demo
759           devices are defined in the sandbox device tree, so the easiest
760           option is to use sandbox and pass the -d point to sandbox's
761           u-boot.dtb file.
762
763 config CMD_DFU
764         bool "dfu"
765         select DFU
766         help
767           Enables the command "dfu" which is used to have U-Boot create a DFU
768           class device via USB. This command requires that the "dfu_alt_info"
769           environment variable be set and define the alt settings to expose to
770           the host.
771
772 config CMD_DM
773         bool "dm - Access to driver model information"
774         depends on DM
775         help
776           Provides access to driver model data structures and information,
777           such as a list of devices, list of uclasses and the state of each
778           device (e.g. activated). This is not required for operation, but
779           can be useful to see the state of driver model for debugging or
780           interest.
781
782 config CMD_FASTBOOT
783         bool "fastboot - Android fastboot support"
784         depends on FASTBOOT
785         help
786           This enables the command "fastboot" which enables the Android
787           fastboot mode for the platform. Fastboot is a protocol for
788           downloading images, flashing and device control used on
789           Android devices. Fastboot requires either the network stack
790           enabled or support for acting as a USB device.
791
792           See doc/android/fastboot.txt for more information.
793
794 config CMD_FDC
795         bool "fdcboot - Boot from floppy device"
796         help
797           The 'fdtboot' command allows booting an image from a floppy disk.
798
799 config CMD_FLASH
800         bool "flinfo, erase, protect"
801         default y
802         help
803           NOR flash support.
804             flinfo - print FLASH memory information
805             erase - FLASH memory
806             protect - enable or disable FLASH write protection
807
808 config CMD_FPGA
809         bool "fpga"
810         depends on FPGA
811         default y
812         help
813           FPGA support.
814
815 config CMD_FPGA_LOADBP
816         bool "fpga loadbp - load partial bitstream (Xilinx only)"
817         depends on CMD_FPGA
818         help
819           Supports loading an FPGA device from a bitstream buffer containing
820           a partial bitstream.
821
822 config CMD_FPGA_LOADFS
823         bool "fpga loadfs - load bitstream from FAT filesystem (Xilinx only)"
824         depends on CMD_FPGA
825         help
826           Supports loading an FPGA device from a FAT filesystem.
827
828 config CMD_FPGA_LOADMK
829         bool "fpga loadmk - load bitstream from image"
830         depends on CMD_FPGA
831         help
832           Supports loading an FPGA device from a image generated by mkimage.
833
834 config CMD_FPGA_LOADP
835         bool "fpga loadp - load partial bitstream"
836         depends on CMD_FPGA
837         help
838           Supports loading an FPGA device from a bitstream buffer containing
839           a partial bitstream.
840
841 config CMD_FPGA_LOAD_SECURE
842         bool "fpga loads - loads secure bitstreams (Xilinx only)"
843         depends on CMD_FPGA
844         help
845           Enables the fpga loads command which is used to load secure
846           (authenticated or encrypted or both) bitstreams on to FPGA.
847
848 config CMD_FPGAD
849         bool "fpgad - dump FPGA registers"
850         help
851           (legacy, needs conversion to driver model)
852           Provides a way to dump FPGA registers by calling the board-specific
853           fpga_get_reg() function. This functions similarly to the 'md'
854           command.
855
856 config CMD_FUSE
857         bool "fuse - support for the fuse subssystem"
858         help
859           (deprecated - needs conversion to driver model)
860           This allows reading, sensing, programming or overriding fuses
861           which control the behaviour of the device. The command uses the
862           fuse_...() API.
863
864 config CMD_GPIO
865         bool "gpio"
866         help
867           GPIO support.
868
869 config CMD_GPT
870         bool "GPT (GUID Partition Table) command"
871         select EFI_PARTITION
872         select HAVE_BLOCK_DEVICE
873         select PARTITION_UUIDS
874         imply RANDOM_UUID
875         help
876           Enable the 'gpt' command to ready and write GPT style partition
877           tables.
878
879 config RANDOM_UUID
880         bool "GPT Random UUID generation"
881         select LIB_UUID
882         help
883           Enable the generation of partitions with random UUIDs if none
884           are provided.
885
886 config CMD_GPT_RENAME
887         bool "GPT partition renaming commands"
888         depends on CMD_GPT
889         help
890           Enables the 'gpt' command to interchange names on two GPT
891           partitions via the 'gpt swap' command or to rename single
892           partitions via the 'rename' command.
893
894 config CMD_IDE
895         bool "ide - Support for IDE drivers"
896         select IDE
897         help
898           Provides an 'ide' command which allows accessing the IDE drive,
899           reseting the IDE interface, printing the partition table and
900           geting device info. It also enables the 'diskboot' command which
901           permits booting from an IDE drive.
902
903 config CMD_IO
904         bool "io - Support for performing I/O accesses"
905         help
906           Provides an 'iod' command to display I/O space and an 'iow' command
907           to write values to the I/O space. This can be useful for manually
908           checking the state of devices during boot when debugging device
909           drivers, etc.
910
911 config CMD_IOTRACE
912         bool "iotrace - Support for tracing I/O activity"
913         help
914           Provides an 'iotrace' command which supports recording I/O reads and
915           writes in a trace buffer in memory . It also maintains a checksum
916           of the trace records (even if space is exhausted) so that the
917           sequence of I/O accesses can be verified.
918
919           When debugging drivers it is useful to see what I/O accesses were
920           done and in what order.
921
922           Even if the individual accesses are of little interest it can be
923           useful to verify that the access pattern is consistent each time
924           an operation is performed. In this case a checksum can be used to
925           characterise the operation of a driver. The checksum can be compared
926           across different runs of the operation to verify that the driver is
927           working properly.
928
929           In particular, when performing major refactoring of the driver, where
930           the access pattern should not change, the checksum provides assurance
931           that the refactoring work has not broken the driver.
932
933           This works by sneaking into the io.h heder for an architecture and
934           redirecting I/O accesses through iotrace's tracing mechanism.
935
936           For now no commands are provided to examine the trace buffer. The
937           format is fairly simple, so 'md' is a reasonable substitute.
938
939           Note: The checksum feature is only useful for I/O regions where the
940           contents do not change outside of software control. Where this is not
941           suitable you can fall back to manually comparing the addresses. It
942           might be useful to enhance tracing to only checksum the accesses and
943           not the data read/written.
944
945 config CMD_I2C
946         bool "i2c"
947         help
948           I2C support.
949
950 config CMD_W1
951         depends on W1
952         default y if W1
953         bool "w1 - Support for Dallas 1-Wire protocol"
954         help
955           Dallas 1-wire protocol support
956
957 config CMD_LOADB
958         bool "loadb"
959         default y
960         help
961           Load a binary file over serial line.
962
963 config CMD_LOADS
964         bool "loads"
965         default y
966         help
967           Load an S-Record file over serial line
968
969 config CMD_MMC
970         bool "mmc"
971         help
972           MMC memory mapped support.
973
974 config CMD_MMC_RPMB
975         bool "Enable support for RPMB in the mmc command"
976         depends on CMD_MMC
977         help
978           Enable the commands for reading, writing and programming the
979           key for the Replay Protection Memory Block partition in eMMC.
980
981 config CMD_MMC_SWRITE
982         bool "mmc swrite"
983         depends on CMD_MMC && MMC_WRITE
984         select IMAGE_SPARSE
985         help
986           Enable support for the "mmc swrite" command to write Android sparse
987           images to eMMC.
988
989 config CMD_MTD
990         bool "mtd"
991         select MTD_PARTITIONS
992         help
993           MTD commands support.
994
995 config CMD_NAND
996         bool "nand"
997         default y if NAND_SUNXI
998         help
999           NAND support.
1000
1001 if CMD_NAND
1002 config CMD_NAND_TRIMFFS
1003         bool "nand write.trimffs"
1004         default y if ARCH_SUNXI
1005         help
1006           Allows one to skip empty pages when flashing something on a NAND.
1007
1008 config CMD_NAND_LOCK_UNLOCK
1009         bool "nand lock/unlock"
1010         help
1011           NAND locking support.
1012
1013 config CMD_NAND_TORTURE
1014         bool "nand torture"
1015         help
1016           NAND torture support.
1017
1018 endif # CMD_NAND
1019
1020 config CMD_NVME
1021         bool "nvme"
1022         depends on NVME
1023         default y if NVME
1024         help
1025           NVM Express device support
1026
1027 config CMD_ONENAND
1028         bool "onenand - access to onenand device"
1029         help
1030           OneNAND is a brand of NAND ('Not AND' gate) flash which provides
1031           various useful features. This command allows reading, writing,
1032           and erasing blocks. It allso provides a way to show and change
1033           bad blocks, and test the device.
1034
1035 config CMD_OSD
1036         bool "osd"
1037         help
1038           Enable the 'osd' command which allows to query information from and
1039           write text data to a on-screen display (OSD) device; a virtual device
1040           associated with a display capable of displaying a text overlay on the
1041           display it's associated with..
1042
1043 config CMD_PART
1044         bool "part"
1045         select HAVE_BLOCK_DEVICE
1046         select PARTITION_UUIDS
1047         help
1048           Read and display information about the partition table on
1049           various media.
1050
1051 config CMD_PCI
1052         bool "pci - Access PCI devices"
1053         help
1054           Provide access to PCI (Peripheral Interconnect Bus), a type of bus
1055           used on some devices to allow the CPU to communicate with its
1056           peripherals. Sub-commands allow bus enumeration, displaying and
1057           changing configuration space and a few other features.
1058
1059 config CMD_PINMUX
1060         bool "pinmux - show pins muxing"
1061         default y if PINCTRL
1062         help
1063           Parse all available pin-controllers and show pins muxing. This
1064           is useful for debug purpoer to check the pin muxing and to know if
1065           a pin is configured as a GPIO or as an alternate function.
1066
1067 config CMD_POWEROFF
1068         bool "poweroff"
1069         help
1070           Poweroff/Shutdown the system
1071
1072 config CMD_READ
1073         bool "read - Read binary data from a partition"
1074         help
1075           Provides low-level access to the data in a partition.
1076
1077 config CMD_REMOTEPROC
1078         bool "remoteproc"
1079         depends on REMOTEPROC
1080         help
1081           Support for Remote Processor control
1082
1083 config CMD_SATA
1084         bool "sata - Access SATA subsystem"
1085         select SATA
1086         help
1087           SATA (Serial Advanced Technology Attachment) is a serial bus
1088           standard for connecting to hard drives and other storage devices.
1089           This command provides information about attached devices and allows
1090           reading, writing and other operations.
1091
1092           SATA replaces PATA (originally just ATA), which stands for Parallel AT
1093           Attachment, where AT refers to an IBM AT (Advanced Technology)
1094           computer released in 1984.
1095
1096 config CMD_SAVES
1097         bool "saves - Save a file over serial in S-Record format"
1098         help
1099           Provides a way to save a binary file using the Motorola S-Record
1100           format over the serial line.
1101
1102 config CMD_SCSI
1103         bool "scsi - Access to SCSI devices"
1104         default y if SCSI
1105         help
1106           This provides a 'scsi' command which provides access to SCSI (Small
1107           Computer System Interface) devices. The command provides a way to
1108           scan the bus, reset the bus, read and write data and get information
1109           about devices.
1110
1111 config CMD_SDRAM
1112         bool "sdram - Print SDRAM configuration information"
1113         help
1114           Provides information about attached SDRAM. This assumed that the
1115           SDRAM has an EEPROM with information that can be read using the
1116           I2C bus. This is only available on some boards.
1117
1118 config CMD_SF
1119         bool "sf"
1120         depends on DM_SPI_FLASH || SPI_FLASH
1121         help
1122           SPI Flash support
1123
1124 config CMD_SF_TEST
1125         bool "sf test - Allow testing of SPI flash"
1126         depends on CMD_SF
1127         help
1128           Provides a way to test that SPI flash is working correctly. The
1129           test is destructive, in that an area of SPI flash must be provided
1130           for the test to use. Performance information is also provided,
1131           measuring the performance of reading, writing and erasing in
1132           Mbps (Million Bits Per Second). This value should approximately
1133           equal the SPI bus speed for a single-bit-wide SPI bus, assuming
1134           everything is working properly.
1135
1136 config CMD_SPI
1137         bool "sspi - Command to access spi device"
1138         depends on SPI
1139         help
1140           SPI utility command.
1141
1142 config DEFAULT_SPI_BUS
1143         int "default spi bus used by sspi command"
1144         depends on CMD_SPI
1145         default 0
1146
1147 config DEFAULT_SPI_MODE
1148         hex "default spi mode used by sspi command (see include/spi.h)"
1149         depends on CMD_SPI
1150         default 0
1151
1152 config CMD_TSI148
1153         bool "tsi148 - Command to access tsi148 device"
1154         help
1155           This provides various sub-commands to initialise and configure the
1156           Turndra tsi148 device. See the command help for full details.
1157
1158 config CMD_UNIVERSE
1159         bool "universe - Command to set up the Turndra Universe controller"
1160         help
1161           This allows setting up the VMEbus provided by this controller.
1162           See the command help for full details.
1163
1164 config CMD_USB
1165         bool "usb"
1166         select HAVE_BLOCK_DEVICE
1167         help
1168           USB support.
1169
1170 config CMD_USB_SDP
1171         bool "sdp"
1172         select USB_FUNCTION_SDP
1173         help
1174           Enables the command "sdp" which is used to have U-Boot emulating the
1175           Serial Download Protocol (SDP) via USB.
1176
1177 config CMD_ROCKUSB
1178         bool "rockusb"
1179         depends on USB_FUNCTION_ROCKUSB
1180         help
1181           Rockusb protocol is widely used by Rockchip SoC based devices. It can
1182           read/write info, image to/from devices. This enable rockusb command
1183           support to communication with rockusb device. for more detail about
1184           this command, please read doc/README.rockusb.
1185
1186 config CMD_USB_MASS_STORAGE
1187         bool "UMS usb mass storage"
1188         select USB_FUNCTION_MASS_STORAGE
1189         help
1190           USB mass storage support
1191
1192 config CMD_VIRTIO
1193         bool "virtio"
1194         depends on VIRTIO
1195         default y if VIRTIO
1196         help
1197           VirtIO block device support
1198
1199 config CMD_WDT
1200         bool "wdt"
1201         depends on WDT
1202         help
1203           This provides commands to control the watchdog timer devices.
1204
1205 config CMD_AXI
1206         bool "axi"
1207         depends on AXI
1208         help
1209           Enable the command "axi" for accessing AXI (Advanced eXtensible
1210           Interface) busses, a on-chip interconnect specification for managing
1211           functional blocks in SoC designs, which is also often used in designs
1212           involving FPGAs (e.g.  communication with IP cores in Xilinx FPGAs).
1213 endmenu
1214
1215
1216 menu "Shell scripting commands"
1217
1218 config CMD_ECHO
1219         bool "echo"
1220         default y
1221         help
1222           Echo args to console
1223
1224 config CMD_ITEST
1225         bool "itest"
1226         default y
1227         help
1228           Return true/false on integer compare.
1229
1230 config CMD_SOURCE
1231         bool "source"
1232         default y
1233         help
1234           Run script from memory
1235
1236 config CMD_SETEXPR
1237         bool "setexpr"
1238         default y
1239         help
1240           Evaluate boolean and math expressions and store the result in an env
1241             variable.
1242           Also supports loading the value at a memory location into a variable.
1243           If CONFIG_REGEX is enabled, setexpr also supports a gsub function.
1244
1245 endmenu
1246
1247 menu "Android support commands"
1248
1249 config CMD_AB_SELECT
1250         bool "ab_select"
1251         default n
1252         depends on ANDROID_AB
1253         help
1254           On Android devices with more than one boot slot (multiple copies of
1255           the kernel and system images) this provides a command to select which
1256           slot should be used to boot from and register the boot attempt. This
1257           is used by the new A/B update model where one slot is updated in the
1258           background while running from the other slot.
1259
1260 endmenu
1261
1262 if NET
1263
1264 menuconfig CMD_NET
1265         bool "Network commands"
1266         default y
1267         imply NETDEVICES
1268
1269 if CMD_NET
1270
1271 config CMD_BOOTP
1272         bool "bootp"
1273         default y
1274         help
1275           bootp - boot image via network using BOOTP/TFTP protocol
1276
1277 config CMD_DHCP
1278         bool "dhcp"
1279         depends on CMD_BOOTP
1280         help
1281           Boot image via network using DHCP/TFTP protocol
1282
1283 config BOOTP_BOOTPATH
1284         bool "Request & store 'rootpath' from BOOTP/DHCP server"
1285         default y
1286         depends on CMD_BOOTP
1287         help
1288           Even though the config is called BOOTP_BOOTPATH, it stores the
1289           path in the variable 'rootpath'.
1290
1291 config BOOTP_DNS
1292         bool "Request & store 'dnsip' from BOOTP/DHCP server"
1293         default y
1294         depends on CMD_BOOTP
1295         help
1296           The primary DNS server is stored as 'dnsip'. If two servers are
1297           returned, you must set BOOTP_DNS2 to store that second server IP
1298           also.
1299
1300 config BOOTP_DNS2
1301         bool "Store 'dnsip2' from BOOTP/DHCP server"
1302         depends on BOOTP_DNS
1303         help
1304           If a DHCP client requests the DNS server IP from a DHCP server,
1305           it is possible that more than one DNS serverip is offered to the
1306           client. If CONFIG_BOOTP_DNS2 is enabled, the secondary DNS
1307           server IP will be stored in the additional environment
1308           variable "dnsip2". The first DNS serverip is always
1309           stored in the variable "dnsip", when BOOTP_DNS is defined.
1310
1311 config BOOTP_GATEWAY
1312         bool "Request & store 'gatewayip' from BOOTP/DHCP server"
1313         default y
1314         depends on CMD_BOOTP
1315
1316 config BOOTP_HOSTNAME
1317         bool "Request & store 'hostname' from BOOTP/DHCP server"
1318         default y
1319         depends on CMD_BOOTP
1320         help
1321           The name may or may not be qualified with the local domain name.
1322
1323 config BOOTP_PREFER_SERVERIP
1324         bool "serverip variable takes precedent over DHCP server IP."
1325         depends on CMD_BOOTP
1326         help
1327           By default a BOOTP/DHCP reply will overwrite the 'serverip' variable.
1328
1329           With this option enabled, the 'serverip' variable in the environment
1330           takes precedence over DHCP server IP and will only be set by the DHCP
1331           server if not already set in the environment.
1332
1333 config BOOTP_SUBNETMASK
1334         bool "Request & store 'netmask' from BOOTP/DHCP server"
1335         default y
1336         depends on CMD_BOOTP
1337
1338 config BOOTP_NTPSERVER
1339         bool "Request & store 'ntpserverip' from BOOTP/DHCP server"
1340         depends on CMD_BOOTP
1341
1342 config CMD_PCAP
1343         bool "pcap capture"
1344         help
1345           Selecting this will allow capturing all Ethernet packets and store
1346           them in physical memory in a PCAP formated file,
1347           later to be analyzed by PCAP reader application (IE. WireShark).
1348
1349 config BOOTP_PXE
1350         bool "Send PXE client arch to BOOTP/DHCP server"
1351         default y
1352         depends on CMD_BOOTP && CMD_PXE
1353         help
1354           Supported for ARM, ARM64, and x86 for now.
1355
1356 config BOOTP_PXE_CLIENTARCH
1357         hex
1358         depends on BOOTP_PXE
1359         default 0x16 if ARM64
1360         default 0x15 if ARM
1361         default 0 if X86
1362
1363 config BOOTP_VCI_STRING
1364         string
1365         depends on CMD_BOOTP
1366         default "U-Boot.armv7" if CPU_V7A || CPU_V7M || CPU_V7R
1367         default "U-Boot.armv8" if ARM64
1368         default "U-Boot.arm" if ARM
1369         default "U-Boot"
1370
1371 config CMD_TFTPBOOT
1372         bool "tftpboot"
1373         default y
1374         help
1375           tftpboot - boot image via network using TFTP protocol
1376
1377 config CMD_TFTPPUT
1378         bool "tftp put"
1379         depends on CMD_TFTPBOOT
1380         help
1381           TFTP put command, for uploading files to a server
1382
1383 config CMD_TFTPSRV
1384         bool "tftpsrv"
1385         depends on CMD_TFTPBOOT
1386         help
1387           Act as a TFTP server and boot the first received file
1388
1389 config NET_TFTP_VARS
1390         bool "Control TFTP timeout and count through environment"
1391         depends on CMD_TFTPBOOT
1392         default y
1393         help
1394           If set, allows controlling the TFTP timeout through the
1395           environment variable tftptimeout, and the TFTP maximum
1396           timeout count through the variable tftptimeoutcountmax.
1397           If unset, timeout and maximum are hard-defined as 1 second
1398           and 10 timouts per TFTP transfer.
1399
1400 config CMD_RARP
1401         bool "rarpboot"
1402         help
1403           Boot image via network using RARP/TFTP protocol
1404
1405 config CMD_NFS
1406         bool "nfs"
1407         default y
1408         help
1409           Boot image via network using NFS protocol.
1410
1411 config CMD_MII
1412         bool "mii"
1413         help
1414           Enable MII utility commands.
1415
1416 config CMD_PING
1417         bool "ping"
1418         help
1419           Send ICMP ECHO_REQUEST to network host
1420
1421 config CMD_CDP
1422         bool "cdp"
1423         help
1424           Perform CDP network configuration
1425
1426 config CMD_SNTP
1427         bool "sntp"
1428         help
1429           Synchronize RTC via network
1430
1431 config CMD_DNS
1432         bool "dns"
1433         help
1434           Lookup the IP of a hostname
1435
1436 config CMD_LINK_LOCAL
1437         bool "linklocal"
1438         select LIB_RAND
1439         help
1440           Acquire a network IP address using the link-local protocol
1441
1442 endif
1443
1444 config CMD_ETHSW
1445         bool "ethsw"
1446         help
1447           Allow control of L2 Ethernet switch commands. These are supported
1448           by the vsc9953 Ethernet driver at present. Sub-commands allow
1449           operations such as enabling / disabling a port and
1450           viewing/maintaining the filtering database (FDB)
1451
1452 config CMD_PXE
1453         bool "pxe"
1454         select MENU
1455         help
1456           Boot image via network using PXE protocol
1457
1458 config CMD_WOL
1459         bool "wol"
1460         help
1461           Wait for wake-on-lan Magic Packet
1462
1463 endif
1464
1465 menu "Misc commands"
1466
1467 config CMD_BMP
1468         bool "Enable 'bmp' command"
1469         depends on LCD || DM_VIDEO || VIDEO
1470         help
1471           This provides a way to obtain information about a BMP-format iamge
1472           and to display it. BMP (which presumably stands for BitMaP) is a
1473           file format defined by Microsoft which supports images of various
1474           depths, formats and compression methods. Headers on the file
1475           determine the formats used. This command can be used by first loading
1476           the image into RAM, then using this command to look at it or display
1477           it.
1478
1479 config CMD_BOOTCOUNT
1480         bool "bootcount"
1481         depends on BOOTCOUNT_LIMIT
1482         help
1483           Enable the bootcount command, which allows interrogation and
1484           reset of the bootcounter.
1485
1486 config CMD_BSP
1487         bool "Enable board-specific commands"
1488         help
1489           (deprecated: instead, please define a Kconfig option for each command)
1490
1491           Some boards have board-specific commands which are only enabled
1492           during developemnt and need to be turned off for production. This
1493           option provides a way to control this. The commands that are enabled
1494           vary depending on the board.
1495
1496 config CMD_BKOPS_ENABLE
1497         bool "mmc bkops enable"
1498         depends on CMD_MMC
1499         default n
1500         help
1501           Enable command for setting manual background operations handshake
1502           on a eMMC device. The feature is optionally available on eMMC devices
1503           conforming to standard >= 4.41.
1504
1505 config CMD_BLOCK_CACHE
1506         bool "blkcache - control and stats for block cache"
1507         depends on BLOCK_CACHE
1508         default y if BLOCK_CACHE
1509         help
1510           Enable the blkcache command, which can be used to control the
1511           operation of the cache functions.
1512           This is most useful when fine-tuning the operation of the cache
1513           during development, but also allows the cache to be disabled when
1514           it might hurt performance (e.g. when using the ums command).
1515
1516 config CMD_CACHE
1517         bool "icache or dcache"
1518         help
1519           Enable the "icache" and "dcache" commands
1520
1521 config CMD_CONITRACE
1522         bool "conitrace - trace console input codes"
1523         help
1524           Enable the 'conitrace' command which displays the codes received
1525           from the console input as hexadecimal numbers.
1526
1527 config CMD_CLS
1528         bool "Enable clear screen command 'cls'"
1529         depends on CFB_CONSOLE || DM_VIDEO || LCD || VIDEO
1530         default y if LCD
1531         help
1532           Enable the 'cls' command which clears the screen contents
1533           on video frame buffer.
1534
1535 config CMD_EFIDEBUG
1536         bool "efidebug - display/configure UEFI environment"
1537         depends on EFI_LOADER
1538         select EFI_DEVICE_PATH_TO_TEXT
1539         default n
1540         help
1541           Enable the 'efidebug' command which provides a subset of UEFI
1542           shell utility with simplified functionality. It will be useful
1543           particularly for managing boot parameters as  well as examining
1544           various EFI status for debugging.
1545
1546 config CMD_EXCEPTION
1547         bool "exception - raise exception"
1548         depends on ARM || RISCV || X86
1549         help
1550           Enable the 'exception' command which allows to raise an exception.
1551
1552 config CMD_LED
1553         bool "led"
1554         depends on LED
1555         default y if LED
1556         help
1557           Enable the 'led' command which allows for control of LEDs supported
1558           by the board. The LEDs can be listed with 'led list' and controlled
1559           with led on/off/togle/blink. Any LED drivers can be controlled with
1560           this command, e.g. led_gpio.
1561
1562 config CMD_DATE
1563         bool "date"
1564         default y if DM_RTC
1565         help
1566           Enable the 'date' command for getting/setting the time/date in RTC
1567           devices.
1568
1569 config CMD_TIME
1570         bool "time"
1571         help
1572           Run commands and summarize execution time.
1573
1574 config CMD_GETTIME
1575         bool "gettime - read elapsed time"
1576         help
1577           Enable the 'gettime' command which reads the elapsed time since
1578           U-Boot started running. This shows the time in seconds and
1579           milliseconds. See also the 'bootstage' command which provides more
1580           flexibility for boot timing.
1581
1582 # TODO: rename to CMD_SLEEP
1583 config CMD_MISC
1584         bool "sleep"
1585         default y
1586         help
1587           Delay execution for some time
1588
1589 config MP
1590         bool "support for multiprocessor"
1591         help
1592           This provides an option to brinup
1593           different processors in multiprocessor
1594           cases.
1595
1596 config CMD_TIMER
1597         bool "timer"
1598         help
1599           Access the system timer.
1600
1601 config CMD_SOUND
1602         bool "sound"
1603         depends on SOUND
1604         help
1605           This provides basic access to the U-Boot's sound support. The main
1606           feature is to play a beep.
1607
1608              sound init   - set up sound system
1609              sound play   - play a sound
1610
1611 config CMD_QFW
1612         bool "qfw"
1613         select QFW
1614         help
1615           This provides access to the QEMU firmware interface.  The main
1616           feature is to allow easy loading of files passed to qemu-system
1617           via -kernel / -initrd
1618
1619 source "cmd/mvebu/Kconfig"
1620
1621 config CMD_TERMINAL
1622         bool "terminal - provides a way to attach a serial terminal"
1623         help
1624           Provides a 'cu'-like serial terminal command. This can be used to
1625           access other serial ports from the system console. The terminal
1626           is very simple with no special processing of characters. As with
1627           cu, you can press ~. (tilde followed by period) to exit.
1628
1629 config CMD_UUID
1630         bool "uuid, guid - generation of unique IDs"
1631         select LIB_UUID
1632         help
1633           This enables two commands:
1634
1635              uuid - generate random Universally Unique Identifier
1636              guid - generate Globally Unique Identifier based on random UUID
1637
1638           The two commands are very similar except for the endianness of the
1639           output.
1640
1641 endmenu
1642
1643 source "cmd/ti/Kconfig"
1644
1645 config CMD_BOOTSTAGE
1646         bool "Enable the 'bootstage' command"
1647         depends on BOOTSTAGE
1648         help
1649           Add a 'bootstage' command which supports printing a report
1650           and un/stashing of bootstage data.
1651
1652 menu "Power commands"
1653 config CMD_PMIC
1654         bool "Enable Driver Model PMIC command"
1655         depends on DM_PMIC
1656         help
1657           This is the pmic command, based on a driver model pmic's API.
1658           Command features are unchanged:
1659           - list               - list pmic devices
1660           - pmic dev <id>      - show or [set] operating pmic device (NEW)
1661           - pmic dump          - dump registers
1662           - pmic read address  - read byte of register at address
1663           - pmic write address - write byte to register at address
1664           The only one change for this command is 'dev' subcommand.
1665
1666 config CMD_REGULATOR
1667         bool "Enable Driver Model REGULATOR command"
1668         depends on DM_REGULATOR
1669         help
1670           This command is based on driver model regulator's API.
1671           User interface features:
1672           - list               - list regulator devices
1673           - regulator dev <id> - show or [set] operating regulator device
1674           - regulator info     - print constraints info
1675           - regulator status   - print operating status
1676           - regulator value <val] <-f> - print/[set] voltage value [uV]
1677           - regulator current <val>    - print/[set] current value [uA]
1678           - regulator mode <id>        - print/[set] operating mode id
1679           - regulator enable           - enable the regulator output
1680           - regulator disable          - disable the regulator output
1681
1682           The '-f' (force) option can be used for set the value which exceeds
1683           the limits, which are found in device-tree and are kept in regulator's
1684           uclass platdata structure.
1685
1686 endmenu
1687
1688 menu "Security commands"
1689 config CMD_AES
1690         bool "Enable the 'aes' command"
1691         select AES
1692         help
1693           This provides a means to encrypt and decrypt data using the AES
1694           (Advanced Encryption Standard). This algorithm uses a symetric key
1695           and is widely used as a streaming cipher. Different key lengths are
1696           supported by the algorithm but this command only supports 128 bits
1697           at present.
1698
1699 config CMD_BLOB
1700         bool "Enable the 'blob' command"
1701         help
1702           This is used with the Freescale secure boot mechanism.
1703
1704           Freescale's SEC block has built-in Blob Protocol which provides
1705           a method for protecting user-defined data across system power
1706           cycles. SEC block protects data in a data structure called a Blob,
1707           which provides both confidentiality and integrity protection.
1708
1709           Encapsulating data as a blob
1710           Each time that the Blob Protocol is used to protect data, a
1711           different randomly generated key is used to encrypt the data.
1712           This random key is itself encrypted using a key which is derived
1713           from SoC's non-volatile secret key and a 16 bit Key identifier.
1714           The resulting encrypted key along with encrypted data is called a
1715           blob. The non-volatile secure key is available for use only during
1716           secure boot.
1717
1718           During decapsulation, the reverse process is performed to get back
1719           the original data.
1720
1721           Sub-commands:
1722             blob enc - encapsulating data as a cryptgraphic blob
1723             blob dec - decapsulating cryptgraphic blob to get the data
1724
1725           Syntax:
1726
1727           blob enc src dst len km
1728
1729           Encapsulate and create blob of data $len bytes long
1730           at address $src and store the result at address $dst.
1731           $km is the 16 byte key modifier is also required for
1732           generation/use as key for cryptographic operation. Key
1733           modifier should be 16 byte long.
1734
1735           blob dec src dst len km
1736
1737           Decapsulate the  blob of data at address $src and
1738           store result of $len byte at addr $dst.
1739           $km is the 16 byte key modifier is also required for
1740           generation/use as key for cryptographic operation. Key
1741           modifier should be 16 byte long.
1742
1743 config CMD_HASH
1744         bool "Support 'hash' command"
1745         select HASH
1746         help
1747           This provides a way to hash data in memory using various supported
1748           algorithms (such as SHA1, MD5, CRC32). The computed digest can be
1749           saved to memory or to an environment variable. It is also possible
1750           to verify a hash against data in memory.
1751
1752 config CMD_HVC
1753         bool "Support the 'hvc' command"
1754         depends on ARM_SMCCC
1755         help
1756           Allows issuing Hypervisor Calls (HVCs). Mostly useful for
1757           development and testing.
1758
1759 config CMD_SMC
1760         bool "Support the 'smc' command"
1761         depends on ARM_SMCCC
1762         help
1763           Allows issuing Secure Monitor Calls (SMCs). Mostly useful for
1764           development and testing.
1765
1766 config HASH_VERIFY
1767         bool "hash -v"
1768         depends on CMD_HASH
1769         help
1770           Add -v option to verify data against a hash.
1771
1772 config CMD_TPM_V1
1773         bool
1774
1775 config CMD_TPM_V2
1776         bool
1777         select CMD_LOG
1778
1779 config CMD_TPM
1780         bool "Enable the 'tpm' command"
1781         depends on TPM_V1 || TPM_V2
1782         select CMD_TPM_V1 if TPM_V1
1783         select CMD_TPM_V2 if TPM_V2
1784         help
1785           This provides a means to talk to a TPM from the command line. A wide
1786           range of commands if provided - see 'tpm help' for details. The
1787           command requires a suitable TPM on your board and the correct driver
1788           must be enabled.
1789
1790 if CMD_TPM
1791
1792 config CMD_TPM_TEST
1793         bool "Enable the 'tpm test' command"
1794         depends on TPM_V1
1795         help
1796           This provides a a series of tests to confirm that the TPMv1.x is
1797           working correctly. The tests cover initialisation, non-volatile RAM,
1798           extend, global lock and checking that timing is within expectations.
1799           The tests pass correctly on Infineon TPMs but may need to be adjusted
1800           for other devices.
1801
1802 endif
1803
1804 endmenu
1805
1806 menu "Firmware commands"
1807 config CMD_CROS_EC
1808         bool "Enable crosec command"
1809         depends on CROS_EC
1810         default y
1811         help
1812           Enable command-line access to the Chrome OS EC (Embedded
1813           Controller). This provides the 'crosec' command which has
1814           a number of sub-commands for performing EC tasks such as
1815           updating its flash, accessing a small saved context area
1816           and talking to the I2C bus behind the EC (if there is one).
1817 endmenu
1818
1819 menu "Filesystem commands"
1820 config CMD_BTRFS
1821         bool "Enable the 'btrsubvol' command"
1822         select FS_BTRFS
1823         help
1824           This enables the 'btrsubvol' command to list subvolumes
1825           of a BTRFS filesystem. There are no special commands for
1826           listing BTRFS directories or loading BTRFS files - this
1827           can be done by the generic 'fs' commands (see CMD_FS_GENERIC)
1828           when BTRFS is enabled (see FS_BTRFS).
1829
1830 config CMD_CBFS
1831         bool "Enable the 'cbfs' command"
1832         depends on FS_CBFS
1833         help
1834           Define this to enable support for reading from a Coreboot
1835           filesystem. This is a ROM-based filesystem used for accessing files
1836           on systems that use coreboot as the first boot-loader and then load
1837           U-Boot to actually boot the Operating System. Available commands are
1838           cbfsinit, cbfsinfo, cbfsls and cbfsload.
1839
1840 config CMD_CRAMFS
1841         bool "Enable the 'cramfs' command"
1842         depends on FS_CRAMFS
1843         help
1844           This provides commands for dealing with CRAMFS (Compressed ROM
1845           filesystem). CRAMFS is useful when space is tight since files are
1846           compressed. Two commands are provided:
1847
1848              cramfsls   - lists files in a cramfs image
1849              cramfsload - loads a file from a cramfs image
1850
1851 config CMD_EXT2
1852         bool "ext2 command support"
1853         select FS_EXT4
1854         help
1855           Enables EXT2 FS command
1856
1857 config CMD_EXT4
1858         bool "ext4 command support"
1859         select FS_EXT4
1860         help
1861           Enables EXT4 FS command
1862
1863 config CMD_EXT4_WRITE
1864         depends on CMD_EXT4
1865         bool "ext4 write command support"
1866         select EXT4_WRITE
1867         help
1868           Enables EXT4 FS write command
1869
1870 config CMD_FAT
1871         bool "FAT command support"
1872         select FS_FAT
1873         help
1874           Support for the FAT fs
1875
1876 config CMD_FS_GENERIC
1877         bool "filesystem commands"
1878         help
1879           Enables filesystem commands (e.g. load, ls) that work for multiple
1880           fs types.
1881
1882 config CMD_FS_UUID
1883         bool "fsuuid command"
1884         help
1885           Enables fsuuid command for filesystem UUID.
1886
1887 config CMD_JFFS2
1888         bool "jffs2 command"
1889         select FS_JFFS2
1890         help
1891           Enables commands to support the JFFS2 (Journalling Flash File System
1892           version 2) filesystem. This enables fsload, ls and fsinfo which
1893           provide the ability to load files, list directories and obtain
1894           filesystem information.
1895
1896 config CMD_MTDPARTS
1897         bool "MTD partition support"
1898         select MTD_DEVICE if (CMD_NAND || NAND)
1899         help
1900           MTD partitioning tool support.
1901           It is strongly encouraged to avoid using this command
1902           anymore along with 'sf', 'nand', 'onenand'. One can still
1903           declare the partitions in the mtdparts environment variable
1904           but better use the MTD stack and the 'mtd' command instead.
1905
1906 config MTDIDS_DEFAULT
1907         string "Default MTD IDs"
1908         depends on MTD_PARTITIONS || CMD_MTDPARTS || CMD_NAND || CMD_FLASH
1909         help
1910           Defines a default MTD IDs list for use with MTD partitions in the
1911           Linux MTD command line partitions format.
1912
1913 config MTDPARTS_DEFAULT
1914         string "Default MTD partition scheme"
1915         depends on MTD_PARTITIONS || CMD_MTDPARTS || CMD_NAND || CMD_FLASH
1916         help
1917           Defines a default MTD partitioning scheme in the Linux MTD command
1918           line partitions format
1919
1920 config CMD_MTDPARTS_SPREAD
1921         bool "Padd partition size to take account of bad blocks"
1922         depends on CMD_MTDPARTS
1923         help
1924           This enables the 'spread' sub-command of the mtdparts command.
1925           This command will modify the existing mtdparts variable by increasing
1926           the size of the partitions such that 1) each partition's net size is
1927           at least as large as the size specified in the mtdparts variable and
1928           2) each partition starts on a good block.
1929
1930 config CMD_REISER
1931         bool "reiser - Access to reiserfs filesystems"
1932         help
1933           This provides two commands which operate on a resierfs filesystem,
1934           commonly used some years ago:
1935
1936             reiserls - list files
1937             reiserload - load a file
1938
1939 config CMD_YAFFS2
1940         bool "yaffs2 - Access of YAFFS2 filesystem"
1941         depends on YAFFS2
1942         default y
1943         help
1944           This provides commands for accessing a YAFFS2 filesystem. Yet
1945           Another Flash Filesystem 2 is a filesystem designed specifically
1946           for NAND flash. It incorporates bad-block management and ensures
1947           that device writes are sequential regardless of filesystem
1948           activity.
1949
1950 config CMD_ZFS
1951         bool "zfs - Access of ZFS filesystem"
1952         help
1953           This provides commands to accessing a ZFS filesystem, commonly used
1954           on Solaris systems. Two sub-commands are provided:
1955
1956             zfsls - list files in a directory
1957             zfsload - load a file
1958
1959           See doc/README.zfs for more details.
1960
1961 endmenu
1962
1963 menu "Debug commands"
1964
1965 config CMD_BEDBUG
1966         bool "bedbug"
1967         help
1968           The bedbug (emBEDded deBUGger) command provides debugging features
1969           for some PowerPC processors. For details please see the
1970           docuemntation in doc/README.beddbug
1971
1972 config CMD_DIAG
1973         bool "diag - Board diagnostics"
1974         help
1975           This command provides access to board diagnostic tests. These are
1976           called Power-on Self Tests (POST). The command allows listing of
1977           available tests and running either all the tests, or specific tests
1978           identified by name.
1979
1980 config CMD_IRQ
1981         bool "irq - Show information about interrupts"
1982         depends on !ARM && !MIPS && !SH
1983         help
1984           This enables two commands:
1985
1986              interrupts - enable or disable interrupts
1987              irqinfo - print device-specific interrupt information
1988
1989 config CMD_KGDB
1990         bool "kgdb - Allow debugging of U-Boot with gdb"
1991         depends on PPC
1992         help
1993           This enables a 'kgdb' command which allows gdb to connect to U-Boot
1994           over a serial link for debugging purposes. This allows
1995           single-stepping, inspecting variables, etc. This is supported only
1996           on PowerPC at present.
1997
1998 config CMD_LOG
1999         bool "log - Generation, control and access to logging"
2000         select LOG
2001         help
2002           This provides access to logging features. It allows the output of
2003           log data to be controlled to a limited extent (setting up the default
2004           maximum log level for emitting of records). It also provides access
2005           to a command used for testing the log system.
2006
2007 config CMD_TRACE
2008         bool "trace - Support tracing of function calls and timing"
2009         help
2010           Enables a command to control using of function tracing within
2011           U-Boot. This allows recording of call traces including timing
2012           information. The command can write data to memory for exporting
2013           for analysis (e.g. using bootchart). See doc/README.trace for full
2014           details.
2015
2016 config CMD_AVB
2017         bool "avb - Android Verified Boot 2.0 operations"
2018         depends on AVB_VERIFY
2019         default n
2020         help
2021           Enables a "avb" command to perform verification of partitions using
2022           Android Verified Boot 2.0 functionality. It includes such subcommands:
2023             avb init - initialize avb2 subsystem
2024             avb read_rb - read rollback index
2025             avb write_rb - write rollback index
2026             avb is_unlocked - check device lock state
2027             avb get_uuid - read and print uuid of a partition
2028             avb read_part - read data from partition
2029             avb read_part_hex - read data from partition and output to stdout
2030             avb write_part - write data to partition
2031             avb verify - run full verification chain
2032 endmenu
2033
2034 config CMD_UBI
2035         tristate "Enable UBI - Unsorted block images commands"
2036         select MTD_UBI
2037         help
2038           UBI is a software layer above MTD layer which admits use of LVM-like
2039           logical volumes on top of MTD devices, hides some complexities of
2040           flash chips like wear and bad blocks and provides some other useful
2041           capabilities. Please, consult the MTD web site for more details
2042           (www.linux-mtd.infradead.org). Activate this option if you want
2043           to use U-Boot UBI commands.
2044           It is also strongly encouraged to also enable CONFIG_MTD to get full
2045           partition support.
2046
2047 config CMD_UBIFS
2048         tristate "Enable UBIFS - Unsorted block images filesystem commands"
2049         depends on CMD_UBI
2050         default y if CMD_UBI
2051         select LZO
2052         help
2053           UBIFS is a file system for flash devices which works on top of UBI.
2054
2055 endmenu