loader/dri3: Improve dri3 thread-safety
[mesa.git] / src / loader / loader_dri3_helper.c
1 /*
2 * Copyright © 2013 Keith Packard
3 * Copyright © 2015 Boyan Ding
4 *
5 * Permission to use, copy, modify, distribute, and sell this software and its
6 * documentation for any purpose is hereby granted without fee, provided that
7 * the above copyright notice appear in all copies and that both that copyright
8 * notice and this permission notice appear in supporting documentation, and
9 * that the name of the copyright holders not be used in advertising or
10 * publicity pertaining to distribution of the software without specific,
11 * written prior permission. The copyright holders make no representations
12 * about the suitability of this software for any purpose. It is provided "as
13 * is" without express or implied warranty.
14 *
15 * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
16 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
17 * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
18 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
19 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
20 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
21 * OF THIS SOFTWARE.
22 */
23
24 #include <fcntl.h>
25 #include <stdlib.h>
26 #include <unistd.h>
27
28 #include <X11/xshmfence.h>
29 #include <xcb/xcb.h>
30 #include <xcb/dri3.h>
31 #include <xcb/present.h>
32
33 #include <X11/Xlib-xcb.h>
34
35 #include "loader_dri3_helper.h"
36
37 /* From xmlpool/options.h, user exposed so should be stable */
38 #define DRI_CONF_VBLANK_NEVER 0
39 #define DRI_CONF_VBLANK_DEF_INTERVAL_0 1
40 #define DRI_CONF_VBLANK_DEF_INTERVAL_1 2
41 #define DRI_CONF_VBLANK_ALWAYS_SYNC 3
42
43 /**
44 * A cached blit context.
45 */
46 struct loader_dri3_blit_context {
47 mtx_t mtx;
48 __DRIcontext *ctx;
49 __DRIscreen *cur_screen;
50 const __DRIcoreExtension *core;
51 };
52
53 /* For simplicity we maintain the cache only for a single screen at a time */
54 static struct loader_dri3_blit_context blit_context = {
55 _MTX_INITIALIZER_NP, NULL
56 };
57
58 static void
59 dri3_flush_present_events(struct loader_dri3_drawable *draw);
60
61 static struct loader_dri3_buffer *
62 dri3_find_back_alloc(struct loader_dri3_drawable *draw);
63
64 /**
65 * Do we have blit functionality in the image blit extension?
66 *
67 * \param draw[in] The drawable intended to blit from / to.
68 * \return true if we have blit functionality. false otherwise.
69 */
70 static bool loader_dri3_have_image_blit(const struct loader_dri3_drawable *draw)
71 {
72 return draw->ext->image->base.version >= 9 &&
73 draw->ext->image->blitImage != NULL;
74 }
75
76 /**
77 * Get and lock (for use with the current thread) a dri context associated
78 * with the drawable's dri screen. The context is intended to be used with
79 * the dri image extension's blitImage method.
80 *
81 * \param draw[in] Pointer to the drawable whose dri screen we want a
82 * dri context for.
83 * \return A dri context or NULL if context creation failed.
84 *
85 * When the caller is done with the context (even if the context returned was
86 * NULL), the caller must call loader_dri3_blit_context_put.
87 */
88 static __DRIcontext *
89 loader_dri3_blit_context_get(struct loader_dri3_drawable *draw)
90 {
91 mtx_lock(&blit_context.mtx);
92
93 if (blit_context.ctx && blit_context.cur_screen != draw->dri_screen) {
94 blit_context.core->destroyContext(blit_context.ctx);
95 blit_context.ctx = NULL;
96 }
97
98 if (!blit_context.ctx) {
99 blit_context.ctx = draw->ext->core->createNewContext(draw->dri_screen,
100 NULL, NULL, NULL);
101 blit_context.cur_screen = draw->dri_screen;
102 blit_context.core = draw->ext->core;
103 }
104
105 return blit_context.ctx;
106 }
107
108 /**
109 * Release (for use with other threads) a dri context previously obtained using
110 * loader_dri3_blit_context_get.
111 */
112 static void
113 loader_dri3_blit_context_put(void)
114 {
115 mtx_unlock(&blit_context.mtx);
116 }
117
118 /**
119 * Blit (parts of) the contents of a DRI image to another dri image
120 *
121 * \param draw[in] The drawable which owns the images.
122 * \param dst[in] The destination image.
123 * \param src[in] The source image.
124 * \param dstx0[in] Start destination coordinate.
125 * \param dsty0[in] Start destination coordinate.
126 * \param width[in] Blit width.
127 * \param height[in] Blit height.
128 * \param srcx0[in] Start source coordinate.
129 * \param srcy0[in] Start source coordinate.
130 * \param flush_flag[in] Image blit flush flag.
131 * \return true iff successful.
132 */
133 static bool
134 loader_dri3_blit_image(struct loader_dri3_drawable *draw,
135 __DRIimage *dst, __DRIimage *src,
136 int dstx0, int dsty0, int width, int height,
137 int srcx0, int srcy0, int flush_flag)
138 {
139 __DRIcontext *dri_context;
140 bool use_blit_context = false;
141
142 if (!loader_dri3_have_image_blit(draw))
143 return false;
144
145 dri_context = draw->vtable->get_dri_context(draw);
146
147 if (!dri_context || !draw->vtable->in_current_context(draw)) {
148 dri_context = loader_dri3_blit_context_get(draw);
149 use_blit_context = true;
150 flush_flag |= __BLIT_FLAG_FLUSH;
151 }
152
153 if (dri_context)
154 draw->ext->image->blitImage(dri_context, dst, src, dstx0, dsty0,
155 width, height, srcx0, srcy0,
156 width, height, flush_flag);
157
158 if (use_blit_context)
159 loader_dri3_blit_context_put();
160
161 return dri_context != NULL;
162 }
163
164 static inline void
165 dri3_fence_reset(xcb_connection_t *c, struct loader_dri3_buffer *buffer)
166 {
167 xshmfence_reset(buffer->shm_fence);
168 }
169
170 static inline void
171 dri3_fence_set(struct loader_dri3_buffer *buffer)
172 {
173 xshmfence_trigger(buffer->shm_fence);
174 }
175
176 static inline void
177 dri3_fence_trigger(xcb_connection_t *c, struct loader_dri3_buffer *buffer)
178 {
179 xcb_sync_trigger_fence(c, buffer->sync_fence);
180 }
181
182 static inline void
183 dri3_fence_await(xcb_connection_t *c, struct loader_dri3_drawable *draw,
184 struct loader_dri3_buffer *buffer)
185 {
186 xcb_flush(c);
187 xshmfence_await(buffer->shm_fence);
188 if (draw) {
189 mtx_lock(&draw->mtx);
190 dri3_flush_present_events(draw);
191 mtx_unlock(&draw->mtx);
192 }
193 }
194
195 static void
196 dri3_update_num_back(struct loader_dri3_drawable *draw)
197 {
198 if (draw->flipping)
199 draw->num_back = 3;
200 else
201 draw->num_back = 2;
202 }
203
204 void
205 loader_dri3_set_swap_interval(struct loader_dri3_drawable *draw, int interval)
206 {
207 draw->swap_interval = interval;
208 dri3_update_num_back(draw);
209 }
210
211 /** dri3_free_render_buffer
212 *
213 * Free everything associated with one render buffer including pixmap, fence
214 * stuff and the driver image
215 */
216 static void
217 dri3_free_render_buffer(struct loader_dri3_drawable *draw,
218 struct loader_dri3_buffer *buffer)
219 {
220 if (buffer->own_pixmap)
221 xcb_free_pixmap(draw->conn, buffer->pixmap);
222 xcb_sync_destroy_fence(draw->conn, buffer->sync_fence);
223 xshmfence_unmap_shm(buffer->shm_fence);
224 draw->ext->image->destroyImage(buffer->image);
225 if (buffer->linear_buffer)
226 draw->ext->image->destroyImage(buffer->linear_buffer);
227 free(buffer);
228 }
229
230 void
231 loader_dri3_drawable_fini(struct loader_dri3_drawable *draw)
232 {
233 int i;
234
235 draw->ext->core->destroyDrawable(draw->dri_drawable);
236
237 for (i = 0; i < LOADER_DRI3_NUM_BUFFERS; i++) {
238 if (draw->buffers[i])
239 dri3_free_render_buffer(draw, draw->buffers[i]);
240 }
241
242 if (draw->special_event) {
243 xcb_void_cookie_t cookie =
244 xcb_present_select_input_checked(draw->conn, draw->eid, draw->drawable,
245 XCB_PRESENT_EVENT_MASK_NO_EVENT);
246
247 xcb_discard_reply(draw->conn, cookie.sequence);
248 xcb_unregister_for_special_event(draw->conn, draw->special_event);
249 }
250
251 cnd_destroy(&draw->event_cnd);
252 mtx_destroy(&draw->mtx);
253 }
254
255 int
256 loader_dri3_drawable_init(xcb_connection_t *conn,
257 xcb_drawable_t drawable,
258 __DRIscreen *dri_screen,
259 bool is_different_gpu,
260 const __DRIconfig *dri_config,
261 struct loader_dri3_extensions *ext,
262 const struct loader_dri3_vtable *vtable,
263 struct loader_dri3_drawable *draw)
264 {
265 xcb_get_geometry_cookie_t cookie;
266 xcb_get_geometry_reply_t *reply;
267 xcb_generic_error_t *error;
268 GLint vblank_mode = DRI_CONF_VBLANK_DEF_INTERVAL_1;
269 int swap_interval;
270
271 draw->conn = conn;
272 draw->ext = ext;
273 draw->vtable = vtable;
274 draw->drawable = drawable;
275 draw->dri_screen = dri_screen;
276 draw->is_different_gpu = is_different_gpu;
277
278 draw->have_back = 0;
279 draw->have_fake_front = 0;
280 draw->first_init = true;
281
282 draw->cur_blit_source = -1;
283 draw->back_format = __DRI_IMAGE_FORMAT_NONE;
284 mtx_init(&draw->mtx, mtx_plain);
285 cnd_init(&draw->event_cnd);
286
287 if (draw->ext->config)
288 draw->ext->config->configQueryi(draw->dri_screen,
289 "vblank_mode", &vblank_mode);
290
291 switch (vblank_mode) {
292 case DRI_CONF_VBLANK_NEVER:
293 case DRI_CONF_VBLANK_DEF_INTERVAL_0:
294 swap_interval = 0;
295 break;
296 case DRI_CONF_VBLANK_DEF_INTERVAL_1:
297 case DRI_CONF_VBLANK_ALWAYS_SYNC:
298 default:
299 swap_interval = 1;
300 break;
301 }
302 draw->swap_interval = swap_interval;
303
304 dri3_update_num_back(draw);
305
306 /* Create a new drawable */
307 draw->dri_drawable =
308 draw->ext->image_driver->createNewDrawable(dri_screen,
309 dri_config,
310 draw);
311
312 if (!draw->dri_drawable)
313 return 1;
314
315 cookie = xcb_get_geometry(draw->conn, draw->drawable);
316 reply = xcb_get_geometry_reply(draw->conn, cookie, &error);
317 if (reply == NULL || error != NULL) {
318 draw->ext->core->destroyDrawable(draw->dri_drawable);
319 return 1;
320 }
321
322 draw->width = reply->width;
323 draw->height = reply->height;
324 draw->depth = reply->depth;
325 draw->vtable->set_drawable_size(draw, draw->width, draw->height);
326 free(reply);
327
328 draw->swap_method = __DRI_ATTRIB_SWAP_UNDEFINED;
329 if (draw->ext->core->base.version >= 2) {
330 (void )draw->ext->core->getConfigAttrib(dri_config,
331 __DRI_ATTRIB_SWAP_METHOD,
332 &draw->swap_method);
333 }
334
335 /*
336 * Make sure server has the same swap interval we do for the new
337 * drawable.
338 */
339 loader_dri3_set_swap_interval(draw, swap_interval);
340
341 return 0;
342 }
343
344 /*
345 * Process one Present event
346 */
347 static void
348 dri3_handle_present_event(struct loader_dri3_drawable *draw,
349 xcb_present_generic_event_t *ge)
350 {
351 switch (ge->evtype) {
352 case XCB_PRESENT_CONFIGURE_NOTIFY: {
353 xcb_present_configure_notify_event_t *ce = (void *) ge;
354
355 draw->width = ce->width;
356 draw->height = ce->height;
357 draw->vtable->set_drawable_size(draw, draw->width, draw->height);
358 draw->ext->flush->invalidate(draw->dri_drawable);
359 break;
360 }
361 case XCB_PRESENT_COMPLETE_NOTIFY: {
362 xcb_present_complete_notify_event_t *ce = (void *) ge;
363
364 /* Compute the processed SBC number from the received 32-bit serial number
365 * merged with the upper 32-bits of the sent 64-bit serial number while
366 * checking for wrap.
367 */
368 if (ce->kind == XCB_PRESENT_COMPLETE_KIND_PIXMAP) {
369 draw->recv_sbc = (draw->send_sbc & 0xffffffff00000000LL) | ce->serial;
370 if (draw->recv_sbc > draw->send_sbc)
371 draw->recv_sbc -= 0x100000000;
372 switch (ce->mode) {
373 case XCB_PRESENT_COMPLETE_MODE_FLIP:
374 draw->flipping = true;
375 break;
376 case XCB_PRESENT_COMPLETE_MODE_COPY:
377 draw->flipping = false;
378 break;
379 }
380 dri3_update_num_back(draw);
381
382 if (draw->vtable->show_fps)
383 draw->vtable->show_fps(draw, ce->ust);
384
385 draw->ust = ce->ust;
386 draw->msc = ce->msc;
387 } else {
388 draw->recv_msc_serial = ce->serial;
389 draw->notify_ust = ce->ust;
390 draw->notify_msc = ce->msc;
391 }
392 break;
393 }
394 case XCB_PRESENT_EVENT_IDLE_NOTIFY: {
395 xcb_present_idle_notify_event_t *ie = (void *) ge;
396 int b;
397
398 for (b = 0; b < sizeof(draw->buffers) / sizeof(draw->buffers[0]); b++) {
399 struct loader_dri3_buffer *buf = draw->buffers[b];
400
401 if (buf && buf->pixmap == ie->pixmap)
402 buf->busy = 0;
403
404 if (buf && draw->num_back <= b && b < LOADER_DRI3_MAX_BACK &&
405 draw->cur_blit_source != b) {
406 dri3_free_render_buffer(draw, buf);
407 draw->buffers[b] = NULL;
408 }
409 }
410 break;
411 }
412 }
413 free(ge);
414 }
415
416 static bool
417 dri3_wait_for_event_locked(struct loader_dri3_drawable *draw)
418 {
419 xcb_generic_event_t *ev;
420 xcb_present_generic_event_t *ge;
421
422 xcb_flush(draw->conn);
423
424 /* Only have one thread waiting for events at a time */
425 if (draw->has_event_waiter) {
426 cnd_wait(&draw->event_cnd, &draw->mtx);
427 /* Another thread has updated the protected info, so retest. */
428 return true;
429 } else {
430 draw->has_event_waiter = true;
431 /* Allow other threads access to the drawable while we're waiting. */
432 mtx_unlock(&draw->mtx);
433 ev = xcb_wait_for_special_event(draw->conn, draw->special_event);
434 mtx_lock(&draw->mtx);
435 draw->has_event_waiter = false;
436 cnd_broadcast(&draw->event_cnd);
437 }
438 if (!ev)
439 return false;
440 ge = (void *) ev;
441 dri3_handle_present_event(draw, ge);
442 return true;
443 }
444
445 /** loader_dri3_wait_for_msc
446 *
447 * Get the X server to send an event when the target msc/divisor/remainder is
448 * reached.
449 */
450 bool
451 loader_dri3_wait_for_msc(struct loader_dri3_drawable *draw,
452 int64_t target_msc,
453 int64_t divisor, int64_t remainder,
454 int64_t *ust, int64_t *msc, int64_t *sbc)
455 {
456 uint32_t msc_serial;
457
458 msc_serial = ++draw->send_msc_serial;
459 xcb_present_notify_msc(draw->conn,
460 draw->drawable,
461 msc_serial,
462 target_msc,
463 divisor,
464 remainder);
465
466 mtx_lock(&draw->mtx);
467 xcb_flush(draw->conn);
468
469 /* Wait for the event */
470 if (draw->special_event) {
471 while ((int32_t) (msc_serial - draw->recv_msc_serial) > 0) {
472 if (!dri3_wait_for_event_locked(draw)) {
473 mtx_unlock(&draw->mtx);
474 return false;
475 }
476 }
477 }
478
479 *ust = draw->notify_ust;
480 *msc = draw->notify_msc;
481 *sbc = draw->recv_sbc;
482 mtx_unlock(&draw->mtx);
483
484 return true;
485 }
486
487 /** loader_dri3_wait_for_sbc
488 *
489 * Wait for the completed swap buffer count to reach the specified
490 * target. Presumably the application knows that this will be reached with
491 * outstanding complete events, or we're going to be here awhile.
492 */
493 int
494 loader_dri3_wait_for_sbc(struct loader_dri3_drawable *draw,
495 int64_t target_sbc, int64_t *ust,
496 int64_t *msc, int64_t *sbc)
497 {
498 /* From the GLX_OML_sync_control spec:
499 *
500 * "If <target_sbc> = 0, the function will block until all previous
501 * swaps requested with glXSwapBuffersMscOML for that window have
502 * completed."
503 */
504 mtx_lock(&draw->mtx);
505 if (!target_sbc)
506 target_sbc = draw->send_sbc;
507
508 while (draw->recv_sbc < target_sbc) {
509 if (!dri3_wait_for_event_locked(draw)) {
510 mtx_unlock(&draw->mtx);
511 return 0;
512 }
513 }
514
515 *ust = draw->ust;
516 *msc = draw->msc;
517 *sbc = draw->recv_sbc;
518 mtx_unlock(&draw->mtx);
519 return 1;
520 }
521
522 /** loader_dri3_find_back
523 *
524 * Find an idle back buffer. If there isn't one, then
525 * wait for a present idle notify event from the X server
526 */
527 static int
528 dri3_find_back(struct loader_dri3_drawable *draw)
529 {
530 int b;
531 int num_to_consider;
532
533 mtx_lock(&draw->mtx);
534 /* Increase the likelyhood of reusing current buffer */
535 dri3_flush_present_events(draw);
536
537 /* Check whether we need to reuse the current back buffer as new back.
538 * In that case, wait until it's not busy anymore.
539 */
540 num_to_consider = draw->num_back;
541 if (!loader_dri3_have_image_blit(draw) && draw->cur_blit_source != -1) {
542 num_to_consider = 1;
543 draw->cur_blit_source = -1;
544 }
545
546 for (;;) {
547 for (b = 0; b < num_to_consider; b++) {
548 int id = LOADER_DRI3_BACK_ID((b + draw->cur_back) % draw->num_back);
549 struct loader_dri3_buffer *buffer = draw->buffers[id];
550
551 if (!buffer || !buffer->busy) {
552 draw->cur_back = id;
553 mtx_unlock(&draw->mtx);
554 return id;
555 }
556 }
557 if (!dri3_wait_for_event_locked(draw)) {
558 mtx_unlock(&draw->mtx);
559 return -1;
560 }
561 }
562 }
563
564 static xcb_gcontext_t
565 dri3_drawable_gc(struct loader_dri3_drawable *draw)
566 {
567 if (!draw->gc) {
568 uint32_t v = 0;
569 xcb_create_gc(draw->conn,
570 (draw->gc = xcb_generate_id(draw->conn)),
571 draw->drawable,
572 XCB_GC_GRAPHICS_EXPOSURES,
573 &v);
574 }
575 return draw->gc;
576 }
577
578
579 static struct loader_dri3_buffer *
580 dri3_back_buffer(struct loader_dri3_drawable *draw)
581 {
582 return draw->buffers[LOADER_DRI3_BACK_ID(draw->cur_back)];
583 }
584
585 static struct loader_dri3_buffer *
586 dri3_fake_front_buffer(struct loader_dri3_drawable *draw)
587 {
588 return draw->buffers[LOADER_DRI3_FRONT_ID];
589 }
590
591 static void
592 dri3_copy_area(xcb_connection_t *c,
593 xcb_drawable_t src_drawable,
594 xcb_drawable_t dst_drawable,
595 xcb_gcontext_t gc,
596 int16_t src_x,
597 int16_t src_y,
598 int16_t dst_x,
599 int16_t dst_y,
600 uint16_t width,
601 uint16_t height)
602 {
603 xcb_void_cookie_t cookie;
604
605 cookie = xcb_copy_area_checked(c,
606 src_drawable,
607 dst_drawable,
608 gc,
609 src_x,
610 src_y,
611 dst_x,
612 dst_y,
613 width,
614 height);
615 xcb_discard_reply(c, cookie.sequence);
616 }
617
618 /**
619 * Asks the driver to flush any queued work necessary for serializing with the
620 * X command stream, and optionally the slightly more strict requirement of
621 * glFlush() equivalence (which would require flushing even if nothing had
622 * been drawn to a window system framebuffer, for example).
623 */
624 void
625 loader_dri3_flush(struct loader_dri3_drawable *draw,
626 unsigned flags,
627 enum __DRI2throttleReason throttle_reason)
628 {
629 /* NEED TO CHECK WHETHER CONTEXT IS NULL */
630 __DRIcontext *dri_context = draw->vtable->get_dri_context(draw);
631
632 if (dri_context) {
633 draw->ext->flush->flush_with_flags(dri_context, draw->dri_drawable,
634 flags, throttle_reason);
635 }
636 }
637
638 void
639 loader_dri3_copy_sub_buffer(struct loader_dri3_drawable *draw,
640 int x, int y,
641 int width, int height,
642 bool flush)
643 {
644 struct loader_dri3_buffer *back;
645 unsigned flags = __DRI2_FLUSH_DRAWABLE;
646
647 /* Check we have the right attachments */
648 if (!draw->have_back || draw->is_pixmap)
649 return;
650
651 if (flush)
652 flags |= __DRI2_FLUSH_CONTEXT;
653 loader_dri3_flush(draw, flags, __DRI2_THROTTLE_SWAPBUFFER);
654
655 back = dri3_find_back_alloc(draw);
656 if (!back)
657 return;
658
659 y = draw->height - y - height;
660
661 if (draw->is_different_gpu) {
662 /* Update the linear buffer part of the back buffer
663 * for the dri3_copy_area operation
664 */
665 (void) loader_dri3_blit_image(draw,
666 back->linear_buffer,
667 back->image,
668 0, 0, back->width, back->height,
669 0, 0, __BLIT_FLAG_FLUSH);
670 }
671
672 loader_dri3_swapbuffer_barrier(draw);
673 dri3_fence_reset(draw->conn, back);
674 dri3_copy_area(draw->conn,
675 back->pixmap,
676 draw->drawable,
677 dri3_drawable_gc(draw),
678 x, y, x, y, width, height);
679 dri3_fence_trigger(draw->conn, back);
680 /* Refresh the fake front (if present) after we just damaged the real
681 * front.
682 */
683 if (draw->have_fake_front &&
684 !loader_dri3_blit_image(draw,
685 dri3_fake_front_buffer(draw)->image,
686 back->image,
687 x, y, width, height,
688 x, y, __BLIT_FLAG_FLUSH) &&
689 !draw->is_different_gpu) {
690 dri3_fence_reset(draw->conn, dri3_fake_front_buffer(draw));
691 dri3_copy_area(draw->conn,
692 back->pixmap,
693 dri3_fake_front_buffer(draw)->pixmap,
694 dri3_drawable_gc(draw),
695 x, y, x, y, width, height);
696 dri3_fence_trigger(draw->conn, dri3_fake_front_buffer(draw));
697 dri3_fence_await(draw->conn, NULL, dri3_fake_front_buffer(draw));
698 }
699 dri3_fence_await(draw->conn, draw, back);
700 }
701
702 void
703 loader_dri3_copy_drawable(struct loader_dri3_drawable *draw,
704 xcb_drawable_t dest,
705 xcb_drawable_t src)
706 {
707 loader_dri3_flush(draw, __DRI2_FLUSH_DRAWABLE, 0);
708
709 dri3_fence_reset(draw->conn, dri3_fake_front_buffer(draw));
710 dri3_copy_area(draw->conn,
711 src, dest,
712 dri3_drawable_gc(draw),
713 0, 0, 0, 0, draw->width, draw->height);
714 dri3_fence_trigger(draw->conn, dri3_fake_front_buffer(draw));
715 dri3_fence_await(draw->conn, draw, dri3_fake_front_buffer(draw));
716 }
717
718 void
719 loader_dri3_wait_x(struct loader_dri3_drawable *draw)
720 {
721 struct loader_dri3_buffer *front;
722
723 if (draw == NULL || !draw->have_fake_front)
724 return;
725
726 front = dri3_fake_front_buffer(draw);
727
728 loader_dri3_copy_drawable(draw, front->pixmap, draw->drawable);
729
730 /* In the psc->is_different_gpu case, the linear buffer has been updated,
731 * but not yet the tiled buffer.
732 * Copy back to the tiled buffer we use for rendering.
733 * Note that we don't need flushing.
734 */
735 if (draw->is_different_gpu)
736 (void) loader_dri3_blit_image(draw,
737 front->image,
738 front->linear_buffer,
739 0, 0, front->width, front->height,
740 0, 0, 0);
741 }
742
743 void
744 loader_dri3_wait_gl(struct loader_dri3_drawable *draw)
745 {
746 struct loader_dri3_buffer *front;
747
748 if (draw == NULL || !draw->have_fake_front)
749 return;
750
751 front = dri3_fake_front_buffer(draw);
752
753 /* In the psc->is_different_gpu case, we update the linear_buffer
754 * before updating the real front.
755 */
756 if (draw->is_different_gpu)
757 (void) loader_dri3_blit_image(draw,
758 front->linear_buffer,
759 front->image,
760 0, 0, front->width, front->height,
761 0, 0, __BLIT_FLAG_FLUSH);
762 loader_dri3_swapbuffer_barrier(draw);
763 loader_dri3_copy_drawable(draw, draw->drawable, front->pixmap);
764 }
765
766 /** dri3_flush_present_events
767 *
768 * Process any present events that have been received from the X server
769 */
770 static void
771 dri3_flush_present_events(struct loader_dri3_drawable *draw)
772 {
773 /* Check to see if any configuration changes have occurred
774 * since we were last invoked
775 */
776 if (draw->has_event_waiter)
777 return;
778
779 if (draw->special_event) {
780 xcb_generic_event_t *ev;
781
782 while ((ev = xcb_poll_for_special_event(draw->conn,
783 draw->special_event)) != NULL) {
784 xcb_present_generic_event_t *ge = (void *) ev;
785 dri3_handle_present_event(draw, ge);
786 }
787 }
788 }
789
790 /** loader_dri3_swap_buffers_msc
791 *
792 * Make the current back buffer visible using the present extension
793 */
794 int64_t
795 loader_dri3_swap_buffers_msc(struct loader_dri3_drawable *draw,
796 int64_t target_msc, int64_t divisor,
797 int64_t remainder, unsigned flush_flags,
798 bool force_copy)
799 {
800 struct loader_dri3_buffer *back;
801 int64_t ret = 0;
802 uint32_t options = XCB_PRESENT_OPTION_NONE;
803
804 draw->vtable->flush_drawable(draw, flush_flags);
805
806 back = dri3_find_back_alloc(draw);
807
808 mtx_lock(&draw->mtx);
809 if (draw->is_different_gpu && back) {
810 /* Update the linear buffer before presenting the pixmap */
811 (void) loader_dri3_blit_image(draw,
812 back->linear_buffer,
813 back->image,
814 0, 0, back->width, back->height,
815 0, 0, __BLIT_FLAG_FLUSH);
816 }
817
818 /* If we need to preload the new back buffer, remember the source.
819 * The force_copy parameter is used by EGL to attempt to preserve
820 * the back buffer across a call to this function.
821 */
822 if (draw->swap_method != __DRI_ATTRIB_SWAP_UNDEFINED || force_copy)
823 draw->cur_blit_source = LOADER_DRI3_BACK_ID(draw->cur_back);
824
825 /* Exchange the back and fake front. Even though the server knows about these
826 * buffers, it has no notion of back and fake front.
827 */
828 if (back && draw->have_fake_front) {
829 struct loader_dri3_buffer *tmp;
830
831 tmp = dri3_fake_front_buffer(draw);
832 draw->buffers[LOADER_DRI3_FRONT_ID] = back;
833 draw->buffers[LOADER_DRI3_BACK_ID(draw->cur_back)] = tmp;
834
835 if (draw->swap_method == __DRI_ATTRIB_SWAP_COPY || force_copy)
836 draw->cur_blit_source = LOADER_DRI3_FRONT_ID;
837 }
838
839 dri3_flush_present_events(draw);
840
841 if (back && !draw->is_pixmap) {
842 dri3_fence_reset(draw->conn, back);
843
844 /* Compute when we want the frame shown by taking the last known
845 * successful MSC and adding in a swap interval for each outstanding swap
846 * request. target_msc=divisor=remainder=0 means "Use glXSwapBuffers()
847 * semantic"
848 */
849 ++draw->send_sbc;
850 if (target_msc == 0 && divisor == 0 && remainder == 0)
851 target_msc = draw->msc + draw->swap_interval *
852 (draw->send_sbc - draw->recv_sbc);
853 else if (divisor == 0 && remainder > 0) {
854 /* From the GLX_OML_sync_control spec:
855 * "If <divisor> = 0, the swap will occur when MSC becomes
856 * greater than or equal to <target_msc>."
857 *
858 * Note that there's no mention of the remainder. The Present
859 * extension throws BadValue for remainder != 0 with divisor == 0, so
860 * just drop the passed in value.
861 */
862 remainder = 0;
863 }
864
865 /* From the GLX_EXT_swap_control spec
866 * and the EGL 1.4 spec (page 53):
867 *
868 * "If <interval> is set to a value of 0, buffer swaps are not
869 * synchronized to a video frame."
870 *
871 * Implementation note: It is possible to enable triple buffering
872 * behaviour by not using XCB_PRESENT_OPTION_ASYNC, but this should not be
873 * the default.
874 */
875 if (draw->swap_interval == 0)
876 options |= XCB_PRESENT_OPTION_ASYNC;
877
878 /* If we need to populate the new back, but need to reuse the back
879 * buffer slot due to lack of local blit capabilities, make sure
880 * the server doesn't flip and we deadlock.
881 */
882 if (!loader_dri3_have_image_blit(draw) && draw->cur_blit_source != -1)
883 options |= XCB_PRESENT_OPTION_COPY;
884
885 back->busy = 1;
886 back->last_swap = draw->send_sbc;
887 xcb_present_pixmap(draw->conn,
888 draw->drawable,
889 back->pixmap,
890 (uint32_t) draw->send_sbc,
891 0, /* valid */
892 0, /* update */
893 0, /* x_off */
894 0, /* y_off */
895 None, /* target_crtc */
896 None,
897 back->sync_fence,
898 options,
899 target_msc,
900 divisor,
901 remainder, 0, NULL);
902 ret = (int64_t) draw->send_sbc;
903
904 /* Schedule a server-side back-preserving blit if necessary.
905 * This happens iff all conditions below are satisfied:
906 * a) We have a fake front,
907 * b) We need to preserve the back buffer,
908 * c) We don't have local blit capabilities.
909 */
910 if (!loader_dri3_have_image_blit(draw) && draw->cur_blit_source != -1 &&
911 draw->cur_blit_source != LOADER_DRI3_BACK_ID(draw->cur_back)) {
912 struct loader_dri3_buffer *new_back = dri3_back_buffer(draw);
913 struct loader_dri3_buffer *src = draw->buffers[draw->cur_blit_source];
914
915 dri3_fence_reset(draw->conn, new_back);
916 dri3_copy_area(draw->conn, src->pixmap,
917 new_back->pixmap,
918 dri3_drawable_gc(draw),
919 0, 0, 0, 0, draw->width, draw->height);
920 dri3_fence_trigger(draw->conn, new_back);
921 new_back->last_swap = src->last_swap;
922 }
923
924 xcb_flush(draw->conn);
925 if (draw->stamp)
926 ++(*draw->stamp);
927 }
928 mtx_unlock(&draw->mtx);
929
930 draw->ext->flush->invalidate(draw->dri_drawable);
931
932 return ret;
933 }
934
935 int
936 loader_dri3_query_buffer_age(struct loader_dri3_drawable *draw)
937 {
938 struct loader_dri3_buffer *back = dri3_find_back_alloc(draw);
939 int ret;
940
941 mtx_lock(&draw->mtx);
942 ret = (!back || back->last_swap == 0) ? 0 :
943 draw->send_sbc - back->last_swap + 1;
944 mtx_unlock(&draw->mtx);
945
946 return ret;
947 }
948
949 /** loader_dri3_open
950 *
951 * Wrapper around xcb_dri3_open
952 */
953 int
954 loader_dri3_open(xcb_connection_t *conn,
955 xcb_window_t root,
956 uint32_t provider)
957 {
958 xcb_dri3_open_cookie_t cookie;
959 xcb_dri3_open_reply_t *reply;
960 int fd;
961
962 cookie = xcb_dri3_open(conn,
963 root,
964 provider);
965
966 reply = xcb_dri3_open_reply(conn, cookie, NULL);
967 if (!reply)
968 return -1;
969
970 if (reply->nfd != 1) {
971 free(reply);
972 return -1;
973 }
974
975 fd = xcb_dri3_open_reply_fds(conn, reply)[0];
976 free(reply);
977 fcntl(fd, F_SETFD, fcntl(fd, F_GETFD) | FD_CLOEXEC);
978
979 return fd;
980 }
981
982 static uint32_t
983 dri3_cpp_for_format(uint32_t format) {
984 switch (format) {
985 case __DRI_IMAGE_FORMAT_R8:
986 return 1;
987 case __DRI_IMAGE_FORMAT_RGB565:
988 case __DRI_IMAGE_FORMAT_GR88:
989 return 2;
990 case __DRI_IMAGE_FORMAT_XRGB8888:
991 case __DRI_IMAGE_FORMAT_ARGB8888:
992 case __DRI_IMAGE_FORMAT_ABGR8888:
993 case __DRI_IMAGE_FORMAT_XBGR8888:
994 case __DRI_IMAGE_FORMAT_XRGB2101010:
995 case __DRI_IMAGE_FORMAT_ARGB2101010:
996 case __DRI_IMAGE_FORMAT_SARGB8:
997 return 4;
998 case __DRI_IMAGE_FORMAT_NONE:
999 default:
1000 return 0;
1001 }
1002 }
1003
1004 /* the DRIimage createImage function takes __DRI_IMAGE_FORMAT codes, while
1005 * the createImageFromFds call takes __DRI_IMAGE_FOURCC codes. To avoid
1006 * complete confusion, just deal in __DRI_IMAGE_FORMAT codes for now and
1007 * translate to __DRI_IMAGE_FOURCC codes in the call to createImageFromFds
1008 */
1009 static int
1010 image_format_to_fourcc(int format)
1011 {
1012
1013 /* Convert from __DRI_IMAGE_FORMAT to __DRI_IMAGE_FOURCC (sigh) */
1014 switch (format) {
1015 case __DRI_IMAGE_FORMAT_SARGB8: return __DRI_IMAGE_FOURCC_SARGB8888;
1016 case __DRI_IMAGE_FORMAT_RGB565: return __DRI_IMAGE_FOURCC_RGB565;
1017 case __DRI_IMAGE_FORMAT_XRGB8888: return __DRI_IMAGE_FOURCC_XRGB8888;
1018 case __DRI_IMAGE_FORMAT_ARGB8888: return __DRI_IMAGE_FOURCC_ARGB8888;
1019 case __DRI_IMAGE_FORMAT_ABGR8888: return __DRI_IMAGE_FOURCC_ABGR8888;
1020 case __DRI_IMAGE_FORMAT_XBGR8888: return __DRI_IMAGE_FOURCC_XBGR8888;
1021 }
1022 return 0;
1023 }
1024
1025 /** loader_dri3_alloc_render_buffer
1026 *
1027 * Use the driver createImage function to construct a __DRIimage, then
1028 * get a file descriptor for that and create an X pixmap from that
1029 *
1030 * Allocate an xshmfence for synchronization
1031 */
1032 static struct loader_dri3_buffer *
1033 dri3_alloc_render_buffer(struct loader_dri3_drawable *draw, unsigned int format,
1034 int width, int height, int depth)
1035 {
1036 struct loader_dri3_buffer *buffer;
1037 __DRIimage *pixmap_buffer;
1038 xcb_pixmap_t pixmap;
1039 xcb_sync_fence_t sync_fence;
1040 struct xshmfence *shm_fence;
1041 int buffer_fd, fence_fd;
1042 int stride;
1043
1044 /* Create an xshmfence object and
1045 * prepare to send that to the X server
1046 */
1047
1048 fence_fd = xshmfence_alloc_shm();
1049 if (fence_fd < 0)
1050 return NULL;
1051
1052 shm_fence = xshmfence_map_shm(fence_fd);
1053 if (shm_fence == NULL)
1054 goto no_shm_fence;
1055
1056 /* Allocate the image from the driver
1057 */
1058 buffer = calloc(1, sizeof *buffer);
1059 if (!buffer)
1060 goto no_buffer;
1061
1062 buffer->cpp = dri3_cpp_for_format(format);
1063 if (!buffer->cpp)
1064 goto no_image;
1065
1066 if (!draw->is_different_gpu) {
1067 buffer->image = draw->ext->image->createImage(draw->dri_screen,
1068 width, height,
1069 format,
1070 __DRI_IMAGE_USE_SHARE |
1071 __DRI_IMAGE_USE_SCANOUT |
1072 __DRI_IMAGE_USE_BACKBUFFER,
1073 buffer);
1074 pixmap_buffer = buffer->image;
1075
1076 if (!buffer->image)
1077 goto no_image;
1078 } else {
1079 buffer->image = draw->ext->image->createImage(draw->dri_screen,
1080 width, height,
1081 format,
1082 0,
1083 buffer);
1084
1085 if (!buffer->image)
1086 goto no_image;
1087
1088 buffer->linear_buffer =
1089 draw->ext->image->createImage(draw->dri_screen,
1090 width, height, format,
1091 __DRI_IMAGE_USE_SHARE |
1092 __DRI_IMAGE_USE_LINEAR |
1093 __DRI_IMAGE_USE_BACKBUFFER,
1094 buffer);
1095 pixmap_buffer = buffer->linear_buffer;
1096
1097 if (!buffer->linear_buffer)
1098 goto no_linear_buffer;
1099 }
1100
1101 /* X wants the stride, so ask the image for it
1102 */
1103 if (!draw->ext->image->queryImage(pixmap_buffer, __DRI_IMAGE_ATTRIB_STRIDE,
1104 &stride))
1105 goto no_buffer_attrib;
1106
1107 buffer->pitch = stride;
1108
1109 if (!draw->ext->image->queryImage(pixmap_buffer, __DRI_IMAGE_ATTRIB_FD,
1110 &buffer_fd))
1111 goto no_buffer_attrib;
1112
1113 xcb_dri3_pixmap_from_buffer(draw->conn,
1114 (pixmap = xcb_generate_id(draw->conn)),
1115 draw->drawable,
1116 buffer->size,
1117 width, height, buffer->pitch,
1118 depth, buffer->cpp * 8,
1119 buffer_fd);
1120
1121 xcb_dri3_fence_from_fd(draw->conn,
1122 pixmap,
1123 (sync_fence = xcb_generate_id(draw->conn)),
1124 false,
1125 fence_fd);
1126
1127 buffer->pixmap = pixmap;
1128 buffer->own_pixmap = true;
1129 buffer->sync_fence = sync_fence;
1130 buffer->shm_fence = shm_fence;
1131 buffer->width = width;
1132 buffer->height = height;
1133
1134 /* Mark the buffer as idle
1135 */
1136 dri3_fence_set(buffer);
1137
1138 return buffer;
1139
1140 no_buffer_attrib:
1141 draw->ext->image->destroyImage(pixmap_buffer);
1142 no_linear_buffer:
1143 if (draw->is_different_gpu)
1144 draw->ext->image->destroyImage(buffer->image);
1145 no_image:
1146 free(buffer);
1147 no_buffer:
1148 xshmfence_unmap_shm(shm_fence);
1149 no_shm_fence:
1150 close(fence_fd);
1151 return NULL;
1152 }
1153
1154 /** loader_dri3_update_drawable
1155 *
1156 * Called the first time we use the drawable and then
1157 * after we receive present configure notify events to
1158 * track the geometry of the drawable
1159 */
1160 static int
1161 dri3_update_drawable(__DRIdrawable *driDrawable,
1162 struct loader_dri3_drawable *draw)
1163 {
1164 mtx_lock(&draw->mtx);
1165 if (draw->first_init) {
1166 xcb_get_geometry_cookie_t geom_cookie;
1167 xcb_get_geometry_reply_t *geom_reply;
1168 xcb_void_cookie_t cookie;
1169 xcb_generic_error_t *error;
1170 xcb_present_query_capabilities_cookie_t present_capabilities_cookie;
1171 xcb_present_query_capabilities_reply_t *present_capabilities_reply;
1172
1173 draw->first_init = false;
1174
1175 /* Try to select for input on the window.
1176 *
1177 * If the drawable is a window, this will get our events
1178 * delivered.
1179 *
1180 * Otherwise, we'll get a BadWindow error back from this request which
1181 * will let us know that the drawable is a pixmap instead.
1182 */
1183
1184 draw->eid = xcb_generate_id(draw->conn);
1185 cookie =
1186 xcb_present_select_input_checked(draw->conn, draw->eid, draw->drawable,
1187 XCB_PRESENT_EVENT_MASK_CONFIGURE_NOTIFY |
1188 XCB_PRESENT_EVENT_MASK_COMPLETE_NOTIFY |
1189 XCB_PRESENT_EVENT_MASK_IDLE_NOTIFY);
1190
1191 present_capabilities_cookie =
1192 xcb_present_query_capabilities(draw->conn, draw->drawable);
1193
1194 /* Create an XCB event queue to hold present events outside of the usual
1195 * application event queue
1196 */
1197 draw->special_event = xcb_register_for_special_xge(draw->conn,
1198 &xcb_present_id,
1199 draw->eid,
1200 draw->stamp);
1201 geom_cookie = xcb_get_geometry(draw->conn, draw->drawable);
1202
1203 geom_reply = xcb_get_geometry_reply(draw->conn, geom_cookie, NULL);
1204
1205 if (!geom_reply) {
1206 mtx_unlock(&draw->mtx);
1207 return false;
1208 }
1209
1210 draw->width = geom_reply->width;
1211 draw->height = geom_reply->height;
1212 draw->depth = geom_reply->depth;
1213 draw->vtable->set_drawable_size(draw, draw->width, draw->height);
1214
1215 free(geom_reply);
1216
1217 draw->is_pixmap = false;
1218
1219 /* Check to see if our select input call failed. If it failed with a
1220 * BadWindow error, then assume the drawable is a pixmap. Destroy the
1221 * special event queue created above and mark the drawable as a pixmap
1222 */
1223
1224 error = xcb_request_check(draw->conn, cookie);
1225
1226 present_capabilities_reply =
1227 xcb_present_query_capabilities_reply(draw->conn,
1228 present_capabilities_cookie,
1229 NULL);
1230
1231 if (present_capabilities_reply) {
1232 draw->present_capabilities = present_capabilities_reply->capabilities;
1233 free(present_capabilities_reply);
1234 } else
1235 draw->present_capabilities = 0;
1236
1237 if (error) {
1238 if (error->error_code != BadWindow) {
1239 free(error);
1240 mtx_unlock(&draw->mtx);
1241 return false;
1242 }
1243 draw->is_pixmap = true;
1244 xcb_unregister_for_special_event(draw->conn, draw->special_event);
1245 draw->special_event = NULL;
1246 }
1247 }
1248 dri3_flush_present_events(draw);
1249 mtx_unlock(&draw->mtx);
1250 return true;
1251 }
1252
1253 __DRIimage *
1254 loader_dri3_create_image(xcb_connection_t *c,
1255 xcb_dri3_buffer_from_pixmap_reply_t *bp_reply,
1256 unsigned int format,
1257 __DRIscreen *dri_screen,
1258 const __DRIimageExtension *image,
1259 void *loaderPrivate)
1260 {
1261 int *fds;
1262 __DRIimage *image_planar, *ret;
1263 int stride, offset;
1264
1265 /* Get an FD for the pixmap object
1266 */
1267 fds = xcb_dri3_buffer_from_pixmap_reply_fds(c, bp_reply);
1268
1269 stride = bp_reply->stride;
1270 offset = 0;
1271
1272 /* createImageFromFds creates a wrapper __DRIimage structure which
1273 * can deal with multiple planes for things like Yuv images. So, once
1274 * we've gotten the planar wrapper, pull the single plane out of it and
1275 * discard the wrapper.
1276 */
1277 image_planar = image->createImageFromFds(dri_screen,
1278 bp_reply->width,
1279 bp_reply->height,
1280 image_format_to_fourcc(format),
1281 fds, 1,
1282 &stride, &offset, loaderPrivate);
1283 close(fds[0]);
1284 if (!image_planar)
1285 return NULL;
1286
1287 ret = image->fromPlanar(image_planar, 0, loaderPrivate);
1288
1289 image->destroyImage(image_planar);
1290
1291 return ret;
1292 }
1293
1294 /** dri3_get_pixmap_buffer
1295 *
1296 * Get the DRM object for a pixmap from the X server and
1297 * wrap that with a __DRIimage structure using createImageFromFds
1298 */
1299 static struct loader_dri3_buffer *
1300 dri3_get_pixmap_buffer(__DRIdrawable *driDrawable, unsigned int format,
1301 enum loader_dri3_buffer_type buffer_type,
1302 struct loader_dri3_drawable *draw)
1303 {
1304 int buf_id = loader_dri3_pixmap_buf_id(buffer_type);
1305 struct loader_dri3_buffer *buffer = draw->buffers[buf_id];
1306 xcb_drawable_t pixmap;
1307 xcb_dri3_buffer_from_pixmap_cookie_t bp_cookie;
1308 xcb_dri3_buffer_from_pixmap_reply_t *bp_reply;
1309 xcb_sync_fence_t sync_fence;
1310 struct xshmfence *shm_fence;
1311 int fence_fd;
1312
1313 if (buffer)
1314 return buffer;
1315
1316 pixmap = draw->drawable;
1317
1318 buffer = calloc(1, sizeof *buffer);
1319 if (!buffer)
1320 goto no_buffer;
1321
1322 fence_fd = xshmfence_alloc_shm();
1323 if (fence_fd < 0)
1324 goto no_fence;
1325 shm_fence = xshmfence_map_shm(fence_fd);
1326 if (shm_fence == NULL) {
1327 close (fence_fd);
1328 goto no_fence;
1329 }
1330
1331 xcb_dri3_fence_from_fd(draw->conn,
1332 pixmap,
1333 (sync_fence = xcb_generate_id(draw->conn)),
1334 false,
1335 fence_fd);
1336
1337 bp_cookie = xcb_dri3_buffer_from_pixmap(draw->conn, pixmap);
1338 bp_reply = xcb_dri3_buffer_from_pixmap_reply(draw->conn, bp_cookie, NULL);
1339 if (!bp_reply)
1340 goto no_image;
1341
1342 buffer->image = loader_dri3_create_image(draw->conn, bp_reply, format,
1343 draw->dri_screen, draw->ext->image,
1344 buffer);
1345 if (!buffer->image)
1346 goto no_image;
1347
1348 buffer->pixmap = pixmap;
1349 buffer->own_pixmap = false;
1350 buffer->width = bp_reply->width;
1351 buffer->height = bp_reply->height;
1352 buffer->shm_fence = shm_fence;
1353 buffer->sync_fence = sync_fence;
1354
1355 draw->buffers[buf_id] = buffer;
1356
1357 free(bp_reply);
1358
1359 return buffer;
1360
1361 no_image:
1362 free(bp_reply);
1363 xcb_sync_destroy_fence(draw->conn, sync_fence);
1364 xshmfence_unmap_shm(shm_fence);
1365 no_fence:
1366 free(buffer);
1367 no_buffer:
1368 return NULL;
1369 }
1370
1371 /** dri3_get_buffer
1372 *
1373 * Find a front or back buffer, allocating new ones as necessary
1374 */
1375 static struct loader_dri3_buffer *
1376 dri3_get_buffer(__DRIdrawable *driDrawable,
1377 unsigned int format,
1378 enum loader_dri3_buffer_type buffer_type,
1379 struct loader_dri3_drawable *draw)
1380 {
1381 struct loader_dri3_buffer *buffer;
1382 int buf_id;
1383
1384 if (buffer_type == loader_dri3_buffer_back) {
1385 draw->back_format = format;
1386
1387 buf_id = dri3_find_back(draw);
1388
1389 if (buf_id < 0)
1390 return NULL;
1391 } else {
1392 buf_id = LOADER_DRI3_FRONT_ID;
1393 }
1394
1395 buffer = draw->buffers[buf_id];
1396
1397 /* Allocate a new buffer if there isn't an old one, or if that
1398 * old one is the wrong size
1399 */
1400 if (!buffer || buffer->width != draw->width ||
1401 buffer->height != draw->height) {
1402 struct loader_dri3_buffer *new_buffer;
1403
1404 /* Allocate the new buffers
1405 */
1406 new_buffer = dri3_alloc_render_buffer(draw,
1407 format,
1408 draw->width,
1409 draw->height,
1410 draw->depth);
1411 if (!new_buffer)
1412 return NULL;
1413
1414 /* When resizing, copy the contents of the old buffer, waiting for that
1415 * copy to complete using our fences before proceeding
1416 */
1417 if ((buffer_type == loader_dri3_buffer_back ||
1418 (buffer_type == loader_dri3_buffer_front && draw->have_fake_front))
1419 && buffer) {
1420
1421 /* Fill the new buffer with data from an old buffer */
1422 dri3_fence_await(draw->conn, draw, buffer);
1423 if (!loader_dri3_blit_image(draw,
1424 new_buffer->image,
1425 buffer->image,
1426 0, 0, draw->width, draw->height,
1427 0, 0, 0) &&
1428 !buffer->linear_buffer) {
1429 dri3_fence_reset(draw->conn, new_buffer);
1430 dri3_copy_area(draw->conn,
1431 buffer->pixmap,
1432 new_buffer->pixmap,
1433 dri3_drawable_gc(draw),
1434 0, 0, 0, 0,
1435 draw->width, draw->height);
1436 dri3_fence_trigger(draw->conn, new_buffer);
1437 }
1438 dri3_free_render_buffer(draw, buffer);
1439 } else if (buffer_type == loader_dri3_buffer_front) {
1440 /* Fill the new fake front with data from a real front */
1441 loader_dri3_swapbuffer_barrier(draw);
1442 dri3_fence_reset(draw->conn, new_buffer);
1443 dri3_copy_area(draw->conn,
1444 draw->drawable,
1445 new_buffer->pixmap,
1446 dri3_drawable_gc(draw),
1447 0, 0, 0, 0,
1448 draw->width, draw->height);
1449 dri3_fence_trigger(draw->conn, new_buffer);
1450
1451 if (new_buffer->linear_buffer) {
1452 dri3_fence_await(draw->conn, draw, new_buffer);
1453 (void) loader_dri3_blit_image(draw,
1454 new_buffer->image,
1455 new_buffer->linear_buffer,
1456 0, 0, draw->width, draw->height,
1457 0, 0, 0);
1458 }
1459 }
1460 buffer = new_buffer;
1461 draw->buffers[buf_id] = buffer;
1462 }
1463 dri3_fence_await(draw->conn, draw, buffer);
1464
1465 /*
1466 * Do we need to preserve the content of a previous buffer?
1467 *
1468 * Note that this blit is needed only to avoid a wait for a buffer that
1469 * is currently in the flip chain or being scanned out from. That's really
1470 * a tradeoff. If we're ok with the wait we can reduce the number of back
1471 * buffers to 1 for SWAP_EXCHANGE, and 1 for SWAP_COPY,
1472 * but in the latter case we must disallow page-flipping.
1473 */
1474 if (buffer_type == loader_dri3_buffer_back &&
1475 draw->cur_blit_source != -1 &&
1476 draw->buffers[draw->cur_blit_source] &&
1477 buffer != draw->buffers[draw->cur_blit_source]) {
1478
1479 struct loader_dri3_buffer *source = draw->buffers[draw->cur_blit_source];
1480
1481 /* Avoid flushing here. Will propably do good for tiling hardware. */
1482 (void) loader_dri3_blit_image(draw,
1483 buffer->image,
1484 source->image,
1485 0, 0, draw->width, draw->height,
1486 0, 0, 0);
1487 buffer->last_swap = source->last_swap;
1488 draw->cur_blit_source = -1;
1489 }
1490 /* Return the requested buffer */
1491 return buffer;
1492 }
1493
1494 /** dri3_free_buffers
1495 *
1496 * Free the front bufffer or all of the back buffers. Used
1497 * when the application changes which buffers it needs
1498 */
1499 static void
1500 dri3_free_buffers(__DRIdrawable *driDrawable,
1501 enum loader_dri3_buffer_type buffer_type,
1502 struct loader_dri3_drawable *draw)
1503 {
1504 struct loader_dri3_buffer *buffer;
1505 int first_id;
1506 int n_id;
1507 int buf_id;
1508
1509 switch (buffer_type) {
1510 case loader_dri3_buffer_back:
1511 first_id = LOADER_DRI3_BACK_ID(0);
1512 n_id = LOADER_DRI3_MAX_BACK;
1513 draw->cur_blit_source = -1;
1514 break;
1515 case loader_dri3_buffer_front:
1516 first_id = LOADER_DRI3_FRONT_ID;
1517 /* Don't free a fake front holding new backbuffer content. */
1518 n_id = (draw->cur_blit_source == LOADER_DRI3_FRONT_ID) ? 0 : 1;
1519 }
1520
1521 for (buf_id = first_id; buf_id < first_id + n_id; buf_id++) {
1522 buffer = draw->buffers[buf_id];
1523 if (buffer) {
1524 dri3_free_render_buffer(draw, buffer);
1525 draw->buffers[buf_id] = NULL;
1526 }
1527 }
1528 }
1529
1530 /** loader_dri3_get_buffers
1531 *
1532 * The published buffer allocation API.
1533 * Returns all of the necessary buffers, allocating
1534 * as needed.
1535 */
1536 int
1537 loader_dri3_get_buffers(__DRIdrawable *driDrawable,
1538 unsigned int format,
1539 uint32_t *stamp,
1540 void *loaderPrivate,
1541 uint32_t buffer_mask,
1542 struct __DRIimageList *buffers)
1543 {
1544 struct loader_dri3_drawable *draw = loaderPrivate;
1545 struct loader_dri3_buffer *front, *back;
1546
1547 buffers->image_mask = 0;
1548 buffers->front = NULL;
1549 buffers->back = NULL;
1550
1551 front = NULL;
1552 back = NULL;
1553
1554 if (!dri3_update_drawable(driDrawable, draw))
1555 return false;
1556
1557 /* pixmaps always have front buffers.
1558 * Exchange swaps also mandate fake front buffers.
1559 */
1560 if (draw->is_pixmap || draw->swap_method == __DRI_ATTRIB_SWAP_EXCHANGE)
1561 buffer_mask |= __DRI_IMAGE_BUFFER_FRONT;
1562
1563 if (buffer_mask & __DRI_IMAGE_BUFFER_FRONT) {
1564 /* All pixmaps are owned by the server gpu.
1565 * When we use a different gpu, we can't use the pixmap
1566 * as buffer since it is potentially tiled a way
1567 * our device can't understand. In this case, use
1568 * a fake front buffer. Hopefully the pixmap
1569 * content will get synced with the fake front
1570 * buffer.
1571 */
1572 if (draw->is_pixmap && !draw->is_different_gpu)
1573 front = dri3_get_pixmap_buffer(driDrawable,
1574 format,
1575 loader_dri3_buffer_front,
1576 draw);
1577 else
1578 front = dri3_get_buffer(driDrawable,
1579 format,
1580 loader_dri3_buffer_front,
1581 draw);
1582
1583 if (!front)
1584 return false;
1585 } else {
1586 dri3_free_buffers(driDrawable, loader_dri3_buffer_front, draw);
1587 draw->have_fake_front = 0;
1588 }
1589
1590 if (buffer_mask & __DRI_IMAGE_BUFFER_BACK) {
1591 back = dri3_get_buffer(driDrawable,
1592 format,
1593 loader_dri3_buffer_back,
1594 draw);
1595 if (!back)
1596 return false;
1597 draw->have_back = 1;
1598 } else {
1599 dri3_free_buffers(driDrawable, loader_dri3_buffer_back, draw);
1600 draw->have_back = 0;
1601 }
1602
1603 if (front) {
1604 buffers->image_mask |= __DRI_IMAGE_BUFFER_FRONT;
1605 buffers->front = front->image;
1606 draw->have_fake_front = draw->is_different_gpu || !draw->is_pixmap;
1607 }
1608
1609 if (back) {
1610 buffers->image_mask |= __DRI_IMAGE_BUFFER_BACK;
1611 buffers->back = back->image;
1612 }
1613
1614 draw->stamp = stamp;
1615
1616 return true;
1617 }
1618
1619 /** loader_dri3_update_drawable_geometry
1620 *
1621 * Get the current drawable geometry.
1622 */
1623 void
1624 loader_dri3_update_drawable_geometry(struct loader_dri3_drawable *draw)
1625 {
1626 xcb_get_geometry_cookie_t geom_cookie;
1627 xcb_get_geometry_reply_t *geom_reply;
1628
1629 geom_cookie = xcb_get_geometry(draw->conn, draw->drawable);
1630
1631 geom_reply = xcb_get_geometry_reply(draw->conn, geom_cookie, NULL);
1632
1633 if (geom_reply) {
1634 draw->width = geom_reply->width;
1635 draw->height = geom_reply->height;
1636 draw->vtable->set_drawable_size(draw, draw->width, draw->height);
1637 draw->ext->flush->invalidate(draw->dri_drawable);
1638
1639 free(geom_reply);
1640 }
1641 }
1642
1643
1644 /**
1645 * Make sure the server has flushed all pending swap buffers to hardware
1646 * for this drawable. Ideally we'd want to send an X protocol request to
1647 * have the server block our connection until the swaps are complete. That
1648 * would avoid the potential round-trip here.
1649 */
1650 void
1651 loader_dri3_swapbuffer_barrier(struct loader_dri3_drawable *draw)
1652 {
1653 int64_t ust, msc, sbc;
1654
1655 (void) loader_dri3_wait_for_sbc(draw, 0, &ust, &msc, &sbc);
1656 }
1657
1658 /**
1659 * Perform any cleanup associated with a close screen operation.
1660 * \param dri_screen[in,out] Pointer to __DRIscreen about to be closed.
1661 *
1662 * This function destroys the screen's cached swap context if any.
1663 */
1664 void
1665 loader_dri3_close_screen(__DRIscreen *dri_screen)
1666 {
1667 mtx_lock(&blit_context.mtx);
1668 if (blit_context.ctx && blit_context.cur_screen == dri_screen) {
1669 blit_context.core->destroyContext(blit_context.ctx);
1670 blit_context.ctx = NULL;
1671 }
1672 mtx_unlock(&blit_context.mtx);
1673 }
1674
1675 /**
1676 * Find a backbuffer slot - potentially allocating a back buffer
1677 *
1678 * \param draw[in,out] Pointer to the drawable for which to find back.
1679 * \return Pointer to a new back buffer or NULL if allocation failed or was
1680 * not mandated.
1681 *
1682 * Find a potentially new back buffer, and if it's not been allocated yet and
1683 * in addition needs initializing, then try to allocate and initialize it.
1684 */
1685 #include <stdio.h>
1686 static struct loader_dri3_buffer *
1687 dri3_find_back_alloc(struct loader_dri3_drawable *draw)
1688 {
1689 struct loader_dri3_buffer *back;
1690 int id;
1691
1692 id = dri3_find_back(draw);
1693 if (id < 0)
1694 return NULL;
1695
1696 back = draw->buffers[id];
1697 /* Allocate a new back if we haven't got one */
1698 if (!back && draw->back_format != __DRI_IMAGE_FORMAT_NONE &&
1699 dri3_update_drawable(draw->dri_drawable, draw))
1700 back = dri3_alloc_render_buffer(draw, draw->back_format,
1701 draw->width, draw->height, draw->depth);
1702
1703 if (!back)
1704 return NULL;
1705
1706 draw->buffers[id] = back;
1707
1708 /* If necessary, prefill the back with data according to swap_method mode. */
1709 if (draw->cur_blit_source != -1 &&
1710 draw->buffers[draw->cur_blit_source] &&
1711 back != draw->buffers[draw->cur_blit_source]) {
1712 struct loader_dri3_buffer *source = draw->buffers[draw->cur_blit_source];
1713
1714 dri3_fence_await(draw->conn, draw, source);
1715 dri3_fence_await(draw->conn, draw, back);
1716 (void) loader_dri3_blit_image(draw,
1717 back->image,
1718 source->image,
1719 0, 0, draw->width, draw->height,
1720 0, 0, 0);
1721 back->last_swap = source->last_swap;
1722 draw->cur_blit_source = -1;
1723 }
1724
1725 return back;
1726 }