Statistics
| Branch: | Revision:

root / hw / loader.h @ ae710b99

History | View | Annotate | Download (1.9 kB)

1 ca20cf32 Blue Swirl
#ifndef LOADER_H
2 ca20cf32 Blue Swirl
#define LOADER_H
3 ca20cf32 Blue Swirl
4 ca20cf32 Blue Swirl
/* loader.c */
5 ca20cf32 Blue Swirl
int get_image_size(const char *filename);
6 ca20cf32 Blue Swirl
int load_image(const char *filename, uint8_t *addr); /* deprecated */
7 80a2ba3d Mark Langsdorf
int load_image_targphys(const char *filename, target_phys_addr_t,
8 80a2ba3d Mark Langsdorf
                        uint64_t max_sz);
9 409dbce5 Aurelien Jarno
int load_elf(const char *filename, uint64_t (*translate_fn)(void *, uint64_t),
10 409dbce5 Aurelien Jarno
             void *translate_opaque, uint64_t *pentry, uint64_t *lowaddr,
11 409dbce5 Aurelien Jarno
             uint64_t *highaddr, int big_endian, int elf_machine,
12 409dbce5 Aurelien Jarno
             int clear_lsb);
13 c227f099 Anthony Liguori
int load_aout(const char *filename, target_phys_addr_t addr, int max_sz,
14 c227f099 Anthony Liguori
              int bswap_needed, target_phys_addr_t target_page_size);
15 c227f099 Anthony Liguori
int load_uimage(const char *filename, target_phys_addr_t *ep,
16 c227f099 Anthony Liguori
                target_phys_addr_t *loadaddr, int *is_linux);
17 ca20cf32 Blue Swirl
18 725e14e9 Markus Armbruster
ssize_t read_targphys(const char *name,
19 725e14e9 Markus Armbruster
                      int fd, target_phys_addr_t dst_addr, size_t nbytes);
20 3c178e72 Gerd Hoffmann
void pstrcpy_targphys(const char *name,
21 3c178e72 Gerd Hoffmann
                      target_phys_addr_t dest, int buf_size,
22 ca20cf32 Blue Swirl
                      const char *source);
23 45a50b16 Gerd Hoffmann
24 bdb5ee30 Gerd Hoffmann
25 bdb5ee30 Gerd Hoffmann
int rom_add_file(const char *file, const char *fw_dir,
26 2e55e842 Gleb Natapov
                 target_phys_addr_t addr, int32_t bootindex);
27 45a50b16 Gerd Hoffmann
int rom_add_blob(const char *name, const void *blob, size_t len,
28 632cf034 Gerd Hoffmann
                 target_phys_addr_t addr);
29 45a50b16 Gerd Hoffmann
int rom_load_all(void);
30 8832cb80 Gerd Hoffmann
void rom_set_fw(void *f);
31 235f86ef Alexander Graf
int rom_copy(uint8_t *dest, target_phys_addr_t addr, size_t size);
32 3c178e72 Gerd Hoffmann
void *rom_ptr(target_phys_addr_t addr);
33 45a50b16 Gerd Hoffmann
void do_info_roms(Monitor *mon);
34 45a50b16 Gerd Hoffmann
35 2e55e842 Gleb Natapov
#define rom_add_file_fixed(_f, _a, _i)          \
36 2e55e842 Gleb Natapov
    rom_add_file(_f, NULL, _a, _i)
37 45a50b16 Gerd Hoffmann
#define rom_add_blob_fixed(_f, _b, _l, _a)      \
38 632cf034 Gerd Hoffmann
    rom_add_blob(_f, _b, _l, _a)
39 45a50b16 Gerd Hoffmann
40 45a50b16 Gerd Hoffmann
#define PC_ROM_MIN_VGA     0xc0000
41 45a50b16 Gerd Hoffmann
#define PC_ROM_MIN_OPTION  0xc8000
42 45a50b16 Gerd Hoffmann
#define PC_ROM_MAX         0xe0000
43 45a50b16 Gerd Hoffmann
#define PC_ROM_ALIGN       0x800
44 45a50b16 Gerd Hoffmann
#define PC_ROM_SIZE        (PC_ROM_MAX - PC_ROM_MIN_VGA)
45 45a50b16 Gerd Hoffmann
46 de2aff17 Gerd Hoffmann
int rom_add_vga(const char *file);
47 2e55e842 Gleb Natapov
int rom_add_option(const char *file, int32_t bootindex);
48 45a50b16 Gerd Hoffmann
49 ca20cf32 Blue Swirl
#endif