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