os/kernelhwsrv/kernel/eka/include/drivers/iic_channel.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/iic_channel.h
sl@0
    15
// Include file for channel implementation
sl@0
    16
//
sl@0
    17
// WARNING: This file contains some APIs which are internal and are subject
sl@0
    18
//          to change without notice. Such APIs should therefore not be used
sl@0
    19
//          outside the Kernel and Hardware Services package.
sl@0
    20
sl@0
    21
/**
sl@0
    22
@file
sl@0
    23
@internalTechnology
sl@0
    24
*/
sl@0
    25
#ifndef __IIC_CHANNEL_H__
sl@0
    26
#define __IIC_CHANNEL_H__
sl@0
    27
sl@0
    28
#ifdef STANDALONE_CHANNEL
sl@0
    29
#include <drivers/iic_transaction.h>
sl@0
    30
#else
sl@0
    31
#include <drivers/iic.h>
sl@0
    32
#endif
sl@0
    33
sl@0
    34
static const char KIicChannelPanic[]="Iic Channel PIL";
sl@0
    35
sl@0
    36
const static TInt KChannelTypeMask	= 0x03;
sl@0
    37
const static TInt KBusTypeShift		= 2;
sl@0
    38
const static TInt KBusTypeMask		= 0x07<<KBusTypeShift; // number of buses may grow in future
sl@0
    39
const static TInt KChannelDuplexShift= 5;
sl@0
    40
const static TInt KChannelDuplexMask	= 0x01<<KChannelDuplexShift;
sl@0
    41
const static TInt16 KTransCountMsBit = (TInt16)((TUint16)0x8000);
sl@0
    42
sl@0
    43
const static TInt8 KMaxWaitTime = 0x21; // Maximum allowable time in milliseconds for a Slave channel to wait for a response
sl@0
    44
										// (from Master or Client). This constant is used to limit run-time selected values
sl@0
    45
										// for timeouts. The value stated here is semi-arbitrary.
sl@0
    46
sl@0
    47
#ifdef IIC_SIMULATED_PSL
sl@0
    48
// In a real system, the following timeout values are likely to be excessive. However, they are available
sl@0
    49
// for use in the test framework, to account for the processing overhead.
sl@0
    50
const TInt KSlaveDefMWaitTime = 32;
sl@0
    51
const TInt KSlaveDefCWaitTime = 16;
sl@0
    52
#else
sl@0
    53
const TInt KSlaveDefMWaitTime = 1;	// Default wait time for Master timeout. PSL can use SetMasterWaitTime to override.
sl@0
    54
const TInt KSlaveDefCWaitTime = 1;	// Default wait time for Client timeout. PSL can use SetClientWaitTime to override.
sl@0
    55
#endif
sl@0
    56
sl@0
    57
sl@0
    58
/**
sl@0
    59
@internalComponent
sl@0
    60
@prototype 9.6
sl@0
    61
Base class for a Channel (not directly instantiable)
sl@0
    62
*/
sl@0
    63
class DIicBusChannel : public DBase
sl@0
    64
	{
sl@0
    65
public:
sl@0
    66
	enum TChannelType
sl@0
    67
		{
sl@0
    68
		EMaster			= 0,
sl@0
    69
		ESlave			= 0x01,
sl@0
    70
		EMasterSlave	= 0x02
sl@0
    71
		};
sl@0
    72
	enum TBusType
sl@0
    73
		{
sl@0
    74
		EI2c	   = 0,
sl@0
    75
		ESpi	   = 0x01,
sl@0
    76
		EMicrowire = 0x02,
sl@0
    77
		ECci	   = 0x03,
sl@0
    78
		ESccb	   = 0x04
sl@0
    79
		};
sl@0
    80
	enum TChannelDuplex
sl@0
    81
		{
sl@0
    82
		EHalfDuplex = 0,	// supports only half duplex transactions (even if bus spec supports full duplex)
sl@0
    83
		EFullDuplex = 0x1	// supports full duplex transactions (queud transactions may still be half duplex)
sl@0
    84
		};
sl@0
    85
sl@0
    86
public:
sl@0
    87
	virtual TInt StaticExtension(TUint aFunction, TAny* /*aParam1*/, TAny* /*aParam2*/)
sl@0
    88
		{
sl@0
    89
#ifdef _DEBUG
sl@0
    90
		if(aFunction == KCtrlIoDumpChan)
sl@0
    91
			{
sl@0
    92
			DumpChannel();
sl@0
    93
			return KErrNone;
sl@0
    94
			}
sl@0
    95
		else
sl@0
    96
#else
sl@0
    97
			(void)aFunction;
sl@0
    98
#endif
sl@0
    99
sl@0
   100
			return KErrNotSupported;
sl@0
   101
		};
sl@0
   102
protected:
sl@0
   103
	// constructor
sl@0
   104
	inline DIicBusChannel(TChannelType aChanType, TBusType aBusType, TChannelDuplex aChanDuplex);
sl@0
   105
	// second phase construction - empty, to be implemented by derived types if required
sl@0
   106
	virtual TInt DoCreate()=0;
sl@0
   107
sl@0
   108
	// helper function to read an set flags
sl@0
   109
	inline TChannelType ChannelType();
sl@0
   110
	inline void SetChannelType(TChannelType aChanType);
sl@0
   111
	inline TBusType BusType();
sl@0
   112
	inline void SetBusType(TBusType aBusType);
sl@0
   113
	inline TChannelDuplex ChannelDuplex();
sl@0
   114
	inline void SetChannelType(TChannelDuplex aChanDuplex);
sl@0
   115
	inline TInt8 ChannelNumber() const;
sl@0
   116
sl@0
   117
	virtual TInt CheckHdr(TDes8* aHdr) = 0;	// PSL to check the header is valid for this channel
sl@0
   118
protected:
sl@0
   119
#ifdef _DEBUG
sl@0
   120
	inline void DumpChannel();
sl@0
   121
#endif
sl@0
   122
protected:
sl@0
   123
	NTimer iTimeoutTimer;	// timeout timer
sl@0
   124
	TInt8 iChannelNumber;	// this is the Key for ordering channels in the array
sl@0
   125
	TUint8 iFlags;			// combination of TChannelType, TChannelDuplex and TBusType
sl@0
   126
	TInt8 iSpare1;
sl@0
   127
	TInt8 iSpare2;
sl@0
   128
private:
sl@0
   129
	TAny* iReserved;
sl@0
   130
sl@0
   131
	friend class DIicBusController;
sl@0
   132
	};
