blob: 1aff110acbb52eb5f6455e269082ecd64b1a399e [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Gabe Black7f8574c2012-10-12 14:26:11 +00002/*
3 * Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
Gabe Black7f8574c2012-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
12enum cbfs_result {
13 CBFS_SUCCESS = 0,
14 CBFS_NOT_INITIALIZED,
15 CBFS_BAD_HEADER,
16 CBFS_BAD_FILE,
17 CBFS_FILE_NOT_FOUND
18};
19
20enum cbfs_filetype {
Bin Meng8bc63922018-12-22 01:55:51 -080021 CBFS_TYPE_BOOTBLOCK = 0x01,
22 CBFS_TYPE_CBFSHEADER = 0x02,
Gabe Black7f8574c2012-10-12 14:26:11 +000023 CBFS_TYPE_STAGE = 0x10,
24 CBFS_TYPE_PAYLOAD = 0x20,
Bin Meng8bc63922018-12-22 01:55:51 -080025 CBFS_TYPE_FIT = 0x21,
Gabe Black7f8574c2012-10-12 14:26:11 +000026 CBFS_TYPE_OPTIONROM = 0x30,
27 CBFS_TYPE_BOOTSPLASH = 0x40,
28 CBFS_TYPE_RAW = 0x50,
29 CBFS_TYPE_VSA = 0x51,
30 CBFS_TYPE_MBI = 0x52,
31 CBFS_TYPE_MICROCODE = 0x53,
Bin Meng8bc63922018-12-22 01:55:51 -080032 CBFS_TYPE_FSP = 0x60,
33 CBFS_TYPE_MRC = 0x61,
34 CBFS_TYPE_MMA = 0x62,
35 CBFS_TYPE_EFI = 0x63,
36 CBFS_TYPE_STRUCT = 0x70,
Bin Meng2c553462018-12-22 01:55:50 -080037 CBFS_TYPE_CMOS_DEFAULT = 0xaa,
Bin Meng8bc63922018-12-22 01:55:51 -080038 CBFS_TYPE_SPD = 0xab,
39 CBFS_TYPE_MRC_CACHE = 0xac,
Bin Meng2c553462018-12-22 01:55:50 -080040 CBFS_TYPE_CMOS_LAYOUT = 0x01aa
Gabe Black7f8574c2012-10-12 14:26:11 +000041};
42
Simon Glass6b836a92019-07-08 13:18:21 -060043enum {
44 CBFS_HEADER_MAGIC = 0x4f524243,
45};
46
47/**
48 * struct cbfs_header - header at the start of a CBFS region
49 *
50 * All fields use big-endian format.
51 *
52 * @magic: Magic number (CBFS_HEADER_MAGIC)
53 */
Gabe Black7f8574c2012-10-12 14:26:11 +000054struct cbfs_header {
55 u32 magic;
56 u32 version;
57 u32 rom_size;
58 u32 boot_block_size;
59 u32 align;
60 u32 offset;
61 u32 pad[2];
62} __packed;
63
64struct cbfs_fileheader {
65 u8 magic[8];
66 u32 len;
67 u32 type;
Simon Glass87d15042019-07-08 13:18:22 -060068 /* offset to struct cbfs_file_attribute or 0 */
69 u32 attributes_offset;
Gabe Black7f8574c2012-10-12 14:26:11 +000070 u32 offset;
71} __packed;
72
73struct cbfs_cachenode {
74 struct cbfs_cachenode *next;
Gabe Black7f8574c2012-10-12 14:26:11 +000075 void *data;
Gabe Black7f8574c2012-10-12 14:26:11 +000076 char *name;
Heinrich Schuchardtb8037912019-10-07 00:37:45 +020077 u32 type;
78 u32 data_length;
Gabe Black7f8574c2012-10-12 14:26:11 +000079 u32 name_length;
Simon Glass87d15042019-07-08 13:18:22 -060080 u32 attributes_offset;
Heinrich Schuchardtb8037912019-10-07 00:37:45 +020081};
Gabe Black7f8574c2012-10-12 14:26:11 +000082
Simon Glass415cd522012-11-05 12:16:25 +000083/**
84 * file_cbfs_error() - Return a string describing the most recent error
85 * condition.
Gabe Black7f8574c2012-10-12 14:26:11 +000086 *
87 * @return A pointer to the constant string.
88 */
89const char *file_cbfs_error(void);
90
Simon Glass415cd522012-11-05 12:16:25 +000091/**
Simon Glassf152bf02019-08-14 19:56:13 -060092 * cbfs_get_result() - Get the result of the last CBFS operation
93 *
94 *@return last result
95 */
96enum cbfs_result cbfs_get_result(void);
97
98/**
Simon Glass415cd522012-11-05 12:16:25 +000099 * file_cbfs_init() - Initialize the CBFS driver and load metadata into RAM.
Gabe Black7f8574c2012-10-12 14:26:11 +0000100 *
Simon Glass04923172020-05-24 17:38:21 -0600101 * @end_of_rom: Points to the end of the ROM the CBFS should be read from
102 * @return 0 if OK, -ve on error
Gabe Black7f8574c2012-10-12 14:26:11 +0000103 */
Simon Glass04923172020-05-24 17:38:21 -0600104int file_cbfs_init(ulong end_of_rom);
Gabe Black7f8574c2012-10-12 14:26:11 +0000105
Simon Glass415cd522012-11-05 12:16:25 +0000106/**
107 * file_cbfs_get_header() - Get the header structure for the current CBFS.
Gabe Black7f8574c2012-10-12 14:26:11 +0000108 *
109 * @return A pointer to the constant structure, or NULL if there is none.
110 */
111const struct cbfs_header *file_cbfs_get_header(void);
112
Simon Glass415cd522012-11-05 12:16:25 +0000113/**
114 * file_cbfs_get_first() - Get a handle for the first file in CBFS.
Gabe Black7f8574c2012-10-12 14:26:11 +0000115 *
116 * @return A handle for the first file in CBFS, NULL on error.
117 */
118const struct cbfs_cachenode *file_cbfs_get_first(void);
119
Simon Glass415cd522012-11-05 12:16:25 +0000120/**
121 * file_cbfs_get_next() - Get a handle to the file after this one in CBFS.
Gabe Black7f8574c2012-10-12 14:26:11 +0000122 *
Simon Glass415cd522012-11-05 12:16:25 +0000123 * @file: A pointer to the handle to advance.
Gabe Black7f8574c2012-10-12 14:26:11 +0000124 */
125void file_cbfs_get_next(const struct cbfs_cachenode **file);
126
Simon Glass415cd522012-11-05 12:16:25 +0000127/**
128 * file_cbfs_find() - Find a file with a particular name in CBFS.
Gabe Black7f8574c2012-10-12 14:26:11 +0000129 *
Simon Glass415cd522012-11-05 12:16:25 +0000130 * @name: The name to search for.
Gabe Black7f8574c2012-10-12 14:26:11 +0000131 *
132 * @return A handle to the file, or NULL on error.
133 */
134const struct cbfs_cachenode *file_cbfs_find(const char *name);
135
Simon Glass1914d072020-04-05 17:22:38 -0600136struct cbfs_priv;
Simon Glassaa4274e2019-08-14 19:56:14 -0600137
138/**
139 * cbfs_find_file() - Find a file in a given CBFS
140 *
141 * @cbfs: CBFS to look in (use cbfs_init_mem() to set it up)
142 * @name: Filename to look for
143 * @return pointer to CBFS node if found, else NULL
144 */
145const struct cbfs_cachenode *cbfs_find_file(struct cbfs_priv *cbfs,
146 const char *name);
147
148/**
149 * cbfs_init_mem() - Set up a new CBFS
150 *
151 * @base: Base address of CBFS
152 * @size: Size of CBFS in bytes
153 * @cbfsp: Returns a pointer to CBFS on success
154 * @return 0 if OK, -ve on error
155 */
156int cbfs_init_mem(ulong base, ulong size, struct cbfs_priv **privp);
157
Gabe Black7f8574c2012-10-12 14:26:11 +0000158
159/***************************************************************************/
160/* All of the functions below can be used without first initializing CBFS. */
161/***************************************************************************/
162
Simon Glass415cd522012-11-05 12:16:25 +0000163/**
Simon Glass9c422152020-05-24 17:38:22 -0600164 * file_cbfs_find_uncached() - Find a file in CBFS given the end of the ROM
Gabe Black7f8574c2012-10-12 14:26:11 +0000165 *
Simon Glass9c422152020-05-24 17:38:22 -0600166 * Note that @node should be declared by the caller. This design is to avoid
167 * the need for allocation here.
Gabe Black7f8574c2012-10-12 14:26:11 +0000168 *
Simon Glass9c422152020-05-24 17:38:22 -0600169 * @end_of_rom: Points to the end of the ROM the CBFS should be read from
170 * @name: The name to search for
171 * @node: Returns the contents of the node if found (i.e. copied into *node)
172 * @return 0 on success, -ENOENT if not found, -EFAULT on bad header
Gabe Black7f8574c2012-10-12 14:26:11 +0000173 */
Simon Glass9c422152020-05-24 17:38:22 -0600174int file_cbfs_find_uncached(ulong end_of_rom, const char *name,
175 struct cbfs_cachenode *node);
Gabe Black7f8574c2012-10-12 14:26:11 +0000176
Simon Glass415cd522012-11-05 12:16:25 +0000177/**
Simon Glass333a97d2020-05-24 17:38:23 -0600178 * file_cbfs_find_uncached_base() - Find a file in CBFS given the base address
179 *
180 * Note that @node should be declared by the caller. This design is to avoid
181 * the need for allocation here.
182 *
183 * @base: Points to the base of the CBFS
184 * @name: The name to search for
185 * @node: Returns the contents of the node if found (i.e. copied into *node)
186 * @return 0 on success, -ENOENT if not found, -EFAULT on bad header
187 */
188int file_cbfs_find_uncached_base(ulong base, const char *name,
189 struct cbfs_cachenode *node);
190
191/**
Simon Glass415cd522012-11-05 12:16:25 +0000192 * file_cbfs_name() - Get the name of a file in CBFS.
Gabe Black7f8574c2012-10-12 14:26:11 +0000193 *
Simon Glass415cd522012-11-05 12:16:25 +0000194 * @file: The handle to the file.
Gabe Black7f8574c2012-10-12 14:26:11 +0000195 *
196 * @return The name of the file, NULL on error.
197 */
198const char *file_cbfs_name(const struct cbfs_cachenode *file);
199
Simon Glass415cd522012-11-05 12:16:25 +0000200/**
201 * file_cbfs_size() - Get the size of a file in CBFS.
Gabe Black7f8574c2012-10-12 14:26:11 +0000202 *
Simon Glass415cd522012-11-05 12:16:25 +0000203 * @file: The handle to the file.
Gabe Black7f8574c2012-10-12 14:26:11 +0000204 *
205 * @return The size of the file, zero on error.
206 */
207u32 file_cbfs_size(const struct cbfs_cachenode *file);
208
Simon Glass415cd522012-11-05 12:16:25 +0000209/**
210 * file_cbfs_type() - Get the type of a file in CBFS.
Gabe Black7f8574c2012-10-12 14:26:11 +0000211 *
Simon Glass415cd522012-11-05 12:16:25 +0000212 * @file: The handle to the file.
Gabe Black7f8574c2012-10-12 14:26:11 +0000213 *
214 * @return The type of the file, zero on error.
215 */
216u32 file_cbfs_type(const struct cbfs_cachenode *file);
217
Simon Glass415cd522012-11-05 12:16:25 +0000218/**
219 * file_cbfs_read() - Read a file from CBFS into RAM
Gabe Black7f8574c2012-10-12 14:26:11 +0000220 *
Simon Glass415cd522012-11-05 12:16:25 +0000221 * @file: A handle to the file to read.
222 * @buffer: Where to read it into memory.
223 * @maxsize: Maximum number of bytes to read
Gabe Black7f8574c2012-10-12 14:26:11 +0000224 *
225 * @return If positive or zero, the number of characters read. If negative, an
Simon Glass415cd522012-11-05 12:16:25 +0000226 * error occurred.
Gabe Black7f8574c2012-10-12 14:26:11 +0000227 */
228long file_cbfs_read(const struct cbfs_cachenode *file, void *buffer,
229 unsigned long maxsize);
230
231#endif /* __CBFS_H */