Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2011 The Chromium OS Authors. All rights reserved. |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #ifndef __CBFS_H |
| 7 | #define __CBFS_H |
| 8 | |
| 9 | #include <compiler.h> |
| 10 | #include <linux/compiler.h> |
| 11 | |
Simon Glass | c4f5b5d | 2021-03-15 18:00:13 +1300 | [diff] [blame] | 12 | struct cbfs_priv; |
| 13 | |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 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 { |
Bin Meng | 881bb9a | 2018-12-22 01:55:51 -0800 | [diff] [blame] | 23 | CBFS_TYPE_BOOTBLOCK = 0x01, |
| 24 | CBFS_TYPE_CBFSHEADER = 0x02, |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 25 | CBFS_TYPE_STAGE = 0x10, |
| 26 | CBFS_TYPE_PAYLOAD = 0x20, |
Simon Glass | 9dc2974 | 2022-02-28 12:08:26 -0700 | [diff] [blame] | 27 | CBFS_TYPE_SELF = CBFS_TYPE_PAYLOAD, |
| 28 | |
Bin Meng | 881bb9a | 2018-12-22 01:55:51 -0800 | [diff] [blame] | 29 | CBFS_TYPE_FIT = 0x21, |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 30 | CBFS_TYPE_OPTIONROM = 0x30, |
| 31 | CBFS_TYPE_BOOTSPLASH = 0x40, |
| 32 | CBFS_TYPE_RAW = 0x50, |
| 33 | CBFS_TYPE_VSA = 0x51, |
| 34 | CBFS_TYPE_MBI = 0x52, |
| 35 | CBFS_TYPE_MICROCODE = 0x53, |
Bin Meng | 881bb9a | 2018-12-22 01:55:51 -0800 | [diff] [blame] | 36 | CBFS_TYPE_FSP = 0x60, |
| 37 | CBFS_TYPE_MRC = 0x61, |
| 38 | CBFS_TYPE_MMA = 0x62, |
| 39 | CBFS_TYPE_EFI = 0x63, |
| 40 | CBFS_TYPE_STRUCT = 0x70, |
Bin Meng | 14fdf91 | 2018-12-22 01:55:50 -0800 | [diff] [blame] | 41 | CBFS_TYPE_CMOS_DEFAULT = 0xaa, |
Bin Meng | 881bb9a | 2018-12-22 01:55:51 -0800 | [diff] [blame] | 42 | CBFS_TYPE_SPD = 0xab, |
| 43 | CBFS_TYPE_MRC_CACHE = 0xac, |
Bin Meng | 14fdf91 | 2018-12-22 01:55:50 -0800 | [diff] [blame] | 44 | CBFS_TYPE_CMOS_LAYOUT = 0x01aa |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 45 | }; |
| 46 | |
Simon Glass | 08b7bc3 | 2019-07-08 13:18:21 -0600 | [diff] [blame] | 47 | enum { |
| 48 | CBFS_HEADER_MAGIC = 0x4f524243, |
Simon Glass | 5536f12 | 2021-03-15 18:00:12 +1300 | [diff] [blame] | 49 | CBFS_SIZE_UNKNOWN = 0xffffffff, |
| 50 | CBFS_ALIGN_SIZE = 0x40, |
Simon Glass | 08b7bc3 | 2019-07-08 13:18:21 -0600 | [diff] [blame] | 51 | }; |
| 52 | |
| 53 | /** |
| 54 | * struct cbfs_header - header at the start of a CBFS region |
| 55 | * |
| 56 | * All fields use big-endian format. |
| 57 | * |
| 58 | * @magic: Magic number (CBFS_HEADER_MAGIC) |
| 59 | */ |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 60 | struct cbfs_header { |
| 61 | u32 magic; |
| 62 | u32 version; |
| 63 | u32 rom_size; |
| 64 | u32 boot_block_size; |
| 65 | u32 align; |
| 66 | u32 offset; |
| 67 | u32 pad[2]; |
| 68 | } __packed; |
| 69 | |
| 70 | struct cbfs_fileheader { |
| 71 | u8 magic[8]; |
| 72 | u32 len; |
| 73 | u32 type; |
Simon Glass | ababe10 | 2019-07-08 13:18:22 -0600 | [diff] [blame] | 74 | /* offset to struct cbfs_file_attribute or 0 */ |
| 75 | u32 attributes_offset; |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 76 | u32 offset; |
Simon Glass | 72ca485 | 2021-03-15 18:00:09 +1300 | [diff] [blame] | 77 | char filename[]; |
| 78 | } __packed; |
| 79 | |
Simon Glass | a202f17 | 2021-03-15 18:00:16 +1300 | [diff] [blame] | 80 | /** |
| 81 | * These are standard values for the known compression alogrithms that coreboot |
| 82 | * knows about for stages and payloads. Of course, other CBFS users can use |
| 83 | * whatever values they want, as long as they understand them. |
| 84 | */ |
| 85 | #define CBFS_COMPRESS_NONE 0 |
| 86 | #define CBFS_COMPRESS_LZMA 1 |
| 87 | #define CBFS_COMPRESS_LZ4 2 |
| 88 | |
Simon Glass | 72ca485 | 2021-03-15 18:00:09 +1300 | [diff] [blame] | 89 | /* |
| 90 | * Depending on how the header was initialized, it may be backed with 0x00 or |
| 91 | * 0xff, so support both |
| 92 | */ |
| 93 | #define CBFS_FILE_ATTR_TAG_UNUSED 0 |
| 94 | #define CBFS_FILE_ATTR_TAG_UNUSED2 0xffffffff |
| 95 | #define CBFS_FILE_ATTR_TAG_COMPRESSION 0x42435a4c |
| 96 | #define CBFS_FILE_ATTR_TAG_HASH 0x68736148 |
| 97 | |
| 98 | /* |
| 99 | * The common fields of extended cbfs file attributes. Attributes are expected |
| 100 | * to start with tag/len, then append their specific fields |
| 101 | */ |
| 102 | struct cbfs_file_attribute { |
| 103 | u32 tag; |
| 104 | /* len covers the whole structure, incl. tag and len */ |
| 105 | u32 len; |
| 106 | u8 data[0]; |
| 107 | } __packed; |
| 108 | |
| 109 | struct cbfs_file_attr_compression { |
| 110 | u32 tag; |
| 111 | u32 len; |
| 112 | /* whole file compression format. 0 if no compression. */ |
| 113 | u32 compression; |
| 114 | u32 decompressed_size; |
| 115 | } __packed; |
| 116 | |
| 117 | struct cbfs_file_attr_hash { |
| 118 | u32 tag; |
| 119 | u32 len; |
| 120 | u32 hash_type; |
| 121 | /* hash_data is len - sizeof(struct) bytes */ |
| 122 | u8 hash_data[]; |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 123 | } __packed; |
| 124 | |
Simon Glass | 9dc2974 | 2022-02-28 12:08:26 -0700 | [diff] [blame] | 125 | /*** Component sub-headers ***/ |
| 126 | |
| 127 | /* Following are component sub-headers for the "standard" component types */ |
| 128 | |
| 129 | /** |
| 130 | * struct cbfs_stage - sub-header for stage components |
| 131 | * |
| 132 | * Stages are loaded by coreboot during the normal boot process |
| 133 | */ |
| 134 | struct cbfs_stage { |
| 135 | u32 compression; /** Compression type */ |
| 136 | u64 entry; /** entry point */ |
| 137 | u64 load; /** Where to load in memory */ |
| 138 | u32 len; /** length of data to load */ |
| 139 | u32 memlen; /** total length of object in memory */ |
| 140 | } __packed; |
| 141 | |
| 142 | /** |
| 143 | * struct cbfs_payload_segment - sub-header for payload components |
| 144 | * |
| 145 | * Payloads are loaded by coreboot at the end of the boot process |
| 146 | */ |
| 147 | struct cbfs_payload_segment { |
| 148 | u32 type; |
| 149 | u32 compression; |
| 150 | u32 offset; |
| 151 | u64 load_addr; |
| 152 | u32 len; |
| 153 | u32 mem_len; |
| 154 | } __packed; |
| 155 | |
| 156 | struct cbfs_payload { |
| 157 | struct cbfs_payload_segment segments; |
| 158 | }; |
| 159 | |
| 160 | #define PAYLOAD_SEGMENT_CODE 0x45444F43 |
| 161 | #define PAYLOAD_SEGMENT_DATA 0x41544144 |
| 162 | #define PAYLOAD_SEGMENT_BSS 0x20535342 |
| 163 | #define PAYLOAD_SEGMENT_PARAMS 0x41524150 |
| 164 | #define PAYLOAD_SEGMENT_ENTRY 0x52544E45 |
| 165 | |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 166 | struct cbfs_cachenode { |
| 167 | struct cbfs_cachenode *next; |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 168 | void *data; |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 169 | char *name; |
Heinrich Schuchardt | 895ae87 | 2019-10-07 00:37:45 +0200 | [diff] [blame] | 170 | u32 type; |
| 171 | u32 data_length; |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 172 | u32 name_length; |
Simon Glass | 72ca485 | 2021-03-15 18:00:09 +1300 | [diff] [blame] | 173 | u32 attr_offset; |
Simon Glass | a202f17 | 2021-03-15 18:00:16 +1300 | [diff] [blame] | 174 | u32 comp_algo; |
| 175 | u32 decomp_size; |
Heinrich Schuchardt | 895ae87 | 2019-10-07 00:37:45 +0200 | [diff] [blame] | 176 | }; |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 177 | |
Simon Glass | e3ff797 | 2012-11-05 12:16:25 +0000 | [diff] [blame] | 178 | /** |
| 179 | * file_cbfs_error() - Return a string describing the most recent error |
| 180 | * condition. |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 181 | * |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 182 | * Return: A pointer to the constant string. |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 183 | */ |
| 184 | const char *file_cbfs_error(void); |
| 185 | |
Simon Glass | e3ff797 | 2012-11-05 12:16:25 +0000 | [diff] [blame] | 186 | /** |
Simon Glass | c7f1693 | 2019-08-14 19:56:13 -0600 | [diff] [blame] | 187 | * cbfs_get_result() - Get the result of the last CBFS operation |
| 188 | * |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 189 | *Return: last result |
Simon Glass | c7f1693 | 2019-08-14 19:56:13 -0600 | [diff] [blame] | 190 | */ |
| 191 | enum cbfs_result cbfs_get_result(void); |
| 192 | |
| 193 | /** |
Simon Glass | e3ff797 | 2012-11-05 12:16:25 +0000 | [diff] [blame] | 194 | * file_cbfs_init() - Initialize the CBFS driver and load metadata into RAM. |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 195 | * |
Simon Glass | 0e7b631 | 2020-05-24 17:38:21 -0600 | [diff] [blame] | 196 | * @end_of_rom: Points to the end of the ROM the CBFS should be read from |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 197 | * Return: 0 if OK, -ve on error |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 198 | */ |
Simon Glass | 0e7b631 | 2020-05-24 17:38:21 -0600 | [diff] [blame] | 199 | int file_cbfs_init(ulong end_of_rom); |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 200 | |
Simon Glass | e3ff797 | 2012-11-05 12:16:25 +0000 | [diff] [blame] | 201 | /** |
| 202 | * file_cbfs_get_header() - Get the header structure for the current CBFS. |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 203 | * |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 204 | * Return: A pointer to the constant structure, or NULL if there is none. |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 205 | */ |
| 206 | const struct cbfs_header *file_cbfs_get_header(void); |
| 207 | |
Simon Glass | e3ff797 | 2012-11-05 12:16:25 +0000 | [diff] [blame] | 208 | /** |
Simon Glass | c4f5b5d | 2021-03-15 18:00:13 +1300 | [diff] [blame] | 209 | * cbfs_get_first() - Get the first file in a CBFS |
| 210 | * |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 211 | * Return: pointer to first file, or NULL if it is empty |
Simon Glass | c4f5b5d | 2021-03-15 18:00:13 +1300 | [diff] [blame] | 212 | */ |
| 213 | const struct cbfs_cachenode *cbfs_get_first(const struct cbfs_priv *priv); |
| 214 | |
| 215 | /** |
| 216 | * cbfs_get_next() - Get the next file in a CBFS |
| 217 | * |
| 218 | * @filep: Pointer to current file; updated to point to the next file, if any, |
| 219 | * else NULL |
| 220 | */ |
| 221 | void cbfs_get_next(const struct cbfs_cachenode **filep); |
| 222 | |
| 223 | /** |
Simon Glass | e3ff797 | 2012-11-05 12:16:25 +0000 | [diff] [blame] | 224 | * file_cbfs_get_first() - Get a handle for the first file in CBFS. |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 225 | * |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 226 | * Return: A handle for the first file in CBFS, NULL on error. |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 227 | */ |
| 228 | const struct cbfs_cachenode *file_cbfs_get_first(void); |
| 229 | |
Simon Glass | e3ff797 | 2012-11-05 12:16:25 +0000 | [diff] [blame] | 230 | /** |
| 231 | * file_cbfs_get_next() - Get a handle to the file after this one in CBFS. |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 232 | * |
Simon Glass | e3ff797 | 2012-11-05 12:16:25 +0000 | [diff] [blame] | 233 | * @file: A pointer to the handle to advance. |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 234 | */ |
| 235 | void file_cbfs_get_next(const struct cbfs_cachenode **file); |
| 236 | |
Simon Glass | e3ff797 | 2012-11-05 12:16:25 +0000 | [diff] [blame] | 237 | /** |
| 238 | * file_cbfs_find() - Find a file with a particular name in CBFS. |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 239 | * |
Simon Glass | e3ff797 | 2012-11-05 12:16:25 +0000 | [diff] [blame] | 240 | * @name: The name to search for. |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 241 | * |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 242 | * Return: A handle to the file, or NULL on error. |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 243 | */ |
| 244 | const struct cbfs_cachenode *file_cbfs_find(const char *name); |
| 245 | |
Simon Glass | 630b2f3 | 2019-08-14 19:56:14 -0600 | [diff] [blame] | 246 | /** |
| 247 | * cbfs_find_file() - Find a file in a given CBFS |
| 248 | * |
| 249 | * @cbfs: CBFS to look in (use cbfs_init_mem() to set it up) |
| 250 | * @name: Filename to look for |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 251 | * Return: pointer to CBFS node if found, else NULL |
Simon Glass | 630b2f3 | 2019-08-14 19:56:14 -0600 | [diff] [blame] | 252 | */ |
| 253 | const struct cbfs_cachenode *cbfs_find_file(struct cbfs_priv *cbfs, |
| 254 | const char *name); |
| 255 | |
| 256 | /** |
| 257 | * cbfs_init_mem() - Set up a new CBFS |
| 258 | * |
| 259 | * @base: Base address of CBFS |
Simon Glass | 5536f12 | 2021-03-15 18:00:12 +1300 | [diff] [blame] | 260 | * @size: Size of CBFS if known, else CBFS_SIZE_UNKNOWN |
| 261 | * @require_header: true to read a header at the start, false to not require one |
Simon Glass | 630b2f3 | 2019-08-14 19:56:14 -0600 | [diff] [blame] | 262 | * @cbfsp: Returns a pointer to CBFS on success |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 263 | * Return: 0 if OK, -ve on error |
Simon Glass | 630b2f3 | 2019-08-14 19:56:14 -0600 | [diff] [blame] | 264 | */ |
Simon Glass | 5536f12 | 2021-03-15 18:00:12 +1300 | [diff] [blame] | 265 | int cbfs_init_mem(ulong base, ulong size, bool require_hdr, |
| 266 | struct cbfs_priv **privp); |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 267 | |
| 268 | /***************************************************************************/ |
| 269 | /* All of the functions below can be used without first initializing CBFS. */ |
| 270 | /***************************************************************************/ |
| 271 | |
Simon Glass | e3ff797 | 2012-11-05 12:16:25 +0000 | [diff] [blame] | 272 | /** |
Simon Glass | 924e346 | 2020-05-24 17:38:22 -0600 | [diff] [blame] | 273 | * file_cbfs_find_uncached() - Find a file in CBFS given the end of the ROM |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 274 | * |
Simon Glass | 924e346 | 2020-05-24 17:38:22 -0600 | [diff] [blame] | 275 | * Note that @node should be declared by the caller. This design is to avoid |
| 276 | * the need for allocation here. |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 277 | * |
Simon Glass | 924e346 | 2020-05-24 17:38:22 -0600 | [diff] [blame] | 278 | * @end_of_rom: Points to the end of the ROM the CBFS should be read from |
| 279 | * @name: The name to search for |
| 280 | * @node: Returns the contents of the node if found (i.e. copied into *node) |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 281 | * Return: 0 on success, -ENOENT if not found, -EFAULT on bad header |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 282 | */ |
Simon Glass | 924e346 | 2020-05-24 17:38:22 -0600 | [diff] [blame] | 283 | int file_cbfs_find_uncached(ulong end_of_rom, const char *name, |
| 284 | struct cbfs_cachenode *node); |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 285 | |
Simon Glass | e3ff797 | 2012-11-05 12:16:25 +0000 | [diff] [blame] | 286 | /** |
Simon Glass | 03d4c29 | 2020-05-24 17:38:23 -0600 | [diff] [blame] | 287 | * file_cbfs_find_uncached_base() - Find a file in CBFS given the base address |
| 288 | * |
| 289 | * Note that @node should be declared by the caller. This design is to avoid |
| 290 | * the need for allocation here. |
| 291 | * |
| 292 | * @base: Points to the base of the CBFS |
| 293 | * @name: The name to search for |
| 294 | * @node: Returns the contents of the node if found (i.e. copied into *node) |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 295 | * Return: 0 on success, -ENOENT if not found, -EFAULT on bad header |
Simon Glass | 03d4c29 | 2020-05-24 17:38:23 -0600 | [diff] [blame] | 296 | */ |
| 297 | int file_cbfs_find_uncached_base(ulong base, const char *name, |
| 298 | struct cbfs_cachenode *node); |
| 299 | |
| 300 | /** |
Simon Glass | e3ff797 | 2012-11-05 12:16:25 +0000 | [diff] [blame] | 301 | * file_cbfs_name() - Get the name of a file in CBFS. |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 302 | * |
Simon Glass | e3ff797 | 2012-11-05 12:16:25 +0000 | [diff] [blame] | 303 | * @file: The handle to the file. |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 304 | * |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 305 | * Return: The name of the file, NULL on error. |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 306 | */ |
| 307 | const char *file_cbfs_name(const struct cbfs_cachenode *file); |
| 308 | |
Simon Glass | e3ff797 | 2012-11-05 12:16:25 +0000 | [diff] [blame] | 309 | /** |
| 310 | * file_cbfs_size() - Get the size of a file in CBFS. |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 311 | * |
Simon Glass | e3ff797 | 2012-11-05 12:16:25 +0000 | [diff] [blame] | 312 | * @file: The handle to the file. |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 313 | * |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 314 | * Return: The size of the file, zero on error. |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 315 | */ |
| 316 | u32 file_cbfs_size(const struct cbfs_cachenode *file); |
| 317 | |
Simon Glass | e3ff797 | 2012-11-05 12:16:25 +0000 | [diff] [blame] | 318 | /** |
| 319 | * file_cbfs_type() - Get the type of a file in CBFS. |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 320 | * |
Simon Glass | e3ff797 | 2012-11-05 12:16:25 +0000 | [diff] [blame] | 321 | * @file: The handle to the file. |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 322 | * |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 323 | * Return: The type of the file, zero on error. |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 324 | */ |
| 325 | u32 file_cbfs_type(const struct cbfs_cachenode *file); |
| 326 | |
Simon Glass | e3ff797 | 2012-11-05 12:16:25 +0000 | [diff] [blame] | 327 | /** |
| 328 | * file_cbfs_read() - Read a file from CBFS into RAM |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 329 | * |
Simon Glass | e3ff797 | 2012-11-05 12:16:25 +0000 | [diff] [blame] | 330 | * @file: A handle to the file to read. |
| 331 | * @buffer: Where to read it into memory. |
| 332 | * @maxsize: Maximum number of bytes to read |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 333 | * |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 334 | * Return: If positive or zero, the number of characters read. If negative, an |
Simon Glass | e3ff797 | 2012-11-05 12:16:25 +0000 | [diff] [blame] | 335 | * error occurred. |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 336 | */ |
| 337 | long file_cbfs_read(const struct cbfs_cachenode *file, void *buffer, |
| 338 | unsigned long maxsize); |
| 339 | |
| 340 | #endif /* __CBFS_H */ |