os/kernelhwsrv/kernel/eka/include/drivers/usbcsc.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) 2000-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\usbcsc.h
sl@0
    15
// Kernel side definitions for the USB Device driver stack (PIL + LDD).
sl@0
    16
// 
sl@0
    17
//
sl@0
    18
sl@0
    19
/**
sl@0
    20
 @file usbcsc.h
sl@0
    21
 @internalTechnology
sl@0
    22
*/
sl@0
    23
sl@0
    24
#ifndef __USBCSC_H__
sl@0
    25
#define __USBCSC_H__
sl@0
    26
sl@0
    27
#include <kernel/kernel.h>
sl@0
    28
#include <kernel/kern_priv.h>
sl@0
    29
#include <kernel/kpower.h>
sl@0
    30
#include <platform.h>
sl@0
    31
sl@0
    32
#include <d32usbcsc.h>
sl@0
    33
sl@0
    34
#include <drivers/usbcshared.h>
sl@0
    35
sl@0
    36
/** LDD Major version, This should agree with the information in RDevUsbcClient::TVer.
sl@0
    37
*/
sl@0
    38
const TInt KUsbcScMajorVersion = 0;
sl@0
    39
sl@0
    40
/** LDD Minor version, This should agree with the information in RDevUsbcClient::TVer.
sl@0
    41
*/
sl@0
    42
const TInt KUsbcScMinorVersion = 1;
sl@0
    43
sl@0
    44
/** LDD Build version, This should agree with the information in RDevUsbcClient::TVer.
sl@0
    45
*/
sl@0
    46
const TInt KUsbcScBuildVersion = KE32BuildVersionNumber;
sl@0
    47
sl@0
    48
/** Must correspond to the max enum of TRequest + 1;
sl@0
    49
	currently this is ERequestOtgFeaturesNotify = 10.
sl@0
    50
*/
sl@0
    51
const TInt KUsbcScMaxRequests = 11;
sl@0
    52
sl@0
    53
// Request queue sizes need to be power of 2.
sl@0
    54
sl@0
    55
/** The number of requests that can be queued on any IN endpoint */
sl@0
    56
const TInt KUsbcScInRequests = 4;
sl@0
    57
/** The number of requests that can be queued on any OUT endpoint */
sl@0
    58
const TInt KUsbcScOutRequests = 2;
sl@0
    59
sl@0
    60
/** In TUsbcScBuffer.iDirection, this indicates that the endpoint is an IN endpoint */
sl@0
    61
const TInt KUsbcScIn =  0;
sl@0
    62
/** In TUsbcScBuffer.iDirection, this indicates that the endpoint is an OUT endpoint */
sl@0
    63
const TInt KUsbcScOut = 1;
sl@0
    64
sl@0
    65
sl@0
    66
/** In TUsbcScBuffer.iDirection, this indicates that the endpoint is an Bidirectional endpoint
sl@0
    67
currently operating as an IN endpoint */
sl@0
    68
const TInt KUsbcScBiIn = 2;
sl@0
    69
/** In TUsbcScBuffer.iDirection, this indicates that the endpoint is an Bidirectional endpoint
sl@0
    70
currently operating as an OUT endpoint */
sl@0
    71
const TInt KUsbcScBiOut = 3;
sl@0
    72
sl@0
    73
/** The number of directions supported for endpoints, other then EP0.  Currently 2, IN and OUT. */
sl@0
    74
const TInt KUsbcScDirections = 2;
sl@0
    75
sl@0
    76
/** In TUsbcScBuffer::iDirection, this indicates that the endpoint direction is Unknown. */
sl@0
    77
const TInt KUsbcScUnknown = 4;
sl@0
    78
sl@0
    79
const TInt KPageSize = 0x1000;
sl@0
    80
sl@0
    81
/** The default buffer size requested for a endpoint, if the user app does not specify a size.*/
sl@0
    82
const TInt KUsbcScDefaultBufferSize = 0x10000; // 64k
sl@0
    83
sl@0
    84
