os/kernelhwsrv/kernel/eka/include/drivers/usbcshared.inl
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\usbcshared.inl
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 usbcshared.inl
sl@0
    21
 @internalTechnology
sl@0
    22
*/
sl@0
    23
sl@0
    24
#ifndef __USBCSHARED_INL__
sl@0
    25
#define __USBCSHARED_INL__
sl@0
    26
sl@0
    27
//
sl@0
    28
// --- DUsbClientController (USB PDD) ---
sl@0
    29
//
sl@0
    30
sl@0
    31
// --- Private member functions, used by controller itself ---
sl@0
    32
sl@0
    33
const DBase* DUsbClientController::PEndpoint2ClientId(TInt aRealEndpoint) const
sl@0
    34
	{
sl@0
    35
	if (iRealEndpoints[aRealEndpoint].iLEndpoint)
sl@0
    36
		return iRealEndpoints[aRealEndpoint].iLEndpoint->iInterface->iInterfaceSet->iClientId;
sl@0
    37
	else
sl@0
    38
		return NULL;
sl@0
    39
	}
sl@0
    40
sl@0
    41
sl@0
    42
TInt DUsbClientController::PEndpoint2LEndpoint(TInt aRealEndpoint) const
sl@0
    43
	{
sl@0
    44
	if (iRealEndpoints[aRealEndpoint].iLEndpoint)
sl@0
    45
		return iRealEndpoints[aRealEndpoint].iLEndpoint->iLEndpointNum;
sl@0
    46
	else
sl@0
    47
		return -1;
sl@0
    48
	}
sl@0
    49
sl@0
    50
sl@0
    51
const TUsbcConfiguration* DUsbClientController::CurrentConfig() const
sl@0
    52
	{
sl@0
    53
	return (iCurrentConfig ? iConfigs[iCurrentConfig - 1] : NULL);
sl@0
    54
	}
sl@0
    55
sl@0
    56
sl@0
    57
TUsbcConfiguration* DUsbClientController::CurrentConfig()
sl@0
    58
	{
sl@0
    59
	return (iCurrentConfig ? iConfigs[iCurrentConfig - 1] : NULL);
sl@0
    60
	}
sl@0
    61
sl@0
    62
sl@0
    63
TBool DUsbClientController::InterfaceExists(TInt aNumber) const
sl@0
    64
	{
sl@0
    65
	const TInt num_ifcsets = iConfigs[0]->iInterfaceSets.Count();
sl@0
    66
	RPointerArray<TUsbcInterfaceSet>& ifcsets = iConfigs[0]->iInterfaceSets;
sl@0
    67
	for (TInt i = 0; i < num_ifcsets; i++)
sl@0
    68
		{
sl@0
    69
		if (ifcsets[i]->iInterfaceNumber == aNumber)
sl@0
    70
			{
sl@0
    71
			return ETrue;
sl@0
    72
			}
sl@0
    73
		}
sl@0
    74
	return EFalse;
sl@0
    75
	}
sl@0
    76
sl@0
    77
sl@0
    78
TBool DUsbClientController::EndpointExists(TUint aAddress) const
sl@0
    79
	{
sl@0
    80
	// Ep0 doesn't have a "logical ep" pointer (there's no virtual endpoint zero);
sl@0
    81
	// that's why this pointer being non-NULL is not a sufficient criterion for
sl@0
    82
	// endpoint-existence. (Apart from that, ep0 always exists.)
sl@0
    83
	const TInt idx = EpAddr2Idx(aAddress);
sl@0
    84
	return ((idx < iDeviceTotalEndpoints) &&
sl@0
    85
			((iRealEndpoints[idx].iLEndpoint != NULL) ||
sl@0
    86
			 ((aAddress & KUsbEpAddress_Portmask) == 0)));
sl@0
    87
	}
sl@0
    88
sl@0
    89
sl@0
    90
