os/kernelhwsrv/kernel/eka/include/usb.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) 2002-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\usb.h
sl@0
    15
// Definitions of USB-specific constants and macros.
sl@0
    16
// 
sl@0
    17
//
sl@0
    18
sl@0
    19
/**
sl@0
    20
 @file usb.h
sl@0
    21
 @publishedPartner
sl@0
    22
 @released
sl@0
    23
*/
sl@0
    24
sl@0
    25
#ifndef __USB_H__
sl@0
    26
#define __USB_H__
sl@0
    27
sl@0
    28
//
sl@0
    29
// 'Chapter 9' Request Types (bmRequestType)
sl@0
    30
//
sl@0
    31
const TUint8 KUsbRequestType_DirShift   = 7;
sl@0
    32
const TUint8 KUsbRequestType_DirMask    = (1 << KUsbRequestType_DirShift);
sl@0
    33
sl@0
    34
const TUint8 KUsbRequestType_DirToDev   = (0 << KUsbRequestType_DirShift);
sl@0
    35
const TUint8 KUsbRequestType_DirToHost  = (1 << KUsbRequestType_DirShift);
sl@0
    36
sl@0
    37
const TUint8 KUsbRequestType_TypeShift  = 5;
sl@0
    38
const TUint8 KUsbRequestType_TypeMask   = (3 << KUsbRequestType_TypeShift);
sl@0
    39
const TUint8 KUsbRequestType_TypeStd    = (0 << KUsbRequestType_TypeShift);
sl@0
    40
const TUint8 KUsbRequestType_TypeClass  = (1 << KUsbRequestType_TypeShift);
sl@0
    41
const TUint8 KUsbRequestType_TypeVendor = (2 << KUsbRequestType_TypeShift);
sl@0
    42
sl@0
    43
const TUint8 KUsbRequestType_DestShift  = 0;
sl@0
    44
const TUint8 KUsbRequestType_DestMask   = (0x1f << KUsbRequestType_DestShift);
sl@0
    45
const TUint8 KUsbRequestType_DestDevice = (0x00 << KUsbRequestType_DestShift);
sl@0
    46
const TUint8 KUsbRequestType_DestIfc    = (0x01 << KUsbRequestType_DestShift);
sl@0
    47
const TUint8 KUsbRequestType_DestEp     = (0x02 << KUsbRequestType_DestShift);
sl@0
    48
const TUint8 KUsbRequestType_DestOther  = (0x03 << KUsbRequestType_DestShift);
sl@0
    49
sl@0
    50
//
sl@0
    51
// 'Chapter 9' Endpoint Zero Requests (bRequest)
sl@0
    52
//
sl@0
    53
const TUint8 KUsbRequest_GetStatus     = 0;
sl@0
    54
const TUint8 KUsbRequest_ClearFeature  = 1;
sl@0
    55
const TUint8 KUsbRequest_SetFeature    = 3;
sl@0
    56
const TUint8 KUsbRequest_SetAddress    = 5;
sl@0
    57
const TUint8 KUsbRequest_GetDescriptor = 6;
sl@0
    58
const TUint8 KUsbRequest_SetDescriptor = 7;
sl@0
    59
const TUint8 KUsbRequest_GetConfig     = 8;
sl@0
    60
const TUint8 KUsbRequest_SetConfig     = 9;
sl@0
    61
const TUint8 KUsbRequest_GetInterface  = 10;
sl@0
    62
const TUint8 KUsbRequest_SetInterface  = 11;
sl@0
    63
const TUint8 KUsbRequest_SynchFrame    = 12;
sl@0
    64
sl@0
    65
//
sl@0
    66
// Descriptor Types
sl@0
    67
//
sl@0
    68
const TUint8 KUsbDescType_Device               = 1;
sl@0
    69
const TUint8 KUsbDescType_Config               = 2;
sl@0
    70
const TUint8 KUsbDescType_String               = 3;
sl@0
    71
const TUint8 KUsbDescType_Interface            = 4;
sl@0
    72
