os/kernelhwsrv/kernel/eka/include/d32usbcshared.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) 2008-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
// e32/include/d32usbcshared.h
sl@0
    15
// User side class definitions for USB Device support.
sl@0
    16
// 
sl@0
    17
//
sl@0
    18
sl@0
    19
/**
sl@0
    20
 @file d32usbcshared.h
sl@0
    21
 @publishedPartner
sl@0
    22
 @released
sl@0
    23
*/
sl@0
    24
sl@0
    25
#ifndef __D32USBCSHARED_H__
sl@0
    26
#define __D32USBCSHARED_H__
sl@0
    27
sl@0
    28
// USB driver error codes
sl@0
    29
sl@0
    30
/** USB driver specific error codes start from here
sl@0
    31
*/
sl@0
    32
const TInt KErrUsbDriverBase = -6701;
sl@0
    33
sl@0
    34
/**	Attempt at data transfer, or something interface related,
sl@0
    35
	when neither an Interface has been set up nor Device Control is owned by
sl@0
    36
	the channel
sl@0
    37
*/
sl@0
    38
const TInt KErrUsbInterfaceNotReady = -6702;
sl@0
    39
sl@0
    40
/**	Attempt at data transfer on an endpoint that does not belong to the active interface
sl@0
    41
*/
sl@0
    42
const TInt KErrUsbEpNotInInterface = -6703;
sl@0
    43
sl@0
    44
/**	Attempt at data transfer in a direction not supported by the endpoint
sl@0
    45
*/
sl@0
    46
const TInt KErrUsbEpBadDirection = -6704;
sl@0
    47
sl@0
    48
/**	The data transfer size specified exceeds that of the source or
sl@0
    49
	destination buffer descriptor
sl@0
    50
*/
sl@0
    51
const TInt KErrUsbTransferSize = -6705;
sl@0
    52
sl@0
    53
/**	This has multiple uses:
sl@0
    54
	1) User request completed because device is no longer in configured state
sl@0
    55
	2) Something endpoint related, stall, unstall, status enquiry etc,
sl@0
    56
	   that requires the device to be configured
sl@0
    57
*/
sl@0
    58
const TInt KErrUsbDeviceNotConfigured = -6706;
sl@0
    59
sl@0
    60
/**	Requested endpoint properties inconsistent during Interface setup
sl@0
    61
*/
sl@0
    62
const TInt KErrUsbBadEndpoint = -6707;
sl@0
    63
sl@0
    64
/**	User data request completed because channel is closing (channel destructor called)
sl@0
    65
*/
sl@0
    66
const TInt KErrUsbDeviceClosing = -6708;
sl@0
    67
sl@0
    68
/**	User data request completed because current endpoint set is being
sl@0
    69
	replaced since alternate setting is changing
sl@0
    70
*/
sl@0
    71
const TInt KErrUsbInterfaceChange = -6709;
sl@0
    72
sl@0
    73
/**	User data request completed because cable has been detached (or equivalent)
sl@0
    74
*/
sl@0
    75
const TInt KErrUsbCableDetached = -6710;
sl@0
    76
sl@0
    77
/**	User data request completed because cable has been detached (or equivalent)
sl@0
    78
*/
sl@0
    79
const TInt KErrUsbDeviceBusReset = -6711;
sl@0
    80
sl@0
    81
/**	This means that read data is still available when a write request is made.
sl@0
    82
	Relates to bidirectional eps only (ep0).
sl@0
    83
	A bidirectional ep must consume all of its read data before attempting to write.
sl@0
    84
*/
sl@0
    85
const TInt KErrUsbEpNotReady = -6712;
sl@0
    86
sl@0
    87
/** These are states that are described in the USB standard.
sl@0
    88
sl@0
    89
	@see RDevUsbcClient::DeviceStatus()
sl@0
    90
	@see RDevUsbcClient::AlternateDeviceStatusNotify()
sl@0
    91
*/
sl@0
    92
