diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2018-03-02 10:45:35 +0000 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2018-03-02 11:03:45 +0000 |
commit | 97df5feee3fe8b0e4e1a2cd3105ec476eb84cf42 (patch) | |
tree | 19b96c2643c9a1f8932c551c097224866efb7388 /include/hw/loader.h | |
parent | 768055980b5f4a65d1bc2b6a7c1ece98adf7e262 (diff) | |
download | qemu-97df5feee3fe8b0e4e1a2cd3105ec476eb84cf42.zip qemu-97df5feee3fe8b0e4e1a2cd3105ec476eb84cf42.tar.gz qemu-97df5feee3fe8b0e4e1a2cd3105ec476eb84cf42.tar.bz2 |
loader: Add new load_ramdisk_as()
Add a function load_ramdisk_as() which behaves like the existing
load_ramdisk() but allows the caller to specify the AddressSpace
to use. This matches the pattern we have already for various
other loader functions.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-id: 20180220180325.29818-2-peter.maydell@linaro.org
Diffstat (limited to 'include/hw/loader.h')
-rw-r--r-- | include/hw/loader.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/include/hw/loader.h b/include/hw/loader.h index 5edbe02..2504cc2 100644 --- a/include/hw/loader.h +++ b/include/hw/loader.h @@ -162,16 +162,26 @@ int load_uimage(const char *filename, hwaddr *ep, void *translate_opaque); /** - * load_ramdisk: + * load_ramdisk_as: * @filename: Path to the ramdisk image * @addr: Memory address to load the ramdisk to * @max_sz: Maximum allowed ramdisk size (for non-u-boot ramdisks) + * @as: The AddressSpace to load the ELF to. The value of address_space_memory + * is used if nothing is supplied here. * * Load a ramdisk image with U-Boot header to the specified memory * address. * * Returns the size of the loaded image on success, -1 otherwise. */ +int load_ramdisk_as(const char *filename, hwaddr addr, uint64_t max_sz, + AddressSpace *as); + +/** + * load_ramdisk: + * Same as load_ramdisk_as(), but doesn't allow the caller to specify + * an AddressSpace. + */ int load_ramdisk(const char *filename, hwaddr addr, uint64_t max_sz); ssize_t gunzip(void *dst, size_t dstlen, uint8_t *src, size_t srclen); |