]> git.proxmox.com Git - mirror_qemu.git/commit
hw/pci-host/xilinx-pcie: don't make "io" region be RAM
authorPeter Maydell <peter.maydell@linaro.org>
Tue, 19 Jun 2018 12:07:30 +0000 (13:07 +0100)
committerAleksandar Markovic <amarkovic@wavecomp.com>
Wed, 27 Jun 2018 18:12:34 +0000 (20:12 +0200)
commit4f91740698ced512fdad8540eb0bd232fc70aadd
tree9cf86f19f4f4bbcd7650f4a9672f71c727c597f4
parent917b77f5e5a713c217ecc962fd8c491aa9b586aa
hw/pci-host/xilinx-pcie: don't make "io" region be RAM

Currently we use memory_region_init_rom_nomigrate() to create
the "io" memory region to pass to pci_register_root_bus().
This is a dummy region, because this PCI controller doesn't
support accesses to PCI IO space.

There is no reason for the dummy region to be a RAM region;
it is only used as a place where PCI BARs can be mapped,
and if you could get a PCI card to do a bus master access
to the IO space it should not get acts-like-RAM behaviour.
Use a simple container memory region instead. (We do have
one PCI card model which can do bus master accesses to IO
space -- the LSI53C895A SCSI adaptor.)

This avoids the oddity of having a memory region which is
RAM but where the RAM is not migrated.

Note that the size of the region we use here has no
effect on behaviour.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Signed-off-by: Aleksandar Markovic <aleksandar.markovic@mips.com>
hw/pci-host/xilinx-pcie.c