enum TUsbcDeviceState
sl@0
    93
	{
sl@0
    94
	EUsbcDeviceStateUndefined,								// 0
sl@0
    95
	EUsbcDeviceStateAttached,								// 1
sl@0
    96
	EUsbcDeviceStatePowered,								// 2
sl@0
    97
	EUsbcDeviceStateDefault,								// 3
sl@0
    98
	EUsbcDeviceStateAddress,								// 4
sl@0
    99
	EUsbcDeviceStateConfigured,								// 5
sl@0
   100
	EUsbcDeviceStateSuspended,								// 6
sl@0
   101
 	EUsbcNoState = 0xff										// 255 (used as a place holder)
sl@0
   102
	};
sl@0
   103
sl@0
   104
/** The endpoint states.
sl@0
   105
sl@0
   106
	@see RDevUsbcClient::EndpointStatus()
sl@0
   107
	@see RDevUsbcClient::EndpointStatusNotify()
sl@0
   108
*/
sl@0
   109
enum TEndpointState
sl@0
   110
	{
sl@0
   111
	EEndpointStateNotStalled,
sl@0
   112
	EEndpointStateStalled,
sl@0
   113
	EEndpointStateUnknown
sl@0
   114
	};
sl@0
   115
sl@0
   116
/** Endpoint resources/behaviours.
sl@0
   117
sl@0
   118
	@see AllocateEndpointResource()
sl@0
   119
	@see DeAllocateEndpointResource()
sl@0
   120
	@see QueryEndpointResourceUse()
sl@0
   121
*/
sl@0
   122
enum TUsbcEndpointResource
sl@0
   123
	{
sl@0
   124
	/** Requests the use of DMA. */
sl@0
   125
	EUsbcEndpointResourceDMA = 0,
sl@0
   126
	/** Requests the use of double FIFO buffering. */
sl@0
   127
	EUsbcEndpointResourceDoubleBuffering = 1
sl@0
   128
	};
sl@0
   129
sl@0
   130
sl@0
   131
/** The USB client device capability class.
sl@0
   132
*/
sl@0
   133
class TCapsDevUsbc
sl@0
   134
	{
sl@0
   135
public:
sl@0
   136
	/** The device version. */
sl@0
   137
	TVersion version;
sl@0
   138
	};
sl@0
   139
sl@0
   140
sl@0
   141
/** The maximum number of endpoints supported by the device, excluding ep0.
sl@0
   142
*/
sl@0
   143
const TInt KUsbcMaxEndpoints = 30;
sl@0
   144
sl@0
   145
/** The maximum number of endpoints per interface, excluding ep0.
sl@0
   146
*/
sl@0
   147
const TInt KMaxEndpointsPerClient = 5;
sl@0
   148
sl@0
   149
/** @internalComponent
sl@0
   150
*/
sl@0
   151
const TInt KInvalidEndpointNumber = 31;
sl@0
   152
sl@0
   153
/** The alternate setting flag; when this bit is set the state change notified by
sl@0
   154
	RDevUsbcClient::AlternateDeviceStatusNotify() is an alternate setting number.
sl@0
   155
*/
sl@0
   156
const TUint KUsbAlternateSetting = 0x80000000;
sl@0
   157
sl@0
   158
/** The USB cable detection feature flag; used by TUsbDeviceCapsV01::iFeatureWord1.
sl@0
   159
	When this bit is set then the USB controller hardware (UDC) supports detection
sl@0
   160
	of a plugged-in USB cable even when not powered.
sl@0
   161
sl@0
   162
	@see TUsbDeviceCapsV01
sl@0
   163
*/
sl@0
   164
const TUint KUsbDevCapsFeatureWord1_CableDetectWithoutPower = 0x00000001;
sl@0
   165
sl@0
   166
/** If this flag is set then the driver supports the new endpoint resource
sl@0
   167
	allocation scheme for DMA and Double-buffering via
sl@0
   168
	TUsbcEndpointInfo::iFeatureWord1.
sl@0
   169
sl@0
   170
	@see TUsbDeviceCapsV01
sl@0
   171
*/
sl@0
   172
const TUint KUsbDevCapsFeatureWord1_EndpointResourceAllocV2 = 0x00000002;
sl@0
   173
sl@0
   174
sl@0
   175
/** Device USB capabilities.
sl@0
   176
*/
sl@0
   177
