Merge branch '7.8'
[mesa.git] / src / mesa / drivers / dri / common / dri_util.h
1 /*
2 * Copyright 1998-1999 Precision Insight, Inc., Cedar Park, Texas.
3 * All Rights Reserved.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the
7 * "Software"), to deal in the Software without restriction, including
8 * without limitation the rights to use, copy, modify, merge, publish,
9 * distribute, sub license, and/or sell copies of the Software, and to
10 * permit persons to whom the Software is furnished to do so, subject to
11 * the following conditions:
12 *
13 * The above copyright notice and this permission notice (including the
14 * next paragraph) shall be included in all copies or substantial portions
15 * of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
20 * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR
21 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
22 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
23 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24 */
25
26 /**
27 * \file dri_util.h
28 * DRI utility functions definitions.
29 *
30 * This module acts as glue between GLX and the actual hardware driver. A DRI
31 * driver doesn't really \e have to use any of this - it's optional. But, some
32 * useful stuff is done here that otherwise would have to be duplicated in most
33 * drivers.
34 *
35 * Basically, these utility functions take care of some of the dirty details of
36 * screen initialization, context creation, context binding, DRM setup, etc.
37 *
38 * These functions are compiled into each DRI driver so libGL.so knows nothing
39 * about them.
40 *
41 * \sa dri_util.c.
42 *
43 * \author Kevin E. Martin <kevin@precisioninsight.com>
44 * \author Brian Paul <brian@precisioninsight.com>
45 */
46
47 #ifndef _DRI_UTIL_H_
48 #define _DRI_UTIL_H_
49
50 #include <GL/gl.h>
51 #include <drm.h>
52 #include <drm_sarea.h>
53 #include <xf86drm.h>
54 #include "main/glheader.h"
55 #include "GL/internal/glcore.h"
56 #include "GL/internal/dri_interface.h"
57
58 #define GLX_BAD_CONTEXT 5
59
60 typedef struct __DRIswapInfoRec __DRIswapInfo;
61
62 /**
63 * Extensions.
64 */
65 extern const __DRIlegacyExtension driLegacyExtension;
66 extern const __DRIcoreExtension driCoreExtension;
67 extern const __DRIdri2Extension driDRI2Extension;
68 extern const __DRIextension driReadDrawableExtension;
69 extern const __DRIcopySubBufferExtension driCopySubBufferExtension;
70 extern const __DRIswapControlExtension driSwapControlExtension;
71 extern const __DRIframeTrackingExtension driFrameTrackingExtension;
72 extern const __DRImediaStreamCounterExtension driMediaStreamCounterExtension;
73
74 /**
75 * Used by DRI_VALIDATE_DRAWABLE_INFO
76 */
77 #define DRI_VALIDATE_DRAWABLE_INFO_ONCE(pDrawPriv) \
78 do { \
79 if (*(pDrawPriv->pStamp) != pDrawPriv->lastStamp) { \
80 __driUtilUpdateDrawableInfo(pDrawPriv); \
81 } \
82 } while (0)
83
84
85 /**
86 * Utility macro to validate the drawable information.
87 *
88 * See __DRIdrawable::pStamp and __DRIdrawable::lastStamp.
89 */
90 #define DRI_VALIDATE_DRAWABLE_INFO(psp, pdp) \
91 do { \
92 while (*(pdp->pStamp) != pdp->lastStamp) { \
93 register unsigned int hwContext = psp->pSAREA->lock.lock & \
94 ~(DRM_LOCK_HELD | DRM_LOCK_CONT); \
95 DRM_UNLOCK(psp->fd, &psp->pSAREA->lock, hwContext); \
96 \
97 DRM_SPINLOCK(&psp->pSAREA->drawable_lock, psp->drawLockID); \
98 DRI_VALIDATE_DRAWABLE_INFO_ONCE(pdp); \
99 DRM_SPINUNLOCK(&psp->pSAREA->drawable_lock, psp->drawLockID); \
100 \
101 DRM_LIGHT_LOCK(psp->fd, &psp->pSAREA->lock, hwContext); \
102 } \
103 } while (0)
104
105 /**
106 * Same as above, but for two drawables simultaneously.
107 *
108 */
109
110 #define DRI_VALIDATE_TWO_DRAWABLES_INFO(psp, pdp, prp) \
111 do { \
112 while (*((pdp)->pStamp) != (pdp)->lastStamp || \
113 *((prp)->pStamp) != (prp)->lastStamp) { \
114 register unsigned int hwContext = (psp)->pSAREA->lock.lock & \
115 ~(DRM_LOCK_HELD | DRM_LOCK_CONT); \
116 DRM_UNLOCK((psp)->fd, &(psp)->pSAREA->lock, hwContext); \
117 \
118 DRM_SPINLOCK(&(psp)->pSAREA->drawable_lock, (psp)->drawLockID); \
119 DRI_VALIDATE_DRAWABLE_INFO_ONCE(pdp); \
120 DRI_VALIDATE_DRAWABLE_INFO_ONCE(prp); \
121 DRM_SPINUNLOCK(&(psp)->pSAREA->drawable_lock, (psp)->drawLockID); \
122 \
123 DRM_LIGHT_LOCK((psp)->fd, &(psp)->pSAREA->lock, hwContext); \
124 } \
125 } while (0)
126
127
128 /**
129 * Driver callback functions.
130 *
131 * Each DRI driver must have one of these structures with all the pointers set
132 * to appropriate functions within the driver.
133 *
134 * When glXCreateContext() is called, for example, it'll call a helper function
135 * dri_util.c which in turn will jump through the \a CreateContext pointer in
136 * this structure.
137 */
138 struct __DriverAPIRec {
139 const __DRIconfig **(*InitScreen) (__DRIscreen * priv);
140
141 /**
142 * Screen destruction callback
143 */
144 void (*DestroyScreen)(__DRIscreen *driScrnPriv);
145
146 /**
147 * Context creation callback
148 */
149 GLboolean (*CreateContext)(const __GLcontextModes *glVis,
150 __DRIcontext *driContextPriv,
151 void *sharedContextPrivate);
152
153 /**
154 * Context destruction callback
155 */
156 void (*DestroyContext)(__DRIcontext *driContextPriv);
157
158 /**
159 * Buffer (drawable) creation callback
160 */
161 GLboolean (*CreateBuffer)(__DRIscreen *driScrnPriv,
162 __DRIdrawable *driDrawPriv,
163 const __GLcontextModes *glVis,
164 GLboolean pixmapBuffer);
165
166 /**
167 * Buffer (drawable) destruction callback
168 */
169 void (*DestroyBuffer)(__DRIdrawable *driDrawPriv);
170
171 /**
172 * Buffer swapping callback
173 */
174 void (*SwapBuffers)(__DRIdrawable *driDrawPriv);
175
176 /**
177 * Context activation callback
178 */
179 GLboolean (*MakeCurrent)(__DRIcontext *driContextPriv,
180 __DRIdrawable *driDrawPriv,
181 __DRIdrawable *driReadPriv);
182
183 /**
184 * Context unbinding callback
185 */
186 GLboolean (*UnbindContext)(__DRIcontext *driContextPriv);
187
188 /**
189 * Retrieves statistics about buffer swap operations. Required if
190 * GLX_OML_sync_control or GLX_MESA_swap_frame_usage is supported.
191 */
192 int (*GetSwapInfo)( __DRIdrawable *dPriv, __DRIswapInfo * sInfo );
193
194
195 /**
196 * These are required if GLX_OML_sync_control is supported.
197 */
198 /*@{*/
199 int (*WaitForMSC)( __DRIdrawable *priv, int64_t target_msc,
200 int64_t divisor, int64_t remainder,
201 int64_t * msc );
202 int (*WaitForSBC)( __DRIdrawable *priv, int64_t target_sbc,
203 int64_t * msc, int64_t * sbc );
204
205 int64_t (*SwapBuffersMSC)( __DRIdrawable *priv, int64_t target_msc,
206 int64_t divisor, int64_t remainder );
207 /*@}*/
208 void (*CopySubBuffer)(__DRIdrawable *driDrawPriv,
209 int x, int y, int w, int h);
210
211 /**
212 * New version of GetMSC so we can pass drawable data to the low
213 * level DRM driver (e.g. pipe info). Required if
214 * GLX_SGI_video_sync or GLX_OML_sync_control is supported.
215 */
216 int (*GetDrawableMSC) ( __DRIscreen * priv,
217 __DRIdrawable *drawablePrivate,
218 int64_t *count);
219
220
221
222 /* DRI2 Entry point */
223 const __DRIconfig **(*InitScreen2) (__DRIscreen * priv);
224 };
225
226 extern const struct __DriverAPIRec driDriverAPI;
227
228
229 struct __DRIswapInfoRec {
230 /**
231 * Number of swapBuffers operations that have been *completed*.
232 */
233 uint64_t swap_count;
234
235 /**
236 * Unadjusted system time of the last buffer swap. This is the time
237 * when the swap completed, not the time when swapBuffers was called.
238 */
239 int64_t swap_ust;
240
241 /**
242 * Number of swap operations that occurred after the swap deadline. That
243 * is if a swap happens more than swap_interval frames after the previous
244 * swap, it has missed its deadline. If swap_interval is 0, then the
245 * swap deadline is 1 frame after the previous swap.
246 */
247 uint64_t swap_missed_count;
248
249 /**
250 * Amount of time used by the last swap that missed its deadline. This
251 * is calculated as (__glXGetUST() - swap_ust) / (swap_interval *
252 * time_for_single_vrefresh)). If the actual value of swap_interval is
253 * 0, then 1 is used instead. If swap_missed_count is non-zero, this
254 * should be greater-than 1.0.
255 */
256 float swap_missed_usage;
257 };
258
259
260 /**
261 * Per-drawable private DRI driver information.
262 */
263 struct __DRIdrawableRec {
264 /**
265 * Kernel drawable handle
266 */
267 drm_drawable_t hHWDrawable;
268
269 /**
270 * Driver's private drawable information.
271 *
272 * This structure is opaque.
273 */
274 void *driverPrivate;
275
276 /**
277 * Private data from the loader. We just hold on to it and pass
278 * it back when calling into loader provided functions.
279 */
280 void *loaderPrivate;
281
282 /**
283 * Reference count for number of context's currently bound to this
284 * drawable.
285 *
286 * Once it reaches zero, the drawable can be destroyed.
287 *
288 * \note This behavior will change with GLX 1.3.
289 */
290 int refcount;
291
292 /**
293 * Index of this drawable information in the SAREA.
294 */
295 unsigned int index;
296
297 /**
298 * Pointer to the "drawable has changed ID" stamp in the SAREA (or
299 * to dri2.stamp if DRI2 is being used).
300 */
301 unsigned int *pStamp;
302
303 /**
304 * Last value of the stamp.
305 *
306 * If this differs from the value stored at __DRIdrawable::pStamp,
307 * then the drawable information has been modified by the X server, and the
308 * drawable information (below) should be retrieved from the X server.
309 */
310 unsigned int lastStamp;
311
312 /**
313 * \name Drawable
314 *
315 * Drawable information used in software fallbacks.
316 */
317 /*@{*/
318 int x;
319 int y;
320 int w;
321 int h;
322 int numClipRects;
323 drm_clip_rect_t *pClipRects;
324 /*@}*/
325
326 /**
327 * \name Back and depthbuffer
328 *
329 * Information about the back and depthbuffer where different from above.
330 */
331 /*@{*/
332 int backX;
333 int backY;
334 int backClipRectType;
335 int numBackClipRects;
336 drm_clip_rect_t *pBackClipRects;
337 /*@}*/
338
339 /**
340 * \name Vertical blank tracking information
341 * Used for waiting on vertical blank events.
342 */
343 /*@{*/
344 unsigned int vblSeq;
345 unsigned int vblFlags;
346 /*@}*/
347
348 /**
349 * \name Monotonic MSC tracking
350 *
351 * Low level driver is responsible for updating msc_base and
352 * vblSeq values so that higher level code can calculate
353 * a new msc value or msc target for a WaitMSC call. The new value
354 * will be:
355 * msc = msc_base + get_vblank_count() - vblank_base;
356 *
357 * And for waiting on a value, core code will use:
358 * actual_target = target_msc - msc_base + vblank_base;
359 */
360 /*@{*/
361 int64_t vblank_base;
362 int64_t msc_base;
363 /*@}*/
364
365 /**
366 * Pointer to context to which this drawable is currently bound.
367 */
368 __DRIcontext *driContextPriv;
369
370 /**
371 * Pointer to screen on which this drawable was created.
372 */
373 __DRIscreen *driScreenPriv;
374
375 /**
376 * Controls swap interval as used by GLX_SGI_swap_control and
377 * GLX_MESA_swap_control.
378 */
379 unsigned int swap_interval;
380
381 struct {
382 unsigned int stamp;
383 drm_clip_rect_t clipRect;
384 } dri2;
385 };
386
387 /**
388 * Per-context private driver information.
389 */
390 struct __DRIcontextRec {
391 /**
392 * Kernel context handle used to access the device lock.
393 */
394 drm_context_t hHWContext;
395
396 /**
397 * Device driver's private context data. This structure is opaque.
398 */
399 void *driverPrivate;
400
401 /**
402 * Pointer back to the \c __DRIcontext that contains this structure.
403 */
404 __DRIcontext *pctx;
405
406 /**
407 * Pointer to drawable currently bound to this context for drawing.
408 */
409 __DRIdrawable *driDrawablePriv;
410
411 /**
412 * Pointer to drawable currently bound to this context for reading.
413 */
414 __DRIdrawable *driReadablePriv;
415
416 /**
417 * Pointer to screen on which this context was created.
418 */
419 __DRIscreen *driScreenPriv;
420
421 /**
422 * The loaders's private context data. This structure is opaque.
423 */
424 void *loaderPrivate;
425
426 struct {
427 int draw_stamp;
428 int read_stamp;
429 } dri2;
430 };
431
432 /**
433 * Per-screen private driver information.
434 */
435 struct __DRIscreenRec {
436 /**
437 * Current screen's number
438 */
439 int myNum;
440
441 /**
442 * Callback functions into the hardware-specific DRI driver code.
443 */
444 struct __DriverAPIRec DriverAPI;
445
446 const __DRIextension **extensions;
447 /**
448 * DDX / 2D driver version information.
449 */
450 __DRIversion ddx_version;
451
452 /**
453 * DRI X extension version information.
454 */
455 __DRIversion dri_version;
456
457 /**
458 * DRM (kernel module) version information.
459 */
460 __DRIversion drm_version;
461
462 /**
463 * ID used when the client sets the drawable lock.
464 *
465 * The X server uses this value to detect if the client has died while
466 * holding the drawable lock.
467 */
468 int drawLockID;
469
470 /**
471 * File descriptor returned when the kernel device driver is opened.
472 *
473 * Used to:
474 * - authenticate client to kernel
475 * - map the frame buffer, SAREA, etc.
476 * - close the kernel device driver
477 */
478 int fd;
479
480 /**
481 * SAREA pointer
482 *
483 * Used to access:
484 * - the device lock
485 * - the device-independent per-drawable and per-context(?) information
486 */
487 drm_sarea_t *pSAREA;
488
489 /**
490 * \name Direct frame buffer access information
491 * Used for software fallbacks.
492 */
493 /*@{*/
494 unsigned char *pFB;
495 int fbSize;
496 int fbOrigin;
497 int fbStride;
498 int fbWidth;
499 int fbHeight;
500 int fbBPP;
501 /*@}*/
502
503 /**
504 * \name Device-dependent private information (stored in the SAREA).
505 *
506 * This data is accessed by the client driver only.
507 */
508 /*@{*/
509 void *pDevPriv;
510 int devPrivSize;
511 /*@}*/
512
513 /**
514 * Dummy context to which drawables are bound when not bound to any
515 * other context.
516 *
517 * A dummy hHWContext is created for this context, and is used by the GL
518 * core when a hardware lock is required but the drawable is not currently
519 * bound (e.g., potentially during a SwapBuffers request). The dummy
520 * context is created when the first "real" context is created on this
521 * screen.
522 */
523 __DRIcontext dummyContextPriv;
524
525 /**
526 * Device-dependent private information (not stored in the SAREA).
527 *
528 * This pointer is never touched by the DRI layer.
529 */
530 void *private;
531
532 /**
533 * Pointer back to the \c __DRIscreen that contains this structure.
534 */
535 __DRIscreen *psc;
536
537 /* Extensions provided by the loader. */
538 const __DRIgetDrawableInfoExtension *getDrawableInfo;
539 const __DRIsystemTimeExtension *systemTime;
540 const __DRIdamageExtension *damage;
541
542 struct {
543 /* Flag to indicate that this is a DRI2 screen. Many of the above
544 * fields will not be valid or initializaed in that case. */
545 int enabled;
546 __DRIdri2LoaderExtension *loader;
547 __DRIimageLookupExtension *image;
548 } dri2;
549
550 /* The lock actually in use, old sarea or DRI2 */
551 drmLock *lock;
552 };
553
554 extern void
555 __driUtilUpdateDrawableInfo(__DRIdrawable *pdp);
556
557 extern float
558 driCalculateSwapUsage( __DRIdrawable *dPriv,
559 int64_t last_swap_ust, int64_t current_ust );
560
561 extern GLint
562 driIntersectArea( drm_clip_rect_t rect1, drm_clip_rect_t rect2 );
563
564 extern void
565 dri2InvalidateDrawable(__DRIdrawable *drawable);
566
567 #endif /* _DRI_UTIL_H_ */