void DUsbClientController::Buffer2Setup(const TAny* aBuf, TUsbcSetup& aSetup) const
sl@0
    91
	{
sl@0
    92
	// TUint8 index
sl@0
    93
	aSetup.iRequestType = static_cast<const TUint8*>(aBuf)[0];
sl@0
    94
	aSetup.iRequest		= static_cast<const TUint8*>(aBuf)[1];
sl@0
    95
	// TUint16 index from here!
sl@0
    96
	aSetup.iValue  = SWAP_BYTES_16((static_cast<const TUint16*>(aBuf))[1]);
sl@0
    97
	aSetup.iIndex  = SWAP_BYTES_16((static_cast<const TUint16*>(aBuf))[2]);
sl@0
    98
	aSetup.iLength = SWAP_BYTES_16((static_cast<const TUint16*>(aBuf))[3]);
sl@0
    99
	}
sl@0
   100
sl@0
   101
sl@0
   102
TUint DUsbClientController::EpIdx2Addr(TUint aRealEndpoint) const
sl@0
   103
	{
sl@0
   104
	return ((aRealEndpoint << 7) & 0x80) | ((aRealEndpoint >> 1) & 0x0f);
sl@0
   105
	}
sl@0
   106
sl@0
   107
sl@0
   108
TUint DUsbClientController::EpAddr2Idx(TUint aAddress) const
sl@0
   109
	{
sl@0
   110
	return ((aAddress & 0x80) >> 7) | ((aAddress & 0x0f) << 1);
sl@0
   111
	}
sl@0
   112
sl@0
   113
sl@0
   114
void DUsbClientController::SetEp0DataOutVars(const TUsbcSetup& aPacket, const DBase* aClientId)
sl@0
   115
	{
sl@0
   116
	__KTRACE_OPT(KUSB, Kern::Printf("DUsbClientController::SetEp0DataOutVars()"));
sl@0
   117
	iSetup = aPacket;
sl@0
   118
	iEp0DataReceiving = ETrue;
sl@0
   119
	iEp0DataReceived = 0;
sl@0
   120
	iEp0ClientId = aClientId;
sl@0
   121
	}
sl@0
   122
sl@0
   123
sl@0
   124
void DUsbClientController::ResetEp0DataOutVars()
sl@0
   125
	{
sl@0
   126
	__KTRACE_OPT(KUSB, Kern::Printf("DUsbClientController::ResetEp0DataOutVars()"));
sl@0
   127
	iEp0DataReceiving = EFalse;
sl@0
   128
	iEp0DataReceived = 0;
sl@0
   129
	iEp0ClientId = NULL;
sl@0
   130
	}
sl@0
   131
sl@0
   132
sl@0
   133
TBool DUsbClientController::IsInTheRequestList(const TUsbcRequestCallback& aCallback)
sl@0
   134
	{
sl@0
   135
	const TInt irq = NKern::DisableAllInterrupts();
sl@0
   136
	TSglQueIter<TUsbcRequestCallback> iter(iEp0ReadRequestCallbacks);
sl@0
   137
	TUsbcRequestCallback* p;
sl@0
   138
	while ((p = iter++) != NULL)
sl@0
   139
		{
sl@0
   140
		if (p == &aCallback)
sl@0
   141
			{
sl@0
   142
			NKern::RestoreInterrupts(irq);
sl@0
   143
			return ETrue;
sl@0
   144
			}
sl@0
   145
		}
sl@0
   146
	NKern::RestoreInterrupts(irq);
sl@0
   147
	return EFalse;
sl@0
   148
	}
sl@0
   149
sl@0
   150
sl@0
   151
TBool DUsbClientController::IsInTheStatusList(const TUsbcStatusCallback& aCallback)
sl@0
   152
	{
sl@0
   153
	const TInt irq = NKern::DisableAllInterrupts();
sl@0
   154
	TSglQueIter<TUsbcStatusCallback> iter(iStatusCallbacks);
sl@0
   155
	TUsbcStatusCallback* p;
sl@0
   156
	while ((p = iter++) != NULL)
sl@0
   157
		{
sl@0
   158
		if (p == &aCallback)
sl@0
   159
			{
sl@0
   160
			NKern::RestoreInterrupts(irq);
sl@0
   161
			return ETrue;
sl@0
   162
			}
sl@0
   163
		}
sl@0
   164
	NKern::RestoreInterrupts(irq);
sl@0
   165
	return EFalse;
sl@0
   166
	}
sl@0
   167
sl@0
   168
sl@0
   169
