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