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