os/kernelhwsrv/kernel/eka/include/drivers/iic_transaction.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*
sl@0
     2
* Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     3
* All rights reserved.
sl@0
     4
* This component and the accompanying materials are made available
sl@0
     5
* under the terms of the License "Eclipse Public License v1.0"
sl@0
     6
* which accompanies this distribution, and is available
sl@0
     7
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     8
*
sl@0
     9
* Initial Contributors:
sl@0
    10
* Nokia Corporation - initial contribution.
sl@0
    11
*
sl@0
    12
* Contributors:
sl@0
    13
*
sl@0
    14
* Description:
sl@0
    15
* e32/include/drivers/iic_transaction.h
sl@0
    16
*
sl@0
    17
*/
sl@0
    18
sl@0
    19
// WARNING: This file contains some APIs which are internal and are subject
sl@0
    20
//          to change without notice. Such APIs should therefore not be used
sl@0
    21
//          outside the Kernel and Hardware Services package.
sl@0
    22
sl@0
    23
/**
sl@0
    24
@file
sl@0
    25
@internalTechnology
sl@0
    26
*/
sl@0
    27
sl@0
    28
#ifndef __IIC_TRANSACTION_H__
sl@0
    29
#define __IIC_TRANSACTION_H__
sl@0
    30
sl@0
    31
#include <kernel/kern_priv.h> // for DThread;
sl@0
    32
#include <e32ver.h>
sl@0
    33
sl@0
    34
static const char KIicPanic[]="Iic PIL";
sl@0
    35
sl@0
    36
const TInt KNumTrancPriorities=8;
sl@0
    37
const TUint8 KTransactionWithPreamble = 0x80;
sl@0
    38
const TUint8 KTransactionWithMultiTransc = 0x40;
sl@0
    39
sl@0
    40
#ifdef _DEBUG
sl@0
    41
static const TUint KCtrlIoDumpChan = 1;	// StaticExtension value reserved for printing a channel
sl@0
    42
#endif
sl@0
    43
sl@0
    44
/**
sl@0
    45
@publishedPartner
sl@0
    46
@prototype 9.6
sl@0
    47
sl@0
    48
The set of endianness values for use with IIC buses
sl@0
    49
sl@0
    50
*/
sl@0
    51
enum TEndianness
sl@0
    52
	{
sl@0
    53
	EBigEndian,
sl@0
    54
	ELittleEndian
sl@0
    55
	};
sl@0
    56
sl@0
    57
/**
sl@0
    58
@publishedPartner
sl@0
    59
@prototype 9.6
sl@0
    60
sl@0
    61
The set of bit-order values for use with IIC buses
sl@0
    62
sl@0
    63
*/
sl@0
    64
enum TBitOrder
sl@0
    65
	{
sl@0
    66
	ELsbFirst,
sl@0
    67
	EMsbFirst
sl@0
    68
	};
sl@0
    69
sl@0
    70
//
sl@0
    71
// Bus-specific configuration for SPI bus
sl@0
    72
//
sl@0
    73
sl@0
    74
/**
sl@0
    75
@publishedPartner
sl@0
    76
@prototype 9.6
sl@0
    77
sl@0
    78
The set of word-width values for use with TConfigSpiV01
sl@0
    79
sl@0
    80
@see TConfigSpiV01
sl@0
    81
sl@0
    82
*/
sl@0
    83
enum TSpiWordWidth
sl@0
    84
	{
sl@0
    85
	ESpiWordWidth_8,
sl@0
    86
	ESpiWordWidth_10,
sl@0
    87
	ESpiWordWidth_12,
sl@0
    88
	ESpiWordWidth_16
sl@0
    89
	};
sl@0
    90
sl@0
    91
/**
sl@0
    92
@publishedPartner
sl@0
    93
@prototype 9.6
sl@0
    94
sl@0
    95
The set of clock mode values for use with TConfigSpiV01
sl@0
    96
sl@0
    97
@see TConfigSpiV01
sl@0
    98
sl@0
    99
*/
sl@0
   100
enum TSpiClkMode
sl@0
   101
	{
sl@0
   102
	ESpiPolarityLowRisingEdge,		// Active high, odd edges
sl@0
   103
	ESpiPolarityLowFallingEdge,		// Active high, even edges
sl@0
   104
	ESpiPolarityHighFallingEdge,	// Active low,  odd edges
sl@0
   105
	ESpiPolarityHighRisingEdge		// Active low,  even edges
sl@0
   106
	};
sl@0
   107
sl@0
   108
/**
sl@0
   109
@publishedPartner
sl@0
   110
@prototype 9.6
sl@0
   111
sl@0
   112
The set of values to represent the pin sense when selecting a Slave
sl@0
   113
sl@0
   114
@see TConfigSpiV01
sl@0
   115
sl@0
   116
*/
sl@0
   117