sl@0
   133
sl@0
   134
/**
sl@0
   135
@publishedPartner
sl@0
   136
@prototype 9.6
sl@0
   137
sl@0
   138
Base class for a Master Channel (not directly instantiable)
sl@0
   139
sl@0
   140
*/
sl@0
   141
class DIicBusChannelMaster : public DIicBusChannel
sl@0
   142
	{
sl@0
   143
public:
sl@0
   144
	// interface to Bus Controller (implemented by PIL)
sl@0
   145
	// For stand-alone channel, there is no controller. So some parts of
sl@0
   146
	// the interface are exported for client direct use. 
sl@0
   147
	/**
sl@0
   148
    @publishedPartner
sl@0
   149
    @prototype 9.6
sl@0
   150
    Master channel interface to queue a transaction synchronously.
sl@0
   151
sl@0
   152
    @param aTransaction		A pointer to a transaction object containing the details of the transaction.
sl@0
   153
sl@0
   154
    @return KErrNone, when successfully completed;
sl@0
   155
			KErrArgument, if aTransaction is NULL;
sl@0
   156
			KErrTimedOut, if the channel terminates the transaction because  the addressed Slave exceeded the alloted time to respond;
sl@0
   157
            KErrNotSupported, if either the channel does not support Master mode or the transaction is not valid on this channel (e.g. valid full duplex transaction queued on half duplex channel).
sl@0
   158
    */
sl@0
   159
	virtual TInt QueueTransaction(TIicBusTransaction* aTransaction);
sl@0
   160
    /**
sl@0
   161
	@publishedPartner
sl@0
   162
	@prototype 9.6
sl@0
   163
    Master channel interface to queue a transaction asynchronously.
sl@0
   164
sl@0
   165
    @param aTransaction		A pointer to a transaction object containing the details of the transaction.
sl@0
   166
    @param aCallback		A pointer to a callback object.
sl@0
   167
sl@0
   168
    @return KErrNone, if successfully accepted; KErrArgument, if either aTransaction or aCallback are NULL;
sl@0
   169
            KErrNotSupported, if either the channel does not support Master mode or the transaction is not valid on this channel(e.g. valid full duplex transaction queued on half duplex channel).
sl@0
   170
    */
sl@0
   171
	virtual TInt QueueTransaction(TIicBusTransaction* aTransaction, TIicBusCallback* aCallback);
sl@0
   172
    /**
sl@0
   173
	@publishedPartner
sl@0
   174
	@prototype 9.6
sl@0
   175
    Master channel interface to cancel a previously queued transaction.
sl@0
   176
sl@0
   177
    @param aTransaction		A pointer to a transaction object containing the details of the transaction.
sl@0
   178
sl@0
   179
    @return KErrCancel, if successfully cancelled; KErrArgument, if aTransaction is NULL;
sl@0
   180
			KErrNotFound if the transaction cannot be found on channel's queue of transactions;
sl@0
   181
			KErrInUse if this method is called on a transaction that has already been started;
sl@0
   182
            KErrNotSupported, if the channel does not support Master mode, or the method is called on a synchronous transaction..
sl@0
   183
    */
sl@0
   184
	virtual TInt CancelTransaction(TIicBusTransaction* aTransaction);
sl@0
   185
	/**
sl@0
   186
	@publishedPartner
sl@0
   187
	@prototype 9.6
sl@0
   188
	Master channel interface interface to provide extended functionality
sl@0
   189
sl@0
   190
    @param aFunction	A function identifier. If bit 31 is set and bit 30 cleared it is used to extend the Master-Slave channel;
sl@0
   191
						if bit 31 is cleared and bit 30 is set, it extends the Master channel; if both bits 31 and 30 are cleared it
sl@0
   192
						extends the Slave channel interface.
sl@0
   193
    @param aParam1		A generic argument to be passed to the function identified by aFunction.
sl@0
   194
    @param aParam2		A generic argument to be passed to the function identified by aFunction.
sl@0
   195
sl@0
   196
    @return KErrNone, if successful;
sl@0
   197
			KErrNotSupported, function is not supported;
sl@0
   198
			Any other system wide error code.
sl@0
   199
	*/
sl@0
   200
	virtual TInt StaticExtension(TUint aFunction, TAny* aParam1, TAny* aParam2);
sl@0
   201
sl@0
   202
//
sl@0
   203
	virtual TInt Spare1(TInt aVal, TAny* aPtr1, TAny* aPtr2);
sl@0
   204
sl@0
   205
	/**
sl@0
   206
	@publishedPartner
sl@0
   207
	@prototype 9.6
sl@0
   208
	Destructor for DIicBusChannelMaster
sl@0
   209
	*/
sl@0
   210
	~DIicBusChannelMaster();
sl@0
   211
sl@0
   212
protected:
sl@0
   213
	// PSL implemented
sl@0
   214
	/**
sl@0
   215
	@publishedPartner
sl@0
   216
	@prototype 9.6
sl@0
   217
	Gateway function for PSL implementation (to be called by the interface APIs)
sl@0
   218
	*/
sl@0
   219
	virtual TInt DoRequest(TIicBusTransaction* aTransaction) = 0;
sl@0
   220
	/**
sl@0
   221
	@publishedPartner
sl@0
   222
	@prototype 9.6
sl@0
   223
	Function to be invoked in the event of a Slave timeout. May be overridden by the PSL.
sl@0
   224
	*/
sl@0
   225
	virtual TInt HandleSlaveTimeout() = 0;
sl@0
   226
	/**
sl@0
   227
	@publishedPartner
sl@0
   228
	@prototype 9.6
sl@0
   229
	Second phase constructor to be implemented by the PSL
sl@0
   230
	*/
sl@0
   231
	virtual TInt DoCreate() = 0;
sl@0
   232
sl@0
   233
	// Called by PSL
sl@0
   234
	/**
sl@0
   235
	@publishedPartner
sl@0
   236
	@prototype 9.6
sl@0
   237
sl@0
   238
	Constructor for DIicBusChannelMaster
sl@0
   239
sl@0
   240
	@param aBusType		Argument to specify the type of Bus
sl@0
   241
    @param aChanDuplex	Argument to specify the duplex support offered by this channel
sl@0
   242
	*/
sl@0
   243
	DIicBusChannelMaster(TBusType aBusType, TChannelDuplex aChanDuplex);
sl@0
   244
	/**
sl@0
   245
	@publishedPartner
sl@0
   246
	@prototype 9.6
sl@0
   247
	Function to instigate DIicBusChannel initialisation
sl@0
   248
sl@0
   249
	@return KErrNone if no error
sl@0
   250
			KErrNoMemory if allocation of required objects
sl@0
   251
	*/
sl@0
   252
	TInt Init();
sl@0
   253
	/**
sl@0
   254
	@publishedPartner
sl@0
   255
	@prototype 9.6
sl@0
   256
sl@0
   257
	Function to start the timer to check the Slave responsiveness.
sl@0
   258
sl@0
   259
	@param aTime		Timeout in milliseconds
sl@0
   260
sl@0
   261
	@return KErrNone if no error,
sl@0
   262
			KErrInUse if timer is already active.
sl@0
   263
sl@0
   264
	*/
sl@0
   265
	TInt StartSlaveTimeOutTimer(TInt aTime);
sl@0
   266
	/**
sl@0
   267
	@publishedPartner
sl@0
   268
	@prototype 9.6
sl@0
   269
sl@0
   270
	Function to specify the DFC queue for the channel to use
sl@0
   271
sl@0
   272
	@param aDfcQue		Pointer to the DFC queue to use
sl@0
   273
sl@0
   274
	*/
sl@0
   275
	void SetDfcQ(TDfcQue* aDfcQue);
sl@0
   276
	/**
sl@0
   277
	@publishedPartner
sl@0
   278
	@prototype 9.6
sl@0
   279
sl@0
   280
	Function to Complete the transaction being processed by the channel
sl@0
   281
sl@0
   282
	@param aResult		Error code to complete the transaction with
sl@0
   283
sl@0
   284
	*/
sl@0
   285
	void CompleteRequest(TInt aResult);
sl@0
   286
	/**
sl@0
   287
	@publishedPartner
sl@0
   288
	@prototype 9.6
sl@0
   289
sl@0
   290
	Function to cancel the timer to check the Slave responsiveness.
sl@0
   291
sl@0
   292
	*/
sl@0
   293
	void CancelTimeOut();
sl@0
   294
sl@0
   295
	// Methods to make private data of TIicBusTransaction object accessible to derivatives of this class
sl@0
   296
	/**
sl@0
   297
	@publishedPartner
sl@0
   298
	@prototype 9.6
sl@0
   299
sl@0
   300
	Function to return the Transaction Header of a specified TIicBusTransaction object
sl@0
   301
sl@0
   302
	@return The Transaction Header of the specified TIicBusTransaction object
sl@0
   303
sl@0
   304
	@see TIicBusTransaction
sl@0
   305
	*/
sl@0
   306
	static inline TDes8* GetTransactionHeader(const TIicBusTransaction* aTransaction);
sl@0
   307
	/**
sl@0
   308
	@publishedPartner
sl@0
   309
	@prototype 9.6
sl@0
   310
sl@0
   311
	Function to return the Half Duplex Transfer pointer of a specified TIicBusTransaction object
sl@0
   312
sl@0
   313
	@return The Half Duplex Transfer pointer of the specified TIicBusTransaction object
sl@0
   314
sl@0
   315
	@see TIicBusTransaction
sl@0
   316
	*/
sl@0
   317
	static inline TIicBusTransfer* GetTransHalfDuplexTferPtr(const TIicBusTransaction* aTransaction);
sl@0
   318
	/**
sl@0
   319
	@publishedPartner
sl@0
   320
	@prototype 9.6
sl@0
   321
sl@0
   322
	Function to return the Full Duplex Transfer pointer of a specified TIicBusTransaction object
sl@0
   323
sl@0
   324
	@return The Full Duplex Transfer pointer of the specified TIicBusTransaction object
sl@0
   325
sl@0
   326
	@see TIicBusTransaction
sl@0
   327
	*/
sl@0
   328
	static inline TIicBusTransfer* GetTransFullDuplexTferPtr(const TIicBusTransaction* aTransaction);
sl@0
   329
	/**
sl@0
   330
	@publishedPartner
sl@0
   331
	@prototype 9.6
sl@0
   332
sl@0
   333
	Function to return the address of the callback object of a specified TIicBusTransaction object
sl@0
   334
sl@0
   335
	@return The address of the callback object of the specified TIicBusTransaction object
sl@0
   336
sl@0
   337
	@see TIicBusTransaction
sl@0
   338
	*/
sl@0
   339
	static inline TIicBusCallback* GetTransCallback(const TIicBusTransaction* aTransaction);
sl@0
   340
	/**
sl@0
   341
	@publishedPartner
sl@0
   342
	@prototype 9.6
sl@0
   343
sl@0
   344
	Function to return the value of the TransFlags member of a specified TIicBusTransaction object
sl@0
   345
sl@0
   346
	@return The value of the TransFlags member of the specified TIicBusTransaction object
sl@0
   347
sl@0
   348
	@see TIicBusTransaction
sl@0
   349
	*/
sl@0
   350
	static inline TUint8 GetTransFlags(const TIicBusTransaction* aTransaction);
sl@0
   351
sl@0
   352
	// Methods to make private data of TIicBusTransfer object accessible to derivatives of this class
sl@0
   353
	/**
sl@0
   354
	@publishedPartner
sl@0
   355
	@prototype 9.6
sl@0
   356
sl@0
   357
	Function to return Transfer Type the of a specified TIicBusTransfer object
sl@0
   358
sl@0
   359
	@return The Transfer Type of the specified TIicBusTransfer object
sl@0
   360
sl@0
   361
	@see TIicBusTransfer
sl@0
   362
	*/
sl@0
   363
	static inline TInt8 GetTferType(const TIicBusTransfer* aTransfer);
sl@0
   364
	/**
sl@0
   365
	@publishedPartner
sl@0
   366
	@prototype 9.6
sl@0
   367
sl@0
   368
	Function to return the Buffer Granularity of a specified TIicBusTransfer object
sl@0
   369
sl@0
   370
	@return The Buffer Granularity of the specified TIicBusTransfer object
sl@0
   371
sl@0
   372
	@see TIicBusTransfer
sl@0
   373
	*/
sl@0
   374
	static inline TInt8 GetTferBufGranularity(const TIicBusTransfer* aTransfer);
sl@0
   375
	/**
sl@0
   376
	@publishedPartner
sl@0
   377
	@prototype 9.6
sl@0
   378
sl@0
   379
	Function to return the descriptor for the data for a specified TIicBusTransfer object
sl@0
   380
sl@0
   381
	@return The descriptor for the data for the specified TIicBusTransfer object
sl@0
   382
sl@0
   383
	@see TIicBusTransfer
sl@0
   384
	*/
sl@0
   385
	static inline const TDes8* GetTferBuffer(const TIicBusTransfer* aTransfer);
sl@0
   386
	/**
sl@0
   387
	@publishedPartner
sl@0
   388
	@prototype 9.6
sl@0
   389
sl@0
   390
	Function to return the address of the next transfer for a specified TIicBusTransfer object
sl@0
   391
sl@0
   392
	@return The address of the next transfer for the specified TIicBusTransfer object
sl@0
   393
sl@0
   394
	@see TIicBusTransfer
sl@0
   395
	*/
sl@0
   396
	static inline TIicBusTransfer* GetTferNextTfer(const TIicBusTransfer* aTransfer);
sl@0
   397
sl@0
   398
	// Methods to make private data of TIicBusTransactionPreamble object accessible to derivatives of this class
sl@0
   399
	/**
sl@0
   400
	@publishedPartner
sl@0
   401
	@prototype 9.6
sl@0
   402
sl@0
   403
	Function to return the function pointer for a specified TIicBusTransactionPreamble object
sl@0
   404
sl@0
   405
	@return The function pointer for the specified TIicBusTransactionPreamble object
sl@0
   406
sl@0
   407
	@see TIicBusTransactionPreamble
sl@0
   408
	*/
sl@0
   409
	static inline TIicBusPreamble GetPreambleFuncPtr(const TIicBusTransactionPreamble* aTransfer);
sl@0
   410
	/**
sl@0
   411
	@publishedPartner
sl@0
   412
	@prototype 9.6
sl@0
   413
sl@0
   414
	Function to return the function argument for a specified TIicBusTransactionPreamble object
sl@0
   415
sl@0
   416
	@return The function argument for the specified TIicBusTransactionPreamble object
sl@0
   417
sl@0
   418
	@see TIicBusTransactionPreamble
sl@0
   419
	*/
sl@0
   420
	static inline TAny* GetPreambleFuncArg(const TIicBusTransactionPreamble* aTransfer);
sl@0
   421
sl@0
   422
	/**
sl@0
   423
	@publishedPartner
sl@0
   424
	@prototype 9.6
sl@0
   425
sl@0
   426
	Function to return the function pointer of a specified TIicBusTransactionMultiTransc object
sl@0
   427
sl@0
   428
	@return The function pointer of the specified TIicBusTransactionMultiTransc object
sl@0
   429
sl@0
   430
	@see TIicBusTransactionMultiTransc
sl@0
   431
	*/
sl@0
   432
	static inline TIicBusMultiTranscCbFn GetMultiTranscFuncPtr(const TIicBusTransactionMultiTransc* aTransfer);
sl@0
   433
	/**
sl@0
   434
	@publishedPartner
sl@0
   435
	@prototype 9.6
sl@0
   436
sl@0
   437
	Function to return the function argument of a specified TIicBusTransactionMultiTransc object
sl@0
   438
sl@0
   439
	@return The function argument of the specified TIicBusTransactionMultiTransc object
sl@0
   440
sl@0
   441
	@see TIicBusTransactionMultiTransc
sl@0
   442
	*/
sl@0
   443
	static inline TAny* GetMultiTranscFuncArg(const TIicBusTransactionMultiTransc* aTransfer);
sl@0
   444
sl@0
   445
	/**
sl@0
   446
	@publishedPartner
sl@0
   447
	@prototype 9.6
sl@0
   448
sl@0
   449
	Function to return the function pointer of a specified TIicBusTransactionPreambleExt object
sl@0
   450
sl@0
   451
	@return The function pointer of the specified TIicBusTransactionPreambleExt object
sl@0
   452
sl@0
   453
	@see TIicBusTransaction
sl@0
   454
	*/
sl@0
   455
	static inline TIicBusMultiTranscCbFn GetExtTranscFuncPtr(const TIicBusTransactionPreambleExt* aTransfer);
sl@0
   456
	/**
sl@0
   457
	@publishedPartner
sl@0
   458
	@prototype 9.6
sl@0
   459
sl@0
   460
	Function to return the function argument of a specified TIicBusTransactionPreambleExt object
sl@0
   461
sl@0
   462
	@return The function argument of the specified TIicBusTransactionPreambleExt object
sl@0
   463
sl@0
   464
	@see TIicBusTransaction
sl@0
   465
	*/
sl@0
   466
	static inline TAny* GetExtTranscFuncArg(const TIicBusTransactionPreambleExt* aTransfer);
sl@0
   467
sl@0
   468
private:
sl@0
   469
	// Function to acquire the NFastMutex of the channel
sl@0
   470
	void Lock();
sl@0
   471
	// Function to release the NFastMutex of the channel
sl@0
   472
	void Unlock();
sl@0
   473
sl@0
   474
	// function to run on receiving a message
sl@0
   475
    static void MsgQFunc(TAny* aPtr);
sl@0
   476
sl@0
   477
	TIicBusTransaction* NextTrans(TIicBusTransaction* aTrans);
sl@0
   478
	void EndTransaction(TIicBusTransaction* aTrans, TInt aResult, TIicBusCallback* aCb);
sl@0
   479
	void Complete(TInt aResult, TIicBusTransaction* aTransaction);
sl@0
   480
	void UnlockAndKick();
sl@0
   481
sl@0
   482
	static void SlaveTimeoutCallback(TAny*);
sl@0
   483
sl@0
   484
	// Used by DIidBusController (a friend of this class)
sl@0
   485
	TInt TransFlow(TIicBusTransaction* aTransaction);
sl@0
   486
sl@0
   487
	TInt8 IsMasterBusy();
sl@0
   488
sl@0
   489
protected:
sl@0
   490
	TDfcQue* iDfcQ;
sl@0
   491
sl@0
   492
private:
sl@0
   493
	TDfc iTransQDfc;
sl@0
   494
	SOrdQue iTransactionQ;
sl@0
   495
	TIicBusTransaction* iTransaction;			// Pointer to current transaction
sl@0
   496
	TIicBusTransaction* iCurrentTransaction;	// Pointer to current fragment of a multiple transaction
sl@0
   497
sl@0
   498
	NFastMutex iTransactionQLock;
sl@0
   499
sl@0
   500
	TDfc* iSlaveTimeoutDfc;
sl@0
   501
sl@0
   502
	TInt16 iTransCount; // Count of pending transactions
sl@0
   503
	TInt8 iChannelReady;
sl@0
   504
	TInt8 iSpare1;
sl@0
   505
sl@0
   506
private:
sl@0
   507
	TAny* iReserved1;
sl@0
   508
	TAny* iReserved2;
sl@0
   509
sl@0
   510
	friend class DIicBusChannelMasterSlave;
sl@0
   511
	friend class DIicBusController; // For static method DIicBusController::DeRegisterChannel
sl@0
   512
	};
