os/kernelhwsrv/kernel/eka/include/d32usbdescriptors.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of the License "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
#ifndef D32USBDESCRIPTORS_H
sl@0
    17
#define D32USBDESCRIPTORS_H
sl@0
    18
sl@0
    19
#include <e32base.h>
sl@0
    20
sl@0
    21
sl@0
    22
/*****************************************************************************/
sl@0
    23
/*                                                                           */
sl@0
    24
/* USB descriptors parser framework                                          */
sl@0
    25
/*                                                                           */
sl@0
    26
/*****************************************************************************/
sl@0
    27
sl@0
    28
class TUsbGenericDescriptor;
sl@0
    29
sl@0
    30
/**
sl@0
    31
The Symbian USB Descriptor Parsing Framework class.
sl@0
    32
sl@0
    33
This class is to aid users of USBDI by providing the facilities to parse the
sl@0
    34
raw descriptor data into wrapper classes that allow access to the fields in 
sl@0
    35
the descriptor bodies, and pointers to map the serial data blob into the tree 
sl@0
    36
structure that descriptors logically have.
sl@0
    37
sl@0
    38
@publishedPartner Intended to be available to 3rd parties later
sl@0
    39
@prototype
sl@0
    40
*/
sl@0
    41
NONSHARABLE_CLASS(UsbDescriptorParser)
sl@0
    42
	{
sl@0
    43
public:
sl@0
    44
	typedef TUsbGenericDescriptor* (*TUsbDescriptorParserL)(TPtrC8& aUsbDes, TUsbGenericDescriptor* aPreviousDesc);
sl@0
    45
sl@0
    46
public:
sl@0
    47
	// Main parse function.
sl@0
    48
	IMPORT_C static TInt Parse(const TDesC8& aUsbDes, TUsbGenericDescriptor*& aDesc);
sl@0
    49
sl@0
    50
	// Custom parsing framework.
sl@0
    51
	IMPORT_C static void RegisterCustomParserL(TUsbDescriptorParserL aParserFunc);
sl@0
    52
	IMPORT_C static void UnregisterCustomParser(TUsbDescriptorParserL aParserFunc);
sl@0
    53
sl@0
    54
private:
sl@0
    55
	static TUsbGenericDescriptor* FindParserAndParseAndCheckL(TPtrC8& aUsbDes, TUsbGenericDescriptor* aPreviousDesc);
sl@0
    56
	static TUsbGenericDescriptor* FindParserAndParseL(TPtrC8& aUsbDes, TUsbGenericDescriptor* aPreviousDesc);
sl@0
    57
	static void ParseDescriptorTreeL(TPtrC8& aUsbDes, TUsbGenericDescriptor& aPreviousDesc);
sl@0
    58
	static void BuildTreeL(TUsbGenericDescriptor& aNewDesc, TUsbGenericDescriptor& aPreviousDesc);
sl@0
    59
	static TUsbGenericDescriptor& FindSuitableParentL(TUsbGenericDescriptor& aNewDesc, TUsbGenericDescriptor& aTopParent);
sl@0
    60
	static TUsbGenericDescriptor* UnknownUsbDescriptorParserL(TPtrC8& aUsbDes, TUsbGenericDescriptor* aPreviousDesc);
sl@0
    61
	};
sl@0
    62
sl@0
    63
sl@0
    64
/*****************************************************************************/
sl@0
    65
/*                                                                           */
sl@0
    66
/* USB standard descriptors                                                  */
sl@0
    67
/*                                                                           */
sl@0
    68
/*****************************************************************************/
sl@0
    69
sl@0
    70
sl@0
    71
/**
sl@0
    72
Base class for USB descriptors.
sl@0
    73
All USB descriptors contain type and length, and may have peers and children.
sl@0
    74
sl@0
    75
@publishedPartner Intended to be available to 3rd parties later
sl@0
    76
@prototype
sl@0
    77
*/
sl@0
    78
