os/kernelhwsrv/kernel/eka/include/drivers/gpio.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2008-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
// e32\include\drivers\gpio.h
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef __GPIO_H__
sl@0
    19
#define __GPIO_H__
sl@0
    20
sl@0
    21
class TGpioCallback;	//forward declaration
sl@0
    22
sl@0
    23
/**
sl@0
    24
@publishedPartner
sl@0
    25
@prototype 9.6
sl@0
    26
sl@0
    27
GPIO interrupt handler
sl@0
    28
Takes a generic argument (TAny*)
sl@0
    29
*/
sl@0
    30
typedef void (*TGpioIsr)(TAny*);
sl@0
    31
sl@0
    32
/**
sl@0
    33
@publishedPartner
sl@0
    34
@prototype 9.6
sl@0
    35
sl@0
    36
GPIO class handler
sl@0
    37
*/
sl@0
    38
class GPIO
sl@0
    39
	{
sl@0
    40
public:
sl@0
    41
	/**
sl@0
    42
	GPIO pin modes (to be requested on any pin):
sl@0
    43
	- enabled,
sl@0
    44
	- disabled,
sl@0
    45
	- idling
sl@0
    46
	*/
sl@0
    47
	enum TGpioMode
sl@0
    48
		{
sl@0
    49
		EEnabled,
sl@0
    50
		EDisabled,
sl@0
    51
		EIdle
sl@0
    52
		};
sl@0
    53
sl@0
    54
		/**
sl@0
    55
	GPIO pin directions (to be requested on any pin):
sl@0
    56
	- input,
sl@0
    57
	- output,
sl@0
    58
	- tristated
sl@0
    59
	*/
sl@0
    60
	enum TGpioDirection
sl@0
    61
		{
sl@0
    62
		EInput,
sl@0
    63
		EOutput,
sl@0
    64
		ETriStated
sl@0
    65
		};
sl@0
    66
sl@0
    67
	/**
sl@0
    68
	GPIO pin states (to be set on an output or read from an input or output):
sl@0
    69
	- electrical Low,
sl@0
    70
	- electrical High,
sl@0
    71
	- state compatible with idling the pin (module)
sl@0
    72
	*/
sl@0
    73
	enum TGpioState
sl@0
    74
		{
sl@0
    75
		ELow,
sl@0
    76
		EHigh,
sl@0
    77
		EIdleState
sl@0
    78
		};
sl@0
    79
sl@0
    80
	/**
sl@0
    81
	GPIO programmable bias:
sl@0
    82
	- no drive,
sl@0
    83
	- pulled down (Low),
sl@0
    84
	- pulled up (High)
sl@0
    85
	*/
sl@0
    86
	enum TGpioBias
sl@0
    87
		{
sl@0
    88
		ENoDrive,
sl@0
    89
		EPullDown,
sl@0
    90
		EPullUp
sl@0
    91
		};
sl@0
    92
sl@0
    93
	/**
sl@0
    94
	GPIO interrupt and/or wakeup triger configuration (to be requested on an input
sl@0
    95
 						 that supports interrupts or wakeup function):
sl@0
    96
	- Level triggered, low level,
sl@0
    97
	- Level triggered, high level,
sl@0
    98
	- Edge triggered, falling edge,
sl@0
    99
	- Edge triggered, rising edge,
sl@0
   100
	- Edge triggered, both edges,
sl@0
   101
	*/
sl@0
   102
	enum TGpioDetectionTrigger
sl@0
   103
		{
sl@0
   104
		ELevelLow,
sl@0
   105
		ELevelHigh,
sl@0
   106
		EEdgeFalling,
sl@0
   107
		EEdgeRising,
sl@0
   108
		EEdgeBoth
sl@0
   109
		};
sl@0
   110
sl@0
   111
    /**
sl@0
   112
    Sets the pin mode.
sl@0
   113
    
sl@0
   114
    @param aId   The pin Id.
sl@0
   115
    @param aMode The pin mode.
sl@0
   116
sl@0
   117
    @return KErrNone, if successful; KErrArgument, if aId is invalid;
sl@0
   118
            KErrNotReady, when a pin that has requested to be Idle is not ready to do
sl@0
   119
 											     so;
sl@0
   120
            KErrNotSupported, if a pin cannot be used as a GPIO because it  has been
sl@0
   121
 							     assigned an alternative function.
sl@0
   122
sl@0
   123
	When disabling a pin, the module which the pin is a part of may not be disabled,
sl@0
   124
 								but KErrNone is still returned.
sl@0
   125
    */
sl@0
   126
	IMPORT_C static TInt SetPinMode(TInt aId, TGpioMode aMode);
sl@0
   127
sl@0
   128
    /**
sl@0
   129
    Reads the pin mode.
sl@0
   130
    
sl@0
   131
    @param aId   The pin Id.
sl@0
   132
    @param aMode On return contains the pin mode.
sl@0
   133
sl@0
   134
    @return KErrNone, if successful; KErrArgument, if aId is invalid;
sl@0
   135
            KErrNotSupported, if reading the pin mode is not supported.
sl@0
   136
    */
sl@0
   137
	IMPORT_C static TInt GetPinMode(TInt aId, TGpioMode& aMode);
sl@0
   138
sl@0
   139
    /**
sl@0
   140
    Sets the pin direction.
sl@0
   141
    
sl@0
   142
    @param aId        The pin Id.
sl@0
   143
    @param aDirection The pin direction.
sl@0
   144
sl@0
   145
    @return KErrNone, if successful; KErrArgument, if aId is invalid;
sl@0
   146
            KErrNotSupported, if a pin cannot operate in the direction specified.
sl@0
   147
    */
sl@0
   148
	IMPORT_C static TInt SetPinDirection(TInt aId, TGpioDirection aDirection);
sl@0
   149
sl@0
   150
    /**
sl@0
   151
    Reads the pin direction.
sl@0
   152
    
sl@0
   153
    @param aId        The pin Id.
sl@0
   154
    @param aDirection On return contains the pin direction.
sl@0
   155
sl@0
   156
    @return KErrNone, if successful; KErrArgument, if aId is invalid;
sl@0
   157
            KErrNotSupported, if reading the pin direction is not supported.
sl@0
   158
    */
sl@0
   159
	IMPORT_C static TInt GetPinDirection(TInt aId, TGpioDirection& aDirection);
sl@0
   160
sl@0
   161
    /**
sl@0
   162
    Sets the bias on a pin.
sl@0
   163
    
sl@0
   164
    @param aId    The pin Id.
sl@0
   165
    @param aBias  The drive on the pin.
sl@0
   166
sl@0
   167
    @return KErrNone, if successful; KErrArgument, if aId is invalid;
sl@0
   168
		   KErrNotSupported, if a pin does not support setting the drive.
sl@0
   169
    */
sl@0
   170
	IMPORT_C static TInt SetPinBias(TInt aId, TGpioBias aBias);
sl@0
   171
sl@0
   172
    /**
sl@0
   173
    Reads the bias on a pin.
sl@0
   174
    
sl@0
   175
    @param aId    The pin Id.
sl@0
   176
    @param aBias  On return contains the bias previoulsy set on the pin (or the
sl@0
   177
 								   default bias if first time).
sl@0
   178
sl@0
   179
    @return KErrNone, if successful; 
sl@0
   180
            KErrArgument, if aId is invalid;
sl@0
   181
            KErrNotSupported, if reading the pin bias is not supported.
sl@0
   182
    */
sl@0
   183
	IMPORT_C static TInt GetPinBias(TInt aId, TGpioBias& aBias);
sl@0
   184
sl@0
   185
	/**
sl@0
   186
	Sets the idle configuration and state. The pin configuration is the 
sl@0
   187
	same that the pin should have when setting the mode to EIdle and the
sl@0
   188
	state same it should present when setting the output state to EIdleState.
sl@0
   189
sl@0
   190
	@param aId    The pin Id.
sl@0
   191
	@param aConf  An implementation specific token specifying the idle
sl@0
   192
				  configration and state.
sl@0
   193
	
sl@0
   194
	@return KErrNone, if successful; 
sl@0
   195
            KErrArgument, if aId is invalid;
sl@0
   196
            KErrNotSupported, if setting the pin idle configuration and state
sl@0
   197
							  are not supported.
sl@0
   198
	*/
sl@0
   199
	IMPORT_C static TInt SetPinIdleConfigurationAndState(TInt aId, TInt aConf);
sl@0
   200
sl@0
   201
    /**
sl@0
   202
    Reads the pin idle configuration and state.
sl@0
   203
    
sl@0
   204
    @param aId    The pin Id.
sl@0
   205
    @param aConf  On return contains the idle configuration and state previoulsy
sl@0
   206
				  set on the pin.
sl@0
   207
sl@0
   208
    @return KErrNone, if successful; 
sl@0
   209
            KErrArgument, if aId is invalid;
sl@0
   210
            KErrNotSupported, if reading the pin idle configuration and state
sl@0
   211
							  is not supported.
sl@0
   212
    */
sl@0
   213
	IMPORT_C static TInt GetPinIdleConfigurationAndState(TInt aId, TInt& aConf);
sl@0
   214
sl@0
   215
    /**
sl@0
   216
    Associates the specified interrupt service routine (ISR) function with the
sl@0
   217
    								specified interrupt Id.
sl@0
   218
    
sl@0
   219
    @param aId     The pin Id.
sl@0
   220
    @param anIsr   The address of the ISR function. 
sl@0
   221
    @param aPtr    32-bit value that is passed to the ISR.
sl@0
   222
                   This is designated a TAny* type as it is usually a pointer to the
sl@0
   223
                   owning class or data to be used in the ISR, although it can be any
sl@0
   224
                   32-bit value.
sl@0
   225
                 
sl@0
   226
    @return KErrNone, if successful;
sl@0
   227
            KErrArgument, if aId is invalid;
sl@0
   228
            KErrNotSupported if pin does not support interrupts;
sl@0
   229
            KErrInUse, if an ISR is already bound to this interrupt.
sl@0
   230
    */
sl@0
   231
	IMPORT_C static TInt BindInterrupt(TInt aId, TGpioIsr aIsr, TAny* aPtr);
sl@0
   232
sl@0
   233
    /**
sl@0
   234
    Unbinds the interrupt service routine (ISR) function from the specified interrupt
sl@0
   235
    id.
sl@0
   236
    
sl@0
   237
    @param aId The pin Id.
sl@0
   238
    
sl@0
   239
    @return KErrNone, if successful; 
sl@0
   240
            KErrArgument, if aId is invalid;
sl@0
   241
            KErrNotSupported if pin does not support interrupts;
sl@0
   242
            KErrGeneral, if there is no ISR bound to this interrupt.
sl@0
   243
    */
sl@0
   244
	IMPORT_C static TInt UnbindInterrupt(TInt aId);
sl@0
   245
sl@0
   246
    /**
sl@0
   247
    Enables the interrupt on specified pin.
sl@0
   248
    
sl@0
   249
    @param aId  The pin Id.
sl@0
   250
    
sl@0
   251
    @return KErrNone, if successful; 
sl@0
   252
            KErrArgument, if aId is invalid;
sl@0
   253
            KErrNotSupported if pin does not support interrupts;
sl@0
   254
            KErrGeneral, if there is no ISR bound to this interrupt.
sl@0
   255
    */
sl@0
   256
	IMPORT_C static TInt EnableInterrupt(TInt aId);
sl@0
   257
sl@0
   258
    /**
sl@0
   259
    Disables the interrupt on specified pin.
sl@0
   260
    
sl@0
   261
    @param aId  The pin Id.
sl@0
   262
    
sl@0
   263
    @return KErrNone, if successful; 
sl@0
   264
            KErrArgument, if aId is invalid;
sl@0
   265
            KErrNotSupported if pin does not support interrupts;
sl@0
   266
            KErrGeneral, if there is no ISR bound to this interrupt.
sl@0
   267
    */
sl@0
   268
	IMPORT_C static TInt DisableInterrupt(TInt aId);
sl@0
   269
sl@0
   270
    /**
sl@0
   271
    Checks if interrupt is enabled on pin.
sl@0
   272
    
sl@0
   273
    @param aId     The pin Id.
sl@0
   274
    @param aEnable On return contains the enable/disable state of interrupt 
sl@0
   275
 								       		 (TRUE=enabled).
sl@0
   276
    
sl@0
   277
    @return KErrNone, if successful; 
sl@0
   278
            KErrArgument, if aId is invalid;
sl@0
   279
            KErrNotSupported if pin does not support interrupts;
sl@0
   280
            KErrGeneral, if there is no ISR bound to this interrupt.
sl@0
   281
    */
sl@0
   282
	IMPORT_C static TInt IsInterruptEnabled(TInt aId, TBool& aEnable);
sl@0
   283
sl@0
   284
    /**
sl@0
   285
    Clears any pending interrupt on the specified pin.
sl@0
   286
    
sl@0
   287
    @param aId The pin Id.
sl@0
   288
    
sl@0
   289
    @return KErrNone, if successful;
sl@0
   290
            KErrArgument, if aId is invalid;
sl@0
   291
            KErrNotSupported if clearing interrupt signal is not supported on this
sl@0
   292
 											    pin;
sl@0
   293
            KErrGeneral, if there is no ISR bound to this interrupt.
sl@0
   294
    */
sl@0
   295
	IMPORT_C static TInt ClearInterrupt(TInt aId);
sl@0
   296
sl@0
   297
    /**
sl@0
   298
    Reads the interrupt state as output by the GPIO interrupt controller.
sl@0
   299
    
sl@0
   300
    @param aId     The pin Id.
sl@0
   301
    @param aActive On return contains the state of the interrupt signal as output by
sl@0
   302
 						      GPIO interrupt controller (TRUE=active).
sl@0
   303
sl@0
   304
    @return KErrNone, if successful;
sl@0
   305
            KErrArgument, if aId is invalid;
sl@0
   306
            KErrNotSupported if reading interrupt state is not supported;
sl@0
   307
            KErrGeneral, if there is no ISR bound to this interrupt.
sl@0
   308
    */
sl@0
   309
	IMPORT_C static TInt GetMaskedInterruptState(TInt aId, TBool& aActive);
sl@0
   310
sl@0
   311
    /**
sl@0
   312
    Reads the interrupt state on the specified pin before any masking.
sl@0
   313
    
sl@0
   314
    @param aId     The pin Id.
sl@0
   315
    @param aActive On return contains state of the interrupt signal on the pin
sl@0
   316
 										  (TRUE=active).
sl@0
   317
sl@0
   318
    @return KErrNone, if successful;
sl@0
   319
            KErrArgument, if aId is invalid;
sl@0
   320
            KErrNotSupported if reading raw interrupt state is not supported;
sl@0
   321
            KErrGeneral, if there is no ISR bound to this interrupt.
sl@0
   322
    */
sl@0
   323
	IMPORT_C static TInt GetRawInterruptState(TInt aId, TBool& aActive);
sl@0
   324
sl@0
   325
    /**
sl@0
   326
    Sets the interrupt trigger on the specified pin.
sl@0
   327
    
sl@0
   328
    @param aId      The pin Id.
sl@0
   329
    @param aTrigger The trigger type.
sl@0
   330
sl@0
   331
    @return KErrNone, if successful;
sl@0
   332
            KErrArgument, if aId is invalid;
sl@0
   333
            KErrNotSupported if pin does not support interrupts.
sl@0
   334
    */
sl@0
   335
	IMPORT_C static TInt SetInterruptTrigger(TInt aId, TGpioDetectionTrigger aTrigger);
sl@0
   336
sl@0
   337
    /**
sl@0
   338
    Enables the wakeup on specified pin.
sl@0
   339
    
sl@0
   340
    @param aId  The pin Id.
sl@0
   341
    
sl@0
   342
    @return KErrNone, if successful;
sl@0
   343
            KErrArgument, if aId is invalid;
sl@0
   344
            KErrNotSupported if pin does not support wakeup.
sl@0
   345
    */
sl@0
   346
	IMPORT_C static TInt EnableWakeup(TInt aId);
sl@0
   347
sl@0
   348
    /**
sl@0
   349
    Disables the wakeup on specified pin.
sl@0
   350
    
sl@0
   351
    @param aId  The pin Id.
sl@0
   352
    
sl@0
   353
    @return KErrNone, if successful;
sl@0
   354
            KErrArgument, if aId is invalid;
sl@0
   355
            KErrNotSupported if pin does not support wakeup.
sl@0
   356
    */
sl@0
   357
	IMPORT_C static TInt DisableWakeup(TInt aId);
sl@0
   358
sl@0
   359
    /**
sl@0
   360
    Checks if wakeup is enabled on pin.
sl@0
   361
    
sl@0
   362
    @param aId     The pin Id.
sl@0
   363
    @param aEnable On return contains the enable/disable state of wakeup 
sl@0
   364
 								       		 (TRUE=enabled).
sl@0
   365
    
sl@0
   366
    @return KErrNone, if successful; 
sl@0
   367
            KErrArgument, if aId is invalid;
sl@0
   368
            KErrNotSupported if pin does not support wakeups;
sl@0
   369
    */
sl@0
   370
	IMPORT_C static TInt IsWakeupEnabled(TInt aId, TBool& aEnable);
sl@0
   371
sl@0
   372
    /**
sl@0
   373
    Sets the wakeup trigger on the specified pin.
sl@0
   374
    
sl@0
   375
    @param aId      The pin Id.
sl@0
   376
    @param aTrigger The trigger type.
sl@0
   377
sl@0
   378
    @return KErrNone, if successful;
sl@0
   379
            KErrArgument, if aId is invalid;
sl@0
   380
            KErrNotSupported if pin does not support wakeup.
sl@0
   381
    */
sl@0
   382
	IMPORT_C static TInt SetWakeupTrigger(TInt aId, TGpioDetectionTrigger aTrigger);
sl@0
   383
sl@0
   384
    /**
sl@0
   385
    Sets the debouncing time on the specified pin.
sl@0
   386
    
sl@0
   387
    @param aId    The pin Id.
sl@0
   388
    @param aTime  The debouncing time in microseconds.
sl@0
   389
sl@0
   390
    @return KErrNone, if the time is succesfully changed or no change is needed (see
sl@0
   391
                                                			         below);
sl@0
   392
            KErrArgument, if aId is invalid;
sl@0
   393
            KErrNotSupported if pin does not support debouncing.
sl@0
   394
sl@0
   395
    If the requested time is greater than the common value for the module, the latter
sl@0
   396
    is increased to the value requested.
sl@0
   397
    If the requested time is lesser than the common value for the module then the
sl@0
   398
    common value is unchanged, unless it is set to the value requested on this pin.
sl@0
   399
    */
sl@0
   400
	IMPORT_C static TInt SetDebounceTime(TInt aId, TInt aTime);
sl@0
   401
sl@0
   402
    /**
sl@0
   403
    Reads the debouncing time on the specified pin.
sl@0
   404
    
sl@0
   405
    @param aId    The pin Id.
sl@0
   406
    @param aTime  On return contains the debouncing time in microseconds.
sl@0
   407
sl@0
   408
    @return KErrNone, if successful;
sl@0
   409
            KErrArgument, if aId is invalid;
sl@0
   410
            KErrNotSupported if pin does not support debouncing.
sl@0
   411
    */
sl@0
   412
	IMPORT_C static TInt GetDebounceTime(TInt aId, TInt& aTime);
sl@0
   413
sl@0
   414
    /**
sl@0
   415
    Reads the state of an input (synchronously).
sl@0
   416
    
sl@0
   417
    @param aId    The pin Id.
sl@0
   418
    @param aState On return contains the pin state.
sl@0
   419
sl@0
   420
    @return KErrNone, if successful;
sl@0
   421
            KErrArgument, if aId is invalid.
sl@0
   422
            KErrNotSupported, if reading the state synchronously is not supported.
sl@0
   423
    */
sl@0
   424
	IMPORT_C static TInt GetInputState(TInt aId, TGpioState& aState);
sl@0
   425
sl@0
   426
    /**
sl@0
   427
    Sets the output pin to one of the supported states (synchronously).
sl@0
   428
    
sl@0
   429
    @param aId    The pin Id.
sl@0
   430
    @param aState The pin state.
sl@0
   431
sl@0
   432
    @return KErrNone, if successful;
sl@0
   433
			KErrArgument, if aId is invalid;
sl@0
   434
            KErrNotSupported, if the state is not supported or if setting its state synchronously is not supported.
sl@0
   435
    */
sl@0
   436
	IMPORT_C static TInt SetOutputState(TInt aId, TGpioState aState);
sl@0
   437
sl@0
   438
    /**
sl@0
   439
    Reads the output pin states (synchronously).
sl@0
   440
    
sl@0
   441
    @param aId    The pin Id.
sl@0
   442
    @param aState On return contains the pin state. On systems where the state of an
sl@0
   443
 			 ouptut pin cannot be read directly from hardware, or takes a non
sl@0
   444
			 negligible time to be retrieved, the implementation must cache it.
sl@0
   445
sl@0
   446
    @return KErrNone, if successful; 
sl@0
   447
            KErrArgument, if aId is invalid.
sl@0
   448
    */
sl@0
   449
	IMPORT_C static TInt GetOutputState(TInt aId, TGpioState& aState);
sl@0
   450
sl@0
   451
    /**
sl@0
   452
    Reads the state of an input (asynchronously).
sl@0
   453
    
sl@0
   454
    @param aId    The pin Id.
sl@0
   455
    @param aCb    A pointer to a GPIO callback object.
sl@0
   456
sl@0
   457
    @return KErrNone, if accepted;
sl@0
   458
            KErrArgument, if aId is invalid.
sl@0
   459
            KErrNotSupported, if reading the state asynchronously is not supported.
sl@0
   460
sl@0
   461
	This API should be used with off-chip GPIO modules only;
sl@0
   462
	The result of the read operation and the state of the input pin will be passed as an argument to the callback function;
sl@0
   463
    */
sl@0
   464
	IMPORT_C static TInt GetInputState(TInt aId, TGpioCallback* aCb);
sl@0
   465
sl@0
   466
    /**
sl@0
   467
    Sets the output pin to one of the supported states (asynchronously).
sl@0
   468
    
sl@0
   469
    @param aId    The pin Id.
sl@0
   470
    @param aState The pin state.
sl@0
   471
    @param aCb    A pointer to a GPIO callback object.
sl@0
   472
sl@0
   473
    @return KErrNone, if accepted;
sl@0
   474
			KErrArgument, if aId is invalid;
sl@0
   475
            KErrNotSupported, if setting its state asynchronously is not supported.
sl@0
   476
sl@0
   477
    This API should be used with off-chip GPIO modules only;
sl@0
   478
	The result of the set operation will be passed as an argument to the callback function;
sl@0
   479
    */
sl@0
   480
	IMPORT_C static TInt SetOutputState(TInt aId, TGpioState aState, TGpioCallback* aCb);
sl@0
   481
sl@0
   482
	/**
sl@0
   483
    Allows the platform specific implementation to extend the API.
sl@0
   484
sl@0
   485
    @param aId        The pin Id.
sl@0
   486
	@param aCmd       A PSL extension function id.
sl@0
   487
	@param aArg1      An argument to be passed to the PSL extension function.
sl@0
   488
	@param aArg2      An argument to be passed to the PSL extension function.
sl@0
   489
sl@0
   490
    @return KErrNone, if accepted;
sl@0
   491
			KErrArgument, if aId is invalid;
sl@0
   492
            KErrNotSupported, if static extensions are not supported.
sl@0
   493
			Any other system wide error code.
sl@0
   494
    */
sl@0
   495
	IMPORT_C static TInt StaticExtension(TInt aId, TInt aCmd, TAny* aArg1, TAny* aArg2);
sl@0
   496
	};