/** The size of the unmapped region of memory between endpoint buffers.
sl@0
    85
This serves as a guard region, making memory over/under runs more obviose.*/
sl@0
    86
const TInt KGuardSize = KPageSize;
sl@0
    87
sl@0
    88
/** The size put aside for the chunk header structre.*/
sl@0
    89
const TInt KHeaderSize = KPageSize;
sl@0
    90
sl@0
    91
/** For buffers of size >= KUsbScBigBuffIs, The smallest unit of continiouse memory that will be used.
sl@0
    92
No read will be set up smaller then this, to avoid overly fragmenting the data.
sl@0
    93
*/
sl@0
    94
const TInt KUsbSc_BigBuff_MinimumRamRun = KPageSize;
sl@0
    95
sl@0
    96
/** For buffers of size < KUsbScBigBuffIs, The smallest unit of continiouse memory that will be used.
sl@0
    97
No read will be set up smaller then this, to avoid overly fragmenting the data.*/
sl@0
    98
const TInt KUsbSc_SmallBuff_MinimumRamRun = 1024;
sl@0
    99
sl@0
   100
/** The size a buffer request has to be to switch to using KUsbSc_BigBuff_MinimumRamRun.
sl@0
   101
If the requested buffer is smaller, then the smallest memory allocated to a buffer is KPageSize*/
sl@0
   102
const TInt KUsbScBigBuffIs = KPageSize*6;
sl@0
   103
sl@0
   104
sl@0
   105
sl@0
   106
// EP0 is mapped manually, unlike the other endpoints.
sl@0
   107
sl@0
   108
/** The position, within the chunk, that the EP0 IN buffer appears*/
sl@0
   109
const TInt KUsbScEP0InBufPos = 0x800;
sl@0
   110
/** The position, within the chunk, that the EP0 IN buffer ends*/
sl@0
   111
const TInt KUsbScEP0InBufEnd = KUsbScEP0InBufPos + 0x400;
sl@0
   112
sl@0
   113
// Its better for Out to go 2nd, so gaurd page after it.
sl@0
   114
/** The position, within the chunk, that the EP0 OUT buffer appears*/
sl@0
   115
const TInt KUsbScEP0OutBufPos = 0xc00;
sl@0
   116
/** The position, within the chunk, that the EP0 OUT buffer ends*/
sl@0
   117
const TInt KUsbScEP0OutBufEnd = KUsbScEP0OutBufPos + 0x400;
sl@0
   118
sl@0
   119
/** The number of the entry within the chunk BufferRecord table, for the OUT ep0 buffer.*/
sl@0
   120
const TInt KUsbcScEp0OutBuff = 0;
sl@0
   121
/** The number of the entry within the chunk BufferRecord table, for the IN ep0 buffer.*/
sl@0
   122
const TInt KUsbcScEp0InBuff = 1;
sl@0
   123
sl@0
   124
sl@0
   125
//
sl@0
   126
//########################### Logical Device Driver (LDD) #############################
sl@0
   127
//
sl@0
   128
sl@0
   129
/** USB LDD factory class.
sl@0
   130
*/
sl@0
   131
class DUsbcScLogDevice : public DLogicalDevice
sl@0
   132
	{
sl@0
   133
public:
sl@0
   134
	DUsbcScLogDevice();
sl@0
   135
	virtual TInt Install();
sl@0
   136
	virtual void GetCaps(TDes8& aDes) const;
sl@0
   137
	virtual TInt Create(DLogicalChannelBase*& aChannel);
sl@0
   138
	};
sl@0
   139
sl@0
   140
sl@0
   141
class DLddUsbcScChannel;
sl@0
   142
class TUsbcScBuffer;
sl@0
   143
/** Endpoint tracking for the LDD buffering etc.
sl@0
   144
*/
sl@0
   145