class TUsbGenericDescriptor
sl@0
    79
	{
sl@0
    80
public:
sl@0
    81
	IMPORT_C TUsbGenericDescriptor();
sl@0
    82
	
sl@0
    83
	IMPORT_C void DestroyTree();
sl@0
    84
sl@0
    85
	IMPORT_C TUint8 TUint8At(TInt aOffset) const;
sl@0
    86
	IMPORT_C TUint16 TUint16At(TInt aOffset) const;
sl@0
    87
	IMPORT_C TUint32 TUint32At(TInt aOffset) const;
sl@0
    88
sl@0
    89
	IMPORT_C TUsbGenericDescriptor& operator=(const TUsbGenericDescriptor& aDescriptor);
sl@0
    90
sl@0
    91
	/**
sl@0
    92
	Helper function to allow TUsbGenericDescriptor types to be placed on the cleanup stack.
sl@0
    93
	*/
sl@0
    94
	inline operator TCleanupItem() { return TCleanupItem(Cleanup,this); }
sl@0
    95
sl@0
    96
public:
sl@0
    97
	virtual TBool IsParent(TUsbGenericDescriptor& aPotentialParent);
sl@0
    98
	virtual TBool IsPeer(TUsbGenericDescriptor& aPotentialPeer);
sl@0
    99
	virtual TBool IsChild(TUsbGenericDescriptor& aPotentialChild);
sl@0
   100
sl@0
   101
private:
sl@0
   102
	IMPORT_C static void Cleanup(TAny* aPtr);
sl@0
   103
	static void WalkAndDelete(TUsbGenericDescriptor* aDesc);
sl@0
   104
sl@0
   105
public:		// USB standard fields
sl@0
   106
	/**
sl@0
   107
	The offset in a standard USB descriptor to the bLength field.
sl@0
   108
	*/
sl@0
   109
	static const TInt KbLengthOffset = 0;
sl@0
   110
sl@0
   111
	/**
sl@0
   112
	The offset in a standard USB descriptor to the bDescriptorType field.
sl@0
   113
	*/
sl@0
   114
	static const TInt KbDescriptorTypeOffset = 1;
sl@0
   115
sl@0
   116
	/**
sl@0
   117
	Standard Length field.
sl@0
   118
	*/
sl@0
   119
	TUint8	ibLength;
sl@0
   120
	
sl@0
   121
	/**
sl@0
   122
	Standard Type field.
sl@0
   123
	*/
sl@0
   124
	TUint8	ibDescriptorType;
sl@0
   125
	
sl@0
   126
public:
sl@0
   127
	/**
sl@0
   128
	The flag to indicate whether the USB descriptor has been recognised
sl@0
   129
	and parsed.
sl@0
   130
	*/
sl@0
   131
	enum TUsbGenericDescriptorFlags
sl@0
   132
		{
sl@0
   133
		EUnrecognised = 0x00,
sl@0
   134
		ERecognised = 0x01,
sl@0
   135
		};
sl@0
   136
	
sl@0
   137
public:		// Symbian generated fields
sl@0
   138
	/**
sl@0
   139
	Flag to show if the descriptor has been recognised and parsed, or if its data can only be represented as a
sl@0
   140
	binary blob.  This field should particularly be checked if writing code which may run on older versions of
sl@0
   141
	the operating system, where a (now) known descriptor may not have been parsed, or before parsing a new
sl@0
   142
	descriptor from a blob, where later versions of the operating system may have already extracted the fields.
sl@0
   143
	*/
sl@0
   144
	TUint8	iRecognisedAndParsed;
sl@0
   145
sl@0
   146
	/**
sl@0
   147
	A pointer to the next peer of this descriptor, or NULL.
sl@0
   148
	As an example, an endpoint descriptor will contain pointers to any other endpoint descriptors on the same
sl@0
   149
	interface.
sl@0
   150
	*/
sl@0
   151
	TUsbGenericDescriptor* iNextPeer;
sl@0
   152
sl@0
   153
	/**
sl@0
   154
	A pointer to the first child of this descriptor, or NULL.
sl@0
   155
	As an example, an interface descriptor will contain a pointer to the first endpoint descriptor on the
sl@0
   156
	interface. The iNextPeer member can then be used to examine other endpoints on the interface.
sl@0
   157
	*/
sl@0
   158
	TUsbGenericDescriptor* iFirstChild;
sl@0
   159
	
sl@0
   160
	/**
sl@0
   161
	A pointer to the parent to this descriptor, or NULL.
sl@0
   162
	As an example an endpoint descriptor from a configuration bundle will have the interface that it
sl@0
   163
	is a member of as it's parent.
sl@0
   164
	*/
sl@0
   165
	TUsbGenericDescriptor* iParent;
sl@0
   166
sl@0
   167
	/**
sl@0
   168
	The binary blob that contains this descriptor
sl@0
   169
	*/
sl@0
   170
	TPtrC8			iBlob;
sl@0
   171
	};
