egl/android: set window usage flags
[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 int min_buffer_count, max_buffer_count;
379
380 /* Prefer triple buffering for performance reasons. */
381 const int preferred_buffer_count = 3;
382
383 if (window->common.magic != ANDROID_NATIVE_WINDOW_MAGIC) {
384 _eglError(EGL_BAD_NATIVE_WINDOW, "droid_create_surface");
385 goto cleanup_surface;
386 }
387 if (window->query(window, NATIVE_WINDOW_FORMAT, &format)) {
388 _eglError(EGL_BAD_NATIVE_WINDOW, "droid_create_surface");
389 goto cleanup_surface;
390 }
391
392 /* Query ANativeWindow for MIN_UNDEQUEUED_BUFFER, minimum amount
393 * of undequeued buffers.
394 */
395 if (window->query(window, NATIVE_WINDOW_MIN_UNDEQUEUED_BUFFERS,
396 &min_buffer_count)) {
397 _eglError(EGL_BAD_NATIVE_WINDOW, "droid_create_surface");
398 goto cleanup_surface;
399 }
400
401 /* Query for maximum buffer count, application can set this
402 * to limit the total amount of buffers.
403 */
404 if (window->query(window, NATIVE_WINDOW_MAX_BUFFER_COUNT,
405 &max_buffer_count)) {
406 _eglError(EGL_BAD_NATIVE_WINDOW, "droid_create_surface");
407 goto cleanup_surface;
408 }
409
410 /* Clamp preferred between minimum (min undequeued + 1 dequeued)
411 * and maximum.
412 */
413 buffer_count = CLAMP(preferred_buffer_count, min_buffer_count + 1,
414 max_buffer_count);
415
416 if (native_window_set_buffer_count(window, buffer_count)) {
417 _eglError(EGL_BAD_NATIVE_WINDOW, "droid_create_surface");
418 goto cleanup_surface;
419 }
420 dri2_surf->color_buffers = calloc(buffer_count,
421 sizeof(*dri2_surf->color_buffers));
422 if (!dri2_surf->color_buffers) {
423 _eglError(EGL_BAD_ALLOC, "droid_create_surface");
424 goto cleanup_surface;
425 }
426 dri2_surf->color_buffers_count = buffer_count;
427
428 if (format != dri2_conf->base.NativeVisualID) {
429 _eglLog(_EGL_WARNING, "Native format mismatch: 0x%x != 0x%x",
430 format, dri2_conf->base.NativeVisualID);
431 }
432
433 window->query(window, NATIVE_WINDOW_WIDTH, &dri2_surf->base.Width);
434 window->query(window, NATIVE_WINDOW_HEIGHT, &dri2_surf->base.Height);
435
436 uint32_t usage = strcmp(dri2_dpy->driver_name, "kms_swrast") == 0
437 ? GRALLOC_USAGE_SW_READ_OFTEN | GRALLOC_USAGE_SW_WRITE_OFTEN
438 : GRALLOC_USAGE_HW_RENDER;
439 native_window_set_usage(window, usage);
440 }
441
442 config = dri2_get_dri_config(dri2_conf, type,
443 dri2_surf->base.GLColorspace);
444 if (!config) {
445 _eglError(EGL_BAD_MATCH, "Unsupported surfacetype/colorspace configuration");
446 goto cleanup_surface;
447 }
448
449 if (!dri2_create_drawable(dri2_dpy, config, dri2_surf, dri2_surf))
450 goto cleanup_surface;
451
452 if (window) {
453 window->common.incRef(&window->common);
454 dri2_surf->window = window;
455 }
456
457 return &dri2_surf->base;
458
459 cleanup_surface:
460 if (dri2_surf->color_buffers_count)
461 free(dri2_surf->color_buffers);
462 free(dri2_surf);
463
464 return NULL;
465 }
466
467 static _EGLSurface *
468 droid_create_window_surface(_EGLDriver *drv, _EGLDisplay *disp,
469 _EGLConfig *conf, void *native_window,
470 const EGLint *attrib_list)
471 {
472 return droid_create_surface(drv, disp, EGL_WINDOW_BIT, conf,
473 native_window, attrib_list);
474 }
475
476 static _EGLSurface *
477 droid_create_pbuffer_surface(_EGLDriver *drv, _EGLDisplay *disp,
478 _EGLConfig *conf, const EGLint *attrib_list)
479 {
480 return droid_create_surface(drv, disp, EGL_PBUFFER_BIT, conf,
481 NULL, attrib_list);
482 }
483
484 static EGLBoolean
485 droid_destroy_surface(_EGLDriver *drv, _EGLDisplay *disp, _EGLSurface *surf)
486 {
487 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
488 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(surf);
489
490 dri2_egl_surface_free_local_buffers(dri2_surf);
491
492 if (dri2_surf->base.Type == EGL_WINDOW_BIT) {
493 if (dri2_surf->buffer)
494 droid_window_cancel_buffer(dri2_surf);
495
496 dri2_surf->window->common.decRef(&dri2_surf->window->common);
497 }
498
499 if (dri2_surf->dri_image_back) {
500 _eglLog(_EGL_DEBUG, "%s : %d : destroy dri_image_back", __func__, __LINE__);
501 dri2_dpy->image->destroyImage(dri2_surf->dri_image_back);
502 dri2_surf->dri_image_back = NULL;
503 }
504
505 if (dri2_surf->dri_image_front) {
506 _eglLog(_EGL_DEBUG, "%s : %d : destroy dri_image_front", __func__, __LINE__);
507 dri2_dpy->image->destroyImage(dri2_surf->dri_image_front);
508 dri2_surf->dri_image_front = NULL;
509 }
510
511 dri2_dpy->core->destroyDrawable(dri2_surf->dri_drawable);
512
513 dri2_fini_surface(surf);
514 free(dri2_surf->color_buffers);
515 free(dri2_surf);
516
517 return EGL_TRUE;
518 }
519
520 static EGLBoolean
521 droid_swap_interval(_EGLDriver *drv, _EGLDisplay *disp,
522 _EGLSurface *surf, EGLint interval)
523 {
524 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(surf);
525 struct ANativeWindow *window = dri2_surf->window;
526
527 if (window->setSwapInterval(window, interval))
528 return EGL_FALSE;
529
530 surf->SwapInterval = interval;
531 return EGL_TRUE;
532 }
533
534 static int
535 update_buffers(struct dri2_egl_surface *dri2_surf)
536 {
537 if (dri2_surf->base.Lost)
538 return -1;
539
540 if (dri2_surf->base.Type != EGL_WINDOW_BIT)
541 return 0;
542
543 /* try to dequeue the next back buffer */
544 if (!dri2_surf->buffer && !droid_window_dequeue_buffer(dri2_surf)) {
545 _eglLog(_EGL_WARNING, "Could not dequeue buffer from native window");
546 dri2_surf->base.Lost = EGL_TRUE;
547 return -1;
548 }
549
550 /* free outdated buffers and update the surface size */
551 if (dri2_surf->base.Width != dri2_surf->buffer->width ||
552 dri2_surf->base.Height != dri2_surf->buffer->height) {
553 dri2_egl_surface_free_local_buffers(dri2_surf);
554 dri2_surf->base.Width = dri2_surf->buffer->width;
555 dri2_surf->base.Height = dri2_surf->buffer->height;
556 }
557
558 return 0;
559 }
560
561 static int
562 get_front_bo(struct dri2_egl_surface *dri2_surf, unsigned int format)
563 {
564 struct dri2_egl_display *dri2_dpy =
565 dri2_egl_display(dri2_surf->base.Resource.Display);
566
567 if (dri2_surf->dri_image_front)
568 return 0;
569
570 if (dri2_surf->base.Type == EGL_WINDOW_BIT) {
571 /* According current EGL spec, front buffer rendering
572 * for window surface is not supported now.
573 * and mesa doesn't have the implementation of this case.
574 * Add warning message, but not treat it as error.
575 */
576 _eglLog(_EGL_DEBUG, "DRI driver requested unsupported front buffer for window surface");
577 } else if (dri2_surf->base.Type == EGL_PBUFFER_BIT) {
578 dri2_surf->dri_image_front =
579 dri2_dpy->image->createImage(dri2_dpy->dri_screen,
580 dri2_surf->base.Width,
581 dri2_surf->base.Height,
582 format,
583 0,
584 dri2_surf);
585 if (!dri2_surf->dri_image_front) {
586 _eglLog(_EGL_WARNING, "dri2_image_front allocation failed");
587 return -1;
588 }
589 }
590
591 return 0;
592 }
593
594 static int
595 get_back_bo(struct dri2_egl_surface *dri2_surf)
596 {
597 struct dri2_egl_display *dri2_dpy =
598 dri2_egl_display(dri2_surf->base.Resource.Display);
599 int fourcc, pitch;
600 int offset = 0, fds[3];
601 unsigned num_fds;
602
603 if (dri2_surf->dri_image_back)
604 return 0;
605
606 if (dri2_surf->base.Type == EGL_WINDOW_BIT) {
607 if (!dri2_surf->buffer) {
608 _eglLog(_EGL_WARNING, "Could not get native buffer");
609 return -1;
610 }
611
612 num_fds = get_native_buffer_fds(dri2_surf->buffer, fds);
613 if (num_fds == 0) {
614 _eglLog(_EGL_WARNING, "Could not get native buffer FD");
615 return -1;
616 }
617
618 fourcc = get_fourcc(dri2_surf->buffer->format);
619
620 pitch = dri2_surf->buffer->stride *
621 get_format_bpp(dri2_surf->buffer->format);
622
623 if (fourcc == -1 || pitch == 0) {
624 _eglLog(_EGL_WARNING, "Invalid buffer fourcc(%x) or pitch(%d)",
625 fourcc, pitch);
626 return -1;
627 }
628
629 dri2_surf->dri_image_back =
630 dri2_dpy->image->createImageFromFds(dri2_dpy->dri_screen,
631 dri2_surf->base.Width,
632 dri2_surf->base.Height,
633 fourcc,
634 fds,
635 num_fds,
636 &pitch,
637 &offset,
638 dri2_surf);
639 if (!dri2_surf->dri_image_back) {
640 _eglLog(_EGL_WARNING, "failed to create DRI image from FD");
641 return -1;
642 }
643 } else if (dri2_surf->base.Type == EGL_PBUFFER_BIT) {
644 /* The EGL 1.5 spec states that pbuffers are single-buffered. Specifically,
645 * the spec states that they have a back buffer but no front buffer, in
646 * contrast to pixmaps, which have a front buffer but no back buffer.
647 *
648 * Single-buffered surfaces with no front buffer confuse Mesa; so we deviate
649 * from the spec, following the precedent of Mesa's EGL X11 platform. The
650 * X11 platform correctly assigns pbuffers to single-buffered configs, but
651 * assigns the pbuffer a front buffer instead of a back buffer.
652 *
653 * Pbuffers in the X11 platform mostly work today, so let's just copy its
654 * behavior instead of trying to fix (and hence potentially breaking) the
655 * world.
656 */
657 _eglLog(_EGL_DEBUG, "DRI driver requested unsupported back buffer for pbuffer surface");
658 }
659
660 return 0;
661 }
662
663 /* Some drivers will pass multiple bits in buffer_mask.
664 * For such case, will go through all the bits, and
665 * will not return error when unsupported buffer is requested, only
666 * return error when the allocation for supported buffer failed.
667 */
668 static int
669 droid_image_get_buffers(__DRIdrawable *driDrawable,
670 unsigned int format,
671 uint32_t *stamp,
672 void *loaderPrivate,
673 uint32_t buffer_mask,
674 struct __DRIimageList *images)
675 {
676 struct dri2_egl_surface *dri2_surf = loaderPrivate;
677
678 images->image_mask = 0;
679 images->front = NULL;
680 images->back = NULL;
681
682 if (update_buffers(dri2_surf) < 0)
683 return 0;
684
685 if (_eglSurfaceInSharedBufferMode(&dri2_surf->base)) {
686 if (get_back_bo(dri2_surf) < 0)
687 return 0;
688
689 /* We have dri_image_back because this is a window surface and
690 * get_back_bo() succeeded.
691 */
692 assert(dri2_surf->dri_image_back);
693 images->back = dri2_surf->dri_image_back;
694 images->image_mask |= __DRI_IMAGE_BUFFER_SHARED;
695
696 /* There exists no accompanying back nor front buffer. */
697 return 1;
698 }
699
700 if (buffer_mask & __DRI_IMAGE_BUFFER_FRONT) {
701 if (get_front_bo(dri2_surf, format) < 0)
702 return 0;
703
704 if (dri2_surf->dri_image_front) {
705 images->front = dri2_surf->dri_image_front;
706 images->image_mask |= __DRI_IMAGE_BUFFER_FRONT;
707 }
708 }
709
710 if (buffer_mask & __DRI_IMAGE_BUFFER_BACK) {
711 if (get_back_bo(dri2_surf) < 0)
712 return 0;
713
714 if (dri2_surf->dri_image_back) {
715 images->back = dri2_surf->dri_image_back;
716 images->image_mask |= __DRI_IMAGE_BUFFER_BACK;
717 }
718 }
719
720 return 1;
721 }
722
723 static EGLint
724 droid_query_buffer_age(_EGLDriver *drv,
725 _EGLDisplay *disp, _EGLSurface *surface)
726 {
727 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(surface);
728
729 if (update_buffers(dri2_surf) < 0) {
730 _eglError(EGL_BAD_ALLOC, "droid_query_buffer_age");
731 return -1;
732 }
733
734 return dri2_surf->back ? dri2_surf->back->age : 0;
735 }
736
737 static EGLBoolean
738 droid_swap_buffers(_EGLDriver *drv, _EGLDisplay *disp, _EGLSurface *draw)
739 {
740 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
741 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(draw);
742 const bool has_mutable_rb = _eglSurfaceHasMutableRenderBuffer(draw);
743
744 /* From the EGL_KHR_mutable_render_buffer spec (v12):
745 *
746 * If surface is a single-buffered window, pixmap, or pbuffer surface
747 * for which there is no pending change to the EGL_RENDER_BUFFER
748 * attribute, eglSwapBuffers has no effect.
749 */
750 if (has_mutable_rb &&
751 draw->RequestedRenderBuffer == EGL_SINGLE_BUFFER &&
752 draw->ActiveRenderBuffer == EGL_SINGLE_BUFFER) {
753 _eglLog(_EGL_DEBUG, "%s: remain in shared buffer mode", __func__);
754 return EGL_TRUE;
755 }
756
757 for (int i = 0; i < dri2_surf->color_buffers_count; i++) {
758 if (dri2_surf->color_buffers[i].age > 0)
759 dri2_surf->color_buffers[i].age++;
760 }
761
762 /* "XXX: we don't use get_back_bo() since it causes regressions in
763 * several dEQP tests.
764 */
765 if (dri2_surf->back)
766 dri2_surf->back->age = 1;
767
768 dri2_flush_drawable_for_swapbuffers(disp, draw);
769
770 /* dri2_surf->buffer can be null even when no error has occured. For
771 * example, if the user has called no GL rendering commands since the
772 * previous eglSwapBuffers, then the driver may have not triggered
773 * a callback to ANativeWindow::dequeueBuffer, in which case
774 * dri2_surf->buffer remains null.
775 */
776 if (dri2_surf->buffer)
777 droid_window_enqueue_buffer(disp, dri2_surf);
778
779 dri2_dpy->flush->invalidate(dri2_surf->dri_drawable);
780
781 /* Update the shared buffer mode */
782 if (has_mutable_rb &&
783 draw->ActiveRenderBuffer != draw->RequestedRenderBuffer) {
784 bool mode = (draw->RequestedRenderBuffer == EGL_SINGLE_BUFFER);
785 _eglLog(_EGL_DEBUG, "%s: change to shared buffer mode %d",
786 __func__, mode);
787
788 if (!droid_set_shared_buffer_mode(disp, draw, mode))
789 return EGL_FALSE;
790 draw->ActiveRenderBuffer = draw->RequestedRenderBuffer;
791 }
792
793 return EGL_TRUE;
794 }
795
796 static _EGLImage *
797 droid_create_image_from_prime_fds_yuv(_EGLDisplay *disp, _EGLContext *ctx,
798 struct ANativeWindowBuffer *buf,
799 int num_fds, int fds[3])
800 {
801 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
802 struct android_ycbcr ycbcr;
803 size_t offsets[3];
804 size_t pitches[3];
805 enum chroma_order chroma_order;
806 int fourcc;
807 int ret;
808
809 if (!dri2_dpy->gralloc->lock_ycbcr) {
810 _eglLog(_EGL_WARNING, "Gralloc does not support lock_ycbcr");
811 return NULL;
812 }
813
814 memset(&ycbcr, 0, sizeof(ycbcr));
815 ret = dri2_dpy->gralloc->lock_ycbcr(dri2_dpy->gralloc, buf->handle,
816 0, 0, 0, 0, 0, &ycbcr);
817 if (ret) {
818 /* HACK: See droid_create_image_from_prime_fds() and
819 * https://issuetracker.google.com/32077885.*/
820 if (buf->format == HAL_PIXEL_FORMAT_IMPLEMENTATION_DEFINED)
821 return NULL;
822
823 _eglLog(_EGL_WARNING, "gralloc->lock_ycbcr failed: %d", ret);
824 return NULL;
825 }
826 dri2_dpy->gralloc->unlock(dri2_dpy->gralloc, buf->handle);
827
828 /* When lock_ycbcr's usage argument contains no SW_READ/WRITE flags
829 * it will return the .y/.cb/.cr pointers based on a NULL pointer,
830 * so they can be interpreted as offsets. */
831 offsets[0] = (size_t)ycbcr.y;
832 /* We assume here that all the planes are located in one DMA-buf. */
833 if ((size_t)ycbcr.cr < (size_t)ycbcr.cb) {
834 chroma_order = YCrCb;
835 offsets[1] = (size_t)ycbcr.cr;
836 offsets[2] = (size_t)ycbcr.cb;
837 } else {
838 chroma_order = YCbCr;
839 offsets[1] = (size_t)ycbcr.cb;
840 offsets[2] = (size_t)ycbcr.cr;
841 }
842
843 /* .ystride is the line length (in bytes) of the Y plane,
844 * .cstride is the line length (in bytes) of any of the remaining
845 * Cb/Cr/CbCr planes, assumed to be the same for Cb and Cr for fully
846 * planar formats. */
847 pitches[0] = ycbcr.ystride;
848 pitches[1] = pitches[2] = ycbcr.cstride;
849
850 /* .chroma_step is the byte distance between the same chroma channel
851 * values of subsequent pixels, assumed to be the same for Cb and Cr. */
852 fourcc = get_fourcc_yuv(buf->format, chroma_order, ycbcr.chroma_step);
853 if (fourcc == -1) {
854 _eglLog(_EGL_WARNING, "unsupported YUV format, native = %x, chroma_order = %s, chroma_step = %d",
855 buf->format, chroma_order == YCbCr ? "YCbCr" : "YCrCb", ycbcr.chroma_step);
856 return NULL;
857 }
858
859 /*
860 * Since this is EGL_NATIVE_BUFFER_ANDROID don't assume that
861 * the single-fd case cannot happen. So handle eithe single
862 * fd or fd-per-plane case:
863 */
864 if (num_fds == 1) {
865 fds[2] = fds[1] = fds[0];
866 } else {
867 int expected_planes = (ycbcr.chroma_step == 2) ? 2 : 3;
868 assert(num_fds == expected_planes);
869 }
870
871 if (ycbcr.chroma_step == 2) {
872 /* Semi-planar Y + CbCr or Y + CrCb format. */
873 const EGLint attr_list_2plane[] = {
874 EGL_WIDTH, buf->width,
875 EGL_HEIGHT, buf->height,
876 EGL_LINUX_DRM_FOURCC_EXT, fourcc,
877 EGL_DMA_BUF_PLANE0_FD_EXT, fds[0],
878 EGL_DMA_BUF_PLANE0_PITCH_EXT, pitches[0],
879 EGL_DMA_BUF_PLANE0_OFFSET_EXT, offsets[0],
880 EGL_DMA_BUF_PLANE1_FD_EXT, fds[1],
881 EGL_DMA_BUF_PLANE1_PITCH_EXT, pitches[1],
882 EGL_DMA_BUF_PLANE1_OFFSET_EXT, offsets[1],
883 EGL_NONE, 0
884 };
885
886 return dri2_create_image_dma_buf(disp, ctx, NULL, attr_list_2plane);
887 } else {
888 /* Fully planar Y + Cb + Cr or Y + Cr + Cb format. */
889 const EGLint attr_list_3plane[] = {
890 EGL_WIDTH, buf->width,
891 EGL_HEIGHT, buf->height,
892 EGL_LINUX_DRM_FOURCC_EXT, fourcc,
893 EGL_DMA_BUF_PLANE0_FD_EXT, fds[0],
894 EGL_DMA_BUF_PLANE0_PITCH_EXT, pitches[0],
895 EGL_DMA_BUF_PLANE0_OFFSET_EXT, offsets[0],
896 EGL_DMA_BUF_PLANE1_FD_EXT, fds[1],
897 EGL_DMA_BUF_PLANE1_PITCH_EXT, pitches[1],
898 EGL_DMA_BUF_PLANE1_OFFSET_EXT, offsets[1],
899 EGL_DMA_BUF_PLANE2_FD_EXT, fds[2],
900 EGL_DMA_BUF_PLANE2_PITCH_EXT, pitches[2],
901 EGL_DMA_BUF_PLANE2_OFFSET_EXT, offsets[2],
902 EGL_NONE, 0
903 };
904
905 return dri2_create_image_dma_buf(disp, ctx, NULL, attr_list_3plane);
906 }
907 }
908
909 static _EGLImage *
910 droid_create_image_from_prime_fds(_EGLDisplay *disp, _EGLContext *ctx,
911 struct ANativeWindowBuffer *buf, int num_fds, int fds[3])
912 {
913 unsigned int pitch;
914
915 if (is_yuv(buf->format)) {
916 _EGLImage *image;
917
918 image = droid_create_image_from_prime_fds_yuv(disp, ctx, buf, num_fds, fds);
919 /*
920 * HACK: https://issuetracker.google.com/32077885
921 * There is no API available to properly query the IMPLEMENTATION_DEFINED
922 * format. As a workaround we rely here on gralloc allocating either
923 * an arbitrary YCbCr 4:2:0 or RGBX_8888, with the latter being recognized
924 * by lock_ycbcr failing.
925 */
926 if (image || buf->format != HAL_PIXEL_FORMAT_IMPLEMENTATION_DEFINED)
927 return image;
928 }
929
930 /*
931 * Non-YUV formats could *also* have multiple planes, such as ancillary
932 * color compression state buffer, but the rest of the code isn't ready
933 * yet to deal with modifiers:
934 */
935 assert(num_fds == 1);
936
937 const int fourcc = get_fourcc(buf->format);
938 if (fourcc == -1) {
939 _eglError(EGL_BAD_PARAMETER, "eglCreateEGLImageKHR");
940 return NULL;
941 }
942
943 pitch = buf->stride * get_format_bpp(buf->format);
944 if (pitch == 0) {
945 _eglError(EGL_BAD_PARAMETER, "eglCreateEGLImageKHR");
946 return NULL;
947 }
948
949 const EGLint attr_list[] = {
950 EGL_WIDTH, buf->width,
951 EGL_HEIGHT, buf->height,
952 EGL_LINUX_DRM_FOURCC_EXT, fourcc,
953 EGL_DMA_BUF_PLANE0_FD_EXT, fds[0],
954 EGL_DMA_BUF_PLANE0_PITCH_EXT, pitch,
955 EGL_DMA_BUF_PLANE0_OFFSET_EXT, 0,
956 EGL_NONE, 0
957 };
958
959 return dri2_create_image_dma_buf(disp, ctx, NULL, attr_list);
960 }
961
962 #ifdef HAVE_DRM_GRALLOC
963 static _EGLImage *
964 droid_create_image_from_name(_EGLDisplay *disp, _EGLContext *ctx,
965 struct ANativeWindowBuffer *buf)
966 {
967 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
968 struct dri2_egl_image *dri2_img;
969 int name;
970 int format;
971
972 name = get_native_buffer_name(buf);
973 if (!name) {
974 _eglError(EGL_BAD_PARAMETER, "eglCreateEGLImageKHR");
975 return NULL;
976 }
977
978 format = get_format(buf->format);
979 if (format == -1)
980 return NULL;
981
982 dri2_img = calloc(1, sizeof(*dri2_img));
983 if (!dri2_img) {
984 _eglError(EGL_BAD_ALLOC, "droid_create_image_mesa_drm");
985 return NULL;
986 }
987
988 _eglInitImage(&dri2_img->base, disp);
989
990 dri2_img->dri_image =
991 dri2_dpy->image->createImageFromName(dri2_dpy->dri_screen,
992 buf->width,
993 buf->height,
994 format,
995 name,
996 buf->stride,
997 dri2_img);
998 if (!dri2_img->dri_image) {
999 free(dri2_img);
1000 _eglError(EGL_BAD_ALLOC, "droid_create_image_mesa_drm");
1001 return NULL;
1002 }
1003
1004 return &dri2_img->base;
1005 }
1006 #endif /* HAVE_DRM_GRALLOC */
1007
1008 static EGLBoolean
1009 droid_query_surface(_EGLDriver *drv, _EGLDisplay *disp, _EGLSurface *surf,
1010 EGLint attribute, EGLint *value)
1011 {
1012 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(surf);
1013 switch (attribute) {
1014 case EGL_WIDTH:
1015 if (dri2_surf->base.Type == EGL_WINDOW_BIT && dri2_surf->window) {
1016 dri2_surf->window->query(dri2_surf->window,
1017 NATIVE_WINDOW_DEFAULT_WIDTH, value);
1018 return EGL_TRUE;
1019 }
1020 break;
1021 case EGL_HEIGHT:
1022 if (dri2_surf->base.Type == EGL_WINDOW_BIT && dri2_surf->window) {
1023 dri2_surf->window->query(dri2_surf->window,
1024 NATIVE_WINDOW_DEFAULT_HEIGHT, value);
1025 return EGL_TRUE;
1026 }
1027 break;
1028 default:
1029 break;
1030 }
1031 return _eglQuerySurface(drv, disp, surf, attribute, value);
1032 }
1033
1034 static _EGLImage *
1035 dri2_create_image_android_native_buffer(_EGLDisplay *disp,
1036 _EGLContext *ctx,
1037 struct ANativeWindowBuffer *buf)
1038 {
1039 int fds[3];
1040 unsigned num_fds;
1041
1042 if (ctx != NULL) {
1043 /* From the EGL_ANDROID_image_native_buffer spec:
1044 *
1045 * * If <target> is EGL_NATIVE_BUFFER_ANDROID and <ctx> is not
1046 * EGL_NO_CONTEXT, the error EGL_BAD_CONTEXT is generated.
1047 */
1048 _eglError(EGL_BAD_CONTEXT, "eglCreateEGLImageKHR: for "
1049 "EGL_NATIVE_BUFFER_ANDROID, the context must be "
1050 "EGL_NO_CONTEXT");
1051 return NULL;
1052 }
1053
1054 if (!buf || buf->common.magic != ANDROID_NATIVE_BUFFER_MAGIC ||
1055 buf->common.version != sizeof(*buf)) {
1056 _eglError(EGL_BAD_PARAMETER, "eglCreateEGLImageKHR");
1057 return NULL;
1058 }
1059
1060 num_fds = get_native_buffer_fds(buf, fds);
1061 if (num_fds > 0)
1062 return droid_create_image_from_prime_fds(disp, ctx, buf, num_fds, fds);
1063
1064 #ifdef HAVE_DRM_GRALLOC
1065 return droid_create_image_from_name(disp, ctx, buf);
1066 #else
1067 return NULL;
1068 #endif
1069 }
1070
1071 static _EGLImage *
1072 droid_create_image_khr(_EGLDriver *drv, _EGLDisplay *disp,
1073 _EGLContext *ctx, EGLenum target,
1074 EGLClientBuffer buffer, const EGLint *attr_list)
1075 {
1076 switch (target) {
1077 case EGL_NATIVE_BUFFER_ANDROID:
1078 return dri2_create_image_android_native_buffer(disp, ctx,
1079 (struct ANativeWindowBuffer *) buffer);
1080 default:
1081 return dri2_create_image_khr(drv, disp, ctx, target, buffer, attr_list);
1082 }
1083 }
1084
1085 static void
1086 droid_flush_front_buffer(__DRIdrawable * driDrawable, void *loaderPrivate)
1087 {
1088 }
1089
1090 #ifdef HAVE_DRM_GRALLOC
1091 static int
1092 droid_get_buffers_parse_attachments(struct dri2_egl_surface *dri2_surf,
1093 unsigned int *attachments, int count)
1094 {
1095 int num_buffers = 0;
1096
1097 /* fill dri2_surf->buffers */
1098 for (int i = 0; i < count * 2; i += 2) {
1099 __DRIbuffer *buf, *local;
1100
1101 assert(num_buffers < ARRAY_SIZE(dri2_surf->buffers));
1102 buf = &dri2_surf->buffers[num_buffers];
1103
1104 switch (attachments[i]) {
1105 case __DRI_BUFFER_BACK_LEFT:
1106 if (dri2_surf->base.Type == EGL_WINDOW_BIT) {
1107 buf->attachment = attachments[i];
1108 buf->name = get_native_buffer_name(dri2_surf->buffer);
1109 buf->cpp = get_format_bpp(dri2_surf->buffer->format);
1110 buf->pitch = dri2_surf->buffer->stride * buf->cpp;
1111 buf->flags = 0;
1112
1113 if (buf->name)
1114 num_buffers++;
1115
1116 break;
1117 }
1118 /* fall through for pbuffers */
1119 case __DRI_BUFFER_DEPTH:
1120 case __DRI_BUFFER_STENCIL:
1121 case __DRI_BUFFER_ACCUM:
1122 case __DRI_BUFFER_DEPTH_STENCIL:
1123 case __DRI_BUFFER_HIZ:
1124 local = dri2_egl_surface_alloc_local_buffer(dri2_surf,
1125 attachments[i], attachments[i + 1]);
1126
1127 if (local) {
1128 *buf = *local;
1129 num_buffers++;
1130 }
1131 break;
1132 case __DRI_BUFFER_FRONT_LEFT:
1133 case __DRI_BUFFER_FRONT_RIGHT:
1134 case __DRI_BUFFER_FAKE_FRONT_LEFT:
1135 case __DRI_BUFFER_FAKE_FRONT_RIGHT:
1136 case __DRI_BUFFER_BACK_RIGHT:
1137 default:
1138 /* no front or right buffers */
1139 break;
1140 }
1141 }
1142
1143 return num_buffers;
1144 }
1145
1146 static __DRIbuffer *
1147 droid_get_buffers_with_format(__DRIdrawable * driDrawable,
1148 int *width, int *height,
1149 unsigned int *attachments, int count,
1150 int *out_count, void *loaderPrivate)
1151 {
1152 struct dri2_egl_surface *dri2_surf = loaderPrivate;
1153
1154 if (update_buffers(dri2_surf) < 0)
1155 return NULL;
1156
1157 *out_count = droid_get_buffers_parse_attachments(dri2_surf, attachments, count);
1158
1159 if (width)
1160 *width = dri2_surf->base.Width;
1161 if (height)
1162 *height = dri2_surf->base.Height;
1163
1164 return dri2_surf->buffers;
1165 }
1166 #endif /* HAVE_DRM_GRALLOC */
1167
1168 static unsigned
1169 droid_get_capability(void *loaderPrivate, enum dri_loader_cap cap)
1170 {
1171 /* Note: loaderPrivate is _EGLDisplay* */
1172 switch (cap) {
1173 case DRI_LOADER_CAP_RGBA_ORDERING:
1174 return 1;
1175 default:
1176 return 0;
1177 }
1178 }
1179
1180 static EGLBoolean
1181 droid_add_configs_for_visuals(_EGLDriver *drv, _EGLDisplay *disp)
1182 {
1183 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1184 static const struct {
1185 int format;
1186 int rgba_shifts[4];
1187 unsigned int rgba_sizes[4];
1188 } visuals[] = {
1189 { HAL_PIXEL_FORMAT_RGBA_8888, { 0, 8, 16, 24 }, { 8, 8, 8, 8 } },
1190 { HAL_PIXEL_FORMAT_RGBX_8888, { 0, 8, 16, -1 }, { 8, 8, 8, 0 } },
1191 { HAL_PIXEL_FORMAT_RGB_565, { 11, 5, 0, -1 }, { 5, 6, 5, 0 } },
1192 /* This must be after HAL_PIXEL_FORMAT_RGBA_8888, we only keep BGRA
1193 * visual if it turns out RGBA visual is not available.
1194 */
1195 { HAL_PIXEL_FORMAT_BGRA_8888, { 16, 8, 0, 24 }, { 8, 8, 8, 8 } },
1196 };
1197
1198 unsigned int format_count[ARRAY_SIZE(visuals)] = { 0 };
1199 int config_count = 0;
1200
1201 /* The nesting of loops is significant here. Also significant is the order
1202 * of the HAL pixel formats. Many Android apps (such as Google's official
1203 * NDK GLES2 example app), and even portions the core framework code (such
1204 * as SystemServiceManager in Nougat), incorrectly choose their EGLConfig.
1205 * They neglect to match the EGLConfig's EGL_NATIVE_VISUAL_ID against the
1206 * window's native format, and instead choose the first EGLConfig whose
1207 * channel sizes match those of the native window format while ignoring the
1208 * channel *ordering*.
1209 *
1210 * We can detect such buggy clients in logcat when they call
1211 * eglCreateSurface, by detecting the mismatch between the EGLConfig's
1212 * format and the window's format.
1213 *
1214 * As a workaround, we generate EGLConfigs such that all EGLConfigs for HAL
1215 * pixel format i precede those for HAL pixel format i+1. In my
1216 * (chadversary) testing on Android Nougat, this was good enough to pacify
1217 * the buggy clients.
1218 */
1219 bool has_rgba = false;
1220 for (int i = 0; i < ARRAY_SIZE(visuals); i++) {
1221 /* Only enable BGRA configs when RGBA is not available. BGRA configs are
1222 * buggy on stock Android.
1223 */
1224 if (visuals[i].format == HAL_PIXEL_FORMAT_BGRA_8888 && has_rgba)
1225 continue;
1226 for (int j = 0; dri2_dpy->driver_configs[j]; j++) {
1227 const EGLint surface_type = EGL_WINDOW_BIT | EGL_PBUFFER_BIT;
1228
1229 const EGLint config_attrs[] = {
1230 EGL_NATIVE_VISUAL_ID, visuals[i].format,
1231 EGL_NATIVE_VISUAL_TYPE, visuals[i].format,
1232 EGL_FRAMEBUFFER_TARGET_ANDROID, EGL_TRUE,
1233 EGL_RECORDABLE_ANDROID, EGL_TRUE,
1234 EGL_NONE
1235 };
1236
1237 struct dri2_egl_config *dri2_conf =
1238 dri2_add_config(disp, dri2_dpy->driver_configs[j],
1239 config_count + 1, surface_type, config_attrs,
1240 visuals[i].rgba_shifts, visuals[i].rgba_sizes);
1241 if (dri2_conf) {
1242 if (dri2_conf->base.ConfigID == config_count + 1)
1243 config_count++;
1244 format_count[i]++;
1245 }
1246 }
1247 if (visuals[i].format == HAL_PIXEL_FORMAT_RGBA_8888 && format_count[i])
1248 has_rgba = true;
1249 }
1250
1251 for (int i = 0; i < ARRAY_SIZE(format_count); i++) {
1252 if (!format_count[i]) {
1253 _eglLog(_EGL_DEBUG, "No DRI config supports native format 0x%x",
1254 visuals[i].format);
1255 }
1256 }
1257
1258 return (config_count != 0);
1259 }
1260
1261 static const struct dri2_egl_display_vtbl droid_display_vtbl = {
1262 .authenticate = NULL,
1263 .create_window_surface = droid_create_window_surface,
1264 .create_pixmap_surface = dri2_fallback_create_pixmap_surface,
1265 .create_pbuffer_surface = droid_create_pbuffer_surface,
1266 .destroy_surface = droid_destroy_surface,
1267 .create_image = droid_create_image_khr,
1268 .swap_buffers = droid_swap_buffers,
1269 .swap_buffers_with_damage = dri2_fallback_swap_buffers_with_damage, /* Android implements the function */
1270 .swap_buffers_region = dri2_fallback_swap_buffers_region,
1271 .swap_interval = droid_swap_interval,
1272 .post_sub_buffer = dri2_fallback_post_sub_buffer,
1273 .copy_buffers = dri2_fallback_copy_buffers,
1274 .query_buffer_age = droid_query_buffer_age,
1275 .query_surface = droid_query_surface,
1276 .create_wayland_buffer_from_image = dri2_fallback_create_wayland_buffer_from_image,
1277 .get_sync_values = dri2_fallback_get_sync_values,
1278 .get_dri_drawable = dri2_surface_get_dri_drawable,
1279 .set_shared_buffer_mode = droid_set_shared_buffer_mode,
1280 };
1281
1282 #ifdef HAVE_DRM_GRALLOC
1283 static const __DRIdri2LoaderExtension droid_dri2_loader_extension = {
1284 .base = { __DRI_DRI2_LOADER, 4 },
1285
1286 .getBuffers = NULL,
1287 .flushFrontBuffer = droid_flush_front_buffer,
1288 .getBuffersWithFormat = droid_get_buffers_with_format,
1289 .getCapability = droid_get_capability,
1290 };
1291
1292 static const __DRIextension *droid_dri2_loader_extensions[] = {
1293 &droid_dri2_loader_extension.base,
1294 &image_lookup_extension.base,
1295 &use_invalidate.base,
1296 /* No __DRI_MUTABLE_RENDER_BUFFER_LOADER because it requires
1297 * __DRI_IMAGE_LOADER.
1298 */
1299 NULL,
1300 };
1301 #endif /* HAVE_DRM_GRALLOC */
1302
1303 static const __DRIimageLoaderExtension droid_image_loader_extension = {
1304 .base = { __DRI_IMAGE_LOADER, 2 },
1305
1306 .getBuffers = droid_image_get_buffers,
1307 .flushFrontBuffer = droid_flush_front_buffer,
1308 .getCapability = droid_get_capability,
1309 };
1310
1311 static void
1312 droid_display_shared_buffer(__DRIdrawable *driDrawable, int fence_fd,
1313 void *loaderPrivate)
1314 {
1315 struct dri2_egl_surface *dri2_surf = loaderPrivate;
1316 struct ANativeWindowBuffer *old_buffer UNUSED = dri2_surf->buffer;
1317
1318 if (!_eglSurfaceInSharedBufferMode(&dri2_surf->base)) {
1319 _eglLog(_EGL_WARNING, "%s: internal error: buffer is not shared",
1320 __func__);
1321 return;
1322 }
1323
1324 if (fence_fd >= 0) {
1325 /* The driver's fence is more recent than the surface's out fence, if it
1326 * exists at all. So use the driver's fence.
1327 */
1328 if (dri2_surf->out_fence_fd >= 0) {
1329 close(dri2_surf->out_fence_fd);
1330 dri2_surf->out_fence_fd = -1;
1331 }
1332 } else if (dri2_surf->out_fence_fd >= 0) {
1333 fence_fd = dri2_surf->out_fence_fd;
1334 dri2_surf->out_fence_fd = -1;
1335 }
1336
1337 if (dri2_surf->window->queueBuffer(dri2_surf->window, dri2_surf->buffer,
1338 fence_fd)) {
1339 _eglLog(_EGL_WARNING, "%s: ANativeWindow::queueBuffer failed", __func__);
1340 close(fence_fd);
1341 return;
1342 }
1343
1344 fence_fd = -1;
1345
1346 if (dri2_surf->window->dequeueBuffer(dri2_surf->window, &dri2_surf->buffer,
1347 &fence_fd)) {
1348 /* Tear down the surface because it no longer has a back buffer. */
1349 struct dri2_egl_display *dri2_dpy =
1350 dri2_egl_display(dri2_surf->base.Resource.Display);
1351
1352 _eglLog(_EGL_WARNING, "%s: ANativeWindow::dequeueBuffer failed", __func__);
1353
1354 dri2_surf->base.Lost = true;
1355 dri2_surf->buffer = NULL;
1356 dri2_surf->back = NULL;
1357
1358 if (dri2_surf->dri_image_back) {
1359 dri2_dpy->image->destroyImage(dri2_surf->dri_image_back);
1360 dri2_surf->dri_image_back = NULL;
1361 }
1362
1363 dri2_dpy->flush->invalidate(dri2_surf->dri_drawable);
1364 return;
1365 }
1366
1367 if (fence_fd < 0)
1368 return;
1369
1370 /* Access to the buffer is controlled by a sync fence. Block on it.
1371 *
1372 * Ideally, we would submit the fence to the driver, and the driver would
1373 * postpone command execution until it signalled. But DRI lacks API for
1374 * that (as of 2018-04-11).
1375 *
1376 * SYNC_IOC_WAIT waits forever if timeout < 0
1377 */
1378 sync_wait(fence_fd, -1);
1379 close(fence_fd);
1380 }
1381
1382 static const __DRImutableRenderBufferLoaderExtension droid_mutable_render_buffer_extension = {
1383 .base = { __DRI_MUTABLE_RENDER_BUFFER_LOADER, 1 },
1384 .displaySharedBuffer = droid_display_shared_buffer,
1385 };
1386
1387 static const __DRIextension *droid_image_loader_extensions[] = {
1388 &droid_image_loader_extension.base,
1389 &image_lookup_extension.base,
1390 &use_invalidate.base,
1391 &droid_mutable_render_buffer_extension.base,
1392 NULL,
1393 };
1394
1395 static EGLBoolean
1396 droid_load_driver(_EGLDisplay *disp, bool swrast)
1397 {
1398 struct dri2_egl_display *dri2_dpy = disp->DriverData;
1399 const char *err;
1400
1401 dri2_dpy->driver_name = loader_get_driver_for_fd(dri2_dpy->fd);
1402 if (dri2_dpy->driver_name == NULL)
1403 return false;
1404
1405 #ifdef HAVE_DRM_GRALLOC
1406 /* Handle control nodes using __DRI_DRI2_LOADER extension and GEM names
1407 * for backwards compatibility with drm_gralloc. (Do not use on new
1408 * systems.) */
1409 dri2_dpy->loader_extensions = droid_dri2_loader_extensions;
1410 if (!dri2_load_driver(disp)) {
1411 err = "DRI2: failed to load driver";
1412 goto error;
1413 }
1414 #else
1415 if (swrast) {
1416 /* Use kms swrast only with vgem / virtio_gpu.
1417 * virtio-gpu fallbacks to software rendering when 3D features
1418 * are unavailable since 6c5ab.
1419 */
1420 if (strcmp(dri2_dpy->driver_name, "vgem") == 0 ||
1421 strcmp(dri2_dpy->driver_name, "virtio_gpu") == 0) {
1422 free(dri2_dpy->driver_name);
1423 dri2_dpy->driver_name = strdup("kms_swrast");
1424 } else {
1425 err = "DRI3: failed to find software capable driver";
1426 goto error;
1427 }
1428 }
1429
1430 dri2_dpy->loader_extensions = droid_image_loader_extensions;
1431 if (!dri2_load_driver_dri3(disp)) {
1432 err = "DRI3: failed to load driver";
1433 goto error;
1434 }
1435 #endif
1436
1437 return true;
1438
1439 error:
1440 free(dri2_dpy->driver_name);
1441 dri2_dpy->driver_name = NULL;
1442 return false;
1443 }
1444
1445 static void
1446 droid_unload_driver(_EGLDisplay *disp)
1447 {
1448 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1449
1450 dlclose(dri2_dpy->driver);
1451 dri2_dpy->driver = NULL;
1452 free(dri2_dpy->driver_name);
1453 dri2_dpy->driver_name = NULL;
1454 }
1455
1456 static int
1457 droid_filter_device(_EGLDisplay *disp, int fd, const char *vendor)
1458 {
1459 drmVersionPtr ver = drmGetVersion(fd);
1460 if (!ver)
1461 return -1;
1462
1463 if (strcmp(vendor, ver->name) != 0) {
1464 drmFreeVersion(ver);
1465 return -1;
1466 }
1467
1468 drmFreeVersion(ver);
1469 return 0;
1470 }
1471
1472 static EGLBoolean
1473 droid_probe_device(_EGLDisplay *disp, bool swrast)
1474 {
1475 /* Check that the device is supported, by attempting to:
1476 * - load the dri module
1477 * - and, create a screen
1478 */
1479 if (!droid_load_driver(disp, swrast))
1480 return EGL_FALSE;
1481
1482 if (!dri2_create_screen(disp)) {
1483 _eglLog(_EGL_WARNING, "DRI2: failed to create screen");
1484 droid_unload_driver(disp);
1485 return EGL_FALSE;
1486 }
1487 return EGL_TRUE;
1488 }
1489
1490 #ifdef HAVE_DRM_GRALLOC
1491 static EGLBoolean
1492 droid_open_device(_EGLDisplay *disp, bool swrast)
1493 {
1494 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1495 int fd = -1, err = -EINVAL;
1496
1497 if (swrast)
1498 return EGL_FALSE;
1499
1500 if (dri2_dpy->gralloc->perform)
1501 err = dri2_dpy->gralloc->perform(dri2_dpy->gralloc,
1502 GRALLOC_MODULE_PERFORM_GET_DRM_FD,
1503 &fd);
1504 if (err || fd < 0) {
1505 _eglLog(_EGL_WARNING, "fail to get drm fd");
1506 return EGL_FALSE;
1507 }
1508
1509 dri2_dpy->fd = fcntl(fd, F_DUPFD_CLOEXEC, 3);
1510 if (dri2_dpy->fd < 0)
1511 return EGL_FALSE;
1512
1513 if (drmGetNodeTypeFromFd(dri2_dpy->fd) == DRM_NODE_RENDER)
1514 return EGL_FALSE;
1515
1516 return droid_probe_device(disp, swrast);
1517 }
1518 #else
1519 static EGLBoolean
1520 droid_open_device(_EGLDisplay *disp, bool swrast)
1521 {
1522 #define MAX_DRM_DEVICES 64
1523 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1524 drmDevicePtr device, devices[MAX_DRM_DEVICES] = { NULL };
1525 int num_devices;
1526
1527 char *vendor_name = NULL;
1528 char vendor_buf[PROPERTY_VALUE_MAX];
1529
1530 #ifdef EGL_FORCE_RENDERNODE
1531 const unsigned node_type = DRM_NODE_RENDER;
1532 #else
1533 const unsigned node_type = swrast ? DRM_NODE_PRIMARY : DRM_NODE_RENDER;
1534 #endif
1535
1536 if (property_get("drm.gpu.vendor_name", vendor_buf, NULL) > 0)
1537 vendor_name = vendor_buf;
1538
1539 num_devices = drmGetDevices2(0, devices, ARRAY_SIZE(devices));
1540 if (num_devices < 0)
1541 return EGL_FALSE;
1542
1543 for (int i = 0; i < num_devices; i++) {
1544 device = devices[i];
1545
1546 if (!(device->available_nodes & (1 << node_type)))
1547 continue;
1548
1549 dri2_dpy->fd = loader_open_device(device->nodes[node_type]);
1550 if (dri2_dpy->fd < 0) {
1551 _eglLog(_EGL_WARNING, "%s() Failed to open DRM device %s",
1552 __func__, device->nodes[node_type]);
1553 continue;
1554 }
1555
1556 /* If a vendor is explicitly provided, we use only that.
1557 * Otherwise we fall-back the first device that is supported.
1558 */
1559 if (vendor_name) {
1560 if (droid_filter_device(disp, dri2_dpy->fd, vendor_name)) {
1561 /* Device does not match - try next device */
1562 close(dri2_dpy->fd);
1563 dri2_dpy->fd = -1;
1564 continue;
1565 }
1566 /* If the requested device matches - use it. Regardless if
1567 * init fails, do not fall-back to any other device.
1568 */
1569 if (!droid_probe_device(disp, false)) {
1570 close(dri2_dpy->fd);
1571 dri2_dpy->fd = -1;
1572 }
1573
1574 break;
1575 }
1576 if (droid_probe_device(disp, swrast))
1577 break;
1578
1579 /* No explicit request - attempt the next device */
1580 close(dri2_dpy->fd);
1581 dri2_dpy->fd = -1;
1582 }
1583 drmFreeDevices(devices, num_devices);
1584
1585 if (dri2_dpy->fd < 0) {
1586 _eglLog(_EGL_WARNING, "Failed to open %s DRM device",
1587 vendor_name ? "desired": "any");
1588 return EGL_FALSE;
1589 }
1590
1591 return EGL_TRUE;
1592 #undef MAX_DRM_DEVICES
1593 }
1594
1595 #endif
1596
1597 EGLBoolean
1598 dri2_initialize_android(_EGLDriver *drv, _EGLDisplay *disp)
1599 {
1600 _EGLDevice *dev;
1601 bool device_opened = false;
1602 struct dri2_egl_display *dri2_dpy;
1603 const char *err;
1604 int ret;
1605
1606 dri2_dpy = calloc(1, sizeof(*dri2_dpy));
1607 if (!dri2_dpy)
1608 return _eglError(EGL_BAD_ALLOC, "eglInitialize");
1609
1610 dri2_dpy->fd = -1;
1611 ret = hw_get_module(GRALLOC_HARDWARE_MODULE_ID,
1612 (const hw_module_t **)&dri2_dpy->gralloc);
1613 if (ret) {
1614 err = "DRI2: failed to get gralloc module";
1615 goto cleanup;
1616 }
1617
1618 disp->DriverData = (void *) dri2_dpy;
1619 if (!disp->Options.ForceSoftware)
1620 device_opened = droid_open_device(disp, false);
1621 if (!device_opened)
1622 device_opened = droid_open_device(disp, true);
1623
1624 if (!device_opened) {
1625 err = "DRI2: failed to open device";
1626 goto cleanup;
1627 }
1628
1629 dev = _eglAddDevice(dri2_dpy->fd, false);
1630 if (!dev) {
1631 err = "DRI2: failed to find EGLDevice";
1632 goto cleanup;
1633 }
1634
1635 disp->Device = dev;
1636
1637 if (!dri2_setup_extensions(disp)) {
1638 err = "DRI2: failed to setup extensions";
1639 goto cleanup;
1640 }
1641
1642 dri2_setup_screen(disp);
1643
1644 /* We set the maximum swap interval as 1 for Android platform, since it is
1645 * the maximum value supported by Android according to the value of
1646 * ANativeWindow::maxSwapInterval.
1647 */
1648 dri2_setup_swap_interval(disp, 1);
1649
1650 disp->Extensions.ANDROID_framebuffer_target = EGL_TRUE;
1651 disp->Extensions.ANDROID_image_native_buffer = EGL_TRUE;
1652 disp->Extensions.ANDROID_recordable = EGL_TRUE;
1653
1654 /* Querying buffer age requires a buffer to be dequeued. Without
1655 * EGL_ANDROID_native_fence_sync, dequeue might call eglClientWaitSync and
1656 * result in a deadlock (the lock is already held by eglQuerySurface).
1657 */
1658 if (disp->Extensions.ANDROID_native_fence_sync) {
1659 disp->Extensions.EXT_buffer_age = EGL_TRUE;
1660 #if ANDROID_API_LEVEL >= 23
1661 disp->Extensions.KHR_partial_update = EGL_TRUE;
1662 #endif
1663 }
1664
1665 disp->Extensions.KHR_image = EGL_TRUE;
1666 #if ANDROID_API_LEVEL >= 24
1667 if (dri2_dpy->mutable_render_buffer &&
1668 dri2_dpy->loader_extensions == droid_image_loader_extensions) {
1669 disp->Extensions.KHR_mutable_render_buffer = EGL_TRUE;
1670 }
1671 #endif
1672
1673 /* Create configs *after* enabling extensions because presence of DRI
1674 * driver extensions can affect the capabilities of EGLConfigs.
1675 */
1676 if (!droid_add_configs_for_visuals(drv, disp)) {
1677 err = "DRI2: failed to add configs";
1678 goto cleanup;
1679 }
1680
1681 /* Fill vtbl last to prevent accidentally calling virtual function during
1682 * initialization.
1683 */
1684 dri2_dpy->vtbl = &droid_display_vtbl;
1685
1686 return EGL_TRUE;
1687
1688 cleanup:
1689 dri2_display_destroy(disp);
1690 return _eglError(EGL_NOT_INITIALIZED, err);
1691 }