os/kernelhwsrv/kernel/eka/include/drivers/usbcdesc.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) 2002-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
// e32/include/drivers/usbcdesc.h
sl@0
    15
// USB descriptors and their management.
sl@0
    16
// 
sl@0
    17
//
sl@0
    18
sl@0
    19
/**
sl@0
    20
 @file usbcdesc.h
sl@0
    21
 @internalTechnology
sl@0
    22
*/
sl@0
    23
sl@0
    24
#ifndef __USBCDESC_H__
sl@0
    25
#define __USBCDESC_H__
sl@0
    26
sl@0
    27
#include <kernel/kernel.h>
sl@0
    28
sl@0
    29
sl@0
    30
// Hard-wired positions of some descriptors in iDescriptors array (whether present or not):
sl@0
    31
static const TInt KDescPosition_Device           = 0;
sl@0
    32
static const TInt KDescPosition_DeviceQualifier  = 1;
sl@0
    33
static const TInt KDescPosition_OtherSpeedConfig = 2;
sl@0
    34
static const TInt KDescPosition_Config           = 3;
sl@0
    35
static const TInt KDescPosition_Otg              = 4;
sl@0
    36
static const TInt KDescPosition_FirstAvailable   = 5;
sl@0
    37
sl@0
    38
// Hard-wired positions of string descriptors in iStrings array (whether present or not):
sl@0
    39
static const TInt KStringPosition_Langid           = 0;
sl@0
    40
static const TInt KStringPosition_Manufact         = 1;
sl@0
    41
static const TInt KStringPosition_Product          = 2;
sl@0
    42
static const TInt KStringPosition_Serial           = 3;
sl@0
    43
static const TInt KStringPosition_Config           = 4;
sl@0
    44
static const TInt KStringPosition_OtherSpeedConfig = 5;
sl@0
    45
static const TInt KStringPosition_FirstAvailable   = 6;
sl@0
    46
sl@0
    47
sl@0
    48
class TUsbcDescriptorBase
sl@0
    49
	{
sl@0
    50
public:
sl@0
    51
	virtual ~TUsbcDescriptorBase();
sl@0
    52
	void SetByte(TInt aPosition, TUint8 aValue);
sl@0
    53
	void SetWord(TInt aPosition, TUint16 aValue);
sl@0
    54
	TUint8 Byte(TInt aPosition) const;
sl@0
    55
	TUint16 Word(TInt aPosition) const;
sl@0
    56
	void GetDescriptorData(TDes8& aBuffer) const;
sl@0
    57
	TInt GetDescriptorData(TUint8* aBuffer) const;
sl@0
    58
	TInt GetDescriptorData(TUint8* aBuffer, TUint aMaxSize) const;
sl@0
    59
	const TDes8& DescriptorData() const;
sl@0
    60
	TDes8& DescriptorData();
sl@0
    61
	TUint Size() const;
sl@0
    62
	TUint8 Type() const;
sl@0
    63
	virtual void UpdateFs();
sl@0
    64
	virtual void UpdateHs();
sl@0
    65
protected:
sl@0
    66
	TUsbcDescriptorBase();
sl@0
    67
	void SetBufferPointer(const TDesC8& aDes);
sl@0
    68
private:
sl@0
    69
#ifdef USB_SUPPORTS_SET_DESCRIPTOR_REQUEST
sl@0
    70
	TUint8 iIndex;											// only needed for SET_DESCRIPTOR
sl@0
    71
#endif
sl@0
    72
	TPtr8 iBufPtr;
sl@0
    73
	};
sl@0
    74
sl@0
    75
sl@0
    76
