doc: rockchip: Adapt Pine64 Rock64 board instructions
[oweals/u-boot.git] / common / Kconfig
1 menu "Boot timing"
2
3 config BOOTSTAGE
4         bool "Boot timing and reporting"
5         help
6           Enable recording of boot time while booting. To use it, insert
7           calls to bootstage_mark() with a suitable BOOTSTAGE_ID from
8           bootstage.h. Only a single entry is recorded for each ID. You can
9           give the entry a name with bootstage_mark_name(). You can also
10           record elapsed time in a particular stage using bootstage_start()
11           before starting and bootstage_accum() when finished. Bootstage will
12           add up all the accumulated time and report it.
13
14           Normally, IDs are defined in bootstage.h but a small number of
15           additional 'user' IDs can be used by passing BOOTSTAGE_ID_ALLOC
16           as the ID.
17
18           Calls to show_boot_progress() will also result in log entries but
19           these will not have names.
20
21 config SPL_BOOTSTAGE
22         bool "Boot timing and reported in SPL"
23         depends on BOOTSTAGE
24         help
25           Enable recording of boot time in SPL. To make this visible to U-Boot
26           proper, enable BOOTSTAGE_STASH as well. This will stash the timing
27           information when SPL finishes and load it when U-Boot proper starts
28           up.
29
30 config TPL_BOOTSTAGE
31         bool "Boot timing and reported in TPL"
32         depends on BOOTSTAGE
33         help
34           Enable recording of boot time in SPL. To make this visible to U-Boot
35           proper, enable BOOTSTAGE_STASH as well. This will stash the timing
36           information when TPL finishes and load it when U-Boot proper starts
37           up.
38
39 config BOOTSTAGE_REPORT
40         bool "Display a detailed boot timing report before booting the OS"
41         depends on BOOTSTAGE
42         help
43           Enable output of a boot time report just before the OS is booted.
44           This shows how long it took U-Boot to go through each stage of the
45           boot process. The report looks something like this:
46
47                 Timer summary in microseconds:
48                        Mark    Elapsed  Stage
49                           0          0  reset
50                   3,575,678  3,575,678  board_init_f start
51                   3,575,695         17  arch_cpu_init A9
52                   3,575,777         82  arch_cpu_init done
53                   3,659,598     83,821  board_init_r start
54                   3,910,375    250,777  main_loop
55                  29,916,167 26,005,792  bootm_start
56                  30,361,327    445,160  start_kernel
57
58 config BOOTSTAGE_RECORD_COUNT
59         int "Number of boot stage records to store"
60         default 30
61         help
62           This is the size of the bootstage record list and is the maximum
63           number of bootstage records that can be recorded.
64
65 config SPL_BOOTSTAGE_RECORD_COUNT
66         int "Number of boot stage records to store for SPL"
67         default 5
68         help
69           This is the size of the bootstage record list and is the maximum
70           number of bootstage records that can be recorded.
71
72 config TPL_BOOTSTAGE_RECORD_COUNT
73         int "Number of boot stage records to store for TPL"
74         default 5
75         help
76           This is the size of the bootstage record list and is the maximum
77           number of bootstage records that can be recorded.
78
79 config BOOTSTAGE_FDT
80         bool "Store boot timing information in the OS device tree"
81         depends on BOOTSTAGE
82         help
83           Stash the bootstage information in the FDT. A root 'bootstage'
84           node is created with each bootstage id as a child. Each child
85           has a 'name' property and either 'mark' containing the
86           mark time in microseconds, or 'accum' containing the
87           accumulated time for that bootstage id in microseconds.
88           For example:
89
90                 bootstage {
91                         154 {
92                                 name = "board_init_f";
93                                 mark = <3575678>;
94                         };
95                         170 {
96                                 name = "lcd";
97                                 accum = <33482>;
98                         };
99                 };
100
101           Code in the Linux kernel can find this in /proc/devicetree.
102
103 config BOOTSTAGE_STASH
104         bool "Stash the boot timing information in memory before booting OS"
105         depends on BOOTSTAGE
106         help
107           Some OSes do not support device tree. Bootstage can instead write
108           the boot timing information in a binary format at a given address.
109           This happens through a call to bootstage_stash(), typically in
110           the CPU's cleanup_before_linux() function. You can use the
111           'bootstage stash' and 'bootstage unstash' commands to do this on
112           the command line.
113
114 config BOOTSTAGE_STASH_ADDR
115         hex "Address to stash boot timing information"
116         default 0
117         help
118           Provide an address which will not be overwritten by the OS when it
119           starts, so that it can read this information when ready.
120
121 config BOOTSTAGE_STASH_SIZE
122         hex "Size of boot timing stash region"
123         default 0x1000
124         help
125           This should be large enough to hold the bootstage stash. A value of
126           4096 (4KiB) is normally plenty.
127
128 endmenu
129
130 menu "Boot media"
131
132 config NOR_BOOT
133         bool "Support for booting from NOR flash"
134         depends on NOR
135         help
136           Enabling this will make a U-Boot binary that is capable of being
137           booted via NOR.  In this case we will enable certain pinmux early
138           as the ROM only partially sets up pinmux.  We also default to using
139           NOR for environment.
140
141 config NAND_BOOT
142         bool "Support for booting from NAND flash"
143         default n
144         imply NAND
145         help
146           Enabling this will make a U-Boot binary that is capable of being
147           booted via NAND flash. This is not a must, some SoCs need this,
148           some not.
149
150 config ONENAND_BOOT
151         bool "Support for booting from ONENAND"
152         default n
153         imply NAND
154         help
155           Enabling this will make a U-Boot binary that is capable of being
156           booted via ONENAND. This is not a must, some SoCs need this,
157           some not.
158
159 config QSPI_BOOT
160         bool "Support for booting from QSPI flash"
161         default n
162         help
163           Enabling this will make a U-Boot binary that is capable of being
164           booted via QSPI flash. This is not a must, some SoCs need this,
165           some not.
166
167 config SATA_BOOT
168         bool "Support for booting from SATA"
169         default n
170         help
171           Enabling this will make a U-Boot binary that is capable of being
172           booted via SATA. This is not a must, some SoCs need this,
173           some not.
174
175 config SD_BOOT
176         bool "Support for booting from SD/EMMC"
177         default n
178         help
179           Enabling this will make a U-Boot binary that is capable of being
180           booted via SD/EMMC. This is not a must, some SoCs need this,
181           some not.
182
183 config SPI_BOOT
184         bool "Support for booting from SPI flash"
185         default n
186         help
187           Enabling this will make a U-Boot binary that is capable of being
188           booted via SPI flash. This is not a must, some SoCs need this,
189           some not.
190
191 endmenu
192
193 config BOOTDELAY
194         int "delay in seconds before automatically booting"
195         default 2
196         depends on AUTOBOOT
197         help
198           Delay before automatically running bootcmd;
199           set to 0 to autoboot with no delay, but you can stop it by key input.
200           set to -1 to disable autoboot.
201           set to -2 to autoboot with no delay and not check for abort
202
203           If this value is >= 0 then it is also used for the default delay
204           before starting the default entry in bootmenu. If it is < 0 then
205           a default value of 10s is used.
206
207           See doc/README.autoboot for details.
208
209 config USE_BOOTARGS
210         bool "Enable boot arguments"
211         help
212           Provide boot arguments to bootm command. Boot arguments are specified
213           in CONFIG_BOOTARGS option. Enable this option to be able to specify
214           CONFIG_BOOTARGS string. If this option is disabled, CONFIG_BOOTARGS
215           will be undefined and won't take any space in U-Boot image.
216
217 config BOOTARGS
218         string "Boot arguments"
219         depends on USE_BOOTARGS
220         help
221           This can be used to pass arguments to the bootm command. The value of
222           CONFIG_BOOTARGS goes into the environment value "bootargs". Note that
223           this value will also override the "chosen" node in FDT blob.
224
225 config USE_BOOTCOMMAND
226         bool "Enable a default value for bootcmd"
227         help
228           Provide a default value for the bootcmd entry in the environment.  If
229           autoboot is enabled this is what will be run automatically.  Enable
230           this option to be able to specify CONFIG_BOOTCOMMAND as a string.  If
231           this option is disabled, CONFIG_BOOTCOMMAND will be undefined and
232           won't take any space in U-Boot image.
233
234 config BOOTCOMMAND
235         string "bootcmd value"
236         depends on USE_BOOTCOMMAND
237         default "run distro_bootcmd" if DISTRO_DEFAULTS
238         help
239           This is the string of commands that will be used as bootcmd and if
240           AUTOBOOT is set, automatically run.
241
242 config USE_PREBOOT
243         bool "Enable preboot"
244         help
245           When this option is enabled, the existence of the environment
246           variable "preboot" will be checked immediately before starting the
247           CONFIG_BOOTDELAY countdown and/or running the auto-boot command resp.
248           entering interactive mode.
249
250           This feature is especially useful when "preboot" is automatically
251           generated or modified. For example, the boot code can modify the
252           "preboot" when a user holds down a certain combination of keys.
253
254 config PREBOOT
255         string "preboot default value"
256         depends on USE_PREBOOT
257         default ""
258         help
259           This is the default of "preboot" environment variable.
260
261 menu "Console"
262
263 config MENU
264         bool
265         help
266           This is the library functionality to provide a text-based menu of
267           choices for the user to make choices with.
268
269 config CONSOLE_RECORD
270         bool "Console recording"
271         help
272           This provides a way to record console output (and provide console
273           input) through circular buffers. This is mostly useful for testing.
274           Console output is recorded even when the console is silent.
275           To enable console recording, call console_record_reset_enable()
276           from your code.
277
278 config CONSOLE_RECORD_OUT_SIZE
279         hex "Output buffer size"
280         depends on CONSOLE_RECORD
281         default 0x400 if CONSOLE_RECORD
282         help
283           Set the size of the console output buffer. When this fills up, no
284           more data will be recorded until some is removed. The buffer is
285           allocated immediately after the malloc() region is ready.
286
287 config CONSOLE_RECORD_IN_SIZE
288         hex "Input buffer size"
289         depends on CONSOLE_RECORD
290         default 0x100 if CONSOLE_RECORD
291         help
292           Set the size of the console input buffer. When this contains data,
293           tstc() and getc() will use this in preference to real device input.
294           The buffer is allocated immediately after the malloc() region is
295           ready.
296
297 config DISABLE_CONSOLE
298         bool "Add functionality to disable console completely"
299         help
300                 Disable console (in & out).
301
302 config IDENT_STRING
303         string "Board specific string to be added to uboot version string"
304         help
305           This options adds the board specific name to u-boot version.
306
307 config LOGLEVEL
308         int "loglevel"
309         default 4
310         range 0 8
311         help
312           All Messages with a loglevel smaller than the console loglevel will
313           be compiled in. The loglevels are defined as follows:
314
315             0 - emergency
316             1 - alert
317             2 - critical
318             3 - error
319             4 - warning
320             5 - note
321             6 - info
322             7 - debug
323             8 - debug content
324             9 - debug hardware I/O
325
326 config SPL_LOGLEVEL
327         int
328         default LOGLEVEL
329
330 config TPL_LOGLEVEL
331         int
332         default LOGLEVEL
333
334 config SILENT_CONSOLE
335         bool "Support a silent console"
336         help
337           This option allows the console to be silenced, meaning that no
338           output will appear on the console devices. This is controlled by
339           setting the environment variable 'silent' to a non-empty value.
340           Note this also silences the console when booting Linux.
341
342           When the console is set up, the variable is checked, and the
343           GD_FLG_SILENT flag is set. Changing the environment variable later
344           will update the flag.
345
346 config SILENT_U_BOOT_ONLY
347         bool "Only silence the U-Boot console"
348         depends on SILENT_CONSOLE
349         help
350           Normally when the U-Boot console is silenced, Linux's console is
351           also silenced (assuming the board boots into Linux). This option
352           allows the linux console to operate normally, even if U-Boot's
353           is silenced.
354
355 config SILENT_CONSOLE_UPDATE_ON_SET
356         bool "Changes to the 'silent' environment variable update immediately"
357         depends on SILENT_CONSOLE
358         default y if SILENT_CONSOLE
359         help
360           When the 'silent' environment variable is changed, update the
361           console silence flag immediately. This allows 'setenv' to be used
362           to silence or un-silence the console.
363
364           The effect is that any change to the variable will affect the
365           GD_FLG_SILENT flag.
366
367 config SILENT_CONSOLE_UPDATE_ON_RELOC
368         bool "Allow flags to take effect on relocation"
369         depends on SILENT_CONSOLE
370         help
371           In some cases the environment is not available until relocation
372           (e.g. NAND). This option makes the value of the 'silent'
373           environment variable take effect at relocation.
374
375 config PRE_CONSOLE_BUFFER
376         bool "Buffer characters before the console is available"
377         help
378           Prior to the console being initialised (i.e. serial UART
379           initialised etc) all console output is silently discarded.
380           Defining CONFIG_PRE_CONSOLE_BUFFER will cause U-Boot to
381           buffer any console messages prior to the console being
382           initialised to a buffer. The buffer is a circular buffer, so
383           if it overflows, earlier output is discarded.
384
385           Note that this is not currently supported in SPL. It would be
386           useful to be able to share the pre-console buffer with SPL.
387
388 config PRE_CON_BUF_SZ
389         int "Sets the size of the pre-console buffer"
390         depends on PRE_CONSOLE_BUFFER
391         default 4096
392         help
393           The size of the pre-console buffer affects how much console output
394           can be held before it overflows and starts discarding earlier
395           output. Normally there is very little output at this early stage,
396           unless debugging is enabled, so allow enough for ~10 lines of
397           text.
398
399           This is a useful feature if you are using a video console and
400           want to see the full boot output on the console. Without this
401           option only the post-relocation output will be displayed.
402
403 config PRE_CON_BUF_ADDR
404         hex "Address of the pre-console buffer"
405         depends on PRE_CONSOLE_BUFFER
406         default 0x2f000000 if ARCH_SUNXI && MACH_SUN9I
407         default 0x4f000000 if ARCH_SUNXI && !MACH_SUN9I
408         help
409           This sets the start address of the pre-console buffer. This must
410           be in available memory and is accessed before relocation and
411           possibly before DRAM is set up. Therefore choose an address
412           carefully.
413
414           We should consider removing this option and allocating the memory
415           in board_init_f_init_reserve() instead.
416
417 config CONSOLE_MUX
418         bool "Enable console multiplexing"
419         default y if DM_VIDEO || VIDEO || LCD
420         help
421           This allows multiple devices to be used for each console 'file'.
422           For example, stdout can be set to go to serial and video.
423           Similarly, stdin can be set to come from serial and keyboard.
424           Input can be provided from either source. Console multiplexing
425           adds a small amount of size to U-Boot.  Changes to the environment
426           variables stdout, stdin and stderr will take effect immediately.
427
428 config SYS_CONSOLE_IS_IN_ENV
429         bool "Select console devices from the environment"
430         default y if CONSOLE_MUX
431         help
432           This allows multiple input/output devices to be set at boot time.
433           For example, if stdout is set to "serial,video" then output will
434           be sent to both the serial and video devices on boot. The
435           environment variables can be updated after boot to change the
436           input/output devices.
437
438 config SYS_CONSOLE_OVERWRITE_ROUTINE
439         bool "Allow board control over console overwriting"
440         help
441           If this is enabled, and the board-specific function
442           overwrite_console() returns 1, the stdin, stderr and stdout are
443           switched to the serial port, else the settings in the environment
444           are used. If this is not enabled, the console will not be switched
445           to serial.
446
447 config SYS_CONSOLE_ENV_OVERWRITE
448         bool "Update environment variables during console init"
449         help
450           The console environment variables (stdout, stdin, stderr) can be
451           used to determine the correct console devices on start-up. This
452           option writes the console devices to these variables on console
453           start-up (after relocation). This causes the environment to be
454           updated to match the console devices actually chosen.
455
456 config SYS_CONSOLE_INFO_QUIET
457         bool "Don't display the console devices on boot"
458         help
459           Normally U-Boot displays the current settings for stdout, stdin
460           and stderr on boot when the post-relocation console is set up.
461           Enable this option to suppress this output. It can be obtained by
462           calling stdio_print_current_devices() from board code.
463
464 config SYS_STDIO_DEREGISTER
465         bool "Allow deregistering stdio devices"
466         default y if USB_KEYBOARD
467         help
468           Generally there is no need to deregister stdio devices since they
469           are never deactivated. But if a stdio device is used which can be
470           removed (for example a USB keyboard) then this option can be
471           enabled to ensure this is handled correctly.
472
473 endmenu
474
475 menu "Logging"
476
477 config LOG
478         bool "Enable logging support"
479         depends on DM
480         help
481           This enables support for logging of status and debug messages. These
482           can be displayed on the console, recorded in a memory buffer, or
483           discarded if not needed. Logging supports various categories and
484           levels of severity.
485
486 config SPL_LOG
487         bool "Enable logging support in SPL"
488         depends on LOG
489         help
490           This enables support for logging of status and debug messages. These
491           can be displayed on the console, recorded in a memory buffer, or
492           discarded if not needed. Logging supports various categories and
493           levels of severity.
494
495 config TPL_LOG
496         bool "Enable logging support in TPL"
497         depends on LOG
498         help
499           This enables support for logging of status and debug messages. These
500           can be displayed on the console, recorded in a memory buffer, or
501           discarded if not needed. Logging supports various categories and
502           levels of severity.
503
504 config LOG_MAX_LEVEL
505         int "Maximum log level to record"
506         depends on LOG
507         default 5
508         help
509           This selects the maximum log level that will be recorded. Any value
510           higher than this will be ignored. If possible log statements below
511           this level will be discarded at build time. Levels:
512
513             0 - emergency
514             1 - alert
515             2 - critical
516             3 - error
517             4 - warning
518             5 - note
519             6 - info
520             7 - debug
521             8 - debug content
522             9 - debug hardware I/O
523
524 config SPL_LOG_MAX_LEVEL
525         int "Maximum log level to record in SPL"
526         depends on SPL_LOG
527         default 3
528         help
529           This selects the maximum log level that will be recorded. Any value
530           higher than this will be ignored. If possible log statements below
531           this level will be discarded at build time. Levels:
532
533             0 - emergency
534             1 - alert
535             2 - critical
536             3 - error
537             4 - warning
538             5 - note
539             6 - info
540             7 - debug
541             8 - debug content
542             9 - debug hardware I/O
543
544 config TPL_LOG_MAX_LEVEL
545         int "Maximum log level to record in TPL"
546         depends on TPL_LOG
547         default 3
548         help
549           This selects the maximum log level that will be recorded. Any value
550           higher than this will be ignored. If possible log statements below
551           this level will be discarded at build time. Levels:
552
553             0 - emergency
554             1 - alert
555             2 - critical
556             3 - error
557             4 - warning
558             5 - note
559             6 - info
560             7 - debug
561             8 - debug content
562             9 - debug hardware I/O
563
564 config LOG_DEFAULT_LEVEL
565         int "Default logging level to display"
566         default 6
567         help
568           This is the default logging level set when U-Boot starts. It can
569           be adjusted later using the 'log level' command. Note that setting
570           this to a value above LOG_MAX_LEVEL will be ineffective, since the
571           higher levels are not compiled in to U-Boot.
572
573             0 - emergency
574             1 - alert
575             2 - critical
576             3 - error
577             4 - warning
578             5 - note
579             6 - info
580             7 - debug
581             8 - debug content
582             9 - debug hardware I/O
583
584 config LOG_CONSOLE
585         bool "Allow log output to the console"
586         depends on LOG
587         default y
588         help
589           Enables a log driver which writes log records to the console.
590           Generally the console is the serial port or LCD display. Only the
591           log message is shown - other details like level, category, file and
592           line number are omitted.
593
594 config SPL_LOG_CONSOLE
595         bool "Allow log output to the console in SPL"
596         depends on SPL_LOG
597         default y
598         help
599           Enables a log driver which writes log records to the console.
600           Generally the console is the serial port or LCD display. Only the
601           log message is shown - other details like level, category, file and
602           line number are omitted.
603
604 config TPL_LOG_CONSOLE
605         bool "Allow log output to the console in SPL"
606         depends on TPL_LOG
607         default y
608         help
609           Enables a log driver which writes log records to the console.
610           Generally the console is the serial port or LCD display. Only the
611           log message is shown - other details like level, category, file and
612           line number are omitted.
613
614 config LOG_TEST
615         bool "Provide a test for logging"
616         depends on LOG
617         default y if SANDBOX
618         help
619           This enables a 'log test' command to test logging. It is normally
620           executed from a pytest and simply outputs logging information
621           in various different ways to test that the logging system works
622           correctly with various settings.
623
624 config LOG_ERROR_RETURN
625         bool "Log all functions which return an error"
626         depends on LOG
627         help
628           When an error is returned in U-Boot it is sometimes difficult to
629           figure out the root cause. For example, reading from SPI flash may
630           fail due to a problem in the SPI controller or due to the flash part
631           not returning the expected information. This option changes
632           log_ret() to log any errors it sees. With this option disabled,
633           log_ret() is a nop.
634
635           You can add log_ret() to all functions which return an error code.
636
637 endmenu
638
639 config SUPPORT_RAW_INITRD
640         bool "Enable raw initrd images"
641         help
642           Note, defining the SUPPORT_RAW_INITRD allows user to supply
643           kernel with raw initrd images. The syntax is slightly different, the
644           address of the initrd must be augmented by it's size, in the following
645           format: "<initrd address>:<initrd size>".
646
647 config DEFAULT_FDT_FILE
648         string "Default fdt file"
649         help
650           This option is used to set the default fdt file to boot OS.
651
652 config MISC_INIT_R
653         bool "Execute Misc Init"
654         default y if ARCH_KEYSTONE || ARCH_SUNXI || MPC85xx
655         default y if ARCH_OMAP2PLUS && !AM33XX
656         help
657           Enabling this option calls 'misc_init_r' function
658
659 config VERSION_VARIABLE
660         bool "add U-Boot environment variable vers"
661         default n
662         help
663           If this variable is defined, an environment variable
664           named "ver" is created by U-Boot showing the U-Boot
665           version as printed by the "version" command.
666           Any change to this variable will be reverted at the
667           next reset.
668
669 config BOARD_LATE_INIT
670         bool "Execute Board late init"
671         help
672           Sometimes board require some initialization code that might
673           require once the actual init done, example saving board specific env,
674           boot-modes etc. which eventually done at late.
675
676           So this config enable the late init code with the help of board_late_init
677           function which should defined on respective boards.
678
679 config DISPLAY_CPUINFO
680         bool "Display information about the CPU during start up"
681         default y if ARC|| ARM || NIOS2 || X86 || XTENSA || M68K
682         help
683           Display information about the CPU that U-Boot is running on
684           when U-Boot starts up. The function print_cpuinfo() is called
685           to do this.
686
687 config DISPLAY_BOARDINFO
688         bool "Display information about the board during early start up"
689         default y if ARC || ARM || M68K || MIPS || PPC || SANDBOX || XTENSA
690         help
691           Display information about the board that U-Boot is running on
692           when U-Boot starts up. The board function checkboard() is called
693           to do this.
694
695 config DISPLAY_BOARDINFO_LATE
696         bool "Display information about the board during late start up"
697         help
698           Display information about the board that U-Boot is running on after
699           the relocation phase. The board function checkboard() is called to do
700           this.
701
702 config BOUNCE_BUFFER
703         bool "Include bounce buffer API"
704         help
705           Some peripherals support DMA from a subset of physically
706           addressable memory only.  To support such peripherals, the
707           bounce buffer API uses a temporary buffer: it copies data
708           to/from DMA regions while managing cache operations.
709
710           A second possible use of bounce buffers is their ability to
711           provide aligned buffers for DMA operations.
712
713 config BOARD_TYPES
714         bool "Call get_board_type() to get and display the board type"
715         help
716           If this option is enabled, checkboard() will call get_board_type()
717           to get a string containing the board type and this will be
718           displayed immediately after the model is shown on the console
719           early in boot.
720
721 menu "Start-up hooks"
722
723 config ARCH_EARLY_INIT_R
724         bool "Call arch-specific init soon after relocation"
725         help
726           With this option U-Boot will call arch_early_init_r() soon after
727           relocation. Driver model is running by this point, and the cache
728           is on. Note that board_early_init_r() is called first, if
729           enabled. This can be used to set up architecture-specific devices.
730
731 config ARCH_MISC_INIT
732         bool "Call arch-specific init after relocation, when console is ready"
733         help
734           With this option U-Boot will call arch_misc_init() after
735           relocation to allow miscellaneous arch-dependent initialisation
736           to be performed. This function should be defined by the board
737           and will be called after the console is set up, after relocation.
738
739 config BOARD_EARLY_INIT_F
740         bool "Call board-specific init before relocation"
741         help
742           Some boards need to perform initialisation as soon as possible
743           after boot. With this option, U-Boot calls board_early_init_f()
744           after driver model is ready in the pre-relocation init sequence.
745           Note that the normal serial console is not yet set up, but the
746           debug UART will be available if enabled.
747
748 config BOARD_EARLY_INIT_R
749         bool "Call board-specific init after relocation"
750         help
751           Some boards need to perform initialisation as directly after
752           relocation. With this option, U-Boot calls board_early_init_r()
753           in the post-relocation init sequence.
754
755 config LAST_STAGE_INIT
756         bool "Call board-specific as last setup step"
757         help
758           Some boards need to perform initialisation immediately before control
759           is passed to the command-line interpreter (e.g. for initializations
760           that depend on later phases in the init sequence). With this option,
761           U-Boot calls last_stage_init() before the command-line interpreter is
762           started.
763
764 endmenu
765
766 menu "Security support"
767
768 config HASH
769         bool # "Support hashing API (SHA1, SHA256, etc.)"
770         help
771           This provides a way to hash data in memory using various supported
772           algorithms (such as SHA1, MD5, CRC32). The API is defined in hash.h
773           and the algorithms it supports are defined in common/hash.c. See
774           also CMD_HASH for command-line access.
775
776 config AVB_VERIFY
777         bool "Build Android Verified Boot operations"
778         depends on LIBAVB && FASTBOOT
779         depends on PARTITION_UUIDS
780         help
781           This option enables compilation of bootloader-dependent operations,
782           used by Android Verified Boot 2.0 library (libavb). Includes:
783             * Helpers to process strings in order to build OS bootargs.
784             * Helpers to access MMC, similar to drivers/fastboot/fb_mmc.c.
785             * Helpers to alloc/init/free avb ops.
786
787 config SPL_HASH
788         bool # "Support hashing API (SHA1, SHA256, etc.)"
789         help
790           This provides a way to hash data in memory using various supported
791           algorithms (such as SHA1, MD5, CRC32). The API is defined in hash.h
792           and the algorithms it supports are defined in common/hash.c. See
793           also CMD_HASH for command-line access.
794
795 config TPL_HASH
796         bool # "Support hashing API (SHA1, SHA256, etc.)"
797         help
798           This provides a way to hash data in memory using various supported
799           algorithms (such as SHA1, MD5, CRC32). The API is defined in hash.h
800           and the algorithms it supports are defined in common/hash.c. See
801           also CMD_HASH for command-line access.
802
803 endmenu
804
805 menu "Update support"
806
807 config UPDATE_TFTP
808         bool "Auto-update using fitImage via TFTP"
809         depends on FIT
810         help
811           This option allows performing update of NOR with data in fitImage
812           sent via TFTP boot.
813
814 config UPDATE_TFTP_CNT_MAX
815         int "The number of connection retries during auto-update"
816         default 0
817         depends on UPDATE_TFTP
818
819 config UPDATE_TFTP_MSEC_MAX
820         int "Delay in mSec to wait for the TFTP server during auto-update"
821         default 100
822         depends on UPDATE_TFTP
823
824 config ANDROID_AB
825         bool "Android A/B updates"
826         default n
827         help
828           If enabled, adds support for the new Android A/B update model. This
829           allows the bootloader to select which slot to boot from based on the
830           information provided by userspace via the Android boot_ctrl HAL. This
831           allows a bootloader to try a new version of the system but roll back
832           to previous version if the new one didn't boot all the way.
833
834 endmenu
835
836 menu "Blob list"
837
838 config BLOBLIST
839         bool "Support for a bloblist"
840         help
841           This enables support for a bloblist in U-Boot, which can be passed
842           from TPL to SPL to U-Boot proper (and potentially to Linux). The
843           blob list supports multiple binary blobs of data, each with a tag,
844           so that different U-Boot components can store data which can survive
845           through to the next stage of the boot.
846
847 config SPL_BLOBLIST
848         bool "Support for a bloblist in SPL"
849         depends on BLOBLIST
850         default y if SPL
851         help
852           This enables a bloblist in SPL. If this is the first part of U-Boot
853           to run, then the bloblist is set up in SPL and passed to U-Boot
854           proper. If TPL also has a bloblist, then SPL uses the one from there.
855
856 config TPL_BLOBLIST
857         bool "Support for a bloblist in TPL"
858         depends on BLOBLIST
859         default y if TPL
860         help
861           This enables a bloblist in TPL. The bloblist is set up in TPL and
862           passed to SPL and U-Boot proper.
863
864 config BLOBLIST_SIZE
865         hex "Size of bloblist"
866         depends on BLOBLIST
867         default 0x400
868         help
869           Sets the size of the bloblist in bytes. This must include all
870           overhead (alignment, bloblist header, record header). The bloblist
871           is set up in the first part of U-Boot to run (TPL, SPL or U-Boot
872           proper), and this sane bloblist is used for subsequent stages.
873
874 config BLOBLIST_ADDR
875         hex "Address of bloblist"
876         depends on BLOBLIST
877         default 0xe000 if SANDBOX
878         help
879           Sets the address of the bloblist, set up by the first part of U-Boot
880           which runs. Subsequent U-Boot stages typically use the same address.
881
882 endmenu
883
884 source "common/spl/Kconfig"