diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2010-01-08 15:25:41 +0100 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2010-01-11 13:41:00 -0600 |
commit | 88169ddf82853ca892ce7bee279579c8a0ac03e5 (patch) | |
tree | 23fe323569c5d948ccc6dea7b2e12261942957a1 /hw/pci.h | |
parent | 8832cb805dcb65009b979cd8e17d75ac4b03c7e4 (diff) |
pci: allow loading roms via fw_cfg.
This patch adds a pci bus property 'rombar' which specifies whenever
the pci rom should be loaded via pci rom bar (default) or via fw_cfg.
The later can be used for compatibility with older qemu versions where
no pci rom bar is present.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/pci.h')
-rw-r--r-- | hw/pci.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -177,6 +177,7 @@ struct PCIDevice { /* Location of option rom */ char *romfile; ram_addr_t rom_offset; + uint32_t rom_bar; }; PCIDevice *pci_register_device(PCIBus *bus, const char *name, |