class TUsbcDeviceDescriptor : public TUsbcDescriptorBase
sl@0
    77
	{
sl@0
    78
public:
sl@0
    79
	/** aMaxPacketSize0 should be the Ep0 max packet size for FS operation (as the HS size
sl@0
    80
		is fixed and known).
sl@0
    81
	*/
sl@0
    82
	static TUsbcDeviceDescriptor* New(TUint8 aDeviceClass, TUint8 aDeviceSubClass,
sl@0
    83
									  TUint8 aDeviceProtocol, TUint8 aMaxPacketSize0,
sl@0
    84
									  TUint16 aVendorId, TUint16 aProductId,
sl@0
    85
									  TUint16 aDeviceRelease, TUint8 aNumConfigurations);
sl@0
    86
	virtual void UpdateFs();
sl@0
    87
	virtual void UpdateHs();
sl@0
    88
private:
sl@0
    89
	TUsbcDeviceDescriptor();
sl@0
    90
	TInt Construct(TUint8 aDeviceClass, TUint8 aDeviceSubClass, TUint8 aDeviceProtocol,
sl@0
    91
				   TUint8 aMaxPacketSize0, TUint16 aVendorId, TUint16 aProductId,
sl@0
    92
				   TUint16 aDeviceRelease, TUint8 aNumConfigurations);
sl@0
    93
	TBuf8<KUsbDescSize_Device> iBuf;
sl@0
    94
	TUint8 iEp0Size_Fs;										// holds Ep0 size for FS (could be < 64)
sl@0
    95
	};
sl@0
    96
sl@0
    97
sl@0
    98
class TUsbcDeviceQualifierDescriptor : public TUsbcDescriptorBase
sl@0
    99
	{
sl@0
   100
public:
sl@0
   101
	/** aMaxPacketSize0 should be the Ep0 max packet size for FS operation (as the HS size
sl@0
   102
		is fixed and known).
sl@0
   103
	*/
sl@0
   104
	static TUsbcDeviceQualifierDescriptor* New(TUint8 aDeviceClass, TUint8 aDeviceSubClass,
sl@0
   105
											   TUint8 aDeviceProtocol, TUint8 aMaxPacketSize0,
sl@0
   106
											   TUint8 aNumConfigurations, TUint8 aReserved=0);
sl@0
   107
	virtual void UpdateFs();
sl@0
   108
	virtual void UpdateHs();
sl@0
   109
private:
sl@0
   110
	TUsbcDeviceQualifierDescriptor();
sl@0
   111
	TInt Construct(TUint8 aDeviceClass, TUint8 aDeviceSubClass, TUint8 aDeviceProtocol,
sl@0
   112
				   TUint8 aMaxPacketSize0, TUint8 aNumConfigurations, TUint8 aReserved);
sl@0
   113
	TBuf8<KUsbDescSize_DeviceQualifier> iBuf;
sl@0
   114
	TUint8 iEp0Size_Fs;										// holds Ep0 size for FS (could be < 64)
sl@0
   115
	};
sl@0
   116
sl@0
   117
sl@0
   118
class TUsbcConfigDescriptor : public TUsbcDescriptorBase
sl@0
   119
	{
sl@0
   120
public:
sl@0
   121
	/** aMaxPower should be given here in milliamps (not mA/2). */
sl@0
   122
	static TUsbcConfigDescriptor* New(TUint8 aConfigurationValue, TBool aSelfPowered, TBool aRemoteWakeup,
sl@0
   123
									  TUint16 aMaxPower);
sl@0
   124
private:
sl@0
   125
	TUsbcConfigDescriptor();
sl@0
   126
	TInt Construct(TUint8 aConfigurationValue, TBool aSelfPowered, TBool aRemoteWakeup, TUint16 aMaxPower);
sl@0
   127
	TBuf8<KUsbDescSize_Config> iBuf;
sl@0
   128
	};
sl@0
   129
sl@0
   130
sl@0
   131
// The Other_Speed_Configuration descriptor has same size and layout as the
sl@0
   132
// standard Configuration descriptor, therefore we don't need a new definition.
sl@0
   133
typedef TUsbcConfigDescriptor TUsbcOtherSpeedConfigDescriptor;
sl@0
   134
sl@0
   135
sl@0
   136