sl@0
   497
sl@0
   498
/**
sl@0
   499
@publishedPartner
sl@0
   500
@prototype 9.6
sl@0
   501
sl@0
   502
GPIO asynchronous callback function
sl@0
   503
*/
sl@0
   504
typedef void (*TGpioCbFn)(TInt				/*aPinId*/,
sl@0
   505
						  GPIO::TGpioState	/*aState*/,
sl@0
   506
                          TInt				/*aResult*/,
sl@0
   507
                          TAny*				/*aParam*/);
sl@0
   508
/**
sl@0
   509
@publishedPartner
sl@0
   510
@prototype 9.6
sl@0
   511
sl@0
   512
GPIO asynchronous callback DFC
sl@0
   513
The client must create one of these to be passed to each asynchronous call to GetInputState and SetOutputState
sl@0
   514
The callback function is called in the context supplied by the client when creating an object of this kind (aQue)
sl@0
   515
The callback function takes as arguments the pin id and the state, so it can be common to all TGpioCallback
sl@0
   516
*/
sl@0
   517
class TGpioCallback : public TDfc
sl@0
   518
	{
sl@0
   519
public:
sl@0
   520
	inline TGpioCallback(TGpioCbFn aFn, TAny* aPtr, TDfcQue* aQue, TInt aPriority) : TDfc(DfcFunc, this, aQue, aPriority), iParam(aPtr), iCallback(aFn) 
sl@0
   521
			{}
sl@0
   522
private:
sl@0
   523
    inline static void DfcFunc(TAny* aPtr)
sl@0
   524
        {
sl@0
   525
        TGpioCallback* pCb = (TGpioCallback*) aPtr;
sl@0
   526
        pCb->iCallback(pCb->iPinId, pCb->iState, pCb->iResult, pCb->iParam);
sl@0
   527
        }
sl@0
   528
public:
sl@0
   529
	TInt iPinId;		// the Id of the pin on which the asynchronous operation is performed
sl@0
   530
	GPIO::TGpioState iState;	// either the state the output pin should be moved to or the state the input pin is at
sl@0
   531
	TInt iResult;		// the result of this transaction as a system wide error
sl@0
   532
	TAny* iParam;
sl@0
   533
	TGpioCbFn iCallback;
sl@0
   534
	};
sl@0
   535
sl@0
   536
#endif /*__GPIO_H__*/
sl@0
   537