sl@0
   513
sl@0
   514
sl@0
   515
/**
sl@0
   516
@publishedPartner
sl@0
   517
@prototype 9.6
sl@0
   518
sl@0
   519
Base class for a Slave Channel (not directly instantiable)
sl@0
   520
sl@0
   521
*/
sl@0
   522
class DIicBusChannelSlave : public DIicBusChannel
sl@0
   523
	{
sl@0
   524
protected:
sl@0
   525
    /**
sl@0
   526
	@publishedPartner
sl@0
   527
	@prototype 9.6
sl@0
   528
	The set of operation values for processing by the PSL
sl@0
   529
    */
sl@0
   530
	enum TPslOperation
sl@0
   531
		{
sl@0
   532
		ESyncConfigPwrUp = 0x01,
sl@0
   533
		EAsyncConfigPwrUp = 0x02,
sl@0
   534
		EPowerDown = 0x04,
sl@0
   535
		ETransmit = 0x08,
sl@0
   536
		EReceive = 0x10,
sl@0
   537
		EAbort = 0x20
sl@0
   538
		};
sl@0
   539
private:
sl@0
   540
	// Values used by the internal state machine
sl@0
   541
	enum TSlaveTimerStates
sl@0
   542
		{
sl@0
   543
		EInactive = 0x01,
sl@0
   544
		EWaitForMaster = 0x02,
sl@0
   545
		EWaitForClient = 0x04,
sl@0
   546
		EClientTimeout = 0x08
sl@0
   547
		};
sl@0
   548
sl@0
   549
public:
sl@0
   550
sl@0
   551
	// Interface to Controller.
sl@0
   552
    // For stand-alone channel, the interface is exported.
sl@0
   553
    /**
sl@0
   554
    @publishedPartner
sl@0
   555
    @prototype 9.6
sl@0
   556
    Capture this Slave channel.
sl@0
   557
sl@0
   558
    @param aConfigHdr	A pointer to a descriptor containing the device specific configuration option applicable to all transactions.
sl@0
   559
    @param aCallback	A pointer to a callback to be called upon specified triggers.
sl@0
   560
    @param aChannelId	If this API is to complete synchronously, and the processing was successful, then on return aChannelId
sl@0
   561
                      contains a platform-specific cookie that uniquely identifies the channel instance to be used by this client.
sl@0
   562
                      If the processing was unsuccessful for the synchronous completion case, aChannelId will be unchanged.
sl@0
   563
                      If the API was called to complete asynchronously, aChannelId will, in all cases, be set to zero; the valid
sl@0
   564
                      value for the cookie will be set by the callback.
sl@0
   565
    @param aAsynch		A boolean value that indicates if this API is to complete synchronously (EFalse) or asynchronously (ETrue).
sl@0
   566
sl@0
   567
    @return KErrNone, if successfully captured, or if API is asynchronous, if the request to capture the channel was accepted;
sl@0
   568
			KErrInUse if channel is already in use; KErrArgument, if aCallback is NULL;
sl@0
   569
            KErrNotSupported, if the channel does not support Slave mode.
sl@0
   570
    */
sl@0
   571
	virtual TInt CaptureChannel(TDes8* aConfigHdr, TIicBusSlaveCallback* aCallback, TInt& aChannelId, TBool aAsynch);
sl@0
   572
	/**
sl@0
   573
	@publishedPartner
sl@0
   574
	@prototype 9.6
sl@0
   575
    Release this previously captured Slave channel.
sl@0
   576
sl@0
   577
    @return KErrNone, if successfully released;
sl@0
   578
			KErrInUse if a transaction is currently underway on this channel; KErrArgument
sl@0
   579
    */
sl@0
   580
	virtual TInt ReleaseChannel();
sl@0
   581
	/**
sl@0
   582
	@publishedPartner
sl@0
   583
	@prototype 9.6
sl@0
   584
	Register a receive buffer with this Slave channel.
sl@0
   585
sl@0
   586
    @param aRxBuffer	A pointer to the receive buffer, in a client created descriptor.
sl@0
   587
	@param aBufGranularity The number of buffer bytes used to store a word.
sl@0
   588
    @param aNumWords	The number of words expected to be received.
sl@0
   589
    @param aOffset		The offset from the start of the buffer where to store the received data.
sl@0
   590
sl@0
   591
    @return KErrNone, if successfully registered;
sl@0
   592
			KErrAlreadyExists if a receive buffer is already pending;
sl@0
   593
			KErrArgument, if the pointer descriptor is NULL;
sl@0
   594
    */
sl@0
   595
	virtual TInt RegisterRxBuffer(TPtr8 aRxBuffer, TInt8 aBufGranularity, TInt8 aNumWords, TInt8 aOffset);
sl@0
   596
	/**
sl@0
   597
	@publishedPartner
sl@0
   598
	@prototype 9.6
sl@0
   599
	Register a transmit buffer with this Slave channel.
sl@0
   600
	This client may create a single buffer for the entire transaction and control where the received data
sl@0
   601
	is to be placed and the transmit data is to be found, by specifying the number of bytes to transmit (receive)
sl@0
   602
	and the offset into the buffer.
sl@0
   603
sl@0
   604
    @param aTxBuffer	A pointer to the transmit buffer, in a client created descriptor.
sl@0
   605
	@param aBufGranularity The number of buffer bytes used to store a word.
sl@0
   606
    @param aNumWords	The number of words to be transmitted.
sl@0
   607
    @param aOffset		The offset from the start of the buffer where to fetch the data to be transmitted.
sl@0
   608
sl@0
   609
    @return KErrNone, if successfully registered;
sl@0
   610
			KErrAlreadyExists if a transmit buffer is already pending;
sl@0
   611
			KErrArgument, if the pointer descriptor is NULL;
sl@0
   612
    */
sl@0
   613
	virtual TInt RegisterTxBuffer(TPtr8 aTxBuffer, TInt8 aBufGranularity, TInt8 aNumWords, TInt8 aOffset);
sl@0
   614
	/**
sl@0
   615
	@publishedPartner
sl@0
   616
	@prototype 9.6
sl@0
   617
	Sets the notification triggers and readies the receive path and/or kick starts a transmit (if the node is being addressed).
sl@0
   618
	It is only after a receive buffer has been registered and this API has been called that the channel is ready to receive data (when addressed).
sl@0
   619
	If a transmit buffer has been registered and this API has been called the channel will immediately transmit when addressed by the Master
sl@0
   620
	If the channel supports full duplex, both paths can be readied in one call to this API.
sl@0
   621
sl@0
   622
    @param aTrigger		A bitmask specifying the notification trigger. Masks for individual triggers are specified by the TIicBusSlaveTrigger enumeration.
sl@0
   623
sl@0
   624
    @return KErrNone, if successful;
sl@0
   625
			KErrArgument, if the trigger is invalid for this channel;
sl@0
   626
			KErrInUse if a transaction is already underway on this channel;
sl@0
   627
			KErrTimedOut, if the client exceeded the alloted time to respond by invoking this API;
sl@0
   628
    */
sl@0
   629
	virtual TInt SetNotificationTrigger(TInt aTrigger);
sl@0
   630
	/**
sl@0
   631
	@publishedPartner
sl@0
   632
	@prototype 9.6
sl@0
   633
	Interface to provide extended functionality
sl@0
   634
sl@0
   635
    @param aFunction	A function identifier. If bit 31 is set and bit 30 cleared it is used to extend the Master-Slave channel;
sl@0
   636
						if bit 31 is cleared and bit 30 is set, it extends the Master channel; if both bits 31 and 30 are cleared it
sl@0
   637
						extends the Slave channel interface.
sl@0
   638
    @param aParam1		A generic argument to be passed to the function identified by aFunction.
sl@0
   639
    @param aParam2		A generic argument to be passed to the function identified by aFunction.
sl@0
   640
sl@0
   641
    @return KErrNone, if successful;
sl@0
   642
			KErrNotSupported, function is not supported;
sl@0
   643
			Any other system wide error code.
sl@0
   644
	*/
sl@0
   645
	virtual TInt StaticExtension(TUint aFunction, TAny* aParam1, TAny* aParam2);
sl@0
   646
//
sl@0
   647
	/**
sl@0
   648
	@internalTechnology
sl@0
   649
	@prototype 9.6
sl@0
   650
	Function reserved for future use
sl@0
   651
	*/
sl@0
   652
	virtual TInt Spare1(TInt aVal, TAny* aPtr1, TAny* aPtr2);
sl@0
   653
sl@0
   654
	// Interface to TIicBusSlaveCallback
sl@0
   655
	// channel-specific function to process data received/transmitted (called from NotifyClient or DFC queued from it)
sl@0
   656
	// Must fill in the aCb object's iReturn, iRxWords and/or iTxWords using the appropriate funtions
sl@0
   657
	/**
sl@0
   658
	@publishedPartner
sl@0
   659
	@prototype 9.6
sl@0
   660
	Function invoked when an asynchronous event occurs on the Slave channel. Implemented by the PSL.
sl@0
   661
    @param aTrigger		Argument to indicate the type of event that occurred
sl@0
   662
    @param aCb			Address of the Slave client callback object to process
sl@0
   663
sl@0
   664
    @return KErrNone, if successful;
sl@0
   665
			KErrNotSupported, function is not supported;
sl@0
   666
			Any other system wide error code.
sl@0
   667
	*/
sl@0
   668
#ifdef STANDALONE_CHANNEL
sl@0
   669
	friend class TIicBusSlaveCallback;
sl@0
   670
protected:
sl@0
   671
    virtual void ProcessData(TInt aTrigger, TIicBusSlaveCallback*  aCb) = 0;
sl@0
   672
private:
sl@0
   673
    TInt UpdateReqTrig(TInt8& aCbTrigVal, TInt& aCallbackRet);
sl@0
   674
    void StartTimerByState();
sl@0
   675
    void StopTimer();
sl@0
   676
#else
sl@0
   677
public:
sl@0
   678
    virtual void ProcessData(TInt aTrigger, TIicBusSlaveCallback*  aCb) = 0;
sl@0
   679
    virtual TInt UpdateReqTrig(TInt8& aCbTrigVal, TInt& aCallbackRet);
sl@0
   680
    virtual void StartTimerByState();
sl@0
   681
    virtual void StopTimer();
sl@0
   682
#endif
sl@0
   683
sl@0
   684
public:
sl@0
   685
	// Values used by the Interface to TIicBusSlaveCallback
sl@0
   686
	enum TSlaveNotifProcSteps
sl@0
   687
		{
sl@0
   688
		EStopTimer = 0x01,
sl@0
   689
		EInvokeCb = 0x02,
sl@0
   690
		EStartTimer = 0x04
sl@0
   691
		};
sl@0
   692
sl@0
   693
protected:
sl@0
   694
	// PSL implemented
sl@0
   695
	/**
sl@0
   696
	@publishedPartner
sl@0
   697
	@prototype 9.6
sl@0
   698
sl@0
   699
	PSL specific second phase constructor
sl@0
   700
sl@0
   701
	@return KErrNone, if succesful;
sl@0
   702
			KErrNotSupported, function is not supported;
sl@0
   703
			Any other system wide error code.
sl@0
   704
	*/
sl@0
   705
	virtual TInt DoCreate() = 0;
sl@0
   706
	/**
sl@0
   707
	@publishedPartner
sl@0
   708
	@prototype 9.6
sl@0
   709
sl@0
   710
	Gateway function for PSL implementation: aOperation is a bitmask made of TPslOperation (to be called by the  interface APIs)
sl@0
   711
sl@0
   712
	@return KErrNone, if succesful;
sl@0
   713
			KErrNotSupported, function is not supported;
sl@0
   714
			Any other system wide error code.
sl@0
   715
	*/
sl@0
   716
	virtual TInt DoRequest(TInt aOperation) = 0;
sl@0
   717
sl@0
   718
	// Called by PSL
sl@0
   719
	/**
sl@0
   720
	@publishedPartner
sl@0
   721
	@prototype 9.6
sl@0
   722
sl@0
   723
	Constructor for DIicBusChannelSlave
sl@0
   724
sl@0
   725
	@param aBusType		Argument to specify the type of Bus
sl@0
   726
    @param aChanDuplex	Argument to specify the duplex support offered by this channel
sl@0
   727
	@param aChannelId	Argument to specify the identifier to use for this channel
sl@0
   728
	*/
sl@0
   729
	DIicBusChannelSlave(TBusType aBusType, TChannelDuplex aChanDuplex, TInt16 aChannelId);
sl@0
   730
	/**
sl@0
   731
	@publishedPartner
sl@0
   732
	@prototype 9.6
sl@0
   733
	Function to instigate DIicBusChannelSlave initialisation
sl@0
   734
sl@0
   735
	@return KErrNone
sl@0
   736
	*/
sl@0
   737
	TInt Init();
sl@0
   738
	
sl@0
   739
	/**
sl@0
   740
	@publishedPartner
sl@0
   741
	@prototype 9.6
sl@0
   742
	Destructor for DIicBusChannelSlave
sl@0
   743
	*/
sl@0
   744
	~DIicBusChannelSlave();
sl@0
   745
sl@0
   746
	/**
sl@0
   747
	@publishedPartner
sl@0
   748
	@prototype 9.6
sl@0
   749
	Function invoked when an asynchronous channel capture completes
sl@0
   750
sl@0
   751
	@param aResult		Argument specifying the error code reurned by the capture operation
sl@0
   752
sl@0
   753
	@return KErrNone
sl@0
   754
	*/
sl@0
   755
	void ChanCaptureCallback(TInt aResult);
sl@0
   756
	/**
sl@0
   757
	@publishedPartner
sl@0
   758
	@prototype 9.6
sl@0
   759
	Function invoked to instigate processing by the PSL, PIL and Client when an asynchronous event occurs
sl@0
   760
sl@0
   761
	@param aResult		Argument specifying the trigger value associated with the asynchronous event
sl@0
   762
sl@0
   763
	@return KErrNone
sl@0
   764
	*/
sl@0
   765
	void NotifyClient(TInt aTrigger);
sl@0
   766
sl@0
   767
	/**
sl@0
   768
	@publishedPartner
sl@0
   769
	@prototype 9.6
sl@0
   770
	Function invoked by the PSL to set the timeout period to wait for a response from the bus master
sl@0
   771
sl@0
   772
	@param aWaitTime		Argument specifying the wait time, in milliseconds (limit=KMaxWaitTime)
sl@0
   773
sl@0
   774
	@return KErrNone, if succesful;
sl@0
   775
	KErrArgument, if aWaitTime > KMaxWaitTime
sl@0
   776
	*/
sl@0
   777
	TInt SetMasterWaitTime(TInt8 aWaitTime);
sl@0
   778
	/**
sl@0
   779
	@publishedPartner
sl@0
   780
	@prototype 9.6
sl@0
   781
	Function invoked by the PSL to get the timeout period to wait for a response from the bus master
sl@0
   782
sl@0
   783
	@return The wait time, in milliseconds
sl@0
   784
	*/
sl@0
   785
	inline TInt8 GetMasterWaitTime();
sl@0
   786
	/**
sl@0
   787
	@publishedPartner
sl@0
   788
	@prototype 9.6
sl@0
   789
	Function invoked by the PSL to set the timeout period to wait for a response from the Client
sl@0
   790
sl@0
   791
	@param aWaitTime		Argument specifying the wait time, in milliseconds (limit=KMaxWaitTime)
sl@0
   792
	@return KErrNone
sl@0
   793
	*/
sl@0
   794
	TInt SetClientWaitTime(TInt8 aWaitTime);
sl@0
   795
	/**
sl@0
   796
	@publishedPartner
sl@0
   797
	@prototype 9.6
sl@0
   798
	Function invoked by the PSL to get the timeout period to wait for a response from the Client
sl@0
   799
sl@0
   800
	@return The wait time, in milliseconds
sl@0
   801
	*/
sl@0
   802
	inline TInt8 GetClientWaitTime();
sl@0
   803
private:
sl@0
   804
	//Method to instruct PSL to indicate a bus error to the bus Master, then return
sl@0
   805
	void SendBusErrorAndReturn();
sl@0
   806
	void SetChannelId(TInt& aChannelId);
sl@0
   807
sl@0
   808
	void CompleteAsynchCapture(TInt aResult);
sl@0
   809
	void SlaveTimerCallBack();
sl@0
   810
	static void SlaveStaticCB(TAny* aDumPtr);
sl@0
   811
sl@0
   812
protected:
sl@0
   813
	TInt8 iRxGranularity;
sl@0
   814
	TInt8 iTxGranularity;
sl@0
   815
	TInt8 iNumRxWords;
sl@0
   816
	TInt8 iNumTxWords;
sl@0
   817
	TInt8 iRxOffset;
sl@0
   818
	TInt8 iTxOffset;
sl@0
   819
private:
sl@0
   820
	TInt8 iChannelInUse;
sl@0
   821
	TInt8 iSpare1;
sl@0
   822
protected:
sl@0
   823
	TInt16 iChannelId;		// channel identifier to be returned to client (in aChannelId)
sl@0
   824
private:
sl@0
   825
	TInt16 iInstanceCount;	// instance count part of aChannelId
sl@0
   826
protected:
sl@0
   827
	TDes8* iConfigHeader;
sl@0
   828
	TInt8* iTxBuf;
sl@0
   829
	TInt8* iRxBuf;
sl@0
   830
private:
sl@0
   831
	TIicBusSlaveCallback* iNotif;
sl@0
   832
	TDfc* iClientTimeoutDfc;	// To be queued on the dfc queue used by iNotif
sl@0
   833
	DThread* iClient;		// stored when client captures channel
sl@0
   834
#ifndef STANDALONE_CHANNEL
sl@0
   835
	DIicBusController* iController;
sl@0
   836
#endif
sl@0
   837
sl@0
   838
	TInt8 iTimerState;
sl@0
   839
	TInt8 iMasterWaitTime;	// 8 bits allows maximum wait time of 0.25 seconds
sl@0
   840
	TInt8 iClientWaitTime;	// 8 bits allows maximum wait time of 0.25 seconds
sl@0
   841
	TInt8 iSpare2;
sl@0
   842
sl@0
   843
	TInt8 iReqTrig;			// Represents the trigger required by the Client (bitmask from TIicBusSlaveTrigger).
sl@0
   844
	TInt8 iAccumTrig;		// Represents the events accumulated during the current trigger period
sl@0
   845
	TInt16 iSpare3;
sl@0
   846
sl@0
   847
	TSpinLock iSpinLock;
sl@0
   848
	TAny* iReserved1;
sl@0
   849
	TAny* iReserved2;
sl@0
   850
sl@0
   851
	friend class DIicBusChannelMasterSlave;
sl@0
   852
	friend class DIicBusController; // For static method DIicBusController::DeRegisterChannel
sl@0
   853
	};
