usb.h 18.4 KB
Newer Older
1 2 3
#ifndef QEMU_USB_H
#define QEMU_USB_H

B
bellard 已提交
4 5
/*
 * QEMU USB API
6
 *
B
bellard 已提交
7
 * Copyright (c) 2005 Fabrice Bellard
8
 *
B
bellard 已提交
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */
27

28
#include "hw/qdev.h"
29
#include "qemu/queue.h"
30

31 32 33 34 35 36
/* Constants related to the USB / PCI interaction */
#define USB_SBRN    0x60 /* Serial Bus Release Number Register */
#define USB_RELEASE_1  0x10 /* USB 1.0 */
#define USB_RELEASE_2  0x20 /* USB 2.0 */
#define USB_RELEASE_3  0x30 /* USB 3.0 */

B
bellard 已提交
37 38 39 40
#define USB_TOKEN_SETUP 0x2d
#define USB_TOKEN_IN    0x69 /* device -> host */
#define USB_TOKEN_OUT   0xe1 /* host -> device */

41
#define USB_RET_SUCCESS           (0)
42 43 44 45 46 47 48
#define USB_RET_NODEV             (-1)
#define USB_RET_NAK               (-2)
#define USB_RET_STALL             (-3)
#define USB_RET_BABBLE            (-4)
#define USB_RET_IOERROR           (-5)
#define USB_RET_ASYNC             (-6)
#define USB_RET_ADD_TO_QUEUE      (-7)
49
#define USB_RET_REMOVE_FROM_QUEUE (-8)
B
bellard 已提交
50 51 52 53

#define USB_SPEED_LOW   0
#define USB_SPEED_FULL  1
#define USB_SPEED_HIGH  2
G
Gerd Hoffmann 已提交
54 55 56 57 58 59
#define USB_SPEED_SUPER 3

#define USB_SPEED_MASK_LOW   (1 << USB_SPEED_LOW)
#define USB_SPEED_MASK_FULL  (1 << USB_SPEED_FULL)
#define USB_SPEED_MASK_HIGH  (1 << USB_SPEED_HIGH)
#define USB_SPEED_MASK_SUPER (1 << USB_SPEED_SUPER)
B
bellard 已提交
60 61 62 63 64 65 66 67 68

#define USB_STATE_NOTATTACHED 0
#define USB_STATE_ATTACHED    1
//#define USB_STATE_POWERED     2
#define USB_STATE_DEFAULT     3
//#define USB_STATE_ADDRESS     4
//#define	USB_STATE_CONFIGURED  5
#define USB_STATE_SUSPENDED   6

B
bellard 已提交
69 70 71 72 73 74 75 76 77 78 79 80 81 82
#define USB_CLASS_AUDIO			1
#define USB_CLASS_COMM			2
#define USB_CLASS_HID			3
#define USB_CLASS_PHYSICAL		5
#define USB_CLASS_STILL_IMAGE		6
#define USB_CLASS_PRINTER		7
#define USB_CLASS_MASS_STORAGE		8
#define USB_CLASS_HUB			9
#define USB_CLASS_CDC_DATA		0x0a
#define USB_CLASS_CSCID			0x0b
#define USB_CLASS_CONTENT_SEC		0x0d
#define USB_CLASS_APP_SPEC		0xfe
#define USB_CLASS_VENDOR_SPEC		0xff

H
H. Peter Anvin 已提交
83 84 85 86 87
#define USB_SUBCLASS_UNDEFINED          0
#define USB_SUBCLASS_AUDIO_CONTROL      1
#define USB_SUBCLASS_AUDIO_STREAMING    2
#define USB_SUBCLASS_AUDIO_MIDISTREAMING 3

B
bellard 已提交
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
#define USB_DIR_OUT			0
#define USB_DIR_IN			0x80

#define USB_TYPE_MASK			(0x03 << 5)
#define USB_TYPE_STANDARD		(0x00 << 5)
#define USB_TYPE_CLASS			(0x01 << 5)
#define USB_TYPE_VENDOR			(0x02 << 5)
#define USB_TYPE_RESERVED		(0x03 << 5)

