blob: 055edbaac2eab24eb27ec6155e1c9cf8c12e7233 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Gabe Black84cd9322012-10-12 14:26:11 +00002/*
3 * Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
Gabe Black84cd9322012-10-12 14:26:11 +00004 */
5
6#ifndef __CBFS_H
7#define __CBFS_H
8
9#include <compiler.h>
10#include <linux/compiler.h>
11
Simon Glassc4f5b5d2021-03-15 18:00:13 +130012struct cbfs_priv;
13
Gabe Black84cd9322012-10-12 14:26:11 +000014enum cbfs_result {
15 CBFS_SUCCESS = 0,
16 CBFS_NOT_INITIALIZED,
17 CBFS_BAD_HEADER,
18 CBFS_BAD_FILE,
19 CBFS_FILE_NOT_FOUND
20};
21
22enum cbfs_filetype {
Bin Meng881bb9a2018-12-22 01:55:51 -080023 CBFS_TYPE_BOOTBLOCK = 0x01,
24 CBFS_TYPE_CBFSHEADER = 0x02,
Gabe Black84cd9322012-10-12 14:26:11 +000025 CBFS_TYPE_STAGE = 0x10,
26 CBFS_TYPE_PAYLOAD = 0x20,
Bin Meng881bb9a2018-12-22 01:55:51 -080027 CBFS_TYPE_FIT = 0x21,
Gabe Black84cd9322012-10-12 14:26:11 +000028 CBFS_TYPE_OPTIONROM = 0x30,
29 CBFS_TYPE_BOOTSPLASH = 0x40,
30 CBFS_TYPE_RAW = 0x50,
31 CBFS_TYPE_VSA = 0x51,
32 CBFS_TYPE_MBI = 0x52,
33 CBFS_TYPE_MICROCODE = 0x53,
Bin Meng881bb9a2018-12-22 01:55:51 -080034 CBFS_TYPE_FSP = 0x60,
35 CBFS_TYPE_MRC = 0x61,
36 CBFS_TYPE_MMA = 0x62,
37 CBFS_TYPE_EFI = 0x63,
38 CBFS_TYPE_STRUCT = 0x70,
Bin Meng14fdf912018-12-22 01:55:50 -080039 CBFS_TYPE_CMOS_DEFAULT = 0xaa,
Bin Meng881bb9a2018-12-22 01:55:51 -080040 CBFS_TYPE_SPD = 0xab,
41 CBFS_TYPE_MRC_CACHE = 0xac,
Bin Meng14fdf912018-12-22 01:55:50 -080042 CBFS_TYPE_CMOS_LAYOUT = 0x01aa
Gabe Black84cd9322012-10-12 14:26:11 +000043};
44
Simon Glass08b7bc32019-07-08 13:18:21 -060045enum {
46 CBFS_HEADER_MAGIC = 0x4f524243,
Simon Glass5536f122021-03-15 18:00:12 +130047 CBFS_SIZE_UNKNOWN = 0xffffffff,
48 CBFS_ALIGN_SIZE = 0x40,
Simon Glass08b7bc32019-07-08 13:18:21 -060049};
50
51/**
52 * struct cbfs_header - header at the start of a CBFS region
53 *
54 * All fields use big-endian format.
55 *
56 * @magic: Magic number (CBFS_HEADER_MAGIC)
57 */
Gabe Black84cd9322012-10-12 14:26:11 +000058struct cbfs_header {
59 u32 magic;
60 u32 version;
61 u32 rom_size;
62 u32 boot_block_size;
63 u32 align;
64 u32 offset;
65 u32 pad[2];
66} __packed;
67
68struct cbfs_fileheader {
69 u8 magic[8];
70 u32 len;
71 u32 type;
Simon Glassababe102019-07-08 13:18:22 -060072 /* offset to struct cbfs_file_attribute or 0 */
73 u32 attributes_offset;
Gabe Black84cd9322012-10-12 14:26:11 +000074 u32 offset;
Simon Glass72ca4852021-03-15 18:00:09 +130075 char filename[];
76} __packed;
77
78/*
79 * Depending on how the header was initialized, it may be backed with 0x00 or
80 * 0xff, so support both
81 */
82#define CBFS_FILE_ATTR_TAG_UNUSED 0
83#define CBFS_FILE_ATTR_TAG_UNUSED2 0xffffffff
84#define CBFS_FILE_ATTR_TAG_COMPRESSION 0x42435a4c
85#define CBFS_FILE_ATTR_TAG_HASH 0x68736148
86
87/*
88 * The common fields of extended cbfs file attributes. Attributes are expected
89 * to start with tag/len, then append their specific fields
90 */
91struct cbfs_file_attribute {
92 u32 tag;
93 /* len covers the whole structure, incl. tag and len */
94 u32 len;
95 u8 data[0];
96} __packed;
97
98struct cbfs_file_attr_compression {
99 u32 tag;
100 u32 len;
101 /* whole file compression format. 0 if no compression. */
102 u32 compression;
103 u32 decompressed_size;
104} __packed;
105
106struct cbfs_file_attr_hash {
107 u32 tag;
108 u32 len;
109 u32 hash_type;
110 /* hash_data is len - sizeof(struct) bytes */
111 u8 hash_data[];
Gabe Black84cd9322012-10-12 14:26:11 +0000112} __packed;
113
114struct cbfs_cachenode {
115 struct cbfs_cachenode *next;
Gabe Black84cd9322012-10-12 14:26:11 +0000116 void *data;
Gabe Black84cd9322012-10-12 14:26:11 +0000117 char *name;
Heinrich Schuchardt895ae872019-10-07 00:37:45 +0200118 u32 type;
119 u32 data_length;
Gabe Black84cd9322012-10-12 14:26:11 +0000120 u32 name_length;
Simon Glass72ca4852021-03-15 18:00:09 +1300121 u32 attr_offset;
Heinrich Schuchardt895ae872019-10-07 00:37:45 +0200122};
Gabe Black84cd9322012-10-12 14:26:11 +0000123
Simon Glasse3ff7972012-11-05 12:16:25 +0000124/**
125 * file_cbfs_error() - Return a string describing the most recent error
126 * condition.
Gabe Black84cd9322012-10-12 14:26:11 +0000127 *
128 * @return A pointer to the constant string.
129 */
130const char *file_cbfs_error(void);
131
Simon Glasse3ff7972012-11-05 12:16:25 +0000132/**
Simon Glassc7f16932019-08-14 19:56:13 -0600133 * cbfs_get_result() - Get the result of the last CBFS operation
134 *
135 *@return last result
136 */
137enum cbfs_result cbfs_get_result(void);
138
139/**
Simon Glasse3ff7972012-11-05 12:16:25 +0000140 * file_cbfs_init() - Initialize the CBFS driver and load metadata into RAM.
Gabe Black84cd9322012-10-12 14:26:11 +0000141 *
Simon Glass0e7b6312020-05-24 17:38:21 -0600142 * @end_of_rom: Points to the end of the ROM the CBFS should be read from
143 * @return 0 if OK, -ve on error
Gabe Black84cd9322012-10-12 14:26:11 +0000144 */
Simon Glass0e7b6312020-05-24 17:38:21 -0600145int file_cbfs_init(ulong end_of_rom);
Gabe Black84cd9322012-10-12 14:26:11 +0000146
Simon Glasse3ff7972012-11-05 12:16:25 +0000147/**
148 * file_cbfs_get_header() - Get the header structure for the current CBFS.
Gabe Black84cd9322012-10-12 14:26:11 +0000149 *
150 * @return A pointer to the constant structure, or NULL if there is none.
151 */
152const struct cbfs_header *file_cbfs_get_header(void);
153
Simon Glasse3ff7972012-11-05 12:16:25 +0000154/**
Simon Glassc4f5b5d2021-03-15 18:00:13 +1300155 * cbfs_get_first() - Get the first file in a CBFS
156 *
157 * @return pointer to first file, or NULL if it is empty
158 */
159const struct cbfs_cachenode *cbfs_get_first(const struct cbfs_priv *priv);
160
161/**
162 * cbfs_get_next() - Get the next file in a CBFS
163 *
164 * @filep: Pointer to current file; updated to point to the next file, if any,
165 * else NULL
166 */
167void cbfs_get_next(const struct cbfs_cachenode **filep);
168
169/**
Simon Glasse3ff7972012-11-05 12:16:25 +0000170 * file_cbfs_get_first() - Get a handle for the first file in CBFS.
Gabe Black84cd9322012-10-12 14:26:11 +0000171 *
172 * @return A handle for the first file in CBFS, NULL on error.
173 */
174const struct cbfs_cachenode *file_cbfs_get_first(void);
175
Simon Glasse3ff7972012-11-05 12:16:25 +0000176/**
177 * file_cbfs_get_next() - Get a handle to the file after this one in CBFS.
Gabe Black84cd9322012-10-12 14:26:11 +0000178 *
Simon Glasse3ff7972012-11-05 12:16:25 +0000179 * @file: A pointer to the handle to advance.
Gabe Black84cd9322012-10-12 14:26:11 +0000180 */
181void file_cbfs_get_next(const struct cbfs_cachenode **file);
182
Simon Glasse3ff7972012-11-05 12:16:25 +0000183/**
184 * file_cbfs_find() - Find a file with a particular name in CBFS.
Gabe Black84cd9322012-10-12 14:26:11 +0000185 *
Simon Glasse3ff7972012-11-05 12:16:25 +0000186 * @name: The name to search for.
Gabe Black84cd9322012-10-12 14:26:11 +0000187 *
188 * @return A handle to the file, or NULL on error.
189 */
190const struct cbfs_cachenode *file_cbfs_find(const char *name);
191
Simon Glass630b2f32019-08-14 19:56:14 -0600192/**
193 * cbfs_find_file() - Find a file in a given CBFS
194 *
195 * @cbfs: CBFS to look in (use cbfs_init_mem() to set it up)
196 * @name: Filename to look for
197 * @return pointer to CBFS node if found, else NULL
198 */
199const struct cbfs_cachenode *cbfs_find_file(struct cbfs_priv *cbfs,
200 const char *name);
201
202/**
203 * cbfs_init_mem() - Set up a new CBFS
204 *
205 * @base: Base address of CBFS
Simon Glass5536f122021-03-15 18:00:12 +1300206 * @size: Size of CBFS if known, else CBFS_SIZE_UNKNOWN
207 * @require_header: true to read a header at the start, false to not require one
Simon Glass630b2f32019-08-14 19:56:14 -0600208 * @cbfsp: Returns a pointer to CBFS on success
209 * @return 0 if OK, -ve on error
210 */
Simon Glass5536f122021-03-15 18:00:12 +1300211int cbfs_init_mem(ulong base, ulong size, bool require_hdr,
212 struct cbfs_priv **privp);
Gabe Black84cd9322012-10-12 14:26:11 +0000213
214/***************************************************************************/
215/* All of the functions below can be used without first initializing CBFS. */
216/***************************************************************************/
217
Simon Glasse3ff7972012-11-05 12:16:25 +0000218/**
Simon Glass924e3462020-05-24 17:38:22 -0600219 * file_cbfs_find_uncached() - Find a file in CBFS given the end of the ROM
Gabe Black84cd9322012-10-12 14:26:11 +0000220 *
Simon Glass924e3462020-05-24 17:38:22 -0600221 * Note that @node should be declared by the caller. This design is to avoid
222 * the need for allocation here.
Gabe Black84cd9322012-10-12 14:26:11 +0000223 *
Simon Glass924e3462020-05-24 17:38:22 -0600224 * @end_of_rom: Points to the end of the ROM the CBFS should be read from
225 * @name: The name to search for
226 * @node: Returns the contents of the node if found (i.e. copied into *node)
227 * @return 0 on success, -ENOENT if not found, -EFAULT on bad header
Gabe Black84cd9322012-10-12 14:26:11 +0000228 */
Simon Glass924e3462020-05-24 17:38:22 -0600229int file_cbfs_find_uncached(ulong end_of_rom, const char *name,
230 struct cbfs_cachenode *node);
Gabe Black84cd9322012-10-12 14:26:11 +0000231
Simon Glasse3ff7972012-11-05 12:16:25 +0000232/**
Simon Glass03d4c292020-05-24 17:38:23 -0600233 * file_cbfs_find_uncached_base() - Find a file in CBFS given the base address
234 *
235 * Note that @node should be declared by the caller. This design is to avoid
236 * the need for allocation here.
237 *
238 * @base: Points to the base of the CBFS
239 * @name: The name to search for
240 * @node: Returns the contents of the node if found (i.e. copied into *node)
241 * @return 0 on success, -ENOENT if not found, -EFAULT on bad header
242 */
243int file_cbfs_find_uncached_base(ulong base, const char *name,
244 struct cbfs_cachenode *node);
245
246/**
Simon Glasse3ff7972012-11-05 12:16:25 +0000247 * file_cbfs_name() - Get the name of a file in CBFS.
Gabe Black84cd9322012-10-12 14:26:11 +0000248 *
Simon Glasse3ff7972012-11-05 12:16:25 +0000249 * @file: The handle to the file.
Gabe Black84cd9322012-10-12 14:26:11 +0000250 *
251 * @return The name of the file, NULL on error.
252 */
253const char *file_cbfs_name(const struct cbfs_cachenode *file);
254
Simon Glasse3ff7972012-11-05 12:16:25 +0000255/**
256 * file_cbfs_size() - Get the size of a file in CBFS.
Gabe Black84cd9322012-10-12 14:26:11 +0000257 *
Simon Glasse3ff7972012-11-05 12:16:25 +0000258 * @file: The handle to the file.
Gabe Black84cd9322012-10-12 14:26:11 +0000259 *
260 * @return The size of the file, zero on error.
261 */
262u32 file_cbfs_size(const struct cbfs_cachenode *file);
263
Simon Glasse3ff7972012-11-05 12:16:25 +0000264/**
265 * file_cbfs_type() - Get the type of a file in CBFS.
Gabe Black84cd9322012-10-12 14:26:11 +0000266 *
Simon Glasse3ff7972012-11-05 12:16:25 +0000267 * @file: The handle to the file.
Gabe Black84cd9322012-10-12 14:26:11 +0000268 *
269 * @return The type of the file, zero on error.
270 */
271u32 file_cbfs_type(const struct cbfs_cachenode *file);
272
Simon Glasse3ff7972012-11-05 12:16:25 +0000273/**
274 * file_cbfs_read() - Read a file from CBFS into RAM
Gabe Black84cd9322012-10-12 14:26:11 +0000275 *
Simon Glasse3ff7972012-11-05 12:16:25 +0000276 * @file: A handle to the file to read.
277 * @buffer: Where to read it into memory.
278 * @maxsize: Maximum number of bytes to read
Gabe Black84cd9322012-10-12 14:26:11 +0000279 *
280 * @return If positive or zero, the number of characters read. If negative, an
Simon Glasse3ff7972012-11-05 12:16:25 +0000281 * error occurred.
Gabe Black84cd9322012-10-12 14:26:11 +0000282 */
283long file_cbfs_read(const struct cbfs_cachenode *file, void *buffer,
284 unsigned long maxsize);
285
286#endif /* __CBFS_H */