First public contribution.
1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of the License "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #ifndef D32USBDESCRIPTORS_H
17 #define D32USBDESCRIPTORS_H
22 /*****************************************************************************/
24 /* USB descriptors parser framework */
26 /*****************************************************************************/
28 class TUsbGenericDescriptor;
31 The Symbian USB Descriptor Parsing Framework class.
33 This class is to aid users of USBDI by providing the facilities to parse the
34 raw descriptor data into wrapper classes that allow access to the fields in
35 the descriptor bodies, and pointers to map the serial data blob into the tree
36 structure that descriptors logically have.
38 @publishedPartner Intended to be available to 3rd parties later
41 NONSHARABLE_CLASS(UsbDescriptorParser)
44 typedef TUsbGenericDescriptor* (*TUsbDescriptorParserL)(TPtrC8& aUsbDes, TUsbGenericDescriptor* aPreviousDesc);
47 // Main parse function.
48 IMPORT_C static TInt Parse(const TDesC8& aUsbDes, TUsbGenericDescriptor*& aDesc);
50 // Custom parsing framework.
51 IMPORT_C static void RegisterCustomParserL(TUsbDescriptorParserL aParserFunc);
52 IMPORT_C static void UnregisterCustomParser(TUsbDescriptorParserL aParserFunc);
55 static TUsbGenericDescriptor* FindParserAndParseAndCheckL(TPtrC8& aUsbDes, TUsbGenericDescriptor* aPreviousDesc);
56 static TUsbGenericDescriptor* FindParserAndParseL(TPtrC8& aUsbDes, TUsbGenericDescriptor* aPreviousDesc);
57 static void ParseDescriptorTreeL(TPtrC8& aUsbDes, TUsbGenericDescriptor& aPreviousDesc);
58 static void BuildTreeL(TUsbGenericDescriptor& aNewDesc, TUsbGenericDescriptor& aPreviousDesc);
59 static TUsbGenericDescriptor& FindSuitableParentL(TUsbGenericDescriptor& aNewDesc, TUsbGenericDescriptor& aTopParent);
60 static TUsbGenericDescriptor* UnknownUsbDescriptorParserL(TPtrC8& aUsbDes, TUsbGenericDescriptor* aPreviousDesc);
64 /*****************************************************************************/
66 /* USB standard descriptors */
68 /*****************************************************************************/
72 Base class for USB descriptors.
73 All USB descriptors contain type and length, and may have peers and children.
75 @publishedPartner Intended to be available to 3rd parties later
78 class TUsbGenericDescriptor
81 IMPORT_C TUsbGenericDescriptor();
83 IMPORT_C void DestroyTree();
85 IMPORT_C TUint8 TUint8At(TInt aOffset) const;
86 IMPORT_C TUint16 TUint16At(TInt aOffset) const;
87 IMPORT_C TUint32 TUint32At(TInt aOffset) const;
89 IMPORT_C TUsbGenericDescriptor& operator=(const TUsbGenericDescriptor& aDescriptor);
92 Helper function to allow TUsbGenericDescriptor types to be placed on the cleanup stack.
94 inline operator TCleanupItem() { return TCleanupItem(Cleanup,this); }
97 virtual TBool IsParent(TUsbGenericDescriptor& aPotentialParent);
98 virtual TBool IsPeer(TUsbGenericDescriptor& aPotentialPeer);
99 virtual TBool IsChild(TUsbGenericDescriptor& aPotentialChild);
102 IMPORT_C static void Cleanup(TAny* aPtr);
103 static void WalkAndDelete(TUsbGenericDescriptor* aDesc);
105 public: // USB standard fields
107 The offset in a standard USB descriptor to the bLength field.
109 static const TInt KbLengthOffset = 0;
112 The offset in a standard USB descriptor to the bDescriptorType field.
114 static const TInt KbDescriptorTypeOffset = 1;
117 Standard Length field.
124 TUint8 ibDescriptorType;
128 The flag to indicate whether the USB descriptor has been recognised
131 enum TUsbGenericDescriptorFlags
133 EUnrecognised = 0x00,
137 public: // Symbian generated fields
139 Flag to show if the descriptor has been recognised and parsed, or if its data can only be represented as a
140 binary blob. This field should particularly be checked if writing code which may run on older versions of
141 the operating system, where a (now) known descriptor may not have been parsed, or before parsing a new
142 descriptor from a blob, where later versions of the operating system may have already extracted the fields.
144 TUint8 iRecognisedAndParsed;
147 A pointer to the next peer of this descriptor, or NULL.
148 As an example, an endpoint descriptor will contain pointers to any other endpoint descriptors on the same
151 TUsbGenericDescriptor* iNextPeer;
154 A pointer to the first child of this descriptor, or NULL.
155 As an example, an interface descriptor will contain a pointer to the first endpoint descriptor on the
156 interface. The iNextPeer member can then be used to examine other endpoints on the interface.
158 TUsbGenericDescriptor* iFirstChild;
161 A pointer to the parent to this descriptor, or NULL.
162 As an example an endpoint descriptor from a configuration bundle will have the interface that it
163 is a member of as it's parent.
165 TUsbGenericDescriptor* iParent;
168 The binary blob that contains this descriptor
173 enum TUsbDescriptorType
180 EDeviceQualifier = 6,
181 EOtherSpeedConfiguration = 7,
185 EInterfaceAssociation = 11,
191 See section 9.6.1 of the USB 2.0 specification.
193 @publishedPartner Intended to be available to 3rd parties later
196 NONSHARABLE_CLASS(TUsbDeviceDescriptor) : public TUsbGenericDescriptor
199 IMPORT_C TUsbDeviceDescriptor();
200 IMPORT_C static TUsbDeviceDescriptor* Cast(TUsbGenericDescriptor* aOriginal);
203 static const TInt KSizeInOctets = 18;
208 EbDeviceSubClass = 5,
209 EbDeviceProtocol = 6,
210 EbMaxPacketSize0 = 7,
217 EbNumConfigurations = 17
221 IMPORT_C TUint16 USBBcd() const;
222 IMPORT_C TUint8 DeviceClass() const;
223 IMPORT_C TUint8 DeviceSubClass() const;
224 IMPORT_C TUint8 DeviceProtocol() const;
225 IMPORT_C TUint8 MaxPacketSize0() const;
226 IMPORT_C TUint16 VendorId() const;
227 IMPORT_C TUint16 ProductId() const;
228 IMPORT_C TUint16 DeviceBcd() const;
229 IMPORT_C TUint8 ManufacturerIndex() const;
230 IMPORT_C TUint8 ProductIndex() const;
231 IMPORT_C TUint8 SerialNumberIndex() const;
232 IMPORT_C TUint8 NumConfigurations() const;
235 static TUsbDeviceDescriptor* ParseL(TPtrC8& aUsbDes, TUsbGenericDescriptor* aPreviousDesc);
236 virtual TBool IsParent(TUsbGenericDescriptor& aPotentialParent);
237 virtual TBool IsPeer(TUsbGenericDescriptor& aPotentialPeer);
242 Device Qualifier descriptor.
244 See section 9.6.2 of the USB 2.0 specification.
246 @publishedPartner Intended to be available to 3rd parties later
249 NONSHARABLE_CLASS(TUsbDeviceQualifierDescriptor) : public TUsbGenericDescriptor
252 IMPORT_C TUsbDeviceQualifierDescriptor();
253 IMPORT_C static TUsbDeviceQualifierDescriptor* Cast(TUsbGenericDescriptor* aOriginal);
256 static const TInt KSizeInOctets = 10;
261 EbDeviceSubClass = 5,
262 EbDeviceProtocol = 6,
263 EbMaxPacketSize0 = 7,
264 EbNumConfigurations = 8,
269 IMPORT_C TUint16 USBBcd() const;
270 IMPORT_C TUint8 DeviceClass() const;
271 IMPORT_C TUint8 DeviceSubClass() const;
272 IMPORT_C TUint8 DeviceProtocol() const;
273 IMPORT_C TUint8 MaxPacketSize0() const;
274 IMPORT_C TUint8 NumConfigurations() const;
275 IMPORT_C TUint8 Reserved() const;
278 static TUsbDeviceQualifierDescriptor* ParseL(TPtrC8& aUsbDes, TUsbGenericDescriptor* aPreviousDesc);
279 virtual TBool IsParent(TUsbGenericDescriptor& aPotentialParent);
280 virtual TBool IsPeer(TUsbGenericDescriptor& aPotentialPeer);
285 Configuration descriptor.
287 See section 9.6.3 of the USB 2.0 specification.
289 @publishedPartner Intended to be available to 3rd parties later
292 NONSHARABLE_CLASS(TUsbConfigurationDescriptor) : public TUsbGenericDescriptor
295 IMPORT_C TUsbConfigurationDescriptor();
296 IMPORT_C static TUsbConfigurationDescriptor* Cast(TUsbGenericDescriptor* aOriginal);
299 static const TInt KSizeInOctets = 9;
304 EbConfigurationValue = 5,
311 IMPORT_C TUint16 TotalLength() const;
312 IMPORT_C TUint8 NumInterfaces() const;
313 IMPORT_C TUint8 ConfigurationValue() const;
314 IMPORT_C TUint8 ConfigurationIndex() const;
315 IMPORT_C TUint8 Attributes() const;
316 IMPORT_C TUint8 MaxPower() const;
319 static TUsbConfigurationDescriptor* ParseL(TPtrC8& aUsbDes, TUsbGenericDescriptor* aPreviousDesc);
320 virtual TBool IsParent(TUsbGenericDescriptor& aPotentialParent);
321 virtual TBool IsPeer(TUsbGenericDescriptor& aPotentialPeer);
326 Other Speed descriptor.
328 See section 9.6.4 of the USB 2.0 specification.
330 @publishedPartner Intended to be available to 3rd parties later
333 NONSHARABLE_CLASS(TUsbOtherSpeedDescriptor) : public TUsbGenericDescriptor
336 IMPORT_C TUsbOtherSpeedDescriptor();
337 IMPORT_C static TUsbOtherSpeedDescriptor* Cast(TUsbGenericDescriptor* aOriginal);
340 static const TInt KSizeInOctets = 9;
345 EbConfigurationValue = 5,
352 IMPORT_C TUint16 TotalLength() const;
353 IMPORT_C TUint8 NumInterfaces() const;
354 IMPORT_C TUint8 ConfigurationValue() const;
355 IMPORT_C TUint8 ConfigurationIndex() const;
356 IMPORT_C TUint8 Attributes() const;
357 IMPORT_C TUint8 MaxPower() const;
360 static TUsbOtherSpeedDescriptor* ParseL(TPtrC8& aUsbDes, TUsbGenericDescriptor* aPreviousDesc);
361 virtual TBool IsParent(TUsbGenericDescriptor& aPotentialParent);
362 virtual TBool IsPeer(TUsbGenericDescriptor& aPotentialPeer);
367 Interface Association Descriptor
371 @publishedPartner Intended to be available to 3rd parties later
374 NONSHARABLE_CLASS(TUsbInterfaceAssociationDescriptor) : public TUsbGenericDescriptor
377 IMPORT_C TUsbInterfaceAssociationDescriptor();
378 IMPORT_C static TUsbInterfaceAssociationDescriptor* Cast(TUsbGenericDescriptor* aOriginal);
381 static const TInt KSizeInOctets = 8;
384 EbFirstInterface = 2,
385 EbInterfaceCount = 3,
387 EbFunctionSubClass = 5,
388 EbFunctionProtocol = 6,
393 IMPORT_C TUint8 FirstInterface() const;
394 IMPORT_C TUint8 InterfaceCount() const;
395 IMPORT_C TUint8 FunctionClass() const;
396 IMPORT_C TUint8 FunctionSubClass() const;
397 IMPORT_C TUint8 FunctionProtocol() const;
398 IMPORT_C TUint8 FunctionIndex() const;
401 static TUsbInterfaceAssociationDescriptor* ParseL(TPtrC8& aUsbDes, TUsbGenericDescriptor* aPreviousDesc);
402 virtual TBool IsParent(TUsbGenericDescriptor& aPotentialParent);
403 virtual TBool IsPeer(TUsbGenericDescriptor& aPotentialPeer);
404 virtual TBool IsChild(TUsbGenericDescriptor& aPotentialChild);
408 Interface descriptor.
410 See section 9.6.5 of the USB 2.0 specification.
412 @publishedPartner Intended to be available to 3rd parties later
415 NONSHARABLE_CLASS(TUsbInterfaceDescriptor) : public TUsbGenericDescriptor
418 IMPORT_C TUsbInterfaceDescriptor();
419 IMPORT_C static TUsbInterfaceDescriptor* Cast(TUsbGenericDescriptor* aOriginal);
422 static const TInt KSizeInOctets = 9;
425 EbInterfaceNumber = 2,
426 EbAlternateSetting = 3,
428 EbInterfaceClass = 5,
429 EbInterfaceSubClass = 6,
430 EbInterfaceProtocol = 7,
435 IMPORT_C TUint8 InterfaceNumber() const;
436 IMPORT_C TUint8 AlternateSetting() const;
437 IMPORT_C TUint8 NumEndpoints() const;
438 IMPORT_C TUint8 InterfaceClass() const;
439 IMPORT_C TUint8 InterfaceSubClass() const;
440 IMPORT_C TUint8 InterfaceProtocol() const;
441 IMPORT_C TUint8 Interface() const;
444 static TUsbInterfaceDescriptor* ParseL(TPtrC8& aUsbDes, TUsbGenericDescriptor* aPreviousDesc);
445 virtual TBool IsParent(TUsbGenericDescriptor& aPotentialParent);
446 virtual TBool IsPeer(TUsbGenericDescriptor& aPotentialPeer);
452 See section 9.6.6 of the USB 2.0 specification.
453 Note these exclude support support for:
454 'Standard AC Interrupt Endpoint Descriptor'
455 'Standard AS Isochronous Synch Endpoint Descriptor'
456 'Standard AS Isochronous Audio Data Endpoint Descriptor'
457 as defined in USB Audio Device Class Spec v1.0 which are all 9 bytes in size.
458 To support these custom descriptors may be registered with the
461 @publishedPartner Intended to be available to 3rd parties later
464 NONSHARABLE_CLASS(TUsbEndpointDescriptor) : public TUsbGenericDescriptor
467 IMPORT_C TUsbEndpointDescriptor();
468 IMPORT_C static TUsbEndpointDescriptor* Cast(TUsbGenericDescriptor* aOriginal);
471 static const TInt KSizeInOctets = 7;
474 EbEndpointAddress = 2,
481 IMPORT_C TUint8 EndpointAddress() const;
482 IMPORT_C TUint8 Attributes() const;
483 IMPORT_C TUint16 MaxPacketSize() const;
484 IMPORT_C TUint8 Interval() const;
487 static TUsbEndpointDescriptor* ParseL(TPtrC8& aUsbDes, TUsbGenericDescriptor* aPreviousDesc);
488 virtual TBool IsParent(TUsbGenericDescriptor& aPotentialParent);
489 virtual TBool IsPeer(TUsbGenericDescriptor& aPotentialPeer);
495 See section 9.6.7 of the USB 2.0 specification.
497 @publishedPartner Intended to be available to 3rd parties later
500 NONSHARABLE_CLASS(TUsbStringDescriptor) : public TUsbGenericDescriptor
503 IMPORT_C TUsbStringDescriptor();
504 IMPORT_C static TUsbStringDescriptor* Cast(TUsbGenericDescriptor* aOriginal);
507 IMPORT_C TInt GetLangId(TInt aIndex) const;
508 IMPORT_C void StringData(TDes16& aString) const;
511 static TUsbStringDescriptor* ParseL(TPtrC8& aUsbDes, TUsbGenericDescriptor* aPreviousDesc);
512 virtual TBool IsParent(TUsbGenericDescriptor& aPotentialParent);
513 virtual TBool IsPeer(TUsbGenericDescriptor& aPotentialPeer);
519 See section 6.4 of the USB 2.0 On-The-Go Supplement Revision 1.3
521 @publishedPartner Intended to be available to 3rd parties later
524 NONSHARABLE_CLASS(TUsbOTGDescriptor) : public TUsbGenericDescriptor
527 IMPORT_C TUsbOTGDescriptor();
528 IMPORT_C static TUsbOTGDescriptor* Cast(TUsbGenericDescriptor* aOriginal);
531 static const TInt KSizeInOctets = 3;
538 IMPORT_C TUint8 Attributes() const;
539 IMPORT_C TBool HNPSupported() const;
540 IMPORT_C TBool SRPSupported() const;
542 static TUsbOTGDescriptor* ParseL(TPtrC8& aUsbDes, TUsbGenericDescriptor* aPreviousDesc);
543 virtual TBool IsParent(TUsbGenericDescriptor& aPotentialParent);
544 virtual TBool IsPeer(TUsbGenericDescriptor& aPotentialPeer);
548 #endif // D32USBDESCRIPTORS_H