os/kernelhwsrv/kernel/eka/include/d32usbcsc.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 2008-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\d32usbcsc.h
sl@0
    15
// User side class definitions for USB Device support.
sl@0
    16
// 
sl@0
    17
//
sl@0
    18
sl@0
    19
/**
sl@0
    20
 @file d32usbcsc.h
sl@0
    21
 @publishedPartner
sl@0
    22
 @released
sl@0
    23
*/
sl@0
    24
sl@0
    25
#ifndef __D32USBCSC_H__
sl@0
    26
#define __D32USBCSC_H__
sl@0
    27
sl@0
    28
#include <e32ver.h>
sl@0
    29
#include <usb.h>
sl@0
    30
#include <d32usbcshared.h>
sl@0
    31
sl@0
    32
sl@0
    33
/** This means that SetInterface was called after RealizeInterface had been called.
sl@0
    34
    RealizeInterface is meant to signal that all interfaces have been set.
sl@0
    35
*/
sl@0
    36
const TInt KErrUsbAlreadyRealized = -6813; //Changed from -6713 for future compatibility with the d32usbcshared.h file
sl@0
    37
sl@0
    38
const TInt KErrAlternateSettingChanged = -6814;
sl@0
    39
sl@0
    40
sl@0
    41
const TUint KChunkCellSize = 1; //1 32 bit integer
sl@0
    42
const TInt KEpDescPacketSizeOffset = 4;
sl@0
    43
sl@0
    44
/** The user side enpoint number of Endpoint Zero. */
sl@0
    45
const TInt KEp0Number = 0;
sl@0
    46
sl@0
    47
/* Used in TUsbcScHdrEndpointRecord to describe the endpoint type
sl@0
    48
*/
sl@0
    49
sl@0
    50
const TUint8 KUsbScHdrEpDirectionIn=1;
sl@0
    51
const TUint8 KUsbScHdrEpDirectionOut=2;
sl@0
    52
const TUint8 KUsbScHdrEpDirectionBiDir=3;
sl@0
    53
sl@0
    54
sl@0
    55
const TUint8 KUsbScHdrEpTypeControl = 0;
sl@0
    56
const TUint8 KUsbScHdrEpTypeIsochronous =1;
sl@0
    57
const TUint8 KUsbScHdrEpTypeBulk = 2;
sl@0
    58
const TUint8 KUsbScHdrEpTypeInterrupt = 3;
sl@0
    59
const TUint8 KUsbScHdrEpTypeUnknown = ~0;
sl@0
    60
/** Used in the the Shared Chunk Header, to represent an endpoint.
sl@0
    61
*/
sl@0
    62
class TUsbcScHdrEndpointRecord
sl@0
    63
	{
sl@0
    64
public:
sl@0
    65
	inline TUsbcScHdrEndpointRecord(TInt aBufferNo, TUint8 aType);
sl@0
    66
	inline TUint Direction() const;
sl@0
    67
	inline TUint Type() const;
sl@0
    68
public:
sl@0
    69
	TUint8 iBufferNo;
sl@0
    70
	TUint8 iType;
sl@0
    71
	TUint16 iReserved;
sl@0
    72
	};
sl@0
    73
sl@0
    74
sl@0
    75
// This is used to hold the geometry of the shared buffers
sl@0
    76
class TUsbcScBufferRecord
sl@0
    77
	{
sl@0
    78
	friend class DLddUsbcScChannel;
sl@0
    79
sl@0
    80
public:
sl@0
    81
	inline TUint Offset() const;
sl@0
    82
	inline TUint Size() const;
sl@0
    83
private:
sl@0
    84
	inline void Set(TUint aOffset, TUint aEndOffset);
sl@0
    85
	TUint iOffset;
sl@0
    86
	TUint iSize;
sl@0
    87
	};
sl@0
    88
sl@0
    89
struct SUsbcScBufferHeader
sl@0
    90
	{
sl@0
    91
	TInt iHead;		// Where the LDD will next write a transfer
sl@0
    92
	TInt iTail;		// Indicates the fist packet that user side is processing (anything prior is disposable)
sl@0
    93
	TInt iBilTail;  // This is not used by LDD at all, but just for the BIL's benifit.
sl@0
    94
	};
sl@0
    95
sl@0
    96
sl@0
    97
struct SUsbcScAlternateSetting
sl@0
    98
	{
sl@0
    99
	TUint16 iSetting;
sl@0
   100
	TUint16 iSequence;
sl@0
   101
	};
sl@0
   102
sl@0
   103
/** Endpoint pair information.  This can be used to control pairing of endpoint
sl@0
   104
for classes that require explicit pairing of endpoint, such as ADC.
sl@0
   105
sl@0
   106
This is currently not used.
sl@0
   107
*/
sl@0
   108
sl@0
   109
class TEndpointPairInfo
sl@0
   110
{
sl@0
   111
public:
sl@0
   112
	TEndpointPairInfo(TUint8 aType=0, TUint16 aPair=0, TUint8 aSpare=0);
sl@0
   113
public:
sl@0
   114
	TUint8 iType;
sl@0
   115
	TUint8 iSpare;
sl@0
   116
	TUint16 iPair;
sl@0
   117
}; 
sl@0
   118
sl@0
   119
/**
sl@0
   120
This is the buffer number reserved for use with endpoint zero with the  ReadDataNotify and WriteData methods.
sl@0
   121
*/
sl@0
   122
const TInt KUsbcScEndpointZero = -1;
sl@0
   123
sl@0
   124
/**
sl@0
   125
This flag is reserved in TUsbcscEndpointInfo::iFlags, to indicate that the client driver's client wishes reads to operate in a coupled fashion.
sl@0
   126
This behaviour is not currently supported.
sl@0
   127
*/
sl@0
   128
const TUint KUsbScCoupledRead = 0x1;
sl@0
   129
sl@0
   130
/**
sl@0
   131
This flag, used in parameter aFlag of WriteData, is used to indicate that a ZLP should be sent.
sl@0
   132
*/
sl@0
   133
const TUint KUsbcScWriteFlagsZlp = 0x0001;
sl@0
   134
sl@0
   135
sl@0
   136
// Bit fields used in iFlags of TUsbcScTransferHeader
sl@0
   137
sl@0
   138
const TUint KUsbcScShortPacket = 0x0001;
sl@0
   139
const TUint KUsbcScStateChange = 0x0004;
sl@0
   140
sl@0
   141
class TUsbcScTransferHeader
sl@0
   142
{
sl@0
   143
public:
sl@0
   144
#ifdef _DEBUG
sl@0
   145
	TUint iHashId;
sl@0
   146
	TUint iSequence;
sl@0
   147
#endif
sl@0
   148
	TUint iBytes;
sl@0
   149
	TUint iFlags;
sl@0
   150
	TUint iNext;
sl@0
   151
	TUint16 iAltSettingSeq;
sl@0
   152
	TInt16 iAltSetting;
sl@0
   153
	union
sl@0
   154
	{
sl@0
   155
		TUint  i[1]; // Extends
sl@0
   156
		TUint8 b[4]; // Extends
sl@0
   157
	} iData;
sl@0
   158
};
sl@0
   159
sl@0
   160
/** The desired endpoint capabilities used in RDevUsbcScClient::SetInterface().
sl@0
   161
sl@0
   162
This derived class has additional fields used in the shared chunk USB driver.
sl@0
   163
*/
sl@0
   164
class TUsbcScEndpointInfo: public TUsbcEndpointInfo
sl@0
   165
	{
sl@0
   166
public:
sl@0
   167
	TUsbcScEndpointInfo(TUint aType=KUsbEpTypeBulk, TUint aDir=KUsbEpDirOut, TInt aInterval=0, TInt aExtra=0,
sl@0
   168
												TUint aBufferSize=0, TUint aReadSize=0);
sl@0
   169
sl@0
   170
sl@0
   171
public:
sl@0
   172
	/** This indicates the requested size of the endpoint buffer and must be at
sl@0
   173
		least as large as iReadSize.
sl@0
   174
	*/
sl@0
   175
	TUint iBufferSize;
sl@0
   176
sl@0
   177
	/** This is the amount of data that the LDD reads from the bus before it sets
sl@0
   178
	    up another read and is normally intended to read many packets.
sl@0
   179
	*/
sl@0
   180
	TUint iReadSize;
sl@0
   181
sl@0
   182
	/** TEndpointPairInfo represents pairing information for isochronous endpoints.
sl@0
   183
		Should be zero in other cases.  If this specifies paired endpoints then
sl@0
   184
		iExtra (in the base class TUsbcEndpointInfo) also needs to be set to the
sl@0
   185
		class specific size for this endpoint descriptor (This is here only for future use).
sl@0
   186
	*/
sl@0
   187
	TEndpointPairInfo iPairing;
sl@0
   188
	
sl@0
   189
	/** The necessary alignment, in bytes, that needs to be applied to the transfer start points
sl@0
   190
	    of the data.  This is only observed on OUT endpoints.  Zero can be specified to indicate
sl@0
   191
		there are no class side requirements for alignment.   The alignment for OUT endpoints is
sl@0
   192
		which ever is greater of this field or the USB hardware requirements.
sl@0
   193
	*/
sl@0
   194
	TUint iAlignment;
sl@0
   195
sl@0
   196
	/** Flags to indicate how the endpoint should function. None currently defined,
sl@0
   197
	    but could be used to allow support for direct read.
sl@0
   198
	*/
sl@0
   199
	TUint iFlags;
sl@0
   200
	
sl@0
   201
	/** Reserved for future use. */
sl@0
   202
	TUint32 iReserved2[2];
sl@0
   203
	};
sl@0
   204
sl@0
   205
/** This must be filled in prior to a call to RDevUsbcClient::SetInterface().
sl@0
   206
*/
sl@0
   207
class TUsbcScInterfaceInfo
sl@0
   208
	{
sl@0
   209
public:
sl@0
   210
	TUsbcScInterfaceInfo(TInt aClass=0, TInt aSubClass=0, TInt aProtocol=0,
sl@0
   211
					   TDesC16* aString=NULL, TUint aTotalEndpoints=0);
sl@0
   212
public:
sl@0
   213
	/** The class, subclass and protocol that this interface supports. */
sl@0
   214
	TUsbcClassInfo iClass;
sl@0
   215
	/** The description string for the interface. Used to construct the interface string descriptor. */
sl@0
   216
	const TDesC16* iString;
sl@0
   217
	/** Total number of endpoints being requested (0-5). Endpoint 0 should not be included in this number. */
sl@0
   218
	TUint iTotalEndpointsUsed;
sl@0
   219
	/** Desired properties of the endpoints requested.
sl@0
   220
		Do NOT include endpoint 0.
sl@0
   221
		APIs use endpoint numbers that are offsets into this array.
sl@0
   222
	*/
sl@0
   223
	TUsbcScEndpointInfo iEndpointData[KMaxEndpointsPerClient];
sl@0
   224
	/** 32 flag bits used for specifying miscellaneous Interface features.
sl@0
   225
		Currently defined are:
sl@0
   226
		- KUsbcInterfaceInfo_NoEp0RequestsPlease = 0x00000001
sl@0
   227
	*/
sl@0
   228
	TUint32 iFeatureWord;
sl@0
   229
	};
sl@0
   230
sl@0
   231
/** Package buffer for a TUsbcInterfaceInfo object.
sl@0
   232
sl@0
   233
	@see TUsbcInterfaceInfo
sl@0
   234
*/
sl@0
   235
typedef TPckgBuf<TUsbcScInterfaceInfo> TUsbcScInterfaceInfoBuf;
sl@0
   236
sl@0
   237
struct TUsbcScChunkHdrOffs
sl@0
   238
	{
sl@0
   239
	TUint iBuffers;
sl@0
   240
	TUint iAltSettings;
sl@0
   241
	};