enum TSpiSsPinMode
sl@0
   118
    {
sl@0
   119
    ESpiCSPinActiveLow,      // Active low
sl@0
   120
    ESpiCSPinActiveHigh     // Active high
sl@0
   121
    };
sl@0
   122
sl@0
   123
/**
sl@0
   124
@publishedPartner
sl@0
   125
@prototype 9.6
sl@0
   126
sl@0
   127
Class to represent the configuration data for a SPI bus channel registered with IIC
sl@0
   128
sl@0
   129
*/
sl@0
   130
class TConfigSpiV01
sl@0
   131
	{
sl@0
   132
public:
sl@0
   133
	TSpiWordWidth iWordWidth;
sl@0
   134
	TInt32        iClkSpeedHz;
sl@0
   135
	TSpiClkMode   iClkMode;
sl@0
   136
	TInt32        iTimeoutPeriod;
sl@0
   137
	TEndianness   iEndianness;
sl@0
   138
	TBitOrder     iBitOrder;
sl@0
   139
	TUint         iTransactionWaitCycles;
sl@0
   140
	TSpiSsPinMode iSSPinActiveMode;
sl@0
   141
	};
sl@0
   142
sl@0
   143
typedef TPckgBuf <TConfigSpiV01> TConfigSpiBufV01;
sl@0
   144
sl@0
   145
sl@0
   146
//
sl@0
   147
// Bus-specific configuration for I2C bus
sl@0
   148
//
sl@0
   149
sl@0
   150
/**
sl@0
   151
@publishedPartner
sl@0
   152
@prototype 9.6
sl@0
   153
sl@0
   154
The set of address types for use with TConfigI2cV01
sl@0
   155
sl@0
   156
@see TConfigI2cV01
sl@0
   157
sl@0
   158
*/
sl@0
   159
enum TI2cAddrType
sl@0
   160
	{
sl@0
   161
	EI2cAddr7Bit,
sl@0
   162
	EI2cAddr10Bit
sl@0
   163
	};
sl@0
   164
sl@0
   165
sl@0
   166
/**
sl@0
   167
@publishedPartner
sl@0
   168
@prototype 9.6
sl@0
   169
sl@0
   170
Class to represent the configuration data for a I2C bus channel registered with IIC
sl@0
   171
sl@0
   172
*/
sl@0
   173
class TConfigI2cV01
sl@0
   174
	{
sl@0
   175
	public:
sl@0
   176
	TI2cAddrType	iAddrType;		// 7 or 10-bit addressing
sl@0
   177
	TInt32			iClkSpeedHz;
sl@0
   178
	TEndianness		iEndianness;
sl@0
   179
	TInt32			iTimeoutPeriod;
sl@0
   180
	};
sl@0
   181
sl@0
   182
typedef TPckgBuf <TConfigI2cV01> TConfigI2cBufV01;
sl@0
   183
sl@0
   184
sl@0
   185
sl@0
   186
// Bus realisation configuration
sl@0
   187
//
sl@0
   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
sl@0
   189
//
sl@0
   190
// 31:29 - HS Master address (I2C only)
sl@0
   191
// 28    - HS address valid bit
sl@0
   192
// 27:23 - Reserved
sl@0
   193
// 22:20 - Bus type
sl@0
   194
// 19:15 - Channel number
sl@0
   195
// 14:10 - Transaction speed
sl@0
   196
//  9:0  - Slave address
sl@0
   197
#define HS_MASTER_ADDR_SHIFT 29
sl@0
   198
#define HS_MASTER_ADDR_MASK 0x7
sl@0
   199
#define HS_ADDR_VALID_SHIFT 28
sl@0
   200
#define HS_ADDR_VALID_MASK 0x1
sl@0
   201
#define BUS_TYPE_SHIFT 20
sl@0
   202
#define BUS_TYPE_MASK 0x7
sl@0
   203
#define CHANNEL_NO_SHIFT 15
sl@0
   204
#define CHANNEL_NO_MASK 0x1F
sl@0
   205
#define TRANS_SPEED_SHIFT 10
sl@0
   206
#define TRANS_SPEED_MASK 0x1F
sl@0
   207
#define SLAVE_ADDR_SHIFT 0
sl@0
   208
#define SLAVE_ADDR_MASK 0x3FF
sl@0
   209
sl@0
   210
// The SET_CONF_FIELD and GET_CONF_FIELD are for internal use, only.
sl@0
   211
// They are to support the set of macros below which access particular fields of the Bus realisation configuration
sl@0
   212
#define SET_CONF_FIELD(aBusId,aField,aMask,aShift) aBusId=(aBusId&~(aMask<<aShift))|((aField&aMask)<<aShift);
sl@0
   213
#define GET_CONF_FIELD(aBusId,aMask,aShift) (((aBusId)>>(aShift))&(aMask))
sl@0
   214
