]> git.proxmox.com Git - mirror_qemu.git/blame - hw/usb.h
uhci: Don't crash on device disconnect
[mirror_qemu.git] / hw / usb.h
CommitLineData
62aed765
AL
1#ifndef QEMU_USB_H
2#define QEMU_USB_H
3
bb36d470
FB
4/*
5 * QEMU USB API
5fafdf24 6 *
bb36d470 7 * Copyright (c) 2005 Fabrice Bellard
5fafdf24 8 *
bb36d470
FB
9 * Permission is hereby granted, free of charge, to any person obtaining a copy
10 * of this software and associated documentation files (the "Software"), to deal
11 * in the Software without restriction, including without limitation the rights
12 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13 * copies of the Software, and to permit persons to whom the Software is
14 * furnished to do so, subject to the following conditions:
15 *
16 * The above copyright notice and this permission notice shall be included in
17 * all copies or substantial portions of the Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
22 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 * THE SOFTWARE.
26 */
c0f4ce77 27
806b6024 28#include "qdev.h"
72cf2d4f 29#include "qemu-queue.h"
c0f4ce77 30
8e257816
BH
31/* Constants related to the USB / PCI interaction */
32#define USB_SBRN 0x60 /* Serial Bus Release Number Register */
33#define USB_RELEASE_1 0x10 /* USB 1.0 */
34#define USB_RELEASE_2 0x20 /* USB 2.0 */
35#define USB_RELEASE_3 0x30 /* USB 3.0 */
36
bb36d470
FB
37#define USB_TOKEN_SETUP 0x2d
38#define USB_TOKEN_IN 0x69 /* device -> host */
39#define USB_TOKEN_OUT 0xe1 /* host -> device */
40
36dfe324
HG
41#define USB_RET_NODEV (-1)
42#define USB_RET_NAK (-2)
43#define USB_RET_STALL (-3)
44#define USB_RET_BABBLE (-4)
45#define USB_RET_IOERROR (-5)
46#define USB_RET_ASYNC (-6)
47#define USB_RET_ADD_TO_QUEUE (-7)
0cae7b1a 48#define USB_RET_REMOVE_FROM_QUEUE (-8)
bb36d470
FB
49
50#define USB_SPEED_LOW 0
51#define USB_SPEED_FULL 1
52#define USB_SPEED_HIGH 2
843d4e0c
GH
53#define USB_SPEED_SUPER 3
54
55#define USB_SPEED_MASK_LOW (1 << USB_SPEED_LOW)
56#define USB_SPEED_MASK_FULL (1 << USB_SPEED_FULL)
57#define USB_SPEED_MASK_HIGH (1 << USB_SPEED_HIGH)
58#define USB_SPEED_MASK_SUPER (1 << USB_SPEED_SUPER)
bb36d470
FB
59
60#define USB_STATE_NOTATTACHED 0
61#define USB_STATE_ATTACHED 1
62//#define USB_STATE_POWERED 2
63#define USB_STATE_DEFAULT 3
64//#define USB_STATE_ADDRESS 4
65//#define USB_STATE_CONFIGURED 5
66#define USB_STATE_SUSPENDED 6
67
a594cfbf
FB
68#define USB_CLASS_AUDIO 1
69#define USB_CLASS_COMM 2
70#define USB_CLASS_HID 3
71#define USB_CLASS_PHYSICAL 5
72#define USB_CLASS_STILL_IMAGE 6
73#define USB_CLASS_PRINTER 7
74#define USB_CLASS_MASS_STORAGE 8
75#define USB_CLASS_HUB 9
76#define USB_CLASS_CDC_DATA 0x0a
77#define USB_CLASS_CSCID 0x0b
78#define USB_CLASS_CONTENT_SEC 0x0d
79#define USB_CLASS_APP_SPEC 0xfe
80#define USB_CLASS_VENDOR_SPEC 0xff
81
b870472d
PA
82#define USB_SUBCLASS_UNDEFINED 0
83#define USB_SUBCLASS_AUDIO_CONTROL 1
84#define USB_SUBCLASS_AUDIO_STREAMING 2
85#define USB_SUBCLASS_AUDIO_MIDISTREAMING 3
86
bb36d470
FB
87#define USB_DIR_OUT 0
88#define USB_DIR_IN 0x80
89
90#define USB_TYPE_MASK (0x03 << 5)
91#define USB_TYPE_STANDARD (0x00 << 5)
92#define USB_TYPE_CLASS (0x01 << 5)
93#define USB_TYPE_VENDOR (0x02 << 5)
94#define USB_TYPE_RESERVED (0x03 << 5)
95
96#define USB_RECIP_MASK 0x1f
97#define USB_RECIP_DEVICE 0x00
98#define USB_RECIP_INTERFACE 0x01
99#define USB_RECIP_ENDPOINT 0x02
100#define USB_RECIP_OTHER 0x03
101
102#define DeviceRequest ((USB_DIR_IN|USB_TYPE_STANDARD|USB_RECIP_DEVICE)<<8)
103#define DeviceOutRequest ((USB_DIR_OUT|USB_TYPE_STANDARD|USB_RECIP_DEVICE)<<8)
59ae540c
FB
104#define InterfaceRequest \
105 ((USB_DIR_IN|USB_TYPE_STANDARD|USB_RECIP_INTERFACE)<<8)
106#define InterfaceOutRequest \
107 ((USB_DIR_OUT|USB_TYPE_STANDARD|USB_RECIP_INTERFACE)<<8)
108#define EndpointRequest ((USB_DIR_IN|USB_TYPE_STANDARD|USB_RECIP_ENDPOINT)<<8)
109#define EndpointOutRequest \
110 ((USB_DIR_OUT|USB_TYPE_STANDARD|USB_RECIP_ENDPOINT)<<8)
f3571b1a
MR
111#define ClassInterfaceRequest \
112 ((USB_DIR_IN|USB_TYPE_CLASS|USB_RECIP_INTERFACE)<<8)
113#define ClassInterfaceOutRequest \
114 ((USB_DIR_OUT|USB_TYPE_CLASS|USB_RECIP_INTERFACE)<<8)
bb36d470
FB
115
116#define USB_REQ_GET_STATUS 0x00
117#define USB_REQ_CLEAR_FEATURE 0x01
118#define USB_REQ_SET_FEATURE 0x03
119#define USB_REQ_SET_ADDRESS 0x05
120#define USB_REQ_GET_DESCRIPTOR 0x06
121#define USB_REQ_SET_DESCRIPTOR 0x07
122#define USB_REQ_GET_CONFIGURATION 0x08
123#define USB_REQ_SET_CONFIGURATION 0x09
124#define USB_REQ_GET_INTERFACE 0x0A
125#define USB_REQ_SET_INTERFACE 0x0B
126#define USB_REQ_SYNCH_FRAME 0x0C
127
128#define USB_DEVICE_SELF_POWERED 0
129#define USB_DEVICE_REMOTE_WAKEUP 1
130
131#define USB_DT_DEVICE 0x01
132#define USB_DT_CONFIG 0x02
133#define USB_DT_STRING 0x03
134#define USB_DT_INTERFACE 0x04
135#define USB_DT_ENDPOINT 0x05
25620cba
GH
136#define USB_DT_DEVICE_QUALIFIER 0x06
137#define USB_DT_OTHER_SPEED_CONFIG 0x07
a7fb71d1 138#define USB_DT_DEBUG 0x0A
c6d3ad0f 139#define USB_DT_INTERFACE_ASSOC 0x0B
2077469b
GH
140#define USB_DT_BOS 0x0F
141#define USB_DT_DEVICE_CAPABILITY 0x10
b870472d
PA
142#define USB_DT_CS_INTERFACE 0x24
143#define USB_DT_CS_ENDPOINT 0x25
b43a2851 144#define USB_DT_ENDPOINT_COMPANION 0x30
bb36d470 145
2077469b
GH
146#define USB_DEV_CAP_WIRELESS 0x01
147#define USB_DEV_CAP_USB2_EXT 0x02
148#define USB_DEV_CAP_SUPERSPEED 0x03
149
942ac052
AZ
150#define USB_ENDPOINT_XFER_CONTROL 0
151#define USB_ENDPOINT_XFER_ISOC 1
152#define USB_ENDPOINT_XFER_BULK 2
153#define USB_ENDPOINT_XFER_INT 3
d8e17efd 154#define USB_ENDPOINT_XFER_INVALID 255
942ac052 155
7c37e6a4
GH
156#define USB_INTERFACE_INVALID 255
157
806b6024 158typedef struct USBBus USBBus;
07771f6f 159typedef struct USBBusOps USBBusOps;
bb36d470
FB
160typedef struct USBPort USBPort;
161typedef struct USBDevice USBDevice;
4d611c9a 162typedef struct USBPacket USBPacket;
d8e17efd 163typedef struct USBEndpoint USBEndpoint;
bb36d470 164
37fb59d3
GH
165typedef struct USBDesc USBDesc;
166typedef struct USBDescID USBDescID;
167typedef struct USBDescDevice USBDescDevice;
168typedef struct USBDescConfig USBDescConfig;
6e625fc7 169typedef struct USBDescIfaceAssoc USBDescIfaceAssoc;
37fb59d3
GH
170typedef struct USBDescIface USBDescIface;
171typedef struct USBDescEndpoint USBDescEndpoint;
172typedef struct USBDescOther USBDescOther;
132a3f55
GH
173typedef struct USBDescString USBDescString;
174
175struct USBDescString {
176 uint8_t index;
177 char *str;
178 QLIST_ENTRY(USBDescString) next;
179};
37fb59d3 180
1de14d43
GH
181#define USB_MAX_ENDPOINTS 15
182#define USB_MAX_INTERFACES 16
183
d8e17efd 184struct USBEndpoint {
63095ab5
GH
185 uint8_t nr;
186 uint8_t pid;
d8e17efd 187 uint8_t type;
82f02fe9 188 uint8_t ifnum;
f003397c 189 int max_packet_size;
7936e0f0 190 bool pipeline;
0132b4b6 191 bool halted;
25d5de7d 192 USBDevice *dev;
db4be873 193 QTAILQ_HEAD(, USBPacket) queue;
d8e17efd
GH
194};
195
eeb0cf9a
GH
196enum USBDeviceFlags {
197 USB_DEV_FLAG_FULL_PATH,
198};
199
bb36d470
FB
200/* definition of a USB device */
201struct USBDevice {
806b6024 202 DeviceState qdev;
618c169b 203 USBPort *port;
5f69076b 204 char *port_path;
bb36d470 205 void *opaque;
eeb0cf9a 206 uint32_t flags;
89b9b79f 207
ba3f9bfb 208 /* Actual connected speed */
806b6024 209 int speed;
ba3f9bfb
HG
210 /* Supported speeds, not in info because it may be variable (hostdevs) */
211 int speedmask;
806b6024 212 uint8_t addr;
0fe6d12e 213 char product_desc[32];
61e094c0 214 int auto_attach;
a5d2f727 215 int attached;
806b6024 216
c1ecb40a 217 int32_t state;
806b6024 218 uint8_t setup_buf[8];
19f33223 219 uint8_t data_buf[4096];
c1ecb40a
GH
220 int32_t remote_wakeup;
221 int32_t setup_state;
222 int32_t setup_len;
223 int32_t setup_index;
132a3f55 224
25d5de7d 225 USBEndpoint ep_ctl;
d8e17efd
GH
226 USBEndpoint ep_in[USB_MAX_ENDPOINTS];
227 USBEndpoint ep_out[USB_MAX_ENDPOINTS];
228
132a3f55 229 QLIST_HEAD(, USBDescString) strings;
a980a065 230 const USBDescDevice *device;
65360511
GH
231
232 int configuration;
233 int ninterfaces;
1de14d43 234 int altsetting[USB_MAX_INTERFACES];
a980a065 235 const USBDescConfig *config;
1de14d43 236 const USBDescIface *ifaces[USB_MAX_INTERFACES];
806b6024
GH
237};
238
62aed765
AL
239#define TYPE_USB_DEVICE "usb-device"
240#define USB_DEVICE(obj) \
241 OBJECT_CHECK(USBDevice, (obj), TYPE_USB_DEVICE)
242#define USB_DEVICE_CLASS(klass) \
243 OBJECT_CLASS_CHECK(USBDeviceClass, (klass), TYPE_USB_DEVICE)
244#define USB_DEVICE_GET_CLASS(obj) \
245 OBJECT_GET_CLASS(USBDeviceClass, (obj), TYPE_USB_DEVICE)
246
247typedef struct USBDeviceClass {
248 DeviceClass parent_class;
249
806b6024
GH
250 int (*init)(USBDevice *dev);
251
73796fe6
GH
252 /*
253 * Walk (enabled) downstream ports, check for a matching device.
254 * Only hubs implement this.
255 */
256 USBDevice *(*find_device)(USBDevice *dev, uint8_t addr);
257
eb5e680a
GH
258 /*
259 * Called when a packet is canceled.
260 */
261 void (*cancel_packet)(USBDevice *dev, USBPacket *p);
262
806b6024 263 /*
89b9b79f
AL
264 * Called when device is destroyed.
265 */
059809e4
FB
266 void (*handle_destroy)(USBDevice *dev);
267
b6f77fbe
GH
268 /*
269 * Attach the device
270 */
271 void (*handle_attach)(USBDevice *dev);
272
89b9b79f
AL
273 /*
274 * Reset the device
806b6024 275 */
059809e4 276 void (*handle_reset)(USBDevice *dev);
89b9b79f
AL
277
278 /*
279 * Process control request.
280 * Called from handle_packet().
281 *
282 * Returns length or one of the USB_RET_ codes.
283 */
007fd62f 284 int (*handle_control)(USBDevice *dev, USBPacket *p, int request, int value,
bb36d470 285 int index, int length, uint8_t *data);
89b9b79f
AL
286
287 /*
288 * Process data transfers (both BULK and ISOC).
289 * Called from handle_packet().
290 *
291 * Returns length or one of the USB_RET_ codes.
292 */
4d611c9a 293 int (*handle_data)(USBDevice *dev, USBPacket *p);
0958b4cc 294
1de14d43
GH
295 void (*set_interface)(USBDevice *dev, int interface,
296 int alt_old, int alt_new);
297
36dfe324
HG
298 /*
299 * Called when the hcd is done queuing packets for an endpoint, only
300 * necessary for devices which can return USB_RET_ADD_TO_QUEUE.
301 */
302 void (*flush_ep_queue)(USBDevice *dev, USBEndpoint *ep);
303
06384698 304 const char *product_desc;
37fb59d3 305 const USBDesc *usb_desc;
62aed765 306} USBDeviceClass;
bb36d470 307
0d86d2be 308typedef struct USBPortOps {
618c169b
GH
309 void (*attach)(USBPort *port);
310 void (*detach)(USBPort *port);
4706ab6c
HG
311 /*
312 * This gets called when a device downstream from the device attached to
313 * the port (iow attached through a hub) gets detached.
314 */
315 void (*child_detach)(USBPort *port, USBDevice *child);
d47e59b8
HG
316 void (*wakeup)(USBPort *port);
317 /*
318 * Note that port->dev will be different then the device from which
f53c398a 319 * the packet originated when a hub is involved.
d47e59b8
HG
320 */
321 void (*complete)(USBPort *port, USBPacket *p);
0d86d2be 322} USBPortOps;
0d92ed30 323
bb36d470
FB
324/* USB port on which a device can be connected */
325struct USBPort {
a594cfbf 326 USBDevice *dev;
843d4e0c 327 int speedmask;
c7a2196a 328 char path[16];
0d86d2be 329 USBPortOps *ops;
bb36d470
FB
330 void *opaque;
331 int index; /* internal port index, may be used with the opaque */
72cf2d4f 332 QTAILQ_ENTRY(USBPort) next;
bb36d470
FB
333};
334
4d611c9a
PB
335typedef void USBCallback(USBPacket * packet, void *opaque);
336
f53c398a
GH
337typedef enum USBPacketState {
338 USB_PACKET_UNDEFINED = 0,
339 USB_PACKET_SETUP,
db4be873 340 USB_PACKET_QUEUED,
f53c398a
GH
341 USB_PACKET_ASYNC,
342 USB_PACKET_COMPLETE,
343 USB_PACKET_CANCELED,
344} USBPacketState;
345
db4be873 346/* Structure used to hold information about an active USB packet. */
4d611c9a
PB
347struct USBPacket {
348 /* Data fields for use by the driver. */
349 int pid;
e983395d 350 uint64_t id;
f53c398a 351 USBEndpoint *ep;
4f4321c1 352 QEMUIOVector iov;
1b4b29a1 353 uint64_t parameter; /* control transfers */
6ba43f1f 354 bool short_not_ok;
a6fb2ddb 355 bool int_req;
4f4321c1 356 int result; /* transfer length or USB_RET_* status code */
4d611c9a 357 /* Internal use by the USB layer. */
f53c398a 358 USBPacketState state;
db4be873 359 QTAILQ_ENTRY(USBPacket) queue;
4d611c9a
PB
360};
361
4f4321c1 362void usb_packet_init(USBPacket *p);
db4be873 363void usb_packet_set_state(USBPacket *p, USBPacketState state);
5ac2731c 364void usb_packet_check_state(USBPacket *p, USBPacketState expected);
6ba43f1f 365void usb_packet_setup(USBPacket *p, int pid, USBEndpoint *ep, uint64_t id,
a6fb2ddb 366 bool short_not_ok, bool int_req);
4f4321c1
GH
367void usb_packet_addbuf(USBPacket *p, void *ptr, size_t len);
368int usb_packet_map(USBPacket *p, QEMUSGList *sgl);
e2f89926 369void usb_packet_unmap(USBPacket *p, QEMUSGList *sgl);
4f4321c1
GH
370void usb_packet_copy(USBPacket *p, void *ptr, size_t bytes);
371void usb_packet_skip(USBPacket *p, size_t bytes);
372void usb_packet_cleanup(USBPacket *p);
373
f53c398a
GH
374static inline bool usb_packet_is_inflight(USBPacket *p)
375{
db4be873
GH
376 return (p->state == USB_PACKET_QUEUED ||
377 p->state == USB_PACKET_ASYNC);
f53c398a
GH
378}
379
73796fe6
GH
380USBDevice *usb_find_device(USBPort *port, uint8_t addr);
381
53aa8c0e 382int usb_handle_packet(USBDevice *dev, USBPacket *p);
4ff658fb 383void usb_packet_complete(USBDevice *dev, USBPacket *p);
d0ff81b8 384void usb_packet_complete_one(USBDevice *dev, USBPacket *p);
4ff658fb 385void usb_cancel_packet(USBPacket * p);
53aa8c0e 386
d8e17efd 387void usb_ep_init(USBDevice *dev);
19deaa08 388void usb_ep_reset(USBDevice *dev);
5b6780d0 389void usb_ep_dump(USBDevice *dev);
d8e17efd
GH
390struct USBEndpoint *usb_ep_get(USBDevice *dev, int pid, int ep);
391uint8_t usb_ep_get_type(USBDevice *dev, int pid, int ep);
82f02fe9 392uint8_t usb_ep_get_ifnum(USBDevice *dev, int pid, int ep);
d8e17efd 393void usb_ep_set_type(USBDevice *dev, int pid, int ep, uint8_t type);
82f02fe9 394void usb_ep_set_ifnum(USBDevice *dev, int pid, int ep, uint8_t ifnum);
f003397c
GH
395void usb_ep_set_max_packet_size(USBDevice *dev, int pid, int ep,
396 uint16_t raw);
397int usb_ep_get_max_packet_size(USBDevice *dev, int pid, int ep);
7936e0f0 398void usb_ep_set_pipeline(USBDevice *dev, int pid, int ep, bool enabled);
c13a9e61
HG
399USBPacket *usb_ep_find_packet_by_id(USBDevice *dev, int pid, int ep,
400 uint64_t id);
d8e17efd 401
891fb2cd
GH
402void usb_attach(USBPort *port);
403void usb_detach(USBPort *port);
d28f4e2d
GH
404void usb_port_reset(USBPort *port);
405void usb_device_reset(USBDevice *dev);
7567b51f 406void usb_wakeup(USBEndpoint *ep);
50b7963e 407void usb_generic_async_ctrl_complete(USBDevice *s, USBPacket *p);
bb36d470 408int set_usb_string(uint8_t *buf, const char *str);
4d611c9a 409
bb36d470 410/* usb-linux.c */
3741715c 411USBDevice *usb_host_device_open(USBBus *bus, const char *devname);
5d0c5750 412int usb_host_device_close(const char *devname);
376253ec 413void usb_host_info(Monitor *mon);
59ae540c 414
e6a6d5ab 415/* usb-bt.c */
3741715c 416USBDevice *usb_bt_init(USBBus *bus, HCIInfo *hci);
e6a6d5ab 417
87ecb68b
PB
418/* usb ports of the VM */
419
87ecb68b
PB
420#define VM_USB_HUB_SIZE 8
421
942ac052
AZ
422/* usb-musb.c */
423enum musb_irq_source_e {
424 musb_irq_suspend = 0,
425 musb_irq_resume,
426 musb_irq_rst_babble,
427 musb_irq_sof,
428 musb_irq_connect,
429 musb_irq_disconnect,
430 musb_irq_vbus_request,
431 musb_irq_vbus_error,
432 musb_irq_rx,
433 musb_irq_tx,
434 musb_set_vbus,
435 musb_set_session,
9147b752
PM
436 /* Add new interrupts here */
437 musb_irq_max, /* total number of interrupts defined */
942ac052
AZ
438};
439
bc24a225 440typedef struct MUSBState MUSBState;
406c2075 441MUSBState *musb_init(DeviceState *parent_device, int gpio_base);
5b1cdb4e 442void musb_reset(MUSBState *s);
bc24a225
PB
443uint32_t musb_core_intr_get(MUSBState *s);
444void musb_core_intr_clear(MUSBState *s, uint32_t mask);
445void musb_set_size(MUSBState *s, int epnum, int size, int is_tx);
806b6024
GH
446
447/* usb-bus.c */
448
0d936928
AL
449#define TYPE_USB_BUS "usb-bus"
450#define USB_BUS(obj) OBJECT_CHECK(USBBus, (obj), TYPE_USB_BUS)
451
806b6024
GH
452struct USBBus {
453 BusState qbus;
07771f6f 454 USBBusOps *ops;
806b6024
GH
455 int busnr;
456 int nfree;
457 int nused;
72cf2d4f
BS
458 QTAILQ_HEAD(, USBPort) free;
459 QTAILQ_HEAD(, USBPort) used;
460 QTAILQ_ENTRY(USBBus) next;
806b6024
GH
461};
462
07771f6f 463struct USBBusOps {
ae60fea9
HG
464 int (*register_companion)(USBBus *bus, USBPort *ports[],
465 uint32_t portcount, uint32_t firstport);
37f32f0f 466 void (*wakeup_endpoint)(USBBus *bus, USBEndpoint *ep);
07771f6f
GH
467};
468
469void usb_bus_new(USBBus *bus, USBBusOps *ops, DeviceState *host);
806b6024 470USBBus *usb_bus_find(int busnr);
ba02430f 471void usb_legacy_register(const char *typename, const char *usbdevice_name,
3741715c
JK
472 USBDevice *(*usbdevice_init)(USBBus *bus,
473 const char *params));
a5d2f727 474USBDevice *usb_create(USBBus *bus, const char *name);
806b6024 475USBDevice *usb_create_simple(USBBus *bus, const char *name);
0958b4cc 476USBDevice *usbdevice_create(const char *cmdline);
a5d2f727 477void usb_register_port(USBBus *bus, USBPort *port, void *opaque, int index,
ace1318b 478 USBPortOps *ops, int speedmask);
ae60fea9
HG
479int usb_register_companion(const char *masterbus, USBPort *ports[],
480 uint32_t portcount, uint32_t firstport,
481 void *opaque, USBPortOps *ops, int speedmask);
c7a2196a 482void usb_port_location(USBPort *downstream, USBPort *upstream, int portnr);
a8e662b5 483void usb_unregister_port(USBBus *bus, USBPort *port);
891fb2cd
GH
484int usb_claim_port(USBDevice *dev);
485void usb_release_port(USBDevice *dev);
a5d2f727 486int usb_device_attach(USBDevice *dev);
a8e662b5 487int usb_device_detach(USBDevice *dev);
a5d2f727
GH
488int usb_device_delete_addr(int busnr, int addr);
489
490static inline USBBus *usb_bus_from_device(USBDevice *d)
491{
492 return DO_UPCAST(USBBus, qbus, d->qdev.parent_bus);
493}
701a8f76
PB
494
495extern const VMStateDescription vmstate_usb_device;
496
497#define VMSTATE_USB_DEVICE(_field, _state) { \
498 .name = (stringify(_field)), \
499 .size = sizeof(USBDevice), \
500 .vmsd = &vmstate_usb_device, \
501 .flags = VMS_STRUCT, \
502 .offset = vmstate_offset_value(_state, _field, USBDevice), \
503}
504
73796fe6
GH
505USBDevice *usb_device_find_device(USBDevice *dev, uint8_t addr);
506
62aed765
AL
507void usb_device_cancel_packet(USBDevice *dev, USBPacket *p);
508
509void usb_device_handle_attach(USBDevice *dev);
510
511void usb_device_handle_reset(USBDevice *dev);
512
513int usb_device_handle_control(USBDevice *dev, USBPacket *p, int request, int value,
514 int index, int length, uint8_t *data);
515
516int usb_device_handle_data(USBDevice *dev, USBPacket *p);
517
518void usb_device_set_interface(USBDevice *dev, int interface,
519 int alt_old, int alt_new);
520
36dfe324
HG
521void usb_device_flush_ep_queue(USBDevice *dev, USBEndpoint *ep);
522
62aed765
AL
523const char *usb_device_get_product_desc(USBDevice *dev);
524
525const USBDesc *usb_device_get_usb_desc(USBDevice *dev);
526
bb4d2b2f
GH
527int ehci_create_ich9_with_companions(PCIBus *bus, int slot);
528
62aed765 529#endif
701a8f76 530