]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
84cd9327 GB |
2 | /* |
3 | * Copyright (c) 2011 The Chromium OS Authors. All rights reserved. | |
84cd9327 GB |
4 | */ |
5 | ||
6 | #ifndef __CBFS_H | |
7 | #define __CBFS_H | |
8 | ||
9 | #include <compiler.h> | |
10 | #include <linux/compiler.h> | |
11 | ||
c4f5b5dc SG |
12 | struct cbfs_priv; |
13 | ||
84cd9327 GB |
14 | enum 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 | ||
22 | enum cbfs_filetype { | |
881bb9ab BM |
23 | CBFS_TYPE_BOOTBLOCK = 0x01, |
24 | CBFS_TYPE_CBFSHEADER = 0x02, | |
84cd9327 GB |
25 | CBFS_TYPE_STAGE = 0x10, |
26 | CBFS_TYPE_PAYLOAD = 0x20, | |
881bb9ab | 27 | CBFS_TYPE_FIT = 0x21, |
84cd9327 GB |
28 | 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, | |
881bb9ab BM |
34 | CBFS_TYPE_FSP = 0x60, |
35 | CBFS_TYPE_MRC = 0x61, | |
36 | CBFS_TYPE_MMA = 0x62, | |
37 | CBFS_TYPE_EFI = 0x63, | |
38 | CBFS_TYPE_STRUCT = 0x70, | |
14fdf91e | 39 | CBFS_TYPE_CMOS_DEFAULT = 0xaa, |
881bb9ab BM |
40 | CBFS_TYPE_SPD = 0xab, |
41 | CBFS_TYPE_MRC_CACHE = 0xac, | |
14fdf91e | 42 | CBFS_TYPE_CMOS_LAYOUT = 0x01aa |
84cd9327 GB |
43 | }; |
44 | ||
08b7bc3c SG |
45 | enum { |
46 | CBFS_HEADER_MAGIC = 0x4f524243, | |
5536f128 SG |
47 | CBFS_SIZE_UNKNOWN = 0xffffffff, |
48 | CBFS_ALIGN_SIZE = 0x40, | |
08b7bc3c SG |
49 | }; |
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 | */ | |
84cd9327 GB |
58 | struct 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 | ||
68 | struct cbfs_fileheader { | |
69 | u8 magic[8]; | |
70 | u32 len; | |
71 | u32 type; | |
ababe101 SG |
72 | /* offset to struct cbfs_file_attribute or 0 */ |
73 | u32 attributes_offset; | |
84cd9327 | 74 | u32 offset; |
72ca4859 SG |
75 | char filename[]; |
76 | } __packed; | |
77 | ||
a202f17d SG |
78 | /** |
79 | * These are standard values for the known compression alogrithms that coreboot | |
80 | * knows about for stages and payloads. Of course, other CBFS users can use | |
81 | * whatever values they want, as long as they understand them. | |
82 | */ | |
83 | #define CBFS_COMPRESS_NONE 0 | |
84 | #define CBFS_COMPRESS_LZMA 1 | |
85 | #define CBFS_COMPRESS_LZ4 2 | |
86 | ||
72ca4859 SG |
87 | /* |
88 | * Depending on how the header was initialized, it may be backed with 0x00 or | |
89 | * 0xff, so support both | |
90 | */ | |
91 | #define CBFS_FILE_ATTR_TAG_UNUSED 0 | |
92 | #define CBFS_FILE_ATTR_TAG_UNUSED2 0xffffffff | |
93 | #define CBFS_FILE_ATTR_TAG_COMPRESSION 0x42435a4c | |
94 | #define CBFS_FILE_ATTR_TAG_HASH 0x68736148 | |
95 | ||
96 | /* | |
97 | * The common fields of extended cbfs file attributes. Attributes are expected | |
98 | * to start with tag/len, then append their specific fields | |
99 | */ | |
100 | struct cbfs_file_attribute { | |
101 | u32 tag; | |
102 | /* len covers the whole structure, incl. tag and len */ | |
103 | u32 len; | |
104 | u8 data[0]; | |
105 | } __packed; | |
106 | ||
107 | struct cbfs_file_attr_compression { | |
108 | u32 tag; | |
109 | u32 len; | |
110 | /* whole file compression format. 0 if no compression. */ | |
111 | u32 compression; | |
112 | u32 decompressed_size; | |
113 | } __packed; | |
114 | ||
115 | struct cbfs_file_attr_hash { | |
116 | u32 tag; | |
117 | u32 len; | |
118 | u32 hash_type; | |
119 | /* hash_data is len - sizeof(struct) bytes */ | |
120 | u8 hash_data[]; | |
84cd9327 GB |
121 | } __packed; |
122 | ||
123 | struct cbfs_cachenode { | |
124 | struct cbfs_cachenode *next; | |
84cd9327 | 125 | void *data; |
84cd9327 | 126 | char *name; |
895ae872 HS |
127 | u32 type; |
128 | u32 data_length; | |
84cd9327 | 129 | u32 name_length; |
72ca4859 | 130 | u32 attr_offset; |
a202f17d SG |
131 | u32 comp_algo; |
132 | u32 decomp_size; | |
895ae872 | 133 | }; |
84cd9327 | 134 | |
e3ff797c SG |
135 | /** |
136 | * file_cbfs_error() - Return a string describing the most recent error | |
137 | * condition. | |
84cd9327 GB |
138 | * |
139 | * @return A pointer to the constant string. | |
140 | */ | |
141 | const char *file_cbfs_error(void); | |
142 | ||
c7f16934 SG |
143 | /** |
144 | * cbfs_get_result() - Get the result of the last CBFS operation | |
145 | * | |
146 | *@return last result | |
147 | */ | |
148 | enum cbfs_result cbfs_get_result(void); | |
149 | ||
e3ff797c SG |
150 | /** |
151 | * file_cbfs_init() - Initialize the CBFS driver and load metadata into RAM. | |
84cd9327 | 152 | * |
0e7b6312 SG |
153 | * @end_of_rom: Points to the end of the ROM the CBFS should be read from |
154 | * @return 0 if OK, -ve on error | |
84cd9327 | 155 | */ |
0e7b6312 | 156 | int file_cbfs_init(ulong end_of_rom); |
84cd9327 | 157 | |
e3ff797c SG |
158 | /** |
159 | * file_cbfs_get_header() - Get the header structure for the current CBFS. | |
84cd9327 GB |
160 | * |
161 | * @return A pointer to the constant structure, or NULL if there is none. | |
162 | */ | |
163 | const struct cbfs_header *file_cbfs_get_header(void); | |
164 | ||
c4f5b5dc SG |
165 | /** |
166 | * cbfs_get_first() - Get the first file in a CBFS | |
167 | * | |
168 | * @return pointer to first file, or NULL if it is empty | |
169 | */ | |
170 | const struct cbfs_cachenode *cbfs_get_first(const struct cbfs_priv *priv); | |
171 | ||
172 | /** | |
173 | * cbfs_get_next() - Get the next file in a CBFS | |
174 | * | |
175 | * @filep: Pointer to current file; updated to point to the next file, if any, | |
176 | * else NULL | |
177 | */ | |
178 | void cbfs_get_next(const struct cbfs_cachenode **filep); | |
179 | ||
e3ff797c SG |
180 | /** |
181 | * file_cbfs_get_first() - Get a handle for the first file in CBFS. | |
84cd9327 GB |
182 | * |
183 | * @return A handle for the first file in CBFS, NULL on error. | |
184 | */ | |
185 | const struct cbfs_cachenode *file_cbfs_get_first(void); | |
186 | ||
e3ff797c SG |
187 | /** |
188 | * file_cbfs_get_next() - Get a handle to the file after this one in CBFS. | |
84cd9327 | 189 | * |
e3ff797c | 190 | * @file: A pointer to the handle to advance. |
84cd9327 GB |
191 | */ |
192 | void file_cbfs_get_next(const struct cbfs_cachenode **file); | |
193 | ||
e3ff797c SG |
194 | /** |
195 | * file_cbfs_find() - Find a file with a particular name in CBFS. | |
84cd9327 | 196 | * |
e3ff797c | 197 | * @name: The name to search for. |
84cd9327 GB |
198 | * |
199 | * @return A handle to the file, or NULL on error. | |
200 | */ | |
201 | const struct cbfs_cachenode *file_cbfs_find(const char *name); | |
202 | ||
630b2f39 SG |
203 | /** |
204 | * cbfs_find_file() - Find a file in a given CBFS | |
205 | * | |
206 | * @cbfs: CBFS to look in (use cbfs_init_mem() to set it up) | |
207 | * @name: Filename to look for | |
208 | * @return pointer to CBFS node if found, else NULL | |
209 | */ | |
210 | const struct cbfs_cachenode *cbfs_find_file(struct cbfs_priv *cbfs, | |
211 | const char *name); | |
212 | ||
213 | /** | |
214 | * cbfs_init_mem() - Set up a new CBFS | |
215 | * | |
216 | * @base: Base address of CBFS | |
5536f128 SG |
217 | * @size: Size of CBFS if known, else CBFS_SIZE_UNKNOWN |
218 | * @require_header: true to read a header at the start, false to not require one | |
630b2f39 SG |
219 | * @cbfsp: Returns a pointer to CBFS on success |
220 | * @return 0 if OK, -ve on error | |
221 | */ | |
5536f128 SG |
222 | int cbfs_init_mem(ulong base, ulong size, bool require_hdr, |
223 | struct cbfs_priv **privp); | |
84cd9327 GB |
224 | |
225 | /***************************************************************************/ | |
226 | /* All of the functions below can be used without first initializing CBFS. */ | |
227 | /***************************************************************************/ | |
228 | ||
e3ff797c | 229 | /** |
924e346a | 230 | * file_cbfs_find_uncached() - Find a file in CBFS given the end of the ROM |
84cd9327 | 231 | * |
924e346a SG |
232 | * Note that @node should be declared by the caller. This design is to avoid |
233 | * the need for allocation here. | |
84cd9327 | 234 | * |
924e346a SG |
235 | * @end_of_rom: Points to the end of the ROM the CBFS should be read from |
236 | * @name: The name to search for | |
237 | * @node: Returns the contents of the node if found (i.e. copied into *node) | |
238 | * @return 0 on success, -ENOENT if not found, -EFAULT on bad header | |
84cd9327 | 239 | */ |
924e346a SG |
240 | int file_cbfs_find_uncached(ulong end_of_rom, const char *name, |
241 | struct cbfs_cachenode *node); | |
84cd9327 | 242 | |
03d4c298 SG |
243 | /** |
244 | * file_cbfs_find_uncached_base() - Find a file in CBFS given the base address | |
245 | * | |
246 | * Note that @node should be declared by the caller. This design is to avoid | |
247 | * the need for allocation here. | |
248 | * | |
249 | * @base: Points to the base of the CBFS | |
250 | * @name: The name to search for | |
251 | * @node: Returns the contents of the node if found (i.e. copied into *node) | |
252 | * @return 0 on success, -ENOENT if not found, -EFAULT on bad header | |
253 | */ | |
254 | int file_cbfs_find_uncached_base(ulong base, const char *name, | |
255 | struct cbfs_cachenode *node); | |
256 | ||
e3ff797c SG |
257 | /** |
258 | * file_cbfs_name() - Get the name of a file in CBFS. | |
84cd9327 | 259 | * |
e3ff797c | 260 | * @file: The handle to the file. |
84cd9327 GB |
261 | * |
262 | * @return The name of the file, NULL on error. | |
263 | */ | |
264 | const char *file_cbfs_name(const struct cbfs_cachenode *file); | |
265 | ||
e3ff797c SG |
266 | /** |
267 | * file_cbfs_size() - Get the size of a file in CBFS. | |
84cd9327 | 268 | * |
e3ff797c | 269 | * @file: The handle to the file. |
84cd9327 GB |
270 | * |
271 | * @return The size of the file, zero on error. | |
272 | */ | |
273 | u32 file_cbfs_size(const struct cbfs_cachenode *file); | |
274 | ||
e3ff797c SG |
275 | /** |
276 | * file_cbfs_type() - Get the type of a file in CBFS. | |
84cd9327 | 277 | * |
e3ff797c | 278 | * @file: The handle to the file. |
84cd9327 GB |
279 | * |
280 | * @return The type of the file, zero on error. | |
281 | */ | |
282 | u32 file_cbfs_type(const struct cbfs_cachenode *file); | |
283 | ||
e3ff797c SG |
284 | /** |
285 | * file_cbfs_read() - Read a file from CBFS into RAM | |
84cd9327 | 286 | * |
e3ff797c SG |
287 | * @file: A handle to the file to read. |
288 | * @buffer: Where to read it into memory. | |
289 | * @maxsize: Maximum number of bytes to read | |
84cd9327 GB |
290 | * |
291 | * @return If positive or zero, the number of characters read. If negative, an | |
e3ff797c | 292 | * error occurred. |
84cd9327 GB |
293 | */ |
294 | long file_cbfs_read(const struct cbfs_cachenode *file, void *buffer, | |
295 | unsigned long maxsize); | |
296 | ||
297 | #endif /* __CBFS_H */ |