Re: [PATCH v2 6/6] tests/qtest/libqos: Add generic pci host bridge in arm-virt machine

2022-01-19 Thread Paolo Bonzini
On 1/18/22 21:38, Eric Auger wrote: + +typedef struct QGenericPCIBus { +QOSGraphObject obj; +QPCIBus bus; +uint64_t gpex_pio_base; +uint64_t ecam_alloc_ptr; +} QGenericPCIBus; + +/* + * qpci_init_generic(): + * @ret: A valid QGenericPCIBus * pointer + * @qts: The %QTestState + * @

[PATCH v2 6/6] tests/qtest/libqos: Add generic pci host bridge in arm-virt machine

2022-01-18 Thread Eric Auger
Up to now the virt-machine node contains a virtio-mmio node. However no driver produces any PCI interface node. Hence, PCI tests cannot be run with aarch64 binary. Add a GPEX driver node that produces a pci interface node. This latter then can be consumed by all the pci tests. One of the first mot