const TUint8 KUsbDescType_Endpoint             = 5;
sl@0
    73
const TUint8 KUsbDescType_DeviceQualifier      = 6;
sl@0
    74
const TUint8 KUsbDescType_OtherSpeedConfig     = 7;
sl@0
    75
const TUint8 KUsbDescType_InterfacePower       = 8;
sl@0
    76
const TUint8 KUsbDescType_Otg                  = 9;
sl@0
    77
const TUint8 KUsbDescType_Debug                = 10;
sl@0
    78
const TUint8 KUsbDescType_InterfaceAssociation = 11;
sl@0
    79
sl@0
    80
//
sl@0
    81
// Descriptor Sizes
sl@0
    82
//
sl@0
    83
const TUint KUsbDescSize_Device               = 18;
sl@0
    84
const TUint KUsbDescSize_Config               = 9;
sl@0
    85
const TUint KUsbDescSize_Interface            = 9;
sl@0
    86
const TUint KUsbDescSize_Endpoint             = 7;
sl@0
    87
const TUint KUsbDescSize_Otg                  = 3;
sl@0
    88
const TUint KUsbDescSize_DeviceQualifier      = 10;
sl@0
    89
const TUint KUsbDescSize_OtherSpeedConfig     = 9;
sl@0
    90
const TUint KUsbDescSize_InterfaceAssociation = 8;
sl@0
    91
const TUint KUsbDescMaxSize_String            = 255;
sl@0
    92
const TUint KUsbStringDescStringMaxSize       = 252;		// it's actually 253, but that's awkward
sl@0
    93
sl@0
    94
//
sl@0
    95
// Configuration Characteristics (Configuration Descriptor)
sl@0
    96
//
sl@0
    97
const TUint8 KUsbDevAttr_SelfPowered  = (0x01 << 6);
sl@0
    98
const TUint8 KUsbDevAttr_RemoteWakeup = (0x01 << 5);
sl@0
    99
sl@0
   100
//
sl@0
   101
// Descriptor Indices for String Descriptors
sl@0
   102
//
sl@0
   103
const TUint KUsbDescStringIndex_Manufact = 14;
sl@0
   104
const TUint KUsbDescStringIndex_Product  = 15;
sl@0
   105
const TUint KUsbDescStringIndex_Serial   = 16;
sl@0
   106
const TUint KUsbDescStringIndex_Config   = 6;
sl@0
   107
sl@0
   108
//
sl@0
   109
// Endpoint Attributes
sl@0
   110
//
sl@0
   111
const TUint8 KUsbEpAttr_TransferTypeShift       = 0;
sl@0
   112
const TUint8 KUsbEpAttr_TransferTypeMask        = (0x03 << KUsbEpAttr_TransferTypeShift);
sl@0
   113
const TUint8 KUsbEpAttr_TransferTypeControl     = (0x00 << KUsbEpAttr_TransferTypeShift);
sl@0
   114
const TUint8 KUsbEpAttr_TransferTypeIsochronous = (0x01 << KUsbEpAttr_TransferTypeShift);
sl@0
   115
const TUint8 KUsbEpAttr_TransferTypeBulk        = (0x02 << KUsbEpAttr_TransferTypeShift);
sl@0
   116
const TUint8 KUsbEpAttr_TransferTypeInterrupt   = (0x03 << KUsbEpAttr_TransferTypeShift);
sl@0
   117
sl@0
   118
const TUint8 KUsbEpAttr_SyncTypeShift           = 2;
sl@0
   119
const TUint8 KUsbEpAttr_SyncTypeMask            = (0x03 << KUsbEpAttr_SyncTypeShift);
sl@0
   120
const TUint8 KUsbEpAttr_SyncTypeNoSync          = (0x00 << KUsbEpAttr_SyncTypeShift);
sl@0
   121
const TUint8 KUsbEpAttr_SyncTypeAsync           = (0x01 << KUsbEpAttr_SyncTypeShift);
sl@0
   122
