os/kernelhwsrv/kernel/eka/include/d32otgdi.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
 @internalTechnology
sl@0
    19
 @prototype
sl@0
    20
 
sl@0
    21
 The driver's name
sl@0
    22
 
sl@0
    23
 @return The name of the driver
sl@0
    24
 
sl@0
    25
 @internalComponent
sl@0
    26
*/
sl@0
    27
inline const TDesC& RUsbOtgDriver::Name()
sl@0
    28
	{
sl@0
    29
	_LIT( KDriverName, "USBOTGDRIVER" );
sl@0
    30
	return KDriverName;
sl@0
    31
	}
sl@0
    32
sl@0
    33
/**
sl@0
    34
  The driver's version
sl@0
    35
sl@0
    36
  @return The version number of the driver
sl@0
    37
sl@0
    38
  @internalComponent
sl@0
    39
*/
sl@0
    40
inline TVersion RUsbOtgDriver::VersionRequired()
sl@0
    41
	{
sl@0
    42
	const TInt KBuildVersionNumber = KE32BuildVersionNumber;
sl@0
    43
sl@0
    44
	return TVersion( KMajorVersionNumber, KMinorVersionNumber, KBuildVersionNumber );
sl@0
    45
	}
sl@0
    46
sl@0
    47
#ifndef __KERNEL_MODE__
sl@0
    48
sl@0
    49
/**
sl@0
    50
  Open a a logical channel to the OTG driver
sl@0
    51
sl@0
    52
  @return	System-wide error code giving status of connection attempt.
sl@0
    53
*/
sl@0
    54
inline TInt RUsbOtgDriver::Open()
sl@0
    55
	{
sl@0
    56
	TInt rc = KErrNone;
sl@0
    57
sl@0
    58
	// Check to see if this object has already been opened - if it has,
sl@0
    59
	// there will be a handle set.
sl@0
    60
sl@0
    61
	if ( Handle() )
sl@0
    62
		{
sl@0
    63
		User::Panic(OtgdiPanics::KUsbOtgDriverPanicCat, OtgdiPanics::EUsbOtgDriverAlreadyOpened);
sl@0
    64
		}
sl@0
    65
sl@0
    66
	rc = DoCreate( Name(), VersionRequired(), KNullUnit, NULL, NULL, EOwnerThread );
sl@0
    67
sl@0
    68
	// We expect back KErrNone - any other problem indicates an attempt by
sl@0
    69
	// the caller to double-open the driver, which is forbidden
sl@0
    70
sl@0
    71
	if ( rc != KErrNone )
sl@0
    72
		{
sl@0
    73
		RDebug::Print(_L("********************************"));
sl@0
    74
		RDebug::Print(_L("* RUsbOtgDriver::Open() Fault! *"));
sl@0
    75
		RDebug::Print(_L("********************************"));
sl@0
    76
		}
sl@0
    77
sl@0
    78
	return rc;
sl@0
    79
	}
sl@0
    80
sl@0
    81
/**
sl@0
    82
  Special method to alter the default behaviour of the stack:
sl@0
    83
sl@0
    84
  Test mode is activated (special) 
sl@0
    85
sl@0
    86
  @return	Driver-specific error code or system-wide success
sl@0
    87
*/
sl@0
    88
inline TInt RUsbOtgDriver::ActivateOptTestMode()
sl@0
    89
	{
sl@0
    90
	return DoControl( EActivateOptTestMode );
sl@0
    91
	}
sl@0
    92
sl@0
    93
/**
sl@0
    94
  Overall command to start USB stacks
sl@0
    95
sl@0
    96
  @return	Driver-specific error code or system-wide success
sl@0
    97
*/
sl@0
    98
inline TInt RUsbOtgDriver::StartStacks()
sl@0
    99
	{
sl@0
   100
	return DoControl( EStartStacks );
sl@0
   101
	}
sl@0
   102
sl@0
   103
/**
sl@0
   104
  Overall command to stop USB stacks
sl@0
   105
*/
sl@0
   106
inline void RUsbOtgDriver::StopStacks()
sl@0
   107
	{
sl@0
   108
	static_cast<void>(DoControl( EStopStacks ));
sl@0
   109
	}
sl@0
   110
sl@0
   111
