blob: a443ee0e3f9d6e3a95cc3e15be8ed6f8dbb8f380 [file] [log] [blame]
Benjamin Franzke93aea842011-02-04 12:39:40 +01001/*
Kristian Høgsberg90804e82012-12-13 23:30:45 -05002 * Copyright © 2011-2012 Intel Corporation
Axel Davycdcfe482015-05-01 11:11:20 +02003 * Copyright © 2012 Collabora, Ltd.
Benjamin Franzke93aea842011-02-04 12:39:40 +01004 *
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
Emil Velikovbf0e4d22015-02-28 17:12:40 +000030#include <stdint.h>
Benjamin Franzke93aea842011-02-04 12:39:40 +010031#include <stdlib.h>
32#include <string.h>
33#include <limits.h>
34#include <dlfcn.h>
35#include <errno.h>
36#include <unistd.h>
Kristian Høgsbergc0f8c992011-04-14 10:42:41 -040037#include <fcntl.h>
38#include <xf86drm.h>
Eric Engestromf1374802019-02-12 18:18:03 +000039#include "drm-uapi/drm_fourcc.h"
Axel Davycdcfe482015-05-01 11:11:20 +020040#include <sys/mman.h>
Benjamin Franzke93aea842011-02-04 12:39:40 +010041
42#include "egl_dri2.h"
Emil Velikov8d4357b2014-01-11 04:52:48 +000043#include "loader.h"
Daniel Stone02cc3592017-06-16 18:01:23 +010044#include "util/u_vector.h"
Greg Vc0376a12018-01-18 23:29:14 +030045#include "util/anon_file.h"
Miguel A. Vico2d5d61b2017-07-19 17:27:12 -070046#include "eglglobals.h"
Benjamin Franzke93aea842011-02-04 12:39:40 +010047
Eric Engestrom1db4ec02018-05-29 15:41:28 +010048#include <wayland-egl-backend.h>
Benjamin Franzke6b369c42011-02-21 16:22:34 +010049#include <wayland-client.h>
50#include "wayland-drm-client-protocol.h"
Daniel Stone02cc3592017-06-16 18:01:23 +010051#include "linux-dmabuf-unstable-v1-client-protocol.h"
52
Adam Jacksone74c9472019-08-30 15:35:22 -040053/* cheesy workaround until wayland 1.18 is released */
54#if WAYLAND_VERSION_MAJOR > 1 || \
55 (WAYLAND_VERSION_MAJOR == 1 && WAYLAND_VERSION_MINOR < 18)
56#define WL_SHM_FORMAT_ABGR16161616F 0x48344241
57#define WL_SHM_FORMAT_XBGR16161616F 0x48344258
58#endif
59
Daniel Stone5bc49d42018-02-06 11:14:32 +000060/*
61 * The index of entries in this table is used as a bitmask in
62 * dri2_dpy->formats, which tracks the formats supported by our server.
63 */
Daniel Stonea9cc4ed2018-02-06 10:07:23 +000064static const struct dri2_wl_visual {
Daniel Stone19cbca32018-02-06 09:32:22 +000065 const char *format_name;
Daniel Stone1dc013f2018-02-06 09:42:27 +000066 uint32_t wl_drm_format;
67 uint32_t wl_shm_format;
68 int dri_image_format;
Mario Kleinera34b0d62018-06-13 06:04:14 +020069 /* alt_dri_image_format is a substitute wl_buffer format to use for a
70 * wl-server unsupported dri_image_format, ie. some other dri_image_format in
71 * the table, of the same precision but with different channel ordering, or
72 * __DRI_IMAGE_FORMAT_NONE if an alternate format is not needed or supported.
73 * The code checks if alt_dri_image_format can be used as a fallback for a
74 * dri_image_format for a given wl-server implementation.
75 */
76 int alt_dri_image_format;
Daniel Stoned32b23f2018-02-06 11:58:45 +000077 int bpp;
Kevin Strasser7b4ed2b2019-01-24 16:32:48 -080078 int rgba_shifts[4];
79 unsigned int rgba_sizes[4];
Daniel Stone19cbca32018-02-06 09:32:22 +000080} dri2_wl_visuals[] = {
Daniel Stone845c2f62018-02-06 18:06:52 +000081 {
Adam Jacksone74c9472019-08-30 15:35:22 -040082 "ABGR16F",
83 WL_DRM_FORMAT_ABGR16F, WL_SHM_FORMAT_ABGR16161616F,
84 __DRI_IMAGE_FORMAT_ABGR16161616F, 0, 64,
85 { 0, 16, 32, 48 },
86 { 16, 16, 16, 16 },
87 },
88 {
89 "XBGR16F",
90 WL_DRM_FORMAT_XBGR16F, WL_SHM_FORMAT_XBGR16161616F,
91 __DRI_IMAGE_FORMAT_XBGR16161616F, 0, 64,
92 { 0, 16, 32, -1 },
93 { 16, 16, 16, 0 },
94 },
95 {
Adam Jacksoncb8bbbe2019-08-30 15:27:23 -040096 "XRGB2101010",
97 WL_DRM_FORMAT_XRGB2101010, WL_SHM_FORMAT_XRGB2101010,
98 __DRI_IMAGE_FORMAT_XRGB2101010, __DRI_IMAGE_FORMAT_XBGR2101010, 32,
99 { 20, 10, 0, -1 },
100 { 10, 10, 10, 0 },
Daniel Stone845c2f62018-02-06 18:06:52 +0000101 },
102 {
Adam Jacksoncb8bbbe2019-08-30 15:27:23 -0400103 "ARGB2101010",
104 WL_DRM_FORMAT_ARGB2101010, WL_SHM_FORMAT_ARGB2101010,
105 __DRI_IMAGE_FORMAT_ARGB2101010, __DRI_IMAGE_FORMAT_ABGR2101010, 32,
106 { 20, 10, 0, 30 },
107 { 10, 10, 10, 2 },
Daniel Stone845c2f62018-02-06 18:06:52 +0000108 },
109 {
Adam Jacksoncb8bbbe2019-08-30 15:27:23 -0400110 "XBGR2101010",
111 WL_DRM_FORMAT_XBGR2101010, WL_SHM_FORMAT_XBGR2101010,
112 __DRI_IMAGE_FORMAT_XBGR2101010, __DRI_IMAGE_FORMAT_XRGB2101010, 32,
113 { 0, 10, 20, -1 },
114 { 10, 10, 10, 0 },
Daniel Stone275b23e2018-06-13 06:04:11 +0200115 },
116 {
Adam Jacksoncb8bbbe2019-08-30 15:27:23 -0400117 "ABGR2101010",
118 WL_DRM_FORMAT_ABGR2101010, WL_SHM_FORMAT_ABGR2101010,
119 __DRI_IMAGE_FORMAT_ABGR2101010, __DRI_IMAGE_FORMAT_ARGB2101010, 32,
120 { 0, 10, 20, 30 },
121 { 10, 10, 10, 2 },
Daniel Stone275b23e2018-06-13 06:04:11 +0200122 },
123 {
Adam Jacksoncb8bbbe2019-08-30 15:27:23 -0400124 "XRGB8888",
125 WL_DRM_FORMAT_XRGB8888, WL_SHM_FORMAT_XRGB8888,
126 __DRI_IMAGE_FORMAT_XRGB8888, __DRI_IMAGE_FORMAT_NONE, 32,
127 { 16, 8, 0, -1 },
128 { 8, 8, 8, 0 },
Daniel Stone845c2f62018-02-06 18:06:52 +0000129 },
130 {
Adam Jacksoncb8bbbe2019-08-30 15:27:23 -0400131 "ARGB8888",
132 WL_DRM_FORMAT_ARGB8888, WL_SHM_FORMAT_ARGB8888,
133 __DRI_IMAGE_FORMAT_ARGB8888, __DRI_IMAGE_FORMAT_NONE, 32,
134 { 16, 8, 0, 24 },
135 { 8, 8, 8, 8 },
Daniel Stone845c2f62018-02-06 18:06:52 +0000136 },
137 {
Adam Jacksoncb8bbbe2019-08-30 15:27:23 -0400138 "RGB565",
139 WL_DRM_FORMAT_RGB565, WL_SHM_FORMAT_RGB565,
140 __DRI_IMAGE_FORMAT_RGB565, __DRI_IMAGE_FORMAT_NONE, 16,
141 { 11, 5, 0, -1 },
142 { 5, 6, 5, 0 },
Daniel Stone845c2f62018-02-06 18:06:52 +0000143 },
Daniel Stone19cbca32018-02-06 09:32:22 +0000144};
145
Eric Engestromfbf7c382018-11-27 12:27:45 +0000146static_assert(ARRAY_SIZE(dri2_wl_visuals) <= EGL_DRI2_MAX_FORMATS,
147 "dri2_egl_display::formats is not large enough for "
148 "the formats in dri2_wl_visuals");
149
Kristian Høgsberg0229e3a2012-10-10 22:10:42 -0400150static int
Daniel Stonea9cc4ed2018-02-06 10:07:23 +0000151dri2_wl_visual_idx_from_config(struct dri2_egl_display *dri2_dpy,
152 const __DRIconfig *config)
153{
Kevin Strasser7b4ed2b2019-01-24 16:32:48 -0800154 int shifts[4];
155 unsigned int sizes[4];
Daniel Stonea9cc4ed2018-02-06 10:07:23 +0000156
Kevin Strasser7b4ed2b2019-01-24 16:32:48 -0800157 dri2_get_shifts_and_sizes(dri2_dpy->core, config, shifts, sizes);
Daniel Stonea9cc4ed2018-02-06 10:07:23 +0000158
Daniel Stone3323ce72018-02-06 10:15:32 +0000159 for (unsigned int i = 0; i < ARRAY_SIZE(dri2_wl_visuals); i++) {
Daniel Stonea9cc4ed2018-02-06 10:07:23 +0000160 const struct dri2_wl_visual *wl_visual = &dri2_wl_visuals[i];
161
Kevin Strasser7b4ed2b2019-01-24 16:32:48 -0800162 if (shifts[0] == wl_visual->rgba_shifts[0] &&
163 shifts[1] == wl_visual->rgba_shifts[1] &&
164 shifts[2] == wl_visual->rgba_shifts[2] &&
165 shifts[3] == wl_visual->rgba_shifts[3] &&
166 sizes[0] == wl_visual->rgba_sizes[0] &&
167 sizes[1] == wl_visual->rgba_sizes[1] &&
168 sizes[2] == wl_visual->rgba_sizes[2] &&
169 sizes[3] == wl_visual->rgba_sizes[3]) {
Daniel Stonea9cc4ed2018-02-06 10:07:23 +0000170 return i;
171 }
172 }
173
174 return -1;
175}
176
177static int
Daniel Stone68a80c12018-02-06 10:20:39 +0000178dri2_wl_visual_idx_from_fourcc(uint32_t fourcc)
179{
180 for (int i = 0; i < ARRAY_SIZE(dri2_wl_visuals); i++) {
181 /* wl_drm format codes overlap with DRIImage FourCC codes for all formats
182 * we support. */
183 if (dri2_wl_visuals[i].wl_drm_format == fourcc)
184 return i;
185 }
186
187 return -1;
188}
189
190static int
Daniel Stone3323ce72018-02-06 10:15:32 +0000191dri2_wl_visual_idx_from_dri_image_format(uint32_t dri_image_format)
192{
193 for (int i = 0; i < ARRAY_SIZE(dri2_wl_visuals); i++) {
194 if (dri2_wl_visuals[i].dri_image_format == dri_image_format)
195 return i;
196 }
197
198 return -1;
199}
200
201static int
Daniel Stone68a80c12018-02-06 10:20:39 +0000202dri2_wl_visual_idx_from_shm_format(uint32_t shm_format)
203{
204 for (int i = 0; i < ARRAY_SIZE(dri2_wl_visuals); i++) {
205 if (dri2_wl_visuals[i].wl_shm_format == shm_format)
206 return i;
207 }
208
209 return -1;
210}
211
Mario Kleiner820dfce2018-06-13 06:04:15 +0200212bool
213dri2_wl_is_format_supported(void* user_data, uint32_t format)
214{
215 _EGLDisplay *disp = (_EGLDisplay *) user_data;
216 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
217 int j = dri2_wl_visual_idx_from_fourcc(format);
218
219 if (j == -1)
220 return false;
221
222 for (int i = 0; dri2_dpy->driver_configs[i]; i++)
223 if (j == dri2_wl_visual_idx_from_config(dri2_dpy,
224 dri2_dpy->driver_configs[i]))
225 return true;
226
227 return false;
228}
229
Daniel Stone68a80c12018-02-06 10:20:39 +0000230static int
Kristian Høgsberg0229e3a2012-10-10 22:10:42 -0400231roundtrip(struct dri2_egl_display *dri2_dpy)
232{
Daniel Stone8118bc22017-05-05 14:44:20 +0100233 return wl_display_roundtrip_queue(dri2_dpy->wl_dpy, dri2_dpy->wl_queue);
Kristian Høgsberg0229e3a2012-10-10 22:10:42 -0400234}
235
236static void
Benjamin Franzke0cb356d2011-05-06 19:13:29 +0200237wl_buffer_release(void *data, struct wl_buffer *buffer)
238{
239 struct dri2_egl_surface *dri2_surf = data;
240 int i;
241
Kristian Høgsberg90804e82012-12-13 23:30:45 -0500242 for (i = 0; i < ARRAY_SIZE(dri2_surf->color_buffers); ++i)
243 if (dri2_surf->color_buffers[i].wl_buffer == buffer)
Benjamin Franzke0cb356d2011-05-06 19:13:29 +0200244 break;
245
Juan A. Suarez Romero54a96222018-08-30 10:14:49 +0200246 assert (i < ARRAY_SIZE(dri2_surf->color_buffers));
247
248 if (dri2_surf->color_buffers[i].wl_release) {
Kristian Høgsberg90804e82012-12-13 23:30:45 -0500249 wl_buffer_destroy(buffer);
Juan A. Suarez Romero54a96222018-08-30 10:14:49 +0200250 dri2_surf->color_buffers[i].wl_release = false;
251 dri2_surf->color_buffers[i].wl_buffer = NULL;
Kristian Høgsberg90804e82012-12-13 23:30:45 -0500252 }
Benjamin Franzke0cb356d2011-05-06 19:13:29 +0200253
Eric Engestrom60f98422017-06-19 00:16:21 +0100254 dri2_surf->color_buffers[i].locked = false;
Benjamin Franzke0cb356d2011-05-06 19:13:29 +0200255}
256
Emil Velikov55674942015-07-10 12:24:11 +0100257static const struct wl_buffer_listener wl_buffer_listener = {
258 .release = wl_buffer_release
Benjamin Franzke0cb356d2011-05-06 19:13:29 +0200259};
Benjamin Franzke51f28202011-02-11 02:23:14 +0100260
Ander Conselvan de Oliveiraca3ed3e2012-11-30 17:41:02 +0200261static void
262resize_callback(struct wl_egl_window *wl_win, void *data)
263{
264 struct dri2_egl_surface *dri2_surf = data;
265 struct dri2_egl_display *dri2_dpy =
266 dri2_egl_display(dri2_surf->base.Resource.Display);
267
Daniel Stonee5b01182020-03-03 10:52:32 +0000268 if (dri2_surf->base.Width == wl_win->width &&
269 dri2_surf->base.Height == wl_win->height)
270 return;
271
Juan A. Suarez Romeroa9fb3312018-06-06 10:13:05 +0000272 /* Update the surface size as soon as native window is resized; from user
Eric Engestrom882ed532018-08-10 12:37:17 +0100273 * pov, this makes the effect that resize is done immediately after native
Juan A. Suarez Romeroa9fb3312018-06-06 10:13:05 +0000274 * window resize, without requiring to wait until the first draw.
275 *
276 * A more detailed and lengthy explanation can be found at
277 * https://lists.freedesktop.org/archives/mesa-dev/2018-June/196474.html
278 */
279 if (!dri2_surf->back) {
280 dri2_surf->base.Width = wl_win->width;
281 dri2_surf->base.Height = wl_win->height;
282 }
Boyan Ding868ae3e2015-11-25 13:27:02 +0800283 dri2_dpy->flush->invalidate(dri2_surf->dri_drawable);
Ander Conselvan de Oliveiraca3ed3e2012-11-30 17:41:02 +0200284}
285
Stencel, Joanna2e0ab612016-10-24 09:48:11 +0100286static void
287destroy_window_callback(void *data)
288{
289 struct dri2_egl_surface *dri2_surf = data;
290 dri2_surf->wl_win = NULL;
291}
292
Miguel A. Vico2d5d61b2017-07-19 17:27:12 -0700293static struct wl_surface *
294get_wl_surface_proxy(struct wl_egl_window *window)
295{
296 /* Version 3 of wl_egl_window introduced a version field at the same
297 * location where a pointer to wl_surface was stored. Thus, if
Eric Engestrom882ed532018-08-10 12:37:17 +0100298 * window->version is dereferenceable, we've been given an older version of
Miguel A. Vico2d5d61b2017-07-19 17:27:12 -0700299 * wl_egl_window, and window->version points to wl_surface */
300 if (_eglPointerIsDereferencable((void *)(window->version))) {
301 return wl_proxy_create_wrapper((void *)(window->version));
302 }
303 return wl_proxy_create_wrapper(window->surface);
304}
305
Benjamin Franzke93aea842011-02-04 12:39:40 +0100306/**
Eric Engestromcc034482020-07-20 13:38:24 +0200307 * Called via eglCreateWindowSurface(), drv->CreateWindowSurface().
Benjamin Franzke93aea842011-02-04 12:39:40 +0100308 */
309static _EGLSurface *
Eric Engestrom6b4c4742018-04-22 16:48:15 +0200310dri2_wl_create_window_surface(_EGLDisplay *disp, _EGLConfig *conf,
311 void *native_window, const EGLint *attrib_list)
Benjamin Franzke93aea842011-02-04 12:39:40 +0100312{
313 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
314 struct dri2_egl_config *dri2_conf = dri2_egl_config(conf);
Chad Versace6d1f83e2014-01-07 14:54:51 -0800315 struct wl_egl_window *window = native_window;
Benjamin Franzke93aea842011-02-04 12:39:40 +0100316 struct dri2_egl_surface *dri2_surf;
Daniel Stonea9cc4ed2018-02-06 10:07:23 +0000317 int visual_idx;
Marek Olšákc2c2e9a2015-06-10 02:49:29 +0200318 const __DRIconfig *config;
Benjamin Franzke93aea842011-02-04 12:39:40 +0100319
Matt Turnerf0a8bcd2014-09-21 21:15:26 -0700320 dri2_surf = calloc(1, sizeof *dri2_surf);
Benjamin Franzke93aea842011-02-04 12:39:40 +0100321 if (!dri2_surf) {
322 _eglError(EGL_BAD_ALLOC, "dri2_create_surface");
323 return NULL;
324 }
Boyan Ding052b3d42015-06-13 15:36:27 +0800325
Daniel Stonea9cc4ed2018-02-06 10:07:23 +0000326 if (!dri2_init_surface(&dri2_surf->base, disp, EGL_WINDOW_BIT, conf,
Paulo Zanoni04ecda32019-05-01 15:42:26 -0700327 attrib_list, false, native_window))
Benjamin Franzke93aea842011-02-04 12:39:40 +0100328 goto cleanup_surf;
329
Daniel Stonea9cc4ed2018-02-06 10:07:23 +0000330 config = dri2_get_dri_config(dri2_conf, EGL_WINDOW_BIT,
331 dri2_surf->base.GLColorspace);
Juan A. Suarez Romerofd4eba42018-05-02 16:20:16 +0000332
333 if (!config) {
334 _eglError(EGL_BAD_MATCH, "Unsupported surfacetype/colorspace configuration");
335 goto cleanup_surf;
336 }
337
Juan A. Suarez Romero1fe7cbd2018-06-04 10:22:49 +0000338 dri2_surf->base.Width = window->width;
339 dri2_surf->base.Height = window->height;
340
Daniel Stonea9cc4ed2018-02-06 10:07:23 +0000341 visual_idx = dri2_wl_visual_idx_from_config(dri2_dpy, config);
342 assert(visual_idx != -1);
343
Emil Velikovda100fe2017-08-27 11:20:32 +0100344 if (dri2_dpy->wl_dmabuf || dri2_dpy->wl_drm) {
Daniel Stonea9cc4ed2018-02-06 10:07:23 +0000345 dri2_surf->format = dri2_wl_visuals[visual_idx].wl_drm_format;
Daniel Stonea1727aa2017-02-13 14:06:10 +0000346 } else {
Emil Velikov6ef0fc42017-05-12 14:19:59 +0100347 assert(dri2_dpy->wl_shm);
Daniel Stonea9cc4ed2018-02-06 10:07:23 +0000348 dri2_surf->format = dri2_wl_visuals[visual_idx].wl_shm_format;
Daniel Stonea1727aa2017-02-13 14:06:10 +0000349 }
Kristian Høgsberg7b1d94e2011-08-31 16:45:04 -0400350
Daniel Stone03dd9a82017-05-05 14:49:09 +0100351 dri2_surf->wl_queue = wl_display_create_queue(dri2_dpy->wl_dpy);
Lionel Landwerlin30dc56b2017-05-22 11:07:53 +0100352 if (!dri2_surf->wl_queue) {
Daniel Stone03dd9a82017-05-05 14:49:09 +0100353 _eglError(EGL_BAD_ALLOC, "dri2_create_surface");
354 goto cleanup_surf;
355 }
356
357 if (dri2_dpy->wl_drm) {
358 dri2_surf->wl_drm_wrapper = wl_proxy_create_wrapper(dri2_dpy->wl_drm);
359 if (!dri2_surf->wl_drm_wrapper) {
360 _eglError(EGL_BAD_ALLOC, "dri2_create_surface");
361 goto cleanup_queue;
362 }
363 wl_proxy_set_queue((struct wl_proxy *)dri2_surf->wl_drm_wrapper,
364 dri2_surf->wl_queue);
365 }
366
367 dri2_surf->wl_dpy_wrapper = wl_proxy_create_wrapper(dri2_dpy->wl_dpy);
368 if (!dri2_surf->wl_dpy_wrapper) {
369 _eglError(EGL_BAD_ALLOC, "dri2_create_surface");
370 goto cleanup_drm;
371 }
372 wl_proxy_set_queue((struct wl_proxy *)dri2_surf->wl_dpy_wrapper,
373 dri2_surf->wl_queue);
374
Miguel A. Vico2d5d61b2017-07-19 17:27:12 -0700375 dri2_surf->wl_surface_wrapper = get_wl_surface_proxy(window);
Daniel Stone03dd9a82017-05-05 14:49:09 +0100376 if (!dri2_surf->wl_surface_wrapper) {
377 _eglError(EGL_BAD_ALLOC, "dri2_create_surface");
Emil Velikov83442112017-08-27 11:20:27 +0100378 goto cleanup_dpy_wrapper;
Daniel Stone03dd9a82017-05-05 14:49:09 +0100379 }
380 wl_proxy_set_queue((struct wl_proxy *)dri2_surf->wl_surface_wrapper,
381 dri2_surf->wl_queue);
Benjamin Franzke93aea842011-02-04 12:39:40 +0100382
Emil Velikov293d64e2017-08-27 11:20:34 +0100383 dri2_surf->wl_win = window;
Eric Engestrom1db4ec02018-05-29 15:41:28 +0100384 dri2_surf->wl_win->driver_private = dri2_surf;
Stencel, Joanna2e0ab612016-10-24 09:48:11 +0100385 dri2_surf->wl_win->destroy_window_callback = destroy_window_callback;
Emil Velikov293d64e2017-08-27 11:20:34 +0100386 if (dri2_dpy->flush)
387 dri2_surf->wl_win->resize_callback = resize_callback;
Ander Conselvan de Oliveiraca3ed3e2012-11-30 17:41:02 +0200388
Mathias Fröhlicha7ecf782019-06-07 07:12:42 +0200389 if (!dri2_create_drawable(dri2_dpy, config, dri2_surf, dri2_surf))
Emil Velikov83442112017-08-27 11:20:27 +0100390 goto cleanup_surf_wrapper;
Emil Velikovcb5e7992016-11-28 18:25:19 +0000391
Eric Engestrom2714a8f2017-07-31 14:49:31 +0100392 dri2_surf->base.SwapInterval = dri2_dpy->default_swap_interval;
Emil Velikovcb5e7992016-11-28 18:25:19 +0000393
Benjamin Franzke93aea842011-02-04 12:39:40 +0100394 return &dri2_surf->base;
395
Emil Velikov83442112017-08-27 11:20:27 +0100396 cleanup_surf_wrapper:
397 wl_proxy_wrapper_destroy(dri2_surf->wl_surface_wrapper);
398 cleanup_dpy_wrapper:
399 wl_proxy_wrapper_destroy(dri2_surf->wl_dpy_wrapper);
Daniel Stone03dd9a82017-05-05 14:49:09 +0100400 cleanup_drm:
401 if (dri2_surf->wl_drm_wrapper)
402 wl_proxy_wrapper_destroy(dri2_surf->wl_drm_wrapper);
403 cleanup_queue:
404 wl_event_queue_destroy(dri2_surf->wl_queue);
Benjamin Franzke93aea842011-02-04 12:39:40 +0100405 cleanup_surf:
406 free(dri2_surf);
407
408 return NULL;
409}
410
Chad Versace9a40ee12014-02-09 09:13:27 -0800411static _EGLSurface *
Eric Engestrom6b4c4742018-04-22 16:48:15 +0200412dri2_wl_create_pixmap_surface(_EGLDisplay *disp, _EGLConfig *conf,
413 void *native_window, const EGLint *attrib_list)
Chad Versace9a40ee12014-02-09 09:13:27 -0800414{
415 /* From the EGL_EXT_platform_wayland spec, version 3:
416 *
417 * It is not valid to call eglCreatePlatformPixmapSurfaceEXT with a <dpy>
418 * that belongs to Wayland. Any such call fails and generates
419 * EGL_BAD_PARAMETER.
420 */
421 _eglError(EGL_BAD_PARAMETER, "cannot create EGL pixmap surfaces on "
422 "Wayland");
423 return NULL;
424}
425
Benjamin Franzke93aea842011-02-04 12:39:40 +0100426/**
Eric Engestromcc034482020-07-20 13:38:24 +0200427 * Called via eglDestroySurface(), drv->DestroySurface().
Benjamin Franzke93aea842011-02-04 12:39:40 +0100428 */
429static EGLBoolean
Eric Engestrom6b4c4742018-04-22 16:48:15 +0200430dri2_wl_destroy_surface(_EGLDisplay *disp, _EGLSurface *surf)
Benjamin Franzke93aea842011-02-04 12:39:40 +0100431{
432 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
433 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(surf);
Benjamin Franzke93aea842011-02-04 12:39:40 +0100434
Boyan Ding868ae3e2015-11-25 13:27:02 +0800435 dri2_dpy->core->destroyDrawable(dri2_surf->dri_drawable);
Benjamin Franzke93aea842011-02-04 12:39:40 +0100436
Chad Versace98497df2017-06-22 11:00:40 -0700437 for (int i = 0; i < ARRAY_SIZE(dri2_surf->color_buffers); i++) {
Kristian Høgsberg90804e82012-12-13 23:30:45 -0500438 if (dri2_surf->color_buffers[i].wl_buffer)
439 wl_buffer_destroy(dri2_surf->color_buffers[i].wl_buffer);
Kristian Høgsberg664fe6d2013-02-02 07:40:51 -0500440 if (dri2_surf->color_buffers[i].dri_image)
441 dri2_dpy->image->destroyImage(dri2_surf->color_buffers[i].dri_image);
Axel Davy4cd546d2015-05-01 01:16:24 +0200442 if (dri2_surf->color_buffers[i].linear_copy)
443 dri2_dpy->image->destroyImage(dri2_surf->color_buffers[i].linear_copy);
Axel Davycdcfe482015-05-01 11:11:20 +0200444 if (dri2_surf->color_buffers[i].data)
445 munmap(dri2_surf->color_buffers[i].data,
446 dri2_surf->color_buffers[i].data_size);
Kristian Høgsberg90804e82012-12-13 23:30:45 -0500447 }
Benjamin Franzke93aea842011-02-04 12:39:40 +0100448
Gwan-gyeong Mun640b6e62017-08-05 00:16:11 +0900449 if (dri2_dpy->dri2)
450 dri2_egl_surface_free_local_buffers(dri2_surf);
Benjamin Franzke93aea842011-02-04 12:39:40 +0100451
Neil Roberts992a2db2013-11-15 13:50:50 +0000452 if (dri2_surf->throttle_callback)
453 wl_callback_destroy(dri2_surf->throttle_callback);
Jonas Ådahla3b6b2d2012-10-28 00:50:12 +0200454
Stencel, Joanna2e0ab612016-10-24 09:48:11 +0100455 if (dri2_surf->wl_win) {
Eric Engestrom1db4ec02018-05-29 15:41:28 +0100456 dri2_surf->wl_win->driver_private = NULL;
Stencel, Joanna2e0ab612016-10-24 09:48:11 +0100457 dri2_surf->wl_win->resize_callback = NULL;
458 dri2_surf->wl_win->destroy_window_callback = NULL;
459 }
Ander Conselvan de Oliveiraca3ed3e2012-11-30 17:41:02 +0200460
Daniel Stone03dd9a82017-05-05 14:49:09 +0100461 wl_proxy_wrapper_destroy(dri2_surf->wl_surface_wrapper);
462 wl_proxy_wrapper_destroy(dri2_surf->wl_dpy_wrapper);
Emil Velikov1a8015e2017-08-27 11:20:28 +0100463 if (dri2_surf->wl_drm_wrapper)
464 wl_proxy_wrapper_destroy(dri2_surf->wl_drm_wrapper);
Daniel Stone03dd9a82017-05-05 14:49:09 +0100465 wl_event_queue_destroy(dri2_surf->wl_queue);
466
Zhongmin Wue013ce82017-09-15 18:32:42 +0100467 dri2_fini_surface(surf);
Benjamin Franzke93aea842011-02-04 12:39:40 +0100468 free(surf);
469
470 return EGL_TRUE;
471}
472
Benjamin Franzke51f28202011-02-11 02:23:14 +0100473static void
Chad Versaced019cd82014-01-28 12:47:38 -0800474dri2_wl_release_buffers(struct dri2_egl_surface *dri2_surf)
Benjamin Franzke51f28202011-02-11 02:23:14 +0100475{
476 struct dri2_egl_display *dri2_dpy =
477 dri2_egl_display(dri2_surf->base.Resource.Display);
Benjamin Franzke51f28202011-02-11 02:23:14 +0100478
Chad Versace98497df2017-06-22 11:00:40 -0700479 for (int i = 0; i < ARRAY_SIZE(dri2_surf->color_buffers); i++) {
Juan A. Suarez Romero54a96222018-08-30 10:14:49 +0200480 if (dri2_surf->color_buffers[i].wl_buffer) {
481 if (dri2_surf->color_buffers[i].locked) {
482 dri2_surf->color_buffers[i].wl_release = true;
483 } else {
484 wl_buffer_destroy(dri2_surf->color_buffers[i].wl_buffer);
485 dri2_surf->color_buffers[i].wl_buffer = NULL;
486 }
487 }
Kristian Høgsberg664fe6d2013-02-02 07:40:51 -0500488 if (dri2_surf->color_buffers[i].dri_image)
489 dri2_dpy->image->destroyImage(dri2_surf->color_buffers[i].dri_image);
Axel Davy4cd546d2015-05-01 01:16:24 +0200490 if (dri2_surf->color_buffers[i].linear_copy)
491 dri2_dpy->image->destroyImage(dri2_surf->color_buffers[i].linear_copy);
Axel Davycdcfe482015-05-01 11:11:20 +0200492 if (dri2_surf->color_buffers[i].data)
493 munmap(dri2_surf->color_buffers[i].data,
494 dri2_surf->color_buffers[i].data_size);
Kristian Høgsberg90804e82012-12-13 23:30:45 -0500495
Kristian Høgsberg664fe6d2013-02-02 07:40:51 -0500496 dri2_surf->color_buffers[i].dri_image = NULL;
Axel Davy4cd546d2015-05-01 01:16:24 +0200497 dri2_surf->color_buffers[i].linear_copy = NULL;
Axel Davycdcfe482015-05-01 11:11:20 +0200498 dri2_surf->color_buffers[i].data = NULL;
Benjamin Franzke0cb356d2011-05-06 19:13:29 +0200499 }
500
Gwan-gyeong Mun640b6e62017-08-05 00:16:11 +0900501 if (dri2_dpy->dri2)
502 dri2_egl_surface_free_local_buffers(dri2_surf);
Benjamin Franzke51f28202011-02-11 02:23:14 +0100503}
504
Kristian Høgsberg90804e82012-12-13 23:30:45 -0500505static int
Kristian Høgsberg68bb26be2013-11-08 22:10:36 -0800506get_back_bo(struct dri2_egl_surface *dri2_surf)
Benjamin Franzke0cb356d2011-05-06 19:13:29 +0200507{
508 struct dri2_egl_display *dri2_dpy =
509 dri2_egl_display(dri2_surf->base.Resource.Display);
Chad Versace98497df2017-06-22 11:00:40 -0700510 int use_flags;
Daniel Stone4de98a92018-02-06 11:51:17 +0000511 int visual_idx;
Vivek Kasireddy1e96eec2015-02-10 19:15:31 -0800512 unsigned int dri_image_format;
Mario Kleinera34b0d62018-06-13 06:04:14 +0200513 unsigned int linear_dri_image_format;
Daniel Stone02cc3592017-06-16 18:01:23 +0100514 uint64_t *modifiers;
515 int num_modifiers;
Vivek Kasireddy1e96eec2015-02-10 19:15:31 -0800516
Daniel Stone4de98a92018-02-06 11:51:17 +0000517 visual_idx = dri2_wl_visual_idx_from_fourcc(dri2_surf->format);
518 assert(visual_idx != -1);
519 dri_image_format = dri2_wl_visuals[visual_idx].dri_image_format;
Mario Kleinera34b0d62018-06-13 06:04:14 +0200520 linear_dri_image_format = dri_image_format;
Daniel Stone47320942018-02-06 10:29:13 +0000521 modifiers = u_vector_tail(&dri2_dpy->wl_modifiers[visual_idx]);
522 num_modifiers = u_vector_length(&dri2_dpy->wl_modifiers[visual_idx]);
Benjamin Franzke0cb356d2011-05-06 19:13:29 +0200523
Ivan Molodetskikhc3768652019-09-27 00:45:39 +0300524 if (num_modifiers == 1 && modifiers[0] == DRM_FORMAT_MOD_INVALID) {
525 /* For the purposes of this function, an INVALID modifier on its own
526 * means the modifiers aren't supported.
527 */
528 num_modifiers = 0;
529 }
530
Mario Kleinera34b0d62018-06-13 06:04:14 +0200531 /* Substitute dri image format if server does not support original format */
Eric Engestromfbf7c382018-11-27 12:27:45 +0000532 if (!BITSET_TEST(dri2_dpy->formats, visual_idx))
Mario Kleinera34b0d62018-06-13 06:04:14 +0200533 linear_dri_image_format = dri2_wl_visuals[visual_idx].alt_dri_image_format;
534
535 /* These asserts hold, as long as dri2_wl_visuals[] is self-consistent and
536 * the PRIME substitution logic in dri2_wl_add_configs_for_visuals() is free
537 * of bugs.
538 */
539 assert(linear_dri_image_format != __DRI_IMAGE_FORMAT_NONE);
Eric Engestromfbf7c382018-11-27 12:27:45 +0000540 assert(BITSET_TEST(dri2_dpy->formats,
541 dri2_wl_visual_idx_from_dri_image_format(linear_dri_image_format)));
Mario Kleinera34b0d62018-06-13 06:04:14 +0200542
Daniel Stone9ca67112016-06-01 09:59:06 +0100543 /* There might be a buffer release already queued that wasn't processed */
Daniel Stone03dd9a82017-05-05 14:49:09 +0100544 wl_display_dispatch_queue_pending(dri2_dpy->wl_dpy, dri2_surf->wl_queue);
Benjamin Franzke0cb356d2011-05-06 19:13:29 +0200545
Daniel Stone1f2d0092017-05-15 22:22:32 +0100546 while (dri2_surf->back == NULL) {
Chad Versace98497df2017-06-22 11:00:40 -0700547 for (int i = 0; i < ARRAY_SIZE(dri2_surf->color_buffers); i++) {
Eric Engestrom882ed532018-08-10 12:37:17 +0100548 /* Get an unlocked buffer, preferably one with a dri_buffer
Neil Roberts992a2db2013-11-15 13:50:50 +0000549 * already allocated. */
550 if (dri2_surf->color_buffers[i].locked)
Kristian Høgsberg90804e82012-12-13 23:30:45 -0500551 continue;
552 if (dri2_surf->back == NULL)
Neil Roberts992a2db2013-11-15 13:50:50 +0000553 dri2_surf->back = &dri2_surf->color_buffers[i];
Kristian Høgsberg664fe6d2013-02-02 07:40:51 -0500554 else if (dri2_surf->back->dri_image == NULL)
Neil Roberts992a2db2013-11-15 13:50:50 +0000555 dri2_surf->back = &dri2_surf->color_buffers[i];
Kristian Høgsberg90804e82012-12-13 23:30:45 -0500556 }
Daniel Stone1f2d0092017-05-15 22:22:32 +0100557
558 if (dri2_surf->back)
559 break;
560
561 /* If we don't have a buffer, then block on the server to release one for
Kai Chen151188d2017-08-07 08:34:51 -0700562 * us, and try again. wl_display_dispatch_queue will process any pending
563 * events, however not all servers flush on issuing a buffer release
564 * event. So, we spam the server with roundtrips as they always cause a
565 * client flush.
566 */
567 if (wl_display_roundtrip_queue(dri2_dpy->wl_dpy,
568 dri2_surf->wl_queue) < 0)
Daniel Stone1f2d0092017-05-15 22:22:32 +0100569 return -1;
Benjamin Franzke0cb356d2011-05-06 19:13:29 +0200570 }
Kristian Høgsberg90804e82012-12-13 23:30:45 -0500571
572 if (dri2_surf->back == NULL)
573 return -1;
Axel Davy4cd546d2015-05-01 01:16:24 +0200574
Axel Davyd943ac42015-10-21 12:28:00 +0200575 use_flags = __DRI_IMAGE_USE_SHARE | __DRI_IMAGE_USE_BACKBUFFER;
576
Axel Davy4cd546d2015-05-01 01:16:24 +0200577 if (dri2_dpy->is_different_gpu &&
578 dri2_surf->back->linear_copy == NULL) {
Daniel Stone02cc3592017-06-16 18:01:23 +0100579 /* The LINEAR modifier should be a perfect alias of the LINEAR use
580 * flag; try the new interface first before the old, then fall back. */
581 if (dri2_dpy->image->base.version >= 15 &&
582 dri2_dpy->image->createImageWithModifiers) {
583 uint64_t linear_mod = DRM_FORMAT_MOD_LINEAR;
584
585 dri2_surf->back->linear_copy =
586 dri2_dpy->image->createImageWithModifiers(dri2_dpy->dri_screen,
587 dri2_surf->base.Width,
588 dri2_surf->base.Height,
Mario Kleinera34b0d62018-06-13 06:04:14 +0200589 linear_dri_image_format,
Daniel Stone02cc3592017-06-16 18:01:23 +0100590 &linear_mod,
591 1,
592 NULL);
593 } else {
594 dri2_surf->back->linear_copy =
595 dri2_dpy->image->createImage(dri2_dpy->dri_screen,
596 dri2_surf->base.Width,
597 dri2_surf->base.Height,
Mario Kleinera34b0d62018-06-13 06:04:14 +0200598 linear_dri_image_format,
Daniel Stone02cc3592017-06-16 18:01:23 +0100599 use_flags |
600 __DRI_IMAGE_USE_LINEAR,
601 NULL);
602 }
Axel Davy4cd546d2015-05-01 01:16:24 +0200603 if (dri2_surf->back->linear_copy == NULL)
604 return -1;
605 }
606
Kristian Høgsberg664fe6d2013-02-02 07:40:51 -0500607 if (dri2_surf->back->dri_image == NULL) {
Daniel Stone02cc3592017-06-16 18:01:23 +0100608 /* If our DRIImage implementation does not support
609 * createImageWithModifiers, then fall back to the old createImage,
610 * and hope it allocates an image which is acceptable to the winsys.
611 */
612 if (num_modifiers && dri2_dpy->image->base.version >= 15 &&
613 dri2_dpy->image->createImageWithModifiers) {
614 dri2_surf->back->dri_image =
615 dri2_dpy->image->createImageWithModifiers(dri2_dpy->dri_screen,
616 dri2_surf->base.Width,
617 dri2_surf->base.Height,
618 dri_image_format,
619 modifiers,
620 num_modifiers,
621 NULL);
622 } else {
623 dri2_surf->back->dri_image =
624 dri2_dpy->image->createImage(dri2_dpy->dri_screen,
625 dri2_surf->base.Width,
626 dri2_surf->base.Height,
627 dri_image_format,
628 dri2_dpy->is_different_gpu ?
629 0 : use_flags,
630 NULL);
631 }
632
Kristian Høgsberg6d4d4b02012-12-13 23:32:14 -0500633 dri2_surf->back->age = 0;
Kristian Høgsberg90804e82012-12-13 23:30:45 -0500634 }
Kristian Høgsberg664fe6d2013-02-02 07:40:51 -0500635 if (dri2_surf->back->dri_image == NULL)
Kristian Høgsberg90804e82012-12-13 23:30:45 -0500636 return -1;
637
Eric Engestrom60f98422017-06-19 00:16:21 +0100638 dri2_surf->back->locked = true;
Kristian Høgsberg68bb26be2013-11-08 22:10:36 -0800639
640 return 0;
641}
642
643
644static void
645back_bo_to_dri_buffer(struct dri2_egl_surface *dri2_surf, __DRIbuffer *buffer)
646{
647 struct dri2_egl_display *dri2_dpy =
648 dri2_egl_display(dri2_surf->base.Resource.Display);
649 __DRIimage *image;
650 int name, pitch;
651
Kristian Høgsberg664fe6d2013-02-02 07:40:51 -0500652 image = dri2_surf->back->dri_image;
653
654 dri2_dpy->image->queryImage(image, __DRI_IMAGE_ATTRIB_NAME, &name);
655 dri2_dpy->image->queryImage(image, __DRI_IMAGE_ATTRIB_STRIDE, &pitch);
656
Kristian Høgsberg664fe6d2013-02-02 07:40:51 -0500657 buffer->attachment = __DRI_BUFFER_BACK_LEFT;
658 buffer->name = name;
659 buffer->pitch = pitch;
660 buffer->cpp = 4;
661 buffer->flags = 0;
Kristian Høgsberg90804e82012-12-13 23:30:45 -0500662}
663
664static int
Kristian Høgsberg68bb26be2013-11-08 22:10:36 -0800665update_buffers(struct dri2_egl_surface *dri2_surf)
Benjamin Franzke93aea842011-02-04 12:39:40 +0100666{
Benjamin Franzke93aea842011-02-04 12:39:40 +0100667 struct dri2_egl_display *dri2_dpy =
668 dri2_egl_display(dri2_surf->base.Resource.Display);
Ander Conselvan de Oliveira60a11e22012-11-22 15:34:49 +0200669
Carlos Garnacho30a01cd2018-11-20 18:06:38 +0100670 if (dri2_surf->base.Width != dri2_surf->wl_win->width ||
671 dri2_surf->base.Height != dri2_surf->wl_win->height) {
Benjamin Franzke93aea842011-02-04 12:39:40 +0100672
673 dri2_surf->base.Width = dri2_surf->wl_win->width;
674 dri2_surf->base.Height = dri2_surf->wl_win->height;
675 dri2_surf->dx = dri2_surf->wl_win->dx;
676 dri2_surf->dy = dri2_surf->wl_win->dy;
Kristian Høgsberg90804e82012-12-13 23:30:45 -0500677 }
Benjamin Franzke93aea842011-02-04 12:39:40 +0100678
Carlos Garnacho30a01cd2018-11-20 18:06:38 +0100679 if (dri2_surf->base.Width != dri2_surf->wl_win->attached_width ||
680 dri2_surf->base.Height != dri2_surf->wl_win->attached_height) {
681 dri2_wl_release_buffers(dri2_surf);
682 }
683
Kristian Høgsberg68bb26be2013-11-08 22:10:36 -0800684 if (get_back_bo(dri2_surf) < 0) {
685 _eglError(EGL_BAD_ALLOC, "failed to allocate color buffer");
686 return -1;
Benjamin Franzke93aea842011-02-04 12:39:40 +0100687 }
688
Kristian Høgsberg90804e82012-12-13 23:30:45 -0500689 /* If we have an extra unlocked buffer at this point, we had to do triple
690 * buffering for a while, but now can go back to just double buffering.
691 * That means we can free any unlocked buffer now. */
Chad Versace98497df2017-06-22 11:00:40 -0700692 for (int i = 0; i < ARRAY_SIZE(dri2_surf->color_buffers); i++) {
Kristian Høgsberg90804e82012-12-13 23:30:45 -0500693 if (!dri2_surf->color_buffers[i].locked &&
694 dri2_surf->color_buffers[i].wl_buffer) {
695 wl_buffer_destroy(dri2_surf->color_buffers[i].wl_buffer);
Kristian Høgsberg664fe6d2013-02-02 07:40:51 -0500696 dri2_dpy->image->destroyImage(dri2_surf->color_buffers[i].dri_image);
Axel Davy4cd546d2015-05-01 01:16:24 +0200697 if (dri2_dpy->is_different_gpu)
698 dri2_dpy->image->destroyImage(dri2_surf->color_buffers[i].linear_copy);
Kristian Høgsberg90804e82012-12-13 23:30:45 -0500699 dri2_surf->color_buffers[i].wl_buffer = NULL;
Kristian Høgsberg664fe6d2013-02-02 07:40:51 -0500700 dri2_surf->color_buffers[i].dri_image = NULL;
Axel Davy4cd546d2015-05-01 01:16:24 +0200701 dri2_surf->color_buffers[i].linear_copy = NULL;
Benjamin Franzke93aea842011-02-04 12:39:40 +0100702 }
Benjamin Franzke93aea842011-02-04 12:39:40 +0100703 }
704
Kristian Høgsberg68bb26be2013-11-08 22:10:36 -0800705 return 0;
706}
707
Jonas Ådahl903ad592019-05-06 09:54:27 +0200708static int
709update_buffers_if_needed(struct dri2_egl_surface *dri2_surf)
710{
711 if (dri2_surf->back != NULL)
712 return 0;
713
714 return update_buffers(dri2_surf);
715}
716
Kristian Høgsberg68bb26be2013-11-08 22:10:36 -0800717static __DRIbuffer *
Chad Versaced019cd82014-01-28 12:47:38 -0800718dri2_wl_get_buffers_with_format(__DRIdrawable * driDrawable,
719 int *width, int *height,
720 unsigned int *attachments, int count,
721 int *out_count, void *loaderPrivate)
Kristian Høgsberg68bb26be2013-11-08 22:10:36 -0800722{
723 struct dri2_egl_surface *dri2_surf = loaderPrivate;
724 int i, j;
725
726 if (update_buffers(dri2_surf) < 0)
727 return NULL;
728
729 for (i = 0, j = 0; i < 2 * count; i += 2, j++) {
Gwan-gyeong Mun640b6e62017-08-05 00:16:11 +0900730 __DRIbuffer *local;
731
Kristian Høgsberg68bb26be2013-11-08 22:10:36 -0800732 switch (attachments[i]) {
733 case __DRI_BUFFER_BACK_LEFT:
734 back_bo_to_dri_buffer(dri2_surf, &dri2_surf->buffers[j]);
Daniel Stone4b8ef272017-06-10 14:54:05 +0100735 break;
Kristian Høgsberg68bb26be2013-11-08 22:10:36 -0800736 default:
Gwan-gyeong Mun640b6e62017-08-05 00:16:11 +0900737 local = dri2_egl_surface_alloc_local_buffer(dri2_surf, attachments[i],
738 attachments[i + 1]);
739
740 if (!local) {
741 _eglError(EGL_BAD_ALLOC, "failed to allocate local buffer");
Daniel Stone4b8ef272017-06-10 14:54:05 +0100742 return NULL;
743 }
Gwan-gyeong Mun640b6e62017-08-05 00:16:11 +0900744 dri2_surf->buffers[j] = *local;
Daniel Stone4b8ef272017-06-10 14:54:05 +0100745 break;
Kristian Høgsberg68bb26be2013-11-08 22:10:36 -0800746 }
747 }
748
Kristian Høgsberg90804e82012-12-13 23:30:45 -0500749 *out_count = j;
750 if (j == 0)
Daniel Stone4b8ef272017-06-10 14:54:05 +0100751 return NULL;
Benjamin Franzke93aea842011-02-04 12:39:40 +0100752
753 *width = dri2_surf->base.Width;
754 *height = dri2_surf->base.Height;
755
756 return dri2_surf->buffers;
757}
758
759static __DRIbuffer *
Chad Versaced019cd82014-01-28 12:47:38 -0800760dri2_wl_get_buffers(__DRIdrawable * driDrawable,
761 int *width, int *height,
762 unsigned int *attachments, int count,
763 int *out_count, void *loaderPrivate)
Benjamin Franzke93aea842011-02-04 12:39:40 +0100764{
Vivek Kasireddy1e96eec2015-02-10 19:15:31 -0800765 struct dri2_egl_surface *dri2_surf = loaderPrivate;
Benjamin Franzke93aea842011-02-04 12:39:40 +0100766 unsigned int *attachments_with_format;
767 __DRIbuffer *buffer;
Daniel Stoned32b23f2018-02-06 11:58:45 +0000768 int visual_idx = dri2_wl_visual_idx_from_fourcc(dri2_surf->format);
Vivek Kasireddy1e96eec2015-02-10 19:15:31 -0800769
Daniel Stoned32b23f2018-02-06 11:58:45 +0000770 if (visual_idx == -1)
Vivek Kasireddy1e96eec2015-02-10 19:15:31 -0800771 return NULL;
Vivek Kasireddy1e96eec2015-02-10 19:15:31 -0800772
Carl Worthecc89e42014-09-03 14:33:18 -0700773 attachments_with_format = calloc(count, 2 * sizeof(unsigned int));
Benjamin Franzke93aea842011-02-04 12:39:40 +0100774 if (!attachments_with_format) {
775 *out_count = 0;
776 return NULL;
777 }
778
Chad Versace98497df2017-06-22 11:00:40 -0700779 for (int i = 0; i < count; ++i) {
Benjamin Franzke93aea842011-02-04 12:39:40 +0100780 attachments_with_format[2*i] = attachments[i];
Daniel Stoned32b23f2018-02-06 11:58:45 +0000781 attachments_with_format[2*i + 1] = dri2_wl_visuals[visual_idx].bpp;
Benjamin Franzke93aea842011-02-04 12:39:40 +0100782 }
783
784 buffer =
Chad Versaced019cd82014-01-28 12:47:38 -0800785 dri2_wl_get_buffers_with_format(driDrawable,
786 width, height,
787 attachments_with_format, count,
788 out_count, loaderPrivate);
Benjamin Franzke93aea842011-02-04 12:39:40 +0100789
790 free(attachments_with_format);
791
792 return buffer;
793}
794
Kristian Høgsberg68bb26be2013-11-08 22:10:36 -0800795static int
796image_get_buffers(__DRIdrawable *driDrawable,
797 unsigned int format,
798 uint32_t *stamp,
799 void *loaderPrivate,
800 uint32_t buffer_mask,
801 struct __DRIimageList *buffers)
802{
803 struct dri2_egl_surface *dri2_surf = loaderPrivate;
804
805 if (update_buffers(dri2_surf) < 0)
806 return 0;
807
808 buffers->image_mask = __DRI_IMAGE_BUFFER_BACK;
809 buffers->back = dri2_surf->back->dri_image;
810
811 return 1;
812}
813
Benjamin Franzke93aea842011-02-04 12:39:40 +0100814static void
Chad Versaced019cd82014-01-28 12:47:38 -0800815dri2_wl_flush_front_buffer(__DRIdrawable * driDrawable, void *loaderPrivate)
Benjamin Franzke93aea842011-02-04 12:39:40 +0100816{
817 (void) driDrawable;
Benjamin Franzke93aea842011-02-04 12:39:40 +0100818 (void) loaderPrivate;
Benjamin Franzke93aea842011-02-04 12:39:40 +0100819}
820
Adam Jacksond0140612019-09-10 11:53:11 -0400821static unsigned
822dri2_wl_get_capability(void *loaderPrivate, enum dri_loader_cap cap)
823{
824 switch (cap) {
825 case DRI_LOADER_CAP_FP16:
826 return 1;
827 default:
828 return 0;
829 }
830}
831
Emil Velikovd2d579d2016-08-16 18:21:48 +0100832static const __DRIdri2LoaderExtension dri2_loader_extension = {
Adam Jacksond0140612019-09-10 11:53:11 -0400833 .base = { __DRI_DRI2_LOADER, 4 },
Emil Velikovd2d579d2016-08-16 18:21:48 +0100834
835 .getBuffers = dri2_wl_get_buffers,
836 .flushFrontBuffer = dri2_wl_flush_front_buffer,
837 .getBuffersWithFormat = dri2_wl_get_buffers_with_format,
Adam Jacksond0140612019-09-10 11:53:11 -0400838 .getCapability = dri2_wl_get_capability,
Emil Velikovd2d579d2016-08-16 18:21:48 +0100839};
840
Kristian Høgsberg68bb26be2013-11-08 22:10:36 -0800841static const __DRIimageLoaderExtension image_loader_extension = {
Adam Jacksond0140612019-09-10 11:53:11 -0400842 .base = { __DRI_IMAGE_LOADER, 2 },
Emil Velikov9e627cc2014-02-12 18:32:59 +0000843
844 .getBuffers = image_get_buffers,
Chad Versaced019cd82014-01-28 12:47:38 -0800845 .flushFrontBuffer = dri2_wl_flush_front_buffer,
Adam Jacksond0140612019-09-10 11:53:11 -0400846 .getCapability = dri2_wl_get_capability,
Kristian Høgsberg68bb26be2013-11-08 22:10:36 -0800847};
848
Benjamin Franzke93aea842011-02-04 12:39:40 +0100849static void
Neil Roberts992a2db2013-11-15 13:50:50 +0000850wayland_throttle_callback(void *data,
851 struct wl_callback *callback,
852 uint32_t time)
Benjamin Franzke93aea842011-02-04 12:39:40 +0100853{
854 struct dri2_egl_surface *dri2_surf = data;
855
Neil Roberts992a2db2013-11-15 13:50:50 +0000856 dri2_surf->throttle_callback = NULL;
Kristian Høgsberg6602bda2011-08-16 22:38:22 -0400857 wl_callback_destroy(callback);
Benjamin Franzke93aea842011-02-04 12:39:40 +0100858}
859
Neil Roberts992a2db2013-11-15 13:50:50 +0000860static const struct wl_callback_listener throttle_listener = {
Emil Velikov55674942015-07-10 12:24:11 +0100861 .done = wayland_throttle_callback
Kristian Høgsberg6602bda2011-08-16 22:38:22 -0400862};
863
Derek Foreman0db36ca2017-10-30 15:52:22 -0500864static EGLBoolean
865get_fourcc(struct dri2_egl_display *dri2_dpy,
866 __DRIimage *image, int *fourcc)
867{
868 EGLBoolean query;
Eric Engestromca95d7a2017-11-16 10:02:15 +0000869 int dri_format;
Daniel Stone4de98a92018-02-06 11:51:17 +0000870 int visual_idx;
Derek Foreman0db36ca2017-10-30 15:52:22 -0500871
872 query = dri2_dpy->image->queryImage(image, __DRI_IMAGE_ATTRIB_FOURCC,
873 fourcc);
874 if (query)
875 return true;
876
877 query = dri2_dpy->image->queryImage(image, __DRI_IMAGE_ATTRIB_FORMAT,
878 &dri_format);
879 if (!query)
880 return false;
881
Daniel Stone4de98a92018-02-06 11:51:17 +0000882 visual_idx = dri2_wl_visual_idx_from_dri_image_format(dri_format);
883 if (visual_idx == -1)
Derek Foreman0db36ca2017-10-30 15:52:22 -0500884 return false;
Daniel Stone4de98a92018-02-06 11:51:17 +0000885
886 *fourcc = dri2_wl_visuals[visual_idx].wl_drm_format;
887 return true;
Derek Foreman0db36ca2017-10-30 15:52:22 -0500888}
889
Daniel Stonec4a1c7a2017-06-16 17:29:42 +0100890static struct wl_buffer *
891create_wl_buffer(struct dri2_egl_display *dri2_dpy,
892 struct dri2_egl_surface *dri2_surf,
893 __DRIimage *image)
Kristian Høgsbergde315f72013-02-02 12:26:12 -0500894{
Daniel Stonec4a1c7a2017-06-16 17:29:42 +0100895 struct wl_buffer *ret;
Daniel Stone6273d2f2017-10-02 16:40:53 +0100896 EGLBoolean query;
Daniel Stone02cc3592017-06-16 18:01:23 +0100897 int width, height, fourcc, num_planes;
Daniel Stoneb65d6da2017-10-02 16:40:53 +0100898 uint64_t modifier = DRM_FORMAT_MOD_INVALID;
Daniel Stone6595c692017-06-16 17:33:56 +0100899
Daniel Stone6273d2f2017-10-02 16:40:53 +0100900 query = dri2_dpy->image->queryImage(image, __DRI_IMAGE_ATTRIB_WIDTH, &width);
901 query &= dri2_dpy->image->queryImage(image, __DRI_IMAGE_ATTRIB_HEIGHT,
902 &height);
Derek Foreman0db36ca2017-10-30 15:52:22 -0500903 query &= get_fourcc(dri2_dpy, image, &fourcc);
Daniel Stone6273d2f2017-10-02 16:40:53 +0100904 if (!query)
905 return NULL;
906
907 query = dri2_dpy->image->queryImage(image, __DRI_IMAGE_ATTRIB_NUM_PLANES,
908 &num_planes);
909 if (!query)
910 num_planes = 1;
Kristian Høgsbergde315f72013-02-02 12:26:12 -0500911
Daniel Stoneb65d6da2017-10-02 16:40:53 +0100912 if (dri2_dpy->image->base.version >= 15) {
Daniel Stone02cc3592017-06-16 18:01:23 +0100913 int mod_hi, mod_lo;
Daniel Stone02cc3592017-06-16 18:01:23 +0100914
Daniel Stone6273d2f2017-10-02 16:40:53 +0100915 query = dri2_dpy->image->queryImage(image,
916 __DRI_IMAGE_ATTRIB_MODIFIER_UPPER,
917 &mod_hi);
918 query &= dri2_dpy->image->queryImage(image,
919 __DRI_IMAGE_ATTRIB_MODIFIER_LOWER,
920 &mod_lo);
Daniel Stoneb65d6da2017-10-02 16:40:53 +0100921 if (query) {
Eric Engestrom2de9e842018-08-16 15:22:46 +0100922 modifier = combine_u32_into_u64(mod_hi, mod_lo);
Daniel Stone6273d2f2017-10-02 16:40:53 +0100923 }
Daniel Stoneb65d6da2017-10-02 16:40:53 +0100924 }
925
Ivan Molodetskikhc3768652019-09-27 00:45:39 +0300926 bool supported_modifier = false;
Christopher James Halse Rogers98675d32020-03-24 14:19:51 +1100927 bool mod_invalid_supported = false;
928 int visual_idx = dri2_wl_visual_idx_from_fourcc(fourcc);
929 assert(visual_idx != -1);
Ivan Molodetskikhc3768652019-09-27 00:45:39 +0300930
Christopher James Halse Rogers98675d32020-03-24 14:19:51 +1100931 uint64_t *mod;
932 u_vector_foreach(mod, &dri2_dpy->wl_modifiers[visual_idx]) {
933 if (*mod == DRM_FORMAT_MOD_INVALID) {
934 mod_invalid_supported = true;
Ivan Molodetskikhc3768652019-09-27 00:45:39 +0300935 }
Christopher James Halse Rogers98675d32020-03-24 14:19:51 +1100936 if (*mod == modifier) {
937 supported_modifier = true;
938 break;
939 }
940 }
941 if (!supported_modifier && mod_invalid_supported) {
942 /* If the server has advertised DRM_FORMAT_MOD_INVALID then we trust
943 * that the client has allocated the buffer with the right implicit
944 * modifier for the format, even though it's allocated a buffer the
945 * server hasn't explicitly claimed to support. */
946 modifier = DRM_FORMAT_MOD_INVALID;
947 supported_modifier = true;
Ivan Molodetskikhc3768652019-09-27 00:45:39 +0300948 }
949
950 if (dri2_dpy->wl_dmabuf && supported_modifier) {
Daniel Stoneb65d6da2017-10-02 16:40:53 +0100951 struct zwp_linux_buffer_params_v1 *params;
952 int i;
Daniel Stone02cc3592017-06-16 18:01:23 +0100953
954 /* We don't need a wrapper for wl_dmabuf objects, because we have to
955 * create the intermediate params object; we can set the queue on this,
956 * and the wl_buffer inherits it race-free. */
957 params = zwp_linux_dmabuf_v1_create_params(dri2_dpy->wl_dmabuf);
958 if (dri2_surf)
959 wl_proxy_set_queue((struct wl_proxy *) params, dri2_surf->wl_queue);
960
961 for (i = 0; i < num_planes; i++) {
962 __DRIimage *p_image;
Daniel Stone6273d2f2017-10-02 16:40:53 +0100963 int stride, offset;
964 int fd = -1;
Daniel Stone02cc3592017-06-16 18:01:23 +0100965
Louis-Francis Ratté-Bouliannea34715a2017-09-28 03:18:33 -0400966 p_image = dri2_dpy->image->fromPlanar(image, i, NULL);
Daniel Stone02cc3592017-06-16 18:01:23 +0100967 if (!p_image) {
Louis-Francis Ratté-Bouliannea34715a2017-09-28 03:18:33 -0400968 assert(i == 0);
969 p_image = image;
Daniel Stone02cc3592017-06-16 18:01:23 +0100970 }
971
Daniel Stone6273d2f2017-10-02 16:40:53 +0100972 query = dri2_dpy->image->queryImage(p_image,
973 __DRI_IMAGE_ATTRIB_FD,
974 &fd);
975 query &= dri2_dpy->image->queryImage(p_image,
976 __DRI_IMAGE_ATTRIB_STRIDE,
977 &stride);
978 query &= dri2_dpy->image->queryImage(p_image,
979 __DRI_IMAGE_ATTRIB_OFFSET,
980 &offset);
Daniel Stone02cc3592017-06-16 18:01:23 +0100981 if (image != p_image)
982 dri2_dpy->image->destroyImage(p_image);
983
Daniel Stone6273d2f2017-10-02 16:40:53 +0100984 if (!query) {
985 if (fd >= 0)
986 close(fd);
987 zwp_linux_buffer_params_v1_destroy(params);
988 return NULL;
989 }
990
Daniel Stone02cc3592017-06-16 18:01:23 +0100991 zwp_linux_buffer_params_v1_add(params, fd, i, offset, stride,
Daniel Stoneb65d6da2017-10-02 16:40:53 +0100992 modifier >> 32, modifier & 0xffffffff);
Daniel Stone02cc3592017-06-16 18:01:23 +0100993 close(fd);
994 }
995
996 ret = zwp_linux_buffer_params_v1_create_immed(params, width, height,
997 fourcc, 0);
998 zwp_linux_buffer_params_v1_destroy(params);
999 } else if (dri2_dpy->capabilities & WL_DRM_CAPABILITY_PRIME) {
Daniel Stonecfaca572017-06-16 17:37:19 +01001000 struct wl_drm *wl_drm =
1001 dri2_surf ? dri2_surf->wl_drm_wrapper : dri2_dpy->wl_drm;
Daniel Stone6595c692017-06-16 17:33:56 +01001002 int fd, stride;
1003
Daniel Stone02cc3592017-06-16 18:01:23 +01001004 if (num_planes > 1)
1005 return NULL;
1006
Axel Davy4cd546d2015-05-01 01:16:24 +02001007 dri2_dpy->image->queryImage(image, __DRI_IMAGE_ATTRIB_FD, &fd);
1008 dri2_dpy->image->queryImage(image, __DRI_IMAGE_ATTRIB_STRIDE, &stride);
Daniel Stonecfaca572017-06-16 17:37:19 +01001009 ret = wl_drm_create_prime_buffer(wl_drm, fd, width, height, fourcc, 0,
1010 stride, 0, 0, 0, 0);
Kristian Høgsbergde315f72013-02-02 12:26:12 -05001011 close(fd);
1012 } else {
Daniel Stonecfaca572017-06-16 17:37:19 +01001013 struct wl_drm *wl_drm =
1014 dri2_surf ? dri2_surf->wl_drm_wrapper : dri2_dpy->wl_drm;
Daniel Stone6595c692017-06-16 17:33:56 +01001015 int name, stride;
1016
Daniel Stone02cc3592017-06-16 18:01:23 +01001017 if (num_planes > 1)
1018 return NULL;
1019
Axel Davy4cd546d2015-05-01 01:16:24 +02001020 dri2_dpy->image->queryImage(image, __DRI_IMAGE_ATTRIB_NAME, &name);
1021 dri2_dpy->image->queryImage(image, __DRI_IMAGE_ATTRIB_STRIDE, &stride);
Daniel Stonecfaca572017-06-16 17:37:19 +01001022 ret = wl_drm_create_buffer(wl_drm, name, width, height, stride, fourcc);
Kristian Høgsbergde315f72013-02-02 12:26:12 -05001023 }
1024
Daniel Stonec4a1c7a2017-06-16 17:29:42 +01001025 return ret;
Kristian Høgsbergde315f72013-02-02 12:26:12 -05001026}
1027
Derek Foremand085a5d2016-02-16 10:34:39 -06001028static EGLBoolean
1029try_damage_buffer(struct dri2_egl_surface *dri2_surf,
1030 const EGLint *rects,
1031 EGLint n_rects)
1032{
Daniel Stone03dd9a82017-05-05 14:49:09 +01001033 if (wl_proxy_get_version((struct wl_proxy *) dri2_surf->wl_surface_wrapper)
Derek Foremand085a5d2016-02-16 10:34:39 -06001034 < WL_SURFACE_DAMAGE_BUFFER_SINCE_VERSION)
1035 return EGL_FALSE;
1036
Chad Versace98497df2017-06-22 11:00:40 -07001037 for (int i = 0; i < n_rects; i++) {
Derek Foremand085a5d2016-02-16 10:34:39 -06001038 const int *rect = &rects[i * 4];
1039
Daniel Stone03dd9a82017-05-05 14:49:09 +01001040 wl_surface_damage_buffer(dri2_surf->wl_surface_wrapper,
Derek Foremand085a5d2016-02-16 10:34:39 -06001041 rect[0],
1042 dri2_surf->base.Height - rect[1] - rect[3],
1043 rect[2], rect[3]);
1044 }
1045 return EGL_TRUE;
Derek Foremand085a5d2016-02-16 10:34:39 -06001046}
Eric Engestrom39006592020-05-23 01:44:52 +02001047
Benjamin Franzke93aea842011-02-04 12:39:40 +01001048/**
Eric Engestromcc034482020-07-20 13:38:24 +02001049 * Called via eglSwapBuffers(), drv->SwapBuffers().
Benjamin Franzke93aea842011-02-04 12:39:40 +01001050 */
1051static EGLBoolean
Eric Engestrom82035b22018-04-22 16:48:15 +02001052dri2_wl_swap_buffers_with_damage(_EGLDisplay *disp,
Chad Versaced019cd82014-01-28 12:47:38 -08001053 _EGLSurface *draw,
1054 const EGLint *rects,
1055 EGLint n_rects)
Benjamin Franzke93aea842011-02-04 12:39:40 +01001056{
1057 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1058 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(draw);
Benjamin Franzke93aea842011-02-04 12:39:40 +01001059
Daniel Stone9ca67112016-06-01 09:59:06 +01001060 while (dri2_surf->throttle_callback != NULL)
1061 if (wl_display_dispatch_queue(dri2_dpy->wl_dpy,
Daniel Stone03dd9a82017-05-05 14:49:09 +01001062 dri2_surf->wl_queue) == -1)
Daniel Stone9ca67112016-06-01 09:59:06 +01001063 return -1;
1064
Chad Versace98497df2017-06-22 11:00:40 -07001065 for (int i = 0; i < ARRAY_SIZE(dri2_surf->color_buffers); i++)
Kristian Høgsberg6d4d4b02012-12-13 23:32:14 -05001066 if (dri2_surf->color_buffers[i].age > 0)
1067 dri2_surf->color_buffers[i].age++;
1068
Kristian Høgsberg1fe00732013-02-06 15:41:54 -05001069 /* Make sure we have a back buffer in case we're swapping without ever
1070 * rendering. */
Jonas Ådahl903ad592019-05-06 09:54:27 +02001071 if (update_buffers_if_needed(dri2_surf) < 0)
Emil Velikovc58af5c2017-06-20 15:40:28 +01001072 return _eglError(EGL_BAD_ALLOC, "dri2_swap_buffers");
Kristian Høgsberg1fe00732013-02-06 15:41:54 -05001073
Neil Roberts992a2db2013-11-15 13:50:50 +00001074 if (draw->SwapInterval > 0) {
1075 dri2_surf->throttle_callback =
Daniel Stone03dd9a82017-05-05 14:49:09 +01001076 wl_surface_frame(dri2_surf->wl_surface_wrapper);
Neil Roberts992a2db2013-11-15 13:50:50 +00001077 wl_callback_add_listener(dri2_surf->throttle_callback,
1078 &throttle_listener, dri2_surf);
Neil Roberts992a2db2013-11-15 13:50:50 +00001079 }
Neil Roberts25cc8892013-11-15 13:50:49 +00001080
Kristian Høgsberg6d4d4b02012-12-13 23:32:14 -05001081 dri2_surf->back->age = 1;
Kristian Høgsberg90804e82012-12-13 23:30:45 -05001082 dri2_surf->current = dri2_surf->back;
1083 dri2_surf->back = NULL;
Benjamin Franzke93aea842011-02-04 12:39:40 +01001084
Daniel Stonec4a1c7a2017-06-16 17:29:42 +01001085 if (!dri2_surf->current->wl_buffer) {
1086 __DRIimage *image;
1087
1088 if (dri2_dpy->is_different_gpu)
1089 image = dri2_surf->current->linear_copy;
1090 else
1091 image = dri2_surf->current->dri_image;
1092
1093 dri2_surf->current->wl_buffer =
1094 create_wl_buffer(dri2_dpy, dri2_surf, image);
1095
Juan A. Suarez Romero54a96222018-08-30 10:14:49 +02001096 dri2_surf->current->wl_release = false;
1097
Daniel Stonec4a1c7a2017-06-16 17:29:42 +01001098 wl_buffer_add_listener(dri2_surf->current->wl_buffer,
1099 &wl_buffer_listener, dri2_surf);
1100 }
Benjamin Franzke93aea842011-02-04 12:39:40 +01001101
Daniel Stone03dd9a82017-05-05 14:49:09 +01001102 wl_surface_attach(dri2_surf->wl_surface_wrapper,
Kristian Høgsberg90804e82012-12-13 23:30:45 -05001103 dri2_surf->current->wl_buffer,
1104 dri2_surf->dx, dri2_surf->dy);
1105
1106 dri2_surf->wl_win->attached_width = dri2_surf->base.Width;
1107 dri2_surf->wl_win->attached_height = dri2_surf->base.Height;
1108 /* reset resize growing parameters */
1109 dri2_surf->dx = 0;
1110 dri2_surf->dy = 0;
1111
Derek Foremand085a5d2016-02-16 10:34:39 -06001112 /* If the compositor doesn't support damage_buffer, we deliberately
1113 * ignore the damage region and post maximum damage, due to
Daniel Stoned1314de2015-11-07 18:25:31 +00001114 * https://bugs.freedesktop.org/78190 */
Derek Foremand085a5d2016-02-16 10:34:39 -06001115 if (!n_rects || !try_damage_buffer(dri2_surf, rects, n_rects))
Daniel Stone03dd9a82017-05-05 14:49:09 +01001116 wl_surface_damage(dri2_surf->wl_surface_wrapper,
Derek Foremand085a5d2016-02-16 10:34:39 -06001117 0, 0, INT32_MAX, INT32_MAX);
Kristian Høgsberg90804e82012-12-13 23:30:45 -05001118
Axel Davy4cd546d2015-05-01 01:16:24 +02001119 if (dri2_dpy->is_different_gpu) {
1120 _EGLContext *ctx = _eglGetCurrentContext();
1121 struct dri2_egl_context *dri2_ctx = dri2_egl_context(ctx);
1122 dri2_dpy->image->blitImage(dri2_ctx->dri_context,
1123 dri2_surf->current->linear_copy,
1124 dri2_surf->current->dri_image,
1125 0, 0, dri2_surf->base.Width,
1126 dri2_surf->base.Height,
1127 0, 0, dri2_surf->base.Width,
1128 dri2_surf->base.Height, 0);
1129 }
1130
Eric Anholt70e8ccc2014-12-21 11:51:33 -08001131 dri2_flush_drawable_for_swapbuffers(disp, draw);
Boyan Ding868ae3e2015-11-25 13:27:02 +08001132 dri2_dpy->flush->invalidate(dri2_surf->dri_drawable);
Benjamin Franzke93aea842011-02-04 12:39:40 +01001133
Daniel Stone03dd9a82017-05-05 14:49:09 +01001134 wl_surface_commit(dri2_surf->wl_surface_wrapper);
Neil Roberts992a2db2013-11-15 13:50:50 +00001135
1136 /* If we're not waiting for a frame callback then we'll at least throttle
1137 * to a sync callback so that we always give a chance for the compositor to
1138 * handle the commit and send a release event before checking for a free
1139 * buffer */
1140 if (dri2_surf->throttle_callback == NULL) {
Daniel Stone03dd9a82017-05-05 14:49:09 +01001141 dri2_surf->throttle_callback = wl_display_sync(dri2_surf->wl_dpy_wrapper);
Neil Roberts992a2db2013-11-15 13:50:50 +00001142 wl_callback_add_listener(dri2_surf->throttle_callback,
1143 &throttle_listener, dri2_surf);
Neil Roberts992a2db2013-11-15 13:50:50 +00001144 }
1145
Axel Davy402bf6e2013-12-03 17:38:09 +01001146 wl_display_flush(dri2_dpy->wl_dpy);
1147
Benjamin Franzke93aea842011-02-04 12:39:40 +01001148 return EGL_TRUE;
1149}
1150
Kristian Høgsberg6d4d4b02012-12-13 23:32:14 -05001151static EGLint
Eric Engestrom429e9362018-04-22 16:48:15 +02001152dri2_wl_query_buffer_age(_EGLDisplay *disp, _EGLSurface *surface)
Kristian Høgsberg6d4d4b02012-12-13 23:32:14 -05001153{
1154 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(surface);
Kristian Høgsberg6d4d4b02012-12-13 23:32:14 -05001155
Jonas Ådahl903ad592019-05-06 09:54:27 +02001156 if (update_buffers_if_needed(dri2_surf) < 0) {
Kristian Høgsberg6d4d4b02012-12-13 23:32:14 -05001157 _eglError(EGL_BAD_ALLOC, "dri2_query_buffer_age");
Tapani Pälli8fac8942017-06-08 12:24:24 +03001158 return -1;
Kristian Høgsberg6d4d4b02012-12-13 23:32:14 -05001159 }
1160
1161 return dri2_surf->back->age;
1162}
1163
Robert Braggf8c32422012-02-10 16:59:31 +00001164static EGLBoolean
Eric Engestrom82035b22018-04-22 16:48:15 +02001165dri2_wl_swap_buffers(_EGLDisplay *disp, _EGLSurface *draw)
Robert Braggf8c32422012-02-10 16:59:31 +00001166{
Eric Engestrom82035b22018-04-22 16:48:15 +02001167 return dri2_wl_swap_buffers_with_damage(disp, draw, NULL, 0);
Robert Braggf8c32422012-02-10 16:59:31 +00001168}
1169
Neil Roberts5cddb1c2013-10-28 15:07:03 +00001170static struct wl_buffer *
Eric Engestromf0105682018-04-22 16:48:15 +02001171dri2_wl_create_wayland_buffer_from_image(_EGLDisplay *disp, _EGLImage *img)
Neil Roberts5cddb1c2013-10-28 15:07:03 +00001172{
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;
Daniel Stone3323ce72018-02-06 10:15:32 +00001177 int format, visual_idx;
Neil Roberts5cddb1c2013-10-28 15:07:03 +00001178
Daniel Stone3323ce72018-02-06 10:15:32 +00001179 /* Check the upstream display supports this buffer's format. */
Neil Roberts5cddb1c2013-10-28 15:07:03 +00001180 dri2_dpy->image->queryImage(image, __DRI_IMAGE_ATTRIB_FORMAT, &format);
Daniel Stone3323ce72018-02-06 10:15:32 +00001181 visual_idx = dri2_wl_visual_idx_from_dri_image_format(format);
1182 if (visual_idx == -1)
Neil Roberts5cddb1c2013-10-28 15:07:03 +00001183 goto bad_format;
Daniel Stone3323ce72018-02-06 10:15:32 +00001184
Eric Engestromfbf7c382018-11-27 12:27:45 +00001185 if (!BITSET_TEST(dri2_dpy->formats, visual_idx))
Daniel Stone3323ce72018-02-06 10:15:32 +00001186 goto bad_format;
Neil Roberts5cddb1c2013-10-28 15:07:03 +00001187
Daniel Stonecfaca572017-06-16 17:37:19 +01001188 buffer = create_wl_buffer(dri2_dpy, NULL, image);
Neil Roberts5cddb1c2013-10-28 15:07:03 +00001189
1190 /* The buffer object will have been created with our internal event queue
Emil Velikov6a1b6832017-08-27 11:20:30 +01001191 * because it is using wl_dmabuf/wl_drm as a proxy factory. We want the
Neil Roberts5cddb1c2013-10-28 15:07:03 +00001192 * buffer to be used by the application so we'll reset it to the display's
Daniel Stonecfaca572017-06-16 17:37:19 +01001193 * 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. */
Neil Roberts5cddb1c2013-10-28 15:07:03 +00001196 if (buffer)
1197 wl_proxy_set_queue((struct wl_proxy *) buffer, NULL);
1198
1199 return buffer;
1200
1201bad_format:
1202 _eglError(EGL_BAD_MATCH, "unsupported image format");
1203 return NULL;
1204}
1205
Benjamin Franzke6b369c42011-02-21 16:22:34 +01001206static int
Chad Versaced019cd82014-01-28 12:47:38 -08001207dri2_wl_authenticate(_EGLDisplay *disp, uint32_t id)
Benjamin Franzke6b369c42011-02-21 16:22:34 +01001208{
1209 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1210 int ret = 0;
1211
Axel Davyfb0960a2015-05-01 01:30:10 +02001212 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 }
Eric Engestrom60f98422017-06-19 00:16:21 +01001217 dri2_dpy->authenticated = false;
Benjamin Franzke6b369c42011-02-21 16:22:34 +01001218
Kristian Høgsbergc0f8c992011-04-14 10:42:41 -04001219 wl_drm_authenticate(dri2_dpy->wl_drm, id);
Kristian Høgsberg0229e3a2012-10-10 22:10:42 -04001220 if (roundtrip(dri2_dpy) < 0)
1221 ret = -1;
Benjamin Franzke6b369c42011-02-21 16:22:34 +01001222
Kristian Høgsbergc0f8c992011-04-14 10:42:41 -04001223 if (!dri2_dpy->authenticated)
Benjamin Franzke6b369c42011-02-21 16:22:34 +01001224 ret = -1;
1225
1226 /* reset authenticated */
Eric Engestrom60f98422017-06-19 00:16:21 +01001227 dri2_dpy->authenticated = true;
Benjamin Franzke6b369c42011-02-21 16:22:34 +01001228
1229 return ret;
1230}
1231
Kristian Høgsbergc0f8c992011-04-14 10:42:41 -04001232static void
1233drm_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
Derek Foreman4f8f7902015-06-17 11:28:51 -05001242 dri2_dpy->fd = loader_open_device(dri2_dpy->device_name);
Kristian Høgsbergc0f8c992011-04-14 10:42:41 -04001243 if (dri2_dpy->fd == -1) {
1244 _eglLog(_EGL_WARNING, "wayland-egl: could not open %s (%s)",
Daniel Stone4b8ef272017-06-10 14:54:05 +01001245 dri2_dpy->device_name, strerror(errno));
Emil Velikovce74a7b2018-11-27 11:36:01 +00001246 free(dri2_dpy->device_name);
Nicolai Hähnlec02390f2018-11-28 18:30:36 +01001247 dri2_dpy->device_name = NULL;
Kristian Høgsbergc0f8c992011-04-14 10:42:41 -04001248 return;
1249 }
1250
Emil Velikov175d9752015-07-10 12:27:06 +01001251 if (drmGetNodeTypeFromFd(dri2_dpy->fd) == DRM_NODE_RENDER) {
Eric Engestrom60f98422017-06-19 00:16:21 +01001252 dri2_dpy->authenticated = true;
Axel Davyfb0960a2015-05-01 01:30:10 +02001253 } else {
Emil Velikovc59d3aa2018-11-23 12:55:38 +00001254 if (drmGetMagic(dri2_dpy->fd, &magic)) {
1255 close(dri2_dpy->fd);
1256 dri2_dpy->fd = -1;
1257 free(dri2_dpy->device_name);
Nicolai Hähnlec02390f2018-11-28 18:30:36 +01001258 dri2_dpy->device_name = NULL;
Emil Velikovc59d3aa2018-11-23 12:55:38 +00001259 _eglLog(_EGL_WARNING, "wayland-egl: drmGetMagic failed");
1260 return;
1261 }
Axel Davyfb0960a2015-05-01 01:30:10 +02001262 wl_drm_authenticate(dri2_dpy->wl_drm, magic);
1263 }
Kristian Høgsbergc0f8c992011-04-14 10:42:41 -04001264}
1265
1266static void
Kristian Høgsberg7b1d94e2011-08-31 16:45:04 -04001267drm_handle_format(void *data, struct wl_drm *drm, uint32_t format)
1268{
1269 struct dri2_egl_display *dri2_dpy = data;
Daniel Stone68a80c12018-02-06 10:20:39 +00001270 int visual_idx = dri2_wl_visual_idx_from_fourcc(format);
Kristian Høgsberg7b1d94e2011-08-31 16:45:04 -04001271
Daniel Stone68a80c12018-02-06 10:20:39 +00001272 if (visual_idx == -1)
1273 return;
1274
Eric Engestromfbf7c382018-11-27 12:27:45 +00001275 BITSET_SET(dri2_dpy->formats, visual_idx);
Kristian Høgsberg7b1d94e2011-08-31 16:45:04 -04001276}
1277
1278static void
Kristian Høgsbergde315f72013-02-02 12:26:12 -05001279drm_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
1286static void
Kristian Høgsbergc0f8c992011-04-14 10:42:41 -04001287drm_handle_authenticated(void *data, struct wl_drm *drm)
1288{
1289 struct dri2_egl_display *dri2_dpy = data;
1290
Eric Engestrom60f98422017-06-19 00:16:21 +01001291 dri2_dpy->authenticated = true;
Kristian Høgsbergc0f8c992011-04-14 10:42:41 -04001292}
1293
1294static const struct wl_drm_listener drm_listener = {
Emil Velikov55674942015-07-10 12:24:11 +01001295 .device = drm_handle_device,
1296 .format = drm_handle_format,
1297 .authenticated = drm_handle_authenticated,
1298 .capabilities = drm_handle_capabilities
Kristian Høgsbergc0f8c992011-04-14 10:42:41 -04001299};
1300
Kristian Høgsberg0229e3a2012-10-10 22:10:42 -04001301static void
Daniel Stone02cc3592017-06-16 18:01:23 +01001302dmabuf_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
1308static void
1309dmabuf_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;
Daniel Stone68a80c12018-02-06 10:20:39 +00001314 int visual_idx = dri2_wl_visual_idx_from_fourcc(format);
Daniel Stone47320942018-02-06 10:29:13 +00001315 uint64_t *mod;
1316
1317 if (visual_idx == -1)
1318 return;
Daniel Stone02cc3592017-06-16 18:01:23 +01001319
Eric Engestromfbf7c382018-11-27 12:27:45 +00001320 BITSET_SET(dri2_dpy->formats, visual_idx);
Daniel Stone47320942018-02-06 10:29:13 +00001321
1322 mod = u_vector_add(&dri2_dpy->wl_modifiers[visual_idx]);
Eric Engestrom2de9e842018-08-16 15:22:46 +01001323 *mod = combine_u32_into_u64(modifier_hi, modifier_lo);
Daniel Stone02cc3592017-06-16 18:01:23 +01001324}
1325
1326static const struct zwp_linux_dmabuf_v1_listener dmabuf_listener = {
1327 .format = dmabuf_ignore_format,
1328 .modifier = dmabuf_handle_modifier,
1329};
1330
1331static void
Daniel Stone4b8ef272017-06-10 14:54:05 +01001332registry_handle_global_drm(void *data, struct wl_registry *registry,
1333 uint32_t name, const char *interface,
1334 uint32_t version)
Kristian Høgsberg0229e3a2012-10-10 22:10:42 -04001335{
1336 struct dri2_egl_display *dri2_dpy = data;
1337
1338 if (strcmp(interface, "wl_drm") == 0) {
1339 dri2_dpy->wl_drm =
Daniel Stone5295df62017-06-10 14:54:44 +01001340 wl_registry_bind(registry, name, &wl_drm_interface, MIN2(version, 2));
Kristian Høgsberg0229e3a2012-10-10 22:10:42 -04001341 wl_drm_add_listener(dri2_dpy->wl_drm, &drm_listener, dri2_dpy);
Daniel Stone02cc3592017-06-16 18:01:23 +01001342 } 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);
Kristian Høgsberg0229e3a2012-10-10 22:10:42 -04001348 }
1349}
1350
Kristian Høgsberg712269d2013-06-18 16:53:46 -04001351static void
1352registry_handle_global_remove(void *data, struct wl_registry *registry,
Daniel Stone4b8ef272017-06-10 14:54:05 +01001353 uint32_t name)
Kristian Høgsberg712269d2013-06-18 16:53:46 -04001354{
1355}
1356
Axel Davycdcfe482015-05-01 11:11:20 +02001357static const struct wl_registry_listener registry_listener_drm = {
Emil Velikov55674942015-07-10 12:24:11 +01001358 .global = registry_handle_global_drm,
1359 .global_remove = registry_handle_global_remove
Kristian Høgsberg0229e3a2012-10-10 22:10:42 -04001360};
1361
Neil Roberts992a2db2013-11-15 13:50:50 +00001362static void
Emil Velikov47b06f52017-08-05 00:25:46 +01001363dri2_wl_setup_swap_interval(_EGLDisplay *disp)
Neil Roberts992a2db2013-11-15 13:50:50 +00001364{
Neil Roberts992a2db2013-11-15 13:50:50 +00001365 /* 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
Emil Velikov47b06f52017-08-05 00:25:46 +01001370 dri2_setup_swap_interval(disp, 1);
Neil Roberts992a2db2013-11-15 13:50:50 +00001371}
1372
Emil Velikov79d1fb92017-05-15 16:14:17 +01001373static const struct dri2_egl_display_vtbl dri2_wl_display_vtbl = {
Chad Versaced019cd82014-01-28 12:47:38 -08001374 .authenticate = dri2_wl_authenticate,
Chad Versace0a0c8812014-01-28 16:39:09 -08001375 .create_window_surface = dri2_wl_create_window_surface,
Chad Versace9a40ee12014-02-09 09:13:27 -08001376 .create_pixmap_surface = dri2_wl_create_pixmap_surface,
Chad Versace958dd802014-01-28 17:03:03 -08001377 .destroy_surface = dri2_wl_destroy_surface,
Chad Versaceeef68a92014-01-28 17:03:03 -08001378 .create_image = dri2_create_image_khr,
Chad Versacead173bc2014-01-28 16:21:21 -08001379 .swap_buffers = dri2_wl_swap_buffers,
Chad Versaced03948a2014-01-28 16:26:44 -08001380 .swap_buffers_with_damage = dri2_wl_swap_buffers_with_damage,
Chad Versace3fdfbd22014-01-28 17:03:03 -08001381 .query_buffer_age = dri2_wl_query_buffer_age,
Chad Versaceeadd5e02014-01-28 17:03:03 -08001382 .create_wayland_buffer_from_image = dri2_wl_create_wayland_buffer_from_image,
Boyan Dinga25df542015-07-21 23:43:59 +08001383 .get_dri_drawable = dri2_surface_get_dri_drawable,
Chad Versace90502b12014-01-28 11:41:46 -08001384};
1385
Emil Velikovf8719462016-08-24 23:32:27 +01001386static const __DRIextension *dri2_loader_extensions[] = {
1387 &dri2_loader_extension.base,
Derek Foreman534ea2b2017-01-10 15:21:47 -06001388 &image_loader_extension.base,
Emil Velikovf8719462016-08-24 23:32:27 +01001389 &image_lookup_extension.base,
1390 &use_invalidate.base,
1391 NULL,
1392};
1393
1394static const __DRIextension *image_loader_extensions[] = {
1395 &image_loader_extension.base,
1396 &image_lookup_extension.base,
1397 &use_invalidate.base,
1398 NULL,
1399};
1400
Axel Davycdcfe482015-05-01 11:11:20 +02001401static EGLBoolean
Eric Engestromad61d4f2018-04-22 16:48:15 +02001402dri2_wl_add_configs_for_visuals(_EGLDisplay *disp)
Emil Velikov0b2b7192016-08-25 14:55:06 +01001403{
1404 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
Daniel Stone19cbca32018-02-06 09:32:22 +00001405 unsigned int format_count[ARRAY_SIZE(dri2_wl_visuals)] = { 0 };
Chad Versace98497df2017-06-22 11:00:40 -07001406 unsigned int count = 0;
Mario Kleinera34b0d62018-06-13 06:04:14 +02001407 bool assigned;
Emil Velikov0b2b7192016-08-25 14:55:06 +01001408
Chad Versace98497df2017-06-22 11:00:40 -07001409 for (unsigned i = 0; dri2_dpy->driver_configs[i]; i++) {
Mario Kleinera34b0d62018-06-13 06:04:14 +02001410 assigned = false;
1411
Daniel Stone19cbca32018-02-06 09:32:22 +00001412 for (unsigned j = 0; j < ARRAY_SIZE(dri2_wl_visuals); j++) {
Emil Velikov0b2b7192016-08-25 14:55:06 +01001413 struct dri2_egl_config *dri2_conf;
1414
Eric Engestromfbf7c382018-11-27 12:27:45 +00001415 if (!BITSET_TEST(dri2_dpy->formats, j))
Emil Velikov0b2b7192016-08-25 14:55:06 +01001416 continue;
1417
1418 dri2_conf = dri2_add_config(disp, dri2_dpy->driver_configs[i],
Kevin Strasser7b4ed2b2019-01-24 16:32:48 -08001419 count + 1, EGL_WINDOW_BIT, NULL, dri2_wl_visuals[j].rgba_shifts, dri2_wl_visuals[j].rgba_sizes);
Emil Velikov0b2b7192016-08-25 14:55:06 +01001420 if (dri2_conf) {
Eric Engestromc87f7372017-06-21 21:55:56 +01001421 if (dri2_conf->base.ConfigID == count + 1)
1422 count++;
Emil Velikov0b2b7192016-08-25 14:55:06 +01001423 format_count[j]++;
Mario Kleinera34b0d62018-06-13 06:04:14 +02001424 assigned = true;
1425 }
1426 }
1427
1428 if (!assigned && dri2_dpy->is_different_gpu) {
1429 struct dri2_egl_config *dri2_conf;
1430 int alt_dri_image_format, c, s;
1431
1432 /* No match for config. Try if we can blitImage convert to a visual */
1433 c = dri2_wl_visual_idx_from_config(dri2_dpy,
1434 dri2_dpy->driver_configs[i]);
1435
1436 if (c == -1)
1437 continue;
1438
1439 /* Find optimal target visual for blitImage conversion, if any. */
1440 alt_dri_image_format = dri2_wl_visuals[c].alt_dri_image_format;
1441 s = dri2_wl_visual_idx_from_dri_image_format(alt_dri_image_format);
1442
Eric Engestromfbf7c382018-11-27 12:27:45 +00001443 if (s == -1 || !BITSET_TEST(dri2_dpy->formats, s))
Mario Kleinera34b0d62018-06-13 06:04:14 +02001444 continue;
1445
1446 /* Visual s works for the Wayland server, and c can be converted into s
1447 * by our client gpu during PRIME blitImage conversion to a linear
1448 * wl_buffer, so add visual c as supported by the client renderer.
1449 */
1450 dri2_conf = dri2_add_config(disp, dri2_dpy->driver_configs[i],
1451 count + 1, EGL_WINDOW_BIT, NULL,
Kevin Strasser7b4ed2b2019-01-24 16:32:48 -08001452 dri2_wl_visuals[c].rgba_shifts,
1453 dri2_wl_visuals[c].rgba_sizes);
Mario Kleinera34b0d62018-06-13 06:04:14 +02001454 if (dri2_conf) {
1455 if (dri2_conf->base.ConfigID == count + 1)
1456 count++;
1457 format_count[c]++;
1458 if (format_count[c] == 1)
1459 _eglLog(_EGL_DEBUG, "Client format %s to server format %s via "
1460 "PRIME blitImage.", dri2_wl_visuals[c].format_name,
1461 dri2_wl_visuals[s].format_name);
Emil Velikov0b2b7192016-08-25 14:55:06 +01001462 }
1463 }
1464 }
1465
Chad Versace98497df2017-06-22 11:00:40 -07001466 for (unsigned i = 0; i < ARRAY_SIZE(format_count); i++) {
Emil Velikov0b2b7192016-08-25 14:55:06 +01001467 if (!format_count[i]) {
1468 _eglLog(_EGL_DEBUG, "No DRI config supports native format %s",
Daniel Stone19cbca32018-02-06 09:32:22 +00001469 dri2_wl_visuals[i].format_name);
Emil Velikov0b2b7192016-08-25 14:55:06 +01001470 }
1471 }
1472
1473 return (count != 0);
1474}
1475
1476static EGLBoolean
Eric Engestromad61d4f2018-04-22 16:48:15 +02001477dri2_initialize_wayland_drm(_EGLDisplay *disp)
Benjamin Franzke93aea842011-02-04 12:39:40 +01001478{
Emil Velikov00992702018-09-04 11:20:03 +01001479 _EGLDevice *dev;
Benjamin Franzke93aea842011-02-04 12:39:40 +01001480 struct dri2_egl_display *dri2_dpy;
Benjamin Franzke93aea842011-02-04 12:39:40 +01001481
Matt Turner6bda0272012-09-04 23:09:22 -07001482 dri2_dpy = calloc(1, sizeof *dri2_dpy);
Benjamin Franzke93aea842011-02-04 12:39:40 +01001483 if (!dri2_dpy)
1484 return _eglError(EGL_BAD_ALLOC, "eglInitialize");
1485
Emil Velikova0163f92017-05-11 17:26:48 +01001486 dri2_dpy->fd = -1;
Benjamin Franzke93aea842011-02-04 12:39:40 +01001487 disp->DriverData = (void *) dri2_dpy;
Benjamin Franzkeb8325fd2011-06-11 22:07:02 +02001488 if (disp->PlatformDisplay == NULL) {
1489 dri2_dpy->wl_dpy = wl_display_connect(NULL);
1490 if (dri2_dpy->wl_dpy == NULL)
Emil Velikova0163f92017-05-11 17:26:48 +01001491 goto cleanup;
Eric Engestrom60f98422017-06-19 00:16:21 +01001492 dri2_dpy->own_device = true;
Benjamin Franzkeb8325fd2011-06-11 22:07:02 +02001493 } else {
1494 dri2_dpy->wl_dpy = disp->PlatformDisplay;
1495 }
Benjamin Franzke93aea842011-02-04 12:39:40 +01001496
Daniel Stone47320942018-02-06 10:29:13 +00001497 dri2_dpy->wl_modifiers =
1498 calloc(ARRAY_SIZE(dri2_wl_visuals), sizeof(*dri2_dpy->wl_modifiers));
1499 if (!dri2_dpy->wl_modifiers)
Daniel Stone02cc3592017-06-16 18:01:23 +01001500 goto cleanup;
Daniel Stone47320942018-02-06 10:29:13 +00001501 for (int i = 0; i < ARRAY_SIZE(dri2_wl_visuals); i++) {
1502 if (!u_vector_init(&dri2_dpy->wl_modifiers[i], sizeof(uint64_t), 32))
1503 goto cleanup;
Daniel Stone02cc3592017-06-16 18:01:23 +01001504 }
1505
Kristian Høgsberg0229e3a2012-10-10 22:10:42 -04001506 dri2_dpy->wl_queue = wl_display_create_queue(dri2_dpy->wl_dpy);
Kristian Høgsberg112ccfa2013-02-26 12:49:40 -05001507
Jonas Ådahl36b99762017-01-13 23:05:10 +08001508 dri2_dpy->wl_dpy_wrapper = wl_proxy_create_wrapper(dri2_dpy->wl_dpy);
1509 if (dri2_dpy->wl_dpy_wrapper == NULL)
Emil Velikova0163f92017-05-11 17:26:48 +01001510 goto cleanup;
Jonas Ådahl36b99762017-01-13 23:05:10 +08001511
1512 wl_proxy_set_queue((struct wl_proxy *) dri2_dpy->wl_dpy_wrapper,
1513 dri2_dpy->wl_queue);
1514
Kristian Høgsberg112ccfa2013-02-26 12:49:40 -05001515 if (dri2_dpy->own_device)
1516 wl_display_dispatch_pending(dri2_dpy->wl_dpy);
1517
Jonas Ådahl36b99762017-01-13 23:05:10 +08001518 dri2_dpy->wl_registry = wl_display_get_registry(dri2_dpy->wl_dpy_wrapper);
Kristian Høgsberg0229e3a2012-10-10 22:10:42 -04001519 wl_registry_add_listener(dri2_dpy->wl_registry,
Axel Davycdcfe482015-05-01 11:11:20 +02001520 &registry_listener_drm, dri2_dpy);
Kristian Høgsberg0229e3a2012-10-10 22:10:42 -04001521 if (roundtrip(dri2_dpy) < 0 || dri2_dpy->wl_drm == NULL)
Emil Velikova0163f92017-05-11 17:26:48 +01001522 goto cleanup;
Kristian Høgsberg0229e3a2012-10-10 22:10:42 -04001523
1524 if (roundtrip(dri2_dpy) < 0 || dri2_dpy->fd == -1)
Emil Velikova0163f92017-05-11 17:26:48 +01001525 goto cleanup;
Kristian Høgsberg56758c82011-02-04 15:37:51 -05001526
Kristian Høgsberg0229e3a2012-10-10 22:10:42 -04001527 if (roundtrip(dri2_dpy) < 0 || !dri2_dpy->authenticated)
Emil Velikova0163f92017-05-11 17:26:48 +01001528 goto cleanup;
Benjamin Franzke93aea842011-02-04 12:39:40 +01001529
Axel Davy4cd546d2015-05-01 01:16:24 +02001530 dri2_dpy->fd = loader_get_user_preferred_fd(dri2_dpy->fd,
1531 &dri2_dpy->is_different_gpu);
Emil Velikov00992702018-09-04 11:20:03 +01001532 dev = _eglAddDevice(dri2_dpy->fd, false);
1533 if (!dev) {
1534 _eglError(EGL_NOT_INITIALIZED, "DRI2: failed to find EGLDevice");
1535 goto cleanup;
1536 }
1537
1538 disp->Device = dev;
1539
Axel Davy4cd546d2015-05-01 01:16:24 +02001540 if (dri2_dpy->is_different_gpu) {
1541 free(dri2_dpy->device_name);
1542 dri2_dpy->device_name = loader_get_device_name_for_fd(dri2_dpy->fd);
1543 if (!dri2_dpy->device_name) {
1544 _eglError(EGL_BAD_ALLOC, "wayland-egl: failed to get device name "
1545 "for requested GPU");
Emil Velikova0163f92017-05-11 17:26:48 +01001546 goto cleanup;
Axel Davy4cd546d2015-05-01 01:16:24 +02001547 }
1548 }
1549
1550 /* we have to do the check now, because loader_get_user_preferred_fd
1551 * will return a render-node when the requested gpu is different
1552 * to the server, but also if the client asks for the same gpu than
1553 * the server by requesting its pci-id */
Emil Velikov175d9752015-07-10 12:27:06 +01001554 dri2_dpy->is_render_node = drmGetNodeTypeFromFd(dri2_dpy->fd) == DRM_NODE_RENDER;
Axel Davy4cd546d2015-05-01 01:16:24 +02001555
Emil Velikovaf7abc52016-09-12 17:48:18 +01001556 dri2_dpy->driver_name = loader_get_driver_for_fd(dri2_dpy->fd);
Benjamin Franzke93aea842011-02-04 12:39:40 +01001557 if (dri2_dpy->driver_name == NULL) {
1558 _eglError(EGL_BAD_ALLOC, "DRI2: failed to get driver name");
Emil Velikova0163f92017-05-11 17:26:48 +01001559 goto cleanup;
Benjamin Franzke93aea842011-02-04 12:39:40 +01001560 }
1561
Axel Davyfb0960a2015-05-01 01:30:10 +02001562 /* render nodes cannot use Gem names, and thus do not support
1563 * the __DRI_DRI2_LOADER extension */
Emil Velikov5cb16e02017-05-11 22:49:04 +01001564 if (!dri2_dpy->is_render_node) {
Emil Velikovf8719462016-08-24 23:32:27 +01001565 dri2_dpy->loader_extensions = dri2_loader_extensions;
Emil Velikov5cb16e02017-05-11 22:49:04 +01001566 if (!dri2_load_driver(disp)) {
1567 _eglError(EGL_BAD_ALLOC, "DRI2: failed to load driver");
1568 goto cleanup;
1569 }
1570 } else {
Emil Velikovf8719462016-08-24 23:32:27 +01001571 dri2_dpy->loader_extensions = image_loader_extensions;
Emil Velikov5cb16e02017-05-11 22:49:04 +01001572 if (!dri2_load_driver_dri3(disp)) {
1573 _eglError(EGL_BAD_ALLOC, "DRI3: failed to load driver");
1574 goto cleanup;
1575 }
1576 }
Benjamin Franzke93aea842011-02-04 12:39:40 +01001577
1578 if (!dri2_create_screen(disp))
Emil Velikova0163f92017-05-11 17:26:48 +01001579 goto cleanup;
Benjamin Franzke93aea842011-02-04 12:39:40 +01001580
Emil Velikov2c341f22017-05-11 16:20:04 +01001581 if (!dri2_setup_extensions(disp))
1582 goto cleanup;
1583
1584 dri2_setup_screen(disp);
1585
Emil Velikov47b06f52017-08-05 00:25:46 +01001586 dri2_wl_setup_swap_interval(disp);
Neil Roberts992a2db2013-11-15 13:50:50 +00001587
Axel Davy4cd546d2015-05-01 01:16:24 +02001588 /* To use Prime, we must have _DRI_IMAGE v7 at least.
1589 * createImageFromFds support indicates that Prime export/import
1590 * is supported by the driver. Fall back to
1591 * gem names if we don't have Prime support. */
Kristian Høgsberg16707372013-03-19 13:20:36 -04001592
1593 if (dri2_dpy->image->base.version < 7 ||
1594 dri2_dpy->image->createImageFromFds == NULL)
Neil Roberts63d46612014-04-08 23:28:40 +03001595 dri2_dpy->capabilities &= ~WL_DRM_CAPABILITY_PRIME;
Kristian Høgsberg16707372013-03-19 13:20:36 -04001596
Axel Davyfb0960a2015-05-01 01:30:10 +02001597 /* We cannot use Gem names with render-nodes, only prime fds (dma-buf).
1598 * The server needs to accept them */
1599 if (dri2_dpy->is_render_node &&
1600 !(dri2_dpy->capabilities & WL_DRM_CAPABILITY_PRIME)) {
1601 _eglLog(_EGL_WARNING, "wayland-egl: display is not render-node capable");
Emil Velikova0163f92017-05-11 17:26:48 +01001602 goto cleanup;
Axel Davyfb0960a2015-05-01 01:30:10 +02001603 }
1604
Axel Davy4cd546d2015-05-01 01:16:24 +02001605 if (dri2_dpy->is_different_gpu &&
1606 (dri2_dpy->image->base.version < 9 ||
1607 dri2_dpy->image->blitImage == NULL)) {
1608 _eglLog(_EGL_WARNING, "wayland-egl: Different GPU selected, but the "
1609 "Image extension in the driver is not "
1610 "compatible. Version 9 or later and blitImage() "
1611 "are required");
Emil Velikova0163f92017-05-11 17:26:48 +01001612 goto cleanup;
Axel Davy4cd546d2015-05-01 01:16:24 +02001613 }
1614
Eric Engestromad61d4f2018-04-22 16:48:15 +02001615 if (!dri2_wl_add_configs_for_visuals(disp)) {
Emil Velikov0b2b7192016-08-25 14:55:06 +01001616 _eglError(EGL_NOT_INITIALIZED, "DRI2: failed to add configs");
Emil Velikova0163f92017-05-11 17:26:48 +01001617 goto cleanup;
Kristian Høgsberg7b1d94e2011-08-31 16:45:04 -04001618 }
Benjamin Franzke93aea842011-02-04 12:39:40 +01001619
Eric Engestromad61d4f2018-04-22 16:48:15 +02001620 dri2_set_WL_bind_wayland_display(disp);
Axel Davy4cd546d2015-05-01 01:16:24 +02001621 /* When cannot convert EGLImage to wl_buffer when on a different gpu,
1622 * because the buffer of the EGLImage has likely a tiling mode the server
1623 * gpu won't support. These is no way to check for now. Thus do not support the
1624 * extension */
Emil Velikov83a792c2017-05-15 16:14:16 +01001625 if (!dri2_dpy->is_different_gpu)
Axel Davy4cd546d2015-05-01 01:16:24 +02001626 disp->Extensions.WL_create_wayland_buffer_from_image = EGL_TRUE;
Emil Velikov83a792c2017-05-15 16:14:16 +01001627
Kristian Høgsberg6d4d4b02012-12-13 23:32:14 -05001628 disp->Extensions.EXT_buffer_age = EGL_TRUE;
Benjamin Franzke6b369c42011-02-21 16:22:34 +01001629
Robert Braggf8c32422012-02-10 16:59:31 +00001630 disp->Extensions.EXT_swap_buffers_with_damage = EGL_TRUE;
1631
Chad Versace90502b12014-01-28 11:41:46 -08001632 /* Fill vtbl last to prevent accidentally calling virtual function during
1633 * initialization.
1634 */
1635 dri2_dpy->vtbl = &dri2_wl_display_vtbl;
1636
Benjamin Franzke93aea842011-02-04 12:39:40 +01001637 return EGL_TRUE;
1638
Emil Velikova0163f92017-05-11 17:26:48 +01001639 cleanup:
1640 dri2_display_destroy(disp);
Benjamin Franzke93aea842011-02-04 12:39:40 +01001641 return EGL_FALSE;
1642}
Axel Davycdcfe482015-05-01 11:11:20 +02001643
1644static int
1645dri2_wl_swrast_get_stride_for_format(int format, int w)
1646{
Daniel Stoned32b23f2018-02-06 11:58:45 +00001647 int visual_idx = dri2_wl_visual_idx_from_shm_format(format);
1648
Eric Engestrom65dda6c2018-02-15 11:10:22 +00001649 assume(visual_idx != -1);
1650
Daniel Stoned32b23f2018-02-06 11:58:45 +00001651 return w * (dri2_wl_visuals[visual_idx].bpp / 8);
Axel Davycdcfe482015-05-01 11:11:20 +02001652}
1653
Axel Davycdcfe482015-05-01 11:11:20 +02001654static EGLBoolean
Daniel Stone03dd9a82017-05-05 14:49:09 +01001655dri2_wl_swrast_allocate_buffer(struct dri2_egl_surface *dri2_surf,
Axel Davycdcfe482015-05-01 11:11:20 +02001656 int format, int w, int h,
1657 void **data, int *size,
1658 struct wl_buffer **buffer)
1659{
Daniel Stone03dd9a82017-05-05 14:49:09 +01001660 struct dri2_egl_display *dri2_dpy =
1661 dri2_egl_display(dri2_surf->base.Resource.Display);
Axel Davycdcfe482015-05-01 11:11:20 +02001662 struct wl_shm_pool *pool;
1663 int fd, stride, size_map;
1664 void *data_map;
1665
1666 stride = dri2_wl_swrast_get_stride_for_format(format, w);
1667 size_map = h * stride;
1668
Eric Engestrom882ed532018-08-10 12:37:17 +01001669 /* Create a shareable buffer */
Greg Vc0376a12018-01-18 23:29:14 +03001670 fd = os_create_anonymous_file(size_map, NULL);
Axel Davycdcfe482015-05-01 11:11:20 +02001671 if (fd < 0)
1672 return EGL_FALSE;
1673
1674 data_map = mmap(NULL, size_map, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
1675 if (data_map == MAP_FAILED) {
1676 close(fd);
1677 return EGL_FALSE;
1678 }
1679
1680 /* Share it in a wl_buffer */
1681 pool = wl_shm_create_pool(dri2_dpy->wl_shm, fd, size_map);
Daniel Stone03dd9a82017-05-05 14:49:09 +01001682 wl_proxy_set_queue((struct wl_proxy *)pool, dri2_surf->wl_queue);
Axel Davycdcfe482015-05-01 11:11:20 +02001683 *buffer = wl_shm_pool_create_buffer(pool, 0, w, h, stride, format);
1684 wl_shm_pool_destroy(pool);
1685 close(fd);
1686
1687 *data = data_map;
1688 *size = size_map;
1689 return EGL_TRUE;
1690}
1691
1692static int
1693swrast_update_buffers(struct dri2_egl_surface *dri2_surf)
1694{
1695 struct dri2_egl_display *dri2_dpy =
1696 dri2_egl_display(dri2_surf->base.Resource.Display);
Axel Davycdcfe482015-05-01 11:11:20 +02001697
1698 /* we need to do the following operations only once per frame */
1699 if (dri2_surf->back)
1700 return 0;
1701
Olivier Fourdan55af17f2018-10-25 14:48:15 +02001702 if (dri2_surf->base.Width != dri2_surf->wl_win->width ||
1703 dri2_surf->base.Height != dri2_surf->wl_win->height) {
Axel Davycdcfe482015-05-01 11:11:20 +02001704
1705 dri2_wl_release_buffers(dri2_surf);
1706
1707 dri2_surf->base.Width = dri2_surf->wl_win->width;
1708 dri2_surf->base.Height = dri2_surf->wl_win->height;
1709 dri2_surf->dx = dri2_surf->wl_win->dx;
1710 dri2_surf->dy = dri2_surf->wl_win->dy;
1711 dri2_surf->current = NULL;
1712 }
1713
1714 /* find back buffer */
1715
Daniel Stone9ca67112016-06-01 09:59:06 +01001716 /* There might be a buffer release already queued that wasn't processed */
Daniel Stone03dd9a82017-05-05 14:49:09 +01001717 wl_display_dispatch_queue_pending(dri2_dpy->wl_dpy, dri2_surf->wl_queue);
Axel Davycdcfe482015-05-01 11:11:20 +02001718
1719 /* try get free buffer already created */
Chad Versace98497df2017-06-22 11:00:40 -07001720 for (int i = 0; i < ARRAY_SIZE(dri2_surf->color_buffers); i++) {
Axel Davycdcfe482015-05-01 11:11:20 +02001721 if (!dri2_surf->color_buffers[i].locked &&
1722 dri2_surf->color_buffers[i].wl_buffer) {
1723 dri2_surf->back = &dri2_surf->color_buffers[i];
1724 break;
1725 }
1726 }
1727
1728 /* else choose any another free location */
1729 if (!dri2_surf->back) {
Chad Versace98497df2017-06-22 11:00:40 -07001730 for (int i = 0; i < ARRAY_SIZE(dri2_surf->color_buffers); i++) {
Axel Davycdcfe482015-05-01 11:11:20 +02001731 if (!dri2_surf->color_buffers[i].locked) {
1732 dri2_surf->back = &dri2_surf->color_buffers[i];
Daniel Stone03dd9a82017-05-05 14:49:09 +01001733 if (!dri2_wl_swrast_allocate_buffer(dri2_surf,
Axel Davycdcfe482015-05-01 11:11:20 +02001734 dri2_surf->format,
1735 dri2_surf->base.Width,
1736 dri2_surf->base.Height,
1737 &dri2_surf->back->data,
1738 &dri2_surf->back->data_size,
1739 &dri2_surf->back->wl_buffer)) {
1740 _eglError(EGL_BAD_ALLOC, "failed to allocate color buffer");
1741 return -1;
1742 }
Axel Davycdcfe482015-05-01 11:11:20 +02001743 wl_buffer_add_listener(dri2_surf->back->wl_buffer,
1744 &wl_buffer_listener, dri2_surf);
1745 break;
1746 }
1747 }
1748 }
1749
1750 if (!dri2_surf->back) {
1751 _eglError(EGL_BAD_ALLOC, "failed to find free buffer");
1752 return -1;
1753 }
1754
Eric Engestrom60f98422017-06-19 00:16:21 +01001755 dri2_surf->back->locked = true;
Axel Davycdcfe482015-05-01 11:11:20 +02001756
1757 /* If we have an extra unlocked buffer at this point, we had to do triple
1758 * buffering for a while, but now can go back to just double buffering.
1759 * That means we can free any unlocked buffer now. */
Chad Versace98497df2017-06-22 11:00:40 -07001760 for (int i = 0; i < ARRAY_SIZE(dri2_surf->color_buffers); i++) {
Axel Davycdcfe482015-05-01 11:11:20 +02001761 if (!dri2_surf->color_buffers[i].locked &&
1762 dri2_surf->color_buffers[i].wl_buffer) {
1763 wl_buffer_destroy(dri2_surf->color_buffers[i].wl_buffer);
1764 munmap(dri2_surf->color_buffers[i].data,
1765 dri2_surf->color_buffers[i].data_size);
1766 dri2_surf->color_buffers[i].wl_buffer = NULL;
1767 dri2_surf->color_buffers[i].data = NULL;
1768 }
1769 }
1770
1771 return 0;
1772}
1773
1774static void*
1775dri2_wl_swrast_get_frontbuffer_data(struct dri2_egl_surface *dri2_surf)
1776{
1777 /* if there has been a resize: */
1778 if (!dri2_surf->current)
1779 return NULL;
1780
1781 return dri2_surf->current->data;
1782}
1783
1784static void*
1785dri2_wl_swrast_get_backbuffer_data(struct dri2_egl_surface *dri2_surf)
1786{
1787 assert(dri2_surf->back);
1788 return dri2_surf->back->data;
1789}
1790
1791static void
1792dri2_wl_swrast_commit_backbuffer(struct dri2_egl_surface *dri2_surf)
1793{
1794 struct dri2_egl_display *dri2_dpy = dri2_egl_display(dri2_surf->base.Resource.Display);
1795
Daniel Stone9ca67112016-06-01 09:59:06 +01001796 while (dri2_surf->throttle_callback != NULL)
1797 if (wl_display_dispatch_queue(dri2_dpy->wl_dpy,
Daniel Stone03dd9a82017-05-05 14:49:09 +01001798 dri2_surf->wl_queue) == -1)
Emil Velikov6ff948e2016-11-11 16:27:59 +00001799 return;
Daniel Stone9ca67112016-06-01 09:59:06 +01001800
Axel Davycdcfe482015-05-01 11:11:20 +02001801 if (dri2_surf->base.SwapInterval > 0) {
1802 dri2_surf->throttle_callback =
Daniel Stone03dd9a82017-05-05 14:49:09 +01001803 wl_surface_frame(dri2_surf->wl_surface_wrapper);
Axel Davycdcfe482015-05-01 11:11:20 +02001804 wl_callback_add_listener(dri2_surf->throttle_callback,
1805 &throttle_listener, dri2_surf);
Axel Davycdcfe482015-05-01 11:11:20 +02001806 }
1807
1808 dri2_surf->current = dri2_surf->back;
1809 dri2_surf->back = NULL;
1810
Daniel Stone03dd9a82017-05-05 14:49:09 +01001811 wl_surface_attach(dri2_surf->wl_surface_wrapper,
Axel Davycdcfe482015-05-01 11:11:20 +02001812 dri2_surf->current->wl_buffer,
1813 dri2_surf->dx, dri2_surf->dy);
1814
1815 dri2_surf->wl_win->attached_width = dri2_surf->base.Width;
1816 dri2_surf->wl_win->attached_height = dri2_surf->base.Height;
1817 /* reset resize growing parameters */
1818 dri2_surf->dx = 0;
1819 dri2_surf->dy = 0;
1820
Daniel Stone03dd9a82017-05-05 14:49:09 +01001821 wl_surface_damage(dri2_surf->wl_surface_wrapper,
Axel Davycdcfe482015-05-01 11:11:20 +02001822 0, 0, INT32_MAX, INT32_MAX);
Daniel Stone03dd9a82017-05-05 14:49:09 +01001823 wl_surface_commit(dri2_surf->wl_surface_wrapper);
Axel Davycdcfe482015-05-01 11:11:20 +02001824
1825 /* If we're not waiting for a frame callback then we'll at least throttle
1826 * to a sync callback so that we always give a chance for the compositor to
1827 * handle the commit and send a release event before checking for a free
1828 * buffer */
1829 if (dri2_surf->throttle_callback == NULL) {
Derek Foremanaa18a632018-03-22 10:20:43 -05001830 dri2_surf->throttle_callback = wl_display_sync(dri2_surf->wl_dpy_wrapper);
Axel Davycdcfe482015-05-01 11:11:20 +02001831 wl_callback_add_listener(dri2_surf->throttle_callback,
1832 &throttle_listener, dri2_surf);
Axel Davycdcfe482015-05-01 11:11:20 +02001833 }
1834
1835 wl_display_flush(dri2_dpy->wl_dpy);
1836}
1837
1838static void
1839dri2_wl_swrast_get_drawable_info(__DRIdrawable * draw,
1840 int *x, int *y, int *w, int *h,
1841 void *loaderPrivate)
1842{
1843 struct dri2_egl_surface *dri2_surf = loaderPrivate;
1844
1845 (void) swrast_update_buffers(dri2_surf);
1846 *x = 0;
1847 *y = 0;
1848 *w = dri2_surf->base.Width;
1849 *h = dri2_surf->base.Height;
1850}
1851
1852static void
1853dri2_wl_swrast_get_image(__DRIdrawable * read,
1854 int x, int y, int w, int h,
1855 char *data, void *loaderPrivate)
1856{
1857 struct dri2_egl_surface *dri2_surf = loaderPrivate;
1858 int copy_width = dri2_wl_swrast_get_stride_for_format(dri2_surf->format, w);
1859 int x_offset = dri2_wl_swrast_get_stride_for_format(dri2_surf->format, x);
1860 int src_stride = dri2_wl_swrast_get_stride_for_format(dri2_surf->format, dri2_surf->base.Width);
1861 int dst_stride = copy_width;
1862 char *src, *dst;
1863
1864 src = dri2_wl_swrast_get_frontbuffer_data(dri2_surf);
1865 if (!src) {
1866 memset(data, 0, copy_width * h);
1867 return;
1868 }
1869
1870 assert(data != src);
1871 assert(copy_width <= src_stride);
1872
1873 src += x_offset;
1874 src += y * src_stride;
1875 dst = data;
1876
1877 if (copy_width > src_stride-x_offset)
1878 copy_width = src_stride-x_offset;
1879 if (h > dri2_surf->base.Height-y)
1880 h = dri2_surf->base.Height-y;
1881
1882 for (; h>0; h--) {
1883 memcpy(dst, src, copy_width);
1884 src += src_stride;
1885 dst += dst_stride;
1886 }
1887}
1888
1889static void
1890dri2_wl_swrast_put_image2(__DRIdrawable * draw, int op,
1891 int x, int y, int w, int h, int stride,
1892 char *data, void *loaderPrivate)
1893{
1894 struct dri2_egl_surface *dri2_surf = loaderPrivate;
1895 int copy_width = dri2_wl_swrast_get_stride_for_format(dri2_surf->format, w);
1896 int dst_stride = dri2_wl_swrast_get_stride_for_format(dri2_surf->format, dri2_surf->base.Width);
1897 int x_offset = dri2_wl_swrast_get_stride_for_format(dri2_surf->format, x);
1898 char *src, *dst;
1899
1900 assert(copy_width <= stride);
1901
1902 (void) swrast_update_buffers(dri2_surf);
1903 dst = dri2_wl_swrast_get_backbuffer_data(dri2_surf);
1904
1905 /* partial copy, copy old content */
1906 if (copy_width < dst_stride)
1907 dri2_wl_swrast_get_image(draw, 0, 0,
1908 dri2_surf->base.Width, dri2_surf->base.Height,
1909 dst, loaderPrivate);
1910
1911 dst += x_offset;
1912 dst += y * dst_stride;
1913
1914 src = data;
1915
1916 /* drivers expect we do these checks (and some rely on it) */
1917 if (copy_width > dst_stride-x_offset)
1918 copy_width = dst_stride-x_offset;
1919 if (h > dri2_surf->base.Height-y)
1920 h = dri2_surf->base.Height-y;
1921
1922 for (; h>0; h--) {
1923 memcpy(dst, src, copy_width);
1924 src += stride;
1925 dst += dst_stride;
1926 }
1927 dri2_wl_swrast_commit_backbuffer(dri2_surf);
1928}
1929
1930static void
1931dri2_wl_swrast_put_image(__DRIdrawable * draw, int op,
1932 int x, int y, int w, int h,
1933 char *data, void *loaderPrivate)
1934{
1935 struct dri2_egl_surface *dri2_surf = loaderPrivate;
1936 int stride;
1937
1938 stride = dri2_wl_swrast_get_stride_for_format(dri2_surf->format, w);
1939 dri2_wl_swrast_put_image2(draw, op, x, y, w, h,
1940 stride, data, loaderPrivate);
1941}
1942
Axel Davycdcfe482015-05-01 11:11:20 +02001943static EGLBoolean
Eric Engestrom82035b22018-04-22 16:48:15 +02001944dri2_wl_swrast_swap_buffers(_EGLDisplay *disp, _EGLSurface *draw)
Axel Davycdcfe482015-05-01 11:11:20 +02001945{
1946 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1947 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(draw);
1948
1949 dri2_dpy->core->swapBuffers(dri2_surf->dri_drawable);
1950 return EGL_TRUE;
1951}
1952
1953static void
1954shm_handle_format(void *data, struct wl_shm *shm, uint32_t format)
1955{
1956 struct dri2_egl_display *dri2_dpy = data;
Daniel Stone68a80c12018-02-06 10:20:39 +00001957 int visual_idx = dri2_wl_visual_idx_from_shm_format(format);
Axel Davycdcfe482015-05-01 11:11:20 +02001958
Daniel Stone68a80c12018-02-06 10:20:39 +00001959 if (visual_idx == -1)
1960 return;
1961
Eric Engestromfbf7c382018-11-27 12:27:45 +00001962 BITSET_SET(dri2_dpy->formats, visual_idx);
Axel Davycdcfe482015-05-01 11:11:20 +02001963}
1964
1965static const struct wl_shm_listener shm_listener = {
Emil Velikov55674942015-07-10 12:24:11 +01001966 .format = shm_handle_format
Axel Davycdcfe482015-05-01 11:11:20 +02001967};
1968
1969static void
Daniel Stone4b8ef272017-06-10 14:54:05 +01001970registry_handle_global_swrast(void *data, struct wl_registry *registry,
1971 uint32_t name, const char *interface,
1972 uint32_t version)
Axel Davycdcfe482015-05-01 11:11:20 +02001973{
1974 struct dri2_egl_display *dri2_dpy = data;
1975
1976 if (strcmp(interface, "wl_shm") == 0) {
1977 dri2_dpy->wl_shm =
1978 wl_registry_bind(registry, name, &wl_shm_interface, 1);
1979 wl_shm_add_listener(dri2_dpy->wl_shm, &shm_listener, dri2_dpy);
1980 }
1981}
1982
1983static const struct wl_registry_listener registry_listener_swrast = {
Emil Velikov55674942015-07-10 12:24:11 +01001984 .global = registry_handle_global_swrast,
1985 .global_remove = registry_handle_global_remove
Axel Davycdcfe482015-05-01 11:11:20 +02001986};
1987
Emil Velikov79d1fb92017-05-15 16:14:17 +01001988static const struct dri2_egl_display_vtbl dri2_wl_swrast_display_vtbl = {
Axel Davycdcfe482015-05-01 11:11:20 +02001989 .authenticate = NULL,
Emil Velikovcb5e7992016-11-28 18:25:19 +00001990 .create_window_surface = dri2_wl_create_window_surface,
Axel Davycdcfe482015-05-01 11:11:20 +02001991 .create_pixmap_surface = dri2_wl_create_pixmap_surface,
Axel Davycdcfe482015-05-01 11:11:20 +02001992 .destroy_surface = dri2_wl_destroy_surface,
Gurchetan Singh12181b52017-08-01 14:51:40 -07001993 .create_image = dri2_create_image_khr,
Axel Davycdcfe482015-05-01 11:11:20 +02001994 .swap_buffers = dri2_wl_swrast_swap_buffers,
Boyan Dinga25df542015-07-21 23:43:59 +08001995 .get_dri_drawable = dri2_surface_get_dri_drawable,
Axel Davycdcfe482015-05-01 11:11:20 +02001996};
1997
Emil Velikov2dbe14a2016-08-16 18:39:14 +01001998static const __DRIswrastLoaderExtension swrast_loader_extension = {
1999 .base = { __DRI_SWRAST_LOADER, 2 },
2000
2001 .getDrawableInfo = dri2_wl_swrast_get_drawable_info,
2002 .putImage = dri2_wl_swrast_put_image,
2003 .getImage = dri2_wl_swrast_get_image,
2004 .putImage2 = dri2_wl_swrast_put_image2,
2005};
2006
Emil Velikovf8719462016-08-24 23:32:27 +01002007static const __DRIextension *swrast_loader_extensions[] = {
2008 &swrast_loader_extension.base,
Gurchetan Singh12181b52017-08-01 14:51:40 -07002009 &image_lookup_extension.base,
Emil Velikovf8719462016-08-24 23:32:27 +01002010 NULL,
2011};
2012
Axel Davycdcfe482015-05-01 11:11:20 +02002013static EGLBoolean
Eric Engestromad61d4f2018-04-22 16:48:15 +02002014dri2_initialize_wayland_swrast(_EGLDisplay *disp)
Axel Davycdcfe482015-05-01 11:11:20 +02002015{
Emil Velikov00992702018-09-04 11:20:03 +01002016 _EGLDevice *dev;
Axel Davycdcfe482015-05-01 11:11:20 +02002017 struct dri2_egl_display *dri2_dpy;
Axel Davycdcfe482015-05-01 11:11:20 +02002018
Axel Davycdcfe482015-05-01 11:11:20 +02002019 dri2_dpy = calloc(1, sizeof *dri2_dpy);
2020 if (!dri2_dpy)
2021 return _eglError(EGL_BAD_ALLOC, "eglInitialize");
2022
Emil Velikova0163f92017-05-11 17:26:48 +01002023 dri2_dpy->fd = -1;
Axel Davycdcfe482015-05-01 11:11:20 +02002024 disp->DriverData = (void *) dri2_dpy;
2025 if (disp->PlatformDisplay == NULL) {
2026 dri2_dpy->wl_dpy = wl_display_connect(NULL);
2027 if (dri2_dpy->wl_dpy == NULL)
Emil Velikova0163f92017-05-11 17:26:48 +01002028 goto cleanup;
Eric Engestrom60f98422017-06-19 00:16:21 +01002029 dri2_dpy->own_device = true;
Axel Davycdcfe482015-05-01 11:11:20 +02002030 } else {
2031 dri2_dpy->wl_dpy = disp->PlatformDisplay;
2032 }
2033
Emil Velikov00992702018-09-04 11:20:03 +01002034 dev = _eglAddDevice(dri2_dpy->fd, true);
2035 if (!dev) {
2036 _eglError(EGL_NOT_INITIALIZED, "DRI2: failed to find EGLDevice");
2037 goto cleanup;
2038 }
2039
2040 disp->Device = dev;
2041
Axel Davycdcfe482015-05-01 11:11:20 +02002042 dri2_dpy->wl_queue = wl_display_create_queue(dri2_dpy->wl_dpy);
2043
Jonas Ådahl36b99762017-01-13 23:05:10 +08002044 dri2_dpy->wl_dpy_wrapper = wl_proxy_create_wrapper(dri2_dpy->wl_dpy);
2045 if (dri2_dpy->wl_dpy_wrapper == NULL)
Emil Velikova0163f92017-05-11 17:26:48 +01002046 goto cleanup;
Jonas Ådahl36b99762017-01-13 23:05:10 +08002047
2048 wl_proxy_set_queue((struct wl_proxy *) dri2_dpy->wl_dpy_wrapper,
2049 dri2_dpy->wl_queue);
2050
Axel Davycdcfe482015-05-01 11:11:20 +02002051 if (dri2_dpy->own_device)
2052 wl_display_dispatch_pending(dri2_dpy->wl_dpy);
2053
Jonas Ådahl36b99762017-01-13 23:05:10 +08002054 dri2_dpy->wl_registry = wl_display_get_registry(dri2_dpy->wl_dpy_wrapper);
Axel Davycdcfe482015-05-01 11:11:20 +02002055 wl_registry_add_listener(dri2_dpy->wl_registry,
2056 &registry_listener_swrast, dri2_dpy);
2057
2058 if (roundtrip(dri2_dpy) < 0 || dri2_dpy->wl_shm == NULL)
Emil Velikova0163f92017-05-11 17:26:48 +01002059 goto cleanup;
Axel Davycdcfe482015-05-01 11:11:20 +02002060
Eric Engestromfbf7c382018-11-27 12:27:45 +00002061 if (roundtrip(dri2_dpy) < 0 || !BITSET_TEST_RANGE(dri2_dpy->formats,
2062 0, EGL_DRI2_MAX_FORMATS))
Emil Velikova0163f92017-05-11 17:26:48 +01002063 goto cleanup;
Axel Davycdcfe482015-05-01 11:11:20 +02002064
2065 dri2_dpy->driver_name = strdup("swrast");
2066 if (!dri2_load_driver_swrast(disp))
Emil Velikova0163f92017-05-11 17:26:48 +01002067 goto cleanup;
Axel Davycdcfe482015-05-01 11:11:20 +02002068
Emil Velikovf8719462016-08-24 23:32:27 +01002069 dri2_dpy->loader_extensions = swrast_loader_extensions;
Axel Davycdcfe482015-05-01 11:11:20 +02002070
2071 if (!dri2_create_screen(disp))
Emil Velikova0163f92017-05-11 17:26:48 +01002072 goto cleanup;
Axel Davycdcfe482015-05-01 11:11:20 +02002073
Emil Velikov2c341f22017-05-11 16:20:04 +01002074 if (!dri2_setup_extensions(disp))
2075 goto cleanup;
2076
2077 dri2_setup_screen(disp);
2078
Emil Velikov47b06f52017-08-05 00:25:46 +01002079 dri2_wl_setup_swap_interval(disp);
Axel Davycdcfe482015-05-01 11:11:20 +02002080
Eric Engestromad61d4f2018-04-22 16:48:15 +02002081 if (!dri2_wl_add_configs_for_visuals(disp)) {
Emil Velikov0b2b7192016-08-25 14:55:06 +01002082 _eglError(EGL_NOT_INITIALIZED, "DRI2: failed to add configs");
Emil Velikova0163f92017-05-11 17:26:48 +01002083 goto cleanup;
Axel Davycdcfe482015-05-01 11:11:20 +02002084 }
2085
Axel Davycdcfe482015-05-01 11:11:20 +02002086 /* Fill vtbl last to prevent accidentally calling virtual function during
2087 * initialization.
2088 */
2089 dri2_dpy->vtbl = &dri2_wl_swrast_display_vtbl;
2090
2091 return EGL_TRUE;
2092
Emil Velikova0163f92017-05-11 17:26:48 +01002093 cleanup:
2094 dri2_display_destroy(disp);
Axel Davycdcfe482015-05-01 11:11:20 +02002095 return EGL_FALSE;
2096}
2097
2098EGLBoolean
Eric Engestromad61d4f2018-04-22 16:48:15 +02002099dri2_initialize_wayland(_EGLDisplay *disp)
Axel Davycdcfe482015-05-01 11:11:20 +02002100{
Eric Engestromc3f51522017-10-02 11:34:52 +01002101 EGLBoolean initialized = EGL_FALSE;
Axel Davycdcfe482015-05-01 11:11:20 +02002102
Eric Engestrom81cea662017-12-20 15:53:09 +00002103 if (!disp->Options.ForceSoftware)
Eric Engestromad61d4f2018-04-22 16:48:15 +02002104 initialized = dri2_initialize_wayland_drm(disp);
Axel Davycdcfe482015-05-01 11:11:20 +02002105
Eric Engestromc3f51522017-10-02 11:34:52 +01002106 if (!initialized)
Eric Engestromad61d4f2018-04-22 16:48:15 +02002107 initialized = dri2_initialize_wayland_swrast(disp);
Axel Davycdcfe482015-05-01 11:11:20 +02002108
2109 return initialized;
2110
2111}
Emil Velikov8d745ab2017-11-09 19:13:09 +00002112
2113void
2114dri2_teardown_wayland(struct dri2_egl_display *dri2_dpy)
2115{
2116 if (dri2_dpy->wl_drm)
2117 wl_drm_destroy(dri2_dpy->wl_drm);
2118 if (dri2_dpy->wl_dmabuf)
2119 zwp_linux_dmabuf_v1_destroy(dri2_dpy->wl_dmabuf);
2120 if (dri2_dpy->wl_shm)
2121 wl_shm_destroy(dri2_dpy->wl_shm);
2122 if (dri2_dpy->wl_registry)
2123 wl_registry_destroy(dri2_dpy->wl_registry);
2124 if (dri2_dpy->wl_queue)
2125 wl_event_queue_destroy(dri2_dpy->wl_queue);
2126 if (dri2_dpy->wl_dpy_wrapper)
2127 wl_proxy_wrapper_destroy(dri2_dpy->wl_dpy_wrapper);
Daniel Stone47320942018-02-06 10:29:13 +00002128
2129 for (int i = 0; dri2_dpy->wl_modifiers && i < ARRAY_SIZE(dri2_wl_visuals); i++)
2130 u_vector_finish(&dri2_dpy->wl_modifiers[i]);
2131 free(dri2_dpy->wl_modifiers);
2132
Emil Velikov8d745ab2017-11-09 19:13:09 +00002133 if (dri2_dpy->own_device)
2134 wl_display_disconnect(dri2_dpy->wl_dpy);
2135}