#define USB_RECIP_MASK			0x1f
#define USB_RECIP_DEVICE		0x00
#define USB_RECIP_INTERFACE		0x01
#define USB_RECIP_ENDPOINT		0x02
#define USB_RECIP_OTHER			0x03

#define DeviceRequest ((USB_DIR_IN|USB_TYPE_STANDARD|USB_RECIP_DEVICE)<<8)
#define DeviceOutRequest ((USB_DIR_OUT|USB_TYPE_STANDARD|USB_RECIP_DEVICE)<<8)
B
bellard 已提交
105 106 107 108 109 110 111
#define InterfaceRequest \
        ((USB_DIR_IN|USB_TYPE_STANDARD|USB_RECIP_INTERFACE)<<8)
#define InterfaceOutRequest \
        ((USB_DIR_OUT|USB_TYPE_STANDARD|USB_RECIP_INTERFACE)<<8)
#define EndpointRequest ((USB_DIR_IN|USB_TYPE_STANDARD|USB_RECIP_ENDPOINT)<<8)
#define EndpointOutRequest \
        ((USB_DIR_OUT|USB_TYPE_STANDARD|USB_RECIP_ENDPOINT)<<8)
112 113 114 115
#define ClassInterfaceRequest \
        ((USB_DIR_IN|USB_TYPE_CLASS|USB_RECIP_INTERFACE)<<8)
#define ClassInterfaceOutRequest \
        ((USB_DIR_OUT|USB_TYPE_CLASS|USB_RECIP_INTERFACE)<<8)
B
bellard 已提交
116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136

#define USB_REQ_GET_STATUS		0x00
#define USB_REQ_CLEAR_FEATURE		0x01
#define USB_REQ_SET_FEATURE		0x03
#define USB_REQ_SET_ADDRESS		0x05
#define USB_REQ_GET_DESCRIPTOR		0x06
#define USB_REQ_SET_DESCRIPTOR		0x07
#define USB_REQ_GET_CONFIGURATION	0x08
#define USB_REQ_SET_CONFIGURATION	0x09
#define USB_REQ_GET_INTERFACE		0x0A
#define USB_REQ_SET_INTERFACE		0x0B
#define USB_REQ_SYNCH_FRAME		0x0C

#define USB_DEVICE_SELF_POWERED		0
#define USB_DEVICE_REMOTE_WAKEUP	1

#define USB_DT_DEVICE			0x01
#define USB_DT_CONFIG			0x02
#define USB_DT_STRING			0x03
#define USB_DT_INTERFACE		0x04
#define USB_DT_ENDPOINT			0x05
137 138
#define USB_DT_DEVICE_QUALIFIER         0x06
#define USB_DT_OTHER_SPEED_CONFIG       0x07
G
Gerd Hoffmann 已提交
139
#define USB_DT_DEBUG                    0x0A
140
#define USB_DT_INTERFACE_ASSOC          0x0B
G
Gerd Hoffmann 已提交
141 142
#define USB_DT_BOS                      0x0F
#define USB_DT_DEVICE_CAPABILITY        0x10
H
H. Peter Anvin 已提交
143 144
#define USB_DT_CS_INTERFACE             0x24
#define USB_DT_CS_ENDPOINT              0x25
145
#define USB_DT_ENDPOINT_COMPANION       0x30
B
bellard 已提交
146

G
Gerd Hoffmann 已提交
147 148 149 150
#define USB_DEV_CAP_WIRELESS            0x01
#define USB_DEV_CAP_USB2_EXT            0x02
#define USB_DEV_CAP_SUPERSPEED          0x03

B
balrog 已提交
151 152 153 154
#define USB_ENDPOINT_XFER_CONTROL	0
#define USB_ENDPOINT_XFER_ISOC		1
#define USB_ENDPOINT_XFER_BULK		2
#define USB_ENDPOINT_XFER_INT		3
G
Gerd Hoffmann 已提交
155
#define USB_ENDPOINT_XFER_INVALID     255
B
balrog 已提交
156

157 158
#define USB_INTERFACE_INVALID         255

