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