os/kernelhwsrv/kernel/eka/include/d32usbdi_hubdriver.inl
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
/**
sl@0
    17
 @file
sl@0
    18
 @internalComponent
sl@0
    19
 
sl@0
    20
 The driver's name
sl@0
    21
 
sl@0
    22
 @return The name of the driver
sl@0
    23
 
sl@0
    24
 @internalComponent
sl@0
    25
*/
sl@0
    26
inline const TDesC& RUsbHubDriver::Name()
sl@0
    27
	{
sl@0
    28
	_LIT(KDriverName,"USBHUBDRIVER");
sl@0
    29
	return KDriverName;
sl@0
    30
	}
sl@0
    31
sl@0
    32
/**
sl@0
    33
  The driver's version
sl@0
    34
sl@0
    35
  @return The version number of the driver
sl@0
    36
*/
sl@0
    37
inline TVersion RUsbHubDriver::VersionRequired()
sl@0
    38
	{
sl@0
    39
	const TInt KMajorVersionNumber=1;
sl@0
    40
	const TInt KMinorVersionNumber=0;
sl@0
    41
	const TInt KBuildVersionNumber=KE32BuildVersionNumber;
sl@0
    42
	return TVersion(KMajorVersionNumber,KMinorVersionNumber,KBuildVersionNumber);
sl@0
    43
	}
sl@0
    44
sl@0
    45
sl@0
    46
#ifndef __KERNEL_MODE__
sl@0
    47
sl@0
    48
/**
sl@0
    49
Open a handle to the host controller.
sl@0
    50
@return System-wide error code giving status of connection attempt.
sl@0
    51
*/
sl@0
    52
TInt RUsbHubDriver::Open()
sl@0
    53
	{
sl@0
    54
	TInt rc = KErrNone;
sl@0
    55
	
sl@0
    56
	// Check to see if this object has already been opened - if it has,
sl@0
    57
	// there will be a handle set.
sl@0
    58
	
sl@0
    59
	if ( Handle() )
sl@0
    60
		{
sl@0
    61
		User::Panic(UsbdiPanics::KUsbHubDriverPanicCat, UsbdiPanics::EUsbHubDriverAlreadyOpened);
sl@0
    62
		}
sl@0
    63
	
sl@0
    64
	rc = DoCreate(Name(),VersionRequired(),KNullUnit,NULL,NULL,EOwnerThread);
sl@0
    65
	
sl@0
    66
	if ( rc != KErrNone )
sl@0
    67
		{
sl@0
    68
		RDebug::Print(_L("********************************"));
sl@0
    69
		RDebug::Print(_L("* RUsbHubDriver::Open() Fault! *"));
sl@0
    70
		RDebug::Print(_L("********************************"));
sl@0
    71
		}
sl@0
    72
		
sl@0
    73
	return rc;
sl@0
    74
	}
sl@0
    75
sl@0
    76
sl@0
    77
/**
sl@0
    78
Start the host stack.
sl@0
    79
*/
sl@0
    80
TInt RUsbHubDriver::StartHost()
sl@0
    81
	{
sl@0
    82
	return DoControl(EStartHost);
sl@0
    83
	}
sl@0
    84
sl@0
    85
sl@0
    86
/**
sl@0
    87
Stop the host stack.
sl@0
    88
*/
sl@0
    89
void RUsbHubDriver::StopHost()
sl@0
    90
	{
sl@0
    91
	DoControl(EStopHost);
sl@0
    92
	}
sl@0
    93
sl@0
    94
sl@0
    95
/**
sl@0
    96
Wait for a bus event.  These include device attachments and detachments.
sl@0
    97
@see TBusEvent
sl@0
    98
@param aEvent The details of the event that occured, filled in when the request completes.
sl@0
    99
@param aStatus Completed when an event occurs
sl@0
   100
*/
sl@0
   101
void RUsbHubDriver::WaitForBusEvent(TBusEvent& aEvent, TRequestStatus& aStatus)
sl@0
   102
	{
sl@0
   103
	DoRequest(EWaitForBusEvent, aStatus, &aEvent);
sl@0
   104
	}
sl@0
   105
sl@0
   106
sl@0
   107
/**
sl@0
   108
Cancel a request to wait for bus events.
sl@0
   109
*/
sl@0
   110
