VirtualBox

source: vbox/trunk/include/VBox/vusb.h@ 59690

Last change on this file since 59690 was 59687, checked in by vboxsync, 9 years ago

VUSB: Some structural cleanup (#1 Don't replicate the URB tagging for log enabled builds in every device emulation but move it to the roothub implementation )

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 39.3 KB
Line 
1/** @file
2 * VUSB - VirtualBox USB. (DEV,VMM)
3 */
4
5/*
6 * Copyright (C) 2006-2015 Oracle Corporation
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * The contents of this file may alternatively be used under the terms
17 * of the Common Development and Distribution License Version 1.0
18 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19 * VirtualBox OSE distribution, in which case the provisions of the
20 * CDDL are applicable instead of those of the GPL.
21 *
22 * You may elect to license modified versions of this file under the
23 * terms and conditions of either the GPL or the CDDL or both.
24 */
25
26#ifndef ___VBox_vusb_h
27#define ___VBox_vusb_h
28
29#include <VBox/cdefs.h>
30#include <VBox/types.h>
31
32struct PDMLED;
33
34RT_C_DECLS_BEGIN
35
36/** @defgroup grp_vusb VBox USB API
37 * @{
38 */
39
40/** @defgroup grp_vusb_std Standard Stuff
41 * @{ */
42
43/** Frequency of USB bus (from spec). */
44#define VUSB_BUS_HZ 12000000
45
46
47/** @name USB Descriptor types (from spec)
48 * @{ */
49#define VUSB_DT_DEVICE 0x01
50#define VUSB_DT_CONFIG 0x02
51#define VUSB_DT_STRING 0x03
52#define VUSB_DT_INTERFACE 0x04
53#define VUSB_DT_ENDPOINT 0x05
54#define VUSB_DT_DEVICE_QUALIFIER 0x06
55#define VUSB_DT_OTHER_SPEED_CFG 0x07
56#define VUSB_DT_INTERFACE_POWER 0x08
57#define VUSB_DT_INTERFACE_ASSOCIATION 0x0B
58#define VUSB_DT_BOS 0x0F
59#define VUSB_DT_DEVICE_CAPABILITY 0x10
60#define VUSB_DT_SS_ENDPOINT_COMPANION 0x30
61/** @} */
62
63/** @name USB Descriptor minimum sizes (from spec)
64 * @{ */
65#define VUSB_DT_DEVICE_MIN_LEN 18
66#define VUSB_DT_CONFIG_MIN_LEN 9
67#define VUSB_DT_CONFIG_STRING_MIN_LEN 2
68#define VUSB_DT_INTERFACE_MIN_LEN 9
69#define VUSB_DT_ENDPOINT_MIN_LEN 7
70#define VUSB_DT_SSEP_COMPANION_MIN_LEN 6
71/** @} */
72
73/** @name USB Device Capability Type Codes (from spec)
74 * @{ */
75#define VUSB_DCT_WIRELESS_USB 0x01
76#define VUSB_DCT_USB_20_EXTENSION 0x02
77#define VUSB_DCT_SUPERSPEED_USB 0x03
78#define VUSB_DCT_CONTAINER_ID 0x04
79/** @} */
80
81
82#pragma pack(1) /* ensure byte packing of the descriptors. */
83
84/**
85 * USB language id descriptor (from specs).
86 */
87typedef struct VUSBDESCLANGID
88{
89 uint8_t bLength;
90 uint8_t bDescriptorType;
91} VUSBDESCLANGID;
92/** Pointer to a USB language id descriptor. */
93typedef VUSBDESCLANGID *PVUSBDESCLANGID;
94/** Pointer to a const USB language id descriptor. */
95typedef const VUSBDESCLANGID *PCVUSBDESCLANGID;
96
97
98/**
99 * USB string descriptor (from specs).
100 */
101typedef struct VUSBDESCSTRING
102{
103 uint8_t bLength;
104 uint8_t bDescriptorType;
105} VUSBDESCSTRING;
106/** Pointer to a USB string descriptor. */
107typedef VUSBDESCSTRING *PVUSBDESCSTRING;
108/** Pointer to a const USB string descriptor. */
109typedef const VUSBDESCSTRING *PCVUSBDESCSTRING;
110
111
112/**
113 * USB device descriptor (from spec)
114 */
115typedef struct VUSBDESCDEVICE
116{
117 uint8_t bLength;
118 uint8_t bDescriptorType;
119 uint16_t bcdUSB;
120 uint8_t bDeviceClass;
121 uint8_t bDeviceSubClass;
122 uint8_t bDeviceProtocol;
123 uint8_t bMaxPacketSize0;
124 uint16_t idVendor;
125 uint16_t idProduct;
126 uint16_t bcdDevice;
127 uint8_t iManufacturer;
128 uint8_t iProduct;
129 uint8_t iSerialNumber;
130 uint8_t bNumConfigurations;
131} VUSBDESCDEVICE;
132/** Pointer to a USB device descriptor. */
133typedef VUSBDESCDEVICE *PVUSBDESCDEVICE;
134/** Pointer to a const USB device descriptor. */
135typedef const VUSBDESCDEVICE *PCVUSBDESCDEVICE;
136
137/**
138 * USB device qualifier (from spec 9.6.2)
139 */
140struct VUSBDEVICEQUALIFIER
141{
142 uint8_t bLength;
143 uint8_t bDescriptorType;
144 uint16_t bcdUsb;
145 uint8_t bDeviceClass;
146 uint8_t bDeviceSubClass;
147 uint8_t bDeviceProtocol;
148 uint8_t bMaxPacketSize0;
149 uint8_t bNumConfigurations;
150 uint8_t bReserved;
151};
152
153typedef struct VUSBDEVICEQUALIFIER VUSBDEVICEQUALIFIER;
154typedef VUSBDEVICEQUALIFIER *PVUSBDEVICEQUALIFIER;
155
156
157/**
158 * USB configuration descriptor (from spec).
159 */
160typedef struct VUSBDESCCONFIG
161{
162 uint8_t bLength;
163 uint8_t bDescriptorType;
164 uint16_t wTotalLength; /**< recalculated by VUSB when involved in URB. */
165 uint8_t bNumInterfaces;
166 uint8_t bConfigurationValue;
167 uint8_t iConfiguration;
168 uint8_t bmAttributes;
169 uint8_t MaxPower;
170} VUSBDESCCONFIG;
171/** Pointer to a USB configuration descriptor. */
172typedef VUSBDESCCONFIG *PVUSBDESCCONFIG;
173/** Pointer to a readonly USB configuration descriptor. */
174typedef const VUSBDESCCONFIG *PCVUSBDESCCONFIG;
175
176
177/**
178 * USB interface association descriptor (from USB ECN Interface Association Descriptors)
179 */
180typedef struct VUSBDESCIAD
181{
182 uint8_t bLength;
183 uint8_t bDescriptorType;
184 uint8_t bFirstInterface;
185 uint8_t bInterfaceCount;
186 uint8_t bFunctionClass;
187 uint8_t bFunctionSubClass;
188 uint8_t bFunctionProtocol;
189 uint8_t iFunction;
190} VUSBDESCIAD;
191/** Pointer to a USB interface association descriptor. */
192typedef VUSBDESCIAD *PVUSBDESCIAD;
193/** Pointer to a readonly USB interface association descriptor. */
194typedef const VUSBDESCIAD *PCVUSBDESCIAD;
195
196
197/**
198 * USB interface descriptor (from spec)
199 */
200typedef struct VUSBDESCINTERFACE
201{
202 uint8_t bLength;
203 uint8_t bDescriptorType;
204 uint8_t bInterfaceNumber;
205 uint8_t bAlternateSetting;
206 uint8_t bNumEndpoints;
207 uint8_t bInterfaceClass;
208 uint8_t bInterfaceSubClass;
209 uint8_t bInterfaceProtocol;
210 uint8_t iInterface;
211} VUSBDESCINTERFACE;
212/** Pointer to a USB interface descriptor. */
213typedef VUSBDESCINTERFACE *PVUSBDESCINTERFACE;
214/** Pointer to a const USB interface descriptor. */
215typedef const VUSBDESCINTERFACE *PCVUSBDESCINTERFACE;
216
217
218/**
219 * USB endpoint descriptor (from spec)
220 */
221typedef struct VUSBDESCENDPOINT
222{
223 uint8_t bLength;
224 uint8_t bDescriptorType;
225 uint8_t bEndpointAddress;
226 uint8_t bmAttributes;
227 uint16_t wMaxPacketSize;
228 uint8_t bInterval;
229} VUSBDESCENDPOINT;
230/** Pointer to a USB endpoint descriptor. */
231typedef VUSBDESCENDPOINT *PVUSBDESCENDPOINT;
232/** Pointer to a const USB endpoint descriptor. */
233typedef const VUSBDESCENDPOINT *PCVUSBDESCENDPOINT;
234
235
236/**
237 * USB SuperSpeed endpoint companion descriptor (from USB3 spec)
238 */
239typedef struct VUSBDESCSSEPCOMPANION
240{
241 uint8_t bLength;
242 uint8_t bDescriptorType;
243 uint8_t bMaxBurst;
244 uint8_t bmAttributes;
245 uint16_t wBytesPerInterval;
246} VUSBDESCSSEPCOMPANION;
247/** Pointer to a USB endpoint companion descriptor. */
248typedef VUSBDESCSSEPCOMPANION *PVUSBDESCSSEPCOMPANION;
249/** Pointer to a const USB endpoint companion descriptor. */
250typedef const VUSBDESCSSEPCOMPANION *PCVUSBDESCSSEPCOMPANION;
251
252
253/**
254 * USB Binary Device Object Store, aka BOS (from USB3 spec)
255 */
256typedef struct VUSBDESCBOS
257{
258 uint8_t bLength;
259 uint8_t bDescriptorType;
260 uint16_t wTotalLength;
261 uint8_t bNumDeviceCaps;
262} VUSBDESCBOS;
263/** Pointer to a USB BOS descriptor. */
264typedef VUSBDESCBOS *PVUSBDESCBOS;
265/** Pointer to a const USB BOS descriptor. */
266typedef const VUSBDESCBOS *PCVUSBDESCBOS;
267
268
269/**
270 * Generic USB Device Capability Descriptor within BOS (from USB3 spec)
271 */
272typedef struct VUSBDESCDEVICECAP
273{
274 uint8_t bLength;
275 uint8_t bDescriptorType;
276 uint8_t bDevCapabilityType;
277 uint8_t aCapSpecific[1];
278} VUSBDESCDEVICECAP;
279/** Pointer to a USB device capability descriptor. */
280typedef VUSBDESCDEVICECAP *PVUSBDESCDEVICECAP;
281/** Pointer to a const USB device capability descriptor. */
282typedef const VUSBDESCDEVICECAP *PCVUSBDESCDEVICECAP;
283
284
285/**
286 * SuperSpeed USB Device Capability Descriptor within BOS
287 */
288typedef struct VUSBDESCSSDEVCAP
289{
290 uint8_t bLength;
291 uint8_t bDescriptorType; /* DEVICE CAPABILITY */
292 uint8_t bDevCapabilityType; /* SUPERSPEED_USB */
293 uint8_t bmAttributes;
294 uint16_t wSpeedsSupported;
295 uint8_t bFunctionalitySupport;
296 uint8_t bU1DevExitLat;
297 uint16_t wU2DevExitLat;
298} VUSBDESCSSDEVCAP;
299/** Pointer to an SS USB device capability descriptor. */
300typedef VUSBDESCSSDEVCAP *PVUSBDESCSSDEVCAP;
301/** Pointer to a const SS USB device capability descriptor. */
302typedef const VUSBDESCSSDEVCAP *PCVUSBDESCSSDEVCAP;
303
304
305/**
306 * USB 2.0 Extension Descriptor within BOS
307 */
308typedef struct VUSBDESCUSB2EXT
309{
310 uint8_t bLength;
311 uint8_t bDescriptorType; /* DEVICE CAPABILITY */
312 uint8_t bDevCapabilityType; /* USB 2.0 EXTENSION */
313 uint8_t bmAttributes;
314} VUSBDESCUSB2EXT;
315/** Pointer to a USB 2.0 extension capability descriptor. */
316typedef VUSBDESCUSB2EXT *PVUSBDESCUSB2EXT;
317/** Pointer to a const USB 2.0 extension capability descriptor. */
318typedef const VUSBDESCUSB2EXT *PCVUSBDESCUSB2EXT;
319
320
321#pragma pack() /* end of the byte packing. */
322
323
324/**
325 * USB configuration descriptor, the parsed variant used by VUSB.
326 */
327typedef struct VUSBDESCCONFIGEX
328{
329 /** The USB descriptor data.
330 * @remark The wTotalLength member is recalculated before the data is passed to the guest. */
331 VUSBDESCCONFIG Core;
332 /** Pointer to additional descriptor bytes following what's covered by VUSBDESCCONFIG. */
333 void *pvMore;
334 /** Pointer to an array of the interfaces referenced in the configuration.
335 * Core.bNumInterfaces in size. */
336 const struct VUSBINTERFACE *paIfs;
337 /** Pointer to the original descriptor data read from the device. */
338 const void *pvOriginal;
339} VUSBDESCCONFIGEX;
340/** Pointer to a parsed USB configuration descriptor. */
341typedef VUSBDESCCONFIGEX *PVUSBDESCCONFIGEX;
342/** Pointer to a const parsed USB configuration descriptor. */
343typedef const VUSBDESCCONFIGEX *PCVUSBDESCCONFIGEX;
344
345
346/**
347 * For tracking the alternate interface settings of a configuration.
348 */
349typedef struct VUSBINTERFACE
350{
351 /** Pointer to an array of interfaces. */
352 const struct VUSBDESCINTERFACEEX *paSettings;
353 /** The number of entries in the array. */
354 uint32_t cSettings;
355} VUSBINTERFACE;
356/** Pointer to a VUSBINTERFACE. */
357typedef VUSBINTERFACE *PVUSBINTERFACE;
358/** Pointer to a const VUSBINTERFACE. */
359typedef const VUSBINTERFACE *PCVUSBINTERFACE;
360
361
362/**
363 * USB interface descriptor, the parsed variant used by VUSB.
364 */
365typedef struct VUSBDESCINTERFACEEX
366{
367 /** The USB descriptor data. */
368 VUSBDESCINTERFACE Core;
369 /** Pointer to additional descriptor bytes following what's covered by VUSBDESCINTERFACE. */
370 const void *pvMore;
371 /** Pointer to additional class- or vendor-specific interface descriptors. */
372 const void *pvClass;
373 /** Size of class- or vendor-specific descriptors. */
374 uint16_t cbClass;
375 /** Pointer to an array of the endpoints referenced by the interface.
376 * Core.bNumEndpoints in size. */
377 const struct VUSBDESCENDPOINTEX *paEndpoints;
378 /** Interface association descriptor, which prepends a group of interfaces,
379 * starting with this interface. */
380 PCVUSBDESCIAD pIAD;
381 /** Size of interface association descriptor. */
382 uint16_t cbIAD;
383} VUSBDESCINTERFACEEX;
384/** Pointer to an prased USB interface descriptor. */
385typedef VUSBDESCINTERFACEEX *PVUSBDESCINTERFACEEX;
386/** Pointer to a const parsed USB interface descriptor. */
387typedef const VUSBDESCINTERFACEEX *PCVUSBDESCINTERFACEEX;
388
389
390/**
391 * USB endpoint descriptor, the parsed variant used by VUSB.
392 */
393typedef struct VUSBDESCENDPOINTEX
394{
395 /** The USB descriptor data.
396 * @remark The wMaxPacketSize member is converted to native endian. */
397 VUSBDESCENDPOINT Core;
398 /** Pointer to additional descriptor bytes following what's covered by VUSBDESCENDPOINT. */
399 const void *pvMore;
400 /** Pointer to additional class- or vendor-specific endpoint descriptors. */
401 const void *pvClass;
402 /** Size of class- or vendor-specific descriptors. */
403 uint16_t cbClass;
404 /** Pointer to SuperSpeed endpoint companion descriptor (SS endpoints only). */
405 const void *pvSsepc;
406 /** Size of SuperSpeed endpoint companion descriptor.
407 * @remark Must be non-zero for SuperSpeed endpoints. */
408 uint16_t cbSsepc;
409} VUSBDESCENDPOINTEX;
410/** Pointer to a parsed USB endpoint descriptor. */
411typedef VUSBDESCENDPOINTEX *PVUSBDESCENDPOINTEX;
412/** Pointer to a const parsed USB endpoint descriptor. */
413typedef const VUSBDESCENDPOINTEX *PCVUSBDESCENDPOINTEX;
414
415
416/** @name USB Control message recipient codes (from spec)
417 * @{ */
418#define VUSB_TO_DEVICE 0x0
419#define VUSB_TO_INTERFACE 0x1
420#define VUSB_TO_ENDPOINT 0x2
421#define VUSB_TO_OTHER 0x3
422#define VUSB_RECIP_MASK 0x1f
423/** @} */
424
425/** @name USB control pipe setup packet structure (from spec)
426 * @{ */
427#define VUSB_REQ_SHIFT (5)
428#define VUSB_REQ_STANDARD (0x0 << VUSB_REQ_SHIFT)
429#define VUSB_REQ_CLASS (0x1 << VUSB_REQ_SHIFT)
430#define VUSB_REQ_VENDOR (0x2 << VUSB_REQ_SHIFT)
431#define VUSB_REQ_RESERVED (0x3 << VUSB_REQ_SHIFT)
432#define VUSB_REQ_MASK (0x3 << VUSB_REQ_SHIFT)
433/** @} */
434
435#define VUSB_DIR_TO_DEVICE 0x00
436#define VUSB_DIR_TO_HOST 0x80
437#define VUSB_DIR_MASK 0x80
438
439/**
440 * USB Setup request (from spec)
441 */
442typedef struct vusb_setup
443{
444 uint8_t bmRequestType;
445 uint8_t bRequest;
446 uint16_t wValue;
447 uint16_t wIndex;
448 uint16_t wLength;
449} VUSBSETUP;
450/** Pointer to a setup request. */
451typedef VUSBSETUP *PVUSBSETUP;
452/** Pointer to a const setup request. */
453typedef const VUSBSETUP *PCVUSBSETUP;
454
455/** @name USB Standard device requests (from spec)
456 * @{ */
457#define VUSB_REQ_GET_STATUS 0x00
458#define VUSB_REQ_CLEAR_FEATURE 0x01
459#define VUSB_REQ_SET_FEATURE 0x03
460#define VUSB_REQ_SET_ADDRESS 0x05
461#define VUSB_REQ_GET_DESCRIPTOR 0x06
462#define VUSB_REQ_SET_DESCRIPTOR 0x07
463#define VUSB_REQ_GET_CONFIGURATION 0x08
464#define VUSB_REQ_SET_CONFIGURATION 0x09
465#define VUSB_REQ_GET_INTERFACE 0x0a
466#define VUSB_REQ_SET_INTERFACE 0x0b
467#define VUSB_REQ_SYNCH_FRAME 0x0c
468#define VUSB_REQ_MAX 0x0d
469/** @} */
470
471/** @} */ /* end of grp_vusb_std */
472
473
474
475/** @name USB Standard version flags.
476 * @{ */
477/** Indicates USB 1.1 support. */
478#define VUSB_STDVER_11 RT_BIT(1)
479/** Indicates USB 2.0 support. */
480#define VUSB_STDVER_20 RT_BIT(2)
481/** Indicates USB 3.0 support. */
482#define VUSB_STDVER_30 RT_BIT(3)
483/** @} */
484
485/**
486 * USB port/device speeds.
487 */
488typedef enum VUSBSPEED
489{
490 /** Undetermined/unknown speed. */
491 VUSB_SPEED_UNKNOWN = 0,
492 /** Low-speed (LS), 1.5 Mbit/s, USB 1.0. */
493 VUSB_SPEED_LOW,
494 /** Full-speed (FS), 12 Mbit/s, USB 1.1. */
495 VUSB_SPEED_FULL,
496 /** High-speed (HS), 480 Mbit/s, USB 2.0. */
497 VUSB_SPEED_HIGH,
498 /** Variable speed, wireless USB 2.5. */
499 VUSB_SPEED_VARIABLE,
500 /** SuperSpeed (SS), 5.0 Gbit/s, USB 3.0. */
501 VUSB_SPEED_SUPER,
502 /** SuperSpeed+ (SS+), 10.0 Gbit/s, USB 3.1. */
503 VUSB_SPEED_SUPERPLUS,
504 /** The usual 32-bit hack. */
505 VUSB_SPEED_32BIT_HACK = 0x7fffffff
506} VUSBSPEED;
507
508/**
509 * VUSB transfer direction.
510 */
511typedef enum VUSBDIRECTION
512{
513 /** Setup */
514 VUSBDIRECTION_SETUP = 0,
515#define VUSB_DIRECTION_SETUP VUSBDIRECTION_SETUP
516 /** In - Device to host. */
517 VUSBDIRECTION_IN = 1,
518#define VUSB_DIRECTION_IN VUSBDIRECTION_IN
519 /** Out - Host to device. */
520 VUSBDIRECTION_OUT = 2,
521#define VUSB_DIRECTION_OUT VUSBDIRECTION_OUT
522 /** Invalid direction */
523 VUSBDIRECTION_INVALID = 0x7f
524} VUSBDIRECTION;
525
526/**
527 * VUSB Transfer types.
528 */
529typedef enum VUSBXFERTYPE
530{
531 /** Control message. Used to represent a single control transfer. */
532 VUSBXFERTYPE_CTRL = 0,
533 /* Isochronous transfer. */
534 VUSBXFERTYPE_ISOC,
535 /** Bulk transfer. */
536 VUSBXFERTYPE_BULK,
537 /** Interrupt transfer. */
538 VUSBXFERTYPE_INTR,
539 /** Complete control message. Used to represent an entire control message. */
540 VUSBXFERTYPE_MSG,
541 /** Invalid transfer type. */
542 VUSBXFERTYPE_INVALID = 0x7f
543} VUSBXFERTYPE;
544
545/** Pointer to a VBox USB device interface. */
546typedef struct VUSBIDEVICE *PVUSBIDEVICE;
547
548/** Pointer to a VUSB RootHub port interface. */
549typedef struct VUSBIROOTHUBPORT *PVUSBIROOTHUBPORT;
550
551/** Pointer to an USB request descriptor. */
552typedef struct VUSBURB *PVUSBURB;
553
554
555
556/**
557 * VBox USB port bitmap.
558 *
559 * Bit 0 == Port 0, ... , Bit 127 == Port 127.
560 */
561typedef struct VUSBPORTBITMAP
562{
563 /** 128 bits */
564 char ach[16];
565} VUSBPORTBITMAP;
566/** Pointer to a VBox USB port bitmap. */
567typedef VUSBPORTBITMAP *PVUSBPORTBITMAP;
568
569#ifndef RDESKTOP
570
571/**
572 * The VUSB RootHub port interface provided by the HCI (down).
573 * Pair with VUSBIROOTCONNECTOR
574 */
575typedef struct VUSBIROOTHUBPORT
576{
577 /**
578 * Get the number of available ports in the hub.
579 *
580 * @returns The number of ports available.
581 * @param pInterface Pointer to this structure.
582 * @param pAvailable Bitmap indicating the available ports. Set bit == available port.
583 */
584 DECLR3CALLBACKMEMBER(unsigned, pfnGetAvailablePorts,(PVUSBIROOTHUBPORT pInterface, PVUSBPORTBITMAP pAvailable));
585
586 /**
587 * Gets the supported USB versions.
588 *
589 * @returns The mask of supported USB versions.
590 * @param pInterface Pointer to this structure.
591 */
592 DECLR3CALLBACKMEMBER(uint32_t, pfnGetUSBVersions,(PVUSBIROOTHUBPORT pInterface));
593
594 /**
595 * A device is being attached to a port in the roothub.
596 *
597 * @param pInterface Pointer to this structure.
598 * @param pDev Pointer to the device being attached.
599 * @param uPort The port number assigned to the device.
600 */
601 DECLR3CALLBACKMEMBER(int, pfnAttach,(PVUSBIROOTHUBPORT pInterface, PVUSBIDEVICE pDev, unsigned uPort));
602
603 /**
604 * A device is being detached from a port in the roothub.
605 *
606 * @param pInterface Pointer to this structure.
607 * @param pDev Pointer to the device being detached.
608 * @param uPort The port number assigned to the device.
609 */
610 DECLR3CALLBACKMEMBER(void, pfnDetach,(PVUSBIROOTHUBPORT pInterface, PVUSBIDEVICE pDev, unsigned uPort));
611
612 /**
613 * Reset the root hub.
614 *
615 * @returns VBox status code.
616 * @param pInterface Pointer to this structure.
617 * @param pResetOnLinux Whether or not to do real reset on linux.
618 */
619 DECLR3CALLBACKMEMBER(int, pfnReset,(PVUSBIROOTHUBPORT pInterface, bool fResetOnLinux));
620
621 /**
622 * Transfer completion callback routine.
623 *
624 * VUSB will call this when a transfer have been completed
625 * in a one or another way.
626 *
627 * @param pInterface Pointer to this structure.
628 * @param pUrb Pointer to the URB in question.
629 */
630 DECLR3CALLBACKMEMBER(void, pfnXferCompletion,(PVUSBIROOTHUBPORT pInterface, PVUSBURB urb));
631
632 /**
633 * Handle transfer errors.
634 *
635 * VUSB calls this when a transfer attempt failed. This function will respond
636 * indicating whether to retry or complete the URB with failure.
637 *
638 * @returns Retry indicator.
639 * @param pInterface Pointer to this structure.
640 * @param pUrb Pointer to the URB in question.
641 */
642 DECLR3CALLBACKMEMBER(bool, pfnXferError,(PVUSBIROOTHUBPORT pInterface, PVUSBURB pUrb));
643
644 /** Alignment dummy. */
645 RTR3PTR Alignment;
646
647} VUSBIROOTHUBPORT;
648/** VUSBIROOTHUBPORT interface ID. */
649#define VUSBIROOTHUBPORT_IID "e38e2978-7aa2-4860-94b6-9ef4a066d8a0"
650
651/** Pointer to a VUSB RootHub connector interface. */
652typedef struct VUSBIROOTHUBCONNECTOR *PVUSBIROOTHUBCONNECTOR;
653/**
654 * The VUSB RootHub connector interface provided by the VBox USB RootHub driver
655 * (up).
656 * Pair with VUSBIROOTHUBPORT.
657 */
658typedef struct VUSBIROOTHUBCONNECTOR
659{
660 /**
661 * Allocates a new URB for a transfer.
662 *
663 * Either submit using pfnSubmitUrb or free using VUSBUrbFree().
664 *
665 * @returns Pointer to a new URB.
666 * @returns NULL on failure - try again later.
667 * This will not fail if the device wasn't found. We'll fail it
668 * at submit time, since that makes the usage of this api simpler.
669 * @param pInterface Pointer to this struct.
670 * @param DstAddress The destination address of the URB.
671 * @param enmType Type of the URB.
672 * @param enmDir Data transfer direction.
673 * @param cbData The amount of data space required.
674 * @param cTds The amount of TD space.
675 * @param pszTag Custom URB tag assigned by the caller, only for
676 * logged builds and optional.
677 */
678 DECLR3CALLBACKMEMBER(PVUSBURB, pfnNewUrb,(PVUSBIROOTHUBCONNECTOR pInterface, uint8_t DstAddress, VUSBXFERTYPE enmType,
679 VUSBDIRECTION enmDir, uint32_t cbData, uint32_t cTds, const char *pszTag));
680
681 /**
682 * Submits a URB for transfer.
683 * The transfer will do asynchronously if possible.
684 *
685 * @returns VBox status code.
686 * @param pInterface Pointer to this struct.
687 * @param pUrb Pointer to the URB returned by pfnNewUrb.
688 * The URB will be freed in case of failure.
689 * @param pLed Pointer to USB Status LED
690 */
691 DECLR3CALLBACKMEMBER(int, pfnSubmitUrb,(PVUSBIROOTHUBCONNECTOR pInterface, PVUSBURB pUrb, struct PDMLED *pLed));
692
693 /**
694 * Call to service asynchronous URB completions in a polling fashion.
695 *
696 * Reaped URBs will be finished by calling the completion callback,
697 * thus there is no return code or input or anything from this function
698 * except for potential state changes elsewhere.
699 *
700 * @returns VINF_SUCCESS if no URBs are pending upon return.
701 * @returns VERR_TIMEOUT if one or more URBs are still in flight upon returning.
702 * @returns Other VBox status code.
703 *
704 * @param pInterface Pointer to this struct.
705 * @param pDevice Pointer to a USB device.
706 * @param cMillies Number of milliseconds to poll for completion.
707 */
708 DECLR3CALLBACKMEMBER(void, pfnReapAsyncUrbs,(PVUSBIROOTHUBCONNECTOR pInterface, PVUSBIDEVICE pDevice, RTMSINTERVAL cMillies));
709
710 /**
711 * Cancels and completes - with CRC failure - all URBs queued on an endpoint.
712 * This is done in response to guest URB cancellation.
713 *
714 * @returns VBox status code.
715 * @param pInterface Pointer to this struct.
716 * @param pUrb Pointer to a previously submitted URB.
717 */
718 DECLR3CALLBACKMEMBER(int, pfnCancelUrbsEp,(PVUSBIROOTHUBCONNECTOR pInterface, PVUSBURB pUrb));
719
720 /**
721 * Cancels and completes - with CRC failure - all in-flight async URBs.
722 * This is typically done before saving a state.
723 *
724 * @param pInterface Pointer to this struct.
725 */
726 DECLR3CALLBACKMEMBER(void, pfnCancelAllUrbs,(PVUSBIROOTHUBCONNECTOR pInterface));
727
728 /**
729 * Cancels and completes - with CRC failure - all URBs queued on an endpoint.
730 * This is done in response to a guest endpoint/pipe abort.
731 *
732 * @returns VBox status code.
733 * @param pInterface Pointer to this struct.
734 * @param pDevice Pointer to a USB device.
735 * @param EndPt Endpoint number.
736 * @param enmDir Endpoint direction.
737 */
738 DECLR3CALLBACKMEMBER(int, pfnAbortEp,(PVUSBIROOTHUBCONNECTOR pInterface, PVUSBIDEVICE pDevice, int EndPt, VUSBDIRECTION enmDir));
739
740 /**
741 * Attach the device to the root hub.
742 * The device must not be attached to any hub for this call to succeed.
743 *
744 * @returns VBox status code.
745 * @param pInterface Pointer to this struct.
746 * @param pDevice Pointer to the device (interface) to attach.
747 */
748 DECLR3CALLBACKMEMBER(int, pfnAttachDevice,(PVUSBIROOTHUBCONNECTOR pInterface, PVUSBIDEVICE pDevice));
749
750 /**
751 * Detach the device from the root hub.
752 * The device must already be attached for this call to succeed.
753 *
754 * @returns VBox status code.
755 * @param pInterface Pointer to this struct.
756 * @param pDevice Pointer to the device (interface) to detach.
757 */
758 DECLR3CALLBACKMEMBER(int, pfnDetachDevice,(PVUSBIROOTHUBCONNECTOR pInterface, PVUSBIDEVICE pDevice));
759
760 /** Alignment dummy. */
761 RTR3PTR Alignment;
762
763} VUSBIROOTHUBCONNECTOR;
764/** VUSBIROOTHUBCONNECTOR interface ID. */
765#define VUSBIROOTHUBCONNECTOR_IID "dba1a54e-9708-4702-8d7f-b9ac94dc17e6"
766
767
768#ifdef IN_RING3
769/** @copydoc VUSBIROOTHUBCONNECTOR::pfnNewUrb */
770DECLINLINE(PVUSBURB) VUSBIRhNewUrb(PVUSBIROOTHUBCONNECTOR pInterface, uint32_t DstAddress, VUSBXFERTYPE enmType,
771 VUSBDIRECTION enmDir, uint32_t cbData, uint32_t cTds, const char *pszTag)
772{
773 return pInterface->pfnNewUrb(pInterface, DstAddress, enmType, enmDir, cbData, cTds, pszTag);
774}
775
776/** @copydoc VUSBIROOTHUBCONNECTOR::pfnSubmitUrb */
777DECLINLINE(int) VUSBIRhSubmitUrb(PVUSBIROOTHUBCONNECTOR pInterface, PVUSBURB pUrb, struct PDMLED *pLed)
778{
779 return pInterface->pfnSubmitUrb(pInterface, pUrb, pLed);
780}
781
782/** @copydoc VUSBIROOTHUBCONNECTOR::pfnReapAsyncUrbs */
783DECLINLINE(void) VUSBIRhReapAsyncUrbs(PVUSBIROOTHUBCONNECTOR pInterface, PVUSBIDEVICE pDevice, RTMSINTERVAL cMillies)
784{
785 pInterface->pfnReapAsyncUrbs(pInterface, pDevice, cMillies);
786}
787
788/** @copydoc VUSBIROOTHUBCONNECTOR::pfnCancelAllUrbs */
789DECLINLINE(void) VUSBIRhCancelAllUrbs(PVUSBIROOTHUBCONNECTOR pInterface)
790{
791 pInterface->pfnCancelAllUrbs(pInterface);
792}
793
794/** @copydoc VUSBIROOTHUBCONNECTOR::pfnAttachDevice */
795DECLINLINE(int) VUSBIRhAttachDevice(PVUSBIROOTHUBCONNECTOR pInterface, PVUSBIDEVICE pDevice)
796{
797 return pInterface->pfnAttachDevice(pInterface, pDevice);
798}
799
800/** @copydoc VUSBIROOTHUBCONNECTOR::pfnDetachDevice */
801DECLINLINE(int) VUSBIRhDetachDevice(PVUSBIROOTHUBCONNECTOR pInterface, PVUSBIDEVICE pDevice)
802{
803 return pInterface->pfnDetachDevice(pInterface, pDevice);
804}
805#endif /* IN_RING3 */
806
807#endif /* ! RDESKTOP */
808
809
810/**
811 * VUSB device reset completion callback function.
812 * This is called by the reset thread when the reset has been completed.
813 *
814 * @param pDev Pointer to the virtual USB device core.
815 * @param rc The VBox status code of the reset operation.
816 * @param pvUser User specific argument.
817 *
818 * @thread The reset thread or EMT.
819 */
820typedef DECLCALLBACK(void) FNVUSBRESETDONE(PVUSBIDEVICE pDevice, int rc, void *pvUser);
821/** Pointer to a device reset completion callback function (FNUSBRESETDONE). */
822typedef FNVUSBRESETDONE *PFNVUSBRESETDONE;
823
824/**
825 * The state of a VUSB Device.
826 *
827 * @remark The order of these states is vital.
828 */
829typedef enum VUSBDEVICESTATE
830{
831 VUSB_DEVICE_STATE_INVALID = 0,
832 VUSB_DEVICE_STATE_DETACHED,
833 VUSB_DEVICE_STATE_ATTACHED,
834 VUSB_DEVICE_STATE_POWERED,
835 VUSB_DEVICE_STATE_DEFAULT,
836 VUSB_DEVICE_STATE_ADDRESS,
837 VUSB_DEVICE_STATE_CONFIGURED,
838 VUSB_DEVICE_STATE_SUSPENDED,
839 /** The device is being reset. Don't mess with it.
840 * Next states: VUSB_DEVICE_STATE_DEFAULT, VUSB_DEVICE_STATE_DESTROYED
841 */
842 VUSB_DEVICE_STATE_RESET,
843 /** The device has been destroyed. */
844 VUSB_DEVICE_STATE_DESTROYED,
845 /** The usual 32-bit hack. */
846 VUSB_DEVICE_STATE_32BIT_HACK = 0x7fffffff
847} VUSBDEVICESTATE;
848
849#ifndef RDESKTOP
850
851/**
852 * USB Device Interface (up).
853 * No interface pair.
854 */
855typedef struct VUSBIDEVICE
856{
857 /**
858 * Resets the device.
859 *
860 * Since a device reset shall take at least 10ms from the guest point of view,
861 * it must be performed asynchronously. We create a thread which performs this
862 * operation and ensures it will take at least 10ms.
863 *
864 * At times - like init - a synchronous reset is required, this can be done
865 * by passing NULL for pfnDone.
866 *
867 * -- internal stuff, move it --
868 * While the device is being reset it is in the VUSB_DEVICE_STATE_RESET state.
869 * On completion it will be in the VUSB_DEVICE_STATE_DEFAULT state if successful,
870 * or in the VUSB_DEVICE_STATE_DETACHED state if the rest failed.
871 * -- internal stuff, move it --
872 *
873 * @returns VBox status code.
874 * @param pInterface Pointer to this structure.
875 * @param fResetOnLinux Set if we can permit a real reset and a potential logical
876 * device reconnect on linux hosts.
877 * @param pfnDone Pointer to the completion routine. If NULL a synchronous
878 * reset is preformed not respecting the 10ms.
879 * @param pvUser User argument to the completion routine.
880 * @param pVM The cross context VM structure. Required if pfnDone
881 * is not NULL.
882 */
883 DECLR3CALLBACKMEMBER(int, pfnReset,(PVUSBIDEVICE pInterface, bool fResetOnLinux,
884 PFNVUSBRESETDONE pfnDone, void *pvUser, PVM pVM));
885
886 /**
887 * Powers on the device.
888 *
889 * @returns VBox status code.
890 * @param pInterface Pointer to the device interface structure.
891 */
892 DECLR3CALLBACKMEMBER(int, pfnPowerOn,(PVUSBIDEVICE pInterface));
893
894 /**
895 * Powers off the device.
896 *
897 * @returns VBox status code.
898 * @param pInterface Pointer to the device interface structure.
899 */
900 DECLR3CALLBACKMEMBER(int, pfnPowerOff,(PVUSBIDEVICE pInterface));
901
902 /**
903 * Get the state of the device.
904 *
905 * @returns Device state.
906 * @param pInterface Pointer to the device interface structure.
907 */
908 DECLR3CALLBACKMEMBER(VUSBDEVICESTATE, pfnGetState,(PVUSBIDEVICE pInterface));
909
910 /**
911 * Returns whether the device implements the saved state handlers
912 * and doesn't need to get detached.
913 *
914 * @returns true if the device supports saving the state, false otherwise.
915 * @param pInterface Pointer to the device interface structure.
916 */
917 DECLR3CALLBACKMEMBER(bool, pfnIsSavedStateSupported,(PVUSBIDEVICE pInterface));
918
919 /**
920 * Get the speed the device is operating at.
921 *
922 * @returns Device state.
923 * @param pInterface Pointer to the device interface structure.
924 */
925 DECLR3CALLBACKMEMBER(VUSBSPEED, pfnGetSpeed,(PVUSBIDEVICE pInterface));
926
927} VUSBIDEVICE;
928/** VUSBIDEVICE interface ID. */
929#define VUSBIDEVICE_IID "f3facb2b-edd3-4b5b-b07e-2cc4d52a471e"
930
931
932#ifdef IN_RING3
933/**
934 * Resets the device.
935 *
936 * Since a device reset shall take at least 10ms from the guest point of view,
937 * it must be performed asynchronously. We create a thread which performs this
938 * operation and ensures it will take at least 10ms.
939 *
940 * At times - like init - a synchronous reset is required, this can be done
941 * by passing NULL for pfnDone.
942 *
943 * -- internal stuff, move it --
944 * While the device is being reset it is in the VUSB_DEVICE_STATE_RESET state.
945 * On completion it will be in the VUSB_DEVICE_STATE_DEFAULT state if successful,
946 * or in the VUSB_DEVICE_STATE_DETACHED state if the rest failed.
947 * -- internal stuff, move it --
948 *
949 * @returns VBox status code.
950 * @param pInterface Pointer to the device interface structure.
951 * @param fResetOnLinux Set if we can permit a real reset and a potential logical
952 * device reconnect on linux hosts.
953 * @param pfnDone Pointer to the completion routine. If NULL a
954 * synchronous reset is preformed not respecting the
955 * 10ms.
956 * @param pvUser User argument to the completion routine.
957 * @param pVM The cross context VM structure. Required if pfnDone
958 * is not NULL.
959 *
960 * NULL is acceptable Required if callback in EMT is desired, NULL is otherwise
961 * acceptable.
962 */
963DECLINLINE(int) VUSBIDevReset(PVUSBIDEVICE pInterface, bool fResetOnLinux, PFNVUSBRESETDONE pfnDone, void *pvUser, PVM pVM)
964{
965 return pInterface->pfnReset(pInterface, fResetOnLinux, pfnDone, pvUser, pVM);
966}
967
968/**
969 * Powers on the device.
970 *
971 * @returns VBox status code.
972 * @param pInterface Pointer to the device interface structure.
973 */
974DECLINLINE(int) VUSBIDevPowerOn(PVUSBIDEVICE pInterface)
975{
976 return pInterface->pfnPowerOn(pInterface);
977}
978
979/**
980 * Powers off the device.
981 *
982 * @returns VBox status code.
983 * @param pInterface Pointer to the device interface structure.
984 */
985DECLINLINE(int) VUSBIDevPowerOff(PVUSBIDEVICE pInterface)
986{
987 return pInterface->pfnPowerOff(pInterface);
988}
989
990/**
991 * Get the state of the device.
992 *
993 * @returns Device state.
994 * @param pInterface Pointer to the device interface structure.
995 */
996DECLINLINE(VUSBDEVICESTATE) VUSBIDevGetState(PVUSBIDEVICE pInterface)
997{
998 return pInterface->pfnGetState(pInterface);
999}
1000
1001/**
1002 * @copydoc VUSBIDEVICE::pfnIsSavedStateSupported
1003 */
1004DECLINLINE(bool) VUSBIDevIsSavedStateSupported(PVUSBIDEVICE pInterface)
1005{
1006 return pInterface->pfnIsSavedStateSupported(pInterface);
1007}
1008#endif /* IN_RING3 */
1009
1010#endif /* ! RDESKTOP */
1011
1012/** @name URB
1013 * @{ */
1014
1015/**
1016 * VUSB Transfer status codes.
1017 */
1018typedef enum VUSBSTATUS
1019{
1020 /** Transer was ok. */
1021 VUSBSTATUS_OK = 0,
1022 /** Transfer stalled, endpoint halted. */
1023 VUSBSTATUS_STALL,
1024 /** Device not responding. */
1025 VUSBSTATUS_DNR,
1026 /** CRC error. */
1027 VUSBSTATUS_CRC,
1028 /** Data overrun error. */
1029 VUSBSTATUS_DATA_UNDERRUN,
1030 /** Data overrun error. */
1031 VUSBSTATUS_DATA_OVERRUN,
1032 /** The isochronous buffer hasn't been touched. */
1033 VUSBSTATUS_NOT_ACCESSED,
1034 /** Canceled/undone URB (VUSB internal). */
1035 VUSBSTATUS_UNDO,
1036 /** Invalid status. */
1037 VUSBSTATUS_INVALID = 0x7f
1038} VUSBSTATUS;
1039
1040
1041/**
1042 * The URB states
1043 */
1044typedef enum VUSBURBSTATE
1045{
1046 /** The usual invalid state. */
1047 VUSBURBSTATE_INVALID = 0,
1048 /** The URB is free, i.e. not in use.
1049 * Next state: ALLOCATED */
1050 VUSBURBSTATE_FREE,
1051 /** The URB is allocated, i.e. being prepared for submission.
1052 * Next state: FREE, IN_FLIGHT */
1053 VUSBURBSTATE_ALLOCATED,
1054 /** The URB is in flight.
1055 * Next state: REAPED, CANCELLED */
1056 VUSBURBSTATE_IN_FLIGHT,
1057 /** The URB has been reaped and is being completed.
1058 * Next state: FREE */
1059 VUSBURBSTATE_REAPED,
1060 /** The URB has been cancelled and is awaiting reaping and immediate freeing.
1061 * Next state: FREE */
1062 VUSBURBSTATE_CANCELLED,
1063 /** The end of the valid states (exclusive). */
1064 VUSBURBSTATE_END,
1065 /** The usual 32-bit blow up. */
1066 VUSBURBSTATE_32BIT_HACK = 0x7fffffff
1067} VUSBURBSTATE;
1068
1069
1070/**
1071 * Information about a isochronous packet.
1072 */
1073typedef struct VUSBURBISOCPKT
1074{
1075 /** The size of the packet.
1076 * IN: The packet size. I.e. the number of bytes to the next packet or end of buffer.
1077 * OUT: The actual size transferred. */
1078 uint16_t cb;
1079 /** The offset of the packet. (Relative to VUSBURB::abData[0].)
1080 * OUT: This can be changed by the USB device if it does some kind of buffer squeezing. */
1081 uint16_t off;
1082 /** The status of the transfer.
1083 * IN: VUSBSTATUS_INVALID
1084 * OUT: VUSBSTATUS_INVALID if nothing was done, otherwise the correct status. */
1085 VUSBSTATUS enmStatus;
1086} VUSBURBISOCPKT;
1087/** Pointer to a isochronous packet. */
1088typedef VUSBURBISOCPKT *PVUSBURBISOCPTK;
1089/** Pointer to a const isochronous packet. */
1090typedef const VUSBURBISOCPKT *PCVUSBURBISOCPKT;
1091
1092/**
1093 * Asynchronous USB request descriptor
1094 */
1095typedef struct VUSBURB
1096{
1097 /** URB magic value. */
1098 uint32_t u32Magic;
1099 /** The USR state. */
1100 VUSBURBSTATE enmState;
1101 /** Flag whether the URB is about to be completed,
1102 * either by the I/O thread or the cancellation worker.
1103 */
1104 volatile bool fCompleting;
1105 /** URB description, can be null. intended for logging. */
1106 char *pszDesc;
1107
1108#ifdef RDESKTOP
1109 /** The next URB in rdesktop-vrdp's linked list */
1110 PVUSBURB pNext;
1111 /** The previous URB in rdesktop-vrdp's linked list */
1112 PVUSBURB pPrev;
1113 /** The vrdp handle for the URB */
1114 uint32_t handle;
1115 /** Pointer used to find the usb proxy device */
1116 struct VUSBDEV *pDev;
1117#endif
1118
1119 /** The VUSB data. */
1120 struct VUSBURBVUSB
1121 {
1122 /** URB chain pointer. */
1123 PVUSBURB pNext;
1124 /** URB chain pointer. */
1125 PVUSBURB *ppPrev;
1126 /** Pointer to the original for control messages. */
1127 PVUSBURB pCtrlUrb;
1128 /** Pointer to the VUSB device.
1129 * This may be NULL if the destination address is invalid. */
1130 struct VUSBDEV *pDev;
1131 /** Sepcific to the pfnFree function. */
1132 void *pvFreeCtx;
1133 /**
1134 * Callback which will free the URB once it's reaped and completed.
1135 * @param pUrb The URB.
1136 */
1137 DECLCALLBACKMEMBER(void, pfnFree)(PVUSBURB pUrb);
1138 /** Submit timestamp. (logging only) */
1139 uint64_t u64SubmitTS;
1140 /** The allocated data length. */
1141 uint32_t cbDataAllocated;
1142 /** The allocated TD length. */
1143 uint32_t cTdsAllocated;
1144 } VUsb;
1145
1146 /** The host controller data. */
1147 struct VUSBURBHCI
1148 {
1149 /** The endpoint descriptor address. */
1150 RTGCPHYS32 EdAddr;
1151 /** Number of Tds in the array. */
1152 uint32_t cTds;
1153 /** Pointer to an array of TD info items.*/
1154 struct VUSBURBHCITD
1155 {
1156 /** Type of TD (private) */
1157 uint32_t TdType;
1158 /** The address of the */
1159 RTGCPHYS32 TdAddr;
1160 /** A copy of the TD. */
1161 uint32_t TdCopy[16];
1162 } *paTds;
1163 /** URB chain pointer. */
1164 PVUSBURB pNext;
1165 /** When this URB was created.
1166 * (Used for isochronous frames and for logging.) */
1167 uint32_t u32FrameNo;
1168 /** Flag indicating that the TDs have been unlinked. */
1169 bool fUnlinked;
1170 } Hci;
1171
1172 /** The device data. */
1173 struct VUSBURBDEV
1174 {
1175 /** Pointer to private device specific data. */
1176 void *pvPrivate;
1177 /** Used by the device when linking the URB in some list of its own. */
1178 PVUSBURB pNext;
1179 } Dev;
1180
1181#ifndef RDESKTOP
1182 /** The USB device instance this belongs to.
1183 * This is NULL if the device address is invalid, in which case this belongs to the hub. */
1184 PPDMUSBINS pUsbIns;
1185#endif
1186 /** The device address.
1187 * This is set at allocation time. */
1188 uint8_t DstAddress;
1189
1190 /** The endpoint.
1191 * IN: Must be set before submitting the URB.
1192 * @remark This does not have the high bit (direction) set! */
1193 uint8_t EndPt;
1194 /** The transfer type.
1195 * IN: Must be set before submitting the URB. */
1196 VUSBXFERTYPE enmType;
1197 /** The transfer direction.
1198 * IN: Must be set before submitting the URB. */
1199 VUSBDIRECTION enmDir;
1200 /** Indicates whether it is OK to receive/send less data than requested.
1201 * IN: Must be initialized before submitting the URB. */
1202 bool fShortNotOk;
1203 /** The transfer status.
1204 * OUT: This is set when reaping the URB. */
1205 VUSBSTATUS enmStatus;
1206
1207 /** The number of isochronous packets describe in aIsocPkts.
1208 * This is ignored when enmType isn't VUSBXFERTYPE_ISOC. */
1209 uint32_t cIsocPkts;
1210 /** The iso packets within abData.
1211 * This is ignored when enmType isn't VUSBXFERTYPE_ISOC. */
1212 VUSBURBISOCPKT aIsocPkts[8];
1213
1214 /** The message length.
1215 * IN: The amount of data to send / receive - set at allocation time.
1216 * OUT: The amount of data sent / received. */
1217 uint32_t cbData;
1218 /** The message data.
1219 * IN: On host to device transfers, the data to send.
1220 * OUT: On device to host transfers, the data to received.
1221 * This array has actually a size of VUsb.cbDataAllocated, not 8KB! */
1222 uint8_t abData[8*_1K];
1223} VUSBURB;
1224
1225/** The magic value of a valid VUSBURB. (Murakami Haruki) */
1226#define VUSBURB_MAGIC UINT32_C(0x19490112)
1227
1228/** @} */
1229
1230
1231/** @} */
1232
1233RT_C_DECLS_END
1234
1235#endif
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette