usb-bus.c 12.2 KB
Newer Older
1 2 3
#include "hw.h"
#include "usb.h"
#include "qdev.h"
4 5
#include "sysemu.h"
#include "monitor.h"
6
#include "trace.h"
7 8

static void usb_bus_dev_print(Monitor *mon, DeviceState *qdev, int indent);
9 10

static char *usb_get_dev_path(DeviceState *dev);
11
static char *usb_get_fw_dev_path(DeviceState *qdev);
12
static int usb_qdev_exit(DeviceState *qdev);
13 14

static struct BusInfo usb_bus_info = {
15 16 17
    .name      = "USB",
    .size      = sizeof(USBBus),
    .print_dev = usb_bus_dev_print,
18
    .get_dev_path = usb_get_dev_path,
19
    .get_fw_dev_path = usb_get_fw_dev_path,
G
Gerd Hoffmann 已提交
20 21 22 23
    .props      = (Property[]) {
        DEFINE_PROP_STRING("port", USBDevice, port_path),
        DEFINE_PROP_END_OF_LIST()
    },
24 25
};
static int next_usb_bus = 0;
B
Blue Swirl 已提交
26
static QTAILQ_HEAD(, USBBus) busses = QTAILQ_HEAD_INITIALIZER(busses);
27

G
Gerd Hoffmann 已提交
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
const VMStateDescription vmstate_usb_device = {
    .name = "USBDevice",
    .version_id = 1,
    .minimum_version_id = 1,
    .fields = (VMStateField []) {
        VMSTATE_UINT8(addr, USBDevice),
        VMSTATE_INT32(state, USBDevice),
        VMSTATE_INT32(remote_wakeup, USBDevice),
        VMSTATE_INT32(setup_state, USBDevice),
        VMSTATE_INT32(setup_len, USBDevice),
        VMSTATE_INT32(setup_index, USBDevice),
        VMSTATE_UINT8_ARRAY(setup_buf, USBDevice, 8),
        VMSTATE_END_OF_LIST(),
    }
};

44
void usb_bus_new(USBBus *bus, USBBusOps *ops, DeviceState *host)
45
{
46
    qbus_create_inplace(&bus->qbus, &usb_bus_info, host, NULL);
47
    bus->ops = ops;
48
    bus->busnr = next_usb_bus++;
G
Gerd Hoffmann 已提交
49
    bus->qbus.allow_hotplug = 1; /* Yes, we can */
B
Blue Swirl 已提交
50 51 52
    QTAILQ_INIT(&bus->free);
    QTAILQ_INIT(&bus->used);
    QTAILQ_INSERT_TAIL(&busses, bus, next);
53 54 55 56 57 58 59
}

USBBus *usb_bus_find(int busnr)
{
    USBBus *bus;

    if (-1 == busnr)
B
Blue Swirl 已提交
60 61
        return QTAILQ_FIRST(&busses);
    QTAILQ_FOREACH(bus, &busses, next) {
62 63 64 65 66 67 68 69 70 71 72 73
        if (bus->busnr == busnr)
            return bus;
    }
    return NULL;
}

static int usb_qdev_init(DeviceState *qdev, DeviceInfo *base)
{
    USBDevice *dev = DO_UPCAST(USBDevice, qdev, qdev);
    USBDeviceInfo *info = DO_UPCAST(USBDeviceInfo, qdev, base);
    int rc;

74
    pstrcpy(dev->product_desc, sizeof(dev->product_desc), info->product_desc);
75
    dev->info = info;
G
Gerd Hoffmann 已提交
76
    dev->auto_attach = 1;
77
    QLIST_INIT(&dev->strings);
78
    rc = usb_claim_port(dev);
79
    if (rc != 0) {
80
        return rc;
81
    }
82 83
    rc = dev->info->init(dev);
    if (rc != 0) {
84 85
        usb_release_port(dev);
        return rc;
86 87
    }
    if (dev->auto_attach) {
88
        rc = usb_device_attach(dev);
89
        if (rc != 0) {
90 91
            usb_qdev_exit(qdev);
            return rc;
92
        }
93
    }
94
    return 0;
95 96
}

97 98 99 100
static int usb_qdev_exit(DeviceState *qdev)
{
    USBDevice *dev = DO_UPCAST(USBDevice, qdev, qdev);

101 102 103
    if (dev->attached) {
        usb_device_detach(dev);
    }
104 105 106
    if (dev->info->handle_destroy) {
        dev->info->handle_destroy(dev);
    }
107 108 109
    if (dev->port) {
        usb_release_port(dev);
    }
110 111 112
    return 0;
}

