]> git.proxmox.com Git - qemu.git/blame - hw/loader.h
list MST as pci layer maintainer
[qemu.git] / hw / loader.h
CommitLineData
ca20cf32
BS
1#ifndef LOADER_H
2#define LOADER_H
3
4/* loader.c */
5int get_image_size(const char *filename);
6int load_image(const char *filename, uint8_t *addr); /* deprecated */
c227f099 7int load_image_targphys(const char *filename, target_phys_addr_t, int max_sz);
ca20cf32
BS
8int load_elf(const char *filename, int64_t address_offset,
9 uint64_t *pentry, uint64_t *lowaddr, uint64_t *highaddr,
10 int big_endian, int elf_machine, int clear_lsb);
c227f099
AL
11int load_aout(const char *filename, target_phys_addr_t addr, int max_sz,
12 int bswap_needed, target_phys_addr_t target_page_size);
13int load_uimage(const char *filename, target_phys_addr_t *ep,
14 target_phys_addr_t *loadaddr, int *is_linux);
ca20cf32 15
45a50b16
GH
16int read_targphys(const char *name,
17 int fd, target_phys_addr_t dst_addr, size_t nbytes);
3c178e72
GH
18void pstrcpy_targphys(const char *name,
19 target_phys_addr_t dest, int buf_size,
ca20cf32 20 const char *source);
45a50b16 21
379526a4 22int rom_add_file(const char *file, const char *fw_dir, const char *fw_file,
632cf034 23 target_phys_addr_t addr);
45a50b16 24int rom_add_blob(const char *name, const void *blob, size_t len,
632cf034 25 target_phys_addr_t addr);
45a50b16 26int rom_load_all(void);
379526a4 27int rom_load_fw(void *fw_cfg);
235f86ef 28int rom_copy(uint8_t *dest, target_phys_addr_t addr, size_t size);
3c178e72 29void *rom_ptr(target_phys_addr_t addr);
45a50b16
GH
30void do_info_roms(Monitor *mon);
31
32#define rom_add_file_fixed(_f, _a) \
632cf034 33 rom_add_file(_f, NULL, NULL, _a)
45a50b16 34#define rom_add_blob_fixed(_f, _b, _l, _a) \
632cf034 35 rom_add_blob(_f, _b, _l, _a)
45a50b16
GH
36
37#define PC_ROM_MIN_VGA 0xc0000
38#define PC_ROM_MIN_OPTION 0xc8000
39#define PC_ROM_MAX 0xe0000
40#define PC_ROM_ALIGN 0x800
41#define PC_ROM_SIZE (PC_ROM_MAX - PC_ROM_MIN_VGA)
42
de2aff17
GH
43extern int rom_enable_driver_roms;
44int rom_add_vga(const char *file);
45int rom_add_option(const char *file);
45a50b16 46
ca20cf32 47#endif