void RUsbHubDriver::CancelWaitForBusEvent()
sl@0
   111
	{
sl@0
   112
	DoCancel(ECancelWaitForBusEvent);
sl@0
   113
	}
sl@0
   114
	
sl@0
   115
sl@0
   116
RUsbDevice::RUsbDevice()
sl@0
   117
	: iHeadDeviceDescriptor(NULL)
sl@0
   118
	, iHeadConfDescriptor(NULL)
sl@0
   119
	, iConfigurationDescriptorData(NULL)
sl@0
   120
	, iHub(NULL)
sl@0
   121
	, iHandle(0)
sl@0
   122
	{
sl@0
   123
	}
sl@0
   124
sl@0
   125
/**
sl@0
   126
Open a handle to a device.
sl@0
   127
*/
sl@0
   128
TInt RUsbDevice::Open(RUsbHubDriver& aHub, TUint aHandle)
sl@0
   129
	{
sl@0
   130
	if(iHandle)
sl@0
   131
		{
sl@0
   132
		return KErrInUse;
sl@0
   133
		}
sl@0
   134
sl@0
   135
	TInt err;
sl@0
   136
	err = aHub.DoControl(EOpen, (TAny*)aHandle);
sl@0
   137
sl@0
   138
sl@0
   139
	if (err == KErrNone)
sl@0
   140
		{
sl@0
   141
		iHub = &aHub;
sl@0
   142
		iHandle = aHandle;
sl@0
   143
		}
sl@0
   144
	else
sl@0
   145
		{
sl@0
   146
		return err;
sl@0
   147
		}
sl@0
   148
sl@0
   149
	TRAP(err, GetLocalDescriptorsL());
sl@0
   150
	// GetLocalDescriptorsL should roll back iHandle etc on error.
sl@0
   151
	__ASSERT_DEBUG(err == KErrNone || !iHandle, User::Panic(UsbdiPanics::KUsbHubDriverPanicCat, UsbdiPanics::EUsbHubDriverNoRollBackAfterFailedDeviceOpen));
sl@0
   152
sl@0
   153
	return err;
sl@0
   154
	}
sl@0
   155
sl@0
   156
void RUsbDevice::GetLocalDescriptorsL()
sl@0
   157
	{
sl@0
   158
	CleanupClosePushL(*this); // Ensure that we roll back to closed on error.
sl@0
   159
sl@0
   160
	// Get Device Descriptor Data.
sl@0
   161
	User::LeaveIfError(GetDeviceDescriptor(iDeviceDescriptorData));
sl@0
   162
sl@0
   163
	// Get Configuration Descriptor Data
sl@0
   164
	TInt configSize = 0;
sl@0
   165
	User::LeaveIfError(GetConfigurationDescriptorSize(configSize));
sl@0
   166
	
sl@0
   167
	iConfigurationDescriptorData = HBufC8::NewL(configSize);
sl@0
   168
	TPtr8 ptr = iConfigurationDescriptorData->Des();
sl@0
   169
	User::LeaveIfError(GetConfigurationDescriptor(ptr));
sl@0
   170
sl@0
   171
sl@0
   172
	TUsbGenericDescriptor* parsed = NULL;
sl@0
   173
sl@0
   174
	// Parse Device Descriptor
sl@0
   175
	User::LeaveIfError(UsbDescriptorParser::Parse(iDeviceDescriptorData, parsed));
sl@0
   176
	iHeadDeviceDescriptor = TUsbDeviceDescriptor::Cast(parsed);
sl@0
   177
	if(!iHeadDeviceDescriptor)
sl@0
   178
		{
sl@0
   179
		User::Leave(KErrCorrupt);
sl@0
   180
		}
sl@0
   181
sl@0
   182
	// Parse Configuration Descriptor
sl@0
   183
	User::LeaveIfError(UsbDescriptorParser::Parse(*iConfigurationDescriptorData, parsed));
sl@0
   184
	iHeadConfDescriptor = TUsbConfigurationDescriptor::Cast(parsed);
sl@0
   185
	if(!iHeadConfDescriptor)
sl@0
   186
		{
sl@0
   187
		User::Leave(KErrCorrupt);
sl@0
   188
		}
sl@0
   189
sl@0
   190
	CleanupStack::Pop(); // this
sl@0
   191
	}
sl@0
   192
sl@0
   193
sl@0
   194