TBool DUsbClientController::IsInTheEpStatusList(const TUsbcEndpointStatusCallback& aCallback)
sl@0
   170
	{
sl@0
   171
	const TInt irq = NKern::DisableAllInterrupts();
sl@0
   172
	TSglQueIter<TUsbcEndpointStatusCallback> iter(iEpStatusCallbacks);
sl@0
   173
	TUsbcEndpointStatusCallback* p;
sl@0
   174
	while ((p = iter++) != NULL)
sl@0
   175
		{
sl@0
   176
		if (p == &aCallback)
sl@0
   177
			{
sl@0
   178
			NKern::RestoreInterrupts(irq);
sl@0
   179
			return ETrue;
sl@0
   180
			}
sl@0
   181
		}
sl@0
   182
	NKern::RestoreInterrupts(irq);
sl@0
   183
	return EFalse;
sl@0
   184
	}
sl@0
   185
sl@0
   186
sl@0
   187
TBool DUsbClientController::IsInTheOtgFeatureList(const TUsbcOtgFeatureCallback& aCallback)
sl@0
   188
	{
sl@0
   189
	const TInt irq = NKern::DisableAllInterrupts();
sl@0
   190
	TSglQueIter<TUsbcOtgFeatureCallback> iter(iOtgCallbacks);
sl@0
   191
	TUsbcOtgFeatureCallback* p;
sl@0
   192
	while ((p = iter++) != NULL)
sl@0
   193
		{
sl@0
   194
		if (p == &aCallback)
sl@0
   195
			{
sl@0
   196
			NKern::RestoreInterrupts(irq);
sl@0
   197
			return ETrue;
sl@0
   198
			}
sl@0
   199
		}
sl@0
   200
	NKern::RestoreInterrupts(irq);
sl@0
   201
	return EFalse;
sl@0
   202
	}
sl@0
   203
sl@0
   204
//
sl@0
   205
// --- Misc classes ---
sl@0
   206
//
sl@0
   207
sl@0
   208
// --- TUsbcClientCallback
sl@0
   209
sl@0
   210
/** Constructor.
sl@0
   211
 */
sl@0
   212
TUsbcClientCallback::TUsbcClientCallback(DBase* aOwner, TDfcFn aCallback, TInt aPriority)
sl@0
   213
	: iOwner(aOwner),
sl@0
   214
	  iDfc(aCallback, aOwner, aPriority)
sl@0
   215
	{}
sl@0
   216
sl@0
   217
sl@0
   218
/** Returns a pointer to the owner of this request.
sl@0
   219
sl@0
   220
	@return A pointer to the owner of this request.
sl@0
   221
*/
sl@0
   222
DBase* TUsbcClientCallback::Owner() const
sl@0
   223
	{
sl@0
   224
	return iOwner;
sl@0
   225
	}
sl@0
   226
sl@0
   227
sl@0
   228
/** Executes the callback function set by the owner of this request.
sl@0
   229
sl@0
   230
	@return KErrNone.
sl@0
   231
*/
sl@0
   232
TInt TUsbcClientCallback::DoCallback()
sl@0
   233
	{
sl@0
   234
	__ASSERT_DEBUG((NKern::CurrentContext() == EThread), Kern::Fault(KUsbPILPanicCat, __LINE__));
sl@0
   235
	iDfc.Enque();
sl@0
   236
	return KErrNone;
sl@0
   237
	}
sl@0
   238
sl@0
   239
sl@0
   240
/** Cancels the callback function set by the owner of this request.
sl@0
   241
 */
sl@0
   242
void TUsbcClientCallback::Cancel()
sl@0
   243
	{
sl@0
   244
	iDfc.Cancel();
sl@0
   245
	}
sl@0
   246
sl@0
   247
sl@0
   248
/** Sets the DFC queue used by the callback function.
sl@0
   249
	@param aDfcQ DFC queue to be set
sl@0
   250
 */
sl@0
   251
void TUsbcClientCallback::SetDfcQ(TDfcQue* aDfcQ)
sl@0
   252
	{
sl@0
   253
	iDfc.SetDfcQ(aDfcQ);
sl@0
   254
	}
sl@0
   255
sl@0
   256
sl@0
   257
// --- TUsbcEndpointStatusCallback
sl@0
   258
sl@0
   259
/** Constructor.
sl@0
   260
 */
sl@0
   261
TUsbcEndpointStatusCallback::TUsbcEndpointStatusCallback(DBase* aOwner, TDfcFn aCallback,
sl@0
   262
														 TInt aPriority)
