os/kernelhwsrv/kernel/eka/include/drivers/camerasc.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) 2004-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\camerasc.h
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
/**
sl@0
    19
 @file
sl@0
    20
 @internalAll
sl@0
    21
 @prototype
sl@0
    22
*/
sl@0
    23
sl@0
    24
#ifndef __CAMERASC_H__
sl@0
    25
#define __CAMERASC_H__
sl@0
    26
sl@0
    27
#include <d32camerasc.h>
sl@0
    28
#include <platform.h>
sl@0
    29
#include <kernel/kpower.h>
sl@0
    30
#include <e32ver.h>
sl@0
    31
sl@0
    32
/** The default number of buffers available to the client. */
sl@0
    33
const TInt KDefaultNumClientBuffers=6;
sl@0
    34
sl@0
    35
/** The maximum number of client capture requests which may be outstanding at any time. */
sl@0
    36
const TInt KMaxCamScRequestsPending=8;
sl@0
    37
sl@0
    38
/**
sl@0
    39
@internalAll
sl@0
    40
@prototype
sl@0
    41
*/
sl@0
    42
struct SBufSpecList
sl@0
    43
	{
sl@0
    44
	/** The first entry of the buffer offset list. This list holds the offset from the start of the chunk
sl@0
    45
	for each buffer. This list is only valid if the flag KScFlagBufOffsetListInUse is set in
sl@0
    46
	TSharedChunkBufConfigBase::iFlags. */
sl@0
    47
	TInt iBufferOffset;
sl@0
    48
	TInt iBufferId;
sl@0
    49
	};
sl@0
    50
sl@0
    51
/**
sl@0
    52
@internalAll
sl@0
    53
@prototype
sl@0
    54
*/
sl@0
    55
class TCameraSharedChunkBufConfig : public TSharedChunkBufConfigBase
sl@0
    56
	{
sl@0
    57
public:
sl@0
    58
 	struct SBufSpecList iSpec;
sl@0
    59
	};
sl@0
    60
sl@0
    61
// Forward declarations
sl@0
    62
class TImageBuffer;
sl@0
    63
class DCameraScLdd;
sl@0
    64
class DBufferManager;
sl@0
    65
sl@0
    66
/**
sl@0
    67
The physical device driver (PDD) base class for the camera driver.
sl@0
    68
@internalAll
sl@0
    69
@prototype
sl@0
    70
*/
sl@0
    71