sl@0
   242
sl@0
   243
sl@0
   244
class TUsbcScChunkBuffersHeader  // Not instantiable
sl@0
   245
	{
sl@0
   246
	friend class DLddUsbcScChannel;
sl@0
   247
	friend class TRealizeInfo;
sl@0
   248
sl@0
   249
public:
sl@0
   250
	inline TUsbcScBufferRecord* Ep0Out() const;
sl@0
   251
	inline TUsbcScBufferRecord* Ep0In() const;
sl@0
   252
	inline TUsbcScBufferRecord* Buffers(TInt aBuffer) const;
sl@0
   253
	inline TInt NumberOfBuffers() const;
sl@0
   254
sl@0
   255
private:
sl@0
   256
	TUsbcScChunkBuffersHeader();
sl@0
   257
private:
sl@0
   258
	TInt iRecordSize;
sl@0
   259
	TInt  iNumOfBufs;
sl@0
   260
	TUint8 iBufferOffset[8]; // Extends
sl@0
   261
	};
sl@0
   262
sl@0
   263
struct TUsbcScChunkAltSettingHeader // Not instantiable
sl@0
   264
	{
sl@0
   265
	TInt iEpRecordSize;
sl@0
   266
	TInt iNumOfAltSettings;
sl@0
   267
	TUint iAltTableOffset[1]; // Extends
sl@0
   268
	};
sl@0
   269
sl@0
   270
class TEndpointBuffer;
sl@0
   271
sl@0
   272
sl@0
   273
/** The user side handle to the USB client driver.
sl@0
   274
*/
sl@0
   275
class RDevUsbcScClient : public RBusLogicalChannel
sl@0
   276
	{
sl@0
   277
public:
sl@0
   278
	/** @internalComponent */
sl@0
   279
	enum TVer
sl@0
   280
		{
sl@0
   281
		EMajorVersionNumber = 0,
sl@0
   282
		EMinorVersionNumber = 1,
sl@0
   283
		EBuildVersionNumber = KE32BuildVersionNumber
sl@0
   284
		};
sl@0
   285
sl@0
   286
// Bit pattern. s = Request/Control.  c = Cancel,  m = mode bits, B = Buffer number, R = request number.
sl@0
   287
//	scmm mmmm |  mmmm mmmm | mmBB BBBB |RRRR RRRR  
sl@0
   288
sl@0
   289
	enum TRequest
sl@0
   290
		{
sl@0
   291
		ERequestWriteData = 1,
sl@0
   292
		ERequestReadDataNotify = 2, 	
sl@0
   293
		ERequestAlternateDeviceStatusNotify = 3,
sl@0
   294
		ERequestReEnumerate = 4,
sl@0
   295
		ERequestEndpointStatusNotify = 5,
sl@0
   296
 		ERequestOtgFeaturesNotify = 6,
sl@0
   297
		ERequestMaxRequests, // 7
sl@0
   298
sl@0
   299
		ERequestCancel = 0x40000000,
sl@0
   300
sl@0
   301
		ERequestWriteDataCancel						= ERequestWriteData                   | ERequestCancel,
sl@0
   302
		ERequestReadDataNotifyCancel				= ERequestReadDataNotify              | ERequestCancel,
sl@0
   303
		ERequestAlternateDeviceStatusNotifyCancel 	= ERequestAlternateDeviceStatusNotify | ERequestCancel,
sl@0
   304
		ERequestReEnumerateCancel 					= ERequestReEnumerate                 | ERequestCancel,
sl@0
   305
		ERequestEndpointStatusNotifyCancel 			= ERequestEndpointStatusNotify        | ERequestCancel,
sl@0
   306
        ERequestOtgFeaturesNotifyCancel 			= ERequestOtgFeaturesNotify           | ERequestCancel
sl@0
   307
		};
sl@0
   308
sl@0
   309
	enum TControl
sl@0
   310
		{
sl@0
   311
		// Changing the order of these enums will break BC.
sl@0
   312
		EControlEndpointZeroRequestError,					// 00
sl@0
   313
		EControlEndpointCaps,
sl@0
   314
		EControlDeviceCaps,
sl@0
   315
		EControlGetAlternateSetting,
sl@0
   316
		EControlDeviceStatus,
sl@0
   317
		EControlEndpointStatus,
sl@0
   318
		EControlSetInterface,
sl@0
   319
		EControlReleaseInterface,
sl@0
   320
		EControlSendEp0StatusPacket,
sl@0
   321
		EControlHaltEndpoint,								// 09
sl@0
   322
		//
sl@0
   323
		EControlClearHaltEndpoint,							// 10
sl@0
   324
		EControlSetDeviceControl,
sl@0
   325
		EControlReleaseDeviceControl,
sl@0
   326
		EControlEndpointZeroMaxPacketSizes,
sl@0
   327
		EControlSetEndpointZeroMaxPacketSize,
sl@0
   328
		EControlGetDeviceDescriptor,
sl@0
   329
		EControlSetDeviceDescriptor,
sl@0
   330
		EControlGetDeviceDescriptorSize,
sl@0
   331
		EControlGetConfigurationDescriptor,
sl@0
   332
		EControlSetConfigurationDescriptor,					// 19
sl@0
   333
		//
sl@0
   334
		EControlGetConfigurationDescriptorSize,				// 20
sl@0
   335
		EControlGetInterfaceDescriptor,
sl@0
   336
		EControlSetInterfaceDescriptor,
sl@0
   337
		EControlGetInterfaceDescriptorSize,
sl@0
   338
		EControlGetEndpointDescriptor,
sl@0
   339
		EControlSetEndpointDescriptor,
sl@0
   340
		EControlGetEndpointDescriptorSize,
sl@0
   341
		EControlGetCSInterfaceDescriptor,
sl@0
   342
		EControlSetCSInterfaceDescriptor,
sl@0
   343
		EControlGetCSInterfaceDescriptorSize,				// 29
sl@0
   344
		//
sl@0
   345
		EControlGetCSEndpointDescriptor,					// 30
sl@0
   346
		EControlSetCSEndpointDescriptor,
sl@0
   347
		EControlGetCSEndpointDescriptorSize,
sl@0
   348
		EControlSignalRemoteWakeup,
sl@0
   349
		EControlGetStringDescriptorLangId,
sl@0
   350
		EControlSetStringDescriptorLangId,
sl@0
   351
		EControlGetManufacturerStringDescriptor,
sl@0
   352
		EControlSetManufacturerStringDescriptor,
sl@0
   353
		EControlRemoveManufacturerStringDescriptor,
sl@0
   354
		EControlGetProductStringDescriptor,					// 39
sl@0
   355
		//
sl@0
   356
		EControlSetProductStringDescriptor,					// 40
sl@0
   357
		EControlRemoveProductStringDescriptor,
sl@0
   358
		EControlGetSerialNumberStringDescriptor,
sl@0
   359
		EControlSetSerialNumberStringDescriptor,
sl@0
   360
		EControlRemoveSerialNumberStringDescriptor,
sl@0
   361
		EControlGetConfigurationStringDescriptor,
sl@0
   362
		EControlSetConfigurationStringDescriptor,
sl@0
   363
		EControlRemoveConfigurationStringDescriptor,
sl@0
   364
		EControlDeviceDisconnectFromHost,
sl@0
   365
		EControlDeviceConnectToHost,						// 49
sl@0
   366
		//
sl@0
   367
		EControlDevicePowerUpUdc,							// 50
sl@0
   368
		EControlDumpRegisters,
sl@0
   369
		EControlAllocateEndpointResource,
sl@0
   370
		EControlDeAllocateEndpointResource,
sl@0
   371
		EControlQueryEndpointResourceUse,
sl@0
   372
		EControlGetEndpointZeroMaxPacketSize,
sl@0
   373
		EControlGetDeviceQualifierDescriptor,
sl@0
   374
		EControlSetDeviceQualifierDescriptor,
sl@0
   375
		EControlGetOtherSpeedConfigurationDescriptor,
sl@0
   376
		EControlSetOtherSpeedConfigurationDescriptor,		// 59
sl@0
   377
		//
sl@0
   378
		EControlCurrentlyUsingHighSpeed,					// 60
sl@0
   379
		EControlSetStringDescriptor,
sl@0
   380
		EControlGetStringDescriptor,
sl@0
   381
		EControlRemoveStringDescriptor,
sl@0
   382
        EControlSetOtgDescriptor,
sl@0
   383
        EControlGetOtgDescriptor,
sl@0
   384
        EControlGetOtgFeatures, 
sl@0
   385
		EControlRealizeInterface,
sl@0
   386
		EControlStartNextInAlternateSetting	
sl@0
   387
		};
sl@0
   388
sl@0
   389
sl@0
   390
 // const static TUint KFieldIdPos     = 0;
sl@0
   391
	const static TUint KFieldIdMask    = 0xFF;
sl@0
   392
	const static TUint KFieldBuffPos   = 8;
sl@0
   393
	const static TUint KFieldBuffMask  = 0x3F;
sl@0
   394
	const static TUint KFieldFlagsPos  = 14;
sl@0
   395
	const static TUint KFieldFlagsMask = 0xFFFF;
sl@0
   396
sl@0
   397
sl@0
   398
public:
sl@0
   399
sl@0
   400
#ifndef __KERNEL_MODE__
sl@0
   401
sl@0
   402
	/** Opens a channel.
sl@0
   403
sl@0
   404
		@param aUnit This should be 0 (zero).
sl@0
   405
sl@0
   406
		@return KErrNone if successful.
sl@0
   407
	*/
sl@0
   408
	inline TInt Open(TInt aUnit);
sl@0
   409
sl@0
   410
	inline TVersion VersionRequired() const;
sl@0
   411
sl@0
   412
	/** Stalls ep0 to signal command fault to the host.
sl@0
   413
sl@0
   414
		@return KErrNone if successful.
sl@0
   415
	*/
sl@0
   416
	inline TInt EndpointZeroRequestError();
sl@0
   417
sl@0
   418
	/** Retrieves the capabilities of all the endpoints on the device.
sl@0
   419
sl@0
   420
		Suggested use is as follows:
sl@0
   421
sl@0
   422
		@code
sl@0
   423
		TUsbcEndpointData data[KUsbcMaxEndpoints];
sl@0
   424
		TPtr8 dataPtr(reinterpret_cast<TUint8*>(data), sizeof(data), sizeof(data));
sl@0
   425
		ret = usbPort.EndpointCaps(dataPtr);
sl@0
   426
		@endcode
sl@0
   427
sl@0
   428
		@param aEpCapsBuf A descriptor encapsulating an array of TUsbcEndpointData.
sl@0
   429
sl@0
   430
		@return KErrNone if successful.
sl@0
   431
	*/
sl@0
   432
	inline TInt EndpointCaps(TDes8& aEpCapsBuf);
sl@0
   433
sl@0
   434
	/** Retrieves the capabilities of the USB device.
sl@0
   435
sl@0
   436
		@see TUsbDeviceCaps
sl@0
   437
sl@0
   438
		@param aDevCapsBuf A TUsbDeviceCaps object.
sl@0
   439
sl@0
   440
		@return KErrNone if successful.
sl@0
   441
	*/
sl@0
   442
	inline TInt DeviceCaps(TUsbDeviceCaps& aDevCapsBuf);
sl@0
   443
sl@0
   444
	/** Copies the current alternate setting for this interface into aInterfaceNumber
sl@0
   445
		For USB Interfaces whose main interface is active, this will be 0 (zero).
sl@0
   446
sl@0
   447
		@param aInterfaceNumber Current alternate setting for this interface is copied into this.
sl@0
   448
sl@0
   449
		@return KErrNone if successful.
sl@0
   450
	*/
sl@0
   451
	inline TInt GetAlternateSetting(TInt& aInterfaceNumber);
sl@0
   452
sl@0
   453
	/** Copies the current device status into aDeviceStatus.
sl@0
   454
sl@0
   455
		@param aDeviceStatus Current device status is copied into this.
sl@0
   456
sl@0
   457
		@return KErrNone if successful
sl@0
   458
	*/
sl@0
   459
	inline TInt DeviceStatus(TUsbcDeviceState& aDeviceStatus);
sl@0
   460
sl@0
   461
	/** Copies the current endpoint status into aEndpointStatus.
sl@0
   462
sl@0
   463
		@param aEndpoint Endpoint number valid for the current alternate setting.
sl@0
   464
		@param aEndpointStatus The current endpoint status, might be stalled, not stalled or unknown.
sl@0
   465
sl@0
   466
		@return KErrNone if successful.
sl@0
   467
	*/
sl@0
   468
	inline TInt EndpointStatus(TInt aEndpoint, TEndpointState& aEndpointStatus);
sl@0
   469
sl@0
   470
sl@0
   471
	/** Requests that a zero length status packet be sent to the host in response
sl@0
   472
		to a class or vendor specific ep0 SETUP packet.
sl@0
   473
sl@0
   474
		@return KErrNone if successful.
sl@0
   475
	*/
sl@0
   476
	inline TInt SendEp0StatusPacket();
sl@0
   477
sl@0
   478
	/** Stalls endpoint aEndpoint, usually to indicate an error condition with a previous command.
sl@0
   479
		The host will normally send a SET_FEATURE command on ep0 to acknowledge and clear the stall.
sl@0
   480
sl@0
   481
		@return KErrNone if successful.
sl@0
   482
	*/
sl@0
   483
	inline TInt HaltEndpoint(TInt aEndpoint);
sl@0
   484
sl@0
   485
	/** Clears the stall condition on endpoint aEndpoint. This is inluded for symmetry and test purposes.
sl@0
   486
sl@0
   487
		@return KErrNone if successful.
sl@0
   488
	*/
sl@0
   489
	inline TInt ClearHaltEndpoint(TInt aEndpoint);
sl@0
   490
sl@0
   491
	/** Requests that device control be allocated to this channel.
sl@0
   492
sl@0
   493
		@return KErrNone if successful.
sl@0
   494
	*/
sl@0
   495
	inline TInt SetDeviceControl();
sl@0
   496
sl@0
   497
	/** Relinquishes device control previously allocated to this channel.
sl@0
   498
sl@0
   499
		@return KErrNone if successful.
sl@0
   500
	*/
sl@0
   501
	inline TInt ReleaseDeviceControl();
sl@0
   502
sl@0
   503
	/** Returns a bitmap of available ep0 maximum packet sizes.
sl@0
   504
sl@0
   505
		@return bitmap of available ep0 maximum packet sizes.
sl@0
   506
	*/
sl@0
   507
	inline TUint EndpointZeroMaxPacketSizes();
sl@0
   508
sl@0
   509
	/** Requests that a maximum packet size of aMaxPacketSize be set on ep0.
sl@0
   510
sl@0
   511
		@param aMaxPacketSize The maximum packet size.
sl@0
   512
sl@0
   513
		@return KErrNone if successful.
sl@0
   514
	*/
sl@0
   515
	inline TInt SetEndpointZeroMaxPacketSize(TInt aMaxPacketSize);
sl@0
   516
sl@0
   517
	/** Queries the current maximum packet size on ep0.
sl@0
   518
sl@0
   519
		@return The currently set maximum packet size on ep0.
sl@0
   520
	*/
sl@0
   521
	inline TInt GetEndpointZeroMaxPacketSize();
sl@0
   522
sl@0
   523
	/** Copies the current device descriptor into aDeviceDescriptor.
sl@0
   524
sl@0
   525
		@param aDeviceDescriptor Receives the current device descriptor.
sl@0
   526
sl@0
   527
		@return KErrNone if successful.
sl@0
   528
	*/
sl@0
   529
	inline TInt GetDeviceDescriptor(TDes8& aDeviceDescriptor);
sl@0
   530
sl@0
   531
	/** Sets the contents of aDeviceDescriptor to be the current device descriptor.
sl@0
   532
sl@0
   533
		@param aDeviceDescriptor Contains the device descriptor.
sl@0
   534
sl@0
   535
		@return KErrNone if successful.
sl@0
   536
	*/
sl@0
   537
	inline TInt SetDeviceDescriptor(const TDesC8& aDeviceDescriptor);
sl@0
   538
sl@0
   539
	/** Gets the size of the current device descriptor. This is unlikely to be anything other than 9.
sl@0
   540
sl@0
   541
		@param aSize Receives the size of the current device descriptor.
sl@0
   542
sl@0
   543
		@return KErrNone if successful.
sl@0
   544
	*/
sl@0
   545
	inline TInt GetDeviceDescriptorSize(TInt& aSize);
sl@0
   546
sl@0
   547
	/** Copies the current configuration descriptor into aConfigurationDescriptor.
sl@0
   548
sl@0
   549
		@param aConfigurationDescriptor Receives the current configuration descriptor.
sl@0
   550
sl@0
   551
		@return KErrNone if successful.
sl@0
   552
	*/
sl@0
   553
	inline TInt GetConfigurationDescriptor(TDes8& aConfigurationDescriptor);
sl@0
   554
sl@0
   555
	/** Sets the contents of aConfigurationDescriptor to be the current configuration descriptor.
sl@0
   556
sl@0
   557
		@param aConfigurationDescriptor Contains the configuration descriptor.
sl@0
   558
sl@0
   559
		@return KErrNone if successful.
sl@0
   560
	*/
sl@0
   561
	inline TInt SetConfigurationDescriptor(const TDesC8& aConfigurationDescriptor);
sl@0
   562
sl@0
   563
	/** Gets the size of the current configuration descriptor.
sl@0
   564
sl@0
   565
		@param aSize Receives the size of the current configuration descriptor.
sl@0
   566
sl@0
   567
		@return KErrNone if successful.
sl@0
   568
	*/
sl@0
   569
	inline TInt GetConfigurationDescriptorSize(TInt& aSize);
sl@0
   570
sl@0
   571
	/** Copies the interface descriptor into aInterfaceDescriptor for the interface with alternate
sl@0
   572
		setting aSettingNumber, 0 for the main interface.
sl@0
   573
sl@0
   574
		@param aSettingNumber Alternate setting number on the interface, 0 for the main interface.
sl@0
   575
		@param aInterfaceDescriptor Receives the interface descriptor.
sl@0
   576
sl@0
   577
		@return KErrNone if successful.
sl@0
   578
	*/
sl@0
   579
	inline TInt GetInterfaceDescriptor(TInt aSettingNumber, TDes8& aInterfaceDescriptor);
sl@0
   580
sl@0
   581
	/** Sets the interface descriptor contained in aInterfaceDescriptor for the interface with
sl@0
   582
		alternate setting aSettingNumber, 0 for the main interface, for transmission to the host
sl@0
   583
		during enumeration.
sl@0
   584
sl@0
   585
		@param aSettingNumber Alternate setting number on the interface, 0 for the main interface.
sl@0
   586
		@param aInterfaceDescriptor Contains the interface descriptor to be set.
sl@0
   587
sl@0
   588
		@return KErrNone if successful.
sl@0
   589
	*/
sl@0
   590
	inline TInt SetInterfaceDescriptor(TInt aSettingNumber, const TDesC8& aInterfaceDescriptor);
sl@0
   591
sl@0
   592
	/** Copies the size of the interface descriptor for the interface with alternate
sl@0
   593
		setting aSettingNumber, 0 for the main interface, into aSize.
sl@0
   594
sl@0
   595
		@param aSettingNumber The alternate setting.
sl@0
   596
		@param aSize receives the size of the interface descriptor.
sl@0
   597
sl@0
   598
		@return KErrNone if successful.
sl@0
   599
	*/
sl@0
   600
	inline TInt GetInterfaceDescriptorSize(TInt aSettingNumber, TInt& aSize);
sl@0
   601
sl@0
   602
	/** Copies the endpoint descriptor for logical endpoint number aEndpointNumber into aEndpointDescriptor
sl@0
   603
		for the interface with alternate setting aSettingNumber, 0 for the main interface.
sl@0
   604
sl@0
   605
		@param aSettingNumber Alternate setting number on the interface, 0 for the main interface.
sl@0
   606
		@param aEndpointNumber The endpoint number of the endpoint.
sl@0
   607
		@param aEndpointDescriptor Receives the endpoint descriptor.
sl@0
   608
sl@0
   609
		@return KErrNone if successful.
sl@0
   610
	*/
sl@0
   611
	inline TInt GetEndpointDescriptor(TInt aSettingNumber, TInt aEndpointNumber, TDes8& aEndpointDescriptor);
sl@0
   612
sl@0
   613
	/** Sets the endpoint descriptor for logical endpoint number aEndpointNumber contained in
sl@0
   614
		aEndpointDescriptor for the interface with alternate setting aSettingNumber, 0 for the main interface,
sl@0
   615
		for transmission to the host during enumeration.
sl@0
   616
sl@0
   617
		@param aSettingNumber Alternate setting number on the interface, 0 for the main interface.
sl@0
   618
		@param aEndpointNumber Valid endpoint number on this interface.
sl@0
   619
		@param aEndpointDescriptor Contains the endpoint descriptor to be set.
sl@0
   620
sl@0
   621
		@return KErrNone if successful.
sl@0
   622
	*/
sl@0
   623
	inline TInt SetEndpointDescriptor(TInt aSettingNumber, TInt aEndpointNumber,
sl@0
   624
									  const TDesC8& aEndpointDescriptor);
sl@0
   625
sl@0
   626
	/** Copies the size of the endpoint descriptor for logical endpoint number aEndpointNumber for the
sl@0
   627
		interface with alternate setting aSettingNumber, 0 for the main interface, into aSize.
sl@0
   628
sl@0
   629
		@param aSettingNumber Alternate setting number on the interface, 0 for the main interface.
sl@0
   630
		@param aEndpointNumber Valid endpoint number on this interface.
sl@0
   631
		@param aSize Receives the size of the endpoint descriptor.
sl@0
   632
sl@0
   633
		@return KErrNone if successful.
sl@0
   634
	*/
sl@0
   635
	inline TInt GetEndpointDescriptorSize(TInt aSettingNumber, TInt aEndpointNumber, TInt& aSize);
sl@0
   636
sl@0
   637
    /** Get OTG descriptor size
sl@0
   638
sl@0
   639
		@param aSize TInt Reference which contains OTG descriptor size on return.
sl@0
   640
    */
sl@0
   641
    inline void GetOtgDescriptorSize(TInt& aSize);
sl@0
   642
sl@0
   643
    /** Get OTG descriptor of USB on-the-go feature.
sl@0
   644
sl@0
   645
		@param aOtgDesc User-side buffer to store copy of descriptor.
sl@0
   646
sl@0
   647
		@return KErrNone if successful.
sl@0
   648
    */
sl@0
   649
    inline TInt GetOtgDescriptor(TDes8& aOtgDesc);
sl@0
   650
sl@0
   651
    /** Set OTG descriptor by user to enable/disable USB on-the-go feature.
sl@0
   652
sl@0
   653
		@param aOtgDesc Descriptor buffer containing OTG features.
sl@0
   654
sl@0
   655
		@return KErrNone if successful.
sl@0
   656
    */
sl@0
   657
    inline TInt SetOtgDescriptor(const TDesC8& aOtgDesc);
sl@0
   658
sl@0
   659
	/** Copies the current device_qualifier descriptor into aDescriptor.
sl@0
   660
sl@0
   661
		@param aDescriptor Receives the current device_qualifier descriptor.
sl@0
   662
sl@0
   663
		@return KErrNone if successful.
sl@0
   664
	*/
sl@0
   665
	inline TInt GetDeviceQualifierDescriptor(TDes8& aDescriptor);
sl@0
   666
sl@0
   667
	/** Sets the device_qualifier descriptor to the contents of aDescriptor.
sl@0
   668
sl@0
   669
		@param aDescriptor Contains the new device_qualifier descriptor.
sl@0
   670
sl@0
   671
		@return KErrNone if successful.
sl@0
   672
	*/
sl@0
   673
	inline TInt SetDeviceQualifierDescriptor(const TDesC8& aDescriptor);
sl@0
   674
sl@0
   675
	/** Copies the current other_speed_configuration descriptor into aDescriptor.
sl@0
   676
sl@0
   677
		@param aDescriptor Receives the current other_speed_configuration descriptor.
sl@0
   678
sl@0
   679
		@return KErrNone if successful.
sl@0
   680
	*/
sl@0
   681
	inline TInt GetOtherSpeedConfigurationDescriptor(TDes8& aDescriptor);
sl@0
   682
sl@0
   683
	/** Sets the other_speed_configuration descriptor to the contents of aDescriptor.
sl@0
   684
sl@0
   685
		@param aDescriptor Contains the new other_speed_configuration descriptor.
sl@0
   686
sl@0
   687
		@return KErrNone if successful.
sl@0
   688
	*/
sl@0
   689
	inline TInt SetOtherSpeedConfigurationDescriptor(const TDesC8& aDescriptor);
sl@0
   690
sl@0
   691
	/** Copies the class specific interface descriptor block into aInterfaceDescriptor for the interface
sl@0
   692
		with alternate setting aSettingNumber, 0 for the main interface.
sl@0
   693
sl@0
   694
		@param aSettingNumber Alternate setting number on the interface, 0 for the main interface.
sl@0
   695
		@param aInterfaceDescriptor Contains the interface descriptor to be set.
sl@0
   696
sl@0
   697
		@return KErrNone if successful.
sl@0
   698
	*/
sl@0
   699
	inline TInt GetCSInterfaceDescriptorBlock(TInt aSettingNumber, TDes8& aInterfaceDescriptor);
sl@0
   700
sl@0
   701
	/** aSettingNumber is the alternate interface setting, 0 for the main interface, that the descriptor block
sl@0
   702
		aDes should be attached to. aDes is a block of data containing at least one class specific descriptor
sl@0
   703
		for transmission during enumeration after the class interface descriptor (or alternate interface
sl@0
   704
		descriptor) has been sent, but before the endpoint descriptors belonging to this interface are sent.
sl@0
   705
		aDes may contain as many descriptors as are necessary or only one. SetCSInterfaceDescriptorBlock()
sl@0
   706
		should be called at any time after SetInterface() has been called to establish a main interface or an
sl@0
   707
		alternate interface. More than one call may be made - the data blocks will be concatenated prior to
sl@0
   708
		sending. No checking or validation of the contents of aDes will be made and it is the caller's
sl@0
   709
		responsibility to ensure that the data supplied is correct and appropriate to the interface identified
sl@0
   710
		by aSettingNumber.
sl@0
   711
sl@0
   712
		@param aSettingNumber Alternate setting number on the interface, 0 for the main interface.
sl@0
   713
		@param aInterfaceDescriptor Contains the interface descriptor to be set.
sl@0
   714
sl@0
   715
		@return KErrNone if successful.
sl@0
   716
	*/
sl@0
   717
	inline TInt SetCSInterfaceDescriptorBlock(TInt aSettingNumber, const TDesC8& aInterfaceDescriptor);
sl@0
   718
sl@0
   719
	/** Copies the size of the class specific interface descriptor block for the interface with alternate
sl@0
   720
		setting aSettingNumber, 0 for the main interface, into aSize.
sl@0
   721
sl@0
   722
		@param aSettingNumber The alternate setting number.
sl@0
   723
		@param aSize receives the size of the interface descriptor.
sl@0
   724
sl@0
   725
		@return KErrNone if successful.
sl@0
   726
	*/
sl@0
   727
	inline TInt GetCSInterfaceDescriptorBlockSize(TInt aSettingNumber, TInt& aSize);
sl@0
   728
sl@0
   729
	/** Copies the class specific endpoint descriptor for logical endpoint number aEndpointNumber
sl@0
   730
		into aEndpointDescriptor for the interface with alternate setting aSettingNumber, 0 for the main
sl@0
   731
		interface.
sl@0
   732
sl@0
   733
		@param aSettingNumber Alternate setting number on the interface, 0 for the main interface.
sl@0
   734
		@param aEndpointNumber Valid endpoint number on this interface.
sl@0
   735
		@param aEndpointDescriptor Receives the endpoint descriptor.
sl@0
   736
sl@0
   737
		@return KErrNone if successful.
sl@0
   738
	*/
sl@0
   739
	inline TInt GetCSEndpointDescriptorBlock(TInt aSettingNumber, TInt aEndpointNumber,
sl@0
   740
											 TDes8& aEndpointDescriptor);
sl@0
   741
sl@0
   742
	/** Sets the class specific endpoint descriptor for logical endpoint number aEndpointNumber contained in
sl@0
   743
		aEndpointDescriptor for the interface with alternate setting aSettingNumber, 0 for the main interface,
sl@0
   744
		for transmission to the host during enumeration.
sl@0
   745
sl@0
   746
		@param aSettingNumber Alternate setting number on the interface, 0 for the main interface.
sl@0
   747
		@param aEndpointNumber Valid endpoint number on this interface.
sl@0
   748
		@param aEndpointDescriptor Contains the endpoint descriptor to be set.
sl@0
   749
sl@0
   750
		@return KErrNone if successful.
sl@0
   751
	*/
sl@0
   752
	inline TInt SetCSEndpointDescriptorBlock(TInt aSettingNumber, TInt aEndpointNumber,
sl@0
   753
											 const TDesC8& aEndpointDescriptor);
sl@0
   754
sl@0
   755
	/** Copies the size of the class specific endpoint descriptor block for logical endpoint number
sl@0
   756
		aEndpointNumber for the interface with alternate setting aSettingNumber, 0 for the main interface,
sl@0
   757
		into aSize.
sl@0
   758
sl@0
   759
		@param aSettingNumber Alternate setting number on the interface, 0 for the main interface.
sl@0
   760
		@param aEndpointNumber Valid endpoint number on this interface.
sl@0
   761
		@param aSize On return, contains the size of the class specific endpoint descriptor block.
sl@0
   762
sl@0
   763
		@return KErrNone if successful.
sl@0
   764
	*/
sl@0
   765
	inline TInt GetCSEndpointDescriptorBlockSize(TInt aSettingNumber, TInt aEndpointNumber, TInt& aSize);
sl@0
   766
sl@0
   767
	/** Generates a Remote Wakeup bus condition.
sl@0
   768
		The capability of the device to generate Remote Wakeup signalling is enquired in
sl@0
   769
		RDevUsbcClient::DeviceCaps.
sl@0
   770
sl@0
   771
		@return KErrNone if this signalling is possible and the signal has been generated.
sl@0
   772
	*/
sl@0
   773
	inline TInt SignalRemoteWakeup();
sl@0
   774
sl@0
   775
	/** Simulates a physical removal of the USB cable by disabling the D+/- pull-ups.The iConnect member of
sl@0
   776
		TUsbDeviceCapsV01, returned by RDevUsbcClient::DeviceCaps(), indicates whether this functionality is
sl@0
   777
		supported.
sl@0
   778
sl@0
   779
		@return KErrNone if successful.
sl@0
   780
	*/
sl@0
   781
	inline TInt DeviceDisconnectFromHost();
sl@0
   782
sl@0
   783
	/** Simulates a physical insertion of the USB cable by enabling the D+/- pull-ups.The iConnect member
sl@0
   784
		of TUsbDeviceCapsV01, returned by RDevUsbcClient::DeviceCaps(),  indicates whether this functionality
sl@0
   785
		is supported.
sl@0
   786
sl@0
   787
		@return KErrNone if successful.
sl@0
   788
	*/
sl@0
   789
	inline TInt DeviceConnectToHost();
sl@0
   790
sl@0
   791
	/** Powers up the UDC and connects it to the bus if one or more interfaces exist.
sl@0
   792
sl@0
   793
		@return KErrNone if UDC successfully powered up, KErrNotReady if no
sl@0
   794
		interfaces have been registered yet, KErrHardwareNotAvailable if UDC
sl@0
   795
		couldn't be activated.
sl@0
   796
	*/
sl@0
   797
	inline TInt PowerUpUdc();
sl@0
   798
sl@0
   799
	/** Enquires about the current operating speed of the UDC.
sl@0
   800
sl@0
   801
		@return ETrue if the UDC is currently operating at High speed, EFalse otherwise.
sl@0
   802
	*/
sl@0
   803
	inline TBool CurrentlyUsingHighSpeed();
sl@0
   804
sl@0
   805
	/** Allocates the use of aResource to aEndpoint. It will be used from when the current bus transfer	has been
sl@0
   806
		completed.
sl@0
   807
sl@0
   808
		@param aResource is typically some rationed hardware resource or possibly specifies a type of endpoint
sl@0
   809
		behaviour. aResource is not a bitmap and TEndpointResource values should not be combined.
sl@0
   810
		@param aEndpoint The endpoint number to which the resource is to be allocated.
sl@0
   811
sl@0
   812
		@return KErrNone if successful, KErrInUse if the resource is already consumed and cannot be allocated,
sl@0
   813
		KErrNotSupported if the endpoint does not support the resource requested.
sl@0
   814
sl@0
   815
		@publishedPartner @deprecated
sl@0
   816
	*/
sl@0
   817
	inline TInt AllocateEndpointResource(TInt aEndpoint, TUsbcEndpointResource aResource);
sl@0
   818
sl@0
   819
	/** Deallocates the use of aResource aEndpoint or ends a specified endpoint behaviour.
sl@0
   820
sl@0
   821
		@param aResource is typically some rationed hardware resource or possibly specifies a type of endpoint
sl@0
   822
		behaviour. aResource is not a bitmap and TEndpointResource values should not be combined.
sl@0
   823
		@param aEndpoint The endpoint number from which the resource is to be removed.
sl@0
   824
sl@0
   825
		@return KErrNone if the resource has been successfully deallocated, KErrNotSupported if the endpoint
sl@0
   826
		does not support the resource requested.
sl@0
   827
sl@0
   828
		@publishedPartner @deprecated
sl@0
   829
	*/
sl@0
   830
	inline TInt DeAllocateEndpointResource(TInt aEndpoint, TUsbcEndpointResource aResource);
sl@0
   831
sl@0
   832
	/** Queries endpoint resource use.
sl@0
   833
sl@0
   834
		@param aResource is typically some rationed hardware resource or possibly specifies a type of endpoint
sl@0
   835
		behaviour. aResource is not a bitmap and TEndpointResource values should not be combined.
sl@0
   836
		@param aEndpoint The endpoint number at which the resource is to be queried.
sl@0
   837
sl@0
   838
		@return ETrue is the specified resource is in use at the endpoint and EFalse if not.
sl@0
   839
	*/
sl@0
   840
	inline TBool QueryEndpointResourceUse(TInt aEndpoint, TUsbcEndpointResource aResource);
sl@0
   841
sl@0
   842
	/** Request (i.e. claim for this channel) up to five endpoints and set the class type for this USB
sl@0
   843
		interface. 'aInterfaceData' is a package buffer which describes the interface and all the endpoints
sl@0
   844
		being requested by the driver for this interface.
sl@0
   845
sl@0
   846
		@param aInterfaceNumber Distinguishes between alternate interfaces. If these are not be used then this
sl@0
   847
		should always be zero. If this parameter is used, then its value must be one more than that of the
sl@0
   848
		proceeding alternate interface.
sl@0
   849
		@param aInterfaceData A package buffer which describes the interface and all the endpoints being
sl@0
   850
		requested by the driver for this interface.
sl@0
   851
sl@0
   852
sl@0
   853
		@return KErrInUse if any of the endpoints being requested have already been claimed by another channel.
sl@0
   854
		KErrNotSupported if an endpoint with all of the specified properties is not supported on this
sl@0
   855
		platform. KErrNoMemory if insufficient memory is available to complete the operation.
sl@0
   856
	*/
sl@0
   857
	inline TInt SetInterface(TInt aInterfaceNumber, TUsbcScInterfaceInfoBuf& aInterfaceData);
sl@0
   858
sl@0
   859
sl@0
   860
	/**
sl@0
   861
		This method should be called after SetInterface has been called for all possible alternative settings.
sl@0
   862
		Calling this invalidates further calls to SetInterface. On success, a chunk handle is created and
sl@0
   863
		passed back though aChunk.   This is needed for the user side to access the shared chunk where the
sl@0
   864
		data is stored.  Note that if you are using the BIL (described later), then FinalizeInterface (...)
sl@0
   865
		should be used instead, which will call this method.
sl@0
   866
		
sl@0
   867
		@return KErrNone on successful completion, or one of the system wide error codes.
sl@0
   868
	*/
sl@0
   869
	inline TInt RealizeInterface(RChunk& aChunk);
sl@0
   870
sl@0
   871
sl@0
   872
	/** Release an interface previously claimed by this channel. Alternate interfaces need to be released
sl@0
   873
		in strict descending order, starting with the last (i.e. highest numbered) one.
sl@0
   874
		It is not necessary to release an interface that wasn't successfully requested.
sl@0
   875
sl@0
   876
		@param aInterfaceNumber Specifies the alternate setting number 'aInterfaceNum' of the interface to be
sl@0
   877
		released.
sl@0
   878
sl@0
   879
		@return KErrNone if successful. KErrArgument if the alternate setting doesn't exist or is released out
sl@0
   880
		of order.
sl@0
   881
	*/
sl@0
   882
	inline TInt ReleaseInterface(TInt aInterfaceNumber);
sl@0
   883
sl@0
   884
	/** Copies the current string descriptor language ID (LANGID) code into the aLangId argument. Even though
sl@0
   885
		the USB spec allows for the existence of a whole array of LANGID codes, we only support one.
sl@0
   886
sl@0
   887
		@param aLangId Receives the LANGID code.
sl@0
   888
sl@0
   889
		@return KErrNone if successful, KErrArgument if problem with argument (memory cannot be written to, etc.).
sl@0
   890
	*/
sl@0
   891
	inline TInt GetStringDescriptorLangId(TUint16& aLangId);
sl@0
   892
sl@0
   893
	/** Sets the string descriptor language ID (LANGID). Even though the USB spec allows for the existence of
sl@0
   894
		a whole array of LANGID codes, we only support one.
sl@0
   895
sl@0
   896
		@param aLangId The LANGID code to be set.
sl@0
   897
sl@0
   898
		@return KErrNone if successful.
sl@0
   899
	*/
sl@0
   900
	inline TInt SetStringDescriptorLangId(TUint16 aLangId);
sl@0
   901
sl@0
   902
	/** Copies the string descriptor identified by the iManufacturer index field of the Standard Device
sl@0
   903
		Descriptor into the aString argument.
sl@0
   904
sl@0
   905
		@param aString Receives manufacturer string.
sl@0
   906
sl@0
   907
		@return KErrNone if successful, KErrArgument if MaxLength of aString is too small to hold the entire
sl@0
   908
		descriptor, KErrNotFound if the string descriptor couldn't be found.
sl@0
   909
	*/
sl@0
   910
	inline TInt GetManufacturerStringDescriptor(TDes16& aString);
sl@0
   911
sl@0
   912
	/** Sets the string descriptor identified by the iManufacturer index field of the Standard Device
sl@0
   913
		Descriptor to the aString argument.
sl@0
   914
sl@0
   915
		@param aString Contains the new manufacturer string descriptor.
sl@0
   916
sl@0
   917
		@return KErrNone if successful, KErrNoMemory if no memory is available to store the new string from
sl@0
   918
		aString (in which case the old string descriptor will be preserved).
sl@0
   919
	*/
sl@0
   920
	inline TInt SetManufacturerStringDescriptor(const TDesC16& aString);
sl@0
   921
sl@0
   922
	/** Removes (deletes) the string descriptor identified by the iManufacturer index field of the Standard
sl@0
   923
		Device Descriptor and sets that field to zero.
sl@0
   924
sl@0
   925
		@return KErrNone if successful, KErrNotFound if the string descriptor couldn't be found.
sl@0
   926
	*/
sl@0
   927
	inline TInt RemoveManufacturerStringDescriptor();
sl@0
   928
sl@0
   929
	/** Retrieves the string descriptor identified by the iProduct index field of the Standard Device
sl@0
   930
		Descriptor into the aString argument.
sl@0
   931
sl@0
   932
		@param aString Receives product string.
sl@0
   933
sl@0
   934
		@return KErrNone if successful, KErrArgument if MaxLength of aString is too small to hold the entire
sl@0
   935
		descriptor, KErrNotFound if the string descriptor couldn't be found.
sl@0
   936
	*/
sl@0
   937
	inline TInt GetProductStringDescriptor(TDes16& aString);
sl@0
   938
sl@0
   939
	/** Sets the string descriptor identified by the iProduct index field of the Standard Device Descriptor to
sl@0
   940
		the aString argument.
sl@0
   941
sl@0
   942
		@param aString Contains the new product string descriptor.
sl@0
   943
sl@0
   944
		@return KErrNone if successful, KErrNoMemory if no memory is available to store the new string from
sl@0
   945
		aString (in which case the old string descriptor will be preserved).
sl@0
   946
	*/
sl@0
   947
	inline TInt SetProductStringDescriptor(const TDesC16& aString);
sl@0
   948
sl@0
   949
	/** Removes (deletes) the string descriptor identified by the iProduct index field of the Standard Device
sl@0
   950
		Descriptor and sets that field to zero.
sl@0
   951
sl@0
   952
		@return KErrNone if successful, KErrNotFound if the string descriptor couldn't be found.
sl@0
   953
	*/
sl@0
   954
	inline TInt RemoveProductStringDescriptor();
sl@0
   955
sl@0
   956
	/** Retrieves the string descriptor identified by the iSerialNumber index field of the Standard Device
sl@0
   957
		Descriptor into the aString argument.
sl@0
   958
sl@0
   959
		@param aString Receives product string.
sl@0
   960
sl@0
   961
		@return KErrNone if successful, KErrArgument if MaxLength of aString is too small to hold the entire
sl@0
   962
		descriptor, KErrNotFound if the string descriptor couldn't be found.
sl@0
   963
	*/
sl@0
   964
	inline TInt GetSerialNumberStringDescriptor(TDes16& aString);
sl@0
   965
sl@0
   966
	/** Sets the string descriptor identified by the iSerialNumber index field of the Standard Device
sl@0
   967
		Descriptor to the aString argument.
sl@0
   968
sl@0
   969
		@param aString Contains the new serial number string descriptor.
sl@0
   970
sl@0
   971
		@return KErrNone if successful, KErrNoMemory if no memory is available to store the new string from
sl@0
   972
		aString (in which case the old string descriptor will be preserved).
sl@0
   973
	*/
sl@0
   974
	inline TInt SetSerialNumberStringDescriptor(const TDesC16& aString);
sl@0
   975
sl@0
   976
	/** Removes (deletes) the string descriptor identified by the iSerialNumber index field of the Standard
sl@0
   977
		Device Descriptor and sets that field to zero.
sl@0
   978
sl@0
   979
		@return KErrNone if successful, KErrNotFound if the string descriptor couldn't be found.
sl@0
   980
	*/
sl@0
   981
	inline TInt RemoveSerialNumberStringDescriptor();
sl@0
   982
sl@0
   983
	/** Retrieves the string descriptor identified by the iConfiguration index field of the (first) Standard
sl@0
   984
		Configuration Descriptor into the aString argument.
sl@0
   985
sl@0
   986
		@param aString Receives configuration string.
sl@0
   987
sl@0
   988
		@return KErrNone if successful, KErrArgument if MaxLength of aString is too small to hold the entire
sl@0
   989
		descriptor, KErrNotFound if the string descriptor couldn't be found.
sl@0
   990
	*/
sl@0
   991
	inline TInt GetConfigurationStringDescriptor(TDes16& aString);
sl@0
   992
sl@0
   993
	/** Sets the string descriptor identified by the iConfiguration index field of the Standard Configuration
sl@0
   994
		Descriptor to the aString argument.
sl@0
   995
sl@0
   996
		@param aString Contains the new serial number string descriptor.
sl@0
   997
sl@0
   998
		@return KErrNone if successful, KErrNoMemory if no memory is available to store the new string from
sl@0
   999
		aString (in which case the old string descriptor will be preserved).
sl@0
  1000
	*/
sl@0
  1001
	inline TInt SetConfigurationStringDescriptor(const TDesC16& aString);
sl@0
  1002
sl@0
  1003
	/** Removes (deletes) the string descriptor identified by the iConfiguration index field of the Standard
sl@0
  1004
		Configuration Descriptor and sets that field to zero.
sl@0
  1005
sl@0
  1006
		@return KErrNone if successful, KErrNotFound if the string descriptor couldn't be found.
sl@0
  1007
	*/
sl@0
  1008
	inline TInt RemoveConfigurationStringDescriptor();
sl@0
  1009
sl@0
  1010
	/** Copies the string of the USB string descriptor at the specified index in the string descriptor array
sl@0
  1011
		into the aString argument.
sl@0
  1012
sl@0
  1013
		Although this function can also be used for it, for querying most standard string descriptors
sl@0
  1014
		there exists a set of dedicated access functions.
sl@0
  1015
sl@0
  1016
		@see RDevUsbcClient::GetStringDescriptorLangId
sl@0
  1017
		@see RDevUsbcClient::GetManufacturerStringDescriptor
sl@0
  1018
		@see RDevUsbcClient::GetProductStringDescriptor
sl@0
  1019
		@see RDevUsbcClient::GetSerialNumberStringDescriptor
sl@0
  1020
		@see RDevUsbcClient::GetConfigurationStringDescriptor
sl@0
  1021
sl@0
  1022
		@param aIndex The position of the string descriptor in the string descriptor array.
sl@0
  1023
		@param aString The target location for the string descriptor copy.
sl@0
  1024
sl@0
  1025
		@return KErrNone if successful, KErrNotFound if no string descriptor exists at the specified index,
sl@0
  1026
		KErrArgument if MaxLength() of aString is too small to hold the entire descriptor.
sl@0
  1027
	*/
sl@0
  1028
	inline TInt GetStringDescriptor(TUint8 aIndex, TDes16& aString);
sl@0
  1029
sl@0
  1030
	/** Sets the aString argument to be the string of a USB string descriptor at the specified index in the
sl@0
  1031
		string descriptor array. If a string descriptor already exists at that position then its string will
sl@0
  1032
		be replaced.
sl@0
  1033
sl@0
  1034
		Care should be taken, when choosing aIndex, not to inadvertently overwrite one of the standard
sl@0
  1035
		string descriptors.	For their manipulation there exists a set of dedicated access functions.
sl@0
  1036
sl@0
  1037
		@see RDevUsbcClient::SetStringDescriptorLangId
sl@0
  1038
		@see RDevUsbcClient::SetManufacturerStringDescriptor
sl@0
  1039
		@see RDevUsbcClient::SetProductStringDescriptor
sl@0
  1040
		@see RDevUsbcClient::SetSerialNumberStringDescriptor
sl@0
  1041
		@see RDevUsbcClient::SetConfigurationStringDescriptor
sl@0
  1042
sl@0
  1043
		@param aIndex The position of the string descriptor in the string descriptor array.
sl@0
  1044
		@param aString Contains the string descriptor to be set.
sl@0
  1045
sl@0
  1046
		@return KErrNone if successful, KErrArgument if aIndex is invalid, KErrNoMemory if no memory
sl@0
  1047
		is available to store the new string (an existing descriptor at that index will be preserved).
sl@0
  1048
	*/
sl@0
  1049
	inline TInt SetStringDescriptor(TUint8 aIndex, const TDesC16& aString);
sl@0
  1050
sl@0
  1051
	/** Removes (deletes) the USB string descriptor at the specified index in the string descriptor array.
sl@0
  1052
		The position in the array of other string descriptors is not affected.
sl@0
  1053
sl@0
  1054
		Care should be taken, when choosing aIndex, not to inadvertently delete a standard string descriptor
sl@0
  1055
		(also because index references from non-string descriptors would be invalidated). For the deletion
sl@0
  1056
		of most standard string descriptors there exists a set of dedicated functions.
sl@0
  1057
sl@0
  1058
		@see RDevUsbcClient::RemoveManufacturerStringDescriptor
sl@0
  1059
		@see RDevUsbcClient::RemoveProductStringDescriptor
sl@0
  1060
		@see RDevUsbcClient::RemoveSerialNumberStringDescriptor
sl@0
  1061
		@see RDevUsbcClient::RemoveConfigurationStringDescriptor
sl@0
  1062
sl@0
  1063
		@param aIndex The position of the string descriptor in the string descriptor array.
sl@0
  1064
sl@0
  1065
		@return KErrNone if successful, KErrNotFound if no string descriptor exists at the specified index.
sl@0
  1066
	*/
sl@0
  1067
	inline TInt RemoveStringDescriptor(TUint8 aIndex);
sl@0
  1068
sl@0
  1069
sl@0
  1070
sl@0
  1071
	/**  Requests notification for when there is data available on the buffer indicated.  If the buffer
sl@0
  1072
	     already has data in it, it will return immediately, otherwise it will block until there is.
sl@0
  1073
sl@0
  1074
	If the BIL methods are being used (recommended), then this method should not be called directly,
sl@0
  1075
	using TEndpointBuffer::GetBuffer instead.
sl@0
  1076
sl@0
  1077
	@param aBufferNumber Indicates the buffer for which the caller wishes to know about data 
sl@0
  1078
	additions.  The buffer needed of any given endpoint can be found by inspecting the alternative
sl@0
  1079
	setting table, in the chunk header.  The location of the buffer can be found by looking at the
sl@0
  1080
	buffer offset table, also in the chunk header. 
sl@0
  1081
sl@0
  1082
	@param aStatus The request status where notification of completion is directed. KErrCancel is
sl@0
  1083
	returned if the asynchronous operation was cancelled.
sl@0
  1084
sl@0
  1085
	@param aLength A preference for the quantity of data to be read.  This value is only a 
sl@0
  1086
	suggestion and my be ignored.  The default value of 0 indicates no preference.
sl@0
  1087
sl@0
  1088
	@return KErrNone on success, or KErrArgument if the buffer number is invalid.    
sl@0
  1089
	*/
sl@0
  1090
	inline TInt ReadDataNotify(TInt aBufferNumber, TRequestStatus& aStatus, TInt aLength=0);
sl@0
  1091
sl@0
  1092
sl@0
  1093
	/**  Requests the LDD to write the contents of the given buffer to the USB hardware.  Notification is
sl@0
  1094
	given when this is complete.  More then one write request can be queued on any one endpoint, to allow
sl@0
  1095
	for less Hardware idling between buffers.
sl@0
  1096
sl@0
  1097
	If the BIL methods are being used (recommended), then this method should not be called directly,
sl@0
  1098
	using TEndpointBuffer::WriteBuffer instead.
sl@0
  1099
sl@0
  1100
	@param aBufferNumber represents the buffer number of the buffer of which the caller has placed the
sl@0
  1101
	data. As described with ReadDataNotify(...), details of the buffers can be found in the chunk header.
sl@0
  1102
sl@0
  1103
	@param aStart Represents the start offset of the data within the chunk.  This start location must be
sl@0
  1104
	aligned to a multiple of the maximum packet size for the endpoint, so that the data can be DMAed
sl@0
  1105
	straight out of the buffer.
sl@0
  1106
sl@0
  1107
	@param aLength Represents the amount of data to be sent to the host in bytes.
sl@0
  1108
sl@0
  1109
	@param aFlags Is a bitfield, where bit 0 should be set if a ZLP is to be sent to the host after the
sl@0
  1110
	current transaction.  All other bits are reserved for future use.
sl@0
  1111
*/
sl@0
  1112
	inline void WriteData(TInt aBufferNumber, TUint aStart, TUint aLength, TUint aFlags, TRequestStatus& aStatus);
sl@0
  1113
sl@0
  1114
sl@0
  1115
sl@0
  1116
	/** Cancels an outstanding read request on endpoint buffer aBufferNumber.
sl@0
  1117
sl@0
  1118
		@param aBufferNumber The endpoint buffer number whose read is to be cancelled.
sl@0
  1119
	*/
sl@0
  1120
	inline void ReadCancel(TInt aBufferNumber);
sl@0
  1121
sl@0
  1122
sl@0
  1123
	/** Cancels an outstanding write request on endpoint buffer aBufferNumber.
sl@0
  1124
sl@0
  1125
		@param aBufferNumber The endpoint buffer number whose write is to be cancelled.
sl@0
  1126
	*/
sl@0
  1127
	inline void WriteCancel(TInt aBufferNumber);
sl@0
  1128
sl@0
  1129
	/** Cancels any transfer on any endpoint buffer specified in aBufferMask.
sl@0
  1130
sl@0
  1131
		@code
sl@0
  1132
		// Cancel transfer requests on buffers 1, 2, 3 & 4
sl@0
  1133
		usbPort.EndpointTransferCancel(1 | 2 | 4 | 8);
sl@0
  1134
		@endcode
sl@0
  1135
sl@0
  1136
		@param aBufferMask bitmap of the endpoint buffer numbers.
sl@0
  1137
	*/
sl@0
  1138
	inline void EndpointTransferCancel(TUint aBufferMask);
sl@0
  1139
sl@0
  1140
	/**	Register for notification when a change of the Interface alternate setting or the USB Controller's
sl@0
  1141
		current state occurs. When the alternate setting or the Controller state changes, then the
sl@0
  1142
		asynchronous function completes and the current alternate setting number or Controller state is
sl@0
  1143
		written back to aValue. If the KUsbAlternateSetting bit is set then the remaining bits are the
sl@0
  1144
		alternate setting number. Otherwise aValue is interpreted as a TUsbcDeviceState.
sl@0
  1145
sl@0
  1146
		@see TUsbcDeviceState
sl@0
  1147
sl@0
  1148
		@param aStatus The request status.
sl@0
  1149
		@param aValue Receives the alternate setting number or Controller state.
sl@0
  1150
	*/
sl@0
  1151
	inline void AlternateDeviceStatusNotify(TRequestStatus& aStatus, TUint& aValue);
sl@0
  1152
sl@0
  1153
	/** Completes an AlternateDeviceStatusNotify request. If a request has previously been made then the
sl@0
  1154
		status variable is updated with the current device state.
sl@0
  1155
	*/
sl@0
  1156
	inline void AlternateDeviceStatusNotifyCancel();
sl@0
  1157
sl@0
  1158
	/** If the channel has changed the grouping of endpoints between interfaces or changed the interface class
sl@0
  1159
		type from the defaults then it is necessary to force a re-enumeration. This will typically involve the
sl@0
  1160
		Symbian OS device initiating a disconnection and re-connection. This is an asynchronous operation
sl@0
  1161
		which will complete when the Controller is successfully configured by the host, i.e. has achieved
sl@0
  1162
		EUsbcDeviceStateConfigured.  Since it is not known if the operation has failed, at the same time that
sl@0
  1163
		a ReEnumerate request is made, a timer should be set up to complete after approximately 5 seconds. It
sl@0
  1164
		can be assumed that if the operation has not completed after this time interval then it will not
sl@0
  1165
		complete.
sl@0
  1166
sl@0
  1167
		@param aStatus The request status.
sl@0
  1168
	*/
sl@0
  1169
	inline void ReEnumerate(TRequestStatus& aStatus);
sl@0
  1170
sl@0
  1171
	/** Cancels an outstanding ReEnumerate() request.
sl@0
  1172
	*/
sl@0
  1173
	inline void ReEnumerateCancel();
sl@0
  1174
sl@0
  1175
	/**	Register for notification when a change in stall status of any of the interface's endpoints occurs,
sl@0
  1176
		but not ep0. When a change in stall status occurs, then the asynchronous function completes and the
sl@0
  1177
		current stall state is written back to 'aEndpointStatus' as a bit map: Only stall state changes caused
sl@0
  1178
		by SET_FEATURE and CLEAR_FEATURE standard commands on ep0 will be notified when this function
sl@0
  1179
		completes. After this request completes the request should be re-issued to obtain future
sl@0
  1180
		notifications.
sl@0
  1181
sl@0
  1182
		@param aStatus The request status.
sl@0
  1183
		@param aEndpointMask A bitmap of the endpoints' stall status. This is filled in when the call completes.
sl@0
  1184
		bit 1 represents the interface's virtual endpoint 1, (KUsbcEndpoint1Bit)
sl@0
  1185
		bit 2 represents the interface's virtual endpoint 2, (KUsbcEndpoint2Bit) etc.
sl@0
  1186
		bit value 0 - not stalled,
sl@0
  1187
		bit value 1 - stalled.
sl@0
  1188
	*/
sl@0
  1189
	inline void EndpointStatusNotify(TRequestStatus& aStatus, TUint& aEndpointMask);
sl@0
  1190
sl@0
  1191
	/** Completes an endpoint status notify request.
sl@0
  1192
	*/
sl@0
  1193
 	inline void EndpointStatusNotifyCancel();
sl@0
  1194
sl@0
  1195
    /** Get current on-the-go features relating to the ability of device/host pair to
sl@0
  1196
        perform OTG role swap.
sl@0
  1197
sl@0
  1198
        @param aFeatures On return it contains features the device currently has.
sl@0
  1199
                bit 2 represents b_hnp_enable,       (KUsbOtgAttr_B_HnpEnable)
sl@0
  1200
                bit 3 represents a_hnp_support,      (KUsbOtgAttr_A_HnpSupport)
sl@0
  1201
                bit 4 represents a_alt_hnp_support,  (KUsbOtgAttr_A_AltHnpSupport)
sl@0
  1202
        @return KErrNone if successful, KErrNotSupported if OTG is not supported by
sl@0
  1203
                this device, otherwise system-wide error returns.
sl@0
  1204
    */
sl@0
  1205
    inline TInt GetOtgFeatures(TUint8& aFeatures);
sl@0
  1206
sl@0
  1207
    /** Register for notification on USB on-the-go features' change. If any OTG feature
sl@0
  1208
        is changed, request completes and current feature value is filled in aValue.
sl@0
  1209
sl@0
  1210
        @param aStatus Request status object.
sl@0
  1211
        @param aValue On request completion, contains current OTG feature value.
sl@0
  1212
    */
sl@0
  1213
    inline void OtgFeaturesNotify(TRequestStatus& aStatus, TUint8& aValue);
sl@0
  1214
sl@0
  1215
    /** Cancel pending OTG feature request.
sl@0
  1216
    */
sl@0
  1217
    inline void OtgFeaturesNotifyCancel();
sl@0
  1218
sl@0
  1219
	/**	This function retrieves the alternate setting that the WriteData function can
sl@0
  1220
		write to.  After a host sets the alternate setting, writes to the IN endpoint
sl@0
  1221
		are not permitted by the LDD until this method has been called.
sl@0
  1222
		This function is not asynchronous nor blocking, and should not be used to
sl@0
  1223
		detect that an alternate setting has happened.
sl@0
  1224
sl@0
  1225
		If the BIL methods are being used (recommended), then this method should not be called directly. 
sl@0
  1226
sl@0
  1227
		@return The alternative setting number or KErrInUse if the current alternative
sl@0
  1228
	 	setting is already in use, that is to say that the alternative setting has not changed.
sl@0
  1229
	*/
sl@0
  1230
	inline TInt StartNextInAlternateSetting();
sl@0
  1231
sl@0
  1232
sl@0
  1233
	/*******************************\
sl@0
  1234
	*  Buffer Interface Layer (BIL) *
sl@0
  1235
	\*******************************/
sl@0
  1236
sl@0
  1237
	// This following functions, as well as the ones in TEndpointBuffer (below), 
sl@0
  1238
	// can be considered the BIL.
sl@0
  1239
sl@0
  1240
sl@0
  1241
	/**
sl@0
  1242
	Finalize the interface, creating a chunk for use with reading/writing to endpoints.
sl@0
  1243
	FinalizeInterface should be called after all alternate interfaces have been set up with SetInteface.
sl@0
  1244
	Any attempt to call SetInterface after this stage will fail.
sl@0
  1245
sl@0
  1246
	@return		KErrNone if operation is successfull
sl@0
  1247
				System wide error codes if chunk creation failed
sl@0
  1248
	*/
sl@0
  1249
	IMPORT_C TInt FinalizeInterface();
sl@0
  1250
sl@0
  1251
	/**
sl@0
  1252
	Finalize the interface, creating a chunk for use with reading/writing to endpoints. This 
sl@0
  1253
	version of the method provides a handle to the chunk, which is needed if the
sl@0
  1254
	buffer is to be passed and used by other processes. 
sl@0
  1255
	FinalizeInterface should be called after all alternate interfaces have been set up with SetInteface.
sl@0
  1256
	Any attempt to call SetInterface after this stage will fail.
sl@0
  1257
sl@0
  1258
	@param	aChunk	On success aChunk points to the created chunk.
sl@0
  1259
	@return			KErrNone if operation is successfull
sl@0
  1260
					System wide error codes if chunk creation failed
sl@0
  1261
	*/
sl@0
  1262
	IMPORT_C TInt FinalizeInterface(RChunk*& aChunk);
sl@0
  1263
sl@0
  1264
	/**
sl@0
  1265
	Opens an endpoint, an endpoint should be opened before any operations are attempted on it.
sl@0
  1266
sl@0
  1267
	@param	aEpB	On success aEpB will be filled with the relevant details for that endpoint	
sl@0
  1268
	@param	aEpI	endpoint number to be opened
sl@0
  1269
	@return			KErrNone if operation is successfull
sl@0
  1270
					KErrNotFound if endpoint number is not valid for current alternate setting
sl@0
  1271
					KErrInUse if endpoint is already opened
sl@0
  1272
					KErrArgument if endpoint buffer argument passed is already in existence and being used
sl@0
  1273
	*/
sl@0
  1274
	IMPORT_C TInt OpenEndpoint(TEndpointBuffer & aEpB, TInt aEpI);
sl@0
  1275
sl@0
  1276
	/**
sl@0
  1277
	Switches to processing from one Alternate setting to the next. All open endpoints (except EP0) must
sl@0
  1278
	be close before this can be called.
sl@0
  1279
sl@0
  1280
	@param	aFlush	If ETrue, the method will purge the buffers of any data unread for the old setting.
sl@0
  1281
					If each endpoint was not read up until KErrEof was reached, then this should be set.
sl@0
  1282
					 
sl@0
  1283
	@return		the alternate Setting if operation is successful
sl@0
  1284
				KErrInUse if any endpoints in present alternate setting is still open (except Ep0)
sl@0
  1285
				KErrNotReady if there is no change in alternate setting
sl@0
  1286
				KErrInUse if StartNextInAlternateSetting detects no change in alternate setting.
sl@0
  1287
				KErrCorrupt if the buffer structure becomes corrupt.
sl@0
  1288
	*/
sl@0
  1289
	IMPORT_C TInt StartNextOutAlternateSetting(TBool aFlush);
sl@0
  1290
sl@0
  1291
	/**
sl@0
  1292
	Sets aChunk to RChunk currently in use by BIL.
sl@0
  1293
sl@0
  1294
	@param	aChunk	aChunk will point to RChunk currently in use by BIL
sl@0
  1295
	@return KErrNone on success otherwise a system wide error code, if an error has occurred.
sl@0
  1296
	*/
sl@0
  1297
	IMPORT_C TInt GetDataTransferChunk(RChunk*& aChunk);
sl@0
  1298
sl@0
  1299
private:
sl@0
  1300
	/** @internalTechnology */
sl@0
  1301
	TInt Drain(TUint aBuffer);
sl@0
  1302
	/** @internalTechnology */ 
sl@0
  1303
	TInt Peek(TUint aBuffer);
sl@0
  1304
	/** @internalTechnology */ 
sl@0
  1305
	TInt FindNextAlternateSetting();
sl@0
  1306
sl@0
  1307
private:
sl@0
  1308
	TUint8 iEndpointStatus;	/** @internalTechnology Each bit corresponds to each endpoint's open/close status. */
sl@0
  1309
	RChunk iSharedChunk; 	/** @internalTechnology The shared chunk in use. */
sl@0
  1310
	TInt iAltSettingSeq;	/** @internalTechnology Used to track alternate setting changes. */
sl@0
  1311
	TInt iAlternateSetting; /** @internalTechnology The alternate setting used by OUT endpoints, which may lag that of IN endpoints. */
sl@0
  1312
	TInt iNewAltSetting; 	/** @internalTechnology Used to track the next alternate setting change on OUT endpoints,
sl@0
  1313
								during transition from one to the next. */ 
sl@0
  1314
	TInt iInAltSetting; 	/** @internalTechnology The alternate setting used by IN endpoints, which may be ahead of OUT endpoints. */
sl@0
  1315
sl@0
  1316
sl@0
  1317
	friend class TEndpointBuffer;	
sl@0
  1318
#endif // #ifndef __KERNEL_MODE__
sl@0
  1319
	};