159
typedef struct USBBus USBBus;
160
typedef struct USBBusOps USBBusOps;
B
bellard 已提交
161 162
typedef struct USBPort USBPort;
typedef struct USBDevice USBDevice;
P
pbrook 已提交
163
typedef struct USBPacket USBPacket;
164
typedef struct USBCombinedPacket USBCombinedPacket;
G
Gerd Hoffmann 已提交
165
typedef struct USBEndpoint USBEndpoint;
B
bellard 已提交
166

167 168 169 170
typedef struct USBDesc USBDesc;
typedef struct USBDescID USBDescID;
typedef struct USBDescDevice USBDescDevice;
typedef struct USBDescConfig USBDescConfig;
171
typedef struct USBDescIfaceAssoc USBDescIfaceAssoc;
172 173 174
typedef struct USBDescIface USBDescIface;
typedef struct USBDescEndpoint USBDescEndpoint;
typedef struct USBDescOther USBDescOther;
175 176 177 178 179 180 181
typedef struct USBDescString USBDescString;

struct USBDescString {
    uint8_t index;
    char *str;
    QLIST_ENTRY(USBDescString) next;
};
182

183 184 185
#define USB_MAX_ENDPOINTS  15
#define USB_MAX_INTERFACES 16

G
Gerd Hoffmann 已提交
186
struct USBEndpoint {
G
Gerd Hoffmann 已提交
187 188
    uint8_t nr;
    uint8_t pid;
G
Gerd Hoffmann 已提交
189
    uint8_t type;
G
Gerd Hoffmann 已提交
190
    uint8_t ifnum;
191
    int max_packet_size;
192
    bool pipeline;
193
    bool halted;
194
    USBDevice *dev;
195
    QTAILQ_HEAD(, USBPacket) queue;
G
Gerd Hoffmann 已提交
196 197
};

G
Gerd Hoffmann 已提交
198 199
enum USBDeviceFlags {
    USB_DEV_FLAG_FULL_PATH,
200
    USB_DEV_FLAG_IS_HOST,
G
Gerd Hoffmann 已提交
201 202
};

B
bellard 已提交
203 204
/* definition of a USB device */
struct USBDevice {
205
    DeviceState qdev;
206
    USBPort *port;
G
Gerd Hoffmann 已提交
207
    char *port_path;
G
Gerd Hoffmann 已提交
208
    char *serial;
B
bellard 已提交
209
    void *opaque;
G
Gerd Hoffmann 已提交
210
    uint32_t flags;
211

H
Hans de Goede 已提交
212
    /* Actual connected speed */
213
    int speed;
H
Hans de Goede 已提交
214 215
    /* Supported speeds, not in info because it may be variable (hostdevs) */
    int speedmask;
216
    uint8_t addr;
217
    char product_desc[32];
G
Gerd Hoffmann 已提交
218
    int auto_attach;
219
    int attached;
220

G
Gerd Hoffmann 已提交
221
    int32_t state;
222
    uint8_t setup_buf[8];
H
Hans de Goede 已提交
223
    uint8_t data_buf[4096];
G
Gerd Hoffmann 已提交
224 225 226 227
    int32_t remote_wakeup;
    int32_t setup_state;
    int32_t setup_len;
    int32_t setup_index;
228

229
    USBEndpoint ep_ctl;
G
Gerd Hoffmann 已提交
230 231 232
    USBEndpoint ep_in[USB_MAX_ENDPOINTS];
    USBEndpoint ep_out[USB_MAX_ENDPOINTS];

233
    QLIST_HEAD(, USBDescString) strings;
234
    const USBDesc *usb_desc; /* Overrides class usb_desc if not NULL */
235
    const USBDescDevice *device;
236 237 238

    int configuration;
    int ninterfaces;
239
    int altsetting[USB_MAX_INTERFACES];
240
    const USBDescConfig *config;
241
    const USBDescIface  *ifaces[USB_MAX_INTERFACES];
242 243
};

244 245 246 247 248 249 250 251 252 253 254
#define TYPE_USB_DEVICE "usb-device"
#define USB_DEVICE(obj) \
     OBJECT_CHECK(USBDevice, (obj), TYPE_USB_DEVICE)
