]> git.proxmox.com Git - qemu.git/blame - hw/loader.h
tcg-s390: Fix merge error in tgen_brcond
[qemu.git] / hw / loader.h
CommitLineData
ca20cf32
BS
1#ifndef LOADER_H
2#define LOADER_H
84f2d0ea 3#include "qapi/qmp/qdict.h"
ca20cf32
BS
4
5/* loader.c */
6int get_image_size(const char *filename);
7int load_image(const char *filename, uint8_t *addr); /* deprecated */
a8170e5e 8int load_image_targphys(const char *filename, hwaddr,
80a2ba3d 9 uint64_t max_sz);
409dbce5
AJ
10int load_elf(const char *filename, uint64_t (*translate_fn)(void *, uint64_t),
11 void *translate_opaque, uint64_t *pentry, uint64_t *lowaddr,
12 uint64_t *highaddr, int big_endian, int elf_machine,
13 int clear_lsb);
a8170e5e
AK
14int load_aout(const char *filename, hwaddr addr, int max_sz,
15 int bswap_needed, hwaddr target_page_size);
16int load_uimage(const char *filename, hwaddr *ep,
17 hwaddr *loadaddr, int *is_linux);
ca20cf32 18
725e14e9 19ssize_t read_targphys(const char *name,
a8170e5e 20 int fd, hwaddr dst_addr, size_t nbytes);
3c178e72 21void pstrcpy_targphys(const char *name,
a8170e5e 22 hwaddr dest, int buf_size,
ca20cf32 23 const char *source);
45a50b16 24
bdb5ee30
GH
25
26int rom_add_file(const char *file, const char *fw_dir,
a8170e5e 27 hwaddr addr, int32_t bootindex);
45a50b16 28int rom_add_blob(const char *name, const void *blob, size_t len,
a8170e5e 29 hwaddr addr);
d60fa42e
FC
30int rom_add_elf_program(const char *name, void *data, size_t datasize,
31 size_t romsize, hwaddr addr);
45a50b16 32int rom_load_all(void);
8832cb80 33void rom_set_fw(void *f);
a8170e5e
AK
34int rom_copy(uint8_t *dest, hwaddr addr, size_t size);
35void *rom_ptr(hwaddr addr);
84f2d0ea 36void do_info_roms(Monitor *mon, const QDict *qdict);
45a50b16 37
2e55e842
GN
38#define rom_add_file_fixed(_f, _a, _i) \
39 rom_add_file(_f, NULL, _a, _i)
45a50b16 40#define rom_add_blob_fixed(_f, _b, _l, _a) \
632cf034 41 rom_add_blob(_f, _b, _l, _a)
45a50b16
GH
42
43#define PC_ROM_MIN_VGA 0xc0000
44#define PC_ROM_MIN_OPTION 0xc8000
45#define PC_ROM_MAX 0xe0000
46#define PC_ROM_ALIGN 0x800
47#define PC_ROM_SIZE (PC_ROM_MAX - PC_ROM_MIN_VGA)
48
de2aff17 49int rom_add_vga(const char *file);
2e55e842 50int rom_add_option(const char *file, int32_t bootindex);
45a50b16 51
ca20cf32 52#endif