os/kernelhwsrv/kernel/eka/include/d32usbtransfers.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2007-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
//
sl@0
    15
sl@0
    16
#ifndef __D32USBTRANSFERS_H
sl@0
    17
#define __D32USBTRANSFERS_H
sl@0
    18
sl@0
    19
#ifdef __KERNEL_MODE__
sl@0
    20
#include <kernel/klib.h>
sl@0
    21
#else
sl@0
    22
#include <e32base.h>
sl@0
    23
#endif
sl@0
    24
#include <d32usbdi.h>
sl@0
    25
sl@0
    26
sl@0
    27
class RUsbTransferStrategy;
sl@0
    28
sl@0
    29
/**
sl@0
    30
Base class for all transfer descriptors.
sl@0
    31
sl@0
    32
@publishedPartner Intended to be available to 3rd parties later
sl@0
    33
@prototype
sl@0
    34
*/
sl@0
    35
NONSHARABLE_CLASS(RUsbTransferDescriptor)
sl@0
    36
	{
sl@0
    37
public:
sl@0
    38
	enum TTransferType
sl@0
    39
		{
sl@0
    40
		EBulk,
sl@0
    41
		EIsochronous,
sl@0
    42
		EInterrupt
sl@0
    43
		};
sl@0
    44
sl@0
    45
	enum TZlpStatus
sl@0
    46
		{
sl@0
    47
		ESuppressZlp,
sl@0
    48
		ESendZlpIfRequired, // Default
sl@0
    49
		EAlwaysSendZlp
sl@0
    50
		};
sl@0
    51
sl@0
    52
#ifndef __KERNEL_MODE__
sl@0
    53
friend class RUsbPipe;
sl@0
    54
friend class RUsbTransferStrategy;
sl@0
    55
sl@0
    56
public:
sl@0
    57
	virtual void Close();
sl@0
    58
sl@0
    59
protected:
sl@0
    60
	RUsbTransferDescriptor(TTransferType aType, TInt aMaxSize, TInt aMaxNumPackets);
sl@0
    61
	
sl@0
    62
protected:
sl@0
    63
	static const TInt KInvalidHandle = -1;
sl@0
    64
sl@0
    65
protected:
sl@0
    66
	/**
sl@0
    67
	A pointer to the transfer strategy the descriptor is registered in.
sl@0
    68
	*/
sl@0
    69
	RUsbTransferStrategy* iTransferStrategy;
sl@0
    70
sl@0
    71
	/**
sl@0
    72
	Handle into the transfer strategy for the descriptor.
sl@0
    73
	*/
sl@0
    74
	TInt iHandle;
sl@0
    75
sl@0
    76
public:
sl@0
    77
	/**
sl@0
    78
	The type of transfer descriptor this instance represents.
sl@0
    79
	*/
sl@0
    80
	const TTransferType iType;
sl@0
    81
sl@0
    82
	/**
sl@0
    83
	For isochronous transfers this refers to the maximum packet size packets
sl@0
    84
	in this descriptor may be.
sl@0
    85
	For other transfers this refers to the maximum size of the transfer.
sl@0
    86
	*/
sl@0
    87
	const TInt iMaxSize;
sl@0
    88
sl@0
    89
	/**
sl@0
    90
	Used to specify the maximum number of packets the descriptor will hold.
sl@0
    91
	*/
sl@0
    92
	const TInt iMaxNumPackets;
sl@0
    93
#endif // __KERNEL_MODE__
sl@0
    94
	};
sl@0
    95
sl@0
    96
sl@0
    97
#ifndef __KERNEL_MODE__
sl@0
    98
sl@0
    99
/**
sl@0
   100
A class that refers to the list of packet lengths for a isochronous transfer
sl@0
   101
descriptor.
sl@0
   102
sl@0
   103
@publishedPartner
sl@0
   104
@prototype
sl@0
   105
*/
sl@0
   106
NONSHARABLE_CLASS(TPacketLengths)
sl@0
   107
	{
sl@0
   108
public:
sl@0
   109
	NONSHARABLE_CLASS(TLength)
sl@0
   110
		{
sl@0
   111
	public:
sl@0
   112
		IMPORT_C TUint16 operator=(TUint16 aValue);
sl@0
   113
		IMPORT_C operator TUint16() const;
sl@0
   114
	public:
sl@0
   115
		TLength(TUint16& aRecv, TUint16& aReq);
sl@0
   116
	private:
sl@0
   117
		TUint16& iRecv;
sl@0
   118
		TUint16& iReq;
sl@0
   119
		};
sl@0
   120
public:
sl@0
   121
	IMPORT_C TLength At(TInt aIndex);
sl@0
   122
	IMPORT_C const TLength At(TInt aIndex) const;
sl@0
   123
	IMPORT_C TLength operator[](TInt aIndex);
sl@0
   124
	IMPORT_C const TLength operator[](TInt aIndex) const;
sl@0
   125
	IMPORT_C TInt MaxNumPackets();
sl@0
   126
sl@0
   127
public:
sl@0
   128
	TPacketLengths(TUint16* aRecvPtr, TUint16* aReqPtr, TInt& aMaxNumPackets);
sl@0
   129
sl@0
   130
private:
sl@0
   131
	TUint16* iRecvPtr;
sl@0
   132
	TUint16* iReqPtr;
sl@0
   133
	TInt& iMaxNumPackets;
sl@0
   134
	};
sl@0
   135
sl@0
   136