113 114 115 116
void usb_qdev_register(USBDeviceInfo *info)
{
    info->qdev.bus_info = &usb_bus_info;
    info->qdev.init     = usb_qdev_init;
G
Gerd Hoffmann 已提交
117
    info->qdev.unplug   = qdev_simple_unplug_cb;
118
    info->qdev.exit     = usb_qdev_exit;
119 120 121 122 123 124 125 126 127 128 129
    qdev_register(&info->qdev);
}

void usb_qdev_register_many(USBDeviceInfo *info)
{
    while (info->qdev.name) {
        usb_qdev_register(info);
        info++;
    }
}

130
USBDevice *usb_create(USBBus *bus, const char *name)
131 132 133 134 135 136 137 138 139
{
    DeviceState *dev;

#if 1
    /* temporary stopgap until all usb is properly qdev-ified */
    if (!bus) {
        bus = usb_bus_find(-1);
        if (!bus)
            return NULL;
140
        error_report("%s: no bus specified, using \"%s\" for \"%s\"",
141 142 143 144 145 146 147
                __FUNCTION__, bus->qbus.name, name);
    }
#endif

    dev = qdev_create(&bus->qbus, name);
    return DO_UPCAST(USBDevice, qdev, dev);
}
148 149 150 151

USBDevice *usb_create_simple(USBBus *bus, const char *name)
{
    USBDevice *dev = usb_create(bus, name);
152 153
    int rc;

P
Paul Brook 已提交
154
    if (!dev) {
155
        error_report("Failed to create USB device '%s'", name);
156 157 158 159
        return NULL;
    }
    rc = qdev_init(&dev->qdev);
    if (rc < 0) {
160
        error_report("Failed to initialize USB device '%s'", name);
161
        return NULL;
P
Paul Brook 已提交
162
    }
163 164 165
    return dev;
}

166 167
static void usb_fill_port(USBPort *port, void *opaque, int index,
                          USBPortOps *ops, int speedmask)
168
{
169 170 171
    port->opaque = opaque;
    port->index = index;
    port->ops = ops;
G
Gerd Hoffmann 已提交
172
    port->speedmask = speedmask;
173
    usb_port_location(port, NULL, index + 1);
174 175 176 177 178 179
}

void usb_register_port(USBBus *bus, USBPort *port, void *opaque, int index,
                       USBPortOps *ops, int speedmask)
{
    usb_fill_port(port, opaque, index, ops, speedmask);
B
Blue Swirl 已提交
180
    QTAILQ_INSERT_TAIL(&bus->free, port, next);
181 182 183
    bus->nfree++;
}

184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214
int usb_register_companion(const char *masterbus, USBPort *ports[],
                           uint32_t portcount, uint32_t firstport,
                           void *opaque, USBPortOps *ops, int speedmask)
{
    USBBus *bus;
    int i;

    QTAILQ_FOREACH(bus, &busses, next) {
        if (strcmp(bus->qbus.name, masterbus) == 0) {
            break;
        }
    }

    if (!bus || !bus->ops->register_companion) {
        qerror_report(QERR_INVALID_PARAMETER_VALUE, "masterbus",
                      "an USB masterbus");
        if (bus) {
            error_printf_unless_qmp(
                "USB bus '%s' does not allow companion controllers\n",
                masterbus);
        }
        return -1;
    }

    for (i = 0; i < portcount; i++) {
        usb_fill_port(ports[i], opaque, i, ops, speedmask);
    }

    return bus->ops->register_companion(bus, ports, portcount, firstport);
}

215 216 217 218 219 220 221 222 223 224
void usb_port_location(USBPort *downstream, USBPort *upstream, int portnr)
{
    if (upstream) {
        snprintf(downstream->path, sizeof(downstream->path), "%s.%d",
                 upstream->path, portnr);
    } else {
        snprintf(downstream->path, sizeof(downstream->path), "%d", portnr);
    }
}

225 226 227 228 229 230 231 232
void usb_unregister_port(USBBus *bus, USBPort *port)
{
    if (port->dev)
        qdev_free(&port->dev->qdev);
    QTAILQ_REMOVE(&bus->free, port, next);
    bus->nfree--;
}

