Revert "egl: Configs w/o double buffering support have no `EGL_WINDOW_BIT`."
[mesa.git] / src / egl / drivers / dri2 / platform_device.c
1 /*
2 * Mesa 3-D graphics library
3 *
4 * Copyright 2018 Collabora
5 *
6 * Based on platform_surfaceless, which has:
7 *
8 * Copyright (c) 2014 The Chromium OS Authors.
9 * Copyright © 2011 Intel Corporation
10 *
11 * Permission is hereby granted, free of charge, to any person obtaining a
12 * copy of this software and associated documentation files (the "Software"),
13 * to deal in the Software without restriction, including without limitation
14 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
15 * and/or sell copies of the Software, and to permit persons to whom the
16 * Software is furnished to do so, subject to the following conditions:
17 *
18 * The above copyright notice and this permission notice shall be included
19 * in all copies or substantial portions of the Software.
20 *
21 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
24 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
26 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
27 * DEALINGS IN THE SOFTWARE.
28 */
29 #ifdef HAVE_LIBDRM
30 #include <xf86drm.h>
31 #endif
32
33 #include <stdlib.h>
34 #include <stdio.h>
35 #include <string.h>
36 #include <dlfcn.h>
37 #include <sys/types.h>
38 #include <sys/stat.h>
39 #include <fcntl.h>
40 #include <unistd.h>
41
42 #include "egl_dri2.h"
43 #include "egl_dri2_fallbacks.h"
44 #include "loader.h"
45
46 static __DRIimage*
47 device_alloc_image(struct dri2_egl_display *dri2_dpy,
48 struct dri2_egl_surface *dri2_surf)
49 {
50 return dri2_dpy->image->createImage(
51 dri2_dpy->dri_screen,
52 dri2_surf->base.Width,
53 dri2_surf->base.Height,
54 dri2_surf->visual,
55 0,
56 NULL);
57 }
58
59 static void
60 device_free_images(struct dri2_egl_surface *dri2_surf)
61 {
62 struct dri2_egl_display *dri2_dpy =
63 dri2_egl_display(dri2_surf->base.Resource.Display);
64
65 if (dri2_surf->front) {
66 dri2_dpy->image->destroyImage(dri2_surf->front);
67 dri2_surf->front = NULL;
68 }
69 }
70
71 static int
72 device_image_get_buffers(__DRIdrawable *driDrawable,
73 unsigned int format,
74 uint32_t *stamp,
75 void *loaderPrivate,
76 uint32_t buffer_mask,
77 struct __DRIimageList *buffers)
78 {
79 struct dri2_egl_surface *dri2_surf = loaderPrivate;
80 struct dri2_egl_display *dri2_dpy =
81 dri2_egl_display(dri2_surf->base.Resource.Display);
82
83 buffers->image_mask = 0;
84 buffers->front = NULL;
85 buffers->back = NULL;
86
87 /* The EGL 1.5 spec states that pbuffers are single-buffered. Specifically,
88 * the spec states that they have a back buffer but no front buffer, in
89 * contrast to pixmaps, which have a front buffer but no back buffer.
90 *
91 * Single-buffered surfaces with no front buffer confuse Mesa; so we deviate
92 * from the spec, following the precedent of Mesa's EGL X11 platform. The
93 * X11 platform correctly assigns pbuffers to single-buffered configs, but
94 * assigns the pbuffer a front buffer instead of a back buffer.
95 *
96 * Pbuffers in the X11 platform mostly work today, so let's just copy its
97 * behavior instead of trying to fix (and hence potentially breaking) the
98 * world.
99 */
100
101 if (buffer_mask & __DRI_IMAGE_BUFFER_FRONT) {
102
103 if (!dri2_surf->front)
104 dri2_surf->front =
105 device_alloc_image(dri2_dpy, dri2_surf);
106
107 buffers->image_mask |= __DRI_IMAGE_BUFFER_FRONT;
108 buffers->front = dri2_surf->front;
109 }
110
111 return 1;
112 }
113
114 static _EGLSurface *
115 dri2_device_create_surface(_EGLDriver *drv, _EGLDisplay *disp, EGLint type,
116 _EGLConfig *conf, const EGLint *attrib_list)
117 {
118 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
119 struct dri2_egl_config *dri2_conf = dri2_egl_config(conf);
120 struct dri2_egl_surface *dri2_surf;
121 const __DRIconfig *config;
122
123 /* Make sure to calloc so all pointers
124 * are originally NULL.
125 */
126 dri2_surf = calloc(1, sizeof *dri2_surf);
127
128 if (!dri2_surf) {
129 _eglError(EGL_BAD_ALLOC, "eglCreatePbufferSurface");
130 return NULL;
131 }
132
133 if (!dri2_init_surface(&dri2_surf->base, disp, type, conf, attrib_list,
134 false, NULL))
135 goto cleanup_surface;
136
137 config = dri2_get_dri_config(dri2_conf, type,
138 dri2_surf->base.GLColorspace);
139
140 if (!config) {
141 _eglError(EGL_BAD_MATCH, "Unsupported surfacetype/colorspace configuration");
142 goto cleanup_surface;
143 }
144
145 if (!dri2_create_drawable(dri2_dpy, config, dri2_surf, dri2_surf))
146 goto cleanup_surface;
147
148 if (conf->RedSize == 5)
149 dri2_surf->visual = __DRI_IMAGE_FORMAT_RGB565;
150 else if (conf->AlphaSize == 0)
151 dri2_surf->visual = __DRI_IMAGE_FORMAT_XRGB8888;
152 else
153 dri2_surf->visual = __DRI_IMAGE_FORMAT_ARGB8888;
154
155 return &dri2_surf->base;
156
157 cleanup_surface:
158 free(dri2_surf);
159 return NULL;
160 }
161
162 static EGLBoolean
163 device_destroy_surface(_EGLDriver *drv, _EGLDisplay *disp, _EGLSurface *surf)
164 {
165 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
166 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(surf);
167
168 device_free_images(dri2_surf);
169
170 dri2_dpy->core->destroyDrawable(dri2_surf->dri_drawable);
171
172 dri2_fini_surface(surf);
173 free(dri2_surf);
174 return EGL_TRUE;
175 }
176
177 static _EGLSurface *
178 dri2_device_create_pbuffer_surface(_EGLDriver *drv, _EGLDisplay *disp,
179 _EGLConfig *conf, const EGLint *attrib_list)
180 {
181 return dri2_device_create_surface(drv, disp, EGL_PBUFFER_BIT, conf,
182 attrib_list);
183 }
184
185 static EGLBoolean
186 device_add_configs_for_visuals(_EGLDriver *drv, _EGLDisplay *disp)
187 {
188 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
189 static const struct {
190 const char *format_name;
191 int rgba_shifts[4];
192 unsigned int rgba_sizes[4];
193 } visuals[] = {
194 { "A2RGB10", { 20, 10, 0, 30 }, { 10, 10, 10, 2 } },
195 { "X2RGB10", { 20, 10, 0, -1 }, { 10, 10, 10, 0 } },
196 { "ARGB8888", { 16, 8, 0, 24 }, { 8, 8, 8, 8 } },
197 { "RGB888", { 16, 8, 0, -1 }, { 8, 8, 8, 0 } },
198 { "RGB565", { 11, 5, 0, -1 }, { 5, 6, 5, 0 } },
199 };
200 unsigned int format_count[ARRAY_SIZE(visuals)] = { 0 };
201 unsigned int config_count = 0;
202
203 for (unsigned i = 0; dri2_dpy->driver_configs[i] != NULL; i++) {
204 for (unsigned j = 0; j < ARRAY_SIZE(visuals); j++) {
205 struct dri2_egl_config *dri2_conf;
206
207 dri2_conf = dri2_add_config(disp, dri2_dpy->driver_configs[i],
208 config_count + 1, EGL_PBUFFER_BIT, NULL,
209 visuals[j].rgba_shifts, visuals[j].rgba_sizes);
210
211 if (dri2_conf) {
212 if (dri2_conf->base.ConfigID == config_count + 1)
213 config_count++;
214 format_count[j]++;
215 }
216 }
217 }
218
219 for (unsigned i = 0; i < ARRAY_SIZE(format_count); i++) {
220 if (!format_count[i]) {
221 _eglLog(_EGL_DEBUG, "No DRI config supports native format %s",
222 visuals[i].format_name);
223 }
224 }
225
226 return (config_count != 0);
227 }
228
229 static const struct dri2_egl_display_vtbl dri2_device_display_vtbl = {
230 .create_pixmap_surface = dri2_fallback_create_pixmap_surface,
231 .create_pbuffer_surface = dri2_device_create_pbuffer_surface,
232 .destroy_surface = device_destroy_surface,
233 .create_image = dri2_create_image_khr,
234 .swap_buffers_region = dri2_fallback_swap_buffers_region,
235 .post_sub_buffer = dri2_fallback_post_sub_buffer,
236 .copy_buffers = dri2_fallback_copy_buffers,
237 .query_buffer_age = dri2_fallback_query_buffer_age,
238 .create_wayland_buffer_from_image = dri2_fallback_create_wayland_buffer_from_image,
239 .get_sync_values = dri2_fallback_get_sync_values,
240 .get_dri_drawable = dri2_surface_get_dri_drawable,
241 };
242
243 static void
244 device_flush_front_buffer(__DRIdrawable *driDrawable, void *loaderPrivate)
245 {
246 }
247
248 static const __DRIimageLoaderExtension image_loader_extension = {
249 .base = { __DRI_IMAGE_LOADER, 1 },
250 .getBuffers = device_image_get_buffers,
251 .flushFrontBuffer = device_flush_front_buffer,
252 };
253
254 static const __DRIextension *image_loader_extensions[] = {
255 &image_loader_extension.base,
256 &image_lookup_extension.base,
257 &use_invalidate.base,
258 NULL,
259 };
260
261 static const __DRIextension *swrast_loader_extensions[] = {
262 &swrast_pbuffer_loader_extension.base,
263 &image_lookup_extension.base,
264 &use_invalidate.base,
265 NULL,
266 };
267
268 static int
269 device_get_fd(_EGLDisplay *disp, _EGLDevice *dev)
270 {
271 #ifdef HAVE_LIBDRM
272 int fd = disp->Options.fd;
273 /* The fcntl() code in _eglGetDeviceDisplay() ensures that valid fd >= 3,
274 * and invalid one is 0.
275 */
276 if (fd) {
277 /* According to the spec - if the FD does not match the EGLDevice
278 * behaviour is undefined.
279 *
280 * Add a trivial sanity check since it doesn't cost us anything.
281 */
282 if (dev != _eglAddDevice(fd, false))
283 return -1;
284
285 /* No EGL_EXT_output* extensions are supported, hence no master perms
286 * are needed. Get the render one - otherwise drivers might error out.
287 */
288 char *node = drmGetRenderDeviceNameFromFd(fd);
289
290 /* Don't close the internal fd, get render node one based on it. */
291 fd = loader_open_device(node);
292 free(node);
293 return fd;
294 }
295 const char *node = _eglGetDRMDeviceRenderNode(dev);
296 return loader_open_device(node);
297 #else
298 _eglLog(_EGL_FATAL, "Driver bug: Built without libdrm, yet using a HW device");
299 return -1;
300 #endif
301 }
302
303 static bool
304 device_probe_device(_EGLDisplay *disp)
305 {
306 struct dri2_egl_display *dri2_dpy = disp->DriverData;
307
308 if (disp->Options.ForceSoftware)
309 _eglLog(_EGL_WARNING, "Not allowed to force software rendering when "
310 "API explicitly selects a hardware device.");
311 dri2_dpy->fd = device_get_fd(disp, disp->Device);
312 if (dri2_dpy->fd < 0)
313 return false;
314
315 dri2_dpy->driver_name = loader_get_driver_for_fd(dri2_dpy->fd);
316 if (!dri2_dpy->driver_name)
317 goto err_name;
318
319 if (!dri2_load_driver_dri3(disp))
320 goto err_load;
321
322 dri2_dpy->loader_extensions = image_loader_extensions;
323 return true;
324
325 err_load:
326 free(dri2_dpy->driver_name);
327 dri2_dpy->driver_name = NULL;
328
329 err_name:
330 close(dri2_dpy->fd);
331 dri2_dpy->fd = -1;
332 return false;
333
334 }
335
336 static bool
337 device_probe_device_sw(_EGLDisplay *disp)
338 {
339 struct dri2_egl_display *dri2_dpy = disp->DriverData;
340
341 dri2_dpy->fd = -1;
342 dri2_dpy->driver_name = strdup("swrast");
343 if (!dri2_dpy->driver_name)
344 return false;
345
346 /* HACK: should be driver_swrast_null */
347 if (!dri2_load_driver_swrast(disp)) {
348 free(dri2_dpy->driver_name);
349 dri2_dpy->driver_name = NULL;
350 return false;
351 }
352
353 dri2_dpy->loader_extensions = swrast_loader_extensions;
354 return true;
355 }
356
357 EGLBoolean
358 dri2_initialize_device(_EGLDriver *drv, _EGLDisplay *disp)
359 {
360 _EGLDevice *dev;
361 struct dri2_egl_display *dri2_dpy;
362 const char* err;
363
364 dri2_dpy = calloc(1, sizeof *dri2_dpy);
365 if (!dri2_dpy)
366 return _eglError(EGL_BAD_ALLOC, "eglInitialize");
367
368 /* Extension requires a PlatformDisplay - the EGLDevice. */
369 dev = disp->PlatformDisplay;
370
371 dri2_dpy->fd = -1;
372 disp->Device = dev;
373 disp->DriverData = (void *) dri2_dpy;
374 err = "DRI2: failed to load driver";
375 if (_eglDeviceSupports(dev, _EGL_DEVICE_DRM)) {
376 if (!device_probe_device(disp))
377 goto cleanup;
378 } else if (_eglDeviceSupports(dev, _EGL_DEVICE_SOFTWARE)) {
379 if (!device_probe_device_sw(disp))
380 goto cleanup;
381 } else {
382 _eglLog(_EGL_FATAL, "Driver bug: exposed device is neither DRM nor SOFTWARE one");
383 return EGL_FALSE;
384 }
385
386 if (!dri2_create_screen(disp)) {
387 err = "DRI2: failed to create screen";
388 goto cleanup;
389 }
390
391 if (!dri2_setup_extensions(disp)) {
392 err = "DRI2: failed to find required DRI extensions";
393 goto cleanup;
394 }
395
396 dri2_setup_screen(disp);
397
398 if (!device_add_configs_for_visuals(drv, disp)) {
399 err = "DRI2: failed to add configs";
400 goto cleanup;
401 }
402
403 /* Fill vtbl last to prevent accidentally calling virtual function during
404 * initialization.
405 */
406 dri2_dpy->vtbl = &dri2_device_display_vtbl;
407
408 return EGL_TRUE;
409
410 cleanup:
411 dri2_display_destroy(disp);
412 return _eglError(EGL_NOT_INITIALIZED, err);
413 }