Lines Matching refs:SPL
3 The purpose of this feature is to enable U-Boot or the SPL to select its DTB
5 It comes in two flavors: U-Boot (CONFIG_MULTI_DTB_FIT) and SPL
9 Usually the DTB is selected by the SPL and passed down to U-Boot. But some
10 platforms don't use the SPL. In this case MULTI_DTB_FIT can used to provide
16 The selection is done using board_fit_config_name_match() (same as what the SPL
20 SPL flavor:
21 the SPL uses only a small subset of the DTB and it usually depends more
23 SPL that doesn't exactly match the board. There are howerver some cases
25 boards (or board revisions) with the same SPL binary, SPL_MULTI_DTB_FIT
29 that SPL can locate it and select the correct DTB from inside the FIT.
32 SPL. LZO and GZIP compressions are supported. By default, the area where the
36 The SPL uses board_fit_config_name_match() to find the correct DTB within the
37 FIT (same as what the SPL uses to select the DTB for U-Boot).
39 during the early initialization stage of the SPL (spl_early_init() or
42 Impacts and performances (SPL flavor):
47 | size | size delta | SPL boot | boot time |
64 Note: SPL boot time is the time elapsed between the 'reset' command is entered
65 and the time when the first U-Boot (not SPL) version string is displayed.