sl@0
   215
/**
sl@0
   216
@publishedPartner
sl@0
   217
@prototype 9.6
sl@0
   218
Macro to get the HS Master address of a Bus realisation configuration
sl@0
   219
*/
sl@0
   220
#define GET_HS_MASTER_ADDR(aBusId) GET_CONF_FIELD(aBusId,HS_MASTER_ADDR_MASK,HS_MASTER_ADDR_SHIFT)
sl@0
   221
/**
sl@0
   222
@publishedPartner
sl@0
   223
@prototype 9.6
sl@0
   224
Macro to set the HS Master address of a Bus realisation configuration
sl@0
   225
*/
sl@0
   226
#define SET_HS_MASTER_ADDR(aBusId,aHsMasterAddr) SET_CONF_FIELD(aBusId,aHsMasterAddr,HS_MASTER_ADDR_MASK,HS_MASTER_ADDR_SHIFT)
sl@0
   227
/**
sl@0
   228
@publishedPartner
sl@0
   229
@prototype 9.6
sl@0
   230
Macro to get the HS address valid bit of a Bus realisation configuration
sl@0
   231
*/
sl@0
   232
#define GET_HS_VALID(aBusId,aHsValid) GET_CONF_FIELD(aBusId,aHsValid,HS_ADDR_VALID_MASK,HS_ADDR_VALID_SHIFT)
sl@0
   233
/**
sl@0
   234
@publishedPartner
sl@0
   235
@prototype 9.6
sl@0
   236
Macro to set the HS address valid bit of a Bus realisation configuration
sl@0
   237
*/
sl@0
   238
#define SET_HS_VALID(aBusId,aHsValid) SET_CONF_FIELD(aBusId,aHsValid,HS_ADDR_VALID_MASK,HS_ADDR_VALID_SHIFT)
sl@0
   239
/**
sl@0
   240
@publishedPartner
sl@0
   241
@prototype 9.6
sl@0
   242
Macro to get the Bus type of a Bus realisation configuration
sl@0
   243
*/
sl@0
   244
#define GET_BUS_TYPE(aBusId) GET_CONF_FIELD(aBusId,BUS_TYPE_MASK,BUS_TYPE_SHIFT)
sl@0
   245
/**
sl@0
   246
@publishedPartner
sl@0
   247
@prototype 9.6
sl@0
   248
Macro to set the Bus type of a Bus realisation configuration
sl@0
   249
*/
sl@0
   250
#define SET_BUS_TYPE(aBusId,aBusType) SET_CONF_FIELD(aBusId,aBusType,BUS_TYPE_MASK,BUS_TYPE_SHIFT)
sl@0
   251
/**
sl@0
   252
@publishedPartner
sl@0
   253
@prototype 9.6
sl@0
   254
Macro to get the Channel number of a Bus realisation configuration
sl@0
   255
*/
sl@0
   256
#define GET_CHAN_NUM(aBusId) GET_CONF_FIELD(aBusId,CHANNEL_NO_MASK,CHANNEL_NO_SHIFT)
sl@0
   257
/**
sl@0
   258
@publishedPartner
sl@0
   259
@prototype 9.6
sl@0
   260
Macro to set the Channel number of a Bus realisation configuration
sl@0
   261
*/
sl@0
   262
#define SET_CHAN_NUM(aBusId,aChanNum) SET_CONF_FIELD(aBusId,aChanNum,CHANNEL_NO_MASK,CHANNEL_NO_SHIFT)
sl@0
   263
/**
sl@0
   264
@publishedPartner
sl@0
   265
@prototype 9.6
sl@0
   266
Macro to set the Transaction speed of a Bus realisation configuration
sl@0
   267
*/
sl@0
   268
#define SET_TRANS_SPEED(aBusId,aTransSpeed) SET_CONF_FIELD(aBusId,aTransSpeed,TRANS_SPEED_MASK,TRANS_SPEED_SHIFT)
sl@0
   269
/**
sl@0
   270
@publishedPartner
sl@0
   271
@prototype 9.6
sl@0
   272
Macro to get the Transaction speed of a Bus realisation configuration
sl@0
   273
*/
sl@0
   274
#define GET_TRANS_SPEED(aBusId) GET_CONF_FIELD(aBusId,TRANS_SPEED_MASK,TRANS_SPEED_SHIFT)
sl@0
   275
/**
sl@0
   276
@publishedPartner
sl@0
   277
@prototype 9.6
sl@0
   278
Macro to set the Slave address of a Bus realisation configuration
sl@0
   279
*/
sl@0
   280
#define SET_SLAVE_ADDR(aBusId,aSlaveAddr) SET_CONF_FIELD(aBusId,aSlaveAddr,SLAVE_ADDR_MASK,SLAVE_ADDR_SHIFT)
sl@0
   281