class DCameraScPdd : public DBase
sl@0
    72
	{
sl@0
    73
public:
sl@0
    74
	/**
sl@0
    75
    Return the DFC queue to be used by this device.
sl@0
    76
    @param aUnit The unit number for which to get the DFC queue.
sl@0
    77
    @return The DFC queue to use.
sl@0
    78
    */
sl@0
    79
	virtual TDfcQue* DfcQ(TInt aUnit)=0;
sl@0
    80
sl@0
    81
	/**
sl@0
    82
	Return the capabilities of this camera device.
sl@0
    83
	@param aCapsBuf A packaged TCameraCapsV02 object to be filled with the capabilities of the
sl@0
    84
		device. This descriptor is in kernel memory and can be accessed directly.
sl@0
    85
	@see TCameraCapsV02.
sl@0
    86
	*/
sl@0
    87
	virtual void Caps(TDes8& aCapsBuf) const=0;
sl@0
    88
sl@0
    89
	/**
sl@0
    90
	Return data format information for a custom camera data format setting. Only required where support is
sl@0
    91
	required for a data format that isn't supported by the LDD. Platforms which don't require support
sl@0
    92
	for custom data settings need not implement this method.
sl@0
    93
	@param aConfigBuf A packaged TCameraConfigV02 object containing the current camera driver configuration
sl@0
    94
		(including an identifier for the custom setting required). This configuration object should be
sl@0
    95
		updated by the PDD with the appropriate settings for the data format concerned. This descriptor
sl@0
    96
		is in kernel memory and can be accessed directly.
sl@0
    97
	@return KErrNone if successful, otherwise one of the other system wide error codes.
sl@0
    98
	*/
sl@0
    99
	virtual TInt SpecifyCustomConfig(TDes8& aConfigBuf);
sl@0
   100
sl@0
   101
	/**
sl@0
   102
	Return the shared chunk create information to be used by this device.
sl@0
   103
	@param aChunkCreateInfo A chunk create info. object to be to be filled with the settings
sl@0
   104
							required for this device.
sl@0
   105
	*/
sl@0
   106
	virtual void GetChunkCreateInfo(TChunkCreateInfo& aChunkCreateInfo)=0;
sl@0
   107
sl@0
   108
	/**
sl@0
   109
	Configure or reconfigure the device using the the configuration supplied.
sl@0
   110
	@param aConfigBuf A packaged TCameraConfigV02 object which contains the new configuration settings.
sl@0
   111
		This descriptor is in kernel memory and can be accessed directly.
sl@0
   112
	@return KErrNone if successful, otherwise one of the other system wide error codes.
sl@0
   113
	@see TCameraConfigV02.
sl@0
   114
	*/
sl@0
   115
	virtual TInt SetConfig(const TDesC8& aConfigBuf)=0;
sl@0
   116
sl@0
   117
	/**
sl@0
   118
    Start the camera - start pixel sourcing.
sl@0
   119
    @param aCaptureMode The capture mode to start. @see TDevCamCaptureMode.
sl@0
   120
    @param aLinAddr The linear address of the start of the first buffer to use for image capture.
sl@0
   121
	@param aPhysAddr The physical address that corresponds to the linear address: aLinAddr.
sl@0
   122
    @return KErrNone if successful;
sl@0
   123
    		otherwise one of the other system wide error codes.
sl@0
   124
    */
sl@0
   125
	virtual TInt Start(TDevCamCaptureMode aCaptureMode,TLinAddr aLinAddr,TPhysAddr aPhysAddr)=0;
sl@0
   126
sl@0
   127
	/**
sl@0
   128
	Sets the address of the buffer into which the next image will be captured.
sl@0
   129
    @param aLinAddr The linear address of the start of the buffer to use to capture the image frame.
sl@0
   130
	@param aPhysAddr The physical address that corresponds to the linear address: aLinAddr.
sl@0
   131
    @return KErrNone if the capture has been initiated successfully;
sl@0
   132
  			KErrNotReady if the device is unable to accept the request for the moment;
sl@0
   133
		  	otherwise one of the other system-wide error codes.
sl@0
   134
    */
sl@0
   135
	virtual TInt CaptureNextImage(TLinAddr aLinAddr,TPhysAddr aPhysAddr)=0;
sl@0
   136
sl@0
   137
	/**
sl@0
   138
    Stop the camera - stop pixel sourcing.
sl@0
   139
    @return KErrNone if successful, otherwise one of the other system wide error codes.
sl@0
   140
    */
sl@0
   141
	virtual TInt Stop()=0;
sl@0
   142
sl@0
   143
	/**
sl@0
   144
	Power down the camera.
sl@0
   145
	*/
sl@0
   146
	virtual void PowerDown()=0;
sl@0
   147
sl@0
   148
	/**
sl@0
   149
	Queries the driver for the size of the structure to be passed to RDevCameraSc::Caps().
sl@0
   150
	*/
sl@0
   151
	virtual TInt CapsSize()=0;
sl@0
   152
sl@0
   153
	/**
sl@0
   154
	Returns the supported frame sizes that correspond to the desired capture mode and pixel format passed in.
sl@0
   155
	@param aCaptureMode The capture mode for which to obtain the information.
sl@0
   156
	@param aUidPixelFormat The pixel format for which to obtain the information.
sl@0
   157
	@param aFrameSizeCapsBuf An appropriately sized buffer to be filled with the supported frame sizes.
sl@0
   158
	@return KErrNone, if successful,
sl@0
   159
			KErrArgument, if an invalid capture mode or pixel format is specified, or if aFrameSizeCapsBuf is too small;
sl@0
   160
			otherwise one of the other system-wide error codes.
sl@0
   161
	@see SDevCamFrameSize
sl@0
   162
	*/
sl@0
   163
	virtual TInt FrameSizeCaps(TDevCamCaptureMode aCaptureMode, TUidPixelFormat aUidPixelFormat, TDes8& aFrameSizeCapsBuf)=0;
sl@0
   164
sl@0
   165
	/**
sl@0
   166
	Sets the sensor brightness to the desired setting.
sl@0
   167
sl@0
   168
	@param aValue A verified brightness setting.
sl@0
   169
	@return KErrNone if successful, KErrNotSupported if not supported.
sl@0
   170
	*/
sl@0
   171
	virtual TInt SetBrightness(TUint aValue) = 0;
sl@0
   172
sl@0
   173
	// SYM_BRANCH: Add support for setting of Dynamic Attributes. Contrast.
sl@0
   174
	/**
sl@0
   175
	Sets the sensor contrast to the desired setting.
sl@0
   176
sl@0
   177
	@param aValue A verified contrast setting.
sl@0
   178
	@return KErrNone if successful, KErrNotSupported if not supported.
sl@0
   179
	*/
sl@0
   180
	virtual TInt SetContrast(TUint aValue) = 0;
sl@0
   181
sl@0
   182
	// SYM_BRANCH: Add support for setting of Dynamic Attributes. Colour Effect.
sl@0
   183
	/**
sl@0
   184
	Sets the sensor color effect to the desired setting.
sl@0
   185
sl@0
   186
	@param aValue A verified color effect setting.
sl@0
   187
	@return KErrNone if successful, KErrNotSupported if not supported.
sl@0
   188
	*/
sl@0
   189
	virtual TInt SetColorEffect(TUint aValue) = 0;
sl@0
   190
sl@0
   191
public:
sl@0
   192
	DCameraScLdd* iLdd;
sl@0
   193
	};