#define USB_DEVICE_CLASS(klass) \
     OBJECT_CLASS_CHECK(USBDeviceClass, (klass), TYPE_USB_DEVICE)
#define USB_DEVICE_GET_CLASS(obj) \
     OBJECT_GET_CLASS(USBDeviceClass, (obj), TYPE_USB_DEVICE)

typedef struct USBDeviceClass {
    DeviceClass parent_class;

255 256
    int (*init)(USBDevice *dev);

G
Gerd Hoffmann 已提交
257 258 259 260 261 262
    /*
     * Walk (enabled) downstream ports, check for a matching device.
     * Only hubs implement this.
     */
    USBDevice *(*find_device)(USBDevice *dev, uint8_t addr);

263 264 265 266 267
    /*
     * Called when a packet is canceled.
     */
    void (*cancel_packet)(USBDevice *dev, USBPacket *p);

268
    /*
269 270
     * Called when device is destroyed.
     */
B
bellard 已提交
271 272
    void (*handle_destroy)(USBDevice *dev);

G
Gerd Hoffmann 已提交
273 274 275 276 277
    /*
     * Attach the device
     */
    void (*handle_attach)(USBDevice *dev);

278 279
    /*
     * Reset the device
280
     */
B
bellard 已提交
281
    void (*handle_reset)(USBDevice *dev);
282 283 284 285 286

    /*
     * Process control request.
     * Called from handle_packet().
     *
287
     * Status gets stored in p->status, and if p->status == USB_RET_SUCCESS
288
     * then the number of bytes transferred is stored in p->actual_length
289
     */
290 291
    void (*handle_control)(USBDevice *dev, USBPacket *p, int request, int value,
                           int index, int length, uint8_t *data);
292 293 294 295 296

    /*
     * Process data transfers (both BULK and ISOC).
     * Called from handle_packet().
     *
297
     * Status gets stored in p->status, and if p->status == USB_RET_SUCCESS
298
     * then the number of bytes transferred is stored in p->actual_length
299
     */
300
    void (*handle_data)(USBDevice *dev, USBPacket *p);
G
Gerd Hoffmann 已提交
301

302 303 304
    void (*set_interface)(USBDevice *dev, int interface,
                          int alt_old, int alt_new);

305 306 307 308 309 310
    /*
     * Called when the hcd is done queuing packets for an endpoint, only
     * necessary for devices which can return USB_RET_ADD_TO_QUEUE.
     */
    void (*flush_ep_queue)(USBDevice *dev, USBEndpoint *ep);

311 312 313 314 315 316
    /*
     * Called by the hcd to let the device know the queue for an endpoint
     * has been unlinked / stopped. Optional may be NULL.
     */
    void (*ep_stopped)(USBDevice *dev, USBEndpoint *ep);

317
    const char *product_desc;
318
    const USBDesc *usb_desc;
319
} USBDeviceClass;
B
bellard 已提交
320

321
typedef struct USBPortOps {
322 323
    void (*attach)(USBPort *port);
    void (*detach)(USBPort *port);
324 325 326 327 328
    /*
     * This gets called when a device downstream from the device attached to
     * the port (iow attached through a hub) gets detached.
     */
    void (*child_detach)(USBPort *port, USBDevice *child);
329 330 331
    void (*wakeup)(USBPort *port);
    /*
     * Note that port->dev will be different then the device from which
332
     * the packet originated when a hub is involved.
333 334
     */
    void (*complete)(USBPort *port, USBPacket *p);
335
} USBPortOps;
P
pbrook 已提交
336

B
bellard 已提交
337 338
/* USB port on which a device can be connected */
struct USBPort {
B
bellard 已提交
339
    USBDevice *dev;
G
Gerd Hoffmann 已提交
340
    int speedmask;
G
Gerd Hoffmann 已提交
341
    int hubcount;
342
    char path[16];
343
    USBPortOps *ops;
B
bellard 已提交
344 345
    void *opaque;
    int index; /* internal port index, may be used with the opaque */
B
Blue Swirl 已提交
346
    QTAILQ_ENTRY(USBPort) next;
B
bellard 已提交
347 348
};