/**
sl@0
   282
@publishedPartner
sl@0
   283
@prototype 9.6
sl@0
   284
Macro to get the Slave address of a Bus realisation configuration
sl@0
   285
*/
sl@0
   286
#define GET_SLAVE_ADDR(aBusId) GET_CONF_FIELD(aBusId,SLAVE_ADDR_MASK,SLAVE_ADDR_SHIFT)
sl@0
   287
sl@0
   288
sl@0
   289
// The SET_CONFIG_FIELD and GET_CONFIG_FIELD are for internal use, only.
sl@0
   290
// They are to support the TIicBusRealisation class
sl@0
   291
// These macros should be considered deprecated - they will be removed when the TIicBusRealisation class is removed
sl@0
   292
#define SET_CONFIG_FIELD(aField,aMask,aShift) iConfig=(iConfig&~(aMask<<aShift))|((aField&aMask)<<aShift)
sl@0
   293
#define GET_CONFIG_FIELD(aField,aMask,aShift) aField=((iConfig>>aShift)&aMask)
sl@0
   294
sl@0
   295
/**
sl@0
   296
@publishedPartner
sl@0
   297
@deprecated
sl@0
   298
sl@0
   299
Class to represent and provide access to configuration data used on a per-transaction basis with IIC
sl@0
   300
sl@0
   301
*/
sl@0
   302
class TIicBusRealisationConfig
sl@0
   303
	{
sl@0
   304
public:
sl@0
   305
	// default constructor - just resets the value..
sl@0
   306
	inline TIicBusRealisationConfig() : iConfig(0) {}
sl@0
   307
sl@0
   308
	inline TIicBusRealisationConfig& operator=(const TIicBusRealisationConfig &aObj){iConfig = aObj.GetConfig(); return *this;}
sl@0
   309
sl@0
   310
	inline void Clear() {iConfig = 0;}
sl@0
   311
	inline TUint32 GetConfig() const {return iConfig;}
sl@0
   312
	inline void SetConfig(TUint32 aConfig) {iConfig = aConfig;}
sl@0
   313
sl@0
   314
	inline void SetHsMasterAddr(TUint8 aHsMasterAddr) {SET_CONFIG_FIELD(aHsMasterAddr,HS_MASTER_ADDR_MASK,HS_MASTER_ADDR_SHIFT);};
sl@0
   315
	inline void GetHsMasterAddr(TUint8& aHsMasterAddr) const {{TUint32 tempVar;GET_CONFIG_FIELD(tempVar,HS_MASTER_ADDR_MASK,HS_MASTER_ADDR_SHIFT);aHsMasterAddr=(TUint8)tempVar;};};
sl@0
   316
sl@0
   317
	inline void SetHsValid(TUint8 aHsValid) {SET_CONFIG_FIELD(aHsValid,HS_ADDR_VALID_MASK,HS_ADDR_VALID_SHIFT);};
sl@0
   318
	inline void GetHsValid(TUint8& aHsValid) const{{TUint32 tempVar;GET_CONFIG_FIELD(tempVar,HS_ADDR_VALID_MASK,HS_ADDR_VALID_SHIFT);aHsValid=(TUint8)tempVar;};};
sl@0
   319
sl@0
   320
	inline void SetBusType(TUint8 aBusType) {SET_CONFIG_FIELD(aBusType,BUS_TYPE_MASK,BUS_TYPE_SHIFT);};
sl@0
   321
	inline void GetBusType(TUint8& aBusType) const {{TUint32 tempVar;GET_CONFIG_FIELD(tempVar,BUS_TYPE_MASK,BUS_TYPE_SHIFT);aBusType=(TUint8)tempVar;};};
sl@0
   322
sl@0
   323
	inline void SetChanNum(TUint8 aChanNum) {SET_CONFIG_FIELD(aChanNum,CHANNEL_NO_MASK,CHANNEL_NO_SHIFT);};
sl@0
   324
	inline void GetChanNum(TUint8& aChanNum) const {{TUint32 tempVar;GET_CONFIG_FIELD(tempVar,CHANNEL_NO_MASK,CHANNEL_NO_SHIFT);aChanNum=(TUint8)tempVar;};};
sl@0
   325
sl@0
   326
	inline void SetTransSpeed(TUint8 aTransSpeed) {SET_CONFIG_FIELD(aTransSpeed,TRANS_SPEED_MASK,TRANS_SPEED_SHIFT);};
sl@0
   327
	inline void GetTransSpeed(TUint8& aTransSpeed) const {{TUint32 tempVar;GET_CONFIG_FIELD(tempVar,TRANS_SPEED_MASK,TRANS_SPEED_SHIFT);aTransSpeed=(TUint8)tempVar;};};
sl@0
   328
sl@0
   329
	inline void SetSlaveAddr(TUint16 aSlaveAddr) {SET_CONFIG_FIELD(aSlaveAddr,SLAVE_ADDR_MASK,SLAVE_ADDR_SHIFT);};
sl@0
   330
	inline void GetSlaveAddr(TUint16& aSlaveAddr) const {{TUint32 tempVar;GET_CONFIG_FIELD(tempVar,SLAVE_ADDR_MASK,SLAVE_ADDR_SHIFT);aSlaveAddr=(TUint16)tempVar;};};
sl@0
   331
sl@0
   332
private:
sl@0
   333
	TUint32 iConfig;
sl@0
   334
	};
