egl/android: Restrict minimum triple buffering for android color_buffers
[mesa.git] / src / egl / drivers / dri2 / platform_android.c
1 /*
2 * Mesa 3-D graphics library
3 *
4 * Copyright (C) 2010-2011 Chia-I Wu <olvaffe@gmail.com>
5 * Copyright (C) 2010-2011 LunarG Inc.
6 *
7 * Based on platform_x11, which has
8 *
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
30 #include <cutils/properties.h>
31 #include <errno.h>
32 #include <dirent.h>
33 #include <dlfcn.h>
34 #include <fcntl.h>
35 #include <xf86drm.h>
36 #include <stdbool.h>
37 #include <stdio.h>
38 #include <sync/sync.h>
39 #include <sys/types.h>
40 #include <drm-uapi/drm_fourcc.h>
41
42 #include "loader.h"
43 #include "egl_dri2.h"
44 #include "egl_dri2_fallbacks.h"
45
46 #ifdef HAVE_DRM_GRALLOC
47 #include <gralloc_drm_handle.h>
48 #include "gralloc_drm.h"
49 #endif /* HAVE_DRM_GRALLOC */
50
51 #define ALIGN(val, align) (((val) + (align) - 1) & ~((align) - 1))
52
53 enum chroma_order {
54 YCbCr,
55 YCrCb,
56 };
57
58 struct droid_yuv_format {
59 /* Lookup keys */
60 int native; /* HAL_PIXEL_FORMAT_ */
61 enum chroma_order chroma_order; /* chroma order is {Cb, Cr} or {Cr, Cb} */
62 int chroma_step; /* Distance in bytes between subsequent chroma pixels. */
63
64 /* Result */
65 int fourcc; /* DRM_FORMAT_ */
66 };
67
68 /* The following table is used to look up a DRI image FourCC based
69 * on native format and information contained in android_ycbcr struct. */
70 static const struct droid_yuv_format droid_yuv_formats[] = {
71 /* Native format, YCrCb, Chroma step, DRI image FourCC */
72 { HAL_PIXEL_FORMAT_YCbCr_420_888, YCbCr, 2, DRM_FORMAT_NV12 },
73 { HAL_PIXEL_FORMAT_YCbCr_420_888, YCbCr, 1, DRM_FORMAT_YUV420 },
74 { HAL_PIXEL_FORMAT_YCbCr_420_888, YCrCb, 1, DRM_FORMAT_YVU420 },
75 { HAL_PIXEL_FORMAT_YV12, YCrCb, 1, DRM_FORMAT_YVU420 },
76 /* HACK: See droid_create_image_from_prime_fds() and
77 * https://issuetracker.google.com/32077885. */
78 { HAL_PIXEL_FORMAT_IMPLEMENTATION_DEFINED, YCbCr, 2, DRM_FORMAT_NV12 },
79 { HAL_PIXEL_FORMAT_IMPLEMENTATION_DEFINED, YCbCr, 1, DRM_FORMAT_YUV420 },
80 { HAL_PIXEL_FORMAT_IMPLEMENTATION_DEFINED, YCrCb, 1, DRM_FORMAT_YVU420 },
81 { HAL_PIXEL_FORMAT_IMPLEMENTATION_DEFINED, YCrCb, 1, DRM_FORMAT_AYUV },
82 { HAL_PIXEL_FORMAT_IMPLEMENTATION_DEFINED, YCrCb, 1, DRM_FORMAT_XYUV8888 },
83 };
84
85 static int
86 get_fourcc_yuv(int native, enum chroma_order chroma_order, int chroma_step)
87 {
88 for (int i = 0; i < ARRAY_SIZE(droid_yuv_formats); ++i)
89 if (droid_yuv_formats[i].native == native &&
90 droid_yuv_formats[i].chroma_order == chroma_order &&
91 droid_yuv_formats[i].chroma_step == chroma_step)
92 return droid_yuv_formats[i].fourcc;
93
94 return -1;
95 }
96
97 static bool
98 is_yuv(int native)
99 {
100 for (int i = 0; i < ARRAY_SIZE(droid_yuv_formats); ++i)
101 if (droid_yuv_formats[i].native == native)
102 return true;
103
104 return false;
105 }
106
107 static int
108 get_format_bpp(int native)
109 {
110 int bpp;
111
112 switch (native) {
113 case HAL_PIXEL_FORMAT_RGBA_FP16:
114 bpp = 8;
115 break;
116 case HAL_PIXEL_FORMAT_RGBA_8888:
117 case HAL_PIXEL_FORMAT_IMPLEMENTATION_DEFINED:
118 /*
119 * HACK: Hardcode this to RGBX_8888 as per cros_gralloc hack.
120 * TODO: Remove this once https://issuetracker.google.com/32077885 is fixed.
121 */
122 case HAL_PIXEL_FORMAT_RGBX_8888:
123 case HAL_PIXEL_FORMAT_BGRA_8888:
124 case HAL_PIXEL_FORMAT_RGBA_1010102:
125 bpp = 4;
126 break;
127 case HAL_PIXEL_FORMAT_RGB_565:
128 bpp = 2;
129 break;
130 default:
131 bpp = 0;
132 break;
133 }
134
135 return bpp;
136 }
137
138 /* createImageFromFds requires fourcc format */
139 static int get_fourcc(int native)
140 {
141 switch (native) {
142 case HAL_PIXEL_FORMAT_RGB_565: return DRM_FORMAT_RGB565;
143 case HAL_PIXEL_FORMAT_BGRA_8888: return DRM_FORMAT_ARGB8888;
144 case HAL_PIXEL_FORMAT_RGBA_8888: return DRM_FORMAT_ABGR8888;
145 case HAL_PIXEL_FORMAT_IMPLEMENTATION_DEFINED:
146 /*
147 * HACK: Hardcode this to RGBX_8888 as per cros_gralloc hack.
148 * TODO: Remove this once https://issuetracker.google.com/32077885 is fixed.
149 */
150 case HAL_PIXEL_FORMAT_RGBX_8888: return DRM_FORMAT_XBGR8888;
151 case HAL_PIXEL_FORMAT_RGBA_FP16: return DRM_FORMAT_ABGR16161616F;
152 case HAL_PIXEL_FORMAT_RGBA_1010102: return DRM_FORMAT_ABGR2101010;
153 default:
154 _eglLog(_EGL_WARNING, "unsupported native buffer format 0x%x", native);
155 }
156 return -1;
157 }
158
159 static int get_format(int format)
160 {
161 switch (format) {
162 case HAL_PIXEL_FORMAT_BGRA_8888: return __DRI_IMAGE_FORMAT_ARGB8888;
163 case HAL_PIXEL_FORMAT_RGB_565: return __DRI_IMAGE_FORMAT_RGB565;
164 case HAL_PIXEL_FORMAT_RGBA_8888: return __DRI_IMAGE_FORMAT_ABGR8888;
165 case HAL_PIXEL_FORMAT_IMPLEMENTATION_DEFINED:
166 /*
167 * HACK: Hardcode this to RGBX_8888 as per cros_gralloc hack.
168 * TODO: Revert this once https://issuetracker.google.com/32077885 is fixed.
169 */
170 case HAL_PIXEL_FORMAT_RGBX_8888: return __DRI_IMAGE_FORMAT_XBGR8888;
171 case HAL_PIXEL_FORMAT_RGBA_FP16: return __DRI_IMAGE_FORMAT_ABGR16161616F;
172 case HAL_PIXEL_FORMAT_RGBA_1010102: return __DRI_IMAGE_FORMAT_ABGR2101010;
173 default:
174 _eglLog(_EGL_WARNING, "unsupported native buffer format 0x%x", format);
175 }
176 return -1;
177 }
178
179 /* returns # of fds, and by reference the actual fds */
180 static unsigned
181 get_native_buffer_fds(struct ANativeWindowBuffer *buf, int fds[3])
182 {
183 native_handle_t *handle = (native_handle_t *)buf->handle;
184
185 if (!handle)
186 return 0;
187
188 /*
189 * Various gralloc implementations exist, but the dma-buf fd tends
190 * to be first. Access it directly to avoid a dependency on specific
191 * gralloc versions.
192 */
193 for (int i = 0; i < handle->numFds; i++)
194 fds[i] = handle->data[i];
195
196 return handle->numFds;
197 }
198
199 #ifdef HAVE_DRM_GRALLOC
200 static int
201 get_native_buffer_name(struct ANativeWindowBuffer *buf)
202 {
203 return gralloc_drm_get_gem_handle(buf->handle);
204 }
205 #endif /* HAVE_DRM_GRALLOC */
206
207 static EGLBoolean
208 droid_window_dequeue_buffer(struct dri2_egl_surface *dri2_surf)
209 {
210 int fence_fd;
211
212 if (dri2_surf->window->dequeueBuffer(dri2_surf->window, &dri2_surf->buffer,
213 &fence_fd))
214 return EGL_FALSE;
215
216 /* If access to the buffer is controlled by a sync fence, then block on the
217 * fence.
218 *
219 * It may be more performant to postpone blocking until there is an
220 * immediate need to write to the buffer. But doing so would require adding
221 * hooks to the DRI2 loader.
222 *
223 * From the ANativeWindow::dequeueBuffer documentation:
224 *
225 * The libsync fence file descriptor returned in the int pointed to by
226 * the fenceFd argument will refer to the fence that must signal
227 * before the dequeued buffer may be written to. A value of -1
228 * indicates that the caller may access the buffer immediately without
229 * waiting on a fence. If a valid file descriptor is returned (i.e.
230 * any value except -1) then the caller is responsible for closing the
231 * file descriptor.
232 */
233 if (fence_fd >= 0) {
234 /* From the SYNC_IOC_WAIT documentation in <linux/sync.h>:
235 *
236 * Waits indefinitely if timeout < 0.
237 */
238 int timeout = -1;
239 sync_wait(fence_fd, timeout);
240 close(fence_fd);
241 }
242
243 /* Record all the buffers created by ANativeWindow and update back buffer
244 * for updating buffer's age in swap_buffers.
245 */
246 EGLBoolean updated = EGL_FALSE;
247 for (int i = 0; i < dri2_surf->color_buffers_count; i++) {
248 if (!dri2_surf->color_buffers[i].buffer) {
249 dri2_surf->color_buffers[i].buffer = dri2_surf->buffer;
250 }
251 if (dri2_surf->color_buffers[i].buffer == dri2_surf->buffer) {
252 dri2_surf->back = &dri2_surf->color_buffers[i];
253 updated = EGL_TRUE;
254 break;
255 }
256 }
257
258 if (!updated) {
259 /* In case of all the buffers were recreated by ANativeWindow, reset
260 * the color_buffers
261 */
262 for (int i = 0; i < dri2_surf->color_buffers_count; i++) {
263 dri2_surf->color_buffers[i].buffer = NULL;
264 dri2_surf->color_buffers[i].age = 0;
265 }
266 dri2_surf->color_buffers[0].buffer = dri2_surf->buffer;
267 dri2_surf->back = &dri2_surf->color_buffers[0];
268 }
269
270 return EGL_TRUE;
271 }
272
273 static EGLBoolean
274 droid_window_enqueue_buffer(_EGLDisplay *disp, struct dri2_egl_surface *dri2_surf)
275 {
276 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
277
278 /* To avoid blocking other EGL calls, release the display mutex before
279 * we enter droid_window_enqueue_buffer() and re-acquire the mutex upon
280 * return.
281 */
282 mtx_unlock(&disp->Mutex);
283
284 /* Queue the buffer with stored out fence fd. The ANativeWindow or buffer
285 * consumer may choose to wait for the fence to signal before accessing
286 * it. If fence fd value is -1, buffer can be accessed by consumer
287 * immediately. Consumer or application shouldn't rely on timestamp
288 * associated with fence if the fence fd is -1.
289 *
290 * Ownership of fd is transferred to consumer after queueBuffer and the
291 * consumer is responsible for closing it. Caller must not use the fd
292 * after passing it to queueBuffer.
293 */
294 int fence_fd = dri2_surf->out_fence_fd;
295 dri2_surf->out_fence_fd = -1;
296 dri2_surf->window->queueBuffer(dri2_surf->window, dri2_surf->buffer,
297 fence_fd);
298
299 dri2_surf->buffer = NULL;
300 dri2_surf->back = NULL;
301
302 mtx_lock(&disp->Mutex);
303
304 if (dri2_surf->dri_image_back) {
305 dri2_dpy->image->destroyImage(dri2_surf->dri_image_back);
306 dri2_surf->dri_image_back = NULL;
307 }
308
309 return EGL_TRUE;
310 }
311
312 static void
313 droid_window_cancel_buffer(struct dri2_egl_surface *dri2_surf)
314 {
315 int ret;
316 int fence_fd = dri2_surf->out_fence_fd;
317
318 dri2_surf->out_fence_fd = -1;
319 ret = dri2_surf->window->cancelBuffer(dri2_surf->window,
320 dri2_surf->buffer, fence_fd);
321 dri2_surf->buffer = NULL;
322 if (ret < 0) {
323 _eglLog(_EGL_WARNING, "ANativeWindow::cancelBuffer failed");
324 dri2_surf->base.Lost = EGL_TRUE;
325 }
326 }
327
328 static bool
329 droid_set_shared_buffer_mode(_EGLDisplay *disp, _EGLSurface *surf, bool mode)
330 {
331 #if ANDROID_API_LEVEL >= 24
332 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
333 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(surf);
334 struct ANativeWindow *window = dri2_surf->window;
335
336 assert(surf->Type == EGL_WINDOW_BIT);
337 assert(_eglSurfaceHasMutableRenderBuffer(&dri2_surf->base));
338
339 _eglLog(_EGL_DEBUG, "%s: mode=%d", __func__, mode);
340
341 if (native_window_set_shared_buffer_mode(window, mode)) {
342 _eglLog(_EGL_WARNING, "failed native_window_set_shared_buffer_mode"
343 "(window=%p, mode=%d)", window, mode);
344 return false;
345 }
346
347 return true;
348 #else
349 _eglLog(_EGL_FATAL, "%s:%d: internal error: unreachable", __FILE__, __LINE__);
350 return false;
351 #endif
352 }
353
354 static _EGLSurface *
355 droid_create_surface(_EGLDriver *drv, _EGLDisplay *disp, EGLint type,
356 _EGLConfig *conf, void *native_window,
357 const EGLint *attrib_list)
358 {
359 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
360 struct dri2_egl_config *dri2_conf = dri2_egl_config(conf);
361 struct dri2_egl_surface *dri2_surf;
362 struct ANativeWindow *window = native_window;
363 const __DRIconfig *config;
364
365 dri2_surf = calloc(1, sizeof *dri2_surf);
366 if (!dri2_surf) {
367 _eglError(EGL_BAD_ALLOC, "droid_create_surface");
368 return NULL;
369 }
370
371 if (!dri2_init_surface(&dri2_surf->base, disp, type, conf, attrib_list,
372 true, native_window))
373 goto cleanup_surface;
374
375 if (type == EGL_WINDOW_BIT) {
376 int format;
377 int buffer_count;
378 const int min_buffers = 3;
379
380 if (window->common.magic != ANDROID_NATIVE_WINDOW_MAGIC) {
381 _eglError(EGL_BAD_NATIVE_WINDOW, "droid_create_surface");
382 goto cleanup_surface;
383 }
384 if (window->query(window, NATIVE_WINDOW_FORMAT, &format)) {
385 _eglError(EGL_BAD_NATIVE_WINDOW, "droid_create_surface");
386 goto cleanup_surface;
387 }
388
389 /* Query ANativeWindow for MIN_UNDEQUEUED_BUFFER, set buffer count
390 * and allocate color_buffers.
391 */
392 if (window->query(window, NATIVE_WINDOW_MIN_UNDEQUEUED_BUFFERS,
393 &buffer_count)) {
394 _eglError(EGL_BAD_NATIVE_WINDOW, "droid_create_surface");
395 goto cleanup_surface;
396 }
397
398 if (buffer_count < min_buffers)
399 buffer_count = min_buffers;
400 if (native_window_set_buffer_count(window, buffer_count)) {
401 _eglError(EGL_BAD_NATIVE_WINDOW, "droid_create_surface");
402 goto cleanup_surface;
403 }
404 dri2_surf->color_buffers = calloc(buffer_count,
405 sizeof(*dri2_surf->color_buffers));
406 if (!dri2_surf->color_buffers) {
407 _eglError(EGL_BAD_ALLOC, "droid_create_surface");
408 goto cleanup_surface;
409 }
410 dri2_surf->color_buffers_count = buffer_count;
411
412 if (format != dri2_conf->base.NativeVisualID) {
413 _eglLog(_EGL_WARNING, "Native format mismatch: 0x%x != 0x%x",
414 format, dri2_conf->base.NativeVisualID);
415 }
416
417 window->query(window, NATIVE_WINDOW_WIDTH, &dri2_surf->base.Width);
418 window->query(window, NATIVE_WINDOW_HEIGHT, &dri2_surf->base.Height);
419 }
420
421 config = dri2_get_dri_config(dri2_conf, type,
422 dri2_surf->base.GLColorspace);
423 if (!config) {
424 _eglError(EGL_BAD_MATCH, "Unsupported surfacetype/colorspace configuration");
425 goto cleanup_surface;
426 }
427
428 if (!dri2_create_drawable(dri2_dpy, config, dri2_surf, dri2_surf))
429 goto cleanup_surface;
430
431 if (window) {
432 window->common.incRef(&window->common);
433 dri2_surf->window = window;
434 }
435
436 return &dri2_surf->base;
437
438 cleanup_surface:
439 if (dri2_surf->color_buffers_count)
440 free(dri2_surf->color_buffers);
441 free(dri2_surf);
442
443 return NULL;
444 }
445
446 static _EGLSurface *
447 droid_create_window_surface(_EGLDriver *drv, _EGLDisplay *disp,
448 _EGLConfig *conf, void *native_window,
449 const EGLint *attrib_list)
450 {
451 return droid_create_surface(drv, disp, EGL_WINDOW_BIT, conf,
452 native_window, attrib_list);
453 }
454
455 static _EGLSurface *
456 droid_create_pbuffer_surface(_EGLDriver *drv, _EGLDisplay *disp,
457 _EGLConfig *conf, const EGLint *attrib_list)
458 {
459 return droid_create_surface(drv, disp, EGL_PBUFFER_BIT, conf,
460 NULL, attrib_list);
461 }
462
463 static EGLBoolean
464 droid_destroy_surface(_EGLDriver *drv, _EGLDisplay *disp, _EGLSurface *surf)
465 {
466 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
467 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(surf);
468
469 dri2_egl_surface_free_local_buffers(dri2_surf);
470
471 if (dri2_surf->base.Type == EGL_WINDOW_BIT) {
472 if (dri2_surf->buffer)
473 droid_window_cancel_buffer(dri2_surf);
474
475 dri2_surf->window->common.decRef(&dri2_surf->window->common);
476 }
477
478 if (dri2_surf->dri_image_back) {
479 _eglLog(_EGL_DEBUG, "%s : %d : destroy dri_image_back", __func__, __LINE__);
480 dri2_dpy->image->destroyImage(dri2_surf->dri_image_back);
481 dri2_surf->dri_image_back = NULL;
482 }
483
484 if (dri2_surf->dri_image_front) {
485 _eglLog(_EGL_DEBUG, "%s : %d : destroy dri_image_front", __func__, __LINE__);
486 dri2_dpy->image->destroyImage(dri2_surf->dri_image_front);
487 dri2_surf->dri_image_front = NULL;
488 }
489
490 dri2_dpy->core->destroyDrawable(dri2_surf->dri_drawable);
491
492 dri2_fini_surface(surf);
493 free(dri2_surf->color_buffers);
494 free(dri2_surf);
495
496 return EGL_TRUE;
497 }
498
499 static EGLBoolean
500 droid_swap_interval(_EGLDriver *drv, _EGLDisplay *disp,
501 _EGLSurface *surf, EGLint interval)
502 {
503 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(surf);
504 struct ANativeWindow *window = dri2_surf->window;
505
506 if (window->setSwapInterval(window, interval))
507 return EGL_FALSE;
508
509 surf->SwapInterval = interval;
510 return EGL_TRUE;
511 }
512
513 static int
514 update_buffers(struct dri2_egl_surface *dri2_surf)
515 {
516 if (dri2_surf->base.Lost)
517 return -1;
518
519 if (dri2_surf->base.Type != EGL_WINDOW_BIT)
520 return 0;
521
522 /* try to dequeue the next back buffer */
523 if (!dri2_surf->buffer && !droid_window_dequeue_buffer(dri2_surf)) {
524 _eglLog(_EGL_WARNING, "Could not dequeue buffer from native window");
525 dri2_surf->base.Lost = EGL_TRUE;
526 return -1;
527 }
528
529 /* free outdated buffers and update the surface size */
530 if (dri2_surf->base.Width != dri2_surf->buffer->width ||
531 dri2_surf->base.Height != dri2_surf->buffer->height) {
532 dri2_egl_surface_free_local_buffers(dri2_surf);
533 dri2_surf->base.Width = dri2_surf->buffer->width;
534 dri2_surf->base.Height = dri2_surf->buffer->height;
535 }
536
537 return 0;
538 }
539
540 static int
541 get_front_bo(struct dri2_egl_surface *dri2_surf, unsigned int format)
542 {
543 struct dri2_egl_display *dri2_dpy =
544 dri2_egl_display(dri2_surf->base.Resource.Display);
545
546 if (dri2_surf->dri_image_front)
547 return 0;
548
549 if (dri2_surf->base.Type == EGL_WINDOW_BIT) {
550 /* According current EGL spec, front buffer rendering
551 * for window surface is not supported now.
552 * and mesa doesn't have the implementation of this case.
553 * Add warning message, but not treat it as error.
554 */
555 _eglLog(_EGL_DEBUG, "DRI driver requested unsupported front buffer for window surface");
556 } else if (dri2_surf->base.Type == EGL_PBUFFER_BIT) {
557 dri2_surf->dri_image_front =
558 dri2_dpy->image->createImage(dri2_dpy->dri_screen,
559 dri2_surf->base.Width,
560 dri2_surf->base.Height,
561 format,
562 0,
563 dri2_surf);
564 if (!dri2_surf->dri_image_front) {
565 _eglLog(_EGL_WARNING, "dri2_image_front allocation failed");
566 return -1;
567 }
568 }
569
570 return 0;
571 }
572
573 static int
574 get_back_bo(struct dri2_egl_surface *dri2_surf)
575 {
576 struct dri2_egl_display *dri2_dpy =
577 dri2_egl_display(dri2_surf->base.Resource.Display);
578 int fourcc, pitch;
579 int offset = 0, fds[3];
580 unsigned num_fds;
581
582 if (dri2_surf->dri_image_back)
583 return 0;
584
585 if (dri2_surf->base.Type == EGL_WINDOW_BIT) {
586 if (!dri2_surf->buffer) {
587 _eglLog(_EGL_WARNING, "Could not get native buffer");
588 return -1;
589 }
590
591 num_fds = get_native_buffer_fds(dri2_surf->buffer, fds);
592 if (num_fds == 0) {
593 _eglLog(_EGL_WARNING, "Could not get native buffer FD");
594 return -1;
595 }
596
597 fourcc = get_fourcc(dri2_surf->buffer->format);
598
599 pitch = dri2_surf->buffer->stride *
600 get_format_bpp(dri2_surf->buffer->format);
601
602 if (fourcc == -1 || pitch == 0) {
603 _eglLog(_EGL_WARNING, "Invalid buffer fourcc(%x) or pitch(%d)",
604 fourcc, pitch);
605 return -1;
606 }
607
608 dri2_surf->dri_image_back =
609 dri2_dpy->image->createImageFromFds(dri2_dpy->dri_screen,
610 dri2_surf->base.Width,
611 dri2_surf->base.Height,
612 fourcc,
613 fds,
614 num_fds,
615 &pitch,
616 &offset,
617 dri2_surf);
618 if (!dri2_surf->dri_image_back) {
619 _eglLog(_EGL_WARNING, "failed to create DRI image from FD");
620 return -1;
621 }
622 } else if (dri2_surf->base.Type == EGL_PBUFFER_BIT) {
623 /* The EGL 1.5 spec states that pbuffers are single-buffered. Specifically,
624 * the spec states that they have a back buffer but no front buffer, in
625 * contrast to pixmaps, which have a front buffer but no back buffer.
626 *
627 * Single-buffered surfaces with no front buffer confuse Mesa; so we deviate
628 * from the spec, following the precedent of Mesa's EGL X11 platform. The
629 * X11 platform correctly assigns pbuffers to single-buffered configs, but
630 * assigns the pbuffer a front buffer instead of a back buffer.
631 *
632 * Pbuffers in the X11 platform mostly work today, so let's just copy its
633 * behavior instead of trying to fix (and hence potentially breaking) the
634 * world.
635 */
636 _eglLog(_EGL_DEBUG, "DRI driver requested unsupported back buffer for pbuffer surface");
637 }
638
639 return 0;
640 }
641
642 /* Some drivers will pass multiple bits in buffer_mask.
643 * For such case, will go through all the bits, and
644 * will not return error when unsupported buffer is requested, only
645 * return error when the allocation for supported buffer failed.
646 */
647 static int
648 droid_image_get_buffers(__DRIdrawable *driDrawable,
649 unsigned int format,
650 uint32_t *stamp,
651 void *loaderPrivate,
652 uint32_t buffer_mask,
653 struct __DRIimageList *images)
654 {
655 struct dri2_egl_surface *dri2_surf = loaderPrivate;
656
657 images->image_mask = 0;
658 images->front = NULL;
659 images->back = NULL;
660
661 if (update_buffers(dri2_surf) < 0)
662 return 0;
663
664 if (_eglSurfaceInSharedBufferMode(&dri2_surf->base)) {
665 if (get_back_bo(dri2_surf) < 0)
666 return 0;
667
668 /* We have dri_image_back because this is a window surface and
669 * get_back_bo() succeeded.
670 */
671 assert(dri2_surf->dri_image_back);
672 images->back = dri2_surf->dri_image_back;
673 images->image_mask |= __DRI_IMAGE_BUFFER_SHARED;
674
675 /* There exists no accompanying back nor front buffer. */
676 return 1;
677 }
678
679 if (buffer_mask & __DRI_IMAGE_BUFFER_FRONT) {
680 if (get_front_bo(dri2_surf, format) < 0)
681 return 0;
682
683 if (dri2_surf->dri_image_front) {
684 images->front = dri2_surf->dri_image_front;
685 images->image_mask |= __DRI_IMAGE_BUFFER_FRONT;
686 }
687 }
688
689 if (buffer_mask & __DRI_IMAGE_BUFFER_BACK) {
690 if (get_back_bo(dri2_surf) < 0)
691 return 0;
692
693 if (dri2_surf->dri_image_back) {
694 images->back = dri2_surf->dri_image_back;
695 images->image_mask |= __DRI_IMAGE_BUFFER_BACK;
696 }
697 }
698
699 return 1;
700 }
701
702 static EGLint
703 droid_query_buffer_age(_EGLDriver *drv,
704 _EGLDisplay *disp, _EGLSurface *surface)
705 {
706 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(surface);
707
708 if (update_buffers(dri2_surf) < 0) {
709 _eglError(EGL_BAD_ALLOC, "droid_query_buffer_age");
710 return -1;
711 }
712
713 return dri2_surf->back ? dri2_surf->back->age : 0;
714 }
715
716 static EGLBoolean
717 droid_swap_buffers(_EGLDriver *drv, _EGLDisplay *disp, _EGLSurface *draw)
718 {
719 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
720 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(draw);
721 const bool has_mutable_rb = _eglSurfaceHasMutableRenderBuffer(draw);
722
723 /* From the EGL_KHR_mutable_render_buffer spec (v12):
724 *
725 * If surface is a single-buffered window, pixmap, or pbuffer surface
726 * for which there is no pending change to the EGL_RENDER_BUFFER
727 * attribute, eglSwapBuffers has no effect.
728 */
729 if (has_mutable_rb &&
730 draw->RequestedRenderBuffer == EGL_SINGLE_BUFFER &&
731 draw->ActiveRenderBuffer == EGL_SINGLE_BUFFER) {
732 _eglLog(_EGL_DEBUG, "%s: remain in shared buffer mode", __func__);
733 return EGL_TRUE;
734 }
735
736 for (int i = 0; i < dri2_surf->color_buffers_count; i++) {
737 if (dri2_surf->color_buffers[i].age > 0)
738 dri2_surf->color_buffers[i].age++;
739 }
740
741 /* "XXX: we don't use get_back_bo() since it causes regressions in
742 * several dEQP tests.
743 */
744 if (dri2_surf->back)
745 dri2_surf->back->age = 1;
746
747 dri2_flush_drawable_for_swapbuffers(disp, draw);
748
749 /* dri2_surf->buffer can be null even when no error has occured. For
750 * example, if the user has called no GL rendering commands since the
751 * previous eglSwapBuffers, then the driver may have not triggered
752 * a callback to ANativeWindow::dequeueBuffer, in which case
753 * dri2_surf->buffer remains null.
754 */
755 if (dri2_surf->buffer)
756 droid_window_enqueue_buffer(disp, dri2_surf);
757
758 dri2_dpy->flush->invalidate(dri2_surf->dri_drawable);
759
760 /* Update the shared buffer mode */
761 if (has_mutable_rb &&
762 draw->ActiveRenderBuffer != draw->RequestedRenderBuffer) {
763 bool mode = (draw->RequestedRenderBuffer == EGL_SINGLE_BUFFER);
764 _eglLog(_EGL_DEBUG, "%s: change to shared buffer mode %d",
765 __func__, mode);
766
767 if (!droid_set_shared_buffer_mode(disp, draw, mode))
768 return EGL_FALSE;
769 draw->ActiveRenderBuffer = draw->RequestedRenderBuffer;
770 }
771
772 return EGL_TRUE;
773 }
774
775 static _EGLImage *
776 droid_create_image_from_prime_fds_yuv(_EGLDisplay *disp, _EGLContext *ctx,
777 struct ANativeWindowBuffer *buf,
778 int num_fds, int fds[3])
779 {
780 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
781 struct android_ycbcr ycbcr;
782 size_t offsets[3];
783 size_t pitches[3];
784 enum chroma_order chroma_order;
785 int fourcc;
786 int ret;
787
788 if (!dri2_dpy->gralloc->lock_ycbcr) {
789 _eglLog(_EGL_WARNING, "Gralloc does not support lock_ycbcr");
790 return NULL;
791 }
792
793 memset(&ycbcr, 0, sizeof(ycbcr));
794 ret = dri2_dpy->gralloc->lock_ycbcr(dri2_dpy->gralloc, buf->handle,
795 0, 0, 0, 0, 0, &ycbcr);
796 if (ret) {
797 /* HACK: See droid_create_image_from_prime_fds() and
798 * https://issuetracker.google.com/32077885.*/
799 if (buf->format == HAL_PIXEL_FORMAT_IMPLEMENTATION_DEFINED)
800 return NULL;
801
802 _eglLog(_EGL_WARNING, "gralloc->lock_ycbcr failed: %d", ret);
803 return NULL;
804 }
805 dri2_dpy->gralloc->unlock(dri2_dpy->gralloc, buf->handle);
806
807 /* When lock_ycbcr's usage argument contains no SW_READ/WRITE flags
808 * it will return the .y/.cb/.cr pointers based on a NULL pointer,
809 * so they can be interpreted as offsets. */
810 offsets[0] = (size_t)ycbcr.y;
811 /* We assume here that all the planes are located in one DMA-buf. */
812 if ((size_t)ycbcr.cr < (size_t)ycbcr.cb) {
813 chroma_order = YCrCb;
814 offsets[1] = (size_t)ycbcr.cr;
815 offsets[2] = (size_t)ycbcr.cb;
816 } else {
817 chroma_order = YCbCr;
818 offsets[1] = (size_t)ycbcr.cb;
819 offsets[2] = (size_t)ycbcr.cr;
820 }
821
822 /* .ystride is the line length (in bytes) of the Y plane,
823 * .cstride is the line length (in bytes) of any of the remaining
824 * Cb/Cr/CbCr planes, assumed to be the same for Cb and Cr for fully
825 * planar formats. */
826 pitches[0] = ycbcr.ystride;
827 pitches[1] = pitches[2] = ycbcr.cstride;
828
829 /* .chroma_step is the byte distance between the same chroma channel
830 * values of subsequent pixels, assumed to be the same for Cb and Cr. */
831 fourcc = get_fourcc_yuv(buf->format, chroma_order, ycbcr.chroma_step);
832 if (fourcc == -1) {
833 _eglLog(_EGL_WARNING, "unsupported YUV format, native = %x, chroma_order = %s, chroma_step = %d",
834 buf->format, chroma_order == YCbCr ? "YCbCr" : "YCrCb", ycbcr.chroma_step);
835 return NULL;
836 }
837
838 /*
839 * Since this is EGL_NATIVE_BUFFER_ANDROID don't assume that
840 * the single-fd case cannot happen. So handle eithe single
841 * fd or fd-per-plane case:
842 */
843 if (num_fds == 1) {
844 fds[2] = fds[1] = fds[0];
845 } else {
846 int expected_planes = (ycbcr.chroma_step == 2) ? 2 : 3;
847 assert(num_fds == expected_planes);
848 }
849
850 if (ycbcr.chroma_step == 2) {
851 /* Semi-planar Y + CbCr or Y + CrCb format. */
852 const EGLint attr_list_2plane[] = {
853 EGL_WIDTH, buf->width,
854 EGL_HEIGHT, buf->height,
855 EGL_LINUX_DRM_FOURCC_EXT, fourcc,
856 EGL_DMA_BUF_PLANE0_FD_EXT, fds[0],
857 EGL_DMA_BUF_PLANE0_PITCH_EXT, pitches[0],
858 EGL_DMA_BUF_PLANE0_OFFSET_EXT, offsets[0],
859 EGL_DMA_BUF_PLANE1_FD_EXT, fds[1],
860 EGL_DMA_BUF_PLANE1_PITCH_EXT, pitches[1],
861 EGL_DMA_BUF_PLANE1_OFFSET_EXT, offsets[1],
862 EGL_NONE, 0
863 };
864
865 return dri2_create_image_dma_buf(disp, ctx, NULL, attr_list_2plane);
866 } else {
867 /* Fully planar Y + Cb + Cr or Y + Cr + Cb format. */
868 const EGLint attr_list_3plane[] = {
869 EGL_WIDTH, buf->width,
870 EGL_HEIGHT, buf->height,
871 EGL_LINUX_DRM_FOURCC_EXT, fourcc,
872 EGL_DMA_BUF_PLANE0_FD_EXT, fds[0],
873 EGL_DMA_BUF_PLANE0_PITCH_EXT, pitches[0],
874 EGL_DMA_BUF_PLANE0_OFFSET_EXT, offsets[0],
875 EGL_DMA_BUF_PLANE1_FD_EXT, fds[1],
876 EGL_DMA_BUF_PLANE1_PITCH_EXT, pitches[1],
877 EGL_DMA_BUF_PLANE1_OFFSET_EXT, offsets[1],
878 EGL_DMA_BUF_PLANE2_FD_EXT, fds[2],
879 EGL_DMA_BUF_PLANE2_PITCH_EXT, pitches[2],
880 EGL_DMA_BUF_PLANE2_OFFSET_EXT, offsets[2],
881 EGL_NONE, 0
882 };
883
884 return dri2_create_image_dma_buf(disp, ctx, NULL, attr_list_3plane);
885 }
886 }
887
888 static _EGLImage *
889 droid_create_image_from_prime_fds(_EGLDisplay *disp, _EGLContext *ctx,
890 struct ANativeWindowBuffer *buf, int num_fds, int fds[3])
891 {
892 unsigned int pitch;
893
894 if (is_yuv(buf->format)) {
895 _EGLImage *image;
896
897 image = droid_create_image_from_prime_fds_yuv(disp, ctx, buf, num_fds, fds);
898 /*
899 * HACK: https://issuetracker.google.com/32077885
900 * There is no API available to properly query the IMPLEMENTATION_DEFINED
901 * format. As a workaround we rely here on gralloc allocating either
902 * an arbitrary YCbCr 4:2:0 or RGBX_8888, with the latter being recognized
903 * by lock_ycbcr failing.
904 */
905 if (image || buf->format != HAL_PIXEL_FORMAT_IMPLEMENTATION_DEFINED)
906 return image;
907 }
908
909 /*
910 * Non-YUV formats could *also* have multiple planes, such as ancillary
911 * color compression state buffer, but the rest of the code isn't ready
912 * yet to deal with modifiers:
913 */
914 assert(num_fds == 1);
915
916 const int fourcc = get_fourcc(buf->format);
917 if (fourcc == -1) {
918 _eglError(EGL_BAD_PARAMETER, "eglCreateEGLImageKHR");
919 return NULL;
920 }
921
922 pitch = buf->stride * get_format_bpp(buf->format);
923 if (pitch == 0) {
924 _eglError(EGL_BAD_PARAMETER, "eglCreateEGLImageKHR");
925 return NULL;
926 }
927
928 const EGLint attr_list[] = {
929 EGL_WIDTH, buf->width,
930 EGL_HEIGHT, buf->height,
931 EGL_LINUX_DRM_FOURCC_EXT, fourcc,
932 EGL_DMA_BUF_PLANE0_FD_EXT, fds[0],
933 EGL_DMA_BUF_PLANE0_PITCH_EXT, pitch,
934 EGL_DMA_BUF_PLANE0_OFFSET_EXT, 0,
935 EGL_NONE, 0
936 };
937
938 return dri2_create_image_dma_buf(disp, ctx, NULL, attr_list);
939 }
940
941 #ifdef HAVE_DRM_GRALLOC
942 static _EGLImage *
943 droid_create_image_from_name(_EGLDisplay *disp, _EGLContext *ctx,
944 struct ANativeWindowBuffer *buf)
945 {
946 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
947 struct dri2_egl_image *dri2_img;
948 int name;
949 int format;
950
951 name = get_native_buffer_name(buf);
952 if (!name) {
953 _eglError(EGL_BAD_PARAMETER, "eglCreateEGLImageKHR");
954 return NULL;
955 }
956
957 format = get_format(buf->format);
958 if (format == -1)
959 return NULL;
960
961 dri2_img = calloc(1, sizeof(*dri2_img));
962 if (!dri2_img) {
963 _eglError(EGL_BAD_ALLOC, "droid_create_image_mesa_drm");
964 return NULL;
965 }
966
967 _eglInitImage(&dri2_img->base, disp);
968
969 dri2_img->dri_image =
970 dri2_dpy->image->createImageFromName(dri2_dpy->dri_screen,
971 buf->width,
972 buf->height,
973 format,
974 name,
975 buf->stride,
976 dri2_img);
977 if (!dri2_img->dri_image) {
978 free(dri2_img);
979 _eglError(EGL_BAD_ALLOC, "droid_create_image_mesa_drm");
980 return NULL;
981 }
982
983 return &dri2_img->base;
984 }
985 #endif /* HAVE_DRM_GRALLOC */
986
987 static EGLBoolean
988 droid_query_surface(_EGLDriver *drv, _EGLDisplay *disp, _EGLSurface *surf,
989 EGLint attribute, EGLint *value)
990 {
991 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(surf);
992 switch (attribute) {
993 case EGL_WIDTH:
994 if (dri2_surf->base.Type == EGL_WINDOW_BIT && dri2_surf->window) {
995 dri2_surf->window->query(dri2_surf->window,
996 NATIVE_WINDOW_DEFAULT_WIDTH, value);
997 return EGL_TRUE;
998 }
999 break;
1000 case EGL_HEIGHT:
1001 if (dri2_surf->base.Type == EGL_WINDOW_BIT && dri2_surf->window) {
1002 dri2_surf->window->query(dri2_surf->window,
1003 NATIVE_WINDOW_DEFAULT_HEIGHT, value);
1004 return EGL_TRUE;
1005 }
1006 break;
1007 default:
1008 break;
1009 }
1010 return _eglQuerySurface(drv, disp, surf, attribute, value);
1011 }
1012
1013 static _EGLImage *
1014 dri2_create_image_android_native_buffer(_EGLDisplay *disp,
1015 _EGLContext *ctx,
1016 struct ANativeWindowBuffer *buf)
1017 {
1018 int fds[3];
1019 unsigned num_fds;
1020
1021 if (ctx != NULL) {
1022 /* From the EGL_ANDROID_image_native_buffer spec:
1023 *
1024 * * If <target> is EGL_NATIVE_BUFFER_ANDROID and <ctx> is not
1025 * EGL_NO_CONTEXT, the error EGL_BAD_CONTEXT is generated.
1026 */
1027 _eglError(EGL_BAD_CONTEXT, "eglCreateEGLImageKHR: for "
1028 "EGL_NATIVE_BUFFER_ANDROID, the context must be "
1029 "EGL_NO_CONTEXT");
1030 return NULL;
1031 }
1032
1033 if (!buf || buf->common.magic != ANDROID_NATIVE_BUFFER_MAGIC ||
1034 buf->common.version != sizeof(*buf)) {
1035 _eglError(EGL_BAD_PARAMETER, "eglCreateEGLImageKHR");
1036 return NULL;
1037 }
1038
1039 num_fds = get_native_buffer_fds(buf, fds);
1040 if (num_fds > 0)
1041 return droid_create_image_from_prime_fds(disp, ctx, buf, num_fds, fds);
1042
1043 #ifdef HAVE_DRM_GRALLOC
1044 return droid_create_image_from_name(disp, ctx, buf);
1045 #else
1046 return NULL;
1047 #endif
1048 }
1049
1050 static _EGLImage *
1051 droid_create_image_khr(_EGLDriver *drv, _EGLDisplay *disp,
1052 _EGLContext *ctx, EGLenum target,
1053 EGLClientBuffer buffer, const EGLint *attr_list)
1054 {
1055 switch (target) {
1056 case EGL_NATIVE_BUFFER_ANDROID:
1057 return dri2_create_image_android_native_buffer(disp, ctx,
1058 (struct ANativeWindowBuffer *) buffer);
1059 default:
1060 return dri2_create_image_khr(drv, disp, ctx, target, buffer, attr_list);
1061 }
1062 }
1063
1064 static void
1065 droid_flush_front_buffer(__DRIdrawable * driDrawable, void *loaderPrivate)
1066 {
1067 }
1068
1069 #ifdef HAVE_DRM_GRALLOC
1070 static int
1071 droid_get_buffers_parse_attachments(struct dri2_egl_surface *dri2_surf,
1072 unsigned int *attachments, int count)
1073 {
1074 int num_buffers = 0;
1075
1076 /* fill dri2_surf->buffers */
1077 for (int i = 0; i < count * 2; i += 2) {
1078 __DRIbuffer *buf, *local;
1079
1080 assert(num_buffers < ARRAY_SIZE(dri2_surf->buffers));
1081 buf = &dri2_surf->buffers[num_buffers];
1082
1083 switch (attachments[i]) {
1084 case __DRI_BUFFER_BACK_LEFT:
1085 if (dri2_surf->base.Type == EGL_WINDOW_BIT) {
1086 buf->attachment = attachments[i];
1087 buf->name = get_native_buffer_name(dri2_surf->buffer);
1088 buf->cpp = get_format_bpp(dri2_surf->buffer->format);
1089 buf->pitch = dri2_surf->buffer->stride * buf->cpp;
1090 buf->flags = 0;
1091
1092 if (buf->name)
1093 num_buffers++;
1094
1095 break;
1096 }
1097 /* fall through for pbuffers */
1098 case __DRI_BUFFER_DEPTH:
1099 case __DRI_BUFFER_STENCIL:
1100 case __DRI_BUFFER_ACCUM:
1101 case __DRI_BUFFER_DEPTH_STENCIL:
1102 case __DRI_BUFFER_HIZ:
1103 local = dri2_egl_surface_alloc_local_buffer(dri2_surf,
1104 attachments[i], attachments[i + 1]);
1105
1106 if (local) {
1107 *buf = *local;
1108 num_buffers++;
1109 }
1110 break;
1111 case __DRI_BUFFER_FRONT_LEFT:
1112 case __DRI_BUFFER_FRONT_RIGHT:
1113 case __DRI_BUFFER_FAKE_FRONT_LEFT:
1114 case __DRI_BUFFER_FAKE_FRONT_RIGHT:
1115 case __DRI_BUFFER_BACK_RIGHT:
1116 default:
1117 /* no front or right buffers */
1118 break;
1119 }
1120 }
1121
1122 return num_buffers;
1123 }
1124
1125 static __DRIbuffer *
1126 droid_get_buffers_with_format(__DRIdrawable * driDrawable,
1127 int *width, int *height,
1128 unsigned int *attachments, int count,
1129 int *out_count, void *loaderPrivate)
1130 {
1131 struct dri2_egl_surface *dri2_surf = loaderPrivate;
1132
1133 if (update_buffers(dri2_surf) < 0)
1134 return NULL;
1135
1136 *out_count = droid_get_buffers_parse_attachments(dri2_surf, attachments, count);
1137
1138 if (width)
1139 *width = dri2_surf->base.Width;
1140 if (height)
1141 *height = dri2_surf->base.Height;
1142
1143 return dri2_surf->buffers;
1144 }
1145 #endif /* HAVE_DRM_GRALLOC */
1146
1147 static unsigned
1148 droid_get_capability(void *loaderPrivate, enum dri_loader_cap cap)
1149 {
1150 /* Note: loaderPrivate is _EGLDisplay* */
1151 switch (cap) {
1152 case DRI_LOADER_CAP_RGBA_ORDERING:
1153 return 1;
1154 default:
1155 return 0;
1156 }
1157 }
1158
1159 static EGLBoolean
1160 droid_add_configs_for_visuals(_EGLDriver *drv, _EGLDisplay *disp)
1161 {
1162 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1163 static const struct {
1164 int format;
1165 int rgba_shifts[4];
1166 unsigned int rgba_sizes[4];
1167 } visuals[] = {
1168 { HAL_PIXEL_FORMAT_RGBA_8888, { 0, 8, 16, 24 }, { 8, 8, 8, 8 } },
1169 { HAL_PIXEL_FORMAT_RGBX_8888, { 0, 8, 16, -1 }, { 8, 8, 8, 0 } },
1170 { HAL_PIXEL_FORMAT_RGB_565, { 11, 5, 0, -1 }, { 5, 6, 5, 0 } },
1171 /* This must be after HAL_PIXEL_FORMAT_RGBA_8888, we only keep BGRA
1172 * visual if it turns out RGBA visual is not available.
1173 */
1174 { HAL_PIXEL_FORMAT_BGRA_8888, { 16, 8, 0, 24 }, { 8, 8, 8, 8 } },
1175 };
1176
1177 unsigned int format_count[ARRAY_SIZE(visuals)] = { 0 };
1178 int config_count = 0;
1179
1180 /* The nesting of loops is significant here. Also significant is the order
1181 * of the HAL pixel formats. Many Android apps (such as Google's official
1182 * NDK GLES2 example app), and even portions the core framework code (such
1183 * as SystemServiceManager in Nougat), incorrectly choose their EGLConfig.
1184 * They neglect to match the EGLConfig's EGL_NATIVE_VISUAL_ID against the
1185 * window's native format, and instead choose the first EGLConfig whose
1186 * channel sizes match those of the native window format while ignoring the
1187 * channel *ordering*.
1188 *
1189 * We can detect such buggy clients in logcat when they call
1190 * eglCreateSurface, by detecting the mismatch between the EGLConfig's
1191 * format and the window's format.
1192 *
1193 * As a workaround, we generate EGLConfigs such that all EGLConfigs for HAL
1194 * pixel format i precede those for HAL pixel format i+1. In my
1195 * (chadversary) testing on Android Nougat, this was good enough to pacify
1196 * the buggy clients.
1197 */
1198 bool has_rgba = false;
1199 for (int i = 0; i < ARRAY_SIZE(visuals); i++) {
1200 /* Only enable BGRA configs when RGBA is not available. BGRA configs are
1201 * buggy on stock Android.
1202 */
1203 if (visuals[i].format == HAL_PIXEL_FORMAT_BGRA_8888 && has_rgba)
1204 continue;
1205 for (int j = 0; dri2_dpy->driver_configs[j]; j++) {
1206 const EGLint surface_type = EGL_WINDOW_BIT | EGL_PBUFFER_BIT;
1207
1208 const EGLint config_attrs[] = {
1209 EGL_NATIVE_VISUAL_ID, visuals[i].format,
1210 EGL_NATIVE_VISUAL_TYPE, visuals[i].format,
1211 EGL_FRAMEBUFFER_TARGET_ANDROID, EGL_TRUE,
1212 EGL_RECORDABLE_ANDROID, EGL_TRUE,
1213 EGL_NONE
1214 };
1215
1216 struct dri2_egl_config *dri2_conf =
1217 dri2_add_config(disp, dri2_dpy->driver_configs[j],
1218 config_count + 1, surface_type, config_attrs,
1219 visuals[i].rgba_shifts, visuals[i].rgba_sizes);
1220 if (dri2_conf) {
1221 if (dri2_conf->base.ConfigID == config_count + 1)
1222 config_count++;
1223 format_count[i]++;
1224 }
1225 }
1226 if (visuals[i].format == HAL_PIXEL_FORMAT_RGBA_8888 && format_count[i])
1227 has_rgba = true;
1228 }
1229
1230 for (int i = 0; i < ARRAY_SIZE(format_count); i++) {
1231 if (!format_count[i]) {
1232 _eglLog(_EGL_DEBUG, "No DRI config supports native format 0x%x",
1233 visuals[i].format);
1234 }
1235 }
1236
1237 return (config_count != 0);
1238 }
1239
1240 static const struct dri2_egl_display_vtbl droid_display_vtbl = {
1241 .authenticate = NULL,
1242 .create_window_surface = droid_create_window_surface,
1243 .create_pixmap_surface = dri2_fallback_create_pixmap_surface,
1244 .create_pbuffer_surface = droid_create_pbuffer_surface,
1245 .destroy_surface = droid_destroy_surface,
1246 .create_image = droid_create_image_khr,
1247 .swap_buffers = droid_swap_buffers,
1248 .swap_buffers_with_damage = dri2_fallback_swap_buffers_with_damage, /* Android implements the function */
1249 .swap_buffers_region = dri2_fallback_swap_buffers_region,
1250 .swap_interval = droid_swap_interval,
1251 .post_sub_buffer = dri2_fallback_post_sub_buffer,
1252 .copy_buffers = dri2_fallback_copy_buffers,
1253 .query_buffer_age = droid_query_buffer_age,
1254 .query_surface = droid_query_surface,
1255 .create_wayland_buffer_from_image = dri2_fallback_create_wayland_buffer_from_image,
1256 .get_sync_values = dri2_fallback_get_sync_values,
1257 .get_dri_drawable = dri2_surface_get_dri_drawable,
1258 .set_shared_buffer_mode = droid_set_shared_buffer_mode,
1259 };
1260
1261 #ifdef HAVE_DRM_GRALLOC
1262 static const __DRIdri2LoaderExtension droid_dri2_loader_extension = {
1263 .base = { __DRI_DRI2_LOADER, 4 },
1264
1265 .getBuffers = NULL,
1266 .flushFrontBuffer = droid_flush_front_buffer,
1267 .getBuffersWithFormat = droid_get_buffers_with_format,
1268 .getCapability = droid_get_capability,
1269 };
1270
1271 static const __DRIextension *droid_dri2_loader_extensions[] = {
1272 &droid_dri2_loader_extension.base,
1273 &image_lookup_extension.base,
1274 &use_invalidate.base,
1275 /* No __DRI_MUTABLE_RENDER_BUFFER_LOADER because it requires
1276 * __DRI_IMAGE_LOADER.
1277 */
1278 NULL,
1279 };
1280 #endif /* HAVE_DRM_GRALLOC */
1281
1282 static const __DRIimageLoaderExtension droid_image_loader_extension = {
1283 .base = { __DRI_IMAGE_LOADER, 2 },
1284
1285 .getBuffers = droid_image_get_buffers,
1286 .flushFrontBuffer = droid_flush_front_buffer,
1287 .getCapability = droid_get_capability,
1288 };
1289
1290 static void
1291 droid_display_shared_buffer(__DRIdrawable *driDrawable, int fence_fd,
1292 void *loaderPrivate)
1293 {
1294 struct dri2_egl_surface *dri2_surf = loaderPrivate;
1295 struct ANativeWindowBuffer *old_buffer UNUSED = dri2_surf->buffer;
1296
1297 if (!_eglSurfaceInSharedBufferMode(&dri2_surf->base)) {
1298 _eglLog(_EGL_WARNING, "%s: internal error: buffer is not shared",
1299 __func__);
1300 return;
1301 }
1302
1303 if (fence_fd >= 0) {
1304 /* The driver's fence is more recent than the surface's out fence, if it
1305 * exists at all. So use the driver's fence.
1306 */
1307 if (dri2_surf->out_fence_fd >= 0) {
1308 close(dri2_surf->out_fence_fd);
1309 dri2_surf->out_fence_fd = -1;
1310 }
1311 } else if (dri2_surf->out_fence_fd >= 0) {
1312 fence_fd = dri2_surf->out_fence_fd;
1313 dri2_surf->out_fence_fd = -1;
1314 }
1315
1316 if (dri2_surf->window->queueBuffer(dri2_surf->window, dri2_surf->buffer,
1317 fence_fd)) {
1318 _eglLog(_EGL_WARNING, "%s: ANativeWindow::queueBuffer failed", __func__);
1319 close(fence_fd);
1320 return;
1321 }
1322
1323 fence_fd = -1;
1324
1325 if (dri2_surf->window->dequeueBuffer(dri2_surf->window, &dri2_surf->buffer,
1326 &fence_fd)) {
1327 /* Tear down the surface because it no longer has a back buffer. */
1328 struct dri2_egl_display *dri2_dpy =
1329 dri2_egl_display(dri2_surf->base.Resource.Display);
1330
1331 _eglLog(_EGL_WARNING, "%s: ANativeWindow::dequeueBuffer failed", __func__);
1332
1333 dri2_surf->base.Lost = true;
1334 dri2_surf->buffer = NULL;
1335 dri2_surf->back = NULL;
1336
1337 if (dri2_surf->dri_image_back) {
1338 dri2_dpy->image->destroyImage(dri2_surf->dri_image_back);
1339 dri2_surf->dri_image_back = NULL;
1340 }
1341
1342 dri2_dpy->flush->invalidate(dri2_surf->dri_drawable);
1343 return;
1344 }
1345
1346 if (fence_fd < 0)
1347 return;
1348
1349 /* Access to the buffer is controlled by a sync fence. Block on it.
1350 *
1351 * Ideally, we would submit the fence to the driver, and the driver would
1352 * postpone command execution until it signalled. But DRI lacks API for
1353 * that (as of 2018-04-11).
1354 *
1355 * SYNC_IOC_WAIT waits forever if timeout < 0
1356 */
1357 sync_wait(fence_fd, -1);
1358 close(fence_fd);
1359 }
1360
1361 static const __DRImutableRenderBufferLoaderExtension droid_mutable_render_buffer_extension = {
1362 .base = { __DRI_MUTABLE_RENDER_BUFFER_LOADER, 1 },
1363 .displaySharedBuffer = droid_display_shared_buffer,
1364 };
1365
1366 static const __DRIextension *droid_image_loader_extensions[] = {
1367 &droid_image_loader_extension.base,
1368 &image_lookup_extension.base,
1369 &use_invalidate.base,
1370 &droid_mutable_render_buffer_extension.base,
1371 NULL,
1372 };
1373
1374 static EGLBoolean
1375 droid_load_driver(_EGLDisplay *disp, bool swrast)
1376 {
1377 struct dri2_egl_display *dri2_dpy = disp->DriverData;
1378 const char *err;
1379
1380 dri2_dpy->driver_name = loader_get_driver_for_fd(dri2_dpy->fd);
1381 if (dri2_dpy->driver_name == NULL)
1382 return false;
1383
1384 #ifdef HAVE_DRM_GRALLOC
1385 /* Handle control nodes using __DRI_DRI2_LOADER extension and GEM names
1386 * for backwards compatibility with drm_gralloc. (Do not use on new
1387 * systems.) */
1388 dri2_dpy->loader_extensions = droid_dri2_loader_extensions;
1389 if (!dri2_load_driver(disp)) {
1390 err = "DRI2: failed to load driver";
1391 goto error;
1392 }
1393 #else
1394 if (swrast) {
1395 /* Use kms swrast only with vgem / virtio_gpu.
1396 * virtio-gpu fallbacks to software rendering when 3D features
1397 * are unavailable since 6c5ab.
1398 */
1399 if (strcmp(dri2_dpy->driver_name, "vgem") == 0 ||
1400 strcmp(dri2_dpy->driver_name, "virtio_gpu") == 0) {
1401 free(dri2_dpy->driver_name);
1402 dri2_dpy->driver_name = strdup("kms_swrast");
1403 } else {
1404 err = "DRI3: failed to find software capable driver";
1405 goto error;
1406 }
1407 }
1408
1409 dri2_dpy->loader_extensions = droid_image_loader_extensions;
1410 if (!dri2_load_driver_dri3(disp)) {
1411 err = "DRI3: failed to load driver";
1412 goto error;
1413 }
1414 #endif
1415
1416 return true;
1417
1418 error:
1419 free(dri2_dpy->driver_name);
1420 dri2_dpy->driver_name = NULL;
1421 return false;
1422 }
1423
1424 static void
1425 droid_unload_driver(_EGLDisplay *disp)
1426 {
1427 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1428
1429 dlclose(dri2_dpy->driver);
1430 dri2_dpy->driver = NULL;
1431 free(dri2_dpy->driver_name);
1432 dri2_dpy->driver_name = NULL;
1433 }
1434
1435 static int
1436 droid_filter_device(_EGLDisplay *disp, int fd, const char *vendor)
1437 {
1438 drmVersionPtr ver = drmGetVersion(fd);
1439 if (!ver)
1440 return -1;
1441
1442 if (strcmp(vendor, ver->name) != 0) {
1443 drmFreeVersion(ver);
1444 return -1;
1445 }
1446
1447 drmFreeVersion(ver);
1448 return 0;
1449 }
1450
1451 static EGLBoolean
1452 droid_probe_device(_EGLDisplay *disp, bool swrast)
1453 {
1454 /* Check that the device is supported, by attempting to:
1455 * - load the dri module
1456 * - and, create a screen
1457 */
1458 if (!droid_load_driver(disp, swrast))
1459 return EGL_FALSE;
1460
1461 if (!dri2_create_screen(disp)) {
1462 _eglLog(_EGL_WARNING, "DRI2: failed to create screen");
1463 droid_unload_driver(disp);
1464 return EGL_FALSE;
1465 }
1466 return EGL_TRUE;
1467 }
1468
1469 #ifdef HAVE_DRM_GRALLOC
1470 static EGLBoolean
1471 droid_open_device(_EGLDisplay *disp, bool swrast)
1472 {
1473 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1474 int fd = -1, err = -EINVAL;
1475
1476 if (swrast)
1477 return EGL_FALSE;
1478
1479 if (dri2_dpy->gralloc->perform)
1480 err = dri2_dpy->gralloc->perform(dri2_dpy->gralloc,
1481 GRALLOC_MODULE_PERFORM_GET_DRM_FD,
1482 &fd);
1483 if (err || fd < 0) {
1484 _eglLog(_EGL_WARNING, "fail to get drm fd");
1485 return EGL_FALSE;
1486 }
1487
1488 dri2_dpy->fd = fcntl(fd, F_DUPFD_CLOEXEC, 3);
1489 if (dri2_dpy->fd < 0)
1490 return EGL_FALSE;
1491
1492 if (drmGetNodeTypeFromFd(dri2_dpy->fd) == DRM_NODE_RENDER)
1493 return EGL_FALSE;
1494
1495 return droid_probe_device(disp, swrast);
1496 }
1497 #else
1498 static EGLBoolean
1499 droid_open_device(_EGLDisplay *disp, bool swrast)
1500 {
1501 #define MAX_DRM_DEVICES 64
1502 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1503 drmDevicePtr device, devices[MAX_DRM_DEVICES] = { NULL };
1504 int num_devices;
1505
1506 char *vendor_name = NULL;
1507 char vendor_buf[PROPERTY_VALUE_MAX];
1508
1509 #ifdef EGL_FORCE_RENDERNODE
1510 const unsigned node_type = DRM_NODE_RENDER;
1511 #else
1512 const unsigned node_type = swrast ? DRM_NODE_PRIMARY : DRM_NODE_RENDER;
1513 #endif
1514
1515 if (property_get("drm.gpu.vendor_name", vendor_buf, NULL) > 0)
1516 vendor_name = vendor_buf;
1517
1518 num_devices = drmGetDevices2(0, devices, ARRAY_SIZE(devices));
1519 if (num_devices < 0)
1520 return EGL_FALSE;
1521
1522 for (int i = 0; i < num_devices; i++) {
1523 device = devices[i];
1524
1525 if (!(device->available_nodes & (1 << node_type)))
1526 continue;
1527
1528 dri2_dpy->fd = loader_open_device(device->nodes[node_type]);
1529 if (dri2_dpy->fd < 0) {
1530 _eglLog(_EGL_WARNING, "%s() Failed to open DRM device %s",
1531 __func__, device->nodes[node_type]);
1532 continue;
1533 }
1534
1535 /* If a vendor is explicitly provided, we use only that.
1536 * Otherwise we fall-back the first device that is supported.
1537 */
1538 if (vendor_name) {
1539 if (droid_filter_device(disp, dri2_dpy->fd, vendor_name)) {
1540 /* Device does not match - try next device */
1541 close(dri2_dpy->fd);
1542 dri2_dpy->fd = -1;
1543 continue;
1544 }
1545 /* If the requested device matches - use it. Regardless if
1546 * init fails, do not fall-back to any other device.
1547 */
1548 if (!droid_probe_device(disp, false)) {
1549 close(dri2_dpy->fd);
1550 dri2_dpy->fd = -1;
1551 }
1552
1553 break;
1554 }
1555 if (droid_probe_device(disp, swrast))
1556 break;
1557
1558 /* No explicit request - attempt the next device */
1559 close(dri2_dpy->fd);
1560 dri2_dpy->fd = -1;
1561 }
1562 drmFreeDevices(devices, num_devices);
1563
1564 if (dri2_dpy->fd < 0) {
1565 _eglLog(_EGL_WARNING, "Failed to open %s DRM device",
1566 vendor_name ? "desired": "any");
1567 return EGL_FALSE;
1568 }
1569
1570 return EGL_TRUE;
1571 #undef MAX_DRM_DEVICES
1572 }
1573
1574 #endif
1575
1576 EGLBoolean
1577 dri2_initialize_android(_EGLDriver *drv, _EGLDisplay *disp)
1578 {
1579 _EGLDevice *dev;
1580 bool device_opened = false;
1581 struct dri2_egl_display *dri2_dpy;
1582 const char *err;
1583 int ret;
1584
1585 dri2_dpy = calloc(1, sizeof(*dri2_dpy));
1586 if (!dri2_dpy)
1587 return _eglError(EGL_BAD_ALLOC, "eglInitialize");
1588
1589 dri2_dpy->fd = -1;
1590 ret = hw_get_module(GRALLOC_HARDWARE_MODULE_ID,
1591 (const hw_module_t **)&dri2_dpy->gralloc);
1592 if (ret) {
1593 err = "DRI2: failed to get gralloc module";
1594 goto cleanup;
1595 }
1596
1597 disp->DriverData = (void *) dri2_dpy;
1598 if (!disp->Options.ForceSoftware)
1599 device_opened = droid_open_device(disp, false);
1600 if (!device_opened)
1601 device_opened = droid_open_device(disp, true);
1602
1603 if (!device_opened) {
1604 err = "DRI2: failed to open device";
1605 goto cleanup;
1606 }
1607
1608 dev = _eglAddDevice(dri2_dpy->fd, false);
1609 if (!dev) {
1610 err = "DRI2: failed to find EGLDevice";
1611 goto cleanup;
1612 }
1613
1614 disp->Device = dev;
1615
1616 if (!dri2_setup_extensions(disp)) {
1617 err = "DRI2: failed to setup extensions";
1618 goto cleanup;
1619 }
1620
1621 dri2_setup_screen(disp);
1622
1623 /* We set the maximum swap interval as 1 for Android platform, since it is
1624 * the maximum value supported by Android according to the value of
1625 * ANativeWindow::maxSwapInterval.
1626 */
1627 dri2_setup_swap_interval(disp, 1);
1628
1629 disp->Extensions.ANDROID_framebuffer_target = EGL_TRUE;
1630 disp->Extensions.ANDROID_image_native_buffer = EGL_TRUE;
1631 disp->Extensions.ANDROID_recordable = EGL_TRUE;
1632 disp->Extensions.EXT_buffer_age = EGL_TRUE;
1633 disp->Extensions.KHR_image = EGL_TRUE;
1634 #if ANDROID_API_LEVEL >= 24
1635 if (dri2_dpy->mutable_render_buffer &&
1636 dri2_dpy->loader_extensions == droid_image_loader_extensions) {
1637 disp->Extensions.KHR_mutable_render_buffer = EGL_TRUE;
1638 }
1639 #endif
1640
1641 /* Create configs *after* enabling extensions because presence of DRI
1642 * driver extensions can affect the capabilities of EGLConfigs.
1643 */
1644 if (!droid_add_configs_for_visuals(drv, disp)) {
1645 err = "DRI2: failed to add configs";
1646 goto cleanup;
1647 }
1648
1649 /* Fill vtbl last to prevent accidentally calling virtual function during
1650 * initialization.
1651 */
1652 dri2_dpy->vtbl = &droid_display_vtbl;
1653
1654 return EGL_TRUE;
1655
1656 cleanup:
1657 dri2_display_destroy(disp);
1658 return _eglError(EGL_NOT_INITIALIZED, err);
1659 }