1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/kernelhwsrv/kernel/eka/include/d32usbdi_hubdriver.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,201 @@
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 D32USBDI_HUBDRIVER_H
1.20 +#define D32USBDI_HUBDRIVER_H
1.21 +
1.22 +#ifdef __KERNEL_MODE__
1.23 +#include <kernel/klib.h>
1.24 +#else
1.25 +#include <e32base.h>
1.26 +#include <d32usbdescriptors.h>
1.27 +#include <e32debug.h>
1.28 +#endif
1.29 +
1.30 +#include <e32ver.h>
1.31 +#include <d32usbdi_errors.h>
1.32 +
1.33 +/**
1.34 +@file
1.35 +@internalComponent
1.36 +@prototype
1.37 +*/
1.38 +
1.39 +/*****************************************************************************/
1.40 +/* */
1.41 +/* Interface classes */
1.42 +/* */
1.43 +/*****************************************************************************/
1.44 +
1.45 +class RUsbDevice;
1.46 +
1.47 +/**
1.48 +Functions which act on the local hub driver. Higher level components cannot determine which host controller is in
1.49 + use, although the presence of Other Speed descriptors may give some hints.
1.50 +
1.51 +@note This API is only available to the function driver framework, a restriction which is enforced by checking the
1.52 +SID of the calling process.
1.53 +*/
1.54 +class RUsbHubDriver : public RBusLogicalChannel
1.55 + {
1.56 +public:
1.57 + enum TUsbHubDriverRequest
1.58 + {
1.59 + EWaitForBusEvent,
1.60 + };
1.61 + enum TUsbHubDriverControl
1.62 + {
1.63 + EStartHost,
1.64 + EStopHost,
1.65 + };
1.66 + enum TUsbHubDriverCancel
1.67 + {
1.68 + ECancelWaitForBusEvent = 0x00000001,
1.69 + };
1.70 +
1.71 + class TBusEvent
1.72 + {
1.73 + public:
1.74 + enum TEvent
1.75 + {
1.76 + ENoEvent,
1.77 + EDeviceAttached,
1.78 + EDeviceRemoved,
1.79 + EDevMonEvent
1.80 + };
1.81 +
1.82 + public:
1.83 + TEvent iEventType;
1.84 + TUint iDeviceHandle;
1.85 + TInt iError;
1.86 + TInt iReason; // When iEventType == EDevMonEvent, this may hold additional details of the reason for the notification
1.87 + };
1.88 +
1.89 +#ifndef __KERNEL_MODE__
1.90 +friend class RUsbDevice;
1.91 +public:
1.92 + inline TInt Open();
1.93 + inline TInt StartHost();
1.94 + inline void StopHost();
1.95 +
1.96 + inline void WaitForBusEvent(TBusEvent& aEvent, TRequestStatus& aRequest);
1.97 + inline void CancelWaitForBusEvent();
1.98 +
1.99 +#endif
1.100 +
1.101 + inline static const TDesC& Name();
1.102 + inline static TVersion VersionRequired();
1.103 + };
1.104 +
1.105 +
1.106 +/**
1.107 +Use restricted to the Function Driver Framework, enforced by SID.
1.108 +Provides a means to examine the configuration descriptor, and so load appropriate Function Drivers.
1.109 +*/
1.110 +class RUsbDevice
1.111 + {
1.112 +public:
1.113 + enum TUsbDeviceRequest
1.114 + {
1.115 + EDeviceRequest = 0x4000000, // start at 0x4000000 to differentiate from other requests
1.116 + EDeviceStateChange,
1.117 + };
1.118 + enum TUsbDeviceControl
1.119 + {
1.120 + EDeviceControl = 0x4000000, // start at 0x4000000 to differentiate from other controls
1.121 + EOpen,
1.122 + EClose,
1.123 + EGetDeviceDescriptor,
1.124 + EGetConfigurationDescriptorSize,
1.125 + EGetConfigurationDescriptor,
1.126 + EGetStringDescriptor,
1.127 + EGetInterfaceToken,
1.128 + ESuspend,
1.129 + EResume,
1.130 + ECancelDeviceStateChange,
1.131 + };
1.132 +
1.133 + enum TDeviceState
1.134 + {
1.135 + EDeviceActive,
1.136 + EDeviceSuspended,
1.137 + EDeviceTriState,
1.138 + };
1.139 +
1.140 + class TInterfaceTokenParameters
1.141 + {
1.142 + public:
1.143 + TInt iInterfaceNumber;
1.144 + TUint32* iToken;
1.145 + };
1.146 +
1.147 + class TStringDescParams
1.148 + {
1.149 + public:
1.150 + TDes8* iTarget;
1.151 + TInt iIndex;
1.152 + TInt iLangId;
1.153 + };
1.154 +
1.155 +#ifndef __KERNEL_MODE__
1.156 +public:
1.157 + inline RUsbDevice();
1.158 +
1.159 + inline TInt Open(RUsbHubDriver& aHub, TUint aHandle);
1.160 + inline void Close();
1.161 +
1.162 + inline void QueueDeviceStateChangeNotification(TDeviceState& aCurrentState, TRequestStatus& aRequest);
1.163 + inline void CancelDeviceStateChangeNotification();
1.164 + inline TUint Handle() const;
1.165 + inline TInt GetTokenForInterface(TInt aInterfaceNumber, TUint32& aToken);
1.166 +
1.167 + inline TInt Suspend();
1.168 + inline TInt Resume();
1.169 +
1.170 + inline TInt GetDeviceDescriptor(TUsbDeviceDescriptor& aDescriptor);
1.171 + inline TInt GetConfigurationDescriptor(TUsbConfigurationDescriptor& aDescriptor);
1.172 + inline TInt GetStringDescriptor(TUsbStringDescriptor*& aDescriptor, TDes8& aTarget, TInt aIndex);
1.173 + inline TInt GetStringDescriptor(TUsbStringDescriptor*& aDescriptor, TDes8& aTarget, TInt aIndex, TInt aLangId);
1.174 +
1.175 +private: // Internal function overloads
1.176 + inline TInt GetDeviceDescriptor(TDes8& aDeviceDesc);
1.177 + inline TInt GetConfigurationDescriptorSize(TInt& aConfigDescSize);
1.178 + inline TInt GetConfigurationDescriptor(TDes8& aConfigDesc);
1.179 + inline TInt GetStringDescriptor(TDes8& aStringDescriptor, TInt aIndex, TInt aLangId =0);
1.180 +
1.181 +private:
1.182 + inline void GetLocalDescriptorsL();
1.183 + inline TInt ParseStringDescriptor(TUsbStringDescriptor*& aDescriptor, const TDesC8& aData);
1.184 +
1.185 +private:
1.186 + TUsbDeviceDescriptor* iHeadDeviceDescriptor;
1.187 + TUsbConfigurationDescriptor* iHeadConfDescriptor;
1.188 +
1.189 + static const TUint KDeviceDescriptorSize = 18;
1.190 + TBuf8<KDeviceDescriptorSize> iDeviceDescriptorData;
1.191 + HBufC8* iConfigurationDescriptorData;
1.192 +
1.193 +private:
1.194 + RUsbHubDriver* iHub;
1.195 + TUint iHandle;
1.196 +
1.197 +#endif
1.198 + };
1.199 +
1.200 +
1.201 +#include <d32usbdi_hubdriver.inl>
1.202 +
1.203 +
1.204 +#endif // D32USBDI_HUBDRIVER_H