sl@0
   335
sl@0
   336
sl@0
   337
// Forward declarations
sl@0
   338
class TIicBusTransaction;
sl@0
   339
class DIicBusChannelMaster;
sl@0
   340
sl@0
   341
//
sl@0
   342
// Master-side items
sl@0
   343
//
sl@0
   344
sl@0
   345
/**
sl@0
   346
@publishedPartner
sl@0
   347
@prototype 9.6
sl@0
   348
sl@0
   349
Class to represent and provide access to configuration data used on a per-transaction basis with IIC
sl@0
   350
sl@0
   351
@see TIicBusTransaction
sl@0
   352
sl@0
   353
*/
sl@0
   354
class TIicBusTransfer
sl@0
   355
	{
sl@0
   356
public:
sl@0
   357
	enum TReqType
sl@0
   358
		{
sl@0
   359
		EMasterRead,
sl@0
   360
		EMasterWrite,
sl@0
   361
		};
sl@0
   362
	// the client interface for creating and linking simple requests
sl@0
   363
	// default constructor..
sl@0
   364
	inline TIicBusTransfer();
sl@0
   365
	inline TIicBusTransfer(TReqType aType, TInt8 aGranularity, TDes8* aBuffer);
sl@0
   366
	inline void LinkAfter(TIicBusTransfer* aPrev);
sl@0
   367
	inline TInt8 WordWidth();
sl@0
   368
	inline TReqType Direction();
sl@0
   369
	inline TInt Length();
sl@0
   370
	inline const TIicBusTransfer* Next();
sl@0
   371
sl@0
   372
	inline TInt SetTransferData(TReqType aType, TInt8 aGranularity, TDes8* aBuffer);
sl@0
   373
    const TDes8* GetBuffer() {return (const TDes8*)iBuffer;}
sl@0
   374
sl@0
   375
private:
sl@0
   376
	TInt8 iType;			// as one of TReqType
sl@0
   377
	TInt8 iBufGranularity;	// width of a transfer word in bits
sl@0
   378
	TInt8 iSpare1;
sl@0
   379
	TDes8* iBuffer;	// the data for this transfer (packed into 8-bit words with padding). Access must be guarded for safety.
sl@0
   380
	TIicBusTransfer* iNext;
sl@0
   381
	TIicBusTransaction* iTransaction;	// pointer to the TIicBusTransaction owning the list that this transfer has been added to
sl@0
   382
sl@0
   383
	friend class TIicBusTransaction;
sl@0
   384
	friend class DIicBusChannelMaster;
sl@0
   385
	};
sl@0
   386
sl@0
   387
const TInt8 KTransferQueued = 0x01;
sl@0
   388
/**
sl@0
   389
@publishedPartner
sl@0
   390
@prototype 9.6
sl@0
   391
sl@0
   392
Definition of function prototype for a callback function provided by a client
sl@0
   393
for invocation on the after the client transaction has been processed by a Master
sl@0
   394
channel. The function will be executed in the context of the client thread.
sl@0
   395
sl@0
   396
@see TIicBusTransaction
sl@0
   397
sl@0
   398
*/
sl@0
   399
typedef void (*TIicBusCbFn)(TIicBusTransaction* /*aTransction*/,
sl@0
   400
	                  TInt  /*aBusId*/,
sl@0
   401
	                  TInt  /*aResult*/,
sl@0
   402
	                  TAny* /*aParam*/);
sl@0
   403
sl@0
   404
class TIicBusCallback; // Forward declaration
sl@0
   405
sl@0
   406
/**
sl@0
   407
@publishedPartner
sl@0
   408
@prototype 9.6
sl@0
   409
sl@0
   410
Class to represent a transaction for processing by an IIC Master Channel
sl@0
   411
sl@0
   412
@see IicBus
sl@0
   413
sl@0
   414
*/
sl@0
   415
