VirtualBox

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

Last change on this file since 14972 was 13452, checked in by vboxsync, 16 years ago

Solaris/USB: Get rid of compile time descisions regarding r3 device descriptors.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 7.5 KB
Line 
1/** @file
2 * USB - Universal Serial Bus.
3 */
4
5/*
6 * Copyright (C) 2006-2007 Sun Microsystems, Inc.
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 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
26 * Clara, CA 95054 USA or visit http://www.sun.com if you need
27 * additional information or have any questions.
28 */
29
30#ifndef ___VBox_usb_h
31#define ___VBox_usb_h
32
33#include <VBox/types.h>
34
35__BEGIN_DECLS
36
37/**
38 * The USB host device state.
39 */
40typedef enum USBDEVICESTATE
41{
42 /** The device is unsupported. */
43 USBDEVICESTATE_UNSUPPORTED = 1,
44 /** The device is in use by the host. */
45 USBDEVICESTATE_USED_BY_HOST,
46 /** The device is in use by the host but could perhaps be captured even so. */
47 USBDEVICESTATE_USED_BY_HOST_CAPTURABLE,
48 /** The device is not used by the host or any guest. */
49 USBDEVICESTATE_UNUSED,
50 /** The device is held by the proxy for later guest usage. */
51 USBDEVICESTATE_HELD_BY_PROXY,
52 /** The device in use by a guest. */
53 USBDEVICESTATE_USED_BY_GUEST,
54 /** The usual 32-bit hack. */
55 USBDEVICESTATE_32BIT_HACK = 0x7fffffff
56} USBDEVICESTATE;
57
58
59/**
60 * The USB device speed.
61 */
62typedef enum USBDEVICESPEED
63{
64 /** Unknown. */
65 USBDEVICESPEED_UNKNOWN = 0,
66 /** Low speed (1.5 Mbit/s). */
67 USBDEVICESPEED_LOW,
68 /** Full speed (12 Mbit/s). */
69 USBDEVICESPEED_FULL,
70 /** High speed (480 Mbit/s). */
71 USBDEVICESPEED_HIGH,
72 /** Variable speed - USB 2.5 / wireless. */
73 USBDEVICESPEED_VARIABLE,
74 /** The usual 32-bit hack. */
75 USBDEVICESPEED_32BIT_HACK = 0x7fffffff
76} USBDEVICESPEED;
77
78
79/**
80 * USB host device description.
81 * Used for enumeration of USB devices.
82 */
83typedef struct USBDEVICE
84{
85 /** If linked, this is the pointer to the next device in the list. */
86 struct USBDEVICE *pNext;
87 /** If linked doubly, this is the pointer to the prev device in the list. */
88 struct USBDEVICE *pPrev;
89 /** Manufacturer string. */
90 const char *pszManufacturer;
91 /** Product string. */
92 const char *pszProduct;
93 /** Serial number string. */
94 const char *pszSerialNumber;
95 /** The address of the device. */
96 const char *pszAddress;
97
98 /** Vendor ID. */
99 uint16_t idVendor;
100 /** Product ID. */
101 uint16_t idProduct;
102 /** Revision, integer part. */
103 uint16_t bcdDevice;
104 /** USB version number. */
105 uint16_t bcdUSB;
106 /** Device class. */
107 uint8_t bDeviceClass;
108 /** Device subclass. */
109 uint8_t bDeviceSubClass;
110 /** Device protocol */
111 uint8_t bDeviceProtocol;
112 /** Number of configurations. */
113 uint8_t bNumConfigurations;
114 /** The device state. */
115 USBDEVICESTATE enmState;
116 /** The device speed. */
117 USBDEVICESPEED enmSpeed;
118 /** Serial hash. */
119 uint64_t u64SerialHash;
120 /** The USB Bus number. */
121 uint8_t bBus;
122 /** The port number. */
123 uint8_t bPort;
124#if defined(RT_OS_LINUX)
125 /** Device number. */
126 uint8_t bDevNum;
127#endif
128#ifdef RT_OS_WINDOWS
129 /** Alternate address. Can be NULL. */
130 char *pszAltAddress;
131 /** The hub name. */
132 char *pszHubName;
133#endif
134#ifdef RT_OS_SOLARIS
135 /** The /devices path of the device. */
136 char *pszDevicePath;
137 /** Do we have a partial or full device descriptor here. */
138 bool fPartialDescriptor;
139#endif
140} USBDEVICE;
141/** Pointer to a USB device. */
142typedef USBDEVICE *PUSBDEVICE;
143/** Pointer to a const USB device. */
144typedef USBDEVICE *PCUSBDEVICE;
145
146
147#ifdef VBOX_USB_H_INCL_DESCRIPTORS /* for the time being, since this may easily conflict with system headers */
148
149/**
150 * USB device descriptor.
151 */
152#pragma pack(1)
153typedef struct USBDESCHDR
154{
155 /** The descriptor length. */
156 uint8_t bLength;
157 /** The descriptor type. */
158 uint8_t bDescriptorType;
159} USBDESCHDR;
160#pragma pack()
161/** Pointer to an USB descriptor header. */
162typedef USBDESCHDR *PUSBDESCHDR;
163
164/** @name Descriptor Type values (bDescriptorType)
165 * {@ */
166#if !defined(USB_DT_DEVICE) && !defined(USB_DT_ENDPOINT)
167# define USB_DT_DEVICE 0x01
168# define USB_DT_CONFIG 0x02
169# define USB_DT_STRING 0x03
170# define USB_DT_INTERFACE 0x04
171# define USB_DT_ENDPOINT 0x05
172
173# define USB_DT_HID 0x21
174# define USB_DT_REPORT 0x22
175# define USB_DT_PHYSICAL 0x23
176# define USB_DT_HUB 0x29
177#endif
178/** @} */
179
180
181/**
182 * USB device descriptor.
183 */
184#pragma pack(1)
185typedef struct USBDEVICEDESC
186{
187 /** The descriptor length. (Usually sizeof(USBDEVICEDESC).) */
188 uint8_t bLength;
189 /** The descriptor type. (USB_DT_DEVICE) */
190 uint8_t bDescriptorType;
191 /** USB version number. */
192 uint16_t bcdUSB;
193 /** Device class. */
194 uint8_t bDeviceClass;
195 /** Device subclass. */
196 uint8_t bDeviceSubClass;
197 /** Device protocol */
198 uint8_t bDeviceProtocol;
199 /** The max packet size of the default control pipe. */
200 uint8_t bMaxPacketSize0;
201 /** Vendor ID. */
202 uint16_t idVendor;
203 /** Product ID. */
204 uint16_t idProduct;
205 /** Revision, integer part. */
206 uint16_t bcdDevice;
207 /** Manufacturer string index. */
208 uint8_t iManufacturer;
209 /** Product string index. */
210 uint8_t iProduct;
211 /** Serial number string index. */
212 uint8_t iSerialNumber;
213 /** Number of configurations. */
214 uint8_t bNumConfigurations;
215} USBDEVICEDESC;
216#pragma pack()
217/** Pointer to an USB device descriptor. */
218typedef USBDEVICEDESC *PUSBDEVICEDESC;
219
220/** @name Class codes (bDeviceClass)
221 * @{ */
222#ifndef USB_HUB_CLASSCODE
223# define USB_HUB_CLASSCODE 0x09
224#endif
225/** @} */
226
227/**
228 * USB configuration descriptor.
229 */
230#pragma pack(1)
231typedef struct USBCONFIGDESC
232{
233 /** The descriptor length. (Usually sizeof(USBCONFIGDESC).) */
234 uint8_t bLength;
235 /** The descriptor type. (USB_DT_CONFIG) */
236 uint8_t bDescriptorType;
237 /** The length of the configuration descriptor plus all associated descriptors. */
238 uint16_t wTotalLength;
239 /** Number of interfaces. */
240 uint8_t bNumInterfaces;
241 /** Configuration number. (For SetConfiguration().) */
242 uint8_t bConfigurationValue;
243 /** Configuration description string. */
244 uint8_t iConfiguration;
245 /** Configuration characteristics. */
246 uint8_t bmAttributes;
247 /** Maximum power consumption of the USB device in this config. */
248 uint8_t MaxPower;
249} USBCONFIGDESC;
250#pragma pack()
251/** Pointer to an USB configuration descriptor. */
252typedef USBCONFIGDESC *PUSBCONFIGDESC;
253
254#endif /* VBOX_USB_H_INCL_DESCRIPTORS */
255
256__END_DECLS
257
258#endif
259
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