os/kernelhwsrv/kernel/eka/include/drivers/usbc.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/usbc.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 usbc.h
sl@0
    21
 @internalTechnology
sl@0
    22
*/
sl@0
    23
sl@0
    24
#ifndef __USBC_H__
sl@0
    25
#define __USBC_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 <d32usbc.h>
sl@0
    33
sl@0
    34
#include <drivers/usbcshared.h>
sl@0
    35
sl@0
    36
sl@0
    37
sl@0
    38
/** LDD Major version, This should agree with the information in RDevUsbcClient::TVer.
sl@0
    39
*/
sl@0
    40
const TInt KUsbcMajorVersion = 0;
sl@0
    41
sl@0
    42
/** LDD Minor version, This should agree with the information in RDevUsbcClient::TVer.
sl@0
    43
*/
sl@0
    44
const TInt KUsbcMinorVersion = 1;
sl@0
    45
sl@0
    46
/** LDD Build version, This should agree with the information in RDevUsbcClient::TVer.
sl@0
    47
*/
sl@0
    48
const TInt KUsbcBuildVersion = KE32BuildVersionNumber;
sl@0
    49
sl@0
    50
/** Must correspond to the max enum of TRequest + 1;
sl@0
    51
	currently this is ERequestOtgFeaturesNotify = 10.
sl@0
    52
*/
sl@0
    53
const TInt KUsbcMaxRequests = 11;
sl@0
    54
sl@0
    55
//
sl@0
    56
//########################### Logical Device Driver (LDD) #############################
sl@0
    57
//
sl@0
    58
sl@0
    59
/** USB LDD factory class.
sl@0
    60
*/
sl@0
    61
class DUsbcLogDevice : public DLogicalDevice
sl@0
    62
	{
sl@0
    63
public:
sl@0
    64
	DUsbcLogDevice();
sl@0
    65
	virtual TInt Install();
sl@0
    66
	virtual void GetCaps(TDes8& aDes) const;
sl@0
    67
	virtual TInt Create(DLogicalChannelBase*& aChannel);
sl@0
    68
	};
sl@0
    69
sl@0
    70
sl@0
    71
/** OUT buffering is a collection of flat buffers. Each is either fillable or drainable.
sl@0
    72
	When one buffer becomes full (notified by the PIL) it is marked as not-fillable and the next
sl@0
    73
	fillable buffer is used. When the buffer has finished draining it is marked as fillable.
sl@0
    74
*/
sl@0
    75
