os/kernelhwsrv/kernel/eka/include/drivers/i2s.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\i2s.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
#ifndef __I2S_H__
sl@0
    22
#define __I2S_H__
sl@0
    23
sl@0
    24
#include <e32cmn.h> 
sl@0
    25
#include <e32def.h> 
sl@0
    26
sl@0
    27
sl@0
    28
/**
sl@0
    29
@publishedPartner
sl@0
    30
@prototype
sl@0
    31
sl@0
    32
The I2S interface configuration
sl@0
    33
*/
sl@0
    34
class TI2sConfigV01
sl@0
    35
	{
sl@0
    36
public:
sl@0
    37
	TInt iRole;
sl@0
    38
	TInt iType;
sl@0
    39
	};
sl@0
    40
sl@0
    41
typedef  TPckgBuf<TI2sConfigV01> TI2sConfigBufV01;
sl@0
    42
sl@0
    43
/**
sl@0
    44
@publishedPartner
sl@0
    45
@prototype
sl@0
    46
sl@0
    47
The I2S public API
sl@0
    48
*/
sl@0
    49
class I2s
sl@0
    50
   {
sl@0
    51
public:
sl@0
    52
	/**
sl@0
    53
	The role an interface plays in a bus configuration:
sl@0
    54
	- Master,
sl@0
    55
	- Slave
sl@0
    56
	*/
sl@0
    57
	enum TI2sInterfaceRole
sl@0
    58
		{
sl@0
    59
		EMaster,
sl@0
    60
		ESlave
sl@0
    61
		};
sl@0
    62
sl@0
    63
sl@0
    64
	/**
sl@0
    65
	The type of device this interface is with respect to data flow:
sl@0
    66
	- transmitter,
sl@0
    67
	- receiver,
sl@0
    68
	- bidirectional (by virtue of bidirectional data pin or separate pins for data input/output)
sl@0
    69
	- controller (only involved in synchronising data flow)
sl@0
    70
	*/
sl@0
    71
	enum TI2sInterfaceType
sl@0
    72
		{
sl@0
    73
		ETransmitter,
sl@0
    74
		EReceiver,
sl@0
    75
		EBidirectional,
sl@0
    76
		EController
sl@0
    77
		};
sl@0
    78
sl@0
    79
sl@0
    80
	/**
sl@0
    81
	I2S transfer directions:
sl@0
    82
	- receive,
sl@0
    83
	- transmit
sl@0
    84
sl@0
    85
	These values are bitmasks which can be OR-ed to make up a composite bitmask.
sl@0
    86
	*/
sl@0
    87
	enum TI2sDirection
sl@0
    88
		{
sl@0
    89
		ERx = 0x01,
sl@0
    90
		ETx = 0x02
sl@0
    91
		};
sl@0
    92
sl@0
    93
	/**
sl@0
    94
	I2S frame phase:
sl@0
    95
	- left,
sl@0
    96
	- right
sl@0
    97
	*/
sl@0
    98
	enum TI2sFramePhase
sl@0
    99
		{
sl@0
   100
		ELeft,
sl@0
   101
		ERight
sl@0
   102
		};
sl@0
   103
sl@0
   104
	/**
sl@0
   105
	I2S sampling rates:
sl@0
   106
	*/
sl@0
   107
	enum TI2sSamplingRate
sl@0
   108
		{
sl@0
   109
		// sparse enumeration
sl@0
   110
		E7_35KHz  = 100,
sl@0
   111
		E8KHz	  = 200,
sl@0
   112
		E8_82KHz  = 300,
sl@0
   113
		E9_6KHz	  = 400,
sl@0
   114
		E11_025KHz = 500,
sl@0
   115
		E12KHz	  = 600,
sl@0
   116
		E14_7KHz  = 700,
sl@0
   117
		E16KHz	  = 800,
sl@0
   118
		E22_05KHz = 900,
sl@0
   119
		E24KHz	  = 1000,
sl@0
   120
		E29_4KHz  = 1100,
sl@0
   121
		E32KHz	  = 1200,
sl@0
   122
		E44_1KHz  = 1300,
sl@0
   123
		E48KHz	  = 1400,
sl@0
   124
		E96KHz	  = 1500
sl@0
   125
		};
sl@0
   126
sl@0
   127
	/**
sl@0
   128
	I2S frame length:
sl@0
   129
	*/
sl@0
   130
	enum TI2sFrameLength
sl@0
   131
		{
sl@0
   132
		// sparse enumeration
sl@0
   133
		EFrame16Bit	= 16,
sl@0
   134
		EFrame24Bit	= 24,
sl@0
   135
		EFrame32Bit	= 32,
sl@0
   136
		EFrame48Bit	= 48,
sl@0
   137
		EFrame64Bit	= 64,
sl@0
   138
		EFrame96Bit	= 96,
sl@0
   139
		EFrame128Bit = 128
sl@0
   140
		};
sl@0
   141
sl@0
   142
	/**
sl@0
   143
	I2S Audio word length:
sl@0
   144
	*/
sl@0
   145
	enum TI2sSampleLength
sl@0
   146
		{
sl@0
   147
		// sparse enumeration
sl@0
   148
		ESample8Bit  = 8,
sl@0
   149
		ESample12Bit = 12,
sl@0
   150
		ESample16Bit = 16,
sl@0
   151
		ESample24Bit = 24,
sl@0
   152
		ESample32Bit = 32
sl@0
   153
		};
sl@0
   154
sl@0
   155
	/**
sl@0
   156
	I2S access mode flags:
sl@0
   157
	- Rx  full (register or FIFO, depending on access mode, for left or right frame phase)
sl@0
   158
	- Tx  empty (register or FIFO, depennding on access mode, for left or right frame phase)
sl@0
   159
	- Rx  overrun (register or FIFO, depending on access mode, for left or right frame phase)
sl@0
   160
	- Tx  underrun (register or FIFO, depending on access mode, for left or right frame phase)
sl@0
   161
	- Rx/Tx framing error
sl@0
   162
sl@0
   163
	These values are bitmasks which can be OR-ed to make up a composite bitmask.
sl@0
   164
	*/
sl@0
   165
	enum TI2sFlags
sl@0
   166
		{
sl@0
   167
		ERxFull		  = 0x01,
sl@0
   168
		ETxEmpty	  = 0x02,
sl@0
   169
		ERxOverrun	  = 0x04,
sl@0
   170
		ETxUnderrun	  = 0x08,
sl@0
   171
		EFramingError = 0x10
sl@0
   172
		};
sl@0
   173
sl@0
   174
	/**
sl@0
   175
	Configures the interface.
sl@0
   176
sl@0
   177
	@param aInterfaceId	The interface Id.
sl@0
   178
	@param aConfig		A pointer to the configuration as one of TI2sConfigBufV01 or greater.
sl@0
   179
sl@0
   180
	@return				KErrNone, if successful; 
sl@0
   181
						KErrArgument, if aInterfaceId is invalid or aConfig is NULL;
sl@0
   182
						KErrNotSupported, if the configuration is not supported by this interface;
sl@0
   183
						KErrInUse, if interface is not quiescient (a transfer is under way).
sl@0
   184
	@pre                Call from thread context (neither NULL thread nor DFC threads 0 or 1).
sl@0
   185
	*/
sl@0
   186
	IMPORT_C static TInt ConfigureInterface(TInt aInterfaceId, TDes8* aConfig);
sl@0
   187
sl@0
   188
	/**
sl@0
   189
	Reads the current configuration.
sl@0
   190
sl@0
   191
	@param aInterfaceId	The interface Id.
sl@0
   192
	@param aConfig		On return, the buffer passed is filled with the current configuration.
sl@0
   193
sl@0
   194
	@return				KErrNone, if successful; 
sl@0
   195
						KErrArgument, if aInterfaceId is invalid.
sl@0
   196
	@pre                Call from thread context (neither NULL thread nor DFC threads 0 or 1).
sl@0
   197
	*/
sl@0
   198
	IMPORT_C static TInt GetInterfaceConfiguration(TInt aInterfaceId, TDes8& aConfig);
sl@0
   199
sl@0
   200
	/**
sl@0
   201
	Sets the sampling rate.
sl@0
   202
sl@0
   203
	@param aInterfaceId	 The interface Id.
sl@0
   204
	@param aSamplingRate One of TI2sSamplingRate.
sl@0
   205
sl@0
   206
	@return 			KErrNone, if successful; 
sl@0
   207
						KErrArgument, if aInterfaceId is invalid;
sl@0
   208
						KErrNotSupported, if the sampling rate is not supported by this interface;
sl@0
   209
						KErrInUse, if interface is not quiescient (a transfer is under way).
sl@0
   210
	@pre                Call from thread context (neither NULL thread nor DFC threads 0 or 1).
sl@0
   211
	*/
sl@0
   212
	IMPORT_C static TInt SetSamplingRate(TInt aInterfaceId, TI2sSamplingRate aSamplingRate);
sl@0
   213
sl@0
   214
	/**
sl@0
   215
	Reads the sampling rate.
sl@0
   216
sl@0
   217
	@param aInterfaceId	 The interface Id.
sl@0
   218
	@param aSamplingRate On return, contains one of TI2sSamplingRate.
sl@0
   219
sl@0
   220
	@return 			KErrNone, if successful; 
sl@0
   221
						KErrArgument, if aInterfaceId is invalid.
sl@0
   222
	@pre                Call from thread context (neither NULL thread nor DFC threads 0 or 1).
sl@0
   223
	*/
sl@0
   224
	IMPORT_C static TInt GetSamplingRate(TInt aInterfaceId, TInt& aSamplingRate);
sl@0
   225
sl@0
   226
sl@0
   227
	/**
sl@0
   228
	Sets the frame length and format.
sl@0
   229
sl@0
   230
	@param aInterfaceId		  The interface Id.
sl@0
   231
	@param aFrameLength		  One of TI2sFrameLength.
sl@0
   232
	@param aLeftFramePhaseLength The length of the left frame phase (in number of data bits).
sl@0
   233
sl@0
   234
	@return 			KErrNone, if successful; 
sl@0
   235
						KErrArgument, if aInterfaceId is invalid;
sl@0
   236
						KErrNotSupported, if the frame length or format are not supported by this interface;
sl@0
   237
						KErrInUse, if interface is not quiescient (a transfer is under way).
sl@0
   238
	@pre                Call from thread context (neither NULL thread nor DFC threads 0 or 1).
sl@0
   239
				   
sl@0
   240
	The implementation calculates the Right frame phase length as (FrameLength - LeftFramePhaseLength)
sl@0
   241
	*/
sl@0
   242
	IMPORT_C static TInt SetFrameLengthAndFormat(TInt aInterfaceId, TI2sFrameLength aFrameLength, TInt aLeftFramePhaseLength);
sl@0
   243
sl@0
   244
	/**
sl@0
   245
	Reads the frame format.
sl@0
   246
sl@0
   247
	@param aInterfaceId			 The interface Id.
sl@0
   248
	@param aLeftFramePhaseLength  On return, contains the length of the left frame phase.
sl@0
   249
	@param aRightFramePhaseLength On return, contains the length of the right frame phase.
sl@0
   250
sl@0
   251
	@return 			KErrNone, if successful; 
sl@0
   252
						KErrArgument, if aInterfaceId is invalid.
sl@0
   253
	@pre                Call from thread context (neither NULL thread nor DFC threads 0 or 1).
sl@0
   254
	*/
sl@0
   255
	IMPORT_C static TInt GetFrameFormat(TInt aInterfaceId, TInt& aLeftFramePhaseLength, TInt& aRightFramePhaseLength);
sl@0
   256
sl@0
   257
	/**
sl@0
   258
	Sets the sample length for a frame phase (left or right).
sl@0
   259
sl@0
   260
	@param aInterfaceId	 The interface Id.
sl@0
   261
	@param aFramePhase	 One of TI2sFramePhase.
sl@0
   262
	@param aSampleLength One of TI2sSampleLength.
sl@0
   263
sl@0
   264
	@return 			KErrNone, if successful; 
sl@0
   265
						KErrArgument, if aInterfaceId is invalid;
sl@0
   266
						KErrNotSupported, if the sample length for the frame phase selected is not supported by this interface;
sl@0
   267
						KErrInUse, if interface is not quiescient (a transfer is under way).
sl@0
   268
	@pre                Call from thread context (neither NULL thread nor DFC threads 0 or 1).
sl@0
   269
	*/
sl@0
   270
	IMPORT_C static TInt SetSampleLength(TInt aInterfaceId, TI2sFramePhase aFramePhase, TI2sSampleLength aSampleLength);
sl@0
   271
sl@0
   272
	/**
sl@0
   273
	Reads the sample length for a frame phase (left or right).
sl@0
   274
sl@0
   275
	@param aInterfaceId	 The interface Id.
sl@0
   276
	@param aFramePhase	 One of TI2sFramePhase.
sl@0
   277
	@param aSampleLength On return, contains the sample length for the frame phase indicated by aFramePhase.
sl@0
   278
sl@0
   279
	@return 			KErrNone, if successful; 
sl@0
   280
						KErrArgument, if aInterfaceId is invalid.
sl@0
   281
	@pre                Call from thread context (neither NULL thread nor DFC threads 0 or 1).
sl@0
   282
	*/
sl@0
   283
	IMPORT_C static TInt GetSampleLength(TInt aInterfaceId, TI2sFramePhase aFramePhase, TInt& aSampleLength);
sl@0
   284
sl@0
   285
	/**
sl@0
   286
	Sets the number of delay cycles for a frame phase (left or right).
sl@0
   287
sl@0
   288
	@param aInterfaceId	The interface Id.
sl@0
   289
	@param aFramePhase	One of TI2sFramePhase.
sl@0
   290
	@param aDelayCycles The number of delay cycles to be introduced for the frame phase indicated by aFramePhase.
sl@0
   291
sl@0
   292
	@return 			KErrNone, if successful; 
sl@0
   293
						KErrArgument, if aInterfaceId is invalid;
sl@0
   294
						KErrNotSupported, if the number of delay cycles for the frame phase selected is not supported by this interface;
sl@0
   295
						KErrInUse, if interface is not quiescient (a transfer is under way).
sl@0
   296
	@pre                Call from thread context (neither NULL thread nor DFC threads 0 or 1).
sl@0
   297
sl@0
   298
	Each delay cycle has a duration of a bit clock cycle. Delay cycles are inserted between the start of the frame and the start of data.
sl@0
   299
	*/
sl@0
   300
	IMPORT_C static TInt SetDelayCycles(TInt aInterfaceId, TI2sFramePhase aFramePhase, TInt aDelayCycles);
sl@0
   301
sl@0
   302
	/**
sl@0
   303
	Reads the number of delay cycles for a frame phase (left or right).
sl@0
   304
sl@0
   305
	@param aInterfaceId	The interface Id.
sl@0
   306
	@param aFramePhase	One of TI2sFramePhase.
sl@0
   307
	@param aDelayCycles On return, contains the number of delay cycles for the frame phase indicated by aFramePhase.
sl@0
   308
sl@0
   309
	@return 			KErrNone, if successful; 
sl@0
   310
						KErrArgument, if aInterfaceId is invalid.
sl@0
   311
	@pre                Call from thread context (neither NULL thread nor DFC threads 0 or 1).
sl@0
   312
	*/
sl@0
   313
	IMPORT_C static TInt GetDelayCycles(TInt aInterfaceId, TI2sFramePhase aFramePhase, TInt& aDelayCycles);
sl@0
   314
sl@0
   315
	/**
sl@0
   316
	Reads the receive data register for a frame phase.
sl@0
   317
sl@0
   318
	@param aInterfaceId	The interface Id.
sl@0
   319
	@param aFramePhase	One of TI2sFramePhase.
sl@0
   320
	@param aData		On return, contains the receive data register contents.
sl@0
   321
sl@0
   322
	@return 			KErrNone, if successful; 
sl@0
   323
						KErrArgument, if aInterfaceId is invalid;
sl@0
   324
						KErrNotSupported, if reading the receive data register is not supported (e.g. when if DMA is enabled);
sl@0
   325
						KErrNotReady, if the interface is not ready.
sl@0
   326
	@pre                Can be called in any context.
sl@0
   327
sl@0
   328
	If the implementation has a combined receive/transmit register - half duplex operation only - this API is used to read from it.
sl@0
   329
	If the implementation only supports a single receive register for both frame phases, the aFramePhase argument shall be ignored and the 
sl@0
   330
	API shall return the contents of the single register. The user of the API shall use the ReadRegisterModeStatus()/ReadFIFOModeStatus()
sl@0
   331
	API to determine which frame phase the data corresponds to.
sl@0
   332
	*/
sl@0
   333
	IMPORT_C static TInt ReadReceiveRegister(TInt aInterfaceId, TI2sFramePhase aFramePhase, TInt& aData);
sl@0
   334
sl@0
   335
	/**
sl@0
   336
	Writes to the transmit data register for a frame phase.
sl@0
   337
sl@0
   338
	@param aInterfaceId	The interface Id.
sl@0
   339
	@param aFramePhase	One of TI2sFramePhase.
sl@0
   340
	@param aData		The data to be written.
sl@0
   341
sl@0
   342
	@return 			KErrNone, if successful; 
sl@0
   343
						KErrArgument, if aInterfaceId is invalid;
sl@0
   344
						KErrNotSupported, if writing to the receive data register is not supported (e.g. when if DMA is enabled);
sl@0
   345
						KErrNotReady, if the interface is not ready.
sl@0
   346
	@pre                Can be called in any context.
sl@0
   347
sl@0
   348
	If the implementation has a combined receive/transmit register - half duplex operation only - this API is used to write to it.
sl@0
   349
	If the implementation only supports a single transmit register for both frame phases, the aFramePhase argument shall be ignored and the 
sl@0
   350
	API shall write to the single register. The user of the API shall use the ReadRegisterModeStatus()/ReadFIFOModeStatus() API to determine
sl@0
   351
	under which frame phase the data corresponds will be transmitted.
sl@0
   352
	*/
sl@0
   353
	IMPORT_C static TInt WriteTransmitRegister(TInt aInterfaceId, TI2sFramePhase aFramePhase, TInt aData);
sl@0
   354
sl@0
   355
	/**
sl@0
   356
	Reads the transmit data register for a frame phase.
sl@0
   357
sl@0
   358
	@param aInterfaceId	The interface Id.
sl@0
   359
	@param aFramePhase	One of TI2sFramePhase.
sl@0
   360
	@param aData		On return, contains the transmit data register contents.
sl@0
   361
sl@0
   362
	@return 			KErrNone, if successful; 
sl@0
   363
						KErrArgument, if aInterfaceId is invalid;
sl@0
   364
						KErrNotSupported, if reading the transmit data register is not supported;
sl@0
   365
						KErrNotReady, if the interface is not ready.
sl@0
   366
	@pre                Can be called in any context.
sl@0
   367
sl@0
   368
	If the implementation has a combined receive/transmit register this API is used to read from it (equivalent to ReadReceiveRegister()).
sl@0
   369
	If the implementation only supports a single transmit register for both frame phases, the aFramePhase argument shall be ignored and the 
sl@0
   370
	API shall return the contents of the single register. The user of the API shall use the ReadRegisterModeStatus()/ReadFIFOModeStatus()
sl@0
   371
	API to determine which frame phase the data corresponds to.
sl@0
   372
	*/
sl@0
   373
	IMPORT_C static TInt ReadTransmitRegister(TInt aInterfaceId, TI2sFramePhase aFramePhase, TInt& aData);
sl@0
   374
sl@0
   375
	/**
sl@0
   376
	Reads the Register PIO access mode status flags for a frame phase.
sl@0
   377
sl@0
   378
	@param aInterfaceId	The interface Id.
sl@0
   379
	@param aFramePhase	One of TI2sFramePhase.
sl@0
   380
	@param aFlags		On return, contains a bitmask with the status flags for the frame phase selected (see TI2SFlags).
sl@0
   381
						A bit set to "1" indicates the condition described by the corresponding flag is occurring.
sl@0
   382
sl@0
   383
	@return 			KErrNone, if successful; 
sl@0
   384
						KErrArgument, if aInterfaceId is invalid;
sl@0
   385
						KErrNotSupported, if reading the status flags for Register PIO mode is not supported by this implementation.
sl@0
   386
	@pre                Can be called in any context.
sl@0
   387
sl@0
   388
	The client driver may use one of IS_I2S_<CONDITION> macros to determine the status of individual conditions.
sl@0
   389
	*/
sl@0
   390
	IMPORT_C static TInt ReadRegisterModeStatus(TInt aInterfaceId, TI2sFramePhase aFramePhase, TInt& aFlags);
sl@0
   391
sl@0
   392
	/**
sl@0
   393
	Enables Register PIO access mode related interrupts for a frame phase.
sl@0
   394
sl@0
   395
	@param aInterfaceId	The interface Id.
sl@0
   396
	@param aFramePhase	One of TI2sFramePhase.
sl@0
   397
	@param aInterrupt	A bitmask containing the relevant interrupt flags (see TI2sFlags).
sl@0
   398
						Bits set to "1" enable the corresponding interrupts.
sl@0
   399
sl@0
   400
	@return 			KErrNone, if successful; 
sl@0
   401
						KErrArgument, if aInterfaceId is invalid;
sl@0
   402
						KErrNotSupported, if one of the selected interrupt conditions cannot be generated by this implementation.
sl@0
   403
	@pre                Call from thread context (neither NULL thread nor DFC threads 0 or 1).
sl@0
   404
sl@0
   405
	If the implementation only supports single transmit and receive registers for both frame phases, the aFramePhase argument is 
sl@0
   406
	ignored.
sl@0
   407
	*/
sl@0
   408
	IMPORT_C static TInt EnableRegisterInterrupts(TInt aInterfaceId, TI2sFramePhase aFramePhase, TInt aInterrupt);
sl@0
   409
sl@0
   410
	/**
sl@0
   411
	Disables Register PIO access mode related interrupts for a frame phase.
sl@0
   412
sl@0
   413
	@param aInterfaceId	The interface Id.
sl@0
   414
	@param aFramePhase	One of TI2sFramePhase.
sl@0
   415
	@param aInterrupt	A bitmask containing the relevant interrupt flags (see TI2sFlags).
sl@0
   416
						Bits set to "1" disable the corresponding interrupts.
sl@0
   417
sl@0
   418
	@return 			KErrNone, if successful; 
sl@0
   419
						KErrArgument, if aInterfaceId is invalid;
sl@0
   420
						KErrNotSupported, if one of the selected interrupt conditions cannot be generated by this implementation.
sl@0
   421
	@pre                Call from thread context (neither NULL thread nor DFC threads 0 or 1).
sl@0
   422
sl@0
   423
	If the implementation only supports single transmit and receive registers for both frame phases, the aFramePhase argument is 
sl@0
   424
	ignored.
sl@0
   425
	*/
sl@0
   426
	IMPORT_C static TInt DisableRegisterInterrupts(TInt aInterfaceId, TI2sFramePhase aFramePhase, TInt aInterrupt);
sl@0
   427
sl@0
   428
	/**
sl@0
   429
	Reads the Register PIO access mode interrupt mask for a frame phase.
sl@0
   430
sl@0
   431
	@param aInterfaceId	The interface Id.
sl@0
   432
	@param aFramePhase	One of TI2sFramePhase.
sl@0
   433
	@param aEnabled		On return, contains a bitmask with the interrupts which are enabled for the frame phase selected (see TI2SFlags).
sl@0
   434
						A bit set to "1" indicates the corresponding interrupt is enabled.
sl@0
   435
sl@0
   436
	@return				KErrNone, if successful; 
sl@0
   437
						KErrArgument, if aInterfaceId is invalid;
sl@0
   438
						KErrNotSupported, if one of the selected interrupt conditions cannot be generated by this implementation.
sl@0
   439
	@pre                Can be called in any context.
sl@0
   440
sl@0
   441
	If the implementation only supports single transmit and receive registers for both frame phases, the aFramePhase argument is 
sl@0
   442
	ignored.
sl@0
   443
	*/
sl@0
   444
	IMPORT_C static TInt IsRegisterInterruptEnabled(TInt aInterfaceId, TI2sFramePhase aFramePhase, TInt& aEnabled);
sl@0
   445
sl@0
   446
	/**
sl@0
   447
	Enables receive and/or transmit FIFO on a per frame phase basis.
sl@0
   448
sl@0
   449
	@param aInterfaceId	The interface Id.
sl@0
   450
	@param aFramePhase	One of TI2sFramePhase.
sl@0
   451
	@param aFifoMask	A bitmask specifying which FIFO direction(s) - receive and/or transmit - are to be enabled for the frame 
sl@0
   452
						phase selected (see TI2sDirection).
sl@0
   453
						Bits set to "1" enable the corresponding FIFO.
sl@0
   454
sl@0
   455
	@return				KErrNone, if successful; 
sl@0
   456
						KErrArgument, if aInterfaceId is invalid;
sl@0
   457
						KErrNotSupported, if the implementation does no support FIFOs.
sl@0
   458
	@pre                Call from thread context (neither NULL thread nor DFC threads 0 or 1).
sl@0
   459
sl@0
   460
	If the implementation has a combined receive/transmit FIFO - half duplex operation only - then aFifoMask is ignored.
sl@0
   461
	If the implementation only supports a single FIFO for both frame phases then aFramePhase is ignored.
sl@0
   462
	*/
sl@0
   463
	IMPORT_C static TInt EnableFIFO(TInt aInterfaceId, TI2sFramePhase aFramePhase, TInt aFifoMask);
sl@0
   464
sl@0
   465
	/**
sl@0
   466
	Disables receive and/or transmit FIFO on a per frame phase basis.
sl@0
   467
sl@0
   468
	@param aInterfaceId	The interface Id.
sl@0
   469
	@param aFramePhase	One of TI2sFramePhase.
sl@0
   470
	@param aFifoMask	A bitmask specifying which FIFO direction(s) - receive and/or transmit - are to be disabled for the frame 
sl@0
   471
						phase selected (see TI2sDirection).
sl@0
   472
						Bits set to "1" disable the corresponding FIFO.
sl@0
   473
sl@0
   474
	@return 			KErrNone, if successful; 
sl@0
   475
						KErrArgument, if aInterfaceId is invalid;
sl@0
   476
						KErrNotSupported, if the implementation does no support FIFOs.
sl@0
   477
	@pre                Call from thread context (neither NULL thread nor DFC threads 0 or 1).
sl@0
   478
sl@0
   479
	If the implementation has a combined receive/transmit FIFO - half duplex operation only - then aFifoMask is ignored.
sl@0
   480
	If the implementation only supports a single FIFO for both frame phases then aFramePhase is ignored.
sl@0
   481
	*/
sl@0
   482
	IMPORT_C static TInt DisableFIFO(TInt aInterfaceId, TI2sFramePhase aFramePhase, TInt aFifoMask);
sl@0
   483
sl@0
   484
	/**
sl@0
   485
	Reads the enabled state of a frame phase's FIFOs.
sl@0
   486
sl@0
   487
	@param aInterfaceId	The interface Id.
sl@0
   488
	@param aFramePhase	One of TI2sFramePhase.
sl@0
   489
	@param aEnabled		On return, contains a bitmask indicating which FIFOs which are enabled for the frame phase selected (see TI2sDirection).
sl@0
   490
						A bit set to "1" indicates the corresponding FIFO is enabled.
sl@0
   491
sl@0
   492
	@return 			KErrNone, if successful; 
sl@0
   493
						KErrArgument, if aInterfaceId is invalid;
sl@0
   494
						KErrNotSupported, if the implementation does no support FIFOs.
sl@0
   495
	@pre                Call from thread context (neither NULL thread nor DFC threads 0 or 1).
sl@0
   496
sl@0
   497
	If the implementation has a combined receive/transmit FIFO - half duplex operation only - then aEnabled will have 
sl@0
   498
	both Rx and Tx bits set when the FIFO is enabled.
sl@0
   499
	If the implementation only supports a single FIFO for both frame phases then aFramePhase is ignored.
sl@0
   500
	*/
sl@0
   501
	IMPORT_C static TInt IsFIFOEnabled(TInt aInterfaceId, TI2sFramePhase aFramePhase, TInt& aEnabled);
sl@0
   502
sl@0
   503
	/**
sl@0
   504
	Sets the receive or transmit FIFO threshold on a per frame phase basis.
sl@0
   505
sl@0
   506
	@param aInterfaceId	The interface Id.
sl@0
   507
	@param aFramePhase	One of TI2sFramePhase.
sl@0
   508
	@param aDirection	One of TDirection.
sl@0
   509
	@param aThreshold	A threshold level at which a receive FIFO is considered full or a transmit FIFO is considered empty.
sl@0
   510
sl@0
   511
	@return 			KErrNone, if successful; 
sl@0
   512
						KErrArgument, if aInterfaceId is invalid;
sl@0
   513
						KErrNotSupported, if the implementation does no support FIFOs;
sl@0
   514
						KErrOverflow if the threshold level requested exceeds the FIFO length (or the admissible highest level allowed);
sl@0
   515
						KErrUnderflow if the threshold level requested is less than the minimum threshold allowed.
sl@0
   516
	@pre                Call from thread context (neither NULL thread nor DFC threads 0 or 1).
sl@0
   517
sl@0
   518
	If the implementation has a combined receive/transmit FIFO - half duplex operation only - then aDirection is ignored.
sl@0
   519
	If the implementation only supports a single FIFO for both frame phases then aFramePhase is ignored.
sl@0
   520
	*/
sl@0
   521
	IMPORT_C static TInt SetFIFOThreshold(TInt aInterfaceId, TI2sFramePhase aFramePhase, TI2sDirection aDirection, TInt aThreshold);
sl@0
   522
sl@0
   523
	/**
sl@0
   524
	Reads the FIFO PIO access mode status flags for a frame phase.
sl@0
   525
sl@0
   526
	@param aInterfaceId	The interface Id.
sl@0
   527
	@param aFramePhase	One of TI2sFramePhase.
sl@0
   528
	@param aFlags		On return, contains a bitmask with the status flags for the frame phase selected (see TI2sFlags).
sl@0
   529
						A bit set to "1" indicates the condition described by the corresponding flag is occurring.
sl@0
   530
sl@0
   531
	@return 			KErrNone, if successful; 
sl@0
   532
						KErrArgument, if aInterfaceId is invalid;
sl@0
   533
						KErrNotSupported, if reading the status flags for FIFO PIO mode is not supported by this implementation.
sl@0
   534
						KErrInUse, if interface is not quiescient (a transfer is under way).
sl@0
   535
	@pre                Can be called in any context.
sl@0
   536
sl@0
   537
	The client driver may use one of IS_I2S_<CONDITION> macros to determine the status of individual conditions.
sl@0
   538
	If the implementation has a combined receive/transmit FIFO - half duplex operation only - then aFlags will be set according
sl@0
   539
	to which operation (receive/transmit) is undergoing.
sl@0
   540
	If the implementation only supports a single FIFO for both frame phases then aFramePhase is ignored.
sl@0
   541
	*/
sl@0
   542
	IMPORT_C static TInt ReadFIFOModeStatus(TInt aInterfaceId, TI2sFramePhase aFramePhase, TInt& aFlags);
sl@0
   543
sl@0
   544
	/**
sl@0
   545
	Enables FIFO related interrupts for a frame phase.
sl@0
   546
sl@0
   547
	@param aInterfaceId	The interface Id.
sl@0
   548
	@param aFramePhase	One of TI2sFramePhase.
sl@0
   549
	@param aInterrupt	A bitmask containing the relevant interrupt flags (see TI2sFlags).
sl@0
   550
						Bits set to "1" enable the corresponding interrupts.
sl@0
   551
sl@0
   552
	@return 			KErrNone, if successful; 
sl@0
   553
						KErrArgument, if aInterfaceId is invalid;
sl@0
   554
						KErrNotSupported, if one of the selected interrupt conditions cannot be generated by this implementation.
sl@0
   555
	@pre                Call from thread context (neither NULL thread nor DFC threads 0 or 1).
sl@0
   556
sl@0
   557
	If the implementation only supports single transmit and receive FIFO for both frame phases, the aFramePhase argument is 
sl@0
   558
	ignored.
sl@0
   559
	*/
sl@0
   560
	IMPORT_C static TInt EnableFIFOInterrupts(TInt aInterfaceId, TI2sFramePhase aFramePhase, TInt aInterrupt);
sl@0
   561
sl@0
   562
	/**
sl@0
   563
	Disables FIFO related interrupts for a frame phase.
sl@0
   564
sl@0
   565
	@param aInterfaceId	The interface Id.
sl@0
   566
	@param aFramePhase	One of TI2sFramePhase.
sl@0
   567
	@param aInterrupt	A bitmask containing the relevant interrupt flags (see TI2sFlags).
sl@0
   568
						Bits set to "1" disable the corresponding interrupts.
sl@0
   569
sl@0
   570
	@return				KErrNone, if successful; 
sl@0
   571
						KErrArgument, if aInterfaceId is invalid;
sl@0
   572
						KErrNotSupported, if one of the selected interrupt conditions cannot be generated by this implementation.
sl@0
   573
	@pre                Call from thread context (neither NULL thread nor DFC threads 0 or 1).
sl@0
   574
sl@0
   575
	If the implementation only supports single transmit and receive FIFO for both frame phases, the aFramePhase argument is 
sl@0
   576
	ignored.
sl@0
   577
	*/
sl@0
   578
	IMPORT_C static TInt DisableFIFOInterrupts(TInt aInterfaceId, TI2sFramePhase aFramePhase, TInt aInterrupt);
sl@0
   579
sl@0
   580
	/**
sl@0
   581
	Reads the FIFO interrupt masks for a frame phase.
sl@0
   582
sl@0
   583
	@param aInterfaceId	The interface Id.
sl@0
   584
	@param aFramePhase	One of TI2sFramePhase.
sl@0
   585
	@param aEnabled		On return, contains a bitmask with the interrupts which are enabled for the frame phase selected (see TI2sFlags).
sl@0
   586
						A bit set to "1" indicates the corresponding interrupt is enabled.
sl@0
   587
sl@0
   588
	@return 			KErrNone, if successful; 
sl@0
   589
						KErrArgument, if aInterfaceId is invalid;
sl@0
   590
						KErrNotSupported, if one of the selected interrupt conditions cannot be generated by this implementation.
sl@0
   591
	@pre                Can be called in any context.
sl@0
   592
	*/
sl@0
   593
	IMPORT_C static TInt IsFIFOInterruptEnabled(TInt aInterfaceId, TI2sFramePhase aFramePhase, TInt& aEnabled);
sl@0
   594
sl@0
   595
	/**
sl@0
   596
	Reads the receive or transmit FIFO current level on a per frame phase basis.
sl@0
   597
sl@0
   598
	@param aInterfaceId	The interface Id.
sl@0
   599
	@param aFramePhase	One of TI2sFramePhase.
sl@0
   600
	@param aDirection	One of TDirection.
sl@0
   601
	@param aLevel		On return, contains the current level for the FIFO described by the (aFramePhase,aDirection) pair.
sl@0
   602
sl@0
   603
	@return 			KErrNone, if successful; 
sl@0
   604
						KErrArgument, if aInterfaceId is invalid;
sl@0
   605
						KErrNotSupported, if the implementation does no support FIFOs.
sl@0
   606
	@pre                Call from thread context (neither NULL thread nor DFC threads 0 or 1).
sl@0
   607
sl@0
   608
	If the implementation has a combined receive/transmit FIFO - half duplex operation only - then aDirection is ignored.
sl@0
   609
	If the implementation only supports a single FIFO for both frame phases then aFramePhase is ignored.
sl@0
   610
	*/
sl@0
   611
	IMPORT_C static TInt ReadFIFOLevel(TInt aInterfaceId, TI2sFramePhase aFramePhase, TI2sDirection aDirection, TInt& aLevel);
sl@0
   612
sl@0
   613
	/**
sl@0
   614
	Enables receive and/or transmit DMA.
sl@0
   615
sl@0
   616
	@param aInterfaceId	The interface Id.
sl@0
   617
	@param aFifoMask	A bitmask specifying which directions - receive and/or transmit - is DMA to be enabled (see TI2sDirection).
sl@0
   618
						Bits set to "1" enable DMA.
sl@0
   619
sl@0
   620
	@return 			KErrNone, if successful; 
sl@0
   621
						KErrArgument, if aInterfaceId is invalid;
sl@0
   622
						KErrNotSupported, if the implementation does no support DMA.
sl@0
   623
	@pre                Call from thread context (neither NULL thread nor DFC threads 0 or 1).
sl@0
   624
sl@0
   625
	If the implementation has a combined receive/transmit FIFO - half duplex operation only - then aFifoMask is ignored.
sl@0
   626
	*/
sl@0
   627
	IMPORT_C static TInt EnableDMA(TInt aInterfaceId, TInt aFifoMask);
sl@0
   628
sl@0
   629
	/**
sl@0
   630
	Disables receive and/or transmit DMA.
sl@0
   631
sl@0
   632
	@param aInterfaceId	The interface Id.
sl@0
   633
	@param aFifoMask	A bitmask specifying which directions - receive and/or transmit - is DMA to be disabled (see TI2sDirection).
sl@0
   634
						Bits set to "1" disable DMA.
sl@0
   635
sl@0
   636
	@return 			KErrNone, if successful; 
sl@0
   637
						KErrArgument, if aInterfaceId is invalid;
sl@0
   638
						KErrNotSupported, if the implementation does no support DMA.
sl@0
   639
	@pre                Call from thread context (neither NULL thread nor DFC threads 0 or 1).
sl@0
   640
sl@0
   641
	If the implementation has a combined receive/transmit FIFO - half duplex operation only - then aFifoMask is ignored.
sl@0
   642
	*/
sl@0
   643
	IMPORT_C static TInt DisableDMA(TInt aInterfaceId, TInt aFifoMask);
sl@0
   644
sl@0
   645
	/**
sl@0
   646
	Reads the enabled state of DMA.
sl@0
   647
sl@0
   648
	@param aInterfaceId	The interface Id.
sl@0
   649
	@param aEnabled		On return, contains a bitmask indicating if DMA enabled for the corresponding directions (see TI2sDirection).
sl@0
   650
						A bit set to "1" indicates DMA is enabled for the corresponding direction.
sl@0
   651
sl@0
   652
	@return 			KErrNone, if successful; 
sl@0
   653
						KErrArgument, if aInterfaceId is invalid;
sl@0
   654
						KErrNotSupported, if the implementation does no support FIFOs.
sl@0
   655
	@pre                Call from thread context (neither NULL thread nor DFC threads 0 or 1).
sl@0
   656
sl@0
   657
	If the implementation has a combined receive/transmit FIFO - half duplex operation only - then aEnabled will have 
sl@0
   658
	both Rx and Tx bits set when the DMA is enabled.
sl@0
   659
	*/
sl@0
   660
	IMPORT_C static TInt IsDMAEnabled(TInt aInterfaceId, TInt& aEnabled);
sl@0
   661
sl@0
   662
	/**
sl@0
   663
	Starts data transmission and/or data reception unless interface is a Controller;
sl@0
   664
	if device is also a Master, starts generation of data synchronisation signals.
sl@0
   665
sl@0
   666
	@param aInterfaceId	The interface Id.
sl@0
   667
	@param aDirection	A bitmask made of TI2sDirection values. The value is ignored if interface is a Controller.
sl@0
   668
sl@0
   669
	@return 			KErrNone, if successful; 
sl@0
   670
						KErrArgument, if aInterfaceId is invalid or if aDirection  is invalid (i.e. negative, 0 or greater than 3);
sl@0
   671
						KErrNotSupported, if one of the transfer directions selected is not supported on this interface;
sl@0
   672
						KErrInUse, if interface has a bidirectional data port and an access in the opposite direction is underway;
sl@0
   673
						KErrNotReady, if interface is not ready (e.g. incomplete configuration).
sl@0
   674
	@pre                Call from thread context (neither NULL thread nor DFC threads 0 or 1).
sl@0
   675
sl@0
   676
	Start() is idempotent, attempting to start an already started interface has no effect (returns KErrNone).
sl@0
   677
	*/
sl@0
   678
	IMPORT_C static TInt Start(TInt aInterfaceId, TInt aDirection);
sl@0
   679
sl@0
   680
	/**
sl@0
   681
	Stops data transmission and/or data reception;
sl@0
   682
	if device is also a Master, stops generation of data synchronisation signals.
sl@0
   683
sl@0
   684
	@param aInterfaceId	The interface Id.
sl@0
   685
	@param aDirection	A bitmask made of TI2sDirection values.
sl@0
   686
sl@0
   687
	@return 			KErrNone, if successful; 
sl@0
   688
						KErrArgument, if aInterfaceId is invalid or if aDirection  is invalid (i.e. negative, 0 or greater than 3);
sl@0
   689
						KErrNotSupported, if one of the transfer directions selected is not supported on this interface.
sl@0
   690
	@pre                Call from thread context (neither NULL thread nor DFC threads 0 or 1).
sl@0
   691
sl@0
   692
	Stop() is idempotent, attempting to stop an already started interface has no effect (returns KErrNone).
sl@0
   693
	*/
sl@0
   694
	IMPORT_C static TInt Stop(TInt aInterfaceId, TInt aDirection);
sl@0
   695
sl@0
   696
	/**
sl@0
   697
	Checks if a transmission or a reception is underway.
sl@0
   698
sl@0
   699
	@param aInterfaceId	The interface Id.
sl@0
   700
	@param aDirection	One of TI2sDirection.
sl@0
   701
	@param aStarted 	On return, contains ETrue if the the access is underway, EFalse otherwise.
sl@0
   702
sl@0
   703
	@return 			KErrNone, if successful; 
sl@0
   704
						KErrArgument, if aInterfaceId is invalid or if aDirection  is invalid (i.e. negative, 0 or greater than 3);
sl@0
   705
						KErrNotSupported, if one of the transfer directions selected is not supported on this interface.
sl@0
   706
	@pre                Can be called in any context.
sl@0
   707
sl@0
   708
	If the interface is a Controller and a bus operation is underway, ETrue is returned regardless of aDirection.
sl@0
   709
	*/
sl@0
   710
	IMPORT_C static TInt IsStarted(TInt aInterfaceId, TI2sDirection aDirection, TBool& aStarted);
sl@0
   711
	};
sl@0
   712
sl@0
   713
#define IS_I2S_RX_FULL(status)	(status&I2s::ERxFull)
sl@0
   714
#define IS_I2S_TX_EMPTY(status)	(status&I2s::ETxEmpty)
sl@0
   715
#define IS_I2S_RX_OVERRUN(status)	(status&I2s::ERxOverrun)
sl@0
   716
#define IS_I2S_TX_UNDERRUN(status)	(status&I2s::ETxUnderrun)
sl@0
   717
#define IS_I2S_FRAMING_ERROR(status)	(status&I2s::EFramingError)
sl@0
   718
sl@0
   719
#endif /* __I2S_H__ */
sl@0
   720