ui: introduce enum to track VNC client framebuffer update request state
[qemu/ar7.git] / tests / libqos / usb.c
blob2a476049a898706f4ebe25d0a554806a77c0a984
1 /*
2 * common code shared by usb tests
4 * Copyright (c) 2014 Red Hat, Inc
6 * Authors:
7 * Gerd Hoffmann <kraxel@redhat.com>
8 * John Snow <jsnow@redhat.com>
9 * Igor Mammedov <imammedo@redhat.com>
11 * This work is licensed under the terms of the GNU GPL, version 2 or later.
12 * See the COPYING file in the top-level directory.
14 #include "qemu/osdep.h"
15 #include "libqtest.h"
16 #include "hw/usb/uhci-regs.h"
17 #include "libqos/usb.h"
19 void qusb_pci_init_one(QPCIBus *pcibus, struct qhc *hc, uint32_t devfn, int bar)
21 hc->dev = qpci_device_find(pcibus, devfn);
22 g_assert(hc->dev != NULL);
23 qpci_device_enable(hc->dev);
24 hc->bar = qpci_iomap(hc->dev, bar, NULL);
27 void uhci_deinit(struct qhc *hc)
29 g_free(hc->dev);
32 void uhci_port_test(struct qhc *hc, int port, uint16_t expect)
34 uint16_t value = qpci_io_readw(hc->dev, hc->bar, 0x10 + 2 * port);
35 uint16_t mask = ~(UHCI_PORT_WRITE_CLEAR | UHCI_PORT_RSVD1);
37 g_assert((value & mask) == (expect & mask));
40 void usb_test_hotplug(const char *hcd_id, const int port,
41 void (*port_check)(void))
43 char *id = g_strdup_printf("usbdev%d", port);
45 qtest_qmp_device_add("usb-tablet", id, "'port': '%d', 'bus': '%s.0'",
46 port, hcd_id);
48 if (port_check) {
49 port_check();
52 qtest_qmp_device_del(id);
54 g_free(id);