blob: 84fc9438191c0df0afc7a236f7c074605e2f374b [file] [log] [blame]
Simon Glass6c9e3d12022-01-12 19:26:25 -07001/* SPDX-License-Identifier: GPL-2.0+ BSD-3-Clause */
Simon Glass9f407d42018-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 Glass68ff6d32022-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 *
Simon Glassb6e83822023-12-27 13:07:07 -080027 * 5. Bloblist uses 8-byte alignment internally and is designed to start on a
28 * 8-byte boundary. Its headers are 8 bytes long. It is possible to achieve
29 * larger alignment (e.g. 16 bytes) by adding a dummy header, For use in SPL and
30 * TPL the alignment can be relaxed, since it can be relocated to an aligned
31 * address in U-Boot proper.
Simon Glass68ff6d32022-03-13 16:22:48 -060032 *
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 Glass9f407d42018-11-15 18:43:50 -070066 *
67 * Copyright 2018 Google, Inc
68 * Written by Simon Glass <sjg@chromium.org>
Simon Glasse266d272023-12-27 13:07:10 -080069 * Adjusted July 2023 to match Firmware handoff specification, Release 0.9
Simon Glass9f407d42018-11-15 18:43:50 -070070 */
71
72#ifndef __BLOBLIST_H
73#define __BLOBLIST_H
74
Simon Glassff3bd492022-01-12 19:26:16 -070075#include <mapmem.h>
76
Simon Glass9f407d42018-11-15 18:43:50 -070077enum {
Simon Glass0b9f77f2023-12-27 13:07:02 -080078 BLOBLIST_VERSION = 1,
Simon Glass5a53e562023-12-27 13:07:01 -080079 BLOBLIST_MAGIC = 0x4a0fb10b,
Simon Glass1a2e02f2023-12-27 13:07:00 -080080
Simon Glassb6e83822023-12-27 13:07:07 -080081 BLOBLIST_BLOB_ALIGN_LOG2 = 3,
82 BLOBLIST_BLOB_ALIGN = 1 << BLOBLIST_BLOB_ALIGN_LOG2,
83
Simon Glass1a2e02f2023-12-27 13:07:00 -080084 BLOBLIST_ALIGN_LOG2 = 3,
85 BLOBLIST_ALIGN = 1 << BLOBLIST_ALIGN_LOG2,
Simon Glass9f407d42018-11-15 18:43:50 -070086};
87
Simon Glass4aed2272020-09-19 18:49:26 -060088/* Supported tags - add new ones to tag_name in bloblist.c */
Simon Glass9f407d42018-11-15 18:43:50 -070089enum bloblist_tag_t {
Simon Glasse748e4b2023-12-27 13:06:59 -080090 BLOBLISTT_VOID = 0,
Simon Glass9f407d42018-11-15 18:43:50 -070091
Simon Glassf16ec772022-01-12 19:26:19 -070092 /*
93 * Standard area to allocate blobs used across firmware components, for
94 * things that are very commonly used, particularly in multiple
95 * projects.
96 */
97 BLOBLISTT_AREA_FIRMWARE_TOP = 0x1,
Simon Glasse748e4b2023-12-27 13:06:59 -080098 /*
99 * Devicetree for use by firmware. On some platforms this is passed to
100 * the OS also
101 */
102 BLOBLISTT_CONTROL_FDT = 1,
103 BLOBLISTT_HOB_BLOCK = 2,
104 BLOBLISTT_HOB_LIST = 3,
105 BLOBLISTT_ACPI_TABLES = 4,
106 BLOBLISTT_TPM_EVLOG = 5,
107 BLOBLISTT_TPM_CRB_BASE = 6,
Simon Glassf16ec772022-01-12 19:26:19 -0700108
109 /* Standard area to allocate blobs used across firmware components */
Simon Glasse748e4b2023-12-27 13:06:59 -0800110 BLOBLISTT_AREA_FIRMWARE = 0x10,
111 BLOBLISTT_TPM2_TCG_LOG = 0x10, /* TPM v2 log space */
112 BLOBLISTT_TCPA_LOG = 0x11, /* TPM log space */
Simon Glass99e555a2020-09-22 12:44:55 -0600113 /*
114 * Advanced Configuration and Power Interface Global Non-Volatile
115 * Sleeping table. This forms part of the ACPI tables passed to Linux.
116 */
Simon Glasse748e4b2023-12-27 13:06:59 -0800117 BLOBLISTT_ACPI_GNVS = 0x12,
Simon Glass4aed2272020-09-19 18:49:26 -0600118
Simon Glasse748e4b2023-12-27 13:06:59 -0800119 /* Standard area to allocate blobs used for Trusted Firmware */
120 BLOBLISTT_AREA_TF = 0x100,
121 BLOBLISTT_OPTEE_PAGABLE_PART = 0x100,
Simon Glassf16ec772022-01-12 19:26:19 -0700122
Simon Glasse748e4b2023-12-27 13:06:59 -0800123 /* Other standard area to allocate blobs */
124 BLOBLISTT_AREA_OTHER = 0x200,
125 BLOBLISTT_INTEL_VBT = 0x200, /* Intel Video-BIOS table */
126 BLOBLISTT_SMBIOS_TABLES = 0x201, /* SMBIOS tables for x86 */
127 BLOBLISTT_VBOOT_CTX = 0x202, /* Chromium OS verified boot context */
Simon Glassf16ec772022-01-12 19:26:19 -0700128
129 /*
130 * Tags from here are on reserved for private use within a single
131 * firmware binary (i.e. a single executable or phase of a project).
132 * These tags can be passed between binaries within a local
133 * implementation, but cannot be used in upstream code. Allocate a
134 * tag in one of the areas above if you want that.
135 *
Simon Glasse748e4b2023-12-27 13:06:59 -0800136 * Project-specific tags are permitted here. Projects can be open source
137 * or not, but the format of the data must be fuily documented in an
138 * open source project, including all fields, bits, etc. Naming should
139 * be: BLOBLISTT_<project>_<purpose_here>
140 *
141 * Vendor-specific tags are also permitted. Projects can be open source
142 * or not, but the format of the data must be fuily documented in an
143 * open source project, including all fields, bits, etc. Naming should
144 * be BLOBLISTT_<vendor>_<purpose_here>
Simon Glassf16ec772022-01-12 19:26:19 -0700145 */
Simon Glasse748e4b2023-12-27 13:06:59 -0800146 BLOBLISTT_PRIVATE_AREA = 0xfff000,
147 BLOBLISTT_U_BOOT_SPL_HANDOFF = 0xfff000, /* Hand-off info from SPL */
148 BLOBLISTT_VBE = 0xfff001, /* VBE per-phase state */
149 BLOBLISTT_U_BOOT_VIDEO = 0xfff002, /* Video info from SPL */
Simon Glass9f407d42018-11-15 18:43:50 -0700150};
151
152/**
153 * struct bloblist_hdr - header for the bloblist
154 *
155 * This is stored at the start of the bloblist which is always on a 16-byte
156 * boundary. Records follow this header. The bloblist normally stays in the
157 * same place in memory as SPL and U-Boot execute, but it can be safely moved
158 * around.
159 *
Simon Glass20a14932022-01-12 19:26:24 -0700160 * None of the bloblist headers themselves contain pointers but it is possible
161 * to put pointers inside a bloblist record if desired. This is not encouraged,
Simon Glass9f407d42018-11-15 18:43:50 -0700162 * since it can make part of the bloblist inaccessible if the pointer is
163 * no-longer valid. It is better to just store all the data inside a bloblist
164 * record.
165 *
166 * Each bloblist record is aligned to a 16-byte boundary and follows immediately
167 * from the last.
168 *
Simon Glassff3bd492022-01-12 19:26:16 -0700169 * @magic: BLOBLIST_MAGIC
Simon Glassb86b2d92023-12-27 13:07:08 -0800170 * @chksum: checksum for the entire bloblist allocated area. Since any of the
171 * blobs can be altered after being created, this checksum is only valid
172 * when the bloblist is finalized before jumping to the next stage of boot.
173 * This is the value needed to make all checksummed bytes sum to 0
Simon Glass9f407d42018-11-15 18:43:50 -0700174 * @version: BLOBLIST_VERSION
175 * @hdr_size: Size of this header, normally sizeof(struct bloblist_hdr). The
176 * first bloblist_rec starts at this offset from the start of the header
Simon Glassb86b2d92023-12-27 13:07:08 -0800177 * @align_log2: Power of two of the maximum alignment required by this list
178 * @used_size: Size allocated so far for this bloblist. This starts out as
Simon Glass9f407d42018-11-15 18:43:50 -0700179 * sizeof(bloblist_hdr) since we need at least that much space to store a
180 * valid bloblist
Simon Glassb86b2d92023-12-27 13:07:08 -0800181 * @total_size: The number of total bytes that the bloblist can occupy.
182 * Any blob producer must check if there is sufficient space before adding
183 * a record to the bloblist.
184 * @flags: Space for BLOBLISTF... flags (none yet)
Simon Glasse9b6b2c2020-09-19 18:49:30 -0600185 * @spare: Spare space (for future use)
Simon Glass9f407d42018-11-15 18:43:50 -0700186 */
187struct bloblist_hdr {
Simon Glassff3bd492022-01-12 19:26:16 -0700188 u32 magic;
Simon Glassb86b2d92023-12-27 13:07:08 -0800189 u8 chksum;
190 u8 version;
191 u8 hdr_size;
192 u8 align_log2;
193 u32 used_size;
194 u32 total_size;
Simon Glass9f407d42018-11-15 18:43:50 -0700195 u32 flags;
Simon Glass9f407d42018-11-15 18:43:50 -0700196 u32 spare;
Simon Glass9f407d42018-11-15 18:43:50 -0700197};
198
199/**
200 * struct bloblist_rec - record for the bloblist
201 *
Simon Glass9f407d42018-11-15 18:43:50 -0700202 * The bloblist contains a number of records each consisting of this record
203 * structure followed by the data contained. Each records is 16-byte aligned.
204 *
Simon Glass20a14932022-01-12 19:26:24 -0700205 * NOTE: Only exported for testing purposes. Do not use this struct.
206 *
Simon Glassb6e83822023-12-27 13:07:07 -0800207 * @tag_and_hdr_size: Tag indicating what the record contains (bottom 24 bits), and
208 * size of this header (top 8 bits), normally sizeof(struct bloblist_rec).
209 * The record's data starts at this offset from the start of the record
Simon Glass9f407d42018-11-15 18:43:50 -0700210 * @size: Size of record in bytes, excluding the header size. This does not
211 * need to be aligned (e.g. 3 is OK).
Simon Glass9f407d42018-11-15 18:43:50 -0700212 */
213struct bloblist_rec {
Simon Glassb6e83822023-12-27 13:07:07 -0800214 u32 tag_and_hdr_size;
Simon Glass9f407d42018-11-15 18:43:50 -0700215 u32 size;
Simon Glassb6e83822023-12-27 13:07:07 -0800216};
217
218enum {
219 BLOBLISTR_TAG_SHIFT = 0,
220 BLOBLISTR_TAG_MASK = 0xffffffU << BLOBLISTR_TAG_SHIFT,
221 BLOBLISTR_HDR_SIZE_SHIFT = 24,
222 BLOBLISTR_HDR_SIZE_MASK = 0xffU << BLOBLISTR_HDR_SIZE_SHIFT,
223
224 BLOBLIST_HDR_SIZE = sizeof(struct bloblist_hdr),
225 BLOBLIST_REC_HDR_SIZE = sizeof(struct bloblist_rec),
Simon Glass9f407d42018-11-15 18:43:50 -0700226};
227
228/**
Simon Glassff3bd492022-01-12 19:26:16 -0700229 * bloblist_check_magic() - return a bloblist if the magic matches
230 *
231 * @addr: Address to check
Simon Glass20a14932022-01-12 19:26:24 -0700232 * Return: pointer to bloblist, if the magic matches, else NULL
Simon Glassff3bd492022-01-12 19:26:16 -0700233 */
234static inline void *bloblist_check_magic(ulong addr)
235{
236 u32 *ptr;
237
238 if (!addr)
239 return NULL;
240 ptr = map_sysmem(addr, 0);
241 if (*ptr != BLOBLIST_MAGIC)
242 return NULL;
243
244 return ptr;
245}
246
247/**
Simon Glass9f407d42018-11-15 18:43:50 -0700248 * bloblist_find() - Find a blob
249 *
250 * Searches the bloblist and returns the blob with the matching tag
251 *
252 * @tag: Tag to search for (enum bloblist_tag_t)
Simon Glasse9b6b2c2020-09-19 18:49:30 -0600253 * @size: Expected size of the blob, or 0 for any size
Simon Glass20a14932022-01-12 19:26:24 -0700254 * Return: pointer to blob if found, or NULL if not found, or a blob was found
255 * but it is the wrong size
Simon Glass9f407d42018-11-15 18:43:50 -0700256 */
257void *bloblist_find(uint tag, int size);
258
259/**
260 * bloblist_add() - Add a new blob
261 *
262 * Add a new blob to the bloblist
263 *
264 * This should only be called if you konw there is no existing blob for a
265 * particular tag. It is typically safe to call in the first phase of U-Boot
266 * (e.g. TPL or SPL). After that, bloblist_ensure() should be used instead.
267 *
268 * @tag: Tag to add (enum bloblist_tag_t)
269 * @size: Size of the blob
Simon Glass1a2e02f2023-12-27 13:07:00 -0800270 * @align_log2: Alignment of the blob (in bytes log2), 0 for default
Simon Glass20a14932022-01-12 19:26:24 -0700271 * Return: pointer to the newly added block, or NULL if there is not enough
272 * space for the blob
Simon Glass9f407d42018-11-15 18:43:50 -0700273 */
Simon Glass1a2e02f2023-12-27 13:07:00 -0800274void *bloblist_add(uint tag, int size, int align_log2);
Simon Glass9f407d42018-11-15 18:43:50 -0700275
276/**
277 * bloblist_ensure_size() - Find or add a blob
278 *
279 * Find an existing blob, or add a new one if not found
280 *
281 * @tag: Tag to add (enum bloblist_tag_t)
282 * @size: Size of the blob
283 * @blobp: Returns a pointer to blob on success
Simon Glass1a2e02f2023-12-27 13:07:00 -0800284 * @align_log2: Alignment of the blob (in bytes log2), 0 for default
Simon Glass20a14932022-01-12 19:26:24 -0700285 * Return: 0 if OK, -ENOSPC if it is missing and could not be added due to lack
286 * of space, or -ESPIPE it exists but has the wrong size
Simon Glass9f407d42018-11-15 18:43:50 -0700287 */
Simon Glass1a2e02f2023-12-27 13:07:00 -0800288int bloblist_ensure_size(uint tag, int size, int align_log2, void **blobp);
Simon Glass9f407d42018-11-15 18:43:50 -0700289
290/**
291 * bloblist_ensure() - Find or add a blob
292 *
293 * Find an existing blob, or add a new one if not found
294 *
295 * @tag: Tag to add (enum bloblist_tag_t)
296 * @size: Size of the blob
Simon Glass20a14932022-01-12 19:26:24 -0700297 * Return: pointer to blob, or NULL if it is missing and could not be added due
298 * to lack of space, or it exists but has the wrong size
Simon Glass9f407d42018-11-15 18:43:50 -0700299 */
300void *bloblist_ensure(uint tag, int size);
301
302/**
Simon Glass5b044542020-01-27 08:49:50 -0700303 * bloblist_ensure_size_ret() - Find or add a blob
304 *
305 * Find an existing blob, or add a new one if not found
306 *
307 * @tag: Tag to add (enum bloblist_tag_t)
308 * @sizep: Size of the blob to create; returns size of actual blob
309 * @blobp: Returns a pointer to blob on success
Simon Glass20a14932022-01-12 19:26:24 -0700310 * Return: 0 if OK, -ENOSPC if it is missing and could not be added due to lack
311 * of space
Simon Glass5b044542020-01-27 08:49:50 -0700312 */
313int bloblist_ensure_size_ret(uint tag, int *sizep, void **blobp);
314
315/**
Simon Glass1fe59372021-07-05 16:32:53 -0600316 * bloblist_resize() - resize a blob
317 *
318 * Any blobs above this one are relocated up or down. The resized blob remains
319 * in the same place.
320 *
321 * @tag: Tag to add (enum bloblist_tag_t)
322 * @new_size: New size of the blob (>0 to expand, <0 to contract)
Simon Glass20a14932022-01-12 19:26:24 -0700323 * Return: 0 if OK, -ENOSPC if the bloblist does not have enough space, -ENOENT
324 * if the tag is not found
Simon Glass1fe59372021-07-05 16:32:53 -0600325 */
326int bloblist_resize(uint tag, int new_size);
327
328/**
Simon Glass9f407d42018-11-15 18:43:50 -0700329 * bloblist_new() - Create a new, empty bloblist of a given size
330 *
331 * @addr: Address of bloblist
332 * @size: Initial size for bloblist
333 * @flags: Flags to use for bloblist
Simon Glass7d790a82023-12-27 13:07:09 -0800334 * @align_log2: Log base 2 of maximum alignment provided by this bloblist
Simon Glass20a14932022-01-12 19:26:24 -0700335 * Return: 0 if OK, -EFAULT if addr is not aligned correctly, -ENOSPC is the
336 * area is not large enough
Simon Glass9f407d42018-11-15 18:43:50 -0700337 */
Simon Glass7d790a82023-12-27 13:07:09 -0800338int bloblist_new(ulong addr, uint size, uint flags, uint align_log2);
Simon Glass9f407d42018-11-15 18:43:50 -0700339
340/**
341 * bloblist_check() - Check if a bloblist exists
342 *
343 * @addr: Address of bloblist
344 * @size: Expected size of blobsize, or 0 to detect the size
Simon Glass20a14932022-01-12 19:26:24 -0700345 * Return: 0 if OK, -ENOENT if the magic number doesn't match (indicating that
346 * there problem is no bloblist at the given address), -EPROTONOSUPPORT
347 * if the version does not match, -EIO if the checksum does not match,
348 * -EFBIG if the expected size does not match the detected size, -ENOSPC
349 * if the size is not large enough to hold the headers
Simon Glass9f407d42018-11-15 18:43:50 -0700350 */
351int bloblist_check(ulong addr, uint size);
352
353/**
354 * bloblist_finish() - Set up the bloblist for the next U-Boot part
355 *
356 * This sets the correct checksum for the bloblist. This ensures that the
357 * bloblist will be detected correctly by the next phase of U-Boot.
358 *
Simon Glass20a14932022-01-12 19:26:24 -0700359 * Return: 0
Simon Glass9f407d42018-11-15 18:43:50 -0700360 */
361int bloblist_finish(void);
362
363/**
Simon Glass4aed2272020-09-19 18:49:26 -0600364 * bloblist_get_stats() - Get information about the bloblist
365 *
366 * This returns useful information about the bloblist
Simon Glassfaff5542021-07-05 16:32:54 -0600367 *
368 * @basep: Returns base address of bloblist
Simon Glassb86b2d92023-12-27 13:07:08 -0800369 * @tsizep: Returns the total number of bytes of the bloblist
370 * @usizep: Returns the number of used bytes of the bloblist
Simon Glass4aed2272020-09-19 18:49:26 -0600371 */
Simon Glassb86b2d92023-12-27 13:07:08 -0800372void bloblist_get_stats(ulong *basep, ulong *tsizep, ulong *usizep);
Simon Glass4aed2272020-09-19 18:49:26 -0600373
374/**
Simon Glasse50a24a2022-01-12 19:26:23 -0700375 * bloblist_get_base() - Get the base address of the bloblist
376 *
Simon Glass20a14932022-01-12 19:26:24 -0700377 * Return: base address of bloblist
Simon Glasse50a24a2022-01-12 19:26:23 -0700378 */
379ulong bloblist_get_base(void);
380
381/**
382 * bloblist_get_size() - Get the size of the bloblist
383 *
Simon Glass20a14932022-01-12 19:26:24 -0700384 * Return: the size in bytes
Simon Glasse50a24a2022-01-12 19:26:23 -0700385 */
386ulong bloblist_get_size(void);
387
388/**
Simon Glassb86b2d92023-12-27 13:07:08 -0800389 * bloblist_get_total_size() - Get the total size of the bloblist
390 *
391 * Return: the size in bytes
392 */
393ulong bloblist_get_total_size(void);
394
395/**
Simon Glass4aed2272020-09-19 18:49:26 -0600396 * bloblist_show_stats() - Show information about the bloblist
397 *
398 * This shows useful information about the bloblist on the console
399 */
400void bloblist_show_stats(void);
401
402/**
403 * bloblist_show_list() - Show a list of blobs in the bloblist
404 *
405 * This shows a list of blobs, showing their address, size and tag.
406 */
407void bloblist_show_list(void);
408
409/**
410 * bloblist_tag_name() - Get the name for a tag
411 *
412 * @tag: Tag to check
Simon Glass20a14932022-01-12 19:26:24 -0700413 * Return: name of tag, or "invalid" if an invalid tag is provided
Simon Glass4aed2272020-09-19 18:49:26 -0600414 */
415const char *bloblist_tag_name(enum bloblist_tag_t tag);
416
417/**
Simon Glass9fe06462021-01-13 20:29:43 -0700418 * bloblist_reloc() - Relocate the bloblist and optionally resize it
419 *
420 * @to: Pointer to new bloblist location (must not overlap old location)
Simon Glass20a14932022-01-12 19:26:24 -0700421 * @to_size: New size for bloblist (must be larger than from_size)
Simon Glass9fe06462021-01-13 20:29:43 -0700422 * @from: Pointer to bloblist to relocate
423 * @from_size: Size of bloblist to relocate
424 */
425void bloblist_reloc(void *to, uint to_size, void *from, uint from_size);
426
427/**
Simon Glass9f407d42018-11-15 18:43:50 -0700428 * bloblist_init() - Init the bloblist system with a single bloblist
429 *
Simon Glass20a14932022-01-12 19:26:24 -0700430 * This locates and sets up the blocklist for use.
431 *
432 * If CONFIG_BLOBLIST_FIXED is selected, it uses CONFIG_BLOBLIST_ADDR and
433 * CONFIG_BLOBLIST_SIZE to set up a bloblist for use by U-Boot.
434 *
435 * If CONFIG_BLOBLIST_ALLOC is selected, it allocates memory for a bloblist of
436 * size CONFIG_BLOBLIST_SIZE.
437 *
438 * If CONFIG_BLOBLIST_PASSAGE is selected, it uses the bloblist in the incoming
439 * standard passage. The size is detected automatically so CONFIG_BLOBLIST_SIZE
440 * can be 0.
441 *
Simon Glass3d653182023-09-26 08:14:51 -0600442 * Sets GD_FLG_BLOBLIST_READY in global_data flags on success
443 *
Simon Glass20a14932022-01-12 19:26:24 -0700444 * Return: 0 if OK, -ve on error
Simon Glass9f407d42018-11-15 18:43:50 -0700445 */
446int bloblist_init(void);
447
Simon Glass3d653182023-09-26 08:14:51 -0600448#if CONFIG_IS_ENABLED(BLOBLIST)
449/**
450 * bloblist_maybe_init() - Init the bloblist system if not already done
451 *
452 * Calls bloblist_init() if the GD_FLG_BLOBLIST_READY flag is not et
453 *
454 * Return: 0 if OK, -ve on error
455 */
456int bloblist_maybe_init(void);
457#else
458static inline int bloblist_maybe_init(void)
459{
460 return 0;
461}
462#endif /* BLOBLIST */
463
Simon Glass9f407d42018-11-15 18:43:50 -0700464#endif /* __BLOBLIST_H */