First public contribution.
1 // Copyright (c) 2007-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.
16 #ifndef __D32USBTRANSFERS_H
17 #define __D32USBTRANSFERS_H
19 #ifdef __KERNEL_MODE__
20 #include <kernel/klib.h>
27 class RUsbTransferStrategy;
30 Base class for all transfer descriptors.
32 @publishedPartner Intended to be available to 3rd parties later
35 NONSHARABLE_CLASS(RUsbTransferDescriptor)
48 ESendZlpIfRequired, // Default
52 #ifndef __KERNEL_MODE__
53 friend class RUsbPipe;
54 friend class RUsbTransferStrategy;
60 RUsbTransferDescriptor(TTransferType aType, TInt aMaxSize, TInt aMaxNumPackets);
63 static const TInt KInvalidHandle = -1;
67 A pointer to the transfer strategy the descriptor is registered in.
69 RUsbTransferStrategy* iTransferStrategy;
72 Handle into the transfer strategy for the descriptor.
78 The type of transfer descriptor this instance represents.
80 const TTransferType iType;
83 For isochronous transfers this refers to the maximum packet size packets
84 in this descriptor may be.
85 For other transfers this refers to the maximum size of the transfer.
90 Used to specify the maximum number of packets the descriptor will hold.
92 const TInt iMaxNumPackets;
93 #endif // __KERNEL_MODE__
97 #ifndef __KERNEL_MODE__
100 A class that refers to the list of packet lengths for a isochronous transfer
106 NONSHARABLE_CLASS(TPacketLengths)
109 NONSHARABLE_CLASS(TLength)
112 IMPORT_C TUint16 operator=(TUint16 aValue);
113 IMPORT_C operator TUint16() const;
115 TLength(TUint16& aRecv, TUint16& aReq);
121 IMPORT_C TLength At(TInt aIndex);
122 IMPORT_C const TLength At(TInt aIndex) const;
123 IMPORT_C TLength operator[](TInt aIndex);
124 IMPORT_C const TLength operator[](TInt aIndex) const;
125 IMPORT_C TInt MaxNumPackets();
128 TPacketLengths(TUint16* aRecvPtr, TUint16* aReqPtr, TInt& aMaxNumPackets);
133 TInt& iMaxNumPackets;
137 A class that refers to the list of packet results for a isochronous transfer
143 NONSHARABLE_CLASS(TPacketResults)
146 IMPORT_C TInt At(TInt aIndex) const;
147 IMPORT_C TInt operator[](TInt aIndex) const;
148 IMPORT_C TInt MaxNumPackets();
151 TPacketResults(TInt* aResPtr, TInt& aMaxNumPackets);
155 TInt& iMaxNumPackets;
160 Provides *SEQUENTIAL* access to the packet slots in an isochronous transfer descriptor.
161 As some HCs may pack the buffer space tightly, with one packet starting immediately after the preceeding one,
162 random access is not possible -- in this implementation, even replacing the content of a slot with another packet
163 of the same size is not 'intentionally' possible.
164 Note that reading data is possible in a random access manner -- the sequential constraint only applies to writing.
165 @publishedPartner Intended to be available to 3rd parties later
168 NONSHARABLE_CLASS(RUsbIsocTransferDescriptor) : public RUsbTransferDescriptor
170 friend class RUsbTransferStrategy;
173 IMPORT_C RUsbIsocTransferDescriptor(TInt aMaxPacketSize, TInt aMaxNumPackets);
176 IMPORT_C void Reset();
177 IMPORT_C TPacketLengths Lengths();
178 IMPORT_C TPacketResults Results();
179 IMPORT_C TInt MaxPacketSize();
182 IMPORT_C TPtr8 WritablePackets(TInt aNumPacketsRequested, TInt& aMaxNumOfPacketsAbleToWrite);
183 IMPORT_C void SaveMultiple(TInt aNumOfPackets);
186 IMPORT_C TPtrC8 Packets(TInt aFirstPacketIndex, TInt aNumPacketsRequested, TInt& aNumOfPacketsReturned) const;
187 IMPORT_C void ReceivePackets(TInt aNumOfPackets);
191 The handle to represent the current point in writing an isoc. transfer.
198 Provides buffer management for Bulk transfers
199 @publishedPartner Intended to be available to 3rd parties later
202 NONSHARABLE_CLASS(RUsbBulkTransferDescriptor) : public RUsbTransferDescriptor
205 IMPORT_C RUsbBulkTransferDescriptor(TInt aMaxSize);
208 IMPORT_C TPtr8 WritableBuffer();
209 IMPORT_C void SaveData(TInt aLength);
210 IMPORT_C void SetZlpStatus(TZlpStatus aZlpStatus);
213 IMPORT_C TPtrC8 Buffer() const;
219 Provides buffer management for Interrupt transfers
220 @publishedPartner Intended to be available to 3rd parties later
223 NONSHARABLE_CLASS(RUsbIntrTransferDescriptor) : public RUsbTransferDescriptor
226 IMPORT_C RUsbIntrTransferDescriptor(TInt aMaxSize);
229 IMPORT_C TPtr8 WritableBuffer();
230 IMPORT_C void SaveData(TInt aLength);
231 IMPORT_C void SetZlpStatus(TZlpStatus aZlpStatus);
234 IMPORT_C TPtrC8 Buffer() const;
237 #endif // __KERNEL_MODE__
239 #endif // __D32USBTRANSFERS_H