/**
sl@0
   137
A class that refers to the list of packet results for a isochronous transfer
sl@0
   138
descriptor.
sl@0
   139
sl@0
   140
@publishedPartner
sl@0
   141
@prototype
sl@0
   142
*/
sl@0
   143
NONSHARABLE_CLASS(TPacketResults)
sl@0
   144
	{
sl@0
   145
public:
sl@0
   146
	IMPORT_C TInt At(TInt aIndex) const;
sl@0
   147
	IMPORT_C TInt operator[](TInt aIndex) const;
sl@0
   148
	IMPORT_C TInt MaxNumPackets();
sl@0
   149
sl@0
   150
public:
sl@0
   151
	TPacketResults(TInt* aResPtr, TInt& aMaxNumPackets);
sl@0
   152
	
sl@0
   153
private:
sl@0
   154
	TInt* iResPtr;
sl@0
   155
	TInt& iMaxNumPackets;
sl@0
   156
	};
sl@0
   157
sl@0
   158
sl@0
   159
/**
sl@0
   160
Provides *SEQUENTIAL* access to the packet slots in an isochronous transfer descriptor.
sl@0
   161
As some HCs may pack the buffer space tightly, with one packet starting immediately after the preceeding one,
sl@0
   162
random access is not possible -- in this implementation, even replacing the content of a slot with another packet
sl@0
   163
of the same size is not 'intentionally' possible.
sl@0
   164
Note that reading data is possible in a random access manner -- the sequential constraint only applies to writing.
sl@0
   165
@publishedPartner Intended to be available to 3rd parties later
sl@0
   166
@prototype
sl@0
   167
*/
sl@0
   168
NONSHARABLE_CLASS(RUsbIsocTransferDescriptor) : public RUsbTransferDescriptor
sl@0
   169
	{
sl@0
   170
friend class RUsbTransferStrategy;
sl@0
   171
sl@0
   172
public:
sl@0
   173
    IMPORT_C RUsbIsocTransferDescriptor(TInt aMaxPacketSize, TInt aMaxNumPackets);
sl@0
   174
sl@0
   175
public:
sl@0
   176
	IMPORT_C void Reset();
sl@0
   177
	IMPORT_C TPacketLengths Lengths();
sl@0
   178
	IMPORT_C TPacketResults Results();
sl@0
   179
	IMPORT_C TInt MaxPacketSize();
sl@0
   180
sl@0
   181
public:		// Sending
sl@0
   182
	IMPORT_C TPtr8 WritablePackets(TInt aNumPacketsRequested, TInt& aMaxNumOfPacketsAbleToWrite);
sl@0
   183
	IMPORT_C void SaveMultiple(TInt aNumOfPackets);
sl@0
   184
sl@0
   185
public:		// Receiving
sl@0
   186
	IMPORT_C TPtrC8 Packets(TInt aFirstPacketIndex, TInt aNumPacketsRequested, TInt& aNumOfPacketsReturned) const;
sl@0
   187
	IMPORT_C void ReceivePackets(TInt aNumOfPackets);
sl@0
   188
sl@0
   189
private:
sl@0
   190
	/**
sl@0
   191
	The handle to represent the current point in writing an isoc. transfer.
sl@0
   192
	*/
sl@0
   193
	TInt iWriteHandle;
sl@0
   194
	};
sl@0
   195
sl@0
   196
sl@0
   197
/**
sl@0
   198
Provides buffer management for Bulk transfers
sl@0
   199
@publishedPartner Intended to be available to 3rd parties later
sl@0
   200
@prototype
sl@0
   201
*/
sl@0
   202
NONSHARABLE_CLASS(RUsbBulkTransferDescriptor) : public RUsbTransferDescriptor
sl@0
   203
	{
sl@0
   204
public:
sl@0
   205
	IMPORT_C RUsbBulkTransferDescriptor(TInt aMaxSize);
sl@0
   206
sl@0
   207
public:		// Setters
sl@0
   208
	IMPORT_C TPtr8 WritableBuffer();
sl@0
   209
	IMPORT_C void SaveData(TInt aLength);
sl@0
   210
	IMPORT_C void SetZlpStatus(TZlpStatus aZlpStatus);
sl@0
   211
sl@0
   212
public:		// Getters
sl@0
   213
	IMPORT_C TPtrC8 Buffer() const;
sl@0
   214
	};
sl@0
   215
sl@0
   216
sl@0
   217
sl@0
   218
/**
sl@0
   219
Provides buffer management for Interrupt transfers
sl@0
   220
@publishedPartner Intended to be available to 3rd parties later
sl@0
   221
@prototype
sl@0
   222
*/
sl@0
   223
NONSHARABLE_CLASS(RUsbIntrTransferDescriptor) : public RUsbTransferDescriptor
sl@0
   224
	{
sl@0
   225
public:
sl@0
   226
	IMPORT_C RUsbIntrTransferDescriptor(TInt aMaxSize);
sl@0
   227
sl@0
   228
public:		// Setters
sl@0
   229
	IMPORT_C TPtr8 WritableBuffer();
sl@0
   230
	IMPORT_C void SaveData(TInt aLength);
sl@0
   231
	IMPORT_C void SetZlpStatus(TZlpStatus aZlpStatus);
sl@0
   232
sl@0
   233
public:		// Getters
sl@0
   234
	IMPORT_C TPtrC8 Buffer() const;
sl@0
   235
	};
sl@0
   236
sl@0
   237
#endif // __KERNEL_MODE__
sl@0
   238
sl@0
   239
#endif	// __D32USBTRANSFERS_H