class TDmaBuf
sl@0
    76
	{
sl@0
    77
public:
sl@0
    78
	TDmaBuf();
sl@0
    79
 	TDmaBuf(TUsbcEndpointInfo* aEndpointInfo, TInt aBandwidthPriority);
sl@0
    80
	~TDmaBuf();
sl@0
    81
	TInt Construct(TUsbcEndpointInfo* aEndpointInfo);
sl@0
    82
	TInt BufferTotalSize() const;
sl@0
    83
	TInt BufferSize() const;
sl@0
    84
	TInt SetBufferAddr(TInt aBufInd, TUint8* aBufAddr);
sl@0
    85
	TInt BufferNumber() const;
sl@0
    86
	void SetMaxPacketSize(TInt aSize);
sl@0
    87
	void Flush();
sl@0
    88
	// Rx (OUT) variants
sl@0
    89
	void RxSetActive();
sl@0
    90
	void RxSetInActive();
sl@0
    91
	TBool RxIsActive();
sl@0
    92
	TBool IsReaderEmpty();
sl@0
    93
	void ReadXferComplete(TInt aNoBytesRx, TInt aNoPacketsRx, TInt aErrorCode);
sl@0
    94
	TInt RxCopyDataToClient(DThread* aThread, TClientBuffer *aTcb, TInt aLength, TUint32& aDestOffset,
sl@0
    95
							TBool aRUS, TBool& aCompleteNow);
sl@0
    96
	TInt RxCopyPacketToClient(DThread* aThread,TClientBuffer *aTcb, TInt aLength);
sl@0
    97
	TInt RxGetNextXfer(TUint8*& aBufferAddr, TUsbcPacketArray*& aIndexArray, TUsbcPacketArray*& aSizeArray,
sl@0
    98
					   TInt& aLength, TPhysAddr& aBufferPhys);
sl@0
    99
	TBool RxIsEnoughSpace(TInt aSize);
sl@0
   100
	inline TInt RxBytesAvailable() const;
sl@0
   101
	inline void IncrementBufferIndex(TInt& aIndex);
sl@0
   102
	inline TInt NoRxPackets() const;
sl@0
   103
	TInt SetDrainable(TInt aBufferNum);
sl@0
   104
	// Tx (IN) variants
sl@0
   105
	void TxSetActive();
sl@0
   106
	void TxSetInActive();
sl@0
   107
	TBool TxIsActive();
sl@0
   108
	TInt TxStoreData(DThread* aThread,TClientBuffer *aTcb, TInt aTxLength, TUint32 aBufferOffset);
sl@0
   109
	TInt TxGetNextXfer(TUint8*& aBufferAddr, TInt& aTxLength, TPhysAddr& aBufferPhys);
sl@0
   110
	TBool ShortPacketExists();
sl@0
   111
sl@0
   112
#if defined(USBC_LDD_BUFFER_TRACE)
sl@0
   113
	TInt NoRxPacketsAlt() const;
sl@0
   114
	TInt NoRxBytesAlt() const;
sl@0
   115
#endif
sl@0
   116
sl@0
   117
private:
sl@0
   118
	TBool AdvancePacket();
sl@0
   119
	inline TInt GetCurrentError();
sl@0
   120
	TBool NextDrainableBuffer();
sl@0
   121
	TBool NextFillableBuffer();
sl@0
   122
	void FreeDrainedBuffers();
sl@0
   123
	TInt PeekNextPacketSize();
sl@0
   124
	TInt PeekNextDrainableBuffer();
sl@0
   125
	void ModifyTotalRxBytesAvail(TInt aVal);
sl@0
   126
	void ModifyTotalRxPacketsAvail(TInt aVal);
sl@0
   127
	void AddToDrainQueue(TInt aBufferIndex);
sl@0
   128
	inline TInt CopyToUser(DThread* aThread, const TUint8* aSourceAddr, TInt aLength,
sl@0
   129
						   TClientBuffer *aTcb, TUint32& aDestOffset);
sl@0
   130
private:
sl@0
   131
	TInt iExtractOffset;									// offset into current packet for data read
sl@0
   132
	TInt iMaxPacketSize;
sl@0
   133
	TInt iNumberofBuffers;
sl@0
   134
	TInt iBufSz;
sl@0
   135
	TBool iRxActive;
sl@0
   136
	TBool iTxActive;
sl@0
   137
	TInt iTotalRxBytesAvail;
sl@0
   138
	TInt iTotalRxPacketsAvail;
sl@0
   139
	//
sl@0
   140
	TUint8* iBufBasePtr;
sl@0
   141
	TUint8* iCurrentDrainingBuffer;
sl@0
   142
	TInt iCurrentDrainingBufferIndex;
sl@0
   143
	TInt iCurrentFillingBufferIndex;
sl@0
   144
	TUint iCurrentPacket;
sl@0
   145
	TUsbcPacketArray* iCurrentPacketIndexArray;
sl@0
   146
	TUsbcPacketArray* iCurrentPacketSizeArray;
sl@0
   147
	TUint8* iBuffers[KUsbcDmaBufNumMax];
sl@0
   148
	TBool iDrainable[KUsbcDmaBufNumMax];
sl@0
   149
	TUsbcPacketArray iPacketInfoStorage[KUsbcDmaBufNumMax * KUsbcDmaBufNumArrays * KUsbcDmaBufMaxPkts];
sl@0
   150
	TUsbcPacketArray* iPacketIndex[KUsbcDmaBufNumMax];
sl@0
   151
	TUsbcPacketArray* iPacketSize[KUsbcDmaBufNumMax];
sl@0
   152
	TUint iNumberofBytesRx[KUsbcDmaBufNumMax];
sl@0
   153
	TUint iNumberofPacketsRx[KUsbcDmaBufNumMax];
sl@0
   154
	TInt iError[KUsbcDmaBufNumMax];
sl@0
   155
	TPhysAddr iBufferPhys[KUsbcDmaBufNumMax];
sl@0
   156
	TBool iCanBeFreed[KUsbcDmaBufNumMax];
sl@0
   157
	TInt iDrainQueue[KUsbcDmaBufNumMax + 1];
sl@0
   158
	TInt iDrainQueueIndex;
sl@0
   159
	TUint iEndpointType;
sl@0
   160
sl@0
   161
#if defined(USBC_LDD_BUFFER_TRACE)
sl@0
   162
	TInt iFillingOrder;
sl@0
   163
	TInt iFillingOrderArray[KUsbcDmaBufNumMax];
sl@0
   164
	TInt iDrainingOrder;
sl@0
   165
 	TUint iNumberofBytesRxRemain[KUsbcDmaBufNumMax];
sl@0
   166
 	TUint iNumberofPacketsRxRemain[KUsbcDmaBufNumMax];
sl@0
   167
#endif
sl@0
   168
	};