sl@0
   172
sl@0
   173
enum TUsbDescriptorType
sl@0
   174
	{
sl@0
   175
	EDevice						= 1,
sl@0
   176
	EConfiguration				= 2,
sl@0
   177
	EString						= 3,
sl@0
   178
	EInterface					= 4,
sl@0
   179
	EEndpoint					= 5,
sl@0
   180
	EDeviceQualifier			= 6,
sl@0
   181
	EOtherSpeedConfiguration	= 7,
sl@0
   182
	EInterfacePower				= 8,
sl@0
   183
	EOTG						= 9,
sl@0
   184
	EDebug						= 10,
sl@0
   185
	EInterfaceAssociation		= 11,
sl@0
   186
	};
sl@0
   187
sl@0
   188
/**
sl@0
   189
Device descriptor.
sl@0
   190
sl@0
   191
See section 9.6.1 of the USB 2.0 specification.
sl@0
   192
sl@0
   193
@publishedPartner Intended to be available to 3rd parties later
sl@0
   194
@prototype
sl@0
   195
*/
sl@0
   196
NONSHARABLE_CLASS(TUsbDeviceDescriptor) : public TUsbGenericDescriptor
sl@0
   197
	{
sl@0
   198
public:
sl@0
   199
	IMPORT_C TUsbDeviceDescriptor();
sl@0
   200
	IMPORT_C static TUsbDeviceDescriptor* Cast(TUsbGenericDescriptor* aOriginal);
sl@0
   201
sl@0
   202
public:
sl@0
   203
	static const TInt KSizeInOctets = 18;
sl@0
   204
	enum TFieldOffsets
sl@0
   205
		{
sl@0
   206
		EbcdUSB				= 2,
sl@0
   207
		EbDeviceClass		= 4,
sl@0
   208
		EbDeviceSubClass	= 5,
sl@0
   209
		EbDeviceProtocol	= 6,
sl@0
   210
		EbMaxPacketSize0	= 7,
sl@0
   211
		EidVendor			= 8,
sl@0
   212
		EidProduct			= 10,
sl@0
   213
		EbcdDevice			= 12,
sl@0
   214
		EiManufacturer		= 14,
sl@0
   215
		EiProduct			= 15,
sl@0
   216
		EiSerialNumber		= 16,
sl@0
   217
		EbNumConfigurations	= 17
sl@0
   218
		};
sl@0
   219
sl@0
   220
public:
sl@0
   221
	IMPORT_C TUint16 USBBcd() const;
sl@0
   222
	IMPORT_C TUint8 DeviceClass() const;
sl@0
   223
	IMPORT_C TUint8 DeviceSubClass() const;
sl@0
   224
	IMPORT_C TUint8 DeviceProtocol() const;
sl@0
   225
	IMPORT_C TUint8 MaxPacketSize0() const;
sl@0
   226
	IMPORT_C TUint16 VendorId() const;
sl@0
   227
	IMPORT_C TUint16 ProductId() const;
sl@0
   228
	IMPORT_C TUint16 DeviceBcd() const;
sl@0
   229
	IMPORT_C TUint8 ManufacturerIndex() const;
sl@0
   230
	IMPORT_C TUint8 ProductIndex() const;
sl@0
   231
	IMPORT_C TUint8 SerialNumberIndex() const;
sl@0
   232
	IMPORT_C TUint8 NumConfigurations() const;
sl@0
   233
sl@0
   234
public:
sl@0
   235
	static TUsbDeviceDescriptor* ParseL(TPtrC8& aUsbDes, TUsbGenericDescriptor* aPreviousDesc);
sl@0
   236
	virtual TBool IsParent(TUsbGenericDescriptor& aPotentialParent);
sl@0
   237
	virtual TBool IsPeer(TUsbGenericDescriptor& aPotentialPeer);
sl@0
   238
	};
sl@0
   239
sl@0
   240
sl@0
   241
/**
sl@0
   242
Device Qualifier descriptor.
sl@0
   243
sl@0
   244
See section 9.6.2 of the USB 2.0 specification.
sl@0
   245
sl@0
   246
@publishedPartner Intended to be available to 3rd parties later
sl@0
   247
@prototype
sl@0
   248
*/
sl@0
   249