P
pbrook 已提交
349 350
typedef void USBCallback(USBPacket * packet, void *opaque);

351 352 353
typedef enum USBPacketState {
    USB_PACKET_UNDEFINED = 0,
    USB_PACKET_SETUP,
354
    USB_PACKET_QUEUED,
355 356 357 358 359
    USB_PACKET_ASYNC,
    USB_PACKET_COMPLETE,
    USB_PACKET_CANCELED,
} USBPacketState;

360
/* Structure used to hold information about an active USB packet.  */
P
pbrook 已提交
361 362 363
struct USBPacket {
    /* Data fields for use by the driver.  */
    int pid;
G
Gerd Hoffmann 已提交
364
    uint64_t id;
365
    USBEndpoint *ep;
G
Gerd Hoffmann 已提交
366
    unsigned int stream;
G
Gerd Hoffmann 已提交
367
    QEMUIOVector iov;
368
    uint64_t parameter; /* control transfers */
369
    bool short_not_ok;
370
    bool int_req;
371
    int status; /* USB_RET_* status code */
372
    int actual_length; /* Number of bytes actually transferred */
P
pbrook 已提交
373
    /* Internal use by the USB layer.  */
374
    USBPacketState state;
375
    USBCombinedPacket *combined;
376
    QTAILQ_ENTRY(USBPacket) queue;
377 378 379 380 381 382 383
    QTAILQ_ENTRY(USBPacket) combined_entry;
};

struct USBCombinedPacket {
    USBPacket *first;
    QTAILQ_HEAD(packets_head, USBPacket) packets;
    QEMUIOVector iov;
P
pbrook 已提交
384 385
};

G
Gerd Hoffmann 已提交
386
void usb_packet_init(USBPacket *p);
387
void usb_packet_set_state(USBPacket *p, USBPacketState state);
388
void usb_packet_check_state(USBPacket *p, USBPacketState expected);
G
Gerd Hoffmann 已提交
389 390 391
void usb_packet_setup(USBPacket *p, int pid,
                      USBEndpoint *ep, unsigned int stream,
                      uint64_t id, bool short_not_ok, bool int_req);
G
Gerd Hoffmann 已提交
392 393
void usb_packet_addbuf(USBPacket *p, void *ptr, size_t len);
int usb_packet_map(USBPacket *p, QEMUSGList *sgl);
394
void usb_packet_unmap(USBPacket *p, QEMUSGList *sgl);
G
Gerd Hoffmann 已提交
395 396
void usb_packet_copy(USBPacket *p, void *ptr, size_t bytes);
void usb_packet_skip(USBPacket *p, size_t bytes);
397
size_t usb_packet_size(USBPacket *p);
G
Gerd Hoffmann 已提交
398 399
void usb_packet_cleanup(USBPacket *p);

400 401
static inline bool usb_packet_is_inflight(USBPacket *p)
{
402 403
    return (p->state == USB_PACKET_QUEUED ||
            p->state == USB_PACKET_ASYNC);
404 405
}

G
Gerd Hoffmann 已提交
406 407
USBDevice *usb_find_device(USBPort *port, uint8_t addr);

408
void usb_handle_packet(USBDevice *dev, USBPacket *p);
G
Gerd Hoffmann 已提交
409
void usb_packet_complete(USBDevice *dev, USBPacket *p);
410
void usb_packet_complete_one(USBDevice *dev, USBPacket *p);
G
Gerd Hoffmann 已提交
411
void usb_cancel_packet(USBPacket * p);
G
Gerd Hoffmann 已提交
412