/**
sl@0
   112
  Generic event-reporting mechanism, provided in the form of a standard 
sl@0
   113
  watcher which registers and allows user to block until notification.
sl@0
   114
sl@0
   115
  To cater for rapidly-occurring events, this function will return the 
sl@0
   116
  earliest event code (assuming a FIFO stack model for recording such 
sl@0
   117
  events)
sl@0
   118
sl@0
   119
  The notification function does not support multiple instances, it is expected 
sl@0
   120
  to be limited solely to ownership by USBMAN
sl@0
   121
sl@0
   122
  @param	aOldestEvent	parameter to collect the TOtgEvent
sl@0
   123
  @param	aStatus			standard request completion
sl@0
   124
*/
sl@0
   125
inline void RUsbOtgDriver::QueueOtgEventRequest(TOtgEvent& aOldestEvent, TRequestStatus& aStatus)
sl@0
   126
	{
sl@0
   127
	DoRequest( EQueueOtgEventRequest, aStatus, &aOldestEvent );
sl@0
   128
	}
sl@0
   129
sl@0
   130
/**
sl@0
   131
  Cancellation method for event notification
sl@0
   132
sl@0
   133
  Note that the 'cancel' function does not return an error code in the event
sl@0
   134
  that there is no registered watcher: it is assumed that the code
sl@0
   135
  within will contain an ASSERT_DEBUG check to confirm watcher validity.
sl@0
   136
*/
sl@0
   137
inline void RUsbOtgDriver::CancelOtgEventRequest()
sl@0
   138
	{
sl@0
   139
	static_cast<void>(DoControl( ECancelOtgEventRequest ));
sl@0
   140
	}
sl@0
   141
	
sl@0
   142
/**
sl@0
   143
  Generic state-reporting mechanism, provided in the form of a standard 
sl@0
   144
  watcher which registers and allows user to block until notification.
sl@0
   145
sl@0
   146
  To cater for rapidly-occurring changes, this function will return the 
sl@0
   147
  earliest state code (assuming a FIFO stack model for recording such 
sl@0
   148
  States)
sl@0
   149
sl@0
   150
  The notification function does not support multiple instances, it is expected 
sl@0
   151
  to be limited solely to ownership by USBMAN
sl@0
   152
sl@0
   153
  @param	aState		parameter to collect the TOtgState
sl@0
   154
  @param	aStatus		standard request completion
sl@0
   155
*/
sl@0
   156
inline void RUsbOtgDriver::QueueOtgStateRequest(TOtgState& aState, TRequestStatus& aStatus)
sl@0
   157
	{
sl@0
   158
	DoRequest( EQueueOtgStateRequest, aStatus, &aState );
sl@0
   159
	}
sl@0
   160
sl@0
   161
/**
sl@0
   162
  Cancellation method for state notification
sl@0
   163
sl@0
   164
  Note that the 'cancel' function does not return an error code in the event
sl@0
   165
  that there is no registered watcher: it is assumed that the code
sl@0
   166
  within will contain an ASSERT_DEBUG check to confirm watcher validity.
sl@0
   167
*/
sl@0
   168
inline void RUsbOtgDriver::CancelOtgStateRequest()
sl@0
   169
	{
sl@0
   170
	static_cast<void>(DoControl( ECancelOtgStateRequest ));
sl@0
   171
	}
sl@0
   172
	
sl@0
   173
/**
sl@0
   174
  Generic message-reporting mechanism, provided in the form of a standard 
sl@0
   175
  watcher which registers and allows user to block until notification.
sl@0
   176
sl@0
   177
  To cater for rapidly-occurring changes, this function will return the 
sl@0
   178
  earliest message code (assuming a FIFO stack model for recording such 
sl@0
   179
  Messages)
sl@0
   180
sl@0
   181
  The notification function does not support multiple instances, it is expected 
sl@0
   182
  to be limited solely to ownership by USBMAN
sl@0
   183
sl@0
   184
  @param	aMessage	parameter to collect the TOtgMessage
sl@0
   185
  @param	aStatus		standard request completion
sl@0
   186
*/
sl@0
   187
inline void RUsbOtgDriver::QueueOtgMessageRequest(TOtgMessage& aMessage, TRequestStatus& aStatus)
sl@0
   188
	{
sl@0
   189
	DoRequest( EQueueOtgMessageRequest, aStatus, &aMessage );
sl@0
   190
	}
sl@0
   191
sl@0
   192
/**
sl@0
   193
  Cancellation method for message notification
sl@0
   194
sl@0
   195
  Note that the 'cancel' function does not return an error code in the event
sl@0
   196
  that there is no registered watcher: it is assumed that the code
sl@0
   197
  within will contain an ASSERT_DEBUG check to confirm watcher validity.
sl@0
   198
*/
sl@0
   199
