blob: dd43358c271fddc34eb5b989ad63976e29e10a35 [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
Tom Rinicf493582022-05-11 16:21:06 -040074config SYS_MAXARGS
75 int "Maximum number arguments accepted by commands"
76 default 16
77
Christoph Muellner7ae31fc2019-04-05 13:03:46 +020078config SYS_XTRACE
Sean Andersonb935d192021-03-04 11:34:23 -050079 bool "Command execution tracer"
Christoph Muellner7ae31fc2019-04-05 13:03:46 +020080 depends on CMDLINE
81 default y if CMDLINE
82 help
83 This option enables the possiblity to print all commands before
84 executing them and after all variables are evaluated (similar
85 to Bash's xtrace/'set -x' feature).
86 To enable the tracer a variable "xtrace" needs to be defined in
87 the environment.
88
Sam Protsenko610eec72017-09-28 12:33:45 -070089config BUILD_BIN2C
90 bool
91
Simon Glass72a8cf82016-01-17 20:53:51 -070092comment "Commands"
93
94menu "Info commands"
95
Simon Glass0b885bc2020-04-26 09:19:53 -060096config CMD_ACPI
97 bool "acpi"
Heinrich Schuchardt12218c12021-01-20 21:37:56 +010098 depends on ACPIGEN
99 default y
Simon Glass0b885bc2020-04-26 09:19:53 -0600100 help
101 List and dump ACPI tables. ACPI (Advanced Configuration and Power
102 Interface) is used mostly on x86 for providing information to the
103 Operating System about devices in the system. The tables are set up
104 by the firmware, typically U-Boot but possibly an earlier firmware
105 module, if U-Boot is chain-loaded from something else. ACPI tables
106 can also include code, to perform hardware-specific tasks required
107 by the Operating Systems. This allows some amount of separation
108 between the firmware and OS, and is particularly useful when you
109 want to make hardware changes without the OS needing to be adjusted.
110
Bin Meng56d06352021-02-25 17:22:34 +0800111config CMD_ADDRMAP
112 bool "addrmap"
113 depends on ADDR_MAP
114 default y
115 help
116 List non-identity virtual-physical memory mappings for 32-bit CPUs.
117
Simon Glass72a8cf82016-01-17 20:53:51 -0700118config CMD_BDI
119 bool "bdinfo"
120 default y
121 help
122 Print board info
123
Masahiro Yamada61304db2017-01-30 11:12:07 +0900124config CMD_CONFIG
125 bool "config"
Masahiro Yamada61304db2017-01-30 11:12:07 +0900126 default SANDBOX
Michal Simek5ed063d2018-07-23 15:55:13 +0200127 select BUILD_BIN2C
Masahiro Yamada61304db2017-01-30 11:12:07 +0900128 help
129 Print ".config" contents.
130
131 If this option is enabled, the ".config" file contents are embedded
132 in the U-Boot image and can be printed on the console by the "config"
133 command. This provides information of which options are enabled on
134 the running U-Boot.
135
Simon Glass72a8cf82016-01-17 20:53:51 -0700136config CMD_CONSOLE
137 bool "coninfo"
138 default y
139 help
140 Print console devices and information.
141
142config CMD_CPU
143 bool "cpu"
Heinrich Schuchardt622178d2020-11-05 00:29:11 +0100144 depends on CPU
Simon Glass72a8cf82016-01-17 20:53:51 -0700145 help
146 Print information about available CPUs. This normally shows the
147 number of CPUs, type (e.g. manufacturer, architecture, product or
148 internal name) and clock frequency. Other information may be
149 available depending on the CPU driver.
150
151config CMD_LICENSE
152 bool "license"
Masahiro Yamadad726f222017-01-30 11:12:08 +0900153 select BUILD_BIN2C
Simon Glass72a8cf82016-01-17 20:53:51 -0700154 help
155 Print GPL license text
156
Simon Glass3b65ee32019-12-06 21:41:54 -0700157config CMD_PMC
158 bool "pmc"
159 help
160 Provides access to the Intel Power-Management Controller (PMC) so
161 that its state can be examined. This does not currently support
162 changing the state but it is still useful for debugging and seeing
163 what is going on.
164
Christophe Leroyfa379222017-08-04 16:34:40 -0600165config CMD_REGINFO
166 bool "reginfo"
167 depends on PPC
168 help
169 Register dump
170
Baruch Siach1c79f2f2020-01-21 15:44:54 +0200171config CMD_TLV_EEPROM
172 bool "tlv_eeprom"
173 depends on I2C_EEPROM
174 help
175 Display and program the system EEPROM data block in ONIE Tlvinfo
176 format. TLV stands for Type-Length-Value.
177
178config SPL_CMD_TLV_EEPROM
179 bool "tlv_eeprom for SPL"
180 depends on SPL_I2C_EEPROM
Simon Glass9ca00682021-07-10 21:14:31 -0600181 select SPL_DRIVERS_MISC
Baruch Siach1c79f2f2020-01-21 15:44:54 +0200182 help
183 Read system EEPROM data block in ONIE Tlvinfo format from SPL.
184
Heinrich Schuchardtc92b50a2020-08-20 19:43:39 +0200185config CMD_SBI
186 bool "sbi"
187 depends on RISCV_SMODE && SBI_V02
188 help
189 Display information about the SBI implementation.
190
Simon Glass72a8cf82016-01-17 20:53:51 -0700191endmenu
192
193menu "Boot commands"
194
195config CMD_BOOTD
196 bool "bootd"
197 default y
198 help
199 Run the command stored in the environment "bootcmd", i.e.
200 "bootd" does the same thing as "run bootcmd".
201
202config CMD_BOOTM
203 bool "bootm"
204 default y
205 help
206 Boot an application image from the memory.
207
Philippe Reynes9d46e632022-03-28 22:57:00 +0200208config CMD_BOOTM_PRE_LOAD
209 bool "enable pre-load on bootm"
210 depends on CMD_BOOTM
211 depends on IMAGE_PRE_LOAD
212 default n
213 help
214 Enable support of stage pre-load for the bootm command.
215 This stage allow to check or modify the image provided
216 to the bootm command.
217
Simon Glass5d053cc2022-04-24 23:31:10 -0600218config CMD_BOOTDEV
219 bool "bootdev"
220 depends on BOOTSTD
221 default y if BOOTSTD_FULL
222 help
223 Support listing available bootdevs (boot devices) which can provide an
224 OS to boot, as well as showing information about a particular one.
225
226 This command is not necessary for bootstd to work.
227
Simon Glass2d653f62022-04-24 23:31:11 -0600228config CMD_BOOTFLOW
229 bool "bootflow"
230 depends on BOOTSTD
231 default y
232 help
233 Support scanning for bootflows available with the bootdevs. The
234 bootflows can optionally be booted.
235
236config CMD_BOOTFLOW_FULL
237 bool "bootflow - extract subcommands"
238 depends on BOOTSTD_FULL
239 default y if BOOTSTD_FULL
240 help
241 Add the ability to list the available bootflows, select one and obtain
242 information about it.
243
244 This command is not necessary for bootstd to work.
245
Simon Glass7fca71d2022-04-24 23:31:12 -0600246config CMD_BOOTMETH
247 bool "bootmeth"
248 depends on BOOTSTD
249 default y if BOOTSTD_FULL
250 help
251 Support listing available bootmethds (methods used to boot an
252 Operating System), as well as selecting the order that the bootmeths
253 are used.
254
255 This command is not necessary for bootstd to work.
256
Cristian Ciocalteaecc7fda2019-12-24 18:05:39 +0200257config BOOTM_EFI
258 bool "Support booting UEFI FIT images"
259 depends on CMD_BOOTEFI && CMD_BOOTM && FIT
260 default y
261 help
262 Support booting UEFI FIT images via the bootm command.
263
Dinh Nguyenab8243e2016-04-21 09:05:23 -0500264config CMD_BOOTZ
265 bool "bootz"
266 help
267 Boot the Linux zImage
268
Masahiro Yamada26959272016-08-12 08:31:16 -0400269config CMD_BOOTI
270 bool "booti"
Atish Patra3cedc972019-05-06 17:49:39 -0700271 depends on ARM64 || RISCV
Masahiro Yamada26959272016-08-12 08:31:16 -0400272 default y
273 help
274 Boot an AArch64 Linux Kernel image from memory.
275
Tom Rini4b0bcfa2019-09-20 17:36:50 -0400276config BOOTM_LINUX
277 bool "Support booting Linux OS images"
278 depends on CMD_BOOTM || CMD_BOOTZ || CMD_BOOTI
279 default y
280 help
281 Support booting the Linux kernel directly via a command such as bootm
282 or booti or bootz.
283
284config BOOTM_NETBSD
285 bool "Support booting NetBSD (non-EFI) loader images"
286 depends on CMD_BOOTM
287 default y
288 help
289 Support booting NetBSD via the bootm command.
290
291config BOOTM_OPENRTOS
292 bool "Support booting OPENRTOS / FreeRTOS images"
293 depends on CMD_BOOTM
294 help
295 Support booting OPENRTOS / FreeRTOS via the bootm command.
296
297config BOOTM_OSE
298 bool "Support booting Enea OSE images"
Tom Rini14a2dee2019-12-05 18:46:11 -0500299 depends on (ARM && (ARM64 || CPU_V7A || CPU_V7R) || SANDBOX || PPC || X86)
Tom Rini4b0bcfa2019-09-20 17:36:50 -0400300 depends on CMD_BOOTM
301 help
302 Support booting Enea OSE images via the bootm command.
303
304config BOOTM_PLAN9
305 bool "Support booting Plan9 OS images"
306 depends on CMD_BOOTM
307 default y
308 help
309 Support booting Plan9 images via the bootm command.
310
311config BOOTM_RTEMS
312 bool "Support booting RTEMS OS images"
313 depends on CMD_BOOTM
314 default y
315 help
316 Support booting RTEMS images via the bootm command.
317
318config BOOTM_VXWORKS
319 bool "Support booting VxWorks OS images"
320 depends on CMD_BOOTM
321 default y
322 help
323 Support booting VxWorks images via the bootm command.
324
AKASHI Takahirofefff632019-11-08 10:32:15 +0900325config CMD_BOOTEFI
326 bool "bootefi"
327 depends on EFI_LOADER
328 default y
329 help
330 Boot an EFI image from memory.
331
Alexander Graf95b62b22016-11-17 22:40:10 +0100332config CMD_BOOTEFI_HELLO_COMPILE
333 bool "Compile a standard EFI hello world binary for testing"
Heinrich Schuchardt3b4847c2019-11-07 08:05:17 +0100334 depends on CMD_BOOTEFI && !CPU_V7M
Alexander Graf95b62b22016-11-17 22:40:10 +0100335 default y
336 help
337 This compiles a standard EFI hello world application with U-Boot so
338 that it can be used with the test/py testing framework. This is useful
339 for testing that EFI is working at a basic level, and for bringing
340 up EFI support on a new architecture.
341
342 No additional space will be required in the resulting U-Boot binary
343 when this option is enabled.
344
Simon Glassc7ae3df2016-11-07 08:47:08 -0700345config CMD_BOOTEFI_HELLO
346 bool "Allow booting a standard EFI hello world for testing"
Alexander Graf95b62b22016-11-17 22:40:10 +0100347 depends on CMD_BOOTEFI_HELLO_COMPILE
Heinrich Schuchardtec5f0ed2020-07-13 07:33:40 +0200348 default y if CMD_BOOTEFI_SELFTEST
Simon Glassc7ae3df2016-11-07 08:47:08 -0700349 help
350 This adds a standard EFI hello world application to U-Boot so that
351 it can be used with the 'bootefi hello' command. This is useful
352 for testing that EFI is working at a basic level, and for bringing
353 up EFI support on a new architecture.
354
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +0200355source lib/efi_selftest/Kconfig
356
Tom Rini4880b022016-11-29 09:14:56 -0500357config CMD_BOOTMENU
358 bool "bootmenu"
359 select MENU
Masahisa Kojimaa3d0aa82022-04-28 17:09:41 +0900360 select CHARSET
Tom Rini4880b022016-11-29 09:14:56 -0500361 help
362 Add an ANSI terminal boot menu command.
363
Eugeniu Roscab84acf12019-12-24 17:51:06 +0100364config CMD_ADTIMG
365 bool "adtimg"
Sam Protsenkod03e76a2018-08-16 23:34:13 +0300366 help
367 Android DTB/DTBO image manipulation commands. Read dtb/dtbo files from
368 image into RAM, dump image structure information, etc. Those dtb/dtbo
369 files should be merged in one dtb further, which needs to be passed to
370 the kernel, as part of a boot process.
371
Sam Protsenko94f6d0d2020-01-24 17:53:42 +0200372config CMD_ABOOTIMG
373 bool "abootimg"
374 depends on ANDROID_BOOT_IMAGE
375 help
376 Android Boot Image manipulation commands. Allows one to extract
377 images contained in boot.img, like kernel, ramdisk, dtb, etc, and
378 obtain corresponding meta-information from boot.img.
379
Sam Protsenko34b43192020-01-24 17:53:43 +0200380 See doc/android/boot-image.rst for details.
381
Simon Glass72a8cf82016-01-17 20:53:51 -0700382config CMD_ELF
383 bool "bootelf, bootvx"
384 default y
Keerthy805b3ca2020-02-12 13:55:03 +0530385 select LIB_ELF
Simon Glass72a8cf82016-01-17 20:53:51 -0700386 help
387 Boot an ELF/vxWorks image from the memory.
388
Michal Simek23922e22016-04-06 20:28:04 +0200389config CMD_FDT
390 bool "Flattened Device Tree utility commands"
391 default y
392 depends on OF_LIBFDT
393 help
394 Do FDT related setup before booting into the Operating System.
395
Kory Maincent2f84e9c2021-05-04 19:31:22 +0200396config SUPPORT_EXTENSION_SCAN
397 bool
398
399config CMD_EXTENSION
400 bool "Extension board management command"
401 select CMD_FDT
402 depends on SUPPORT_EXTENSION_SCAN
403 help
404 Enables the "extension" command, which allows to detect
405 extension boards connected to the system, and apply
406 corresponding Device Tree overlays.
407
Simon Glass72a8cf82016-01-17 20:53:51 -0700408config CMD_GO
409 bool "go"
410 default y
411 help
412 Start an application at a given address.
413
414config CMD_RUN
415 bool "run"
416 default y
417 help
418 Run the command in the given environment variable.
419
420config CMD_IMI
421 bool "iminfo"
422 default y
423 help
424 Print header information for application image.
425
426config CMD_IMLS
427 bool "imls"
Simon Glass72a8cf82016-01-17 20:53:51 -0700428 help
429 List all images found in flash
430
431config CMD_XIMG
432 bool "imxtract"
433 default y
434 help
435 Extract a part of a multi-image.
436
Simon Glass72c30332017-08-04 16:34:48 -0600437config CMD_SPL
438 bool "spl export - Export boot information for Falcon boot"
439 depends on SPL
440 help
441 Falcon mode allows booting directly from SPL into an Operating
442 System such as Linux, thus skipping U-Boot proper. See
443 doc/README.falcon for full information about how to use this
444 command.
445
Simon Glass203dc1b2017-08-04 16:34:49 -0600446config CMD_SPL_NAND_OFS
Lukasz Majewskif63c43b2019-05-16 16:01:36 +0200447 hex "Offset of OS args or dtb for Falcon-mode NAND boot"
Lukasz Majewski7cb179e2019-05-16 16:01:35 +0200448 depends on CMD_SPL && (TPL_NAND_SUPPORT || SPL_NAND_SUPPORT)
Simon Glass203dc1b2017-08-04 16:34:49 -0600449 default 0
450 help
451 This provides the offset of the command line arguments for Linux
452 when booting from NAND in Falcon mode. See doc/README.falcon
453 for full information about how to use this option (and also see
454 board/gateworks/gw_ventana/README for an example).
455
Lukasz Majewskief9e57d2019-05-16 16:01:37 +0200456config CMD_SPL_NOR_OFS
457 hex "Offset of OS args or dtb for Falcon-mode NOR boot"
458 depends on CMD_SPL && SPL_NOR_SUPPORT
459 default 0
460 help
461 This provides the offset of the command line arguments or dtb for
462 Linux when booting from NOR in Falcon mode.
463
Simon Glass3a91a252017-08-04 16:34:50 -0600464config CMD_SPL_WRITE_SIZE
465 hex "Size of argument area"
466 depends on CMD_SPL
467 default 0x2000
468 help
469 This provides the size of the command-line argument area in NAND
470 flash used by Falcon-mode boot. See the documentation until CMD_SPL
471 for detail.
472
Simon Glass9b92a8d2017-08-04 16:34:57 -0600473config CMD_THOR_DOWNLOAD
474 bool "thor - TIZEN 'thor' download"
Marek Szyprowski909338c2019-10-02 12:29:08 +0200475 select DFU
Simon Glass9b92a8d2017-08-04 16:34:57 -0600476 help
477 Implements the 'thor' download protocol. This is a way of
478 downloading a software update over USB from an attached host.
479 There is no documentation about this within the U-Boot source code
480 but you should be able to find something on the interwebs.
481
Simon Glasse7a815f2017-08-04 16:35:03 -0600482config CMD_ZBOOT
483 bool "zboot - x86 boot command"
484 help
485 With x86 machines it is common to boot a bzImage file which
486 contains both a kernel and a setup.bin file. The latter includes
487 configuration information from the dark ages which x86 boards still
488 need to pick things out of.
489
490 Consider using FIT in preference to this since it supports directly
491 booting both 32- and 64-bit kernels, as well as secure boot.
492 Documentation is available in doc/uImage.FIT/x86-fit-boot.txt
493
Simon Glass72a8cf82016-01-17 20:53:51 -0700494endmenu
495
496menu "Environment commands"
497
Dinh Nguyenab8243e2016-04-21 09:05:23 -0500498config CMD_ASKENV
499 bool "ask for env variable"
500 help
501 Ask for environment variable
502
Simon Glass72a8cf82016-01-17 20:53:51 -0700503config CMD_EXPORTENV
504 bool "env export"
505 default y
506 help
507 Export environments.
508
509config CMD_IMPORTENV
510 bool "env import"
511 default y
512 help
513 Import environments.
514
515config CMD_EDITENV
516 bool "editenv"
517 default y
518 help
519 Edit environment variable.
520
Dinh Nguyenab8243e2016-04-21 09:05:23 -0500521config CMD_GREPENV
522 bool "search env"
523 help
524 Allow for searching environment variables
525
Simon Glass72a8cf82016-01-17 20:53:51 -0700526config CMD_SAVEENV
527 bool "saveenv"
528 default y
529 help
530 Save all environment variables into the compiled-in persistent
531 storage.
532
Frank Wunderlichcd121bd2019-06-29 11:36:19 +0200533config CMD_ERASEENV
534 bool "eraseenv"
Frank Wunderlichcd121bd2019-06-29 11:36:19 +0200535 depends on CMD_SAVEENV
536 help
537 Erase environment variables from the compiled-in persistent
538 storage.
539
Simon Glass72a8cf82016-01-17 20:53:51 -0700540config CMD_ENV_EXISTS
541 bool "env exists"
542 default y
543 help
544 Check if a variable is defined in the environment for use in
545 shell scripting.
546
Simon Glassa55d29d2017-05-17 03:25:13 -0600547config CMD_ENV_CALLBACK
548 bool "env callbacks - print callbacks and their associated variables"
549 help
550 Some environment variable have callbacks defined by
551 U_BOOT_ENV_CALLBACK. These are called when the variable changes.
552 For example changing "baudrate" adjust the serial baud rate. This
553 command lists the currently defined callbacks.
554
Simon Glassffc76582017-05-17 03:25:14 -0600555config CMD_ENV_FLAGS
556 bool "env flags -print variables that have non-default flags"
557 help
558 Some environment variables have special flags that control their
559 behaviour. For example, serial# can only be written once and cannot
560 be deleted. This command shows the variables that have special
561 flags.
562
AKASHI Takahiro49d81fd2019-02-25 15:54:36 +0900563config CMD_NVEDIT_EFI
564 bool "env [set|print] -e - set/print UEFI variables"
565 depends on EFI_LOADER
AKASHI Takahiro49d81fd2019-02-25 15:54:36 +0900566 imply HEXDUMP
567 help
568 UEFI variables are encoded as some form of U-Boot variables.
569 If enabled, we are allowed to set/print UEFI variables using
570 "env" command with "-e" option without knowing details.
571
Samuel Dionne-Rielec57bd72021-12-20 18:31:56 -0500572config CMD_NVEDIT_INDIRECT
573 bool "env indirect - Sets environment value from another"
574
Leo Ruan8e921202019-05-24 17:20:19 +0200575config CMD_NVEDIT_INFO
576 bool "env info - print or evaluate environment information"
577 help
578 Print environment information:
579 - env_valid : is environment valid
580 - env_ready : is environment imported into hash table
581 - env_use_default : is default environment used
582
583 This command can be optionally used for evaluation in scripts:
584 [-d] : evaluate whether default environment is used
585 [-p] : evaluate whether environment can be persisted
Patrick Delaunay6718ebd2020-06-19 14:03:34 +0200586 [-q] : quiet output
Leo Ruan8e921202019-05-24 17:20:19 +0200587 The result of multiple evaluations will be combined with AND.
588
Patrick Delaunay0115dd32020-07-28 11:51:20 +0200589config CMD_NVEDIT_LOAD
590 bool "env load"
591 help
592 Load all environment variables from the compiled-in persistent
593 storage.
594
Patrick Delaunaya97d22e2020-07-28 11:51:21 +0200595config CMD_NVEDIT_SELECT
596 bool "env select"
597 help
598 Select the compiled-in persistent storage of environment variables.
599
Simon Glass72a8cf82016-01-17 20:53:51 -0700600endmenu
601
602menu "Memory commands"
603
Mario Six55b25562018-03-28 14:39:18 +0200604config CMD_BINOP
605 bool "binop"
606 help
607 Compute binary operations (xor, or, and) of byte arrays of arbitrary
608 size from memory and store the result in memory or the environment.
609
Simon Glass4aed2272020-09-19 18:49:26 -0600610config CMD_BLOBLIST
611 bool "bloblist"
612 default y if BLOBLIST
613 help
614 Show information about the bloblist, a collection of binary blobs
615 held in memory that persist between SPL and U-Boot. In the case of
616 x86 devices the bloblist can be used to hold ACPI tables so that they
617 remain available in memory.
618
Simon Glass72a8cf82016-01-17 20:53:51 -0700619config CMD_CRC32
620 bool "crc32"
621 default y
Michal Simek5ed063d2018-07-23 15:55:13 +0200622 select HASH
Simon Glass72a8cf82016-01-17 20:53:51 -0700623 help
624 Compute CRC32.
625
Daniel Thompson221a9492017-05-19 17:26:58 +0100626config CRC32_VERIFY
627 bool "crc32 -v"
628 depends on CMD_CRC32
629 help
630 Add -v option to verify data against a crc32 checksum.
631
Simon Glassa1dc9802017-05-17 03:25:10 -0600632config CMD_EEPROM
633 bool "eeprom - EEPROM subsystem"
634 help
635 (deprecated, needs conversion to driver model)
636 Provides commands to read and write EEPROM (Electrically Erasable
637 Programmable Read Only Memory) chips that are connected over an
638 I2C bus.
639
640config CMD_EEPROM_LAYOUT
641 bool "Enable layout-aware eeprom commands"
642 depends on CMD_EEPROM
643 help
644 (deprecated, needs conversion to driver model)
645 When enabled, additional eeprom sub-commands become available.
646
647 eeprom print - prints the contents of the eeprom in a human-readable
648 way (eeprom layout fields, and data formatted to be fit for human
649 consumption).
650
651 eeprom update - allows user to update eeprom fields by specifying
652 the field name, and providing the new data in a human readable format
653 (same format as displayed by the eeprom print command).
654
655 Both commands can either auto detect the layout, or be told which
656 layout to use.
657
658 Feature API:
659 __weak int parse_layout_version(char *str)
660 - override to provide your own layout name parsing
661 __weak void __eeprom_layout_assign(struct eeprom_layout *layout,
662 int layout_version);
663 - override to setup the layout metadata based on the version
664 __weak int eeprom_layout_detect(unsigned char *data)
665 - override to provide your own algorithm for detecting layout
666 version
667 eeprom_field.c
668 - contains various printing and updating functions for common
669 types of eeprom fields. Can be used for defining
670 custom layouts.
671
672config EEPROM_LAYOUT_HELP_STRING
673 string "Tells user what layout names are supported"
674 depends on CMD_EEPROM_LAYOUT
675 default "<not defined>"
676 help
677 Help printed with the LAYOUT VERSIONS part of the 'eeprom'
678 command's help.
679
Tom Rini88cd7d02021-08-17 17:59:45 -0400680config SYS_I2C_EEPROM_BUS
681 int "I2C bus of the EEPROM device."
682 depends on CMD_EEPROM
683 default 0
684
685config SYS_I2C_EEPROM_ADDR_LEN
686 int "Length in bytes of the EEPROM memory array address"
687 depends on CMD_EEPROM || ID_EEPROM
688 default 1
689 range 1 2
690 help
691 Note: This is NOT the chip address length!
692
693config SYS_EEPROM_SIZE
694 depends on CMD_EEPROM
695 int "Size in bytes of the EEPROM device"
696 default 256
697
698config SYS_EEPROM_PAGE_WRITE_BITS
699 int "Number of bits used to address bytes in a single page"
700 depends on CMD_EEPROM
701 default 8
702 help
703 The EEPROM page size is 2^SYS_EEPROM_PAGE_WRITE_BITS.
704 A 64 byte page, for example would require six bits.
705
706config SYS_EEPROM_PAGE_WRITE_DELAY_MS
707 int "Number of milliseconds to delay between page writes"
708 depends on CMD_EEPROM || CMD_I2C
709 default 0
710
Simon Glassba71be52017-08-04 16:34:51 -0600711config LOOPW
712 bool "loopw"
713 help
714 Infinite write loop on address range
715
Andre Przywarabea79d72017-03-15 01:19:05 +0000716config CMD_MD5SUM
717 bool "md5sum"
Andre Przywarabea79d72017-03-15 01:19:05 +0000718 select MD5
719 help
720 Compute MD5 checksum.
721
Daniel Thompson221a9492017-05-19 17:26:58 +0100722config MD5SUM_VERIFY
Andre Przywarabea79d72017-03-15 01:19:05 +0000723 bool "md5sum -v"
Andre Przywarabea79d72017-03-15 01:19:05 +0000724 depends on CMD_MD5SUM
725 help
726 Add -v option to verify data against an MD5 checksum.
727
Simon Glassba71be52017-08-04 16:34:51 -0600728config CMD_MEMINFO
729 bool "meminfo"
Daniel Thompson221a9492017-05-19 17:26:58 +0100730 help
Simon Glassba71be52017-08-04 16:34:51 -0600731 Display memory information.
Daniel Thompson221a9492017-05-19 17:26:58 +0100732
Simon Glassba71be52017-08-04 16:34:51 -0600733config CMD_MEMORY
734 bool "md, mm, nm, mw, cp, cmp, base, loop"
735 default y
Daniel Thompson221a9492017-05-19 17:26:58 +0100736 help
Simon Glassba71be52017-08-04 16:34:51 -0600737 Memory commands.
738 md - memory display
739 mm - memory modify (auto-incrementing address)
740 nm - memory modify (constant address)
741 mw - memory write (fill)
742 cp - memory copy
743 cmp - memory compare
744 base - print or set address offset
745 loop - initialize loop on address range
Simon Glass72a8cf82016-01-17 20:53:51 -0700746
Simon Glass550a9e72020-07-28 19:41:14 -0600747config CMD_MEM_SEARCH
Simon Glassbdded202020-06-02 19:26:49 -0600748 bool "ms - Memory search"
749 help
750 Memory-search command
751
752 This allows searching through a region of memory looking for hex
753 data (byte, 16-bit word, 32-bit long, also 64-bit on machines that
754 support it). It is also possible to search for a string. The
755 command accepts a memory range and a list of values to search for.
756 The values need to appear in memory in the same order they are given
757 in the command. At most 10 matches can be returned at a time, but
758 pressing return will show the next 10 matches. Environment variables
759 are set for use with scripting (memmatches, memaddr, mempos).
760
Joel Johnson72732312020-01-29 09:17:18 -0700761config CMD_MX_CYCLIC
Adam Ford78f28772019-08-14 07:54:34 -0500762 bool "Enable cyclic md/mw commands"
763 depends on CMD_MEMORY
764 help
765 Add the "mdc" and "mwc" memory commands. These are cyclic
766 "md/mw" commands.
767 Examples:
768
769 => mdc.b 10 4 500
770 This command will print 4 bytes (10,11,12,13) each 500 ms.
771
772 => mwc.l 100 12345678 10
773 This command will write 12345678 to address 100 all 10 ms.
774
Jean-Jacques Hiblot803e1a32019-07-02 14:23:26 +0200775config CMD_RANDOM
776 bool "random"
777 default y
778 depends on CMD_MEMORY && (LIB_RAND || LIB_HW_RAND)
779 help
780 random - fill memory with random data
781
Simon Glass72a8cf82016-01-17 20:53:51 -0700782config CMD_MEMTEST
783 bool "memtest"
784 help
785 Simple RAM read/write test.
786
Mario Sixe89f8aa2018-03-28 14:38:14 +0200787if CMD_MEMTEST
788
789config SYS_ALT_MEMTEST
790 bool "Alternative test"
791 help
792 Use a more complete alternative memory test.
793
Ralph Siemsen9989fb12020-09-09 12:10:00 -0400794if SYS_ALT_MEMTEST
795
796config SYS_ALT_MEMTEST_BITFLIP
797 bool "Bitflip test"
798 default y
799 help
800 The alternative memory test includes bitflip test since 2020.07.
801 The bitflip test significantly increases the overall test time.
802 Bitflip test can optionally be disabled here.
803
804endif
805
Ashok Reddy Soma702de892020-05-04 15:26:21 +0200806config SYS_MEMTEST_START
807 hex "default start address for mtest"
Tom Riniff27af12021-12-12 22:12:29 -0500808 default 0x0
Ashok Reddy Soma702de892020-05-04 15:26:21 +0200809 help
810 This is the default start address for mtest for simple read/write
811 test. If no arguments are given to mtest, default address is used
812 as start address.
813
814config SYS_MEMTEST_END
815 hex "default end address for mtest"
816 default 0x1000
817 help
818 This is the default end address for mtest for simple read/write
819 test. If no arguments are given to mtest, default address is used
820 as end address.
821
Mario Sixe89f8aa2018-03-28 14:38:14 +0200822endif
823
Simon Glassba71be52017-08-04 16:34:51 -0600824config CMD_SHA1SUM
825 bool "sha1sum"
826 select SHA1
Simon Glass72a8cf82016-01-17 20:53:51 -0700827 help
Simon Glassba71be52017-08-04 16:34:51 -0600828 Compute SHA1 checksum.
829
830config SHA1SUM_VERIFY
831 bool "sha1sum -v"
832 depends on CMD_SHA1SUM
833 help
834 Add -v option to verify data against a SHA1 checksum.
Simon Glass72a8cf82016-01-17 20:53:51 -0700835
Simon Glass00805d72017-08-04 16:34:52 -0600836config CMD_STRINGS
837 bool "strings - display strings in memory"
838 help
839 This works similarly to the Unix 'strings' command except that it
840 works with a memory range. String of printable characters found
841 within the range are displayed. The minimum number of characters
842 for a sequence to be considered a string can be provided.
843
Simon Glassee7c0e72017-05-17 03:25:43 -0600844endmenu
845
846menu "Compression commands"
847
848config CMD_LZMADEC
849 bool "lzmadec"
Tom Rini99e46df2017-09-29 14:32:44 -0400850 default y if CMD_BOOTI
Simon Glassee7c0e72017-05-17 03:25:43 -0600851 select LZMA
852 help
853 Support decompressing an LZMA (Lempel-Ziv-Markov chain algorithm)
854 image from memory.
855
Yusuke Ashidukaa1732232020-02-20 20:48:01 +0900856config CMD_UNLZ4
857 bool "unlz4"
858 default y if CMD_BOOTI
859 select LZ4
860 help
861 Support decompressing an LZ4 image from memory region.
862
Masahiro Yamadae9d33e72017-02-05 10:42:56 +0900863config CMD_UNZIP
864 bool "unzip"
Tom Rini99e46df2017-09-29 14:32:44 -0400865 default y if CMD_BOOTI
Michael Walle56c311b2020-05-22 14:07:35 +0200866 select GZIP
Masahiro Yamadae9d33e72017-02-05 10:42:56 +0900867 help
868 Uncompress a zip-compressed memory region.
869
870config CMD_ZIP
871 bool "zip"
Michael Walleeff5a542020-05-22 14:07:36 +0200872 select GZIP_COMPRESSED
Masahiro Yamadae9d33e72017-02-05 10:42:56 +0900873 help
874 Compress a memory region with zlib deflate method.
875
Simon Glass72a8cf82016-01-17 20:53:51 -0700876endmenu
877
878menu "Device access commands"
879
Simon Glass0c19b4d2017-08-04 16:34:28 -0600880config CMD_ARMFLASH
881 #depends on FLASH_CFI_DRIVER
882 bool "armflash"
883 help
884 ARM Ltd reference designs flash partition access
885
Neil Armstrong051ebe32018-04-27 15:17:57 +0200886config CMD_ADC
887 bool "adc - Access Analog to Digital Converters info and data"
888 select ADC
Michal Simek6e741cf2020-08-19 10:44:17 +0200889 depends on DM_REGULATOR
Neil Armstrong051ebe32018-04-27 15:17:57 +0200890 help
891 Shows ADC device info and permit printing one-shot analog converted
892 data from a named Analog to Digital Converter.
893
Eugeniu Roscadb7b7a02019-05-23 17:32:22 +0200894config CMD_BCB
895 bool "bcb"
896 depends on MMC
897 depends on PARTITIONS
898 help
899 Read/modify/write the fields of Bootloader Control Block, usually
900 stored on the flash "misc" partition with its structure defined in:
901 https://android.googlesource.com/platform/bootable/recovery/+/master/
902 bootloader_message/include/bootloader_message/bootloader_message.h
903
904 Some real-life use-cases include (but are not limited to):
905 - Determine the "boot reason" (and act accordingly):
906 https://source.android.com/devices/bootloader/boot-reason
907 - Get/pass a list of commands from/to recovery:
908 https://android.googlesource.com/platform/bootable/recovery
909 - Inspect/dump the contents of the BCB fields
910
Jean-Jacques Hiblot49c752c2018-08-09 16:17:46 +0200911config CMD_BIND
912 bool "bind/unbind - Bind or unbind a device to/from a driver"
913 depends on DM
914 help
915 Bind or unbind a device to/from a driver from the command line.
916 This is useful in situations where a device may be handled by several
917 drivers. For example, this can be used to bind a UDC to the usb ether
918 gadget driver from the command line.
919
Simon Glassd3156282017-04-26 22:28:02 -0600920config CMD_CLK
921 bool "clk - Show clock frequencies"
922 help
923 (deprecated)
924 Shows clock frequences by calling a sock_clk_dump() hook function.
925 This is depreated in favour of using the CLK uclass and accessing
926 clock values from associated drivers. However currently no command
927 exists for this.
928
Simon Glass72a8cf82016-01-17 20:53:51 -0700929config CMD_DEMO
930 bool "demo - Demonstration commands for driver model"
931 depends on DM
932 help
933 Provides a 'demo' command which can be used to play around with
934 driver model. To use this properly you will need to enable one or
935 both of the demo devices (DM_DEMO_SHAPE and DM_DEMO_SIMPLE).
936 Otherwise you will always get an empty list of devices. The demo
937 devices are defined in the sandbox device tree, so the easiest
938 option is to use sandbox and pass the -d point to sandbox's
939 u-boot.dtb file.
940
Simon Glass0c19b4d2017-08-04 16:34:28 -0600941config CMD_DFU
942 bool "dfu"
Marek Vasut0f44d332018-02-16 16:41:17 +0100943 select DFU
Simon Glass0c19b4d2017-08-04 16:34:28 -0600944 help
945 Enables the command "dfu" which is used to have U-Boot create a DFU
Simon Glass00fd59d2017-08-04 16:35:06 -0600946 class device via USB. This command requires that the "dfu_alt_info"
947 environment variable be set and define the alt settings to expose to
948 the host.
Simon Glass0c19b4d2017-08-04 16:34:28 -0600949
950config CMD_DM
951 bool "dm - Access to driver model information"
952 depends on DM
Simon Glass0c19b4d2017-08-04 16:34:28 -0600953 help
954 Provides access to driver model data structures and information,
955 such as a list of devices, list of uclasses and the state of each
956 device (e.g. activated). This is not required for operation, but
957 can be useful to see the state of driver model for debugging or
958 interest.
959
Alex Kiernan312a10f2018-05-29 15:30:39 +0000960config CMD_FASTBOOT
961 bool "fastboot - Android fastboot support"
962 depends on FASTBOOT
963 help
964 This enables the command "fastboot" which enables the Android
965 fastboot mode for the platform. Fastboot is a protocol for
966 downloading images, flashing and device control used on
Alex Kiernanf73a7df2018-05-29 15:30:53 +0000967 Android devices. Fastboot requires either the network stack
968 enabled or support for acting as a USB device.
Alex Kiernan312a10f2018-05-29 15:30:39 +0000969
Sam Protsenko586a1bf2020-01-24 17:53:44 +0200970 See doc/android/fastboot.rst for more information.
Alex Kiernan312a10f2018-05-29 15:30:39 +0000971
Simon Glass0c19b4d2017-08-04 16:34:28 -0600972config CMD_FLASH
973 bool "flinfo, erase, protect"
974 default y
Miquel Raynalff102c52019-10-25 19:39:30 +0200975 depends on MTD || FLASH_CFI_DRIVER || MTD_NOR_FLASH
Simon Glass0c19b4d2017-08-04 16:34:28 -0600976 help
977 NOR flash support.
978 flinfo - print FLASH memory information
979 erase - FLASH memory
980 protect - enable or disable FLASH write protection
981
982config CMD_FPGA
983 bool "fpga"
Tuomas Tynkkynena4fa8112018-01-27 20:28:40 +0200984 depends on FPGA
Simon Glass0c19b4d2017-08-04 16:34:28 -0600985 default y
986 help
987 FPGA support.
988
989config CMD_FPGA_LOADBP
990 bool "fpga loadbp - load partial bitstream (Xilinx only)"
991 depends on CMD_FPGA
992 help
993 Supports loading an FPGA device from a bitstream buffer containing
994 a partial bitstream.
995
996config CMD_FPGA_LOADFS
997 bool "fpga loadfs - load bitstream from FAT filesystem (Xilinx only)"
998 depends on CMD_FPGA
999 help
1000 Supports loading an FPGA device from a FAT filesystem.
1001
1002config CMD_FPGA_LOADMK
1003 bool "fpga loadmk - load bitstream from image"
1004 depends on CMD_FPGA
1005 help
1006 Supports loading an FPGA device from a image generated by mkimage.
1007
1008config CMD_FPGA_LOADP
1009 bool "fpga loadp - load partial bitstream"
1010 depends on CMD_FPGA
1011 help
1012 Supports loading an FPGA device from a bitstream buffer containing
1013 a partial bitstream.
1014
Siva Durga Prasad Paladugucedd48e2018-05-31 15:10:22 +05301015config CMD_FPGA_LOAD_SECURE
1016 bool "fpga loads - loads secure bitstreams (Xilinx only)"
1017 depends on CMD_FPGA
1018 help
1019 Enables the fpga loads command which is used to load secure
1020 (authenticated or encrypted or both) bitstreams on to FPGA.
1021
Simon Glass0c19b4d2017-08-04 16:34:28 -06001022config CMD_FPGAD
1023 bool "fpgad - dump FPGA registers"
1024 help
1025 (legacy, needs conversion to driver model)
1026 Provides a way to dump FPGA registers by calling the board-specific
1027 fpga_get_reg() function. This functions similarly to the 'md'
1028 command.
1029
1030config CMD_FUSE
1031 bool "fuse - support for the fuse subssystem"
1032 help
1033 (deprecated - needs conversion to driver model)
1034 This allows reading, sensing, programming or overriding fuses
1035 which control the behaviour of the device. The command uses the
1036 fuse_...() API.
1037
1038config CMD_GPIO
1039 bool "gpio"
1040 help
1041 GPIO support.
1042
Diego Rondinidd2b8c12022-04-11 12:02:09 +02001043config CMD_GPIO_READ
1044 bool "gpio read - save GPIO value to variable"
1045 depends on CMD_GPIO
1046 help
1047 Enables the 'gpio read' command that saves the value
1048 of a GPIO pin to a variable.
1049
Pragnesh Patel9e9a5302020-12-22 11:30:05 +05301050config CMD_PWM
1051 bool "pwm"
1052 depends on DM_PWM
1053 help
1054 Control PWM channels, this allows invert/config/enable/disable PWM channels.
1055
Simon Glass0c19b4d2017-08-04 16:34:28 -06001056config CMD_GPT
1057 bool "GPT (GUID Partition Table) command"
Simon Glass0c19b4d2017-08-04 16:34:28 -06001058 select EFI_PARTITION
Adam Ford1811a922018-02-06 12:43:56 -06001059 select HAVE_BLOCK_DEVICE
Michal Simek5ed063d2018-07-23 15:55:13 +02001060 select PARTITION_UUIDS
Maxime Ripard47738ac2017-08-24 11:52:32 +02001061 imply RANDOM_UUID
Simon Glass0c19b4d2017-08-04 16:34:28 -06001062 help
1063 Enable the 'gpt' command to ready and write GPT style partition
1064 tables.
1065
Maxime Ripard47738ac2017-08-24 11:52:32 +02001066config RANDOM_UUID
1067 bool "GPT Random UUID generation"
Adam Forda451bc22018-02-06 12:14:28 -06001068 select LIB_UUID
Maxime Ripard47738ac2017-08-24 11:52:32 +02001069 help
1070 Enable the generation of partitions with random UUIDs if none
1071 are provided.
1072
Simon Glass0c19b4d2017-08-04 16:34:28 -06001073config CMD_GPT_RENAME
1074 bool "GPT partition renaming commands"
1075 depends on CMD_GPT
1076 help
1077 Enables the 'gpt' command to interchange names on two GPT
1078 partitions via the 'gpt swap' command or to rename single
1079 partitions via the 'rename' command.
1080
Simon Glass75eb9972017-05-17 03:25:29 -06001081config CMD_IDE
1082 bool "ide - Support for IDE drivers"
Simon Glassfc843a02017-05-17 03:25:30 -06001083 select IDE
Simon Glass75eb9972017-05-17 03:25:29 -06001084 help
1085 Provides an 'ide' command which allows accessing the IDE drive,
Vagrant Cascadian1107b062021-12-21 13:06:56 -08001086 resetting the IDE interface, printing the partition table and
Simon Glass75eb9972017-05-17 03:25:29 -06001087 geting device info. It also enables the 'diskboot' command which
1088 permits booting from an IDE drive.
1089
Simon Glass594e8d12017-05-17 03:25:34 -06001090config CMD_IO
1091 bool "io - Support for performing I/O accesses"
1092 help
1093 Provides an 'iod' command to display I/O space and an 'iow' command
1094 to write values to the I/O space. This can be useful for manually
1095 checking the state of devices during boot when debugging device
1096 drivers, etc.
1097
Simon Glass7d0f5c12017-05-17 03:25:36 -06001098config CMD_IOTRACE
1099 bool "iotrace - Support for tracing I/O activity"
1100 help
1101 Provides an 'iotrace' command which supports recording I/O reads and
1102 writes in a trace buffer in memory . It also maintains a checksum
1103 of the trace records (even if space is exhausted) so that the
1104 sequence of I/O accesses can be verified.
1105
1106 When debugging drivers it is useful to see what I/O accesses were
1107 done and in what order.
1108
1109 Even if the individual accesses are of little interest it can be
1110 useful to verify that the access pattern is consistent each time
1111 an operation is performed. In this case a checksum can be used to
1112 characterise the operation of a driver. The checksum can be compared
1113 across different runs of the operation to verify that the driver is
1114 working properly.
1115
1116 In particular, when performing major refactoring of the driver, where
1117 the access pattern should not change, the checksum provides assurance
1118 that the refactoring work has not broken the driver.
1119
1120 This works by sneaking into the io.h heder for an architecture and
1121 redirecting I/O accesses through iotrace's tracing mechanism.
1122
1123 For now no commands are provided to examine the trace buffer. The
1124 format is fairly simple, so 'md' is a reasonable substitute.
1125
1126 Note: The checksum feature is only useful for I/O regions where the
1127 contents do not change outside of software control. Where this is not
1128 suitable you can fall back to manually comparing the addresses. It
1129 might be useful to enhance tracing to only checksum the accesses and
1130 not the data read/written.
1131
Simon Glass0c19b4d2017-08-04 16:34:28 -06001132config CMD_I2C
1133 bool "i2c"
1134 help
1135 I2C support.
1136
Eugen Hristevd05266f2018-09-18 10:35:33 +03001137config CMD_W1
1138 depends on W1
1139 default y if W1
1140 bool "w1 - Support for Dallas 1-Wire protocol"
1141 help
1142 Dallas 1-wire protocol support
1143
Simon Glass72a8cf82016-01-17 20:53:51 -07001144config CMD_LOADB
1145 bool "loadb"
1146 default y
1147 help
1148 Load a binary file over serial line.
1149
1150config CMD_LOADS
1151 bool "loads"
1152 default y
1153 help
1154 Load an S-Record file over serial line
1155
Niel Fouriee3697902020-03-30 17:22:58 +02001156config CMD_LSBLK
1157 depends on BLK
1158 bool "lsblk - list block drivers and devices"
1159 help
1160 Print list of available block device drivers, and for each, the list
1161 of known block devices.
1162
Marek Szyprowski750c5432020-12-23 13:55:15 +01001163config CMD_MBR
1164 bool "MBR (Master Boot Record) command"
1165 select DOS_PARTITION
1166 select HAVE_BLOCK_DEVICE
1167 help
1168 Enable the 'mbr' command to ready and write MBR (Master Boot Record)
1169 style partition tables.
1170
Bin Meng3bc0db12020-10-14 14:34:52 +08001171config CMD_MISC
1172 bool "misc"
1173 depends on MISC
1174 help
1175 Enable the command "misc" for accessing miscellaneous devices with
1176 a MISC uclass driver. The command provides listing all MISC devices
1177 as well as read and write functionalities via their drivers.
1178
Dinh Nguyenab8243e2016-04-21 09:05:23 -05001179config CMD_MMC
1180 bool "mmc"
Heinrich Schuchardtec611872021-03-27 11:43:54 +01001181 depends on MMC
Dinh Nguyenab8243e2016-04-21 09:05:23 -05001182 help
1183 MMC memory mapped support.
1184
Heinrich Schuchardt453d2132020-03-31 17:39:28 +00001185if CMD_MMC
1186
1187config CMD_BKOPS_ENABLE
1188 bool "mmc bkops enable"
1189 depends on CMD_MMC
Heinrich Schuchardt453d2132020-03-31 17:39:28 +00001190 help
1191 Enable command for setting manual background operations handshake
1192 on a eMMC device. The feature is optionally available on eMMC devices
1193 conforming to standard >= 4.41.
1194
Alex Kiernan5a7b11e2018-05-08 04:43:31 +00001195config CMD_MMC_RPMB
1196 bool "Enable support for RPMB in the mmc command"
Heinrich Schuchardt453d2132020-03-31 17:39:28 +00001197 depends on SUPPORT_EMMC_RPMB
Alex Kiernan5a7b11e2018-05-08 04:43:31 +00001198 help
1199 Enable the commands for reading, writing and programming the
1200 key for the Replay Protection Memory Block partition in eMMC.
1201
Alex Kiernanc232d142018-05-29 15:30:52 +00001202config CMD_MMC_SWRITE
1203 bool "mmc swrite"
Heinrich Schuchardt453d2132020-03-31 17:39:28 +00001204 depends on MMC_WRITE
Alex Kiernanc232d142018-05-29 15:30:52 +00001205 select IMAGE_SPARSE
1206 help
1207 Enable support for the "mmc swrite" command to write Android sparse
1208 images to eMMC.
1209
Heinrich Schuchardt453d2132020-03-31 17:39:28 +00001210endif
1211
John Chau4a4830c2020-07-02 12:01:21 +08001212config CMD_CLONE
1213 bool "clone"
1214 depends on BLK
1215 help
1216 Enable storage cloning over block devices, useful for
1217 initial flashing by external block device without network
1218 or usb support.
1219
Ruchika Guptabcc6c572020-10-23 13:39:33 +05301220config CMD_OPTEE_RPMB
1221 bool "Enable read/write support on RPMB via OPTEE"
1222 depends on SUPPORT_EMMC_RPMB && OPTEE
1223 help
1224 Enable the commands for reading, writing persistent named values
1225 in the Replay Protection Memory Block partition in eMMC by
1226 using Persistent Objects in OPTEE
1227
Miquel Raynal5db66b32018-09-29 12:58:28 +02001228config CMD_MTD
1229 bool "mtd"
Miquel Raynalff102c52019-10-25 19:39:30 +02001230 depends on MTD
Miquel Raynal5db66b32018-09-29 12:58:28 +02001231 select MTD_PARTITIONS
1232 help
1233 MTD commands support.
1234
Pratyush Yadav05115ab2020-10-16 16:16:35 +05301235config CMD_MUX
1236 bool "mux"
1237 depends on MULTIPLEXER
1238 help
1239 List, select, and deselect mux controllers on the fly.
1240
Simon Glass72a8cf82016-01-17 20:53:51 -07001241config CMD_NAND
1242 bool "nand"
Maxime Ripard522c2822017-03-03 15:13:30 +01001243 default y if NAND_SUNXI
Miquel Raynalff102c52019-10-25 19:39:30 +02001244 depends on MTD_RAW_NAND
Simon Glass72a8cf82016-01-17 20:53:51 -07001245 help
1246 NAND support.
1247
Boris Brezillone915d202017-02-27 18:22:07 +01001248if CMD_NAND
1249config CMD_NAND_TRIMFFS
1250 bool "nand write.trimffs"
Hans de Goeded482a8d2017-02-27 18:22:10 +01001251 default y if ARCH_SUNXI
Boris Brezillone915d202017-02-27 18:22:07 +01001252 help
1253 Allows one to skip empty pages when flashing something on a NAND.
1254
1255config CMD_NAND_LOCK_UNLOCK
1256 bool "nand lock/unlock"
1257 help
1258 NAND locking support.
1259
1260config CMD_NAND_TORTURE
1261 bool "nand torture"
1262 help
1263 NAND torture support.
1264
1265endif # CMD_NAND
1266
Zhikang Zhang0adc38b2017-08-03 02:30:59 -07001267config CMD_NVME
1268 bool "nvme"
1269 depends on NVME
1270 default y if NVME
1271 help
1272 NVM Express device support
1273
Simon Glass978f0852017-08-04 16:34:31 -06001274config CMD_ONENAND
1275 bool "onenand - access to onenand device"
Miquel Raynalff102c52019-10-25 19:39:30 +02001276 depends on MTD
Simon Glass978f0852017-08-04 16:34:31 -06001277 help
1278 OneNAND is a brand of NAND ('Not AND' gate) flash which provides
1279 various useful features. This command allows reading, writing,
1280 and erasing blocks. It allso provides a way to show and change
1281 bad blocks, and test the device.
1282
Mario Six3bf65cb2018-09-27 09:19:34 +02001283config CMD_OSD
1284 bool "osd"
1285 help
1286 Enable the 'osd' command which allows to query information from and
1287 write text data to a on-screen display (OSD) device; a virtual device
1288 associated with a display capable of displaying a text overlay on the
1289 display it's associated with..
1290
Patrick Delaunayb331cd62017-01-27 11:00:42 +01001291config CMD_PART
1292 bool "part"
AKASHI Takahiro64efbd12022-04-22 10:44:30 +09001293 depends on PARTITIONS
Adam Ford1811a922018-02-06 12:43:56 -06001294 select HAVE_BLOCK_DEVICE
Michal Simek5ed063d2018-07-23 15:55:13 +02001295 select PARTITION_UUIDS
Patrick Delaunayb331cd62017-01-27 11:00:42 +01001296 help
1297 Read and display information about the partition table on
1298 various media.
1299
Simon Glass6500ec72017-08-04 16:34:34 -06001300config CMD_PCI
1301 bool "pci - Access PCI devices"
1302 help
1303 Provide access to PCI (Peripheral Interconnect Bus), a type of bus
1304 used on some devices to allow the CPU to communicate with its
1305 peripherals. Sub-commands allow bus enumeration, displaying and
1306 changing configuration space and a few other features.
1307
Patrice Chotardd5a83132018-10-24 14:10:17 +02001308config CMD_PINMUX
1309 bool "pinmux - show pins muxing"
Marek Behúna70abcf2021-02-09 21:23:47 +01001310 depends on PINCTRL
Patrice Chotardd5a83132018-10-24 14:10:17 +02001311 default y if PINCTRL
1312 help
1313 Parse all available pin-controllers and show pins muxing. This
1314 is useful for debug purpoer to check the pin muxing and to know if
1315 a pin is configured as a GPIO or as an alternate function.
1316
Adam Ford577c40a2018-09-09 07:05:57 -05001317config CMD_POWEROFF
1318 bool "poweroff"
1319 help
1320 Poweroff/Shutdown the system
1321
Simon Glassb75dfd22017-08-04 16:34:39 -06001322config CMD_READ
1323 bool "read - Read binary data from a partition"
1324 help
1325 Provides low-level access to the data in a partition.
1326
Simon Glass72a8cf82016-01-17 20:53:51 -07001327config CMD_REMOTEPROC
1328 bool "remoteproc"
1329 depends on REMOTEPROC
1330 help
1331 Support for Remote Processor control
1332
Simon Glass3bf926c2017-06-14 21:28:24 -06001333config CMD_SATA
1334 bool "sata - Access SATA subsystem"
Simon Glass10e40d52017-06-14 21:28:25 -06001335 select SATA
Simon Glass3bf926c2017-06-14 21:28:24 -06001336 help
1337 SATA (Serial Advanced Technology Attachment) is a serial bus
1338 standard for connecting to hard drives and other storage devices.
1339 This command provides information about attached devices and allows
1340 reading, writing and other operations.
1341
1342 SATA replaces PATA (originally just ATA), which stands for Parallel AT
1343 Attachment, where AT refers to an IBM AT (Advanced Technology)
1344 computer released in 1984.
1345
Simon Glass15dc63d2017-08-04 16:34:43 -06001346config CMD_SAVES
1347 bool "saves - Save a file over serial in S-Record format"
1348 help
1349 Provides a way to save a binary file using the Motorola S-Record
1350 format over the serial line.
1351
Heinrich Schuchardt0c3fecd2018-02-14 08:05:44 +01001352config CMD_SCSI
1353 bool "scsi - Access to SCSI devices"
1354 default y if SCSI
1355 help
1356 This provides a 'scsi' command which provides access to SCSI (Small
1357 Computer System Interface) devices. The command provides a way to
1358 scan the bus, reset the bus, read and write data and get information
1359 about devices.
1360
Simon Glassefce2442017-08-04 16:34:45 -06001361config CMD_SDRAM
1362 bool "sdram - Print SDRAM configuration information"
1363 help
1364 Provides information about attached SDRAM. This assumed that the
1365 SDRAM has an EEPROM with information that can be read using the
1366 I2C bus. This is only available on some boards.
1367
Simon Glass0c19b4d2017-08-04 16:34:28 -06001368config CMD_SF
1369 bool "sf"
Tom Rinia4298dd2019-05-29 17:01:28 -04001370 depends on DM_SPI_FLASH || SPI_FLASH
Jagan Tekic2af7fb2019-10-16 17:59:42 +05301371 default y if DM_SPI_FLASH
Simon Glass0c19b4d2017-08-04 16:34:28 -06001372 help
1373 SPI Flash support
1374
Simon Glass719d36e2017-08-04 16:34:46 -06001375config CMD_SF_TEST
1376 bool "sf test - Allow testing of SPI flash"
Tom Rinia4298dd2019-05-29 17:01:28 -04001377 depends on CMD_SF
Simon Glass719d36e2017-08-04 16:34:46 -06001378 help
1379 Provides a way to test that SPI flash is working correctly. The
1380 test is destructive, in that an area of SPI flash must be provided
1381 for the test to use. Performance information is also provided,
1382 measuring the performance of reading, writing and erasing in
1383 Mbps (Million Bits Per Second). This value should approximately
1384 equal the SPI bus speed for a single-bit-wide SPI bus, assuming
1385 everything is working properly.
1386
Simon Glass0c19b4d2017-08-04 16:34:28 -06001387config CMD_SPI
Patrick Delaunayc95e6322019-02-27 15:20:37 +01001388 bool "sspi - Command to access spi device"
Tom Rinia4298dd2019-05-29 17:01:28 -04001389 depends on SPI
Simon Glass0c19b4d2017-08-04 16:34:28 -06001390 help
1391 SPI utility command.
1392
Patrick Delaunayc95e6322019-02-27 15:20:37 +01001393config DEFAULT_SPI_BUS
1394 int "default spi bus used by sspi command"
1395 depends on CMD_SPI
1396 default 0
1397
1398config DEFAULT_SPI_MODE
1399 hex "default spi mode used by sspi command (see include/spi.h)"
1400 depends on CMD_SPI
1401 default 0
1402
Simon Glass5605aa82017-08-04 16:35:00 -06001403config CMD_TSI148
1404 bool "tsi148 - Command to access tsi148 device"
1405 help
1406 This provides various sub-commands to initialise and configure the
1407 Turndra tsi148 device. See the command help for full details.
1408
Faiz Abbasa539c8b2019-10-15 18:24:40 +05301409config CMD_UFS
1410 bool "Enable UFS - Universal Flash Subsystem commands"
1411 depends on UFS
1412 help
1413 "This provides commands to initialise and configure universal flash
1414 subsystem devices"
1415
Simon Glass2a242e32017-08-04 16:35:01 -06001416config CMD_UNIVERSE
1417 bool "universe - Command to set up the Turndra Universe controller"
1418 help
1419 This allows setting up the VMEbus provided by this controller.
1420 See the command help for full details.
1421
Simon Glass0c19b4d2017-08-04 16:34:28 -06001422config CMD_USB
1423 bool "usb"
Tom Rinie8d3eaa2021-07-09 10:11:55 -04001424 depends on USB_HOST
Adam Ford1811a922018-02-06 12:43:56 -06001425 select HAVE_BLOCK_DEVICE
Simon Glass0c19b4d2017-08-04 16:34:28 -06001426 help
1427 USB support.
1428
Stefan Agner2f005692017-08-16 11:00:53 -07001429config CMD_USB_SDP
1430 bool "sdp"
1431 select USB_FUNCTION_SDP
1432 help
1433 Enables the command "sdp" which is used to have U-Boot emulating the
1434 Serial Download Protocol (SDP) via USB.
Michal Simek6e7bdde2018-07-23 15:55:12 +02001435
Eddie Cai453c95e2017-12-15 08:17:11 +08001436config CMD_ROCKUSB
1437 bool "rockusb"
1438 depends on USB_FUNCTION_ROCKUSB
1439 help
Michal Simek6e7bdde2018-07-23 15:55:12 +02001440 Rockusb protocol is widely used by Rockchip SoC based devices. It can
Eddie Cai453c95e2017-12-15 08:17:11 +08001441 read/write info, image to/from devices. This enable rockusb command
1442 support to communication with rockusb device. for more detail about
1443 this command, please read doc/README.rockusb.
Stefan Agner2f005692017-08-16 11:00:53 -07001444
Simon Glass0c19b4d2017-08-04 16:34:28 -06001445config CMD_USB_MASS_STORAGE
1446 bool "UMS usb mass storage"
Tom Rini123dc512021-05-22 08:47:16 -04001447 depends on USB_GADGET_DOWNLOAD
Lukasz Majewskie4d46042018-01-29 19:28:02 +01001448 select USB_FUNCTION_MASS_STORAGE
Patrick Delaunay6b8d9c92021-06-04 18:51:46 +02001449 depends on BLK && USB_GADGET
Simon Glass0c19b4d2017-08-04 16:34:28 -06001450 help
Patrick Delaunay6b8d9c92021-06-04 18:51:46 +02001451 Enables the command "ums" and the USB mass storage support to the
1452 export a block device: U-Boot, the USB device, acts as a simple
1453 external hard drive plugged on the host USB port.
Simon Glass0c19b4d2017-08-04 16:34:28 -06001454
Anastasiia Lukianenko722bc5b2020-08-06 12:42:55 +03001455config CMD_PVBLOCK
1456 bool "Xen para-virtualized block device"
1457 depends on XEN
1458 select PVBLOCK
1459 help
1460 Xen para-virtualized block device support
1461
Tuomas Tynkkynen78e12902018-10-15 02:21:12 -07001462config CMD_VIRTIO
1463 bool "virtio"
1464 depends on VIRTIO
Bin Meng05173ec2021-02-25 17:22:45 +08001465 depends on HAVE_BLOCK_DEVICE
Tuomas Tynkkynen78e12902018-10-15 02:21:12 -07001466 default y if VIRTIO
1467 help
1468 VirtIO block device support
1469
Michael Walle82a00be2019-04-06 02:24:02 +02001470config CMD_WDT
1471 bool "wdt"
1472 depends on WDT
1473 help
1474 This provides commands to control the watchdog timer devices.
1475
Mario Six37c4a5f2018-08-09 14:51:21 +02001476config CMD_AXI
1477 bool "axi"
1478 depends on AXI
1479 help
1480 Enable the command "axi" for accessing AXI (Advanced eXtensible
1481 Interface) busses, a on-chip interconnect specification for managing
1482 functional blocks in SoC designs, which is also often used in designs
1483 involving FPGAs (e.g. communication with IP cores in Xilinx FPGAs).
Simon Glass72a8cf82016-01-17 20:53:51 -07001484endmenu
1485
1486
1487menu "Shell scripting commands"
1488
1489config CMD_ECHO
1490 bool "echo"
1491 default y
1492 help
1493 Echo args to console
1494
1495config CMD_ITEST
1496 bool "itest"
1497 default y
1498 help
1499 Return true/false on integer compare.
1500
1501config CMD_SOURCE
1502 bool "source"
1503 default y
1504 help
1505 Run script from memory
1506
1507config CMD_SETEXPR
1508 bool "setexpr"
1509 default y
1510 help
1511 Evaluate boolean and math expressions and store the result in an env
1512 variable.
1513 Also supports loading the value at a memory location into a variable.
1514 If CONFIG_REGEX is enabled, setexpr also supports a gsub function.
1515
Roland Gaudigf4f8d8b2021-07-23 12:29:21 +00001516config CMD_SETEXPR_FMT
1517 bool "setexpr_fmt"
Roland Gaudigf4f8d8b2021-07-23 12:29:21 +00001518 depends on CMD_SETEXPR
1519 help
1520 Evaluate format string expression and store result in an environment
1521 variable.
1522
Simon Glass72a8cf82016-01-17 20:53:51 -07001523endmenu
1524
Ruslan Trofymenko17030c72019-07-05 15:37:33 +03001525menu "Android support commands"
1526
1527config CMD_AB_SELECT
1528 bool "ab_select"
Ruslan Trofymenko17030c72019-07-05 15:37:33 +03001529 depends on ANDROID_AB
1530 help
1531 On Android devices with more than one boot slot (multiple copies of
1532 the kernel and system images) this provides a command to select which
1533 slot should be used to boot from and register the boot attempt. This
1534 is used by the new A/B update model where one slot is updated in the
1535 background while running from the other slot.
1536
1537endmenu
1538
Michal Simek3b3ea2c2018-02-26 16:01:02 +01001539if NET
1540
Joe Hershbergerd7a45ea2018-04-13 15:26:30 -05001541menuconfig CMD_NET
1542 bool "Network commands"
1543 default y
Adam Fordd7869b212018-07-20 23:03:57 -05001544 imply NETDEVICES
Joe Hershbergerd7a45ea2018-04-13 15:26:30 -05001545
1546if CMD_NET
1547
1548config CMD_BOOTP
1549 bool "bootp"
Simon Glass72a8cf82016-01-17 20:53:51 -07001550 default y
1551 help
Simon Glass72a8cf82016-01-17 20:53:51 -07001552 bootp - boot image via network using BOOTP/TFTP protocol
Joe Hershbergerd7a45ea2018-04-13 15:26:30 -05001553
Joe Hershbergere88b2562018-04-13 15:26:33 -05001554config CMD_DHCP
1555 bool "dhcp"
1556 depends on CMD_BOOTP
1557 help
1558 Boot image via network using DHCP/TFTP protocol
1559
Tom Rinia542e432022-02-25 11:19:50 -05001560config BOOTP_MAY_FAIL
1561 bool "Allow for the BOOTP/DHCP server to not be found"
1562 depends on CMD_BOOTP
1563 help
1564 If the DHCP server is not found after the configured retry count, the
1565 call will fail instead of starting over. This can be used to fail
1566 over to Link-local IP address configuration if the DHCP server is not
1567 available.
1568
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001569config BOOTP_BOOTPATH
Joe Hershberger8df69d92018-04-13 15:26:34 -05001570 bool "Request & store 'rootpath' from BOOTP/DHCP server"
Joe Hershberger3dfbc532018-04-13 15:26:37 -05001571 default y
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001572 depends on CMD_BOOTP
Joe Hershberger8df69d92018-04-13 15:26:34 -05001573 help
1574 Even though the config is called BOOTP_BOOTPATH, it stores the
1575 path in the variable 'rootpath'.
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001576
Tom Rinia542e432022-02-25 11:19:50 -05001577config BOOTP_VENDOREX
1578 bool "Support vendor extensions from BOOTP/DHCP server"
1579 depends on CMD_BOOTP
1580
1581config BOOTP_BOOTFILESIZE
1582 bool "Request & store 'bootfilesize' from BOOTP/DHCP server"
1583 depends on CMD_BOOTP
1584
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001585config BOOTP_DNS
Joe Hershberger8df69d92018-04-13 15:26:34 -05001586 bool "Request & store 'dnsip' from BOOTP/DHCP server"
Joe Hershberger3dfbc532018-04-13 15:26:37 -05001587 default y
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001588 depends on CMD_BOOTP
Joe Hershberger8df69d92018-04-13 15:26:34 -05001589 help
1590 The primary DNS server is stored as 'dnsip'. If two servers are
1591 returned, you must set BOOTP_DNS2 to store that second server IP
1592 also.
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001593
Joe Hershberger80449c02018-04-13 15:26:35 -05001594config BOOTP_DNS2
1595 bool "Store 'dnsip2' from BOOTP/DHCP server"
1596 depends on BOOTP_DNS
1597 help
1598 If a DHCP client requests the DNS server IP from a DHCP server,
1599 it is possible that more than one DNS serverip is offered to the
1600 client. If CONFIG_BOOTP_DNS2 is enabled, the secondary DNS
1601 server IP will be stored in the additional environment
1602 variable "dnsip2". The first DNS serverip is always
1603 stored in the variable "dnsip", when BOOTP_DNS is defined.
1604
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001605config BOOTP_GATEWAY
Joe Hershberger8df69d92018-04-13 15:26:34 -05001606 bool "Request & store 'gatewayip' from BOOTP/DHCP server"
Joe Hershberger3dfbc532018-04-13 15:26:37 -05001607 default y
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001608 depends on CMD_BOOTP
1609
1610config BOOTP_HOSTNAME
Joe Hershberger8df69d92018-04-13 15:26:34 -05001611 bool "Request & store 'hostname' from BOOTP/DHCP server"
Joe Hershberger3dfbc532018-04-13 15:26:37 -05001612 default y
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001613 depends on CMD_BOOTP
Joe Hershberger8df69d92018-04-13 15:26:34 -05001614 help
1615 The name may or may not be qualified with the local domain name.
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001616
Alexander Grafbdce3402018-06-15 10:29:28 +02001617config BOOTP_PREFER_SERVERIP
1618 bool "serverip variable takes precedent over DHCP server IP."
1619 depends on CMD_BOOTP
1620 help
1621 By default a BOOTP/DHCP reply will overwrite the 'serverip' variable.
1622
1623 With this option enabled, the 'serverip' variable in the environment
1624 takes precedence over DHCP server IP and will only be set by the DHCP
1625 server if not already set in the environment.
1626
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001627config BOOTP_SUBNETMASK
Joe Hershberger8df69d92018-04-13 15:26:34 -05001628 bool "Request & store 'netmask' from BOOTP/DHCP server"
Joe Hershberger3dfbc532018-04-13 15:26:37 -05001629 default y
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001630 depends on CMD_BOOTP
1631
Tom Rinia542e432022-02-25 11:19:50 -05001632config BOOTP_NISDOMAIN
1633 bool "Request & store 'nisdomain' from BOOTP/DHCP server"
1634 depends on CMD_BOOTP
1635
Chris Packham9b23c732018-05-03 20:19:02 +12001636config BOOTP_NTPSERVER
1637 bool "Request & store 'ntpserverip' from BOOTP/DHCP server"
1638 depends on CMD_BOOTP
1639
Tom Rinia542e432022-02-25 11:19:50 -05001640config BOOTP_TIMEOFFSET
1641 bool "Request & store 'timeoffset' from BOOTP/DHCP server"
1642 depends on CMD_BOOTP && CMD_SNTP
1643
Ramon Fried3eaac632019-07-18 21:43:30 +03001644config CMD_PCAP
1645 bool "pcap capture"
1646 help
1647 Selecting this will allow capturing all Ethernet packets and store
1648 them in physical memory in a PCAP formated file,
1649 later to be analyzed by PCAP reader application (IE. WireShark).
1650
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001651config BOOTP_PXE
Joe Hershberger2b9f4862018-04-13 15:26:36 -05001652 bool "Send PXE client arch to BOOTP/DHCP server"
Joe Hershberger3dfbc532018-04-13 15:26:37 -05001653 default y
Joe Hershberger2b9f4862018-04-13 15:26:36 -05001654 depends on CMD_BOOTP && CMD_PXE
1655 help
1656 Supported for ARM, ARM64, and x86 for now.
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001657
1658config BOOTP_PXE_CLIENTARCH
1659 hex
Joe Hershberger2b9f4862018-04-13 15:26:36 -05001660 depends on BOOTP_PXE
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001661 default 0x16 if ARM64
1662 default 0x15 if ARM
1663 default 0 if X86
1664
1665config BOOTP_VCI_STRING
1666 string
1667 depends on CMD_BOOTP
Michal Simek4bbd6b12018-04-26 18:21:29 +05301668 default "U-Boot.armv7" if CPU_V7A || CPU_V7M || CPU_V7R
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001669 default "U-Boot.armv8" if ARM64
1670 default "U-Boot.arm" if ARM
1671 default "U-Boot"
1672
Joe Hershbergerd7a45ea2018-04-13 15:26:30 -05001673config CMD_TFTPBOOT
1674 bool "tftpboot"
1675 default y
1676 help
Simon Glass72a8cf82016-01-17 20:53:51 -07001677 tftpboot - boot image via network using TFTP protocol
1678
1679config CMD_TFTPPUT
1680 bool "tftp put"
Joe Hershbergerd7a45ea2018-04-13 15:26:30 -05001681 depends on CMD_TFTPBOOT
Simon Glass72a8cf82016-01-17 20:53:51 -07001682 help
1683 TFTP put command, for uploading files to a server
1684
1685config CMD_TFTPSRV
1686 bool "tftpsrv"
Joe Hershbergerd7a45ea2018-04-13 15:26:30 -05001687 depends on CMD_TFTPBOOT
Simon Glass72a8cf82016-01-17 20:53:51 -07001688 help
1689 Act as a TFTP server and boot the first received file
1690
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001691config NET_TFTP_VARS
1692 bool "Control TFTP timeout and count through environment"
1693 depends on CMD_TFTPBOOT
1694 default y
1695 help
1696 If set, allows controlling the TFTP timeout through the
1697 environment variable tftptimeout, and the TFTP maximum
1698 timeout count through the variable tftptimeoutcountmax.
1699 If unset, timeout and maximum are hard-defined as 1 second
1700 and 10 timouts per TFTP transfer.
1701
Simon Glass72a8cf82016-01-17 20:53:51 -07001702config CMD_RARP
1703 bool "rarpboot"
1704 help
1705 Boot image via network using RARP/TFTP protocol
1706
Simon Glass72a8cf82016-01-17 20:53:51 -07001707config CMD_NFS
1708 bool "nfs"
1709 default y
1710 help
1711 Boot image via network using NFS protocol.
1712
Tom Rinieeda7622022-03-11 09:12:05 -05001713config NFS_TIMEOUT
1714 int "Timeout in milliseconds for NFS mounts"
1715 depends on CMD_NFS
1716 default 2000
1717 help
1718 Timeout in milliseconds used in NFS protocol. If you encounter
1719 "ERROR: Cannot umount" in nfs command, try longer timeout such as
1720 10000.
1721
Dinh Nguyenab8243e2016-04-21 09:05:23 -05001722config CMD_MII
1723 bool "mii"
Ramon Fried7d9701d2019-09-13 18:25:03 +03001724 imply CMD_MDIO
Dinh Nguyenab8243e2016-04-21 09:05:23 -05001725 help
Ramon Fried7d9701d2019-09-13 18:25:03 +03001726 If set, allows 802.3(clause 22) MII Management functions interface access
1727 The management interface specified in Clause 22 provides
1728 a simple, two signal, serial interface to connect a
1729 Station Management entity and a managed PHY for providing access
1730 to management parameters and services.
1731 The interface is referred to as the MII management interface.
1732
Tom Rinicc386f12022-03-18 08:38:27 -04001733config MII_INIT
1734 bool "Call mii_init() in the mii command"
1735 depends on CMD_MII && (MPC8XX_FEC || FSLDMAFE || MCFFEC)
1736
Ramon Fried7d9701d2019-09-13 18:25:03 +03001737config CMD_MDIO
1738 bool "mdio"
1739 depends on PHYLIB
1740 help
1741 If set, allows Enable 802.3(clause 45) MDIO interface registers access
1742 The MDIO interface is orthogonal to the MII interface and extends
1743 it by adding access to more registers through indirect addressing.
Dinh Nguyenab8243e2016-04-21 09:05:23 -05001744
Simon Glass72a8cf82016-01-17 20:53:51 -07001745config CMD_PING
1746 bool "ping"
1747 help
1748 Send ICMP ECHO_REQUEST to network host
1749
1750config CMD_CDP
1751 bool "cdp"
1752 help
1753 Perform CDP network configuration
1754
1755config CMD_SNTP
1756 bool "sntp"
Philippe Reynes912ece42020-09-18 14:13:02 +02001757 select PROT_UDP
Simon Glass72a8cf82016-01-17 20:53:51 -07001758 help
1759 Synchronize RTC via network
1760
1761config CMD_DNS
1762 bool "dns"
1763 help
1764 Lookup the IP of a hostname
1765
1766config CMD_LINK_LOCAL
1767 bool "linklocal"
Joe Hershberger6f0dc0c2018-04-30 12:45:22 -05001768 select LIB_RAND
Simon Glass72a8cf82016-01-17 20:53:51 -07001769 help
1770 Acquire a network IP address using the link-local protocol
1771
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001772endif
1773
Simon Glassef072202017-05-17 03:25:17 -06001774config CMD_ETHSW
1775 bool "ethsw"
1776 help
1777 Allow control of L2 Ethernet switch commands. These are supported
1778 by the vsc9953 Ethernet driver at present. Sub-commands allow
1779 operations such as enabling / disabling a port and
1780 viewing/maintaining the filtering database (FDB)
1781
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001782config CMD_PXE
1783 bool "pxe"
1784 select MENU
1785 help
1786 Boot image via network using PXE protocol
Michal Simek3b3ea2c2018-02-26 16:01:02 +01001787
Lothar Feltend8970da2018-06-22 22:29:54 +02001788config CMD_WOL
1789 bool "wol"
1790 help
1791 Wait for wake-on-lan Magic Packet
1792
Joe Hershbergerd7a45ea2018-04-13 15:26:30 -05001793endif
Simon Glass72a8cf82016-01-17 20:53:51 -07001794
1795menu "Misc commands"
1796
Simon Glass0f710252017-04-26 22:27:55 -06001797config CMD_BMP
1798 bool "Enable 'bmp' command"
1799 depends on LCD || DM_VIDEO || VIDEO
1800 help
Andrius Å tikonas60a9aeb2019-09-23 22:43:41 +01001801 This provides a way to obtain information about a BMP-format image
Simon Glass0f710252017-04-26 22:27:55 -06001802 and to display it. BMP (which presumably stands for BitMaP) is a
1803 file format defined by Microsoft which supports images of various
1804 depths, formats and compression methods. Headers on the file
1805 determine the formats used. This command can be used by first loading
1806 the image into RAM, then using this command to look at it or display
1807 it.
1808
Alex Kiernanb11ed7d2018-05-12 05:49:47 +00001809config CMD_BOOTCOUNT
1810 bool "bootcount"
1811 depends on BOOTCOUNT_LIMIT
1812 help
1813 Enable the bootcount command, which allows interrogation and
1814 reset of the bootcounter.
1815
Simon Glass4893e342017-04-26 22:27:56 -06001816config CMD_BSP
1817 bool "Enable board-specific commands"
1818 help
1819 (deprecated: instead, please define a Kconfig option for each command)
1820
1821 Some boards have board-specific commands which are only enabled
1822 during developemnt and need to be turned off for production. This
1823 option provides a way to control this. The commands that are enabled
1824 vary depending on the board.
1825
Eric Nelsone40cf342016-03-28 10:05:44 -07001826config CMD_BLOCK_CACHE
1827 bool "blkcache - control and stats for block cache"
1828 depends on BLOCK_CACHE
1829 default y if BLOCK_CACHE
1830 help
1831 Enable the blkcache command, which can be used to control the
1832 operation of the cache functions.
1833 This is most useful when fine-tuning the operation of the cache
1834 during development, but also allows the cache to be disabled when
1835 it might hurt performance (e.g. when using the ums command).
1836
Philippe Reynes325141a2020-07-24 18:19:47 +02001837config CMD_BUTTON
1838 bool "button"
1839 depends on BUTTON
1840 default y if BUTTON
1841 help
1842 Enable the 'button' command which allows to get the status of
1843 buttons supported by the board. The buttonss can be listed with
1844 'button list' and state can be known with 'button <label>'.
1845 Any button drivers can be controlled with this command, e.g.
1846 button_gpio.
1847
Dinh Nguyenab8243e2016-04-21 09:05:23 -05001848config CMD_CACHE
1849 bool "icache or dcache"
1850 help
1851 Enable the "icache" and "dcache" commands
1852
Heinrich Schuchardt29cfc092018-09-07 19:43:11 +02001853config CMD_CONITRACE
1854 bool "conitrace - trace console input codes"
1855 help
1856 Enable the 'conitrace' command which displays the codes received
1857 from the console input as hexadecimal numbers.
1858
Anatolij Gustschin4e92e602018-12-01 10:47:20 +01001859config CMD_CLS
1860 bool "Enable clear screen command 'cls'"
Simon Glass1fa43ca2022-01-23 07:04:08 -07001861 depends on DM_VIDEO || LCD || VIDEO
Anatolij Gustschin4e92e602018-12-01 10:47:20 +01001862 default y if LCD
1863 help
1864 Enable the 'cls' command which clears the screen contents
1865 on video frame buffer.
1866
AKASHI Takahiro59df7e72019-02-25 15:54:38 +09001867config CMD_EFIDEBUG
1868 bool "efidebug - display/configure UEFI environment"
1869 depends on EFI_LOADER
Heinrich Schuchardt64b5ba42019-05-11 09:53:33 +02001870 select EFI_DEVICE_PATH_TO_TEXT
AKASHI Takahiro59df7e72019-02-25 15:54:38 +09001871 help
1872 Enable the 'efidebug' command which provides a subset of UEFI
1873 shell utility with simplified functionality. It will be useful
1874 particularly for managing boot parameters as well as examining
1875 various EFI status for debugging.
1876
Heinrich Schuchardtdab87882018-12-26 17:20:35 +01001877config CMD_EXCEPTION
1878 bool "exception - raise exception"
Heinrich Schuchardt3a5ec032020-11-12 00:29:57 +01001879 depends on ARM || RISCV || SANDBOX || X86
Heinrich Schuchardtdab87882018-12-26 17:20:35 +01001880 help
1881 Enable the 'exception' command which allows to raise an exception.
1882
Simon Glassffe20522017-04-10 11:34:59 -06001883config CMD_LED
1884 bool "led"
Jan Kiszka2ab6e742019-01-03 09:08:42 +01001885 depends on LED
Simon Glassffe20522017-04-10 11:34:59 -06001886 default y if LED
1887 help
1888 Enable the 'led' command which allows for control of LEDs supported
1889 by the board. The LEDs can be listed with 'led list' and controlled
1890 with led on/off/togle/blink. Any LED drivers can be controlled with
1891 this command, e.g. led_gpio.
1892
Chris Packhamc9032ce2017-04-29 15:20:28 +12001893config CMD_DATE
1894 bool "date"
1895 default y if DM_RTC
AKASHI Takahiro05429b62019-11-13 09:44:49 +09001896 select LIB_DATE
Chris Packhamc9032ce2017-04-29 15:20:28 +12001897 help
1898 Enable the 'date' command for getting/setting the time/date in RTC
1899 devices.
1900
Rasmus Villemoes803a8592020-07-06 22:01:15 +02001901config CMD_RTC
1902 bool "rtc"
1903 depends on DM_RTC
1904 help
1905 Enable the 'rtc' command for low-level access to RTC devices.
1906
Simon Glass72a8cf82016-01-17 20:53:51 -07001907config CMD_TIME
1908 bool "time"
1909 help
1910 Run commands and summarize execution time.
1911
Simon Glassd91a9d72017-05-17 03:25:23 -06001912config CMD_GETTIME
1913 bool "gettime - read elapsed time"
1914 help
1915 Enable the 'gettime' command which reads the elapsed time since
1916 U-Boot started running. This shows the time in seconds and
1917 milliseconds. See also the 'bootstage' command which provides more
1918 flexibility for boot timing.
1919
Heinrich Schuchardt4f24ac02019-12-24 22:17:37 +01001920config CMD_RNG
1921 bool "rng command"
1922 depends on DM_RNG
1923 select HEXDUMP
1924 help
1925 Print bytes from the hardware random number generator.
1926
Chris Morganfe3dde32021-08-25 11:22:57 -05001927config CMD_KASLRSEED
1928 bool "kaslrseed"
1929 depends on DM_RNG
1930 help
1931 Set the kaslr-seed in the chosen node with entropy provided by a
1932 hardware random number generator.
1933
Bin Meng16060852020-10-13 18:45:05 +08001934config CMD_SLEEP
Simon Glass72a8cf82016-01-17 20:53:51 -07001935 bool "sleep"
1936 default y
1937 help
1938 Delay execution for some time
1939
Ashok Reddy Soma480245c2022-01-17 10:16:50 +01001940config CMD_MP
1941 bool "support for multiprocessor commands"
1942 depends on MP
1943 default y
Siva Durga Prasad Paladugu0fd2290c2018-06-19 12:24:23 +02001944 help
Ashok Reddy Soma480245c2022-01-17 10:16:50 +01001945 This enables commands to bringup different processors
1946 in multiprocessor cases.
Siva Durga Prasad Paladugu0fd2290c2018-06-19 12:24:23 +02001947
Simon Glass72a8cf82016-01-17 20:53:51 -07001948config CMD_TIMER
1949 bool "timer"
1950 help
1951 Access the system timer.
1952
Simon Glass72a8cf82016-01-17 20:53:51 -07001953config CMD_SOUND
1954 bool "sound"
1955 depends on SOUND
1956 help
1957 This provides basic access to the U-Boot's sound support. The main
1958 feature is to play a beep.
1959
1960 sound init - set up sound system
1961 sound play - play a sound
1962
Patrice Chotard993c9122019-11-25 09:07:38 +01001963config CMD_SYSBOOT
1964 bool "sysboot"
1965 select MENU
1966 help
1967 Boot image via local extlinux.conf file
1968
Miao Yan18686592016-05-22 19:37:17 -07001969config CMD_QFW
Tom Rinidd6f3ab2016-05-06 10:40:22 -04001970 bool "qfw"
Miao Yanfcf5c042016-05-22 19:37:14 -07001971 select QFW
Tom Rinidd6f3ab2016-05-06 10:40:22 -04001972 help
1973 This provides access to the QEMU firmware interface. The main
1974 feature is to allow easy loading of files passed to qemu-system
1975 via -kernel / -initrd
Konstantin Porotchkinfa61ef62016-12-08 12:22:28 +02001976
Frédéric Danis9744d1a2020-03-20 10:59:22 +01001977config CMD_PSTORE
1978 bool "pstore"
1979 help
1980 This provides access to Linux PStore with Rammoops backend. The main
1981 feature is to allow to display or save PStore records.
1982
1983 See doc/pstore.rst for more information.
1984
1985if CMD_PSTORE
1986
1987config CMD_PSTORE_MEM_ADDR
1988 hex "Memory Address"
1989 depends on CMD_PSTORE
1990 help
1991 Base addr used for PStore ramoops memory, should be identical to
1992 ramoops.mem_address parameter used by kernel
1993
1994config CMD_PSTORE_MEM_SIZE
1995 hex "Memory size"
1996 depends on CMD_PSTORE
1997 default "0x10000"
1998 help
1999 Size of PStore ramoops memory, should be identical to ramoops.mem_size
2000 parameter used by kernel, a power of 2 and larger than the sum of the
2001 record sizes
2002
2003config CMD_PSTORE_RECORD_SIZE
2004 hex "Dump record size"
2005 depends on CMD_PSTORE
2006 default "0x1000"
2007 help
2008 Size of each dump done on oops/panic, should be identical to
2009 ramoops.record_size parameter used by kernel and a power of 2
2010 Must be non-zero
2011
2012config CMD_PSTORE_CONSOLE_SIZE
2013 hex "Kernel console log size"
2014 depends on CMD_PSTORE
2015 default "0x1000"
2016 help
2017 Size of kernel console log, should be identical to
2018 ramoops.console_size parameter used by kernel and a power of 2
2019 Must be non-zero
2020
2021config CMD_PSTORE_FTRACE_SIZE
2022 hex "FTrace log size"
2023 depends on CMD_PSTORE
2024 default "0x1000"
2025 help
2026 Size of ftrace log, should be identical to ramoops.ftrace_size
2027 parameter used by kernel and a power of 2
2028
2029config CMD_PSTORE_PMSG_SIZE
2030 hex "User space message log size"
2031 depends on CMD_PSTORE
2032 default "0x1000"
2033 help
2034 Size of user space message log, should be identical to
2035 ramoops.pmsg_size parameter used by kernel and a power of 2
2036
2037config CMD_PSTORE_ECC_SIZE
2038 int "ECC size"
2039 depends on CMD_PSTORE
2040 default "0"
2041 help
2042 if non-zero, the option enables ECC support and specifies ECC buffer
2043 size in bytes (1 is a special value, means 16 bytes ECC), should be
2044 identical to ramoops.ramoops_ecc parameter used by kernel
2045
2046endif
2047
Konstantin Porotchkinfa61ef62016-12-08 12:22:28 +02002048source "cmd/mvebu/Kconfig"
2049
Simon Glass3cef3b32017-08-04 16:34:55 -06002050config CMD_TERMINAL
2051 bool "terminal - provides a way to attach a serial terminal"
2052 help
2053 Provides a 'cu'-like serial terminal command. This can be used to
2054 access other serial ports from the system console. The terminal
2055 is very simple with no special processing of characters. As with
2056 cu, you can press ~. (tilde followed by period) to exit.
2057
Simon Glass1aa4e8d2017-08-04 16:35:02 -06002058config CMD_UUID
2059 bool "uuid, guid - generation of unique IDs"
Adam Forda451bc22018-02-06 12:14:28 -06002060 select LIB_UUID
Simon Glass1aa4e8d2017-08-04 16:35:02 -06002061 help
2062 This enables two commands:
2063
2064 uuid - generate random Universally Unique Identifier
2065 guid - generate Globally Unique Identifier based on random UUID
2066
2067 The two commands are very similar except for the endianness of the
2068 output.
2069
Simon Glass72a8cf82016-01-17 20:53:51 -07002070endmenu
2071
Lokesh Vutla5cd96612017-12-29 11:47:49 +05302072source "cmd/ti/Kconfig"
2073
Simon Glass72a8cf82016-01-17 20:53:51 -07002074config CMD_BOOTSTAGE
2075 bool "Enable the 'bootstage' command"
2076 depends on BOOTSTAGE
2077 help
2078 Add a 'bootstage' command which supports printing a report
2079 and un/stashing of bootstage data.
2080
2081menu "Power commands"
2082config CMD_PMIC
2083 bool "Enable Driver Model PMIC command"
2084 depends on DM_PMIC
2085 help
2086 This is the pmic command, based on a driver model pmic's API.
2087 Command features are unchanged:
2088 - list - list pmic devices
2089 - pmic dev <id> - show or [set] operating pmic device (NEW)
2090 - pmic dump - dump registers
2091 - pmic read address - read byte of register at address
2092 - pmic write address - write byte to register at address
2093 The only one change for this command is 'dev' subcommand.
2094
2095config CMD_REGULATOR
2096 bool "Enable Driver Model REGULATOR command"
2097 depends on DM_REGULATOR
2098 help
2099 This command is based on driver model regulator's API.
2100 User interface features:
2101 - list - list regulator devices
2102 - regulator dev <id> - show or [set] operating regulator device
2103 - regulator info - print constraints info
2104 - regulator status - print operating status
2105 - regulator value <val] <-f> - print/[set] voltage value [uV]
2106 - regulator current <val> - print/[set] current value [uA]
2107 - regulator mode <id> - print/[set] operating mode id
2108 - regulator enable - enable the regulator output
2109 - regulator disable - disable the regulator output
2110
2111 The '-f' (force) option can be used for set the value which exceeds
2112 the limits, which are found in device-tree and are kept in regulator's
Simon Glasscaa4daa2020-12-03 16:55:18 -07002113 uclass plat structure.
Simon Glass72a8cf82016-01-17 20:53:51 -07002114
2115endmenu
2116
2117menu "Security commands"
Simon Glassb1a873d2017-04-26 22:27:49 -06002118config CMD_AES
2119 bool "Enable the 'aes' command"
2120 select AES
2121 help
2122 This provides a means to encrypt and decrypt data using the AES
2123 (Advanced Encryption Standard). This algorithm uses a symetric key
2124 and is widely used as a streaming cipher. Different key lengths are
2125 supported by the algorithm but this command only supports 128 bits
2126 at present.
2127
Simon Glassc04b9b32017-04-26 22:27:53 -06002128config CMD_BLOB
2129 bool "Enable the 'blob' command"
Aymen Sghaier25324292021-03-25 17:30:27 +08002130 depends on !MX6ULL && !MX6SLL && !MX6SL
2131 select IMX_HAB if ARCH_MX6 || ARCH_MX7 || ARCH_MX7ULP || ARCH_IMX8M
Simon Glassc04b9b32017-04-26 22:27:53 -06002132 help
2133 This is used with the Freescale secure boot mechanism.
2134
2135 Freescale's SEC block has built-in Blob Protocol which provides
2136 a method for protecting user-defined data across system power
2137 cycles. SEC block protects data in a data structure called a Blob,
2138 which provides both confidentiality and integrity protection.
2139
2140 Encapsulating data as a blob
2141 Each time that the Blob Protocol is used to protect data, a
2142 different randomly generated key is used to encrypt the data.
2143 This random key is itself encrypted using a key which is derived
2144 from SoC's non-volatile secret key and a 16 bit Key identifier.
2145 The resulting encrypted key along with encrypted data is called a
2146 blob. The non-volatile secure key is available for use only during
2147 secure boot.
2148
2149 During decapsulation, the reverse process is performed to get back
2150 the original data.
2151
2152 Sub-commands:
Michal Simek6e7bdde2018-07-23 15:55:12 +02002153 blob enc - encapsulating data as a cryptgraphic blob
Simon Glassc04b9b32017-04-26 22:27:53 -06002154 blob dec - decapsulating cryptgraphic blob to get the data
2155
2156 Syntax:
2157
2158 blob enc src dst len km
2159
2160 Encapsulate and create blob of data $len bytes long
2161 at address $src and store the result at address $dst.
2162 $km is the 16 byte key modifier is also required for
2163 generation/use as key for cryptographic operation. Key
2164 modifier should be 16 byte long.
2165
2166 blob dec src dst len km
2167
2168 Decapsulate the blob of data at address $src and
2169 store result of $len byte at addr $dst.
2170 $km is the 16 byte key modifier is also required for
2171 generation/use as key for cryptographic operation. Key
2172 modifier should be 16 byte long.
2173
Simon Glass551c3932017-05-17 03:25:25 -06002174config CMD_HASH
2175 bool "Support 'hash' command"
Simon Glassd70f9192017-05-17 09:05:34 -06002176 select HASH
Simon Glass551c3932017-05-17 03:25:25 -06002177 help
2178 This provides a way to hash data in memory using various supported
2179 algorithms (such as SHA1, MD5, CRC32). The computed digest can be
2180 saved to memory or to an environment variable. It is also possible
2181 to verify a hash against data in memory.
2182
Michalis Pappas666028f2018-04-13 10:40:57 +03002183config CMD_HVC
2184 bool "Support the 'hvc' command"
2185 depends on ARM_SMCCC
2186 help
2187 Allows issuing Hypervisor Calls (HVCs). Mostly useful for
2188 development and testing.
2189
2190config CMD_SMC
2191 bool "Support the 'smc' command"
2192 depends on ARM_SMCCC
2193 help
2194 Allows issuing Secure Monitor Calls (SMCs). Mostly useful for
2195 development and testing.
2196
Daniel Thompson221a9492017-05-19 17:26:58 +01002197config HASH_VERIFY
2198 bool "hash -v"
2199 depends on CMD_HASH
2200 help
2201 Add -v option to verify data against a hash.
2202
Jorge Ramirez-Ortiz26839e52021-02-14 16:27:24 +01002203config CMD_SCP03
2204 bool "scp03 - SCP03 enable and rotate/provision operations"
2205 depends on SCP03
2206 help
2207 This command provides access to a Trusted Application
2208 running in a TEE to request Secure Channel Protocol 03
2209 (SCP03) enablement and/or rotation of its SCP03 keys.
2210
Miquel Raynal9f9ce3c2018-05-15 11:57:05 +02002211config CMD_TPM_V1
2212 bool
2213
2214config CMD_TPM_V2
2215 bool
2216
Simon Glass72a8cf82016-01-17 20:53:51 -07002217config CMD_TPM
2218 bool "Enable the 'tpm' command"
Miquel Raynal9f9ce3c2018-05-15 11:57:05 +02002219 depends on TPM_V1 || TPM_V2
2220 select CMD_TPM_V1 if TPM_V1
2221 select CMD_TPM_V2 if TPM_V2
Simon Glass72a8cf82016-01-17 20:53:51 -07002222 help
2223 This provides a means to talk to a TPM from the command line. A wide
2224 range of commands if provided - see 'tpm help' for details. The
2225 command requires a suitable TPM on your board and the correct driver
2226 must be enabled.
2227
Miquel Raynal9f9ce3c2018-05-15 11:57:05 +02002228if CMD_TPM
2229
Simon Glass72a8cf82016-01-17 20:53:51 -07002230config CMD_TPM_TEST
2231 bool "Enable the 'tpm test' command"
Miquel Raynal9f9ce3c2018-05-15 11:57:05 +02002232 depends on TPM_V1
Simon Glass72a8cf82016-01-17 20:53:51 -07002233 help
Miquel Raynal9f9ce3c2018-05-15 11:57:05 +02002234 This provides a a series of tests to confirm that the TPMv1.x is
2235 working correctly. The tests cover initialisation, non-volatile RAM,
2236 extend, global lock and checking that timing is within expectations.
2237 The tests pass correctly on Infineon TPMs but may need to be adjusted
Simon Glass72a8cf82016-01-17 20:53:51 -07002238 for other devices.
2239
Miquel Raynal9f9ce3c2018-05-15 11:57:05 +02002240endif
2241
Simon Glass72a8cf82016-01-17 20:53:51 -07002242endmenu
2243
Moritz Fischerbfeba012016-10-04 17:08:08 -07002244menu "Firmware commands"
2245config CMD_CROS_EC
2246 bool "Enable crosec command"
2247 depends on CROS_EC
2248 default y
2249 help
2250 Enable command-line access to the Chrome OS EC (Embedded
2251 Controller). This provides the 'crosec' command which has
2252 a number of sub-commands for performing EC tasks such as
2253 updating its flash, accessing a small saved context area
2254 and talking to the I2C bus behind the EC (if there is one).
2255endmenu
2256
Dinh Nguyenab8243e2016-04-21 09:05:23 -05002257menu "Filesystem commands"
Marek Behún9d845502017-09-03 17:00:30 +02002258config CMD_BTRFS
2259 bool "Enable the 'btrsubvol' command"
2260 select FS_BTRFS
2261 help
2262 This enables the 'btrsubvol' command to list subvolumes
2263 of a BTRFS filesystem. There are no special commands for
2264 listing BTRFS directories or loading BTRFS files - this
2265 can be done by the generic 'fs' commands (see CMD_FS_GENERIC)
2266 when BTRFS is enabled (see FS_BTRFS).
2267
Simon Glassd66a10f2017-04-26 22:27:58 -06002268config CMD_CBFS
2269 bool "Enable the 'cbfs' command"
Simon Glassdeb959992017-04-26 22:27:59 -06002270 depends on FS_CBFS
Simon Glassd66a10f2017-04-26 22:27:58 -06002271 help
2272 Define this to enable support for reading from a Coreboot
2273 filesystem. This is a ROM-based filesystem used for accessing files
2274 on systems that use coreboot as the first boot-loader and then load
2275 U-Boot to actually boot the Operating System. Available commands are
2276 cbfsinit, cbfsinfo, cbfsls and cbfsload.
2277
Simon Glass97072742017-04-26 22:28:03 -06002278config CMD_CRAMFS
2279 bool "Enable the 'cramfs' command"
Simon Glass80e44cf2017-04-26 22:28:04 -06002280 depends on FS_CRAMFS
Simon Glass97072742017-04-26 22:28:03 -06002281 help
2282 This provides commands for dealing with CRAMFS (Compressed ROM
2283 filesystem). CRAMFS is useful when space is tight since files are
2284 compressed. Two commands are provided:
2285
2286 cramfsls - lists files in a cramfs image
2287 cramfsload - loads a file from a cramfs image
2288
Huang Jianan739941e2022-02-26 15:05:50 +08002289config CMD_EROFS
2290 bool "EROFS command support"
2291 select FS_EROFS
2292 help
2293 Support for the EROFS fs
2294
Dinh Nguyenab8243e2016-04-21 09:05:23 -05002295config CMD_EXT2
2296 bool "ext2 command support"
Tuomas Tynkkynen3d22bae2018-01-05 02:45:17 +02002297 select FS_EXT4
Dinh Nguyenab8243e2016-04-21 09:05:23 -05002298 help
2299 Enables EXT2 FS command
2300
2301config CMD_EXT4
2302 bool "ext4 command support"
Tuomas Tynkkynen3d22bae2018-01-05 02:45:17 +02002303 select FS_EXT4
Dinh Nguyenab8243e2016-04-21 09:05:23 -05002304 help
2305 Enables EXT4 FS command
2306
2307config CMD_EXT4_WRITE
2308 depends on CMD_EXT4
2309 bool "ext4 write command support"
Tuomas Tynkkynen3d22bae2018-01-05 02:45:17 +02002310 select EXT4_WRITE
Dinh Nguyenab8243e2016-04-21 09:05:23 -05002311 help
2312 Enables EXT4 FS write command
2313
2314config CMD_FAT
2315 bool "FAT command support"
Sekhar Norieedfb892017-06-02 17:53:59 +05302316 select FS_FAT
Dinh Nguyenab8243e2016-04-21 09:05:23 -05002317 help
2318 Support for the FAT fs
2319
Joao Marcos Costabba604b2020-07-30 15:33:48 +02002320config CMD_SQUASHFS
2321 bool "SquashFS command support"
2322 select FS_SQUASHFS
2323 help
2324 Enables SquashFS filesystem commands (e.g. load, ls).
2325
Dinh Nguyenab8243e2016-04-21 09:05:23 -05002326config CMD_FS_GENERIC
2327 bool "filesystem commands"
2328 help
2329 Enables filesystem commands (e.g. load, ls) that work for multiple
2330 fs types.
Maxime Ripard0269dfa2017-02-27 18:22:04 +01002331
Josua Mayerefbe99c2017-04-24 10:10:45 +02002332config CMD_FS_UUID
2333 bool "fsuuid command"
2334 help
2335 Enables fsuuid command for filesystem UUID.
2336
Simon Glassb8682a72017-05-17 03:25:37 -06002337config CMD_JFFS2
2338 bool "jffs2 command"
Simon Glass59e12a42017-05-17 03:25:38 -06002339 select FS_JFFS2
Simon Glassb8682a72017-05-17 03:25:37 -06002340 help
2341 Enables commands to support the JFFS2 (Journalling Flash File System
2342 version 2) filesystem. This enables fsload, ls and fsinfo which
2343 provide the ability to load files, list directories and obtain
2344 filesystem information.
2345
Tom Rini968c6212021-12-17 18:08:47 -05002346config JFFS2_DEV
2347 string "Default device for JFFS2"
2348 depends on CMD_JFFS2
2349 default "nor0"
2350 help
2351 The default device to use with the jffs2 command.
2352
2353config JFFS2_PART_OFFSET
2354 hex "Default offset within flash to locate the JFFS2 image"
2355 depends on CMD_JFFS2
2356 default 0x0
2357 help
2358 The default offset within flash to locate the JFFS2 image.
2359
2360config JFFS2_PART_SIZE
2361 hex "Default size of JFFS2 partition"
2362 depends on CMD_JFFS2
2363 default 0xFFFFFFFF
2364 help
2365 The default size of the JFFS2 partition
2366
Maxime Ripard0269dfa2017-02-27 18:22:04 +01002367config CMD_MTDPARTS
Maxime Ripard0269dfa2017-02-27 18:22:04 +01002368 bool "MTD partition support"
Miquel Raynalff102c52019-10-25 19:39:30 +02002369 depends on MTD
Maxime Ripard0269dfa2017-02-27 18:22:04 +01002370 help
Miquel Raynal938db6f2018-09-29 12:58:30 +02002371 MTD partitioning tool support.
2372 It is strongly encouraged to avoid using this command
2373 anymore along with 'sf', 'nand', 'onenand'. One can still
2374 declare the partitions in the mtdparts environment variable
2375 but better use the MTD stack and the 'mtd' command instead.
Maxime Ripard0269dfa2017-02-27 18:22:04 +01002376
Simon Glasscb70e6c2017-08-04 16:34:30 -06002377config CMD_MTDPARTS_SPREAD
2378 bool "Padd partition size to take account of bad blocks"
2379 depends on CMD_MTDPARTS
2380 help
2381 This enables the 'spread' sub-command of the mtdparts command.
2382 This command will modify the existing mtdparts variable by increasing
2383 the size of the partitions such that 1) each partition's net size is
2384 at least as large as the size specified in the mtdparts variable and
2385 2) each partition starts on a good block.
2386
Alexander Dahl672c5702019-10-30 16:53:55 +01002387config CMD_MTDPARTS_SHOW_NET_SIZES
2388 bool "Show net size (w/o bad blocks) of partitions"
2389 depends on CMD_MTDPARTS
2390 help
2391 Adds two columns to the printed partition table showing the
2392 effective usable size of a partition, if bad blocks are taken
2393 into account.
2394
Miquel Raynal587f4452019-10-03 19:50:25 +02002395config MTDIDS_DEFAULT
2396 string "Default MTD IDs"
Miquel Raynalff102c52019-10-25 19:39:30 +02002397 depends on MTD || SPI_FLASH
Miquel Raynal587f4452019-10-03 19:50:25 +02002398 help
2399 Defines a default MTD IDs list for use with MTD partitions in the
2400 Linux MTD command line partitions format.
2401
2402config MTDPARTS_DEFAULT
2403 string "Default MTD partition scheme"
Miquel Raynalff102c52019-10-25 19:39:30 +02002404 depends on MTD || SPI_FLASH
Miquel Raynal587f4452019-10-03 19:50:25 +02002405 help
2406 Defines a default MTD partitioning scheme in the Linux MTD command
2407 line partitions format
2408
Simon Glassf8803a92017-08-04 16:34:41 -06002409config CMD_REISER
2410 bool "reiser - Access to reiserfs filesystems"
2411 help
2412 This provides two commands which operate on a resierfs filesystem,
2413 commonly used some years ago:
2414
2415 reiserls - list files
2416 reiserload - load a file
2417
Simon Glass7a764312017-08-04 16:34:58 -06002418config CMD_YAFFS2
2419 bool "yaffs2 - Access of YAFFS2 filesystem"
2420 depends on YAFFS2
2421 default y
2422 help
2423 This provides commands for accessing a YAFFS2 filesystem. Yet
2424 Another Flash Filesystem 2 is a filesystem designed specifically
2425 for NAND flash. It incorporates bad-block management and ensures
2426 that device writes are sequential regardless of filesystem
2427 activity.
2428
Simon Glass54feea12017-08-04 16:35:04 -06002429config CMD_ZFS
2430 bool "zfs - Access of ZFS filesystem"
2431 help
2432 This provides commands to accessing a ZFS filesystem, commonly used
2433 on Solaris systems. Two sub-commands are provided:
2434
2435 zfsls - list files in a directory
2436 zfsload - load a file
2437
2438 See doc/README.zfs for more details.
2439
Dinh Nguyenab8243e2016-04-21 09:05:23 -05002440endmenu
2441
Simon Glassac20a1b2017-04-26 22:27:52 -06002442menu "Debug commands"
2443
Simon Glass71cebf02021-03-15 18:00:24 +13002444config CMD_CBSYSINFO
2445 bool "cbsysinfo"
2446 depends on X86
2447 default y if SYS_COREBOOT
2448 help
2449 This provides information about the coreboot sysinfo table stored in
2450 memory by coreboot before jumping to U-Boot. It can be useful for
2451 debugging the beaaviour of coreboot or U-Boot.
2452
Simon Glass3bd25cb2017-04-26 22:28:08 -06002453config CMD_DIAG
2454 bool "diag - Board diagnostics"
2455 help
2456 This command provides access to board diagnostic tests. These are
2457 called Power-on Self Tests (POST). The command allows listing of
2458 available tests and running either all the tests, or specific tests
2459 identified by name.
2460
Simon Glassc81b4602022-03-04 08:43:06 -07002461config CMD_EVENT
2462 bool "event - Show information about events"
2463 default y if EVENT_DEBUG
2464 help
2465 This enables the 'event' command which provides information about
2466 events and event-handler routines. This can help to device event
2467 hadling.
2468
Simon Glass1b330892017-05-17 03:25:39 -06002469config CMD_IRQ
2470 bool "irq - Show information about interrupts"
Pragnesh Patelc5a7e5b2020-08-24 20:38:55 +05302471 depends on !ARM && !MIPS && !RISCV && !SH
Simon Glass1b330892017-05-17 03:25:39 -06002472 help
2473 This enables two commands:
2474
2475 interrupts - enable or disable interrupts
2476 irqinfo - print device-specific interrupt information
Simon Glass6bac2272017-05-17 03:25:40 -06002477
2478config CMD_KGDB
2479 bool "kgdb - Allow debugging of U-Boot with gdb"
Michal Simekb9205502018-10-04 14:26:13 +02002480 depends on PPC
Simon Glass6bac2272017-05-17 03:25:40 -06002481 help
2482 This enables a 'kgdb' command which allows gdb to connect to U-Boot
2483 over a serial link for debugging purposes. This allows
2484 single-stepping, inspecting variables, etc. This is supported only
2485 on PowerPC at present.
2486
Simon Glassd5f61f22017-12-04 13:48:26 -07002487config CMD_LOG
2488 bool "log - Generation, control and access to logging"
Heinrich Schuchardt83a1f932018-04-19 22:02:46 +02002489 select LOG
Sean Anderson3e409762020-10-27 19:55:38 -04002490 select GETOPT
Simon Glassd5f61f22017-12-04 13:48:26 -07002491 help
2492 This provides access to logging features. It allows the output of
2493 log data to be controlled to a limited extent (setting up the default
Simon Glassef11ed82017-12-04 13:48:27 -07002494 maximum log level for emitting of records). It also provides access
2495 to a command used for testing the log system.
Simon Glassd5f61f22017-12-04 13:48:26 -07002496
Simon Glassce058ae2017-08-04 16:34:59 -06002497config CMD_TRACE
2498 bool "trace - Support tracing of function calls and timing"
Simon Glass89050242021-11-24 09:26:39 -07002499 depends on TRACE
2500 default y
Simon Glassce058ae2017-08-04 16:34:59 -06002501 help
2502 Enables a command to control using of function tracing within
2503 U-Boot. This allows recording of call traces including timing
2504 information. The command can write data to memory for exporting
Simon Glassa24a78d2019-04-08 13:20:51 -06002505 for analysis (e.g. using bootchart). See doc/README.trace for full
Simon Glassce058ae2017-08-04 16:34:59 -06002506 details.
2507
Igor Opaniuk60b2f9e2018-06-03 21:56:39 +03002508config CMD_AVB
2509 bool "avb - Android Verified Boot 2.0 operations"
Igor Opaniukb0aa74a2018-07-17 14:33:25 +03002510 depends on AVB_VERIFY
Igor Opaniuk60b2f9e2018-06-03 21:56:39 +03002511 help
2512 Enables a "avb" command to perform verification of partitions using
2513 Android Verified Boot 2.0 functionality. It includes such subcommands:
2514 avb init - initialize avb2 subsystem
2515 avb read_rb - read rollback index
2516 avb write_rb - write rollback index
2517 avb is_unlocked - check device lock state
2518 avb get_uuid - read and print uuid of a partition
2519 avb read_part - read data from partition
2520 avb read_part_hex - read data from partition and output to stdout
2521 avb write_part - write data to partition
2522 avb verify - run full verification chain
Joel Peshkin4e9bce12021-04-11 11:21:58 +02002523
2524config CMD_STACKPROTECTOR_TEST
2525 bool "Test command for stack protector"
2526 depends on STACKPROTECTOR
2527 help
2528 Enable stackprot_test command
2529 The stackprot_test command will force a stack overrun to test
2530 the stack smashing detection mechanisms.
2531
Simon Glassac20a1b2017-04-26 22:27:52 -06002532endmenu
2533
Heiko Schocher8f2fe0c2016-09-21 07:58:19 +02002534config CMD_UBI
2535 tristate "Enable UBI - Unsorted block images commands"
Heiko Schocher8f2fe0c2016-09-21 07:58:19 +02002536 select MTD_UBI
2537 help
2538 UBI is a software layer above MTD layer which admits use of LVM-like
2539 logical volumes on top of MTD devices, hides some complexities of
2540 flash chips like wear and bad blocks and provides some other useful
2541 capabilities. Please, consult the MTD web site for more details
2542 (www.linux-mtd.infradead.org). Activate this option if you want
2543 to use U-Boot UBI commands.
Miquel Raynalc58fb2c2018-09-29 12:58:29 +02002544 It is also strongly encouraged to also enable CONFIG_MTD to get full
2545 partition support.
Heiko Schocher8f2fe0c2016-09-21 07:58:19 +02002546
Philippe Reynes83f70782020-03-23 19:20:47 +01002547config CMD_UBI_RENAME
2548 bool "Enable rename"
2549 depends on CMD_UBI
Philippe Reynes83f70782020-03-23 19:20:47 +01002550 help
2551 Enable a "ubi" command to rename ubi volume:
2552 ubi rename <oldname> <newname>
2553
Boris Brezillon173aafb2017-02-27 18:22:06 +01002554config CMD_UBIFS
2555 tristate "Enable UBIFS - Unsorted block images filesystem commands"
Maxime Ripard2bc734b2017-03-03 14:53:22 +01002556 depends on CMD_UBI
Michal Simek5ed063d2018-07-23 15:55:13 +02002557 default y if CMD_UBI
Karl Beldan24fc9532017-07-12 16:11:47 +00002558 select LZO
Boris Brezillon173aafb2017-02-27 18:22:06 +01002559 help
2560 UBIFS is a file system for flash devices which works on top of UBI.
2561
Aswath Govindraju19f7a342021-08-13 23:04:41 +05302562config MMC_SPEED_MODE_SET
2563 bool "set speed mode using mmc command"
2564 depends on CMD_MMC
2565 default n
2566 help
2567 Enable setting speed mode using mmc rescan and mmc dev commands.
2568 The speed mode is provided as the last argument in these commands
2569 and is indicated using the index from enum bus_mode in
2570 include/mmc.h. A speed mode can be set only if it has already
2571 been enabled in the device tree.
Simon Glass72a8cf82016-01-17 20:53:51 -07002572endmenu