123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- #ifndef __CBFS_H
- #define __CBFS_H
- #include <compiler.h>
- #include <linux/compiler.h>
- enum cbfs_result {
- CBFS_SUCCESS = 0,
- CBFS_NOT_INITIALIZED,
- CBFS_BAD_HEADER,
- CBFS_BAD_FILE,
- CBFS_FILE_NOT_FOUND
- };
- enum cbfs_filetype {
- CBFS_TYPE_STAGE = 0x10,
- CBFS_TYPE_PAYLOAD = 0x20,
- CBFS_TYPE_OPTIONROM = 0x30,
- CBFS_TYPE_BOOTSPLASH = 0x40,
- CBFS_TYPE_RAW = 0x50,
- CBFS_TYPE_VSA = 0x51,
- CBFS_TYPE_MBI = 0x52,
- CBFS_TYPE_MICROCODE = 0x53,
- CBFS_COMPONENT_CMOS_DEFAULT = 0xaa,
- CBFS_COMPONENT_CMOS_LAYOUT = 0x01aa
- };
- struct cbfs_header {
- u32 magic;
- u32 version;
- u32 rom_size;
- u32 boot_block_size;
- u32 align;
- u32 offset;
- u32 pad[2];
- } __packed;
- struct cbfs_fileheader {
- u8 magic[8];
- u32 len;
- u32 type;
- u32 checksum;
- u32 offset;
- } __packed;
- struct cbfs_cachenode {
- struct cbfs_cachenode *next;
- u32 type;
- void *data;
- u32 data_length;
- char *name;
- u32 name_length;
- u32 checksum;
- } __packed;
- extern enum cbfs_result file_cbfs_result;
- const char *file_cbfs_error(void);
- void file_cbfs_init(uintptr_t end_of_rom);
- const struct cbfs_header *file_cbfs_get_header(void);
- const struct cbfs_cachenode *file_cbfs_get_first(void);
- void file_cbfs_get_next(const struct cbfs_cachenode **file);
- const struct cbfs_cachenode *file_cbfs_find(const char *name);
- const struct cbfs_cachenode *file_cbfs_find_uncached(uintptr_t end_of_rom,
- const char *name);
- const char *file_cbfs_name(const struct cbfs_cachenode *file);
- u32 file_cbfs_size(const struct cbfs_cachenode *file);
- u32 file_cbfs_type(const struct cbfs_cachenode *file);
- long file_cbfs_read(const struct cbfs_cachenode *file, void *buffer,
- unsigned long maxsize);
- #endif
|