os/kernelhwsrv/kernel/eka/include/drivers/iic.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.h
sl@0
    15
//
sl@0
    16
// WARNING: This file contains some APIs which are internal and are subject
sl@0
    17
//          to change without notice. Such APIs should therefore not be used
sl@0
    18
//          outside the Kernel and Hardware Services package.
sl@0
    19
sl@0
    20
/**
sl@0
    21
@file
sl@0
    22
@internalTechnology
sl@0
    23
*/
sl@0
    24
sl@0
    25
#ifndef __IIC_H__
sl@0
    26
#define __IIC_H__
sl@0
    27
sl@0
    28
#include <kernel/kern_priv.h> // for DThread;
sl@0
    29
#include <e32ver.h>
sl@0
    30
sl@0
    31
#include <drivers/iic_transaction.h>
sl@0
    32
sl@0
    33
const TInt KIicBusImpExtMaxPriority = KExtensionMaximumPriority-9;	// A kernel extension priority to use as an offset
sl@0
    34
																	// for all IIC bus implemenetations
sl@0
    35
const TInt KMaxNumCapturedChannels = 4;	// Arbitrary limit on the maximum number of channels captured for Slave operation
sl@0
    36
sl@0
    37
const TUint KControlIoMask =			0xF0000000;
sl@0
    38
const TUint KMasterControlIo =		0x40000000;
sl@0
    39
const TUint KSlaveControlIo =		0x00000000;
sl@0
    40
const TUint KMasterSlaveControlIo =	0x80000000;
sl@0
    41
sl@0
    42
class TIicBusCallback; // Forward declaration
sl@0
    43
class DIicBusController;
sl@0
    44
sl@0
    45
sl@0
    46
//
sl@0
    47
// Generic interface for clients
sl@0
    48
//
sl@0
    49
sl@0
    50