/**
sl@0
   195
Close a handle to a device.
sl@0
   196
*/
sl@0
   197
void RUsbDevice::Close()
sl@0
   198
	{
sl@0
   199
	if(iHub)
sl@0
   200
		{
sl@0
   201
		iHub->DoControl(EClose, (TAny*)iHandle);
sl@0
   202
		}
sl@0
   203
sl@0
   204
	if(iHeadConfDescriptor)
sl@0
   205
		{
sl@0
   206
		iHeadConfDescriptor->DestroyTree();
sl@0
   207
		delete iHeadConfDescriptor;
sl@0
   208
		iHeadConfDescriptor = NULL;
sl@0
   209
		}
sl@0
   210
sl@0
   211
	if(iHeadDeviceDescriptor)
sl@0
   212
		{
sl@0
   213
		iHeadDeviceDescriptor->DestroyTree();
sl@0
   214
		delete iHeadDeviceDescriptor;
sl@0
   215
		iHeadDeviceDescriptor = NULL;
sl@0
   216
		}
sl@0
   217
sl@0
   218
	delete iConfigurationDescriptorData;
sl@0
   219
	iConfigurationDescriptorData = NULL;
sl@0
   220
sl@0
   221
	iHub = NULL;
sl@0
   222
	iHandle = 0;
sl@0
   223
	}
sl@0
   224
	
sl@0
   225
sl@0
   226
/**
sl@0
   227
Return the handle to a device
sl@0
   228
*/
sl@0
   229
TUint RUsbDevice::Handle() const
sl@0
   230
	{
sl@0
   231
	return iHandle;
sl@0
   232
	}
sl@0
   233
sl@0
   234
sl@0
   235
/**
sl@0
   236
Places the device into a suspended state.
sl@0
   237
*/
sl@0
   238
TInt RUsbDevice::Suspend()
sl@0
   239
	{
sl@0
   240
	__ASSERT_ALWAYS(iHandle, User::Panic(UsbdiPanics::KUsbHubDriverPanicCat, UsbdiPanics::EUsbHubDriverRequestMadeWhileClosed));
sl@0
   241
	__ASSERT_DEBUG(iHub, User::Panic(UsbdiFaults::KUsbdiFaultCat, UsbdiFaults::EUsbDeviceHasHandleButNoHubDriver));
sl@0
   242
	return iHub->DoControl(ESuspend, (TAny*)iHandle);
sl@0
   243
	}
sl@0
   244
sl@0
   245
sl@0
   246
/**
sl@0
   247
Resumes the device from a suspended state.
sl@0
   248
*/
sl@0
   249
TInt RUsbDevice::Resume()
sl@0
   250
	{
sl@0
   251
	__ASSERT_ALWAYS(iHandle, User::Panic(UsbdiPanics::KUsbHubDriverPanicCat, UsbdiPanics::EUsbHubDriverRequestMadeWhileClosed));
sl@0
   252
	__ASSERT_DEBUG(iHub, User::Panic(UsbdiFaults::KUsbdiFaultCat, UsbdiFaults::EUsbDeviceHasHandleButNoHubDriver));
sl@0
   253
	return iHub->DoControl(EResume, (TAny*)iHandle);
sl@0
   254
	}
sl@0
   255
sl@0
   256
sl@0
   257
TInt RUsbDevice::GetStringDescriptor(TDes8& aStringDescriptor, TInt aIndex, TInt aLangId)
sl@0
   258
	{
sl@0
   259
	__ASSERT_ALWAYS(iHandle, User::Panic(UsbdiPanics::KUsbHubDriverPanicCat, UsbdiPanics::EUsbHubDriverRequestMadeWhileClosed));
sl@0
   260
	__ASSERT_DEBUG(iHub, User::Panic(UsbdiFaults::KUsbdiFaultCat, UsbdiFaults::EUsbDeviceHasHandleButNoHubDriver));
sl@0
   261
	__ASSERT_ALWAYS(aStringDescriptor.MaxLength() >= 255,
sl@0
   262
		User::Panic(UsbdiPanics::KUsbHubDriverPanicCat, UsbdiPanics::EUsbHubDriverInsufficientSizeToHoldStringDescriptor));
sl@0
   263
sl@0
   264
	aStringDescriptor.Zero();
sl@0
   265
sl@0
   266
	TStringDescParams stringDescParams;
sl@0
   267
	stringDescParams.iTarget = &aStringDescriptor;
sl@0
   268
	stringDescParams.iIndex  =  aIndex;
sl@0
   269
	stringDescParams.iLangId =  aLangId;
sl@0
   270
sl@0
   271
	return iHub->DoControl(EGetStringDescriptor, (TAny*)iHandle, &stringDescParams);
sl@0
   272
	}