sl@0
   263
	: iOwner(aOwner),
sl@0
   264
	  iDfc(aCallback, aOwner, aPriority),
sl@0
   265
	  iState(0)
sl@0
   266
	{}
sl@0
   267
sl@0
   268
sl@0
   269
/** Sets the state of this request to aState.
sl@0
   270
sl@0
   271
	@param aState The new state to be set.
sl@0
   272
*/
sl@0
   273
void TUsbcEndpointStatusCallback::SetState(TUint aState)
sl@0
   274
	{
sl@0
   275
	iState = aState;
sl@0
   276
	}
sl@0
   277
sl@0
   278
sl@0
   279
/** Returns the state value of this request.
sl@0
   280
sl@0
   281
	@return The state value of this request.
sl@0
   282
*/
sl@0
   283
TUint TUsbcEndpointStatusCallback::State() const
sl@0
   284
	{
sl@0
   285
	return iState;
sl@0
   286
	}
sl@0
   287
sl@0
   288
sl@0
   289
/** Returns a pointer to the owner of this request.
sl@0
   290
sl@0
   291
	@return A pointer to the owner of this request.
sl@0
   292
*/
sl@0
   293
DBase* TUsbcEndpointStatusCallback::Owner() const
sl@0
   294
	{
sl@0
   295
	return iOwner;
sl@0
   296
	}
sl@0
   297
sl@0
   298
sl@0
   299
/** Executes the callback function set by the owner of this request.
sl@0
   300
sl@0
   301
	@return KErrNone.
sl@0
   302
*/
sl@0
   303
TInt TUsbcEndpointStatusCallback::DoCallback()
sl@0
   304
	{
sl@0
   305
	if (NKern::CurrentContext() == EThread)
sl@0
   306
		iDfc.Enque();
sl@0
   307
	else
sl@0
   308
		iDfc.Add();
sl@0
   309
	return KErrNone;
sl@0
   310
	}
sl@0
   311
sl@0
   312
sl@0
   313
/** Cancels the callback function set by the owner of this request.
sl@0
   314
*/
sl@0
   315
void TUsbcEndpointStatusCallback::Cancel()
sl@0
   316
	{
sl@0
   317
	iDfc.Cancel();
sl@0
   318
	}
sl@0
   319
sl@0
   320
sl@0
   321
/** Sets the DFC queue used by the callback function.
sl@0
   322
*/
sl@0
   323
void TUsbcEndpointStatusCallback::SetDfcQ(TDfcQue* aDfcQ)
sl@0
   324
	{
sl@0
   325
	iDfc.SetDfcQ(aDfcQ);
sl@0
   326
	}
sl@0
   327
sl@0
   328
sl@0
   329
// --- TUsbcStatusCallback
sl@0
   330
sl@0
   331
/** Constructor.
sl@0
   332
 */
sl@0
   333
TUsbcStatusCallback::TUsbcStatusCallback(DBase* aOwner, TDfcFn aCallback, TInt aPriority)
sl@0
   334
	: iOwner(aOwner),
sl@0
   335
	  iDfc(aCallback, aOwner, aPriority)
sl@0
   336
	{
sl@0
   337
 	ResetState();
sl@0
   338
	}
sl@0
   339
sl@0
   340
sl@0
   341
/** Sets the state of this request to aState (at the first available position
sl@0
   342
	in the state value array).
sl@0
   343
sl@0
   344
	@param aState The new state to be set.
sl@0
   345
*/
sl@0
   346
void TUsbcStatusCallback::SetState(TUsbcDeviceState aState)
sl@0
   347
	{
sl@0
   348
	for (TInt i = 0; i < KUsbcDeviceStateRequests; i++)
sl@0
   349
		{
sl@0
   350
		if (iState[i] == EUsbcNoState)
sl@0
   351
			{
sl@0
   352
			iState[i] = aState;
sl@0
   353
			return;
sl@0
   354
			}
sl@0
   355
		}
sl@0
   356
	__KTRACE_OPT(KPANIC, Kern::Printf("  Error: KUsbcDeviceStateRequests too small (%d)!",
sl@0
   357
									  KUsbcDeviceStateRequests));
sl@0
   358
	}
sl@0
   359
sl@0
   360
sl@0
   361
