Update contrib.
1 // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of the License "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // e32\include\drivers\camerasc.h
24 #ifndef __CAMERASC_H__
25 #define __CAMERASC_H__
27 #include <d32camerasc.h>
29 #include <kernel/kpower.h>
32 /** The default number of buffers available to the client. */
33 const TInt KDefaultNumClientBuffers=6;
35 /** The maximum number of client capture requests which may be outstanding at any time. */
36 const TInt KMaxCamScRequestsPending=8;
44 /** The first entry of the buffer offset list. This list holds the offset from the start of the chunk
45 for each buffer. This list is only valid if the flag KScFlagBufOffsetListInUse is set in
46 TSharedChunkBufConfigBase::iFlags. */
55 class TCameraSharedChunkBufConfig : public TSharedChunkBufConfigBase
58 struct SBufSpecList iSpec;
61 // Forward declarations
67 The physical device driver (PDD) base class for the camera driver.
71 class DCameraScPdd : public DBase
75 Return the DFC queue to be used by this device.
76 @param aUnit The unit number for which to get the DFC queue.
77 @return The DFC queue to use.
79 virtual TDfcQue* DfcQ(TInt aUnit)=0;
82 Return the capabilities of this camera device.
83 @param aCapsBuf A packaged TCameraCapsV02 object to be filled with the capabilities of the
84 device. This descriptor is in kernel memory and can be accessed directly.
87 virtual void Caps(TDes8& aCapsBuf) const=0;
90 Return data format information for a custom camera data format setting. Only required where support is
91 required for a data format that isn't supported by the LDD. Platforms which don't require support
92 for custom data settings need not implement this method.
93 @param aConfigBuf A packaged TCameraConfigV02 object containing the current camera driver configuration
94 (including an identifier for the custom setting required). This configuration object should be
95 updated by the PDD with the appropriate settings for the data format concerned. This descriptor
96 is in kernel memory and can be accessed directly.
97 @return KErrNone if successful, otherwise one of the other system wide error codes.
99 virtual TInt SpecifyCustomConfig(TDes8& aConfigBuf);
102 Return the shared chunk create information to be used by this device.
103 @param aChunkCreateInfo A chunk create info. object to be to be filled with the settings
104 required for this device.
106 virtual void GetChunkCreateInfo(TChunkCreateInfo& aChunkCreateInfo)=0;
109 Configure or reconfigure the device using the the configuration supplied.
110 @param aConfigBuf A packaged TCameraConfigV02 object which contains the new configuration settings.
111 This descriptor is in kernel memory and can be accessed directly.
112 @return KErrNone if successful, otherwise one of the other system wide error codes.
113 @see TCameraConfigV02.
115 virtual TInt SetConfig(const TDesC8& aConfigBuf)=0;
118 Start the camera - start pixel sourcing.
119 @param aCaptureMode The capture mode to start. @see TDevCamCaptureMode.
120 @param aLinAddr The linear address of the start of the first buffer to use for image capture.
121 @param aPhysAddr The physical address that corresponds to the linear address: aLinAddr.
122 @return KErrNone if successful;
123 otherwise one of the other system wide error codes.
125 virtual TInt Start(TDevCamCaptureMode aCaptureMode,TLinAddr aLinAddr,TPhysAddr aPhysAddr)=0;
128 Sets the address of the buffer into which the next image will be captured.
129 @param aLinAddr The linear address of the start of the buffer to use to capture the image frame.
130 @param aPhysAddr The physical address that corresponds to the linear address: aLinAddr.
131 @return KErrNone if the capture has been initiated successfully;
132 KErrNotReady if the device is unable to accept the request for the moment;
133 otherwise one of the other system-wide error codes.
135 virtual TInt CaptureNextImage(TLinAddr aLinAddr,TPhysAddr aPhysAddr)=0;
138 Stop the camera - stop pixel sourcing.
139 @return KErrNone if successful, otherwise one of the other system wide error codes.
141 virtual TInt Stop()=0;
144 Power down the camera.
146 virtual void PowerDown()=0;
149 Queries the driver for the size of the structure to be passed to RDevCameraSc::Caps().
151 virtual TInt CapsSize()=0;
154 Returns the supported frame sizes that correspond to the desired capture mode and pixel format passed in.
155 @param aCaptureMode The capture mode for which to obtain the information.
156 @param aUidPixelFormat The pixel format for which to obtain the information.
157 @param aFrameSizeCapsBuf An appropriately sized buffer to be filled with the supported frame sizes.
158 @return KErrNone, if successful,
159 KErrArgument, if an invalid capture mode or pixel format is specified, or if aFrameSizeCapsBuf is too small;
160 otherwise one of the other system-wide error codes.
161 @see SDevCamFrameSize
163 virtual TInt FrameSizeCaps(TDevCamCaptureMode aCaptureMode, TUidPixelFormat aUidPixelFormat, TDes8& aFrameSizeCapsBuf)=0;
166 Sets the sensor brightness to the desired setting.
168 @param aValue A verified brightness setting.
169 @return KErrNone if successful, KErrNotSupported if not supported.
171 virtual TInt SetBrightness(TUint aValue) = 0;
173 // SYM_BRANCH: Add support for setting of Dynamic Attributes. Contrast.
175 Sets the sensor contrast to the desired setting.
177 @param aValue A verified contrast setting.
178 @return KErrNone if successful, KErrNotSupported if not supported.
180 virtual TInt SetContrast(TUint aValue) = 0;
182 // SYM_BRANCH: Add support for setting of Dynamic Attributes. Colour Effect.
184 Sets the sensor color effect to the desired setting.
186 @param aValue A verified color effect setting.
187 @return KErrNone if successful, KErrNotSupported if not supported.
189 virtual TInt SetColorEffect(TUint aValue) = 0;
196 The logical device (factory class) for the camera driver.
198 class DCameraScLddFactory : public DLogicalDevice
201 DCameraScLddFactory();
202 virtual TInt Install();
203 virtual void GetCaps(TDes8 &aDes) const;
204 virtual TInt Create(DLogicalChannelBase*& aChannel);
205 TBool IsUnitOpen(TInt aUnit);
206 TInt SetUnitOpen(TInt aUnit,TBool aIsOpenSetting);
208 /** Mask to keep track of which units have a channel open on them. */
209 TUint iUnitsOpenMask;
210 /** A mutex to protect access to the unit info. mask. */
211 NFastMutex iUnitInfoMutex;
215 The class representing a single image buffer.
217 class TImageBuffer : public SDblQueLink
222 TInt Create(DChunk* aChunk,TInt aOffset,TInt aSize,TInt aId,TBool aIsContiguous);
223 void SyncMemoryBeforeDmaRead();
224 void SyncMemoryAfterDmaRead();
228 /** The chunk used for this buffer */
230 /** The offset, in bytes, of the start of the buffer within the chunk. */
232 /** The size of the buffer in bytes. */
234 /** The virtual address of buffer. */
235 TLinAddr iLinearAddress;
236 /** The physical address of buffer. KPhysAddrInvalid if the buffer is not physically contiguous. */
237 TPhysAddr iPhysicalAddress;
238 /** A list of physical addresses for buffer pages. 0 if the buffer is physically contiguous. */
239 TPhysAddr* iPhysicalPages;
240 /** This is the result of the transfer into this buffer. */
245 An object encapsulating an image capture request from the client.
247 class TCameraScRequest : public SDblQueLink
250 inline TCameraScRequest()
253 /** The request status associated with the request - used to signal completion of the request and pass back a
255 TRequestStatus* iStatus;
259 An object encapsulating a queue of image capture requests from the client.
261 class TCameraScRequestQueue
264 TCameraScRequestQueue(NFastMutex* aMutexPtr);
265 ~TCameraScRequestQueue();
266 TInt Create(DThread* anOwningThread);
267 TInt Add(TRequestStatus* aStatus);
268 TRequestStatus* Remove();
269 void Cancel(TRequestStatus* aStatus);
271 inline TBool IsEmpty();
273 /** The queue of pending capture requests. */
274 SDblQue iPendRequestQ;
275 /** The queue of unused capture requests. */
276 SDblQue iUnusedRequestQ;
277 /** The actual array of request objects. */
278 TCameraScRequest* iRequest[KMaxCamScRequestsPending];
279 NFastMutex* iMutexPtr;
280 DThread* iOwningThread;
284 The buffer manager base class.
286 class DBufferManager : public DBase
289 DBufferManager(DCameraScLdd* aLdd);
291 TInt Create(TInt aNumBuffers,TInt aBufferSize);
292 TInt Create(TCameraSharedChunkBufConfig& aBufConfig,TInt aChunkHandle,DThread* anOwningThread);
293 void GetBufConfig(TCameraSharedChunkBufConfig& aBufConfig);
295 void Purge(TImageBuffer* aBuffer);
296 TImageBuffer* GetImageForClient(TBool aRemoveLast);
297 TImageBuffer* SetImageCaptured(TInt aResult);
298 TInt ReleaseImage(TInt aChunkOffset);
299 TImageBuffer* NextAvailableForCapture();
300 TImageBuffer* FindInUseImage(TInt aChunkOffset);
302 TInt CreateBufferLists(TInt aNumBuffers);
303 TInt CommitMemoryForBuffer(TInt aChunkOffset,TInt aSize,TBool& aIsContiguous);
305 /** The owning LDD object. */
307 /** The chunk which contains the buffers. */
309 /** The linear address in kernel process for the start of the chunk. */
311 /**< MMU mapping attributes that the chunk has actually been mapped with. */
312 TUint32 iChunkMapAttr;
313 /** The number of buffers. */
315 /** The actual array of buffer objects. */
316 TImageBuffer* iImageBuffer;
317 /** The buffer currently being filled by image capture. (Not in any list). */
318 TImageBuffer* iCurrentBuffer;
319 /** The next buffer to use for image capture. (Not in any list). */
320 TImageBuffer* iNextBuffer;
321 /** A queue of those buffers which are currently free. */
322 SDblQue iFreeBufferQ;
323 /** A queue of those buffers which currently contain captured images (and which aren't being used by the client). */
324 SDblQue iCompletedBufferQ;
325 /** A queue of those buffers which are currently being used by the client. */
326 SDblQue iInUseBufferQ;
328 friend class DCameraScLdd;
332 The configuration class that is specific for each capture mode. This allows the driver to maintain different configurations,
333 one for each capture mode, and make switching between capture modes faster.
335 class TCaptureModeConfig
338 /** The handle to the chunk that is returned to the user side code. */
340 /** The current configuration of the capture mode */
341 TCameraConfigV02 iCamConfig;
342 /** The current configuration of the chunk. */
343 TCameraSharedChunkBufConfig* iBufConfig;
344 /** The size in bytes of the chunk configuration info. structure. */
346 /** The current frame height. */
348 /** The current frame width. */
350 /** The buffer manager. */
351 DBufferManager* iBufManager;
353 friend class DCameraScLdd;
357 The camera driver power handler class.
359 class DCameraScPowerHandler : public DPowerHandler
362 DCameraScPowerHandler(DCameraScLdd* aChannel);
363 // Inherited from DPowerHandler
365 void PowerDown(TPowerState aPowerState);
367 DCameraScLdd* iChannel;
371 The logical channel class for the camera driver.
373 class DCameraScLdd : public DLogicalChannel
378 /** Channel open - but not configured. */
380 /** Channel configured - but inactive. */
382 /** Channel is active - capturing images. */
387 virtual ~DCameraScLdd();
388 // Inherited from DLogicalChannel
389 virtual TInt DoCreate(TInt aUnit, const TDesC8* anInfo, const TVersion& aVer);
390 virtual TInt Request(TInt aReqNo, TAny* a1, TAny* a2);
391 virtual void HandleMsg(TMessageBase* aMsg);
392 virtual TInt RequestUserHandle(DThread* aThread, TOwnerType aType);
393 inline DThread* OwningThread();
394 inline TInt CurrentFrameHeight();
395 inline TInt CurrentFrameWidth();
397 virtual TInt ImageCaptureCallback(TDevCamCaptureMode aCaptureMode,TInt aResult,TLinAddr* aLinAddr,TPhysAddr* aPhysAddr);
398 virtual void PanicClientThread(TInt aReason);
400 TInt DoControl(TInt aFunction, TAny* a1, TAny* a2);
401 TInt DoRequest(TInt aFunction, TRequestStatus* aStatus, TAny* a1, TAny* a2);
402 TInt DoCancel(TUint aMask);
403 TInt SetCaptureMode(TInt aCaptureMode);
404 TInt SetCamConfig(TInt aCaptureMode, const TDesC8* aCamConfigBuf);
405 TInt SetBufConfig(TInt aCaptureMode, const TDesC8* aBufferConfigBuf,TInt aChunkHandle);
406 TInt SetBufConfig(TInt aCaptureMode, TInt aNumBuffers);
407 TInt ChunkClose(TInt aCaptureMode);
409 TInt NotifyNewImage(TRequestStatus* aStatus);
410 TInt ReleaseBuffer(TInt aChunkOffset);
411 TInt DoSetConfig(TInt aCaptureMode, const TDesC8* aCamConfigBuf);
412 TInt ValidateConfig(TInt aCaptureMode, TCameraConfigV02 &aConfig);
413 TInt DoValidateConfig(TCameraCapsV02* aCamCaps, TInt &aCaptureMode, TCameraConfigV02 &aConfig);
415 TInt ReAllocBufferConfigInfo(TInt aCaptureMode, TInt aNumBuffers);
416 TInt ReAllocBufferConfigInfo(TInt aNumBuffers);
417 TInt GetSensorCaps(TAny* a1);
418 TInt GetFrameSizeCaps(TAny* a1, TAny* a2);
419 TInt GetDynamicAttribute(TInt aAttribute, TUint& aValue);
420 TInt SetDynamicAttribute(TInt aAttribute, TUint aValue);
421 inline DCameraScPdd* Pdd();
422 static void RestartDfc(TAny* aChannel);
423 static void PowerUpDfc(TAny* aPtr);
424 static void PowerDownDfc(TAny* aPtr);
426 /** An array of configurations for each capture mode. */
427 TCaptureModeConfig* iCaptureModeConfig;
428 /** The unit number of this channel. */
430 /** The operating state of the channel. */
432 /** A pointer to the owning client thread. */
433 DThread* iOwningThread;
434 /** The current capture mode of the camera. */
435 TDevCamCaptureMode iCaptureMode;
436 /** The pending request queue. */
437 TCameraScRequestQueue iRequestQueue;
438 /** A mutex to protect access to the buffer lists and the pending request list. */
440 /** The camera driver power handler. */
441 DCameraScPowerHandler* iPowerHandler;
442 /** DFC used to re-start the PDD following a data capture error. */
444 /** DFC used to handle power down requests from the power manager before a transition into system shutdown/standby. */
446 /** DFC used to handle power up requests from the power manager following a transition out of system standby. */
449 // Used as a cache for values successfully set by SetDynamicAttribute().
450 TUint iBrightnessValue;
451 TUint iContrastValue;
452 TUint iColorEffectValue;
454 friend class DCameraScPowerHandler;
455 friend class DBufferManager;
458 #include <drivers/camerasc.inl>
460 #endif // __CAMERASC_H__