sl@0
   273
sl@0
   274
sl@0
   275
/**
sl@0
   276
Return a token which may be used to uniquely identify the supplied interface on this device.  The returned
sl@0
   277
token may then be passed to a function driver, to allow it to open the required interface.
sl@0
   278
sl@0
   279
@param [in] aInterfaceNumber Interface to return a token for.
sl@0
   280
@param [out] aToken The token assigned to the interface.
sl@0
   281
@return System wide error code, for instance KErrNotFound if the supplied interface number is unknown.
sl@0
   282
*/
sl@0
   283
TInt RUsbDevice::GetTokenForInterface(TInt aInterfaceNumber, TUint32& aToken)
sl@0
   284
	{
sl@0
   285
	__ASSERT_ALWAYS(iHandle, User::Panic(UsbdiPanics::KUsbHubDriverPanicCat, UsbdiPanics::EUsbHubDriverRequestMadeWhileClosed));
sl@0
   286
	__ASSERT_DEBUG(iHub, User::Panic(UsbdiFaults::KUsbdiFaultCat, UsbdiFaults::EUsbDeviceHasHandleButNoHubDriver));
sl@0
   287
sl@0
   288
	TInterfaceTokenParameters params;
sl@0
   289
	params.iInterfaceNumber = aInterfaceNumber;
sl@0
   290
	params.iToken           = &aToken;
sl@0
   291
sl@0
   292
	return iHub->DoControl(EGetInterfaceToken, (TAny*)iHandle, &params);
sl@0
   293
	}
sl@0
   294
sl@0
   295
/**
sl@0
   296
Queues an asynchronous request for changes in the state of the device represented by this handle.
sl@0
   297
sl@0
   298
@param [out] aNewState The new state of the device
sl@0
   299
@param [out] aRequest The request status completed when a state change has occured.
sl@0
   300
*/
sl@0
   301
void RUsbDevice::QueueDeviceStateChangeNotification(TDeviceState& aNewState, TRequestStatus& aRequest)
sl@0
   302
	{
sl@0
   303
	__ASSERT_ALWAYS(iHandle, User::Panic(UsbdiPanics::KUsbHubDriverPanicCat, UsbdiPanics::EUsbHubDriverRequestMadeWhileClosed));
sl@0
   304
	__ASSERT_DEBUG(iHub, User::Panic(UsbdiFaults::KUsbdiFaultCat, UsbdiFaults::EUsbDeviceHasHandleButNoHubDriver));
sl@0
   305
	iHub->DoRequest(EDeviceStateChange, aRequest, (TAny*)iHandle, &aNewState);
sl@0
   306
	}
sl@0
   307
sl@0
   308
sl@0
   309
/**
sl@0
   310
Cancels an outstanding request for device state changes
sl@0
   311
@see QueueDeviceStateChangeNotification
sl@0
   312
*/
sl@0
   313
void RUsbDevice::CancelDeviceStateChangeNotification()
sl@0
   314
	{
sl@0
   315
	__ASSERT_ALWAYS(iHandle, User::Panic(UsbdiPanics::KUsbHubDriverPanicCat, UsbdiPanics::EUsbHubDriverRequestMadeWhileClosed));
sl@0
   316
	__ASSERT_DEBUG(iHub, User::Panic(UsbdiFaults::KUsbdiFaultCat, UsbdiFaults::EUsbDeviceHasHandleButNoHubDriver));
sl@0
   317
	iHub->DoControl(ECancelDeviceStateChange, (TAny*)iHandle);
sl@0
   318
	}
sl@0
   319
sl@0
   320
sl@0
   321
/**
sl@0
   322
Return the USB Device Descriptor for this device.
sl@0
   323
sl@0
   324
Note: the supplied TUsbDeviceDescriptor is owned by the caller, but any descriptor objects linked to it
sl@0
   325
remain the property of the RUsbDevice object.  Memory leaks will result if the head pointer is not
sl@0
   326
cleaned up, but the pointed to objects should not be destroyed.
sl@0
   327
sl@0
   328
@param [out] aDescriptor The supplied TUsbDeviceDescriptor object will be populated from the data retrieved from the
sl@0
   329
device.
sl@0
   330
sl@0
   331
@return KErrNone on success, otherwise a system wide error code.
sl@0
   332
*/
sl@0
   333