class TUsbcScEndpoint
sl@0
   146
	{
sl@0
   147
public:
sl@0
   148
	TUsbcScEndpoint(DLddUsbcScChannel* aLDD, DUsbClientController* aController,
sl@0
   149
				  const TUsbcScEndpointInfo* aEndpointInfo, TInt aEndpointNum
sl@0
   150
				  );
sl@0
   151
	~TUsbcScEndpoint();
sl@0
   152
	TInt Construct();
sl@0
   153
	void CancelTransfer(DThread* aThread);
sl@0
   154
	void AbortTransfer();
sl@0
   155
	inline TUsbcScEndpointInfo* EndpointInfo();
sl@0
   156
	inline TInt RxBytesAvailable() const;
sl@0
   157
	inline void ResetTransferInfo();
sl@0
   158
	inline void SetClientReadPending(TBool aVal);
sl@0
   159
	inline void SetClientWritePending(TBool aVal);
sl@0
   160
	inline TBool ClientWritePending();
sl@0
   161
	inline TBool ClientReadPending();
sl@0
   162
	inline void SetRealEpNumber(TInt aRealEpNumber);
sl@0
   163
	inline TInt RealEpNumber() const;
sl@0
   164
	inline TInt EpNumber() const;
sl@0
   165
	inline void StartBuffer();
sl@0
   166
	inline void SetBuffer(TUsbcScBuffer* aBuffer);
sl@0
   167
	inline TUsbcScBuffer* GetBuffer();
sl@0
   168
sl@0
   169
sl@0
   170
private:
sl@0
   171
	static void RequestCallback(TAny* aTUsbcScEndpoint);
sl@0
   172
	void TxComplete();
sl@0
   173
	TInt RxComplete(TBool aReEntrant);
sl@0
   174
	void RxCompleteNow();
sl@0
   175
sl@0
   176
sl@0
   177
sl@0
   178
public:
sl@0
   179
	TUsbcRequestCallback* iRequestCallbackInfo;
sl@0
   180
sl@0
   181
private:
sl@0
   182
	DUsbClientController* iController;
sl@0
   183
	TUsbcScEndpointInfo iEndpointInfo;
sl@0
   184
	TBool iClientReadPending;
sl@0
   185
	TBool iClientWritePending;
sl@0
   186
	TInt iEndpointNumber;
sl@0
   187
	TInt iRealEpNumber;
sl@0
   188
	DLddUsbcScChannel* iLdd;
sl@0
   189
	TInt iError;
sl@0
   190
	TUint32 iBytesTransferred;
sl@0
   191
	TInt iBandwidthPriority;
sl@0
   192
	TUsbcScBuffer* iBuffer;
sl@0
   193
sl@0
   194
	};
sl@0
   195
sl@0
   196
sl@0
   197
/** Linked list of 'alternate setting' info for use by the LDD.
sl@0
   198
*/
sl@0
   199
class TUsbcScAlternateSetting
sl@0
   200
	{
sl@0
   201
public:
sl@0
   202
	TUsbcScAlternateSetting();
sl@0
   203
	~TUsbcScAlternateSetting();
sl@0
   204
sl@0
   205
public:
sl@0
   206
	TUsbcScAlternateSetting* iNext;
sl@0
   207
	TUsbcScAlternateSetting* iPrevious;
sl@0
   208
	TInt iNumberOfEndpoints;
sl@0
   209
	TUint iSetting;
sl@0
   210
	TUsbcScEndpoint* iEndpoint[KMaxEndpointsPerClient + 1];
sl@0
   211
	};
sl@0
   212
sl@0
   213
class TUsbcScAlternateSettingList
sl@0
   214
	{
sl@0
   215
public:
sl@0
   216
	TUsbcScAlternateSettingList();
sl@0
   217
	~TUsbcScAlternateSettingList();
sl@0
   218
sl@0
   219
public:
sl@0
   220
	TUsbcScAlternateSetting* iHead;
sl@0
   221
	TUsbcScAlternateSetting* iTail;
sl@0
   222
	};
sl@0
   223
sl@0
   224
