Update contrib.
1 // Copyright (c) 2008-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.
14 // e32\include\drivers\gpio.h
21 class TGpioCallback; //forward declaration
27 GPIO interrupt handler
28 Takes a generic argument (TAny*)
30 typedef void (*TGpioIsr)(TAny*);
42 GPIO pin modes (to be requested on any pin):
55 GPIO pin directions (to be requested on any pin):
68 GPIO pin states (to be set on an output or read from an input or output):
71 - state compatible with idling the pin (module)
81 GPIO programmable bias:
94 GPIO interrupt and/or wakeup triger configuration (to be requested on an input
95 that supports interrupts or wakeup function):
96 - Level triggered, low level,
97 - Level triggered, high level,
98 - Edge triggered, falling edge,
99 - Edge triggered, rising edge,
100 - Edge triggered, both edges,
102 enum TGpioDetectionTrigger
114 @param aId The pin Id.
115 @param aMode The pin mode.
117 @return KErrNone, if successful; KErrArgument, if aId is invalid;
118 KErrNotReady, when a pin that has requested to be Idle is not ready to do
120 KErrNotSupported, if a pin cannot be used as a GPIO because it has been
121 assigned an alternative function.
123 When disabling a pin, the module which the pin is a part of may not be disabled,
124 but KErrNone is still returned.
126 IMPORT_C static TInt SetPinMode(TInt aId, TGpioMode aMode);
131 @param aId The pin Id.
132 @param aMode On return contains the pin mode.
134 @return KErrNone, if successful; KErrArgument, if aId is invalid;
135 KErrNotSupported, if reading the pin mode is not supported.
137 IMPORT_C static TInt GetPinMode(TInt aId, TGpioMode& aMode);
140 Sets the pin direction.
142 @param aId The pin Id.
143 @param aDirection The pin direction.
145 @return KErrNone, if successful; KErrArgument, if aId is invalid;
146 KErrNotSupported, if a pin cannot operate in the direction specified.
148 IMPORT_C static TInt SetPinDirection(TInt aId, TGpioDirection aDirection);
151 Reads the pin direction.
153 @param aId The pin Id.
154 @param aDirection On return contains the pin direction.
156 @return KErrNone, if successful; KErrArgument, if aId is invalid;
157 KErrNotSupported, if reading the pin direction is not supported.
159 IMPORT_C static TInt GetPinDirection(TInt aId, TGpioDirection& aDirection);
162 Sets the bias on a pin.
164 @param aId The pin Id.
165 @param aBias The drive on the pin.
167 @return KErrNone, if successful; KErrArgument, if aId is invalid;
168 KErrNotSupported, if a pin does not support setting the drive.
170 IMPORT_C static TInt SetPinBias(TInt aId, TGpioBias aBias);
173 Reads the bias on a pin.
175 @param aId The pin Id.
176 @param aBias On return contains the bias previoulsy set on the pin (or the
177 default bias if first time).
179 @return KErrNone, if successful;
180 KErrArgument, if aId is invalid;
181 KErrNotSupported, if reading the pin bias is not supported.
183 IMPORT_C static TInt GetPinBias(TInt aId, TGpioBias& aBias);
186 Sets the idle configuration and state. The pin configuration is the
187 same that the pin should have when setting the mode to EIdle and the
188 state same it should present when setting the output state to EIdleState.
190 @param aId The pin Id.
191 @param aConf An implementation specific token specifying the idle
192 configration and state.
194 @return KErrNone, if successful;
195 KErrArgument, if aId is invalid;
196 KErrNotSupported, if setting the pin idle configuration and state
199 IMPORT_C static TInt SetPinIdleConfigurationAndState(TInt aId, TInt aConf);
202 Reads the pin idle configuration and state.
204 @param aId The pin Id.
205 @param aConf On return contains the idle configuration and state previoulsy
208 @return KErrNone, if successful;
209 KErrArgument, if aId is invalid;
210 KErrNotSupported, if reading the pin idle configuration and state
213 IMPORT_C static TInt GetPinIdleConfigurationAndState(TInt aId, TInt& aConf);
216 Associates the specified interrupt service routine (ISR) function with the
217 specified interrupt Id.
219 @param aId The pin Id.
220 @param anIsr The address of the ISR function.
221 @param aPtr 32-bit value that is passed to the ISR.
222 This is designated a TAny* type as it is usually a pointer to the
223 owning class or data to be used in the ISR, although it can be any
226 @return KErrNone, if successful;
227 KErrArgument, if aId is invalid;
228 KErrNotSupported if pin does not support interrupts;
229 KErrInUse, if an ISR is already bound to this interrupt.
231 IMPORT_C static TInt BindInterrupt(TInt aId, TGpioIsr aIsr, TAny* aPtr);
234 Unbinds the interrupt service routine (ISR) function from the specified interrupt
237 @param aId The pin Id.
239 @return KErrNone, if successful;
240 KErrArgument, if aId is invalid;
241 KErrNotSupported if pin does not support interrupts;
242 KErrGeneral, if there is no ISR bound to this interrupt.
244 IMPORT_C static TInt UnbindInterrupt(TInt aId);
247 Enables the interrupt on specified pin.
249 @param aId The pin Id.
251 @return KErrNone, if successful;
252 KErrArgument, if aId is invalid;
253 KErrNotSupported if pin does not support interrupts;
254 KErrGeneral, if there is no ISR bound to this interrupt.
256 IMPORT_C static TInt EnableInterrupt(TInt aId);
259 Disables the interrupt on specified pin.
261 @param aId The pin Id.
263 @return KErrNone, if successful;
264 KErrArgument, if aId is invalid;
265 KErrNotSupported if pin does not support interrupts;
266 KErrGeneral, if there is no ISR bound to this interrupt.
268 IMPORT_C static TInt DisableInterrupt(TInt aId);
271 Checks if interrupt is enabled on pin.
273 @param aId The pin Id.
274 @param aEnable On return contains the enable/disable state of interrupt
277 @return KErrNone, if successful;
278 KErrArgument, if aId is invalid;
279 KErrNotSupported if pin does not support interrupts;
280 KErrGeneral, if there is no ISR bound to this interrupt.
282 IMPORT_C static TInt IsInterruptEnabled(TInt aId, TBool& aEnable);
285 Clears any pending interrupt on the specified pin.
287 @param aId The pin Id.
289 @return KErrNone, if successful;
290 KErrArgument, if aId is invalid;
291 KErrNotSupported if clearing interrupt signal is not supported on this
293 KErrGeneral, if there is no ISR bound to this interrupt.
295 IMPORT_C static TInt ClearInterrupt(TInt aId);
298 Reads the interrupt state as output by the GPIO interrupt controller.
300 @param aId The pin Id.
301 @param aActive On return contains the state of the interrupt signal as output by
302 GPIO interrupt controller (TRUE=active).
304 @return KErrNone, if successful;
305 KErrArgument, if aId is invalid;
306 KErrNotSupported if reading interrupt state is not supported;
307 KErrGeneral, if there is no ISR bound to this interrupt.
309 IMPORT_C static TInt GetMaskedInterruptState(TInt aId, TBool& aActive);
312 Reads the interrupt state on the specified pin before any masking.
314 @param aId The pin Id.
315 @param aActive On return contains state of the interrupt signal on the pin
318 @return KErrNone, if successful;
319 KErrArgument, if aId is invalid;
320 KErrNotSupported if reading raw interrupt state is not supported;
321 KErrGeneral, if there is no ISR bound to this interrupt.
323 IMPORT_C static TInt GetRawInterruptState(TInt aId, TBool& aActive);
326 Sets the interrupt trigger on the specified pin.
328 @param aId The pin Id.
329 @param aTrigger The trigger type.
331 @return KErrNone, if successful;
332 KErrArgument, if aId is invalid;
333 KErrNotSupported if pin does not support interrupts.
335 IMPORT_C static TInt SetInterruptTrigger(TInt aId, TGpioDetectionTrigger aTrigger);
338 Enables the wakeup on specified pin.
340 @param aId The pin Id.
342 @return KErrNone, if successful;
343 KErrArgument, if aId is invalid;
344 KErrNotSupported if pin does not support wakeup.
346 IMPORT_C static TInt EnableWakeup(TInt aId);
349 Disables the wakeup on specified pin.
351 @param aId The pin Id.
353 @return KErrNone, if successful;
354 KErrArgument, if aId is invalid;
355 KErrNotSupported if pin does not support wakeup.
357 IMPORT_C static TInt DisableWakeup(TInt aId);
360 Checks if wakeup is enabled on pin.
362 @param aId The pin Id.
363 @param aEnable On return contains the enable/disable state of wakeup
366 @return KErrNone, if successful;
367 KErrArgument, if aId is invalid;
368 KErrNotSupported if pin does not support wakeups;
370 IMPORT_C static TInt IsWakeupEnabled(TInt aId, TBool& aEnable);
373 Sets the wakeup trigger on the specified pin.
375 @param aId The pin Id.
376 @param aTrigger The trigger type.
378 @return KErrNone, if successful;
379 KErrArgument, if aId is invalid;
380 KErrNotSupported if pin does not support wakeup.
382 IMPORT_C static TInt SetWakeupTrigger(TInt aId, TGpioDetectionTrigger aTrigger);
385 Sets the debouncing time on the specified pin.
387 @param aId The pin Id.
388 @param aTime The debouncing time in microseconds.
390 @return KErrNone, if the time is succesfully changed or no change is needed (see
392 KErrArgument, if aId is invalid;
393 KErrNotSupported if pin does not support debouncing.
395 If the requested time is greater than the common value for the module, the latter
396 is increased to the value requested.
397 If the requested time is lesser than the common value for the module then the
398 common value is unchanged, unless it is set to the value requested on this pin.
400 IMPORT_C static TInt SetDebounceTime(TInt aId, TInt aTime);
403 Reads the debouncing time on the specified pin.
405 @param aId The pin Id.
406 @param aTime On return contains the debouncing time in microseconds.
408 @return KErrNone, if successful;
409 KErrArgument, if aId is invalid;
410 KErrNotSupported if pin does not support debouncing.
412 IMPORT_C static TInt GetDebounceTime(TInt aId, TInt& aTime);
415 Reads the state of an input (synchronously).
417 @param aId The pin Id.
418 @param aState On return contains the pin state.
420 @return KErrNone, if successful;
421 KErrArgument, if aId is invalid.
422 KErrNotSupported, if reading the state synchronously is not supported.
424 IMPORT_C static TInt GetInputState(TInt aId, TGpioState& aState);
427 Sets the output pin to one of the supported states (synchronously).
429 @param aId The pin Id.
430 @param aState The pin state.
432 @return KErrNone, if successful;
433 KErrArgument, if aId is invalid;
434 KErrNotSupported, if the state is not supported or if setting its state synchronously is not supported.
436 IMPORT_C static TInt SetOutputState(TInt aId, TGpioState aState);
439 Reads the output pin states (synchronously).
441 @param aId The pin Id.
442 @param aState On return contains the pin state. On systems where the state of an
443 ouptut pin cannot be read directly from hardware, or takes a non
444 negligible time to be retrieved, the implementation must cache it.
446 @return KErrNone, if successful;
447 KErrArgument, if aId is invalid.
449 IMPORT_C static TInt GetOutputState(TInt aId, TGpioState& aState);
452 Reads the state of an input (asynchronously).
454 @param aId The pin Id.
455 @param aCb A pointer to a GPIO callback object.
457 @return KErrNone, if accepted;
458 KErrArgument, if aId is invalid.
459 KErrNotSupported, if reading the state asynchronously is not supported.
461 This API should be used with off-chip GPIO modules only;
462 The result of the read operation and the state of the input pin will be passed as an argument to the callback function;
464 IMPORT_C static TInt GetInputState(TInt aId, TGpioCallback* aCb);
467 Sets the output pin to one of the supported states (asynchronously).
469 @param aId The pin Id.
470 @param aState The pin state.
471 @param aCb A pointer to a GPIO callback object.
473 @return KErrNone, if accepted;
474 KErrArgument, if aId is invalid;
475 KErrNotSupported, if setting its state asynchronously is not supported.
477 This API should be used with off-chip GPIO modules only;
478 The result of the set operation will be passed as an argument to the callback function;
480 IMPORT_C static TInt SetOutputState(TInt aId, TGpioState aState, TGpioCallback* aCb);
483 Allows the platform specific implementation to extend the API.
485 @param aId The pin Id.
486 @param aCmd A PSL extension function id.
487 @param aArg1 An argument to be passed to the PSL extension function.
488 @param aArg2 An argument to be passed to the PSL extension function.
490 @return KErrNone, if accepted;
491 KErrArgument, if aId is invalid;
492 KErrNotSupported, if static extensions are not supported.
493 Any other system wide error code.
495 IMPORT_C static TInt StaticExtension(TInt aId, TInt aCmd, TAny* aArg1, TAny* aArg2);
502 GPIO asynchronous callback function
504 typedef void (*TGpioCbFn)(TInt /*aPinId*/,
505 GPIO::TGpioState /*aState*/,
512 GPIO asynchronous callback DFC
513 The client must create one of these to be passed to each asynchronous call to GetInputState and SetOutputState
514 The callback function is called in the context supplied by the client when creating an object of this kind (aQue)
515 The callback function takes as arguments the pin id and the state, so it can be common to all TGpioCallback
517 class TGpioCallback : public TDfc
520 inline TGpioCallback(TGpioCbFn aFn, TAny* aPtr, TDfcQue* aQue, TInt aPriority) : TDfc(DfcFunc, this, aQue, aPriority), iParam(aPtr), iCallback(aFn)
523 inline static void DfcFunc(TAny* aPtr)
525 TGpioCallback* pCb = (TGpioCallback*) aPtr;
526 pCb->iCallback(pCb->iPinId, pCb->iState, pCb->iResult, pCb->iParam);
529 TInt iPinId; // the Id of the pin on which the asynchronous operation is performed
530 GPIO::TGpioState iState; // either the state the output pin should be moved to or the state the input pin is at
531 TInt iResult; // the result of this transaction as a system wide error
536 #endif /*__GPIO_H__*/