sl@0
|
1 |
// Copyright (c) 1998-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 |
// os\kernelhwsrv\kernel\eka\include\drivers\display.h
|
sl@0
|
15 |
// Interface to LDD of the Display GCE driver
|
sl@0
|
16 |
// Kernel side definitions for the GCE driver
|
sl@0
|
17 |
//
|
sl@0
|
18 |
|
sl@0
|
19 |
/**
|
sl@0
|
20 |
@file
|
sl@0
|
21 |
@internalTechnology
|
sl@0
|
22 |
@prototype
|
sl@0
|
23 |
*/
|
sl@0
|
24 |
|
sl@0
|
25 |
|
sl@0
|
26 |
#ifndef __DISPLAY_H__
|
sl@0
|
27 |
#define __DISPLAY_H__
|
sl@0
|
28 |
|
sl@0
|
29 |
#include <videodriver.h>
|
sl@0
|
30 |
#include <dispchannel.h>
|
sl@0
|
31 |
#include <platform.h>
|
sl@0
|
32 |
#include <pixelformats.h>
|
sl@0
|
33 |
|
sl@0
|
34 |
|
sl@0
|
35 |
|
sl@0
|
36 |
const TInt KDisplayLBMax = 2;
|
sl@0
|
37 |
const TInt KDisplayCBMax = 2;
|
sl@0
|
38 |
const TInt KDisplayUBMax = 8;
|
sl@0
|
39 |
|
sl@0
|
40 |
|
sl@0
|
41 |
const TInt KPendingReqArraySize = RDisplayChannel::EReqWaitForPost +1;
|
sl@0
|
42 |
|
sl@0
|
43 |
const TInt KMaxQueuedRequests = 3;
|
sl@0
|
44 |
|
sl@0
|
45 |
class DDisplayChannel;
|
sl@0
|
46 |
|
sl@0
|
47 |
|
sl@0
|
48 |
enum TBufferType
|
sl@0
|
49 |
{
|
sl@0
|
50 |
EBufferTypeLegacy = 0,
|
sl@0
|
51 |
EBufferTypeComposition,
|
sl@0
|
52 |
EBufferTypeUser,
|
sl@0
|
53 |
};
|
sl@0
|
54 |
|
sl@0
|
55 |
|
sl@0
|
56 |
enum TBufferState
|
sl@0
|
57 |
{
|
sl@0
|
58 |
EBufferFree = 0,
|
sl@0
|
59 |
EBufferCompose,
|
sl@0
|
60 |
EBufferPending,
|
sl@0
|
61 |
EBufferActive
|
sl@0
|
62 |
};
|
sl@0
|
63 |
|
sl@0
|
64 |
|
sl@0
|
65 |
typedef struct
|
sl@0
|
66 |
{
|
sl@0
|
67 |
TInt iType;
|
sl@0
|
68 |
TInt iBufferId;
|
sl@0
|
69 |
TBool iFree;
|
sl@0
|
70 |
TInt iHandle;
|
sl@0
|
71 |
TInt iSize;
|
sl@0
|
72 |
TUint32 iAddress;
|
sl@0
|
73 |
TUint32 iPhysicalAddress;
|
sl@0
|
74 |
TInt iOffset ;
|
sl@0
|
75 |
DChunk * iChunk ;
|
sl@0
|
76 |
TBufferState iState;
|
sl@0
|
77 |
TRequestStatus* iPendingRequest;
|
sl@0
|
78 |
|
sl@0
|
79 |
} TBufferNode;
|
sl@0
|
80 |
|
sl@0
|
81 |
|
sl@0
|
82 |
/**
|
sl@0
|
83 |
An object encapsulating a request from the client(iOwningThread) to the GCE driver.
|
sl@0
|
84 |
*/
|
sl@0
|
85 |
typedef struct
|
sl@0
|
86 |
{
|
sl@0
|
87 |
|
sl@0
|
88 |
/** The TClientRequest object associated with the request - used to signal completion of the request and pass back a
|
sl@0
|
89 |
completion code. */
|
sl@0
|
90 |
TClientRequest* iTClientReq;
|
sl@0
|
91 |
|
sl@0
|
92 |
/** The thread which issued the request and which supplied the request status. */
|
sl@0
|
93 |
DThread* iOwningThread;
|
sl@0
|
94 |
|
sl@0
|
95 |
} TRequestNode;
|
sl@0
|
96 |
|
sl@0
|
97 |
|
sl@0
|
98 |
|
sl@0
|
99 |
class DDisplayPdd;
|
sl@0
|
100 |
|
sl@0
|
101 |
|
sl@0
|
102 |
/**
|
sl@0
|
103 |
Logical Channel factory class for 'Display Channel LDD'
|
sl@0
|
104 |
*/
|
sl@0
|
105 |
|
sl@0
|
106 |
class DDisplayLddFactory : public DLogicalDevice
|
sl@0
|
107 |
{
|
sl@0
|
108 |
public:
|
sl@0
|
109 |
static DDisplayLddFactory* CreateInstance();
|
sl@0
|
110 |
~DDisplayLddFactory();
|
sl@0
|
111 |
// Inherited from DLogicalDevice
|
sl@0
|
112 |
virtual TInt Install();
|
sl@0
|
113 |
virtual void GetCaps(TDes8& aDes) const;
|
sl@0
|
114 |
virtual TInt Create(DLogicalChannelBase*& aChannel);
|
sl@0
|
115 |
TBool IsUnitOpen(TInt aUnit);
|
sl@0
|
116 |
TInt SetUnitOpen(TInt aUnit,TBool aIsOpenSetting);
|
sl@0
|
117 |
private:
|
sl@0
|
118 |
DDisplayLddFactory();
|
sl@0
|
119 |
|
sl@0
|
120 |
|
sl@0
|
121 |
private:
|
sl@0
|
122 |
/** Mask to keep track of which units have a channel open on them. */
|
sl@0
|
123 |
TUint iUnitsOpenMask;
|
sl@0
|
124 |
/** A mutex to protect access to the unit info mask. */
|
sl@0
|
125 |
NFastMutex iUnitInfoMutex;
|
sl@0
|
126 |
};
|
sl@0
|
127 |
|
sl@0
|
128 |
|
sl@0
|
129 |
/**
|
sl@0
|
130 |
Logical Channel class for 'Display Channel LDD'
|
sl@0
|
131 |
*/
|
sl@0
|
132 |
class DDisplayLdd : public DLogicalChannel
|
sl@0
|
133 |
{
|
sl@0
|
134 |
|
sl@0
|
135 |
public:
|
sl@0
|
136 |
// create one instance of this object
|
sl@0
|
137 |
static DDisplayLdd* CreateInstance();
|
sl@0
|
138 |
virtual ~DDisplayLdd();
|
sl@0
|
139 |
virtual TInt DoCreate(TInt aUnit, const TDesC8* anInfo, const TVersion& aVer);
|
sl@0
|
140 |
virtual void HandleMsg(TMessageBase* aMsg);
|
sl@0
|
141 |
|
sl@0
|
142 |
private:
|
sl@0
|
143 |
DDisplayLdd();
|
sl@0
|
144 |
|
sl@0
|
145 |
private:
|
sl@0
|
146 |
// Implementation for the differnt kinds of messages sent through RBusLogicalChannel
|
sl@0
|
147 |
TInt DoControl(TInt aFunction, TAny* a1, TAny* a2, DThread* aClient);
|
sl@0
|
148 |
TInt DoRequest(TInt aReqNo, TAny* a1, TAny* a2, TInt index, DThread* aClient);
|
sl@0
|
149 |
void DoCancel(TUint aMask);
|
sl@0
|
150 |
|
sl@0
|
151 |
TInt SendRequest(TMessageBase* aMsg);
|
sl@0
|
152 |
TInt SendControl(TMessageBase* aMsg);
|
sl@0
|
153 |
TInt SendMsg(TMessageBase* aMsg);
|
sl@0
|
154 |
|
sl@0
|
155 |
TBufferNode* FindUserBufferNode(TInt aBufferId);
|
sl@0
|
156 |
TInt CheckAndOpenUserBuffer(TBufferNode* aNode, TInt aHandle, TInt aOffset, DThread* aClient);
|
sl@0
|
157 |
TInt FreeUserBufferNode(TBufferNode* aNode);
|
sl@0
|
158 |
|
sl@0
|
159 |
void CompleteRequest(DThread* aThread, TClientRequest*& aTClientReq, TInt aReason);
|
sl@0
|
160 |
|
sl@0
|
161 |
DDisplayPdd * Pdd();
|
sl@0
|
162 |
|
sl@0
|
163 |
public:
|
sl@0
|
164 |
virtual TInt RequestComplete(TInt aRequest, TInt );
|
sl@0
|
165 |
|
sl@0
|
166 |
|
sl@0
|
167 |
public:
|
sl@0
|
168 |
|
sl@0
|
169 |
// display info
|
sl@0
|
170 |
RDisplayChannel::TDisplayInfo iLegacyInfo;
|
sl@0
|
171 |
RDisplayChannel::TDisplayInfo iDisplayInfo;
|
sl@0
|
172 |
|
sl@0
|
173 |
// post counters
|
sl@0
|
174 |
RDisplayChannel::TPostCount iCurrentPostCount;
|
sl@0
|
175 |
RDisplayChannel::TPostCount iRequestedPostCount;
|
sl@0
|
176 |
|
sl@0
|
177 |
|
sl@0
|
178 |
DThread* iClient;
|
sl@0
|
179 |
TInt iUnit;
|
sl@0
|
180 |
|
sl@0
|
181 |
// frame buffer nodes
|
sl@0
|
182 |
TBufferNode iLegacyBuffer[KDisplayLBMax];
|
sl@0
|
183 |
TBufferNode iCompositionBuffer[KDisplayCBMax];
|
sl@0
|
184 |
TBufferNode iUserBuffer[KDisplayUBMax];
|
sl@0
|
185 |
|
sl@0
|
186 |
//pending queue for asynchronous requests
|
sl@0
|
187 |
TRequestNode iPendingReq[KPendingReqArraySize][KMaxQueuedRequests];
|
sl@0
|
188 |
|
sl@0
|
189 |
//Queue of TClientRequest objects, one for each type of asynchronous request.
|
sl@0
|
190 |
TClientRequest* iClientRequest[KPendingReqArraySize][KMaxQueuedRequests];
|
sl@0
|
191 |
|
sl@0
|
192 |
//The index in structures iPendingReq and iClientRequest that identifies the active TClientRequest object.
|
sl@0
|
193 |
//For each type of asynchronous request, iPendingIndex is the index of the active TClientRequest object
|
sl@0
|
194 |
//in iPendingReq
|
sl@0
|
195 |
TInt iPendingIndex[KPendingReqArraySize];
|
sl@0
|
196 |
|
sl@0
|
197 |
// Protect access of iClientRequest
|
sl@0
|
198 |
DMutex * iClientRequestMutex;
|
sl@0
|
199 |
|
sl@0
|
200 |
|
sl@0
|
201 |
// current index
|
sl@0
|
202 |
TInt iLegacyBuffIdx;
|
sl@0
|
203 |
TInt iCompositionBuffIdx;
|
sl@0
|
204 |
TInt iUserBuffIdx;
|
sl@0
|
205 |
|
sl@0
|
206 |
|
sl@0
|
207 |
RDisplayChannel::TDisplayRotation iLegacyRotation;
|
sl@0
|
208 |
RDisplayChannel::TDisplayRotation iCurrentRotation;
|
sl@0
|
209 |
|
sl@0
|
210 |
|
sl@0
|
211 |
TBool iReady;
|
sl@0
|
212 |
|
sl@0
|
213 |
/** Used in debug builds to track that all calls to DThread::Open() are balanced with a close before the driver closes. */
|
sl@0
|
214 |
TInt iThreadOpenCount;
|
sl@0
|
215 |
|
sl@0
|
216 |
/** Used in debug builds to track the number of asynchronous requests that are queued is equal to the number of
|
sl@0
|
217 |
requests that are completed, before the driver closes.*/
|
sl@0
|
218 |
TInt iAsyncReqCount;
|
sl@0
|
219 |
|
sl@0
|
220 |
/** Chunk used in UDEB only for testing user buffers. */
|
sl@0
|
221 |
DChunk* iChunk;
|
sl@0
|
222 |
};
|
sl@0
|
223 |
|
sl@0
|
224 |
|
sl@0
|
225 |
/**
|
sl@0
|
226 |
Display PDD base class with GCE support.
|
sl@0
|
227 |
*/
|
sl@0
|
228 |
|
sl@0
|
229 |
class DDisplayPdd : public DBase
|
sl@0
|
230 |
{
|
sl@0
|
231 |
|
sl@0
|
232 |
public:
|
sl@0
|
233 |
|
sl@0
|
234 |
/**
|
sl@0
|
235 |
Called by the LDD to handle the device specific part of switching to Legacy mode.
|
sl@0
|
236 |
|
sl@0
|
237 |
@return KErrNone if successful; or one of the other system wide error codes.
|
sl@0
|
238 |
*/
|
sl@0
|
239 |
virtual TInt SetLegacyMode()=0;
|
sl@0
|
240 |
|
sl@0
|
241 |
/**
|
sl@0
|
242 |
Called by the LDD to handle the device specific part of switching to GCE mode.
|
sl@0
|
243 |
|
sl@0
|
244 |
@return KErrNone if successful; or one of the other system wide error codes.
|
sl@0
|
245 |
*/
|
sl@0
|
246 |
virtual TInt SetGceMode()=0;
|
sl@0
|
247 |
|
sl@0
|
248 |
/**
|
sl@0
|
249 |
Called by the LDD to handle the device specific part of setting the rotation.
|
sl@0
|
250 |
|
sl@0
|
251 |
@return KErrNone if successful; or one of the other system wide error codes.
|
sl@0
|
252 |
*/
|
sl@0
|
253 |
virtual TInt SetRotation(RDisplayChannel::TDisplayRotation aRotation)=0;
|
sl@0
|
254 |
|
sl@0
|
255 |
/**
|
sl@0
|
256 |
Called by the LDD to handle the device specific part of posting a User Buffer.
|
sl@0
|
257 |
|
sl@0
|
258 |
@return KErrNone if successful; or one of the other system wide error codes.
|
sl@0
|
259 |
*/
|
sl@0
|
260 |
virtual TInt PostUserBuffer(TBufferNode* aNode)=0;
|
sl@0
|
261 |
|
sl@0
|
262 |
/**
|
sl@0
|
263 |
Called by the LDD to handle the device specific part of posting a Composition Buffer
|
sl@0
|
264 |
|
sl@0
|
265 |
@return KErrNone if successful; or one of the other system wide error codes.
|
sl@0
|
266 |
*/
|
sl@0
|
267 |
virtual TInt PostCompositionBuffer(TBufferNode* aNode)=0;
|
sl@0
|
268 |
|
sl@0
|
269 |
/**
|
sl@0
|
270 |
Called by the LDD to handle the device specific part of posting the Legacy Buffuer
|
sl@0
|
271 |
|
sl@0
|
272 |
@return KErrNone if successful; or one of the other system wide error codes.
|
sl@0
|
273 |
*/
|
sl@0
|
274 |
virtual TInt PostLegacyBuffer()=0;
|
sl@0
|
275 |
|
sl@0
|
276 |
/**
|
sl@0
|
277 |
Called by the LDD to handle device specific cleanup operations when a channel is closed.
|
sl@0
|
278 |
|
sl@0
|
279 |
@return KErrNone if successful; or one of the other system wide error codes.
|
sl@0
|
280 |
*/
|
sl@0
|
281 |
virtual TInt CloseMsg()=0;
|
sl@0
|
282 |
|
sl@0
|
283 |
/**
|
sl@0
|
284 |
Called by the LDD to handle device specific initialisation tasks when a channel is opened.
|
sl@0
|
285 |
|
sl@0
|
286 |
@param aUnit The screen/hardware unit number.
|
sl@0
|
287 |
@return KErrNone if successful; or one of the other system wide error codes.
|
sl@0
|
288 |
*/
|
sl@0
|
289 |
virtual TInt CreateChannelSetup(TInt aUnit)=0;
|
sl@0
|
290 |
|
sl@0
|
291 |
/**
|
sl@0
|
292 |
Called by the LDD in order to detect whether a post operation is pending. This type of
|
sl@0
|
293 |
information is specific to the actual physical device.
|
sl@0
|
294 |
|
sl@0
|
295 |
@return ETrue if a Post operation is pending otherwise EFalse.
|
sl@0
|
296 |
*/
|
sl@0
|
297 |
virtual TBool PostPending()=0;
|
sl@0
|
298 |
|
sl@0
|
299 |
/**
|
sl@0
|
300 |
Called by the LDD to retrieve the DFC Queue created in the PDD.
|
sl@0
|
301 |
|
sl@0
|
302 |
@param aUnit The screen/hardware unit number.
|
sl@0
|
303 |
@return A pointer to the TDfcQue object created in the PDD.
|
sl@0
|
304 |
*/
|
sl@0
|
305 |
virtual TDfcQue* DfcQ(TInt aUnit)=0;
|
sl@0
|
306 |
|
sl@0
|
307 |
/**
|
sl@0
|
308 |
Called by the PDD when an asynchronous request should be completed with a specific reason.
|
sl@0
|
309 |
(Just calls the LDD's RequestComplete method)
|
sl@0
|
310 |
|
sl@0
|
311 |
@param aRequest Any value from the RDisplayChannel::TRequest enumeration.
|
sl@0
|
312 |
@param aReason Any valid error reason.
|
sl@0
|
313 |
|
sl@0
|
314 |
@return KErrNone if successful; or one of the other system wide error codes.
|
sl@0
|
315 |
*/
|
sl@0
|
316 |
inline TInt RequestComplete(TInt aRequest, TInt aReason );
|
sl@0
|
317 |
|
sl@0
|
318 |
|
sl@0
|
319 |
public:
|
sl@0
|
320 |
/**
|
sl@0
|
321 |
A pointer to the logical device driver's channel that owns this device.
|
sl@0
|
322 |
*/
|
sl@0
|
323 |
DDisplayLdd *iLdd;
|
sl@0
|
324 |
/**
|
sl@0
|
325 |
Every post operation sets this flag to true in order to identify when
|
sl@0
|
326 |
the previsouly posted buffer is no longer in use by the display hardware.
|
sl@0
|
327 |
*/
|
sl@0
|
328 |
TBool iPostFlag;
|
sl@0
|
329 |
|
sl@0
|
330 |
};
|
sl@0
|
331 |
|
sl@0
|
332 |
|
sl@0
|
333 |
inline DDisplayPdd * DDisplayLdd::Pdd()
|
sl@0
|
334 |
{ return (DDisplayPdd*) iPdd; }
|
sl@0
|
335 |
|
sl@0
|
336 |
|
sl@0
|
337 |
inline TInt DDisplayPdd::RequestComplete(TInt aRequest, TInt aReason)
|
sl@0
|
338 |
{ return iLdd->RequestComplete(aRequest,aReason); }
|
sl@0
|
339 |
|
sl@0
|
340 |
|
sl@0
|
341 |
|
sl@0
|
342 |
|
sl@0
|
343 |
//#define _GCE_DISPLAY_DEBUG
|
sl@0
|
344 |
|
sl@0
|
345 |
#ifdef _GCE_DISPLAY_DEBUG
|
sl@0
|
346 |
|
sl@0
|
347 |
#define __DEBUG_PRINT(a) Kern::Printf(a)
|
sl@0
|
348 |
#define __DEBUG_PRINT2(a,b) Kern::Printf(a,b)
|
sl@0
|
349 |
#define __DEBUG_PRINT3(a,b,c) Kern::Printf(a,b,c)
|
sl@0
|
350 |
#define __DEBUG_PRINT4(a,b,c,d) Kern::Printf(a,b,c,d)
|
sl@0
|
351 |
#define __DEBUG_PRINT5(a,b,c,d,e) Kern::Printf(a,b,c,d,e)
|
sl@0
|
352 |
|
sl@0
|
353 |
#else
|
sl@0
|
354 |
#define __DEBUG_PRINT(a)
|
sl@0
|
355 |
#define __DEBUG_PRINT2(a,b)
|
sl@0
|
356 |
#define __DEBUG_PRINT3(a,b,c)
|
sl@0
|
357 |
#define __DEBUG_PRINT4(a,b,c,d)
|
sl@0
|
358 |
#define __DEBUG_PRINT5(a,b,c,d,e)
|
sl@0
|
359 |
|
sl@0
|
360 |
#endif
|
sl@0
|
361 |
|
sl@0
|
362 |
|
sl@0
|
363 |
#endif // __DISPLAY_H__
|