blob: d2dcad69a1bff13d852bd17aa8201c823e7a18dd [file] [log] [blame]
Simon Glassbbd7bda2022-01-12 19:26:25 -07001/* SPDX-License-Identifier: GPL-2.0+ BSD-3-Clause */
Simon Glass712bd2d2018-11-15 18:43:50 -07002/*
3 * This provides a standard way of passing information between boot phases
4 * (TPL -> SPL -> U-Boot proper.)
5 *
Simon Glass30de28b2022-03-13 16:22:48 -06006 * It consists of a list of blobs of data, tagged with their owner / contents.
7 * The list resides in memory and can be updated by SPL, U-Boot, etc.
8 *
9 * Design goals for bloblist:
10 *
11 * 1. Small and efficient structure. This avoids UUIDs or 16-byte name fields,
12 * since a 32-bit tag provides enough space for all the tags we will even need.
13 * If UUIDs are desired, they can be added inside a particular blob.
14 *
15 * 2. Avoids use of pointers, so the structure can be relocated in memory. The
16 * data in each blob is inline, rather than using pointers.
17 *
18 * 3. Bloblist is designed to start small in TPL or SPL, when only a few things
19 * are needed, like the memory size or whether console output should be enabled.
20 * Then it can grow in U-Boot proper, e.g. to include space for ACPI tables.
21 *
22 * 4. The bloblist structure is simple enough that it can be implemented in a
23 * small amount of C code. The API does not require use of strings or UUIDs,
24 * which would add to code size. For Thumb-2 the code size needed in SPL is
25 * approximately 940 bytes (e.g. for chromebook_bob).
26 *
27 * 5. Bloblist uses 16-byte alignment internally and is designed to start on a
28 * 16-byte boundary. Its headers are multiples of 16 bytes. This makes it easier
29 * to deal with data structures which need this level of alignment, such as ACPI
30 * tables. For use in SPL and TPL the alignment can be relaxed, since it can be
31 * relocated to an aligned address in U-Boot proper.
32 *
33 * 6. Bloblist is designed to be passed to Linux as reserved memory. While linux
34 * doesn't understand the bloblist header, it can be passed the indivdual blobs.
35 * For example, ACPI tables can reside in a blob and the address of those is
36 * passed to Linux, without Linux ever being away of the existence of a
37 * bloblist. Having all the blobs contiguous in memory simplifies the
38 * reserved-memory space.
39 *
40 * 7. Bloblist tags are defined in the enum below. There is an area for
41 * project-specific stuff (e.g. U-Boot, TF-A) and vendor-specific stuff, e.g.
42 * something used only on a particular SoC. There is also a private area for
43 * temporary, local use.
44 *
45 * 8. Bloblist includes a simple checksum, so that each boot phase can update
46 * this and allow the next phase to check that all is well. While the bloblist
47 * is small, this is quite cheap to calculate. When it grows (e.g. in U-Boot\
48 * proper), the CPU is likely running faster, so it is not prohibitive. Having
49 * said that, U-Boot is often the last phase that uses bloblist, so calculating
50 * the checksum there may not be necessary.
51 *
52 * 9. It would be possible to extend bloblist to support a non-contiguous
53 * structure, e.g. by creating a blob type that points to the next bloblist.
54 * This does not seem necessary for now. It adds complexity and code. We can
55 * always just copy it.
56 *
57 * 10. Bloblist is designed for simple structures, those that can be defined by
58 * a single C struct. More complex structures should be passed in a device tree.
59 * There are some exceptions, chiefly the various binary structures that Intel
60 * is fond of creating. But device tree provides a dictionary-type format which
61 * is fairly efficient (for use in U-Boot proper and Linux at least), along with
62 * a schema and a good set of tools. New formats should be designed around
63 * device tree rather than creating new binary formats, unless they are needed
64 * early in boot (where libfdt's 3KB of overhead is too large) and are trival
65 * enough to be described by a C struct.
Simon Glass712bd2d2018-11-15 18:43:50 -070066 *
67 * Copyright 2018 Google, Inc
68 * Written by Simon Glass <sjg@chromium.org>
69 */
70
71#ifndef __BLOBLIST_H
72#define __BLOBLIST_H
73
Simon Glass9341a3f2022-01-12 19:26:16 -070074#include <mapmem.h>
75
Simon Glass712bd2d2018-11-15 18:43:50 -070076enum {
Simon Glassf182aa52023-12-27 13:07:02 -080077 BLOBLIST_VERSION = 1,
Simon Glass030a1f22023-12-27 13:07:01 -080078 BLOBLIST_MAGIC = 0x4a0fb10b,
Simon Glassc2aa4ef2023-12-27 13:07:00 -080079
80 BLOBLIST_ALIGN_LOG2 = 3,
81 BLOBLIST_ALIGN = 1 << BLOBLIST_ALIGN_LOG2,
Simon Glass712bd2d2018-11-15 18:43:50 -070082};
83
Simon Glassb936a972020-09-19 18:49:26 -060084/* Supported tags - add new ones to tag_name in bloblist.c */
Simon Glass712bd2d2018-11-15 18:43:50 -070085enum bloblist_tag_t {
Simon Glass871e5d02023-12-27 13:06:59 -080086 BLOBLISTT_VOID = 0,
Simon Glass712bd2d2018-11-15 18:43:50 -070087
Simon Glassfd20df42022-01-12 19:26:19 -070088 /*
89 * Standard area to allocate blobs used across firmware components, for
90 * things that are very commonly used, particularly in multiple
91 * projects.
92 */
93 BLOBLISTT_AREA_FIRMWARE_TOP = 0x1,
Simon Glass871e5d02023-12-27 13:06:59 -080094 /*
95 * Devicetree for use by firmware. On some platforms this is passed to
96 * the OS also
97 */
98 BLOBLISTT_CONTROL_FDT = 1,
99 BLOBLISTT_HOB_BLOCK = 2,
100 BLOBLISTT_HOB_LIST = 3,
101 BLOBLISTT_ACPI_TABLES = 4,
102 BLOBLISTT_TPM_EVLOG = 5,
103 BLOBLISTT_TPM_CRB_BASE = 6,
Simon Glassfd20df42022-01-12 19:26:19 -0700104
105 /* Standard area to allocate blobs used across firmware components */
Simon Glass871e5d02023-12-27 13:06:59 -0800106 BLOBLISTT_AREA_FIRMWARE = 0x10,
107 BLOBLISTT_TPM2_TCG_LOG = 0x10, /* TPM v2 log space */
108 BLOBLISTT_TCPA_LOG = 0x11, /* TPM log space */
Simon Glassfdf52632020-09-22 12:44:55 -0600109 /*
110 * Advanced Configuration and Power Interface Global Non-Volatile
111 * Sleeping table. This forms part of the ACPI tables passed to Linux.
112 */
Simon Glass871e5d02023-12-27 13:06:59 -0800113 BLOBLISTT_ACPI_GNVS = 0x12,
Simon Glassfd20df42022-01-12 19:26:19 -0700114
Simon Glass871e5d02023-12-27 13:06:59 -0800115 /* Standard area to allocate blobs used for Trusted Firmware */
116 BLOBLISTT_AREA_TF = 0x100,
117 BLOBLISTT_OPTEE_PAGABLE_PART = 0x100,
Simon Glassfd20df42022-01-12 19:26:19 -0700118
Simon Glass871e5d02023-12-27 13:06:59 -0800119 /* Other standard area to allocate blobs */
120 BLOBLISTT_AREA_OTHER = 0x200,
121 BLOBLISTT_INTEL_VBT = 0x200, /* Intel Video-BIOS table */
122 BLOBLISTT_SMBIOS_TABLES = 0x201, /* SMBIOS tables for x86 */
123 BLOBLISTT_VBOOT_CTX = 0x202, /* Chromium OS verified boot context */
Simon Glassfd20df42022-01-12 19:26:19 -0700124
125 /*
126 * Tags from here are on reserved for private use within a single
127 * firmware binary (i.e. a single executable or phase of a project).
128 * These tags can be passed between binaries within a local
129 * implementation, but cannot be used in upstream code. Allocate a
130 * tag in one of the areas above if you want that.
131 *
Simon Glass871e5d02023-12-27 13:06:59 -0800132 * Project-specific tags are permitted here. Projects can be open source
133 * or not, but the format of the data must be fuily documented in an
134 * open source project, including all fields, bits, etc. Naming should
135 * be: BLOBLISTT_<project>_<purpose_here>
136 *
137 * Vendor-specific tags are also permitted. Projects can be open source
138 * or not, but the format of the data must be fuily documented in an
139 * open source project, including all fields, bits, etc. Naming should
140 * be BLOBLISTT_<vendor>_<purpose_here>
Simon Glassfd20df42022-01-12 19:26:19 -0700141 */
Simon Glass871e5d02023-12-27 13:06:59 -0800142 BLOBLISTT_PRIVATE_AREA = 0xfff000,
143 BLOBLISTT_U_BOOT_SPL_HANDOFF = 0xfff000, /* Hand-off info from SPL */
144 BLOBLISTT_VBE = 0xfff001, /* VBE per-phase state */
145 BLOBLISTT_U_BOOT_VIDEO = 0xfff002, /* Video info from SPL */
Simon Glass712bd2d2018-11-15 18:43:50 -0700146};
147
148/**
149 * struct bloblist_hdr - header for the bloblist
150 *
151 * This is stored at the start of the bloblist which is always on a 16-byte
152 * boundary. Records follow this header. The bloblist normally stays in the
153 * same place in memory as SPL and U-Boot execute, but it can be safely moved
154 * around.
155 *
Simon Glass49ae4ad2022-01-12 19:26:24 -0700156 * None of the bloblist headers themselves contain pointers but it is possible
157 * to put pointers inside a bloblist record if desired. This is not encouraged,
Simon Glass712bd2d2018-11-15 18:43:50 -0700158 * since it can make part of the bloblist inaccessible if the pointer is
159 * no-longer valid. It is better to just store all the data inside a bloblist
160 * record.
161 *
162 * Each bloblist record is aligned to a 16-byte boundary and follows immediately
163 * from the last.
164 *
Simon Glass9341a3f2022-01-12 19:26:16 -0700165 * @magic: BLOBLIST_MAGIC
Simon Glass712bd2d2018-11-15 18:43:50 -0700166 * @version: BLOBLIST_VERSION
167 * @hdr_size: Size of this header, normally sizeof(struct bloblist_hdr). The
168 * first bloblist_rec starts at this offset from the start of the header
Simon Glass49ae4ad2022-01-12 19:26:24 -0700169 * @flags: Space for BLOBLISTF... flags (none yet)
Simon Glass1834c3d2021-07-05 16:32:54 -0600170 * @size: Total size of the bloblist (non-zero if valid) including this header.
Simon Glass712bd2d2018-11-15 18:43:50 -0700171 * The bloblist extends for this many bytes from the start of this header.
Simon Glass1834c3d2021-07-05 16:32:54 -0600172 * When adding new records, the bloblist can grow up to this size.
173 * @alloced: Total size allocated so far for this bloblist. This starts out as
Simon Glass712bd2d2018-11-15 18:43:50 -0700174 * sizeof(bloblist_hdr) since we need at least that much space to store a
175 * valid bloblist
Simon Glassf98fd602020-09-19 18:49:30 -0600176 * @spare: Spare space (for future use)
Simon Glass8968c052023-12-27 13:07:05 -0800177 * @chksum: checksum for the entire bloblist allocated area. Since any of the
Simon Glass712bd2d2018-11-15 18:43:50 -0700178 * blobs can be altered after being created, this checksum is only valid
179 * when the bloblist is finalised before jumping to the next stage of boot.
Simon Glass8968c052023-12-27 13:07:05 -0800180 * This is the value needed to make all checksummed bytes sum to 0
Simon Glass712bd2d2018-11-15 18:43:50 -0700181 */
182struct bloblist_hdr {
Simon Glass9341a3f2022-01-12 19:26:16 -0700183 u32 magic;
Simon Glass712bd2d2018-11-15 18:43:50 -0700184 u32 version;
185 u32 hdr_size;
186 u32 flags;
Simon Glass712bd2d2018-11-15 18:43:50 -0700187
188 u32 size;
189 u32 alloced;
190 u32 spare;
191 u32 chksum;
192};
193
194/**
195 * struct bloblist_rec - record for the bloblist
196 *
Simon Glass712bd2d2018-11-15 18:43:50 -0700197 * The bloblist contains a number of records each consisting of this record
198 * structure followed by the data contained. Each records is 16-byte aligned.
199 *
Simon Glass49ae4ad2022-01-12 19:26:24 -0700200 * NOTE: Only exported for testing purposes. Do not use this struct.
201 *
Simon Glass712bd2d2018-11-15 18:43:50 -0700202 * @tag: Tag indicating what the record contains
203 * @hdr_size: Size of this header, normally sizeof(struct bloblist_rec). The
204 * record's data starts at this offset from the start of the record
205 * @size: Size of record in bytes, excluding the header size. This does not
206 * need to be aligned (e.g. 3 is OK).
Simon Glass712bd2d2018-11-15 18:43:50 -0700207 */
208struct bloblist_rec {
209 u32 tag;
210 u32 hdr_size;
211 u32 size;
Simon Glass448115b2023-12-27 13:07:04 -0800212 u32 _spare;
Simon Glass712bd2d2018-11-15 18:43:50 -0700213};
214
215/**
Simon Glass9341a3f2022-01-12 19:26:16 -0700216 * bloblist_check_magic() - return a bloblist if the magic matches
217 *
218 * @addr: Address to check
Simon Glass49ae4ad2022-01-12 19:26:24 -0700219 * Return: pointer to bloblist, if the magic matches, else NULL
Simon Glass9341a3f2022-01-12 19:26:16 -0700220 */
221static inline void *bloblist_check_magic(ulong addr)
222{
223 u32 *ptr;
224
225 if (!addr)
226 return NULL;
227 ptr = map_sysmem(addr, 0);
228 if (*ptr != BLOBLIST_MAGIC)
229 return NULL;
230
231 return ptr;
232}
233
234/**
Simon Glass712bd2d2018-11-15 18:43:50 -0700235 * bloblist_find() - Find a blob
236 *
237 * Searches the bloblist and returns the blob with the matching tag
238 *
239 * @tag: Tag to search for (enum bloblist_tag_t)
Simon Glassf98fd602020-09-19 18:49:30 -0600240 * @size: Expected size of the blob, or 0 for any size
Simon Glass49ae4ad2022-01-12 19:26:24 -0700241 * Return: pointer to blob if found, or NULL if not found, or a blob was found
242 * but it is the wrong size
Simon Glass712bd2d2018-11-15 18:43:50 -0700243 */
244void *bloblist_find(uint tag, int size);
245
246/**
247 * bloblist_add() - Add a new blob
248 *
249 * Add a new blob to the bloblist
250 *
251 * This should only be called if you konw there is no existing blob for a
252 * particular tag. It is typically safe to call in the first phase of U-Boot
253 * (e.g. TPL or SPL). After that, bloblist_ensure() should be used instead.
254 *
255 * @tag: Tag to add (enum bloblist_tag_t)
256 * @size: Size of the blob
Simon Glassc2aa4ef2023-12-27 13:07:00 -0800257 * @align_log2: Alignment of the blob (in bytes log2), 0 for default
Simon Glass49ae4ad2022-01-12 19:26:24 -0700258 * Return: pointer to the newly added block, or NULL if there is not enough
259 * space for the blob
Simon Glass712bd2d2018-11-15 18:43:50 -0700260 */
Simon Glassc2aa4ef2023-12-27 13:07:00 -0800261void *bloblist_add(uint tag, int size, int align_log2);
Simon Glass712bd2d2018-11-15 18:43:50 -0700262
263/**
264 * bloblist_ensure_size() - Find or add a blob
265 *
266 * Find an existing blob, or add a new one if not found
267 *
268 * @tag: Tag to add (enum bloblist_tag_t)
269 * @size: Size of the blob
270 * @blobp: Returns a pointer to blob on success
Simon Glassc2aa4ef2023-12-27 13:07:00 -0800271 * @align_log2: Alignment of the blob (in bytes log2), 0 for default
Simon Glass49ae4ad2022-01-12 19:26:24 -0700272 * Return: 0 if OK, -ENOSPC if it is missing and could not be added due to lack
273 * of space, or -ESPIPE it exists but has the wrong size
Simon Glass712bd2d2018-11-15 18:43:50 -0700274 */
Simon Glassc2aa4ef2023-12-27 13:07:00 -0800275int bloblist_ensure_size(uint tag, int size, int align_log2, void **blobp);
Simon Glass712bd2d2018-11-15 18:43:50 -0700276
277/**
278 * bloblist_ensure() - Find or add a blob
279 *
280 * Find an existing blob, or add a new one if not found
281 *
282 * @tag: Tag to add (enum bloblist_tag_t)
283 * @size: Size of the blob
Simon Glass49ae4ad2022-01-12 19:26:24 -0700284 * Return: pointer to blob, or NULL if it is missing and could not be added due
285 * to lack of space, or it exists but has the wrong size
Simon Glass712bd2d2018-11-15 18:43:50 -0700286 */
287void *bloblist_ensure(uint tag, int size);
288
289/**
Simon Glass1e0304e2020-01-27 08:49:50 -0700290 * bloblist_ensure_size_ret() - Find or add a blob
291 *
292 * Find an existing blob, or add a new one if not found
293 *
294 * @tag: Tag to add (enum bloblist_tag_t)
295 * @sizep: Size of the blob to create; returns size of actual blob
296 * @blobp: Returns a pointer to blob on success
Simon Glass49ae4ad2022-01-12 19:26:24 -0700297 * Return: 0 if OK, -ENOSPC if it is missing and could not be added due to lack
298 * of space
Simon Glass1e0304e2020-01-27 08:49:50 -0700299 */
300int bloblist_ensure_size_ret(uint tag, int *sizep, void **blobp);
301
302/**
Simon Glassf20a1132021-07-05 16:32:53 -0600303 * bloblist_resize() - resize a blob
304 *
305 * Any blobs above this one are relocated up or down. The resized blob remains
306 * in the same place.
307 *
308 * @tag: Tag to add (enum bloblist_tag_t)
309 * @new_size: New size of the blob (>0 to expand, <0 to contract)
Simon Glass49ae4ad2022-01-12 19:26:24 -0700310 * Return: 0 if OK, -ENOSPC if the bloblist does not have enough space, -ENOENT
311 * if the tag is not found
Simon Glassf20a1132021-07-05 16:32:53 -0600312 */
313int bloblist_resize(uint tag, int new_size);
314
315/**
Simon Glass712bd2d2018-11-15 18:43:50 -0700316 * bloblist_new() - Create a new, empty bloblist of a given size
317 *
318 * @addr: Address of bloblist
319 * @size: Initial size for bloblist
320 * @flags: Flags to use for bloblist
Simon Glass49ae4ad2022-01-12 19:26:24 -0700321 * Return: 0 if OK, -EFAULT if addr is not aligned correctly, -ENOSPC is the
322 * area is not large enough
Simon Glass712bd2d2018-11-15 18:43:50 -0700323 */
324int bloblist_new(ulong addr, uint size, uint flags);
325
326/**
327 * bloblist_check() - Check if a bloblist exists
328 *
329 * @addr: Address of bloblist
330 * @size: Expected size of blobsize, or 0 to detect the size
Simon Glass49ae4ad2022-01-12 19:26:24 -0700331 * Return: 0 if OK, -ENOENT if the magic number doesn't match (indicating that
332 * there problem is no bloblist at the given address), -EPROTONOSUPPORT
333 * if the version does not match, -EIO if the checksum does not match,
334 * -EFBIG if the expected size does not match the detected size, -ENOSPC
335 * if the size is not large enough to hold the headers
Simon Glass712bd2d2018-11-15 18:43:50 -0700336 */
337int bloblist_check(ulong addr, uint size);
338
339/**
340 * bloblist_finish() - Set up the bloblist for the next U-Boot part
341 *
342 * This sets the correct checksum for the bloblist. This ensures that the
343 * bloblist will be detected correctly by the next phase of U-Boot.
344 *
Simon Glass49ae4ad2022-01-12 19:26:24 -0700345 * Return: 0
Simon Glass712bd2d2018-11-15 18:43:50 -0700346 */
347int bloblist_finish(void);
348
349/**
Simon Glassb936a972020-09-19 18:49:26 -0600350 * bloblist_get_stats() - Get information about the bloblist
351 *
352 * This returns useful information about the bloblist
Simon Glass1834c3d2021-07-05 16:32:54 -0600353 *
354 * @basep: Returns base address of bloblist
355 * @sizep: Returns the number of bytes used in the bloblist
356 * @allocedp: Returns the total space allocated to the bloblist
Simon Glassb936a972020-09-19 18:49:26 -0600357 */
358void bloblist_get_stats(ulong *basep, ulong *sizep, ulong *allocedp);
359
360/**
Simon Glass01fd56a2022-01-12 19:26:23 -0700361 * bloblist_get_base() - Get the base address of the bloblist
362 *
Simon Glass49ae4ad2022-01-12 19:26:24 -0700363 * Return: base address of bloblist
Simon Glass01fd56a2022-01-12 19:26:23 -0700364 */
365ulong bloblist_get_base(void);
366
367/**
368 * bloblist_get_size() - Get the size of the bloblist
369 *
Simon Glass49ae4ad2022-01-12 19:26:24 -0700370 * Return: the size in bytes
Simon Glass01fd56a2022-01-12 19:26:23 -0700371 */
372ulong bloblist_get_size(void);
373
374/**
Simon Glassb936a972020-09-19 18:49:26 -0600375 * bloblist_show_stats() - Show information about the bloblist
376 *
377 * This shows useful information about the bloblist on the console
378 */
379void bloblist_show_stats(void);
380
381/**
382 * bloblist_show_list() - Show a list of blobs in the bloblist
383 *
384 * This shows a list of blobs, showing their address, size and tag.
385 */
386void bloblist_show_list(void);
387
388/**
389 * bloblist_tag_name() - Get the name for a tag
390 *
391 * @tag: Tag to check
Simon Glass49ae4ad2022-01-12 19:26:24 -0700392 * Return: name of tag, or "invalid" if an invalid tag is provided
Simon Glassb936a972020-09-19 18:49:26 -0600393 */
394const char *bloblist_tag_name(enum bloblist_tag_t tag);
395
396/**
Simon Glassab7e7462021-01-13 20:29:43 -0700397 * bloblist_reloc() - Relocate the bloblist and optionally resize it
398 *
399 * @to: Pointer to new bloblist location (must not overlap old location)
Simon Glass49ae4ad2022-01-12 19:26:24 -0700400 * @to_size: New size for bloblist (must be larger than from_size)
Simon Glassab7e7462021-01-13 20:29:43 -0700401 * @from: Pointer to bloblist to relocate
402 * @from_size: Size of bloblist to relocate
403 */
404void bloblist_reloc(void *to, uint to_size, void *from, uint from_size);
405
406/**
Simon Glass712bd2d2018-11-15 18:43:50 -0700407 * bloblist_init() - Init the bloblist system with a single bloblist
408 *
Simon Glass49ae4ad2022-01-12 19:26:24 -0700409 * This locates and sets up the blocklist for use.
410 *
411 * If CONFIG_BLOBLIST_FIXED is selected, it uses CONFIG_BLOBLIST_ADDR and
412 * CONFIG_BLOBLIST_SIZE to set up a bloblist for use by U-Boot.
413 *
414 * If CONFIG_BLOBLIST_ALLOC is selected, it allocates memory for a bloblist of
415 * size CONFIG_BLOBLIST_SIZE.
416 *
417 * If CONFIG_BLOBLIST_PASSAGE is selected, it uses the bloblist in the incoming
418 * standard passage. The size is detected automatically so CONFIG_BLOBLIST_SIZE
419 * can be 0.
420 *
Simon Glassa28f39c2023-09-26 08:14:51 -0600421 * Sets GD_FLG_BLOBLIST_READY in global_data flags on success
422 *
Simon Glass49ae4ad2022-01-12 19:26:24 -0700423 * Return: 0 if OK, -ve on error
Simon Glass712bd2d2018-11-15 18:43:50 -0700424 */
425int bloblist_init(void);
426
Simon Glassa28f39c2023-09-26 08:14:51 -0600427#if CONFIG_IS_ENABLED(BLOBLIST)
428/**
429 * bloblist_maybe_init() - Init the bloblist system if not already done
430 *
431 * Calls bloblist_init() if the GD_FLG_BLOBLIST_READY flag is not et
432 *
433 * Return: 0 if OK, -ve on error
434 */
435int bloblist_maybe_init(void);
436#else
437static inline int bloblist_maybe_init(void)
438{
439 return 0;
440}
441#endif /* BLOBLIST */
442
Simon Glass712bd2d2018-11-15 18:43:50 -0700443#endif /* __BLOBLIST_H */