inline void RUsbOtgDriver::CancelOtgMessageRequest()
sl@0
   200
	{
sl@0
   201
	static_cast<void>(DoControl( ECancelOtgMessageRequest ));
sl@0
   202
	}
sl@0
   203
sl@0
   204
/**
sl@0
   205
  Single-purpose instant-report mechanism to return the current state
sl@0
   206
  of the ID-Pin on the MIni/Micro-AB connector.
sl@0
   207
sl@0
   208
  This method is expected to complete immediately and return the
sl@0
   209
  *current* state of the ID-Pin, it will omit any intermediate
sl@0
   210
  changes that may have occurred since it was last called.
sl@0
   211
sl@0
   212
  @param	aCurrentIdPin	parameter to collect the ID-Pin state
sl@0
   213
  @param	aStatus			standard request completion
sl@0
   214
*/
sl@0
   215
inline void RUsbOtgDriver::QueueOtgIdPinNotification(TOtgIdPin& aCurrentIdPin, TRequestStatus& aStatus)
sl@0
   216
	{
sl@0
   217
	DoRequest( EQueueOtgIdPinNotification, aStatus, &aCurrentIdPin );
sl@0
   218
	}
sl@0
   219
sl@0
   220
/**
sl@0
   221
  Cancellation method for ID-Pin notification
sl@0
   222
*/
sl@0
   223
inline void RUsbOtgDriver::CancelOtgIdPinNotification()
sl@0
   224
	{
sl@0
   225
	static_cast<void>(DoControl( ECancelOtgIdPinNotification ));
sl@0
   226
	}
sl@0
   227
sl@0
   228
/**
sl@0
   229
  Single-purpose instant-report mechanism to return the current state
sl@0
   230
  of the Voltage level on the Mini/Micro-AB connector.
sl@0
   231
sl@0
   232
  This method is expected to complete immediately and return the
sl@0
   233
  *current* state of the voltage, it will omit any intermediate
sl@0
   234
  changes that may have occurred since it was last called.
sl@0
   235
sl@0
   236
  @param	aCurrentVbus	parameter to collect the voltage state
sl@0
   237
  @param	aStatus			standard request completion
sl@0
   238
*/
sl@0
   239
inline void RUsbOtgDriver::QueueOtgVbusNotification(TOtgVbus& aCurrentVbus, TRequestStatus& aStatus)
sl@0
   240
	{
sl@0
   241
	DoRequest( EQueueOtgVbusNotification, aStatus, &aCurrentVbus );
sl@0
   242
	}
sl@0
   243
sl@0
   244
/**
sl@0
   245
  Cancellation method for Vbus notification
sl@0
   246
*/
sl@0
   247
inline void RUsbOtgDriver::CancelOtgVbusNotification()
sl@0
   248
	{
sl@0
   249
	static_cast<void>(DoControl( ECancelOtgVbusNotification ));
sl@0
   250
	}
sl@0
   251
sl@0
   252
/**
sl@0
   253
  Single-purpose instant-report mechanism to return the current state
sl@0
   254
  of the permissive/advisory that indicates 'idle' state where it is
sl@0
   255
  deemed safe to drop VBUS.
sl@0
   256
sl@0
   257
  This method is expected to complete immediately and return the
sl@0
   258
  *current* state of the idleness, it will omit any intermediate
sl@0
   259
  changes that may have occurred since it was last called.
sl@0
   260
sl@0
   261
  @param	aCurrentIdle	parameter to collect the idle state
sl@0
   262
  @param	aStatus			standard request completion
sl@0
   263
*/
sl@0
   264
inline void RUsbOtgDriver::QueueOtgConnectionNotification(TOtgConnection& aCurrentIdle, TRequestStatus& aStatus)
sl@0
   265
	{
sl@0
   266
	DoRequest( EQueueOtgConnectionNotification, aStatus, &aCurrentIdle );
sl@0
   267
	}
sl@0
   268
sl@0
   269
/**
sl@0
   270
  Cancellation method for Idle notification
sl@0
   271
*/
sl@0
   272
inline void RUsbOtgDriver::CancelOtgConnectionNotification()
sl@0
   273
	{
sl@0
   274
	static_cast<void>(DoControl( ECancelOtgConnectionNotification ));
sl@0
   275
	}
sl@0
   276
sl@0
   277
