2
0

loader.h 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. #ifndef LOADER_H
  2. #define LOADER_H
  3. #include "qapi/qmp/qdict.h"
  4. /* loader.c */
  5. int get_image_size(const char *filename);
  6. int load_image(const char *filename, uint8_t *addr); /* deprecated */
  7. int load_image_targphys(const char *filename, hwaddr,
  8. uint64_t max_sz);
  9. int load_elf(const char *filename, uint64_t (*translate_fn)(void *, uint64_t),
  10. void *translate_opaque, uint64_t *pentry, uint64_t *lowaddr,
  11. uint64_t *highaddr, int big_endian, int elf_machine,
  12. int clear_lsb);
  13. int load_aout(const char *filename, hwaddr addr, int max_sz,
  14. int bswap_needed, hwaddr target_page_size);
  15. int load_uimage(const char *filename, hwaddr *ep,
  16. hwaddr *loadaddr, int *is_linux);
  17. ssize_t read_targphys(const char *name,
  18. int fd, hwaddr dst_addr, size_t nbytes);
  19. void pstrcpy_targphys(const char *name,
  20. hwaddr dest, int buf_size,
  21. const char *source);
  22. int rom_add_file(const char *file, const char *fw_dir,
  23. hwaddr addr, int32_t bootindex);
  24. int rom_add_blob(const char *name, const void *blob, size_t len,
  25. hwaddr addr);
  26. int rom_load_all(void);
  27. void rom_set_fw(void *f);
  28. int rom_copy(uint8_t *dest, hwaddr addr, size_t size);
  29. void *rom_ptr(hwaddr addr);
  30. void do_info_roms(Monitor *mon, const QDict *qdict);
  31. #define rom_add_file_fixed(_f, _a, _i) \
  32. rom_add_file(_f, NULL, _a, _i)
  33. #define rom_add_blob_fixed(_f, _b, _l, _a) \
  34. rom_add_blob(_f, _b, _l, _a)
  35. #define PC_ROM_MIN_VGA 0xc0000
  36. #define PC_ROM_MIN_OPTION 0xc8000
  37. #define PC_ROM_MAX 0xe0000
  38. #define PC_ROM_ALIGN 0x800
  39. #define PC_ROM_SIZE (PC_ROM_MAX - PC_ROM_MIN_VGA)
  40. int rom_add_vga(const char *file);
  41. int rom_add_option(const char *file, int32_t bootindex);
  42. #endif