VirtualBox

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

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

VUSB: Some structural cleanup (#2 Remove the HCI specific bits from the VUSBURB structure and let each controller manage it by itself just telling the root hub how much space it needs for each URB)

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 39.7 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 "79a31188-043d-432c-82ac-9485c9ab9a49"
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 * Sets the URB parameters for the caller.
662 *
663 * @returns VBox status code.
664 * @param pInterface Pointer to this struct.
665 * @param cbHci Size of the data private to the HCI for each URB when allocated.
666 * @param cbHciTd Size of one transfer descriptor. The number of transfer descriptors
667 * is given VUSBIROOTHUBCONNECTOR::pfnNewUrb for each URB to calculate the
668 * final amount of memory required for the TDs.
669 *
670 * @note This must be called before starting to allocate any URB or otherwise there will be no
671 * data available for the HCI.
672 */
673 DECLR3CALLBACKMEMBER(int, pfnSetUrbParams, (PVUSBIROOTHUBCONNECTOR pInterface, size_t cbHci, size_t cbHciTd));
674
675 /**
676 * Allocates a new URB for a transfer.
677 *
678 * Either submit using pfnSubmitUrb or free using VUSBUrbFree().
679 *
680 * @returns Pointer to a new URB.
681 * @returns NULL on failure - try again later.
682 * This will not fail if the device wasn't found. We'll fail it
683 * at submit time, since that makes the usage of this api simpler.
684 * @param pInterface Pointer to this struct.
685 * @param DstAddress The destination address of the URB.
686 * @param enmType Type of the URB.
687 * @param enmDir Data transfer direction.
688 * @param cbData The amount of data space required.
689 * @param cTds The amount of TD space.
690 * @param pszTag Custom URB tag assigned by the caller, only for
691 * logged builds and optional.
692 */
693 DECLR3CALLBACKMEMBER(PVUSBURB, pfnNewUrb,(PVUSBIROOTHUBCONNECTOR pInterface, uint8_t DstAddress, VUSBXFERTYPE enmType,
694 VUSBDIRECTION enmDir, uint32_t cbData, uint32_t cTds, const char *pszTag));
695
696 /**
697 * Submits a URB for transfer.
698 * The transfer will do asynchronously if possible.
699 *
700 * @returns VBox status code.
701 * @param pInterface Pointer to this struct.
702 * @param pUrb Pointer to the URB returned by pfnNewUrb.
703 * The URB will be freed in case of failure.
704 * @param pLed Pointer to USB Status LED
705 */
706 DECLR3CALLBACKMEMBER(int, pfnSubmitUrb,(PVUSBIROOTHUBCONNECTOR pInterface, PVUSBURB pUrb, struct PDMLED *pLed));
707
708 /**
709 * Call to service asynchronous URB completions in a polling fashion.
710 *
711 * Reaped URBs will be finished by calling the completion callback,
712 * thus there is no return code or input or anything from this function
713 * except for potential state changes elsewhere.
714 *
715 * @returns VINF_SUCCESS if no URBs are pending upon return.
716 * @returns VERR_TIMEOUT if one or more URBs are still in flight upon returning.
717 * @returns Other VBox status code.
718 *
719 * @param pInterface Pointer to this struct.
720 * @param pDevice Pointer to a USB device.
721 * @param cMillies Number of milliseconds to poll for completion.
722 */
723 DECLR3CALLBACKMEMBER(void, pfnReapAsyncUrbs,(PVUSBIROOTHUBCONNECTOR pInterface, PVUSBIDEVICE pDevice, RTMSINTERVAL cMillies));
724
725 /**
726 * Cancels and completes - with CRC failure - all URBs queued on an endpoint.
727 * This is done in response to guest URB cancellation.
728 *
729 * @returns VBox status code.
730 * @param pInterface Pointer to this struct.
731 * @param pUrb Pointer to a previously submitted URB.
732 */
733 DECLR3CALLBACKMEMBER(int, pfnCancelUrbsEp,(PVUSBIROOTHUBCONNECTOR pInterface, PVUSBURB pUrb));
734
735 /**
736 * Cancels and completes - with CRC failure - all in-flight async URBs.
737 * This is typically done before saving a state.
738 *
739 * @param pInterface Pointer to this struct.
740 */
741 DECLR3CALLBACKMEMBER(void, pfnCancelAllUrbs,(PVUSBIROOTHUBCONNECTOR pInterface));
742
743 /**
744 * Cancels and completes - with CRC failure - all URBs queued on an endpoint.
745 * This is done in response to a guest endpoint/pipe abort.
746 *
747 * @returns VBox status code.
748 * @param pInterface Pointer to this struct.
749 * @param pDevice Pointer to a USB device.
750 * @param EndPt Endpoint number.
751 * @param enmDir Endpoint direction.
752 */
753 DECLR3CALLBACKMEMBER(int, pfnAbortEp,(PVUSBIROOTHUBCONNECTOR pInterface, PVUSBIDEVICE pDevice, int EndPt, VUSBDIRECTION enmDir));
754
755 /**
756 * Attach the device to the root hub.
757 * The device must not be attached to any hub for this call to succeed.
758 *
759 * @returns VBox status code.
760 * @param pInterface Pointer to this struct.
761 * @param pDevice Pointer to the device (interface) to attach.
762 */
763 DECLR3CALLBACKMEMBER(int, pfnAttachDevice,(PVUSBIROOTHUBCONNECTOR pInterface, PVUSBIDEVICE pDevice));
764
765 /**
766 * Detach the device from the root hub.
767 * The device must already be attached for this call to succeed.
768 *
769 * @returns VBox status code.
770 * @param pInterface Pointer to this struct.
771 * @param pDevice Pointer to the device (interface) to detach.
772 */
773 DECLR3CALLBACKMEMBER(int, pfnDetachDevice,(PVUSBIROOTHUBCONNECTOR pInterface, PVUSBIDEVICE pDevice));
774
775 /** Alignment dummy. */
776 RTR3PTR Alignment;
777
778} VUSBIROOTHUBCONNECTOR;
779/** VUSBIROOTHUBCONNECTOR interface ID. */
780#define VUSBIROOTHUBCONNECTOR_IID "481d7f23-f180-4fde-b636-094253eaf537"
781
782
783#ifdef IN_RING3
784/** @copydoc VUSBIROOTHUBCONNECTOR::pfnSetUrbParams */
785DECLINLINE(int) VUSBIRhSetUrbParams(PVUSBIROOTHUBCONNECTOR pInterface, size_t cbHci, size_t cbHciTd)
786{
787 return pInterface->pfnSetUrbParams(pInterface, cbHci, cbHciTd);
788}
789
790/** @copydoc VUSBIROOTHUBCONNECTOR::pfnNewUrb */
791DECLINLINE(PVUSBURB) VUSBIRhNewUrb(PVUSBIROOTHUBCONNECTOR pInterface, uint32_t DstAddress, VUSBXFERTYPE enmType,
792 VUSBDIRECTION enmDir, uint32_t cbData, uint32_t cTds, const char *pszTag)
793{
794 return pInterface->pfnNewUrb(pInterface, DstAddress, enmType, enmDir, cbData, cTds, pszTag);
795}
796
797/** @copydoc VUSBIROOTHUBCONNECTOR::pfnSubmitUrb */
798DECLINLINE(int) VUSBIRhSubmitUrb(PVUSBIROOTHUBCONNECTOR pInterface, PVUSBURB pUrb, struct PDMLED *pLed)
799{
800 return pInterface->pfnSubmitUrb(pInterface, pUrb, pLed);
801}
802
803/** @copydoc VUSBIROOTHUBCONNECTOR::pfnReapAsyncUrbs */
804DECLINLINE(void) VUSBIRhReapAsyncUrbs(PVUSBIROOTHUBCONNECTOR pInterface, PVUSBIDEVICE pDevice, RTMSINTERVAL cMillies)
805{
806 pInterface->pfnReapAsyncUrbs(pInterface, pDevice, cMillies);
807}
808
809/** @copydoc VUSBIROOTHUBCONNECTOR::pfnCancelAllUrbs */
810DECLINLINE(void) VUSBIRhCancelAllUrbs(PVUSBIROOTHUBCONNECTOR pInterface)
811{
812 pInterface->pfnCancelAllUrbs(pInterface);
813}
814
815/** @copydoc VUSBIROOTHUBCONNECTOR::pfnAttachDevice */
816DECLINLINE(int) VUSBIRhAttachDevice(PVUSBIROOTHUBCONNECTOR pInterface, PVUSBIDEVICE pDevice)
817{
818 return pInterface->pfnAttachDevice(pInterface, pDevice);
819}
820
821/** @copydoc VUSBIROOTHUBCONNECTOR::pfnDetachDevice */
822DECLINLINE(int) VUSBIRhDetachDevice(PVUSBIROOTHUBCONNECTOR pInterface, PVUSBIDEVICE pDevice)
823{
824 return pInterface->pfnDetachDevice(pInterface, pDevice);
825}
826#endif /* IN_RING3 */
827
828#endif /* ! RDESKTOP */
829
830
831/**
832 * VUSB device reset completion callback function.
833 * This is called by the reset thread when the reset has been completed.
834 *
835 * @param pDev Pointer to the virtual USB device core.
836 * @param rc The VBox status code of the reset operation.
837 * @param pvUser User specific argument.
838 *
839 * @thread The reset thread or EMT.
840 */
841typedef DECLCALLBACK(void) FNVUSBRESETDONE(PVUSBIDEVICE pDevice, int rc, void *pvUser);
842/** Pointer to a device reset completion callback function (FNUSBRESETDONE). */
843typedef FNVUSBRESETDONE *PFNVUSBRESETDONE;
844
845/**
846 * The state of a VUSB Device.
847 *
848 * @remark The order of these states is vital.
849 */
850typedef enum VUSBDEVICESTATE
851{
852 VUSB_DEVICE_STATE_INVALID = 0,
853 VUSB_DEVICE_STATE_DETACHED,
854 VUSB_DEVICE_STATE_ATTACHED,
855 VUSB_DEVICE_STATE_POWERED,
856 VUSB_DEVICE_STATE_DEFAULT,
857 VUSB_DEVICE_STATE_ADDRESS,
858 VUSB_DEVICE_STATE_CONFIGURED,
859 VUSB_DEVICE_STATE_SUSPENDED,
860 /** The device is being reset. Don't mess with it.
861 * Next states: VUSB_DEVICE_STATE_DEFAULT, VUSB_DEVICE_STATE_DESTROYED
862 */
863 VUSB_DEVICE_STATE_RESET,
864 /** The device has been destroyed. */
865 VUSB_DEVICE_STATE_DESTROYED,
866 /** The usual 32-bit hack. */
867 VUSB_DEVICE_STATE_32BIT_HACK = 0x7fffffff
868} VUSBDEVICESTATE;
869
870#ifndef RDESKTOP
871
872/**
873 * USB Device Interface (up).
874 * No interface pair.
875 */
876typedef struct VUSBIDEVICE
877{
878 /**
879 * Resets the device.
880 *
881 * Since a device reset shall take at least 10ms from the guest point of view,
882 * it must be performed asynchronously. We create a thread which performs this
883 * operation and ensures it will take at least 10ms.
884 *
885 * At times - like init - a synchronous reset is required, this can be done
886 * by passing NULL for pfnDone.
887 *
888 * -- internal stuff, move it --
889 * While the device is being reset it is in the VUSB_DEVICE_STATE_RESET state.
890 * On completion it will be in the VUSB_DEVICE_STATE_DEFAULT state if successful,
891 * or in the VUSB_DEVICE_STATE_DETACHED state if the rest failed.
892 * -- internal stuff, move it --
893 *
894 * @returns VBox status code.
895 * @param pInterface Pointer to this structure.
896 * @param fResetOnLinux Set if we can permit a real reset and a potential logical
897 * device reconnect on linux hosts.
898 * @param pfnDone Pointer to the completion routine. If NULL a synchronous
899 * reset is preformed not respecting the 10ms.
900 * @param pvUser User argument to the completion routine.
901 * @param pVM The cross context VM structure. Required if pfnDone
902 * is not NULL.
903 */
904 DECLR3CALLBACKMEMBER(int, pfnReset,(PVUSBIDEVICE pInterface, bool fResetOnLinux,
905 PFNVUSBRESETDONE pfnDone, void *pvUser, PVM pVM));
906
907 /**
908 * Powers on the device.
909 *
910 * @returns VBox status code.
911 * @param pInterface Pointer to the device interface structure.
912 */
913 DECLR3CALLBACKMEMBER(int, pfnPowerOn,(PVUSBIDEVICE pInterface));
914
915 /**
916 * Powers off the device.
917 *
918 * @returns VBox status code.
919 * @param pInterface Pointer to the device interface structure.
920 */
921 DECLR3CALLBACKMEMBER(int, pfnPowerOff,(PVUSBIDEVICE pInterface));
922
923 /**
924 * Get the state of the device.
925 *
926 * @returns Device state.
927 * @param pInterface Pointer to the device interface structure.
928 */
929 DECLR3CALLBACKMEMBER(VUSBDEVICESTATE, pfnGetState,(PVUSBIDEVICE pInterface));
930
931 /**
932 * Returns whether the device implements the saved state handlers
933 * and doesn't need to get detached.
934 *
935 * @returns true if the device supports saving the state, false otherwise.
936 * @param pInterface Pointer to the device interface structure.
937 */
938 DECLR3CALLBACKMEMBER(bool, pfnIsSavedStateSupported,(PVUSBIDEVICE pInterface));
939
940 /**
941 * Get the speed the device is operating at.
942 *
943 * @returns Device state.
944 * @param pInterface Pointer to the device interface structure.
945 */
946 DECLR3CALLBACKMEMBER(VUSBSPEED, pfnGetSpeed,(PVUSBIDEVICE pInterface));
947
948} VUSBIDEVICE;
949/** VUSBIDEVICE interface ID. */
950#define VUSBIDEVICE_IID "79a31188-043d-432c-82ac-9485c9ab9a49"
951
952
953#ifdef IN_RING3
954/**
955 * Resets the device.
956 *
957 * Since a device reset shall take at least 10ms from the guest point of view,
958 * it must be performed asynchronously. We create a thread which performs this
959 * operation and ensures it will take at least 10ms.
960 *
961 * At times - like init - a synchronous reset is required, this can be done
962 * by passing NULL for pfnDone.
963 *
964 * -- internal stuff, move it --
965 * While the device is being reset it is in the VUSB_DEVICE_STATE_RESET state.
966 * On completion it will be in the VUSB_DEVICE_STATE_DEFAULT state if successful,
967 * or in the VUSB_DEVICE_STATE_DETACHED state if the rest failed.
968 * -- internal stuff, move it --
969 *
970 * @returns VBox status code.
971 * @param pInterface Pointer to the device interface structure.
972 * @param fResetOnLinux Set if we can permit a real reset and a potential logical
973 * device reconnect on linux hosts.
974 * @param pfnDone Pointer to the completion routine. If NULL a
975 * synchronous reset is preformed not respecting the
976 * 10ms.
977 * @param pvUser User argument to the completion routine.
978 * @param pVM The cross context VM structure. Required if pfnDone
979 * is not NULL.
980 *
981 * NULL is acceptable Required if callback in EMT is desired, NULL is otherwise
982 * acceptable.
983 */
984DECLINLINE(int) VUSBIDevReset(PVUSBIDEVICE pInterface, bool fResetOnLinux, PFNVUSBRESETDONE pfnDone, void *pvUser, PVM pVM)
985{
986 return pInterface->pfnReset(pInterface, fResetOnLinux, pfnDone, pvUser, pVM);
987}
988
989/**
990 * Powers on the device.
991 *
992 * @returns VBox status code.
993 * @param pInterface Pointer to the device interface structure.
994 */
995DECLINLINE(int) VUSBIDevPowerOn(PVUSBIDEVICE pInterface)
996{
997 return pInterface->pfnPowerOn(pInterface);
998}
999
1000/**
1001 * Powers off the device.
1002 *
1003 * @returns VBox status code.
1004 * @param pInterface Pointer to the device interface structure.
1005 */
1006DECLINLINE(int) VUSBIDevPowerOff(PVUSBIDEVICE pInterface)
1007{
1008 return pInterface->pfnPowerOff(pInterface);
1009}
1010
1011/**
1012 * Get the state of the device.
1013 *
1014 * @returns Device state.
1015 * @param pInterface Pointer to the device interface structure.
1016 */
1017DECLINLINE(VUSBDEVICESTATE) VUSBIDevGetState(PVUSBIDEVICE pInterface)
1018{
1019 return pInterface->pfnGetState(pInterface);
1020}
1021
1022/**
1023 * @copydoc VUSBIDEVICE::pfnIsSavedStateSupported
1024 */
1025DECLINLINE(bool) VUSBIDevIsSavedStateSupported(PVUSBIDEVICE pInterface)
1026{
1027 return pInterface->pfnIsSavedStateSupported(pInterface);
1028}
1029#endif /* IN_RING3 */
1030
1031#endif /* ! RDESKTOP */
1032
1033/** @name URB
1034 * @{ */
1035
1036/**
1037 * VUSB Transfer status codes.
1038 */
1039typedef enum VUSBSTATUS
1040{
1041 /** Transer was ok. */
1042 VUSBSTATUS_OK = 0,
1043 /** Transfer stalled, endpoint halted. */
1044 VUSBSTATUS_STALL,
1045 /** Device not responding. */
1046 VUSBSTATUS_DNR,
1047 /** CRC error. */
1048 VUSBSTATUS_CRC,
1049 /** Data overrun error. */
1050 VUSBSTATUS_DATA_UNDERRUN,
1051 /** Data overrun error. */
1052 VUSBSTATUS_DATA_OVERRUN,
1053 /** The isochronous buffer hasn't been touched. */
1054 VUSBSTATUS_NOT_ACCESSED,
1055 /** Canceled/undone URB (VUSB internal). */
1056 VUSBSTATUS_UNDO,
1057 /** Invalid status. */
1058 VUSBSTATUS_INVALID = 0x7f
1059} VUSBSTATUS;
1060
1061
1062/**
1063 * The URB states
1064 */
1065typedef enum VUSBURBSTATE
1066{
1067 /** The usual invalid state. */
1068 VUSBURBSTATE_INVALID = 0,
1069 /** The URB is free, i.e. not in use.
1070 * Next state: ALLOCATED */
1071 VUSBURBSTATE_FREE,
1072 /** The URB is allocated, i.e. being prepared for submission.
1073 * Next state: FREE, IN_FLIGHT */
1074 VUSBURBSTATE_ALLOCATED,
1075 /** The URB is in flight.
1076 * Next state: REAPED, CANCELLED */
1077 VUSBURBSTATE_IN_FLIGHT,
1078 /** The URB has been reaped and is being completed.
1079 * Next state: FREE */
1080 VUSBURBSTATE_REAPED,
1081 /** The URB has been cancelled and is awaiting reaping and immediate freeing.
1082 * Next state: FREE */
1083 VUSBURBSTATE_CANCELLED,
1084 /** The end of the valid states (exclusive). */
1085 VUSBURBSTATE_END,
1086 /** The usual 32-bit blow up. */
1087 VUSBURBSTATE_32BIT_HACK = 0x7fffffff
1088} VUSBURBSTATE;
1089
1090
1091/**
1092 * Information about a isochronous packet.
1093 */
1094typedef struct VUSBURBISOCPKT
1095{
1096 /** The size of the packet.
1097 * IN: The packet size. I.e. the number of bytes to the next packet or end of buffer.
1098 * OUT: The actual size transferred. */
1099 uint16_t cb;
1100 /** The offset of the packet. (Relative to VUSBURB::abData[0].)
1101 * OUT: This can be changed by the USB device if it does some kind of buffer squeezing. */
1102 uint16_t off;
1103 /** The status of the transfer.
1104 * IN: VUSBSTATUS_INVALID
1105 * OUT: VUSBSTATUS_INVALID if nothing was done, otherwise the correct status. */
1106 VUSBSTATUS enmStatus;
1107} VUSBURBISOCPKT;
1108/** Pointer to a isochronous packet. */
1109typedef VUSBURBISOCPKT *PVUSBURBISOCPTK;
1110/** Pointer to a const isochronous packet. */
1111typedef const VUSBURBISOCPKT *PCVUSBURBISOCPKT;
1112
1113/** Private controller emulation specific data for the associated USB request descriptor. */
1114typedef struct VUSBURBHCIINT *PVUSBURBHCI;
1115/** Private controller emulation specific TD data. */
1116typedef struct VUSBURBHCITDINT *PVUSBURBHCITD;
1117
1118/**
1119 * Asynchronous USB request descriptor
1120 */
1121typedef struct VUSBURB
1122{
1123 /** URB magic value. */
1124 uint32_t u32Magic;
1125 /** The USR state. */
1126 VUSBURBSTATE enmState;
1127 /** Flag whether the URB is about to be completed,
1128 * either by the I/O thread or the cancellation worker.
1129 */
1130 volatile bool fCompleting;
1131 /** URB description, can be null. intended for logging. */
1132 char *pszDesc;
1133
1134#ifdef RDESKTOP
1135 /** The next URB in rdesktop-vrdp's linked list */
1136 PVUSBURB pNext;
1137 /** The previous URB in rdesktop-vrdp's linked list */
1138 PVUSBURB pPrev;
1139 /** The vrdp handle for the URB */
1140 uint32_t handle;
1141 /** Pointer used to find the usb proxy device */
1142 struct VUSBDEV *pDev;
1143#endif
1144
1145 /** The VUSB data. */
1146 struct VUSBURBVUSB
1147 {
1148 /** URB chain pointer. */
1149 PVUSBURB pNext;
1150 /** URB chain pointer. */
1151 PVUSBURB *ppPrev;
1152 /** Pointer to the original for control messages. */
1153 PVUSBURB pCtrlUrb;
1154 /** Pointer to the VUSB device.
1155 * This may be NULL if the destination address is invalid. */
1156 struct VUSBDEV *pDev;
1157 /** Specific to the pfnFree function. */
1158 void *pvFreeCtx;
1159 /**
1160 * Callback which will free the URB once it's reaped and completed.
1161 * @param pUrb The URB.
1162 */
1163 DECLCALLBACKMEMBER(void, pfnFree)(PVUSBURB pUrb);
1164 /** Submit timestamp. (logging only) */
1165 uint64_t u64SubmitTS;
1166 /** The allocated data length. */
1167 uint32_t cbDataAllocated;
1168 /** Opaque data holder when this is a read-ahead URB. */
1169 void *pvReadAhead;
1170 } VUsb;
1171
1172 /** Private host controller data associated with this URB. */
1173 PVUSBURBHCI pHci;
1174 /** Pointer to the host controller transfer descriptor array. */
1175 PVUSBURBHCITD paTds;
1176
1177 /** The device data. */
1178 struct VUSBURBDEV
1179 {
1180 /** Pointer to private device specific data. */
1181 void *pvPrivate;
1182 /** Used by the device when linking the URB in some list of its own. */
1183 PVUSBURB pNext;
1184 } Dev;
1185
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: Set at allocation time. */
1196 VUSBXFERTYPE enmType;
1197 /** The transfer direction.
1198 * IN: Set at allocation time. */
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