egl/wayland: Fix zwp_linux_dmabuf usage
[mesa.git] / src / egl / drivers / dri2 / platform_wayland.c
1 /*
2 * Copyright © 2011-2012 Intel Corporation
3 * Copyright © 2012 Collabora, Ltd.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
14 * Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
20 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
21 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23 * DEALINGS IN THE SOFTWARE.
24 *
25 * Authors:
26 * Kristian Høgsberg <krh@bitplanet.net>
27 * Benjamin Franzke <benjaminfranzke@googlemail.com>
28 */
29
30 #include <stdint.h>
31 #include <stdlib.h>
32 #include <string.h>
33 #include <limits.h>
34 #include <dlfcn.h>
35 #include <errno.h>
36 #include <unistd.h>
37 #include <fcntl.h>
38 #include <xf86drm.h>
39 #include "drm-uapi/drm_fourcc.h"
40 #include <sys/mman.h>
41
42 #include "egl_dri2.h"
43 #include "egl_dri2_fallbacks.h"
44 #include "loader.h"
45 #include "util/u_vector.h"
46 #include "util/anon_file.h"
47 #include "eglglobals.h"
48
49 #include <wayland-egl-backend.h>
50 #include <wayland-client.h>
51 #include "wayland-drm-client-protocol.h"
52 #include "linux-dmabuf-unstable-v1-client-protocol.h"
53
54 /* cheesy workaround until wayland 1.18 is released */
55 #if WAYLAND_VERSION_MAJOR > 1 || \
56 (WAYLAND_VERSION_MAJOR == 1 && WAYLAND_VERSION_MINOR < 18)
57 #define WL_SHM_FORMAT_ABGR16161616F 0x48344241
58 #define WL_SHM_FORMAT_XBGR16161616F 0x48344258
59 #endif
60
61 /*
62 * The index of entries in this table is used as a bitmask in
63 * dri2_dpy->formats, which tracks the formats supported by our server.
64 */
65 static const struct dri2_wl_visual {
66 const char *format_name;
67 uint32_t wl_drm_format;
68 uint32_t wl_shm_format;
69 int dri_image_format;
70 /* alt_dri_image_format is a substitute wl_buffer format to use for a
71 * wl-server unsupported dri_image_format, ie. some other dri_image_format in
72 * the table, of the same precision but with different channel ordering, or
73 * __DRI_IMAGE_FORMAT_NONE if an alternate format is not needed or supported.
74 * The code checks if alt_dri_image_format can be used as a fallback for a
75 * dri_image_format for a given wl-server implementation.
76 */
77 int alt_dri_image_format;
78 int bpp;
79 int rgba_shifts[4];
80 unsigned int rgba_sizes[4];
81 } dri2_wl_visuals[] = {
82 {
83 "ABGR16F",
84 WL_DRM_FORMAT_ABGR16F, WL_SHM_FORMAT_ABGR16161616F,
85 __DRI_IMAGE_FORMAT_ABGR16161616F, 0, 64,
86 { 0, 16, 32, 48 },
87 { 16, 16, 16, 16 },
88 },
89 {
90 "XBGR16F",
91 WL_DRM_FORMAT_XBGR16F, WL_SHM_FORMAT_XBGR16161616F,
92 __DRI_IMAGE_FORMAT_XBGR16161616F, 0, 64,
93 { 0, 16, 32, -1 },
94 { 16, 16, 16, 0 },
95 },
96 {
97 "XRGB2101010",
98 WL_DRM_FORMAT_XRGB2101010, WL_SHM_FORMAT_XRGB2101010,
99 __DRI_IMAGE_FORMAT_XRGB2101010, __DRI_IMAGE_FORMAT_XBGR2101010, 32,
100 { 20, 10, 0, -1 },
101 { 10, 10, 10, 0 },
102 },
103 {
104 "ARGB2101010",
105 WL_DRM_FORMAT_ARGB2101010, WL_SHM_FORMAT_ARGB2101010,
106 __DRI_IMAGE_FORMAT_ARGB2101010, __DRI_IMAGE_FORMAT_ABGR2101010, 32,
107 { 20, 10, 0, 30 },
108 { 10, 10, 10, 2 },
109 },
110 {
111 "XBGR2101010",
112 WL_DRM_FORMAT_XBGR2101010, WL_SHM_FORMAT_XBGR2101010,
113 __DRI_IMAGE_FORMAT_XBGR2101010, __DRI_IMAGE_FORMAT_XRGB2101010, 32,
114 { 0, 10, 20, -1 },
115 { 10, 10, 10, 0 },
116 },
117 {
118 "ABGR2101010",
119 WL_DRM_FORMAT_ABGR2101010, WL_SHM_FORMAT_ABGR2101010,
120 __DRI_IMAGE_FORMAT_ABGR2101010, __DRI_IMAGE_FORMAT_ARGB2101010, 32,
121 { 0, 10, 20, 30 },
122 { 10, 10, 10, 2 },
123 },
124 {
125 "XRGB8888",
126 WL_DRM_FORMAT_XRGB8888, WL_SHM_FORMAT_XRGB8888,
127 __DRI_IMAGE_FORMAT_XRGB8888, __DRI_IMAGE_FORMAT_NONE, 32,
128 { 16, 8, 0, -1 },
129 { 8, 8, 8, 0 },
130 },
131 {
132 "ARGB8888",
133 WL_DRM_FORMAT_ARGB8888, WL_SHM_FORMAT_ARGB8888,
134 __DRI_IMAGE_FORMAT_ARGB8888, __DRI_IMAGE_FORMAT_NONE, 32,
135 { 16, 8, 0, 24 },
136 { 8, 8, 8, 8 },
137 },
138 {
139 "RGB565",
140 WL_DRM_FORMAT_RGB565, WL_SHM_FORMAT_RGB565,
141 __DRI_IMAGE_FORMAT_RGB565, __DRI_IMAGE_FORMAT_NONE, 16,
142 { 11, 5, 0, -1 },
143 { 5, 6, 5, 0 },
144 },
145 };
146
147 static_assert(ARRAY_SIZE(dri2_wl_visuals) <= EGL_DRI2_MAX_FORMATS,
148 "dri2_egl_display::formats is not large enough for "
149 "the formats in dri2_wl_visuals");
150
151 static int
152 dri2_wl_visual_idx_from_config(struct dri2_egl_display *dri2_dpy,
153 const __DRIconfig *config)
154 {
155 int shifts[4];
156 unsigned int sizes[4];
157
158 dri2_get_shifts_and_sizes(dri2_dpy->core, config, shifts, sizes);
159
160 for (unsigned int i = 0; i < ARRAY_SIZE(dri2_wl_visuals); i++) {
161 const struct dri2_wl_visual *wl_visual = &dri2_wl_visuals[i];
162
163 if (shifts[0] == wl_visual->rgba_shifts[0] &&
164 shifts[1] == wl_visual->rgba_shifts[1] &&
165 shifts[2] == wl_visual->rgba_shifts[2] &&
166 shifts[3] == wl_visual->rgba_shifts[3] &&
167 sizes[0] == wl_visual->rgba_sizes[0] &&
168 sizes[1] == wl_visual->rgba_sizes[1] &&
169 sizes[2] == wl_visual->rgba_sizes[2] &&
170 sizes[3] == wl_visual->rgba_sizes[3]) {
171 return i;
172 }
173 }
174
175 return -1;
176 }
177
178 static int
179 dri2_wl_visual_idx_from_fourcc(uint32_t fourcc)
180 {
181 for (int i = 0; i < ARRAY_SIZE(dri2_wl_visuals); i++) {
182 /* wl_drm format codes overlap with DRIImage FourCC codes for all formats
183 * we support. */
184 if (dri2_wl_visuals[i].wl_drm_format == fourcc)
185 return i;
186 }
187
188 return -1;
189 }
190
191 static int
192 dri2_wl_visual_idx_from_dri_image_format(uint32_t dri_image_format)
193 {
194 for (int i = 0; i < ARRAY_SIZE(dri2_wl_visuals); i++) {
195 if (dri2_wl_visuals[i].dri_image_format == dri_image_format)
196 return i;
197 }
198
199 return -1;
200 }
201
202 static int
203 dri2_wl_visual_idx_from_shm_format(uint32_t shm_format)
204 {
205 for (int i = 0; i < ARRAY_SIZE(dri2_wl_visuals); i++) {
206 if (dri2_wl_visuals[i].wl_shm_format == shm_format)
207 return i;
208 }
209
210 return -1;
211 }
212
213 bool
214 dri2_wl_is_format_supported(void* user_data, uint32_t format)
215 {
216 _EGLDisplay *disp = (_EGLDisplay *) user_data;
217 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
218 int j = dri2_wl_visual_idx_from_fourcc(format);
219
220 if (j == -1)
221 return false;
222
223 for (int i = 0; dri2_dpy->driver_configs[i]; i++)
224 if (j == dri2_wl_visual_idx_from_config(dri2_dpy,
225 dri2_dpy->driver_configs[i]))
226 return true;
227
228 return false;
229 }
230
231 static int
232 roundtrip(struct dri2_egl_display *dri2_dpy)
233 {
234 return wl_display_roundtrip_queue(dri2_dpy->wl_dpy, dri2_dpy->wl_queue);
235 }
236
237 static void
238 wl_buffer_release(void *data, struct wl_buffer *buffer)
239 {
240 struct dri2_egl_surface *dri2_surf = data;
241 int i;
242
243 for (i = 0; i < ARRAY_SIZE(dri2_surf->color_buffers); ++i)
244 if (dri2_surf->color_buffers[i].wl_buffer == buffer)
245 break;
246
247 assert (i < ARRAY_SIZE(dri2_surf->color_buffers));
248
249 if (dri2_surf->color_buffers[i].wl_release) {
250 wl_buffer_destroy(buffer);
251 dri2_surf->color_buffers[i].wl_release = false;
252 dri2_surf->color_buffers[i].wl_buffer = NULL;
253 }
254
255 dri2_surf->color_buffers[i].locked = false;
256 }
257
258 static const struct wl_buffer_listener wl_buffer_listener = {
259 .release = wl_buffer_release
260 };
261
262 static void
263 resize_callback(struct wl_egl_window *wl_win, void *data)
264 {
265 struct dri2_egl_surface *dri2_surf = data;
266 struct dri2_egl_display *dri2_dpy =
267 dri2_egl_display(dri2_surf->base.Resource.Display);
268
269 if (dri2_surf->base.Width == wl_win->width &&
270 dri2_surf->base.Height == wl_win->height)
271 return;
272
273 /* Update the surface size as soon as native window is resized; from user
274 * pov, this makes the effect that resize is done immediately after native
275 * window resize, without requiring to wait until the first draw.
276 *
277 * A more detailed and lengthy explanation can be found at
278 * https://lists.freedesktop.org/archives/mesa-dev/2018-June/196474.html
279 */
280 if (!dri2_surf->back) {
281 dri2_surf->base.Width = wl_win->width;
282 dri2_surf->base.Height = wl_win->height;
283 }
284 dri2_dpy->flush->invalidate(dri2_surf->dri_drawable);
285 }
286
287 static void
288 destroy_window_callback(void *data)
289 {
290 struct dri2_egl_surface *dri2_surf = data;
291 dri2_surf->wl_win = NULL;
292 }
293
294 static struct wl_surface *
295 get_wl_surface_proxy(struct wl_egl_window *window)
296 {
297 /* Version 3 of wl_egl_window introduced a version field at the same
298 * location where a pointer to wl_surface was stored. Thus, if
299 * window->version is dereferenceable, we've been given an older version of
300 * wl_egl_window, and window->version points to wl_surface */
301 if (_eglPointerIsDereferencable((void *)(window->version))) {
302 return wl_proxy_create_wrapper((void *)(window->version));
303 }
304 return wl_proxy_create_wrapper(window->surface);
305 }
306
307 /**
308 * Called via eglCreateWindowSurface(), drv->API.CreateWindowSurface().
309 */
310 static _EGLSurface *
311 dri2_wl_create_window_surface(_EGLDriver *drv, _EGLDisplay *disp,
312 _EGLConfig *conf, void *native_window,
313 const EGLint *attrib_list)
314 {
315 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
316 struct dri2_egl_config *dri2_conf = dri2_egl_config(conf);
317 struct wl_egl_window *window = native_window;
318 struct dri2_egl_surface *dri2_surf;
319 int visual_idx;
320 const __DRIconfig *config;
321
322 dri2_surf = calloc(1, sizeof *dri2_surf);
323 if (!dri2_surf) {
324 _eglError(EGL_BAD_ALLOC, "dri2_create_surface");
325 return NULL;
326 }
327
328 if (!dri2_init_surface(&dri2_surf->base, disp, EGL_WINDOW_BIT, conf,
329 attrib_list, false, native_window))
330 goto cleanup_surf;
331
332 config = dri2_get_dri_config(dri2_conf, EGL_WINDOW_BIT,
333 dri2_surf->base.GLColorspace);
334
335 if (!config) {
336 _eglError(EGL_BAD_MATCH, "Unsupported surfacetype/colorspace configuration");
337 goto cleanup_surf;
338 }
339
340 dri2_surf->base.Width = window->width;
341 dri2_surf->base.Height = window->height;
342
343 visual_idx = dri2_wl_visual_idx_from_config(dri2_dpy, config);
344 assert(visual_idx != -1);
345
346 if (dri2_dpy->wl_dmabuf || dri2_dpy->wl_drm) {
347 dri2_surf->format = dri2_wl_visuals[visual_idx].wl_drm_format;
348 } else {
349 assert(dri2_dpy->wl_shm);
350 dri2_surf->format = dri2_wl_visuals[visual_idx].wl_shm_format;
351 }
352
353 dri2_surf->wl_queue = wl_display_create_queue(dri2_dpy->wl_dpy);
354 if (!dri2_surf->wl_queue) {
355 _eglError(EGL_BAD_ALLOC, "dri2_create_surface");
356 goto cleanup_surf;
357 }
358
359 if (dri2_dpy->wl_drm) {
360 dri2_surf->wl_drm_wrapper = wl_proxy_create_wrapper(dri2_dpy->wl_drm);
361 if (!dri2_surf->wl_drm_wrapper) {
362 _eglError(EGL_BAD_ALLOC, "dri2_create_surface");
363 goto cleanup_queue;
364 }
365 wl_proxy_set_queue((struct wl_proxy *)dri2_surf->wl_drm_wrapper,
366 dri2_surf->wl_queue);
367 }
368
369 dri2_surf->wl_dpy_wrapper = wl_proxy_create_wrapper(dri2_dpy->wl_dpy);
370 if (!dri2_surf->wl_dpy_wrapper) {
371 _eglError(EGL_BAD_ALLOC, "dri2_create_surface");
372 goto cleanup_drm;
373 }
374 wl_proxy_set_queue((struct wl_proxy *)dri2_surf->wl_dpy_wrapper,
375 dri2_surf->wl_queue);
376
377 dri2_surf->wl_surface_wrapper = get_wl_surface_proxy(window);
378 if (!dri2_surf->wl_surface_wrapper) {
379 _eglError(EGL_BAD_ALLOC, "dri2_create_surface");
380 goto cleanup_dpy_wrapper;
381 }
382 wl_proxy_set_queue((struct wl_proxy *)dri2_surf->wl_surface_wrapper,
383 dri2_surf->wl_queue);
384
385 dri2_surf->wl_win = window;
386 dri2_surf->wl_win->driver_private = dri2_surf;
387 dri2_surf->wl_win->destroy_window_callback = destroy_window_callback;
388 if (dri2_dpy->flush)
389 dri2_surf->wl_win->resize_callback = resize_callback;
390
391 if (!dri2_create_drawable(dri2_dpy, config, dri2_surf, dri2_surf))
392 goto cleanup_surf_wrapper;
393
394 dri2_surf->base.SwapInterval = dri2_dpy->default_swap_interval;
395
396 return &dri2_surf->base;
397
398 cleanup_surf_wrapper:
399 wl_proxy_wrapper_destroy(dri2_surf->wl_surface_wrapper);
400 cleanup_dpy_wrapper:
401 wl_proxy_wrapper_destroy(dri2_surf->wl_dpy_wrapper);
402 cleanup_drm:
403 if (dri2_surf->wl_drm_wrapper)
404 wl_proxy_wrapper_destroy(dri2_surf->wl_drm_wrapper);
405 cleanup_queue:
406 wl_event_queue_destroy(dri2_surf->wl_queue);
407 cleanup_surf:
408 free(dri2_surf);
409
410 return NULL;
411 }
412
413 static _EGLSurface *
414 dri2_wl_create_pixmap_surface(_EGLDriver *drv, _EGLDisplay *disp,
415 _EGLConfig *conf, void *native_window,
416 const EGLint *attrib_list)
417 {
418 /* From the EGL_EXT_platform_wayland spec, version 3:
419 *
420 * It is not valid to call eglCreatePlatformPixmapSurfaceEXT with a <dpy>
421 * that belongs to Wayland. Any such call fails and generates
422 * EGL_BAD_PARAMETER.
423 */
424 _eglError(EGL_BAD_PARAMETER, "cannot create EGL pixmap surfaces on "
425 "Wayland");
426 return NULL;
427 }
428
429 /**
430 * Called via eglDestroySurface(), drv->API.DestroySurface().
431 */
432 static EGLBoolean
433 dri2_wl_destroy_surface(_EGLDriver *drv, _EGLDisplay *disp, _EGLSurface *surf)
434 {
435 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
436 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(surf);
437
438 (void) drv;
439
440 dri2_dpy->core->destroyDrawable(dri2_surf->dri_drawable);
441
442 for (int i = 0; i < ARRAY_SIZE(dri2_surf->color_buffers); i++) {
443 if (dri2_surf->color_buffers[i].wl_buffer)
444 wl_buffer_destroy(dri2_surf->color_buffers[i].wl_buffer);
445 if (dri2_surf->color_buffers[i].dri_image)
446 dri2_dpy->image->destroyImage(dri2_surf->color_buffers[i].dri_image);
447 if (dri2_surf->color_buffers[i].linear_copy)
448 dri2_dpy->image->destroyImage(dri2_surf->color_buffers[i].linear_copy);
449 if (dri2_surf->color_buffers[i].data)
450 munmap(dri2_surf->color_buffers[i].data,
451 dri2_surf->color_buffers[i].data_size);
452 }
453
454 if (dri2_dpy->dri2)
455 dri2_egl_surface_free_local_buffers(dri2_surf);
456
457 if (dri2_surf->throttle_callback)
458 wl_callback_destroy(dri2_surf->throttle_callback);
459
460 if (dri2_surf->wl_win) {
461 dri2_surf->wl_win->driver_private = NULL;
462 dri2_surf->wl_win->resize_callback = NULL;
463 dri2_surf->wl_win->destroy_window_callback = NULL;
464 }
465
466 wl_proxy_wrapper_destroy(dri2_surf->wl_surface_wrapper);
467 wl_proxy_wrapper_destroy(dri2_surf->wl_dpy_wrapper);
468 if (dri2_surf->wl_drm_wrapper)
469 wl_proxy_wrapper_destroy(dri2_surf->wl_drm_wrapper);
470 wl_event_queue_destroy(dri2_surf->wl_queue);
471
472 dri2_fini_surface(surf);
473 free(surf);
474
475 return EGL_TRUE;
476 }
477
478 static void
479 dri2_wl_release_buffers(struct dri2_egl_surface *dri2_surf)
480 {
481 struct dri2_egl_display *dri2_dpy =
482 dri2_egl_display(dri2_surf->base.Resource.Display);
483
484 for (int i = 0; i < ARRAY_SIZE(dri2_surf->color_buffers); i++) {
485 if (dri2_surf->color_buffers[i].wl_buffer) {
486 if (dri2_surf->color_buffers[i].locked) {
487 dri2_surf->color_buffers[i].wl_release = true;
488 } else {
489 wl_buffer_destroy(dri2_surf->color_buffers[i].wl_buffer);
490 dri2_surf->color_buffers[i].wl_buffer = NULL;
491 }
492 }
493 if (dri2_surf->color_buffers[i].dri_image)
494 dri2_dpy->image->destroyImage(dri2_surf->color_buffers[i].dri_image);
495 if (dri2_surf->color_buffers[i].linear_copy)
496 dri2_dpy->image->destroyImage(dri2_surf->color_buffers[i].linear_copy);
497 if (dri2_surf->color_buffers[i].data)
498 munmap(dri2_surf->color_buffers[i].data,
499 dri2_surf->color_buffers[i].data_size);
500
501 dri2_surf->color_buffers[i].dri_image = NULL;
502 dri2_surf->color_buffers[i].linear_copy = NULL;
503 dri2_surf->color_buffers[i].data = NULL;
504 }
505
506 if (dri2_dpy->dri2)
507 dri2_egl_surface_free_local_buffers(dri2_surf);
508 }
509
510 static int
511 get_back_bo(struct dri2_egl_surface *dri2_surf)
512 {
513 struct dri2_egl_display *dri2_dpy =
514 dri2_egl_display(dri2_surf->base.Resource.Display);
515 int use_flags;
516 int visual_idx;
517 unsigned int dri_image_format;
518 unsigned int linear_dri_image_format;
519 uint64_t *modifiers;
520 int num_modifiers;
521
522 visual_idx = dri2_wl_visual_idx_from_fourcc(dri2_surf->format);
523 assert(visual_idx != -1);
524 dri_image_format = dri2_wl_visuals[visual_idx].dri_image_format;
525 linear_dri_image_format = dri_image_format;
526 modifiers = u_vector_tail(&dri2_dpy->wl_modifiers[visual_idx]);
527 num_modifiers = u_vector_length(&dri2_dpy->wl_modifiers[visual_idx]);
528
529 if (num_modifiers == 1 && modifiers[0] == DRM_FORMAT_MOD_INVALID) {
530 /* For the purposes of this function, an INVALID modifier on its own
531 * means the modifiers aren't supported.
532 */
533 num_modifiers = 0;
534 }
535
536 /* Substitute dri image format if server does not support original format */
537 if (!BITSET_TEST(dri2_dpy->formats, visual_idx))
538 linear_dri_image_format = dri2_wl_visuals[visual_idx].alt_dri_image_format;
539
540 /* These asserts hold, as long as dri2_wl_visuals[] is self-consistent and
541 * the PRIME substitution logic in dri2_wl_add_configs_for_visuals() is free
542 * of bugs.
543 */
544 assert(linear_dri_image_format != __DRI_IMAGE_FORMAT_NONE);
545 assert(BITSET_TEST(dri2_dpy->formats,
546 dri2_wl_visual_idx_from_dri_image_format(linear_dri_image_format)));
547
548 /* There might be a buffer release already queued that wasn't processed */
549 wl_display_dispatch_queue_pending(dri2_dpy->wl_dpy, dri2_surf->wl_queue);
550
551 while (dri2_surf->back == NULL) {
552 for (int i = 0; i < ARRAY_SIZE(dri2_surf->color_buffers); i++) {
553 /* Get an unlocked buffer, preferably one with a dri_buffer
554 * already allocated. */
555 if (dri2_surf->color_buffers[i].locked)
556 continue;
557 if (dri2_surf->back == NULL)
558 dri2_surf->back = &dri2_surf->color_buffers[i];
559 else if (dri2_surf->back->dri_image == NULL)
560 dri2_surf->back = &dri2_surf->color_buffers[i];
561 }
562
563 if (dri2_surf->back)
564 break;
565
566 /* If we don't have a buffer, then block on the server to release one for
567 * us, and try again. wl_display_dispatch_queue will process any pending
568 * events, however not all servers flush on issuing a buffer release
569 * event. So, we spam the server with roundtrips as they always cause a
570 * client flush.
571 */
572 if (wl_display_roundtrip_queue(dri2_dpy->wl_dpy,
573 dri2_surf->wl_queue) < 0)
574 return -1;
575 }
576
577 if (dri2_surf->back == NULL)
578 return -1;
579
580 use_flags = __DRI_IMAGE_USE_SHARE | __DRI_IMAGE_USE_BACKBUFFER;
581
582 if (dri2_dpy->is_different_gpu &&
583 dri2_surf->back->linear_copy == NULL) {
584 /* The LINEAR modifier should be a perfect alias of the LINEAR use
585 * flag; try the new interface first before the old, then fall back. */
586 if (dri2_dpy->image->base.version >= 15 &&
587 dri2_dpy->image->createImageWithModifiers) {
588 uint64_t linear_mod = DRM_FORMAT_MOD_LINEAR;
589
590 dri2_surf->back->linear_copy =
591 dri2_dpy->image->createImageWithModifiers(dri2_dpy->dri_screen,
592 dri2_surf->base.Width,
593 dri2_surf->base.Height,
594 linear_dri_image_format,
595 &linear_mod,
596 1,
597 NULL);
598 } else {
599 dri2_surf->back->linear_copy =
600 dri2_dpy->image->createImage(dri2_dpy->dri_screen,
601 dri2_surf->base.Width,
602 dri2_surf->base.Height,
603 linear_dri_image_format,
604 use_flags |
605 __DRI_IMAGE_USE_LINEAR,
606 NULL);
607 }
608 if (dri2_surf->back->linear_copy == NULL)
609 return -1;
610 }
611
612 if (dri2_surf->back->dri_image == NULL) {
613 /* If our DRIImage implementation does not support
614 * createImageWithModifiers, then fall back to the old createImage,
615 * and hope it allocates an image which is acceptable to the winsys.
616 */
617 if (num_modifiers && dri2_dpy->image->base.version >= 15 &&
618 dri2_dpy->image->createImageWithModifiers) {
619 dri2_surf->back->dri_image =
620 dri2_dpy->image->createImageWithModifiers(dri2_dpy->dri_screen,
621 dri2_surf->base.Width,
622 dri2_surf->base.Height,
623 dri_image_format,
624 modifiers,
625 num_modifiers,
626 NULL);
627 } else {
628 dri2_surf->back->dri_image =
629 dri2_dpy->image->createImage(dri2_dpy->dri_screen,
630 dri2_surf->base.Width,
631 dri2_surf->base.Height,
632 dri_image_format,
633 dri2_dpy->is_different_gpu ?
634 0 : use_flags,
635 NULL);
636 }
637
638 dri2_surf->back->age = 0;
639 }
640 if (dri2_surf->back->dri_image == NULL)
641 return -1;
642
643 dri2_surf->back->locked = true;
644
645 return 0;
646 }
647
648
649 static void
650 back_bo_to_dri_buffer(struct dri2_egl_surface *dri2_surf, __DRIbuffer *buffer)
651 {
652 struct dri2_egl_display *dri2_dpy =
653 dri2_egl_display(dri2_surf->base.Resource.Display);
654 __DRIimage *image;
655 int name, pitch;
656
657 image = dri2_surf->back->dri_image;
658
659 dri2_dpy->image->queryImage(image, __DRI_IMAGE_ATTRIB_NAME, &name);
660 dri2_dpy->image->queryImage(image, __DRI_IMAGE_ATTRIB_STRIDE, &pitch);
661
662 buffer->attachment = __DRI_BUFFER_BACK_LEFT;
663 buffer->name = name;
664 buffer->pitch = pitch;
665 buffer->cpp = 4;
666 buffer->flags = 0;
667 }
668
669 static int
670 update_buffers(struct dri2_egl_surface *dri2_surf)
671 {
672 struct dri2_egl_display *dri2_dpy =
673 dri2_egl_display(dri2_surf->base.Resource.Display);
674
675 if (dri2_surf->base.Width != dri2_surf->wl_win->width ||
676 dri2_surf->base.Height != dri2_surf->wl_win->height) {
677
678 dri2_surf->base.Width = dri2_surf->wl_win->width;
679 dri2_surf->base.Height = dri2_surf->wl_win->height;
680 dri2_surf->dx = dri2_surf->wl_win->dx;
681 dri2_surf->dy = dri2_surf->wl_win->dy;
682 }
683
684 if (dri2_surf->base.Width != dri2_surf->wl_win->attached_width ||
685 dri2_surf->base.Height != dri2_surf->wl_win->attached_height) {
686 dri2_wl_release_buffers(dri2_surf);
687 }
688
689 if (get_back_bo(dri2_surf) < 0) {
690 _eglError(EGL_BAD_ALLOC, "failed to allocate color buffer");
691 return -1;
692 }
693
694 /* If we have an extra unlocked buffer at this point, we had to do triple
695 * buffering for a while, but now can go back to just double buffering.
696 * That means we can free any unlocked buffer now. */
697 for (int i = 0; i < ARRAY_SIZE(dri2_surf->color_buffers); i++) {
698 if (!dri2_surf->color_buffers[i].locked &&
699 dri2_surf->color_buffers[i].wl_buffer) {
700 wl_buffer_destroy(dri2_surf->color_buffers[i].wl_buffer);
701 dri2_dpy->image->destroyImage(dri2_surf->color_buffers[i].dri_image);
702 if (dri2_dpy->is_different_gpu)
703 dri2_dpy->image->destroyImage(dri2_surf->color_buffers[i].linear_copy);
704 dri2_surf->color_buffers[i].wl_buffer = NULL;
705 dri2_surf->color_buffers[i].dri_image = NULL;
706 dri2_surf->color_buffers[i].linear_copy = NULL;
707 }
708 }
709
710 return 0;
711 }
712
713 static int
714 update_buffers_if_needed(struct dri2_egl_surface *dri2_surf)
715 {
716 if (dri2_surf->back != NULL)
717 return 0;
718
719 return update_buffers(dri2_surf);
720 }
721
722 static __DRIbuffer *
723 dri2_wl_get_buffers_with_format(__DRIdrawable * driDrawable,
724 int *width, int *height,
725 unsigned int *attachments, int count,
726 int *out_count, void *loaderPrivate)
727 {
728 struct dri2_egl_surface *dri2_surf = loaderPrivate;
729 int i, j;
730
731 if (update_buffers(dri2_surf) < 0)
732 return NULL;
733
734 for (i = 0, j = 0; i < 2 * count; i += 2, j++) {
735 __DRIbuffer *local;
736
737 switch (attachments[i]) {
738 case __DRI_BUFFER_BACK_LEFT:
739 back_bo_to_dri_buffer(dri2_surf, &dri2_surf->buffers[j]);
740 break;
741 default:
742 local = dri2_egl_surface_alloc_local_buffer(dri2_surf, attachments[i],
743 attachments[i + 1]);
744
745 if (!local) {
746 _eglError(EGL_BAD_ALLOC, "failed to allocate local buffer");
747 return NULL;
748 }
749 dri2_surf->buffers[j] = *local;
750 break;
751 }
752 }
753
754 *out_count = j;
755 if (j == 0)
756 return NULL;
757
758 *width = dri2_surf->base.Width;
759 *height = dri2_surf->base.Height;
760
761 return dri2_surf->buffers;
762 }
763
764 static __DRIbuffer *
765 dri2_wl_get_buffers(__DRIdrawable * driDrawable,
766 int *width, int *height,
767 unsigned int *attachments, int count,
768 int *out_count, void *loaderPrivate)
769 {
770 struct dri2_egl_surface *dri2_surf = loaderPrivate;
771 unsigned int *attachments_with_format;
772 __DRIbuffer *buffer;
773 int visual_idx = dri2_wl_visual_idx_from_fourcc(dri2_surf->format);
774
775 if (visual_idx == -1)
776 return NULL;
777
778 attachments_with_format = calloc(count, 2 * sizeof(unsigned int));
779 if (!attachments_with_format) {
780 *out_count = 0;
781 return NULL;
782 }
783
784 for (int i = 0; i < count; ++i) {
785 attachments_with_format[2*i] = attachments[i];
786 attachments_with_format[2*i + 1] = dri2_wl_visuals[visual_idx].bpp;
787 }
788
789 buffer =
790 dri2_wl_get_buffers_with_format(driDrawable,
791 width, height,
792 attachments_with_format, count,
793 out_count, loaderPrivate);
794
795 free(attachments_with_format);
796
797 return buffer;
798 }
799
800 static int
801 image_get_buffers(__DRIdrawable *driDrawable,
802 unsigned int format,
803 uint32_t *stamp,
804 void *loaderPrivate,
805 uint32_t buffer_mask,
806 struct __DRIimageList *buffers)
807 {
808 struct dri2_egl_surface *dri2_surf = loaderPrivate;
809
810 if (update_buffers(dri2_surf) < 0)
811 return 0;
812
813 buffers->image_mask = __DRI_IMAGE_BUFFER_BACK;
814 buffers->back = dri2_surf->back->dri_image;
815
816 return 1;
817 }
818
819 static void
820 dri2_wl_flush_front_buffer(__DRIdrawable * driDrawable, void *loaderPrivate)
821 {
822 (void) driDrawable;
823 (void) loaderPrivate;
824 }
825
826 static unsigned
827 dri2_wl_get_capability(void *loaderPrivate, enum dri_loader_cap cap)
828 {
829 switch (cap) {
830 case DRI_LOADER_CAP_FP16:
831 return 1;
832 default:
833 return 0;
834 }
835 }
836
837 static const __DRIdri2LoaderExtension dri2_loader_extension = {
838 .base = { __DRI_DRI2_LOADER, 4 },
839
840 .getBuffers = dri2_wl_get_buffers,
841 .flushFrontBuffer = dri2_wl_flush_front_buffer,
842 .getBuffersWithFormat = dri2_wl_get_buffers_with_format,
843 .getCapability = dri2_wl_get_capability,
844 };
845
846 static const __DRIimageLoaderExtension image_loader_extension = {
847 .base = { __DRI_IMAGE_LOADER, 2 },
848
849 .getBuffers = image_get_buffers,
850 .flushFrontBuffer = dri2_wl_flush_front_buffer,
851 .getCapability = dri2_wl_get_capability,
852 };
853
854 static void
855 wayland_throttle_callback(void *data,
856 struct wl_callback *callback,
857 uint32_t time)
858 {
859 struct dri2_egl_surface *dri2_surf = data;
860
861 dri2_surf->throttle_callback = NULL;
862 wl_callback_destroy(callback);
863 }
864
865 static const struct wl_callback_listener throttle_listener = {
866 .done = wayland_throttle_callback
867 };
868
869 static EGLBoolean
870 get_fourcc(struct dri2_egl_display *dri2_dpy,
871 __DRIimage *image, int *fourcc)
872 {
873 EGLBoolean query;
874 int dri_format;
875 int visual_idx;
876
877 query = dri2_dpy->image->queryImage(image, __DRI_IMAGE_ATTRIB_FOURCC,
878 fourcc);
879 if (query)
880 return true;
881
882 query = dri2_dpy->image->queryImage(image, __DRI_IMAGE_ATTRIB_FORMAT,
883 &dri_format);
884 if (!query)
885 return false;
886
887 visual_idx = dri2_wl_visual_idx_from_dri_image_format(dri_format);
888 if (visual_idx == -1)
889 return false;
890
891 *fourcc = dri2_wl_visuals[visual_idx].wl_drm_format;
892 return true;
893 }
894
895 static struct wl_buffer *
896 create_wl_buffer(struct dri2_egl_display *dri2_dpy,
897 struct dri2_egl_surface *dri2_surf,
898 __DRIimage *image)
899 {
900 struct wl_buffer *ret;
901 EGLBoolean query;
902 int width, height, fourcc, num_planes;
903 uint64_t modifier = DRM_FORMAT_MOD_INVALID;
904
905 query = dri2_dpy->image->queryImage(image, __DRI_IMAGE_ATTRIB_WIDTH, &width);
906 query &= dri2_dpy->image->queryImage(image, __DRI_IMAGE_ATTRIB_HEIGHT,
907 &height);
908 query &= get_fourcc(dri2_dpy, image, &fourcc);
909 if (!query)
910 return NULL;
911
912 query = dri2_dpy->image->queryImage(image, __DRI_IMAGE_ATTRIB_NUM_PLANES,
913 &num_planes);
914 if (!query)
915 num_planes = 1;
916
917 if (dri2_dpy->image->base.version >= 15) {
918 int mod_hi, mod_lo;
919
920 query = dri2_dpy->image->queryImage(image,
921 __DRI_IMAGE_ATTRIB_MODIFIER_UPPER,
922 &mod_hi);
923 query &= dri2_dpy->image->queryImage(image,
924 __DRI_IMAGE_ATTRIB_MODIFIER_LOWER,
925 &mod_lo);
926 if (query) {
927 modifier = combine_u32_into_u64(mod_hi, mod_lo);
928 }
929 }
930
931 bool supported_modifier = false;
932 bool mod_invalid_supported = false;
933 int visual_idx = dri2_wl_visual_idx_from_fourcc(fourcc);
934 assert(visual_idx != -1);
935
936 uint64_t *mod;
937 u_vector_foreach(mod, &dri2_dpy->wl_modifiers[visual_idx]) {
938 if (*mod == DRM_FORMAT_MOD_INVALID) {
939 mod_invalid_supported = true;
940 }
941 if (*mod == modifier) {
942 supported_modifier = true;
943 break;
944 }
945 }
946 if (!supported_modifier && mod_invalid_supported) {
947 /* If the server has advertised DRM_FORMAT_MOD_INVALID then we trust
948 * that the client has allocated the buffer with the right implicit
949 * modifier for the format, even though it's allocated a buffer the
950 * server hasn't explicitly claimed to support. */
951 modifier = DRM_FORMAT_MOD_INVALID;
952 supported_modifier = true;
953 }
954
955 if (dri2_dpy->wl_dmabuf && supported_modifier) {
956 struct zwp_linux_buffer_params_v1 *params;
957 int i;
958
959 /* We don't need a wrapper for wl_dmabuf objects, because we have to
960 * create the intermediate params object; we can set the queue on this,
961 * and the wl_buffer inherits it race-free. */
962 params = zwp_linux_dmabuf_v1_create_params(dri2_dpy->wl_dmabuf);
963 if (dri2_surf)
964 wl_proxy_set_queue((struct wl_proxy *) params, dri2_surf->wl_queue);
965
966 for (i = 0; i < num_planes; i++) {
967 __DRIimage *p_image;
968 int stride, offset;
969 int fd = -1;
970
971 p_image = dri2_dpy->image->fromPlanar(image, i, NULL);
972 if (!p_image) {
973 assert(i == 0);
974 p_image = image;
975 }
976
977 query = dri2_dpy->image->queryImage(p_image,
978 __DRI_IMAGE_ATTRIB_FD,
979 &fd);
980 query &= dri2_dpy->image->queryImage(p_image,
981 __DRI_IMAGE_ATTRIB_STRIDE,
982 &stride);
983 query &= dri2_dpy->image->queryImage(p_image,
984 __DRI_IMAGE_ATTRIB_OFFSET,
985 &offset);
986 if (image != p_image)
987 dri2_dpy->image->destroyImage(p_image);
988
989 if (!query) {
990 if (fd >= 0)
991 close(fd);
992 zwp_linux_buffer_params_v1_destroy(params);
993 return NULL;
994 }
995
996 zwp_linux_buffer_params_v1_add(params, fd, i, offset, stride,
997 modifier >> 32, modifier & 0xffffffff);
998 close(fd);
999 }
1000
1001 ret = zwp_linux_buffer_params_v1_create_immed(params, width, height,
1002 fourcc, 0);
1003 zwp_linux_buffer_params_v1_destroy(params);
1004 } else if (dri2_dpy->capabilities & WL_DRM_CAPABILITY_PRIME) {
1005 struct wl_drm *wl_drm =
1006 dri2_surf ? dri2_surf->wl_drm_wrapper : dri2_dpy->wl_drm;
1007 int fd, stride;
1008
1009 if (num_planes > 1)
1010 return NULL;
1011
1012 dri2_dpy->image->queryImage(image, __DRI_IMAGE_ATTRIB_FD, &fd);
1013 dri2_dpy->image->queryImage(image, __DRI_IMAGE_ATTRIB_STRIDE, &stride);
1014 ret = wl_drm_create_prime_buffer(wl_drm, fd, width, height, fourcc, 0,
1015 stride, 0, 0, 0, 0);
1016 close(fd);
1017 } else {
1018 struct wl_drm *wl_drm =
1019 dri2_surf ? dri2_surf->wl_drm_wrapper : dri2_dpy->wl_drm;
1020 int name, stride;
1021
1022 if (num_planes > 1)
1023 return NULL;
1024
1025 dri2_dpy->image->queryImage(image, __DRI_IMAGE_ATTRIB_NAME, &name);
1026 dri2_dpy->image->queryImage(image, __DRI_IMAGE_ATTRIB_STRIDE, &stride);
1027 ret = wl_drm_create_buffer(wl_drm, name, width, height, stride, fourcc);
1028 }
1029
1030 return ret;
1031 }
1032
1033 static EGLBoolean
1034 try_damage_buffer(struct dri2_egl_surface *dri2_surf,
1035 const EGLint *rects,
1036 EGLint n_rects)
1037 {
1038 if (wl_proxy_get_version((struct wl_proxy *) dri2_surf->wl_surface_wrapper)
1039 < WL_SURFACE_DAMAGE_BUFFER_SINCE_VERSION)
1040 return EGL_FALSE;
1041
1042 for (int i = 0; i < n_rects; i++) {
1043 const int *rect = &rects[i * 4];
1044
1045 wl_surface_damage_buffer(dri2_surf->wl_surface_wrapper,
1046 rect[0],
1047 dri2_surf->base.Height - rect[1] - rect[3],
1048 rect[2], rect[3]);
1049 }
1050 return EGL_TRUE;
1051 }
1052 /**
1053 * Called via eglSwapBuffers(), drv->API.SwapBuffers().
1054 */
1055 static EGLBoolean
1056 dri2_wl_swap_buffers_with_damage(_EGLDriver *drv,
1057 _EGLDisplay *disp,
1058 _EGLSurface *draw,
1059 const EGLint *rects,
1060 EGLint n_rects)
1061 {
1062 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1063 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(draw);
1064
1065 while (dri2_surf->throttle_callback != NULL)
1066 if (wl_display_dispatch_queue(dri2_dpy->wl_dpy,
1067 dri2_surf->wl_queue) == -1)
1068 return -1;
1069
1070 for (int i = 0; i < ARRAY_SIZE(dri2_surf->color_buffers); i++)
1071 if (dri2_surf->color_buffers[i].age > 0)
1072 dri2_surf->color_buffers[i].age++;
1073
1074 /* Make sure we have a back buffer in case we're swapping without ever
1075 * rendering. */
1076 if (update_buffers_if_needed(dri2_surf) < 0)
1077 return _eglError(EGL_BAD_ALLOC, "dri2_swap_buffers");
1078
1079 if (draw->SwapInterval > 0) {
1080 dri2_surf->throttle_callback =
1081 wl_surface_frame(dri2_surf->wl_surface_wrapper);
1082 wl_callback_add_listener(dri2_surf->throttle_callback,
1083 &throttle_listener, dri2_surf);
1084 }
1085
1086 dri2_surf->back->age = 1;
1087 dri2_surf->current = dri2_surf->back;
1088 dri2_surf->back = NULL;
1089
1090 if (!dri2_surf->current->wl_buffer) {
1091 __DRIimage *image;
1092
1093 if (dri2_dpy->is_different_gpu)
1094 image = dri2_surf->current->linear_copy;
1095 else
1096 image = dri2_surf->current->dri_image;
1097
1098 dri2_surf->current->wl_buffer =
1099 create_wl_buffer(dri2_dpy, dri2_surf, image);
1100
1101 dri2_surf->current->wl_release = false;
1102
1103 wl_buffer_add_listener(dri2_surf->current->wl_buffer,
1104 &wl_buffer_listener, dri2_surf);
1105 }
1106
1107 wl_surface_attach(dri2_surf->wl_surface_wrapper,
1108 dri2_surf->current->wl_buffer,
1109 dri2_surf->dx, dri2_surf->dy);
1110
1111 dri2_surf->wl_win->attached_width = dri2_surf->base.Width;
1112 dri2_surf->wl_win->attached_height = dri2_surf->base.Height;
1113 /* reset resize growing parameters */
1114 dri2_surf->dx = 0;
1115 dri2_surf->dy = 0;
1116
1117 /* If the compositor doesn't support damage_buffer, we deliberately
1118 * ignore the damage region and post maximum damage, due to
1119 * https://bugs.freedesktop.org/78190 */
1120 if (!n_rects || !try_damage_buffer(dri2_surf, rects, n_rects))
1121 wl_surface_damage(dri2_surf->wl_surface_wrapper,
1122 0, 0, INT32_MAX, INT32_MAX);
1123
1124 if (dri2_dpy->is_different_gpu) {
1125 _EGLContext *ctx = _eglGetCurrentContext();
1126 struct dri2_egl_context *dri2_ctx = dri2_egl_context(ctx);
1127 dri2_dpy->image->blitImage(dri2_ctx->dri_context,
1128 dri2_surf->current->linear_copy,
1129 dri2_surf->current->dri_image,
1130 0, 0, dri2_surf->base.Width,
1131 dri2_surf->base.Height,
1132 0, 0, dri2_surf->base.Width,
1133 dri2_surf->base.Height, 0);
1134 }
1135
1136 dri2_flush_drawable_for_swapbuffers(disp, draw);
1137 dri2_dpy->flush->invalidate(dri2_surf->dri_drawable);
1138
1139 wl_surface_commit(dri2_surf->wl_surface_wrapper);
1140
1141 /* If we're not waiting for a frame callback then we'll at least throttle
1142 * to a sync callback so that we always give a chance for the compositor to
1143 * handle the commit and send a release event before checking for a free
1144 * buffer */
1145 if (dri2_surf->throttle_callback == NULL) {
1146 dri2_surf->throttle_callback = wl_display_sync(dri2_surf->wl_dpy_wrapper);
1147 wl_callback_add_listener(dri2_surf->throttle_callback,
1148 &throttle_listener, dri2_surf);
1149 }
1150
1151 wl_display_flush(dri2_dpy->wl_dpy);
1152
1153 return EGL_TRUE;
1154 }
1155
1156 static EGLint
1157 dri2_wl_query_buffer_age(_EGLDriver *drv,
1158 _EGLDisplay *disp, _EGLSurface *surface)
1159 {
1160 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(surface);
1161
1162 if (update_buffers_if_needed(dri2_surf) < 0) {
1163 _eglError(EGL_BAD_ALLOC, "dri2_query_buffer_age");
1164 return -1;
1165 }
1166
1167 return dri2_surf->back->age;
1168 }
1169
1170 static EGLBoolean
1171 dri2_wl_swap_buffers(_EGLDriver *drv, _EGLDisplay *disp, _EGLSurface *draw)
1172 {
1173 return dri2_wl_swap_buffers_with_damage(drv, disp, draw, NULL, 0);
1174 }
1175
1176 static struct wl_buffer *
1177 dri2_wl_create_wayland_buffer_from_image(_EGLDriver *drv,
1178 _EGLDisplay *disp,
1179 _EGLImage *img)
1180 {
1181 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1182 struct dri2_egl_image *dri2_img = dri2_egl_image(img);
1183 __DRIimage *image = dri2_img->dri_image;
1184 struct wl_buffer *buffer;
1185 int format, visual_idx;
1186
1187 /* Check the upstream display supports this buffer's format. */
1188 dri2_dpy->image->queryImage(image, __DRI_IMAGE_ATTRIB_FORMAT, &format);
1189 visual_idx = dri2_wl_visual_idx_from_dri_image_format(format);
1190 if (visual_idx == -1)
1191 goto bad_format;
1192
1193 if (!BITSET_TEST(dri2_dpy->formats, visual_idx))
1194 goto bad_format;
1195
1196 buffer = create_wl_buffer(dri2_dpy, NULL, image);
1197
1198 /* The buffer object will have been created with our internal event queue
1199 * because it is using wl_dmabuf/wl_drm as a proxy factory. We want the
1200 * buffer to be used by the application so we'll reset it to the display's
1201 * default event queue. This isn't actually racy, as the only event the
1202 * buffer can get is a buffer release, which doesn't happen with an explicit
1203 * attach. */
1204 if (buffer)
1205 wl_proxy_set_queue((struct wl_proxy *) buffer, NULL);
1206
1207 return buffer;
1208
1209 bad_format:
1210 _eglError(EGL_BAD_MATCH, "unsupported image format");
1211 return NULL;
1212 }
1213
1214 static int
1215 dri2_wl_authenticate(_EGLDisplay *disp, uint32_t id)
1216 {
1217 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1218 int ret = 0;
1219
1220 if (dri2_dpy->is_render_node) {
1221 _eglLog(_EGL_WARNING, "wayland-egl: client asks server to "
1222 "authenticate for render-nodes");
1223 return 0;
1224 }
1225 dri2_dpy->authenticated = false;
1226
1227 wl_drm_authenticate(dri2_dpy->wl_drm, id);
1228 if (roundtrip(dri2_dpy) < 0)
1229 ret = -1;
1230
1231 if (!dri2_dpy->authenticated)
1232 ret = -1;
1233
1234 /* reset authenticated */
1235 dri2_dpy->authenticated = true;
1236
1237 return ret;
1238 }
1239
1240 static void
1241 drm_handle_device(void *data, struct wl_drm *drm, const char *device)
1242 {
1243 struct dri2_egl_display *dri2_dpy = data;
1244 drm_magic_t magic;
1245
1246 dri2_dpy->device_name = strdup(device);
1247 if (!dri2_dpy->device_name)
1248 return;
1249
1250 dri2_dpy->fd = loader_open_device(dri2_dpy->device_name);
1251 if (dri2_dpy->fd == -1) {
1252 _eglLog(_EGL_WARNING, "wayland-egl: could not open %s (%s)",
1253 dri2_dpy->device_name, strerror(errno));
1254 free(dri2_dpy->device_name);
1255 dri2_dpy->device_name = NULL;
1256 return;
1257 }
1258
1259 if (drmGetNodeTypeFromFd(dri2_dpy->fd) == DRM_NODE_RENDER) {
1260 dri2_dpy->authenticated = true;
1261 } else {
1262 if (drmGetMagic(dri2_dpy->fd, &magic)) {
1263 close(dri2_dpy->fd);
1264 dri2_dpy->fd = -1;
1265 free(dri2_dpy->device_name);
1266 dri2_dpy->device_name = NULL;
1267 _eglLog(_EGL_WARNING, "wayland-egl: drmGetMagic failed");
1268 return;
1269 }
1270 wl_drm_authenticate(dri2_dpy->wl_drm, magic);
1271 }
1272 }
1273
1274 static void
1275 drm_handle_format(void *data, struct wl_drm *drm, uint32_t format)
1276 {
1277 struct dri2_egl_display *dri2_dpy = data;
1278 int visual_idx = dri2_wl_visual_idx_from_fourcc(format);
1279
1280 if (visual_idx == -1)
1281 return;
1282
1283 BITSET_SET(dri2_dpy->formats, visual_idx);
1284 }
1285
1286 static void
1287 drm_handle_capabilities(void *data, struct wl_drm *drm, uint32_t value)
1288 {
1289 struct dri2_egl_display *dri2_dpy = data;
1290
1291 dri2_dpy->capabilities = value;
1292 }
1293
1294 static void
1295 drm_handle_authenticated(void *data, struct wl_drm *drm)
1296 {
1297 struct dri2_egl_display *dri2_dpy = data;
1298
1299 dri2_dpy->authenticated = true;
1300 }
1301
1302 static const struct wl_drm_listener drm_listener = {
1303 .device = drm_handle_device,
1304 .format = drm_handle_format,
1305 .authenticated = drm_handle_authenticated,
1306 .capabilities = drm_handle_capabilities
1307 };
1308
1309 static void
1310 dmabuf_ignore_format(void *data, struct zwp_linux_dmabuf_v1 *dmabuf,
1311 uint32_t format)
1312 {
1313 /* formats are implicitly advertised by the 'modifier' event, so ignore */
1314 }
1315
1316 static void
1317 dmabuf_handle_modifier(void *data, struct zwp_linux_dmabuf_v1 *dmabuf,
1318 uint32_t format, uint32_t modifier_hi,
1319 uint32_t modifier_lo)
1320 {
1321 struct dri2_egl_display *dri2_dpy = data;
1322 int visual_idx = dri2_wl_visual_idx_from_fourcc(format);
1323 uint64_t *mod;
1324
1325 if (visual_idx == -1)
1326 return;
1327
1328 BITSET_SET(dri2_dpy->formats, visual_idx);
1329
1330 mod = u_vector_add(&dri2_dpy->wl_modifiers[visual_idx]);
1331 *mod = combine_u32_into_u64(modifier_hi, modifier_lo);
1332 }
1333
1334 static const struct zwp_linux_dmabuf_v1_listener dmabuf_listener = {
1335 .format = dmabuf_ignore_format,
1336 .modifier = dmabuf_handle_modifier,
1337 };
1338
1339 static void
1340 registry_handle_global_drm(void *data, struct wl_registry *registry,
1341 uint32_t name, const char *interface,
1342 uint32_t version)
1343 {
1344 struct dri2_egl_display *dri2_dpy = data;
1345
1346 if (strcmp(interface, "wl_drm") == 0) {
1347 dri2_dpy->wl_drm =
1348 wl_registry_bind(registry, name, &wl_drm_interface, MIN2(version, 2));
1349 wl_drm_add_listener(dri2_dpy->wl_drm, &drm_listener, dri2_dpy);
1350 } else if (strcmp(interface, "zwp_linux_dmabuf_v1") == 0 && version >= 3) {
1351 dri2_dpy->wl_dmabuf =
1352 wl_registry_bind(registry, name, &zwp_linux_dmabuf_v1_interface,
1353 MIN2(version, 3));
1354 zwp_linux_dmabuf_v1_add_listener(dri2_dpy->wl_dmabuf, &dmabuf_listener,
1355 dri2_dpy);
1356 }
1357 }
1358
1359 static void
1360 registry_handle_global_remove(void *data, struct wl_registry *registry,
1361 uint32_t name)
1362 {
1363 }
1364
1365 static const struct wl_registry_listener registry_listener_drm = {
1366 .global = registry_handle_global_drm,
1367 .global_remove = registry_handle_global_remove
1368 };
1369
1370 static void
1371 dri2_wl_setup_swap_interval(_EGLDisplay *disp)
1372 {
1373 /* We can't use values greater than 1 on Wayland because we are using the
1374 * frame callback to synchronise the frame and the only way we be sure to
1375 * get a frame callback is to attach a new buffer. Therefore we can't just
1376 * sit drawing nothing to wait until the next ‘n’ frame callbacks */
1377
1378 dri2_setup_swap_interval(disp, 1);
1379 }
1380
1381 static const struct dri2_egl_display_vtbl dri2_wl_display_vtbl = {
1382 .authenticate = dri2_wl_authenticate,
1383 .create_window_surface = dri2_wl_create_window_surface,
1384 .create_pixmap_surface = dri2_wl_create_pixmap_surface,
1385 .create_pbuffer_surface = dri2_fallback_create_pbuffer_surface,
1386 .destroy_surface = dri2_wl_destroy_surface,
1387 .create_image = dri2_create_image_khr,
1388 .swap_buffers = dri2_wl_swap_buffers,
1389 .swap_buffers_with_damage = dri2_wl_swap_buffers_with_damage,
1390 .swap_buffers_region = dri2_fallback_swap_buffers_region,
1391 .post_sub_buffer = dri2_fallback_post_sub_buffer,
1392 .copy_buffers = dri2_fallback_copy_buffers,
1393 .query_buffer_age = dri2_wl_query_buffer_age,
1394 .create_wayland_buffer_from_image = dri2_wl_create_wayland_buffer_from_image,
1395 .get_sync_values = dri2_fallback_get_sync_values,
1396 .get_dri_drawable = dri2_surface_get_dri_drawable,
1397 };
1398
1399 static const __DRIextension *dri2_loader_extensions[] = {
1400 &dri2_loader_extension.base,
1401 &image_loader_extension.base,
1402 &image_lookup_extension.base,
1403 &use_invalidate.base,
1404 NULL,
1405 };
1406
1407 static const __DRIextension *image_loader_extensions[] = {
1408 &image_loader_extension.base,
1409 &image_lookup_extension.base,
1410 &use_invalidate.base,
1411 NULL,
1412 };
1413
1414 static EGLBoolean
1415 dri2_wl_add_configs_for_visuals(_EGLDriver *drv, _EGLDisplay *disp)
1416 {
1417 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1418 unsigned int format_count[ARRAY_SIZE(dri2_wl_visuals)] = { 0 };
1419 unsigned int count = 0;
1420 bool assigned;
1421
1422 for (unsigned i = 0; dri2_dpy->driver_configs[i]; i++) {
1423 assigned = false;
1424
1425 for (unsigned j = 0; j < ARRAY_SIZE(dri2_wl_visuals); j++) {
1426 struct dri2_egl_config *dri2_conf;
1427
1428 if (!BITSET_TEST(dri2_dpy->formats, j))
1429 continue;
1430
1431 dri2_conf = dri2_add_config(disp, dri2_dpy->driver_configs[i],
1432 count + 1, EGL_WINDOW_BIT, NULL, dri2_wl_visuals[j].rgba_shifts, dri2_wl_visuals[j].rgba_sizes);
1433 if (dri2_conf) {
1434 if (dri2_conf->base.ConfigID == count + 1)
1435 count++;
1436 format_count[j]++;
1437 assigned = true;
1438 }
1439 }
1440
1441 if (!assigned && dri2_dpy->is_different_gpu) {
1442 struct dri2_egl_config *dri2_conf;
1443 int alt_dri_image_format, c, s;
1444
1445 /* No match for config. Try if we can blitImage convert to a visual */
1446 c = dri2_wl_visual_idx_from_config(dri2_dpy,
1447 dri2_dpy->driver_configs[i]);
1448
1449 if (c == -1)
1450 continue;
1451
1452 /* Find optimal target visual for blitImage conversion, if any. */
1453 alt_dri_image_format = dri2_wl_visuals[c].alt_dri_image_format;
1454 s = dri2_wl_visual_idx_from_dri_image_format(alt_dri_image_format);
1455
1456 if (s == -1 || !BITSET_TEST(dri2_dpy->formats, s))
1457 continue;
1458
1459 /* Visual s works for the Wayland server, and c can be converted into s
1460 * by our client gpu during PRIME blitImage conversion to a linear
1461 * wl_buffer, so add visual c as supported by the client renderer.
1462 */
1463 dri2_conf = dri2_add_config(disp, dri2_dpy->driver_configs[i],
1464 count + 1, EGL_WINDOW_BIT, NULL,
1465 dri2_wl_visuals[c].rgba_shifts,
1466 dri2_wl_visuals[c].rgba_sizes);
1467 if (dri2_conf) {
1468 if (dri2_conf->base.ConfigID == count + 1)
1469 count++;
1470 format_count[c]++;
1471 if (format_count[c] == 1)
1472 _eglLog(_EGL_DEBUG, "Client format %s to server format %s via "
1473 "PRIME blitImage.", dri2_wl_visuals[c].format_name,
1474 dri2_wl_visuals[s].format_name);
1475 }
1476 }
1477 }
1478
1479 for (unsigned i = 0; i < ARRAY_SIZE(format_count); i++) {
1480 if (!format_count[i]) {
1481 _eglLog(_EGL_DEBUG, "No DRI config supports native format %s",
1482 dri2_wl_visuals[i].format_name);
1483 }
1484 }
1485
1486 return (count != 0);
1487 }
1488
1489 static EGLBoolean
1490 dri2_initialize_wayland_drm(_EGLDriver *drv, _EGLDisplay *disp)
1491 {
1492 _EGLDevice *dev;
1493 struct dri2_egl_display *dri2_dpy;
1494
1495 dri2_dpy = calloc(1, sizeof *dri2_dpy);
1496 if (!dri2_dpy)
1497 return _eglError(EGL_BAD_ALLOC, "eglInitialize");
1498
1499 dri2_dpy->fd = -1;
1500 disp->DriverData = (void *) dri2_dpy;
1501 if (disp->PlatformDisplay == NULL) {
1502 dri2_dpy->wl_dpy = wl_display_connect(NULL);
1503 if (dri2_dpy->wl_dpy == NULL)
1504 goto cleanup;
1505 dri2_dpy->own_device = true;
1506 } else {
1507 dri2_dpy->wl_dpy = disp->PlatformDisplay;
1508 }
1509
1510 dri2_dpy->wl_modifiers =
1511 calloc(ARRAY_SIZE(dri2_wl_visuals), sizeof(*dri2_dpy->wl_modifiers));
1512 if (!dri2_dpy->wl_modifiers)
1513 goto cleanup;
1514 for (int i = 0; i < ARRAY_SIZE(dri2_wl_visuals); i++) {
1515 if (!u_vector_init(&dri2_dpy->wl_modifiers[i], sizeof(uint64_t), 32))
1516 goto cleanup;
1517 }
1518
1519 dri2_dpy->wl_queue = wl_display_create_queue(dri2_dpy->wl_dpy);
1520
1521 dri2_dpy->wl_dpy_wrapper = wl_proxy_create_wrapper(dri2_dpy->wl_dpy);
1522 if (dri2_dpy->wl_dpy_wrapper == NULL)
1523 goto cleanup;
1524
1525 wl_proxy_set_queue((struct wl_proxy *) dri2_dpy->wl_dpy_wrapper,
1526 dri2_dpy->wl_queue);
1527
1528 if (dri2_dpy->own_device)
1529 wl_display_dispatch_pending(dri2_dpy->wl_dpy);
1530
1531 dri2_dpy->wl_registry = wl_display_get_registry(dri2_dpy->wl_dpy_wrapper);
1532 wl_registry_add_listener(dri2_dpy->wl_registry,
1533 &registry_listener_drm, dri2_dpy);
1534 if (roundtrip(dri2_dpy) < 0 || dri2_dpy->wl_drm == NULL)
1535 goto cleanup;
1536
1537 if (roundtrip(dri2_dpy) < 0 || dri2_dpy->fd == -1)
1538 goto cleanup;
1539
1540 if (roundtrip(dri2_dpy) < 0 || !dri2_dpy->authenticated)
1541 goto cleanup;
1542
1543 dri2_dpy->fd = loader_get_user_preferred_fd(dri2_dpy->fd,
1544 &dri2_dpy->is_different_gpu);
1545 dev = _eglAddDevice(dri2_dpy->fd, false);
1546 if (!dev) {
1547 _eglError(EGL_NOT_INITIALIZED, "DRI2: failed to find EGLDevice");
1548 goto cleanup;
1549 }
1550
1551 disp->Device = dev;
1552
1553 if (dri2_dpy->is_different_gpu) {
1554 free(dri2_dpy->device_name);
1555 dri2_dpy->device_name = loader_get_device_name_for_fd(dri2_dpy->fd);
1556 if (!dri2_dpy->device_name) {
1557 _eglError(EGL_BAD_ALLOC, "wayland-egl: failed to get device name "
1558 "for requested GPU");
1559 goto cleanup;
1560 }
1561 }
1562
1563 /* we have to do the check now, because loader_get_user_preferred_fd
1564 * will return a render-node when the requested gpu is different
1565 * to the server, but also if the client asks for the same gpu than
1566 * the server by requesting its pci-id */
1567 dri2_dpy->is_render_node = drmGetNodeTypeFromFd(dri2_dpy->fd) == DRM_NODE_RENDER;
1568
1569 dri2_dpy->driver_name = loader_get_driver_for_fd(dri2_dpy->fd);
1570 if (dri2_dpy->driver_name == NULL) {
1571 _eglError(EGL_BAD_ALLOC, "DRI2: failed to get driver name");
1572 goto cleanup;
1573 }
1574
1575 /* render nodes cannot use Gem names, and thus do not support
1576 * the __DRI_DRI2_LOADER extension */
1577 if (!dri2_dpy->is_render_node) {
1578 dri2_dpy->loader_extensions = dri2_loader_extensions;
1579 if (!dri2_load_driver(disp)) {
1580 _eglError(EGL_BAD_ALLOC, "DRI2: failed to load driver");
1581 goto cleanup;
1582 }
1583 } else {
1584 dri2_dpy->loader_extensions = image_loader_extensions;
1585 if (!dri2_load_driver_dri3(disp)) {
1586 _eglError(EGL_BAD_ALLOC, "DRI3: failed to load driver");
1587 goto cleanup;
1588 }
1589 }
1590
1591 if (!dri2_create_screen(disp))
1592 goto cleanup;
1593
1594 if (!dri2_setup_extensions(disp))
1595 goto cleanup;
1596
1597 dri2_setup_screen(disp);
1598
1599 dri2_wl_setup_swap_interval(disp);
1600
1601 /* To use Prime, we must have _DRI_IMAGE v7 at least.
1602 * createImageFromFds support indicates that Prime export/import
1603 * is supported by the driver. Fall back to
1604 * gem names if we don't have Prime support. */
1605
1606 if (dri2_dpy->image->base.version < 7 ||
1607 dri2_dpy->image->createImageFromFds == NULL)
1608 dri2_dpy->capabilities &= ~WL_DRM_CAPABILITY_PRIME;
1609
1610 /* We cannot use Gem names with render-nodes, only prime fds (dma-buf).
1611 * The server needs to accept them */
1612 if (dri2_dpy->is_render_node &&
1613 !(dri2_dpy->capabilities & WL_DRM_CAPABILITY_PRIME)) {
1614 _eglLog(_EGL_WARNING, "wayland-egl: display is not render-node capable");
1615 goto cleanup;
1616 }
1617
1618 if (dri2_dpy->is_different_gpu &&
1619 (dri2_dpy->image->base.version < 9 ||
1620 dri2_dpy->image->blitImage == NULL)) {
1621 _eglLog(_EGL_WARNING, "wayland-egl: Different GPU selected, but the "
1622 "Image extension in the driver is not "
1623 "compatible. Version 9 or later and blitImage() "
1624 "are required");
1625 goto cleanup;
1626 }
1627
1628 if (!dri2_wl_add_configs_for_visuals(drv, disp)) {
1629 _eglError(EGL_NOT_INITIALIZED, "DRI2: failed to add configs");
1630 goto cleanup;
1631 }
1632
1633 dri2_set_WL_bind_wayland_display(drv, disp);
1634 /* When cannot convert EGLImage to wl_buffer when on a different gpu,
1635 * because the buffer of the EGLImage has likely a tiling mode the server
1636 * gpu won't support. These is no way to check for now. Thus do not support the
1637 * extension */
1638 if (!dri2_dpy->is_different_gpu)
1639 disp->Extensions.WL_create_wayland_buffer_from_image = EGL_TRUE;
1640
1641 disp->Extensions.EXT_buffer_age = EGL_TRUE;
1642
1643 disp->Extensions.EXT_swap_buffers_with_damage = EGL_TRUE;
1644
1645 /* Fill vtbl last to prevent accidentally calling virtual function during
1646 * initialization.
1647 */
1648 dri2_dpy->vtbl = &dri2_wl_display_vtbl;
1649
1650 return EGL_TRUE;
1651
1652 cleanup:
1653 dri2_display_destroy(disp);
1654 return EGL_FALSE;
1655 }
1656
1657 static int
1658 dri2_wl_swrast_get_stride_for_format(int format, int w)
1659 {
1660 int visual_idx = dri2_wl_visual_idx_from_shm_format(format);
1661
1662 assume(visual_idx != -1);
1663
1664 return w * (dri2_wl_visuals[visual_idx].bpp / 8);
1665 }
1666
1667 static EGLBoolean
1668 dri2_wl_swrast_allocate_buffer(struct dri2_egl_surface *dri2_surf,
1669 int format, int w, int h,
1670 void **data, int *size,
1671 struct wl_buffer **buffer)
1672 {
1673 struct dri2_egl_display *dri2_dpy =
1674 dri2_egl_display(dri2_surf->base.Resource.Display);
1675 struct wl_shm_pool *pool;
1676 int fd, stride, size_map;
1677 void *data_map;
1678
1679 stride = dri2_wl_swrast_get_stride_for_format(format, w);
1680 size_map = h * stride;
1681
1682 /* Create a shareable buffer */
1683 fd = os_create_anonymous_file(size_map, NULL);
1684 if (fd < 0)
1685 return EGL_FALSE;
1686
1687 data_map = mmap(NULL, size_map, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
1688 if (data_map == MAP_FAILED) {
1689 close(fd);
1690 return EGL_FALSE;
1691 }
1692
1693 /* Share it in a wl_buffer */
1694 pool = wl_shm_create_pool(dri2_dpy->wl_shm, fd, size_map);
1695 wl_proxy_set_queue((struct wl_proxy *)pool, dri2_surf->wl_queue);
1696 *buffer = wl_shm_pool_create_buffer(pool, 0, w, h, stride, format);
1697 wl_shm_pool_destroy(pool);
1698 close(fd);
1699
1700 *data = data_map;
1701 *size = size_map;
1702 return EGL_TRUE;
1703 }
1704
1705 static int
1706 swrast_update_buffers(struct dri2_egl_surface *dri2_surf)
1707 {
1708 struct dri2_egl_display *dri2_dpy =
1709 dri2_egl_display(dri2_surf->base.Resource.Display);
1710
1711 /* we need to do the following operations only once per frame */
1712 if (dri2_surf->back)
1713 return 0;
1714
1715 if (dri2_surf->base.Width != dri2_surf->wl_win->width ||
1716 dri2_surf->base.Height != dri2_surf->wl_win->height) {
1717
1718 dri2_wl_release_buffers(dri2_surf);
1719
1720 dri2_surf->base.Width = dri2_surf->wl_win->width;
1721 dri2_surf->base.Height = dri2_surf->wl_win->height;
1722 dri2_surf->dx = dri2_surf->wl_win->dx;
1723 dri2_surf->dy = dri2_surf->wl_win->dy;
1724 dri2_surf->current = NULL;
1725 }
1726
1727 /* find back buffer */
1728
1729 /* There might be a buffer release already queued that wasn't processed */
1730 wl_display_dispatch_queue_pending(dri2_dpy->wl_dpy, dri2_surf->wl_queue);
1731
1732 /* try get free buffer already created */
1733 for (int i = 0; i < ARRAY_SIZE(dri2_surf->color_buffers); i++) {
1734 if (!dri2_surf->color_buffers[i].locked &&
1735 dri2_surf->color_buffers[i].wl_buffer) {
1736 dri2_surf->back = &dri2_surf->color_buffers[i];
1737 break;
1738 }
1739 }
1740
1741 /* else choose any another free location */
1742 if (!dri2_surf->back) {
1743 for (int i = 0; i < ARRAY_SIZE(dri2_surf->color_buffers); i++) {
1744 if (!dri2_surf->color_buffers[i].locked) {
1745 dri2_surf->back = &dri2_surf->color_buffers[i];
1746 if (!dri2_wl_swrast_allocate_buffer(dri2_surf,
1747 dri2_surf->format,
1748 dri2_surf->base.Width,
1749 dri2_surf->base.Height,
1750 &dri2_surf->back->data,
1751 &dri2_surf->back->data_size,
1752 &dri2_surf->back->wl_buffer)) {
1753 _eglError(EGL_BAD_ALLOC, "failed to allocate color buffer");
1754 return -1;
1755 }
1756 wl_buffer_add_listener(dri2_surf->back->wl_buffer,
1757 &wl_buffer_listener, dri2_surf);
1758 break;
1759 }
1760 }
1761 }
1762
1763 if (!dri2_surf->back) {
1764 _eglError(EGL_BAD_ALLOC, "failed to find free buffer");
1765 return -1;
1766 }
1767
1768 dri2_surf->back->locked = true;
1769
1770 /* If we have an extra unlocked buffer at this point, we had to do triple
1771 * buffering for a while, but now can go back to just double buffering.
1772 * That means we can free any unlocked buffer now. */
1773 for (int i = 0; i < ARRAY_SIZE(dri2_surf->color_buffers); i++) {
1774 if (!dri2_surf->color_buffers[i].locked &&
1775 dri2_surf->color_buffers[i].wl_buffer) {
1776 wl_buffer_destroy(dri2_surf->color_buffers[i].wl_buffer);
1777 munmap(dri2_surf->color_buffers[i].data,
1778 dri2_surf->color_buffers[i].data_size);
1779 dri2_surf->color_buffers[i].wl_buffer = NULL;
1780 dri2_surf->color_buffers[i].data = NULL;
1781 }
1782 }
1783
1784 return 0;
1785 }
1786
1787 static void*
1788 dri2_wl_swrast_get_frontbuffer_data(struct dri2_egl_surface *dri2_surf)
1789 {
1790 /* if there has been a resize: */
1791 if (!dri2_surf->current)
1792 return NULL;
1793
1794 return dri2_surf->current->data;
1795 }
1796
1797 static void*
1798 dri2_wl_swrast_get_backbuffer_data(struct dri2_egl_surface *dri2_surf)
1799 {
1800 assert(dri2_surf->back);
1801 return dri2_surf->back->data;
1802 }
1803
1804 static void
1805 dri2_wl_swrast_commit_backbuffer(struct dri2_egl_surface *dri2_surf)
1806 {
1807 struct dri2_egl_display *dri2_dpy = dri2_egl_display(dri2_surf->base.Resource.Display);
1808
1809 while (dri2_surf->throttle_callback != NULL)
1810 if (wl_display_dispatch_queue(dri2_dpy->wl_dpy,
1811 dri2_surf->wl_queue) == -1)
1812 return;
1813
1814 if (dri2_surf->base.SwapInterval > 0) {
1815 dri2_surf->throttle_callback =
1816 wl_surface_frame(dri2_surf->wl_surface_wrapper);
1817 wl_callback_add_listener(dri2_surf->throttle_callback,
1818 &throttle_listener, dri2_surf);
1819 }
1820
1821 dri2_surf->current = dri2_surf->back;
1822 dri2_surf->back = NULL;
1823
1824 wl_surface_attach(dri2_surf->wl_surface_wrapper,
1825 dri2_surf->current->wl_buffer,
1826 dri2_surf->dx, dri2_surf->dy);
1827
1828 dri2_surf->wl_win->attached_width = dri2_surf->base.Width;
1829 dri2_surf->wl_win->attached_height = dri2_surf->base.Height;
1830 /* reset resize growing parameters */
1831 dri2_surf->dx = 0;
1832 dri2_surf->dy = 0;
1833
1834 wl_surface_damage(dri2_surf->wl_surface_wrapper,
1835 0, 0, INT32_MAX, INT32_MAX);
1836 wl_surface_commit(dri2_surf->wl_surface_wrapper);
1837
1838 /* If we're not waiting for a frame callback then we'll at least throttle
1839 * to a sync callback so that we always give a chance for the compositor to
1840 * handle the commit and send a release event before checking for a free
1841 * buffer */
1842 if (dri2_surf->throttle_callback == NULL) {
1843 dri2_surf->throttle_callback = wl_display_sync(dri2_surf->wl_dpy_wrapper);
1844 wl_callback_add_listener(dri2_surf->throttle_callback,
1845 &throttle_listener, dri2_surf);
1846 }
1847
1848 wl_display_flush(dri2_dpy->wl_dpy);
1849 }
1850
1851 static void
1852 dri2_wl_swrast_get_drawable_info(__DRIdrawable * draw,
1853 int *x, int *y, int *w, int *h,
1854 void *loaderPrivate)
1855 {
1856 struct dri2_egl_surface *dri2_surf = loaderPrivate;
1857
1858 (void) swrast_update_buffers(dri2_surf);
1859 *x = 0;
1860 *y = 0;
1861 *w = dri2_surf->base.Width;
1862 *h = dri2_surf->base.Height;
1863 }
1864
1865 static void
1866 dri2_wl_swrast_get_image(__DRIdrawable * read,
1867 int x, int y, int w, int h,
1868 char *data, void *loaderPrivate)
1869 {
1870 struct dri2_egl_surface *dri2_surf = loaderPrivate;
1871 int copy_width = dri2_wl_swrast_get_stride_for_format(dri2_surf->format, w);
1872 int x_offset = dri2_wl_swrast_get_stride_for_format(dri2_surf->format, x);
1873 int src_stride = dri2_wl_swrast_get_stride_for_format(dri2_surf->format, dri2_surf->base.Width);
1874 int dst_stride = copy_width;
1875 char *src, *dst;
1876
1877 src = dri2_wl_swrast_get_frontbuffer_data(dri2_surf);
1878 if (!src) {
1879 memset(data, 0, copy_width * h);
1880 return;
1881 }
1882
1883 assert(data != src);
1884 assert(copy_width <= src_stride);
1885
1886 src += x_offset;
1887 src += y * src_stride;
1888 dst = data;
1889
1890 if (copy_width > src_stride-x_offset)
1891 copy_width = src_stride-x_offset;
1892 if (h > dri2_surf->base.Height-y)
1893 h = dri2_surf->base.Height-y;
1894
1895 for (; h>0; h--) {
1896 memcpy(dst, src, copy_width);
1897 src += src_stride;
1898 dst += dst_stride;
1899 }
1900 }
1901
1902 static void
1903 dri2_wl_swrast_put_image2(__DRIdrawable * draw, int op,
1904 int x, int y, int w, int h, int stride,
1905 char *data, void *loaderPrivate)
1906 {
1907 struct dri2_egl_surface *dri2_surf = loaderPrivate;
1908 int copy_width = dri2_wl_swrast_get_stride_for_format(dri2_surf->format, w);
1909 int dst_stride = dri2_wl_swrast_get_stride_for_format(dri2_surf->format, dri2_surf->base.Width);
1910 int x_offset = dri2_wl_swrast_get_stride_for_format(dri2_surf->format, x);
1911 char *src, *dst;
1912
1913 assert(copy_width <= stride);
1914
1915 (void) swrast_update_buffers(dri2_surf);
1916 dst = dri2_wl_swrast_get_backbuffer_data(dri2_surf);
1917
1918 /* partial copy, copy old content */
1919 if (copy_width < dst_stride)
1920 dri2_wl_swrast_get_image(draw, 0, 0,
1921 dri2_surf->base.Width, dri2_surf->base.Height,
1922 dst, loaderPrivate);
1923
1924 dst += x_offset;
1925 dst += y * dst_stride;
1926
1927 src = data;
1928
1929 /* drivers expect we do these checks (and some rely on it) */
1930 if (copy_width > dst_stride-x_offset)
1931 copy_width = dst_stride-x_offset;
1932 if (h > dri2_surf->base.Height-y)
1933 h = dri2_surf->base.Height-y;
1934
1935 for (; h>0; h--) {
1936 memcpy(dst, src, copy_width);
1937 src += stride;
1938 dst += dst_stride;
1939 }
1940 dri2_wl_swrast_commit_backbuffer(dri2_surf);
1941 }
1942
1943 static void
1944 dri2_wl_swrast_put_image(__DRIdrawable * draw, int op,
1945 int x, int y, int w, int h,
1946 char *data, void *loaderPrivate)
1947 {
1948 struct dri2_egl_surface *dri2_surf = loaderPrivate;
1949 int stride;
1950
1951 stride = dri2_wl_swrast_get_stride_for_format(dri2_surf->format, w);
1952 dri2_wl_swrast_put_image2(draw, op, x, y, w, h,
1953 stride, data, loaderPrivate);
1954 }
1955
1956 static EGLBoolean
1957 dri2_wl_swrast_swap_buffers(_EGLDriver *drv, _EGLDisplay *disp, _EGLSurface *draw)
1958 {
1959 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1960 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(draw);
1961
1962 dri2_dpy->core->swapBuffers(dri2_surf->dri_drawable);
1963 return EGL_TRUE;
1964 }
1965
1966 static void
1967 shm_handle_format(void *data, struct wl_shm *shm, uint32_t format)
1968 {
1969 struct dri2_egl_display *dri2_dpy = data;
1970 int visual_idx = dri2_wl_visual_idx_from_shm_format(format);
1971
1972 if (visual_idx == -1)
1973 return;
1974
1975 BITSET_SET(dri2_dpy->formats, visual_idx);
1976 }
1977
1978 static const struct wl_shm_listener shm_listener = {
1979 .format = shm_handle_format
1980 };
1981
1982 static void
1983 registry_handle_global_swrast(void *data, struct wl_registry *registry,
1984 uint32_t name, const char *interface,
1985 uint32_t version)
1986 {
1987 struct dri2_egl_display *dri2_dpy = data;
1988
1989 if (strcmp(interface, "wl_shm") == 0) {
1990 dri2_dpy->wl_shm =
1991 wl_registry_bind(registry, name, &wl_shm_interface, 1);
1992 wl_shm_add_listener(dri2_dpy->wl_shm, &shm_listener, dri2_dpy);
1993 }
1994 }
1995
1996 static const struct wl_registry_listener registry_listener_swrast = {
1997 .global = registry_handle_global_swrast,
1998 .global_remove = registry_handle_global_remove
1999 };
2000
2001 static const struct dri2_egl_display_vtbl dri2_wl_swrast_display_vtbl = {
2002 .authenticate = NULL,
2003 .create_window_surface = dri2_wl_create_window_surface,
2004 .create_pixmap_surface = dri2_wl_create_pixmap_surface,
2005 .create_pbuffer_surface = dri2_fallback_create_pbuffer_surface,
2006 .destroy_surface = dri2_wl_destroy_surface,
2007 .create_image = dri2_create_image_khr,
2008 .swap_buffers = dri2_wl_swrast_swap_buffers,
2009 .swap_buffers_with_damage = dri2_fallback_swap_buffers_with_damage,
2010 .swap_buffers_region = dri2_fallback_swap_buffers_region,
2011 .post_sub_buffer = dri2_fallback_post_sub_buffer,
2012 .copy_buffers = dri2_fallback_copy_buffers,
2013 .query_buffer_age = dri2_fallback_query_buffer_age,
2014 .create_wayland_buffer_from_image = dri2_fallback_create_wayland_buffer_from_image,
2015 .get_sync_values = dri2_fallback_get_sync_values,
2016 .get_dri_drawable = dri2_surface_get_dri_drawable,
2017 };
2018
2019 static const __DRIswrastLoaderExtension swrast_loader_extension = {
2020 .base = { __DRI_SWRAST_LOADER, 2 },
2021
2022 .getDrawableInfo = dri2_wl_swrast_get_drawable_info,
2023 .putImage = dri2_wl_swrast_put_image,
2024 .getImage = dri2_wl_swrast_get_image,
2025 .putImage2 = dri2_wl_swrast_put_image2,
2026 };
2027
2028 static const __DRIextension *swrast_loader_extensions[] = {
2029 &swrast_loader_extension.base,
2030 &image_lookup_extension.base,
2031 NULL,
2032 };
2033
2034 static EGLBoolean
2035 dri2_initialize_wayland_swrast(_EGLDriver *drv, _EGLDisplay *disp)
2036 {
2037 _EGLDevice *dev;
2038 struct dri2_egl_display *dri2_dpy;
2039
2040 dri2_dpy = calloc(1, sizeof *dri2_dpy);
2041 if (!dri2_dpy)
2042 return _eglError(EGL_BAD_ALLOC, "eglInitialize");
2043
2044 dri2_dpy->fd = -1;
2045 disp->DriverData = (void *) dri2_dpy;
2046 if (disp->PlatformDisplay == NULL) {
2047 dri2_dpy->wl_dpy = wl_display_connect(NULL);
2048 if (dri2_dpy->wl_dpy == NULL)
2049 goto cleanup;
2050 dri2_dpy->own_device = true;
2051 } else {
2052 dri2_dpy->wl_dpy = disp->PlatformDisplay;
2053 }
2054
2055 dev = _eglAddDevice(dri2_dpy->fd, true);
2056 if (!dev) {
2057 _eglError(EGL_NOT_INITIALIZED, "DRI2: failed to find EGLDevice");
2058 goto cleanup;
2059 }
2060
2061 disp->Device = dev;
2062
2063 dri2_dpy->wl_queue = wl_display_create_queue(dri2_dpy->wl_dpy);
2064
2065 dri2_dpy->wl_dpy_wrapper = wl_proxy_create_wrapper(dri2_dpy->wl_dpy);
2066 if (dri2_dpy->wl_dpy_wrapper == NULL)
2067 goto cleanup;
2068
2069 wl_proxy_set_queue((struct wl_proxy *) dri2_dpy->wl_dpy_wrapper,
2070 dri2_dpy->wl_queue);
2071
2072 if (dri2_dpy->own_device)
2073 wl_display_dispatch_pending(dri2_dpy->wl_dpy);
2074
2075 dri2_dpy->wl_registry = wl_display_get_registry(dri2_dpy->wl_dpy_wrapper);
2076 wl_registry_add_listener(dri2_dpy->wl_registry,
2077 &registry_listener_swrast, dri2_dpy);
2078
2079 if (roundtrip(dri2_dpy) < 0 || dri2_dpy->wl_shm == NULL)
2080 goto cleanup;
2081
2082 if (roundtrip(dri2_dpy) < 0 || !BITSET_TEST_RANGE(dri2_dpy->formats,
2083 0, EGL_DRI2_MAX_FORMATS))
2084 goto cleanup;
2085
2086 dri2_dpy->driver_name = strdup("swrast");
2087 if (!dri2_load_driver_swrast(disp))
2088 goto cleanup;
2089
2090 dri2_dpy->loader_extensions = swrast_loader_extensions;
2091
2092 if (!dri2_create_screen(disp))
2093 goto cleanup;
2094
2095 if (!dri2_setup_extensions(disp))
2096 goto cleanup;
2097
2098 dri2_setup_screen(disp);
2099
2100 dri2_wl_setup_swap_interval(disp);
2101
2102 if (!dri2_wl_add_configs_for_visuals(drv, disp)) {
2103 _eglError(EGL_NOT_INITIALIZED, "DRI2: failed to add configs");
2104 goto cleanup;
2105 }
2106
2107 /* Fill vtbl last to prevent accidentally calling virtual function during
2108 * initialization.
2109 */
2110 dri2_dpy->vtbl = &dri2_wl_swrast_display_vtbl;
2111
2112 return EGL_TRUE;
2113
2114 cleanup:
2115 dri2_display_destroy(disp);
2116 return EGL_FALSE;
2117 }
2118
2119 EGLBoolean
2120 dri2_initialize_wayland(_EGLDriver *drv, _EGLDisplay *disp)
2121 {
2122 EGLBoolean initialized = EGL_FALSE;
2123
2124 if (!disp->Options.ForceSoftware)
2125 initialized = dri2_initialize_wayland_drm(drv, disp);
2126
2127 if (!initialized)
2128 initialized = dri2_initialize_wayland_swrast(drv, disp);
2129
2130 return initialized;
2131
2132 }
2133
2134 void
2135 dri2_teardown_wayland(struct dri2_egl_display *dri2_dpy)
2136 {
2137 if (dri2_dpy->wl_drm)
2138 wl_drm_destroy(dri2_dpy->wl_drm);
2139 if (dri2_dpy->wl_dmabuf)
2140 zwp_linux_dmabuf_v1_destroy(dri2_dpy->wl_dmabuf);
2141 if (dri2_dpy->wl_shm)
2142 wl_shm_destroy(dri2_dpy->wl_shm);
2143 if (dri2_dpy->wl_registry)
2144 wl_registry_destroy(dri2_dpy->wl_registry);
2145 if (dri2_dpy->wl_queue)
2146 wl_event_queue_destroy(dri2_dpy->wl_queue);
2147 if (dri2_dpy->wl_dpy_wrapper)
2148 wl_proxy_wrapper_destroy(dri2_dpy->wl_dpy_wrapper);
2149
2150 for (int i = 0; dri2_dpy->wl_modifiers && i < ARRAY_SIZE(dri2_wl_visuals); i++)
2151 u_vector_finish(&dri2_dpy->wl_modifiers[i]);
2152 free(dri2_dpy->wl_modifiers);
2153
2154 if (dri2_dpy->own_device)
2155 wl_display_disconnect(dri2_dpy->wl_dpy);
2156 }