1 /* SPDX-License-Identifier: GPL-2.0+ BSD-3-Clause */
3 * This provides a standard way of passing information between boot phases
4 * (TPL -> SPL -> U-Boot proper.)
6 * A list of blobs of data, tagged with their owner. The list resides in memory
7 * and can be updated by SPL, U-Boot, etc.
9 * Copyright 2018 Google, Inc
10 * Written by Simon Glass <sjg@chromium.org>
20 BLOBLIST_MAGIC = 0xb00757a3,
24 /* Supported tags - add new ones to tag_name in bloblist.c */
29 * Standard area to allocate blobs used across firmware components, for
30 * things that are very commonly used, particularly in multiple
33 BLOBLISTT_AREA_FIRMWARE_TOP = 0x1,
35 /* Standard area to allocate blobs used across firmware components */
36 BLOBLISTT_AREA_FIRMWARE = 0x100,
38 * Advanced Configuration and Power Interface Global Non-Volatile
39 * Sleeping table. This forms part of the ACPI tables passed to Linux.
41 BLOBLISTT_ACPI_GNVS = 0x100,
42 BLOBLISTT_INTEL_VBT = 0x101, /* Intel Video-BIOS table */
43 BLOBLISTT_TPM2_TCG_LOG = 0x102, /* TPM v2 log space */
44 BLOBLISTT_TCPA_LOG = 0x103, /* TPM log space */
45 BLOBLISTT_ACPI_TABLES = 0x104, /* ACPI tables for x86 */
46 BLOBLISTT_SMBIOS_TABLES = 0x105, /* SMBIOS tables for x86 */
47 BLOBLISTT_VBOOT_CTX = 0x106, /* Chromium OS verified boot context */
50 * Project-specific tags are permitted here. Projects can be open source
51 * or not, but the format of the data must be fuily documented in an
52 * open source project, including all fields, bits, etc. Naming should
53 * be: BLOBLISTT_<project>_<purpose_here>
55 BLOBLISTT_PROJECT_AREA = 0x8000,
56 BLOBLISTT_U_BOOT_SPL_HANDOFF = 0x8000, /* Hand-off info from SPL */
59 * Vendor-specific tags are permitted here. Projects can be open source
60 * or not, but the format of the data must be fuily documented in an
61 * open source project, including all fields, bits, etc. Naming should
62 * be BLOBLISTT_<vendor>_<purpose_here>
64 BLOBLISTT_VENDOR_AREA = 0xc000,
66 /* Tags after this are not allocated for now */
67 BLOBLISTT_EXPANSION = 0x10000,
70 * Tags from here are on reserved for private use within a single
71 * firmware binary (i.e. a single executable or phase of a project).
72 * These tags can be passed between binaries within a local
73 * implementation, but cannot be used in upstream code. Allocate a
74 * tag in one of the areas above if you want that.
76 * This area may move in future.
78 BLOBLISTT_PRIVATE_AREA = 0xffff0000,
82 * struct bloblist_hdr - header for the bloblist
84 * This is stored at the start of the bloblist which is always on a 16-byte
85 * boundary. Records follow this header. The bloblist normally stays in the
86 * same place in memory as SPL and U-Boot execute, but it can be safely moved
89 * None of the bloblist headers themselves contain pointers but it is possible
90 * to put pointers inside a bloblist record if desired. This is not encouraged,
91 * since it can make part of the bloblist inaccessible if the pointer is
92 * no-longer valid. It is better to just store all the data inside a bloblist
95 * Each bloblist record is aligned to a 16-byte boundary and follows immediately
98 * @magic: BLOBLIST_MAGIC
99 * @version: BLOBLIST_VERSION
100 * @hdr_size: Size of this header, normally sizeof(struct bloblist_hdr). The
101 * first bloblist_rec starts at this offset from the start of the header
102 * @flags: Space for BLOBLISTF... flags (none yet)
103 * @size: Total size of the bloblist (non-zero if valid) including this header.
104 * The bloblist extends for this many bytes from the start of this header.
105 * When adding new records, the bloblist can grow up to this size.
106 * @alloced: Total size allocated so far for this bloblist. This starts out as
107 * sizeof(bloblist_hdr) since we need at least that much space to store a
109 * @spare: Spare space (for future use)
110 * @chksum: CRC32 for the entire bloblist allocated area. Since any of the
111 * blobs can be altered after being created, this checksum is only valid
112 * when the bloblist is finalised before jumping to the next stage of boot.
113 * Note that chksum is last to make it easier to exclude it from the
114 * checksum calculation.
116 struct bloblist_hdr {
129 * struct bloblist_rec - record for the bloblist
131 * The bloblist contains a number of records each consisting of this record
132 * structure followed by the data contained. Each records is 16-byte aligned.
134 * NOTE: Only exported for testing purposes. Do not use this struct.
136 * @tag: Tag indicating what the record contains
137 * @hdr_size: Size of this header, normally sizeof(struct bloblist_rec). The
138 * record's data starts at this offset from the start of the record
139 * @size: Size of record in bytes, excluding the header size. This does not
140 * need to be aligned (e.g. 3 is OK).
141 * @spare: Spare space for other things
143 struct bloblist_rec {
151 * bloblist_check_magic() - return a bloblist if the magic matches
153 * @addr: Address to check
154 * Return: pointer to bloblist, if the magic matches, else NULL
156 static inline void *bloblist_check_magic(ulong addr)
162 ptr = map_sysmem(addr, 0);
163 if (*ptr != BLOBLIST_MAGIC)
170 * bloblist_find() - Find a blob
172 * Searches the bloblist and returns the blob with the matching tag
174 * @tag: Tag to search for (enum bloblist_tag_t)
175 * @size: Expected size of the blob, or 0 for any size
176 * Return: pointer to blob if found, or NULL if not found, or a blob was found
177 * but it is the wrong size
179 void *bloblist_find(uint tag, int size);
182 * bloblist_add() - Add a new blob
184 * Add a new blob to the bloblist
186 * This should only be called if you konw there is no existing blob for a
187 * particular tag. It is typically safe to call in the first phase of U-Boot
188 * (e.g. TPL or SPL). After that, bloblist_ensure() should be used instead.
190 * @tag: Tag to add (enum bloblist_tag_t)
191 * @size: Size of the blob
192 * @align: Alignment of the blob (in bytes), 0 for default
193 * Return: pointer to the newly added block, or NULL if there is not enough
196 void *bloblist_add(uint tag, int size, int align);
199 * bloblist_ensure_size() - Find or add a blob
201 * Find an existing blob, or add a new one if not found
203 * @tag: Tag to add (enum bloblist_tag_t)
204 * @size: Size of the blob
205 * @blobp: Returns a pointer to blob on success
206 * @align: Alignment of the blob (in bytes), 0 for default
207 * Return: 0 if OK, -ENOSPC if it is missing and could not be added due to lack
208 * of space, or -ESPIPE it exists but has the wrong size
210 int bloblist_ensure_size(uint tag, int size, int align, void **blobp);
213 * bloblist_ensure() - Find or add a blob
215 * Find an existing blob, or add a new one if not found
217 * @tag: Tag to add (enum bloblist_tag_t)
218 * @size: Size of the blob
219 * Return: pointer to blob, or NULL if it is missing and could not be added due
220 * to lack of space, or it exists but has the wrong size
222 void *bloblist_ensure(uint tag, int size);
225 * bloblist_ensure_size_ret() - Find or add a blob
227 * Find an existing blob, or add a new one if not found
229 * @tag: Tag to add (enum bloblist_tag_t)
230 * @sizep: Size of the blob to create; returns size of actual blob
231 * @blobp: Returns a pointer to blob on success
232 * Return: 0 if OK, -ENOSPC if it is missing and could not be added due to lack
235 int bloblist_ensure_size_ret(uint tag, int *sizep, void **blobp);
238 * bloblist_resize() - resize a blob
240 * Any blobs above this one are relocated up or down. The resized blob remains
243 * @tag: Tag to add (enum bloblist_tag_t)
244 * @new_size: New size of the blob (>0 to expand, <0 to contract)
245 * Return: 0 if OK, -ENOSPC if the bloblist does not have enough space, -ENOENT
246 * if the tag is not found
248 int bloblist_resize(uint tag, int new_size);
251 * bloblist_new() - Create a new, empty bloblist of a given size
253 * @addr: Address of bloblist
254 * @size: Initial size for bloblist
255 * @flags: Flags to use for bloblist
256 * Return: 0 if OK, -EFAULT if addr is not aligned correctly, -ENOSPC is the
257 * area is not large enough
259 int bloblist_new(ulong addr, uint size, uint flags);
262 * bloblist_check() - Check if a bloblist exists
264 * @addr: Address of bloblist
265 * @size: Expected size of blobsize, or 0 to detect the size
266 * Return: 0 if OK, -ENOENT if the magic number doesn't match (indicating that
267 * there problem is no bloblist at the given address), -EPROTONOSUPPORT
268 * if the version does not match, -EIO if the checksum does not match,
269 * -EFBIG if the expected size does not match the detected size, -ENOSPC
270 * if the size is not large enough to hold the headers
272 int bloblist_check(ulong addr, uint size);
275 * bloblist_finish() - Set up the bloblist for the next U-Boot part
277 * This sets the correct checksum for the bloblist. This ensures that the
278 * bloblist will be detected correctly by the next phase of U-Boot.
282 int bloblist_finish(void);
285 * bloblist_get_stats() - Get information about the bloblist
287 * This returns useful information about the bloblist
289 * @basep: Returns base address of bloblist
290 * @sizep: Returns the number of bytes used in the bloblist
291 * @allocedp: Returns the total space allocated to the bloblist
293 void bloblist_get_stats(ulong *basep, ulong *sizep, ulong *allocedp);
296 * bloblist_get_base() - Get the base address of the bloblist
298 * Return: base address of bloblist
300 ulong bloblist_get_base(void);
303 * bloblist_get_size() - Get the size of the bloblist
305 * Return: the size in bytes
307 ulong bloblist_get_size(void);
310 * bloblist_show_stats() - Show information about the bloblist
312 * This shows useful information about the bloblist on the console
314 void bloblist_show_stats(void);
317 * bloblist_show_list() - Show a list of blobs in the bloblist
319 * This shows a list of blobs, showing their address, size and tag.
321 void bloblist_show_list(void);
324 * bloblist_tag_name() - Get the name for a tag
327 * Return: name of tag, or "invalid" if an invalid tag is provided
329 const char *bloblist_tag_name(enum bloblist_tag_t tag);
332 * bloblist_reloc() - Relocate the bloblist and optionally resize it
334 * @to: Pointer to new bloblist location (must not overlap old location)
335 * @to_size: New size for bloblist (must be larger than from_size)
336 * @from: Pointer to bloblist to relocate
337 * @from_size: Size of bloblist to relocate
339 void bloblist_reloc(void *to, uint to_size, void *from, uint from_size);
342 * bloblist_init() - Init the bloblist system with a single bloblist
344 * This locates and sets up the blocklist for use.
346 * If CONFIG_BLOBLIST_FIXED is selected, it uses CONFIG_BLOBLIST_ADDR and
347 * CONFIG_BLOBLIST_SIZE to set up a bloblist for use by U-Boot.
349 * If CONFIG_BLOBLIST_ALLOC is selected, it allocates memory for a bloblist of
350 * size CONFIG_BLOBLIST_SIZE.
352 * If CONFIG_BLOBLIST_PASSAGE is selected, it uses the bloblist in the incoming
353 * standard passage. The size is detected automatically so CONFIG_BLOBLIST_SIZE
356 * Return: 0 if OK, -ve on error
358 int bloblist_init(void);
360 #endif /* __BLOBLIST_H */