sl@0
  1320
sl@0
  1321
#ifndef __KERNEL_MODE__
sl@0
  1322
sl@0
  1323
sl@0
  1324
/**
sl@0
  1325
 This class forms part of the Buffer Interface Layer (BIL), which forms the 
sl@0
  1326
 user side component of the USB Shared Chunk Client.  Objects of this type
sl@0
  1327
 represent the shared chunk buffer, for a given endpoint.
sl@0
  1328
 The method RDevUsbcScClient::OpenEndpoint() should be used to initialise
sl@0
  1329
 objects of this type.
sl@0
  1330
*/
sl@0
  1331
class TEndpointBuffer
sl@0
  1332
	{
sl@0
  1333
public:
sl@0
  1334
 
sl@0
  1335
	/**
sl@0
  1336
	This return value used by GetBuffer indicates that the item pointed to by 
sl@0
  1337
	aBuffer/aOffset represents a state change, instead of endpoint data.
sl@0
  1338
	*/
sl@0
  1339
	const static TInt KStateChange = 0x01;
sl@0
  1340
sl@0
  1341
public:
sl@0
  1342
	IMPORT_C TEndpointBuffer();
sl@0
  1343
sl@0
  1344
	/**
sl@0
  1345
	Read the next block of data from the Shared chunk buffer. This method should be used if the user wishes to process one block of data at a time. 
sl@0
  1346
	This method also expires the previously read block, meaning that the memory used by the block of data may be re-used by the system, overwriting it
sl@0
  1347
	with new data.
sl@0
  1348
	@param	aBuffer	aBuffer will point to data location in shared chunk	
sl@0
  1349
	@param	aSize	aSize will hold the number of valid bytes that can be read
sl@0
  1350
	@param	aZLP	aZLP will indicate whether its a short packet or not
sl@0
  1351
	@param	aStatus	In case of no data available to be read, aStatus will be passed on to LDD, and user side should wait for 
sl@0
  1352
					asynchronous call ReadDataNotify to return
sl@0
  1353
	@param	aLength	Not used at the moment
sl@0
  1354
	@return			KErrCompletion if operation is successfull and data is available in the buffer
sl@0
  1355
					KErrNone if no data is available to be read
sl@0
  1356
					KErrEof if alternate setting has changed
sl@0
  1357
					KErrAccessDenied if endpoint is not opened
sl@0
  1358
					KErrNotSupported if its an IN endpoint
sl@0
  1359
					TEndpointBuffer::KStateChange if the returned data represents a state change (Ep0 only)
sl@0
  1360
	*/
sl@0
  1361
	IMPORT_C TInt GetBuffer(TAny*& aBuffer,TUint& aSize,TBool& aZLP,TRequestStatus& aStatus,TUint aLength=0);
sl@0
  1362
sl@0
  1363
	/**
sl@0
  1364
	Read the next block of data from the Shared chunk buffer. This method should be used if the user wishes to process one block of data at a time. 
sl@0
  1365
	This method also expires the previously read block, meaning that the memory used by the block of data may be re-used by the system, overwriting it
sl@0
  1366
	with new data. 
sl@0
  1367
	@param	aOffset	aOffset will point to data offset in shared chunk	
sl@0
  1368
	@param	aSize	aSize will hold the number of valid bytes that can be read
sl@0
  1369
	@param	aZLP	aZLP will indicate whether its a short packet or not
sl@0
  1370
	@param	aStatus	In case of no data available to be read, aStatus will be passed on to LDD, and user side should wait for 
sl@0
  1371
			asynchronous call ReadDataNotify to return
sl@0
  1372
	@param	aLength	Not used at the moment
sl@0
  1373
	@return	KErrCompletion if operation is successfull and data is available in the buffer
sl@0
  1374
			KErrNone if no data is available to be read
sl@0
  1375
			KErrEof if alternate setting has changed
sl@0
  1376
			KErrAccessDenied if endpoint is not opened
sl@0
  1377
			KErrNotSupported if its an IN endpoint
sl@0
  1378
			TEndpointBuffer::KStateChange if the returned data represents a state change (Ep0 only)
sl@0
  1379
	*/
sl@0
  1380
	inline   TInt GetBuffer(TUint& aOffset,TUint& aSize,TBool& aZLP,TRequestStatus& aStatus,TUint aLength=0);
sl@0
  1381
sl@0
  1382
	/**
sl@0
  1383
	Read the next block of data from the Shared chunk buffer. This method should be used if the user wishes to process more than one block of data
sl@0
  1384
	simultaneously. The user must call one of the Expire() methods to free the memory used by the block of data, and make it available for new data.
sl@0
  1385
	@param	aBuffer	aBuffer will point to data location in shared chunk	
sl@0
  1386
	@param	aSize	aSize will hold the number of valid bytes that can be read
sl@0
  1387
	@param	aZLP	aZLP will indicate whether its a short packet or not
sl@0
  1388
	@param	aStatus	In case of no data available to be read, aStatus will be passed on to LDD, and user side should wait for 
sl@0
  1389
					asynchronous call ReadDataNotify to return
sl@0
  1390
	@param	aLength	Not used at the moment
sl@0
  1391
	@return			KErrCompletion if operation is successfull and data is available in the buffer
sl@0
  1392
					KErrNone if no data is available to be read
sl@0
  1393
					KErrEof if alternate setting has changed
sl@0
  1394
					KErrAccessDenied if endpoint is not opened
sl@0
  1395
					KErrNotSupported if its an IN endpoint
sl@0
  1396
					TEndpointBuffer::KStateChange if the returned data represents a state change (Ep0 only)
sl@0
  1397
	*/
sl@0
  1398
	IMPORT_C TInt TakeBuffer(TAny*& aBuffer,TUint& aSize,TBool& aZLP,TRequestStatus& aStatus,TUint aLength=0);
sl@0
  1399
sl@0
  1400
	/**
sl@0
  1401
	Used in conjunction with TakeBuffer method. This will make the 'oldest' block of data previously read out using the TakeBuffer method, but not
sl@0
  1402
	already	expired, to be released back to the system. This block can then be overwritten with new data, when it becomes available.
sl@0
  1403
	@return 		KErrNotSupported if its an IN endpoint
sl@0
  1404
					KErrNone if iTail is successfully bumped to the next transfer to be read
sl@0
  1405
	*/
sl@0
  1406
sl@0
  1407
	IMPORT_C TInt Expire();
sl@0
  1408
sl@0
  1409
	/**
sl@0
  1410
	Used in conjunction with TakeBuffer method. This function allows blocks to be expired in a different order from which the user read the data out
sl@0
  1411
	of the buffer. Note that the system will only reuse blocks up to the point of the oldest non-expired block read. This means that the user must
sl@0
  1412
	ensure to expire all blocks in a timely manner to prevent the system from running out of usable memory.
sl@0
  1413
	@param	aAddress aAddress is the start address of the block of data previously read by the user which can be overwritten.	
sl@0
  1414
	@return			KErrNotSupported if its an IN endpoint
sl@0
  1415
					KErrNone if iTail  is successfully bumped to the next transfer to be read
sl@0
  1416
					KErrNotFound if a 'transfer' with start address of the data block is aAddress is not found
sl@0
  1417
	*/
sl@0
  1418
sl@0
  1419
	IMPORT_C TInt Expire(TAny* aAddress);
sl@0
  1420
sl@0
  1421
	/**
sl@0
  1422
	Initiates write operation.
sl@0
  1423
	@param	aBuffer	aBuffer will point to data in shared chunk to be written out. aBuffer should be aligned	
sl@0
  1424
	@param	aSize	aSize will hold the number of valid bytes to be written out
sl@0
  1425
	@param	aZLP	aZLP will indicate whether a ZLP should be transmitted after writing the data out
sl@0
  1426
	@param	aStatus	This is an asynchronous function and user side should wait on status to know the end of write operation
sl@0
  1427
	@return			KErrNone if a write is successfully queued
sl@0
  1428
					KErrEof if an alternate setting change has occurred, ending this endpoint.
sl@0
  1429
					KErrNotSupported if its an OUT endpoint
sl@0
  1430
					KErrAccessDenied if endpoint is not opened, or if buffer is out of range
sl@0
  1431
	*/
sl@0
  1432
	IMPORT_C TInt WriteBuffer(TAny* aBuffer,TUint aSize,TBool aZLP,TRequestStatus& aStatus);
sl@0
  1433
sl@0
  1434
	/**
sl@0
  1435
	Initiates write operation.
sl@0
  1436
	@param	aOffset	aOffset will point to offset of data in shared chunk to be written out. 	
sl@0
  1437
	@param	aSize	aSize will hold the number of valid bytes to be written out
sl@0
  1438
	@param	aZLP	aZLP will indicate whether a ZLP should be transmitted after writing the data out
sl@0
  1439
	@param	aStatus	This is an asynchronous function and user side should wait on status to know the end of write operation
sl@0
  1440
	@return			KErrNone if a write is successfully queued
sl@0
  1441
					KErrEof if an alternate setting change has occurred, ending this endpoint.
sl@0
  1442
					KErrNotSupported if its an OUT endpoint
sl@0
  1443
					KErrAccessDenied if endpoint is not opened, or if buffer is out of range
sl@0
  1444
	*/
sl@0
  1445
	IMPORT_C TInt WriteBuffer(TUint aOffset,TUint aSize,TBool aZLP,TRequestStatus& aStatus);
sl@0
  1446
	/**
sl@0
  1447
	For IN endpoints, this method retrieves the geometry for the buffer, for which the
sl@0
  1448
	caller should stay within, when using the WriteBuffer method.
sl@0
  1449
sl@0
  1450
	@param aStart A pointer, which is set to point to the start of the buffer.
sl@0
  1451
	@param aSize An TUint for which the size (in bytes) of buffer, is written into.
sl@0
  1452
sl@0
  1453
	@returns KErrNotSupported if the object is on an open IN endpoint, 
sl@0
  1454
			otherwise it KErrNone is returned on success.
sl@0
  1455
	*/
sl@0
  1456
	IMPORT_C TInt GetInBufferRange(TAny*& aStart, TUint& aSize);
sl@0
  1457
sl@0
  1458
	/**
sl@0
  1459
	For IN endpoints, this method retrieves the geometry for the buffer, for which the
sl@0
  1460
	caller should stay within, when using the WriteBuffer method.
sl@0
  1461
sl@0
  1462
	@param aStart A TUint for which the buffer's start offset from the start of the chunk,
sl@0
  1463
					in written into.
sl@0
  1464
	@param aSize An TUint for which the size (in bytes) of buffer, is written into.
sl@0
  1465
sl@0
  1466
	@returns KErrNotSupported if the object is on an open IN endpoint, 
sl@0
  1467
			otherwise it KErrNone is returned on success.
sl@0
  1468
	*/
sl@0
  1469
	IMPORT_C TInt GetInBufferRange(TUint& aStart, TUint& aSize);
sl@0
  1470
sl@0
  1471
	/**
sl@0
  1472
	This method closes the endpoint, after it was opened with 
sl@0
  1473
	RDevUsbcScClient::OpenEndpoint(...).
sl@0
  1474
	No method of this object can be used after this	call, until
sl@0
  1475
	RDevUsbcScClient::OpenEndpoint(...) is called on it again.
sl@0
  1476
sl@0
  1477
	@return	KErrNone on success, otherwise KErrNotFound, if the current object is not open.
sl@0
  1478
	*/
sl@0
  1479
	IMPORT_C TInt Close();
sl@0
  1480
sl@0
  1481
	IMPORT_C void Dump();
sl@0
  1482
sl@0
  1483
	/**
sl@0
  1484
	Used to retrieve the endpoint number for which this object was open on.
sl@0
  1485
sl@0
  1486
	@returns the endpoint number opened by this object.
sl@0
  1487
	*/
sl@0
  1488
	inline TInt GetEndpointNumber();
sl@0
  1489
sl@0
  1490
private:
sl@0
  1491
	/** @internalTechnology */
sl@0
  1492
	void Construct(RDevUsbcScClient* aClient, TUint8* aBaseAddr, const TUsbcScHdrEndpointRecord* aEpType,
sl@0
  1493
		 				TInt aEndpointNumber, SUsbcScBufferHeader* aEndpointHdr=NULL);
sl@0
  1494
sl@0
  1495
private:
sl@0
  1496
	enum TDir {EValid = KErrNone, ENotValid = KErrNotSupported, EEOF = KErrEof};
sl@0
  1497
	TDir iInState;						/** @internalTechnology describes state of endpoint, KErrNone if IN endpoint and ready to use, KErrNotSupportd if not an IN endpoint, KErrEof on alternate setting change */
sl@0
  1498
	TDir iOutState;						/** @internalTechnology describes state of endpoint, KErrNone if OUT endpoint and ready to use, KErrNotSupportd if not an OUT endpoint, KErrEoF on alternate setting change */
sl@0
  1499
	TInt iEndpointNumber;				/** @internalTechnology associated endpoint number */
sl@0
  1500
	TInt iBufferNum;					/** @internalTechnology buffer number within shared chunk */
sl@0
  1501
	RDevUsbcScClient *iClient;			/** @internalTechnology Parent RDevUsbcScClient object */
sl@0
  1502
	TUint iBaseAddr;					/** @internalTechnology The address of the beginning of the Ldd's chunk */
sl@0
  1503
sl@0
  1504
	SUsbcScBufferHeader* iEndpointHdr;  /** @internalTechnology Pointer to the buffer Header for OUT/BI endpoints */
sl@0
  1505
	TUint8* iBufferStartAddr; 			/** @internalTechnology IN/BI endpoint buffer start address within shared chunk */
sl@0
  1506
	TUint iSize;						/** @internalTechnology IN/BI endpoint buffer size within shared chunk */
sl@0
  1507
	friend class RDevUsbcScClient;
sl@0
  1508
	};
