Searched refs:bloblist (Results 1 – 17 of 17) sorted by relevance
/u-boot-v2022.01-rc1/doc/develop/ |
A D | bloblist.rst | 3 Blob Lists - bloblist 9 A bloblist provides a way to store collections of binary information (blobs) in 18 The bloblist is created when the first U-Boot component runs (often SPL, 23 cannot be read a second time. So TPL can store that in a bloblist record which 31 While each blob in the bloblist can be of any length, bloblists are designed to 48 There is normally only one bloblist in U-Boot. Since a bloblist can store 52 a single bloblist. 62 Finishing the bloblist 66 bloblist in preparation for the next stage. This involves adding a checksum so 68 bloblist is in use, changes can be made which will affect the checksum, so it [all …]
|
A D | index.rst | 12 bloblist
|
A D | tests_writing.rst | 227 model. An example is bloblist. 243 Example commit: 9fe064646d2 ("bloblist: Support relocating to a larger space") [1] 308 Example commit: 919e7a8fb64 ("test: Add a simple test for bloblist") [1]
|
/u-boot-v2022.01-rc1/common/ |
A D | bloblist.c | 88 struct bloblist_hdr *hdr = gd->bloblist; in bloblist_findrec() 105 struct bloblist_hdr *hdr = gd->bloblist; in bloblist_addrec() 271 struct bloblist_hdr *hdr = gd->bloblist; in bloblist_resize() 317 gd->bloblist = hdr; in bloblist_new() 340 gd->bloblist = hdr; in bloblist_check() 347 struct bloblist_hdr *hdr = gd->bloblist; in bloblist_finish() 356 struct bloblist_hdr *hdr = gd->bloblist; in bloblist_get_stats() 358 *basep = map_to_sysmem(gd->bloblist); in bloblist_get_stats() 382 struct bloblist_hdr *hdr = gd->bloblist; in bloblist_show_list()
|
A D | Kconfig | 697 bool "Support for a bloblist" 706 bool "Support for a bloblist in SPL" 711 to run, then the bloblist is set up in SPL and passed to U-Boot 715 bool "Support for a bloblist in TPL" 719 This enables a bloblist in TPL. The bloblist is set up in TPL and 723 hex "Size of bloblist" 727 Sets the size of the bloblist in bytes. This must include all 728 overhead (alignment, bloblist header, record header). The bloblist 730 proper), and this sane bloblist is used for subsequent stages. 733 hex "Address of bloblist" [all …]
|
A D | board_f.c | 664 gd->bloblist, gd->new_bloblist, size); in reloc_bloblist() 666 gd->bloblist, size); in reloc_bloblist() 667 gd->bloblist = gd->new_bloblist; in reloc_bloblist()
|
A D | Makefile | 62 obj-$(CONFIG_$(SPL_TPL_)BLOBLIST) += bloblist.o
|
/u-boot-v2022.01-rc1/cmd/ |
A D | bloblist.c | 38 U_BOOT_CMD_WITH_SUBCMDS(bloblist, "Bloblists", bloblist_help_text,
|
A D | Makefile | 28 obj-$(CONFIG_CMD_BLOBLIST) += bloblist.o
|
A D | Kconfig | 547 bool "bloblist" 550 Show information about the bloblist, a collection of binary blobs 552 x86 devices the bloblist can be used to hold ACPI tables so that they
|
/u-boot-v2022.01-rc1/test/ |
A D | Makefile | 11 obj-$(CONFIG_$(SPL_)CMDLINE) += bloblist.o
|
A D | cmd_ut.c | 65 U_BOOT_CMD_MKENT(bloblist, CONFIG_SYS_MAXARGS, 1, do_ut_bloblist,
|
A D | bloblist.c | 378 gd->bloblist = new_ptr; in bloblist_test_reloc()
|
/u-boot-v2022.01-rc1/include/asm-generic/ |
A D | global_data.h | 430 struct bloblist_hdr *bloblist; member
|
/u-boot-v2022.01-rc1/doc/board/google/ |
A D | chromebook_coral.rst | 212 TPL does not set up a bloblist since at present it does not have anything to 243 SPL sets up a bloblist and passes the SPL hand-off information to U-Boot proper. 245 struct arch_spl_handoff. The bloblist address is set by CONFIG_BLOBLIST_ADDR,
|
/u-boot-v2022.01-rc1/lib/ |
A D | Kconfig | 721 bool "Put tables in a bloblist" 725 long. With this option, tables are instead placed in the bloblist
|
/u-boot-v2022.01-rc1/doc/arch/ |
A D | sandbox.rst | 23 uclasses, verified boot, bloblist, logging and dozens of others. Sandbox has
|
Completed in 41 milliseconds