sl@0
   194
sl@0
   195
/**
sl@0
   196
The logical device (factory class) for the camera driver.
sl@0
   197
*/
sl@0
   198
class DCameraScLddFactory : public DLogicalDevice
sl@0
   199
	{
sl@0
   200
public:
sl@0
   201
	DCameraScLddFactory();
sl@0
   202
	virtual TInt Install();
sl@0
   203
	virtual void GetCaps(TDes8 &aDes) const;
sl@0
   204
	virtual TInt Create(DLogicalChannelBase*& aChannel);
sl@0
   205
	TBool IsUnitOpen(TInt aUnit);
sl@0
   206
	TInt SetUnitOpen(TInt aUnit,TBool aIsOpenSetting);
sl@0
   207
private:
sl@0
   208
	/** Mask to keep track of which units have a channel open on them. */
sl@0
   209
	TUint iUnitsOpenMask;
sl@0
   210
	/** A mutex to protect access to the unit info. mask. */
sl@0
   211
	NFastMutex iUnitInfoMutex;
sl@0
   212
	};
sl@0
   213
sl@0
   214
/**
sl@0
   215
The class representing a single image buffer.
sl@0
   216
*/
sl@0
   217
class TImageBuffer : public SDblQueLink
sl@0
   218
	{
sl@0
   219
public:
sl@0
   220
	TImageBuffer();
sl@0
   221
	~TImageBuffer();
sl@0
   222
	TInt Create(DChunk* aChunk,TInt aOffset,TInt aSize,TInt aId,TBool aIsContiguous);
sl@0
   223
	void SyncMemoryBeforeDmaRead();
sl@0
   224
	void SyncMemoryAfterDmaRead();
sl@0
   225
public:
sl@0
   226
	/** The buffer id */
sl@0
   227
	TInt iId;
sl@0
   228
	/** The chunk used for this buffer */
sl@0
   229
	DChunk* iChunk;
sl@0
   230
	/** The offset, in bytes, of the start of the buffer within the chunk. */
sl@0
   231
	TInt iChunkOffset;
sl@0
   232
	/** The size of the buffer in bytes. */
sl@0
   233
	TInt iSize;
sl@0
   234
	/** The virtual address of buffer. */
sl@0
   235
	TLinAddr iLinearAddress;
sl@0
   236
	/** The physical address of buffer. KPhysAddrInvalid if the buffer is not physically contiguous. */
sl@0
   237
	TPhysAddr iPhysicalAddress;
sl@0
   238
	/** A list of physical addresses for buffer pages. 0 if the buffer is physically contiguous. */
sl@0
   239
	TPhysAddr* iPhysicalPages;
sl@0
   240
	/** This is the result of the transfer into this buffer. */
sl@0
   241
	TInt iResult;
sl@0
   242
	};
sl@0
   243
sl@0
   244
/**
sl@0
   245
An object encapsulating an image capture request from the client.
sl@0
   246
*/
sl@0
   247
