cbfs: Add API to locate a file from specific region
This patch adds an API to find file by name from any specific region of fmap. Change-Id: Iabe785a6434937be6a57c7009882a0d68f6c8ad4 Signed-off-by: Pratik Prajapati <pratikkumar.v.prajapati@intel.com> Reviewed-on: https://review.coreboot.org/17664 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
committed by
Aaron Durbin
parent
b6e9021b16
commit
2a7708a9f8
@ -24,7 +24,7 @@
|
||||
#include <lib.h>
|
||||
#include <symbols.h>
|
||||
#include <timestamp.h>
|
||||
|
||||
#include <fmap.h>
|
||||
#include "fmap_config.h"
|
||||
|
||||
#define ERROR(x...) printk(BIOS_ERR, "CBFS: " x)
|
||||
@ -72,6 +72,20 @@ void *cbfs_boot_map_with_leak(const char *name, uint32_t type, size_t *size)
|
||||
return rdev_mmap(&fh.data, 0, fsize);
|
||||
}
|
||||
|
||||
int cbfs_locate_file_in_region(struct cbfsf *fh, const char *region_name,
|
||||
const char *name, uint32_t *type)
|
||||
{
|
||||
struct region_device rdev;
|
||||
|
||||
if (fmap_locate_area_as_rdev(region_name, &rdev)) {
|
||||
LOG("%s region not found while looking for %s\n",
|
||||
region_name, name);
|
||||
return -1;
|
||||
}
|
||||
|
||||
return cbfs_locate(fh, &rdev, name, type);
|
||||
}
|
||||
|
||||
size_t cbfs_load_and_decompress(const struct region_device *rdev, size_t offset,
|
||||
size_t in_size, void *buffer, size_t buffer_size, uint32_t compression)
|
||||
{
|
||||
|
Reference in New Issue
Block a user