blob: aed4026d65334af26aa6fad92a5db680649d18f7 [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
Guillaume GARDET7a77e902016-06-17 11:45:37 +02006#include <common.h>
Gabe Black84cd9322012-10-12 14:26:11 +00007#include <cbfs.h>
Simon Glass0621b5e2020-05-24 17:38:24 -06008#include <log.h>
Gabe Black84cd9322012-10-12 14:26:11 +00009#include <malloc.h>
10#include <asm/byteorder.h>
11
Simon Glassa2c528f2020-05-24 17:38:17 -060012/* Offset of master header from the start of a coreboot ROM */
13#define MASTER_HDR_OFFSET 0x38
14
Simon Glassfc7b9e12019-08-14 19:56:11 -060015static const u32 good_magic = 0x4f524243;
16static const u8 good_file_magic[] = "LARCHIVE";
Simon Glass02e4af62019-08-14 19:56:12 -060017
Simon Glassc685f8b2020-05-24 17:38:20 -060018/**
19 * struct cbfs_priv - Private data for this driver
20 *
21 * @initialised: true if this CBFS has been inited
22 * @start: Start position of CBFS in memory, typically memory-mapped SPI flash
23 * @header: Header read from the CBFS, byte-swapped so U-Boot can access it
24 * @file_cache: List of file headers read from CBFS
25 * @result: Success/error result
26 */
Simon Glass02e4af62019-08-14 19:56:12 -060027struct cbfs_priv {
Simon Glass381e1132020-05-24 17:38:14 -060028 bool initialized;
Simon Glassc685f8b2020-05-24 17:38:20 -060029 void *start;
Simon Glass02e4af62019-08-14 19:56:12 -060030 struct cbfs_header header;
31 struct cbfs_cachenode *file_cache;
Simon Glassc7f16932019-08-14 19:56:13 -060032 enum cbfs_result result;
Simon Glass02e4af62019-08-14 19:56:12 -060033};
34
35static struct cbfs_priv cbfs_s;
Gabe Black84cd9322012-10-12 14:26:11 +000036
37const char *file_cbfs_error(void)
38{
Simon Glassc7f16932019-08-14 19:56:13 -060039 switch (cbfs_s.result) {
Gabe Black84cd9322012-10-12 14:26:11 +000040 case CBFS_SUCCESS:
41 return "Success";
42 case CBFS_NOT_INITIALIZED:
43 return "CBFS not initialized";
44 case CBFS_BAD_HEADER:
45 return "Bad CBFS header";
46 case CBFS_BAD_FILE:
47 return "Bad CBFS file";
48 case CBFS_FILE_NOT_FOUND:
49 return "File not found";
50 default:
51 return "Unknown";
52 }
53}
54
Simon Glassc7f16932019-08-14 19:56:13 -060055enum cbfs_result cbfs_get_result(void)
56{
57 return cbfs_s.result;
58}
59
Gabe Black84cd9322012-10-12 14:26:11 +000060/* Do endian conversion on the CBFS header structure. */
61static void swap_header(struct cbfs_header *dest, struct cbfs_header *src)
62{
63 dest->magic = be32_to_cpu(src->magic);
64 dest->version = be32_to_cpu(src->version);
65 dest->rom_size = be32_to_cpu(src->rom_size);
66 dest->boot_block_size = be32_to_cpu(src->boot_block_size);
67 dest->align = be32_to_cpu(src->align);
68 dest->offset = be32_to_cpu(src->offset);
69}
70
71/* Do endian conversion on a CBFS file header. */
72static void swap_file_header(struct cbfs_fileheader *dest,
73 const struct cbfs_fileheader *src)
74{
75 memcpy(&dest->magic, &src->magic, sizeof(dest->magic));
76 dest->len = be32_to_cpu(src->len);
77 dest->type = be32_to_cpu(src->type);
Simon Glassababe102019-07-08 13:18:22 -060078 dest->attributes_offset = be32_to_cpu(src->attributes_offset);
Gabe Black84cd9322012-10-12 14:26:11 +000079 dest->offset = be32_to_cpu(src->offset);
80}
81
82/*
83 * Given a starting position in memory, scan forward, bounded by a size, and
84 * find the next valid CBFS file. No memory is allocated by this function. The
85 * caller is responsible for allocating space for the new file structure.
86 *
87 * @param start The location in memory to start from.
88 * @param size The size of the memory region to search.
89 * @param align The alignment boundaries to check on.
Simon Glass11a38a22021-03-15 18:00:10 +130090 * @param node A pointer to the file structure to load.
Gabe Black84cd9322012-10-12 14:26:11 +000091 * @param used A pointer to the count of of bytes scanned through,
92 * including the file if one is found.
93 *
Simon Glassc7bef7c2020-05-24 17:38:15 -060094 * @return 0 if a file is found, -ENOENT if one isn't, -EBADF if a bad header
95 * is found.
Gabe Black84cd9322012-10-12 14:26:11 +000096 */
Simon Glasse82ab512020-05-24 17:38:19 -060097static int file_cbfs_next_file(struct cbfs_priv *priv, void *start, int size,
Simon Glass11a38a22021-03-15 18:00:10 +130098 int align, struct cbfs_cachenode *node,
Simon Glassc7bef7c2020-05-24 17:38:15 -060099 int *used)
Gabe Black84cd9322012-10-12 14:26:11 +0000100{
101 struct cbfs_fileheader header;
102
103 *used = 0;
104
105 while (size >= align) {
Simon Glasse82ab512020-05-24 17:38:19 -0600106 const struct cbfs_fileheader *file_header = start;
Gabe Black84cd9322012-10-12 14:26:11 +0000107 u32 name_len;
108 u32 step;
109
110 /* Check if there's a file here. */
Simon Glassad79d602019-08-14 19:56:15 -0600111 if (memcmp(good_file_magic, &file_header->magic,
112 sizeof(file_header->magic))) {
Gabe Black84cd9322012-10-12 14:26:11 +0000113 *used += align;
114 size -= align;
115 start += align;
116 continue;
117 }
118
Simon Glassad79d602019-08-14 19:56:15 -0600119 swap_file_header(&header, file_header);
Christian Gmeiner9914c732018-12-22 01:55:48 -0800120 if (header.offset < sizeof(struct cbfs_fileheader)) {
Simon Glassc7f16932019-08-14 19:56:13 -0600121 priv->result = CBFS_BAD_FILE;
Simon Glassc7bef7c2020-05-24 17:38:15 -0600122 return -EBADF;
Gabe Black84cd9322012-10-12 14:26:11 +0000123 }
Simon Glass11a38a22021-03-15 18:00:10 +1300124 node->next = NULL;
125 node->type = header.type;
126 node->data = start + header.offset;
127 node->data_length = header.len;
Yaroslav Kcc7ed262016-08-08 20:32:15 -0700128 name_len = header.offset - sizeof(struct cbfs_fileheader);
Simon Glass11a38a22021-03-15 18:00:10 +1300129 node->name = (char *)file_header +
Yaroslav Kcc7ed262016-08-08 20:32:15 -0700130 sizeof(struct cbfs_fileheader);
Simon Glass11a38a22021-03-15 18:00:10 +1300131 node->name_length = name_len;
132 node->attr_offset = header.attributes_offset;
Gabe Black84cd9322012-10-12 14:26:11 +0000133
134 step = header.len;
135 if (step % align)
136 step = step + align - step % align;
137
138 *used += step;
Simon Glassc7bef7c2020-05-24 17:38:15 -0600139 return 0;
Gabe Black84cd9322012-10-12 14:26:11 +0000140 }
Simon Glassc7bef7c2020-05-24 17:38:15 -0600141
142 return -ENOENT;
Gabe Black84cd9322012-10-12 14:26:11 +0000143}
144
145/* Look through a CBFS instance and copy file metadata into regular memory. */
Simon Glassc685f8b2020-05-24 17:38:20 -0600146static int file_cbfs_fill_cache(struct cbfs_priv *priv, int size, int align)
Gabe Black84cd9322012-10-12 14:26:11 +0000147{
148 struct cbfs_cachenode *cache_node;
Simon Glass11a38a22021-03-15 18:00:10 +1300149 struct cbfs_cachenode *node;
Simon Glass02e4af62019-08-14 19:56:12 -0600150 struct cbfs_cachenode **cache_tail = &priv->file_cache;
Simon Glassc685f8b2020-05-24 17:38:20 -0600151 void *start;
Gabe Black84cd9322012-10-12 14:26:11 +0000152
153 /* Clear out old information. */
Simon Glass02e4af62019-08-14 19:56:12 -0600154 cache_node = priv->file_cache;
Gabe Black84cd9322012-10-12 14:26:11 +0000155 while (cache_node) {
Simon Glassad79d602019-08-14 19:56:15 -0600156 struct cbfs_cachenode *old_node = cache_node;
Gabe Black84cd9322012-10-12 14:26:11 +0000157 cache_node = cache_node->next;
Simon Glassad79d602019-08-14 19:56:15 -0600158 free(old_node);
Gabe Black84cd9322012-10-12 14:26:11 +0000159 }
Simon Glass02e4af62019-08-14 19:56:12 -0600160 priv->file_cache = NULL;
Gabe Black84cd9322012-10-12 14:26:11 +0000161
Simon Glassc685f8b2020-05-24 17:38:20 -0600162 start = priv->start;
Gabe Black84cd9322012-10-12 14:26:11 +0000163 while (size >= align) {
Simon Glassc7bef7c2020-05-24 17:38:15 -0600164 int used;
Simon Glassea38ee92020-05-24 17:38:12 -0600165 int ret;
Gabe Black84cd9322012-10-12 14:26:11 +0000166
Simon Glass11a38a22021-03-15 18:00:10 +1300167 node = (struct cbfs_cachenode *)
Gabe Black84cd9322012-10-12 14:26:11 +0000168 malloc(sizeof(struct cbfs_cachenode));
Simon Glass11a38a22021-03-15 18:00:10 +1300169 if (!node)
Simon Glassc7bef7c2020-05-24 17:38:15 -0600170 return -ENOMEM;
Simon Glass11a38a22021-03-15 18:00:10 +1300171 ret = file_cbfs_next_file(priv, start, size, align, node,
Simon Glassea38ee92020-05-24 17:38:12 -0600172 &used);
Gabe Black84cd9322012-10-12 14:26:11 +0000173
Simon Glassea38ee92020-05-24 17:38:12 -0600174 if (ret < 0) {
Simon Glass11a38a22021-03-15 18:00:10 +1300175 free(node);
Simon Glassc7bef7c2020-05-24 17:38:15 -0600176 if (ret == -ENOENT)
177 break;
178 return ret;
Gabe Black84cd9322012-10-12 14:26:11 +0000179 }
Simon Glass11a38a22021-03-15 18:00:10 +1300180 *cache_tail = node;
181 cache_tail = &node->next;
Gabe Black84cd9322012-10-12 14:26:11 +0000182
183 size -= used;
184 start += used;
185 }
Simon Glassc7f16932019-08-14 19:56:13 -0600186 priv->result = CBFS_SUCCESS;
Simon Glassc7bef7c2020-05-24 17:38:15 -0600187
188 return 0;
Gabe Black84cd9322012-10-12 14:26:11 +0000189}
190
Simon Glass9dc23552020-05-24 17:38:18 -0600191/**
192 * load_header() - Load the CBFS header
193 *
194 * Get the CBFS header out of the ROM and do endian conversion.
195 *
196 * @priv: Private data, which is inited by this function
197 * @addr: Address of CBFS header in memory-mapped SPI flash
198 * @return 0 if OK, -ENXIO if the header is bad
199 */
200static int load_header(struct cbfs_priv *priv, ulong addr)
Gabe Black84cd9322012-10-12 14:26:11 +0000201{
Simon Glass54e19252020-05-24 17:38:16 -0600202 struct cbfs_header *header = &priv->header;
Gabe Black84cd9322012-10-12 14:26:11 +0000203 struct cbfs_header *header_in_rom;
204
Simon Glass9dc23552020-05-24 17:38:18 -0600205 memset(priv, '\0', sizeof(*priv));
206 header_in_rom = (struct cbfs_header *)addr;
Gabe Black84cd9322012-10-12 14:26:11 +0000207 swap_header(header, header_in_rom);
208
209 if (header->magic != good_magic || header->offset >
210 header->rom_size - header->boot_block_size) {
Simon Glass54e19252020-05-24 17:38:16 -0600211 priv->result = CBFS_BAD_HEADER;
Simon Glass9dc23552020-05-24 17:38:18 -0600212 return -ENXIO;
Gabe Black84cd9322012-10-12 14:26:11 +0000213 }
Simon Glass9dc23552020-05-24 17:38:18 -0600214
Gabe Black84cd9322012-10-12 14:26:11 +0000215 return 0;
216}
217
Simon Glass9dc23552020-05-24 17:38:18 -0600218/**
219 * file_cbfs_load_header() - Get the CBFS header out of the ROM, given the end
220 *
221 * @priv: Private data, which is inited by this function
222 * @end_of_rom: Address of the last byte of the ROM (typically 0xffffffff)
223 * @return 0 if OK, -ENXIO if the header is bad
224 */
225static int file_cbfs_load_header(struct cbfs_priv *priv, ulong end_of_rom)
226{
227 int offset = *(u32 *)(end_of_rom - 3);
Simon Glassc685f8b2020-05-24 17:38:20 -0600228 int ret;
Simon Glass9dc23552020-05-24 17:38:18 -0600229
Simon Glassc685f8b2020-05-24 17:38:20 -0600230 ret = load_header(priv, end_of_rom + offset + 1);
231 if (ret)
232 return ret;
233 priv->start = (void *)(end_of_rom + 1 - priv->header.rom_size);
234
235 return 0;
Simon Glass9dc23552020-05-24 17:38:18 -0600236}
237
238/**
239 * cbfs_load_header_ptr() - Get the CBFS header out of the ROM, given the base
240 *
241 * @priv: Private data, which is inited by this function
242 * @base: Address of the first byte of the ROM (e.g. 0xff000000)
243 * @return 0 if OK, -ENXIO if the header is bad
244 */
Simon Glassa2c528f2020-05-24 17:38:17 -0600245static int cbfs_load_header_ptr(struct cbfs_priv *priv, ulong base)
Simon Glass630b2f32019-08-14 19:56:14 -0600246{
Simon Glassc685f8b2020-05-24 17:38:20 -0600247 int ret;
248
249 ret = load_header(priv, base + MASTER_HDR_OFFSET);
250 if (ret)
251 return ret;
252 priv->start = (void *)base;
253
254 return 0;
Simon Glass630b2f32019-08-14 19:56:14 -0600255}
256
Simon Glass0e7b6312020-05-24 17:38:21 -0600257static int cbfs_init(struct cbfs_priv *priv, ulong end_of_rom)
Gabe Black84cd9322012-10-12 14:26:11 +0000258{
Simon Glass0e7b6312020-05-24 17:38:21 -0600259 int ret;
Gabe Black84cd9322012-10-12 14:26:11 +0000260
Simon Glass0e7b6312020-05-24 17:38:21 -0600261 ret = file_cbfs_load_header(priv, end_of_rom);
262 if (ret)
263 return ret;
264
265 ret = file_cbfs_fill_cache(priv, priv->header.rom_size,
266 priv->header.align);
267 if (ret)
268 return ret;
269 priv->initialized = true;
270
271 return 0;
Simon Glass02e4af62019-08-14 19:56:12 -0600272}
273
Simon Glass0e7b6312020-05-24 17:38:21 -0600274int file_cbfs_init(ulong end_of_rom)
Simon Glass02e4af62019-08-14 19:56:12 -0600275{
Simon Glass0e7b6312020-05-24 17:38:21 -0600276 return cbfs_init(&cbfs_s, end_of_rom);
Gabe Black84cd9322012-10-12 14:26:11 +0000277}
278
Simon Glass5536f122021-03-15 18:00:12 +1300279int cbfs_init_mem(ulong base, ulong size, bool require_hdr,
280 struct cbfs_priv **privp)
Simon Glass630b2f32019-08-14 19:56:14 -0600281{
282 struct cbfs_priv priv_s, *priv = &priv_s;
283 int ret;
284
285 /*
Simon Glass5536f122021-03-15 18:00:12 +1300286 * Use a local variable to start with until we know that the * CBFS is
287 * valid. Note that size is detected from the header, if present,
288 * meaning the parameter is ignored.
Simon Glass630b2f32019-08-14 19:56:14 -0600289 */
Simon Glass9dc23552020-05-24 17:38:18 -0600290 ret = cbfs_load_header_ptr(priv, base);
Simon Glass5536f122021-03-15 18:00:12 +1300291 if (ret) {
292 if (require_hdr || size == CBFS_SIZE_UNKNOWN)
293 return ret;
294 memset(priv, '\0', sizeof(struct cbfs_priv));
295 priv->header.rom_size = size;
296 priv->header.align = CBFS_ALIGN_SIZE;
297 priv->start = (void *)base;
298 }
Simon Glass630b2f32019-08-14 19:56:14 -0600299
Simon Glass0621b5e2020-05-24 17:38:24 -0600300 ret = file_cbfs_fill_cache(priv, priv->header.rom_size,
301 priv->header.align);
302 if (ret)
303 return log_msg_ret("fill", ret);
Simon Glass630b2f32019-08-14 19:56:14 -0600304
Simon Glass381e1132020-05-24 17:38:14 -0600305 priv->initialized = true;
Simon Glass630b2f32019-08-14 19:56:14 -0600306 priv = malloc(sizeof(priv_s));
307 if (!priv)
308 return -ENOMEM;
309 memcpy(priv, &priv_s, sizeof(priv_s));
310 *privp = priv;
311
312 return 0;
313}
314
Gabe Black84cd9322012-10-12 14:26:11 +0000315const struct cbfs_header *file_cbfs_get_header(void)
316{
Simon Glass02e4af62019-08-14 19:56:12 -0600317 struct cbfs_priv *priv = &cbfs_s;
318
319 if (priv->initialized) {
Simon Glassc7f16932019-08-14 19:56:13 -0600320 priv->result = CBFS_SUCCESS;
Simon Glass02e4af62019-08-14 19:56:12 -0600321 return &priv->header;
Gabe Black84cd9322012-10-12 14:26:11 +0000322 } else {
Simon Glassc7f16932019-08-14 19:56:13 -0600323 priv->result = CBFS_NOT_INITIALIZED;
Gabe Black84cd9322012-10-12 14:26:11 +0000324 return NULL;
325 }
326}
327
Simon Glassc4f5b5d2021-03-15 18:00:13 +1300328const struct cbfs_cachenode *cbfs_get_first(const struct cbfs_priv *priv)
329{
330 return priv->file_cache;
331}
332
333void cbfs_get_next(const struct cbfs_cachenode **filep)
334{
335 if (*filep)
336 *filep = (*filep)->next;
337}
338
Gabe Black84cd9322012-10-12 14:26:11 +0000339const struct cbfs_cachenode *file_cbfs_get_first(void)
340{
Simon Glass02e4af62019-08-14 19:56:12 -0600341 struct cbfs_priv *priv = &cbfs_s;
342
343 if (!priv->initialized) {
Simon Glassc7f16932019-08-14 19:56:13 -0600344 priv->result = CBFS_NOT_INITIALIZED;
Gabe Black84cd9322012-10-12 14:26:11 +0000345 return NULL;
346 } else {
Simon Glassc7f16932019-08-14 19:56:13 -0600347 priv->result = CBFS_SUCCESS;
Simon Glass02e4af62019-08-14 19:56:12 -0600348 return priv->file_cache;
Gabe Black84cd9322012-10-12 14:26:11 +0000349 }
350}
351
352void file_cbfs_get_next(const struct cbfs_cachenode **file)
353{
Simon Glass02e4af62019-08-14 19:56:12 -0600354 struct cbfs_priv *priv = &cbfs_s;
355
356 if (!priv->initialized) {
Simon Glassc7f16932019-08-14 19:56:13 -0600357 priv->result = CBFS_NOT_INITIALIZED;
Simon Glass02e4af62019-08-14 19:56:12 -0600358 *file = NULL;
Gabe Black84cd9322012-10-12 14:26:11 +0000359 return;
360 }
361
362 if (*file)
363 *file = (*file)->next;
Simon Glassc7f16932019-08-14 19:56:13 -0600364 priv->result = CBFS_SUCCESS;
Gabe Black84cd9322012-10-12 14:26:11 +0000365}
366
Simon Glass02e4af62019-08-14 19:56:12 -0600367const struct cbfs_cachenode *cbfs_find_file(struct cbfs_priv *priv,
368 const char *name)
Gabe Black84cd9322012-10-12 14:26:11 +0000369{
Simon Glass02e4af62019-08-14 19:56:12 -0600370 struct cbfs_cachenode *cache_node = priv->file_cache;
Gabe Black84cd9322012-10-12 14:26:11 +0000371
Simon Glass02e4af62019-08-14 19:56:12 -0600372 if (!priv->initialized) {
Simon Glassc7f16932019-08-14 19:56:13 -0600373 priv->result = CBFS_NOT_INITIALIZED;
Gabe Black84cd9322012-10-12 14:26:11 +0000374 return NULL;
375 }
376
377 while (cache_node) {
378 if (!strcmp(name, cache_node->name))
379 break;
380 cache_node = cache_node->next;
381 }
382 if (!cache_node)
Simon Glassc7f16932019-08-14 19:56:13 -0600383 priv->result = CBFS_FILE_NOT_FOUND;
Gabe Black84cd9322012-10-12 14:26:11 +0000384 else
Simon Glassc7f16932019-08-14 19:56:13 -0600385 priv->result = CBFS_SUCCESS;
Gabe Black84cd9322012-10-12 14:26:11 +0000386
387 return cache_node;
388}
389
Simon Glass02e4af62019-08-14 19:56:12 -0600390const struct cbfs_cachenode *file_cbfs_find(const char *name)
391{
392 return cbfs_find_file(&cbfs_s, name);
393}
394
Simon Glass924e3462020-05-24 17:38:22 -0600395static int find_uncached(struct cbfs_priv *priv, const char *name, void *start,
396 struct cbfs_cachenode *node)
Gabe Black84cd9322012-10-12 14:26:11 +0000397{
Simon Glass924e3462020-05-24 17:38:22 -0600398 int size = priv->header.rom_size;
399 int align = priv->header.align;
Gabe Black84cd9322012-10-12 14:26:11 +0000400
401 while (size >= align) {
Simon Glassc7bef7c2020-05-24 17:38:15 -0600402 int used;
Simon Glass924e3462020-05-24 17:38:22 -0600403 int ret;
Gabe Black84cd9322012-10-12 14:26:11 +0000404
Simon Glass924e3462020-05-24 17:38:22 -0600405 ret = file_cbfs_next_file(priv, start, size, align, node,
Simon Glassea38ee92020-05-24 17:38:12 -0600406 &used);
Simon Glassc7bef7c2020-05-24 17:38:15 -0600407 if (ret == -ENOENT)
Gabe Black84cd9322012-10-12 14:26:11 +0000408 break;
Simon Glassc7bef7c2020-05-24 17:38:15 -0600409 else if (ret)
Simon Glass924e3462020-05-24 17:38:22 -0600410 return ret;
411 if (!strcmp(name, node->name))
412 return 0;
Gabe Black84cd9322012-10-12 14:26:11 +0000413
414 size -= used;
415 start += used;
416 }
Simon Glass924e3462020-05-24 17:38:22 -0600417 priv->result = CBFS_FILE_NOT_FOUND;
418
419 return -ENOENT;
420}
421
422int file_cbfs_find_uncached(ulong end_of_rom, const char *name,
423 struct cbfs_cachenode *node)
424{
425 struct cbfs_priv priv;
426 void *start;
427 int ret;
428
429 ret = file_cbfs_load_header(&priv, end_of_rom);
430 if (ret)
431 return ret;
432 start = priv.start;
433
434 return find_uncached(&priv, name, start, node);
Gabe Black84cd9322012-10-12 14:26:11 +0000435}
436
Simon Glass03d4c292020-05-24 17:38:23 -0600437int file_cbfs_find_uncached_base(ulong base, const char *name,
438 struct cbfs_cachenode *node)
439{
440 struct cbfs_priv priv;
441 int ret;
442
443 ret = cbfs_load_header_ptr(&priv, base);
444 if (ret)
445 return ret;
446
447 return find_uncached(&priv, name, (void *)base, node);
448}
449
Gabe Black84cd9322012-10-12 14:26:11 +0000450const char *file_cbfs_name(const struct cbfs_cachenode *file)
451{
Simon Glassc7f16932019-08-14 19:56:13 -0600452 cbfs_s.result = CBFS_SUCCESS;
453
Gabe Black84cd9322012-10-12 14:26:11 +0000454 return file->name;
455}
456
457u32 file_cbfs_size(const struct cbfs_cachenode *file)
458{
Simon Glassc7f16932019-08-14 19:56:13 -0600459 cbfs_s.result = CBFS_SUCCESS;
460
Gabe Black84cd9322012-10-12 14:26:11 +0000461 return file->data_length;
462}
463
464u32 file_cbfs_type(const struct cbfs_cachenode *file)
465{
Simon Glassc7f16932019-08-14 19:56:13 -0600466 cbfs_s.result = CBFS_SUCCESS;
467
Gabe Black84cd9322012-10-12 14:26:11 +0000468 return file->type;
469}
470
471long file_cbfs_read(const struct cbfs_cachenode *file, void *buffer,
472 unsigned long maxsize)
473{
474 u32 size;
475
476 size = file->data_length;
477 if (maxsize && size > maxsize)
478 size = maxsize;
479
480 memcpy(buffer, file->data, size);
Simon Glassc7f16932019-08-14 19:56:13 -0600481 cbfs_s.result = CBFS_SUCCESS;
Gabe Black84cd9322012-10-12 14:26:11 +0000482
Gabe Black84cd9322012-10-12 14:26:11 +0000483 return size;
484}