G
Gerd Hoffmann 已提交
413
void usb_ep_init(USBDevice *dev);
414
void usb_ep_reset(USBDevice *dev);
G
Gerd Hoffmann 已提交
415
void usb_ep_dump(USBDevice *dev);
G
Gerd Hoffmann 已提交
416 417
struct USBEndpoint *usb_ep_get(USBDevice *dev, int pid, int ep);
uint8_t usb_ep_get_type(USBDevice *dev, int pid, int ep);
G
Gerd Hoffmann 已提交
418
uint8_t usb_ep_get_ifnum(USBDevice *dev, int pid, int ep);
G
Gerd Hoffmann 已提交
419
void usb_ep_set_type(USBDevice *dev, int pid, int ep, uint8_t type);
G
Gerd Hoffmann 已提交
420
void usb_ep_set_ifnum(USBDevice *dev, int pid, int ep, uint8_t ifnum);
421 422 423
void usb_ep_set_max_packet_size(USBDevice *dev, int pid, int ep,
                                uint16_t raw);
int usb_ep_get_max_packet_size(USBDevice *dev, int pid, int ep);
424
void usb_ep_set_pipeline(USBDevice *dev, int pid, int ep, bool enabled);
G
Gerd Hoffmann 已提交
425
void usb_ep_set_halted(USBDevice *dev, int pid, int ep, bool halted);
426 427
USBPacket *usb_ep_find_packet_by_id(USBDevice *dev, int pid, int ep,
                                    uint64_t id);
G
Gerd Hoffmann 已提交
428

429 430 431 432
void usb_ep_combine_input_packets(USBEndpoint *ep);
void usb_combined_input_packet_complete(USBDevice *dev, USBPacket *p);
void usb_combined_packet_cancel(USBDevice *dev, USBPacket *p);

433 434
void usb_attach(USBPort *port);
void usb_detach(USBPort *port);
G
Gerd Hoffmann 已提交
435 436
void usb_port_reset(USBPort *port);
void usb_device_reset(USBDevice *dev);
G
Gerd Hoffmann 已提交
437
void usb_wakeup(USBEndpoint *ep, unsigned int stream);
438
void usb_generic_async_ctrl_complete(USBDevice *s, USBPacket *p);
B
bellard 已提交
439
int set_usb_string(uint8_t *buf, const char *str);
P
pbrook 已提交
440

B
bellard 已提交
441
/* usb-linux.c */
442
USBDevice *usb_host_device_open(USBBus *bus, const char *devname);
443
void usb_host_info(Monitor *mon, const QDict *qdict);
B
bellard 已提交
444

445
/* usb-bt.c */
446
USBDevice *usb_bt_init(USBBus *bus, HCIInfo *hci);
447

P
pbrook 已提交
448 449 450 451
/* usb ports of the VM */

#define VM_USB_HUB_SIZE 8

B
balrog 已提交
452 453 454 455 456 457 458 459 460 461 462 463 464 465
/* usb-musb.c */
enum musb_irq_source_e {
    musb_irq_suspend = 0,
    musb_irq_resume,
    musb_irq_rst_babble,
    musb_irq_sof,
    musb_irq_connect,
    musb_irq_disconnect,
    musb_irq_vbus_request,
    musb_irq_vbus_error,
    musb_irq_rx,
    musb_irq_tx,
    musb_set_vbus,
    musb_set_session,
466 467
    /* Add new interrupts here */
    musb_irq_max, /* total number of interrupts defined */
B
balrog 已提交
468 469
};

P
Paul Brook 已提交
470
typedef struct MUSBState MUSBState;
471
MUSBState *musb_init(DeviceState *parent_device, int gpio_base);
J
Juha Riihimäki 已提交
472
void musb_reset(MUSBState *s);
P
Paul Brook 已提交
473 474 475
uint32_t musb_core_intr_get(MUSBState *s);
void musb_core_intr_clear(MUSBState *s, uint32_t mask);
void musb_set_size(MUSBState *s, int epnum, int size, int is_tx);
476 477 478

/* usb-bus.c */

479 480 481
#define TYPE_USB_BUS "usb-bus"
#define USB_BUS(obj) OBJECT_CHECK(USBBus, (obj), TYPE_USB_BUS)

482 483
struct USBBus {
    BusState qbus;
484
    USBBusOps *ops;
485 486 487
    int busnr;
    int nfree;
    int nused;
B
Blue Swirl 已提交
488 489 490
    QTAILQ_HEAD(, USBPort) free;
    QTAILQ_HEAD(, USBPort) used;
    QTAILQ_ENTRY(USBBus) next;
491 492
};

