Update contrib.
1 // Copyright (c) 2000-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of the License "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // e32\include\drivers\usbcshared.inl
15 // Kernel side definitions for the USB Device driver stack (PIL + LDD).
24 #ifndef __USBCSHARED_INL__
25 #define __USBCSHARED_INL__
28 // --- DUsbClientController (USB PDD) ---
31 // --- Private member functions, used by controller itself ---
33 const DBase* DUsbClientController::PEndpoint2ClientId(TInt aRealEndpoint) const
35 if (iRealEndpoints[aRealEndpoint].iLEndpoint)
36 return iRealEndpoints[aRealEndpoint].iLEndpoint->iInterface->iInterfaceSet->iClientId;
42 TInt DUsbClientController::PEndpoint2LEndpoint(TInt aRealEndpoint) const
44 if (iRealEndpoints[aRealEndpoint].iLEndpoint)
45 return iRealEndpoints[aRealEndpoint].iLEndpoint->iLEndpointNum;
51 const TUsbcConfiguration* DUsbClientController::CurrentConfig() const
53 return (iCurrentConfig ? iConfigs[iCurrentConfig - 1] : NULL);
57 TUsbcConfiguration* DUsbClientController::CurrentConfig()
59 return (iCurrentConfig ? iConfigs[iCurrentConfig - 1] : NULL);
63 TBool DUsbClientController::InterfaceExists(TInt aNumber) const
65 const TInt num_ifcsets = iConfigs[0]->iInterfaceSets.Count();
66 RPointerArray<TUsbcInterfaceSet>& ifcsets = iConfigs[0]->iInterfaceSets;
67 for (TInt i = 0; i < num_ifcsets; i++)
69 if (ifcsets[i]->iInterfaceNumber == aNumber)
78 TBool DUsbClientController::EndpointExists(TUint aAddress) const
80 // Ep0 doesn't have a "logical ep" pointer (there's no virtual endpoint zero);
81 // that's why this pointer being non-NULL is not a sufficient criterion for
82 // endpoint-existence. (Apart from that, ep0 always exists.)
83 const TInt idx = EpAddr2Idx(aAddress);
84 return ((idx < iDeviceTotalEndpoints) &&
85 ((iRealEndpoints[idx].iLEndpoint != NULL) ||
86 ((aAddress & KUsbEpAddress_Portmask) == 0)));
90 void DUsbClientController::Buffer2Setup(const TAny* aBuf, TUsbcSetup& aSetup) const
93 aSetup.iRequestType = static_cast<const TUint8*>(aBuf)[0];
94 aSetup.iRequest = static_cast<const TUint8*>(aBuf)[1];
95 // TUint16 index from here!
96 aSetup.iValue = SWAP_BYTES_16((static_cast<const TUint16*>(aBuf))[1]);
97 aSetup.iIndex = SWAP_BYTES_16((static_cast<const TUint16*>(aBuf))[2]);
98 aSetup.iLength = SWAP_BYTES_16((static_cast<const TUint16*>(aBuf))[3]);
102 TUint DUsbClientController::EpIdx2Addr(TUint aRealEndpoint) const
104 return ((aRealEndpoint << 7) & 0x80) | ((aRealEndpoint >> 1) & 0x0f);
108 TUint DUsbClientController::EpAddr2Idx(TUint aAddress) const
110 return ((aAddress & 0x80) >> 7) | ((aAddress & 0x0f) << 1);
114 void DUsbClientController::SetEp0DataOutVars(const TUsbcSetup& aPacket, const DBase* aClientId)
116 __KTRACE_OPT(KUSB, Kern::Printf("DUsbClientController::SetEp0DataOutVars()"));
118 iEp0DataReceiving = ETrue;
119 iEp0DataReceived = 0;
120 iEp0ClientId = aClientId;
124 void DUsbClientController::ResetEp0DataOutVars()
126 __KTRACE_OPT(KUSB, Kern::Printf("DUsbClientController::ResetEp0DataOutVars()"));
127 iEp0DataReceiving = EFalse;
128 iEp0DataReceived = 0;
133 TBool DUsbClientController::IsInTheRequestList(const TUsbcRequestCallback& aCallback)
135 const TInt irq = NKern::DisableAllInterrupts();
136 TSglQueIter<TUsbcRequestCallback> iter(iEp0ReadRequestCallbacks);
137 TUsbcRequestCallback* p;
138 while ((p = iter++) != NULL)
142 NKern::RestoreInterrupts(irq);
146 NKern::RestoreInterrupts(irq);
151 TBool DUsbClientController::IsInTheStatusList(const TUsbcStatusCallback& aCallback)
153 const TInt irq = NKern::DisableAllInterrupts();
154 TSglQueIter<TUsbcStatusCallback> iter(iStatusCallbacks);
155 TUsbcStatusCallback* p;
156 while ((p = iter++) != NULL)
160 NKern::RestoreInterrupts(irq);
164 NKern::RestoreInterrupts(irq);
169 TBool DUsbClientController::IsInTheEpStatusList(const TUsbcEndpointStatusCallback& aCallback)
171 const TInt irq = NKern::DisableAllInterrupts();
172 TSglQueIter<TUsbcEndpointStatusCallback> iter(iEpStatusCallbacks);
173 TUsbcEndpointStatusCallback* p;
174 while ((p = iter++) != NULL)
178 NKern::RestoreInterrupts(irq);
182 NKern::RestoreInterrupts(irq);
187 TBool DUsbClientController::IsInTheOtgFeatureList(const TUsbcOtgFeatureCallback& aCallback)
189 const TInt irq = NKern::DisableAllInterrupts();
190 TSglQueIter<TUsbcOtgFeatureCallback> iter(iOtgCallbacks);
191 TUsbcOtgFeatureCallback* p;
192 while ((p = iter++) != NULL)
196 NKern::RestoreInterrupts(irq);
200 NKern::RestoreInterrupts(irq);
205 // --- Misc classes ---
208 // --- TUsbcClientCallback
212 TUsbcClientCallback::TUsbcClientCallback(DBase* aOwner, TDfcFn aCallback, TInt aPriority)
214 iDfc(aCallback, aOwner, aPriority)
218 /** Returns a pointer to the owner of this request.
220 @return A pointer to the owner of this request.
222 DBase* TUsbcClientCallback::Owner() const
228 /** Executes the callback function set by the owner of this request.
232 TInt TUsbcClientCallback::DoCallback()
234 __ASSERT_DEBUG((NKern::CurrentContext() == EThread), Kern::Fault(KUsbPILPanicCat, __LINE__));
240 /** Cancels the callback function set by the owner of this request.
242 void TUsbcClientCallback::Cancel()
248 /** Sets the DFC queue used by the callback function.
249 @param aDfcQ DFC queue to be set
251 void TUsbcClientCallback::SetDfcQ(TDfcQue* aDfcQ)
257 // --- TUsbcEndpointStatusCallback
261 TUsbcEndpointStatusCallback::TUsbcEndpointStatusCallback(DBase* aOwner, TDfcFn aCallback,
264 iDfc(aCallback, aOwner, aPriority),
269 /** Sets the state of this request to aState.
271 @param aState The new state to be set.
273 void TUsbcEndpointStatusCallback::SetState(TUint aState)
279 /** Returns the state value of this request.
281 @return The state value of this request.
283 TUint TUsbcEndpointStatusCallback::State() const
289 /** Returns a pointer to the owner of this request.
291 @return A pointer to the owner of this request.
293 DBase* TUsbcEndpointStatusCallback::Owner() const
299 /** Executes the callback function set by the owner of this request.
303 TInt TUsbcEndpointStatusCallback::DoCallback()
305 if (NKern::CurrentContext() == EThread)
313 /** Cancels the callback function set by the owner of this request.
315 void TUsbcEndpointStatusCallback::Cancel()
321 /** Sets the DFC queue used by the callback function.
323 void TUsbcEndpointStatusCallback::SetDfcQ(TDfcQue* aDfcQ)
329 // --- TUsbcStatusCallback
333 TUsbcStatusCallback::TUsbcStatusCallback(DBase* aOwner, TDfcFn aCallback, TInt aPriority)
335 iDfc(aCallback, aOwner, aPriority)
341 /** Sets the state of this request to aState (at the first available position
342 in the state value array).
344 @param aState The new state to be set.
346 void TUsbcStatusCallback::SetState(TUsbcDeviceState aState)
348 for (TInt i = 0; i < KUsbcDeviceStateRequests; i++)
350 if (iState[i] == EUsbcNoState)
356 __KTRACE_OPT(KPANIC, Kern::Printf(" Error: KUsbcDeviceStateRequests too small (%d)!",
357 KUsbcDeviceStateRequests));
361 /** Returns the state value of this request at a certain index.
363 @param aIndex The index to be used for referencing the state array.
365 @return The state value of this request at aIndex.
367 TUsbcDeviceState TUsbcStatusCallback::State(TInt aIndex) const
369 if (aIndex >= 0 && aIndex < KUsbcDeviceStateRequests)
371 return iState[aIndex];
375 __KTRACE_OPT(KPANIC, Kern::Printf(" Error: aIndex too large (%d)!", aIndex));
381 /** Resets the entire state value array of this request.
383 void TUsbcStatusCallback::ResetState()
385 for (TInt i = 0; i < KUsbcDeviceStateRequests; ++i)
387 iState[i] = EUsbcNoState;
392 /** Returns a pointer to the owner of this request.
394 @return A pointer to the owner of this request.
396 DBase* TUsbcStatusCallback::Owner() const
402 /** Executes the callback function set by the owner of this request.
406 TInt TUsbcStatusCallback::DoCallback()
408 if (NKern::CurrentContext() == EThread)
416 /** Cancels the callback function set by the owner of this request.
418 void TUsbcStatusCallback::Cancel()
424 /** Sets the DFC queue used by the callback function.
426 void TUsbcStatusCallback::SetDfcQ(TDfcQue* aDfcQ)
431 // --- TUsbcRequestCallback
435 TUsbcRequestCallback::TUsbcRequestCallback(const DBase* aOwner, TInt aEndpointNum, TDfcFn aDfcFunc,
436 TAny* aEndpoint, TDfcQue* aDfcQ, TInt aPriority)
437 : iEndpointNum(aEndpointNum),
440 iDfc(aDfcFunc, aEndpoint, aDfcQ, aPriority),
441 iTransferDir(EControllerNone),
443 iPacketIndex(NULL), // actually TUint16 (*)[]
444 iPacketSize(NULL), // actually TUint16 (*)[]
456 TUsbcRequestCallback::~TUsbcRequestCallback()
458 __KTRACE_OPT(KUSB, Kern::Printf("TUsbcRequestCallback::~TUsbcRequestCallback()"));
463 /** Sets some data members of this request for a read request.
465 @param aBufferStart The start of the data buffer to be filled.
466 @param aBufferAddr The physical address of the buffer (used for DMA).
467 @param aPacketIndex A pointer to the packet index values array.
468 @param aPacketSize A pointer to the packet size values array.
469 @param aLength The number of bytes to be received.
471 void TUsbcRequestCallback::SetRxBufferInfo(TUint8* aBufferStart, TPhysAddr aBufferAddr,
472 TUsbcPacketArray* aPacketIndex,
473 TUsbcPacketArray* aPacketSize,
476 iTransferDir = EControllerRead;
477 iBufferStart = aBufferStart;
478 iBufferAddr = aBufferAddr;
479 iPacketIndex = aPacketIndex;
480 iPacketSize = aPacketSize;
485 /** Sets some data members of this request for a write request.
487 @param aBufferStart The start of the buffer that contains the data to be sent.
488 @param aBufferAddr The physical address of the buffer (used for DMA).
489 @param aLength The number of bytes to be transmitted.
491 void TUsbcRequestCallback::SetTxBufferInfo(TUint8* aBufferStart, TPhysAddr aBufferAddr, TInt aLength)
493 iTransferDir = EControllerWrite;
494 iBufferStart = aBufferStart;
495 iBufferAddr = aBufferAddr;
500 /** Sets the transfer direction for this request.
502 @param aTransferDir The new transfer direction.
504 void TUsbcRequestCallback::SetTransferDirection(TTransferDirection aTransferDir)
506 iTransferDir = aTransferDir;
510 /** Returns a pointer to the owner of this request.
512 @return A pointer to the owner of this request.
514 const DBase* TUsbcRequestCallback::Owner() const
520 /** Executes the callback function set by the owner of this request.
524 TInt TUsbcRequestCallback::DoCallback()
526 if (NKern::CurrentContext() == NKern::EThread)
534 /** Cancels the callback function set by the owner of this request.
536 void TUsbcRequestCallback::Cancel()
541 // --- TUsbcOtgFeatureCallback
545 TUsbcOtgFeatureCallback::TUsbcOtgFeatureCallback(DBase* aOwner, TDfcFn aCallback,
548 iDfc(aCallback, aOwner, aPriority),
553 /** Returns a pointer to the owner of this request.
554 @return A pointer to the owner of this request.
556 DBase* TUsbcOtgFeatureCallback::Owner() const
562 /** Set feature value which is to be notified to client.
563 @param OTG feature value to be set
565 void TUsbcOtgFeatureCallback::SetFeatures(TUint8 aFeatures)
571 /** Set feature value which is to be notified to client.
572 @return Value of OTG features
574 TUint8 TUsbcOtgFeatureCallback::Features() const
581 @param aDfcQ DFC queue to be set
583 void TUsbcOtgFeatureCallback::SetDfcQ(TDfcQue* aDfcQ)
589 /** Executes the callback function set by the owner of this request.
592 TInt TUsbcOtgFeatureCallback::DoCallback()
594 if (NKern::CurrentContext() == EThread)
602 /** Cancels the callback function set by the owner of this request.
604 void TUsbcOtgFeatureCallback::Cancel()
610 /** Returns a pointer to the currently selected (active) setting of this interface.
612 @return A pointer to the currently selected (active) setting of this interface.
614 const TUsbcInterface* TUsbcInterfaceSet::CurrentInterface() const
616 return iInterfaces[iCurrentInterface];
620 /** Returns a pointer to the currently selected (active) setting of this interface.
622 @return A pointer to the currently selected (active) setting of this interface.
625 TUsbcInterface* TUsbcInterfaceSet::CurrentInterface()
627 return iInterfaces[iCurrentInterface];
631 #endif // __USBCSHARED_INL__