class TUsbcScChunkInfo
sl@0
   225
	{
sl@0
   226
public:
sl@0
   227
	TUsbcScChunkInfo(DLogicalDevice* aLdd);
sl@0
   228
	TInt CreateChunk(TInt aTotalSize);
sl@0
   229
	void Close();
sl@0
   230
	TInt ChunkAlloc(TInt aOffset, TInt aSize);
sl@0
   231
	void ChunkCleanup();
sl@0
   232
	TInt GetPhysical(TInt aOffset, TPhysAddr* aPhysical);
sl@0
   233
	static TInt New(TUsbcScChunkInfo*& aChunk, TInt aSize, DLogicalDevice* aLdd);
sl@0
   234
private:
sl@0
   235
	TUint* iPhysicalMap;
sl@0
   236
public:
sl@0
   237
	DChunk* iChunk;
sl@0
   238
	TDfc iCleanup;
sl@0
   239
sl@0
   240
	TInt8 iPageNtz; // Number of trailing zeros for a page. (Eg 4k page has 12 t.z.)
sl@0
   241
	TInt iAllocatedSize;
sl@0
   242
	TInt8* iChunkMem;
sl@0
   243
	TUint32 iChunkMapAttr;
sl@0
   244
	DLogicalDevice* iLdd;
sl@0
   245
	};
sl@0
   246
sl@0
   247
sl@0
   248
// Used to represent a matrix of endpoints with a column of sizes.
sl@0
   249
// Used by TRealizeInfo
sl@0
   250
sl@0
   251
class TEndpointSortBufs
sl@0
   252
	{
sl@0
   253
	public:
sl@0
   254
		TUsbcScEndpoint** iEp;
sl@0
   255
		TInt* iSizes;
sl@0
   256
		TInt iEps;
sl@0
   257
	};
sl@0
   258
sl@0
   259
// This is used to calculate the layout of the shared chunk
sl@0
   260
// based on a list of alternative settings / endpoints provided.
sl@0
   261
 
sl@0
   262
class TRealizeInfo
sl@0
   263
	{
sl@0
   264
	public:
sl@0
   265
		void Init(TUsbcScAlternateSettingList* aAlternateSettingList);
sl@0
   266
		TInt CopyAndSortEndpoints();
sl@0
   267
		void CalcBuffSizes();
sl@0
   268
		void Free();
sl@0
   269
sl@0
   270
		void LayoutChunkHeader(TUsbcScChunkInfo* aChunkInfo);
sl@0
   271
	public:
sl@0
   272
		TInt iMaxEndpoints;
sl@0
   273
		TInt iTotalSize;
sl@0
   274
		TInt iTotalBuffers;
sl@0
   275
		TInt iAltSettings;
sl@0
   276
		TEndpointSortBufs iBufs[KUsbcScDirections];
sl@0
   277
		TUsbcScAlternateSettingList* iAlternateSettingList;
sl@0
   278
sl@0
   279
		// Chunk layout info.
sl@0
   280
		TUsbcScChunkBuffersHeader* iChunkStuct;
sl@0
   281
		TUsbcScChunkAltSettingHeader* iAltSettingsTbl;
sl@0
   282
	};
sl@0
   283
sl@0
   284
sl@0
   285
sl@0
   286
/** The channel class - the actual USB LDD.
sl@0
   287
*/
sl@0
   288