NONSHARABLE_CLASS(TUsbDeviceQualifierDescriptor) : public TUsbGenericDescriptor
sl@0
   250
	{
sl@0
   251
public:
sl@0
   252
	IMPORT_C TUsbDeviceQualifierDescriptor();
sl@0
   253
	IMPORT_C static TUsbDeviceQualifierDescriptor* Cast(TUsbGenericDescriptor* aOriginal);
sl@0
   254
	
sl@0
   255
public:
sl@0
   256
	static const TInt KSizeInOctets = 10;
sl@0
   257
	enum TFieldOffsets
sl@0
   258
		{
sl@0
   259
		EbcdUSB				= 2,
sl@0
   260
		EbDeviceClass		= 4,
sl@0
   261
		EbDeviceSubClass	= 5,
sl@0
   262
		EbDeviceProtocol	= 6,
sl@0
   263
		EbMaxPacketSize0	= 7,
sl@0
   264
		EbNumConfigurations	= 8,
sl@0
   265
		EbReserved			= 9
sl@0
   266
		};
sl@0
   267
sl@0
   268
public:
sl@0
   269
	IMPORT_C TUint16 USBBcd() const;
sl@0
   270
	IMPORT_C TUint8 DeviceClass() const;
sl@0
   271
	IMPORT_C TUint8 DeviceSubClass() const;
sl@0
   272
	IMPORT_C TUint8 DeviceProtocol() const;
sl@0
   273
	IMPORT_C TUint8 MaxPacketSize0() const;
sl@0
   274
	IMPORT_C TUint8 NumConfigurations() const;
sl@0
   275
	IMPORT_C TUint8 Reserved() const;
sl@0
   276
	
sl@0
   277
public:
sl@0
   278
	static TUsbDeviceQualifierDescriptor* ParseL(TPtrC8& aUsbDes, TUsbGenericDescriptor* aPreviousDesc);
sl@0
   279
	virtual TBool IsParent(TUsbGenericDescriptor& aPotentialParent);
sl@0
   280
	virtual TBool IsPeer(TUsbGenericDescriptor& aPotentialPeer);
sl@0
   281
	};
sl@0
   282
sl@0
   283
sl@0
   284
/**
sl@0
   285
Configuration descriptor.
sl@0
   286
sl@0
   287
See section 9.6.3 of the USB 2.0 specification.
sl@0
   288
sl@0
   289
@publishedPartner Intended to be available to 3rd parties later
sl@0
   290
@prototype
sl@0
   291
*/
sl@0
   292
NONSHARABLE_CLASS(TUsbConfigurationDescriptor) : public TUsbGenericDescriptor
sl@0
   293
	{
sl@0
   294
public:
sl@0
   295
	IMPORT_C TUsbConfigurationDescriptor();
sl@0
   296
	IMPORT_C static TUsbConfigurationDescriptor* Cast(TUsbGenericDescriptor* aOriginal);
sl@0
   297
sl@0
   298
public:
sl@0
   299
	static const TInt KSizeInOctets = 9;
sl@0
   300
	enum TFieldOffsets
sl@0
   301
		{
sl@0
   302
		EwTotalLength			= 2,
sl@0
   303
		EbNumInterfaces			= 4,
sl@0
   304
		EbConfigurationValue	= 5,
sl@0
   305
		EiConfiguration			= 6,
sl@0
   306
		EbmAttributes			= 7,
sl@0
   307
		EbMaxPower				= 8
sl@0
   308
		};
sl@0
   309
sl@0
   310
public:
sl@0
   311
	IMPORT_C TUint16 TotalLength() const;
sl@0
   312
	IMPORT_C TUint8 NumInterfaces() const;
sl@0
   313
	IMPORT_C TUint8 ConfigurationValue() const;
sl@0
   314
	IMPORT_C TUint8 ConfigurationIndex() const;
sl@0
   315
	IMPORT_C TUint8 Attributes() const;
sl@0
   316
	IMPORT_C TUint8 MaxPower() const;
sl@0
   317
sl@0
   318
public:
sl@0
   319
	static TUsbConfigurationDescriptor* ParseL(TPtrC8& aUsbDes, TUsbGenericDescriptor* aPreviousDesc);
sl@0
   320
	virtual TBool IsParent(TUsbGenericDescriptor& aPotentialParent);
sl@0
   321
	virtual TBool IsPeer(TUsbGenericDescriptor& aPotentialPeer);
sl@0
   322
	};