sl@0
   169
sl@0
   170
sl@0
   171
class DLddUsbcChannel;
sl@0
   172
sl@0
   173
/** Endpoint tracking for the LDD buffering etc.
sl@0
   174
*/
sl@0
   175
class TUsbcEndpoint
sl@0
   176
	{
sl@0
   177
public:
sl@0
   178
	TUsbcEndpoint();
sl@0
   179
	TUsbcEndpoint(DLddUsbcChannel* aLDD, DUsbClientController* aController,
sl@0
   180
				  const TUsbcEndpointInfo* aEndpointInfo, TInt aEndpointNum,
sl@0
   181
				  TInt aBandwidthPriority);
sl@0
   182
	~TUsbcEndpoint();
sl@0
   183
	TInt Construct();
sl@0
   184
	TInt TryToStartRead(TBool aReEntrant);
sl@0
   185
	TInt TryToStartWrite(TEndpointTransferInfo* pTfr);
sl@0
   186
	TInt CopyToClient(DThread* aThread, TClientBuffer *aTcb);
sl@0
   187
	TInt CopyToClient(DThread* aClient, TBool& aCompleteNow, TClientBuffer *aTcb);
sl@0
   188
	TInt ContinueWrite();
sl@0
   189
	void SetMaxPacketSize(TInt aSize);
sl@0
   190
	void CancelTransfer(DThread* aThread, TClientBuffer *aTcb);
sl@0
   191
	void AbortTransfer();
sl@0
   192
	inline TUsbcEndpointInfo* EndpointInfo();
sl@0
   193
	inline TInt RxBytesAvailable() const;
sl@0
   194
sl@0
   195
	inline TInt BufferSize() const;
sl@0
   196
	inline TInt SetBufferAddr( TInt aBufInd, TUint8* aAddr);
sl@0
   197
	inline TInt BufferNumber() const;
sl@0
   198
sl@0
   199
	inline void SetTransferInfo(TEndpointTransferInfo* aTransferInfo);
sl@0
   200
	inline void ResetTransferInfo();
sl@0
   201
	inline void SetClientReadPending(TBool aVal);
sl@0
   202
	inline void SetClientWritePending(TBool aVal);
sl@0
   203
	inline TBool ClientWritePending();
sl@0
   204
	inline TBool ClientReadPending();
sl@0
   205
	inline void SetRealEpNumber(TInt aRealEpNumber);
sl@0
   206
	inline TInt RealEpNumber() const;
sl@0
   207
sl@0
   208
public:
sl@0
   209
	TDmaBuf* iDmaBuffers;
sl@0
   210
sl@0
   211
private:
sl@0
   212
	static void RequestCallback(TAny* aTUsbcEndpoint);
sl@0
   213
	void TxComplete();
sl@0
   214
	TInt RxComplete(TBool aReEntrant);
sl@0
   215
	void RxCompleteNow();
sl@0
   216
	TInt EndpointComplete();
sl@0
   217
sl@0
   218
private:
sl@0
   219
	DUsbClientController* iController;
sl@0
   220
	TUsbcEndpointInfo iEndpointInfo;
sl@0
   221
	TEndpointTransferInfo iTransferInfo;
sl@0
   222
	TBool iClientReadPending;
sl@0
   223
	TBool iClientWritePending;
sl@0
   224
	TInt iEndpointNumber;
sl@0
   225
	TInt iRealEpNumber;
sl@0
   226
	DLddUsbcChannel* iLdd;
sl@0
   227
	TInt iError;
sl@0
   228
	TUsbcRequestCallback* iRequestCallbackInfo;
sl@0
   229
	TUint32 iBytesTransferred;
sl@0
   230
	TInt iBandwidthPriority;
sl@0
   231
	};
sl@0
   232
sl@0
   233
sl@0
   234
/** Linked list of 'alternate setting' info for use by the LDD.
sl@0
   235
*/
sl@0
   236