class TUsbcInterfaceDescriptor : public TUsbcDescriptorBase
sl@0
   137
	{
sl@0
   138
public:
sl@0
   139
	static TUsbcInterfaceDescriptor* New(TUint8 aInterfaceNumber, TUint8 aAlternateSetting, TInt NumEndpoints,
sl@0
   140
										 const TUsbcClassInfo& aClassInfo);
sl@0
   141
private:
sl@0
   142
	TUsbcInterfaceDescriptor();
sl@0
   143
	TInt Construct(TUint8 aInterfaceNumber, TUint8 aAlternateSetting, TInt aNumEndpoints,
sl@0
   144
				   const TUsbcClassInfo& aClassInfo);
sl@0
   145
	TBuf8<KUsbDescSize_Interface> iBuf;
sl@0
   146
	};
sl@0
   147
sl@0
   148
sl@0
   149
class TUsbcEndpointDescriptorBase : public TUsbcDescriptorBase
sl@0
   150
	{
sl@0
   151
public:
sl@0
   152
	virtual void UpdateFs();
sl@0
   153
	virtual void UpdateHs();
sl@0
   154
protected:
sl@0
   155
	TInt Construct(const TUsbcEndpointInfo& aEpInfo);
sl@0
   156
	TUsbcEndpointDescriptorBase();
sl@0
   157
protected:
sl@0
   158
	/** Stores the endpoint size to be used for FS. */
sl@0
   159
	TInt iEpSize_Fs;
sl@0
   160
	/** Stores the endpoint size to be used for HS. */
sl@0
   161
	TInt iEpSize_Hs;
sl@0
   162
	/** Stores the endpoint polling interval to be used for FS. */
sl@0
   163
	TInt iInterval_Fs;
sl@0
   164
	/** Stores the endpoint polling interval to be used for HS. */
sl@0
   165
	TInt iInterval_Hs;
sl@0
   166
	};
sl@0
   167
sl@0
   168
sl@0
   169
class TUsbcEndpointDescriptor : public TUsbcEndpointDescriptorBase
sl@0
   170
	{
sl@0
   171
public:
sl@0
   172
	static TUsbcEndpointDescriptor* New(TUint8 aEndpointAddress, const TUsbcEndpointInfo& aEpInfo);
sl@0
   173
private:
sl@0
   174
	TUsbcEndpointDescriptor();
sl@0
   175
	TInt Construct(TUint8 aEndpointAddress, const TUsbcEndpointInfo& aEpInfo);
sl@0
   176
	TBuf8<KUsbDescSize_Endpoint> iBuf;
sl@0
   177
	};
sl@0
   178
sl@0
   179
sl@0
   180
class TUsbcAudioEndpointDescriptor : public TUsbcEndpointDescriptorBase
sl@0
   181
	{
sl@0
   182
public:
sl@0
   183
	static TUsbcAudioEndpointDescriptor* New(TUint8 aEndpointAddress, const TUsbcEndpointInfo& aEpInfo);
sl@0
   184
private:
sl@0
   185
	TUsbcAudioEndpointDescriptor();
sl@0
   186
	TInt Construct(TUint8 aEndpointAddress, const TUsbcEndpointInfo& aEpInfo);
sl@0
   187
	TBuf8<KUsbDescSize_AudioEndpoint> iBuf;
sl@0
   188
	};
sl@0
   189
sl@0
   190
sl@0
   191
class TUsbcOtgDescriptor : public TUsbcDescriptorBase
sl@0
   192
	{
sl@0
   193
public:
sl@0
   194
	static TUsbcOtgDescriptor* New(TBool aHnpSupport, TBool aSrpSupport);
sl@0
   195
private:
sl@0
   196
	TUsbcOtgDescriptor();
sl@0
   197
	TInt Construct(TBool aHnpSupport, TBool aSrpSupport);
sl@0
   198
	TBuf8<KUsbDescSize_Otg> iBuf;
sl@0
   199
	};
sl@0
   200
sl@0
   201
sl@0
   202
class TUsbcClassSpecificDescriptor : public TUsbcDescriptorBase
sl@0
   203
	{
sl@0
   204
public:
sl@0
   205
	virtual ~TUsbcClassSpecificDescriptor();
sl@0
   206
	static TUsbcClassSpecificDescriptor* New(TUint8 aType, TInt aSize);
sl@0
   207
private:
sl@0
   208
	TUsbcClassSpecificDescriptor();
sl@0
   209
	TInt Construct(TUint8 aType, TInt aSize);
sl@0
   210
	HBuf8* iBuf;
sl@0
   211
	};
