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