class TUsbcAlternateSettingList
sl@0
   237
	{
sl@0
   238
public:
sl@0
   239
	TUsbcAlternateSettingList();
sl@0
   240
	~TUsbcAlternateSettingList();
sl@0
   241
sl@0
   242
public:
sl@0
   243
	TUsbcAlternateSettingList* iNext;
sl@0
   244
	TInt iNumberOfEndpoints;
sl@0
   245
	TUint iSetting;
sl@0
   246
	TInt iEpNumDeOrderedByBufSize[KMaxEndpointsPerClient + 1];
sl@0
   247
	TUsbcEndpoint* iEndpoint[KMaxEndpointsPerClient + 1];
sl@0
   248
	};
sl@0
   249
sl@0
   250
sl@0
   251
struct TClientAsynchNotify
sl@0
   252
	{
sl@0
   253
		TClientBufferRequest *iBufferRequest;
sl@0
   254
		TClientBuffer *iClientBuffer;
sl@0
   255
		void Reset();
sl@0
   256
	};
sl@0
   257
/** The channel class - the actual USB LDD.
sl@0
   258
*/
sl@0
   259
class DLddUsbcChannel : public DLogicalChannel
sl@0
   260
	{
sl@0
   261
public:
sl@0
   262
	DLddUsbcChannel();
sl@0
   263
	~DLddUsbcChannel();
sl@0
   264
	virtual TInt SendMsg(TMessageBase * aMsg);
sl@0
   265
	TInt PreSendRequest(TMessageBase * aMsg,TInt aReqNo, TRequestStatus* aStatus, TAny* a1, TAny* a2);
sl@0
   266
	TInt SendControl(TMessageBase* aMsg);
sl@0
   267
	virtual void HandleMsg(TMessageBase* aMsg);
sl@0
   268
	virtual TInt DoCreate(TInt aUnit, const TDesC8* aInfo, const TVersion& aVer);
sl@0
   269
	virtual TInt RequestUserHandle(DThread* aThread, TOwnerType aType);
sl@0
   270
	TInt DoRxComplete(TUsbcEndpoint* aTUsbcEndpoint, TInt aEndpoint, TBool aReentrant);
sl@0
   271
	void DoRxCompleteNow(TUsbcEndpoint* aTUsbcEndpoint, TInt aEndpoint);
sl@0
   272
	void DoTxComplete(TUsbcEndpoint* aTUsbcEndpoint, TInt aEndpoint, TInt aError);
sl@0
   273
	inline DThread* Client() const {return iClient;}
sl@0
   274
	inline TBool ChannelClosing() const {return iChannelClosing;}
sl@0
   275
	inline TUint AlternateSetting() const {return iAlternateSetting;}
sl@0
   276
	TClientBuffer *GetClientBuffer(TInt aEndpoint);
sl@0
   277
sl@0
   278
private:
sl@0
   279
	TInt DoCancel(TInt aReqNo);
sl@0
   280
	void DoRequest(TInt aReqNo, TRequestStatus* aStatus, TAny* a1, TAny* a2);
sl@0
   281
	TInt DoControl(TInt aFunction, TAny* a1, TAny* a2);
sl@0
   282
	TInt DoTransferAsyncReq(TInt aEndpointNum, TAny* a1, TAny* a2, TBool& aNeedsCompletion);
sl@0
   283
	TInt DoOtherAsyncReq(TInt aReqNo, TAny* a1, TAny* a2, TBool& aNeedsCompletion);
sl@0
   284
	TBool AlternateDeviceStateTestComplete();
sl@0
   285
	TInt SetInterface(TInt aInterfaceNum, TUsbcIfcInfo* aUserInterfaceInfoBuf);
sl@0
   286
	void StartEpReads();
sl@0
   287
	void DestroyAllInterfaces();
sl@0
   288
	void DestroyInterface(TUint aInterface);
sl@0
   289
	void DestroyEp0();
sl@0
   290
	inline TBool ValidEndpoint(TInt aEndpoint);
sl@0
   291
	TInt DoEmergencyComplete();
sl@0
   292
	void ReadDes8(const TAny* aPtr, TDes8& aDes);
sl@0
   293
	TInt SetupEp0();
sl@0
   294
	DPlatChunkHw* ReAllocate(TInt aBuffersize, DPlatChunkHw* aHwChunk, TUint32 aCacheAttribs);
sl@0
   295
	DPlatChunkHw* Allocate(TInt aBuffersize, TUint32 aCacheAttribs);
sl@0
   296
	void ClosePhysicalChunk(DPlatChunkHw* &aHwChunk);
sl@0
   297
	void CancelNotifyEndpointStatus();
sl@0
   298
	void CancelNotifyOtgFeatures();
sl@0
   299
	static void StatusChangeCallback(TAny* aDLddUsbcChannel);
sl@0
   300
	static void EndpointStatusChangeCallback(TAny* aDLddUsbcChannel);
sl@0
   301
	static void OtgFeatureChangeCallback(TAny* aDLddUsbcChannel);
sl@0
   302
	static void EmergencyCompleteDfc(TAny* aDLddUsbcChannel);
sl@0
   303
	void DeConfigure(TInt aErrorCode);
sl@0
   304
	TInt SelectAlternateSetting(TUint aAlternateSetting);
sl@0
   305
	TInt EpFromAlternateSetting(TUint aAlternateSetting, TInt aEndpoint);
sl@0
   306
	TInt ProcessAlternateSetting(TUint aAlternateSetting);
sl@0
   307
	TInt ProcessDeviceState(TUsbcDeviceState aDeviceState);
sl@0
   308
	void ResetInterface(TInt aErrorCode);
sl@0
   309
	void AbortInterface();
sl@0
   310
	// Set buffer address of the interface
sl@0
   311
	void ReSetInterfaceMemory(TUsbcAlternateSettingList* aAlternateSettingListRec,
sl@0
   312
	        RArray<DPlatChunkHw*> &aHwChunks );
sl@0
   313
	void UpdateEndpointSizes();
sl@0
   314
	// Check and alloc memory for the interface
sl@0
   315
	TInt SetupInterfaceMemory(RArray<DPlatChunkHw*> &aHwChunks, 
sl@0
   316
	        TUint32 aCacheAttribs );
sl@0
   317
	void PanicClientThread(TInt aReason);
sl@0
   318
	TInt PinMemory(TDesC8 *aDes, TVirtualPinObject *iPinObj); //Descriptor pinning helper.
sl@0
   319
	void CompleteBufferRequest(DThread* aThread, TInt aReqNo, TInt aReason);
sl@0
   320
private:
sl@0
   321
	DUsbClientController* iController;
sl@0
   322
	DThread* iClient;
sl@0
   323
	TBool iValidInterface;
sl@0
   324
	TUsbcAlternateSettingList* iAlternateSettingList;
sl@0
   325
	TUsbcEndpoint* iEndpoint[KMaxEndpointsPerClient + 1];	// include ep0
sl@0
   326
	TRequestStatus* iRequestStatus[KUsbcMaxRequests];
sl@0
   327
	TClientAsynchNotify* iClientAsynchNotify[KUsbcMaxRequests];
sl@0
   328
	TUsbcClientCallback iCompleteAllCallbackInfo;
sl@0
   329
	TAny* iStatusChangePtr;
sl@0
   330
	TUsbcStatusCallback iStatusCallbackInfo;
sl@0
   331
	TAny* iEndpointStatusChangePtr;
sl@0
   332
	TUsbcEndpointStatusCallback iEndpointStatusCallbackInfo;
sl@0
   333
	TAny* iOtgFeatureChangePtr;
sl@0
   334
	TUsbcOtgFeatureCallback iOtgFeatureCallbackInfo;
sl@0
   335
	TInt iNumberOfEndpoints;
sl@0
   336
    RArray<DPlatChunkHw*> iHwChunksEp0;
sl@0
   337
    RArray<DPlatChunkHw*> iHwChunks;
sl@0
   338
sl@0
   339
	TUsbcDeviceState iDeviceState;
sl@0
   340
	TUsbcDeviceState iOldDeviceState;
sl@0
   341
	TBool iOwnsDeviceControl;
sl@0
   342
	TUint iAlternateSetting;
sl@0
   343
	TBool iDeviceStatusNeeded;
sl@0
   344
	TUsbcDeviceStatusQueue* iStatusFifo;
sl@0
   345
	TBool iChannelClosing;
sl@0
   346
	TVirtualPinObject *iPinObj1;
sl@0
   347
	TVirtualPinObject *iPinObj2;
sl@0
   348
	TVirtualPinObject *iPinObj3;
sl@0
   349
	TClientDataRequest<TUint> *iStatusChangeReq;
sl@0
   350
	TClientDataRequest<TUint> *iEndpointStatusChangeReq;
sl@0
   351
	TClientDataRequest<TUint> *iOtgFeatureChangeReq;
sl@0
   352
	TEndpointTransferInfo iTfrInfo;
sl@0
   353
	};
sl@0
   354
sl@0
   355
sl@0
   356
#include <drivers/usbc.inl>
sl@0
   357
sl@0
   358
#endif	// __USBC_H__