/** Returns the state value of this request at a certain index.
sl@0
   362
sl@0
   363
	@param aIndex The index to be used for referencing the state array.
sl@0
   364
sl@0
   365
	@return The state value of this request at aIndex.
sl@0
   366
*/
sl@0
   367
TUsbcDeviceState TUsbcStatusCallback::State(TInt aIndex) const
sl@0
   368
	{
sl@0
   369
	if (aIndex >= 0 && aIndex < KUsbcDeviceStateRequests)
sl@0
   370
		{
sl@0
   371
		return iState[aIndex];
sl@0
   372
		}
sl@0
   373
	else
sl@0
   374
		{
sl@0
   375
		__KTRACE_OPT(KPANIC, Kern::Printf("  Error: aIndex too large (%d)!", aIndex));
sl@0
   376
		return EUsbcNoState;
sl@0
   377
		}
sl@0
   378
	}
sl@0
   379
sl@0
   380
sl@0
   381
/** Resets the entire state value array of this request.
sl@0
   382
*/
sl@0
   383
void TUsbcStatusCallback::ResetState()
sl@0
   384
	{
sl@0
   385
	for (TInt i = 0; i < KUsbcDeviceStateRequests; ++i)
sl@0
   386
		{
sl@0
   387
		iState[i] = EUsbcNoState;
sl@0
   388
		}
sl@0
   389
	}
sl@0
   390
sl@0
   391
sl@0
   392
/** Returns a pointer to the owner of this request.
sl@0
   393
sl@0
   394
	@return A pointer to the owner of this request.
sl@0
   395
*/
sl@0
   396
DBase* TUsbcStatusCallback::Owner() const
sl@0
   397
	{
sl@0
   398
	return iOwner;
sl@0
   399
	}
sl@0
   400
sl@0
   401
sl@0
   402
/** Executes the callback function set by the owner of this request.
sl@0
   403
sl@0
   404
	@return KErrNone.
sl@0
   405
*/
sl@0
   406
TInt TUsbcStatusCallback::DoCallback()
sl@0
   407
	{
sl@0
   408
	if (NKern::CurrentContext() == EThread)
sl@0
   409
		iDfc.Enque();
sl@0
   410
	else
sl@0
   411
		iDfc.Add();
sl@0
   412
	return KErrNone;
sl@0
   413
	}
sl@0
   414
sl@0
   415
sl@0
   416
/** Cancels the callback function set by the owner of this request.
sl@0
   417
*/
sl@0
   418
void TUsbcStatusCallback::Cancel()
sl@0
   419
	{
sl@0
   420
	iDfc.Cancel();
sl@0
   421
	}
sl@0
   422
sl@0
   423
sl@0
   424
/** Sets the DFC queue used by the callback function.
sl@0
   425
*/
sl@0
   426
void TUsbcStatusCallback::SetDfcQ(TDfcQue* aDfcQ)
sl@0
   427
	{
sl@0
   428
	iDfc.SetDfcQ(aDfcQ);
sl@0
   429
	}
sl@0
   430
sl@0
   431
// --- TUsbcRequestCallback
sl@0
   432
sl@0
   433
/** Constructor.
sl@0
   434
 */
sl@0
   435
TUsbcRequestCallback::TUsbcRequestCallback(const DBase* aOwner, TInt aEndpointNum, TDfcFn aDfcFunc,
sl@0
   436
										   TAny* aEndpoint, TDfcQue* aDfcQ, TInt aPriority)
sl@0
   437
	: iEndpointNum(aEndpointNum),
sl@0
   438
	  iRealEpNum(-1),
sl@0
   439
	  iOwner(aOwner),
sl@0
   440
	  iDfc(aDfcFunc, aEndpoint, aDfcQ, aPriority),
sl@0
   441
	  iTransferDir(EControllerNone),
sl@0
   442
	  iBufferStart(NULL),
sl@0
   443
	  iPacketIndex(NULL),							  // actually TUint16 (*)[]
sl@0
   444
	  iPacketSize(NULL),							  // actually TUint16 (*)[]
sl@0
   445
	  iLength(0),
sl@0
   446
	  iZlpReqd(EFalse),
sl@0
   447
	  iTxBytes(0),
sl@0
   448
	  iRxPackets(0),
sl@0
   449
	  iError(KErrNone)
