Update contrib.
1 // Copyright (c) 1998-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 // os\kernelhwsrv\kernel\eka\include\drivers\display.h
15 // Interface to LDD of the Display GCE driver
16 // Kernel side definitions for the GCE driver
29 #include <videodriver.h>
30 #include <dispchannel.h>
32 #include <pixelformats.h>
36 const TInt KDisplayLBMax = 2;
37 const TInt KDisplayCBMax = 2;
38 const TInt KDisplayUBMax = 8;
41 const TInt KPendingReqArraySize = RDisplayChannel::EReqWaitForPost +1;
43 const TInt KMaxQueuedRequests = 3;
45 class DDisplayChannel;
50 EBufferTypeLegacy = 0,
51 EBufferTypeComposition,
73 TUint32 iPhysicalAddress;
77 TRequestStatus* iPendingRequest;
83 An object encapsulating a request from the client(iOwningThread) to the GCE driver.
88 /** The TClientRequest object associated with the request - used to signal completion of the request and pass back a
90 TClientRequest* iTClientReq;
92 /** The thread which issued the request and which supplied the request status. */
93 DThread* iOwningThread;
103 Logical Channel factory class for 'Display Channel LDD'
106 class DDisplayLddFactory : public DLogicalDevice
109 static DDisplayLddFactory* CreateInstance();
110 ~DDisplayLddFactory();
111 // Inherited from DLogicalDevice
112 virtual TInt Install();
113 virtual void GetCaps(TDes8& aDes) const;
114 virtual TInt Create(DLogicalChannelBase*& aChannel);
115 TBool IsUnitOpen(TInt aUnit);
116 TInt SetUnitOpen(TInt aUnit,TBool aIsOpenSetting);
118 DDisplayLddFactory();
122 /** Mask to keep track of which units have a channel open on them. */
123 TUint iUnitsOpenMask;
124 /** A mutex to protect access to the unit info mask. */
125 NFastMutex iUnitInfoMutex;
130 Logical Channel class for 'Display Channel LDD'
132 class DDisplayLdd : public DLogicalChannel
136 // create one instance of this object
137 static DDisplayLdd* CreateInstance();
138 virtual ~DDisplayLdd();
139 virtual TInt DoCreate(TInt aUnit, const TDesC8* anInfo, const TVersion& aVer);
140 virtual void HandleMsg(TMessageBase* aMsg);
146 // Implementation for the differnt kinds of messages sent through RBusLogicalChannel
147 TInt DoControl(TInt aFunction, TAny* a1, TAny* a2, DThread* aClient);
148 TInt DoRequest(TInt aReqNo, TAny* a1, TAny* a2, TInt index, DThread* aClient);
149 void DoCancel(TUint aMask);
151 TInt SendRequest(TMessageBase* aMsg);
152 TInt SendControl(TMessageBase* aMsg);
153 TInt SendMsg(TMessageBase* aMsg);
155 TBufferNode* FindUserBufferNode(TInt aBufferId);
156 TInt CheckAndOpenUserBuffer(TBufferNode* aNode, TInt aHandle, TInt aOffset, DThread* aClient);
157 TInt FreeUserBufferNode(TBufferNode* aNode);
159 void CompleteRequest(DThread* aThread, TClientRequest*& aTClientReq, TInt aReason);
164 virtual TInt RequestComplete(TInt aRequest, TInt );
170 RDisplayChannel::TDisplayInfo iLegacyInfo;
171 RDisplayChannel::TDisplayInfo iDisplayInfo;
174 RDisplayChannel::TPostCount iCurrentPostCount;
175 RDisplayChannel::TPostCount iRequestedPostCount;
181 // frame buffer nodes
182 TBufferNode iLegacyBuffer[KDisplayLBMax];
183 TBufferNode iCompositionBuffer[KDisplayCBMax];
184 TBufferNode iUserBuffer[KDisplayUBMax];
186 //pending queue for asynchronous requests
187 TRequestNode iPendingReq[KPendingReqArraySize][KMaxQueuedRequests];
189 //Queue of TClientRequest objects, one for each type of asynchronous request.
190 TClientRequest* iClientRequest[KPendingReqArraySize][KMaxQueuedRequests];
192 //The index in structures iPendingReq and iClientRequest that identifies the active TClientRequest object.
193 //For each type of asynchronous request, iPendingIndex is the index of the active TClientRequest object
195 TInt iPendingIndex[KPendingReqArraySize];
197 // Protect access of iClientRequest
198 DMutex * iClientRequestMutex;
203 TInt iCompositionBuffIdx;
207 RDisplayChannel::TDisplayRotation iLegacyRotation;
208 RDisplayChannel::TDisplayRotation iCurrentRotation;
213 /** Used in debug builds to track that all calls to DThread::Open() are balanced with a close before the driver closes. */
214 TInt iThreadOpenCount;
216 /** Used in debug builds to track the number of asynchronous requests that are queued is equal to the number of
217 requests that are completed, before the driver closes.*/
220 /** Chunk used in UDEB only for testing user buffers. */
226 Display PDD base class with GCE support.
229 class DDisplayPdd : public DBase
235 Called by the LDD to handle the device specific part of switching to Legacy mode.
237 @return KErrNone if successful; or one of the other system wide error codes.
239 virtual TInt SetLegacyMode()=0;
242 Called by the LDD to handle the device specific part of switching to GCE mode.
244 @return KErrNone if successful; or one of the other system wide error codes.
246 virtual TInt SetGceMode()=0;
249 Called by the LDD to handle the device specific part of setting the rotation.
251 @return KErrNone if successful; or one of the other system wide error codes.
253 virtual TInt SetRotation(RDisplayChannel::TDisplayRotation aRotation)=0;
256 Called by the LDD to handle the device specific part of posting a User Buffer.
258 @return KErrNone if successful; or one of the other system wide error codes.
260 virtual TInt PostUserBuffer(TBufferNode* aNode)=0;
263 Called by the LDD to handle the device specific part of posting a Composition Buffer
265 @return KErrNone if successful; or one of the other system wide error codes.
267 virtual TInt PostCompositionBuffer(TBufferNode* aNode)=0;
270 Called by the LDD to handle the device specific part of posting the Legacy Buffuer
272 @return KErrNone if successful; or one of the other system wide error codes.
274 virtual TInt PostLegacyBuffer()=0;
277 Called by the LDD to handle device specific cleanup operations when a channel is closed.
279 @return KErrNone if successful; or one of the other system wide error codes.
281 virtual TInt CloseMsg()=0;
284 Called by the LDD to handle device specific initialisation tasks when a channel is opened.
286 @param aUnit The screen/hardware unit number.
287 @return KErrNone if successful; or one of the other system wide error codes.
289 virtual TInt CreateChannelSetup(TInt aUnit)=0;
292 Called by the LDD in order to detect whether a post operation is pending. This type of
293 information is specific to the actual physical device.
295 @return ETrue if a Post operation is pending otherwise EFalse.
297 virtual TBool PostPending()=0;
300 Called by the LDD to retrieve the DFC Queue created in the PDD.
302 @param aUnit The screen/hardware unit number.
303 @return A pointer to the TDfcQue object created in the PDD.
305 virtual TDfcQue* DfcQ(TInt aUnit)=0;
308 Called by the PDD when an asynchronous request should be completed with a specific reason.
309 (Just calls the LDD's RequestComplete method)
311 @param aRequest Any value from the RDisplayChannel::TRequest enumeration.
312 @param aReason Any valid error reason.
314 @return KErrNone if successful; or one of the other system wide error codes.
316 inline TInt RequestComplete(TInt aRequest, TInt aReason );
321 A pointer to the logical device driver's channel that owns this device.
325 Every post operation sets this flag to true in order to identify when
326 the previsouly posted buffer is no longer in use by the display hardware.
333 inline DDisplayPdd * DDisplayLdd::Pdd()
334 { return (DDisplayPdd*) iPdd; }
337 inline TInt DDisplayPdd::RequestComplete(TInt aRequest, TInt aReason)
338 { return iLdd->RequestComplete(aRequest,aReason); }
343 //#define _GCE_DISPLAY_DEBUG
345 #ifdef _GCE_DISPLAY_DEBUG
347 #define __DEBUG_PRINT(a) Kern::Printf(a)
348 #define __DEBUG_PRINT2(a,b) Kern::Printf(a,b)
349 #define __DEBUG_PRINT3(a,b,c) Kern::Printf(a,b,c)
350 #define __DEBUG_PRINT4(a,b,c,d) Kern::Printf(a,b,c,d)
351 #define __DEBUG_PRINT5(a,b,c,d,e) Kern::Printf(a,b,c,d,e)
354 #define __DEBUG_PRINT(a)
355 #define __DEBUG_PRINT2(a,b)
356 #define __DEBUG_PRINT3(a,b,c)
357 #define __DEBUG_PRINT4(a,b,c,d)
358 #define __DEBUG_PRINT5(a,b,c,d,e)
363 #endif // __DISPLAY_H__