Merge branch 'master' of ssh://git.freedesktop.org/git/mesa/mesa into pipe-video
[mesa.git] / src / mesa / drivers / dri / common / dri_util.c
1 /**
2 * \file dri_util.c
3 * DRI utility functions.
4 *
5 * This module acts as glue between GLX and the actual hardware driver. A DRI
6 * driver doesn't really \e have to use any of this - it's optional. But, some
7 * useful stuff is done here that otherwise would have to be duplicated in most
8 * drivers.
9 *
10 * Basically, these utility functions take care of some of the dirty details of
11 * screen initialization, context creation, context binding, DRM setup, etc.
12 *
13 * These functions are compiled into each DRI driver so libGL.so knows nothing
14 * about them.
15 */
16
17
18 #include <assert.h>
19 #include <stdarg.h>
20 #include <unistd.h>
21 #include <sys/mman.h>
22 #include <stdio.h>
23
24 #ifndef MAP_FAILED
25 #define MAP_FAILED ((void *)-1)
26 #endif
27
28 #include "main/imports.h"
29 #define None 0
30
31 #include "dri_util.h"
32 #include "drm_sarea.h"
33 #include "utils.h"
34 #include "xmlpool.h"
35 #include "../glsl/glsl_parser_extras.h"
36
37 PUBLIC const char __dri2ConfigOptions[] =
38 DRI_CONF_BEGIN
39 DRI_CONF_SECTION_PERFORMANCE
40 DRI_CONF_VBLANK_MODE(DRI_CONF_VBLANK_DEF_INTERVAL_1)
41 DRI_CONF_SECTION_END
42 DRI_CONF_END;
43
44 static const uint __dri2NConfigOptions = 1;
45
46 #ifndef GLX_OML_sync_control
47 typedef GLboolean ( * PFNGLXGETMSCRATEOMLPROC) (__DRIdrawable *drawable, int32_t *numerator, int32_t *denominator);
48 #endif
49
50 static void dri_get_drawable(__DRIdrawable *pdp);
51 static void dri_put_drawable(__DRIdrawable *pdp);
52
53 /**
54 * This is just a token extension used to signal that the driver
55 * supports setting a read drawable.
56 */
57 const __DRIextension driReadDrawableExtension = {
58 __DRI_READ_DRAWABLE, __DRI_READ_DRAWABLE_VERSION
59 };
60
61 GLint
62 driIntersectArea( drm_clip_rect_t rect1, drm_clip_rect_t rect2 )
63 {
64 if (rect2.x1 > rect1.x1) rect1.x1 = rect2.x1;
65 if (rect2.x2 < rect1.x2) rect1.x2 = rect2.x2;
66 if (rect2.y1 > rect1.y1) rect1.y1 = rect2.y1;
67 if (rect2.y2 < rect1.y2) rect1.y2 = rect2.y2;
68
69 if (rect1.x1 > rect1.x2 || rect1.y1 > rect1.y2) return 0;
70
71 return (rect1.x2 - rect1.x1) * (rect1.y2 - rect1.y1);
72 }
73
74 /*****************************************************************/
75 /** \name Context (un)binding functions */
76 /*****************************************************************/
77 /*@{*/
78
79 /**
80 * Unbind context.
81 *
82 * \param scrn the screen.
83 * \param gc context.
84 *
85 * \return \c GL_TRUE on success, or \c GL_FALSE on failure.
86 *
87 * \internal
88 * This function calls __DriverAPIRec::UnbindContext, and then decrements
89 * __DRIdrawableRec::refcount which must be non-zero for a successful
90 * return.
91 *
92 * While casting the opaque private pointers associated with the parameters
93 * into their respective real types it also assures they are not \c NULL.
94 */
95 static int driUnbindContext(__DRIcontext *pcp)
96 {
97 __DRIscreen *psp;
98 __DRIdrawable *pdp;
99 __DRIdrawable *prp;
100
101 /*
102 ** Assume error checking is done properly in glXMakeCurrent before
103 ** calling driUnbindContext.
104 */
105
106 if (pcp == NULL)
107 return GL_FALSE;
108
109 psp = pcp->driScreenPriv;
110 pdp = pcp->driDrawablePriv;
111 prp = pcp->driReadablePriv;
112
113 /* already unbound */
114 if (!pdp && !prp)
115 return GL_TRUE;
116 /* Let driver unbind drawable from context */
117 (*psp->DriverAPI.UnbindContext)(pcp);
118
119 assert(pdp);
120 if (pdp->refcount == 0) {
121 /* ERROR!!! */
122 return GL_FALSE;
123 }
124
125 dri_put_drawable(pdp);
126
127 if (prp != pdp) {
128 if (prp->refcount == 0) {
129 /* ERROR!!! */
130 return GL_FALSE;
131 }
132
133 dri_put_drawable(prp);
134 }
135
136
137 /* XXX this is disabled so that if we call SwapBuffers on an unbound
138 * window we can determine the last context bound to the window and
139 * use that context's lock. (BrianP, 2-Dec-2000)
140 */
141 pcp->driDrawablePriv = pcp->driReadablePriv = NULL;
142
143 return GL_TRUE;
144 }
145
146 /**
147 * This function takes both a read buffer and a draw buffer. This is needed
148 * for \c glXMakeCurrentReadSGI or GLX 1.3's \c glXMakeContextCurrent
149 * function.
150 */
151 static int driBindContext(__DRIcontext *pcp,
152 __DRIdrawable *pdp,
153 __DRIdrawable *prp)
154 {
155 __DRIscreen *psp = NULL;
156
157 /*
158 ** Assume error checking is done properly in glXMakeCurrent before
159 ** calling driUnbindContext.
160 */
161
162 if (!pcp)
163 return GL_FALSE;
164
165 /* Bind the drawable to the context */
166 psp = pcp->driScreenPriv;
167 pcp->driDrawablePriv = pdp;
168 pcp->driReadablePriv = prp;
169 if (pdp) {
170 pdp->driContextPriv = pcp;
171 dri_get_drawable(pdp);
172 }
173 if (prp && pdp != prp) {
174 dri_get_drawable(prp);
175 }
176
177 /*
178 ** Now that we have a context associated with this drawable, we can
179 ** initialize the drawable information if has not been done before.
180 */
181
182 if (!psp->dri2.enabled) {
183 if (pdp && !pdp->pStamp) {
184 DRM_SPINLOCK(&psp->pSAREA->drawable_lock, psp->drawLockID);
185 __driUtilUpdateDrawableInfo(pdp);
186 DRM_SPINUNLOCK(&psp->pSAREA->drawable_lock, psp->drawLockID);
187 }
188 if (prp && pdp != prp && !prp->pStamp) {
189 DRM_SPINLOCK(&psp->pSAREA->drawable_lock, psp->drawLockID);
190 __driUtilUpdateDrawableInfo(prp);
191 DRM_SPINUNLOCK(&psp->pSAREA->drawable_lock, psp->drawLockID);
192 }
193 }
194
195 /* Call device-specific MakeCurrent */
196 return (*psp->DriverAPI.MakeCurrent)(pcp, pdp, prp);
197 }
198
199 /*@}*/
200
201
202 /*****************************************************************/
203 /** \name Drawable handling functions */
204 /*****************************************************************/
205 /*@{*/
206
207 /**
208 * Update private drawable information.
209 *
210 * \param pdp pointer to the private drawable information to update.
211 *
212 * This function basically updates the __DRIdrawable struct's
213 * cliprect information by calling \c __DRIinterfaceMethods::getDrawableInfo.
214 * This is usually called by the DRI_VALIDATE_DRAWABLE_INFO macro which
215 * compares the __DRIdrwablePrivate pStamp and lastStamp values. If
216 * the values are different that means we have to update the clipping
217 * info.
218 */
219 void
220 __driUtilUpdateDrawableInfo(__DRIdrawable *pdp)
221 {
222 __DRIscreen *psp = pdp->driScreenPriv;
223 __DRIcontext *pcp = pdp->driContextPriv;
224
225 if (!pcp
226 || ((pdp != pcp->driDrawablePriv) && (pdp != pcp->driReadablePriv))) {
227 /* ERROR!!!
228 * ...but we must ignore it. There can be many contexts bound to a
229 * drawable.
230 */
231 }
232
233 if (pdp->pClipRects) {
234 free(pdp->pClipRects);
235 pdp->pClipRects = NULL;
236 }
237
238 if (pdp->pBackClipRects) {
239 free(pdp->pBackClipRects);
240 pdp->pBackClipRects = NULL;
241 }
242
243 DRM_SPINUNLOCK(&psp->pSAREA->drawable_lock, psp->drawLockID);
244
245 if (! (*psp->getDrawableInfo->getDrawableInfo)(pdp,
246 &pdp->index, &pdp->lastStamp,
247 &pdp->x, &pdp->y, &pdp->w, &pdp->h,
248 &pdp->numClipRects, &pdp->pClipRects,
249 &pdp->backX,
250 &pdp->backY,
251 &pdp->numBackClipRects,
252 &pdp->pBackClipRects,
253 pdp->loaderPrivate)) {
254 /* Error -- eg the window may have been destroyed. Keep going
255 * with no cliprects.
256 */
257 pdp->pStamp = &pdp->lastStamp; /* prevent endless loop */
258 pdp->numClipRects = 0;
259 pdp->pClipRects = NULL;
260 pdp->numBackClipRects = 0;
261 pdp->pBackClipRects = NULL;
262 }
263 else
264 pdp->pStamp = &(psp->pSAREA->drawableTable[pdp->index].stamp);
265
266 DRM_SPINLOCK(&psp->pSAREA->drawable_lock, psp->drawLockID);
267 }
268
269 /*@}*/
270
271 /*****************************************************************/
272 /** \name GLX callbacks */
273 /*****************************************************************/
274 /*@{*/
275
276 static void driReportDamage(__DRIdrawable *pdp,
277 struct drm_clip_rect *pClipRects, int numClipRects)
278 {
279 __DRIscreen *psp = pdp->driScreenPriv;
280
281 /* Check that we actually have the new damage report method */
282 if (psp->damage) {
283 /* Report the damage. Currently, all our drivers draw
284 * directly to the front buffer, so we report the damage there
285 * rather than to the backing storein (if any).
286 */
287 (*psp->damage->reportDamage)(pdp,
288 pdp->x, pdp->y,
289 pClipRects, numClipRects,
290 GL_TRUE, pdp->loaderPrivate);
291 }
292 }
293
294
295 /**
296 * Swap buffers.
297 *
298 * \param drawablePrivate opaque pointer to the per-drawable private info.
299 *
300 * \internal
301 * This function calls __DRIdrawable::swapBuffers.
302 *
303 * Is called directly from glXSwapBuffers().
304 */
305 static void driSwapBuffers(__DRIdrawable *dPriv)
306 {
307 __DRIscreen *psp = dPriv->driScreenPriv;
308 drm_clip_rect_t *rects;
309 int i;
310
311 psp->DriverAPI.SwapBuffers(dPriv);
312
313 if (!dPriv->numClipRects)
314 return;
315
316 rects = malloc(sizeof(*rects) * dPriv->numClipRects);
317
318 if (!rects)
319 return;
320
321 for (i = 0; i < dPriv->numClipRects; i++) {
322 rects[i].x1 = dPriv->pClipRects[i].x1 - dPriv->x;
323 rects[i].y1 = dPriv->pClipRects[i].y1 - dPriv->y;
324 rects[i].x2 = dPriv->pClipRects[i].x2 - dPriv->x;
325 rects[i].y2 = dPriv->pClipRects[i].y2 - dPriv->y;
326 }
327
328 driReportDamage(dPriv, rects, dPriv->numClipRects);
329 free(rects);
330 }
331
332 static int driDrawableGetMSC( __DRIscreen *sPriv, __DRIdrawable *dPriv,
333 int64_t *msc )
334 {
335 return sPriv->DriverAPI.GetDrawableMSC(sPriv, dPriv, msc);
336 }
337
338
339 static int driWaitForMSC(__DRIdrawable *dPriv, int64_t target_msc,
340 int64_t divisor, int64_t remainder,
341 int64_t * msc, int64_t * sbc)
342 {
343 __DRIswapInfo sInfo;
344 int status;
345
346 status = dPriv->driScreenPriv->DriverAPI.WaitForMSC( dPriv, target_msc,
347 divisor, remainder,
348 msc );
349
350 /* GetSwapInfo() may not be provided by the driver if GLX_SGI_video_sync
351 * is supported but GLX_OML_sync_control is not. Therefore, don't return
352 * an error value if GetSwapInfo() is not implemented.
353 */
354 if ( status == 0
355 && dPriv->driScreenPriv->DriverAPI.GetSwapInfo ) {
356 status = dPriv->driScreenPriv->DriverAPI.GetSwapInfo( dPriv, & sInfo );
357 *sbc = sInfo.swap_count;
358 }
359
360 return status;
361 }
362
363
364 const __DRImediaStreamCounterExtension driMediaStreamCounterExtension = {
365 { __DRI_MEDIA_STREAM_COUNTER, __DRI_MEDIA_STREAM_COUNTER_VERSION },
366 driWaitForMSC,
367 driDrawableGetMSC,
368 };
369
370
371 static void driCopySubBuffer(__DRIdrawable *dPriv,
372 int x, int y, int w, int h)
373 {
374 drm_clip_rect_t rect;
375
376 rect.x1 = x;
377 rect.y1 = dPriv->h - y - h;
378 rect.x2 = x + w;
379 rect.y2 = rect.y1 + h;
380 driReportDamage(dPriv, &rect, 1);
381
382 dPriv->driScreenPriv->DriverAPI.CopySubBuffer(dPriv, x, y, w, h);
383 }
384
385 const __DRIcopySubBufferExtension driCopySubBufferExtension = {
386 { __DRI_COPY_SUB_BUFFER, __DRI_COPY_SUB_BUFFER_VERSION },
387 driCopySubBuffer
388 };
389
390 static void driSetSwapInterval(__DRIdrawable *dPriv, unsigned int interval)
391 {
392 dPriv->swap_interval = interval;
393 }
394
395 static unsigned int driGetSwapInterval(__DRIdrawable *dPriv)
396 {
397 return dPriv->swap_interval;
398 }
399
400 const __DRIswapControlExtension driSwapControlExtension = {
401 { __DRI_SWAP_CONTROL, __DRI_SWAP_CONTROL_VERSION },
402 driSetSwapInterval,
403 driGetSwapInterval
404 };
405
406
407 /**
408 * This is called via __DRIscreenRec's createNewDrawable pointer.
409 */
410 static __DRIdrawable *
411 driCreateNewDrawable(__DRIscreen *psp, const __DRIconfig *config,
412 drm_drawable_t hwDrawable, int renderType,
413 const int *attrs, void *data)
414 {
415 __DRIdrawable *pdp;
416
417 /* Since pbuffers are not yet supported, no drawable attributes are
418 * supported either.
419 */
420 (void) attrs;
421
422 pdp = malloc(sizeof *pdp);
423 if (!pdp) {
424 return NULL;
425 }
426
427 pdp->driContextPriv = NULL;
428 pdp->loaderPrivate = data;
429 pdp->hHWDrawable = hwDrawable;
430 pdp->refcount = 1;
431 pdp->pStamp = NULL;
432 pdp->lastStamp = 0;
433 pdp->index = 0;
434 pdp->x = 0;
435 pdp->y = 0;
436 pdp->w = 0;
437 pdp->h = 0;
438 pdp->numClipRects = 0;
439 pdp->numBackClipRects = 0;
440 pdp->pClipRects = NULL;
441 pdp->pBackClipRects = NULL;
442 pdp->vblSeq = 0;
443 pdp->vblFlags = 0;
444
445 pdp->driScreenPriv = psp;
446
447 if (!(*psp->DriverAPI.CreateBuffer)(psp, pdp, &config->modes, 0)) {
448 free(pdp);
449 return NULL;
450 }
451
452 pdp->msc_base = 0;
453
454 /* This special default value is replaced with the configured
455 * default value when the drawable is first bound to a direct
456 * rendering context.
457 */
458 pdp->swap_interval = (unsigned)-1;
459
460 return pdp;
461 }
462
463
464 static __DRIdrawable *
465 dri2CreateNewDrawable(__DRIscreen *screen,
466 const __DRIconfig *config,
467 void *loaderPrivate)
468 {
469 __DRIdrawable *pdraw;
470
471 pdraw = driCreateNewDrawable(screen, config, 0, 0, NULL, loaderPrivate);
472 if (!pdraw)
473 return NULL;
474
475 pdraw->pClipRects = &pdraw->dri2.clipRect;
476 pdraw->pBackClipRects = &pdraw->dri2.clipRect;
477
478 pdraw->pStamp = &pdraw->dri2.stamp;
479 *pdraw->pStamp = pdraw->lastStamp + 1;
480
481 return pdraw;
482 }
483
484 static int
485 dri2ConfigQueryb(__DRIscreen *screen, const char *var, GLboolean *val)
486 {
487 if (!driCheckOption(&screen->optionCache, var, DRI_BOOL))
488 return -1;
489
490 *val = driQueryOptionb(&screen->optionCache, var);
491
492 return 0;
493 }
494
495 static int
496 dri2ConfigQueryi(__DRIscreen *screen, const char *var, GLint *val)
497 {
498 if (!driCheckOption(&screen->optionCache, var, DRI_INT) &&
499 !driCheckOption(&screen->optionCache, var, DRI_ENUM))
500 return -1;
501
502 *val = driQueryOptioni(&screen->optionCache, var);
503
504 return 0;
505 }
506
507 static int
508 dri2ConfigQueryf(__DRIscreen *screen, const char *var, GLfloat *val)
509 {
510 if (!driCheckOption(&screen->optionCache, var, DRI_FLOAT))
511 return -1;
512
513 *val = driQueryOptionf(&screen->optionCache, var);
514
515 return 0;
516 }
517
518
519 static void dri_get_drawable(__DRIdrawable *pdp)
520 {
521 pdp->refcount++;
522 }
523
524 static void dri_put_drawable(__DRIdrawable *pdp)
525 {
526 __DRIscreen *psp;
527
528 if (pdp) {
529 pdp->refcount--;
530 if (pdp->refcount)
531 return;
532
533 psp = pdp->driScreenPriv;
534 (*psp->DriverAPI.DestroyBuffer)(pdp);
535 if (pdp->pClipRects && pdp->pClipRects != &pdp->dri2.clipRect) {
536 free(pdp->pClipRects);
537 pdp->pClipRects = NULL;
538 }
539 if (pdp->pBackClipRects && pdp->pClipRects != &pdp->dri2.clipRect) {
540 free(pdp->pBackClipRects);
541 pdp->pBackClipRects = NULL;
542 }
543 free(pdp);
544 }
545 }
546
547 static void
548 driDestroyDrawable(__DRIdrawable *pdp)
549 {
550 dri_put_drawable(pdp);
551 }
552
553 /*@}*/
554
555
556 /*****************************************************************/
557 /** \name Context handling functions */
558 /*****************************************************************/
559 /*@{*/
560
561 /**
562 * Destroy the per-context private information.
563 *
564 * \internal
565 * This function calls __DriverAPIRec::DestroyContext on \p contextPrivate, calls
566 * drmDestroyContext(), and finally frees \p contextPrivate.
567 */
568 static void
569 driDestroyContext(__DRIcontext *pcp)
570 {
571 if (pcp) {
572 (*pcp->driScreenPriv->DriverAPI.DestroyContext)(pcp);
573 free(pcp);
574 }
575 }
576
577
578 /**
579 * Create the per-drawable private driver information.
580 *
581 * \param render_type Type of rendering target. \c GLX_RGBA is the only
582 * type likely to ever be supported for direct-rendering.
583 * \param shared Context with which to share textures, etc. or NULL
584 *
585 * \returns An opaque pointer to the per-context private information on
586 * success, or \c NULL on failure.
587 *
588 * \internal
589 * This function allocates and fills a __DRIcontextRec structure. It
590 * performs some device independent initialization and passes all the
591 * relevent information to __DriverAPIRec::CreateContext to create the
592 * context.
593 *
594 */
595 static __DRIcontext *
596 driCreateNewContext(__DRIscreen *psp, const __DRIconfig *config,
597 int render_type, __DRIcontext *shared,
598 drm_context_t hwContext, void *data)
599 {
600 __DRIcontext *pcp;
601 void * const shareCtx = (shared != NULL) ? shared->driverPrivate : NULL;
602
603 pcp = malloc(sizeof *pcp);
604 if (!pcp)
605 return NULL;
606
607 pcp->driScreenPriv = psp;
608 pcp->driDrawablePriv = NULL;
609 pcp->loaderPrivate = data;
610
611 pcp->dri2.draw_stamp = 0;
612 pcp->dri2.read_stamp = 0;
613
614 pcp->hHWContext = hwContext;
615
616 if ( !(*psp->DriverAPI.CreateContext)(API_OPENGL,
617 &config->modes, pcp, shareCtx) ) {
618 free(pcp);
619 return NULL;
620 }
621
622 return pcp;
623 }
624
625 static unsigned int
626 dri2GetAPIMask(__DRIscreen *screen)
627 {
628 return screen->api_mask;
629 }
630
631 static __DRIcontext *
632 dri2CreateNewContextForAPI(__DRIscreen *screen, int api,
633 const __DRIconfig *config,
634 __DRIcontext *shared, void *data)
635 {
636 __DRIcontext *context;
637 const struct gl_config *modes = (config != NULL) ? &config->modes : NULL;
638 void *shareCtx = (shared != NULL) ? shared->driverPrivate : NULL;
639 gl_api mesa_api;
640
641 if (!(screen->api_mask & (1 << api)))
642 return NULL;
643
644 switch (api) {
645 case __DRI_API_OPENGL:
646 mesa_api = API_OPENGL;
647 break;
648 case __DRI_API_GLES:
649 mesa_api = API_OPENGLES;
650 break;
651 case __DRI_API_GLES2:
652 mesa_api = API_OPENGLES2;
653 break;
654 default:
655 return NULL;
656 }
657
658 context = malloc(sizeof *context);
659 if (!context)
660 return NULL;
661
662 context->driScreenPriv = screen;
663 context->driDrawablePriv = NULL;
664 context->loaderPrivate = data;
665
666 if (!(*screen->DriverAPI.CreateContext)(mesa_api, modes,
667 context, shareCtx) ) {
668 free(context);
669 return NULL;
670 }
671
672 return context;
673 }
674
675
676 static __DRIcontext *
677 dri2CreateNewContext(__DRIscreen *screen, const __DRIconfig *config,
678 __DRIcontext *shared, void *data)
679 {
680 return dri2CreateNewContextForAPI(screen, __DRI_API_OPENGL,
681 config, shared, data);
682 }
683
684 static int
685 driCopyContext(__DRIcontext *dest, __DRIcontext *src, unsigned long mask)
686 {
687 return GL_FALSE;
688 }
689
690 /*@}*/
691
692
693 /*****************************************************************/
694 /** \name Screen handling functions */
695 /*****************************************************************/
696 /*@{*/
697
698 /**
699 * Destroy the per-screen private information.
700 *
701 * \internal
702 * This function calls __DriverAPIRec::DestroyScreen on \p screenPrivate, calls
703 * drmClose(), and finally frees \p screenPrivate.
704 */
705 static void driDestroyScreen(__DRIscreen *psp)
706 {
707 if (psp) {
708 /* No interaction with the X-server is possible at this point. This
709 * routine is called after XCloseDisplay, so there is no protocol
710 * stream open to the X-server anymore.
711 */
712
713 _mesa_destroy_shader_compiler();
714
715 if (psp->DriverAPI.DestroyScreen)
716 (*psp->DriverAPI.DestroyScreen)(psp);
717
718 if (!psp->dri2.enabled) {
719 (void)drmUnmap((drmAddress)psp->pSAREA, SAREA_MAX);
720 (void)drmUnmap((drmAddress)psp->pFB, psp->fbSize);
721 (void)drmCloseOnce(psp->fd);
722 } else {
723 driDestroyOptionCache(&psp->optionCache);
724 driDestroyOptionInfo(&psp->optionInfo);
725 }
726
727 free(psp);
728 }
729 }
730
731 static void
732 setupLoaderExtensions(__DRIscreen *psp,
733 const __DRIextension **extensions)
734 {
735 int i;
736
737 for (i = 0; extensions[i]; i++) {
738 if (strcmp(extensions[i]->name, __DRI_GET_DRAWABLE_INFO) == 0)
739 psp->getDrawableInfo = (__DRIgetDrawableInfoExtension *) extensions[i];
740 if (strcmp(extensions[i]->name, __DRI_DAMAGE) == 0)
741 psp->damage = (__DRIdamageExtension *) extensions[i];
742 if (strcmp(extensions[i]->name, __DRI_SYSTEM_TIME) == 0)
743 psp->systemTime = (__DRIsystemTimeExtension *) extensions[i];
744 if (strcmp(extensions[i]->name, __DRI_DRI2_LOADER) == 0)
745 psp->dri2.loader = (__DRIdri2LoaderExtension *) extensions[i];
746 if (strcmp(extensions[i]->name, __DRI_IMAGE_LOOKUP) == 0)
747 psp->dri2.image = (__DRIimageLookupExtension *) extensions[i];
748 if (strcmp(extensions[i]->name, __DRI_USE_INVALIDATE) == 0)
749 psp->dri2.useInvalidate = (__DRIuseInvalidateExtension *) extensions[i];
750 }
751 }
752
753 /**
754 * This is the bootstrap function for the driver. libGL supplies all of the
755 * requisite information about the system, and the driver initializes itself.
756 * This routine also fills in the linked list pointed to by \c driver_modes
757 * with the \c struct gl_config that the driver can support for windows or
758 * pbuffers.
759 *
760 * For legacy DRI.
761 *
762 * \param scrn Index of the screen
763 * \param ddx_version Version of the 2D DDX. This may not be meaningful for
764 * all drivers.
765 * \param dri_version Version of the "server-side" DRI.
766 * \param drm_version Version of the kernel DRM.
767 * \param frame_buffer Data describing the location and layout of the
768 * framebuffer.
769 * \param pSAREA Pointer to the SAREA.
770 * \param fd Device handle for the DRM.
771 * \param extensions ??
772 * \param driver_modes Returns modes suppoted by the driver
773 * \param loaderPrivate ??
774 *
775 * \note There is no need to check the minimum API version in this
776 * function. Since the name of this function is versioned, it is
777 * impossible for a loader that is too old to even load this driver.
778 */
779 static __DRIscreen *
780 driCreateNewScreen(int scrn,
781 const __DRIversion *ddx_version,
782 const __DRIversion *dri_version,
783 const __DRIversion *drm_version,
784 const __DRIframebuffer *frame_buffer,
785 drmAddress pSAREA, int fd,
786 const __DRIextension **extensions,
787 const __DRIconfig ***driver_modes,
788 void *loaderPrivate)
789 {
790 static const __DRIextension *emptyExtensionList[] = { NULL };
791 __DRIscreen *psp;
792
793 psp = calloc(1, sizeof *psp);
794 if (!psp)
795 return NULL;
796
797 setupLoaderExtensions(psp, extensions);
798
799 /*
800 ** NOT_DONE: This is used by the X server to detect when the client
801 ** has died while holding the drawable lock. The client sets the
802 ** drawable lock to this value.
803 */
804 psp->drawLockID = 1;
805
806 psp->drm_version = *drm_version;
807 psp->ddx_version = *ddx_version;
808 psp->dri_version = *dri_version;
809
810 psp->pSAREA = pSAREA;
811 psp->lock = (drmLock *) &psp->pSAREA->lock;
812
813 psp->pFB = frame_buffer->base;
814 psp->fbSize = frame_buffer->size;
815 psp->fbStride = frame_buffer->stride;
816 psp->fbWidth = frame_buffer->width;
817 psp->fbHeight = frame_buffer->height;
818 psp->devPrivSize = frame_buffer->dev_priv_size;
819 psp->pDevPriv = frame_buffer->dev_priv;
820 psp->fbBPP = psp->fbStride * 8 / frame_buffer->width;
821
822 psp->extensions = emptyExtensionList;
823 psp->fd = fd;
824 psp->myNum = scrn;
825 psp->dri2.enabled = GL_FALSE;
826
827 psp->DriverAPI = driDriverAPI;
828 psp->api_mask = (1 << __DRI_API_OPENGL);
829
830 *driver_modes = driDriverAPI.InitScreen(psp);
831 if (*driver_modes == NULL) {
832 free(psp);
833 return NULL;
834 }
835
836 return psp;
837 }
838
839 /**
840 * DRI2
841 */
842 static __DRIscreen *
843 dri2CreateNewScreen(int scrn, int fd,
844 const __DRIextension **extensions,
845 const __DRIconfig ***driver_configs, void *data)
846 {
847 static const __DRIextension *emptyExtensionList[] = { NULL };
848 __DRIscreen *psp;
849 drmVersionPtr version;
850
851 if (driDriverAPI.InitScreen2 == NULL)
852 return NULL;
853
854 psp = calloc(1, sizeof(*psp));
855 if (!psp)
856 return NULL;
857
858 setupLoaderExtensions(psp, extensions);
859
860 version = drmGetVersion(fd);
861 if (version) {
862 psp->drm_version.major = version->version_major;
863 psp->drm_version.minor = version->version_minor;
864 psp->drm_version.patch = version->version_patchlevel;
865 drmFreeVersion(version);
866 }
867
868 psp->extensions = emptyExtensionList;
869 psp->fd = fd;
870 psp->myNum = scrn;
871 psp->dri2.enabled = GL_TRUE;
872
873 psp->DriverAPI = driDriverAPI;
874 psp->api_mask = (1 << __DRI_API_OPENGL);
875 *driver_configs = driDriverAPI.InitScreen2(psp);
876 if (*driver_configs == NULL) {
877 free(psp);
878 return NULL;
879 }
880
881 psp->DriverAPI = driDriverAPI;
882 psp->loaderPrivate = data;
883
884 driParseOptionInfo(&psp->optionInfo, __dri2ConfigOptions,
885 __dri2NConfigOptions);
886 driParseConfigFiles(&psp->optionCache, &psp->optionInfo, psp->myNum,
887 "dri2");
888
889 return psp;
890 }
891
892 static const __DRIextension **driGetExtensions(__DRIscreen *psp)
893 {
894 return psp->extensions;
895 }
896
897 /** Core interface */
898 const __DRIcoreExtension driCoreExtension = {
899 { __DRI_CORE, __DRI_CORE_VERSION },
900 NULL,
901 driDestroyScreen,
902 driGetExtensions,
903 driGetConfigAttrib,
904 driIndexConfigAttrib,
905 NULL,
906 driDestroyDrawable,
907 driSwapBuffers,
908 NULL,
909 driCopyContext,
910 driDestroyContext,
911 driBindContext,
912 driUnbindContext
913 };
914
915 /** Legacy DRI interface */
916 const __DRIlegacyExtension driLegacyExtension = {
917 { __DRI_LEGACY, __DRI_LEGACY_VERSION },
918 driCreateNewScreen,
919 driCreateNewDrawable,
920 driCreateNewContext,
921 };
922
923 /** DRI2 interface */
924 const __DRIdri2Extension driDRI2Extension = {
925 { __DRI_DRI2, __DRI_DRI2_VERSION },
926 dri2CreateNewScreen,
927 dri2CreateNewDrawable,
928 dri2CreateNewContext,
929 dri2GetAPIMask,
930 dri2CreateNewContextForAPI
931 };
932
933 const __DRI2configQueryExtension dri2ConfigQueryExtension = {
934 { __DRI2_CONFIG_QUERY, __DRI2_CONFIG_QUERY_VERSION },
935 dri2ConfigQueryb,
936 dri2ConfigQueryi,
937 dri2ConfigQueryf,
938 };
939
940 /**
941 * Calculate amount of swap interval used between GLX buffer swaps.
942 *
943 * The usage value, on the range [0,max], is the fraction of total swap
944 * interval time used between GLX buffer swaps is calculated.
945 *
946 * \f$p = t_d / (i * t_r)\f$
947 *
948 * Where \f$t_d\f$ is the time since the last GLX buffer swap, \f$i\f$ is the
949 * swap interval (as set by \c glXSwapIntervalSGI), and \f$t_r\f$ time
950 * required for a single vertical refresh period (as returned by \c
951 * glXGetMscRateOML).
952 *
953 * See the documentation for the GLX_MESA_swap_frame_usage extension for more
954 * details.
955 *
956 * \param dPriv Pointer to the private drawable structure.
957 * \return If less than a single swap interval time period was required
958 * between GLX buffer swaps, a number greater than 0 and less than
959 * 1.0 is returned. If exactly one swap interval time period is
960 * required, 1.0 is returned, and if more than one is required then
961 * a number greater than 1.0 will be returned.
962 *
963 * \sa glXSwapIntervalSGI glXGetMscRateOML
964 *
965 * \todo Instead of caching the \c glXGetMscRateOML function pointer, would it
966 * be possible to cache the sync rate?
967 */
968 float
969 driCalculateSwapUsage( __DRIdrawable *dPriv, int64_t last_swap_ust,
970 int64_t current_ust )
971 {
972 int32_t n;
973 int32_t d;
974 int interval;
975 float usage = 1.0;
976 __DRIscreen *psp = dPriv->driScreenPriv;
977
978 if ( (*psp->systemTime->getMSCRate)(dPriv, &n, &d, dPriv->loaderPrivate) ) {
979 interval = (dPriv->swap_interval != 0) ? dPriv->swap_interval : 1;
980
981
982 /* We want to calculate
983 * (current_UST - last_swap_UST) / (interval * us_per_refresh). We get
984 * current_UST by calling __glXGetUST. last_swap_UST is stored in
985 * dPriv->swap_ust. interval has already been calculated.
986 *
987 * The only tricky part is us_per_refresh. us_per_refresh is
988 * 1000000 / MSC_rate. We know the MSC_rate is n / d. We can flip it
989 * around and say us_per_refresh = 1000000 * d / n. Since this goes in
990 * the denominator of the final calculation, we calculate
991 * (interval * 1000000 * d) and move n into the numerator.
992 */
993
994 usage = (current_ust - last_swap_ust);
995 usage *= n;
996 usage /= (interval * d);
997 usage /= 1000000.0;
998 }
999
1000 return usage;
1001 }
1002
1003 void
1004 dri2InvalidateDrawable(__DRIdrawable *drawable)
1005 {
1006 drawable->dri2.stamp++;
1007 }
1008
1009 /*@}*/