os/kernelhwsrv/kernel/eka/include/d32usbdi_hubdriver.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 D32USBDI_HUBDRIVER_H
sl@0
    17
#define D32USBDI_HUBDRIVER_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
#include <d32usbdescriptors.h>
sl@0
    24
#include <e32debug.h>
sl@0
    25
#endif
sl@0
    26
sl@0
    27
#include <e32ver.h>
sl@0
    28
#include <d32usbdi_errors.h>
sl@0
    29
sl@0
    30
/**
sl@0
    31
@file
sl@0
    32
@internalComponent
sl@0
    33
@prototype
sl@0
    34
*/
sl@0
    35
sl@0
    36
/*****************************************************************************/
sl@0
    37
/*                                                                           */
sl@0
    38
/* Interface classes                                                         */
sl@0
    39
/*                                                                           */
sl@0
    40
/*****************************************************************************/
sl@0
    41
sl@0
    42
class RUsbDevice;
sl@0
    43
sl@0
    44
/**
sl@0
    45
Functions which act on the local hub driver.  Higher level components cannot determine which host controller is in
sl@0
    46
 use, although the presence of Other Speed descriptors may give some hints.
sl@0
    47
sl@0
    48
@note This API is only available to the function driver framework, a restriction which is enforced by checking the
sl@0
    49
SID of the calling process.
sl@0
    50
*/
sl@0
    51
class RUsbHubDriver : public RBusLogicalChannel
sl@0
    52
	{
sl@0
    53
public:
sl@0
    54
	enum TUsbHubDriverRequest
sl@0
    55
		{
sl@0
    56
		EWaitForBusEvent,
sl@0
    57
		};
sl@0
    58
	enum TUsbHubDriverControl
sl@0
    59
		{
sl@0
    60
		EStartHost,
sl@0
    61
		EStopHost,
sl@0
    62
		};
sl@0
    63
 	enum TUsbHubDriverCancel
sl@0
    64
		{
sl@0
    65
		ECancelWaitForBusEvent	= 0x00000001,
sl@0
    66
		};
sl@0
    67
sl@0
    68
	class TBusEvent
sl@0
    69
		{
sl@0
    70
	public:
sl@0
    71
		enum TEvent
sl@0
    72
			{
sl@0
    73
			ENoEvent,
sl@0
    74
			EDeviceAttached,
sl@0
    75
			EDeviceRemoved,
sl@0
    76
			EDevMonEvent
sl@0
    77
			};
sl@0
    78
sl@0
    79
	public:
sl@0
    80
		TEvent	iEventType;
sl@0
    81
		TUint	iDeviceHandle;
sl@0
    82
		TInt	iError;
sl@0
    83
		TInt	iReason;		// When iEventType == EDevMonEvent, this may hold additional details of the reason for the notification
sl@0
    84
		};
sl@0
    85
sl@0
    86
#ifndef __KERNEL_MODE__
sl@0
    87
friend class RUsbDevice;
sl@0
    88
public:
sl@0
    89
	inline TInt Open();
sl@0
    90
	inline TInt StartHost();
sl@0
    91
	inline void StopHost();
sl@0
    92
sl@0
    93
	inline void WaitForBusEvent(TBusEvent& aEvent, TRequestStatus& aRequest);
sl@0
    94
	inline void CancelWaitForBusEvent();
sl@0
    95
sl@0
    96
#endif
sl@0
    97
sl@0
    98
	inline static const TDesC& Name();
sl@0
    99
	inline static TVersion VersionRequired();
sl@0
   100
	};
sl@0
   101
sl@0
   102
sl@0
   103
/**
sl@0
   104
Use restricted to the Function Driver Framework, enforced by SID.
sl@0
   105
Provides a means to examine the configuration descriptor, and so load appropriate Function Drivers.
sl@0
   106
*/
sl@0
   107