class TCameraScRequest : public SDblQueLink
sl@0
   248
	{
sl@0
   249
public:
sl@0
   250
	inline TCameraScRequest()
sl@0
   251
		{}
sl@0
   252
public:
sl@0
   253
	/** The request status associated with the request - used to signal completion of the request and pass back a
sl@0
   254
	completion code. */
sl@0
   255
	TRequestStatus* iStatus;
sl@0
   256
	};
sl@0
   257
sl@0
   258
/**
sl@0
   259
An object encapsulating a queue of image capture requests from the client.
sl@0
   260
*/
sl@0
   261
class TCameraScRequestQueue
sl@0
   262
	{
sl@0
   263
public:
sl@0
   264
	TCameraScRequestQueue(NFastMutex* aMutexPtr);
sl@0
   265
	~TCameraScRequestQueue();
sl@0
   266
	TInt Create(DThread* anOwningThread);
sl@0
   267
	TInt Add(TRequestStatus* aStatus);
sl@0
   268
	TRequestStatus* Remove();
sl@0
   269
	void Cancel(TRequestStatus* aStatus);
sl@0
   270
	void CancelAll();
sl@0
   271
	inline TBool IsEmpty();
sl@0
   272
private:
sl@0
   273
	/** The queue of pending capture requests. */
sl@0
   274
	SDblQue iPendRequestQ;
sl@0
   275
	/** The queue of unused capture requests. */
sl@0
   276
	SDblQue iUnusedRequestQ;
sl@0
   277
	/** The actual array of request objects. */
sl@0
   278
	TCameraScRequest* iRequest[KMaxCamScRequestsPending];
sl@0
   279
	NFastMutex* iMutexPtr;
sl@0
   280
	DThread* iOwningThread;
sl@0
   281
	};
sl@0
   282
sl@0
   283
/**
sl@0
   284
The buffer manager base class.
sl@0
   285
*/
sl@0
   286
class DBufferManager : public DBase
sl@0
   287
	{
sl@0
   288
public:
sl@0
   289
	DBufferManager(DCameraScLdd* aLdd);
sl@0
   290
	~DBufferManager();
sl@0
   291
	TInt Create(TInt aNumBuffers,TInt aBufferSize);
sl@0
   292
	TInt Create(TCameraSharedChunkBufConfig& aBufConfig,TInt aChunkHandle,DThread* anOwningThread);
sl@0
   293
	void GetBufConfig(TCameraSharedChunkBufConfig& aBufConfig);
sl@0
   294
	void Reset();
sl@0
   295
	void Purge(TImageBuffer* aBuffer);
sl@0
   296
	TImageBuffer* GetImageForClient(TBool aRemoveLast);
sl@0
   297
	TImageBuffer* SetImageCaptured(TInt aResult);
sl@0
   298
	TInt ReleaseImage(TInt aChunkOffset);
sl@0
   299
	TImageBuffer* NextAvailableForCapture();
sl@0
   300
	TImageBuffer* FindInUseImage(TInt aChunkOffset);
sl@0
   301
protected:
sl@0
   302
	TInt CreateBufferLists(TInt aNumBuffers);
sl@0
   303
	TInt CommitMemoryForBuffer(TInt aChunkOffset,TInt aSize,TBool& aIsContiguous);
sl@0
   304
protected:
sl@0
   305
	/** The owning LDD object. */
sl@0
   306
	DCameraScLdd* iLdd;
sl@0
   307
	/** The chunk which contains the buffers. */
sl@0
   308
	DChunk* iChunk;
sl@0
   309
	/** The linear address in kernel process for the start of the chunk. */
sl@0
   310
	TLinAddr iChunkBase;
sl@0
   311
	/**< MMU mapping attributes that the chunk has actually been mapped with. */
sl@0
   312
	TUint32 iChunkMapAttr;
sl@0
   313
	/** The number of buffers. */
sl@0
   314
	TInt iNumBuffers;
sl@0
   315
	/** The actual array of buffer objects. */
sl@0
   316
	TImageBuffer* iImageBuffer;
sl@0
   317
	/** The buffer currently being filled by image capture. (Not in any list). */
sl@0
   318
	TImageBuffer* iCurrentBuffer;
sl@0
   319
	/** The next buffer to use for image capture. (Not in any list). */
sl@0
   320
	TImageBuffer* iNextBuffer;
sl@0
   321
	/** A queue of those buffers which are currently free. */
sl@0
   322
	SDblQue iFreeBufferQ;
sl@0
   323
	/** A queue of those buffers which currently contain captured images (and which aren't being used by the client). */
sl@0
   324
	SDblQue iCompletedBufferQ;
sl@0
   325
	/** A queue of those buffers which are currently being used by the client. */
sl@0
   326
	SDblQue iInUseBufferQ;
sl@0
   327
private:
sl@0
   328
	friend class DCameraScLdd;
sl@0
   329
	};
