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