sl@0
   450
	{
sl@0
   451
	}
sl@0
   452
sl@0
   453
sl@0
   454
/** Destructor.
sl@0
   455
 */
sl@0
   456
TUsbcRequestCallback::~TUsbcRequestCallback()
sl@0
   457
	{
sl@0
   458
	__KTRACE_OPT(KUSB, Kern::Printf("TUsbcRequestCallback::~TUsbcRequestCallback()"));
sl@0
   459
	iDfc.Cancel();
sl@0
   460
	}
sl@0
   461
sl@0
   462
sl@0
   463
/** Sets some data members of this request for a read request.
sl@0
   464
sl@0
   465
	@param aBufferStart The start of the data buffer to be filled.
sl@0
   466
	@param aBufferAddr The physical address of the buffer (used for DMA).
sl@0
   467
	@param aPacketIndex A pointer to the packet index values array.
sl@0
   468
	@param aPacketSize A pointer to the packet size values array.
sl@0
   469
	@param aLength The number of bytes to be received.
sl@0
   470
*/
sl@0
   471
void TUsbcRequestCallback::SetRxBufferInfo(TUint8* aBufferStart, TPhysAddr aBufferAddr,
sl@0
   472
										   TUsbcPacketArray* aPacketIndex,
sl@0
   473
										   TUsbcPacketArray* aPacketSize,
sl@0
   474
										   TInt aLength)
sl@0
   475
	{
sl@0
   476
	iTransferDir = EControllerRead;
sl@0
   477
	iBufferStart = aBufferStart;
sl@0
   478
	iBufferAddr = aBufferAddr;
sl@0
   479
	iPacketIndex = aPacketIndex;
sl@0
   480
	iPacketSize = aPacketSize;
sl@0
   481
	iLength = aLength;
sl@0
   482
	}
sl@0
   483
sl@0
   484
sl@0
   485
/** Sets some data members of this request for a write request.
sl@0
   486
sl@0
   487
	@param aBufferStart The start of the buffer that contains the data to be sent.
sl@0
   488
	@param aBufferAddr The physical address of the buffer (used for DMA).
sl@0
   489
	@param aLength The number of bytes to be transmitted.
sl@0
   490
*/
sl@0
   491
void TUsbcRequestCallback::SetTxBufferInfo(TUint8* aBufferStart, TPhysAddr aBufferAddr, TInt aLength)
sl@0
   492
	{
sl@0
   493
	iTransferDir = EControllerWrite;
sl@0
   494
	iBufferStart = aBufferStart;
sl@0
   495
	iBufferAddr = aBufferAddr;
sl@0
   496
	iLength = aLength;
sl@0
   497
	}
sl@0
   498
sl@0
   499
sl@0
   500
/** Sets the transfer direction for this request.
sl@0
   501
sl@0
   502
	@param aTransferDir The new transfer direction.
sl@0
   503
*/
sl@0
   504
void TUsbcRequestCallback::SetTransferDirection(TTransferDirection aTransferDir)
sl@0
   505
	{
sl@0
   506
	iTransferDir = aTransferDir;
sl@0
   507
	}
sl@0
   508
sl@0
   509
sl@0
   510
/** Returns a pointer to the owner of this request.
sl@0
   511
sl@0
   512
	@return A pointer to the owner of this request.
sl@0
   513
*/
sl@0
   514
const DBase* TUsbcRequestCallback::Owner() const
sl@0
   515
	{
sl@0
   516
	return iOwner;
sl@0
   517
	}
sl@0
   518
sl@0
   519
sl@0
   520
/** Executes the callback function set by the owner of this request.
sl@0
   521
sl@0
   522
	@return KErrNone.
sl@0
   523
*/
sl@0
   524
TInt TUsbcRequestCallback::DoCallback()
sl@0
   525
	{
sl@0
   526
	if (NKern::CurrentContext() == NKern::EThread)
sl@0
   527
		iDfc.Enque();
sl@0
   528
	else
sl@0
   529
		iDfc.Add();
sl@0
   530
	return KErrNone;
sl@0
   531
	}
sl@0
   532
sl@0
   533
sl@0
   534
/** Cancels the callback function set by the owner of this request.
sl@0
   535
*/
sl@0
   536
