summaryrefslogtreecommitdiff
path: root/tests/libqos/usb.h
blob: 297cfc564dbea31fa166d5339bd6aaa46ae912b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef LIBQOS_USB_H
#define LIBQOS_USB_H

#include "libqos/pci-pc.h"

struct qhc {
    QPCIDevice *dev;
    QPCIBar bar;
};

void qusb_pci_init_one(QPCIBus *pcibus, struct qhc *hc,
                       uint32_t devfn, int bar);
void uhci_port_test(struct qhc *hc, int port, uint16_t expect);
void uhci_deinit(struct qhc *hc);

void usb_test_hotplug(const char *bus_name, const int port,
                      void (*port_check)(void));
#endif