blob: 992b6583ca0207746f923829536f8ea6362db5f1 [file] [log] [blame]
Angel Pons32859fc2020-04-02 23:48:27 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Peter Stuge483b7bb2009-04-14 07:40:01 +00002
3#ifndef _CBFS_H_
4#define _CBFS_H_
5
Julius Werner1e37c9c2019-12-11 17:09:39 -08006#include <cbmem.h>
Aaron Durbin295d58b2015-12-15 13:33:51 -06007#include <commonlib/cbfs.h>
Aaron Durbin899d13d2015-05-15 23:39:23 -05008#include <program_loading.h>
Julius Werner1e37c9c2019-12-11 17:09:39 -08009#include <types.h>
Daisuke Nojirie1298df2014-12-01 15:30:01 -080010
Aaron Durbin899d13d2015-05-15 23:39:23 -050011/***********************************************
12 * Perform CBFS operations on the boot device. *
13 ***********************************************/
14
Elyes HAOUAS918535a2016-07-28 21:25:21 +020015/* Return mapping of option ROM found in boot device. NULL on error. */
Aaron Durbin899d13d2015-05-15 23:39:23 -050016void *cbfs_boot_map_optionrom(uint16_t vendor, uint16_t device);
Martin Rotha616a4b2020-01-21 09:28:40 -070017/* Return mapping of option ROM with revision number. Returns NULL on error. */
18void *cbfs_boot_map_optionrom_revision(uint16_t vendor, uint16_t device, uint8_t rev);
Aaron Durbin899d13d2015-05-15 23:39:23 -050019/* Locate file by name and optional type. Return 0 on success. < 0 on error. */
Aaron Durbin37a5d152015-09-17 16:09:30 -050020int cbfs_boot_locate(struct cbfsf *fh, const char *name, uint32_t *type);
Julius Werner834b3ec2020-03-04 16:52:08 -080021/* Map file into memory, returning a pointer to the mapping or NULL on error.
22 If |size_out| is not NULL, it will pass out the size of the mapped file.
23 NOTE: Since this may return a direct pointer to memory-mapped hardware,
24 compressed files are NOT transparently decompressed (unlike cbfs_load()). */
25void *cbfs_map(const char *name, size_t *size_out);
26/* Removes a mapping previously allocated with cbfs_map(). Should try to unmap
27 mappings in strict LIFO order where possible, since mapping backends often
28 don't support more complicated cases. */
29int cbfs_unmap(void *mapping);
Pratik Prajapati2a7708a2016-11-30 17:29:10 -080030/* Locate file in a specific region of fmap. Return 0 on success. < 0 on error*/
31int cbfs_locate_file_in_region(struct cbfsf *fh, const char *region_name,
32 const char *name, uint32_t *type);
Julius Werner834b3ec2020-03-04 16:52:08 -080033/* Load a file from CBFS into a buffer. Returns amount of loaded bytes on
34 success or 0 on error. File will get decompressed as necessary. Same
35 decompression requirements as cbfs_load_and_decompress(). */
36size_t cbfs_load(const char *name, void *buf, size_t buf_size);
Julius Werner09f29212015-09-29 13:51:35 -070037/* Load |in_size| bytes from |rdev| at |offset| to the |buffer_size| bytes
38 * large |buffer|, decompressing it according to |compression| in the process.
39 * Returns the decompressed file size, or 0 on error.
40 * LZMA files will be mapped for decompression. LZ4 files will be decompressed
41 * in-place with the buffer size requirements outlined in compression.h. */
42size_t cbfs_load_and_decompress(const struct region_device *rdev, size_t offset,
43 size_t in_size, void *buffer, size_t buffer_size, uint32_t compression);
44
Aaron Durbin899d13d2015-05-15 23:39:23 -050045/* Load stage into memory filling in prog. Return 0 on success. < 0 on error. */
46int cbfs_prog_stage_load(struct prog *prog);
47
Julius Werner0d9072b2020-03-05 12:51:08 -080048/*
49 * Data structure that represents "a" CBFS boot device, with optional metadata
50 * cache. Generally we only have one of these, or two (RO and RW) when
51 * CONFIG(VBOOT) is set. The region device stored here must always be a
52 * subregion of boot_device_ro().
53 */
Julius Werner1e37c9c2019-12-11 17:09:39 -080054struct cbfs_boot_device {
55 struct region_device rdev;
56 void *mcache;
57 size_t mcache_size;
58};
59
60/* Helper to fill out |mcache| and |mcache_size| in a cbfs_boot_device. */
61void cbfs_boot_device_find_mcache(struct cbfs_boot_device *cbd, uint32_t id);
62
63/*
64 * Retrieves the currently active CBFS boot device. If |force_ro| is set, will
65 * always return the read-only CBFS instead (this only makes a difference when
66 * CONFIG(VBOOT) is enabled). May perform certain CBFS initialization tasks.
67 * Returns NULL on error (e.g. boot device IO error).
68 */
69const struct cbfs_boot_device *cbfs_get_boot_device(bool force_ro);
Aaron Durbin899d13d2015-05-15 23:39:23 -050070
Peter Stuge483b7bb2009-04-14 07:40:01 +000071#endif