blob: 1205ef501e9a659a73e3337adc4ee52a86451dd8 [file] [log] [blame]
Simon Glass72a8cf82016-01-17 20:53:51 -07001menu "Command line interface"
2
Simon Glass302a6482016-03-13 19:07:28 -06003config CMDLINE
4 bool "Support U-Boot commands"
5 default y
6 help
7 Enable U-Boot's command-line functions. This provides a means
8 to enter commands into U-Boot for a wide variety of purposes. It
9 also allows scripts (containing commands) to be executed.
10 Various commands and command categorys can be indivdually enabled.
11 Depending on the number of commands enabled, this can add
12 substantially to the size of U-Boot.
13
Simon Glass72a8cf82016-01-17 20:53:51 -070014config HUSH_PARSER
15 bool "Use hush shell"
Simon Glass302a6482016-03-13 19:07:28 -060016 depends on CMDLINE
Simon Glass72a8cf82016-01-17 20:53:51 -070017 help
18 This option enables the "hush" shell (from Busybox) as command line
19 interpreter, thus enabling powerful command line syntax like
20 if...then...else...fi conditionals or `&&' and '||'
21 constructs ("shell scripts").
22
23 If disabled, you get the old, much simpler behaviour with a somewhat
24 smaller memory footprint.
25
Adam Fordd021e942018-02-06 07:58:59 -060026config CMDLINE_EDITING
27 bool "Enable command line editing"
28 depends on CMDLINE
29 default y
30 help
31 Enable editing and History functions for interactive command line
32 input operations
33
Tom Rinidafcd962022-03-30 18:07:14 -040034config CMDLINE_PS_SUPPORT
35 bool "Enable support for changing the command prompt string at run-time"
36 depends on HUSH_PARSER
37 help
38 Only static string in the prompt is supported so far. The string is
39 obtained from environment variables PS1 and PS2.
40
Adam Fordd021e942018-02-06 07:58:59 -060041config AUTO_COMPLETE
42 bool "Enable auto complete using TAB"
43 depends on CMDLINE
44 default y
45 help
46 Enable auto completion of commands using TAB.
47
48config SYS_LONGHELP
49 bool "Enable long help messages"
50 depends on CMDLINE
51 default y if CMDLINE
52 help
53 Defined when you want long help messages included
54 Do not set this option when short of memory.
55
Simon Glass72a8cf82016-01-17 20:53:51 -070056config SYS_PROMPT
57 string "Shell prompt"
Michal Simeka91feae2019-09-25 12:32:41 +020058 default "Zynq> " if ARCH_ZYNQ
Michal Simek3c3886d2019-09-25 12:37:15 +020059 default "ZynqMP> " if ARCH_ZYNQMP
Simon Glass72a8cf82016-01-17 20:53:51 -070060 default "=> "
61 help
62 This string is displayed in the command line to the left of the
63 cursor.
64
Patrick Delaunay48aee0a2020-10-26 09:31:42 +010065config SYS_PROMPT_HUSH_PS2
66 string "Hush shell secondary prompt"
67 depends on HUSH_PARSER
68 default "> "
69 help
70 This defines the secondary prompt string, which is
71 printed when the command interpreter needs more input
72 to complete a command. Usually "> ".
73
Christoph Muellner7ae31fc2019-04-05 13:03:46 +020074config SYS_XTRACE
Sean Andersonb935d192021-03-04 11:34:23 -050075 bool "Command execution tracer"
Christoph Muellner7ae31fc2019-04-05 13:03:46 +020076 depends on CMDLINE
77 default y if CMDLINE
78 help
79 This option enables the possiblity to print all commands before
80 executing them and after all variables are evaluated (similar
81 to Bash's xtrace/'set -x' feature).
82 To enable the tracer a variable "xtrace" needs to be defined in
83 the environment.
84
Sam Protsenko610eec72017-09-28 12:33:45 -070085config BUILD_BIN2C
86 bool
87
Simon Glass72a8cf82016-01-17 20:53:51 -070088comment "Commands"
89
90menu "Info commands"
91
Simon Glass0b885bc2020-04-26 09:19:53 -060092config CMD_ACPI
93 bool "acpi"
Heinrich Schuchardt12218c12021-01-20 21:37:56 +010094 depends on ACPIGEN
95 default y
Simon Glass0b885bc2020-04-26 09:19:53 -060096 help
97 List and dump ACPI tables. ACPI (Advanced Configuration and Power
98 Interface) is used mostly on x86 for providing information to the
99 Operating System about devices in the system. The tables are set up
100 by the firmware, typically U-Boot but possibly an earlier firmware
101 module, if U-Boot is chain-loaded from something else. ACPI tables
102 can also include code, to perform hardware-specific tasks required
103 by the Operating Systems. This allows some amount of separation
104 between the firmware and OS, and is particularly useful when you
105 want to make hardware changes without the OS needing to be adjusted.
106
Bin Meng56d06352021-02-25 17:22:34 +0800107config CMD_ADDRMAP
108 bool "addrmap"
109 depends on ADDR_MAP
110 default y
111 help
112 List non-identity virtual-physical memory mappings for 32-bit CPUs.
113
Simon Glass72a8cf82016-01-17 20:53:51 -0700114config CMD_BDI
115 bool "bdinfo"
116 default y
117 help
118 Print board info
119
Masahiro Yamada61304db2017-01-30 11:12:07 +0900120config CMD_CONFIG
121 bool "config"
Masahiro Yamada61304db2017-01-30 11:12:07 +0900122 default SANDBOX
Michal Simek5ed063d2018-07-23 15:55:13 +0200123 select BUILD_BIN2C
Masahiro Yamada61304db2017-01-30 11:12:07 +0900124 help
125 Print ".config" contents.
126
127 If this option is enabled, the ".config" file contents are embedded
128 in the U-Boot image and can be printed on the console by the "config"
129 command. This provides information of which options are enabled on
130 the running U-Boot.
131
Simon Glass72a8cf82016-01-17 20:53:51 -0700132config CMD_CONSOLE
133 bool "coninfo"
134 default y
135 help
136 Print console devices and information.
137
138config CMD_CPU
139 bool "cpu"
Heinrich Schuchardt622178d2020-11-05 00:29:11 +0100140 depends on CPU
Simon Glass72a8cf82016-01-17 20:53:51 -0700141 help
142 Print information about available CPUs. This normally shows the
143 number of CPUs, type (e.g. manufacturer, architecture, product or
144 internal name) and clock frequency. Other information may be
145 available depending on the CPU driver.
146
147config CMD_LICENSE
148 bool "license"
Masahiro Yamadad726f222017-01-30 11:12:08 +0900149 select BUILD_BIN2C
Simon Glass72a8cf82016-01-17 20:53:51 -0700150 help
151 Print GPL license text
152
Simon Glass3b65ee32019-12-06 21:41:54 -0700153config CMD_PMC
154 bool "pmc"
155 help
156 Provides access to the Intel Power-Management Controller (PMC) so
157 that its state can be examined. This does not currently support
158 changing the state but it is still useful for debugging and seeing
159 what is going on.
160
Christophe Leroyfa379222017-08-04 16:34:40 -0600161config CMD_REGINFO
162 bool "reginfo"
163 depends on PPC
164 help
165 Register dump
166
Baruch Siach1c79f2f2020-01-21 15:44:54 +0200167config CMD_TLV_EEPROM
168 bool "tlv_eeprom"
169 depends on I2C_EEPROM
170 help
171 Display and program the system EEPROM data block in ONIE Tlvinfo
172 format. TLV stands for Type-Length-Value.
173
174config SPL_CMD_TLV_EEPROM
175 bool "tlv_eeprom for SPL"
176 depends on SPL_I2C_EEPROM
Simon Glass9ca00682021-07-10 21:14:31 -0600177 select SPL_DRIVERS_MISC
Baruch Siach1c79f2f2020-01-21 15:44:54 +0200178 help
179 Read system EEPROM data block in ONIE Tlvinfo format from SPL.
180
Heinrich Schuchardtc92b50a2020-08-20 19:43:39 +0200181config CMD_SBI
182 bool "sbi"
183 depends on RISCV_SMODE && SBI_V02
184 help
185 Display information about the SBI implementation.
186
Simon Glass72a8cf82016-01-17 20:53:51 -0700187endmenu
188
189menu "Boot commands"
190
191config CMD_BOOTD
192 bool "bootd"
193 default y
194 help
195 Run the command stored in the environment "bootcmd", i.e.
196 "bootd" does the same thing as "run bootcmd".
197
198config CMD_BOOTM
199 bool "bootm"
200 default y
201 help
202 Boot an application image from the memory.
203
Philippe Reynes9d46e632022-03-28 22:57:00 +0200204config CMD_BOOTM_PRE_LOAD
205 bool "enable pre-load on bootm"
206 depends on CMD_BOOTM
207 depends on IMAGE_PRE_LOAD
208 default n
209 help
210 Enable support of stage pre-load for the bootm command.
211 This stage allow to check or modify the image provided
212 to the bootm command.
213
Simon Glass5d053cc2022-04-24 23:31:10 -0600214config CMD_BOOTDEV
215 bool "bootdev"
216 depends on BOOTSTD
217 default y if BOOTSTD_FULL
218 help
219 Support listing available bootdevs (boot devices) which can provide an
220 OS to boot, as well as showing information about a particular one.
221
222 This command is not necessary for bootstd to work.
223
Simon Glass2d653f62022-04-24 23:31:11 -0600224config CMD_BOOTFLOW
225 bool "bootflow"
226 depends on BOOTSTD
227 default y
228 help
229 Support scanning for bootflows available with the bootdevs. The
230 bootflows can optionally be booted.
231
232config CMD_BOOTFLOW_FULL
233 bool "bootflow - extract subcommands"
234 depends on BOOTSTD_FULL
235 default y if BOOTSTD_FULL
236 help
237 Add the ability to list the available bootflows, select one and obtain
238 information about it.
239
240 This command is not necessary for bootstd to work.
241
Simon Glass7fca71d2022-04-24 23:31:12 -0600242config CMD_BOOTMETH
243 bool "bootmeth"
244 depends on BOOTSTD
245 default y if BOOTSTD_FULL
246 help
247 Support listing available bootmethds (methods used to boot an
248 Operating System), as well as selecting the order that the bootmeths
249 are used.
250
251 This command is not necessary for bootstd to work.
252
Cristian Ciocalteaecc7fda2019-12-24 18:05:39 +0200253config BOOTM_EFI
254 bool "Support booting UEFI FIT images"
255 depends on CMD_BOOTEFI && CMD_BOOTM && FIT
256 default y
257 help
258 Support booting UEFI FIT images via the bootm command.
259
Dinh Nguyenab8243e2016-04-21 09:05:23 -0500260config CMD_BOOTZ
261 bool "bootz"
262 help
263 Boot the Linux zImage
264
Masahiro Yamada26959272016-08-12 08:31:16 -0400265config CMD_BOOTI
266 bool "booti"
Atish Patra3cedc972019-05-06 17:49:39 -0700267 depends on ARM64 || RISCV
Masahiro Yamada26959272016-08-12 08:31:16 -0400268 default y
269 help
270 Boot an AArch64 Linux Kernel image from memory.
271
Tom Rini4b0bcfa2019-09-20 17:36:50 -0400272config BOOTM_LINUX
273 bool "Support booting Linux OS images"
274 depends on CMD_BOOTM || CMD_BOOTZ || CMD_BOOTI
275 default y
276 help
277 Support booting the Linux kernel directly via a command such as bootm
278 or booti or bootz.
279
280config BOOTM_NETBSD
281 bool "Support booting NetBSD (non-EFI) loader images"
282 depends on CMD_BOOTM
283 default y
284 help
285 Support booting NetBSD via the bootm command.
286
287config BOOTM_OPENRTOS
288 bool "Support booting OPENRTOS / FreeRTOS images"
289 depends on CMD_BOOTM
290 help
291 Support booting OPENRTOS / FreeRTOS via the bootm command.
292
293config BOOTM_OSE
294 bool "Support booting Enea OSE images"
Tom Rini14a2dee2019-12-05 18:46:11 -0500295 depends on (ARM && (ARM64 || CPU_V7A || CPU_V7R) || SANDBOX || PPC || X86)
Tom Rini4b0bcfa2019-09-20 17:36:50 -0400296 depends on CMD_BOOTM
297 help
298 Support booting Enea OSE images via the bootm command.
299
300config BOOTM_PLAN9
301 bool "Support booting Plan9 OS images"
302 depends on CMD_BOOTM
303 default y
304 help
305 Support booting Plan9 images via the bootm command.
306
307config BOOTM_RTEMS
308 bool "Support booting RTEMS OS images"
309 depends on CMD_BOOTM
310 default y
311 help
312 Support booting RTEMS images via the bootm command.
313
314config BOOTM_VXWORKS
315 bool "Support booting VxWorks OS images"
316 depends on CMD_BOOTM
317 default y
318 help
319 Support booting VxWorks images via the bootm command.
320
AKASHI Takahirofefff632019-11-08 10:32:15 +0900321config CMD_BOOTEFI
322 bool "bootefi"
323 depends on EFI_LOADER
324 default y
325 help
326 Boot an EFI image from memory.
327
Alexander Graf95b62b22016-11-17 22:40:10 +0100328config CMD_BOOTEFI_HELLO_COMPILE
329 bool "Compile a standard EFI hello world binary for testing"
Heinrich Schuchardt3b4847c2019-11-07 08:05:17 +0100330 depends on CMD_BOOTEFI && !CPU_V7M
Alexander Graf95b62b22016-11-17 22:40:10 +0100331 default y
332 help
333 This compiles a standard EFI hello world application with U-Boot so
334 that it can be used with the test/py testing framework. This is useful
335 for testing that EFI is working at a basic level, and for bringing
336 up EFI support on a new architecture.
337
338 No additional space will be required in the resulting U-Boot binary
339 when this option is enabled.
340
Simon Glassc7ae3df2016-11-07 08:47:08 -0700341config CMD_BOOTEFI_HELLO
342 bool "Allow booting a standard EFI hello world for testing"
Alexander Graf95b62b22016-11-17 22:40:10 +0100343 depends on CMD_BOOTEFI_HELLO_COMPILE
Heinrich Schuchardtec5f0ed2020-07-13 07:33:40 +0200344 default y if CMD_BOOTEFI_SELFTEST
Simon Glassc7ae3df2016-11-07 08:47:08 -0700345 help
346 This adds a standard EFI hello world application to U-Boot so that
347 it can be used with the 'bootefi hello' command. This is useful
348 for testing that EFI is working at a basic level, and for bringing
349 up EFI support on a new architecture.
350
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +0200351source lib/efi_selftest/Kconfig
352
Tom Rini4880b022016-11-29 09:14:56 -0500353config CMD_BOOTMENU
354 bool "bootmenu"
355 select MENU
356 help
357 Add an ANSI terminal boot menu command.
358
Eugeniu Roscab84acf12019-12-24 17:51:06 +0100359config CMD_ADTIMG
360 bool "adtimg"
Sam Protsenkod03e76a2018-08-16 23:34:13 +0300361 help
362 Android DTB/DTBO image manipulation commands. Read dtb/dtbo files from
363 image into RAM, dump image structure information, etc. Those dtb/dtbo
364 files should be merged in one dtb further, which needs to be passed to
365 the kernel, as part of a boot process.
366
Sam Protsenko94f6d0d2020-01-24 17:53:42 +0200367config CMD_ABOOTIMG
368 bool "abootimg"
369 depends on ANDROID_BOOT_IMAGE
370 help
371 Android Boot Image manipulation commands. Allows one to extract
372 images contained in boot.img, like kernel, ramdisk, dtb, etc, and
373 obtain corresponding meta-information from boot.img.
374
Sam Protsenko34b43192020-01-24 17:53:43 +0200375 See doc/android/boot-image.rst for details.
376
Simon Glass72a8cf82016-01-17 20:53:51 -0700377config CMD_ELF
378 bool "bootelf, bootvx"
379 default y
Keerthy805b3ca2020-02-12 13:55:03 +0530380 select LIB_ELF
Simon Glass72a8cf82016-01-17 20:53:51 -0700381 help
382 Boot an ELF/vxWorks image from the memory.
383
Michal Simek23922e22016-04-06 20:28:04 +0200384config CMD_FDT
385 bool "Flattened Device Tree utility commands"
386 default y
387 depends on OF_LIBFDT
388 help
389 Do FDT related setup before booting into the Operating System.
390
Kory Maincent2f84e9c2021-05-04 19:31:22 +0200391config SUPPORT_EXTENSION_SCAN
392 bool
393
394config CMD_EXTENSION
395 bool "Extension board management command"
396 select CMD_FDT
397 depends on SUPPORT_EXTENSION_SCAN
398 help
399 Enables the "extension" command, which allows to detect
400 extension boards connected to the system, and apply
401 corresponding Device Tree overlays.
402
Simon Glass72a8cf82016-01-17 20:53:51 -0700403config CMD_GO
404 bool "go"
405 default y
406 help
407 Start an application at a given address.
408
409config CMD_RUN
410 bool "run"
411 default y
412 help
413 Run the command in the given environment variable.
414
415config CMD_IMI
416 bool "iminfo"
417 default y
418 help
419 Print header information for application image.
420
421config CMD_IMLS
422 bool "imls"
Simon Glass72a8cf82016-01-17 20:53:51 -0700423 help
424 List all images found in flash
425
426config CMD_XIMG
427 bool "imxtract"
428 default y
429 help
430 Extract a part of a multi-image.
431
Simon Glass72c30332017-08-04 16:34:48 -0600432config CMD_SPL
433 bool "spl export - Export boot information for Falcon boot"
434 depends on SPL
435 help
436 Falcon mode allows booting directly from SPL into an Operating
437 System such as Linux, thus skipping U-Boot proper. See
438 doc/README.falcon for full information about how to use this
439 command.
440
Simon Glass203dc1b2017-08-04 16:34:49 -0600441config CMD_SPL_NAND_OFS
Lukasz Majewskif63c43b2019-05-16 16:01:36 +0200442 hex "Offset of OS args or dtb for Falcon-mode NAND boot"
Lukasz Majewski7cb179e2019-05-16 16:01:35 +0200443 depends on CMD_SPL && (TPL_NAND_SUPPORT || SPL_NAND_SUPPORT)
Simon Glass203dc1b2017-08-04 16:34:49 -0600444 default 0
445 help
446 This provides the offset of the command line arguments for Linux
447 when booting from NAND in Falcon mode. See doc/README.falcon
448 for full information about how to use this option (and also see
449 board/gateworks/gw_ventana/README for an example).
450
Lukasz Majewskief9e57d2019-05-16 16:01:37 +0200451config CMD_SPL_NOR_OFS
452 hex "Offset of OS args or dtb for Falcon-mode NOR boot"
453 depends on CMD_SPL && SPL_NOR_SUPPORT
454 default 0
455 help
456 This provides the offset of the command line arguments or dtb for
457 Linux when booting from NOR in Falcon mode.
458
Simon Glass3a91a252017-08-04 16:34:50 -0600459config CMD_SPL_WRITE_SIZE
460 hex "Size of argument area"
461 depends on CMD_SPL
462 default 0x2000
463 help
464 This provides the size of the command-line argument area in NAND
465 flash used by Falcon-mode boot. See the documentation until CMD_SPL
466 for detail.
467
Simon Glass9b92a8d2017-08-04 16:34:57 -0600468config CMD_THOR_DOWNLOAD
469 bool "thor - TIZEN 'thor' download"
Marek Szyprowski909338c2019-10-02 12:29:08 +0200470 select DFU
Simon Glass9b92a8d2017-08-04 16:34:57 -0600471 help
472 Implements the 'thor' download protocol. This is a way of
473 downloading a software update over USB from an attached host.
474 There is no documentation about this within the U-Boot source code
475 but you should be able to find something on the interwebs.
476
Simon Glasse7a815f2017-08-04 16:35:03 -0600477config CMD_ZBOOT
478 bool "zboot - x86 boot command"
479 help
480 With x86 machines it is common to boot a bzImage file which
481 contains both a kernel and a setup.bin file. The latter includes
482 configuration information from the dark ages which x86 boards still
483 need to pick things out of.
484
485 Consider using FIT in preference to this since it supports directly
486 booting both 32- and 64-bit kernels, as well as secure boot.
487 Documentation is available in doc/uImage.FIT/x86-fit-boot.txt
488
Simon Glass72a8cf82016-01-17 20:53:51 -0700489endmenu
490
491menu "Environment commands"
492
Dinh Nguyenab8243e2016-04-21 09:05:23 -0500493config CMD_ASKENV
494 bool "ask for env variable"
495 help
496 Ask for environment variable
497
Simon Glass72a8cf82016-01-17 20:53:51 -0700498config CMD_EXPORTENV
499 bool "env export"
500 default y
501 help
502 Export environments.
503
504config CMD_IMPORTENV
505 bool "env import"
506 default y
507 help
508 Import environments.
509
510config CMD_EDITENV
511 bool "editenv"
512 default y
513 help
514 Edit environment variable.
515
Dinh Nguyenab8243e2016-04-21 09:05:23 -0500516config CMD_GREPENV
517 bool "search env"
518 help
519 Allow for searching environment variables
520
Simon Glass72a8cf82016-01-17 20:53:51 -0700521config CMD_SAVEENV
522 bool "saveenv"
523 default y
524 help
525 Save all environment variables into the compiled-in persistent
526 storage.
527
Frank Wunderlichcd121bd2019-06-29 11:36:19 +0200528config CMD_ERASEENV
529 bool "eraseenv"
Frank Wunderlichcd121bd2019-06-29 11:36:19 +0200530 depends on CMD_SAVEENV
531 help
532 Erase environment variables from the compiled-in persistent
533 storage.
534
Simon Glass72a8cf82016-01-17 20:53:51 -0700535config CMD_ENV_EXISTS
536 bool "env exists"
537 default y
538 help
539 Check if a variable is defined in the environment for use in
540 shell scripting.
541
Simon Glassa55d29d2017-05-17 03:25:13 -0600542config CMD_ENV_CALLBACK
543 bool "env callbacks - print callbacks and their associated variables"
544 help
545 Some environment variable have callbacks defined by
546 U_BOOT_ENV_CALLBACK. These are called when the variable changes.
547 For example changing "baudrate" adjust the serial baud rate. This
548 command lists the currently defined callbacks.
549
Simon Glassffc76582017-05-17 03:25:14 -0600550config CMD_ENV_FLAGS
551 bool "env flags -print variables that have non-default flags"
552 help
553 Some environment variables have special flags that control their
554 behaviour. For example, serial# can only be written once and cannot
555 be deleted. This command shows the variables that have special
556 flags.
557
AKASHI Takahiro49d81fd2019-02-25 15:54:36 +0900558config CMD_NVEDIT_EFI
559 bool "env [set|print] -e - set/print UEFI variables"
560 depends on EFI_LOADER
AKASHI Takahiro49d81fd2019-02-25 15:54:36 +0900561 imply HEXDUMP
562 help
563 UEFI variables are encoded as some form of U-Boot variables.
564 If enabled, we are allowed to set/print UEFI variables using
565 "env" command with "-e" option without knowing details.
566
Samuel Dionne-Rielec57bd72021-12-20 18:31:56 -0500567config CMD_NVEDIT_INDIRECT
568 bool "env indirect - Sets environment value from another"
569
Leo Ruan8e921202019-05-24 17:20:19 +0200570config CMD_NVEDIT_INFO
571 bool "env info - print or evaluate environment information"
572 help
573 Print environment information:
574 - env_valid : is environment valid
575 - env_ready : is environment imported into hash table
576 - env_use_default : is default environment used
577
578 This command can be optionally used for evaluation in scripts:
579 [-d] : evaluate whether default environment is used
580 [-p] : evaluate whether environment can be persisted
Patrick Delaunay6718ebd2020-06-19 14:03:34 +0200581 [-q] : quiet output
Leo Ruan8e921202019-05-24 17:20:19 +0200582 The result of multiple evaluations will be combined with AND.
583
Patrick Delaunay0115dd32020-07-28 11:51:20 +0200584config CMD_NVEDIT_LOAD
585 bool "env load"
586 help
587 Load all environment variables from the compiled-in persistent
588 storage.
589
Patrick Delaunaya97d22e2020-07-28 11:51:21 +0200590config CMD_NVEDIT_SELECT
591 bool "env select"
592 help
593 Select the compiled-in persistent storage of environment variables.
594
Simon Glass72a8cf82016-01-17 20:53:51 -0700595endmenu
596
597menu "Memory commands"
598
Mario Six55b25562018-03-28 14:39:18 +0200599config CMD_BINOP
600 bool "binop"
601 help
602 Compute binary operations (xor, or, and) of byte arrays of arbitrary
603 size from memory and store the result in memory or the environment.
604
Simon Glass4aed2272020-09-19 18:49:26 -0600605config CMD_BLOBLIST
606 bool "bloblist"
607 default y if BLOBLIST
608 help
609 Show information about the bloblist, a collection of binary blobs
610 held in memory that persist between SPL and U-Boot. In the case of
611 x86 devices the bloblist can be used to hold ACPI tables so that they
612 remain available in memory.
613
Simon Glass72a8cf82016-01-17 20:53:51 -0700614config CMD_CRC32
615 bool "crc32"
616 default y
Michal Simek5ed063d2018-07-23 15:55:13 +0200617 select HASH
Simon Glass72a8cf82016-01-17 20:53:51 -0700618 help
619 Compute CRC32.
620
Daniel Thompson221a9492017-05-19 17:26:58 +0100621config CRC32_VERIFY
622 bool "crc32 -v"
623 depends on CMD_CRC32
624 help
625 Add -v option to verify data against a crc32 checksum.
626
Simon Glassa1dc9802017-05-17 03:25:10 -0600627config CMD_EEPROM
628 bool "eeprom - EEPROM subsystem"
629 help
630 (deprecated, needs conversion to driver model)
631 Provides commands to read and write EEPROM (Electrically Erasable
632 Programmable Read Only Memory) chips that are connected over an
633 I2C bus.
634
635config CMD_EEPROM_LAYOUT
636 bool "Enable layout-aware eeprom commands"
637 depends on CMD_EEPROM
638 help
639 (deprecated, needs conversion to driver model)
640 When enabled, additional eeprom sub-commands become available.
641
642 eeprom print - prints the contents of the eeprom in a human-readable
643 way (eeprom layout fields, and data formatted to be fit for human
644 consumption).
645
646 eeprom update - allows user to update eeprom fields by specifying
647 the field name, and providing the new data in a human readable format
648 (same format as displayed by the eeprom print command).
649
650 Both commands can either auto detect the layout, or be told which
651 layout to use.
652
653 Feature API:
654 __weak int parse_layout_version(char *str)
655 - override to provide your own layout name parsing
656 __weak void __eeprom_layout_assign(struct eeprom_layout *layout,
657 int layout_version);
658 - override to setup the layout metadata based on the version
659 __weak int eeprom_layout_detect(unsigned char *data)
660 - override to provide your own algorithm for detecting layout
661 version
662 eeprom_field.c
663 - contains various printing and updating functions for common
664 types of eeprom fields. Can be used for defining
665 custom layouts.
666
667config EEPROM_LAYOUT_HELP_STRING
668 string "Tells user what layout names are supported"
669 depends on CMD_EEPROM_LAYOUT
670 default "<not defined>"
671 help
672 Help printed with the LAYOUT VERSIONS part of the 'eeprom'
673 command's help.
674
Tom Rini88cd7d02021-08-17 17:59:45 -0400675config SYS_I2C_EEPROM_BUS
676 int "I2C bus of the EEPROM device."
677 depends on CMD_EEPROM
678 default 0
679
680config SYS_I2C_EEPROM_ADDR_LEN
681 int "Length in bytes of the EEPROM memory array address"
682 depends on CMD_EEPROM || ID_EEPROM
683 default 1
684 range 1 2
685 help
686 Note: This is NOT the chip address length!
687
688config SYS_EEPROM_SIZE
689 depends on CMD_EEPROM
690 int "Size in bytes of the EEPROM device"
691 default 256
692
693config SYS_EEPROM_PAGE_WRITE_BITS
694 int "Number of bits used to address bytes in a single page"
695 depends on CMD_EEPROM
696 default 8
697 help
698 The EEPROM page size is 2^SYS_EEPROM_PAGE_WRITE_BITS.
699 A 64 byte page, for example would require six bits.
700
701config SYS_EEPROM_PAGE_WRITE_DELAY_MS
702 int "Number of milliseconds to delay between page writes"
703 depends on CMD_EEPROM || CMD_I2C
704 default 0
705
Simon Glassba71be52017-08-04 16:34:51 -0600706config LOOPW
707 bool "loopw"
708 help
709 Infinite write loop on address range
710
Andre Przywarabea79d72017-03-15 01:19:05 +0000711config CMD_MD5SUM
712 bool "md5sum"
Andre Przywarabea79d72017-03-15 01:19:05 +0000713 select MD5
714 help
715 Compute MD5 checksum.
716
Daniel Thompson221a9492017-05-19 17:26:58 +0100717config MD5SUM_VERIFY
Andre Przywarabea79d72017-03-15 01:19:05 +0000718 bool "md5sum -v"
Andre Przywarabea79d72017-03-15 01:19:05 +0000719 depends on CMD_MD5SUM
720 help
721 Add -v option to verify data against an MD5 checksum.
722
Simon Glassba71be52017-08-04 16:34:51 -0600723config CMD_MEMINFO
724 bool "meminfo"
Daniel Thompson221a9492017-05-19 17:26:58 +0100725 help
Simon Glassba71be52017-08-04 16:34:51 -0600726 Display memory information.
Daniel Thompson221a9492017-05-19 17:26:58 +0100727
Simon Glassba71be52017-08-04 16:34:51 -0600728config CMD_MEMORY
729 bool "md, mm, nm, mw, cp, cmp, base, loop"
730 default y
Daniel Thompson221a9492017-05-19 17:26:58 +0100731 help
Simon Glassba71be52017-08-04 16:34:51 -0600732 Memory commands.
733 md - memory display
734 mm - memory modify (auto-incrementing address)
735 nm - memory modify (constant address)
736 mw - memory write (fill)
737 cp - memory copy
738 cmp - memory compare
739 base - print or set address offset
740 loop - initialize loop on address range
Simon Glass72a8cf82016-01-17 20:53:51 -0700741
Simon Glass550a9e72020-07-28 19:41:14 -0600742config CMD_MEM_SEARCH
Simon Glassbdded202020-06-02 19:26:49 -0600743 bool "ms - Memory search"
744 help
745 Memory-search command
746
747 This allows searching through a region of memory looking for hex
748 data (byte, 16-bit word, 32-bit long, also 64-bit on machines that
749 support it). It is also possible to search for a string. The
750 command accepts a memory range and a list of values to search for.
751 The values need to appear in memory in the same order they are given
752 in the command. At most 10 matches can be returned at a time, but
753 pressing return will show the next 10 matches. Environment variables
754 are set for use with scripting (memmatches, memaddr, mempos).
755
Joel Johnson72732312020-01-29 09:17:18 -0700756config CMD_MX_CYCLIC
Adam Ford78f28772019-08-14 07:54:34 -0500757 bool "Enable cyclic md/mw commands"
758 depends on CMD_MEMORY
759 help
760 Add the "mdc" and "mwc" memory commands. These are cyclic
761 "md/mw" commands.
762 Examples:
763
764 => mdc.b 10 4 500
765 This command will print 4 bytes (10,11,12,13) each 500 ms.
766
767 => mwc.l 100 12345678 10
768 This command will write 12345678 to address 100 all 10 ms.
769
Jean-Jacques Hiblot803e1a32019-07-02 14:23:26 +0200770config CMD_RANDOM
771 bool "random"
772 default y
773 depends on CMD_MEMORY && (LIB_RAND || LIB_HW_RAND)
774 help
775 random - fill memory with random data
776
Simon Glass72a8cf82016-01-17 20:53:51 -0700777config CMD_MEMTEST
778 bool "memtest"
779 help
780 Simple RAM read/write test.
781
Mario Sixe89f8aa2018-03-28 14:38:14 +0200782if CMD_MEMTEST
783
784config SYS_ALT_MEMTEST
785 bool "Alternative test"
786 help
787 Use a more complete alternative memory test.
788
Ralph Siemsen9989fb12020-09-09 12:10:00 -0400789if SYS_ALT_MEMTEST
790
791config SYS_ALT_MEMTEST_BITFLIP
792 bool "Bitflip test"
793 default y
794 help
795 The alternative memory test includes bitflip test since 2020.07.
796 The bitflip test significantly increases the overall test time.
797 Bitflip test can optionally be disabled here.
798
799endif
800
Ashok Reddy Soma702de892020-05-04 15:26:21 +0200801config SYS_MEMTEST_START
802 hex "default start address for mtest"
Tom Riniff27af12021-12-12 22:12:29 -0500803 default 0x0
Ashok Reddy Soma702de892020-05-04 15:26:21 +0200804 help
805 This is the default start address for mtest for simple read/write
806 test. If no arguments are given to mtest, default address is used
807 as start address.
808
809config SYS_MEMTEST_END
810 hex "default end address for mtest"
811 default 0x1000
812 help
813 This is the default end address for mtest for simple read/write
814 test. If no arguments are given to mtest, default address is used
815 as end address.
816
Mario Sixe89f8aa2018-03-28 14:38:14 +0200817endif
818
Simon Glassba71be52017-08-04 16:34:51 -0600819config CMD_SHA1SUM
820 bool "sha1sum"
821 select SHA1
Simon Glass72a8cf82016-01-17 20:53:51 -0700822 help
Simon Glassba71be52017-08-04 16:34:51 -0600823 Compute SHA1 checksum.
824
825config SHA1SUM_VERIFY
826 bool "sha1sum -v"
827 depends on CMD_SHA1SUM
828 help
829 Add -v option to verify data against a SHA1 checksum.
Simon Glass72a8cf82016-01-17 20:53:51 -0700830
Simon Glass00805d72017-08-04 16:34:52 -0600831config CMD_STRINGS
832 bool "strings - display strings in memory"
833 help
834 This works similarly to the Unix 'strings' command except that it
835 works with a memory range. String of printable characters found
836 within the range are displayed. The minimum number of characters
837 for a sequence to be considered a string can be provided.
838
Simon Glassee7c0e72017-05-17 03:25:43 -0600839endmenu
840
841menu "Compression commands"
842
843config CMD_LZMADEC
844 bool "lzmadec"
Tom Rini99e46df2017-09-29 14:32:44 -0400845 default y if CMD_BOOTI
Simon Glassee7c0e72017-05-17 03:25:43 -0600846 select LZMA
847 help
848 Support decompressing an LZMA (Lempel-Ziv-Markov chain algorithm)
849 image from memory.
850
Yusuke Ashidukaa1732232020-02-20 20:48:01 +0900851config CMD_UNLZ4
852 bool "unlz4"
853 default y if CMD_BOOTI
854 select LZ4
855 help
856 Support decompressing an LZ4 image from memory region.
857
Masahiro Yamadae9d33e72017-02-05 10:42:56 +0900858config CMD_UNZIP
859 bool "unzip"
Tom Rini99e46df2017-09-29 14:32:44 -0400860 default y if CMD_BOOTI
Michael Walle56c311b2020-05-22 14:07:35 +0200861 select GZIP
Masahiro Yamadae9d33e72017-02-05 10:42:56 +0900862 help
863 Uncompress a zip-compressed memory region.
864
865config CMD_ZIP
866 bool "zip"
Michael Walleeff5a542020-05-22 14:07:36 +0200867 select GZIP_COMPRESSED
Masahiro Yamadae9d33e72017-02-05 10:42:56 +0900868 help
869 Compress a memory region with zlib deflate method.
870
Simon Glass72a8cf82016-01-17 20:53:51 -0700871endmenu
872
873menu "Device access commands"
874
Simon Glass0c19b4d2017-08-04 16:34:28 -0600875config CMD_ARMFLASH
876 #depends on FLASH_CFI_DRIVER
877 bool "armflash"
878 help
879 ARM Ltd reference designs flash partition access
880
Neil Armstrong051ebe32018-04-27 15:17:57 +0200881config CMD_ADC
882 bool "adc - Access Analog to Digital Converters info and data"
883 select ADC
Michal Simek6e741cf2020-08-19 10:44:17 +0200884 depends on DM_REGULATOR
Neil Armstrong051ebe32018-04-27 15:17:57 +0200885 help
886 Shows ADC device info and permit printing one-shot analog converted
887 data from a named Analog to Digital Converter.
888
Eugeniu Roscadb7b7a02019-05-23 17:32:22 +0200889config CMD_BCB
890 bool "bcb"
891 depends on MMC
892 depends on PARTITIONS
893 help
894 Read/modify/write the fields of Bootloader Control Block, usually
895 stored on the flash "misc" partition with its structure defined in:
896 https://android.googlesource.com/platform/bootable/recovery/+/master/
897 bootloader_message/include/bootloader_message/bootloader_message.h
898
899 Some real-life use-cases include (but are not limited to):
900 - Determine the "boot reason" (and act accordingly):
901 https://source.android.com/devices/bootloader/boot-reason
902 - Get/pass a list of commands from/to recovery:
903 https://android.googlesource.com/platform/bootable/recovery
904 - Inspect/dump the contents of the BCB fields
905
Jean-Jacques Hiblot49c752c2018-08-09 16:17:46 +0200906config CMD_BIND
907 bool "bind/unbind - Bind or unbind a device to/from a driver"
908 depends on DM
909 help
910 Bind or unbind a device to/from a driver from the command line.
911 This is useful in situations where a device may be handled by several
912 drivers. For example, this can be used to bind a UDC to the usb ether
913 gadget driver from the command line.
914
Simon Glassd3156282017-04-26 22:28:02 -0600915config CMD_CLK
916 bool "clk - Show clock frequencies"
917 help
918 (deprecated)
919 Shows clock frequences by calling a sock_clk_dump() hook function.
920 This is depreated in favour of using the CLK uclass and accessing
921 clock values from associated drivers. However currently no command
922 exists for this.
923
Simon Glass72a8cf82016-01-17 20:53:51 -0700924config CMD_DEMO
925 bool "demo - Demonstration commands for driver model"
926 depends on DM
927 help
928 Provides a 'demo' command which can be used to play around with
929 driver model. To use this properly you will need to enable one or
930 both of the demo devices (DM_DEMO_SHAPE and DM_DEMO_SIMPLE).
931 Otherwise you will always get an empty list of devices. The demo
932 devices are defined in the sandbox device tree, so the easiest
933 option is to use sandbox and pass the -d point to sandbox's
934 u-boot.dtb file.
935
Simon Glass0c19b4d2017-08-04 16:34:28 -0600936config CMD_DFU
937 bool "dfu"
Marek Vasut0f44d332018-02-16 16:41:17 +0100938 select DFU
Simon Glass0c19b4d2017-08-04 16:34:28 -0600939 help
940 Enables the command "dfu" which is used to have U-Boot create a DFU
Simon Glass00fd59d2017-08-04 16:35:06 -0600941 class device via USB. This command requires that the "dfu_alt_info"
942 environment variable be set and define the alt settings to expose to
943 the host.
Simon Glass0c19b4d2017-08-04 16:34:28 -0600944
945config CMD_DM
946 bool "dm - Access to driver model information"
947 depends on DM
Simon Glass0c19b4d2017-08-04 16:34:28 -0600948 help
949 Provides access to driver model data structures and information,
950 such as a list of devices, list of uclasses and the state of each
951 device (e.g. activated). This is not required for operation, but
952 can be useful to see the state of driver model for debugging or
953 interest.
954
Alex Kiernan312a10f2018-05-29 15:30:39 +0000955config CMD_FASTBOOT
956 bool "fastboot - Android fastboot support"
957 depends on FASTBOOT
958 help
959 This enables the command "fastboot" which enables the Android
960 fastboot mode for the platform. Fastboot is a protocol for
961 downloading images, flashing and device control used on
Alex Kiernanf73a7df2018-05-29 15:30:53 +0000962 Android devices. Fastboot requires either the network stack
963 enabled or support for acting as a USB device.
Alex Kiernan312a10f2018-05-29 15:30:39 +0000964
Sam Protsenko586a1bf2020-01-24 17:53:44 +0200965 See doc/android/fastboot.rst for more information.
Alex Kiernan312a10f2018-05-29 15:30:39 +0000966
Simon Glass0c19b4d2017-08-04 16:34:28 -0600967config CMD_FLASH
968 bool "flinfo, erase, protect"
969 default y
Miquel Raynalff102c52019-10-25 19:39:30 +0200970 depends on MTD || FLASH_CFI_DRIVER || MTD_NOR_FLASH
Simon Glass0c19b4d2017-08-04 16:34:28 -0600971 help
972 NOR flash support.
973 flinfo - print FLASH memory information
974 erase - FLASH memory
975 protect - enable or disable FLASH write protection
976
977config CMD_FPGA
978 bool "fpga"
Tuomas Tynkkynena4fa8112018-01-27 20:28:40 +0200979 depends on FPGA
Simon Glass0c19b4d2017-08-04 16:34:28 -0600980 default y
981 help
982 FPGA support.
983
984config CMD_FPGA_LOADBP
985 bool "fpga loadbp - load partial bitstream (Xilinx only)"
986 depends on CMD_FPGA
987 help
988 Supports loading an FPGA device from a bitstream buffer containing
989 a partial bitstream.
990
991config CMD_FPGA_LOADFS
992 bool "fpga loadfs - load bitstream from FAT filesystem (Xilinx only)"
993 depends on CMD_FPGA
994 help
995 Supports loading an FPGA device from a FAT filesystem.
996
997config CMD_FPGA_LOADMK
998 bool "fpga loadmk - load bitstream from image"
999 depends on CMD_FPGA
1000 help
1001 Supports loading an FPGA device from a image generated by mkimage.
1002
1003config CMD_FPGA_LOADP
1004 bool "fpga loadp - load partial bitstream"
1005 depends on CMD_FPGA
1006 help
1007 Supports loading an FPGA device from a bitstream buffer containing
1008 a partial bitstream.
1009
Siva Durga Prasad Paladugucedd48e2018-05-31 15:10:22 +05301010config CMD_FPGA_LOAD_SECURE
1011 bool "fpga loads - loads secure bitstreams (Xilinx only)"
1012 depends on CMD_FPGA
1013 help
1014 Enables the fpga loads command which is used to load secure
1015 (authenticated or encrypted or both) bitstreams on to FPGA.
1016
Simon Glass0c19b4d2017-08-04 16:34:28 -06001017config CMD_FPGAD
1018 bool "fpgad - dump FPGA registers"
1019 help
1020 (legacy, needs conversion to driver model)
1021 Provides a way to dump FPGA registers by calling the board-specific
1022 fpga_get_reg() function. This functions similarly to the 'md'
1023 command.
1024
1025config CMD_FUSE
1026 bool "fuse - support for the fuse subssystem"
1027 help
1028 (deprecated - needs conversion to driver model)
1029 This allows reading, sensing, programming or overriding fuses
1030 which control the behaviour of the device. The command uses the
1031 fuse_...() API.
1032
1033config CMD_GPIO
1034 bool "gpio"
1035 help
1036 GPIO support.
1037
Diego Rondinidd2b8c12022-04-11 12:02:09 +02001038config CMD_GPIO_READ
1039 bool "gpio read - save GPIO value to variable"
1040 depends on CMD_GPIO
1041 help
1042 Enables the 'gpio read' command that saves the value
1043 of a GPIO pin to a variable.
1044
Pragnesh Patel9e9a5302020-12-22 11:30:05 +05301045config CMD_PWM
1046 bool "pwm"
1047 depends on DM_PWM
1048 help
1049 Control PWM channels, this allows invert/config/enable/disable PWM channels.
1050
Simon Glass0c19b4d2017-08-04 16:34:28 -06001051config CMD_GPT
1052 bool "GPT (GUID Partition Table) command"
Simon Glass0c19b4d2017-08-04 16:34:28 -06001053 select EFI_PARTITION
Adam Ford1811a922018-02-06 12:43:56 -06001054 select HAVE_BLOCK_DEVICE
Michal Simek5ed063d2018-07-23 15:55:13 +02001055 select PARTITION_UUIDS
Maxime Ripard47738ac2017-08-24 11:52:32 +02001056 imply RANDOM_UUID
Simon Glass0c19b4d2017-08-04 16:34:28 -06001057 help
1058 Enable the 'gpt' command to ready and write GPT style partition
1059 tables.
1060
Maxime Ripard47738ac2017-08-24 11:52:32 +02001061config RANDOM_UUID
1062 bool "GPT Random UUID generation"
Adam Forda451bc22018-02-06 12:14:28 -06001063 select LIB_UUID
Maxime Ripard47738ac2017-08-24 11:52:32 +02001064 help
1065 Enable the generation of partitions with random UUIDs if none
1066 are provided.
1067
Simon Glass0c19b4d2017-08-04 16:34:28 -06001068config CMD_GPT_RENAME
1069 bool "GPT partition renaming commands"
1070 depends on CMD_GPT
1071 help
1072 Enables the 'gpt' command to interchange names on two GPT
1073 partitions via the 'gpt swap' command or to rename single
1074 partitions via the 'rename' command.
1075
Simon Glass75eb9972017-05-17 03:25:29 -06001076config CMD_IDE
1077 bool "ide - Support for IDE drivers"
Simon Glassfc843a02017-05-17 03:25:30 -06001078 select IDE
Simon Glass75eb9972017-05-17 03:25:29 -06001079 help
1080 Provides an 'ide' command which allows accessing the IDE drive,
Vagrant Cascadian1107b062021-12-21 13:06:56 -08001081 resetting the IDE interface, printing the partition table and
Simon Glass75eb9972017-05-17 03:25:29 -06001082 geting device info. It also enables the 'diskboot' command which
1083 permits booting from an IDE drive.
1084
Simon Glass594e8d12017-05-17 03:25:34 -06001085config CMD_IO
1086 bool "io - Support for performing I/O accesses"
1087 help
1088 Provides an 'iod' command to display I/O space and an 'iow' command
1089 to write values to the I/O space. This can be useful for manually
1090 checking the state of devices during boot when debugging device
1091 drivers, etc.
1092
Simon Glass7d0f5c12017-05-17 03:25:36 -06001093config CMD_IOTRACE
1094 bool "iotrace - Support for tracing I/O activity"
1095 help
1096 Provides an 'iotrace' command which supports recording I/O reads and
1097 writes in a trace buffer in memory . It also maintains a checksum
1098 of the trace records (even if space is exhausted) so that the
1099 sequence of I/O accesses can be verified.
1100
1101 When debugging drivers it is useful to see what I/O accesses were
1102 done and in what order.
1103
1104 Even if the individual accesses are of little interest it can be
1105 useful to verify that the access pattern is consistent each time
1106 an operation is performed. In this case a checksum can be used to
1107 characterise the operation of a driver. The checksum can be compared
1108 across different runs of the operation to verify that the driver is
1109 working properly.
1110
1111 In particular, when performing major refactoring of the driver, where
1112 the access pattern should not change, the checksum provides assurance
1113 that the refactoring work has not broken the driver.
1114
1115 This works by sneaking into the io.h heder for an architecture and
1116 redirecting I/O accesses through iotrace's tracing mechanism.
1117
1118 For now no commands are provided to examine the trace buffer. The
1119 format is fairly simple, so 'md' is a reasonable substitute.
1120
1121 Note: The checksum feature is only useful for I/O regions where the
1122 contents do not change outside of software control. Where this is not
1123 suitable you can fall back to manually comparing the addresses. It
1124 might be useful to enhance tracing to only checksum the accesses and
1125 not the data read/written.
1126
Simon Glass0c19b4d2017-08-04 16:34:28 -06001127config CMD_I2C
1128 bool "i2c"
1129 help
1130 I2C support.
1131
Eugen Hristevd05266f2018-09-18 10:35:33 +03001132config CMD_W1
1133 depends on W1
1134 default y if W1
1135 bool "w1 - Support for Dallas 1-Wire protocol"
1136 help
1137 Dallas 1-wire protocol support
1138
Simon Glass72a8cf82016-01-17 20:53:51 -07001139config CMD_LOADB
1140 bool "loadb"
1141 default y
1142 help
1143 Load a binary file over serial line.
1144
1145config CMD_LOADS
1146 bool "loads"
1147 default y
1148 help
1149 Load an S-Record file over serial line
1150
Niel Fouriee3697902020-03-30 17:22:58 +02001151config CMD_LSBLK
1152 depends on BLK
1153 bool "lsblk - list block drivers and devices"
1154 help
1155 Print list of available block device drivers, and for each, the list
1156 of known block devices.
1157
Marek Szyprowski750c5432020-12-23 13:55:15 +01001158config CMD_MBR
1159 bool "MBR (Master Boot Record) command"
1160 select DOS_PARTITION
1161 select HAVE_BLOCK_DEVICE
1162 help
1163 Enable the 'mbr' command to ready and write MBR (Master Boot Record)
1164 style partition tables.
1165
Bin Meng3bc0db12020-10-14 14:34:52 +08001166config CMD_MISC
1167 bool "misc"
1168 depends on MISC
1169 help
1170 Enable the command "misc" for accessing miscellaneous devices with
1171 a MISC uclass driver. The command provides listing all MISC devices
1172 as well as read and write functionalities via their drivers.
1173
Dinh Nguyenab8243e2016-04-21 09:05:23 -05001174config CMD_MMC
1175 bool "mmc"
Heinrich Schuchardtec611872021-03-27 11:43:54 +01001176 depends on MMC
Dinh Nguyenab8243e2016-04-21 09:05:23 -05001177 help
1178 MMC memory mapped support.
1179
Heinrich Schuchardt453d2132020-03-31 17:39:28 +00001180if CMD_MMC
1181
1182config CMD_BKOPS_ENABLE
1183 bool "mmc bkops enable"
1184 depends on CMD_MMC
Heinrich Schuchardt453d2132020-03-31 17:39:28 +00001185 help
1186 Enable command for setting manual background operations handshake
1187 on a eMMC device. The feature is optionally available on eMMC devices
1188 conforming to standard >= 4.41.
1189
Alex Kiernan5a7b11e2018-05-08 04:43:31 +00001190config CMD_MMC_RPMB
1191 bool "Enable support for RPMB in the mmc command"
Heinrich Schuchardt453d2132020-03-31 17:39:28 +00001192 depends on SUPPORT_EMMC_RPMB
Alex Kiernan5a7b11e2018-05-08 04:43:31 +00001193 help
1194 Enable the commands for reading, writing and programming the
1195 key for the Replay Protection Memory Block partition in eMMC.
1196
Alex Kiernanc232d142018-05-29 15:30:52 +00001197config CMD_MMC_SWRITE
1198 bool "mmc swrite"
Heinrich Schuchardt453d2132020-03-31 17:39:28 +00001199 depends on MMC_WRITE
Alex Kiernanc232d142018-05-29 15:30:52 +00001200 select IMAGE_SPARSE
1201 help
1202 Enable support for the "mmc swrite" command to write Android sparse
1203 images to eMMC.
1204
Heinrich Schuchardt453d2132020-03-31 17:39:28 +00001205endif
1206
John Chau4a4830c2020-07-02 12:01:21 +08001207config CMD_CLONE
1208 bool "clone"
1209 depends on BLK
1210 help
1211 Enable storage cloning over block devices, useful for
1212 initial flashing by external block device without network
1213 or usb support.
1214
Ruchika Guptabcc6c572020-10-23 13:39:33 +05301215config CMD_OPTEE_RPMB
1216 bool "Enable read/write support on RPMB via OPTEE"
1217 depends on SUPPORT_EMMC_RPMB && OPTEE
1218 help
1219 Enable the commands for reading, writing persistent named values
1220 in the Replay Protection Memory Block partition in eMMC by
1221 using Persistent Objects in OPTEE
1222
Miquel Raynal5db66b32018-09-29 12:58:28 +02001223config CMD_MTD
1224 bool "mtd"
Miquel Raynalff102c52019-10-25 19:39:30 +02001225 depends on MTD
Miquel Raynal5db66b32018-09-29 12:58:28 +02001226 select MTD_PARTITIONS
1227 help
1228 MTD commands support.
1229
Pratyush Yadav05115ab2020-10-16 16:16:35 +05301230config CMD_MUX
1231 bool "mux"
1232 depends on MULTIPLEXER
1233 help
1234 List, select, and deselect mux controllers on the fly.
1235
Simon Glass72a8cf82016-01-17 20:53:51 -07001236config CMD_NAND
1237 bool "nand"
Maxime Ripard522c2822017-03-03 15:13:30 +01001238 default y if NAND_SUNXI
Miquel Raynalff102c52019-10-25 19:39:30 +02001239 depends on MTD_RAW_NAND
Simon Glass72a8cf82016-01-17 20:53:51 -07001240 help
1241 NAND support.
1242
Boris Brezillone915d202017-02-27 18:22:07 +01001243if CMD_NAND
1244config CMD_NAND_TRIMFFS
1245 bool "nand write.trimffs"
Hans de Goeded482a8d2017-02-27 18:22:10 +01001246 default y if ARCH_SUNXI
Boris Brezillone915d202017-02-27 18:22:07 +01001247 help
1248 Allows one to skip empty pages when flashing something on a NAND.
1249
1250config CMD_NAND_LOCK_UNLOCK
1251 bool "nand lock/unlock"
1252 help
1253 NAND locking support.
1254
1255config CMD_NAND_TORTURE
1256 bool "nand torture"
1257 help
1258 NAND torture support.
1259
1260endif # CMD_NAND
1261
Zhikang Zhang0adc38b2017-08-03 02:30:59 -07001262config CMD_NVME
1263 bool "nvme"
1264 depends on NVME
1265 default y if NVME
1266 help
1267 NVM Express device support
1268
Simon Glass978f0852017-08-04 16:34:31 -06001269config CMD_ONENAND
1270 bool "onenand - access to onenand device"
Miquel Raynalff102c52019-10-25 19:39:30 +02001271 depends on MTD
Simon Glass978f0852017-08-04 16:34:31 -06001272 help
1273 OneNAND is a brand of NAND ('Not AND' gate) flash which provides
1274 various useful features. This command allows reading, writing,
1275 and erasing blocks. It allso provides a way to show and change
1276 bad blocks, and test the device.
1277
Mario Six3bf65cb2018-09-27 09:19:34 +02001278config CMD_OSD
1279 bool "osd"
1280 help
1281 Enable the 'osd' command which allows to query information from and
1282 write text data to a on-screen display (OSD) device; a virtual device
1283 associated with a display capable of displaying a text overlay on the
1284 display it's associated with..
1285
Patrick Delaunayb331cd62017-01-27 11:00:42 +01001286config CMD_PART
1287 bool "part"
Adam Ford1811a922018-02-06 12:43:56 -06001288 select HAVE_BLOCK_DEVICE
Michal Simek5ed063d2018-07-23 15:55:13 +02001289 select PARTITION_UUIDS
Patrick Delaunayb331cd62017-01-27 11:00:42 +01001290 help
1291 Read and display information about the partition table on
1292 various media.
1293
Simon Glass6500ec72017-08-04 16:34:34 -06001294config CMD_PCI
1295 bool "pci - Access PCI devices"
1296 help
1297 Provide access to PCI (Peripheral Interconnect Bus), a type of bus
1298 used on some devices to allow the CPU to communicate with its
1299 peripherals. Sub-commands allow bus enumeration, displaying and
1300 changing configuration space and a few other features.
1301
Patrice Chotardd5a83132018-10-24 14:10:17 +02001302config CMD_PINMUX
1303 bool "pinmux - show pins muxing"
Marek Behúna70abcf2021-02-09 21:23:47 +01001304 depends on PINCTRL
Patrice Chotardd5a83132018-10-24 14:10:17 +02001305 default y if PINCTRL
1306 help
1307 Parse all available pin-controllers and show pins muxing. This
1308 is useful for debug purpoer to check the pin muxing and to know if
1309 a pin is configured as a GPIO or as an alternate function.
1310
Adam Ford577c40a2018-09-09 07:05:57 -05001311config CMD_POWEROFF
1312 bool "poweroff"
1313 help
1314 Poweroff/Shutdown the system
1315
Simon Glassb75dfd22017-08-04 16:34:39 -06001316config CMD_READ
1317 bool "read - Read binary data from a partition"
1318 help
1319 Provides low-level access to the data in a partition.
1320
Simon Glass72a8cf82016-01-17 20:53:51 -07001321config CMD_REMOTEPROC
1322 bool "remoteproc"
1323 depends on REMOTEPROC
1324 help
1325 Support for Remote Processor control
1326
Simon Glass3bf926c2017-06-14 21:28:24 -06001327config CMD_SATA
1328 bool "sata - Access SATA subsystem"
Simon Glass10e40d52017-06-14 21:28:25 -06001329 select SATA
Simon Glass3bf926c2017-06-14 21:28:24 -06001330 help
1331 SATA (Serial Advanced Technology Attachment) is a serial bus
1332 standard for connecting to hard drives and other storage devices.
1333 This command provides information about attached devices and allows
1334 reading, writing and other operations.
1335
1336 SATA replaces PATA (originally just ATA), which stands for Parallel AT
1337 Attachment, where AT refers to an IBM AT (Advanced Technology)
1338 computer released in 1984.
1339
Simon Glass15dc63d2017-08-04 16:34:43 -06001340config CMD_SAVES
1341 bool "saves - Save a file over serial in S-Record format"
1342 help
1343 Provides a way to save a binary file using the Motorola S-Record
1344 format over the serial line.
1345
Heinrich Schuchardt0c3fecd2018-02-14 08:05:44 +01001346config CMD_SCSI
1347 bool "scsi - Access to SCSI devices"
1348 default y if SCSI
1349 help
1350 This provides a 'scsi' command which provides access to SCSI (Small
1351 Computer System Interface) devices. The command provides a way to
1352 scan the bus, reset the bus, read and write data and get information
1353 about devices.
1354
Simon Glassefce2442017-08-04 16:34:45 -06001355config CMD_SDRAM
1356 bool "sdram - Print SDRAM configuration information"
1357 help
1358 Provides information about attached SDRAM. This assumed that the
1359 SDRAM has an EEPROM with information that can be read using the
1360 I2C bus. This is only available on some boards.
1361
Simon Glass0c19b4d2017-08-04 16:34:28 -06001362config CMD_SF
1363 bool "sf"
Tom Rinia4298dd2019-05-29 17:01:28 -04001364 depends on DM_SPI_FLASH || SPI_FLASH
Jagan Tekic2af7fb2019-10-16 17:59:42 +05301365 default y if DM_SPI_FLASH
Simon Glass0c19b4d2017-08-04 16:34:28 -06001366 help
1367 SPI Flash support
1368
Simon Glass719d36e2017-08-04 16:34:46 -06001369config CMD_SF_TEST
1370 bool "sf test - Allow testing of SPI flash"
Tom Rinia4298dd2019-05-29 17:01:28 -04001371 depends on CMD_SF
Simon Glass719d36e2017-08-04 16:34:46 -06001372 help
1373 Provides a way to test that SPI flash is working correctly. The
1374 test is destructive, in that an area of SPI flash must be provided
1375 for the test to use. Performance information is also provided,
1376 measuring the performance of reading, writing and erasing in
1377 Mbps (Million Bits Per Second). This value should approximately
1378 equal the SPI bus speed for a single-bit-wide SPI bus, assuming
1379 everything is working properly.
1380
Simon Glass0c19b4d2017-08-04 16:34:28 -06001381config CMD_SPI
Patrick Delaunayc95e6322019-02-27 15:20:37 +01001382 bool "sspi - Command to access spi device"
Tom Rinia4298dd2019-05-29 17:01:28 -04001383 depends on SPI
Simon Glass0c19b4d2017-08-04 16:34:28 -06001384 help
1385 SPI utility command.
1386
Patrick Delaunayc95e6322019-02-27 15:20:37 +01001387config DEFAULT_SPI_BUS
1388 int "default spi bus used by sspi command"
1389 depends on CMD_SPI
1390 default 0
1391
1392config DEFAULT_SPI_MODE
1393 hex "default spi mode used by sspi command (see include/spi.h)"
1394 depends on CMD_SPI
1395 default 0
1396
Simon Glass5605aa82017-08-04 16:35:00 -06001397config CMD_TSI148
1398 bool "tsi148 - Command to access tsi148 device"
1399 help
1400 This provides various sub-commands to initialise and configure the
1401 Turndra tsi148 device. See the command help for full details.
1402
Faiz Abbasa539c8b2019-10-15 18:24:40 +05301403config CMD_UFS
1404 bool "Enable UFS - Universal Flash Subsystem commands"
1405 depends on UFS
1406 help
1407 "This provides commands to initialise and configure universal flash
1408 subsystem devices"
1409
Simon Glass2a242e32017-08-04 16:35:01 -06001410config CMD_UNIVERSE
1411 bool "universe - Command to set up the Turndra Universe controller"
1412 help
1413 This allows setting up the VMEbus provided by this controller.
1414 See the command help for full details.
1415
Simon Glass0c19b4d2017-08-04 16:34:28 -06001416config CMD_USB
1417 bool "usb"
Tom Rinie8d3eaa2021-07-09 10:11:55 -04001418 depends on USB_HOST
Adam Ford1811a922018-02-06 12:43:56 -06001419 select HAVE_BLOCK_DEVICE
Simon Glass0c19b4d2017-08-04 16:34:28 -06001420 help
1421 USB support.
1422
Stefan Agner2f005692017-08-16 11:00:53 -07001423config CMD_USB_SDP
1424 bool "sdp"
1425 select USB_FUNCTION_SDP
1426 help
1427 Enables the command "sdp" which is used to have U-Boot emulating the
1428 Serial Download Protocol (SDP) via USB.
Michal Simek6e7bdde2018-07-23 15:55:12 +02001429
Eddie Cai453c95e2017-12-15 08:17:11 +08001430config CMD_ROCKUSB
1431 bool "rockusb"
1432 depends on USB_FUNCTION_ROCKUSB
1433 help
Michal Simek6e7bdde2018-07-23 15:55:12 +02001434 Rockusb protocol is widely used by Rockchip SoC based devices. It can
Eddie Cai453c95e2017-12-15 08:17:11 +08001435 read/write info, image to/from devices. This enable rockusb command
1436 support to communication with rockusb device. for more detail about
1437 this command, please read doc/README.rockusb.
Stefan Agner2f005692017-08-16 11:00:53 -07001438
Simon Glass0c19b4d2017-08-04 16:34:28 -06001439config CMD_USB_MASS_STORAGE
1440 bool "UMS usb mass storage"
Tom Rini123dc512021-05-22 08:47:16 -04001441 depends on USB_GADGET_DOWNLOAD
Lukasz Majewskie4d46042018-01-29 19:28:02 +01001442 select USB_FUNCTION_MASS_STORAGE
Patrick Delaunay6b8d9c92021-06-04 18:51:46 +02001443 depends on BLK && USB_GADGET
Simon Glass0c19b4d2017-08-04 16:34:28 -06001444 help
Patrick Delaunay6b8d9c92021-06-04 18:51:46 +02001445 Enables the command "ums" and the USB mass storage support to the
1446 export a block device: U-Boot, the USB device, acts as a simple
1447 external hard drive plugged on the host USB port.
Simon Glass0c19b4d2017-08-04 16:34:28 -06001448
Anastasiia Lukianenko722bc5b2020-08-06 12:42:55 +03001449config CMD_PVBLOCK
1450 bool "Xen para-virtualized block device"
1451 depends on XEN
1452 select PVBLOCK
1453 help
1454 Xen para-virtualized block device support
1455
Tuomas Tynkkynen78e12902018-10-15 02:21:12 -07001456config CMD_VIRTIO
1457 bool "virtio"
1458 depends on VIRTIO
Bin Meng05173ec2021-02-25 17:22:45 +08001459 depends on HAVE_BLOCK_DEVICE
Tuomas Tynkkynen78e12902018-10-15 02:21:12 -07001460 default y if VIRTIO
1461 help
1462 VirtIO block device support
1463
Michael Walle82a00be2019-04-06 02:24:02 +02001464config CMD_WDT
1465 bool "wdt"
1466 depends on WDT
1467 help
1468 This provides commands to control the watchdog timer devices.
1469
Mario Six37c4a5f2018-08-09 14:51:21 +02001470config CMD_AXI
1471 bool "axi"
1472 depends on AXI
1473 help
1474 Enable the command "axi" for accessing AXI (Advanced eXtensible
1475 Interface) busses, a on-chip interconnect specification for managing
1476 functional blocks in SoC designs, which is also often used in designs
1477 involving FPGAs (e.g. communication with IP cores in Xilinx FPGAs).
Simon Glass72a8cf82016-01-17 20:53:51 -07001478endmenu
1479
1480
1481menu "Shell scripting commands"
1482
1483config CMD_ECHO
1484 bool "echo"
1485 default y
1486 help
1487 Echo args to console
1488
1489config CMD_ITEST
1490 bool "itest"
1491 default y
1492 help
1493 Return true/false on integer compare.
1494
1495config CMD_SOURCE
1496 bool "source"
1497 default y
1498 help
1499 Run script from memory
1500
1501config CMD_SETEXPR
1502 bool "setexpr"
1503 default y
1504 help
1505 Evaluate boolean and math expressions and store the result in an env
1506 variable.
1507 Also supports loading the value at a memory location into a variable.
1508 If CONFIG_REGEX is enabled, setexpr also supports a gsub function.
1509
Roland Gaudigf4f8d8b2021-07-23 12:29:21 +00001510config CMD_SETEXPR_FMT
1511 bool "setexpr_fmt"
Roland Gaudigf4f8d8b2021-07-23 12:29:21 +00001512 depends on CMD_SETEXPR
1513 help
1514 Evaluate format string expression and store result in an environment
1515 variable.
1516
Simon Glass72a8cf82016-01-17 20:53:51 -07001517endmenu
1518
Ruslan Trofymenko17030c72019-07-05 15:37:33 +03001519menu "Android support commands"
1520
1521config CMD_AB_SELECT
1522 bool "ab_select"
Ruslan Trofymenko17030c72019-07-05 15:37:33 +03001523 depends on ANDROID_AB
1524 help
1525 On Android devices with more than one boot slot (multiple copies of
1526 the kernel and system images) this provides a command to select which
1527 slot should be used to boot from and register the boot attempt. This
1528 is used by the new A/B update model where one slot is updated in the
1529 background while running from the other slot.
1530
1531endmenu
1532
Michal Simek3b3ea2c2018-02-26 16:01:02 +01001533if NET
1534
Joe Hershbergerd7a45ea2018-04-13 15:26:30 -05001535menuconfig CMD_NET
1536 bool "Network commands"
1537 default y
Adam Fordd7869b212018-07-20 23:03:57 -05001538 imply NETDEVICES
Joe Hershbergerd7a45ea2018-04-13 15:26:30 -05001539
1540if CMD_NET
1541
1542config CMD_BOOTP
1543 bool "bootp"
Simon Glass72a8cf82016-01-17 20:53:51 -07001544 default y
1545 help
Simon Glass72a8cf82016-01-17 20:53:51 -07001546 bootp - boot image via network using BOOTP/TFTP protocol
Joe Hershbergerd7a45ea2018-04-13 15:26:30 -05001547
Joe Hershbergere88b2562018-04-13 15:26:33 -05001548config CMD_DHCP
1549 bool "dhcp"
1550 depends on CMD_BOOTP
1551 help
1552 Boot image via network using DHCP/TFTP protocol
1553
Tom Rinia542e432022-02-25 11:19:50 -05001554config BOOTP_MAY_FAIL
1555 bool "Allow for the BOOTP/DHCP server to not be found"
1556 depends on CMD_BOOTP
1557 help
1558 If the DHCP server is not found after the configured retry count, the
1559 call will fail instead of starting over. This can be used to fail
1560 over to Link-local IP address configuration if the DHCP server is not
1561 available.
1562
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001563config BOOTP_BOOTPATH
Joe Hershberger8df69d92018-04-13 15:26:34 -05001564 bool "Request & store 'rootpath' from BOOTP/DHCP server"
Joe Hershberger3dfbc532018-04-13 15:26:37 -05001565 default y
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001566 depends on CMD_BOOTP
Joe Hershberger8df69d92018-04-13 15:26:34 -05001567 help
1568 Even though the config is called BOOTP_BOOTPATH, it stores the
1569 path in the variable 'rootpath'.
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001570
Tom Rinia542e432022-02-25 11:19:50 -05001571config BOOTP_VENDOREX
1572 bool "Support vendor extensions from BOOTP/DHCP server"
1573 depends on CMD_BOOTP
1574
1575config BOOTP_BOOTFILESIZE
1576 bool "Request & store 'bootfilesize' from BOOTP/DHCP server"
1577 depends on CMD_BOOTP
1578
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001579config BOOTP_DNS
Joe Hershberger8df69d92018-04-13 15:26:34 -05001580 bool "Request & store 'dnsip' from BOOTP/DHCP server"
Joe Hershberger3dfbc532018-04-13 15:26:37 -05001581 default y
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001582 depends on CMD_BOOTP
Joe Hershberger8df69d92018-04-13 15:26:34 -05001583 help
1584 The primary DNS server is stored as 'dnsip'. If two servers are
1585 returned, you must set BOOTP_DNS2 to store that second server IP
1586 also.
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001587
Joe Hershberger80449c02018-04-13 15:26:35 -05001588config BOOTP_DNS2
1589 bool "Store 'dnsip2' from BOOTP/DHCP server"
1590 depends on BOOTP_DNS
1591 help
1592 If a DHCP client requests the DNS server IP from a DHCP server,
1593 it is possible that more than one DNS serverip is offered to the
1594 client. If CONFIG_BOOTP_DNS2 is enabled, the secondary DNS
1595 server IP will be stored in the additional environment
1596 variable "dnsip2". The first DNS serverip is always
1597 stored in the variable "dnsip", when BOOTP_DNS is defined.
1598
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001599config BOOTP_GATEWAY
Joe Hershberger8df69d92018-04-13 15:26:34 -05001600 bool "Request & store 'gatewayip' from BOOTP/DHCP server"
Joe Hershberger3dfbc532018-04-13 15:26:37 -05001601 default y
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001602 depends on CMD_BOOTP
1603
1604config BOOTP_HOSTNAME
Joe Hershberger8df69d92018-04-13 15:26:34 -05001605 bool "Request & store 'hostname' from BOOTP/DHCP server"
Joe Hershberger3dfbc532018-04-13 15:26:37 -05001606 default y
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001607 depends on CMD_BOOTP
Joe Hershberger8df69d92018-04-13 15:26:34 -05001608 help
1609 The name may or may not be qualified with the local domain name.
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001610
Alexander Grafbdce3402018-06-15 10:29:28 +02001611config BOOTP_PREFER_SERVERIP
1612 bool "serverip variable takes precedent over DHCP server IP."
1613 depends on CMD_BOOTP
1614 help
1615 By default a BOOTP/DHCP reply will overwrite the 'serverip' variable.
1616
1617 With this option enabled, the 'serverip' variable in the environment
1618 takes precedence over DHCP server IP and will only be set by the DHCP
1619 server if not already set in the environment.
1620
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001621config BOOTP_SUBNETMASK
Joe Hershberger8df69d92018-04-13 15:26:34 -05001622 bool "Request & store 'netmask' from BOOTP/DHCP server"
Joe Hershberger3dfbc532018-04-13 15:26:37 -05001623 default y
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001624 depends on CMD_BOOTP
1625
Tom Rinia542e432022-02-25 11:19:50 -05001626config BOOTP_NISDOMAIN
1627 bool "Request & store 'nisdomain' from BOOTP/DHCP server"
1628 depends on CMD_BOOTP
1629
Chris Packham9b23c732018-05-03 20:19:02 +12001630config BOOTP_NTPSERVER
1631 bool "Request & store 'ntpserverip' from BOOTP/DHCP server"
1632 depends on CMD_BOOTP
1633
Tom Rinia542e432022-02-25 11:19:50 -05001634config BOOTP_TIMEOFFSET
1635 bool "Request & store 'timeoffset' from BOOTP/DHCP server"
1636 depends on CMD_BOOTP && CMD_SNTP
1637
Ramon Fried3eaac632019-07-18 21:43:30 +03001638config CMD_PCAP
1639 bool "pcap capture"
1640 help
1641 Selecting this will allow capturing all Ethernet packets and store
1642 them in physical memory in a PCAP formated file,
1643 later to be analyzed by PCAP reader application (IE. WireShark).
1644
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001645config BOOTP_PXE
Joe Hershberger2b9f4862018-04-13 15:26:36 -05001646 bool "Send PXE client arch to BOOTP/DHCP server"
Joe Hershberger3dfbc532018-04-13 15:26:37 -05001647 default y
Joe Hershberger2b9f4862018-04-13 15:26:36 -05001648 depends on CMD_BOOTP && CMD_PXE
1649 help
1650 Supported for ARM, ARM64, and x86 for now.
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001651
1652config BOOTP_PXE_CLIENTARCH
1653 hex
Joe Hershberger2b9f4862018-04-13 15:26:36 -05001654 depends on BOOTP_PXE
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001655 default 0x16 if ARM64
1656 default 0x15 if ARM
1657 default 0 if X86
1658
1659config BOOTP_VCI_STRING
1660 string
1661 depends on CMD_BOOTP
Michal Simek4bbd6b12018-04-26 18:21:29 +05301662 default "U-Boot.armv7" if CPU_V7A || CPU_V7M || CPU_V7R
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001663 default "U-Boot.armv8" if ARM64
1664 default "U-Boot.arm" if ARM
1665 default "U-Boot"
1666
Joe Hershbergerd7a45ea2018-04-13 15:26:30 -05001667config CMD_TFTPBOOT
1668 bool "tftpboot"
1669 default y
1670 help
Simon Glass72a8cf82016-01-17 20:53:51 -07001671 tftpboot - boot image via network using TFTP protocol
1672
1673config CMD_TFTPPUT
1674 bool "tftp put"
Joe Hershbergerd7a45ea2018-04-13 15:26:30 -05001675 depends on CMD_TFTPBOOT
Simon Glass72a8cf82016-01-17 20:53:51 -07001676 help
1677 TFTP put command, for uploading files to a server
1678
1679config CMD_TFTPSRV
1680 bool "tftpsrv"
Joe Hershbergerd7a45ea2018-04-13 15:26:30 -05001681 depends on CMD_TFTPBOOT
Simon Glass72a8cf82016-01-17 20:53:51 -07001682 help
1683 Act as a TFTP server and boot the first received file
1684
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001685config NET_TFTP_VARS
1686 bool "Control TFTP timeout and count through environment"
1687 depends on CMD_TFTPBOOT
1688 default y
1689 help
1690 If set, allows controlling the TFTP timeout through the
1691 environment variable tftptimeout, and the TFTP maximum
1692 timeout count through the variable tftptimeoutcountmax.
1693 If unset, timeout and maximum are hard-defined as 1 second
1694 and 10 timouts per TFTP transfer.
1695
Simon Glass72a8cf82016-01-17 20:53:51 -07001696config CMD_RARP
1697 bool "rarpboot"
1698 help
1699 Boot image via network using RARP/TFTP protocol
1700
Simon Glass72a8cf82016-01-17 20:53:51 -07001701config CMD_NFS
1702 bool "nfs"
1703 default y
1704 help
1705 Boot image via network using NFS protocol.
1706
Tom Rinieeda7622022-03-11 09:12:05 -05001707config NFS_TIMEOUT
1708 int "Timeout in milliseconds for NFS mounts"
1709 depends on CMD_NFS
1710 default 2000
1711 help
1712 Timeout in milliseconds used in NFS protocol. If you encounter
1713 "ERROR: Cannot umount" in nfs command, try longer timeout such as
1714 10000.
1715
Dinh Nguyenab8243e2016-04-21 09:05:23 -05001716config CMD_MII
1717 bool "mii"
Ramon Fried7d9701d2019-09-13 18:25:03 +03001718 imply CMD_MDIO
Dinh Nguyenab8243e2016-04-21 09:05:23 -05001719 help
Ramon Fried7d9701d2019-09-13 18:25:03 +03001720 If set, allows 802.3(clause 22) MII Management functions interface access
1721 The management interface specified in Clause 22 provides
1722 a simple, two signal, serial interface to connect a
1723 Station Management entity and a managed PHY for providing access
1724 to management parameters and services.
1725 The interface is referred to as the MII management interface.
1726
Tom Rinicc386f12022-03-18 08:38:27 -04001727config MII_INIT
1728 bool "Call mii_init() in the mii command"
1729 depends on CMD_MII && (MPC8XX_FEC || FSLDMAFE || MCFFEC)
1730
Ramon Fried7d9701d2019-09-13 18:25:03 +03001731config CMD_MDIO
1732 bool "mdio"
1733 depends on PHYLIB
1734 help
1735 If set, allows Enable 802.3(clause 45) MDIO interface registers access
1736 The MDIO interface is orthogonal to the MII interface and extends
1737 it by adding access to more registers through indirect addressing.
Dinh Nguyenab8243e2016-04-21 09:05:23 -05001738
Simon Glass72a8cf82016-01-17 20:53:51 -07001739config CMD_PING
1740 bool "ping"
1741 help
1742 Send ICMP ECHO_REQUEST to network host
1743
1744config CMD_CDP
1745 bool "cdp"
1746 help
1747 Perform CDP network configuration
1748
1749config CMD_SNTP
1750 bool "sntp"
Philippe Reynes912ece42020-09-18 14:13:02 +02001751 select PROT_UDP
Simon Glass72a8cf82016-01-17 20:53:51 -07001752 help
1753 Synchronize RTC via network
1754
1755config CMD_DNS
1756 bool "dns"
1757 help
1758 Lookup the IP of a hostname
1759
1760config CMD_LINK_LOCAL
1761 bool "linklocal"
Joe Hershberger6f0dc0c2018-04-30 12:45:22 -05001762 select LIB_RAND
Simon Glass72a8cf82016-01-17 20:53:51 -07001763 help
1764 Acquire a network IP address using the link-local protocol
1765
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001766endif
1767
Simon Glassef072202017-05-17 03:25:17 -06001768config CMD_ETHSW
1769 bool "ethsw"
1770 help
1771 Allow control of L2 Ethernet switch commands. These are supported
1772 by the vsc9953 Ethernet driver at present. Sub-commands allow
1773 operations such as enabling / disabling a port and
1774 viewing/maintaining the filtering database (FDB)
1775
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001776config CMD_PXE
1777 bool "pxe"
1778 select MENU
1779 help
1780 Boot image via network using PXE protocol
Michal Simek3b3ea2c2018-02-26 16:01:02 +01001781
Lothar Feltend8970da2018-06-22 22:29:54 +02001782config CMD_WOL
1783 bool "wol"
1784 help
1785 Wait for wake-on-lan Magic Packet
1786
Joe Hershbergerd7a45ea2018-04-13 15:26:30 -05001787endif
Simon Glass72a8cf82016-01-17 20:53:51 -07001788
1789menu "Misc commands"
1790
Simon Glass0f710252017-04-26 22:27:55 -06001791config CMD_BMP
1792 bool "Enable 'bmp' command"
1793 depends on LCD || DM_VIDEO || VIDEO
1794 help
Andrius Å tikonas60a9aeb2019-09-23 22:43:41 +01001795 This provides a way to obtain information about a BMP-format image
Simon Glass0f710252017-04-26 22:27:55 -06001796 and to display it. BMP (which presumably stands for BitMaP) is a
1797 file format defined by Microsoft which supports images of various
1798 depths, formats and compression methods. Headers on the file
1799 determine the formats used. This command can be used by first loading
1800 the image into RAM, then using this command to look at it or display
1801 it.
1802
Alex Kiernanb11ed7d2018-05-12 05:49:47 +00001803config CMD_BOOTCOUNT
1804 bool "bootcount"
1805 depends on BOOTCOUNT_LIMIT
1806 help
1807 Enable the bootcount command, which allows interrogation and
1808 reset of the bootcounter.
1809
Simon Glass4893e342017-04-26 22:27:56 -06001810config CMD_BSP
1811 bool "Enable board-specific commands"
1812 help
1813 (deprecated: instead, please define a Kconfig option for each command)
1814
1815 Some boards have board-specific commands which are only enabled
1816 during developemnt and need to be turned off for production. This
1817 option provides a way to control this. The commands that are enabled
1818 vary depending on the board.
1819
Eric Nelsone40cf342016-03-28 10:05:44 -07001820config CMD_BLOCK_CACHE
1821 bool "blkcache - control and stats for block cache"
1822 depends on BLOCK_CACHE
1823 default y if BLOCK_CACHE
1824 help
1825 Enable the blkcache command, which can be used to control the
1826 operation of the cache functions.
1827 This is most useful when fine-tuning the operation of the cache
1828 during development, but also allows the cache to be disabled when
1829 it might hurt performance (e.g. when using the ums command).
1830
Philippe Reynes325141a2020-07-24 18:19:47 +02001831config CMD_BUTTON
1832 bool "button"
1833 depends on BUTTON
1834 default y if BUTTON
1835 help
1836 Enable the 'button' command which allows to get the status of
1837 buttons supported by the board. The buttonss can be listed with
1838 'button list' and state can be known with 'button <label>'.
1839 Any button drivers can be controlled with this command, e.g.
1840 button_gpio.
1841
Dinh Nguyenab8243e2016-04-21 09:05:23 -05001842config CMD_CACHE
1843 bool "icache or dcache"
1844 help
1845 Enable the "icache" and "dcache" commands
1846
Heinrich Schuchardt29cfc092018-09-07 19:43:11 +02001847config CMD_CONITRACE
1848 bool "conitrace - trace console input codes"
1849 help
1850 Enable the 'conitrace' command which displays the codes received
1851 from the console input as hexadecimal numbers.
1852
Anatolij Gustschin4e92e602018-12-01 10:47:20 +01001853config CMD_CLS
1854 bool "Enable clear screen command 'cls'"
Simon Glass1fa43ca2022-01-23 07:04:08 -07001855 depends on DM_VIDEO || LCD || VIDEO
Anatolij Gustschin4e92e602018-12-01 10:47:20 +01001856 default y if LCD
1857 help
1858 Enable the 'cls' command which clears the screen contents
1859 on video frame buffer.
1860
AKASHI Takahiro59df7e72019-02-25 15:54:38 +09001861config CMD_EFIDEBUG
1862 bool "efidebug - display/configure UEFI environment"
1863 depends on EFI_LOADER
Heinrich Schuchardt64b5ba42019-05-11 09:53:33 +02001864 select EFI_DEVICE_PATH_TO_TEXT
AKASHI Takahiro59df7e72019-02-25 15:54:38 +09001865 help
1866 Enable the 'efidebug' command which provides a subset of UEFI
1867 shell utility with simplified functionality. It will be useful
1868 particularly for managing boot parameters as well as examining
1869 various EFI status for debugging.
1870
Heinrich Schuchardtdab87882018-12-26 17:20:35 +01001871config CMD_EXCEPTION
1872 bool "exception - raise exception"
Heinrich Schuchardt3a5ec032020-11-12 00:29:57 +01001873 depends on ARM || RISCV || SANDBOX || X86
Heinrich Schuchardtdab87882018-12-26 17:20:35 +01001874 help
1875 Enable the 'exception' command which allows to raise an exception.
1876
Simon Glassffe20522017-04-10 11:34:59 -06001877config CMD_LED
1878 bool "led"
Jan Kiszka2ab6e742019-01-03 09:08:42 +01001879 depends on LED
Simon Glassffe20522017-04-10 11:34:59 -06001880 default y if LED
1881 help
1882 Enable the 'led' command which allows for control of LEDs supported
1883 by the board. The LEDs can be listed with 'led list' and controlled
1884 with led on/off/togle/blink. Any LED drivers can be controlled with
1885 this command, e.g. led_gpio.
1886
Chris Packhamc9032ce2017-04-29 15:20:28 +12001887config CMD_DATE
1888 bool "date"
1889 default y if DM_RTC
AKASHI Takahiro05429b62019-11-13 09:44:49 +09001890 select LIB_DATE
Chris Packhamc9032ce2017-04-29 15:20:28 +12001891 help
1892 Enable the 'date' command for getting/setting the time/date in RTC
1893 devices.
1894
Rasmus Villemoes803a8592020-07-06 22:01:15 +02001895config CMD_RTC
1896 bool "rtc"
1897 depends on DM_RTC
1898 help
1899 Enable the 'rtc' command for low-level access to RTC devices.
1900
Simon Glass72a8cf82016-01-17 20:53:51 -07001901config CMD_TIME
1902 bool "time"
1903 help
1904 Run commands and summarize execution time.
1905
Simon Glassd91a9d72017-05-17 03:25:23 -06001906config CMD_GETTIME
1907 bool "gettime - read elapsed time"
1908 help
1909 Enable the 'gettime' command which reads the elapsed time since
1910 U-Boot started running. This shows the time in seconds and
1911 milliseconds. See also the 'bootstage' command which provides more
1912 flexibility for boot timing.
1913
Heinrich Schuchardt4f24ac02019-12-24 22:17:37 +01001914config CMD_RNG
1915 bool "rng command"
1916 depends on DM_RNG
1917 select HEXDUMP
1918 help
1919 Print bytes from the hardware random number generator.
1920
Chris Morganfe3dde32021-08-25 11:22:57 -05001921config CMD_KASLRSEED
1922 bool "kaslrseed"
1923 depends on DM_RNG
1924 help
1925 Set the kaslr-seed in the chosen node with entropy provided by a
1926 hardware random number generator.
1927
Bin Meng16060852020-10-13 18:45:05 +08001928config CMD_SLEEP
Simon Glass72a8cf82016-01-17 20:53:51 -07001929 bool "sleep"
1930 default y
1931 help
1932 Delay execution for some time
1933
Ashok Reddy Soma480245c2022-01-17 10:16:50 +01001934config CMD_MP
1935 bool "support for multiprocessor commands"
1936 depends on MP
1937 default y
Siva Durga Prasad Paladugu0fd2290c2018-06-19 12:24:23 +02001938 help
Ashok Reddy Soma480245c2022-01-17 10:16:50 +01001939 This enables commands to bringup different processors
1940 in multiprocessor cases.
Siva Durga Prasad Paladugu0fd2290c2018-06-19 12:24:23 +02001941
Simon Glass72a8cf82016-01-17 20:53:51 -07001942config CMD_TIMER
1943 bool "timer"
1944 help
1945 Access the system timer.
1946
Simon Glass72a8cf82016-01-17 20:53:51 -07001947config CMD_SOUND
1948 bool "sound"
1949 depends on SOUND
1950 help
1951 This provides basic access to the U-Boot's sound support. The main
1952 feature is to play a beep.
1953
1954 sound init - set up sound system
1955 sound play - play a sound
1956
Patrice Chotard993c9122019-11-25 09:07:38 +01001957config CMD_SYSBOOT
1958 bool "sysboot"
1959 select MENU
1960 help
1961 Boot image via local extlinux.conf file
1962
Miao Yan18686592016-05-22 19:37:17 -07001963config CMD_QFW
Tom Rinidd6f3ab2016-05-06 10:40:22 -04001964 bool "qfw"
Miao Yanfcf5c042016-05-22 19:37:14 -07001965 select QFW
Tom Rinidd6f3ab2016-05-06 10:40:22 -04001966 help
1967 This provides access to the QEMU firmware interface. The main
1968 feature is to allow easy loading of files passed to qemu-system
1969 via -kernel / -initrd
Konstantin Porotchkinfa61ef62016-12-08 12:22:28 +02001970
Frédéric Danis9744d1a2020-03-20 10:59:22 +01001971config CMD_PSTORE
1972 bool "pstore"
1973 help
1974 This provides access to Linux PStore with Rammoops backend. The main
1975 feature is to allow to display or save PStore records.
1976
1977 See doc/pstore.rst for more information.
1978
1979if CMD_PSTORE
1980
1981config CMD_PSTORE_MEM_ADDR
1982 hex "Memory Address"
1983 depends on CMD_PSTORE
1984 help
1985 Base addr used for PStore ramoops memory, should be identical to
1986 ramoops.mem_address parameter used by kernel
1987
1988config CMD_PSTORE_MEM_SIZE
1989 hex "Memory size"
1990 depends on CMD_PSTORE
1991 default "0x10000"
1992 help
1993 Size of PStore ramoops memory, should be identical to ramoops.mem_size
1994 parameter used by kernel, a power of 2 and larger than the sum of the
1995 record sizes
1996
1997config CMD_PSTORE_RECORD_SIZE
1998 hex "Dump record size"
1999 depends on CMD_PSTORE
2000 default "0x1000"
2001 help
2002 Size of each dump done on oops/panic, should be identical to
2003 ramoops.record_size parameter used by kernel and a power of 2
2004 Must be non-zero
2005
2006config CMD_PSTORE_CONSOLE_SIZE
2007 hex "Kernel console log size"
2008 depends on CMD_PSTORE
2009 default "0x1000"
2010 help
2011 Size of kernel console log, should be identical to
2012 ramoops.console_size parameter used by kernel and a power of 2
2013 Must be non-zero
2014
2015config CMD_PSTORE_FTRACE_SIZE
2016 hex "FTrace log size"
2017 depends on CMD_PSTORE
2018 default "0x1000"
2019 help
2020 Size of ftrace log, should be identical to ramoops.ftrace_size
2021 parameter used by kernel and a power of 2
2022
2023config CMD_PSTORE_PMSG_SIZE
2024 hex "User space message log size"
2025 depends on CMD_PSTORE
2026 default "0x1000"
2027 help
2028 Size of user space message log, should be identical to
2029 ramoops.pmsg_size parameter used by kernel and a power of 2
2030
2031config CMD_PSTORE_ECC_SIZE
2032 int "ECC size"
2033 depends on CMD_PSTORE
2034 default "0"
2035 help
2036 if non-zero, the option enables ECC support and specifies ECC buffer
2037 size in bytes (1 is a special value, means 16 bytes ECC), should be
2038 identical to ramoops.ramoops_ecc parameter used by kernel
2039
2040endif
2041
Konstantin Porotchkinfa61ef62016-12-08 12:22:28 +02002042source "cmd/mvebu/Kconfig"
2043
Simon Glass3cef3b32017-08-04 16:34:55 -06002044config CMD_TERMINAL
2045 bool "terminal - provides a way to attach a serial terminal"
2046 help
2047 Provides a 'cu'-like serial terminal command. This can be used to
2048 access other serial ports from the system console. The terminal
2049 is very simple with no special processing of characters. As with
2050 cu, you can press ~. (tilde followed by period) to exit.
2051
Simon Glass1aa4e8d2017-08-04 16:35:02 -06002052config CMD_UUID
2053 bool "uuid, guid - generation of unique IDs"
Adam Forda451bc22018-02-06 12:14:28 -06002054 select LIB_UUID
Simon Glass1aa4e8d2017-08-04 16:35:02 -06002055 help
2056 This enables two commands:
2057
2058 uuid - generate random Universally Unique Identifier
2059 guid - generate Globally Unique Identifier based on random UUID
2060
2061 The two commands are very similar except for the endianness of the
2062 output.
2063
Simon Glass72a8cf82016-01-17 20:53:51 -07002064endmenu
2065
Lokesh Vutla5cd96612017-12-29 11:47:49 +05302066source "cmd/ti/Kconfig"
2067
Simon Glass72a8cf82016-01-17 20:53:51 -07002068config CMD_BOOTSTAGE
2069 bool "Enable the 'bootstage' command"
2070 depends on BOOTSTAGE
2071 help
2072 Add a 'bootstage' command which supports printing a report
2073 and un/stashing of bootstage data.
2074
2075menu "Power commands"
2076config CMD_PMIC
2077 bool "Enable Driver Model PMIC command"
2078 depends on DM_PMIC
2079 help
2080 This is the pmic command, based on a driver model pmic's API.
2081 Command features are unchanged:
2082 - list - list pmic devices
2083 - pmic dev <id> - show or [set] operating pmic device (NEW)
2084 - pmic dump - dump registers
2085 - pmic read address - read byte of register at address
2086 - pmic write address - write byte to register at address
2087 The only one change for this command is 'dev' subcommand.
2088
2089config CMD_REGULATOR
2090 bool "Enable Driver Model REGULATOR command"
2091 depends on DM_REGULATOR
2092 help
2093 This command is based on driver model regulator's API.
2094 User interface features:
2095 - list - list regulator devices
2096 - regulator dev <id> - show or [set] operating regulator device
2097 - regulator info - print constraints info
2098 - regulator status - print operating status
2099 - regulator value <val] <-f> - print/[set] voltage value [uV]
2100 - regulator current <val> - print/[set] current value [uA]
2101 - regulator mode <id> - print/[set] operating mode id
2102 - regulator enable - enable the regulator output
2103 - regulator disable - disable the regulator output
2104
2105 The '-f' (force) option can be used for set the value which exceeds
2106 the limits, which are found in device-tree and are kept in regulator's
Simon Glasscaa4daa2020-12-03 16:55:18 -07002107 uclass plat structure.
Simon Glass72a8cf82016-01-17 20:53:51 -07002108
2109endmenu
2110
2111menu "Security commands"
Simon Glassb1a873d2017-04-26 22:27:49 -06002112config CMD_AES
2113 bool "Enable the 'aes' command"
2114 select AES
2115 help
2116 This provides a means to encrypt and decrypt data using the AES
2117 (Advanced Encryption Standard). This algorithm uses a symetric key
2118 and is widely used as a streaming cipher. Different key lengths are
2119 supported by the algorithm but this command only supports 128 bits
2120 at present.
2121
Simon Glassc04b9b32017-04-26 22:27:53 -06002122config CMD_BLOB
2123 bool "Enable the 'blob' command"
Aymen Sghaier25324292021-03-25 17:30:27 +08002124 depends on !MX6ULL && !MX6SLL && !MX6SL
2125 select IMX_HAB if ARCH_MX6 || ARCH_MX7 || ARCH_MX7ULP || ARCH_IMX8M
Simon Glassc04b9b32017-04-26 22:27:53 -06002126 help
2127 This is used with the Freescale secure boot mechanism.
2128
2129 Freescale's SEC block has built-in Blob Protocol which provides
2130 a method for protecting user-defined data across system power
2131 cycles. SEC block protects data in a data structure called a Blob,
2132 which provides both confidentiality and integrity protection.
2133
2134 Encapsulating data as a blob
2135 Each time that the Blob Protocol is used to protect data, a
2136 different randomly generated key is used to encrypt the data.
2137 This random key is itself encrypted using a key which is derived
2138 from SoC's non-volatile secret key and a 16 bit Key identifier.
2139 The resulting encrypted key along with encrypted data is called a
2140 blob. The non-volatile secure key is available for use only during
2141 secure boot.
2142
2143 During decapsulation, the reverse process is performed to get back
2144 the original data.
2145
2146 Sub-commands:
Michal Simek6e7bdde2018-07-23 15:55:12 +02002147 blob enc - encapsulating data as a cryptgraphic blob
Simon Glassc04b9b32017-04-26 22:27:53 -06002148 blob dec - decapsulating cryptgraphic blob to get the data
2149
2150 Syntax:
2151
2152 blob enc src dst len km
2153
2154 Encapsulate and create blob of data $len bytes long
2155 at address $src and store the result at address $dst.
2156 $km is the 16 byte key modifier is also required for
2157 generation/use as key for cryptographic operation. Key
2158 modifier should be 16 byte long.
2159
2160 blob dec src dst len km
2161
2162 Decapsulate the blob of data at address $src and
2163 store result of $len byte at addr $dst.
2164 $km is the 16 byte key modifier is also required for
2165 generation/use as key for cryptographic operation. Key
2166 modifier should be 16 byte long.
2167
Simon Glass551c3932017-05-17 03:25:25 -06002168config CMD_HASH
2169 bool "Support 'hash' command"
Simon Glassd70f9192017-05-17 09:05:34 -06002170 select HASH
Simon Glass551c3932017-05-17 03:25:25 -06002171 help
2172 This provides a way to hash data in memory using various supported
2173 algorithms (such as SHA1, MD5, CRC32). The computed digest can be
2174 saved to memory or to an environment variable. It is also possible
2175 to verify a hash against data in memory.
2176
Michalis Pappas666028f2018-04-13 10:40:57 +03002177config CMD_HVC
2178 bool "Support the 'hvc' command"
2179 depends on ARM_SMCCC
2180 help
2181 Allows issuing Hypervisor Calls (HVCs). Mostly useful for
2182 development and testing.
2183
2184config CMD_SMC
2185 bool "Support the 'smc' command"
2186 depends on ARM_SMCCC
2187 help
2188 Allows issuing Secure Monitor Calls (SMCs). Mostly useful for
2189 development and testing.
2190
Daniel Thompson221a9492017-05-19 17:26:58 +01002191config HASH_VERIFY
2192 bool "hash -v"
2193 depends on CMD_HASH
2194 help
2195 Add -v option to verify data against a hash.
2196
Jorge Ramirez-Ortiz26839e52021-02-14 16:27:24 +01002197config CMD_SCP03
2198 bool "scp03 - SCP03 enable and rotate/provision operations"
2199 depends on SCP03
2200 help
2201 This command provides access to a Trusted Application
2202 running in a TEE to request Secure Channel Protocol 03
2203 (SCP03) enablement and/or rotation of its SCP03 keys.
2204
Miquel Raynal9f9ce3c2018-05-15 11:57:05 +02002205config CMD_TPM_V1
2206 bool
2207
2208config CMD_TPM_V2
2209 bool
2210
Simon Glass72a8cf82016-01-17 20:53:51 -07002211config CMD_TPM
2212 bool "Enable the 'tpm' command"
Miquel Raynal9f9ce3c2018-05-15 11:57:05 +02002213 depends on TPM_V1 || TPM_V2
2214 select CMD_TPM_V1 if TPM_V1
2215 select CMD_TPM_V2 if TPM_V2
Simon Glass72a8cf82016-01-17 20:53:51 -07002216 help
2217 This provides a means to talk to a TPM from the command line. A wide
2218 range of commands if provided - see 'tpm help' for details. The
2219 command requires a suitable TPM on your board and the correct driver
2220 must be enabled.
2221
Miquel Raynal9f9ce3c2018-05-15 11:57:05 +02002222if CMD_TPM
2223
Simon Glass72a8cf82016-01-17 20:53:51 -07002224config CMD_TPM_TEST
2225 bool "Enable the 'tpm test' command"
Miquel Raynal9f9ce3c2018-05-15 11:57:05 +02002226 depends on TPM_V1
Simon Glass72a8cf82016-01-17 20:53:51 -07002227 help
Miquel Raynal9f9ce3c2018-05-15 11:57:05 +02002228 This provides a a series of tests to confirm that the TPMv1.x is
2229 working correctly. The tests cover initialisation, non-volatile RAM,
2230 extend, global lock and checking that timing is within expectations.
2231 The tests pass correctly on Infineon TPMs but may need to be adjusted
Simon Glass72a8cf82016-01-17 20:53:51 -07002232 for other devices.
2233
Miquel Raynal9f9ce3c2018-05-15 11:57:05 +02002234endif
2235
Simon Glass72a8cf82016-01-17 20:53:51 -07002236endmenu
2237
Moritz Fischerbfeba012016-10-04 17:08:08 -07002238menu "Firmware commands"
2239config CMD_CROS_EC
2240 bool "Enable crosec command"
2241 depends on CROS_EC
2242 default y
2243 help
2244 Enable command-line access to the Chrome OS EC (Embedded
2245 Controller). This provides the 'crosec' command which has
2246 a number of sub-commands for performing EC tasks such as
2247 updating its flash, accessing a small saved context area
2248 and talking to the I2C bus behind the EC (if there is one).
2249endmenu
2250
Dinh Nguyenab8243e2016-04-21 09:05:23 -05002251menu "Filesystem commands"
Marek Behún9d845502017-09-03 17:00:30 +02002252config CMD_BTRFS
2253 bool "Enable the 'btrsubvol' command"
2254 select FS_BTRFS
2255 help
2256 This enables the 'btrsubvol' command to list subvolumes
2257 of a BTRFS filesystem. There are no special commands for
2258 listing BTRFS directories or loading BTRFS files - this
2259 can be done by the generic 'fs' commands (see CMD_FS_GENERIC)
2260 when BTRFS is enabled (see FS_BTRFS).
2261
Simon Glassd66a10f2017-04-26 22:27:58 -06002262config CMD_CBFS
2263 bool "Enable the 'cbfs' command"
Simon Glassdeb959992017-04-26 22:27:59 -06002264 depends on FS_CBFS
Simon Glassd66a10f2017-04-26 22:27:58 -06002265 help
2266 Define this to enable support for reading from a Coreboot
2267 filesystem. This is a ROM-based filesystem used for accessing files
2268 on systems that use coreboot as the first boot-loader and then load
2269 U-Boot to actually boot the Operating System. Available commands are
2270 cbfsinit, cbfsinfo, cbfsls and cbfsload.
2271
Simon Glass97072742017-04-26 22:28:03 -06002272config CMD_CRAMFS
2273 bool "Enable the 'cramfs' command"
Simon Glass80e44cf2017-04-26 22:28:04 -06002274 depends on FS_CRAMFS
Simon Glass97072742017-04-26 22:28:03 -06002275 help
2276 This provides commands for dealing with CRAMFS (Compressed ROM
2277 filesystem). CRAMFS is useful when space is tight since files are
2278 compressed. Two commands are provided:
2279
2280 cramfsls - lists files in a cramfs image
2281 cramfsload - loads a file from a cramfs image
2282
Huang Jianan739941e2022-02-26 15:05:50 +08002283config CMD_EROFS
2284 bool "EROFS command support"
2285 select FS_EROFS
2286 help
2287 Support for the EROFS fs
2288
Dinh Nguyenab8243e2016-04-21 09:05:23 -05002289config CMD_EXT2
2290 bool "ext2 command support"
Tuomas Tynkkynen3d22bae2018-01-05 02:45:17 +02002291 select FS_EXT4
Dinh Nguyenab8243e2016-04-21 09:05:23 -05002292 help
2293 Enables EXT2 FS command
2294
2295config CMD_EXT4
2296 bool "ext4 command support"
Tuomas Tynkkynen3d22bae2018-01-05 02:45:17 +02002297 select FS_EXT4
Dinh Nguyenab8243e2016-04-21 09:05:23 -05002298 help
2299 Enables EXT4 FS command
2300
2301config CMD_EXT4_WRITE
2302 depends on CMD_EXT4
2303 bool "ext4 write command support"
Tuomas Tynkkynen3d22bae2018-01-05 02:45:17 +02002304 select EXT4_WRITE
Dinh Nguyenab8243e2016-04-21 09:05:23 -05002305 help
2306 Enables EXT4 FS write command
2307
2308config CMD_FAT
2309 bool "FAT command support"
Sekhar Norieedfb892017-06-02 17:53:59 +05302310 select FS_FAT
Dinh Nguyenab8243e2016-04-21 09:05:23 -05002311 help
2312 Support for the FAT fs
2313
Joao Marcos Costabba604b2020-07-30 15:33:48 +02002314config CMD_SQUASHFS
2315 bool "SquashFS command support"
2316 select FS_SQUASHFS
2317 help
2318 Enables SquashFS filesystem commands (e.g. load, ls).
2319
Dinh Nguyenab8243e2016-04-21 09:05:23 -05002320config CMD_FS_GENERIC
2321 bool "filesystem commands"
2322 help
2323 Enables filesystem commands (e.g. load, ls) that work for multiple
2324 fs types.
Maxime Ripard0269dfa2017-02-27 18:22:04 +01002325
Josua Mayerefbe99c2017-04-24 10:10:45 +02002326config CMD_FS_UUID
2327 bool "fsuuid command"
2328 help
2329 Enables fsuuid command for filesystem UUID.
2330
Simon Glassb8682a72017-05-17 03:25:37 -06002331config CMD_JFFS2
2332 bool "jffs2 command"
Simon Glass59e12a42017-05-17 03:25:38 -06002333 select FS_JFFS2
Simon Glassb8682a72017-05-17 03:25:37 -06002334 help
2335 Enables commands to support the JFFS2 (Journalling Flash File System
2336 version 2) filesystem. This enables fsload, ls and fsinfo which
2337 provide the ability to load files, list directories and obtain
2338 filesystem information.
2339
Tom Rini968c6212021-12-17 18:08:47 -05002340config JFFS2_DEV
2341 string "Default device for JFFS2"
2342 depends on CMD_JFFS2
2343 default "nor0"
2344 help
2345 The default device to use with the jffs2 command.
2346
2347config JFFS2_PART_OFFSET
2348 hex "Default offset within flash to locate the JFFS2 image"
2349 depends on CMD_JFFS2
2350 default 0x0
2351 help
2352 The default offset within flash to locate the JFFS2 image.
2353
2354config JFFS2_PART_SIZE
2355 hex "Default size of JFFS2 partition"
2356 depends on CMD_JFFS2
2357 default 0xFFFFFFFF
2358 help
2359 The default size of the JFFS2 partition
2360
Maxime Ripard0269dfa2017-02-27 18:22:04 +01002361config CMD_MTDPARTS
Maxime Ripard0269dfa2017-02-27 18:22:04 +01002362 bool "MTD partition support"
Miquel Raynalff102c52019-10-25 19:39:30 +02002363 depends on MTD
Maxime Ripard0269dfa2017-02-27 18:22:04 +01002364 help
Miquel Raynal938db6f2018-09-29 12:58:30 +02002365 MTD partitioning tool support.
2366 It is strongly encouraged to avoid using this command
2367 anymore along with 'sf', 'nand', 'onenand'. One can still
2368 declare the partitions in the mtdparts environment variable
2369 but better use the MTD stack and the 'mtd' command instead.
Maxime Ripard0269dfa2017-02-27 18:22:04 +01002370
Simon Glasscb70e6c2017-08-04 16:34:30 -06002371config CMD_MTDPARTS_SPREAD
2372 bool "Padd partition size to take account of bad blocks"
2373 depends on CMD_MTDPARTS
2374 help
2375 This enables the 'spread' sub-command of the mtdparts command.
2376 This command will modify the existing mtdparts variable by increasing
2377 the size of the partitions such that 1) each partition's net size is
2378 at least as large as the size specified in the mtdparts variable and
2379 2) each partition starts on a good block.
2380
Alexander Dahl672c5702019-10-30 16:53:55 +01002381config CMD_MTDPARTS_SHOW_NET_SIZES
2382 bool "Show net size (w/o bad blocks) of partitions"
2383 depends on CMD_MTDPARTS
2384 help
2385 Adds two columns to the printed partition table showing the
2386 effective usable size of a partition, if bad blocks are taken
2387 into account.
2388
Miquel Raynal587f4452019-10-03 19:50:25 +02002389config MTDIDS_DEFAULT
2390 string "Default MTD IDs"
Miquel Raynalff102c52019-10-25 19:39:30 +02002391 depends on MTD || SPI_FLASH
Miquel Raynal587f4452019-10-03 19:50:25 +02002392 help
2393 Defines a default MTD IDs list for use with MTD partitions in the
2394 Linux MTD command line partitions format.
2395
2396config MTDPARTS_DEFAULT
2397 string "Default MTD partition scheme"
Miquel Raynalff102c52019-10-25 19:39:30 +02002398 depends on MTD || SPI_FLASH
Miquel Raynal587f4452019-10-03 19:50:25 +02002399 help
2400 Defines a default MTD partitioning scheme in the Linux MTD command
2401 line partitions format
2402
Simon Glassf8803a92017-08-04 16:34:41 -06002403config CMD_REISER
2404 bool "reiser - Access to reiserfs filesystems"
2405 help
2406 This provides two commands which operate on a resierfs filesystem,
2407 commonly used some years ago:
2408
2409 reiserls - list files
2410 reiserload - load a file
2411
Simon Glass7a764312017-08-04 16:34:58 -06002412config CMD_YAFFS2
2413 bool "yaffs2 - Access of YAFFS2 filesystem"
2414 depends on YAFFS2
2415 default y
2416 help
2417 This provides commands for accessing a YAFFS2 filesystem. Yet
2418 Another Flash Filesystem 2 is a filesystem designed specifically
2419 for NAND flash. It incorporates bad-block management and ensures
2420 that device writes are sequential regardless of filesystem
2421 activity.
2422
Simon Glass54feea12017-08-04 16:35:04 -06002423config CMD_ZFS
2424 bool "zfs - Access of ZFS filesystem"
2425 help
2426 This provides commands to accessing a ZFS filesystem, commonly used
2427 on Solaris systems. Two sub-commands are provided:
2428
2429 zfsls - list files in a directory
2430 zfsload - load a file
2431
2432 See doc/README.zfs for more details.
2433
Dinh Nguyenab8243e2016-04-21 09:05:23 -05002434endmenu
2435
Simon Glassac20a1b2017-04-26 22:27:52 -06002436menu "Debug commands"
2437
Simon Glass71cebf02021-03-15 18:00:24 +13002438config CMD_CBSYSINFO
2439 bool "cbsysinfo"
2440 depends on X86
2441 default y if SYS_COREBOOT
2442 help
2443 This provides information about the coreboot sysinfo table stored in
2444 memory by coreboot before jumping to U-Boot. It can be useful for
2445 debugging the beaaviour of coreboot or U-Boot.
2446
Simon Glass3bd25cb2017-04-26 22:28:08 -06002447config CMD_DIAG
2448 bool "diag - Board diagnostics"
2449 help
2450 This command provides access to board diagnostic tests. These are
2451 called Power-on Self Tests (POST). The command allows listing of
2452 available tests and running either all the tests, or specific tests
2453 identified by name.
2454
Simon Glassc81b4602022-03-04 08:43:06 -07002455config CMD_EVENT
2456 bool "event - Show information about events"
2457 default y if EVENT_DEBUG
2458 help
2459 This enables the 'event' command which provides information about
2460 events and event-handler routines. This can help to device event
2461 hadling.
2462
Simon Glass1b330892017-05-17 03:25:39 -06002463config CMD_IRQ
2464 bool "irq - Show information about interrupts"
Pragnesh Patelc5a7e5b2020-08-24 20:38:55 +05302465 depends on !ARM && !MIPS && !RISCV && !SH
Simon Glass1b330892017-05-17 03:25:39 -06002466 help
2467 This enables two commands:
2468
2469 interrupts - enable or disable interrupts
2470 irqinfo - print device-specific interrupt information
Simon Glass6bac2272017-05-17 03:25:40 -06002471
2472config CMD_KGDB
2473 bool "kgdb - Allow debugging of U-Boot with gdb"
Michal Simekb9205502018-10-04 14:26:13 +02002474 depends on PPC
Simon Glass6bac2272017-05-17 03:25:40 -06002475 help
2476 This enables a 'kgdb' command which allows gdb to connect to U-Boot
2477 over a serial link for debugging purposes. This allows
2478 single-stepping, inspecting variables, etc. This is supported only
2479 on PowerPC at present.
2480
Simon Glassd5f61f22017-12-04 13:48:26 -07002481config CMD_LOG
2482 bool "log - Generation, control and access to logging"
Heinrich Schuchardt83a1f932018-04-19 22:02:46 +02002483 select LOG
Sean Anderson3e409762020-10-27 19:55:38 -04002484 select GETOPT
Simon Glassd5f61f22017-12-04 13:48:26 -07002485 help
2486 This provides access to logging features. It allows the output of
2487 log data to be controlled to a limited extent (setting up the default
Simon Glassef11ed82017-12-04 13:48:27 -07002488 maximum log level for emitting of records). It also provides access
2489 to a command used for testing the log system.
Simon Glassd5f61f22017-12-04 13:48:26 -07002490
Simon Glassce058ae2017-08-04 16:34:59 -06002491config CMD_TRACE
2492 bool "trace - Support tracing of function calls and timing"
Simon Glass89050242021-11-24 09:26:39 -07002493 depends on TRACE
2494 default y
Simon Glassce058ae2017-08-04 16:34:59 -06002495 help
2496 Enables a command to control using of function tracing within
2497 U-Boot. This allows recording of call traces including timing
2498 information. The command can write data to memory for exporting
Simon Glassa24a78d2019-04-08 13:20:51 -06002499 for analysis (e.g. using bootchart). See doc/README.trace for full
Simon Glassce058ae2017-08-04 16:34:59 -06002500 details.
2501
Igor Opaniuk60b2f9e2018-06-03 21:56:39 +03002502config CMD_AVB
2503 bool "avb - Android Verified Boot 2.0 operations"
Igor Opaniukb0aa74a2018-07-17 14:33:25 +03002504 depends on AVB_VERIFY
Igor Opaniuk60b2f9e2018-06-03 21:56:39 +03002505 help
2506 Enables a "avb" command to perform verification of partitions using
2507 Android Verified Boot 2.0 functionality. It includes such subcommands:
2508 avb init - initialize avb2 subsystem
2509 avb read_rb - read rollback index
2510 avb write_rb - write rollback index
2511 avb is_unlocked - check device lock state
2512 avb get_uuid - read and print uuid of a partition
2513 avb read_part - read data from partition
2514 avb read_part_hex - read data from partition and output to stdout
2515 avb write_part - write data to partition
2516 avb verify - run full verification chain
Joel Peshkin4e9bce12021-04-11 11:21:58 +02002517
2518config CMD_STACKPROTECTOR_TEST
2519 bool "Test command for stack protector"
2520 depends on STACKPROTECTOR
2521 help
2522 Enable stackprot_test command
2523 The stackprot_test command will force a stack overrun to test
2524 the stack smashing detection mechanisms.
2525
Simon Glassac20a1b2017-04-26 22:27:52 -06002526endmenu
2527
Heiko Schocher8f2fe0c2016-09-21 07:58:19 +02002528config CMD_UBI
2529 tristate "Enable UBI - Unsorted block images commands"
Heiko Schocher8f2fe0c2016-09-21 07:58:19 +02002530 select MTD_UBI
2531 help
2532 UBI is a software layer above MTD layer which admits use of LVM-like
2533 logical volumes on top of MTD devices, hides some complexities of
2534 flash chips like wear and bad blocks and provides some other useful
2535 capabilities. Please, consult the MTD web site for more details
2536 (www.linux-mtd.infradead.org). Activate this option if you want
2537 to use U-Boot UBI commands.
Miquel Raynalc58fb2c2018-09-29 12:58:29 +02002538 It is also strongly encouraged to also enable CONFIG_MTD to get full
2539 partition support.
Heiko Schocher8f2fe0c2016-09-21 07:58:19 +02002540
Philippe Reynes83f70782020-03-23 19:20:47 +01002541config CMD_UBI_RENAME
2542 bool "Enable rename"
2543 depends on CMD_UBI
Philippe Reynes83f70782020-03-23 19:20:47 +01002544 help
2545 Enable a "ubi" command to rename ubi volume:
2546 ubi rename <oldname> <newname>
2547
Boris Brezillon173aafb2017-02-27 18:22:06 +01002548config CMD_UBIFS
2549 tristate "Enable UBIFS - Unsorted block images filesystem commands"
Maxime Ripard2bc734b2017-03-03 14:53:22 +01002550 depends on CMD_UBI
Michal Simek5ed063d2018-07-23 15:55:13 +02002551 default y if CMD_UBI
Karl Beldan24fc9532017-07-12 16:11:47 +00002552 select LZO
Boris Brezillon173aafb2017-02-27 18:22:06 +01002553 help
2554 UBIFS is a file system for flash devices which works on top of UBI.
2555
Aswath Govindraju19f7a342021-08-13 23:04:41 +05302556config MMC_SPEED_MODE_SET
2557 bool "set speed mode using mmc command"
2558 depends on CMD_MMC
2559 default n
2560 help
2561 Enable setting speed mode using mmc rescan and mmc dev commands.
2562 The speed mode is provided as the last argument in these commands
2563 and is indicated using the index from enum bus_mode in
2564 include/mmc.h. A speed mode can be set only if it has already
2565 been enabled in the device tree.
Simon Glass72a8cf82016-01-17 20:53:51 -07002566endmenu