VirtualBox

source: vbox/trunk/include/VBox/usb.h@ 4071

Last change on this file since 4071 was 4071, checked in by vboxsync, 17 years ago

Biggest check-in ever. New source code headers for all (C) innotek files.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 6.3 KB
Line 
1/** @file
2 * USB - Universal Serial Bus.
3 */
4
5/*
6 * Copyright (C) 2006-2007 innotek GmbH
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 as published by the Free Software Foundation,
12 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
13 * distribution. VirtualBox OSE is distributed in the hope that it will
14 * be useful, but WITHOUT ANY WARRANTY of any kind.
15 */
16
17#ifndef ___VBox_usb_h
18#define ___VBox_usb_h
19
20#include <VBox/types.h>
21
22__BEGIN_DECLS
23
24/**
25 * USB device interface endpoint.
26 */
27typedef struct USBENDPOINT
28{
29 /** The address of the endpoint on the USB device described by this descriptor. */
30 uint8_t bEndpointAddress;
31 /** This field describes the endpoint's attributes when it is configured using the bConfigurationValue. */
32 uint8_t bmAttributes;
33 /** Maximum packet size this endpoint is capable of sending or receiving when this configuration is selected. */
34 uint16_t wMaxPacketSize;
35 /** Interval for polling endpoint for data transfers. Expressed in milliseconds.
36 * This is interpreted the bInterval value. */
37 uint16_t u16Interval;
38} USBENDPOINT;
39/** Pointer to a USB device interface endpoint. */
40typedef USBENDPOINT *PUSBENDPOINT;
41/** Pointer to a const USB device interface endpoint. */
42typedef const USBENDPOINT *PCUSBENDPOINT;
43
44/** USBENDPOINT::bmAttributes values.
45 * @{ */
46#define USB_EP_ATTR_CONTROL 0
47#define USB_EP_ATTR_ISOCHRONOUS 1
48#define USB_EP_ATTR_BULK 2
49#define USB_EP_ATTR_INTERRUPT 3
50/** @} */
51
52
53/**
54 * USB device interface.
55 */
56typedef struct USBINTERFACE
57{
58 /** Number of interface. */
59 uint8_t bInterfaceNumber;
60 /** Value used to select alternate setting for the interface identified in the prior field. */
61 uint8_t bAlternateSetting;
62 /** Number of endpoints used by this interface (excluding endpoint zero). */
63 uint8_t bNumEndpoints;
64 /** Pointer to an array of endpoints. */
65 PUSBENDPOINT paEndpoints;
66 /** Interface class. */
67 uint8_t bInterfaceClass;
68 /** Interface subclass. */
69 uint8_t bInterfaceSubClass;
70 /** Protocol code. */
71 uint8_t bInterfaceProtocol;
72 /** Number of alternate settings. */
73 uint8_t cAlts;
74 /** Pointer to an array of alternate interface settings. */
75 struct USBINTERFACE *paAlts;
76 /** String describing this interface. */
77 const char *pszInterface;
78 /** String containing the driver name.
79 * This is a NULL pointer if the interface is not in use. */
80 const char *pszDriver;
81} USBINTERFACE;
82/** Pointer to a USB device interface description. */
83typedef USBINTERFACE *PUSBINTERFACE;
84/** Pointer to a const USB device interface description. */
85typedef const USBINTERFACE *PCUSBINTERFACE;
86
87/**
88 * Device configuration.
89 */
90typedef struct USBCONFIG
91{
92 /** Set if this is the active configuration. */
93 bool fActive;
94 /** Number of interfaces. */
95 uint8_t bNumInterfaces;
96 /** Pointer to an array of interfaces. */
97 PUSBINTERFACE paInterfaces;
98 /** Configuration number. (For SetConfiguration().) */
99 uint8_t bConfigurationValue;
100 /** Configuration description string. */
101 const char *pszConfiguration;
102 /** Configuration characteristics. */
103 uint8_t bmAttributes;
104 /** Maximum power consumption of the USB device in this config.
105 * (This field does NOT need shifting like in the USB config descriptor.) */
106 uint16_t u16MaxPower;
107} USBCONFIG;
108/** Pointer to a USB configuration. */
109typedef USBCONFIG *PUSBCONFIG;
110/** Pointer to a const USB configuration. */
111typedef const USBCONFIG *PCUSBCONFIG;
112
113
114/**
115 * The USB host device state.
116 */
117typedef enum USBDEVICESTATE
118{
119 /** The device is unsupported. */
120 USBDEVICESTATE_UNSUPPORTED = 1,
121 /** The device is in use by the host. */
122 USBDEVICESTATE_USED_BY_HOST,
123 /** The device is in use by the host but could perhaps be captured even so. */
124 USBDEVICESTATE_USED_BY_HOST_CAPTURABLE,
125 /** The device is not used by the host or any guest. */
126 USBDEVICESTATE_UNUSED,
127 /** The device is held by the proxy for later guest usage. */
128 USBDEVICESTATE_HELD_BY_PROXY,
129 /** The device in use by a guest. */
130 USBDEVICESTATE_USED_BY_GUEST,
131 /** The usual 32-bit hack. */
132 USBDEVICESTATE_32BIT_HACK = 0x7fffffff
133} USBDEVICESTATE;
134
135
136/**
137 * USB host device description.
138 * Used for enumeration of USB devices.
139 */
140typedef struct USBDEVICE
141{
142 /** USB version number. */
143 uint16_t bcdUSB;
144 /** Device class. */
145 uint8_t bDeviceClass;
146 /** Device subclass. */
147 uint8_t bDeviceSubClass;
148 /** Device protocol */
149 uint8_t bDeviceProtocol;
150 /** Vendor ID. */
151 uint16_t idVendor;
152 /** Product ID. */
153 uint16_t idProduct;
154 /** Revision, integer part. */
155 uint16_t bcdDevice;
156 /** Manufacturer string. */
157 const char *pszManufacturer;
158 /** Product string. */
159 const char *pszProduct;
160 /** Serial number string. */
161 const char *pszSerialNumber;
162 /** Serial hash. */
163 uint64_t u64SerialHash;
164 /** Number of configurations. */
165 uint8_t bNumConfigurations;
166 /** Pointer to an array of configurations. */
167 PUSBCONFIG paConfigurations;
168 /** The device state. */
169 USBDEVICESTATE enmState;
170 /** The address of the device. */
171 const char *pszAddress;
172
173 /** The USB Bus number. */
174 uint8_t bBus;
175 /** The level in topologly for this bus. */
176 uint8_t bLevel;
177 /** Device number. */
178 uint8_t bDevNum;
179 /** Parent device number. */
180 uint8_t bDevNumParent;
181 /** The port number. */
182 uint8_t bPort;
183 /** Number of devices on this level. */
184 uint8_t bNumDevices;
185 /** Maximum number of children. */
186 uint8_t bMaxChildren;
187
188 /** If linked, this is the pointer to the next device in the list. */
189 struct USBDEVICE *pNext;
190 /** If linked doubly, this is the pointer to the prev device in the list. */
191 struct USBDEVICE *pPrev;
192} USBDEVICE;
193/** Pointer to a USB device. */
194typedef USBDEVICE *PUSBDEVICE;
195/** Pointer to a const USB device. */
196typedef USBDEVICE *PCUSBDEVICE;
197
198__END_DECLS
199
200#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