Update contrib.
1 // Copyright (c) 1996-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\usbc.inl
15 // Kernel side inline header file for USB device driver.
28 // --- USB Logical Device Driver (LDD) ---
31 TInt TDmaBuf::RxBytesAvailable() const
33 return iTotalRxBytesAvail;
37 TUsbcEndpointInfo* TUsbcEndpoint::EndpointInfo()
39 return &iEndpointInfo;
43 TInt TUsbcEndpoint::RxBytesAvailable() const
45 return iDmaBuffers->RxBytesAvailable();
48 TInt TUsbcEndpoint::BufferSize() const
50 return iDmaBuffers->BufferSize();
52 TInt TUsbcEndpoint::SetBufferAddr( TInt aBufInd, TUint8* aBufAddr)
54 return iDmaBuffers->SetBufferAddr(aBufInd, aBufAddr);
56 TInt TUsbcEndpoint::BufferNumber() const
58 return iDmaBuffers->BufferNumber();
61 void TUsbcEndpoint::SetTransferInfo(TEndpointTransferInfo* aTransferInfo)
63 iTransferInfo = *aTransferInfo;
64 iBytesTransferred = 0;
68 void TUsbcEndpoint::ResetTransferInfo()
70 iTransferInfo.iDes = NULL;
71 iTransferInfo.iTransferType = ETransferTypeNone;
72 iTransferInfo.iTransferSize = 0;
73 iTransferInfo.iZlpReqd = EFalse;
74 iBytesTransferred = 0;
78 void TUsbcEndpoint::SetClientReadPending(TBool aVal)
80 iClientReadPending = aVal;
84 TBool TUsbcEndpoint::ClientReadPending()
86 return iClientReadPending;
90 void TUsbcEndpoint::SetClientWritePending(TBool aVal)
92 iClientWritePending = aVal;
96 TBool TUsbcEndpoint::ClientWritePending()
98 return iClientWritePending;
102 void TUsbcEndpoint::SetRealEpNumber(TInt aRealEpNumber)
104 iRealEpNumber = aRealEpNumber;
105 iRequestCallbackInfo->iRealEpNum = aRealEpNumber;
109 TInt TUsbcEndpoint::RealEpNumber() const
111 return iRealEpNumber;
115 #endif // __USBC_INL__