sl@0
   323
sl@0
   324
sl@0
   325
/**
sl@0
   326
Other Speed descriptor.
sl@0
   327
sl@0
   328
See section 9.6.4 of the USB 2.0 specification.
sl@0
   329
sl@0
   330
@publishedPartner Intended to be available to 3rd parties later
sl@0
   331
@prototype
sl@0
   332
*/
sl@0
   333
NONSHARABLE_CLASS(TUsbOtherSpeedDescriptor) : public TUsbGenericDescriptor
sl@0
   334
	{
sl@0
   335
public:
sl@0
   336
	IMPORT_C TUsbOtherSpeedDescriptor();
sl@0
   337
	IMPORT_C static TUsbOtherSpeedDescriptor* Cast(TUsbGenericDescriptor* aOriginal);
sl@0
   338
sl@0
   339
public:
sl@0
   340
	static const TInt KSizeInOctets = 9;
sl@0
   341
	enum TFieldOffsets
sl@0
   342
		{
sl@0
   343
		EwTotalLength 			= 2,
sl@0
   344
		EbNumInterfaces			= 4,
sl@0
   345
		EbConfigurationValue	= 5,
sl@0
   346
		EiConfiguration			= 6,
sl@0
   347
		EbmAttributes			= 7,
sl@0
   348
		EbMaxPower				= 8
sl@0
   349
		};
sl@0
   350
sl@0
   351
public:
sl@0
   352
	IMPORT_C TUint16 TotalLength() const;
sl@0
   353
	IMPORT_C TUint8 NumInterfaces() const;
sl@0
   354
	IMPORT_C TUint8 ConfigurationValue() const;
sl@0
   355
	IMPORT_C TUint8 ConfigurationIndex() const;
sl@0
   356
	IMPORT_C TUint8 Attributes() const;
sl@0
   357
	IMPORT_C TUint8 MaxPower() const;
sl@0
   358
	
sl@0
   359
public:
sl@0
   360
	static TUsbOtherSpeedDescriptor* ParseL(TPtrC8& aUsbDes, TUsbGenericDescriptor* aPreviousDesc);
sl@0
   361
	virtual TBool IsParent(TUsbGenericDescriptor& aPotentialParent);
sl@0
   362
	virtual TBool IsPeer(TUsbGenericDescriptor& aPotentialPeer);
sl@0
   363
	};
sl@0
   364
sl@0
   365
sl@0
   366
/**
sl@0
   367
Interface Association Descriptor
sl@0
   368
sl@0
   369
See the USB IAD ECN.
sl@0
   370
sl@0
   371
@publishedPartner Intended to be available to 3rd parties later
sl@0
   372
@prototype
sl@0
   373
*/
sl@0
   374
NONSHARABLE_CLASS(TUsbInterfaceAssociationDescriptor) : public TUsbGenericDescriptor
sl@0
   375
	{
sl@0
   376
public:
sl@0
   377
	IMPORT_C TUsbInterfaceAssociationDescriptor();
sl@0
   378
	IMPORT_C static TUsbInterfaceAssociationDescriptor* Cast(TUsbGenericDescriptor* aOriginal);
sl@0
   379
sl@0
   380
public:
sl@0
   381
	static const TInt KSizeInOctets = 8;
sl@0
   382
	enum TFieldOffsets
sl@0
   383
		{
sl@0
   384
		EbFirstInterface	= 2,
sl@0
   385
		EbInterfaceCount	= 3,
sl@0
   386
		EbFunctionClass		= 4,
sl@0
   387
		EbFunctionSubClass	= 5,
sl@0
   388
		EbFunctionProtocol	= 6,
sl@0
   389
		EiFunction			= 7
sl@0
   390
		};
sl@0
   391
	
sl@0
   392
public:
sl@0
   393
	IMPORT_C TUint8 FirstInterface() const;
sl@0
   394
	IMPORT_C TUint8 InterfaceCount() const;
sl@0
   395
	IMPORT_C TUint8 FunctionClass() const;
sl@0
   396
	IMPORT_C TUint8 FunctionSubClass() const;
sl@0
   397
	IMPORT_C TUint8 FunctionProtocol() const;
sl@0
   398
	IMPORT_C TUint8 FunctionIndex() const;
sl@0
   399
	
sl@0
   400
public:
sl@0
   401
	static TUsbInterfaceAssociationDescriptor* ParseL(TPtrC8& aUsbDes, TUsbGenericDescriptor* aPreviousDesc);
sl@0
   402
	virtual TBool IsParent(TUsbGenericDescriptor& aPotentialParent);
sl@0
   403
	virtual TBool IsPeer(TUsbGenericDescriptor& aPotentialPeer);
sl@0
   404
	virtual TBool IsChild(TUsbGenericDescriptor& aPotentialChild);
sl@0
   405
	};
