blob: f2ede25f517b8a12f564e3f844af563c1ac01be6 [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
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 Meng881bb9a2018-12-22 01:55:51 -080021 CBFS_TYPE_BOOTBLOCK = 0x01,
22 CBFS_TYPE_CBFSHEADER = 0x02,
Gabe Black84cd9322012-10-12 14:26:11 +000023 CBFS_TYPE_STAGE = 0x10,
24 CBFS_TYPE_PAYLOAD = 0x20,
Bin Meng881bb9a2018-12-22 01:55:51 -080025 CBFS_TYPE_FIT = 0x21,
Gabe Black84cd9322012-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 Meng881bb9a2018-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 Meng14fdf912018-12-22 01:55:50 -080037 CBFS_TYPE_CMOS_DEFAULT = 0xaa,
Bin Meng881bb9a2018-12-22 01:55:51 -080038 CBFS_TYPE_SPD = 0xab,
39 CBFS_TYPE_MRC_CACHE = 0xac,
Bin Meng14fdf912018-12-22 01:55:50 -080040 CBFS_TYPE_CMOS_LAYOUT = 0x01aa
Gabe Black84cd9322012-10-12 14:26:11 +000041};
42
Simon Glass08b7bc32019-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 Black84cd9322012-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;
68 u32 checksum;
69 u32 offset;
70} __packed;
71
72struct cbfs_cachenode {
73 struct cbfs_cachenode *next;
74 u32 type;
75 void *data;
76 u32 data_length;
77 char *name;
78 u32 name_length;
79 u32 checksum;
80} __packed;
81
82extern enum cbfs_result file_cbfs_result;
83
Simon Glasse3ff7972012-11-05 12:16:25 +000084/**
85 * file_cbfs_error() - Return a string describing the most recent error
86 * condition.
Gabe Black84cd9322012-10-12 14:26:11 +000087 *
88 * @return A pointer to the constant string.
89 */
90const char *file_cbfs_error(void);
91
Simon Glasse3ff7972012-11-05 12:16:25 +000092/**
93 * file_cbfs_init() - Initialize the CBFS driver and load metadata into RAM.
Gabe Black84cd9322012-10-12 14:26:11 +000094 *
Simon Glasse3ff7972012-11-05 12:16:25 +000095 * @end_of_rom: Points to the end of the ROM the CBFS should be read
Gabe Black84cd9322012-10-12 14:26:11 +000096 * from.
97 */
98void file_cbfs_init(uintptr_t end_of_rom);
99
Simon Glasse3ff7972012-11-05 12:16:25 +0000100/**
101 * file_cbfs_get_header() - Get the header structure for the current CBFS.
Gabe Black84cd9322012-10-12 14:26:11 +0000102 *
103 * @return A pointer to the constant structure, or NULL if there is none.
104 */
105const struct cbfs_header *file_cbfs_get_header(void);
106
Simon Glasse3ff7972012-11-05 12:16:25 +0000107/**
108 * file_cbfs_get_first() - Get a handle for the first file in CBFS.
Gabe Black84cd9322012-10-12 14:26:11 +0000109 *
110 * @return A handle for the first file in CBFS, NULL on error.
111 */
112const struct cbfs_cachenode *file_cbfs_get_first(void);
113
Simon Glasse3ff7972012-11-05 12:16:25 +0000114/**
115 * file_cbfs_get_next() - Get a handle to the file after this one in CBFS.
Gabe Black84cd9322012-10-12 14:26:11 +0000116 *
Simon Glasse3ff7972012-11-05 12:16:25 +0000117 * @file: A pointer to the handle to advance.
Gabe Black84cd9322012-10-12 14:26:11 +0000118 */
119void file_cbfs_get_next(const struct cbfs_cachenode **file);
120
Simon Glasse3ff7972012-11-05 12:16:25 +0000121/**
122 * file_cbfs_find() - Find a file with a particular name in CBFS.
Gabe Black84cd9322012-10-12 14:26:11 +0000123 *
Simon Glasse3ff7972012-11-05 12:16:25 +0000124 * @name: The name to search for.
Gabe Black84cd9322012-10-12 14:26:11 +0000125 *
126 * @return A handle to the file, or NULL on error.
127 */
128const struct cbfs_cachenode *file_cbfs_find(const char *name);
129
130
131/***************************************************************************/
132/* All of the functions below can be used without first initializing CBFS. */
133/***************************************************************************/
134
Simon Glasse3ff7972012-11-05 12:16:25 +0000135/**
136 * file_cbfs_find_uncached() - Find a file with a particular name in CBFS
137 * without using the heap.
Gabe Black84cd9322012-10-12 14:26:11 +0000138 *
Simon Glasse3ff7972012-11-05 12:16:25 +0000139 * @end_of_rom: Points to the end of the ROM the CBFS should be read
Gabe Black84cd9322012-10-12 14:26:11 +0000140 * from.
Simon Glasse3ff7972012-11-05 12:16:25 +0000141 * @name: The name to search for.
Gabe Black84cd9322012-10-12 14:26:11 +0000142 *
143 * @return A handle to the file, or NULL on error.
144 */
145const struct cbfs_cachenode *file_cbfs_find_uncached(uintptr_t end_of_rom,
146 const char *name);
147
Simon Glasse3ff7972012-11-05 12:16:25 +0000148/**
149 * file_cbfs_name() - Get the name of a file in CBFS.
Gabe Black84cd9322012-10-12 14:26:11 +0000150 *
Simon Glasse3ff7972012-11-05 12:16:25 +0000151 * @file: The handle to the file.
Gabe Black84cd9322012-10-12 14:26:11 +0000152 *
153 * @return The name of the file, NULL on error.
154 */
155const char *file_cbfs_name(const struct cbfs_cachenode *file);
156
Simon Glasse3ff7972012-11-05 12:16:25 +0000157/**
158 * file_cbfs_size() - Get the size of a file in CBFS.
Gabe Black84cd9322012-10-12 14:26:11 +0000159 *
Simon Glasse3ff7972012-11-05 12:16:25 +0000160 * @file: The handle to the file.
Gabe Black84cd9322012-10-12 14:26:11 +0000161 *
162 * @return The size of the file, zero on error.
163 */
164u32 file_cbfs_size(const struct cbfs_cachenode *file);
165
Simon Glasse3ff7972012-11-05 12:16:25 +0000166/**
167 * file_cbfs_type() - Get the type of a file in CBFS.
Gabe Black84cd9322012-10-12 14:26:11 +0000168 *
Simon Glasse3ff7972012-11-05 12:16:25 +0000169 * @file: The handle to the file.
Gabe Black84cd9322012-10-12 14:26:11 +0000170 *
171 * @return The type of the file, zero on error.
172 */
173u32 file_cbfs_type(const struct cbfs_cachenode *file);
174
Simon Glasse3ff7972012-11-05 12:16:25 +0000175/**
176 * file_cbfs_read() - Read a file from CBFS into RAM
Gabe Black84cd9322012-10-12 14:26:11 +0000177 *
Simon Glasse3ff7972012-11-05 12:16:25 +0000178 * @file: A handle to the file to read.
179 * @buffer: Where to read it into memory.
180 * @maxsize: Maximum number of bytes to read
Gabe Black84cd9322012-10-12 14:26:11 +0000181 *
182 * @return If positive or zero, the number of characters read. If negative, an
Simon Glasse3ff7972012-11-05 12:16:25 +0000183 * error occurred.
Gabe Black84cd9322012-10-12 14:26:11 +0000184 */
185long file_cbfs_read(const struct cbfs_cachenode *file, void *buffer,
186 unsigned long maxsize);
187
188#endif /* __CBFS_H */