/**
sl@0
   278
  Single-purpose instant-report mechanism to return the current state
sl@0
   279
  of the OTG state machine
sl@0
   280
sl@0
   281
  This method is expected to complete immediately and return the
sl@0
   282
  *current* state, it will omit any intermediate changes that may 
sl@0
   283
  have occurred since it was last called.
sl@0
   284
sl@0
   285
  @param	aCurrentState	parameter to collect the state
sl@0
   286
  @param	aStatus			standard request completion
sl@0
   287
*/
sl@0
   288
inline void RUsbOtgDriver::QueueOtgStateNotification(TOtgState& aCurrentState, TRequestStatus& aStatus)
sl@0
   289
	{
sl@0
   290
	DoRequest( EQueueOtgStateNotification, aStatus, &aCurrentState );
sl@0
   291
	}
sl@0
   292
sl@0
   293
/**
sl@0
   294
  Cancellation method for State notification
sl@0
   295
*/
sl@0
   296
inline void RUsbOtgDriver::CancelOtgStateNotification()
sl@0
   297
	{
sl@0
   298
	static_cast<void>(DoControl( ECancelOtgStateNotification ));
sl@0
   299
	}
sl@0
   300
sl@0
   301
/**
sl@0
   302
  USBMAN wants to assert bus request for 'Host' or 'Peripheral' duty
sl@0
   303
sl@0
   304
  Default-Host: this will result in an attempt to raise Vbus
sl@0
   305
sl@0
   306
  Default-Device: this will result in an attempt to use SRP(+HNP)
sl@0
   307
sl@0
   308
  The bus request is asserted until BusDrop() is called.
sl@0
   309
sl@0
   310
  @return	Error code returns are related to the current OTG state context
sl@0
   311
			at the time of calling, and not to the asynchronous result
sl@0
   312
			(which is reported via event notification)
sl@0
   313
*/
sl@0
   314
inline TInt RUsbOtgDriver::BusRequest()
sl@0
   315
	{
sl@0
   316
	return DoControl( EBusRequest );
sl@0
   317
	}
sl@0
   318
sl@0
   319
/**
sl@0
   320
  USBMAN wants to permit use of the bus, in response to a request from
sl@0
   321
  the other (B) end of the link to make use of it.
sl@0
   322
sl@0
   323
  @return	Error code returns are related to the current OTG state context
sl@0
   324
			at the time of calling, and not to the asynchronous result
sl@0
   325
			(which is reported via event notification)
sl@0
   326
*/
sl@0
   327
inline TInt RUsbOtgDriver::BusRespondSrp()
sl@0
   328
	{
sl@0
   329
	return DoControl( EBusRespondSrp );
sl@0
   330
	}
sl@0
   331
sl@0
   332
/**
sl@0
   333
  USBMAN wants to stop using the bus.
sl@0
   334
sl@0
   335
  This function can only be called from the A-Device and will result in 
sl@0
   336
  the voltage drive being removed from the Vbus line.
sl@0
   337
sl@0
   338
  @return	Error code returns are related to the current OTG state context
sl@0
   339
			at the time of calling, and not to the asynchronous result
sl@0
   340
			(which is reported via event notification)
sl@0
   341
sl@0
   342
			In particular, this function will return an error code if it
sl@0
   343
			is called in any 'B' state
sl@0
   344
*/
sl@0
   345
inline TInt RUsbOtgDriver::BusDrop()
sl@0
   346
	{
sl@0
   347
	return DoControl( EBusDrop );
sl@0
   348
	}
sl@0
   349
sl@0
   350
/**
sl@0
   351
  USBMAN wants to clear the bus error state.
sl@0
   352
sl@0
   353
  This function can only be called from the A-Device and will result in 
sl@0
   354
  the OTG state machine being moved out of the A_VBUS_ERR state.
sl@0
   355
sl@0
   356
  @return	Error code returns are related to the current OTG state context
sl@0
   357
			at the time of calling, and not to the asynchronous result
sl@0
   358
			(which is reported via event notification)
sl@0
   359
sl@0
   360
			In particular, this function will return an error code if it
sl@0
   361
			is called in any 'B' state 
sl@0
   362
*/
sl@0
   363
inline TInt RUsbOtgDriver::BusClearError()
sl@0
   364
	{
sl@0
   365
	return DoControl( EBusClearError );
sl@0
   366
	}
sl@0
   367
sl@0
   368
#endif  // !__KERNEL_MODE__