493
struct USBBusOps {
494 495
    int (*register_companion)(USBBus *bus, USBPort *ports[],
                              uint32_t portcount, uint32_t firstport);
G
Gerd Hoffmann 已提交
496
    void (*wakeup_endpoint)(USBBus *bus, USBEndpoint *ep, unsigned int stream);
497 498
};

499 500
void usb_bus_new(USBBus *bus, size_t bus_size,
                 USBBusOps *ops, DeviceState *host);
501
USBBus *usb_bus_find(int busnr);
502
void usb_legacy_register(const char *typename, const char *usbdevice_name,
503 504
                         USBDevice *(*usbdevice_init)(USBBus *bus,
                                                      const char *params));
505
USBDevice *usb_create(USBBus *bus, const char *name);
506
USBDevice *usb_create_simple(USBBus *bus, const char *name);
G
Gerd Hoffmann 已提交
507
USBDevice *usbdevice_create(const char *cmdline);
508
void usb_register_port(USBBus *bus, USBPort *port, void *opaque, int index,
G
Gerd Hoffmann 已提交
509
                       USBPortOps *ops, int speedmask);
510 511 512
int usb_register_companion(const char *masterbus, USBPort *ports[],
                           uint32_t portcount, uint32_t firstport,
                           void *opaque, USBPortOps *ops, int speedmask);
513
void usb_port_location(USBPort *downstream, USBPort *upstream, int portnr);
514
void usb_unregister_port(USBBus *bus, USBPort *port);
515 516
int usb_claim_port(USBDevice *dev);
void usb_release_port(USBDevice *dev);
517
int usb_device_attach(USBDevice *dev);
518
int usb_device_detach(USBDevice *dev);
519 520 521 522 523 524
int usb_device_delete_addr(int busnr, int addr);

static inline USBBus *usb_bus_from_device(USBDevice *d)
{
    return DO_UPCAST(USBBus, qbus, d->qdev.parent_bus);
}
525 526 527 528 529 530 531 532 533 534 535

extern const VMStateDescription vmstate_usb_device;

#define VMSTATE_USB_DEVICE(_field, _state) {                         \
    .name       = (stringify(_field)),                               \
    .size       = sizeof(USBDevice),                                 \
    .vmsd       = &vmstate_usb_device,                               \
    .flags      = VMS_STRUCT,                                        \
    .offset     = vmstate_offset_value(_state, _field, USBDevice),   \
}

G
Gerd Hoffmann 已提交
536 537
USBDevice *usb_device_find_device(USBDevice *dev, uint8_t addr);

538 539 540 541 542 543
void usb_device_cancel_packet(USBDevice *dev, USBPacket *p);

void usb_device_handle_attach(USBDevice *dev);

void usb_device_handle_reset(USBDevice *dev);

544 545
void usb_device_handle_control(USBDevice *dev, USBPacket *p, int request,
                               int val, int index, int length, uint8_t *data);
546

547
void usb_device_handle_data(USBDevice *dev, USBPacket *p);
548 549 550 551

void usb_device_set_interface(USBDevice *dev, int interface,
                              int alt_old, int alt_new);

552 553
void usb_device_flush_ep_queue(USBDevice *dev, USBEndpoint *ep);

554 555
void usb_device_ep_stopped(USBDevice *dev, USBEndpoint *ep);

556 557 558 559
const char *usb_device_get_product_desc(USBDevice *dev);

const USBDesc *usb_device_get_usb_desc(USBDevice *dev);

560 561
int ehci_create_ich9_with_companions(PCIBus *bus, int slot);

562 563 564 565 566 567
/* quirks.c */

/* In bulk endpoints are streaming data sources (iow behave like isoc eps) */
#define USB_QUIRK_BUFFER_BULK_IN	0x01
/* Bulk pkts in FTDI format, need special handling when combining packets */
#define USB_QUIRK_IS_FTDI		0x02
568

569 570 571 572 573
int usb_get_quirks(uint16_t vendor_id, uint16_t product_id,
                   uint8_t interface_class, uint8_t interface_subclass,
                   uint8_t interface_protocol);

#endif