class TIicBusTransaction : public SOrdQueLink
sl@0
   416
	{
sl@0
   417
    public:
sl@0
   418
        enum TState {EFree,EDelivered,EAccepted};
sl@0
   419
    
sl@0
   420
        //default constuctor.
sl@0
   421
        inline TIicBusTransaction();
sl@0
   422
    
sl@0
   423
        // the client interface for creating half duplex transactions
sl@0
   424
        inline TIicBusTransaction(TDes8* aHeader, TIicBusTransfer* aHdTrans, TInt aPriority=0);
sl@0
   425
        inline ~TIicBusTransaction();
sl@0
   426
        inline TInt SetHalfDuplexTrans(TDes8* aHeader, TIicBusTransfer* aHdTrans);
sl@0
   427
    
sl@0
   428
        // The client interface for setting full duplex transaction: the API checks that it is possible to have the 2 transactions done in parallel.
sl@0
   429
        // It does not check if the channel supports full duplex, so the transaction may still fail at queuing time.
sl@0
   430
        inline TInt SetFullDuplexTrans(TIicBusTransfer* aFdTrans);
sl@0
   431
		inline TInt RemoveTrans(TIicBusTransfer* aTrans);
sl@0
   432
		// Client interface to explicitly disassociate transfer lists from the transaction, when the 
sl@0
   433
		// transaction is in state EFree.
sl@0
   434
		// These methods are for optional use. If the transfer list will not be further accessed,
sl@0
   435
		// then there is no need to explicitly disassociate it from a transaction. However, if
sl@0
   436
		// it will be accessed again its iTransaction pointer will refer to this object, so should
sl@0
   437
		// be cleared to prevent corruption - and this is the purpose of these methods.
sl@0
   438
		inline TInt RemoveHalfDuplexTrans();
sl@0
   439
		inline TInt RemoveFullDuplexTrans();
sl@0
   440
sl@0
   441
		// Accessor method to allow PSL access to iFlags to determine transaction type
sl@0
   442
		inline TUint Flags();
sl@0
   443
	protected:
sl@0
   444
		inline TIicBusTransaction(TDes8* aHeader, TIicBusTransfer* aHdTrans, TUint8 aFlags, TInt aPriority=0);
sl@0
   445
	public:
sl@0
   446
		inline TUint8 State();
sl@0
   447
		inline TInt GetBusId();
sl@0
   448
	private:
sl@0
   449
		TDes8* iHeader;
sl@0
   450
		TUint8 iFlags;	// used to indicate if it supports a preamble
sl@0
   451
		TUint8 iState;
sl@0
   452
		TInt8 iSpare1;
sl@0
   453
		TInt8 iSpare2;
sl@0
   454
#ifdef STANDALONE_CHANNEL
sl@0
   455
	//iBusId is needed by client when calling QueueTransaction
sl@0
   456
	public:
sl@0
   457
		TInt iBusId; 
sl@0
   458
#else
sl@0
   459
	private:
sl@0
   460
		TInt iBusId;
sl@0
   461
#endif
sl@0
   462
		TIicBusTransfer* iHalfDuplexTrans;
sl@0
   463
		TIicBusTransfer* iFullDuplexTrans;
sl@0
   464
		TIicBusCallback* iCallback;
sl@0
   465
sl@0
   466
		NFastSemaphore iSyncNotification;
sl@0
   467
		TInt iResult;
sl@0
   468
		friend class DIicBusChannelMaster;
sl@0
   469
#ifndef STANDALONE_CHANNEL
sl@0
   470
		friend class DIicBusController;
sl@0
   471
#endif
sl@0
   472
		};
sl@0
   473
sl@0
   474
sl@0
   475
/**
sl@0
   476
@publishedPartner
sl@0
   477
@prototype 9.6
sl@0
   478
sl@0
   479
Class to represent a callback object for use with asynchronous transactions processed by IIC Master channels
sl@0
   480
sl@0
   481
@see IicBus
sl@0
   482
sl@0
   483
*/
sl@0
   484
class TIicBusCallback : public TDfc
sl@0
   485
	{
sl@0
   486
public:
sl@0
   487
	inline TIicBusCallback(TIicBusCbFn aFn, TAny* aPtr, TDfcQue* aQue, TInt aPriority);
sl@0
   488
	inline ~TIicBusCallback();
sl@0
   489
private:
sl@0
   490
    inline static void DfcFunc(TAny* aPtr);
sl@0
   491
private:
sl@0
   492
	TIicBusTransaction* iTransaction;
sl@0
   493
	TInt iBusId;
sl@0
   494
	TInt iResult;	// the result of this transaction as a system wide error
sl@0
   495
	TAny* iParam;
sl@0
   496
	TIicBusCbFn iCallback;
sl@0
   497
sl@0
   498
	friend class DIicBusChannelMaster;
sl@0
   499
	};
sl@0
   500
sl@0
   501
// Forward declarations
sl@0
   502
class DIicBusChannelSlave;
sl@0
   503
class TIicBusSlaveCallback;
sl@0
   504
sl@0
   505