class TUsbDeviceCapsV01
sl@0
   178
	{
sl@0
   179
public:
sl@0
   180
	/** The total number of endpoints on the device. */
sl@0
   181
	TInt iTotalEndpoints;
sl@0
   182
	/** Indicates whether the device supports software connect/disconnect. */
sl@0
   183
	TBool iConnect;
sl@0
   184
	/** Indicates whether the device is self powered. */
sl@0
   185
	TBool iSelfPowered;
sl@0
   186
	/** Indicates whether the device can send Remote Wakeup. */
sl@0
   187
	TBool iRemoteWakeup;
sl@0
   188
	/** Indicates whether the device supports High-speed mode. */
sl@0
   189
	TBool iHighSpeed;
sl@0
   190
	/** 32 flag bits indicating miscellaneous UDC/device features.
sl@0
   191
		Currently defined are:
sl@0
   192
		- KUsbDevCapsFeatureWord1_CableDetectWithoutPower = 0x00000001
sl@0
   193
		- KUsbDevCapsFeatureWord1_EndpointResourceAllocV2 = 0x00000002
sl@0
   194
	*/
sl@0
   195
	TUint32 iFeatureWord1;
sl@0
   196
	/** Reserved for future use. */
sl@0
   197
	TUint32 iReserved;
sl@0
   198
	};
sl@0
   199
sl@0
   200
/** Package buffer for a TUsbDeviceCapsV01 object.
sl@0
   201
sl@0
   202
	@see TUsbDeviceCapsV01
sl@0
   203
*/
sl@0
   204
typedef TPckgBuf<TUsbDeviceCapsV01> TUsbDeviceCaps;
sl@0
   205
sl@0
   206
/** Bitmaps for TUsbcEndpointCaps.iSizes.
sl@0
   207
sl@0
   208
	This endpoint is not available (= no size).
sl@0
   209
*/
sl@0
   210
const TUint KUsbEpNotAvailable = 0x00000000;
sl@0
   211
/**	Max packet size is continuously variable up to some size specified.
sl@0
   212
	(Interrupt and Isochronous endpoints only.)
sl@0
   213
*/
sl@0
   214
const TUint KUsbEpSizeCont     = 0x00000001;
sl@0
   215
/** Max packet size 8 bytes is supported
sl@0
   216
*/
sl@0
   217
const TUint KUsbEpSize8        = 0x00000008;
sl@0
   218
/** Max packet size 16 bytes is supported
sl@0
   219
*/
sl@0
   220
const TUint KUsbEpSize16       = 0x00000010;
sl@0
   221
/** Max packet size 32 bytes is supported
sl@0
   222
*/
sl@0
   223
const TUint KUsbEpSize32       = 0x00000020;
sl@0
   224
/** Max packet size 64 bytes is supported
sl@0
   225
*/
sl@0
   226
const TUint KUsbEpSize64       = 0x00000040;
sl@0
   227
/** Max packet size 128 bytes is supported
sl@0
   228
*/
sl@0
   229
const TUint KUsbEpSize128      = 0x00000080;
sl@0
   230
/** Max packet size 256 bytes is supported
sl@0
   231
*/
sl@0
   232
const TUint KUsbEpSize256      = 0x00000100;
sl@0
   233
/** Max packet size 512 bytes is supported
sl@0
   234
*/
sl@0
   235
const TUint KUsbEpSize512      = 0x00000200;
sl@0
   236
/** Max packet size 1023 bytes is supported
sl@0
   237
*/
sl@0
   238
const TUint KUsbEpSize1023     = 0x00000400;
sl@0
   239
/** Max packet size 1024 bytes is supported
sl@0
   240
*/
sl@0
   241
const TUint KUsbEpSize1024     = 0x00000800;
sl@0
   242
sl@0
   243
sl@0
   244
/** Bitmaps for TUsbcEndpointCaps.iSupportedTypesAndDir.
sl@0
   245
sl@0
   246
	Endpoint supports Control transfer type.
sl@0
   247
*/
sl@0
   248
const TUint KUsbEpTypeControl     = 0x00000001;
sl@0
   249
/** Endpoint supports Isochronous transfer type.
sl@0
   250
*/
sl@0
   251
const TUint KUsbEpTypeIsochronous = 0x00000002;
sl@0
   252
/** Endpoint supports Bulk transfer type.
sl@0
   253
*/
sl@0
   254