class DLddUsbcScChannel : public DLogicalChannel
sl@0
   289
	{
sl@0
   290
public:
sl@0
   291
	DLddUsbcScChannel();
sl@0
   292
	~DLddUsbcScChannel();
sl@0
   293
	virtual void HandleMsg(TMessageBase* aMsg);
sl@0
   294
	virtual TInt DoCreate(TInt aUnit, const TDesC8* aInfo, const TVersion& aVer);
sl@0
   295
	virtual TInt RequestUserHandle(DThread* aThread, TOwnerType aType);
sl@0
   296
	inline DThread* Client() const {return iClient;}
sl@0
   297
	inline TBool ChannelClosing() const {return iChannelClosing;}
sl@0
   298
	inline TUint AlternateSetting() const {return iAlternateSetting;}
sl@0
   299
	
sl@0
   300
	static void RequestCallbackEp0(TAny* aTUsbcScChannel);
sl@0
   301
sl@0
   302
private:
sl@0
   303
sl@0
   304
	TInt DoCancel(TInt aReqNo, TUint aMask, TUint a1);
sl@0
   305
	TInt DoRequest(TInt aReqNo, TRequestStatus* aStatus, TAny* a1, TAny* a2);
sl@0
   306
	TInt DoControl(TInt aFunction, TAny* a1, TAny* a2);
sl@0
   307
	TInt DoReadDataNotify(TRequestStatus* aStatus, TInt aBufferNum, TInt aLength);
sl@0
   308
	void StartDataRead(TInt aBufferNum);
sl@0
   309
	TInt DoWriteData(TRequestStatus* aStatus,TInt aBufferNum, TUint aStart, TUint aLength, TUint aFlags);
sl@0
   310
	TBool AlternateDeviceStateTestComplete();
sl@0
   311
	TInt SetInterface(TInt aInterfaceNum, TUsbcScIfcInfo* aUserInterfaceInfoBuf);
sl@0
   312
	void StartEpReads();
sl@0
   313
	void DestroyAllInterfaces();
sl@0
   314
	void DestroyInterface(TUint aInterface);
sl@0
   315
	void DestroyEp0();
sl@0
   316
	inline TBool ValidEndpoint(TInt aEndpoint);
sl@0
   317
	TInt GetRealEpForEpResource(TInt aEndpoint, TInt& aRealEp);
sl@0
   318
	inline TBool Configured();
sl@0
   319
	TInt DoEmergencyComplete();
sl@0
   320
	void ReadDes8(const TAny* aPtr, TDes8& aDes);
sl@0
   321
	TInt SetupEp0();
sl@0
   322
	void CancelNotifyEndpointStatus();
sl@0
   323
	void CancelNotifyOtgFeatures();
sl@0
   324
	static void StatusChangeCallback(TAny* aDLddUsbcChannel);
sl@0
   325
	static void EndpointStatusChangeCallback(TAny* aDLddUsbcChannel);
sl@0
   326
	static void OtgFeatureChangeCallback(TAny* aDLddUsbcChannel);
sl@0
   327
	static void EmergencyCompleteDfc(TAny* aDLddUsbcChannel);
sl@0
   328
	void DeConfigure(TInt aErrorCode);
sl@0
   329
	TInt SelectAlternateSetting(TUint aAlternateSetting);
sl@0
   330
	TInt EpFromAlternateSetting(TUint aAlternateSetting, TInt aEndpoint);
sl@0
   331
	TInt ProcessAlternateSetting(TUint aAlternateSetting);
sl@0
   332
	TInt32 StartNextInAlternateSetting();
sl@0
   333
	TInt ProcessDeviceState(TUsbcDeviceState aDeviceState);
sl@0
   334
	void ResetInterface(TInt aErrorCode);
sl@0
   335
	void PanicClientThread(TInt aReason);
sl@0
   336
sl@0
   337
	TInt RealizeInterface(void);
sl@0
   338
sl@0
   339
private:
sl@0
   340
	DUsbClientController* iController;
sl@0
   341
	DThread* iClient;
sl@0
   342
	TBool iValidInterface;
sl@0
   343
	
sl@0
   344
	TUsbcScAlternateSettingList* iAlternateSettingList;
sl@0
   345
	TUsbcScEndpoint** iEndpoint;  // Pointer to the current endpoint set.
sl@0
   346
sl@0
   347
	static const TInt KUsbcMaxRequests = RDevUsbcScClient::ERequestMaxRequests;
sl@0
   348
	TRequestStatus* iRequestStatus[KUsbcMaxRequests];
sl@0
   349
	TUsbcClientCallback iCompleteAllCallbackInfo;
sl@0
   350
	TAny* iStatusChangePtr;
sl@0
   351
	TUsbcStatusCallback iStatusCallbackInfo;
sl@0
   352
	TAny* iEndpointStatusChangePtr;
sl@0
   353
	TUsbcEndpointStatusCallback iEndpointStatusCallbackInfo;
sl@0
   354
	TAny* iOtgFeatureChangePtr;
sl@0
   355
	TUsbcOtgFeatureCallback iOtgFeatureCallbackInfo;
sl@0
   356
	TUint8* iBufferBaseEp0;
sl@0
   357
	TInt iBufferSizeEp0;
sl@0
   358
	TInt iNumberOfEndpoints;
sl@0
   359
	TUsbcDeviceState iDeviceState;
sl@0
   360
	TUsbcDeviceState iOldDeviceState;
sl@0
   361
	TBool iOwnsDeviceControl;
sl@0
   362
	TUint16 iAlternateSetting;
sl@0
   363
	TUint16 iAsSeq;
sl@0
   364
sl@0
   365
	TUsbcDeviceStatusQueue* iStatusFifo;
sl@0
   366
	TBool iUserKnowsAltSetting;
sl@0
   367
	TBool iDeviceStatusNeeded;
sl@0
   368
	TBool iChannelClosing;
sl@0
   369
	TBool iRealizeCalled;
sl@0
   370
sl@0
   371
	TUsbcScChunkInfo* iChunkInfo;
sl@0
   372
	TInt iNumBuffers;
sl@0
   373
	TUsbcScBuffer *iBuffers;
sl@0
   374
sl@0
   375
	TUsbcScEndpoint* iEp0Endpoint;
sl@0
   376
	TInt iEP0InBuff;
sl@0
   377
	TInt iEP0OutBuff;
sl@0
   378
sl@0
   379
	friend class TUsbcScBuffer;
sl@0
   380
	friend void TUsbcScEndpoint::AbortTransfer();
sl@0
   381
	};