233
int usb_claim_port(USBDevice *dev)
234 235 236 237
{
    USBBus *bus = usb_bus_from_device(dev);
    USBPort *port;

238 239
    assert(dev->port == NULL);

G
Gerd Hoffmann 已提交
240 241 242 243 244 245 246
    if (dev->port_path) {
        QTAILQ_FOREACH(port, &bus->free, next) {
            if (strcmp(port->path, dev->port_path) == 0) {
                break;
            }
        }
        if (port == NULL) {
247
            error_report("Error: usb port %s (bus %s) not found (in use?)",
248
                         dev->port_path, bus->qbus.name);
249
            return -1;
G
Gerd Hoffmann 已提交
250 251
        }
    } else {
252 253 254 255 256 257
        if (bus->nfree == 1 && strcmp(dev->qdev.info->name, "usb-hub") != 0) {
            /* Create a new hub and chain it on */
            usb_create_simple(bus, "usb-hub");
        }
        if (bus->nfree == 0) {
            error_report("Error: tried to attach usb device %s to a bus "
258
                         "with no free ports", dev->product_desc);
259 260
            return -1;
        }
G
Gerd Hoffmann 已提交
261 262
        port = QTAILQ_FIRST(&bus->free);
    }
263
    trace_usb_port_claim(bus->busnr, port->path);
264

B
Blue Swirl 已提交
265
    QTAILQ_REMOVE(&bus->free, port, next);
266 267
    bus->nfree--;

268 269
    dev->port = port;
    port->dev = dev;
270

B
Blue Swirl 已提交
271
    QTAILQ_INSERT_TAIL(&bus->used, port, next);
272
    bus->nused++;
273
    return 0;
274 275
}

276
void usb_release_port(USBDevice *dev)
277 278
{
    USBBus *bus = usb_bus_from_device(dev);
279
    USBPort *port = dev->port;
280

281 282 283 284 285 286 287 288 289 290 291
    assert(port != NULL);
    trace_usb_port_release(bus->busnr, port->path);

    QTAILQ_REMOVE(&bus->used, port, next);
    bus->nused--;

    dev->port = NULL;
    port->dev = NULL;

    QTAILQ_INSERT_TAIL(&bus->free, port, next);
    bus->nfree++;
292 293
}

294
int usb_device_attach(USBDevice *dev)
295 296
{
    USBBus *bus = usb_bus_from_device(dev);
297
    USBPort *port = dev->port;
298

299 300 301 302 303 304
    assert(port != NULL);
    assert(!dev->attached);
    trace_usb_port_attach(bus->busnr, port->path);

    if (!(port->speedmask & dev->speedmask)) {
        error_report("Warning: speed mismatch trying to attach "
305
                     "usb device %s to bus %s",
306
                     dev->product_desc, bus->qbus.name);
307 308 309
        return -1;
    }

310 311
    dev->attached++;
    usb_attach(port);
312

313 314 315 316 317 318 319
    return 0;
}

int usb_device_detach(USBDevice *dev)
{
    USBBus *bus = usb_bus_from_device(dev);
    USBPort *port = dev->port;
320

321 322 323
    assert(port != NULL);
    assert(dev->attached);
    trace_usb_port_detach(bus->busnr, port->path);
324

325 326
    usb_detach(port);
    dev->attached--;
327 328 329
    return 0;
}

330 331 332 333 334 335 336 337 338 339
int usb_device_delete_addr(int busnr, int addr)
{
    USBBus *bus;
    USBPort *port;
    USBDevice *dev;

    bus = usb_bus_find(busnr);
    if (!bus)
        return -1;

B
Blue Swirl 已提交
340
    QTAILQ_FOREACH(port, &bus->used, next) {
341 342 343 344 345 346 347
        if (port->dev->addr == addr)
            break;
    }
    if (!port)
        return -1;
    dev = port->dev;

348
    qdev_free(&dev->qdev);
349 350 351 352 353 354 355 356 357
    return 0;
}

static const char *usb_speed(unsigned int speed)
{
    static const char *txt[] = {
        [ USB_SPEED_LOW  ] = "1.5",
        [ USB_SPEED_FULL ] = "12",
        [ USB_SPEED_HIGH ] = "480",
358
        [ USB_SPEED_SUPER ] = "5000",
359 360 361 362 363 364 365 366 367 368 369
    };
    if (speed >= ARRAY_SIZE(txt))
        return "?";
    return txt[speed];
}

