]> Git Repo - u-boot.git/blame - include/cbfs.h
rockchip: config: tiner-rk3288: extend CONFIG_SYS_MONITOR_LEN to 600KB
[u-boot.git] / include / cbfs.h
CommitLineData
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
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 {
881bb9ab
BM
21 CBFS_TYPE_BOOTBLOCK = 0x01,
22 CBFS_TYPE_CBFSHEADER = 0x02,
84cd9327
GB
23 CBFS_TYPE_STAGE = 0x10,
24 CBFS_TYPE_PAYLOAD = 0x20,
881bb9ab 25 CBFS_TYPE_FIT = 0x21,
84cd9327
GB
26 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,
881bb9ab
BM
32 CBFS_TYPE_FSP = 0x60,
33 CBFS_TYPE_MRC = 0x61,
34 CBFS_TYPE_MMA = 0x62,
35 CBFS_TYPE_EFI = 0x63,
36 CBFS_TYPE_STRUCT = 0x70,
14fdf91e 37 CBFS_TYPE_CMOS_DEFAULT = 0xaa,
881bb9ab
BM
38 CBFS_TYPE_SPD = 0xab,
39 CBFS_TYPE_MRC_CACHE = 0xac,
14fdf91e 40 CBFS_TYPE_CMOS_LAYOUT = 0x01aa
84cd9327
GB
41};
42
43struct cbfs_header {
44 u32 magic;
45 u32 version;
46 u32 rom_size;
47 u32 boot_block_size;
48 u32 align;
49 u32 offset;
50 u32 pad[2];
51} __packed;
52
53struct cbfs_fileheader {
54 u8 magic[8];
55 u32 len;
56 u32 type;
57 u32 checksum;
58 u32 offset;
59} __packed;
60
61struct cbfs_cachenode {
62 struct cbfs_cachenode *next;
63 u32 type;
64 void *data;
65 u32 data_length;
66 char *name;
67 u32 name_length;
68 u32 checksum;
69} __packed;
70
71extern enum cbfs_result file_cbfs_result;
72
e3ff797c
SG
73/**
74 * file_cbfs_error() - Return a string describing the most recent error
75 * condition.
84cd9327
GB
76 *
77 * @return A pointer to the constant string.
78 */
79const char *file_cbfs_error(void);
80
e3ff797c
SG
81/**
82 * file_cbfs_init() - Initialize the CBFS driver and load metadata into RAM.
84cd9327 83 *
e3ff797c 84 * @end_of_rom: Points to the end of the ROM the CBFS should be read
84cd9327
GB
85 * from.
86 */
87void file_cbfs_init(uintptr_t end_of_rom);
88
e3ff797c
SG
89/**
90 * file_cbfs_get_header() - Get the header structure for the current CBFS.
84cd9327
GB
91 *
92 * @return A pointer to the constant structure, or NULL if there is none.
93 */
94const struct cbfs_header *file_cbfs_get_header(void);
95
e3ff797c
SG
96/**
97 * file_cbfs_get_first() - Get a handle for the first file in CBFS.
84cd9327
GB
98 *
99 * @return A handle for the first file in CBFS, NULL on error.
100 */
101const struct cbfs_cachenode *file_cbfs_get_first(void);
102
e3ff797c
SG
103/**
104 * file_cbfs_get_next() - Get a handle to the file after this one in CBFS.
84cd9327 105 *
e3ff797c 106 * @file: A pointer to the handle to advance.
84cd9327
GB
107 */
108void file_cbfs_get_next(const struct cbfs_cachenode **file);
109
e3ff797c
SG
110/**
111 * file_cbfs_find() - Find a file with a particular name in CBFS.
84cd9327 112 *
e3ff797c 113 * @name: The name to search for.
84cd9327
GB
114 *
115 * @return A handle to the file, or NULL on error.
116 */
117const struct cbfs_cachenode *file_cbfs_find(const char *name);
118
119
120/***************************************************************************/
121/* All of the functions below can be used without first initializing CBFS. */
122/***************************************************************************/
123
e3ff797c
SG
124/**
125 * file_cbfs_find_uncached() - Find a file with a particular name in CBFS
126 * without using the heap.
84cd9327 127 *
e3ff797c 128 * @end_of_rom: Points to the end of the ROM the CBFS should be read
84cd9327 129 * from.
e3ff797c 130 * @name: The name to search for.
84cd9327
GB
131 *
132 * @return A handle to the file, or NULL on error.
133 */
134const struct cbfs_cachenode *file_cbfs_find_uncached(uintptr_t end_of_rom,
135 const char *name);
136
e3ff797c
SG
137/**
138 * file_cbfs_name() - Get the name of a file in CBFS.
84cd9327 139 *
e3ff797c 140 * @file: The handle to the file.
84cd9327
GB
141 *
142 * @return The name of the file, NULL on error.
143 */
144const char *file_cbfs_name(const struct cbfs_cachenode *file);
145
e3ff797c
SG
146/**
147 * file_cbfs_size() - Get the size of a file in CBFS.
84cd9327 148 *
e3ff797c 149 * @file: The handle to the file.
84cd9327
GB
150 *
151 * @return The size of the file, zero on error.
152 */
153u32 file_cbfs_size(const struct cbfs_cachenode *file);
154
e3ff797c
SG
155/**
156 * file_cbfs_type() - Get the type of a file in CBFS.
84cd9327 157 *
e3ff797c 158 * @file: The handle to the file.
84cd9327
GB
159 *
160 * @return The type of the file, zero on error.
161 */
162u32 file_cbfs_type(const struct cbfs_cachenode *file);
163
e3ff797c
SG
164/**
165 * file_cbfs_read() - Read a file from CBFS into RAM
84cd9327 166 *
e3ff797c
SG
167 * @file: A handle to the file to read.
168 * @buffer: Where to read it into memory.
169 * @maxsize: Maximum number of bytes to read
84cd9327
GB
170 *
171 * @return If positive or zero, the number of characters read. If negative, an
e3ff797c 172 * error occurred.
84cd9327
GB
173 */
174long file_cbfs_read(const struct cbfs_cachenode *file, void *buffer,
175 unsigned long maxsize);
176
177#endif /* __CBFS_H */
This page took 0.305159 seconds and 4 git commands to generate.