[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-arm] [PATCH 2/4] loader: Add load_image_mr() to load ROM image
From: |
Paolo Bonzini |
Subject: |
Re: [Qemu-arm] [PATCH 2/4] loader: Add load_image_mr() to load ROM image to a MemoryRegion |
Date: |
Thu, 3 Mar 2016 17:46:28 +0100 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.6.0 |
On 12/02/2016 15:45, Peter Maydell wrote:
> Add a new function load_image_mr(), which behaves like
> load_image_targphys() except that it loads the ROM image to
> a specified MemoryRegion rather than to a specified physical
> address. This is useful when a ROM blob needs to be loaded
> to a particular flash or ROM device but the address of that
> device in the machine's address space is not known. (For
> instance, ROMs in devices, or ROMs which might exist in
> a different address space to the system address space.)
>
> Signed-off-by: Peter Maydell <address@hidden>
The patch looks good, in particular it should be fine for the non-fw_cfg
uses of rom->mr.
The fw_cfg interface to loader.c indeed should be turned upside-down so
that the knowledge moves outside rom_add_file (to a rom_add_fwcfg
function for example) and rom_add_file doesn't need to call rom_set_mr.
Your patch is at least a step in the right direction, because it adds
memory region support in the !fw_cfg case.
So,
Reviewed-by: Paolo Bonzini <address@hidden>
Thanks,
Paolo
- Re: [Qemu-arm] [PATCH 2/4] loader: Add load_image_mr() to load ROM image to a MemoryRegion,
Paolo Bonzini <=