static void usb_bus_dev_print(Monitor *mon, DeviceState *qdev, int indent)
{
    USBDevice *dev = DO_UPCAST(USBDevice, qdev, qdev);
    USBBus *bus = usb_bus_from_device(dev);

370
    monitor_printf(mon, "%*saddr %d.%d, port %s, speed %s, name %s%s\n",
371
                   indent, "", bus->busnr, dev->addr,
372
                   dev->port ? dev->port->path : "-",
373
                   usb_speed(dev->speed), dev->product_desc,
374
                   dev->attached ? ", attached" : "");
375 376
}

377 378 379
static char *usb_get_dev_path(DeviceState *qdev)
{
    USBDevice *dev = DO_UPCAST(USBDevice, qdev, qdev);
380
    return g_strdup(dev->port->path);
381 382
}

383 384 385 386
static char *usb_get_fw_dev_path(DeviceState *qdev)
{
    USBDevice *dev = DO_UPCAST(USBDevice, qdev, qdev);
    char *fw_path, *in;
B
Blue Swirl 已提交
387
    ssize_t pos = 0, fw_len;
388 389
    long nr;

B
Blue Swirl 已提交
390
    fw_len = 32 + strlen(dev->port->path) * 6;
391
    fw_path = g_malloc(fw_len);
392
    in = dev->port->path;
B
Blue Swirl 已提交
393
    while (fw_len - pos > 0) {
394 395 396
        nr = strtol(in, &in, 10);
        if (in[0] == '.') {
            /* some hub between root port and device */
B
Blue Swirl 已提交
397
            pos += snprintf(fw_path + pos, fw_len - pos, "hub@%ld/", nr);
398 399 400
            in++;
        } else {
            /* the device itself */
B
Blue Swirl 已提交
401 402
            pos += snprintf(fw_path + pos, fw_len - pos, "%s@%ld",
                            qdev_fw_name(qdev), nr);
403 404 405 406 407 408
            break;
        }
    }
    return fw_path;
}

409 410 411 412 413 414
void usb_info(Monitor *mon)
{
    USBBus *bus;
    USBDevice *dev;
    USBPort *port;

B
Blue Swirl 已提交
415
    if (QTAILQ_EMPTY(&busses)) {
416 417 418 419
        monitor_printf(mon, "USB support not enabled\n");
        return;
    }

B
Blue Swirl 已提交
420 421
    QTAILQ_FOREACH(bus, &busses, next) {
        QTAILQ_FOREACH(port, &bus->used, next) {
422 423 424
            dev = port->dev;
            if (!dev)
                continue;
425 426
            monitor_printf(mon, "  Device %d.%d, Port %s, Speed %s Mb/s, Product %s\n",
                           bus->busnr, dev->addr, port->path, usb_speed(dev->speed),
427
                           dev->product_desc);
428 429 430 431
        }
    }
}

G
Gerd Hoffmann 已提交
432 433 434 435 436 437
/* handle legacy -usbdevice cmd line option */
USBDevice *usbdevice_create(const char *cmdline)
{
    USBBus *bus = usb_bus_find(-1 /* any */);
    DeviceInfo *info;
    USBDeviceInfo *usb;
438 439
    char driver[32];
    const char *params;
G
Gerd Hoffmann 已提交
440 441 442 443 444 445 446 447 448 449
    int len;

    params = strchr(cmdline,':');
    if (params) {
        params++;
        len = params - cmdline;
        if (len > sizeof(driver))
            len = sizeof(driver);
        pstrcpy(driver, len, cmdline);
    } else {
450
        params = "";
G
Gerd Hoffmann 已提交
451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466
        pstrcpy(driver, sizeof(driver), cmdline);
    }

    for (info = device_info_list; info != NULL; info = info->next) {
        if (info->bus_info != &usb_bus_info)
            continue;
        usb = DO_UPCAST(USBDeviceInfo, qdev, info);
        if (usb->usbdevice_name == NULL)
            continue;
        if (strcmp(usb->usbdevice_name, driver) != 0)
            continue;
        break;
    }
    if (info == NULL) {
#if 0
        /* no error because some drivers are not converted (yet) */
467
        error_report("usbdevice %s not found", driver);
G
Gerd Hoffmann 已提交
468 469 470 471 472
#endif
        return NULL;
    }

    if (!usb->usbdevice_init) {
T
TeLeMan 已提交
473
        if (*params) {
474
            error_report("usbdevice %s accepts no params", driver);
G
Gerd Hoffmann 已提交
475 476 477 478 479 480
            return NULL;
        }
        return usb_create_simple(bus, usb->qdev.name);
    }
    return usb->usbdevice_init(params);
}