sl@0
  1509
sl@0
  1510
/**
sl@0
  1511
This class can be used to retrieve the geometry of the structures 
sl@0
  1512
within a shared chunk, as used by RDevUsbcScClient.
sl@0
  1513
sl@0
  1514
@see RDevUsbcScClient
sl@0
  1515
*/
sl@0
  1516
sl@0
  1517
class TUsbcScChunkHeader
sl@0
  1518
	{
sl@0
  1519
public:
sl@0
  1520
/**
sl@0
  1521
The constructor for the TUsbcScChunkHeader class takes a RChunk object, 
sl@0
  1522
containing USBcSc data structures, and initialises itself, so that
sl@0
  1523
GetNumberOfEndpoints & GetBuffer can be used to interpret the chunk structures.
sl@0
  1524
sl@0
  1525
@param	An RChunk object, which represents an shared chunk, containing the
sl@0
  1526
		USBcSc data structures to be retrieved.
sl@0
  1527
*/
sl@0
  1528
	IMPORT_C TUsbcScChunkHeader(RChunk aChunk);
sl@0
  1529
/**
sl@0
  1530
Retrieves the available information in the chunk, about the given endpoint, 
sl@0
  1531
on the given alternate setting.  The returned TUsbcScBufferRecord, 
sl@0
  1532
represents the buffer geometry, used for for the endpoint, while
sl@0
  1533
the filled in TUsbcScHdrEndpointRecord represents additional endpoint
sl@0
  1534
information.
sl@0
  1535
sl@0
  1536
@param aAltSetting The alternate setting, for which the provided endpoint number, is a member of.
sl@0
  1537
@param aEndpoint	The endpoint, who's buffer geometry is required.
sl@0
  1538
@param aEndpointInf	The provided record is filled in with details of the endpoint, who's number was given.
sl@0
  1539
*/
sl@0
  1540
	IMPORT_C TUsbcScBufferRecord* GetBuffer(TInt aAltSetting, TInt aEndpoint, TUsbcScHdrEndpointRecord*& aEndpointInf);
sl@0
  1541
/**
sl@0
  1542
Retrieves the number of endpoints found in a given alternate setting.
sl@0
  1543
@param aAltSetting The alternate setting number, for which the number of endpoints contained within, is needed.
sl@0
  1544
*/
sl@0
  1545
	IMPORT_C TInt GetNumberOfEndpoints(TInt aAltSetting);
sl@0
  1546
sl@0
  1547
public:
sl@0
  1548
	TUsbcScChunkBuffersHeader*    iBuffers;		/** A pointer to the TUsbcScChunkBuffersHeader object, within the chunk header */
sl@0
  1549
	TUsbcScChunkAltSettingHeader* iAltSettings;	/** A pointer to the TUsbcScChunkAltSettingHeader object, within the chunk header */
sl@0
  1550
private:
sl@0
  1551
	RChunk iChunk;
sl@0
  1552
	};
sl@0
  1553
sl@0
  1554
#endif
sl@0
  1555
sl@0
  1556
#include <d32usbcsc.inl>
sl@0
  1557
sl@0
  1558
#endif // __D32USBCSC_H__