Update contrib.
2 * Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of the License "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
15 * e32/include/drivers/iic_transaction.h
19 // WARNING: This file contains some APIs which are internal and are subject
20 // to change without notice. Such APIs should therefore not be used
21 // outside the Kernel and Hardware Services package.
28 #ifndef __IIC_TRANSACTION_H__
29 #define __IIC_TRANSACTION_H__
31 #include <kernel/kern_priv.h> // for DThread;
34 static const char KIicPanic[]="Iic PIL";
36 const TInt KNumTrancPriorities=8;
37 const TUint8 KTransactionWithPreamble = 0x80;
38 const TUint8 KTransactionWithMultiTransc = 0x40;
41 static const TUint KCtrlIoDumpChan = 1; // StaticExtension value reserved for printing a channel
48 The set of endianness values for use with IIC buses
61 The set of bit-order values for use with IIC buses
71 // Bus-specific configuration for SPI bus
78 The set of word-width values for use with TConfigSpiV01
95 The set of clock mode values for use with TConfigSpiV01
102 ESpiPolarityLowRisingEdge, // Active high, odd edges
103 ESpiPolarityLowFallingEdge, // Active high, even edges
104 ESpiPolarityHighFallingEdge, // Active low, odd edges
105 ESpiPolarityHighRisingEdge // Active low, even edges
112 The set of values to represent the pin sense when selecting a Slave
119 ESpiCSPinActiveLow, // Active low
120 ESpiCSPinActiveHigh // Active high
127 Class to represent the configuration data for a SPI bus channel registered with IIC
133 TSpiWordWidth iWordWidth;
135 TSpiClkMode iClkMode;
136 TInt32 iTimeoutPeriod;
137 TEndianness iEndianness;
139 TUint iTransactionWaitCycles;
140 TSpiSsPinMode iSSPinActiveMode;
143 typedef TPckgBuf <TConfigSpiV01> TConfigSpiBufV01;
147 // Bus-specific configuration for I2C bus
154 The set of address types for use with TConfigI2cV01
170 Class to represent the configuration data for a I2C bus channel registered with IIC
176 TI2cAddrType iAddrType; // 7 or 10-bit addressing
178 TEndianness iEndianness;
179 TInt32 iTimeoutPeriod;
182 typedef TPckgBuf <TConfigI2cV01> TConfigI2cBufV01;
186 // Bus realisation configuration
188 // 31 30 29 28 | 27 26 25 24 | 23 22 21 20 | 19 18 17 16 | 15 14 13 12 | 11 10 9 8 | 7 6 5 4 | 3 2 1 0
190 // 31:29 - HS Master address (I2C only)
191 // 28 - HS address valid bit
194 // 19:15 - Channel number
195 // 14:10 - Transaction speed
196 // 9:0 - Slave address
197 #define HS_MASTER_ADDR_SHIFT 29
198 #define HS_MASTER_ADDR_MASK 0x7
199 #define HS_ADDR_VALID_SHIFT 28
200 #define HS_ADDR_VALID_MASK 0x1
201 #define BUS_TYPE_SHIFT 20
202 #define BUS_TYPE_MASK 0x7
203 #define CHANNEL_NO_SHIFT 15
204 #define CHANNEL_NO_MASK 0x1F
205 #define TRANS_SPEED_SHIFT 10
206 #define TRANS_SPEED_MASK 0x1F
207 #define SLAVE_ADDR_SHIFT 0
208 #define SLAVE_ADDR_MASK 0x3FF
210 // The SET_CONF_FIELD and GET_CONF_FIELD are for internal use, only.
211 // They are to support the set of macros below which access particular fields of the Bus realisation configuration
212 #define SET_CONF_FIELD(aBusId,aField,aMask,aShift) aBusId=(aBusId&~(aMask<<aShift))|((aField&aMask)<<aShift);
213 #define GET_CONF_FIELD(aBusId,aMask,aShift) (((aBusId)>>(aShift))&(aMask))
218 Macro to get the HS Master address of a Bus realisation configuration
220 #define GET_HS_MASTER_ADDR(aBusId) GET_CONF_FIELD(aBusId,HS_MASTER_ADDR_MASK,HS_MASTER_ADDR_SHIFT)
224 Macro to set the HS Master address of a Bus realisation configuration
226 #define SET_HS_MASTER_ADDR(aBusId,aHsMasterAddr) SET_CONF_FIELD(aBusId,aHsMasterAddr,HS_MASTER_ADDR_MASK,HS_MASTER_ADDR_SHIFT)
230 Macro to get the HS address valid bit of a Bus realisation configuration
232 #define GET_HS_VALID(aBusId,aHsValid) GET_CONF_FIELD(aBusId,aHsValid,HS_ADDR_VALID_MASK,HS_ADDR_VALID_SHIFT)
236 Macro to set the HS address valid bit of a Bus realisation configuration
238 #define SET_HS_VALID(aBusId,aHsValid) SET_CONF_FIELD(aBusId,aHsValid,HS_ADDR_VALID_MASK,HS_ADDR_VALID_SHIFT)
242 Macro to get the Bus type of a Bus realisation configuration
244 #define GET_BUS_TYPE(aBusId) GET_CONF_FIELD(aBusId,BUS_TYPE_MASK,BUS_TYPE_SHIFT)
248 Macro to set the Bus type of a Bus realisation configuration
250 #define SET_BUS_TYPE(aBusId,aBusType) SET_CONF_FIELD(aBusId,aBusType,BUS_TYPE_MASK,BUS_TYPE_SHIFT)
254 Macro to get the Channel number of a Bus realisation configuration
256 #define GET_CHAN_NUM(aBusId) GET_CONF_FIELD(aBusId,CHANNEL_NO_MASK,CHANNEL_NO_SHIFT)
260 Macro to set the Channel number of a Bus realisation configuration
262 #define SET_CHAN_NUM(aBusId,aChanNum) SET_CONF_FIELD(aBusId,aChanNum,CHANNEL_NO_MASK,CHANNEL_NO_SHIFT)
266 Macro to set the Transaction speed of a Bus realisation configuration
268 #define SET_TRANS_SPEED(aBusId,aTransSpeed) SET_CONF_FIELD(aBusId,aTransSpeed,TRANS_SPEED_MASK,TRANS_SPEED_SHIFT)
272 Macro to get the Transaction speed of a Bus realisation configuration
274 #define GET_TRANS_SPEED(aBusId) GET_CONF_FIELD(aBusId,TRANS_SPEED_MASK,TRANS_SPEED_SHIFT)
278 Macro to set the Slave address of a Bus realisation configuration
280 #define SET_SLAVE_ADDR(aBusId,aSlaveAddr) SET_CONF_FIELD(aBusId,aSlaveAddr,SLAVE_ADDR_MASK,SLAVE_ADDR_SHIFT)
284 Macro to get the Slave address of a Bus realisation configuration
286 #define GET_SLAVE_ADDR(aBusId) GET_CONF_FIELD(aBusId,SLAVE_ADDR_MASK,SLAVE_ADDR_SHIFT)
289 // The SET_CONFIG_FIELD and GET_CONFIG_FIELD are for internal use, only.
290 // They are to support the TIicBusRealisation class
291 // These macros should be considered deprecated - they will be removed when the TIicBusRealisation class is removed
292 #define SET_CONFIG_FIELD(aField,aMask,aShift) iConfig=(iConfig&~(aMask<<aShift))|((aField&aMask)<<aShift)
293 #define GET_CONFIG_FIELD(aField,aMask,aShift) aField=((iConfig>>aShift)&aMask)
299 Class to represent and provide access to configuration data used on a per-transaction basis with IIC
302 class TIicBusRealisationConfig
305 // default constructor - just resets the value..
306 inline TIicBusRealisationConfig() : iConfig(0) {}
308 inline TIicBusRealisationConfig& operator=(const TIicBusRealisationConfig &aObj){iConfig = aObj.GetConfig(); return *this;}
310 inline void Clear() {iConfig = 0;}
311 inline TUint32 GetConfig() const {return iConfig;}
312 inline void SetConfig(TUint32 aConfig) {iConfig = aConfig;}
314 inline void SetHsMasterAddr(TUint8 aHsMasterAddr) {SET_CONFIG_FIELD(aHsMasterAddr,HS_MASTER_ADDR_MASK,HS_MASTER_ADDR_SHIFT);};
315 inline void GetHsMasterAddr(TUint8& aHsMasterAddr) const {{TUint32 tempVar;GET_CONFIG_FIELD(tempVar,HS_MASTER_ADDR_MASK,HS_MASTER_ADDR_SHIFT);aHsMasterAddr=(TUint8)tempVar;};};
317 inline void SetHsValid(TUint8 aHsValid) {SET_CONFIG_FIELD(aHsValid,HS_ADDR_VALID_MASK,HS_ADDR_VALID_SHIFT);};
318 inline void GetHsValid(TUint8& aHsValid) const{{TUint32 tempVar;GET_CONFIG_FIELD(tempVar,HS_ADDR_VALID_MASK,HS_ADDR_VALID_SHIFT);aHsValid=(TUint8)tempVar;};};
320 inline void SetBusType(TUint8 aBusType) {SET_CONFIG_FIELD(aBusType,BUS_TYPE_MASK,BUS_TYPE_SHIFT);};
321 inline void GetBusType(TUint8& aBusType) const {{TUint32 tempVar;GET_CONFIG_FIELD(tempVar,BUS_TYPE_MASK,BUS_TYPE_SHIFT);aBusType=(TUint8)tempVar;};};
323 inline void SetChanNum(TUint8 aChanNum) {SET_CONFIG_FIELD(aChanNum,CHANNEL_NO_MASK,CHANNEL_NO_SHIFT);};
324 inline void GetChanNum(TUint8& aChanNum) const {{TUint32 tempVar;GET_CONFIG_FIELD(tempVar,CHANNEL_NO_MASK,CHANNEL_NO_SHIFT);aChanNum=(TUint8)tempVar;};};
326 inline void SetTransSpeed(TUint8 aTransSpeed) {SET_CONFIG_FIELD(aTransSpeed,TRANS_SPEED_MASK,TRANS_SPEED_SHIFT);};
327 inline void GetTransSpeed(TUint8& aTransSpeed) const {{TUint32 tempVar;GET_CONFIG_FIELD(tempVar,TRANS_SPEED_MASK,TRANS_SPEED_SHIFT);aTransSpeed=(TUint8)tempVar;};};
329 inline void SetSlaveAddr(TUint16 aSlaveAddr) {SET_CONFIG_FIELD(aSlaveAddr,SLAVE_ADDR_MASK,SLAVE_ADDR_SHIFT);};
330 inline void GetSlaveAddr(TUint16& aSlaveAddr) const {{TUint32 tempVar;GET_CONFIG_FIELD(tempVar,SLAVE_ADDR_MASK,SLAVE_ADDR_SHIFT);aSlaveAddr=(TUint16)tempVar;};};
337 // Forward declarations
338 class TIicBusTransaction;
339 class DIicBusChannelMaster;
349 Class to represent and provide access to configuration data used on a per-transaction basis with IIC
351 @see TIicBusTransaction
354 class TIicBusTransfer
362 // the client interface for creating and linking simple requests
363 // default constructor..
364 inline TIicBusTransfer();
365 inline TIicBusTransfer(TReqType aType, TInt8 aGranularity, TDes8* aBuffer);
366 inline void LinkAfter(TIicBusTransfer* aPrev);
367 inline TInt8 WordWidth();
368 inline TReqType Direction();
369 inline TInt Length();
370 inline const TIicBusTransfer* Next();
372 inline TInt SetTransferData(TReqType aType, TInt8 aGranularity, TDes8* aBuffer);
373 const TDes8* GetBuffer() {return (const TDes8*)iBuffer;}
376 TInt8 iType; // as one of TReqType
377 TInt8 iBufGranularity; // width of a transfer word in bits
379 TDes8* iBuffer; // the data for this transfer (packed into 8-bit words with padding). Access must be guarded for safety.
380 TIicBusTransfer* iNext;
381 TIicBusTransaction* iTransaction; // pointer to the TIicBusTransaction owning the list that this transfer has been added to
383 friend class TIicBusTransaction;
384 friend class DIicBusChannelMaster;
387 const TInt8 KTransferQueued = 0x01;
392 Definition of function prototype for a callback function provided by a client
393 for invocation on the after the client transaction has been processed by a Master
394 channel. The function will be executed in the context of the client thread.
396 @see TIicBusTransaction
399 typedef void (*TIicBusCbFn)(TIicBusTransaction* /*aTransction*/,
404 class TIicBusCallback; // Forward declaration
410 Class to represent a transaction for processing by an IIC Master Channel
415 class TIicBusTransaction : public SOrdQueLink
418 enum TState {EFree,EDelivered,EAccepted};
420 //default constuctor.
421 inline TIicBusTransaction();
423 // the client interface for creating half duplex transactions
424 inline TIicBusTransaction(TDes8* aHeader, TIicBusTransfer* aHdTrans, TInt aPriority=0);
425 inline ~TIicBusTransaction();
426 inline TInt SetHalfDuplexTrans(TDes8* aHeader, TIicBusTransfer* aHdTrans);
428 // The client interface for setting full duplex transaction: the API checks that it is possible to have the 2 transactions done in parallel.
429 // It does not check if the channel supports full duplex, so the transaction may still fail at queuing time.
430 inline TInt SetFullDuplexTrans(TIicBusTransfer* aFdTrans);
431 inline TInt RemoveTrans(TIicBusTransfer* aTrans);
432 // Client interface to explicitly disassociate transfer lists from the transaction, when the
433 // transaction is in state EFree.
434 // These methods are for optional use. If the transfer list will not be further accessed,
435 // then there is no need to explicitly disassociate it from a transaction. However, if
436 // it will be accessed again its iTransaction pointer will refer to this object, so should
437 // be cleared to prevent corruption - and this is the purpose of these methods.
438 inline TInt RemoveHalfDuplexTrans();
439 inline TInt RemoveFullDuplexTrans();
441 // Accessor method to allow PSL access to iFlags to determine transaction type
442 inline TUint Flags();
444 inline TIicBusTransaction(TDes8* aHeader, TIicBusTransfer* aHdTrans, TUint8 aFlags, TInt aPriority=0);
446 inline TUint8 State();
447 inline TInt GetBusId();
450 TUint8 iFlags; // used to indicate if it supports a preamble
454 #ifdef STANDALONE_CHANNEL
455 //iBusId is needed by client when calling QueueTransaction
462 TIicBusTransfer* iHalfDuplexTrans;
463 TIicBusTransfer* iFullDuplexTrans;
464 TIicBusCallback* iCallback;
466 NFastSemaphore iSyncNotification;
468 friend class DIicBusChannelMaster;
469 #ifndef STANDALONE_CHANNEL
470 friend class DIicBusController;
479 Class to represent a callback object for use with asynchronous transactions processed by IIC Master channels
484 class TIicBusCallback : public TDfc
487 inline TIicBusCallback(TIicBusCbFn aFn, TAny* aPtr, TDfcQue* aQue, TInt aPriority);
488 inline ~TIicBusCallback();
490 inline static void DfcFunc(TAny* aPtr);
492 TIicBusTransaction* iTransaction;
494 TInt iResult; // the result of this transaction as a system wide error
496 TIicBusCbFn iCallback;
498 friend class DIicBusChannelMaster;
501 // Forward declarations
502 class DIicBusChannelSlave;
503 class TIicBusSlaveCallback;
509 Definition of function prototype for a callback function provided by a client
510 for invocation when an asynchronous event (such as a notification, or completion
511 of the asynchronous capture of a channel) occurs for a Slave channel.
516 typedef void (*TIicBusSlaveCbFn)(TInt /*aChannelId*/,
527 A Slave callback notification object.
528 It wraps a DFC in client's thread which is queued by the channel generic implementation
529 when the transfer are completed asynchronously (e.g. in ISR).
530 Alternatively, if the entire transaction is processed synchronously in the client's thread,
531 the callback function will be called directly.
536 NONSHARABLE_CLASS(TIicBusSlaveCallback) : public TDfc
539 inline TIicBusSlaveCallback(TIicBusSlaveCbFn aFn, TAny* aPtr, TDfcQue* aQue, TInt aPriority);
540 inline void SetReturn(TInt aRet); // to be used by PSL
541 inline void SetTxWords(TInt16 aTxWords); // to be used by PSL
542 inline void SetRxWords(TInt16 aRxWords); // to be used by PSL
544 inline TInt GetTrigger(); // to be used by PSL
545 inline void SetTrigger(TInt aTrigger); // to be used by PSL
548 IMPORT_C static void DfcFunc(TAny* aPtr);
552 TInt iReturn; // a system wide error code
553 TInt iTrigger; // a bitmask containing the reason(s) why this callback was queued (see TIicBusSlaveTrigger)
554 TInt16 iRxWords; // number of words received
555 TInt16 iTxWords; // number of words transmitted
557 DIicBusChannelSlave* iChannel;
558 TIicBusSlaveCbFn iCallback;
560 friend class DIicBusChannelSlave;
567 Prototype function pointer for a client supplied preamble:
568 The supplied function shall not:
570 - block or wait on a fast mutex
571 - use any Kernel or base port services that do any of the above (e.g. alloc/free memory,
572 signal a DMutex, complete a request, access user side memory)
577 typedef void (*TIicBusPreamble)(TIicBusTransaction* /*aTransaction*/,
584 Transaction which support preamble
586 @see TIicBusTransaction
589 class TIicBusTransactionPreamble : public TIicBusTransaction
592 // the client interface for creating transactions that support a preamble
593 inline TIicBusTransactionPreamble(TDes8* aHeader, TIicBusTransfer* aHdTrans, TIicBusPreamble aPreamble, TAny* aArg, TInt aPriority=0);
595 TIicBusPreamble iPreamble; // preamble function pointer
596 TAny* iPreambleArg; // argument to be passed to preamble
598 inline TIicBusTransactionPreamble(TDes8* aHeader, TIicBusTransfer* aHdTrans, TIicBusPreamble aPreamble, TAny* aArg, TUint8 aFlags, TInt aPriority=0);
599 friend class DIicBusChannelMaster;
606 Prototype function pointer for a client supplied multi transaction callback.
607 The function should return a pointer to a new transaction which will be send
608 within the same request. The function is called in the channel thread after
609 calling channel PSL DoRequest
611 @see TIicBusTransaction
614 typedef TIicBusTransaction* (*TIicBusMultiTranscCbFn) (
615 TIicBusTransaction* /*aTransaction*/,
622 Transaction which support multi-transaction
624 @see TIicBusTransaction
627 class TIicBusTransactionMultiTransc : public TIicBusTransaction
630 inline TIicBusTransactionMultiTransc(TDes8* aHeader, TIicBusTransfer* aHdTrans, TIicBusMultiTranscCbFn aMultiTransc, TAny* aArg, TInt aPriority=0);
632 TIicBusMultiTranscCbFn iMultiTransc;
633 TAny* iMultiTranscArg;
634 friend class DIicBusChannelMaster;
641 Transaction which support both preamble and multi-transaction
643 @see TIicBusTransactionPreamble
646 class TIicBusTransactionPreambleExt : public TIicBusTransactionPreamble
649 inline TIicBusTransactionPreambleExt(TDes8* aHeader, TIicBusTransfer* aHdTrans,
650 TIicBusPreamble aPreamble, TAny* aPreambleArg,
651 TIicBusMultiTranscCbFn aMultiTransc, TAny* aMultiTranscArg, TInt aPriority=0);
653 TIicBusMultiTranscCbFn iMultiTransc;
654 TAny* iMultiTranscArg;
655 friend class DIicBusChannelMaster;
663 Enumeration of IIC Slave channel trigger values
667 enum TIicBusSlaveTrigger
669 ERxAllBytes = 0x01, // Master has written the required number of bytes
670 ERxUnderrun = 0x02, // Master has written less than the required number of bytes, and ceased transmitting
671 ERxOverrun = 0x04, // Master has written the required number of bytes and is continuing to transmit
672 ETxAllBytes = 0x08, // Master has read the required number of bytes
673 ETxUnderrun = 0x10, // Master has read the required number of bytes and is continuing to read
674 ETxOverrun = 0x20, // Master has read less than the required number of bytes, and ceased reading
675 EGeneralBusError = 0x40, // An error has occurred during a transaction
676 EAsyncCaptChan = 0x80 // Completion of asynchronous CaptureChannel
679 #include <drivers/iic_transaction.inl>
681 #endif // __IIC_TRANSACTION_H__