sl@0
   212
sl@0
   213
sl@0
   214
class TUsbcStringDescriptorBase
sl@0
   215
	{
sl@0
   216
public:
sl@0
   217
	virtual ~TUsbcStringDescriptorBase();
sl@0
   218
	TUint16 Word(TInt aPosition) const;
sl@0
   219
	void SetWord(TInt aPosition, TUint16 aValue);
sl@0
   220
	TInt GetDescriptorData(TUint8* aBuffer) const;
sl@0
   221
	TInt GetDescriptorData(TUint8* aBuffer, TUint aMaxSize) const;
sl@0
   222
	const TDes8& StringData() const;
sl@0
   223
	TDes8& StringData();
sl@0
   224
	TUint Size() const;
sl@0
   225
	void SetBufferPointer(const TDesC8& aDes);
sl@0
   226
protected:
sl@0
   227
	TUsbcStringDescriptorBase();
sl@0
   228
	TBuf8<2> iSBuf;
sl@0
   229
	TPtr8 iBufPtr;
sl@0
   230
private:
sl@0
   231
//	TUint8 iIndex;											// not needed in DescriptorPool: position == index
sl@0
   232
	};
sl@0
   233
sl@0
   234
sl@0
   235
class TUsbcStringDescriptor : public TUsbcStringDescriptorBase
sl@0
   236
	{
sl@0
   237
public:
sl@0
   238
	virtual ~TUsbcStringDescriptor();
sl@0
   239
	static TUsbcStringDescriptor* New(const TDesC8& aString);
sl@0
   240
private:
sl@0
   241
	TUsbcStringDescriptor();
sl@0
   242
	TInt Construct(const TDesC8& aString);
sl@0
   243
	HBuf8* iBuf;
sl@0
   244
	};
sl@0
   245
sl@0
   246
sl@0
   247
// Currently we support only one language, and thus there's no need to provide
sl@0
   248
// a LangId string descriptor with more than one array element.
sl@0
   249
class TUsbcLangIdDescriptor : public TUsbcStringDescriptorBase
sl@0
   250
	{
sl@0
   251
public:
sl@0
   252
	virtual ~TUsbcLangIdDescriptor();
sl@0
   253
	static TUsbcLangIdDescriptor* New(TUint16 aLangId);
sl@0
   254
private:
sl@0
   255
	TUsbcLangIdDescriptor();
sl@0
   256
	TInt Construct(TUint16 aLangId);
sl@0
   257
	TBuf8<2> iBuf;
sl@0
   258
	};
sl@0
   259
sl@0
   260
sl@0
   261