class IicBus
sl@0
    51
	{
sl@0
    52
public:
sl@0
    53
	// Master-side API
sl@0
    54
sl@0
    55
    /**
sl@0
    56
	@publishedPartner
sl@0
    57
	@prototype 9.6
sl@0
    58
    Queues a transaction synchronously.
sl@0
    59
sl@0
    60
    @param aBusId			A token containing the bus realisation variability.
sl@0
    61
    @param aTransaction		A pointer to a transaction object containing the details of the transaction.
sl@0
    62
sl@0
    63
    @return KErrNone, when successfully completed;
sl@0
    64
			KErrArgument, if aBusId is not a valid token or aTransaction is NULL;
sl@0
    65
			KErrTimedOut, if the channel terminates the transaction because  the addressed Slave exceeded the alloted time to respond;
sl@0
    66
            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
    67
    */
sl@0
    68
	IMPORT_C static TInt QueueTransaction(TInt aBusId, TIicBusTransaction* aTransaction);
sl@0
    69
sl@0
    70
    /**
sl@0
    71
	@publishedPartner
sl@0
    72
	@prototype 9.6
sl@0
    73
    Queues a transaction asynchronously.
sl@0
    74
sl@0
    75
    @param aBusId			A token containing the bus realisation variability.
sl@0
    76
    @param aTransaction		A pointer to a transaction object containing the details of the transaction.
sl@0
    77
    @param aCallback		A pointer to a callback object.
sl@0
    78
sl@0
    79
    @return KErrNone, if successfully accepted; KErrArgument, if aBusId is not a valid token or either aTransaction or aCallback are NULL;
sl@0
    80
            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
    81
    */
sl@0
    82
	IMPORT_C static TInt QueueTransaction(TInt aBusId, TIicBusTransaction* aTransaction, TIicBusCallback* aCallback);
sl@0
    83
sl@0
    84
    /**
sl@0
    85
	@publishedPartner
sl@0
    86
	@prototype 9.6
sl@0
    87
    Cancels a previously queued transaction.
sl@0
    88
sl@0
    89
    @param aBusId			A token containing the bus realisation variability.
sl@0
    90
    @param aTransaction		A pointer to a transaction object containing the details of the transaction.
sl@0
    91
sl@0
    92
    @return KErrCancel, if successfully cancelled; KErrArgument, if aBusId is not a valid token or aTransaction is NULL;
sl@0
    93
			KErrNotFound if the transaction cannot be found on channel's queue of transactions;
sl@0
    94
			KErrInUse if this method is called on a transaction that has already been started;
sl@0
    95
            KErrNotSupported, if the channel does not support Master mode, or the method is called on a synchronous transaction..
sl@0
    96
    */
sl@0
    97
	IMPORT_C static TInt CancelTransaction(TInt aBusId, TIicBusTransaction* aTransaction);
sl@0
    98
sl@0
    99
	// Slave-side API
sl@0
   100
sl@0
   101
	/**
sl@0
   102
	@publishedPartner
sl@0
   103
	@prototype 9.6
sl@0
   104
    Capture a Slave channel.
sl@0
   105
sl@0
   106
    @param aBusId		A token containing the bus realisation variability.
sl@0
   107
    @param aConfigHdr	A pointer to a descriptor containing the device specific configuration option applicable to all transactions.
sl@0
   108
    @param aCallback	A pointer to a callback to be called upon specified triggers.
sl@0
   109
    @param aChannelId	If this API is to complete synchronously, and the processing was successful, then on return aChannelId
sl@0
   110
                      contains a platform-specific cookie that uniquely identifies the channel instance to be used by this client.
sl@0
   111
                      If the processing was unsuccessful for the synchronous completion case, aChannelId will be unchanged.
sl@0
   112
                      If the API was called to complete asynchronously, aChannelId will, in all cases, be set to zero; the valid
sl@0
   113
                      value for the cookie will be set by the callback.
sl@0
   114
	@param aAsynch		A boolean value that indicates if this API is to complete synchronously (EFalse) or asynchronously (ETrue).
sl@0
   115
sl@0
   116
    @return KErrNone, if successfully captured, or if API is asynchronous, if the request to capture the channel was accepted;
sl@0
   117
			KErrInUse if channel is already in use; KErrArgument, if aBusId is not a valid token or aCallback is NULL;
sl@0
   118
            KErrNotSupported, if the channel does not support Slave mode.
sl@0
   119
    */
sl@0
   120
	IMPORT_C static TInt CaptureChannel(TInt aBusId, TDes8* aConfigHdr, TIicBusSlaveCallback* aCallback, TInt& aChannelId, TBool aAsynch=EFalse);
sl@0
   121
sl@0
   122
	/**
sl@0
   123
	@publishedPartner
sl@0
   124
	@prototype 9.6
sl@0
   125
    Release a previously captured Slave channel.
sl@0
   126
sl@0
   127
    @param aChannelId	The channel identifier cookie for this client.
sl@0
   128
sl@0
   129
    @return KErrNone, if successfully released;
sl@0
   130
			KErrInUse if a transaction is currently underway on this channel; KErrArgument, if aChannelId is not a valid cookie;
sl@0
   131
    */
sl@0
   132
	IMPORT_C static TInt ReleaseChannel(TInt aChannelId);
sl@0
   133
sl@0
   134
	/**
sl@0
   135
	@publishedPartner
sl@0
   136
	@prototype 9.6
sl@0
   137
	Register a receive buffer with this Slave channel.
sl@0
   138
sl@0
   139
    @param aChannelId	The channel identifier cookie for this client.
sl@0
   140
    @param aRxBuffer	A pointer to the receive buffer, in a client created descriptor.
sl@0
   141
	@param aBufGranularity The number of buffer bytes used to store a word.
sl@0
   142
    @param aNumWords	The number of words expected to be received.
sl@0
   143
    @param aOffset		The offset from the start of the buffer where to store the received data.
sl@0
   144
sl@0
   145
    @return KErrNone, if succesfully registered;
sl@0
   146
			KErrAlreadyExists if a receive buffer is already pending;
sl@0
   147
			KErrArgument, if aChannelId is not a valid cookie, or if the pointer descriptor is NULL;
sl@0
   148
    */
sl@0
   149
	IMPORT_C static TInt RegisterRxBuffer(TInt aChannelId, TPtr8 aRxBuffer, TInt8 aBufGranularity, TInt8 aNumWords, TInt8 aOffset);
sl@0
   150
sl@0
   151
	/**
sl@0
   152
	@publishedPartner
sl@0
   153
	@prototype 9.6
sl@0
   154
	Register a transmit buffer with this Slave channel.
sl@0
   155
	This client may create a single buffer for the entire transaction and control where the received data
sl@0
   156
	is to be placed and the transmit data is to be found, by specifying the number of bytes to transmit (receive)
sl@0
   157
	and the offset into the buffer.
sl@0
   158
sl@0
   159
    @param aChannelId	The channel identifier cookie for this client.
sl@0
   160
    @param aTxBuffer	A pointer to the transmit buffer, in a client created descriptor.
sl@0
   161
	@param aBufGranularity The number of buffer bytes used to store a word.
sl@0
   162
    @param aNumWords	The number of words to be transmitted.
sl@0
   163
    @param aOffset		The offset from the start of the buffer where to fetch the data to be transmitted.
sl@0
   164
sl@0
   165
    @return KErrNone, if successfully registered;
sl@0
   166
			KErrAlreadyExists if a transmit buffer is already pending;
sl@0
   167
			KErrArgument, if aChannelId is not a valid cookie, or if the pointer descriptor is NULL;
sl@0
   168
    */
sl@0
   169
	IMPORT_C static TInt RegisterTxBuffer(TInt aChannelId, TPtr8 aTxBuffer, TInt8 aBufGranularity, TInt8 aNumWords, TInt8 aOffset);
sl@0
   170
sl@0
   171
	/**
sl@0
   172
	@publishedPartner
sl@0
   173
	@prototype 9.6
sl@0
   174
	Sets the notification triggers and readies the receive path and/or kick starts a transmit (if the node is being addressed).
sl@0
   175
	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
   176
	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
   177
	If the channel supports full duplex, both paths can be readied in one call to this API.
sl@0
   178
sl@0
   179
    @param aChannelId	The channel identifier cookie for this client.
sl@0
   180
    @param aTrigger		A bitmask specifying the notification trigger. Masks for individual triggers are specified by the TIicBusSlaveTrigger enumeration.
sl@0
   181
sl@0
   182
    @return KErrNone, if successful;
sl@0
   183
			KErrArgument, if aChannelId is not a valid cookie, or if the trigger is invalid for this channel;
sl@0
   184
			KErrInUse if a transaction is already underway on this channel;
sl@0
   185
			KErrTimedOut, if the client exceeded the alloted time to respond by invoking this API;
sl@0
   186
    */
sl@0
   187
	IMPORT_C static TInt SetNotificationTrigger(TInt aChannelId, TInt aTrigger);
sl@0
   188
sl@0
   189
	/**
sl@0
   190
	@publishedPartner
sl@0
   191
	@prototype 9.6
sl@0
   192
	Interface to provide extended functionality
sl@0
   193
sl@0
   194
    @param aId			A token containing the bus realisation variability or the channel identifier cookie for this client.
sl@0
   195
    @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
   196
						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
   197
						extends the Slave channel interface.
sl@0
   198
    @param aParam1		A generic argument to be passed to the function identified by aFunction.
sl@0
   199
    @param aParam2		A generic argument to be passed to the function identified by aFunction.
sl@0
   200
sl@0
   201
    @return KErrNone, if successful;
sl@0
   202
			KErrNotSupported, function is not supported;
sl@0
   203
			Any other system wide error code.
sl@0
   204
	*/
sl@0
   205
    IMPORT_C static TInt StaticExtension(TUint aId, TUint aFunction, TAny* aParam1, TAny* aParam2);
sl@0
   206
	};
