blob: 13f2b3f1009ec35940ac478ba268c6cc6acd794a [file] [log] [blame]
Simon Glass9f407d42018-11-15 18:43:50 -07001/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * This provides a standard way of passing information between boot phases
4 * (TPL -> SPL -> U-Boot proper.)
5 *
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.
8 *
9 * Copyright 2018 Google, Inc
10 * Written by Simon Glass <sjg@chromium.org>
11 */
12
13#ifndef __BLOBLIST_H
14#define __BLOBLIST_H
15
Simon Glassff3bd492022-01-12 19:26:16 -070016#include <mapmem.h>
17
Simon Glass9f407d42018-11-15 18:43:50 -070018enum {
19 BLOBLIST_VERSION = 0,
20 BLOBLIST_MAGIC = 0xb00757a3,
21 BLOBLIST_ALIGN = 16,
22};
23
Simon Glass4aed2272020-09-19 18:49:26 -060024/* Supported tags - add new ones to tag_name in bloblist.c */
Simon Glass9f407d42018-11-15 18:43:50 -070025enum bloblist_tag_t {
26 BLOBLISTT_NONE = 0,
27
Simon Glassf16ec772022-01-12 19:26:19 -070028 /*
29 * Standard area to allocate blobs used across firmware components, for
30 * things that are very commonly used, particularly in multiple
31 * projects.
32 */
33 BLOBLISTT_AREA_FIRMWARE_TOP = 0x1,
34
35 /* Standard area to allocate blobs used across firmware components */
36 BLOBLISTT_AREA_FIRMWARE = 0x100,
Simon Glass99e555a2020-09-22 12:44:55 -060037 /*
38 * Advanced Configuration and Power Interface Global Non-Volatile
39 * Sleeping table. This forms part of the ACPI tables passed to Linux.
40 */
Simon Glassf16ec772022-01-12 19:26:19 -070041 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 */
Simon Glass4aed2272020-09-19 18:49:26 -060048
Simon Glassf16ec772022-01-12 19:26:19 -070049 /*
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>
54 */
55 BLOBLISTT_PROJECT_AREA = 0x8000,
56 BLOBLISTT_U_BOOT_SPL_HANDOFF = 0x8000, /* Hand-off info from SPL */
57
58 /*
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>
63 */
64 BLOBLISTT_VENDOR_AREA = 0xc000,
65
66 /* Tags after this are not allocated for now */
67 BLOBLISTT_EXPANSION = 0x10000,
68
69 /*
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.
75 *
76 * This area may move in future.
77 */
78 BLOBLISTT_PRIVATE_AREA = 0xffff0000,
Simon Glass9f407d42018-11-15 18:43:50 -070079};
80
81/**
82 * struct bloblist_hdr - header for the bloblist
83 *
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
87 * around.
88 *
89 * None of the bloblist structures contain pointers but it is possible to put
90 * 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
93 * record.
94 *
95 * Each bloblist record is aligned to a 16-byte boundary and follows immediately
96 * from the last.
97 *
Simon Glassff3bd492022-01-12 19:26:16 -070098 * @magic: BLOBLIST_MAGIC
Simon Glass9f407d42018-11-15 18:43:50 -070099 * @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)
Simon Glassfaff5542021-07-05 16:32:54 -0600103 * @size: Total size of the bloblist (non-zero if valid) including this header.
Simon Glass9f407d42018-11-15 18:43:50 -0700104 * The bloblist extends for this many bytes from the start of this header.
Simon Glassfaff5542021-07-05 16:32:54 -0600105 * 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
Simon Glass9f407d42018-11-15 18:43:50 -0700107 * sizeof(bloblist_hdr) since we need at least that much space to store a
108 * valid bloblist
Simon Glasse9b6b2c2020-09-19 18:49:30 -0600109 * @spare: Spare space (for future use)
Simon Glass9f407d42018-11-15 18:43:50 -0700110 * @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: @chksum is last to make it easier to exclude it from the checksum
114 * calculation.
115 */
116struct bloblist_hdr {
Simon Glassff3bd492022-01-12 19:26:16 -0700117 u32 magic;
Simon Glass9f407d42018-11-15 18:43:50 -0700118 u32 version;
119 u32 hdr_size;
120 u32 flags;
Simon Glass9f407d42018-11-15 18:43:50 -0700121
122 u32 size;
123 u32 alloced;
124 u32 spare;
125 u32 chksum;
126};
127
128/**
129 * struct bloblist_rec - record for the bloblist
130 *
131 * NOTE: Only exported for testing purposes. Do not use this struct.
132 *
133 * The bloblist contains a number of records each consisting of this record
134 * structure followed by the data contained. Each records is 16-byte aligned.
135 *
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
142 */
143struct bloblist_rec {
144 u32 tag;
145 u32 hdr_size;
146 u32 size;
147 u32 spare;
148};
149
Simon Glass99047f52022-01-12 19:26:22 -0700150/* access CONFIG_BLOBLIST_ADDR, dealing with it possibly not being defined */
151static inline ulong bloblist_addr(void)
152{
153#ifdef CONFIG_BLOBLIST_FIXED
154 return CONFIG_BLOBLIST_ADDR;
155#else
156 return 0;
157#endif
158}
159
Simon Glass9f407d42018-11-15 18:43:50 -0700160/**
Simon Glassff3bd492022-01-12 19:26:16 -0700161 * bloblist_check_magic() - return a bloblist if the magic matches
162 *
163 * @addr: Address to check
164 * @return pointer to bloblist, if the magic matches, else NULL
165 */
166static inline void *bloblist_check_magic(ulong addr)
167{
168 u32 *ptr;
169
170 if (!addr)
171 return NULL;
172 ptr = map_sysmem(addr, 0);
173 if (*ptr != BLOBLIST_MAGIC)
174 return NULL;
175
176 return ptr;
177}
178
179/**
Simon Glass9f407d42018-11-15 18:43:50 -0700180 * bloblist_find() - Find a blob
181 *
182 * Searches the bloblist and returns the blob with the matching tag
183 *
184 * @tag: Tag to search for (enum bloblist_tag_t)
Simon Glasse9b6b2c2020-09-19 18:49:30 -0600185 * @size: Expected size of the blob, or 0 for any size
Simon Glass9f407d42018-11-15 18:43:50 -0700186 * @return pointer to blob if found, or NULL if not found, or a blob was found
187 * but it is the wrong size
188 */
189void *bloblist_find(uint tag, int size);
190
191/**
192 * bloblist_add() - Add a new blob
193 *
194 * Add a new blob to the bloblist
195 *
196 * This should only be called if you konw there is no existing blob for a
197 * particular tag. It is typically safe to call in the first phase of U-Boot
198 * (e.g. TPL or SPL). After that, bloblist_ensure() should be used instead.
199 *
200 * @tag: Tag to add (enum bloblist_tag_t)
201 * @size: Size of the blob
Simon Glass4c1497e2020-09-19 18:49:29 -0600202 * @align: Alignment of the blob (in bytes), 0 for default
Simon Glass9f407d42018-11-15 18:43:50 -0700203 * @return pointer to the newly added block, or NULL if there is not enough
204 * space for the blob
205 */
Simon Glass4c1497e2020-09-19 18:49:29 -0600206void *bloblist_add(uint tag, int size, int align);
Simon Glass9f407d42018-11-15 18:43:50 -0700207
208/**
209 * bloblist_ensure_size() - Find or add a blob
210 *
211 * Find an existing blob, or add a new one if not found
212 *
213 * @tag: Tag to add (enum bloblist_tag_t)
214 * @size: Size of the blob
215 * @blobp: Returns a pointer to blob on success
Simon Glass4c1497e2020-09-19 18:49:29 -0600216 * @align: Alignment of the blob (in bytes), 0 for default
Simon Glass9f407d42018-11-15 18:43:50 -0700217 * @return 0 if OK, -ENOSPC if it is missing and could not be added due to lack
218 * of space, or -ESPIPE it exists but has the wrong size
219 */
Simon Glass4c1497e2020-09-19 18:49:29 -0600220int bloblist_ensure_size(uint tag, int size, int align, void **blobp);
Simon Glass9f407d42018-11-15 18:43:50 -0700221
222/**
223 * bloblist_ensure() - Find or add a blob
224 *
225 * Find an existing blob, or add a new one if not found
226 *
227 * @tag: Tag to add (enum bloblist_tag_t)
228 * @size: Size of the blob
229 * @return pointer to blob, or NULL if it is missing and could not be added due
230 * to lack of space, or it exists but has the wrong size
231 */
232void *bloblist_ensure(uint tag, int size);
233
234/**
Simon Glass5b044542020-01-27 08:49:50 -0700235 * bloblist_ensure_size_ret() - Find or add a blob
236 *
237 * Find an existing blob, or add a new one if not found
238 *
239 * @tag: Tag to add (enum bloblist_tag_t)
240 * @sizep: Size of the blob to create; returns size of actual blob
241 * @blobp: Returns a pointer to blob on success
242 * @return 0 if OK, -ENOSPC if it is missing and could not be added due to lack
243 * of space
244 */
245int bloblist_ensure_size_ret(uint tag, int *sizep, void **blobp);
246
247/**
Simon Glass1fe59372021-07-05 16:32:53 -0600248 * bloblist_resize() - resize a blob
249 *
250 * Any blobs above this one are relocated up or down. The resized blob remains
251 * in the same place.
252 *
253 * @tag: Tag to add (enum bloblist_tag_t)
254 * @new_size: New size of the blob (>0 to expand, <0 to contract)
255 * @return 0 if OK, -ENOSPC if the bloblist does not have enough space, -ENOENT
256 * if the tag is not found
257 */
258int bloblist_resize(uint tag, int new_size);
259
260/**
Simon Glass9f407d42018-11-15 18:43:50 -0700261 * bloblist_new() - Create a new, empty bloblist of a given size
262 *
263 * @addr: Address of bloblist
264 * @size: Initial size for bloblist
265 * @flags: Flags to use for bloblist
266 * @return 0 if OK, -EFAULT if addr is not aligned correctly, -ENOSPC is the
267 * area is not large enough
268 */
269int bloblist_new(ulong addr, uint size, uint flags);
270
271/**
272 * bloblist_check() - Check if a bloblist exists
273 *
274 * @addr: Address of bloblist
275 * @size: Expected size of blobsize, or 0 to detect the size
276 * @return 0 if OK, -ENOENT if the magic number doesn't match (indicating that
277 * there problem is no bloblist at the given address), -EPROTONOSUPPORT
278 * if the version does not match, -EIO if the checksum does not match,
Simon Glass02247c12020-01-27 08:49:51 -0700279 * -EFBIG if the expected size does not match the detected size, -ENOSPC
280 * if the size is not large enough to hold the headers
Simon Glass9f407d42018-11-15 18:43:50 -0700281 */
282int bloblist_check(ulong addr, uint size);
283
284/**
285 * bloblist_finish() - Set up the bloblist for the next U-Boot part
286 *
287 * This sets the correct checksum for the bloblist. This ensures that the
288 * bloblist will be detected correctly by the next phase of U-Boot.
289 *
290 * @return 0
291 */
292int bloblist_finish(void);
293
294/**
Simon Glass4aed2272020-09-19 18:49:26 -0600295 * bloblist_get_stats() - Get information about the bloblist
296 *
297 * This returns useful information about the bloblist
Simon Glassfaff5542021-07-05 16:32:54 -0600298 *
299 * @basep: Returns base address of bloblist
300 * @sizep: Returns the number of bytes used in the bloblist
301 * @allocedp: Returns the total space allocated to the bloblist
Simon Glass4aed2272020-09-19 18:49:26 -0600302 */
303void bloblist_get_stats(ulong *basep, ulong *sizep, ulong *allocedp);
304
305/**
306 * bloblist_show_stats() - Show information about the bloblist
307 *
308 * This shows useful information about the bloblist on the console
309 */
310void bloblist_show_stats(void);
311
312/**
313 * bloblist_show_list() - Show a list of blobs in the bloblist
314 *
315 * This shows a list of blobs, showing their address, size and tag.
316 */
317void bloblist_show_list(void);
318
319/**
320 * bloblist_tag_name() - Get the name for a tag
321 *
322 * @tag: Tag to check
323 * @return name of tag, or "invalid" if an invalid tag is provided
324 */
325const char *bloblist_tag_name(enum bloblist_tag_t tag);
326
327/**
Simon Glass9fe06462021-01-13 20:29:43 -0700328 * bloblist_reloc() - Relocate the bloblist and optionally resize it
329 *
330 * @to: Pointer to new bloblist location (must not overlap old location)
331 * @to:size: New size for bloblist (must be larger than from_size)
332 * @from: Pointer to bloblist to relocate
333 * @from_size: Size of bloblist to relocate
334 */
335void bloblist_reloc(void *to, uint to_size, void *from, uint from_size);
336
337/**
Simon Glass9f407d42018-11-15 18:43:50 -0700338 * bloblist_init() - Init the bloblist system with a single bloblist
339 *
340 * This uses CONFIG_BLOBLIST_ADDR and CONFIG_BLOBLIST_SIZE to set up a bloblist
341 * for use by U-Boot.
342 */
343int bloblist_init(void);
344
345#endif /* __BLOBLIST_H */