]> git.proxmox.com Git - mirror_qemu.git/blob - tests/libqos/usb.h
Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20161028' into...
[mirror_qemu.git] / tests / libqos / usb.h
1 #ifndef LIBQOS_USB_H
2 #define LIBQOS_USB_H
3
4 #include "libqos/pci-pc.h"
5
6 struct qhc {
7 QPCIDevice *dev;
8 QPCIBar bar;
9 };
10
11 void qusb_pci_init_one(QPCIBus *pcibus, struct qhc *hc,
12 uint32_t devfn, int bar);
13 void uhci_port_test(struct qhc *hc, int port, uint16_t expect);
14
15 void usb_test_hotplug(const char *bus_name, const int port,
16 void (*port_check)(void));
17 #endif