const TUint KUsbEpTypeBulk        = 0x00000004;
sl@0
   255
/** Endpoint supports Interrupt transfer type.
sl@0
   256
*/
sl@0
   257
const TUint KUsbEpTypeInterrupt   = 0x00000008;
sl@0
   258
/** Endpoint supports IN transfers.
sl@0
   259
*/
sl@0
   260
const TUint KUsbEpDirIn           = 0x80000000;
sl@0
   261
/** Endpoint supports OUT transfers.
sl@0
   262
*/
sl@0
   263
const TUint KUsbEpDirOut          = 0x40000000;
sl@0
   264
/** Endpoint supports bidirectional (Control) transfers only.
sl@0
   265
*/
sl@0
   266
const TUint KUsbEpDirBidirect     = 0x20000000;
sl@0
   267
sl@0
   268
sl@0
   269
/** Converts an absolute size value into a KUsbEpSize... mask.
sl@0
   270
*/
sl@0
   271
static inline TUint PacketSize2Mask(TInt aSize);
sl@0
   272
sl@0
   273
/** Converts an endpoint type mask KUsbEpType...  into an endpoint attribute
sl@0
   274
	value KUsbEpAttr_....
sl@0
   275
*/
sl@0
   276
static inline TUint EpTypeMask2Value(TInt aType);
sl@0
   277
sl@0
   278
sl@0
   279
/** Endpoint capabilities as reported by the driver.
sl@0
   280
*/
sl@0
   281
class TUsbcEndpointCaps
sl@0
   282
	{
sl@0
   283
public:
sl@0
   284
	/** Returns the greatest available packet size for this endpoint. */
sl@0
   285
	TInt MaxPacketSize() const;
sl@0
   286
	/** Returns the smallest available packet size for this endpoint. */
sl@0
   287
	TInt MinPacketSize() const;
sl@0
   288
public:
sl@0
   289
	/** The supported maximum packet sizes. */
sl@0
   290
	TUint iSizes;
sl@0
   291
	/** The supported endpoint types and directions. */
sl@0
   292
	TUint iTypesAndDir;
sl@0
   293
	/** This is a 'high-speed, high bandwidth' endpoint. */
sl@0
   294
	TBool iHighBandwidth;
sl@0
   295
	/** Reserved for future use. */
sl@0
   296
	TUint32 iReserved[2];
sl@0
   297
	};
sl@0
   298
sl@0
   299
sl@0
   300
/** Endpoint capabilities as returned by RDevUsbcClient::EndpointCaps().
sl@0
   301
*/
sl@0
   302
class TUsbcEndpointData
sl@0
   303
	{
sl@0
   304
public:
sl@0
   305
	/** Detail of endpoint capabilities. */
sl@0
   306
	TUsbcEndpointCaps iCaps;
sl@0
   307
	/** Indicates whether this endpoint is already claimed. */
sl@0
   308
	TBool iInUse;
sl@0
   309
	};
sl@0
   310
sl@0
   311
/** The endpoint resource allocation flags;
sl@0
   312
	used by TUsbcEndpointInfo::iFeatureWord1.
sl@0
   313
sl@0
   314
	@see TUsbcEndpointInfo
sl@0
   315
*/
sl@0
   316
const TUint KUsbcEndpointInfoFeatureWord1_DMA             = 0x00000001;
sl@0
   317
const TUint KUsbcEndpointInfoFeatureWord1_DoubleBuffering = 0x00000002;
sl@0
   318
sl@0
   319
/** The desired endpoint capabilities used in RDevUsbcClient::SetInterface().
sl@0
   320
*/
sl@0
   321