class TUsbcDescriptorPool
sl@0
   262
	{
sl@0
   263
public:
sl@0
   264
	TUsbcDescriptorPool(TUint8* aEp0_TxBuf);
sl@0
   265
	~TUsbcDescriptorPool();
sl@0
   266
	TInt Init(TUsbcDeviceDescriptor* aDeviceDesc, TUsbcConfigDescriptor* aConfigDesc,
sl@0
   267
			  TUsbcLangIdDescriptor* aLangId, TUsbcStringDescriptor* aManufacturer,
sl@0
   268
			  TUsbcStringDescriptor* aProduct, TUsbcStringDescriptor* aSerialNum,
sl@0
   269
			  TUsbcStringDescriptor* aConfig, TUsbcOtgDescriptor* aOtgDesc);
sl@0
   270
	TInt InitHs();
sl@0
   271
	TInt UpdateDescriptorsFs();
sl@0
   272
	TInt UpdateDescriptorsHs();
sl@0
   273
sl@0
   274
	// Descriptors
sl@0
   275
	TInt FindDescriptor(TUint8 aType, TUint8 aIndex, TUint16 aLangid, TInt& aSize) const;
sl@0
   276
	void InsertDescriptor(TUsbcDescriptorBase* aDesc);
sl@0
   277
	void DeleteIfcDescriptor(TInt aNumber, TInt aSetting=0);
sl@0
   278
	// The TC in many of the following functions stands for 'ThreadCopy' because that's what happens there.
sl@0
   279
	TInt GetDeviceDescriptorTC(DThread* aThread, TDes8& aBuffer) const;
sl@0
   280
	TInt SetDeviceDescriptorTC(DThread* aThread, const TDes8& aBuffer);
sl@0
   281
	TInt GetConfigurationDescriptorTC(DThread* aThread, TDes8& aBuffer) const;
sl@0
   282
	TInt SetConfigurationDescriptorTC(DThread* aThread, const TDes8& aBuffer);
sl@0
   283
    TInt GetOtgDescriptorTC(DThread* aThread, TDes8& aBuffer) const;
sl@0
   284
	TInt SetOtgDescriptor(const TDesC8& aBuffer);
sl@0
   285
	TInt GetInterfaceDescriptorTC(DThread* aThread, TDes8& aBuffer, TInt aInterface, TInt aSetting) const;
sl@0
   286
	TInt SetInterfaceDescriptor(const TDes8& aBuffer, TInt aInterface, TInt aSetting);
sl@0
   287
	TInt GetEndpointDescriptorTC(DThread* aThread, TDes8& aBuffer, TInt aInterface, TInt aSetting,
sl@0
   288
								 TUint8 aEndpointAddress) const;
sl@0
   289
	TInt SetEndpointDescriptorTC(DThread* aThread, const TDes8& aBuffer, TInt aInterface, TInt aSetting,
sl@0
   290
								 TUint8 aEndpointAddress);
sl@0
   291
	TInt GetEndpointDescriptorSize(TInt aInterface, TInt aSetting, TUint8 aEndpointAddress, TInt& aSize) const;
sl@0
   292
	TInt GetDeviceQualifierDescriptorTC(DThread* aThread, TDes8& aBuffer) const;
sl@0
   293
	TInt SetDeviceQualifierDescriptorTC(DThread* aThread, const TDes8& aBuffer);
sl@0
   294
	TInt GetOtherSpeedConfigurationDescriptorTC(DThread* aThread, TDes8& aBuffer) const;
sl@0
   295
	TInt SetOtherSpeedConfigurationDescriptorTC(DThread* aThread, const TDes8& aBuffer);
sl@0
   296
	TInt GetCSInterfaceDescriptorTC(DThread* aThread, TDes8& aBuffer, TInt aInterface, TInt aSetting) const;
sl@0
   297
	TInt SetCSInterfaceDescriptorTC(DThread* aThread, const TDes8& aBuffer, TInt aInterface, TInt aSetting,
sl@0
   298
									TInt aSize);
sl@0
   299
	TInt GetCSInterfaceDescriptorSize(TInt aInterface, TInt aSetting, TInt& aSize) const;
sl@0
   300
	TInt GetCSEndpointDescriptorTC(DThread* aThread, TDes8& aBuffer, TInt aInterface, TInt aSetting,
sl@0
   301
								   TUint8 aEndpointAddress) const;
sl@0
   302
	TInt SetCSEndpointDescriptorTC(DThread* aThread, const TDes8& aBuffer, TInt aInterface, TInt aSetting,
sl@0
   303
								   TUint8 aEndpointAddress, TInt aSize);
sl@0
   304
	TInt GetCSEndpointDescriptorSize(TInt aInterface, TInt aSetting, TUint8 aEndpointAddress, TInt& aSize) const;
sl@0
   305
sl@0
   306
	// String descriptors
sl@0
   307
	void SetIfcStringDescriptor(TUsbcStringDescriptor* aDesc, TInt aNumber, TInt aSetting=0);
sl@0
   308
	TInt GetStringDescriptorLangIdTC(DThread* aThread, TDes8& aLangId) const;
sl@0
   309
	TInt SetStringDescriptorLangId(TUint16 aLangId);
sl@0
   310
	TInt GetManufacturerStringDescriptorTC(DThread* aThread, TDes8& aString) const;
sl@0
   311
	TInt SetManufacturerStringDescriptorTC(DThread* aThread, const TDes8& aString);
sl@0
   312
	TInt RemoveManufacturerStringDescriptor();
sl@0
   313
	TInt GetProductStringDescriptorTC(DThread* aThread, TDes8& aString) const;
sl@0
   314
	TInt SetProductStringDescriptorTC(DThread* aThread, const TDes8& aString);
sl@0
   315
	TInt RemoveProductStringDescriptor();
sl@0
   316
	TInt GetSerialNumberStringDescriptorTC(DThread* aThread, TDes8& aString) const;
sl@0
   317
	TInt SetSerialNumberStringDescriptorTC(DThread* aThread, const TDes8& aString);
sl@0
   318
	TInt RemoveSerialNumberStringDescriptor();
sl@0
   319
	TInt GetConfigurationStringDescriptorTC(DThread* aThread, TDes8& aString) const;
sl@0
   320
	TInt SetConfigurationStringDescriptorTC(DThread* aThread, const TDes8& aString);
sl@0
   321
	TInt RemoveConfigurationStringDescriptor();
sl@0
   322
	TInt GetStringDescriptorTC(DThread* aThread, TInt aIndex, TDes8& aString) const;
sl@0
   323
	TInt SetStringDescriptorTC(DThread* aThread, TInt aIndex, const TDes8& aString);
sl@0
   324
	TInt RemoveStringDescriptor(TInt aIndex);
sl@0
   325
sl@0
   326
private:
sl@0
   327
	// Descriptors
sl@0
   328
	void InsertIfcDesc(TUsbcDescriptorBase* aDesc);
sl@0
   329
	void InsertEpDesc(TUsbcDescriptorBase* aDesc);
sl@0
   330
	TInt FindIfcDescriptor(TInt aIfcNumber, TInt aIfcSetting) const;
sl@0
   331
	TInt FindEpDescriptor(TInt aIfcNumber, TInt aIfcSetting, TUint8 aEpAddress) const;
sl@0
   332
	void DeleteDescriptors(TInt aIndex, TInt aCount = 1);
sl@0
   333
	void UpdateConfigDescriptorLength(TInt aLength);
sl@0
   334
	void UpdateConfigDescriptorNumIfcs(TInt aNumber);
sl@0
   335
	void UpdateIfcNumbers(TInt aNumber);
sl@0
   336
	TInt GetDeviceDescriptor(TInt aIndex) const;
sl@0
   337
	TInt GetConfigurationDescriptor(TInt aIndex) const;
sl@0
   338
	TInt GetOtgDescriptor() const;
sl@0
   339
sl@0
   340
	// String descriptors
sl@0
   341
	TInt GetStringDescriptor(TInt aIndex) const;
sl@0
   342
	TInt GetDeviceStringDescriptorTC(DThread* aThread, TDes8& aString, TInt aIndex, TInt aPosition) const;
sl@0
   343
	TInt SetDeviceStringDescriptorTC(DThread* aThread, const TDes8& aString, TInt aIndex, TInt aPosition);
sl@0
   344
	TInt RemoveDeviceStringDescriptor(TInt aIndex, TInt aPosition);
sl@0
   345
	void ExchangeStringDescriptor(TInt aIndex, const TUsbcStringDescriptor* aDesc);
sl@0
   346
	TBool AnyStringDescriptors() const;
sl@0
   347
	TBool StringDescriptorExists(TInt aIndex) const;
sl@0
   348
	TInt FindAvailableStringPos() const;
sl@0
   349
sl@0
   350
private:
sl@0
   351
	// Data members
sl@0
   352
	RPointerArray<TUsbcDescriptorBase> iDescriptors;
sl@0
   353
	RPointerArray<TUsbcStringDescriptorBase> iStrings;
sl@0
   354
	TInt iIfcIdx;
sl@0
   355
	TUint8* const iEp0_TxBuf;								// points to the controller's ep0 TX buffer
sl@0
   356
	TBool iHighSpeed;										// true if currently operating at high-speed
sl@0
   357
	};
sl@0
   358
sl@0
   359
sl@0
   360
#endif	// __USBCDESC_H__