Update contrib.
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.
22 @return The name of the driver
26 inline const TDesC& RUsbHubDriver::Name()
28 _LIT(KDriverName,"USBHUBDRIVER");
35 @return The version number of the driver
37 inline TVersion RUsbHubDriver::VersionRequired()
39 const TInt KMajorVersionNumber=1;
40 const TInt KMinorVersionNumber=0;
41 const TInt KBuildVersionNumber=KE32BuildVersionNumber;
42 return TVersion(KMajorVersionNumber,KMinorVersionNumber,KBuildVersionNumber);
46 #ifndef __KERNEL_MODE__
49 Open a handle to the host controller.
50 @return System-wide error code giving status of connection attempt.
52 TInt RUsbHubDriver::Open()
56 // Check to see if this object has already been opened - if it has,
57 // there will be a handle set.
61 User::Panic(UsbdiPanics::KUsbHubDriverPanicCat, UsbdiPanics::EUsbHubDriverAlreadyOpened);
64 rc = DoCreate(Name(),VersionRequired(),KNullUnit,NULL,NULL,EOwnerThread);
68 RDebug::Print(_L("********************************"));
69 RDebug::Print(_L("* RUsbHubDriver::Open() Fault! *"));
70 RDebug::Print(_L("********************************"));
80 TInt RUsbHubDriver::StartHost()
82 return DoControl(EStartHost);
89 void RUsbHubDriver::StopHost()
96 Wait for a bus event. These include device attachments and detachments.
98 @param aEvent The details of the event that occured, filled in when the request completes.
99 @param aStatus Completed when an event occurs
101 void RUsbHubDriver::WaitForBusEvent(TBusEvent& aEvent, TRequestStatus& aStatus)
103 DoRequest(EWaitForBusEvent, aStatus, &aEvent);
108 Cancel a request to wait for bus events.
110 void RUsbHubDriver::CancelWaitForBusEvent()
112 DoCancel(ECancelWaitForBusEvent);
116 RUsbDevice::RUsbDevice()
117 : iHeadDeviceDescriptor(NULL)
118 , iHeadConfDescriptor(NULL)
119 , iConfigurationDescriptorData(NULL)
126 Open a handle to a device.
128 TInt RUsbDevice::Open(RUsbHubDriver& aHub, TUint aHandle)
136 err = aHub.DoControl(EOpen, (TAny*)aHandle);
149 TRAP(err, GetLocalDescriptorsL());
150 // GetLocalDescriptorsL should roll back iHandle etc on error.
151 __ASSERT_DEBUG(err == KErrNone || !iHandle, User::Panic(UsbdiPanics::KUsbHubDriverPanicCat, UsbdiPanics::EUsbHubDriverNoRollBackAfterFailedDeviceOpen));
156 void RUsbDevice::GetLocalDescriptorsL()
158 CleanupClosePushL(*this); // Ensure that we roll back to closed on error.
160 // Get Device Descriptor Data.
161 User::LeaveIfError(GetDeviceDescriptor(iDeviceDescriptorData));
163 // Get Configuration Descriptor Data
165 User::LeaveIfError(GetConfigurationDescriptorSize(configSize));
167 iConfigurationDescriptorData = HBufC8::NewL(configSize);
168 TPtr8 ptr = iConfigurationDescriptorData->Des();
169 User::LeaveIfError(GetConfigurationDescriptor(ptr));
172 TUsbGenericDescriptor* parsed = NULL;
174 // Parse Device Descriptor
175 User::LeaveIfError(UsbDescriptorParser::Parse(iDeviceDescriptorData, parsed));
176 iHeadDeviceDescriptor = TUsbDeviceDescriptor::Cast(parsed);
177 if(!iHeadDeviceDescriptor)
179 User::Leave(KErrCorrupt);
182 // Parse Configuration Descriptor
183 User::LeaveIfError(UsbDescriptorParser::Parse(*iConfigurationDescriptorData, parsed));
184 iHeadConfDescriptor = TUsbConfigurationDescriptor::Cast(parsed);
185 if(!iHeadConfDescriptor)
187 User::Leave(KErrCorrupt);
190 CleanupStack::Pop(); // this
195 Close a handle to a device.
197 void RUsbDevice::Close()
201 iHub->DoControl(EClose, (TAny*)iHandle);
204 if(iHeadConfDescriptor)
206 iHeadConfDescriptor->DestroyTree();
207 delete iHeadConfDescriptor;
208 iHeadConfDescriptor = NULL;
211 if(iHeadDeviceDescriptor)
213 iHeadDeviceDescriptor->DestroyTree();
214 delete iHeadDeviceDescriptor;
215 iHeadDeviceDescriptor = NULL;
218 delete iConfigurationDescriptorData;
219 iConfigurationDescriptorData = NULL;
227 Return the handle to a device
229 TUint RUsbDevice::Handle() const
236 Places the device into a suspended state.
238 TInt RUsbDevice::Suspend()
240 __ASSERT_ALWAYS(iHandle, User::Panic(UsbdiPanics::KUsbHubDriverPanicCat, UsbdiPanics::EUsbHubDriverRequestMadeWhileClosed));
241 __ASSERT_DEBUG(iHub, User::Panic(UsbdiFaults::KUsbdiFaultCat, UsbdiFaults::EUsbDeviceHasHandleButNoHubDriver));
242 return iHub->DoControl(ESuspend, (TAny*)iHandle);
247 Resumes the device from a suspended state.
249 TInt RUsbDevice::Resume()
251 __ASSERT_ALWAYS(iHandle, User::Panic(UsbdiPanics::KUsbHubDriverPanicCat, UsbdiPanics::EUsbHubDriverRequestMadeWhileClosed));
252 __ASSERT_DEBUG(iHub, User::Panic(UsbdiFaults::KUsbdiFaultCat, UsbdiFaults::EUsbDeviceHasHandleButNoHubDriver));
253 return iHub->DoControl(EResume, (TAny*)iHandle);
257 TInt RUsbDevice::GetStringDescriptor(TDes8& aStringDescriptor, TInt aIndex, TInt aLangId)
259 __ASSERT_ALWAYS(iHandle, User::Panic(UsbdiPanics::KUsbHubDriverPanicCat, UsbdiPanics::EUsbHubDriverRequestMadeWhileClosed));
260 __ASSERT_DEBUG(iHub, User::Panic(UsbdiFaults::KUsbdiFaultCat, UsbdiFaults::EUsbDeviceHasHandleButNoHubDriver));
261 __ASSERT_ALWAYS(aStringDescriptor.MaxLength() >= 255,
262 User::Panic(UsbdiPanics::KUsbHubDriverPanicCat, UsbdiPanics::EUsbHubDriverInsufficientSizeToHoldStringDescriptor));
264 aStringDescriptor.Zero();
266 TStringDescParams stringDescParams;
267 stringDescParams.iTarget = &aStringDescriptor;
268 stringDescParams.iIndex = aIndex;
269 stringDescParams.iLangId = aLangId;
271 return iHub->DoControl(EGetStringDescriptor, (TAny*)iHandle, &stringDescParams);
276 Return a token which may be used to uniquely identify the supplied interface on this device. The returned
277 token may then be passed to a function driver, to allow it to open the required interface.
279 @param [in] aInterfaceNumber Interface to return a token for.
280 @param [out] aToken The token assigned to the interface.
281 @return System wide error code, for instance KErrNotFound if the supplied interface number is unknown.
283 TInt RUsbDevice::GetTokenForInterface(TInt aInterfaceNumber, TUint32& aToken)
285 __ASSERT_ALWAYS(iHandle, User::Panic(UsbdiPanics::KUsbHubDriverPanicCat, UsbdiPanics::EUsbHubDriverRequestMadeWhileClosed));
286 __ASSERT_DEBUG(iHub, User::Panic(UsbdiFaults::KUsbdiFaultCat, UsbdiFaults::EUsbDeviceHasHandleButNoHubDriver));
288 TInterfaceTokenParameters params;
289 params.iInterfaceNumber = aInterfaceNumber;
290 params.iToken = &aToken;
292 return iHub->DoControl(EGetInterfaceToken, (TAny*)iHandle, ¶ms);
296 Queues an asynchronous request for changes in the state of the device represented by this handle.
298 @param [out] aNewState The new state of the device
299 @param [out] aRequest The request status completed when a state change has occured.
301 void RUsbDevice::QueueDeviceStateChangeNotification(TDeviceState& aNewState, TRequestStatus& aRequest)
303 __ASSERT_ALWAYS(iHandle, User::Panic(UsbdiPanics::KUsbHubDriverPanicCat, UsbdiPanics::EUsbHubDriverRequestMadeWhileClosed));
304 __ASSERT_DEBUG(iHub, User::Panic(UsbdiFaults::KUsbdiFaultCat, UsbdiFaults::EUsbDeviceHasHandleButNoHubDriver));
305 iHub->DoRequest(EDeviceStateChange, aRequest, (TAny*)iHandle, &aNewState);
310 Cancels an outstanding request for device state changes
311 @see QueueDeviceStateChangeNotification
313 void RUsbDevice::CancelDeviceStateChangeNotification()
315 __ASSERT_ALWAYS(iHandle, User::Panic(UsbdiPanics::KUsbHubDriverPanicCat, UsbdiPanics::EUsbHubDriverRequestMadeWhileClosed));
316 __ASSERT_DEBUG(iHub, User::Panic(UsbdiFaults::KUsbdiFaultCat, UsbdiFaults::EUsbDeviceHasHandleButNoHubDriver));
317 iHub->DoControl(ECancelDeviceStateChange, (TAny*)iHandle);
322 Return the USB Device Descriptor for this device.
324 Note: the supplied TUsbDeviceDescriptor is owned by the caller, but any descriptor objects linked to it
325 remain the property of the RUsbDevice object. Memory leaks will result if the head pointer is not
326 cleaned up, but the pointed to objects should not be destroyed.
328 @param [out] aDescriptor The supplied TUsbDeviceDescriptor object will be populated from the data retrieved from the
331 @return KErrNone on success, otherwise a system wide error code.
333 TInt RUsbDevice::GetDeviceDescriptor(TUsbDeviceDescriptor& aDescriptor)
335 __ASSERT_ALWAYS(iHandle, User::Panic(UsbdiPanics::KUsbHubDriverPanicCat, UsbdiPanics::EUsbHubDriverRequestMadeWhileClosed));
336 __ASSERT_DEBUG(iHub, User::Panic(UsbdiFaults::KUsbdiFaultCat, UsbdiFaults::EUsbDeviceHasHandleButNoHubDriver));
337 aDescriptor = *iHeadDeviceDescriptor;
342 Return the USB Configuration Descriptor for this device.
344 Note: the supplied TUsbConfigurationDescriptor is owned by the caller, but any descriptor objects linked to it
345 remain the property of the RUsbDevice object. Memory leaks will result if the head pointer is not
346 cleaned up, but the pointed to objects should not be destroyed.
348 @param [out] aDescriptor The supplied TUsbConfigurationDescriptor object will be populated from the data retrieved from
349 the device. Note that the caller owns the head of the list, but not any children or peers.
351 @return KErrNone on success, otherwise a system wide error code.
353 TInt RUsbDevice::GetConfigurationDescriptor(TUsbConfigurationDescriptor& aDescriptor)
355 __ASSERT_ALWAYS(iHandle, User::Panic(UsbdiPanics::KUsbHubDriverPanicCat, UsbdiPanics::EUsbHubDriverRequestMadeWhileClosed));
356 __ASSERT_DEBUG(iHub, User::Panic(UsbdiFaults::KUsbdiFaultCat, UsbdiFaults::EUsbDeviceHasHandleButNoHubDriver));
357 aDescriptor = *iHeadConfDescriptor;
361 TInt RUsbDevice::GetStringDescriptor(TUsbStringDescriptor*& aDescriptor, TDes8& aTarget, TInt aIndex)
363 __ASSERT_ALWAYS(iHandle, User::Panic(UsbdiPanics::KUsbHubDriverPanicCat, UsbdiPanics::EUsbHubDriverRequestMadeWhileClosed));
364 __ASSERT_DEBUG(iHub, User::Panic(UsbdiFaults::KUsbdiFaultCat, UsbdiFaults::EUsbDeviceHasHandleButNoHubDriver));
367 // aTarget will be Zero-ed in the GetStringDescriptor overload.
369 TInt err = GetStringDescriptor(aTarget, aIndex);
374 return ParseStringDescriptor(aDescriptor, aTarget);
377 TInt RUsbDevice::GetStringDescriptor(TUsbStringDescriptor*& aDescriptor, TDes8& aTarget, TInt aIndex, TInt aLangId)
379 __ASSERT_ALWAYS(iHandle, User::Panic(UsbdiPanics::KUsbHubDriverPanicCat, UsbdiPanics::EUsbHubDriverRequestMadeWhileClosed));
380 __ASSERT_DEBUG(iHub, User::Panic(UsbdiFaults::KUsbdiFaultCat, UsbdiFaults::EUsbDeviceHasHandleButNoHubDriver));
383 // aTarget will be Zero-ed in the GetStringDescriptor overload.
385 TInt err = GetStringDescriptor(aTarget, aIndex, aLangId);
391 return ParseStringDescriptor(aDescriptor, aTarget);
394 TInt RUsbDevice::ParseStringDescriptor(TUsbStringDescriptor*& aDescriptor, const TDesC8& aData)
396 TUsbGenericDescriptor* parsed = NULL;
397 TInt err = UsbDescriptorParser::Parse(aData, parsed);
400 aDescriptor = TUsbStringDescriptor::Cast(parsed);
406 // If here then there has been an error when parsing the descriptor
409 parsed->DestroyTree();
412 return (err != KErrNone) ? err : KErrCorrupt;
418 TInt RUsbDevice::GetDeviceDescriptor(TDes8& aDeviceDesc)
420 __ASSERT_ALWAYS(iHandle, User::Panic(UsbdiPanics::KUsbHubDriverPanicCat, UsbdiPanics::EUsbHubDriverRequestMadeWhileClosed));
421 __ASSERT_DEBUG(iHub, User::Panic(UsbdiFaults::KUsbdiFaultCat, UsbdiFaults::EUsbDeviceHasHandleButNoHubDriver));
422 return iHub->DoControl(EGetDeviceDescriptor, (TAny*)iHandle, &aDeviceDesc);
426 TInt RUsbDevice::GetConfigurationDescriptorSize(TInt& aSize)
428 __ASSERT_ALWAYS(iHandle, User::Panic(UsbdiPanics::KUsbHubDriverPanicCat, UsbdiPanics::EUsbHubDriverRequestMadeWhileClosed));
429 __ASSERT_DEBUG(iHub, User::Panic(UsbdiFaults::KUsbdiFaultCat, UsbdiFaults::EUsbDeviceHasHandleButNoHubDriver));
430 return iHub->DoControl(EGetConfigurationDescriptorSize, (TAny*)iHandle, &aSize);
434 TInt RUsbDevice::GetConfigurationDescriptor(TDes8& aConfigDesc)
436 __ASSERT_ALWAYS(iHandle, User::Panic(UsbdiPanics::KUsbHubDriverPanicCat, UsbdiPanics::EUsbHubDriverRequestMadeWhileClosed));
437 __ASSERT_DEBUG(iHub, User::Panic(UsbdiFaults::KUsbdiFaultCat, UsbdiFaults::EUsbDeviceHasHandleButNoHubDriver));
438 return iHub->DoControl(EGetConfigurationDescriptor, (TAny*)iHandle, &aConfigDesc);
442 #endif // !__KERNEL_MODE__