sl@0
   406
sl@0
   407
/**
sl@0
   408
Interface descriptor.
sl@0
   409
sl@0
   410
See section 9.6.5 of the USB 2.0 specification.
sl@0
   411
sl@0
   412
@publishedPartner Intended to be available to 3rd parties later
sl@0
   413
@prototype
sl@0
   414
*/
sl@0
   415
NONSHARABLE_CLASS(TUsbInterfaceDescriptor) : public TUsbGenericDescriptor
sl@0
   416
	{
sl@0
   417
public:
sl@0
   418
	IMPORT_C TUsbInterfaceDescriptor();
sl@0
   419
	IMPORT_C static TUsbInterfaceDescriptor* Cast(TUsbGenericDescriptor* aOriginal);
sl@0
   420
sl@0
   421
public:
sl@0
   422
	static const TInt KSizeInOctets = 9;
sl@0
   423
	enum TFieldOffsets
sl@0
   424
		{
sl@0
   425
		EbInterfaceNumber	= 2,
sl@0
   426
		EbAlternateSetting	= 3,
sl@0
   427
		EbNumEndpoints		= 4,
sl@0
   428
		EbInterfaceClass	= 5,
sl@0
   429
		EbInterfaceSubClass	= 6,
sl@0
   430
		EbInterfaceProtocol	= 7,
sl@0
   431
		EiInterface			= 8
sl@0
   432
		};
sl@0
   433
	
sl@0
   434
public:
sl@0
   435
	IMPORT_C TUint8 InterfaceNumber() const;
sl@0
   436
	IMPORT_C TUint8 AlternateSetting() const;
sl@0
   437
	IMPORT_C TUint8 NumEndpoints() const;
sl@0
   438
	IMPORT_C TUint8 InterfaceClass() const;
sl@0
   439
	IMPORT_C TUint8 InterfaceSubClass() const;
sl@0
   440
	IMPORT_C TUint8 InterfaceProtocol() const;
sl@0
   441
	IMPORT_C TUint8 Interface() const;
sl@0
   442
	
sl@0
   443
public:
sl@0
   444
	static TUsbInterfaceDescriptor* ParseL(TPtrC8& aUsbDes, TUsbGenericDescriptor* aPreviousDesc);
sl@0
   445
	virtual TBool IsParent(TUsbGenericDescriptor& aPotentialParent);
sl@0
   446
	virtual TBool IsPeer(TUsbGenericDescriptor& aPotentialPeer);
sl@0
   447
	};
sl@0
   448
sl@0
   449
/**
sl@0
   450
Endpoint descriptor.
sl@0
   451
sl@0
   452
See section 9.6.6 of the USB 2.0 specification.
sl@0
   453
Note these exclude support support for:
sl@0
   454
'Standard AC Interrupt Endpoint Descriptor'
sl@0
   455
'Standard AS Isochronous Synch Endpoint Descriptor'
sl@0
   456
'Standard AS Isochronous Audio Data Endpoint Descriptor'
sl@0
   457
as defined in USB Audio Device Class Spec v1.0 which are all 9 bytes in size.
sl@0
   458
To support these custom descriptors may be registered with the
sl@0
   459
parser.
sl@0
   460
sl@0
   461
@publishedPartner Intended to be available to 3rd parties later
sl@0
   462
@prototype
sl@0
   463
*/
sl@0
   464
