Simon Glass | 4d7bb45 | 2021-09-08 07:33:52 -0600 | [diff] [blame] | 1 | .. SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | cff8870 | 2018-11-15 18:43:54 -0700 | [diff] [blame] | 2 | |
| 3 | Blob Lists - bloblist |
| 4 | ===================== |
| 5 | |
| 6 | Introduction |
| 7 | ------------ |
| 8 | |
| 9 | A bloblist provides a way to store collections of binary information (blobs) in |
| 10 | a central structure. Each record of information is assigned a tag so that its |
| 11 | owner can find it and update it. Each record is generally described by a C |
| 12 | structure defined by the code that owns it. |
| 13 | |
Simon Glass | 68ff6d3 | 2022-03-13 16:22:48 -0600 | [diff] [blame] | 14 | For the design goals of bloblist, please see the comments at the top of the |
| 15 | `bloblist.h` header file. |
Simon Glass | cff8870 | 2018-11-15 18:43:54 -0700 | [diff] [blame] | 16 | |
Simon Glass | e266d27 | 2023-12-27 13:07:10 -0800 | [diff] [blame] | 17 | Bloblist is an implementation with the `Firmware Handoff`_ protocol. |
| 18 | |
Simon Glass | cff8870 | 2018-11-15 18:43:54 -0700 | [diff] [blame] | 19 | Passing state through the boot process |
| 20 | -------------------------------------- |
| 21 | |
| 22 | The bloblist is created when the first U-Boot component runs (often SPL, |
| 23 | sometimes TPL). It is passed through to each successive part of the boot and |
| 24 | can be accessed as needed. This provides a way to transfer state from one part |
| 25 | to the next. For example, TPL may determine that a watchdog reset occurred by |
| 26 | reading an SoC register. Reading the register may reset the value, so that it |
| 27 | cannot be read a second time. So TPL can store that in a bloblist record which |
| 28 | can be passed through to SPL and U-Boot proper, which can print a message |
| 29 | indicating that something went wrong and the watchdog fired. |
| 30 | |
| 31 | |
| 32 | Blobs |
| 33 | ----- |
| 34 | |
| 35 | While each blob in the bloblist can be of any length, bloblists are designed to |
| 36 | hold small amounts of data, typically a few KB at most. It is not possible to |
| 37 | change the length of a blob once it has been written. Each blob is normally |
Simon Glass | 20a1493 | 2022-01-12 19:26:24 -0700 | [diff] [blame] | 38 | created from a C structure which can be used to access its fields. |
Simon Glass | cff8870 | 2018-11-15 18:43:54 -0700 | [diff] [blame] | 39 | |
| 40 | |
| 41 | Blob tags |
| 42 | --------- |
| 43 | |
| 44 | Each blob has a tag which is a 32-bit number. This uniquely identifies the |
| 45 | owner of the blob. Blob tags are listed in enum blob_tag_t and are named |
Simon Glass | 4d7bb45 | 2021-09-08 07:33:52 -0600 | [diff] [blame] | 46 | with a `BLOBT_` prefix. |
Simon Glass | cff8870 | 2018-11-15 18:43:54 -0700 | [diff] [blame] | 47 | |
| 48 | |
| 49 | Single structure |
| 50 | ---------------- |
| 51 | |
| 52 | There is normally only one bloblist in U-Boot. Since a bloblist can store |
| 53 | multiple blobs it does not seem useful to allow multiple bloblists. Of course |
| 54 | there could be reasons for this, such as needing to spread the blobs around in |
| 55 | different memory areas due to fragmented memory, but it is simpler to just have |
| 56 | a single bloblist. |
| 57 | |
| 58 | |
| 59 | API |
| 60 | --- |
| 61 | |
Simon Glass | b83994d | 2020-01-27 08:49:52 -0700 | [diff] [blame] | 62 | Bloblist provides a fairly simple API which allows blobs to be created and |
| 63 | found. All access is via the blob's tag. Blob records are zeroed when added. |
Simon Glass | cff8870 | 2018-11-15 18:43:54 -0700 | [diff] [blame] | 64 | |
| 65 | |
Simon Glass | d5b6e91 | 2021-11-03 21:09:20 -0600 | [diff] [blame] | 66 | Placing the bloblist |
| 67 | -------------------- |
| 68 | |
| 69 | The bloblist is typically positioned at a fixed address by TPL, or SPL. This |
| 70 | is controlled by `CONFIG_BLOBLIST_ADDR`. But in some cases it is preferable to |
| 71 | allocate the bloblist in the malloc() space. Use the `CONFIG_BLOBLIST_ALLOC` |
| 72 | option to enable this. |
| 73 | |
| 74 | The bloblist is automatically relocated as part of U-Boot relocation. Sometimes |
| 75 | it is useful to expand the bloblist in U-Boot proper, since it may want to add |
| 76 | information for use by Linux. Note that this does not mean that Linux needs to |
| 77 | know anything about the bloblist format, just that it is convenient to use |
| 78 | bloblist to place things contiguously in memory. Set |
| 79 | `CONFIG_BLOBLIST_SIZE_RELOC` to define the expanded size, if needed. |
| 80 | |
| 81 | |
Simon Glass | cff8870 | 2018-11-15 18:43:54 -0700 | [diff] [blame] | 82 | Finishing the bloblist |
| 83 | ---------------------- |
| 84 | |
| 85 | When a part of U-Boot is about to jump to the next part, it can 'finish' the |
| 86 | bloblist in preparation for the next stage. This involves adding a checksum so |
| 87 | that the next stage can make sure that the data arrived safely. While the |
| 88 | bloblist is in use, changes can be made which will affect the checksum, so it |
| 89 | is easier to calculate the checksum at the end after all changes are made. |
| 90 | |
| 91 | |
| 92 | Future work |
| 93 | ----------- |
| 94 | |
| 95 | Bootstage has a mechanism to 'stash' its records for passing to the next part. |
| 96 | This should move to using bloblist, to avoid having its own mechanism for |
| 97 | passing information between U-Boot parts. |
| 98 | |
| 99 | |
Simon Glass | 20a1493 | 2022-01-12 19:26:24 -0700 | [diff] [blame] | 100 | API documentation |
| 101 | ----------------- |
| 102 | |
| 103 | .. kernel-doc:: include/bloblist.h |
Simon Glass | e266d27 | 2023-12-27 13:07:10 -0800 | [diff] [blame] | 104 | .. _`Firmware Handoff`: https://github.com/FirmwareHandoff/firmware_handoff |
Simon Glass | 20a1493 | 2022-01-12 19:26:24 -0700 | [diff] [blame] | 105 | |
Simon Glass | cff8870 | 2018-11-15 18:43:54 -0700 | [diff] [blame] | 106 | Simon Glass |
| 107 | sjg@chromium.org |
| 108 | 12-Aug-2018 |