os/kernelhwsrv/kernel/eka/include/d32usbtransfers.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/kernelhwsrv/kernel/eka/include/d32usbtransfers.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,239 @@
     1.4 +// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of the License "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +//
    1.18 +
    1.19 +#ifndef __D32USBTRANSFERS_H
    1.20 +#define __D32USBTRANSFERS_H
    1.21 +
    1.22 +#ifdef __KERNEL_MODE__
    1.23 +#include <kernel/klib.h>
    1.24 +#else
    1.25 +#include <e32base.h>
    1.26 +#endif
    1.27 +#include <d32usbdi.h>
    1.28 +
    1.29 +
    1.30 +class RUsbTransferStrategy;
    1.31 +
    1.32 +/**
    1.33 +Base class for all transfer descriptors.
    1.34 +
    1.35 +@publishedPartner Intended to be available to 3rd parties later
    1.36 +@prototype
    1.37 +*/
    1.38 +NONSHARABLE_CLASS(RUsbTransferDescriptor)
    1.39 +	{
    1.40 +public:
    1.41 +	enum TTransferType
    1.42 +		{
    1.43 +		EBulk,
    1.44 +		EIsochronous,
    1.45 +		EInterrupt
    1.46 +		};
    1.47 +
    1.48 +	enum TZlpStatus
    1.49 +		{
    1.50 +		ESuppressZlp,
    1.51 +		ESendZlpIfRequired, // Default
    1.52 +		EAlwaysSendZlp
    1.53 +		};
    1.54 +
    1.55 +#ifndef __KERNEL_MODE__
    1.56 +friend class RUsbPipe;
    1.57 +friend class RUsbTransferStrategy;
    1.58 +
    1.59 +public:
    1.60 +	virtual void Close();
    1.61 +
    1.62 +protected:
    1.63 +	RUsbTransferDescriptor(TTransferType aType, TInt aMaxSize, TInt aMaxNumPackets);
    1.64 +	
    1.65 +protected:
    1.66 +	static const TInt KInvalidHandle = -1;
    1.67 +
    1.68 +protected:
    1.69 +	/**
    1.70 +	A pointer to the transfer strategy the descriptor is registered in.
    1.71 +	*/
    1.72 +	RUsbTransferStrategy* iTransferStrategy;
    1.73 +
    1.74 +	/**
    1.75 +	Handle into the transfer strategy for the descriptor.
    1.76 +	*/
    1.77 +	TInt iHandle;
    1.78 +
    1.79 +public:
    1.80 +	/**
    1.81 +	The type of transfer descriptor this instance represents.
    1.82 +	*/
    1.83 +	const TTransferType iType;
    1.84 +
    1.85 +	/**
    1.86 +	For isochronous transfers this refers to the maximum packet size packets
    1.87 +	in this descriptor may be.
    1.88 +	For other transfers this refers to the maximum size of the transfer.
    1.89 +	*/
    1.90 +	const TInt iMaxSize;
    1.91 +
    1.92 +	/**
    1.93 +	Used to specify the maximum number of packets the descriptor will hold.
    1.94 +	*/
    1.95 +	const TInt iMaxNumPackets;
    1.96 +#endif // __KERNEL_MODE__
    1.97 +	};
    1.98 +
    1.99 +
   1.100 +#ifndef __KERNEL_MODE__
   1.101 +
   1.102 +/**
   1.103 +A class that refers to the list of packet lengths for a isochronous transfer
   1.104 +descriptor.
   1.105 +
   1.106 +@publishedPartner
   1.107 +@prototype
   1.108 +*/
   1.109 +NONSHARABLE_CLASS(TPacketLengths)
   1.110 +	{
   1.111 +public:
   1.112 +	NONSHARABLE_CLASS(TLength)
   1.113 +		{
   1.114 +	public:
   1.115 +		IMPORT_C TUint16 operator=(TUint16 aValue);
   1.116 +		IMPORT_C operator TUint16() const;
   1.117 +	public:
   1.118 +		TLength(TUint16& aRecv, TUint16& aReq);
   1.119 +	private:
   1.120 +		TUint16& iRecv;
   1.121 +		TUint16& iReq;
   1.122 +		};
   1.123 +public:
   1.124 +	IMPORT_C TLength At(TInt aIndex);
   1.125 +	IMPORT_C const TLength At(TInt aIndex) const;
   1.126 +	IMPORT_C TLength operator[](TInt aIndex);
   1.127 +	IMPORT_C const TLength operator[](TInt aIndex) const;
   1.128 +	IMPORT_C TInt MaxNumPackets();
   1.129 +
   1.130 +public:
   1.131 +	TPacketLengths(TUint16* aRecvPtr, TUint16* aReqPtr, TInt& aMaxNumPackets);
   1.132 +
   1.133 +private:
   1.134 +	TUint16* iRecvPtr;
   1.135 +	TUint16* iReqPtr;
   1.136 +	TInt& iMaxNumPackets;
   1.137 +	};
   1.138 +
   1.139 +/**
   1.140 +A class that refers to the list of packet results for a isochronous transfer
   1.141 +descriptor.
   1.142 +
   1.143 +@publishedPartner
   1.144 +@prototype
   1.145 +*/
   1.146 +NONSHARABLE_CLASS(TPacketResults)
   1.147 +	{
   1.148 +public:
   1.149 +	IMPORT_C TInt At(TInt aIndex) const;
   1.150 +	IMPORT_C TInt operator[](TInt aIndex) const;
   1.151 +	IMPORT_C TInt MaxNumPackets();
   1.152 +
   1.153 +public:
   1.154 +	TPacketResults(TInt* aResPtr, TInt& aMaxNumPackets);
   1.155 +	
   1.156 +private:
   1.157 +	TInt* iResPtr;
   1.158 +	TInt& iMaxNumPackets;
   1.159 +	};
   1.160 +
   1.161 +
   1.162 +/**
   1.163 +Provides *SEQUENTIAL* access to the packet slots in an isochronous transfer descriptor.
   1.164 +As some HCs may pack the buffer space tightly, with one packet starting immediately after the preceeding one,
   1.165 +random access is not possible -- in this implementation, even replacing the content of a slot with another packet
   1.166 +of the same size is not 'intentionally' possible.
   1.167 +Note that reading data is possible in a random access manner -- the sequential constraint only applies to writing.
   1.168 +@publishedPartner Intended to be available to 3rd parties later
   1.169 +@prototype
   1.170 +*/
   1.171 +NONSHARABLE_CLASS(RUsbIsocTransferDescriptor) : public RUsbTransferDescriptor
   1.172 +	{
   1.173 +friend class RUsbTransferStrategy;
   1.174 +
   1.175 +public:
   1.176 +    IMPORT_C RUsbIsocTransferDescriptor(TInt aMaxPacketSize, TInt aMaxNumPackets);
   1.177 +
   1.178 +public:
   1.179 +	IMPORT_C void Reset();
   1.180 +	IMPORT_C TPacketLengths Lengths();
   1.181 +	IMPORT_C TPacketResults Results();
   1.182 +	IMPORT_C TInt MaxPacketSize();
   1.183 +
   1.184 +public:		// Sending
   1.185 +	IMPORT_C TPtr8 WritablePackets(TInt aNumPacketsRequested, TInt& aMaxNumOfPacketsAbleToWrite);
   1.186 +	IMPORT_C void SaveMultiple(TInt aNumOfPackets);
   1.187 +
   1.188 +public:		// Receiving
   1.189 +	IMPORT_C TPtrC8 Packets(TInt aFirstPacketIndex, TInt aNumPacketsRequested, TInt& aNumOfPacketsReturned) const;
   1.190 +	IMPORT_C void ReceivePackets(TInt aNumOfPackets);
   1.191 +
   1.192 +private:
   1.193 +	/**
   1.194 +	The handle to represent the current point in writing an isoc. transfer.
   1.195 +	*/
   1.196 +	TInt iWriteHandle;
   1.197 +	};
   1.198 +
   1.199 +
   1.200 +/**
   1.201 +Provides buffer management for Bulk transfers
   1.202 +@publishedPartner Intended to be available to 3rd parties later
   1.203 +@prototype
   1.204 +*/
   1.205 +NONSHARABLE_CLASS(RUsbBulkTransferDescriptor) : public RUsbTransferDescriptor
   1.206 +	{
   1.207 +public:
   1.208 +	IMPORT_C RUsbBulkTransferDescriptor(TInt aMaxSize);
   1.209 +
   1.210 +public:		// Setters
   1.211 +	IMPORT_C TPtr8 WritableBuffer();
   1.212 +	IMPORT_C void SaveData(TInt aLength);
   1.213 +	IMPORT_C void SetZlpStatus(TZlpStatus aZlpStatus);
   1.214 +
   1.215 +public:		// Getters
   1.216 +	IMPORT_C TPtrC8 Buffer() const;
   1.217 +	};
   1.218 +
   1.219 +
   1.220 +
   1.221 +/**
   1.222 +Provides buffer management for Interrupt transfers
   1.223 +@publishedPartner Intended to be available to 3rd parties later
   1.224 +@prototype
   1.225 +*/
   1.226 +NONSHARABLE_CLASS(RUsbIntrTransferDescriptor) : public RUsbTransferDescriptor
   1.227 +	{
   1.228 +public:
   1.229 +	IMPORT_C RUsbIntrTransferDescriptor(TInt aMaxSize);
   1.230 +
   1.231 +public:		// Setters
   1.232 +	IMPORT_C TPtr8 WritableBuffer();
   1.233 +	IMPORT_C void SaveData(TInt aLength);
   1.234 +	IMPORT_C void SetZlpStatus(TZlpStatus aZlpStatus);
   1.235 +
   1.236 +public:		// Getters
   1.237 +	IMPORT_C TPtrC8 Buffer() const;
   1.238 +	};
   1.239 +
   1.240 +#endif // __KERNEL_MODE__
   1.241 +
   1.242 +#endif	// __D32USBTRANSFERS_H