sl@0
   382
sl@0
   383
/**
sl@0
   384
This class is used by TUsbcScStatusList to form a queue of status requests.
sl@0
   385
These requests are on a buffer basis, so that all buffers can have at least two requests
sl@0
   386
pending, at the same time. (i.e. buffer 1 could have two requests outstanding, as well as 2 on buffer 2.)
sl@0
   387
*/
sl@0
   388
sl@0
   389
class TUsbcScStatusElement
sl@0
   390
{
sl@0
   391
public:
sl@0
   392
	TRequestStatus* iStatus;
sl@0
   393
	TInt iLength;
sl@0
   394
	TUint iStart;
sl@0
   395
	TUint iFlags;	
sl@0
   396
};
sl@0
   397
sl@0
   398
enum TUsbcScStatusState
sl@0
   399
{
sl@0
   400
	ENotRunning,
sl@0
   401
	EInProgress,
sl@0
   402
	EReadingAhead,
sl@0
   403
	EFramgementInProgress
sl@0
   404
};
sl@0
   405
sl@0
   406
class TUsbcScStatusList
sl@0
   407
{
sl@0
   408
public:
sl@0
   409
	TInt Construct(TInt aSize, DThread* aThread);
sl@0
   410
	void Destroy();
sl@0
   411
sl@0
   412
	TUsbcScStatusElement* Next();
sl@0
   413
	void Pop();
sl@0
   414
	TInt Add(TRequestStatus* aStatus, TInt aLength, TUint aStart, TUint aFlags);
sl@0
   415
	void CancelQueued(TInt aErrorCode=KErrCancel);
sl@0
   416
	TInt Complete(TInt aError);
sl@0
   417
	void Complete();
sl@0
   418
public:
sl@0
   419
	TUsbcScStatusState iState;
sl@0
   420
sl@0
   421
private:
sl@0
   422
	DThread* iClient;
sl@0
   423
	TInt iHead;   // The element at the head of the queue, ie, the earliest added, and next to be removed.
sl@0
   424
	TInt iLength; // Length of queue, ie number of elements within
sl@0
   425
	TInt iSize;   // size of array, ie, max # of requests at a time.
sl@0
   426
	TUsbcScStatusElement* iElements;
sl@0
   427
sl@0
   428
};
sl@0
   429
