Fix corner case in the HID report descriptor Mouse/Joystick tempates at the 8/16...
[pub/USBasp.git] / LUFA / Drivers / USB / Class / Common / RNDIS.h
1 /*
2 LUFA Library
3 Copyright (C) Dean Camera, 2011.
4
5 dean [at] fourwalledcubicle [dot] com
6 www.lufa-lib.org
7 */
8
9 /*
10 Copyright 2011 Dean Camera (dean [at] fourwalledcubicle [dot] com)
11
12 Permission to use, copy, modify, distribute, and sell this
13 software and its documentation for any purpose is hereby granted
14 without fee, provided that the above copyright notice appear in
15 all copies and that both that the copyright notice and this
16 permission notice and warranty disclaimer appear in supporting
17 documentation, and that the name of the author not be used in
18 advertising or publicity pertaining to distribution of the
19 software without specific, written prior permission.
20
21 The author disclaim all warranties with regard to this
22 software, including all implied warranties of merchantability
23 and fitness. In no event shall the author be liable for any
24 special, indirect or consequential damages or any damages
25 whatsoever resulting from loss of use, data or profits, whether
26 in an action of contract, negligence or other tortious action,
27 arising out of or in connection with the use or performance of
28 this software.
29 */
30
31 /** \file
32 * \brief Common definitions and declarations for the library USB RNDIS Class driver.
33 *
34 * Common definitions and declarations for the library USB RNDIS Class driver.
35 *
36 * \note This file should not be included directly. It is automatically included as needed by the USB module driver
37 * dispatch header located in LUFA/Drivers/USB.h.
38 */
39
40 /** \ingroup Group_USBClassRNDIS
41 * \defgroup Group_USBClassRNDISCommon Common Class Definitions
42 *
43 * \section Sec_ModDescription Module Description
44 * Constants, Types and Enum definitions that are common to both Device and Host modes for the USB
45 * RNDIS Class.
46 *
47 * @{
48 */
49
50 #ifndef _RNDIS_CLASS_COMMON_H_
51 #define _RNDIS_CLASS_COMMON_H_
52
53 /* Macros: */
54 #define __INCLUDE_FROM_CDC_DRIVER
55
56 /* Includes: */
57 #include "../../Core/StdDescriptors.h"
58 #include "CDC.h"
59
60 /* Enable C linkage for C++ Compilers: */
61 #if defined(__cplusplus)
62 extern "C" {
63 #endif
64
65 /* Preprocessor Checks: */
66 #if !defined(__INCLUDE_FROM_RNDIS_DRIVER)
67 #error Do not include this file directly. Include LUFA/Drivers/USB.h instead.
68 #endif
69
70 /* Macros: */
71 /** Implemented RNDIS Version Major. */
72 #define REMOTE_NDIS_VERSION_MAJOR 0x01
73
74 /** Implemented RNDIS Version Minor. */
75 #define REMOTE_NDIS_VERSION_MINOR 0x00
76
77 /** \name RNDIS Message Values */
78 //@{
79 #define REMOTE_NDIS_PACKET_MSG 0x00000001UL
80 #define REMOTE_NDIS_INITIALIZE_MSG 0x00000002UL
81 #define REMOTE_NDIS_HALT_MSG 0x00000003UL
82 #define REMOTE_NDIS_QUERY_MSG 0x00000004UL
83 #define REMOTE_NDIS_SET_MSG 0x00000005UL
84 #define REMOTE_NDIS_RESET_MSG 0x00000006UL
85 #define REMOTE_NDIS_INDICATE_STATUS_MSG 0x00000007UL
86 #define REMOTE_NDIS_KEEPALIVE_MSG 0x00000008UL
87 //@}
88
89 /** \name RNDIS Response Values */
90 //@{
91 #define REMOTE_NDIS_INITIALIZE_CMPLT 0x80000002UL
92 #define REMOTE_NDIS_QUERY_CMPLT 0x80000004UL
93 #define REMOTE_NDIS_SET_CMPLT 0x80000005UL
94 #define REMOTE_NDIS_RESET_CMPLT 0x80000006UL
95 #define REMOTE_NDIS_KEEPALIVE_CMPLT 0x80000008UL
96 //@}
97
98 /** \name RNDIS Status Values */
99 //@{
100 #define REMOTE_NDIS_STATUS_SUCCESS 0x00000000UL
101 #define REMOTE_NDIS_STATUS_FAILURE 0xC0000001UL
102 #define REMOTE_NDIS_STATUS_INVALID_DATA 0xC0010015UL
103 #define REMOTE_NDIS_STATUS_NOT_SUPPORTED 0xC00000BBUL
104 #define REMOTE_NDIS_STATUS_MEDIA_CONNECT 0x4001000BUL
105 #define REMOTE_NDIS_STATUS_MEDIA_DISCONNECT 0x4001000CUL
106 //@}
107
108 /** \name RNDIS Media States */
109 //@{
110 #define REMOTE_NDIS_MEDIA_STATE_CONNECTED 0x00000000UL
111 #define REMOTE_NDIS_MEDIA_STATE_DISCONNECTED 0x00000001UL
112 //@}
113
114 #define REMOTE_NDIS_MEDIUM_802_3 0x00000000UL
115
116 /** \name RNDIS Connection Types */
117 //@{
118 #define REMOTE_NDIS_DF_CONNECTIONLESS 0x00000001UL
119 #define REMOTE_NDIS_DF_CONNECTION_ORIENTED 0x00000002UL
120 //@}
121
122 /** \name RNDIS Packet Types */
123 //@{
124 #define REMOTE_NDIS_PACKET_DIRECTED 0x00000001UL
125 #define REMOTE_NDIS_PACKET_MULTICAST 0x00000002UL
126 #define REMOTE_NDIS_PACKET_ALL_MULTICAST 0x00000004UL
127 #define REMOTE_NDIS_PACKET_BROADCAST 0x00000008UL
128 #define REMOTE_NDIS_PACKET_SOURCE_ROUTING 0x00000010UL
129 #define REMOTE_NDIS_PACKET_PROMISCUOUS 0x00000020UL
130 #define REMOTE_NDIS_PACKET_SMT 0x00000040UL
131 #define REMOTE_NDIS_PACKET_ALL_LOCAL 0x00000080UL
132 #define REMOTE_NDIS_PACKET_GROUP 0x00001000UL
133 #define REMOTE_NDIS_PACKET_ALL_FUNCTIONAL 0x00002000UL
134 #define REMOTE_NDIS_PACKET_FUNCTIONAL 0x00004000UL
135 #define REMOTE_NDIS_PACKET_MAC_FRAME 0x00008000UL
136 //@}
137
138 /** \name RNDIS OID Values */
139 //@{
140 #define OID_GEN_SUPPORTED_LIST 0x00010101UL
141 #define OID_GEN_HARDWARE_STATUS 0x00010102UL
142 #define OID_GEN_MEDIA_SUPPORTED 0x00010103UL
143 #define OID_GEN_MEDIA_IN_USE 0x00010104UL
144 #define OID_GEN_MAXIMUM_FRAME_SIZE 0x00010106UL
145 #define OID_GEN_MAXIMUM_TOTAL_SIZE 0x00010111UL
146 #define OID_GEN_LINK_SPEED 0x00010107UL
147 #define OID_GEN_TRANSMIT_BLOCK_SIZE 0x0001010AUL
148 #define OID_GEN_RECEIVE_BLOCK_SIZE 0x0001010BUL
149 #define OID_GEN_VENDOR_ID 0x0001010CUL
150 #define OID_GEN_VENDOR_DESCRIPTION 0x0001010DUL
151 #define OID_GEN_CURRENT_PACKET_FILTER 0x0001010EUL
152 #define OID_GEN_MAXIMUM_TOTAL_SIZE 0x00010111UL
153 #define OID_GEN_MEDIA_CONNECT_STATUS 0x00010114UL
154 #define OID_GEN_PHYSICAL_MEDIUM 0x00010202UL
155 #define OID_GEN_XMIT_OK 0x00020101UL
156 #define OID_GEN_RCV_OK 0x00020102UL
157 #define OID_GEN_XMIT_ERROR 0x00020103UL
158 #define OID_GEN_RCV_ERROR 0x00020104UL
159 #define OID_GEN_RCV_NO_BUFFER 0x00020105UL
160 #define OID_802_3_PERMANENT_ADDRESS 0x01010101UL
161 #define OID_802_3_CURRENT_ADDRESS 0x01010102UL
162 #define OID_802_3_MULTICAST_LIST 0x01010103UL
163 #define OID_802_3_MAXIMUM_LIST_SIZE 0x01010104UL
164 #define OID_802_3_RCV_ERROR_ALIGNMENT 0x01020101UL
165 #define OID_802_3_XMIT_ONE_COLLISION 0x01020102UL
166 #define OID_802_3_XMIT_MORE_COLLISIONS 0x01020103UL
167 //@}
168
169 /** Maximum size in bytes of a RNDIS control message which can be sent or received. */
170 #define RNDIS_MESSAGE_BUFFER_SIZE 128
171
172 /** Maximum size in bytes of an Ethernet frame according to the Ethernet standard. */
173 #define ETHERNET_FRAME_SIZE_MAX 1500
174
175 /* Enums: */
176 /** Enum for the RNDIS class specific control requests that can be issued by the USB bus host. */
177 enum RNDIS_ClassRequests_t
178 {
179 RNDIS_REQ_SendEncapsulatedCommand = 0x00, /**< RNDIS request to issue a host-to-device NDIS command. */
180 RNDIS_REQ_GetEncapsulatedResponse = 0x01, /**< RNDIS request to issue a device-to-host NDIS response. */
181 };
182
183 /** Enum for the possible NDIS adapter states. */
184 enum RNDIS_States_t
185 {
186 RNDIS_Uninitialized = 0, /**< Adapter currently uninitialized. */
187 RNDIS_Initialized = 1, /**< Adapter currently initialized but not ready for data transfers. */
188 RNDIS_Data_Initialized = 2, /**< Adapter currently initialized and ready for data transfers. */
189 };
190
191 /** Enum for the RNDIS class specific notification requests that can be issued by a RNDIS device to a host. */
192 enum RNDIS_ClassNotifications_t
193 {
194 RNDIS_NOTIF_ResponseAvailable = 0x01, /**< Notification request value for a RNDIS Response Available notification. */
195 };
196
197 /** Enum for the NDIS hardware states. */
198 enum NDIS_Hardware_Status_t
199 {
200 NDIS_HardwareStatus_Ready, /**< Hardware Ready to accept commands from the host. */
201 NDIS_HardwareStatus_Initializing, /**< Hardware busy initializing. */
202 NDIS_HardwareStatus_Reset, /**< Hardware reset. */
203 NDIS_HardwareStatus_Closing, /**< Hardware currently closing. */
204 NDIS_HardwareStatus_NotReady /**< Hardware not ready to accept commands from the host. */
205 };
206
207 /* Type Defines: */
208 /** \brief MAC Address Structure.
209 *
210 * Type define for a physical MAC address of a device on a network.
211 */
212 typedef struct
213 {
214 uint8_t Octets[6]; /**< Individual bytes of a MAC address */
215 } ATTR_PACKED MAC_Address_t;
216
217 /** \brief RNDIS Ethernet Frame Packet Information Structure.
218 *
219 * Type define for an Ethernet frame buffer data and information structure.
220 */
221 typedef struct
222 {
223 uint8_t FrameData[ETHERNET_FRAME_SIZE_MAX]; /**< Ethernet frame contents. */
224 uint16_t FrameLength; /**< Length in bytes of the Ethernet frame stored in the buffer. */
225 bool FrameInBuffer; /**< Indicates if a frame is currently stored in the buffer. */
226 } ATTR_PACKED Ethernet_Frame_Info_t;
227
228 /** \brief RNDIS Common Message Header Structure.
229 *
230 * Type define for a RNDIS message header, sent before RNDIS messages.
231 */
232 typedef struct
233 {
234 uint32_t MessageType; /**< RNDIS message type, a \c REMOTE_NDIS_*_MSG constant */
235 uint32_t MessageLength; /**< Total length of the RNDIS message, in bytes */
236 } ATTR_PACKED RNDIS_Message_Header_t;
237
238 /** \brief RNDIS Message Structure.
239 *
240 * Type define for a RNDIS packet message, used to encapsulate Ethernet packets sent to and from the adapter.
241 */
242 typedef struct
243 {
244 uint32_t MessageType;
245 uint32_t MessageLength;
246 uint32_t DataOffset;
247 uint32_t DataLength;
248 uint32_t OOBDataOffset;
249 uint32_t OOBDataLength;
250 uint32_t NumOOBDataElements;
251 uint32_t PerPacketInfoOffset;
252 uint32_t PerPacketInfoLength;
253 uint32_t VcHandle;
254 uint32_t Reserved;
255 } ATTR_PACKED RNDIS_Packet_Message_t;
256
257 /** \brief RNDIS Initialization Message Structure.
258 *
259 * Type define for a RNDIS Initialize command message.
260 */
261 typedef struct
262 {
263 uint32_t MessageType;
264 uint32_t MessageLength;
265 uint32_t RequestId;
266
267 uint32_t MajorVersion;
268 uint32_t MinorVersion;
269 uint32_t MaxTransferSize;
270 } ATTR_PACKED RNDIS_Initialize_Message_t;
271
272 /** \brief RNDIS Initialize Complete Message Structure.
273 *
274 * Type define for a RNDIS Initialize Complete response message.
275 */
276 typedef struct
277 {
278 uint32_t MessageType;
279 uint32_t MessageLength;
280 uint32_t RequestId;
281 uint32_t Status;
282
283 uint32_t MajorVersion;
284 uint32_t MinorVersion;
285 uint32_t DeviceFlags;
286 uint32_t Medium;
287 uint32_t MaxPacketsPerTransfer;
288 uint32_t MaxTransferSize;
289 uint32_t PacketAlignmentFactor;
290 uint32_t AFListOffset;
291 uint32_t AFListSize;
292 } ATTR_PACKED RNDIS_Initialize_Complete_t;
293
294 /** \brief RNDIS Keep Alive Message Structure.
295 *
296 * Type define for a RNDIS Keep Alive command message.
297 */
298 typedef struct
299 {
300 uint32_t MessageType;
301 uint32_t MessageLength;
302 uint32_t RequestId;
303 } ATTR_PACKED RNDIS_KeepAlive_Message_t;
304
305 /** \brief RNDIS Keep Alive Complete Message Structure.
306 *
307 * Type define for a RNDIS Keep Alive Complete response message.
308 */
309 typedef struct
310 {
311 uint32_t MessageType;
312 uint32_t MessageLength;
313 uint32_t RequestId;
314 uint32_t Status;
315 } ATTR_PACKED RNDIS_KeepAlive_Complete_t;
316
317 /** \brief RNDIS Reset Complete Message Structure.
318 *
319 * Type define for a RNDIS Reset Complete response message.
320 */
321 typedef struct
322 {
323 uint32_t MessageType;
324 uint32_t MessageLength;
325 uint32_t Status;
326
327 uint32_t AddressingReset;
328 } ATTR_PACKED RNDIS_Reset_Complete_t;
329
330 /** \brief RNDIS OID Property Set Message Structure.
331 *
332 * Type define for a RNDIS OID Property Set command message.
333 */
334 typedef struct
335 {
336 uint32_t MessageType;
337 uint32_t MessageLength;
338 uint32_t RequestId;
339
340 uint32_t Oid;
341 uint32_t InformationBufferLength;
342 uint32_t InformationBufferOffset;
343 uint32_t DeviceVcHandle;
344 } ATTR_PACKED RNDIS_Set_Message_t;
345
346 /** \brief RNDIS OID Property Set Complete Message Structure.
347 *
348 * Type define for a RNDIS OID Property Set Complete response message.
349 */
350 typedef struct
351 {
352 uint32_t MessageType;
353 uint32_t MessageLength;
354 uint32_t RequestId;
355 uint32_t Status;
356 } ATTR_PACKED RNDIS_Set_Complete_t;
357
358 /** \brief RNDIS OID Property Query Message Structure.
359 *
360 * Type define for a RNDIS OID Property Query command message.
361 */
362 typedef struct
363 {
364 uint32_t MessageType;
365 uint32_t MessageLength;
366 uint32_t RequestId;
367
368 uint32_t Oid;
369 uint32_t InformationBufferLength;
370 uint32_t InformationBufferOffset;
371 uint32_t DeviceVcHandle;
372 } ATTR_PACKED RNDIS_Query_Message_t;
373
374 /** \brief RNDIS OID Property Query Complete Message Structure.
375 *
376 * Type define for a RNDIS OID Property Query Complete response message.
377 */
378 typedef struct
379 {
380 uint32_t MessageType;
381 uint32_t MessageLength;
382 uint32_t RequestId;
383 uint32_t Status;
384
385 uint32_t InformationBufferLength;
386 uint32_t InformationBufferOffset;
387 } ATTR_PACKED RNDIS_Query_Complete_t;
388
389 /* Disable C linkage for C++ Compilers: */
390 #if defined(__cplusplus)
391 }
392 #endif
393
394 #endif
395
396 /** @} */
397