const TUint8 KUsbEpAttr_SyncTypeAdaptive        = (0x02 << KUsbEpAttr_SyncTypeShift);
sl@0
   123
const TUint8 KUsbEpAttr_SyncTypeSync            = (0x03 << KUsbEpAttr_SyncTypeShift);
sl@0
   124
sl@0
   125
const TUint8 KUsbEpAttr_UsageTypeShift          = 4;
sl@0
   126
const TUint8 KUsbEpAttr_UsageTypeMask           = (0x03 << KUsbEpAttr_UsageTypeShift);
sl@0
   127
const TUint8 KUsbEpAttr_UsageTypeDataEp         = (0x00 << KUsbEpAttr_UsageTypeShift);
sl@0
   128
const TUint8 KUsbEpAttr_UsageTypeFeedbackEp     = (0x01 << KUsbEpAttr_UsageTypeShift);
sl@0
   129
const TUint8 KUsbEpAttr_UsageTypeImplFbDataEp   = (0x02 << KUsbEpAttr_UsageTypeShift);
sl@0
   130
const TUint8 KUsbEpAttr_UsageTypeReserved       = (0x03 << KUsbEpAttr_UsageTypeShift);
sl@0
   131
sl@0
   132
//
sl@0
   133
// OTG Feature Indicators
sl@0
   134
//
sl@0
   135
const TUint8 KUsbOtgAttr_SrpSupp         = 0x01;
sl@0
   136
const TUint8 KUsbOtgAttr_HnpSupp         = 0x02;
sl@0
   137
const TUint8 KUsbOtgAttr_B_HnpEnable     = 0x04;
sl@0
   138
const TUint8 KUsbOtgAttr_A_HnpSupport    = 0x08;
sl@0
   139
const TUint8 KUsbOtgAttr_A_AltHnpSupport = 0x10;
sl@0
   140
sl@0
   141
//
sl@0
   142
// Feature Settings
sl@0
   143
//
sl@0
   144
const TUint KUsbFeature_EndpointHalt    = 0;
sl@0
   145
const TUint KUsbFeature_RemoteWakeup    = 1;
sl@0
   146
const TUint KUsbFeature_TestMode        = 2;
sl@0
   147
const TUint KUsbFeature_B_HnpEnable     = 3;
sl@0
   148
const TUint KUsbFeature_A_HnpSupport    = 4;
sl@0
   149
const TUint KUsbFeature_A_AltHnpSupport = 5;
sl@0
   150
sl@0
   151
//
sl@0
   152
// Test Mode Selectors (Set/ClearFeature)
sl@0
   153
//
sl@0
   154
const TUint KUsbTestSelector_Test_J            = 0x01;
sl@0
   155
const TUint KUsbTestSelector_Test_K            = 0x02;
sl@0
   156
const TUint KUsbTestSelector_Test_SE0_NAK      = 0x03;
sl@0
   157
const TUint KUsbTestSelector_Test_Packet       = 0x04;
sl@0
   158
const TUint KUsbTestSelector_Test_Force_Enable = 0x05;
sl@0
   159
sl@0
   160
//
sl@0
   161
// Address Masks
sl@0
   162
//
sl@0
   163
const TUint8 KUsbEpAddress_In       = 0x80;
sl@0
   164
const TUint8 KUsbEpAddress_Portmask = 0x0f;
sl@0
   165
sl@0
   166
//
sl@0
   167
// Device Status Values (GET_STATUS)
sl@0
   168
//
sl@0
   169
const TUint16 KUsbDevStat_SelfPowered  = (1 << 0);
sl@0
   170
const TUint16 KUsbDevStat_RemoteWakeup = (1 << 1);
sl@0
   171
sl@0
   172
//
sl@0
   173
// Endpoint Status Values (GET_STATUS)
sl@0
   174
//
sl@0
   175
const TUint16 KUsbEpStat_Halt = (1 << 0);
sl@0
   176
sl@0
   177
sl@0
   178
//
sl@0
   179