sl@0
   854
sl@0
   855
/**
sl@0
   856
@internalComponent
sl@0
   857
@prototype 9.6
sl@0
   858
The Master-Slave Channel class (not for derivation)
sl@0
   859
*/
sl@0
   860
class DIicBusChannelMasterSlave : public DIicBusChannel
sl@0
   861
	{
sl@0
   862
public:
sl@0
   863
	// constructor
sl@0
   864
#ifdef STANDALONE_CHANNEL
sl@0
   865
    IMPORT_C DIicBusChannelMasterSlave(TBusType aBusType, TChannelDuplex aChanDuplex, DIicBusChannelMaster* aMasterChan, DIicBusChannelSlave* aSlaveChan);    
sl@0
   866
#else
sl@0
   867
	inline DIicBusChannelMasterSlave(TBusType aBusType, TChannelDuplex aChanDuplex, DIicBusChannelMaster* aMasterChan, DIicBusChannelSlave* aSlaveChan);
sl@0
   868
#endif
sl@0
   869
	~DIicBusChannelMasterSlave(){delete iMasterChannel; delete iSlaveChannel; }
sl@0
   870
	inline TInt DoCreate();
sl@0
   871
	// Master side interface to Bus Controller
sl@0
   872
	virtual TInt QueueTransaction(TIicBusTransaction* aTransaction);
sl@0
   873
	virtual TInt QueueTransaction(TIicBusTransaction* aTransaction, TIicBusCallback* aCallback);
sl@0
   874
	inline TInt CancelTransaction(TIicBusTransaction* aTransaction);
sl@0
   875
sl@0
   876
	// Slave side interface to Bus Controller
sl@0
   877
	virtual TInt CaptureChannel(TDes8* aConfigHdr, TIicBusSlaveCallback* aCallback, TInt& aChannelId, TBool aAsynch);
sl@0
   878
	virtual TInt ReleaseChannel();  
sl@0
   879
	inline TInt RegisterRxBuffer(TPtr8 aRxBuffer, TInt8 aBufGranularity, TInt8 aNumWords, TInt8 aOffset);
sl@0
   880
	inline TInt RegisterTxBuffer(TPtr8 aTxBuffer, TInt8 aBufGranularity, TInt8 aNumWords, TInt8 aOffset);
sl@0
   881
	inline TInt SetNotificationTrigger(TInt aTrigger);
sl@0
   882
	virtual TInt StaticExtension(TUint aFunction, TAny* aParam1, TAny* aParam2);
sl@0
   883
sl@0
   884
private:
sl@0
   885
	// Base class support
sl@0
   886
	virtual TInt CheckHdr(TDes8* /*aHdr*/){	__ASSERT_DEBUG(0,Kern::Fault("DIicBusChannelMasterSlave::CheckHdr",__LINE__));	\
sl@0
   887
											return KErrGeneral;}; // Not accessed. PSL implementation for Master or Slave used.
sl@0
   888
protected:
sl@0
   889
	DIicBusChannelMaster* iMasterChannel;
sl@0
   890
	DIicBusChannelSlave* iSlaveChannel;
sl@0
   891
private:
sl@0
   892
sl@0
   893
	friend class DIicBusChannelMaster;
sl@0
   894
	friend class DIicBusChannelSlave;
sl@0
   895
	friend class DIicBusController; // For static method DIicBusController::DeRegisterChannel
sl@0
   896
	};
sl@0
   897
sl@0
   898
#include <drivers/iic_channel.inl>
sl@0
   899
sl@0
   900
#endif  // #ifndef __IIC_CHANNEL_H__
sl@0
   901