class TUsbcEndpointInfo
sl@0
   322
	{
sl@0
   323
public:
sl@0
   324
	TUsbcEndpointInfo(TUint aType=KUsbEpTypeBulk, TUint aDir=KUsbEpDirOut,
sl@0
   325
					  TInt aSize=0, TInt aInterval=0, TInt aExtra=0);
sl@0
   326
	/** @internalComponent */
sl@0
   327
	TInt AdjustEpSizes(TInt& aEpSize_Fs, TInt& aEpSize_Hs) const;
sl@0
   328
	/** @internalComponent */
sl@0
   329
	TInt AdjustPollInterval();
sl@0
   330
public:
sl@0
   331
	/** Endpoint type (mask: KUsbEpTypeControl, etc., but used as value). */
sl@0
   332
	TUint iType;
sl@0
   333
	/** Direction (mask: KUsbEpDirIn, etc., but used as value). */
sl@0
   334
	TUint iDir;
sl@0
   335
	/** Maximum packet size (literal, no mask). */
sl@0
   336
	TInt iSize;
sl@0
   337
	/** Interval for polling full-speed interrupt and isochronous endpoints.
sl@0
   338
		Expressed either directly in milliseconds with a valid range 1..255
sl@0
   339
		(interrupt), or for use as 'value' in the expression interval=2^(value-1)
sl@0
   340
		with a valid range 1..16 (isochronous).
sl@0
   341
	*/
sl@0
   342
	TInt iInterval;
sl@0
   343
	/** Interval for polling high-speed interrupt and isochronous endpoints,
sl@0
   344
		or to specify the NAK rate for high-speed control and bulk OUT endpoints.
sl@0
   345
		Expressed either for use as 'value' in the expression interval=2^(value-1)
sl@0
   346
		with a valid range 1..16 (interrupt and isochronous), or directly as the
sl@0
   347
		maximum NAK rate with a valid range 0..255 (control and bulk).
sl@0
   348
	*/
sl@0
   349
	TInt iInterval_Hs;
sl@0
   350
	/** The number of additional transactions per uframe to be scheduled (0..2)
sl@0
   351
		(A value greater than zero is only valid for high-speed high bandwidth
sl@0
   352
		 interrupt and isochronous endpoints. Also note that there are endpoint size
sl@0
   353
		 restrictions associated with additional transactions - see 9.6.6.)
sl@0
   354
	*/
sl@0
   355
	TInt iTransactions;
sl@0
   356
	/** The number of extra bytes that the standard endpoint descriptor should be extended by.
sl@0
   357
		In almost all cases, this should be 0 (zero).
sl@0
   358
	*/
sl@0
   359
	TInt iExtra;
sl@0
   360
	/** 32 flag bits indicating miscellaneous endpoint features.
sl@0
   361
		Currently defined are:
sl@0
   362
		- KUsbcEndpointInfoFeatureWord1_DMA             = 0x00000001
sl@0
   363
		- KUsbcEndpointInfoFeatureWord1_DoubleBuffering = 0x00000002
sl@0
   364
	*/
sl@0
   365
	TUint32 iFeatureWord1;
sl@0
   366
	/** Reserved for future use. */
sl@0
   367
	TUint32 iReserved;
sl@0
   368
	};
sl@0
   369
sl@0
   370
/** USB Class information used in RDevUsbcClient::SetInterface().
sl@0
   371
*/
sl@0
   372
class TUsbcClassInfo
sl@0
   373
	{
sl@0
   374
public:
sl@0
   375
	TUsbcClassInfo(TInt aClass=0, TInt aSubClass=0, TInt aProtocol=0);
sl@0
   376
public:
sl@0
   377
	/** The class type number. */
sl@0
   378
	TInt iClassNum;
sl@0
   379
	/** The sub-class type number. */
sl@0
   380
	TInt iSubClassNum;
sl@0
   381
	/** The protocol number. */
sl@0
   382
	TInt iProtocolNum;
sl@0
   383
	/** Reserved for future use. */
sl@0
   384
	TUint32 iReserved;
sl@0
   385
	};
sl@0
   386
sl@0
   387
sl@0
   388
/** The Ep0 Setup request 'unsubscribe' flag; used by
sl@0
   389
	TUsbcInterfaceInfo::iFeatureWord. When this bit is set then valid vendor-
sl@0
   390
	or class-specific Ep0 requests addressed to this interface or any of its
sl@0
   391
	endpoints will be stalled by the USB PDD PIL.
sl@0
   392
sl@0
   393
	@see TUsbcInterfaceInfo
sl@0
   394
*/
sl@0
   395
const TUint KUsbcInterfaceInfo_NoEp0RequestsPlease = 0x00000001;
sl@0
   396
sl@0
   397
#include <d32usbcshared.inl>
sl@0
   398
sl@0
   399
#endif