sl@0
   207
sl@0
   208
// Forward declaration
sl@0
   209
class DIicBusChannel;
sl@0
   210
class DIicBusChannelSearcher;
sl@0
   211
sl@0
   212
NONSHARABLE_CLASS(DIicBusController) : public DBase
sl@0
   213
	{
sl@0
   214
public:
sl@0
   215
	// constructor
sl@0
   216
	inline DIicBusController() {};
sl@0
   217
	~DIicBusController();
sl@0
   218
sl@0
   219
	TInt Create();
sl@0
   220
sl@0
   221
	/**
sl@0
   222
	@publishedPartner
sl@0
   223
	@prototype 9.6
sl@0
   224
	Interface to be used by Channel implementations to register a list of supported channels. This method
sl@0
   225
	will check if the array of pointers to channels is already being modified and, if so, will return KErrInUse.
sl@0
   226
	Otherwise, the iArrayBusy flag will be set and each entry in the list inserted into the array according
sl@0
   227
	to a sorting algorithm; the iArrayBusy flag will then be cleared after inserting the last entry.
sl@0
   228
sl@0
   229
    @param aListChannels	A pointer to a linked list of DIicBusChannel instances to be registered
sl@0
   230
    @param aNumberChannels	The number of channels to be registered.
sl@0
   231
sl@0
   232
    @return KErrNone, if successful;
sl@0
   233
			KErrInUse, if the array of pointers to channels is already being modified;
sl@0
   234
			Any other system wide error code.
sl@0
   235
	*/
sl@0
   236
	IMPORT_C static TInt RegisterChannels(DIicBusChannel** aListChannels, TInt aNumberChannels);
sl@0
   237
sl@0
   238
	/**
sl@0
   239
	@publishedPartner
sl@0
   240
	@prototype 9.6
sl@0
   241
	Interface to be used by Channel implementations to deregister a channel. This method
sl@0
   242
	will check if the array of pointers to channels is already being modified and, if so, will return KErrInUse.
sl@0
   243
	Otherwise, the channel will be removed from the array according to a sorting algorithm; the iArrayBusy
sl@0
   244
	flag will be set before searching for the channel and cleared immediately after removing it.
sl@0
   245
sl@0
   246
    @param aListChannels	A pointer to a linked list of DIicBusChannel instances to be registered
sl@0
   247
    @param aNumberChannels	The number of channels to be registered.
sl@0
   248
sl@0
   249
    @return KErrNone, if successful;
sl@0
   250
			KErrInUse, if the array of pointers to channels is already being modified;
sl@0
   251
			KErrArgument, if aChannel is a NULL pointer or represents and invalid channel type
sl@0
   252
			KErrNotFound, if aChannel is not found in the array of pointers to channels
sl@0
   253
			Any other system wide error code.
sl@0
   254
	*/
sl@0
   255
	IMPORT_C static TInt DeRegisterChannel(DIicBusChannel* aChannel);
sl@0
   256
sl@0
   257
	// implementation of public interface APIs
sl@0
   258
	TInt QueueTransaction(TInt aBusId, TIicBusTransaction* aTransaction);
sl@0
   259
	TInt QueueTransaction(TInt aBusId, TIicBusTransaction* aTransaction, TIicBusCallback* aCallback);
sl@0
   260
	TInt CancelTransaction(TInt aBusId, TIicBusTransaction* aTransaction);
sl@0
   261
	TInt CaptureChannel(TInt aBusId, TDes8* aConfigHdr, TIicBusSlaveCallback* aCallback, TInt& aChannelId, TBool aAsynch);
sl@0
   262
	TInt ReleaseChannel(TInt aChannelId);
sl@0
   263
	TInt RegisterRxBuffer(TInt aChannelId, TPtr8 aRxBuffer, TInt8 aBufGranularity, TInt8 aNumWords, TInt8 aOffset);
sl@0
   264
	TInt RegisterTxBuffer(TInt aChannelId, TPtr8 aTxBuffer, TInt8 aBufGranularity, TInt8 aNumWords, TInt8 aOffset);
sl@0
   265
	TInt SetNotificationTrigger(TInt aChannelId, TInt aTrigger);
sl@0
   266
	TInt StaticExtension(TUint aId, TUint aFunction, TAny* aParam1, TAny* aParam2);
sl@0
   267
sl@0
   268
	static TInt OrderEntries(const DIicBusChannel& aMatch, const DIicBusChannel& aEntry);
sl@0
   269
sl@0
   270
private:
sl@0
   271
	TInt GetSlaveChanPtr(TInt aChannelId, DIicBusChannelSlave*& aSlaveChanPtr);
sl@0
   272
	TInt GetChanPtr(const TInt aBusId, TInt &aIndex, DIicBusChannel*& aChan);
sl@0
   273
sl@0
   274
	inline RPointerArray<DIicBusChannel>* ChannelArray();
sl@0
   275
sl@0
   276
	TInt GetChanWriteAccess();
sl@0
   277
	void FreeChanWriteAccess();
sl@0
   278
	TInt GetChanReadAccess();
sl@0
   279
	void FreeChanReadAccess();
sl@0
   280
sl@0
   281
	TInt RequestTypeSupported(const TInt aBusId, DIicBusChannelMaster* const aChannel);
sl@0
   282
sl@0
   283
public:
sl@0
   284
	/**
sl@0
   285
	@internalComponent
sl@0
   286
	@prototype 9.6
sl@0
   287
	Class used by DIicBusController for locating channels captured by clients for Slave Mode operation
sl@0
   288
	*/
sl@0
   289
	class TCapturedChannel	// Generated by DIicBusChannelSlave
sl@0
   290
		{
sl@0
   291
		public:
sl@0
   292
			inline TCapturedChannel();
sl@0
   293
			inline TCapturedChannel(TInt aChannelId, DIicBusChannelSlave* aChanPtr);
sl@0
   294
sl@0
   295
			inline TCapturedChannel& operator=(TCapturedChannel& aChan);
sl@0
   296
			inline TInt operator==(TCapturedChannel& aChan);
sl@0
   297
sl@0
   298
		public:
sl@0
   299
			TInt iChannelId;	// ID to be used by client
sl@0
   300
			DIicBusChannelSlave* iChanPtr;	// Index to iChannelArray
sl@0
   301
		};
sl@0
   302
public:
sl@0
   303
	/**
sl@0
   304
	@internalTechnology
sl@0
   305
	@prototype 9.6
sl@0
   306
	Function to register a Slave channel with DIicBusController as captured
sl@0
   307
	*/
sl@0
   308
	virtual TInt InstallCapturedChannel(const TInt aChannelId, const DIicBusChannelSlave* aChanPtr);
sl@0
   309
private:
sl@0
   310
	RPointerArray<DIicBusChannel> iChannelArray;
sl@0
   311
	TCapturedChannel iCapturedChannels[KMaxNumCapturedChannels];
sl@0
   312
	TInt InsertCaptChanInArray(TCapturedChannel aCapturedChan);
sl@0
   313
	TInt RemoveCaptChanFromArray(TCapturedChannel aCapturedChan);
sl@0
   314
	TInt FindCapturedChan(TCapturedChannel aCapturedChan, TInt& aIndex);
sl@0
   315
	TInt FindCapturedChanById(TCapturedChannel aCapturedChan, TInt& aIndex);
sl@0
   316
sl@0
   317
	TInt DeInstallCapturedChannel(const TInt aChannelId, const DIicBusChannelSlave* aChanPtr);
sl@0
   318
sl@0
   319
#ifdef _DEBUG
sl@0
   320
	void DumpCapturedChannels();
sl@0
   321
	void DumpChannelArray();
sl@0
   322
#endif
sl@0
   323
sl@0
   324
private:
sl@0
   325
	enum TArrayActivity
sl@0
   326
		{
sl@0
   327
		EWriteInProgress=0x1,
sl@0
   328
		EReadInProgress=0x2
sl@0
   329
		};
sl@0
   330
sl@0
   331
	TSpinLock *iChanLock;
sl@0
   332
	TUint32 iChanRdCount;	// Maximum 32-bit count for concurrent reads
sl@0
   333
	TSpinLock *iCaptLock;
sl@0
   334
sl@0
   335
	TInt8 iChanRwFlags;		// Bit 0 for write, bit 1 for read
sl@0
   336
	};