sl@0
   330
sl@0
   331
/**
sl@0
   332
The configuration class that is specific for each capture mode. This allows the driver to maintain different configurations,
sl@0
   333
one for each capture mode, and make switching between capture modes faster.
sl@0
   334
*/
sl@0
   335
class TCaptureModeConfig
sl@0
   336
	{
sl@0
   337
	private:
sl@0
   338
		/** The handle to the chunk that is returned to the user side code. */
sl@0
   339
		TInt iChunkHandle;
sl@0
   340
		/** The current configuration of the capture mode */
sl@0
   341
		TCameraConfigV02 iCamConfig;
sl@0
   342
		/** The current configuration of the chunk. */
sl@0
   343
		TCameraSharedChunkBufConfig* iBufConfig;
sl@0
   344
		/** The size in bytes of the chunk configuration info. structure. */
sl@0
   345
		TInt iBufConfigSize;
sl@0
   346
		/** The current frame height. */
sl@0
   347
		TInt iFrameHeight;
sl@0
   348
		/** The current frame width. */
sl@0
   349
		TInt iFrameWidth;
sl@0
   350
		/** The buffer manager. */
sl@0
   351
		DBufferManager* iBufManager;
sl@0
   352
	private:
sl@0
   353
		friend class DCameraScLdd;
sl@0
   354
	};
sl@0
   355
sl@0
   356
/**
sl@0
   357
The camera driver power handler class.
sl@0
   358
*/
sl@0
   359
class DCameraScPowerHandler : public DPowerHandler
sl@0
   360
	{
sl@0
   361
public:
sl@0
   362
	DCameraScPowerHandler(DCameraScLdd* aChannel);
sl@0
   363
	// Inherited from DPowerHandler
sl@0
   364
	void PowerUp();
sl@0
   365
	void PowerDown(TPowerState aPowerState);
sl@0
   366
private:
sl@0
   367
	DCameraScLdd* iChannel;
sl@0
   368
	};
sl@0
   369
sl@0
   370
/**
sl@0
   371
The logical channel class for the camera driver.
sl@0
   372
*/
sl@0
   373