TInt RUsbDevice::GetDeviceDescriptor(TUsbDeviceDescriptor& aDescriptor)
sl@0
   334
	{
sl@0
   335
	__ASSERT_ALWAYS(iHandle, User::Panic(UsbdiPanics::KUsbHubDriverPanicCat, UsbdiPanics::EUsbHubDriverRequestMadeWhileClosed));
sl@0
   336
	__ASSERT_DEBUG(iHub, User::Panic(UsbdiFaults::KUsbdiFaultCat, UsbdiFaults::EUsbDeviceHasHandleButNoHubDriver));
sl@0
   337
	aDescriptor = *iHeadDeviceDescriptor;
sl@0
   338
	return KErrNone;
sl@0
   339
	}
sl@0
   340
sl@0
   341
/**
sl@0
   342
Return the USB Configuration Descriptor for this device.
sl@0
   343
sl@0
   344
Note: the supplied TUsbConfigurationDescriptor is owned by the caller, but any descriptor objects linked to it
sl@0
   345
remain the property of the RUsbDevice object.  Memory leaks will result if the head pointer is not
sl@0
   346
cleaned up, but the pointed to objects should not be destroyed.
sl@0
   347
sl@0
   348
@param [out] aDescriptor The supplied TUsbConfigurationDescriptor object will be populated from the data retrieved from
sl@0
   349
the	device.  Note that the caller owns the head of the list, but not any children or peers.
sl@0
   350
sl@0
   351
@return KErrNone on success, otherwise a system wide error code.
sl@0
   352
*/
sl@0
   353
TInt RUsbDevice::GetConfigurationDescriptor(TUsbConfigurationDescriptor& aDescriptor)
sl@0
   354
	{
sl@0
   355
	__ASSERT_ALWAYS(iHandle, User::Panic(UsbdiPanics::KUsbHubDriverPanicCat, UsbdiPanics::EUsbHubDriverRequestMadeWhileClosed));
sl@0
   356
	__ASSERT_DEBUG(iHub, User::Panic(UsbdiFaults::KUsbdiFaultCat, UsbdiFaults::EUsbDeviceHasHandleButNoHubDriver));
sl@0
   357
	aDescriptor = *iHeadConfDescriptor;
sl@0
   358
	return KErrNone;
sl@0
   359
	}
sl@0
   360
sl@0
   361
TInt RUsbDevice::GetStringDescriptor(TUsbStringDescriptor*& aDescriptor, TDes8& aTarget, TInt aIndex)
sl@0
   362
	{
sl@0
   363
	__ASSERT_ALWAYS(iHandle, User::Panic(UsbdiPanics::KUsbHubDriverPanicCat, UsbdiPanics::EUsbHubDriverRequestMadeWhileClosed));
sl@0
   364
	__ASSERT_DEBUG(iHub, User::Panic(UsbdiFaults::KUsbdiFaultCat, UsbdiFaults::EUsbDeviceHasHandleButNoHubDriver));
sl@0
   365
sl@0
   366
	aDescriptor = NULL;
sl@0
   367
	// aTarget will be Zero-ed in the GetStringDescriptor overload.
sl@0
   368
sl@0
   369
	TInt err = GetStringDescriptor(aTarget, aIndex);
sl@0
   370
	if(err != KErrNone)
sl@0
   371
		{
sl@0
   372
		return err;
sl@0
   373
		}
sl@0
   374
	return ParseStringDescriptor(aDescriptor, aTarget);
sl@0
   375
	}
sl@0
   376
sl@0
   377