NONSHARABLE_CLASS(TUsbEndpointDescriptor) : public TUsbGenericDescriptor
sl@0
   465
	{
sl@0
   466
public:
sl@0
   467
	IMPORT_C TUsbEndpointDescriptor();
sl@0
   468
	IMPORT_C static TUsbEndpointDescriptor* Cast(TUsbGenericDescriptor* aOriginal);
sl@0
   469
sl@0
   470
public:
sl@0
   471
	static const TInt KSizeInOctets = 7;
sl@0
   472
	enum TFieldOffsets
sl@0
   473
		{
sl@0
   474
		EbEndpointAddress	= 2,
sl@0
   475
		EbmAttributes		= 3,
sl@0
   476
		EwMaxPacketSize		= 4,
sl@0
   477
		EbInterval			= 6
sl@0
   478
		};
sl@0
   479
sl@0
   480
public:
sl@0
   481
	IMPORT_C TUint8 EndpointAddress() const;
sl@0
   482
	IMPORT_C TUint8 Attributes() const;
sl@0
   483
	IMPORT_C TUint16 MaxPacketSize() const;
sl@0
   484
	IMPORT_C TUint8 Interval() const;
sl@0
   485
	
sl@0
   486
public:
sl@0
   487
	static TUsbEndpointDescriptor* ParseL(TPtrC8& aUsbDes, TUsbGenericDescriptor* aPreviousDesc);
sl@0
   488
	virtual TBool IsParent(TUsbGenericDescriptor& aPotentialParent);
sl@0
   489
	virtual TBool IsPeer(TUsbGenericDescriptor& aPotentialPeer);
sl@0
   490
	};
sl@0
   491
sl@0
   492
/**
sl@0
   493
String descriptor
sl@0
   494
sl@0
   495
See section 9.6.7 of the USB 2.0 specification.
sl@0
   496
sl@0
   497
@publishedPartner Intended to be available to 3rd parties later
sl@0
   498
@prototype
sl@0
   499
*/
sl@0
   500
NONSHARABLE_CLASS(TUsbStringDescriptor) : public TUsbGenericDescriptor
sl@0
   501
	{
sl@0
   502
public:
sl@0
   503
	IMPORT_C TUsbStringDescriptor();
sl@0
   504
	IMPORT_C static TUsbStringDescriptor* Cast(TUsbGenericDescriptor* aOriginal);
sl@0
   505
sl@0
   506
public:
sl@0
   507
	IMPORT_C TInt GetLangId(TInt aIndex) const;
sl@0
   508
	IMPORT_C void StringData(TDes16& aString) const;
sl@0
   509
sl@0
   510
public:
sl@0
   511
	static TUsbStringDescriptor* ParseL(TPtrC8& aUsbDes, TUsbGenericDescriptor* aPreviousDesc);
sl@0
   512
	virtual TBool IsParent(TUsbGenericDescriptor& aPotentialParent);
sl@0
   513
	virtual TBool IsPeer(TUsbGenericDescriptor& aPotentialPeer);
sl@0
   514
	};
sl@0
   515
sl@0
   516
/**
sl@0
   517
OTG descriptor.
sl@0
   518
sl@0
   519
See section 6.4 of the USB 2.0 On-The-Go Supplement Revision 1.3
sl@0
   520
sl@0
   521
@publishedPartner Intended to be available to 3rd parties later
sl@0
   522
@prototype
sl@0
   523
*/
sl@0
   524
NONSHARABLE_CLASS(TUsbOTGDescriptor) : public TUsbGenericDescriptor
sl@0
   525
	{
sl@0
   526
public:
sl@0
   527
	IMPORT_C TUsbOTGDescriptor();
sl@0
   528
	IMPORT_C static TUsbOTGDescriptor* Cast(TUsbGenericDescriptor* aOriginal);
sl@0
   529
sl@0
   530
public:
sl@0
   531
	static const TInt KSizeInOctets = 3;
sl@0
   532
	enum TFieldOffsets
sl@0
   533
		{
sl@0
   534
		EbmAttributes		= 2
sl@0
   535
		};
sl@0
   536
sl@0
   537
public:
sl@0
   538
	IMPORT_C TUint8 Attributes() const;
sl@0
   539
    IMPORT_C TBool HNPSupported() const;
sl@0
   540
    IMPORT_C TBool SRPSupported() const;
sl@0
   541
public:
sl@0
   542
	static TUsbOTGDescriptor* ParseL(TPtrC8& aUsbDes, TUsbGenericDescriptor* aPreviousDesc);
sl@0
   543
	virtual TBool IsParent(TUsbGenericDescriptor& aPotentialParent);
sl@0
   544
	virtual TBool IsPeer(TUsbGenericDescriptor& aPotentialPeer);
sl@0
   545
	};
sl@0
   546
sl@0
   547
sl@0
   548
#endif	// D32USBDESCRIPTORS_H