class DCameraScLdd : public DLogicalChannel
sl@0
   374
	{
sl@0
   375
public:
sl@0
   376
	enum TState
sl@0
   377
		{
sl@0
   378
		/** Channel open - but not configured. */
sl@0
   379
		EOpen,
sl@0
   380
		/** Channel configured - but inactive. */
sl@0
   381
		EConfigured,
sl@0
   382
		/** Channel is active - capturing images. */
sl@0
   383
		ECapturing
sl@0
   384
		};
sl@0
   385
public:
sl@0
   386
	DCameraScLdd();
sl@0
   387
	virtual ~DCameraScLdd();
sl@0
   388
	// Inherited from DLogicalChannel
sl@0
   389
	virtual TInt DoCreate(TInt aUnit, const TDesC8* anInfo, const TVersion& aVer);
sl@0
   390
	virtual TInt Request(TInt aReqNo, TAny* a1, TAny* a2);
sl@0
   391
	virtual void HandleMsg(TMessageBase* aMsg);
sl@0
   392
	virtual TInt RequestUserHandle(DThread* aThread, TOwnerType aType);
sl@0
   393
	inline DThread* OwningThread();
sl@0
   394
	inline TInt CurrentFrameHeight();
sl@0
   395
	inline TInt CurrentFrameWidth();
sl@0
   396
	void Shutdown();
sl@0
   397
	virtual TInt ImageCaptureCallback(TDevCamCaptureMode aCaptureMode,TInt aResult,TLinAddr* aLinAddr,TPhysAddr* aPhysAddr);
sl@0
   398
	virtual void PanicClientThread(TInt aReason);
sl@0
   399
private:
sl@0
   400
	TInt DoControl(TInt aFunction, TAny* a1, TAny* a2);
sl@0
   401
	TInt DoRequest(TInt aFunction, TRequestStatus* aStatus, TAny* a1, TAny* a2);
sl@0
   402
	TInt DoCancel(TUint aMask);
sl@0
   403
	TInt SetCaptureMode(TInt aCaptureMode);
sl@0
   404
	TInt SetCamConfig(TInt aCaptureMode, const TDesC8* aCamConfigBuf);
sl@0
   405
	TInt SetBufConfig(TInt aCaptureMode, const TDesC8* aBufferConfigBuf,TInt aChunkHandle);
sl@0
   406
	TInt SetBufConfig(TInt aCaptureMode, TInt aNumBuffers);
sl@0
   407
	TInt ChunkClose(TInt aCaptureMode);
sl@0
   408
	TInt Start();
sl@0
   409
	TInt NotifyNewImage(TRequestStatus* aStatus);
sl@0
   410
	TInt ReleaseBuffer(TInt aChunkOffset);
sl@0
   411
	TInt DoSetConfig(TInt aCaptureMode, const TDesC8* aCamConfigBuf);
sl@0
   412
	TInt ValidateConfig(TInt aCaptureMode, TCameraConfigV02 &aConfig);
sl@0
   413
	TInt DoValidateConfig(TCameraCapsV02* aCamCaps, TInt &aCaptureMode, TCameraConfigV02 &aConfig);
sl@0
   414
	TInt DoStart();
sl@0
   415
	TInt ReAllocBufferConfigInfo(TInt aCaptureMode, TInt aNumBuffers);
sl@0
   416
	TInt ReAllocBufferConfigInfo(TInt aNumBuffers);
sl@0
   417
	TInt GetSensorCaps(TAny* a1);
sl@0
   418
	TInt GetFrameSizeCaps(TAny* a1, TAny* a2);
sl@0
   419
	TInt GetDynamicAttribute(TInt aAttribute, TUint& aValue);
sl@0
   420
	TInt SetDynamicAttribute(TInt aAttribute, TUint aValue);
sl@0
   421
	inline DCameraScPdd* Pdd();
sl@0
   422
	static void RestartDfc(TAny* aChannel);
sl@0
   423
	static void PowerUpDfc(TAny* aPtr);
sl@0
   424
	static void PowerDownDfc(TAny* aPtr);
sl@0
   425
private:
sl@0
   426
	/** An array of configurations for each capture mode. */
sl@0
   427
	TCaptureModeConfig* iCaptureModeConfig;
sl@0
   428
	/** The unit number of this channel. */
sl@0
   429
	TInt iUnit;
sl@0
   430
	/** The operating state of the channel. */
sl@0
   431
	TState iState;
sl@0
   432
	/** A pointer to the owning client thread. */
sl@0
   433
	DThread* iOwningThread;
sl@0
   434
	/** The current capture mode of the camera. */
sl@0
   435
	TDevCamCaptureMode iCaptureMode;
sl@0
   436
	/** The pending request queue. */
sl@0
   437
	TCameraScRequestQueue iRequestQueue;
sl@0
   438
	/** A mutex to protect access to the buffer lists and the pending request list. */
sl@0
   439
	NFastMutex iMutex;
sl@0
   440
	/** The camera driver power handler. */
sl@0
   441
	DCameraScPowerHandler* iPowerHandler;
sl@0
   442
	/** DFC used to re-start the PDD following a data capture error. */
sl@0
   443
	TDfc iRestartDfc;
sl@0
   444
	/** DFC used to handle power down requests from the power manager before a transition into system shutdown/standby. */
sl@0
   445
	TDfc iPowerDownDfc;
sl@0
   446
	/** DFC used to handle power up requests from the power manager following a transition out of system standby. */
sl@0
   447
	TDfc iPowerUpDfc;
sl@0
   448
	
sl@0
   449
	// Used as a cache for values successfully set by SetDynamicAttribute().
sl@0
   450
	TUint iBrightnessValue;
sl@0
   451
	TUint iContrastValue;
sl@0
   452
	TUint iColorEffectValue;
sl@0
   453
	
sl@0
   454
	friend class DCameraScPowerHandler;
sl@0
   455
	friend class DBufferManager;
sl@0
   456
	};
sl@0
   457
sl@0
   458
#include <drivers/camerasc.inl>
sl@0
   459
sl@0
   460
#endif	// __CAMERASC_H__