]> Git Repo - qemu.git/blame - tests/libqos/usb.c
iotests: Add preallocated growth test for qcow2
[qemu.git] / tests / libqos / usb.c
CommitLineData
b0354ec5
IM
1/*
2 * common code shared by usb tests
3 *
4 * Copyright (c) 2014 Red Hat, Inc
5 *
6 * Authors:
7 * Gerd Hoffmann <[email protected]>
8 * John Snow <[email protected]>
9 * Igor Mammedov <[email protected]>
10 *
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.
13 */
681c28a3 14#include "qemu/osdep.h"
b0354ec5 15#include "libqtest.h"
b0354ec5
IM
16#include "hw/usb/uhci-regs.h"
17#include "libqos/usb.h"
18
19void qusb_pci_init_one(QPCIBus *pcibus, struct qhc *hc, uint32_t devfn, int bar)
20{
21 hc->dev = qpci_device_find(pcibus, devfn);
22 g_assert(hc->dev != NULL);
23 qpci_device_enable(hc->dev);
b4ba67d9 24 hc->bar = qpci_iomap(hc->dev, bar, NULL);
b0354ec5
IM
25}
26
62030ed1
MAL
27void uhci_deinit(struct qhc *hc)
28{
29 g_free(hc->dev);
30}
31
b0354ec5
IM
32void uhci_port_test(struct qhc *hc, int port, uint16_t expect)
33{
b4ba67d9 34 uint16_t value = qpci_io_readw(hc->dev, hc->bar, 0x10 + 2 * port);
b0354ec5
IM
35 uint16_t mask = ~(UHCI_PORT_WRITE_CLEAR | UHCI_PORT_RSVD1);
36
37 g_assert((value & mask) == (expect & mask));
38}
b3937683
IM
39
40void usb_test_hotplug(const char *hcd_id, const int port,
41 void (*port_check)(void))
42{
43 QDict *response;
44 char *cmd;
45
46 cmd = g_strdup_printf("{'execute': 'device_add',"
47 " 'arguments': {"
48 " 'driver': 'usb-tablet',"
49 " 'port': '%d',"
50 " 'bus': '%s.0',"
51 " 'id': 'usbdev%d'"
52 "}}", port, hcd_id, port);
53 response = qmp(cmd);
54 g_free(cmd);
55 g_assert(response);
56 g_assert(!qdict_haskey(response, "error"));
57 QDECREF(response);
58
59 if (port_check) {
60 port_check();
61 }
62
63 cmd = g_strdup_printf("{'execute': 'device_del',"
64 " 'arguments': {"
65 " 'id': 'usbdev%d'"
66 "}}", port);
67 response = qmp(cmd);
68 g_free(cmd);
69 g_assert(response);
70 g_assert(qdict_haskey(response, "event"));
71 g_assert(!strcmp(qdict_get_str(response, "event"), "DEVICE_DELETED"));
dc491fea 72 QDECREF(response);
b3937683 73}
This page took 0.142712 seconds and 4 git commands to generate.