First public contribution.
1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of the License "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #ifndef D32USBDI_HUBDRIVER_H
17 #define D32USBDI_HUBDRIVER_H
19 #ifdef __KERNEL_MODE__
20 #include <kernel/klib.h>
23 #include <d32usbdescriptors.h>
28 #include <d32usbdi_errors.h>
36 /*****************************************************************************/
38 /* Interface classes */
40 /*****************************************************************************/
45 Functions which act on the local hub driver. Higher level components cannot determine which host controller is in
46 use, although the presence of Other Speed descriptors may give some hints.
48 @note This API is only available to the function driver framework, a restriction which is enforced by checking the
49 SID of the calling process.
51 class RUsbHubDriver : public RBusLogicalChannel
54 enum TUsbHubDriverRequest
58 enum TUsbHubDriverControl
63 enum TUsbHubDriverCancel
65 ECancelWaitForBusEvent = 0x00000001,
83 TInt iReason; // When iEventType == EDevMonEvent, this may hold additional details of the reason for the notification
86 #ifndef __KERNEL_MODE__
87 friend class RUsbDevice;
90 inline TInt StartHost();
91 inline void StopHost();
93 inline void WaitForBusEvent(TBusEvent& aEvent, TRequestStatus& aRequest);
94 inline void CancelWaitForBusEvent();
98 inline static const TDesC& Name();
99 inline static TVersion VersionRequired();
104 Use restricted to the Function Driver Framework, enforced by SID.
105 Provides a means to examine the configuration descriptor, and so load appropriate Function Drivers.
110 enum TUsbDeviceRequest
112 EDeviceRequest = 0x4000000, // start at 0x4000000 to differentiate from other requests
115 enum TUsbDeviceControl
117 EDeviceControl = 0x4000000, // start at 0x4000000 to differentiate from other controls
120 EGetDeviceDescriptor,
121 EGetConfigurationDescriptorSize,
122 EGetConfigurationDescriptor,
123 EGetStringDescriptor,
127 ECancelDeviceStateChange,
137 class TInterfaceTokenParameters
140 TInt iInterfaceNumber;
144 class TStringDescParams
152 #ifndef __KERNEL_MODE__
156 inline TInt Open(RUsbHubDriver& aHub, TUint aHandle);
159 inline void QueueDeviceStateChangeNotification(TDeviceState& aCurrentState, TRequestStatus& aRequest);
160 inline void CancelDeviceStateChangeNotification();
161 inline TUint Handle() const;
162 inline TInt GetTokenForInterface(TInt aInterfaceNumber, TUint32& aToken);
164 inline TInt Suspend();
165 inline TInt Resume();
167 inline TInt GetDeviceDescriptor(TUsbDeviceDescriptor& aDescriptor);
168 inline TInt GetConfigurationDescriptor(TUsbConfigurationDescriptor& aDescriptor);
169 inline TInt GetStringDescriptor(TUsbStringDescriptor*& aDescriptor, TDes8& aTarget, TInt aIndex);
170 inline TInt GetStringDescriptor(TUsbStringDescriptor*& aDescriptor, TDes8& aTarget, TInt aIndex, TInt aLangId);
172 private: // Internal function overloads
173 inline TInt GetDeviceDescriptor(TDes8& aDeviceDesc);
174 inline TInt GetConfigurationDescriptorSize(TInt& aConfigDescSize);
175 inline TInt GetConfigurationDescriptor(TDes8& aConfigDesc);
176 inline TInt GetStringDescriptor(TDes8& aStringDescriptor, TInt aIndex, TInt aLangId =0);
179 inline void GetLocalDescriptorsL();
180 inline TInt ParseStringDescriptor(TUsbStringDescriptor*& aDescriptor, const TDesC8& aData);
183 TUsbDeviceDescriptor* iHeadDeviceDescriptor;
184 TUsbConfigurationDescriptor* iHeadConfDescriptor;
186 static const TUint KDeviceDescriptorSize = 18;
187 TBuf8<KDeviceDescriptorSize> iDeviceDescriptorData;
188 HBufC8* iConfigurationDescriptorData;
198 #include <d32usbdi_hubdriver.inl>
201 #endif // D32USBDI_HUBDRIVER_H