blob: 9007aa7d15942db6914a344b75ec9f584d31fbcf [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 Glassad79d602019-08-14 19:56:15 -060090 * @param new_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 Glassc7bef7c2020-05-24 17:38:15 -060098 int align, struct cbfs_cachenode *new_node,
99 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 Glassad79d602019-08-14 19:56:15 -0600124 new_node->next = NULL;
125 new_node->type = header.type;
126 new_node->data = start + header.offset;
127 new_node->data_length = header.len;
Yaroslav Kcc7ed262016-08-08 20:32:15 -0700128 name_len = header.offset - sizeof(struct cbfs_fileheader);
Simon Glassad79d602019-08-14 19:56:15 -0600129 new_node->name = (char *)file_header +
Yaroslav Kcc7ed262016-08-08 20:32:15 -0700130 sizeof(struct cbfs_fileheader);
Simon Glassad79d602019-08-14 19:56:15 -0600131 new_node->name_length = name_len;
132 new_node->attributes_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 Glassad79d602019-08-14 19:56:15 -0600149 struct cbfs_cachenode *new_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 Glassad79d602019-08-14 19:56:15 -0600167 new_node = (struct cbfs_cachenode *)
Gabe Black84cd9322012-10-12 14:26:11 +0000168 malloc(sizeof(struct cbfs_cachenode));
Simon Glassc7bef7c2020-05-24 17:38:15 -0600169 if (!new_node)
170 return -ENOMEM;
Simon Glassea38ee92020-05-24 17:38:12 -0600171 ret = file_cbfs_next_file(priv, start, size, align, new_node,
172 &used);
Gabe Black84cd9322012-10-12 14:26:11 +0000173
Simon Glassea38ee92020-05-24 17:38:12 -0600174 if (ret < 0) {
Simon Glassad79d602019-08-14 19:56:15 -0600175 free(new_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 Glassad79d602019-08-14 19:56:15 -0600180 *cache_tail = new_node;
181 cache_tail = &new_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 Glass0621b5e2020-05-24 17:38:24 -0600279int cbfs_init_mem(ulong base, struct cbfs_priv **privp)
Simon Glass630b2f32019-08-14 19:56:14 -0600280{
281 struct cbfs_priv priv_s, *priv = &priv_s;
282 int ret;
283
284 /*
285 * Use a local variable to start with until we know that the CBFS is
Simon Glass9dc23552020-05-24 17:38:18 -0600286 * valid.
Simon Glass630b2f32019-08-14 19:56:14 -0600287 */
Simon Glass9dc23552020-05-24 17:38:18 -0600288 ret = cbfs_load_header_ptr(priv, base);
Simon Glass630b2f32019-08-14 19:56:14 -0600289 if (ret)
290 return ret;
291
Simon Glass0621b5e2020-05-24 17:38:24 -0600292 ret = file_cbfs_fill_cache(priv, priv->header.rom_size,
293 priv->header.align);
294 if (ret)
295 return log_msg_ret("fill", ret);
Simon Glass630b2f32019-08-14 19:56:14 -0600296
Simon Glass381e1132020-05-24 17:38:14 -0600297 priv->initialized = true;
Simon Glass630b2f32019-08-14 19:56:14 -0600298 priv = malloc(sizeof(priv_s));
299 if (!priv)
300 return -ENOMEM;
301 memcpy(priv, &priv_s, sizeof(priv_s));
302 *privp = priv;
303
304 return 0;
305}
306
Gabe Black84cd9322012-10-12 14:26:11 +0000307const struct cbfs_header *file_cbfs_get_header(void)
308{
Simon Glass02e4af62019-08-14 19:56:12 -0600309 struct cbfs_priv *priv = &cbfs_s;
310
311 if (priv->initialized) {
Simon Glassc7f16932019-08-14 19:56:13 -0600312 priv->result = CBFS_SUCCESS;
Simon Glass02e4af62019-08-14 19:56:12 -0600313 return &priv->header;
Gabe Black84cd9322012-10-12 14:26:11 +0000314 } else {
Simon Glassc7f16932019-08-14 19:56:13 -0600315 priv->result = CBFS_NOT_INITIALIZED;
Gabe Black84cd9322012-10-12 14:26:11 +0000316 return NULL;
317 }
318}
319
320const struct cbfs_cachenode *file_cbfs_get_first(void)
321{
Simon Glass02e4af62019-08-14 19:56:12 -0600322 struct cbfs_priv *priv = &cbfs_s;
323
324 if (!priv->initialized) {
Simon Glassc7f16932019-08-14 19:56:13 -0600325 priv->result = CBFS_NOT_INITIALIZED;
Gabe Black84cd9322012-10-12 14:26:11 +0000326 return NULL;
327 } else {
Simon Glassc7f16932019-08-14 19:56:13 -0600328 priv->result = CBFS_SUCCESS;
Simon Glass02e4af62019-08-14 19:56:12 -0600329 return priv->file_cache;
Gabe Black84cd9322012-10-12 14:26:11 +0000330 }
331}
332
333void file_cbfs_get_next(const struct cbfs_cachenode **file)
334{
Simon Glass02e4af62019-08-14 19:56:12 -0600335 struct cbfs_priv *priv = &cbfs_s;
336
337 if (!priv->initialized) {
Simon Glassc7f16932019-08-14 19:56:13 -0600338 priv->result = CBFS_NOT_INITIALIZED;
Simon Glass02e4af62019-08-14 19:56:12 -0600339 *file = NULL;
Gabe Black84cd9322012-10-12 14:26:11 +0000340 return;
341 }
342
343 if (*file)
344 *file = (*file)->next;
Simon Glassc7f16932019-08-14 19:56:13 -0600345 priv->result = CBFS_SUCCESS;
Gabe Black84cd9322012-10-12 14:26:11 +0000346}
347
Simon Glass02e4af62019-08-14 19:56:12 -0600348const struct cbfs_cachenode *cbfs_find_file(struct cbfs_priv *priv,
349 const char *name)
Gabe Black84cd9322012-10-12 14:26:11 +0000350{
Simon Glass02e4af62019-08-14 19:56:12 -0600351 struct cbfs_cachenode *cache_node = priv->file_cache;
Gabe Black84cd9322012-10-12 14:26:11 +0000352
Simon Glass02e4af62019-08-14 19:56:12 -0600353 if (!priv->initialized) {
Simon Glassc7f16932019-08-14 19:56:13 -0600354 priv->result = CBFS_NOT_INITIALIZED;
Gabe Black84cd9322012-10-12 14:26:11 +0000355 return NULL;
356 }
357
358 while (cache_node) {
359 if (!strcmp(name, cache_node->name))
360 break;
361 cache_node = cache_node->next;
362 }
363 if (!cache_node)
Simon Glassc7f16932019-08-14 19:56:13 -0600364 priv->result = CBFS_FILE_NOT_FOUND;
Gabe Black84cd9322012-10-12 14:26:11 +0000365 else
Simon Glassc7f16932019-08-14 19:56:13 -0600366 priv->result = CBFS_SUCCESS;
Gabe Black84cd9322012-10-12 14:26:11 +0000367
368 return cache_node;
369}
370
Simon Glass02e4af62019-08-14 19:56:12 -0600371const struct cbfs_cachenode *file_cbfs_find(const char *name)
372{
373 return cbfs_find_file(&cbfs_s, name);
374}
375
Simon Glass924e3462020-05-24 17:38:22 -0600376static int find_uncached(struct cbfs_priv *priv, const char *name, void *start,
377 struct cbfs_cachenode *node)
Gabe Black84cd9322012-10-12 14:26:11 +0000378{
Simon Glass924e3462020-05-24 17:38:22 -0600379 int size = priv->header.rom_size;
380 int align = priv->header.align;
Gabe Black84cd9322012-10-12 14:26:11 +0000381
382 while (size >= align) {
Simon Glassc7bef7c2020-05-24 17:38:15 -0600383 int used;
Simon Glass924e3462020-05-24 17:38:22 -0600384 int ret;
Gabe Black84cd9322012-10-12 14:26:11 +0000385
Simon Glass924e3462020-05-24 17:38:22 -0600386 ret = file_cbfs_next_file(priv, start, size, align, node,
Simon Glassea38ee92020-05-24 17:38:12 -0600387 &used);
Simon Glassc7bef7c2020-05-24 17:38:15 -0600388 if (ret == -ENOENT)
Gabe Black84cd9322012-10-12 14:26:11 +0000389 break;
Simon Glassc7bef7c2020-05-24 17:38:15 -0600390 else if (ret)
Simon Glass924e3462020-05-24 17:38:22 -0600391 return ret;
392 if (!strcmp(name, node->name))
393 return 0;
Gabe Black84cd9322012-10-12 14:26:11 +0000394
395 size -= used;
396 start += used;
397 }
Simon Glass924e3462020-05-24 17:38:22 -0600398 priv->result = CBFS_FILE_NOT_FOUND;
399
400 return -ENOENT;
401}
402
403int file_cbfs_find_uncached(ulong end_of_rom, const char *name,
404 struct cbfs_cachenode *node)
405{
406 struct cbfs_priv priv;
407 void *start;
408 int ret;
409
410 ret = file_cbfs_load_header(&priv, end_of_rom);
411 if (ret)
412 return ret;
413 start = priv.start;
414
415 return find_uncached(&priv, name, start, node);
Gabe Black84cd9322012-10-12 14:26:11 +0000416}
417
Simon Glass03d4c292020-05-24 17:38:23 -0600418int file_cbfs_find_uncached_base(ulong base, const char *name,
419 struct cbfs_cachenode *node)
420{
421 struct cbfs_priv priv;
422 int ret;
423
424 ret = cbfs_load_header_ptr(&priv, base);
425 if (ret)
426 return ret;
427
428 return find_uncached(&priv, name, (void *)base, node);
429}
430
Gabe Black84cd9322012-10-12 14:26:11 +0000431const char *file_cbfs_name(const struct cbfs_cachenode *file)
432{
Simon Glassc7f16932019-08-14 19:56:13 -0600433 cbfs_s.result = CBFS_SUCCESS;
434
Gabe Black84cd9322012-10-12 14:26:11 +0000435 return file->name;
436}
437
438u32 file_cbfs_size(const struct cbfs_cachenode *file)
439{
Simon Glassc7f16932019-08-14 19:56:13 -0600440 cbfs_s.result = CBFS_SUCCESS;
441
Gabe Black84cd9322012-10-12 14:26:11 +0000442 return file->data_length;
443}
444
445u32 file_cbfs_type(const struct cbfs_cachenode *file)
446{
Simon Glassc7f16932019-08-14 19:56:13 -0600447 cbfs_s.result = CBFS_SUCCESS;
448
Gabe Black84cd9322012-10-12 14:26:11 +0000449 return file->type;
450}
451
452long file_cbfs_read(const struct cbfs_cachenode *file, void *buffer,
453 unsigned long maxsize)
454{
455 u32 size;
456
457 size = file->data_length;
458 if (maxsize && size > maxsize)
459 size = maxsize;
460
461 memcpy(buffer, file->data, size);
Simon Glassc7f16932019-08-14 19:56:13 -0600462 cbfs_s.result = CBFS_SUCCESS;
Gabe Black84cd9322012-10-12 14:26:11 +0000463
Gabe Black84cd9322012-10-12 14:26:11 +0000464 return size;
465}