// USB Descriptor Handling
sl@0
   180
//
sl@0
   181
/*------------------------------------------------
sl@0
   182
  USB transfers data in little-endian fashion.
sl@0
   183
  The following macros swap the byte order in
sl@0
   184
  words (16 bit) and longwords (32 bit), such that
sl@0
   185
  they are in little-endian order afterwards.
sl@0
   186
  ------------------------------------------------*/
sl@0
   187
#if defined(__BIG_ENDIAN__)		  // Hitachi SuperH, Motorola 68k
sl@0
   188
#define SWAP_BYTES_16(x) \
sl@0
   189
  ((((x) >> 8) & 0x00ff) | \
sl@0
   190
   (((x) << 8) & 0xff00))
sl@0
   191
#define SWAP_BYTES_32(x) \
sl@0
   192
  ((((x) >> 24) & 0x000000ff) | \
sl@0
   193
   (((x) >> 8)  & 0x0000ff00) | \
sl@0
   194
   (((x) << 24) & 0xff000000) | \
sl@0
   195
   (((x) << 8)  & 0x00ff0000))
sl@0
   196
#else							  // ARM, Intel
sl@0
   197
#define SWAP_BYTES_16(x)  (x)
sl@0
   198
#define SWAP_BYTES_32(x)  (x)
sl@0
   199
#endif // defined(__BIG_ENDIAN__)
sl@0
   200
sl@0
   201
sl@0
   202
static inline TUint8 LowByte(TUint16 aWord)
sl@0
   203
	{
sl@0
   204
	return static_cast<TUint8>(aWord & 0x00ff);
sl@0
   205
	}
sl@0
   206
sl@0
   207
static inline TUint8 HighByte(TUint16 aWord)
sl@0
   208
	{
sl@0
   209
	return static_cast<TUint8>((aWord >> 8) & 0x00ff);
sl@0
   210
	}
sl@0
   211
sl@0
   212
sl@0
   213
//
sl@0
   214
// Class-specific Values
sl@0
   215
//
sl@0
   216
sl@0
   217
// These are from the CDC (valid also for Audio Class)
sl@0
   218
const TUint8 KUsbDescType_CS_Interface = 0x24;
sl@0
   219
const TUint8 KUsbDescType_CS_Endpoint  = 0x25;
sl@0
   220
sl@0
   221
// Audio Device Class
sl@0
   222
const TUint KUsbDescSize_AudioEndpoint = KUsbDescSize_Endpoint + 2;
sl@0
   223
const TUint KUsbAudioInterfaceClassCode                          = 0x01;
sl@0
   224
const TUint KUsbAudioInterfaceSubclassCode_Subclass_Undefined    = 0x00;
sl@0
   225
const TUint KUsbAudioInterfaceSubclassCode_Audiocontrol          = 0x01;
sl@0
   226
const TUint KUsbAudioInterfaceSubclassCode_Audiostreaming        = 0x02;
sl@0
   227
const TUint KUsbAudioInterfaceSubclassCode_Midistreaming         = 0x03;
sl@0
   228
const TUint KUsbAudioInterfaceProtocolCode_Pr_Protocol_Undefined = 0x00;
sl@0
   229
sl@0
   230
sl@0
   231
//
sl@0
   232
// These are defined just for convenience:
sl@0
   233
//
sl@0
   234
const TUint8 KEp0_Out = 0;
sl@0
   235
const TUint8 KEp0_In  = 1;
sl@0
   236
const TUint8 KEp0_Rx  = KEp0_Out;
sl@0
   237
const TUint8 KEp0_Tx  = KEp0_In;
sl@0
   238
sl@0
   239
sl@0
   240
//
sl@0
   241
// USB Implementers Forum, Inc (USB-IF) assigned Vendor IDs:
sl@0
   242
//
sl@0
   243
const TUint16 KUsbVendorId_Symbian = 0x0E22;				// Symbian Ltd. (dec. 3618)
sl@0
   244
sl@0
   245
sl@0
   246
#endif // __USB_H__