/**
sl@0
   506
@publishedPartner
sl@0
   507
@prototype 9.6
sl@0
   508
sl@0
   509
Definition of function prototype for a callback function provided by a client
sl@0
   510
for invocation when an asynchronous event (such as a notification, or completion
sl@0
   511
of the asynchronous capture of a channel) occurs for a Slave channel.
sl@0
   512
sl@0
   513
@see IicBus
sl@0
   514
sl@0
   515
*/
sl@0
   516
typedef void (*TIicBusSlaveCbFn)(TInt	/*aChannelId*/,
sl@0
   517
								 TInt	/*aReturn*/,
sl@0
   518
								 TInt   /*aTrigger*/,
sl@0
   519
								 TInt16 /*aRxWords*/,
sl@0
   520
								 TInt16 /*aTxWords*/,
sl@0
   521
								 TAny*	/*aParam*/);
sl@0
   522
sl@0
   523
/**
sl@0
   524
@publishedPartner
sl@0
   525
@prototype 9.6
sl@0
   526
sl@0
   527
A Slave callback notification object.
sl@0
   528
It wraps a DFC in client's thread which is queued by the channel generic implementation
sl@0
   529
when the transfer are completed asynchronously (e.g. in ISR).
sl@0
   530
Alternatively, if the entire transaction is processed synchronously in the client's thread,
sl@0
   531
the callback function will be called directly.
sl@0
   532
sl@0
   533
@see IicBus
sl@0
   534
sl@0
   535
*/
sl@0
   536
NONSHARABLE_CLASS(TIicBusSlaveCallback) : public TDfc
sl@0
   537
	{
sl@0
   538
public:
sl@0
   539
	inline TIicBusSlaveCallback(TIicBusSlaveCbFn aFn, TAny* aPtr, TDfcQue* aQue, TInt aPriority);
sl@0
   540
	inline void SetReturn(TInt aRet);	// to be used by PSL
sl@0
   541
	inline void SetTxWords(TInt16 aTxWords);	// to be used by PSL
sl@0
   542
	inline void SetRxWords(TInt16 aRxWords);	// to be used by PSL
sl@0
   543
sl@0
   544
	inline TInt GetTrigger();	// to be used by PSL
sl@0
   545
	inline void SetTrigger(TInt aTrigger);	// to be used by PSL
sl@0
   546
sl@0
   547
private:
sl@0
   548
	IMPORT_C static void DfcFunc(TAny* aPtr);
sl@0
   549
sl@0
   550
private:
sl@0
   551
	TInt iChannelId;
sl@0
   552
	TInt iReturn;		// a system wide error code
sl@0
   553
	TInt iTrigger;		// a bitmask containing the reason(s) why this callback was queued (see TIicBusSlaveTrigger)
sl@0
   554
	TInt16 iRxWords;	// number of words received
sl@0
   555
	TInt16 iTxWords;	// number of words transmitted
sl@0
   556
	TAny* iParam;
sl@0
   557
	DIicBusChannelSlave* iChannel;
sl@0
   558
	TIicBusSlaveCbFn iCallback;
sl@0
   559
sl@0
   560
	friend class DIicBusChannelSlave;
sl@0
   561
	};
sl@0
   562
sl@0
   563
/**
sl@0
   564
@publishedPartner
sl@0
   565
@prototype 9.6
sl@0
   566
sl@0
   567
 Prototype function pointer for a client supplied preamble:
sl@0
   568
The supplied function shall not:
sl@0
   569
	- spin
sl@0
   570
	- block or wait on a fast mutex
sl@0
   571
	- use any Kernel or base port services that do any of the above (e.g. alloc/free memory,
sl@0
   572
	  signal a DMutex, complete a request, access user side memory)
sl@0
   573
sl@0
   574
@see IicBus
sl@0
   575
sl@0
   576
*/
sl@0
   577
typedef void (*TIicBusPreamble)(TIicBusTransaction* /*aTransaction*/,
sl@0
   578
                                TAny*				/*aArg*/);
sl@0
   579
sl@0
   580
/**
sl@0
   581
@publishedPartner
sl@0
   582
@prototype 9.6
sl@0
   583
sl@0
   584
Transaction which support preamble
sl@0
   585
sl@0
   586
@see TIicBusTransaction
sl@0
   587
sl@0
   588
*/
sl@0
   589
class TIicBusTransactionPreamble : public TIicBusTransaction
sl@0
   590
	{
sl@0
   591
public:
sl@0
   592
	// the client interface for creating transactions that support a preamble
sl@0
   593
	inline TIicBusTransactionPreamble(TDes8* aHeader, TIicBusTransfer* aHdTrans, TIicBusPreamble aPreamble, TAny* aArg, TInt aPriority=0);
sl@0
   594
private:
sl@0
   595
	TIicBusPreamble iPreamble;	// preamble function pointer
sl@0
   596
	TAny* iPreambleArg;			// argument to be passed to preamble
sl@0
   597
protected:
sl@0
   598
	inline TIicBusTransactionPreamble(TDes8* aHeader, TIicBusTransfer* aHdTrans, TIicBusPreamble aPreamble, TAny* aArg, TUint8 aFlags, TInt aPriority=0);
sl@0
   599
	friend class DIicBusChannelMaster;
sl@0
   600
	};