void TUsbcRequestCallback::Cancel()
sl@0
   537
	{
sl@0
   538
	iDfc.Cancel();
sl@0
   539
	}
sl@0
   540
sl@0
   541
// --- TUsbcOtgFeatureCallback
sl@0
   542
sl@0
   543
/** Constructor.
sl@0
   544
 */
sl@0
   545
TUsbcOtgFeatureCallback::TUsbcOtgFeatureCallback(DBase* aOwner, TDfcFn aCallback,
sl@0
   546
												 TInt aPriority)
sl@0
   547
	: iOwner(aOwner),
sl@0
   548
	  iDfc(aCallback, aOwner, aPriority),
sl@0
   549
	  iValue(0)
sl@0
   550
	{}
sl@0
   551
sl@0
   552
sl@0
   553
/** Returns a pointer to the owner of this request.
sl@0
   554
	@return A pointer to the owner of this request.
sl@0
   555
*/
sl@0
   556
DBase* TUsbcOtgFeatureCallback::Owner() const
sl@0
   557
	{
sl@0
   558
	return iOwner;
sl@0
   559
	}
sl@0
   560
sl@0
   561
sl@0
   562
/** Set feature value which is to be notified to client.
sl@0
   563
	@param OTG feature value to be set
sl@0
   564
*/
sl@0
   565
void TUsbcOtgFeatureCallback::SetFeatures(TUint8 aFeatures)
sl@0
   566
	{
sl@0
   567
	iValue = aFeatures;
sl@0
   568
	}
sl@0
   569
sl@0
   570
sl@0
   571
/** Set feature value which is to be notified to client.
sl@0
   572
	@return Value of OTG features
sl@0
   573
*/
sl@0
   574
TUint8 TUsbcOtgFeatureCallback::Features() const
sl@0
   575
	{
sl@0
   576
	return iValue;
sl@0
   577
	}
sl@0
   578
sl@0
   579
sl@0
   580
/** Set DFC queue.
sl@0
   581
	@param aDfcQ  DFC queue to be set
sl@0
   582
*/ 
sl@0
   583
void TUsbcOtgFeatureCallback::SetDfcQ(TDfcQue* aDfcQ)
sl@0
   584
	{
sl@0
   585
	iDfc.SetDfcQ(aDfcQ);
sl@0
   586
	}
sl@0
   587
sl@0
   588
sl@0
   589
/** Executes the callback function set by the owner of this request.
sl@0
   590
	@return KErrNone.
sl@0
   591
*/
sl@0
   592
TInt TUsbcOtgFeatureCallback::DoCallback()
sl@0
   593
	{
sl@0
   594
	if (NKern::CurrentContext() == EThread)
sl@0
   595
		iDfc.Enque();
sl@0
   596
	else
sl@0
   597
		iDfc.Add();
sl@0
   598
	return KErrNone;
sl@0
   599
	}
sl@0
   600
sl@0
   601
sl@0
   602
/** Cancels the callback function set by the owner of this request.
sl@0
   603
 */
sl@0
   604
void TUsbcOtgFeatureCallback::Cancel()
sl@0
   605
	{
sl@0
   606
	iDfc.Cancel();
sl@0
   607
	}
sl@0
   608
sl@0
   609
sl@0
   610
/** Returns a pointer to the currently selected (active) setting of this interface.
sl@0
   611
sl@0
   612
	@return A pointer to the currently selected (active) setting of this interface.
sl@0
   613
*/
sl@0
   614
const TUsbcInterface* TUsbcInterfaceSet::CurrentInterface() const
sl@0
   615
	{
sl@0
   616
	return iInterfaces[iCurrentInterface];
sl@0
   617
	}
sl@0
   618
sl@0
   619
sl@0
   620
/** Returns a pointer to the currently selected (active) setting of this interface.
sl@0
   621
sl@0
   622
	@return A pointer to the currently selected (active) setting of this interface.
sl@0
   623
*/
sl@0
   624
sl@0
   625
TUsbcInterface* TUsbcInterfaceSet::CurrentInterface()
sl@0
   626
	{
sl@0
   627
	return iInterfaces[iCurrentInterface];
sl@0
   628
	}
sl@0
   629
sl@0
   630
sl@0
   631
#endif // __USBCSHARED_INL__
sl@0
   632
sl@0
   633
sl@0
   634