TInt RUsbDevice::GetStringDescriptor(TUsbStringDescriptor*& aDescriptor, TDes8& aTarget, TInt aIndex, TInt aLangId)
sl@0
   378
	{
sl@0
   379
	__ASSERT_ALWAYS(iHandle, User::Panic(UsbdiPanics::KUsbHubDriverPanicCat, UsbdiPanics::EUsbHubDriverRequestMadeWhileClosed));
sl@0
   380
	__ASSERT_DEBUG(iHub, User::Panic(UsbdiFaults::KUsbdiFaultCat, UsbdiFaults::EUsbDeviceHasHandleButNoHubDriver));
sl@0
   381
sl@0
   382
	aDescriptor = NULL;
sl@0
   383
	// aTarget will be Zero-ed in the GetStringDescriptor overload.
sl@0
   384
sl@0
   385
	TInt err = GetStringDescriptor(aTarget, aIndex, aLangId);
sl@0
   386
	if(err != KErrNone)
sl@0
   387
		{
sl@0
   388
		return err;
sl@0
   389
		}
sl@0
   390
sl@0
   391
	return ParseStringDescriptor(aDescriptor, aTarget);
sl@0
   392
	}
sl@0
   393
	
sl@0
   394
TInt RUsbDevice::ParseStringDescriptor(TUsbStringDescriptor*& aDescriptor, const TDesC8& aData)
sl@0
   395
	{
sl@0
   396
	TUsbGenericDescriptor* parsed = NULL;
sl@0
   397
	TInt err = UsbDescriptorParser::Parse(aData, parsed);
sl@0
   398
	if(err == KErrNone)
sl@0
   399
		{
sl@0
   400
		aDescriptor = TUsbStringDescriptor::Cast(parsed);
sl@0
   401
		if(aDescriptor)
sl@0
   402
			{
sl@0
   403
			return KErrNone;
sl@0
   404
			}
sl@0
   405
		}
sl@0
   406
	// If here then there has been an error when parsing the descriptor
sl@0
   407
	if(parsed)
sl@0
   408
		{
sl@0
   409
		parsed->DestroyTree();
sl@0
   410
		delete parsed;
sl@0
   411
		}
sl@0
   412
	return (err != KErrNone) ? err : KErrCorrupt;
sl@0
   413
	}
sl@0
   414
sl@0
   415
sl@0
   416
sl@0
   417
sl@0
   418
TInt RUsbDevice::GetDeviceDescriptor(TDes8& aDeviceDesc)
sl@0
   419
	{
sl@0
   420
	__ASSERT_ALWAYS(iHandle, User::Panic(UsbdiPanics::KUsbHubDriverPanicCat, UsbdiPanics::EUsbHubDriverRequestMadeWhileClosed));
sl@0
   421
	__ASSERT_DEBUG(iHub, User::Panic(UsbdiFaults::KUsbdiFaultCat, UsbdiFaults::EUsbDeviceHasHandleButNoHubDriver));
sl@0
   422
	return iHub->DoControl(EGetDeviceDescriptor, (TAny*)iHandle, &aDeviceDesc);
sl@0
   423
	}
sl@0
   424
sl@0
   425
sl@0
   426
TInt RUsbDevice::GetConfigurationDescriptorSize(TInt& aSize)
sl@0
   427
	{
sl@0
   428
	__ASSERT_ALWAYS(iHandle, User::Panic(UsbdiPanics::KUsbHubDriverPanicCat, UsbdiPanics::EUsbHubDriverRequestMadeWhileClosed));
sl@0
   429
	__ASSERT_DEBUG(iHub, User::Panic(UsbdiFaults::KUsbdiFaultCat, UsbdiFaults::EUsbDeviceHasHandleButNoHubDriver));
sl@0
   430
	return iHub->DoControl(EGetConfigurationDescriptorSize, (TAny*)iHandle, &aSize);
sl@0
   431
	}
sl@0
   432
sl@0
   433
sl@0
   434
TInt RUsbDevice::GetConfigurationDescriptor(TDes8& aConfigDesc)
sl@0
   435
	{
sl@0
   436
	__ASSERT_ALWAYS(iHandle, User::Panic(UsbdiPanics::KUsbHubDriverPanicCat, UsbdiPanics::EUsbHubDriverRequestMadeWhileClosed));
sl@0
   437
	__ASSERT_DEBUG(iHub, User::Panic(UsbdiFaults::KUsbdiFaultCat, UsbdiFaults::EUsbDeviceHasHandleButNoHubDriver));
sl@0
   438
	return iHub->DoControl(EGetConfigurationDescriptor, (TAny*)iHandle, &aConfigDesc);
sl@0
   439
	}
sl@0
   440
sl@0
   441
sl@0
   442
#endif  // !__KERNEL_MODE__