sl@0
   337
sl@0
   338
#ifdef IIC_SIMULATED_PSL
sl@0
   339
_LIT(KPddName,"iic.pdd");
sl@0
   340
sl@0
   341
NONSHARABLE_CLASS(DIicPdd) : public DPhysicalDevice
sl@0
   342
	{
sl@0
   343
// Class to faciliate loading of the IIC classes
sl@0
   344
public:
sl@0
   345
	class TCaps
sl@0
   346
		{
sl@0
   347
	public:
sl@0
   348
		TVersion iVersion;
sl@0
   349
		};
sl@0
   350
public:
sl@0
   351
	DIicPdd();
sl@0
   352
	~DIicPdd();
sl@0
   353
	virtual TInt Install();
sl@0
   354
	virtual TInt Create(DBase*& aChannel, TInt aUnit, const TDesC8* anInfo, const TVersion& aVer);
sl@0
   355
	virtual TInt Validate(TInt aUnit, const TDesC8* anInfo, const TVersion& aVer);
sl@0
   356
	virtual void GetCaps(TDes8& aDes) const;
sl@0
   357
	inline static TVersion VersionRequired();
sl@0
   358
	};
sl@0
   359
#endif
sl@0
   360
sl@0
   361
#include <drivers/iic.inl>
sl@0
   362
sl@0
   363
#endif  // #ifndef __IIC_H__
sl@0
   364