sl@0
   430
sl@0
   431
sl@0
   432
/**
sl@0
   433
This class holds the kernel's copy of all the details related to a shared endpoint buffer,
sl@0
   434
and provides methods for the LDD to manipulate it.
sl@0
   435
*/
sl@0
   436
class TUsbcScBuffer
sl@0
   437
{
sl@0
   438
public:
sl@0
   439
	static const TInt8 KNoEpAssigned=0;
sl@0
   440
	static const TInt8 KEpIsEnding=1;
sl@0
   441
	static const TInt8 KEpIsStarting=2;
sl@0
   442
sl@0
   443
public:
sl@0
   444
	TInt Construct(TInt aDirection, DLddUsbcScChannel* aLdd, TInt aBufferOffset, TInt aBufferEndOffset, TInt aMinReadSize, TInt aMaxPacketSize, TInt aMaxReadSize);
sl@0
   445
	void CreateChunkBufferHeader();
sl@0
   446
	void StartEndpoint(TUsbcRequestCallback* iRequestInfo, TUint iFlags);
sl@0
   447
sl@0
   448
	void Destroy();
sl@0
   449
sl@0
   450
	TInt StartDataRead();
sl@0
   451
	void CompleteRead(TBool aStartNextRead=ETrue);
sl@0
   452
	void PopStall();
sl@0
   453
	void StartDataWrite();
sl@0
   454
	void CompleteWrite();
sl@0
   455
	void Cancel(TInt aErrorCode);
sl@0
   456
sl@0
   457
	void UpdateBufferList(TInt aByteCount,TUint aFlags, TBool aStartNextRead=ETrue);
sl@0
   458
	void Ep0CancelLddRead();
sl@0
   459
	void SendEp0StatusPacket(TInt aState);
sl@0
   460
sl@0
   461
public:
sl@0
   462
	
sl@0
   463
	TInt8 iDirection;
sl@0
   464
	TInt8 iMode;
sl@0
   465
	TInt8 iNeedsPacket;
sl@0
   466
	TInt8 iReserved;
sl@0
   467
	DLddUsbcScChannel* iLdd;
sl@0
   468
	TLinAddr iChunkAddr;
sl@0
   469
	SUsbcScBufferHeader* iBufferStart;
sl@0
   470
	TUint iBufferEnd; // One word on from the last word in the buffer.
sl@0
   471
	TUint iAlignMask;
sl@0
   472
	TUsbcScStatusList iStatusList;
sl@0
   473
	TUsbcRequestCallback* iCallback;
sl@0
   474
	union 
sl@0
   475
	{
sl@0
   476
		TInt iHead; // Out endpoints only;
sl@0
   477
		TUint iSent; // In endpoints only
sl@0
   478
	};
sl@0
   479
	TUsbcScChunkInfo* iChunkInfo;
sl@0
   480
	TInt iMinReadSize;
sl@0
   481
	TInt iMaxReadSize;
sl@0
   482
	TInt iMaxPacketSize;  // 0 indicates unconfiured.
sl@0
   483
	TInt iFirstPacket;
sl@0
   484
	TInt iStalled;
sl@0
   485
sl@0
   486
	// needed for backwards compatibility
sl@0
   487
	TUsbcPacketArray iIndexArray[KUsbcDmaBufNumMax]; // Has 2 elements
sl@0
   488
	TUsbcPacketArray iSizeArray[KUsbcDmaBufNumMax];  // Has 2 elements
sl@0
   489
#ifdef _DEBUG
sl@0
   490
	TUint iSequence;
sl@0
   491
#endif
sl@0
   492
sl@0
   493
};
sl@0
   494
sl@0
   495
sl@0
   496
sl@0
   497
#include <drivers/usbcsc.inl>
sl@0
   498
sl@0
   499
#endif	// __USBCSC_H__