Update contrib.
1 // Copyright (c) 2007-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.
22 #ifndef __DISPCHANNEL_INL__
23 #define __DISPCHANNEL_INL__
25 #include <dispchannel.h>
27 #ifndef __KERNEL_MODE__
29 /** Creates a connection to the DisplayChannel Driver logical device driver.
30 This handle will need to be closed by calling Close()
31 when the connection to the Display Driver is no longer required.
33 @param aScreen Identifies the screen this object will control
34 @return KErrNone if successful, otherwise one of the system-wide error codes.
36 inline TInt RDisplayChannel::Open(TUint aScreen)
38 TVersion versionAlwaysSupported(KDisplayChMajorVersionNumberAlwaysSupported,
39 KDisplayChMinorVersionNumberAlwaysSupported,
40 KDisplayChBuildVersionNumberAlwaysSupported);
42 TInt r = DoCreate(Name(), versionAlwaysSupported, aScreen, NULL, NULL);
46 /** The connection is closed and the driver reverts back to legacy behaviour,
47 i.e. Non-GCE mode where the legacy buffer is used as the screen output
49 inline void RDisplayChannel::Close(void)
51 RBusLogicalChannel::Close();
54 /** Get the static details of the display-owned composition buffer(s).
55 These are used with the address returned by GetCompositionBuffer()
56 to describe the current composition buffer.
58 The normal and flipped size information reflects the maximum direct access display resolution,
59 rather than the current resolution. The offset between lines remains constant,
60 regardless of current buffer format. See NextLineOffset() for specific buffer
63 The available rotations indicates all the possible rotations, across all
64 resolutions, even if not all are supported in all cases.
70 @param aInfo The static details of the composition buffer(s).
71 @return KErrNone if successful, otherwise one of the system-wide error codes.
73 inline TInt RDisplayChannel::GetDisplayInfo(TDes8& aInfo)
75 return (DoControl(ECtrlGetDisplayInfo, &aInfo));
78 /** Return the access details for a composition buffer, opening a new handle to the chunk containing
79 the composition buffer. Note that because all returned information is static, this function will
80 normally only be called called once for each composition buffer when the RDisplayChannel is opened.
82 @param aBufferIndex The index of a composition buffer.
83 @param aChunk A new open handle to chunk containing the composition buffer indexed by aBufferIndex.
84 @param aChunkOffset The offset from the base address of aChunk to the composition buffer indexed by aBufferIndex.
85 @return KErrNone if this command completed successfully, otherwise this is another of the system-wide error codes.
87 inline TInt RDisplayChannel::GetCompositionBufferInfo(TUint aBufferIndex, RChunk& aChunk, TInt& aOffset)
90 (DoControl(ECtrlGetCompositionBufferInfo, &aBufferIndex, &arg));
91 aChunk.SetHandle(arg[0]);
96 /** Request the driver to identify a driver-owned composition buffer for the user to render into.
97 This may not be completed until the next display refresh if the system is implementing multi-buffering
98 and there are no composition buffers available immediately.
100 @param aBufferIndex On completion of aStatus, contains the buffer index of driver-owned buffer suitable
101 for client rendering. The buffer access details can be retrieved by calling GetCompositionBufferInfo().
102 The remaining buffer attributes are described by GetDisplayInfo()
103 @param aStatus On completion, contains the status of the request. This is KErrNone if
104 the system is multi-buffered and an available buffer was returned.
105 This is KErrNone is the system is single-buffered and the primary buffer was returned.
106 Otherwise this is another of the system-wide error codes.
108 inline void RDisplayChannel::GetCompositionBuffer(TUint& aIndex, TRequestStatus& aStatus)
110 DoRequest(EReqGetCompositionBuffer, aStatus, (TAny*)&aIndex);
113 /** Cancel the outstanding request to GetCompositionBuffer()
115 inline void RDisplayChannel::CancelGetCompositionBuffer(void)
117 DoCancel(1<<ECtrlCancelGetCompositionBuffer);
120 /** Tells the driver to queue a request to show the composition buffer on screen at the next display refresh.
122 @param aRegion The region changed by the client. The driver may choose to optimise posting using this
123 information or it may ignore it. Up to KMaxRectangles rectangles can be specified. If null, the whole buffer is used.
124 @param aPostCount This is an identifier returned by the driver for this Post request on exiting the method
126 inline TInt RDisplayChannel::PostCompositionBuffer(const TRegionFix<TDisplayInfo::KMaxRectangles>* aRegion, TPostCount& aCount)
128 return (DoControl(ECtrlPostCompositionBuffer, (TAny*)aRegion, &aCount));
131 /** Request the driver to show the legacy buffer on screen at the next display refresh.
132 @param aPostCount This is an identifier returned by the driver for this Post request on exiting the method.
133 @return KErrNone if the request was queued successfully, otherwise this is another of the system-wide error codes.
135 inline TInt RDisplayChannel::PostLegacyBuffer(const TRegionFix<TDisplayInfo::KMaxRectangles>* aRegion, TPostCount& aCount)
137 return (DoControl(ECtrlPostLegacyBuffer, (TAny*)aRegion, &aCount));
140 /** Register a user-provided buffer for use by the driver. This enables the user to subsequently post the buffer.
141 The number of registered buffers will need to have a limit and this is set to KMaxUserBuffers.
143 @param aBufferId Identifier to be used in the call to PostUserBuffer().
144 @param aChunk Chunk containing memory to be used by the driver.
145 @param aOffset Byte offset of the buffer from the chunk base.
146 @return KErrNone if the buffer has successfully registered.
147 KErrTooBig if the number of registered buffers is at its limit when this call was made.
148 Otherwise this is another of the system-wide error codes.
150 inline TInt RDisplayChannel::RegisterUserBuffer(TBufferId& aBufferId, const RChunk& aChunk, TInt aOffset)
152 TInt arg[2] = {aChunk.Handle(), aOffset};
153 return (DoControl(ECtrlRegisterUserBuffer, arg, &aBufferId));
156 /** Request the driver to show a buffer on screen at the next display refresh and notify the user when the buffer
157 is no longer being displayed or has been dropped. Note that if two successive calls are made to PostUserBuffer()
158 in between vertical sync pulses, the latest PostUserBuffer() call will supersede the previous call and will complete
159 any outstanding request status object for that call with KErrCancel
161 @param aBufferId Identifier representing a buffer. Generated by a previous call to RegisterUserBuffer().
162 @param aStatus On completion the submitted buffer is no longer in use by the display hardware, unless the same
163 buffer is posted a second time before it has completed. aStatus contains the status of the request. This is KErrNone
164 if the request was executed successfully. This is KErrCancel if this posting request was superseded by a more recent request.
165 This is KErrArgument if aBufferId is not a registered buffer. Otherwise this is another of the system-wide error codes.
166 @param aRegion The region changed by the client. The driver may choose to optimise posting using this information or it may ignore it.
167 Up to KMaxRectangles rectangles can be specified. If null, the whole buffer is used.
168 @param aPostCount This is an identifier returned by the driver for this Post request on exiting the method.
170 inline void RDisplayChannel::PostUserBuffer(TBufferId aBufferId, TRequestStatus& aStatus, const TRegionFix<TDisplayInfo::KMaxRectangles>* aRegion, TPostCount& aCount)
172 TInt arg[2] = {aBufferId, reinterpret_cast<const TInt>(aRegion)};
173 DoRequest(EReqPostUserBuffer, aStatus, arg, &aCount);
176 /** Cancel the outstanding request to PostUserBuffer
178 inline void RDisplayChannel::CancelPostUserBuffer(void)
180 DoCancel(1<<ECtrlCancelPostUserBuffer);
183 /** Deregister a previously registered buffer.
185 @param aBufferId Identifier for a previously registered buffer, generated by a call to RegisterUserBuffer().
186 @return KErrNone if successful, KErrArgument if the token is not recognised, KErrInUse if the buffer is still in use,
188 inline TInt RDisplayChannel::DeregisterUserBuffer(TBufferId aBufferId)
190 return (DoControl(ECtrlDeregisterUserBuffer, (TAny*)&aBufferId));
193 /** This function allows the caller to be notified when a specified post either gets displayed or dropped.
194 Completes when a specified post request either gets displayed or dropped.
195 Used to determine timing information for when a particular frame was displayed.
197 @param aPostCount An identifier representing a particular post request obtained from PostUserBuffer().
198 @param aStatus On completion, contains the status of the request. This is KErrNone if the post request was
199 valid and was either displayed or dropped. If aPostCount is less than the current count then this will complete
200 immediately with KErrNone. Otherwise this is another of the system-wide error codes.
202 inline void RDisplayChannel::WaitForPost(TPostCount aPostCount, TRequestStatus& aStatus)
204 DoRequest(EReqWaitForPost, aStatus, &aPostCount);
207 /** Cancel the outstanding request to WaitForPost().
209 inline void RDisplayChannel::CancelWaitForPost(void)
211 DoCancel(1<<ECtrlCancelWaitForPost);
214 /** Ensures that the next post request will be displayed using the requested rotation.
216 @param aRotation A specific rotation value.
217 @param aDisplayConfigChanged Returns ETrue if the composition buffer is now using an alternative
218 (either Normal or Flipped) orientation following this call.
219 @return KErrNone if rotation can be achieved. KErrNotSupported if the requested rotation is not supported.
220 Otherwise this is another of the system-wide error codes.
222 inline TInt RDisplayChannel::SetRotation(TDisplayRotation aRotation, TBool& aDisplayConfigChanged)
224 aDisplayConfigChanged = EFalse;
225 return (DoControl(ECtrlSetRotation, &aRotation, &aDisplayConfigChanged));
228 /** Return the current rotation setting of the display.
230 inline RDisplayChannel::TDisplayRotation RDisplayChannel::CurrentRotation(void)
232 TDisplayRotation rotation = ERotationNormal;
233 DoControl(ECtrlCurrentRotation, &rotation);
237 /** Asynchronous request for notification of when a display change occurs.
238 The request is completed when the connectedness of the display changes, or when
239 the set of available resolutions or pixel formats changes.
241 If a failure occurs, it is passed back in the aStatus.
243 @panic DISPCHAN KNotificationAlreadySet if a notification request is pending.
244 @param aStatus Completed on display change, or cancellation.
246 inline void RDisplayChannel::NotifyOnDisplayChange(TRequestStatus& aStatus)
248 DoRequest(EReqWaitForDisplayConnect, aStatus);
251 /** Cancels a pending request to notify on display change.
253 If there is a pending notification request, the status value will be set to
254 KErrCancelled and it will be completed. If there is no pending request for
255 notification, the call will simply return.
257 inline void RDisplayChannel::NotifyOnDisplayChangeCancel()
259 DoCancel(1<<ECtrlCancelWaitForDisplayConnect);
262 /** Returns the number of display resolutions currently available.
264 This is the maximum number of resolutions that can currently be retrieved using
265 GetResolutions() and set using a combination of SetResolution() and
267 When no display is connected, there shall be a single entry.
269 @return The number of TResolution elements that can be retrieved using
272 inline TInt RDisplayChannel::NumberOfResolutions()
274 return (DoControl(ECtrlNumberOfResolutions));
277 /** Retrieves the resolutions that are currently available.
279 If the given buffer is large enough to hold them all, the set of available
280 resolutions shall be written to it as a contiguous sequence of TResolution
281 elements. aCount shall be set to the number of TResolution elements written and
282 the length of the buffer shall be set to the total number of bytes written.
284 If a display can be disabled or become disconnected, the list shall include the
285 size (0,0). If the display is connected but disabled, the list shall also
286 include the other supported resolutions. If a display cannot be disconnected or
287 disabled, the list shall not include (0,0).
289 @return KErrNone on success, KErrOverflow if the buffer is not large enough, or
290 KErrNotSupported if not supported by driver..
291 @param aResolutions Buffer to receive resolutions, as a contiguous sequence
292 of TResolution elements.
293 @param aCount The number of TResolution elements written to the buffer.
295 inline TInt RDisplayChannel::GetResolutions(TDes8& aResolutions, TInt& aCount)
297 return (DoControl(ECtrlGetResolutions,&aResolutions,&aCount));
300 /** Sets the display's new pixel resolution.
302 The resolution shall be in terms of no rotation (ERotationNormal), but the
303 actual display output will depend on the current Rotation() value.
305 A successful call to this function may change any of the other attributes of
306 the display channel. The change to the attributes happens immediately, but the
307 change to the display output will only take place on the next buffer posting.
309 It is recommended that the implementation tries to minimize changes to other
310 attributes, if possible. For example, if the current rotation is set to
311 ERotation90CW and the new resolution supports that rotation, it should remain
312 as the current rotation. On the other hand, if the new resolution does not
313 support that rotation, it must be changed to a supported one.
315 If (0,0) is in the resolution list, passing a zero width and/or zero height
316 resolution shall select it, and shall have the effect of disabling output.
318 If either dimension of the given resolution is negative, KErrArgument shall be
319 returned. If the parameter is valid, but not currently available,
320 KErrNotSupported shall be returned.
323 @capability WriteDeviceData Used to prevent arbitrary changes to the display
325 @param aRes The new display resolution.
326 @return KErrNone on success. KErrNotSupported, KErrOutOfMemory or KErrArgument
329 inline TInt RDisplayChannel::SetResolution(const TSize& aRes)
331 return (DoControl(ECtrlSetResolution,const_cast<TSize*>(&aRes)));
334 /** Returns the current resolution.
336 This is always in terms of the ERotationNormal rotation regardless of current
337 and supported rotations. When the display is disconnected or disabled, this
340 If the current rotation is ERotation90CW or ERotation270CW, the width and
341 height values must be swapped by the caller to get the apparent width and
344 @param aSize Receives the current resolution.
345 @return KErrNone on success, KErrNotSupported if not supported by driver.
347 inline TInt RDisplayChannel::GetResolution(TSize& aSize)
349 return (DoControl(ECtrlGetResolution,&aSize));
352 inline TInt RDisplayChannel::GetTwips(TSize& aTwips)
354 return (DoControl(ECtrlGetTwips,&aTwips));
357 /** Returns the number of different buffer pixel formats that can be retrieved
358 using GetPixelFormats().
360 @return The number of pixel formats supported.
362 inline TInt RDisplayChannel::NumberOfPixelFormats()
364 return (DoControl(ECtrlNumberOfPixelFormats));
367 /** Retrieves the buffer pixel formats that are supported.
369 If aFormatsBuf is large enough to hold them all, the set of available pixel
370 formats shall be written to it as a contiguous sequence of TPixelFormat
371 elements. aCount shall be set to the number of TPixelFormat elements written
372 and the length of the buffer shall be set to the total number of bytes written.
374 Not all pixel formats may be valid in all circumstances.
378 @param aFormatsBuf Buffer to receive pixel formats, as a contiguous sequence
380 @param aCount Receives the number of TUid elements written to the buffer.
381 @return KErrNone on success, KErrOverflow if the buffer is too small to hold
382 all the elements, or KErrNotSupported if not supported by driver.
384 inline TInt RDisplayChannel::GetPixelFormats(TDes8& aFormatsBuf, TInt& aCount)
386 return (DoControl(ECtrlGetPixelFormats,&aFormatsBuf,&aCount));
389 /** Sets the buffer format to be used when the next buffer is posted.
391 The width and height used in the buffer format correspond to the current
392 rotation in effect. The size in the buffer format must be at least as big as
393 the buffer mapping size, or the function shall fail with KErrNotSupported.
395 @see SetBufferMapping
396 @see PostCompositionBuffer
397 @see PostLegacyBuffer
400 @capability WriteDeviceData Used to prevent arbitrary changes to the buffer
402 @param aBufferFormat The buffer format to be used.
403 @return KErrNone on success, KErrArgument if the buffer format is not valid,
404 KErrNotSupported if the format is valid but not supported, or KErrOutOfMemory
405 on memory allocation failure.
407 inline TInt RDisplayChannel::SetBufferFormat(const TBufferFormat& aBufferFormat)
409 return (DoControl(ECtrlSetBufferFormat,const_cast<TBufferFormat*>(&aBufferFormat)));
413 /** Retrieves the buffer format that will be used on the next buffer posting.
415 Initially, this will match the information returned by GetDisplayInfo() for the
417 When a new resolution, rotation or mapping is chosen, the buffer format may
420 @param aBufferFormat Receives the buffer format.
421 @return KErrNone on success, KErrNotSupported if not supported by driver.
423 inline TInt RDisplayChannel::GetBufferFormat(TBufferFormat& aBufferFormat)
425 return (DoControl(ECtrlGetBufferFormat,&aBufferFormat));
428 /** Returns the offset in bytes from the start of a plane to the next one, for the
431 This allows for additional bytes at the end of a plane before the start of the
432 next one, to allow for alignment, for example.
434 For packed pixel formats and interleaved planes in semi-planar formats, the
435 return value is zero.
437 The current display channel resolution and the rotation is used in computing the
440 @param aBufferFormat A buffer width, in pixels.
441 @param aPlane The plane number, starting at zero, for planar formats.
442 @return The next plane offset, in bytes, or zero if the parameters are invalid,
443 not recognised or not supported.
445 inline TInt RDisplayChannel::NextPlaneOffset(const TBufferFormat& aBufferFormat, TInt aPlane)
447 return (DoControl(ECtrlNextPlaneOffset,const_cast<TBufferFormat*>(&aBufferFormat),&aPlane));
450 /** Returns the offset in bytes between pixels in adjacent lines, for the given
453 The value returned may allow for additional bytes at the end of each line, for
454 the purposes of alignment, for example. This is also known as the "stride" of
457 For packed pixel formats, aPlane is ignored. The offset returned shall be at
458 least the width in pixels multiplied by the bytes per pixel.
460 The current display channel resolution and the rotation is used in computing the
463 For planar and semi-planar formats, aPlane dictates which offset is returned.
464 It must be at least the width in pixels multiplied by the (possibly fractional)
465 number of bytes per pixel for the plane.
467 @param aBufferFormat The buffer format.
468 @param aPlane The plane number, starting at zero.
469 @return The stride for a given combination of width in pixels and pixel format,
470 or zero if the parameters are invalid, not recognised or not supported.
472 inline TInt RDisplayChannel::NextLineOffset(const TBufferFormat& aBufferFormat, TInt aPlane)
474 return (DoControl(ECtrlNextLineOffset,const_cast<TBufferFormat*>(&aBufferFormat),&aPlane));
477 /** Returns the offset in bytes from the start of a plane to the next one, for the
480 This allows for additional bytes at the end of a plane before the start of the
481 next one, to allow for alignment, for example.
483 For packed pixel formats and interleaved planes in semi-planar formats, the
484 return value is zero.
486 For planar and semi-planar formats, aPlane dictates which offset is returned.
487 It must be at least the width in pixels multiplied by the (possibly fractional)
488 number of bytes per pixel for the plane.
490 @param aBufferFormat The buffer format.
491 @param aResolution The resolution to be taken in consideration
492 @param aRotation The rotation to be taken in consideration
493 @param aPlane The plane number, starting at zero.
494 @return The stride for a given combination of width in pixels and pixel format,
495 or zero if the parameters are invalid, not recognised or not supported.
497 inline TInt RDisplayChannel::NextPlaneOffset(const TBufferFormat& aBufferFormat, const TResolution& aResolution, TDisplayRotation aRotation, TInt aPlane)
499 TBufferFormatContext context(aResolution, aRotation, aPlane);
500 return (DoControl(ECtrlNextPlaneOffsetExtended, const_cast<TBufferFormat*>(&aBufferFormat), &context));
503 /** Returns the offset in bytes between pixels in adjacent lines, for the given
506 The value returned may allow for additional bytes at the end of each line, for
507 the purposes of alignment, for example. This is also known as the "stride" of
510 For packed pixel formats, aPlane is ignored. The offset returned shall be at
511 least the width in pixels multiplied by the bytes per pixel.
513 For planar and semi-planar formats, aPlane dictates which offset is returned.
514 It must be at least the width in pixels multiplied by the (possibly fractional)
515 number of bytes per pixel for the plane.
517 @param aBufferFormat The buffer format.
518 @param aResolution The resolution to be taken in consideration
519 @param aRotation The rotation to be taken in consideration
520 @param aPlane The plane number, starting at zero.
521 @return The stride for a given combination of width in pixels and pixel format,
522 or zero if the parameters are invalid, not recognised or not supported.
524 inline TInt RDisplayChannel::NextLineOffset(const TBufferFormat& aBufferFormat, const TResolution& aResolution, TDisplayRotation aRotation, TInt aPlane)
526 TBufferFormatContext context(aResolution, aRotation, aPlane);
527 return (DoControl(ECtrlNextLineOffsetExtended, const_cast<TBufferFormat*>(&aBufferFormat), &context));
530 /** Returns the current version of the driver.
532 inline TInt RDisplayChannel::Version(TVersion& aVersion)
534 return (DoControl(ECtrlVersion, &aVersion));
538 /** Debug only function to allocate a shared chunk user buffer for testing.
540 inline TInt RDisplayChannel::CreateUserBuffer(TBufferFormat& aBufferFormat, RChunk& aChunk)
542 return (aChunk.SetReturnedHandle(DoControl(ECtrlCreateUserBuffer, &aBufferFormat)));
546 /** Constructs a resolution setting.
548 @param aSize The resolution size in pixels, in ERotationNormal rotation.
549 @param aRotations A bitwise combination of one or more TDisplayRotation
552 inline RDisplayChannel::TResolution::TResolution(TSize aPixelSize, TSize aTwipsSize, TUint32 aFlags):
553 iPixelSize(aPixelSize),iTwipsSize(aTwipsSize),iFlags(aFlags),reserved_0(0)
556 /** Constructs a buffer format.
558 @param aSize The size in pixels.
559 @param aPixelFormat The pixel format.
561 inline RDisplayChannel::TBufferFormat::TBufferFormat(TSize aSize, TPixelFormat aPixelFormat):
562 iSize(aSize),iPixelFormat(aPixelFormat),reserved_0(0)
567 /** Constructs a buffer context.
569 @param aResolution The display resolution.
570 @param aRotation The display rotation.
573 inline RDisplayChannel::TBufferFormatContext::TBufferFormatContext(TResolution aResolution, TDisplayRotation aRotation, TInt aPlane):
574 iResolution(aResolution), iRotation(aRotation), iPlane(aPlane)
583 inline const TDesC& RDisplayChannel::Name()
585 return (KDisplayDriverName);
590 inline TVersion RDisplayChannel::VersionRequired(void)
592 return TVersion(KDisplayChMajorVersionNumber,
593 KDisplayChMinorVersionNumber,
594 KDisplayChBuildVersionNumber);
597 #endif // __DISPCHANNEL_INL__