class RUsbDevice
sl@0
   108
	{
sl@0
   109
public:
sl@0
   110
	enum TUsbDeviceRequest
sl@0
   111
		{
sl@0
   112
		EDeviceRequest		= 0x4000000,   // start at 0x4000000 to differentiate from other requests
sl@0
   113
		EDeviceStateChange,
sl@0
   114
		};
sl@0
   115
	enum TUsbDeviceControl
sl@0
   116
		{
sl@0
   117
		EDeviceControl		= 0x4000000,   // start at 0x4000000 to differentiate from other controls
sl@0
   118
		EOpen,
sl@0
   119
		EClose,
sl@0
   120
		EGetDeviceDescriptor,
sl@0
   121
		EGetConfigurationDescriptorSize,
sl@0
   122
		EGetConfigurationDescriptor,
sl@0
   123
		EGetStringDescriptor,
sl@0
   124
		EGetInterfaceToken,
sl@0
   125
		ESuspend,
sl@0
   126
		EResume,
sl@0
   127
		ECancelDeviceStateChange,
sl@0
   128
		};
sl@0
   129
sl@0
   130
	enum TDeviceState
sl@0
   131
		{
sl@0
   132
		EDeviceActive,
sl@0
   133
		EDeviceSuspended,
sl@0
   134
		EDeviceTriState,
sl@0
   135
		};
sl@0
   136
	
sl@0
   137
	class TInterfaceTokenParameters
sl@0
   138
		{
sl@0
   139
	public:
sl@0
   140
		TInt		iInterfaceNumber;
sl@0
   141
		TUint32*	iToken;
sl@0
   142
		};
sl@0
   143
	
sl@0
   144
	class TStringDescParams
sl@0
   145
		{
sl@0
   146
	public:
sl@0
   147
		TDes8*		iTarget;
sl@0
   148
		TInt		iIndex;
sl@0
   149
		TInt		iLangId;
sl@0
   150
		};
sl@0
   151
sl@0
   152
#ifndef __KERNEL_MODE__
sl@0
   153
public:
sl@0
   154
	inline RUsbDevice();
sl@0
   155
sl@0
   156
	inline TInt Open(RUsbHubDriver& aHub, TUint aHandle);
sl@0
   157
	inline void Close();
sl@0
   158
	
sl@0
   159
	inline void QueueDeviceStateChangeNotification(TDeviceState& aCurrentState, TRequestStatus& aRequest);
sl@0
   160
	inline void CancelDeviceStateChangeNotification();
sl@0
   161
	inline TUint Handle() const;
sl@0
   162
	inline TInt GetTokenForInterface(TInt aInterfaceNumber, TUint32& aToken);
sl@0
   163
sl@0
   164
	inline TInt Suspend();
sl@0
   165
	inline TInt Resume();
sl@0
   166
sl@0
   167
	inline TInt GetDeviceDescriptor(TUsbDeviceDescriptor& aDescriptor);
sl@0
   168
	inline TInt GetConfigurationDescriptor(TUsbConfigurationDescriptor& aDescriptor);
sl@0
   169
	inline TInt GetStringDescriptor(TUsbStringDescriptor*& aDescriptor, TDes8& aTarget, TInt aIndex);
sl@0
   170
	inline TInt GetStringDescriptor(TUsbStringDescriptor*& aDescriptor, TDes8& aTarget, TInt aIndex, TInt aLangId);
sl@0
   171
	
sl@0
   172
private:		// Internal function overloads
sl@0
   173
	inline TInt GetDeviceDescriptor(TDes8& aDeviceDesc);
sl@0
   174
	inline TInt GetConfigurationDescriptorSize(TInt& aConfigDescSize);
sl@0
   175
	inline TInt GetConfigurationDescriptor(TDes8& aConfigDesc);
sl@0
   176
	inline TInt GetStringDescriptor(TDes8& aStringDescriptor, TInt aIndex, TInt aLangId =0);
sl@0
   177
	
sl@0
   178
private:
sl@0
   179
	inline void GetLocalDescriptorsL();
sl@0
   180
	inline TInt ParseStringDescriptor(TUsbStringDescriptor*& aDescriptor, const TDesC8& aData);
sl@0
   181
sl@0
   182
private:
sl@0
   183
	TUsbDeviceDescriptor* iHeadDeviceDescriptor;
sl@0
   184
	TUsbConfigurationDescriptor* iHeadConfDescriptor;
sl@0
   185
sl@0
   186
	static const TUint KDeviceDescriptorSize = 18;
sl@0
   187
	TBuf8<KDeviceDescriptorSize> iDeviceDescriptorData;
sl@0
   188
	HBufC8* iConfigurationDescriptorData;
sl@0
   189
sl@0
   190
private:
sl@0
   191
	RUsbHubDriver* iHub;
sl@0
   192
	TUint iHandle;
sl@0
   193
sl@0
   194
#endif
sl@0
   195
	};
sl@0
   196
sl@0
   197
sl@0
   198
#include <d32usbdi_hubdriver.inl>
sl@0
   199
sl@0
   200
sl@0
   201
#endif	// D32USBDI_HUBDRIVER_H