3a54badabfa30ed6f1a5c3b5a65ebb46f65bc251
[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 if (modifier != DRM_FORMAT_MOD_INVALID) {
933 supported_modifier = true;
934 } else {
935 int visual_idx = dri2_wl_visual_idx_from_fourcc(fourcc);
936 assert(visual_idx != -1);
937
938 uint64_t *mod;
939 u_vector_foreach(mod, &dri2_dpy->wl_modifiers[visual_idx]) {
940 if (*mod == DRM_FORMAT_MOD_INVALID) {
941 supported_modifier = true;
942 break;
943 }
944 }
945 }
946
947 if (dri2_dpy->wl_dmabuf && supported_modifier) {
948 struct zwp_linux_buffer_params_v1 *params;
949 int i;
950
951 /* We don't need a wrapper for wl_dmabuf objects, because we have to
952 * create the intermediate params object; we can set the queue on this,
953 * and the wl_buffer inherits it race-free. */
954 params = zwp_linux_dmabuf_v1_create_params(dri2_dpy->wl_dmabuf);
955 if (dri2_surf)
956 wl_proxy_set_queue((struct wl_proxy *) params, dri2_surf->wl_queue);
957
958 for (i = 0; i < num_planes; i++) {
959 __DRIimage *p_image;
960 int stride, offset;
961 int fd = -1;
962
963 p_image = dri2_dpy->image->fromPlanar(image, i, NULL);
964 if (!p_image) {
965 assert(i == 0);
966 p_image = image;
967 }
968
969 query = dri2_dpy->image->queryImage(p_image,
970 __DRI_IMAGE_ATTRIB_FD,
971 &fd);
972 query &= dri2_dpy->image->queryImage(p_image,
973 __DRI_IMAGE_ATTRIB_STRIDE,
974 &stride);
975 query &= dri2_dpy->image->queryImage(p_image,
976 __DRI_IMAGE_ATTRIB_OFFSET,
977 &offset);
978 if (image != p_image)
979 dri2_dpy->image->destroyImage(p_image);
980
981 if (!query) {
982 if (fd >= 0)
983 close(fd);
984 zwp_linux_buffer_params_v1_destroy(params);
985 return NULL;
986 }
987
988 zwp_linux_buffer_params_v1_add(params, fd, i, offset, stride,
989 modifier >> 32, modifier & 0xffffffff);
990 close(fd);
991 }
992
993 ret = zwp_linux_buffer_params_v1_create_immed(params, width, height,
994 fourcc, 0);
995 zwp_linux_buffer_params_v1_destroy(params);
996 } else if (dri2_dpy->capabilities & WL_DRM_CAPABILITY_PRIME) {
997 struct wl_drm *wl_drm =
998 dri2_surf ? dri2_surf->wl_drm_wrapper : dri2_dpy->wl_drm;
999 int fd, stride;
1000
1001 if (num_planes > 1)
1002 return NULL;
1003
1004 dri2_dpy->image->queryImage(image, __DRI_IMAGE_ATTRIB_FD, &fd);
1005 dri2_dpy->image->queryImage(image, __DRI_IMAGE_ATTRIB_STRIDE, &stride);
1006 ret = wl_drm_create_prime_buffer(wl_drm, fd, width, height, fourcc, 0,
1007 stride, 0, 0, 0, 0);
1008 close(fd);
1009 } else {
1010 struct wl_drm *wl_drm =
1011 dri2_surf ? dri2_surf->wl_drm_wrapper : dri2_dpy->wl_drm;
1012 int name, stride;
1013
1014 if (num_planes > 1)
1015 return NULL;
1016
1017 dri2_dpy->image->queryImage(image, __DRI_IMAGE_ATTRIB_NAME, &name);
1018 dri2_dpy->image->queryImage(image, __DRI_IMAGE_ATTRIB_STRIDE, &stride);
1019 ret = wl_drm_create_buffer(wl_drm, name, width, height, stride, fourcc);
1020 }
1021
1022 return ret;
1023 }
1024
1025 static EGLBoolean
1026 try_damage_buffer(struct dri2_egl_surface *dri2_surf,
1027 const EGLint *rects,
1028 EGLint n_rects)
1029 {
1030 if (wl_proxy_get_version((struct wl_proxy *) dri2_surf->wl_surface_wrapper)
1031 < WL_SURFACE_DAMAGE_BUFFER_SINCE_VERSION)
1032 return EGL_FALSE;
1033
1034 for (int i = 0; i < n_rects; i++) {
1035 const int *rect = &rects[i * 4];
1036
1037 wl_surface_damage_buffer(dri2_surf->wl_surface_wrapper,
1038 rect[0],
1039 dri2_surf->base.Height - rect[1] - rect[3],
1040 rect[2], rect[3]);
1041 }
1042 return EGL_TRUE;
1043 }
1044 /**
1045 * Called via eglSwapBuffers(), drv->API.SwapBuffers().
1046 */
1047 static EGLBoolean
1048 dri2_wl_swap_buffers_with_damage(_EGLDriver *drv,
1049 _EGLDisplay *disp,
1050 _EGLSurface *draw,
1051 const EGLint *rects,
1052 EGLint n_rects)
1053 {
1054 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1055 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(draw);
1056
1057 while (dri2_surf->throttle_callback != NULL)
1058 if (wl_display_dispatch_queue(dri2_dpy->wl_dpy,
1059 dri2_surf->wl_queue) == -1)
1060 return -1;
1061
1062 for (int i = 0; i < ARRAY_SIZE(dri2_surf->color_buffers); i++)
1063 if (dri2_surf->color_buffers[i].age > 0)
1064 dri2_surf->color_buffers[i].age++;
1065
1066 /* Make sure we have a back buffer in case we're swapping without ever
1067 * rendering. */
1068 if (update_buffers_if_needed(dri2_surf) < 0)
1069 return _eglError(EGL_BAD_ALLOC, "dri2_swap_buffers");
1070
1071 if (draw->SwapInterval > 0) {
1072 dri2_surf->throttle_callback =
1073 wl_surface_frame(dri2_surf->wl_surface_wrapper);
1074 wl_callback_add_listener(dri2_surf->throttle_callback,
1075 &throttle_listener, dri2_surf);
1076 }
1077
1078 dri2_surf->back->age = 1;
1079 dri2_surf->current = dri2_surf->back;
1080 dri2_surf->back = NULL;
1081
1082 if (!dri2_surf->current->wl_buffer) {
1083 __DRIimage *image;
1084
1085 if (dri2_dpy->is_different_gpu)
1086 image = dri2_surf->current->linear_copy;
1087 else
1088 image = dri2_surf->current->dri_image;
1089
1090 dri2_surf->current->wl_buffer =
1091 create_wl_buffer(dri2_dpy, dri2_surf, image);
1092
1093 dri2_surf->current->wl_release = false;
1094
1095 wl_buffer_add_listener(dri2_surf->current->wl_buffer,
1096 &wl_buffer_listener, dri2_surf);
1097 }
1098
1099 wl_surface_attach(dri2_surf->wl_surface_wrapper,
1100 dri2_surf->current->wl_buffer,
1101 dri2_surf->dx, dri2_surf->dy);
1102
1103 dri2_surf->wl_win->attached_width = dri2_surf->base.Width;
1104 dri2_surf->wl_win->attached_height = dri2_surf->base.Height;
1105 /* reset resize growing parameters */
1106 dri2_surf->dx = 0;
1107 dri2_surf->dy = 0;
1108
1109 /* If the compositor doesn't support damage_buffer, we deliberately
1110 * ignore the damage region and post maximum damage, due to
1111 * https://bugs.freedesktop.org/78190 */
1112 if (!n_rects || !try_damage_buffer(dri2_surf, rects, n_rects))
1113 wl_surface_damage(dri2_surf->wl_surface_wrapper,
1114 0, 0, INT32_MAX, INT32_MAX);
1115
1116 if (dri2_dpy->is_different_gpu) {
1117 _EGLContext *ctx = _eglGetCurrentContext();
1118 struct dri2_egl_context *dri2_ctx = dri2_egl_context(ctx);
1119 dri2_dpy->image->blitImage(dri2_ctx->dri_context,
1120 dri2_surf->current->linear_copy,
1121 dri2_surf->current->dri_image,
1122 0, 0, dri2_surf->base.Width,
1123 dri2_surf->base.Height,
1124 0, 0, dri2_surf->base.Width,
1125 dri2_surf->base.Height, 0);
1126 }
1127
1128 dri2_flush_drawable_for_swapbuffers(disp, draw);
1129 dri2_dpy->flush->invalidate(dri2_surf->dri_drawable);
1130
1131 wl_surface_commit(dri2_surf->wl_surface_wrapper);
1132
1133 /* If we're not waiting for a frame callback then we'll at least throttle
1134 * to a sync callback so that we always give a chance for the compositor to
1135 * handle the commit and send a release event before checking for a free
1136 * buffer */
1137 if (dri2_surf->throttle_callback == NULL) {
1138 dri2_surf->throttle_callback = wl_display_sync(dri2_surf->wl_dpy_wrapper);
1139 wl_callback_add_listener(dri2_surf->throttle_callback,
1140 &throttle_listener, dri2_surf);
1141 }
1142
1143 wl_display_flush(dri2_dpy->wl_dpy);
1144
1145 return EGL_TRUE;
1146 }
1147
1148 static EGLint
1149 dri2_wl_query_buffer_age(_EGLDriver *drv,
1150 _EGLDisplay *disp, _EGLSurface *surface)
1151 {
1152 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(surface);
1153
1154 if (update_buffers_if_needed(dri2_surf) < 0) {
1155 _eglError(EGL_BAD_ALLOC, "dri2_query_buffer_age");
1156 return -1;
1157 }
1158
1159 return dri2_surf->back->age;
1160 }
1161
1162 static EGLBoolean
1163 dri2_wl_swap_buffers(_EGLDriver *drv, _EGLDisplay *disp, _EGLSurface *draw)
1164 {
1165 return dri2_wl_swap_buffers_with_damage(drv, disp, draw, NULL, 0);
1166 }
1167
1168 static struct wl_buffer *
1169 dri2_wl_create_wayland_buffer_from_image(_EGLDriver *drv,
1170 _EGLDisplay *disp,
1171 _EGLImage *img)
1172 {
1173 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1174 struct dri2_egl_image *dri2_img = dri2_egl_image(img);
1175 __DRIimage *image = dri2_img->dri_image;
1176 struct wl_buffer *buffer;
1177 int format, visual_idx;
1178
1179 /* Check the upstream display supports this buffer's format. */
1180 dri2_dpy->image->queryImage(image, __DRI_IMAGE_ATTRIB_FORMAT, &format);
1181 visual_idx = dri2_wl_visual_idx_from_dri_image_format(format);
1182 if (visual_idx == -1)
1183 goto bad_format;
1184
1185 if (!BITSET_TEST(dri2_dpy->formats, visual_idx))
1186 goto bad_format;
1187
1188 buffer = create_wl_buffer(dri2_dpy, NULL, image);
1189
1190 /* The buffer object will have been created with our internal event queue
1191 * because it is using wl_dmabuf/wl_drm as a proxy factory. We want the
1192 * buffer to be used by the application so we'll reset it to the display's
1193 * default event queue. This isn't actually racy, as the only event the
1194 * buffer can get is a buffer release, which doesn't happen with an explicit
1195 * attach. */
1196 if (buffer)
1197 wl_proxy_set_queue((struct wl_proxy *) buffer, NULL);
1198
1199 return buffer;
1200
1201 bad_format:
1202 _eglError(EGL_BAD_MATCH, "unsupported image format");
1203 return NULL;
1204 }
1205
1206 static int
1207 dri2_wl_authenticate(_EGLDisplay *disp, uint32_t id)
1208 {
1209 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1210 int ret = 0;
1211
1212 if (dri2_dpy->is_render_node) {
1213 _eglLog(_EGL_WARNING, "wayland-egl: client asks server to "
1214 "authenticate for render-nodes");
1215 return 0;
1216 }
1217 dri2_dpy->authenticated = false;
1218
1219 wl_drm_authenticate(dri2_dpy->wl_drm, id);
1220 if (roundtrip(dri2_dpy) < 0)
1221 ret = -1;
1222
1223 if (!dri2_dpy->authenticated)
1224 ret = -1;
1225
1226 /* reset authenticated */
1227 dri2_dpy->authenticated = true;
1228
1229 return ret;
1230 }
1231
1232 static void
1233 drm_handle_device(void *data, struct wl_drm *drm, const char *device)
1234 {
1235 struct dri2_egl_display *dri2_dpy = data;
1236 drm_magic_t magic;
1237
1238 dri2_dpy->device_name = strdup(device);
1239 if (!dri2_dpy->device_name)
1240 return;
1241
1242 dri2_dpy->fd = loader_open_device(dri2_dpy->device_name);
1243 if (dri2_dpy->fd == -1) {
1244 _eglLog(_EGL_WARNING, "wayland-egl: could not open %s (%s)",
1245 dri2_dpy->device_name, strerror(errno));
1246 free(dri2_dpy->device_name);
1247 dri2_dpy->device_name = NULL;
1248 return;
1249 }
1250
1251 if (drmGetNodeTypeFromFd(dri2_dpy->fd) == DRM_NODE_RENDER) {
1252 dri2_dpy->authenticated = true;
1253 } else {
1254 if (drmGetMagic(dri2_dpy->fd, &magic)) {
1255 close(dri2_dpy->fd);
1256 dri2_dpy->fd = -1;
1257 free(dri2_dpy->device_name);
1258 dri2_dpy->device_name = NULL;
1259 _eglLog(_EGL_WARNING, "wayland-egl: drmGetMagic failed");
1260 return;
1261 }
1262 wl_drm_authenticate(dri2_dpy->wl_drm, magic);
1263 }
1264 }
1265
1266 static void
1267 drm_handle_format(void *data, struct wl_drm *drm, uint32_t format)
1268 {
1269 struct dri2_egl_display *dri2_dpy = data;
1270 int visual_idx = dri2_wl_visual_idx_from_fourcc(format);
1271
1272 if (visual_idx == -1)
1273 return;
1274
1275 BITSET_SET(dri2_dpy->formats, visual_idx);
1276 }
1277
1278 static void
1279 drm_handle_capabilities(void *data, struct wl_drm *drm, uint32_t value)
1280 {
1281 struct dri2_egl_display *dri2_dpy = data;
1282
1283 dri2_dpy->capabilities = value;
1284 }
1285
1286 static void
1287 drm_handle_authenticated(void *data, struct wl_drm *drm)
1288 {
1289 struct dri2_egl_display *dri2_dpy = data;
1290
1291 dri2_dpy->authenticated = true;
1292 }
1293
1294 static const struct wl_drm_listener drm_listener = {
1295 .device = drm_handle_device,
1296 .format = drm_handle_format,
1297 .authenticated = drm_handle_authenticated,
1298 .capabilities = drm_handle_capabilities
1299 };
1300
1301 static void
1302 dmabuf_ignore_format(void *data, struct zwp_linux_dmabuf_v1 *dmabuf,
1303 uint32_t format)
1304 {
1305 /* formats are implicitly advertised by the 'modifier' event, so ignore */
1306 }
1307
1308 static void
1309 dmabuf_handle_modifier(void *data, struct zwp_linux_dmabuf_v1 *dmabuf,
1310 uint32_t format, uint32_t modifier_hi,
1311 uint32_t modifier_lo)
1312 {
1313 struct dri2_egl_display *dri2_dpy = data;
1314 int visual_idx = dri2_wl_visual_idx_from_fourcc(format);
1315 uint64_t *mod;
1316
1317 if (visual_idx == -1)
1318 return;
1319
1320 BITSET_SET(dri2_dpy->formats, visual_idx);
1321
1322 mod = u_vector_add(&dri2_dpy->wl_modifiers[visual_idx]);
1323 *mod = combine_u32_into_u64(modifier_hi, modifier_lo);
1324 }
1325
1326 static const struct zwp_linux_dmabuf_v1_listener dmabuf_listener = {
1327 .format = dmabuf_ignore_format,
1328 .modifier = dmabuf_handle_modifier,
1329 };
1330
1331 static void
1332 registry_handle_global_drm(void *data, struct wl_registry *registry,
1333 uint32_t name, const char *interface,
1334 uint32_t version)
1335 {
1336 struct dri2_egl_display *dri2_dpy = data;
1337
1338 if (strcmp(interface, "wl_drm") == 0) {
1339 dri2_dpy->wl_drm =
1340 wl_registry_bind(registry, name, &wl_drm_interface, MIN2(version, 2));
1341 wl_drm_add_listener(dri2_dpy->wl_drm, &drm_listener, dri2_dpy);
1342 } else if (strcmp(interface, "zwp_linux_dmabuf_v1") == 0 && version >= 3) {
1343 dri2_dpy->wl_dmabuf =
1344 wl_registry_bind(registry, name, &zwp_linux_dmabuf_v1_interface,
1345 MIN2(version, 3));
1346 zwp_linux_dmabuf_v1_add_listener(dri2_dpy->wl_dmabuf, &dmabuf_listener,
1347 dri2_dpy);
1348 }
1349 }
1350
1351 static void
1352 registry_handle_global_remove(void *data, struct wl_registry *registry,
1353 uint32_t name)
1354 {
1355 }
1356
1357 static const struct wl_registry_listener registry_listener_drm = {
1358 .global = registry_handle_global_drm,
1359 .global_remove = registry_handle_global_remove
1360 };
1361
1362 static void
1363 dri2_wl_setup_swap_interval(_EGLDisplay *disp)
1364 {
1365 /* We can't use values greater than 1 on Wayland because we are using the
1366 * frame callback to synchronise the frame and the only way we be sure to
1367 * get a frame callback is to attach a new buffer. Therefore we can't just
1368 * sit drawing nothing to wait until the next ‘n’ frame callbacks */
1369
1370 dri2_setup_swap_interval(disp, 1);
1371 }
1372
1373 static const struct dri2_egl_display_vtbl dri2_wl_display_vtbl = {
1374 .authenticate = dri2_wl_authenticate,
1375 .create_window_surface = dri2_wl_create_window_surface,
1376 .create_pixmap_surface = dri2_wl_create_pixmap_surface,
1377 .create_pbuffer_surface = dri2_fallback_create_pbuffer_surface,
1378 .destroy_surface = dri2_wl_destroy_surface,
1379 .create_image = dri2_create_image_khr,
1380 .swap_buffers = dri2_wl_swap_buffers,
1381 .swap_buffers_with_damage = dri2_wl_swap_buffers_with_damage,
1382 .swap_buffers_region = dri2_fallback_swap_buffers_region,
1383 .post_sub_buffer = dri2_fallback_post_sub_buffer,
1384 .copy_buffers = dri2_fallback_copy_buffers,
1385 .query_buffer_age = dri2_wl_query_buffer_age,
1386 .create_wayland_buffer_from_image = dri2_wl_create_wayland_buffer_from_image,
1387 .get_sync_values = dri2_fallback_get_sync_values,
1388 .get_dri_drawable = dri2_surface_get_dri_drawable,
1389 };
1390
1391 static const __DRIextension *dri2_loader_extensions[] = {
1392 &dri2_loader_extension.base,
1393 &image_loader_extension.base,
1394 &image_lookup_extension.base,
1395 &use_invalidate.base,
1396 NULL,
1397 };
1398
1399 static const __DRIextension *image_loader_extensions[] = {
1400 &image_loader_extension.base,
1401 &image_lookup_extension.base,
1402 &use_invalidate.base,
1403 NULL,
1404 };
1405
1406 static EGLBoolean
1407 dri2_wl_add_configs_for_visuals(_EGLDriver *drv, _EGLDisplay *disp)
1408 {
1409 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1410 unsigned int format_count[ARRAY_SIZE(dri2_wl_visuals)] = { 0 };
1411 unsigned int count = 0;
1412 bool assigned;
1413
1414 for (unsigned i = 0; dri2_dpy->driver_configs[i]; i++) {
1415 assigned = false;
1416
1417 for (unsigned j = 0; j < ARRAY_SIZE(dri2_wl_visuals); j++) {
1418 struct dri2_egl_config *dri2_conf;
1419
1420 if (!BITSET_TEST(dri2_dpy->formats, j))
1421 continue;
1422
1423 dri2_conf = dri2_add_config(disp, dri2_dpy->driver_configs[i],
1424 count + 1, EGL_WINDOW_BIT, NULL, dri2_wl_visuals[j].rgba_shifts, dri2_wl_visuals[j].rgba_sizes);
1425 if (dri2_conf) {
1426 if (dri2_conf->base.ConfigID == count + 1)
1427 count++;
1428 format_count[j]++;
1429 assigned = true;
1430 }
1431 }
1432
1433 if (!assigned && dri2_dpy->is_different_gpu) {
1434 struct dri2_egl_config *dri2_conf;
1435 int alt_dri_image_format, c, s;
1436
1437 /* No match for config. Try if we can blitImage convert to a visual */
1438 c = dri2_wl_visual_idx_from_config(dri2_dpy,
1439 dri2_dpy->driver_configs[i]);
1440
1441 if (c == -1)
1442 continue;
1443
1444 /* Find optimal target visual for blitImage conversion, if any. */
1445 alt_dri_image_format = dri2_wl_visuals[c].alt_dri_image_format;
1446 s = dri2_wl_visual_idx_from_dri_image_format(alt_dri_image_format);
1447
1448 if (s == -1 || !BITSET_TEST(dri2_dpy->formats, s))
1449 continue;
1450
1451 /* Visual s works for the Wayland server, and c can be converted into s
1452 * by our client gpu during PRIME blitImage conversion to a linear
1453 * wl_buffer, so add visual c as supported by the client renderer.
1454 */
1455 dri2_conf = dri2_add_config(disp, dri2_dpy->driver_configs[i],
1456 count + 1, EGL_WINDOW_BIT, NULL,
1457 dri2_wl_visuals[c].rgba_shifts,
1458 dri2_wl_visuals[c].rgba_sizes);
1459 if (dri2_conf) {
1460 if (dri2_conf->base.ConfigID == count + 1)
1461 count++;
1462 format_count[c]++;
1463 if (format_count[c] == 1)
1464 _eglLog(_EGL_DEBUG, "Client format %s to server format %s via "
1465 "PRIME blitImage.", dri2_wl_visuals[c].format_name,
1466 dri2_wl_visuals[s].format_name);
1467 }
1468 }
1469 }
1470
1471 for (unsigned i = 0; i < ARRAY_SIZE(format_count); i++) {
1472 if (!format_count[i]) {
1473 _eglLog(_EGL_DEBUG, "No DRI config supports native format %s",
1474 dri2_wl_visuals[i].format_name);
1475 }
1476 }
1477
1478 return (count != 0);
1479 }
1480
1481 static EGLBoolean
1482 dri2_initialize_wayland_drm(_EGLDriver *drv, _EGLDisplay *disp)
1483 {
1484 _EGLDevice *dev;
1485 struct dri2_egl_display *dri2_dpy;
1486
1487 dri2_dpy = calloc(1, sizeof *dri2_dpy);
1488 if (!dri2_dpy)
1489 return _eglError(EGL_BAD_ALLOC, "eglInitialize");
1490
1491 dri2_dpy->fd = -1;
1492 disp->DriverData = (void *) dri2_dpy;
1493 if (disp->PlatformDisplay == NULL) {
1494 dri2_dpy->wl_dpy = wl_display_connect(NULL);
1495 if (dri2_dpy->wl_dpy == NULL)
1496 goto cleanup;
1497 dri2_dpy->own_device = true;
1498 } else {
1499 dri2_dpy->wl_dpy = disp->PlatformDisplay;
1500 }
1501
1502 dri2_dpy->wl_modifiers =
1503 calloc(ARRAY_SIZE(dri2_wl_visuals), sizeof(*dri2_dpy->wl_modifiers));
1504 if (!dri2_dpy->wl_modifiers)
1505 goto cleanup;
1506 for (int i = 0; i < ARRAY_SIZE(dri2_wl_visuals); i++) {
1507 if (!u_vector_init(&dri2_dpy->wl_modifiers[i], sizeof(uint64_t), 32))
1508 goto cleanup;
1509 }
1510
1511 dri2_dpy->wl_queue = wl_display_create_queue(dri2_dpy->wl_dpy);
1512
1513 dri2_dpy->wl_dpy_wrapper = wl_proxy_create_wrapper(dri2_dpy->wl_dpy);
1514 if (dri2_dpy->wl_dpy_wrapper == NULL)
1515 goto cleanup;
1516
1517 wl_proxy_set_queue((struct wl_proxy *) dri2_dpy->wl_dpy_wrapper,
1518 dri2_dpy->wl_queue);
1519
1520 if (dri2_dpy->own_device)
1521 wl_display_dispatch_pending(dri2_dpy->wl_dpy);
1522
1523 dri2_dpy->wl_registry = wl_display_get_registry(dri2_dpy->wl_dpy_wrapper);
1524 wl_registry_add_listener(dri2_dpy->wl_registry,
1525 &registry_listener_drm, dri2_dpy);
1526 if (roundtrip(dri2_dpy) < 0 || dri2_dpy->wl_drm == NULL)
1527 goto cleanup;
1528
1529 if (roundtrip(dri2_dpy) < 0 || dri2_dpy->fd == -1)
1530 goto cleanup;
1531
1532 if (roundtrip(dri2_dpy) < 0 || !dri2_dpy->authenticated)
1533 goto cleanup;
1534
1535 dri2_dpy->fd = loader_get_user_preferred_fd(dri2_dpy->fd,
1536 &dri2_dpy->is_different_gpu);
1537 dev = _eglAddDevice(dri2_dpy->fd, false);
1538 if (!dev) {
1539 _eglError(EGL_NOT_INITIALIZED, "DRI2: failed to find EGLDevice");
1540 goto cleanup;
1541 }
1542
1543 disp->Device = dev;
1544
1545 if (dri2_dpy->is_different_gpu) {
1546 free(dri2_dpy->device_name);
1547 dri2_dpy->device_name = loader_get_device_name_for_fd(dri2_dpy->fd);
1548 if (!dri2_dpy->device_name) {
1549 _eglError(EGL_BAD_ALLOC, "wayland-egl: failed to get device name "
1550 "for requested GPU");
1551 goto cleanup;
1552 }
1553 }
1554
1555 /* we have to do the check now, because loader_get_user_preferred_fd
1556 * will return a render-node when the requested gpu is different
1557 * to the server, but also if the client asks for the same gpu than
1558 * the server by requesting its pci-id */
1559 dri2_dpy->is_render_node = drmGetNodeTypeFromFd(dri2_dpy->fd) == DRM_NODE_RENDER;
1560
1561 dri2_dpy->driver_name = loader_get_driver_for_fd(dri2_dpy->fd);
1562 if (dri2_dpy->driver_name == NULL) {
1563 _eglError(EGL_BAD_ALLOC, "DRI2: failed to get driver name");
1564 goto cleanup;
1565 }
1566
1567 /* render nodes cannot use Gem names, and thus do not support
1568 * the __DRI_DRI2_LOADER extension */
1569 if (!dri2_dpy->is_render_node) {
1570 dri2_dpy->loader_extensions = dri2_loader_extensions;
1571 if (!dri2_load_driver(disp)) {
1572 _eglError(EGL_BAD_ALLOC, "DRI2: failed to load driver");
1573 goto cleanup;
1574 }
1575 } else {
1576 dri2_dpy->loader_extensions = image_loader_extensions;
1577 if (!dri2_load_driver_dri3(disp)) {
1578 _eglError(EGL_BAD_ALLOC, "DRI3: failed to load driver");
1579 goto cleanup;
1580 }
1581 }
1582
1583 if (!dri2_create_screen(disp))
1584 goto cleanup;
1585
1586 if (!dri2_setup_extensions(disp))
1587 goto cleanup;
1588
1589 dri2_setup_screen(disp);
1590
1591 dri2_wl_setup_swap_interval(disp);
1592
1593 /* To use Prime, we must have _DRI_IMAGE v7 at least.
1594 * createImageFromFds support indicates that Prime export/import
1595 * is supported by the driver. Fall back to
1596 * gem names if we don't have Prime support. */
1597
1598 if (dri2_dpy->image->base.version < 7 ||
1599 dri2_dpy->image->createImageFromFds == NULL)
1600 dri2_dpy->capabilities &= ~WL_DRM_CAPABILITY_PRIME;
1601
1602 /* We cannot use Gem names with render-nodes, only prime fds (dma-buf).
1603 * The server needs to accept them */
1604 if (dri2_dpy->is_render_node &&
1605 !(dri2_dpy->capabilities & WL_DRM_CAPABILITY_PRIME)) {
1606 _eglLog(_EGL_WARNING, "wayland-egl: display is not render-node capable");
1607 goto cleanup;
1608 }
1609
1610 if (dri2_dpy->is_different_gpu &&
1611 (dri2_dpy->image->base.version < 9 ||
1612 dri2_dpy->image->blitImage == NULL)) {
1613 _eglLog(_EGL_WARNING, "wayland-egl: Different GPU selected, but the "
1614 "Image extension in the driver is not "
1615 "compatible. Version 9 or later and blitImage() "
1616 "are required");
1617 goto cleanup;
1618 }
1619
1620 if (!dri2_wl_add_configs_for_visuals(drv, disp)) {
1621 _eglError(EGL_NOT_INITIALIZED, "DRI2: failed to add configs");
1622 goto cleanup;
1623 }
1624
1625 dri2_set_WL_bind_wayland_display(drv, disp);
1626 /* When cannot convert EGLImage to wl_buffer when on a different gpu,
1627 * because the buffer of the EGLImage has likely a tiling mode the server
1628 * gpu won't support. These is no way to check for now. Thus do not support the
1629 * extension */
1630 if (!dri2_dpy->is_different_gpu)
1631 disp->Extensions.WL_create_wayland_buffer_from_image = EGL_TRUE;
1632
1633 disp->Extensions.EXT_buffer_age = EGL_TRUE;
1634
1635 disp->Extensions.EXT_swap_buffers_with_damage = EGL_TRUE;
1636
1637 /* Fill vtbl last to prevent accidentally calling virtual function during
1638 * initialization.
1639 */
1640 dri2_dpy->vtbl = &dri2_wl_display_vtbl;
1641
1642 return EGL_TRUE;
1643
1644 cleanup:
1645 dri2_display_destroy(disp);
1646 return EGL_FALSE;
1647 }
1648
1649 static int
1650 dri2_wl_swrast_get_stride_for_format(int format, int w)
1651 {
1652 int visual_idx = dri2_wl_visual_idx_from_shm_format(format);
1653
1654 assume(visual_idx != -1);
1655
1656 return w * (dri2_wl_visuals[visual_idx].bpp / 8);
1657 }
1658
1659 static EGLBoolean
1660 dri2_wl_swrast_allocate_buffer(struct dri2_egl_surface *dri2_surf,
1661 int format, int w, int h,
1662 void **data, int *size,
1663 struct wl_buffer **buffer)
1664 {
1665 struct dri2_egl_display *dri2_dpy =
1666 dri2_egl_display(dri2_surf->base.Resource.Display);
1667 struct wl_shm_pool *pool;
1668 int fd, stride, size_map;
1669 void *data_map;
1670
1671 stride = dri2_wl_swrast_get_stride_for_format(format, w);
1672 size_map = h * stride;
1673
1674 /* Create a shareable buffer */
1675 fd = os_create_anonymous_file(size_map, NULL);
1676 if (fd < 0)
1677 return EGL_FALSE;
1678
1679 data_map = mmap(NULL, size_map, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
1680 if (data_map == MAP_FAILED) {
1681 close(fd);
1682 return EGL_FALSE;
1683 }
1684
1685 /* Share it in a wl_buffer */
1686 pool = wl_shm_create_pool(dri2_dpy->wl_shm, fd, size_map);
1687 wl_proxy_set_queue((struct wl_proxy *)pool, dri2_surf->wl_queue);
1688 *buffer = wl_shm_pool_create_buffer(pool, 0, w, h, stride, format);
1689 wl_shm_pool_destroy(pool);
1690 close(fd);
1691
1692 *data = data_map;
1693 *size = size_map;
1694 return EGL_TRUE;
1695 }
1696
1697 static int
1698 swrast_update_buffers(struct dri2_egl_surface *dri2_surf)
1699 {
1700 struct dri2_egl_display *dri2_dpy =
1701 dri2_egl_display(dri2_surf->base.Resource.Display);
1702
1703 /* we need to do the following operations only once per frame */
1704 if (dri2_surf->back)
1705 return 0;
1706
1707 if (dri2_surf->base.Width != dri2_surf->wl_win->width ||
1708 dri2_surf->base.Height != dri2_surf->wl_win->height) {
1709
1710 dri2_wl_release_buffers(dri2_surf);
1711
1712 dri2_surf->base.Width = dri2_surf->wl_win->width;
1713 dri2_surf->base.Height = dri2_surf->wl_win->height;
1714 dri2_surf->dx = dri2_surf->wl_win->dx;
1715 dri2_surf->dy = dri2_surf->wl_win->dy;
1716 dri2_surf->current = NULL;
1717 }
1718
1719 /* find back buffer */
1720
1721 /* There might be a buffer release already queued that wasn't processed */
1722 wl_display_dispatch_queue_pending(dri2_dpy->wl_dpy, dri2_surf->wl_queue);
1723
1724 /* try get free buffer already created */
1725 for (int i = 0; i < ARRAY_SIZE(dri2_surf->color_buffers); i++) {
1726 if (!dri2_surf->color_buffers[i].locked &&
1727 dri2_surf->color_buffers[i].wl_buffer) {
1728 dri2_surf->back = &dri2_surf->color_buffers[i];
1729 break;
1730 }
1731 }
1732
1733 /* else choose any another free location */
1734 if (!dri2_surf->back) {
1735 for (int i = 0; i < ARRAY_SIZE(dri2_surf->color_buffers); i++) {
1736 if (!dri2_surf->color_buffers[i].locked) {
1737 dri2_surf->back = &dri2_surf->color_buffers[i];
1738 if (!dri2_wl_swrast_allocate_buffer(dri2_surf,
1739 dri2_surf->format,
1740 dri2_surf->base.Width,
1741 dri2_surf->base.Height,
1742 &dri2_surf->back->data,
1743 &dri2_surf->back->data_size,
1744 &dri2_surf->back->wl_buffer)) {
1745 _eglError(EGL_BAD_ALLOC, "failed to allocate color buffer");
1746 return -1;
1747 }
1748 wl_buffer_add_listener(dri2_surf->back->wl_buffer,
1749 &wl_buffer_listener, dri2_surf);
1750 break;
1751 }
1752 }
1753 }
1754
1755 if (!dri2_surf->back) {
1756 _eglError(EGL_BAD_ALLOC, "failed to find free buffer");
1757 return -1;
1758 }
1759
1760 dri2_surf->back->locked = true;
1761
1762 /* If we have an extra unlocked buffer at this point, we had to do triple
1763 * buffering for a while, but now can go back to just double buffering.
1764 * That means we can free any unlocked buffer now. */
1765 for (int i = 0; i < ARRAY_SIZE(dri2_surf->color_buffers); i++) {
1766 if (!dri2_surf->color_buffers[i].locked &&
1767 dri2_surf->color_buffers[i].wl_buffer) {
1768 wl_buffer_destroy(dri2_surf->color_buffers[i].wl_buffer);
1769 munmap(dri2_surf->color_buffers[i].data,
1770 dri2_surf->color_buffers[i].data_size);
1771 dri2_surf->color_buffers[i].wl_buffer = NULL;
1772 dri2_surf->color_buffers[i].data = NULL;
1773 }
1774 }
1775
1776 return 0;
1777 }
1778
1779 static void*
1780 dri2_wl_swrast_get_frontbuffer_data(struct dri2_egl_surface *dri2_surf)
1781 {
1782 /* if there has been a resize: */
1783 if (!dri2_surf->current)
1784 return NULL;
1785
1786 return dri2_surf->current->data;
1787 }
1788
1789 static void*
1790 dri2_wl_swrast_get_backbuffer_data(struct dri2_egl_surface *dri2_surf)
1791 {
1792 assert(dri2_surf->back);
1793 return dri2_surf->back->data;
1794 }
1795
1796 static void
1797 dri2_wl_swrast_commit_backbuffer(struct dri2_egl_surface *dri2_surf)
1798 {
1799 struct dri2_egl_display *dri2_dpy = dri2_egl_display(dri2_surf->base.Resource.Display);
1800
1801 while (dri2_surf->throttle_callback != NULL)
1802 if (wl_display_dispatch_queue(dri2_dpy->wl_dpy,
1803 dri2_surf->wl_queue) == -1)
1804 return;
1805
1806 if (dri2_surf->base.SwapInterval > 0) {
1807 dri2_surf->throttle_callback =
1808 wl_surface_frame(dri2_surf->wl_surface_wrapper);
1809 wl_callback_add_listener(dri2_surf->throttle_callback,
1810 &throttle_listener, dri2_surf);
1811 }
1812
1813 dri2_surf->current = dri2_surf->back;
1814 dri2_surf->back = NULL;
1815
1816 wl_surface_attach(dri2_surf->wl_surface_wrapper,
1817 dri2_surf->current->wl_buffer,
1818 dri2_surf->dx, dri2_surf->dy);
1819
1820 dri2_surf->wl_win->attached_width = dri2_surf->base.Width;
1821 dri2_surf->wl_win->attached_height = dri2_surf->base.Height;
1822 /* reset resize growing parameters */
1823 dri2_surf->dx = 0;
1824 dri2_surf->dy = 0;
1825
1826 wl_surface_damage(dri2_surf->wl_surface_wrapper,
1827 0, 0, INT32_MAX, INT32_MAX);
1828 wl_surface_commit(dri2_surf->wl_surface_wrapper);
1829
1830 /* If we're not waiting for a frame callback then we'll at least throttle
1831 * to a sync callback so that we always give a chance for the compositor to
1832 * handle the commit and send a release event before checking for a free
1833 * buffer */
1834 if (dri2_surf->throttle_callback == NULL) {
1835 dri2_surf->throttle_callback = wl_display_sync(dri2_surf->wl_dpy_wrapper);
1836 wl_callback_add_listener(dri2_surf->throttle_callback,
1837 &throttle_listener, dri2_surf);
1838 }
1839
1840 wl_display_flush(dri2_dpy->wl_dpy);
1841 }
1842
1843 static void
1844 dri2_wl_swrast_get_drawable_info(__DRIdrawable * draw,
1845 int *x, int *y, int *w, int *h,
1846 void *loaderPrivate)
1847 {
1848 struct dri2_egl_surface *dri2_surf = loaderPrivate;
1849
1850 (void) swrast_update_buffers(dri2_surf);
1851 *x = 0;
1852 *y = 0;
1853 *w = dri2_surf->base.Width;
1854 *h = dri2_surf->base.Height;
1855 }
1856
1857 static void
1858 dri2_wl_swrast_get_image(__DRIdrawable * read,
1859 int x, int y, int w, int h,
1860 char *data, void *loaderPrivate)
1861 {
1862 struct dri2_egl_surface *dri2_surf = loaderPrivate;
1863 int copy_width = dri2_wl_swrast_get_stride_for_format(dri2_surf->format, w);
1864 int x_offset = dri2_wl_swrast_get_stride_for_format(dri2_surf->format, x);
1865 int src_stride = dri2_wl_swrast_get_stride_for_format(dri2_surf->format, dri2_surf->base.Width);
1866 int dst_stride = copy_width;
1867 char *src, *dst;
1868
1869 src = dri2_wl_swrast_get_frontbuffer_data(dri2_surf);
1870 if (!src) {
1871 memset(data, 0, copy_width * h);
1872 return;
1873 }
1874
1875 assert(data != src);
1876 assert(copy_width <= src_stride);
1877
1878 src += x_offset;
1879 src += y * src_stride;
1880 dst = data;
1881
1882 if (copy_width > src_stride-x_offset)
1883 copy_width = src_stride-x_offset;
1884 if (h > dri2_surf->base.Height-y)
1885 h = dri2_surf->base.Height-y;
1886
1887 for (; h>0; h--) {
1888 memcpy(dst, src, copy_width);
1889 src += src_stride;
1890 dst += dst_stride;
1891 }
1892 }
1893
1894 static void
1895 dri2_wl_swrast_put_image2(__DRIdrawable * draw, int op,
1896 int x, int y, int w, int h, int stride,
1897 char *data, void *loaderPrivate)
1898 {
1899 struct dri2_egl_surface *dri2_surf = loaderPrivate;
1900 int copy_width = dri2_wl_swrast_get_stride_for_format(dri2_surf->format, w);
1901 int dst_stride = dri2_wl_swrast_get_stride_for_format(dri2_surf->format, dri2_surf->base.Width);
1902 int x_offset = dri2_wl_swrast_get_stride_for_format(dri2_surf->format, x);
1903 char *src, *dst;
1904
1905 assert(copy_width <= stride);
1906
1907 (void) swrast_update_buffers(dri2_surf);
1908 dst = dri2_wl_swrast_get_backbuffer_data(dri2_surf);
1909
1910 /* partial copy, copy old content */
1911 if (copy_width < dst_stride)
1912 dri2_wl_swrast_get_image(draw, 0, 0,
1913 dri2_surf->base.Width, dri2_surf->base.Height,
1914 dst, loaderPrivate);
1915
1916 dst += x_offset;
1917 dst += y * dst_stride;
1918
1919 src = data;
1920
1921 /* drivers expect we do these checks (and some rely on it) */
1922 if (copy_width > dst_stride-x_offset)
1923 copy_width = dst_stride-x_offset;
1924 if (h > dri2_surf->base.Height-y)
1925 h = dri2_surf->base.Height-y;
1926
1927 for (; h>0; h--) {
1928 memcpy(dst, src, copy_width);
1929 src += stride;
1930 dst += dst_stride;
1931 }
1932 dri2_wl_swrast_commit_backbuffer(dri2_surf);
1933 }
1934
1935 static void
1936 dri2_wl_swrast_put_image(__DRIdrawable * draw, int op,
1937 int x, int y, int w, int h,
1938 char *data, void *loaderPrivate)
1939 {
1940 struct dri2_egl_surface *dri2_surf = loaderPrivate;
1941 int stride;
1942
1943 stride = dri2_wl_swrast_get_stride_for_format(dri2_surf->format, w);
1944 dri2_wl_swrast_put_image2(draw, op, x, y, w, h,
1945 stride, data, loaderPrivate);
1946 }
1947
1948 static EGLBoolean
1949 dri2_wl_swrast_swap_buffers(_EGLDriver *drv, _EGLDisplay *disp, _EGLSurface *draw)
1950 {
1951 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1952 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(draw);
1953
1954 dri2_dpy->core->swapBuffers(dri2_surf->dri_drawable);
1955 return EGL_TRUE;
1956 }
1957
1958 static void
1959 shm_handle_format(void *data, struct wl_shm *shm, uint32_t format)
1960 {
1961 struct dri2_egl_display *dri2_dpy = data;
1962 int visual_idx = dri2_wl_visual_idx_from_shm_format(format);
1963
1964 if (visual_idx == -1)
1965 return;
1966
1967 BITSET_SET(dri2_dpy->formats, visual_idx);
1968 }
1969
1970 static const struct wl_shm_listener shm_listener = {
1971 .format = shm_handle_format
1972 };
1973
1974 static void
1975 registry_handle_global_swrast(void *data, struct wl_registry *registry,
1976 uint32_t name, const char *interface,
1977 uint32_t version)
1978 {
1979 struct dri2_egl_display *dri2_dpy = data;
1980
1981 if (strcmp(interface, "wl_shm") == 0) {
1982 dri2_dpy->wl_shm =
1983 wl_registry_bind(registry, name, &wl_shm_interface, 1);
1984 wl_shm_add_listener(dri2_dpy->wl_shm, &shm_listener, dri2_dpy);
1985 }
1986 }
1987
1988 static const struct wl_registry_listener registry_listener_swrast = {
1989 .global = registry_handle_global_swrast,
1990 .global_remove = registry_handle_global_remove
1991 };
1992
1993 static const struct dri2_egl_display_vtbl dri2_wl_swrast_display_vtbl = {
1994 .authenticate = NULL,
1995 .create_window_surface = dri2_wl_create_window_surface,
1996 .create_pixmap_surface = dri2_wl_create_pixmap_surface,
1997 .create_pbuffer_surface = dri2_fallback_create_pbuffer_surface,
1998 .destroy_surface = dri2_wl_destroy_surface,
1999 .create_image = dri2_create_image_khr,
2000 .swap_buffers = dri2_wl_swrast_swap_buffers,
2001 .swap_buffers_with_damage = dri2_fallback_swap_buffers_with_damage,
2002 .swap_buffers_region = dri2_fallback_swap_buffers_region,
2003 .post_sub_buffer = dri2_fallback_post_sub_buffer,
2004 .copy_buffers = dri2_fallback_copy_buffers,
2005 .query_buffer_age = dri2_fallback_query_buffer_age,
2006 .create_wayland_buffer_from_image = dri2_fallback_create_wayland_buffer_from_image,
2007 .get_sync_values = dri2_fallback_get_sync_values,
2008 .get_dri_drawable = dri2_surface_get_dri_drawable,
2009 };
2010
2011 static const __DRIswrastLoaderExtension swrast_loader_extension = {
2012 .base = { __DRI_SWRAST_LOADER, 2 },
2013
2014 .getDrawableInfo = dri2_wl_swrast_get_drawable_info,
2015 .putImage = dri2_wl_swrast_put_image,
2016 .getImage = dri2_wl_swrast_get_image,
2017 .putImage2 = dri2_wl_swrast_put_image2,
2018 };
2019
2020 static const __DRIextension *swrast_loader_extensions[] = {
2021 &swrast_loader_extension.base,
2022 &image_lookup_extension.base,
2023 NULL,
2024 };
2025
2026 static EGLBoolean
2027 dri2_initialize_wayland_swrast(_EGLDriver *drv, _EGLDisplay *disp)
2028 {
2029 _EGLDevice *dev;
2030 struct dri2_egl_display *dri2_dpy;
2031
2032 dri2_dpy = calloc(1, sizeof *dri2_dpy);
2033 if (!dri2_dpy)
2034 return _eglError(EGL_BAD_ALLOC, "eglInitialize");
2035
2036 dri2_dpy->fd = -1;
2037 disp->DriverData = (void *) dri2_dpy;
2038 if (disp->PlatformDisplay == NULL) {
2039 dri2_dpy->wl_dpy = wl_display_connect(NULL);
2040 if (dri2_dpy->wl_dpy == NULL)
2041 goto cleanup;
2042 dri2_dpy->own_device = true;
2043 } else {
2044 dri2_dpy->wl_dpy = disp->PlatformDisplay;
2045 }
2046
2047 dev = _eglAddDevice(dri2_dpy->fd, true);
2048 if (!dev) {
2049 _eglError(EGL_NOT_INITIALIZED, "DRI2: failed to find EGLDevice");
2050 goto cleanup;
2051 }
2052
2053 disp->Device = dev;
2054
2055 dri2_dpy->wl_queue = wl_display_create_queue(dri2_dpy->wl_dpy);
2056
2057 dri2_dpy->wl_dpy_wrapper = wl_proxy_create_wrapper(dri2_dpy->wl_dpy);
2058 if (dri2_dpy->wl_dpy_wrapper == NULL)
2059 goto cleanup;
2060
2061 wl_proxy_set_queue((struct wl_proxy *) dri2_dpy->wl_dpy_wrapper,
2062 dri2_dpy->wl_queue);
2063
2064 if (dri2_dpy->own_device)
2065 wl_display_dispatch_pending(dri2_dpy->wl_dpy);
2066
2067 dri2_dpy->wl_registry = wl_display_get_registry(dri2_dpy->wl_dpy_wrapper);
2068 wl_registry_add_listener(dri2_dpy->wl_registry,
2069 &registry_listener_swrast, dri2_dpy);
2070
2071 if (roundtrip(dri2_dpy) < 0 || dri2_dpy->wl_shm == NULL)
2072 goto cleanup;
2073
2074 if (roundtrip(dri2_dpy) < 0 || !BITSET_TEST_RANGE(dri2_dpy->formats,
2075 0, EGL_DRI2_MAX_FORMATS))
2076 goto cleanup;
2077
2078 dri2_dpy->driver_name = strdup("swrast");
2079 if (!dri2_load_driver_swrast(disp))
2080 goto cleanup;
2081
2082 dri2_dpy->loader_extensions = swrast_loader_extensions;
2083
2084 if (!dri2_create_screen(disp))
2085 goto cleanup;
2086
2087 if (!dri2_setup_extensions(disp))
2088 goto cleanup;
2089
2090 dri2_setup_screen(disp);
2091
2092 dri2_wl_setup_swap_interval(disp);
2093
2094 if (!dri2_wl_add_configs_for_visuals(drv, disp)) {
2095 _eglError(EGL_NOT_INITIALIZED, "DRI2: failed to add configs");
2096 goto cleanup;
2097 }
2098
2099 /* Fill vtbl last to prevent accidentally calling virtual function during
2100 * initialization.
2101 */
2102 dri2_dpy->vtbl = &dri2_wl_swrast_display_vtbl;
2103
2104 return EGL_TRUE;
2105
2106 cleanup:
2107 dri2_display_destroy(disp);
2108 return EGL_FALSE;
2109 }
2110
2111 EGLBoolean
2112 dri2_initialize_wayland(_EGLDriver *drv, _EGLDisplay *disp)
2113 {
2114 EGLBoolean initialized = EGL_FALSE;
2115
2116 if (!disp->Options.ForceSoftware)
2117 initialized = dri2_initialize_wayland_drm(drv, disp);
2118
2119 if (!initialized)
2120 initialized = dri2_initialize_wayland_swrast(drv, disp);
2121
2122 return initialized;
2123
2124 }
2125
2126 void
2127 dri2_teardown_wayland(struct dri2_egl_display *dri2_dpy)
2128 {
2129 if (dri2_dpy->wl_drm)
2130 wl_drm_destroy(dri2_dpy->wl_drm);
2131 if (dri2_dpy->wl_dmabuf)
2132 zwp_linux_dmabuf_v1_destroy(dri2_dpy->wl_dmabuf);
2133 if (dri2_dpy->wl_shm)
2134 wl_shm_destroy(dri2_dpy->wl_shm);
2135 if (dri2_dpy->wl_registry)
2136 wl_registry_destroy(dri2_dpy->wl_registry);
2137 if (dri2_dpy->wl_queue)
2138 wl_event_queue_destroy(dri2_dpy->wl_queue);
2139 if (dri2_dpy->wl_dpy_wrapper)
2140 wl_proxy_wrapper_destroy(dri2_dpy->wl_dpy_wrapper);
2141
2142 for (int i = 0; dri2_dpy->wl_modifiers && i < ARRAY_SIZE(dri2_wl_visuals); i++)
2143 u_vector_finish(&dri2_dpy->wl_modifiers[i]);
2144 free(dri2_dpy->wl_modifiers);
2145
2146 if (dri2_dpy->own_device)
2147 wl_display_disconnect(dri2_dpy->wl_dpy);
2148 }