sl@0
   601
sl@0
   602
/**
sl@0
   603
@publishedPartner
sl@0
   604
@prototype 9.6
sl@0
   605
sl@0
   606
Prototype function pointer for a client supplied multi transaction callback.
sl@0
   607
The function should return a pointer to a new transaction which will be send
sl@0
   608
within the same request. The function is called in the channel thread after
sl@0
   609
calling channel PSL DoRequest
sl@0
   610
sl@0
   611
@see TIicBusTransaction
sl@0
   612
sl@0
   613
*/
sl@0
   614
typedef TIicBusTransaction* (*TIicBusMultiTranscCbFn) (
sl@0
   615
								TIicBusTransaction* /*aTransaction*/,
sl@0
   616
								TAny*	/*aArg*/);
sl@0
   617
sl@0
   618
/**
sl@0
   619
@publishedPartner
sl@0
   620
@prototype 9.6
sl@0
   621
sl@0
   622
Transaction which support multi-transaction
sl@0
   623
sl@0
   624
@see TIicBusTransaction
sl@0
   625
sl@0
   626
*/
sl@0
   627
class TIicBusTransactionMultiTransc : public TIicBusTransaction
sl@0
   628
	{
sl@0
   629
public:
sl@0
   630
	inline TIicBusTransactionMultiTransc(TDes8* aHeader, TIicBusTransfer* aHdTrans, TIicBusMultiTranscCbFn aMultiTransc, TAny* aArg, TInt aPriority=0);
sl@0
   631
private:
sl@0
   632
	TIicBusMultiTranscCbFn iMultiTransc;
sl@0
   633
	TAny* iMultiTranscArg;
sl@0
   634
	friend class DIicBusChannelMaster;
sl@0
   635
	};
sl@0
   636
sl@0
   637
/**
sl@0
   638
@publishedPartner
sl@0
   639
@prototype 9.6
sl@0
   640
sl@0
   641
Transaction which support both preamble and multi-transaction
sl@0
   642
sl@0
   643
@see TIicBusTransactionPreamble
sl@0
   644
sl@0
   645
*/
sl@0
   646
class TIicBusTransactionPreambleExt : public TIicBusTransactionPreamble
sl@0
   647
	{
sl@0
   648
public:
sl@0
   649
	inline TIicBusTransactionPreambleExt(TDes8* aHeader, TIicBusTransfer* aHdTrans,
sl@0
   650
			TIicBusPreamble aPreamble, TAny* aPreambleArg,
sl@0
   651
			TIicBusMultiTranscCbFn aMultiTransc, TAny* aMultiTranscArg, TInt aPriority=0);
sl@0
   652
private:
sl@0
   653
	TIicBusMultiTranscCbFn iMultiTransc;
sl@0
   654
	TAny* iMultiTranscArg;
sl@0
   655
	friend class DIicBusChannelMaster;
sl@0
   656
	};
sl@0
   657
sl@0
   658
sl@0
   659
/**
sl@0
   660
@publishedPartner
sl@0
   661
@prototype 9.6
sl@0
   662
sl@0
   663
Enumeration of IIC Slave channel trigger values
sl@0
   664
sl@0
   665
@see IicBus
sl@0
   666
*/
sl@0
   667
enum TIicBusSlaveTrigger
sl@0
   668
	{
sl@0
   669
	ERxAllBytes			= 0x01,    // Master has written the required number of bytes
sl@0
   670
	ERxUnderrun			= 0x02,    // Master has written less than the required number of bytes, and ceased transmitting
sl@0
   671
	ERxOverrun			= 0x04,    // Master has written the required number of bytes and is continuing to transmit
sl@0
   672
	ETxAllBytes			= 0x08,    // Master has read the required number of bytes
sl@0
   673
	ETxUnderrun			= 0x10,    // Master has read the required number of bytes and is continuing to read
sl@0
   674
	ETxOverrun			= 0x20,    // Master has read less than the required number of bytes, and ceased reading
sl@0
   675
	EGeneralBusError	= 0x40,    // An error has occurred during a transaction
sl@0
   676
	EAsyncCaptChan		= 0x80     // Completion of asynchronous CaptureChannel
sl@0
   677
	};
sl@0
   678
sl@0
   679
#include <drivers/iic_transaction.inl>
sl@0
   680
sl@0
   681
#endif // __IIC_TRANSACTION_H__