android: fix segfault within swap_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 <errno.h>
31 #include <dlfcn.h>
32 #include <fcntl.h>
33 #include <xf86drm.h>
34 #include <stdbool.h>
35
36 #if ANDROID_VERSION >= 0x402
37 #include <sync/sync.h>
38 #endif
39
40 #include "loader.h"
41 #include "egl_dri2.h"
42 #include "egl_dri2_fallbacks.h"
43 #include "gralloc_drm.h"
44
45 #define ALIGN(val, align) (((val) + (align) - 1) & ~((align) - 1))
46
47 struct droid_yuv_format {
48 /* Lookup keys */
49 int native; /* HAL_PIXEL_FORMAT_ */
50 int is_ycrcb; /* 0 if chroma order is {Cb, Cr}, 1 if {Cr, Cb} */
51 int chroma_step; /* Distance in bytes between subsequent chroma pixels. */
52
53 /* Result */
54 int fourcc; /* __DRI_IMAGE_FOURCC_ */
55 };
56
57 /* The following table is used to look up a DRI image FourCC based
58 * on native format and information contained in android_ycbcr struct. */
59 static const struct droid_yuv_format droid_yuv_formats[] = {
60 /* Native format, YCrCb, Chroma step, DRI image FourCC */
61 { HAL_PIXEL_FORMAT_YCbCr_420_888, 0, 2, __DRI_IMAGE_FOURCC_NV12 },
62 { HAL_PIXEL_FORMAT_YCbCr_420_888, 0, 1, __DRI_IMAGE_FOURCC_YUV420 },
63 { HAL_PIXEL_FORMAT_YCbCr_420_888, 1, 1, __DRI_IMAGE_FOURCC_YVU420 },
64 { HAL_PIXEL_FORMAT_YV12, 1, 1, __DRI_IMAGE_FOURCC_YVU420 },
65 };
66
67 static int
68 get_fourcc_yuv(int native, int is_ycrcb, int chroma_step)
69 {
70 int i;
71
72 for (i = 0; i < ARRAY_SIZE(droid_yuv_formats); ++i)
73 if (droid_yuv_formats[i].native == native &&
74 droid_yuv_formats[i].is_ycrcb == is_ycrcb &&
75 droid_yuv_formats[i].chroma_step == chroma_step)
76 return droid_yuv_formats[i].fourcc;
77
78 return -1;
79 }
80
81 static bool
82 is_yuv(int native)
83 {
84 int i;
85
86 for (i = 0; i < ARRAY_SIZE(droid_yuv_formats); ++i)
87 if (droid_yuv_formats[i].native == native)
88 return true;
89
90 return false;
91 }
92
93 static int
94 get_format_bpp(int native)
95 {
96 int bpp;
97
98 switch (native) {
99 case HAL_PIXEL_FORMAT_RGBA_8888:
100 case HAL_PIXEL_FORMAT_RGBX_8888:
101 case HAL_PIXEL_FORMAT_BGRA_8888:
102 bpp = 4;
103 break;
104 case HAL_PIXEL_FORMAT_RGB_565:
105 bpp = 2;
106 break;
107 default:
108 bpp = 0;
109 break;
110 }
111
112 return bpp;
113 }
114
115 /* createImageFromFds requires fourcc format */
116 static int get_fourcc(int native)
117 {
118 switch (native) {
119 case HAL_PIXEL_FORMAT_RGB_565: return __DRI_IMAGE_FOURCC_RGB565;
120 case HAL_PIXEL_FORMAT_BGRA_8888: return __DRI_IMAGE_FOURCC_ARGB8888;
121 case HAL_PIXEL_FORMAT_RGBA_8888: return __DRI_IMAGE_FOURCC_ABGR8888;
122 case HAL_PIXEL_FORMAT_RGBX_8888: return __DRI_IMAGE_FOURCC_XBGR8888;
123 default:
124 _eglLog(_EGL_WARNING, "unsupported native buffer format 0x%x", native);
125 }
126 return -1;
127 }
128
129 static int get_format(int format)
130 {
131 switch (format) {
132 case HAL_PIXEL_FORMAT_BGRA_8888: return __DRI_IMAGE_FORMAT_ARGB8888;
133 case HAL_PIXEL_FORMAT_RGB_565: return __DRI_IMAGE_FORMAT_RGB565;
134 case HAL_PIXEL_FORMAT_RGBA_8888: return __DRI_IMAGE_FORMAT_ABGR8888;
135 case HAL_PIXEL_FORMAT_RGBX_8888: return __DRI_IMAGE_FORMAT_XBGR8888;
136 default:
137 _eglLog(_EGL_WARNING, "unsupported native buffer format 0x%x", format);
138 }
139 return -1;
140 }
141
142 static int
143 get_native_buffer_fd(struct ANativeWindowBuffer *buf)
144 {
145 native_handle_t *handle = (native_handle_t *)buf->handle;
146 /*
147 * Various gralloc implementations exist, but the dma-buf fd tends
148 * to be first. Access it directly to avoid a dependency on specific
149 * gralloc versions.
150 */
151 return (handle && handle->numFds) ? handle->data[0] : -1;
152 }
153
154 static int
155 get_native_buffer_name(struct ANativeWindowBuffer *buf)
156 {
157 return gralloc_drm_get_gem_handle(buf->handle);
158 }
159
160 static EGLBoolean
161 droid_window_dequeue_buffer(struct dri2_egl_surface *dri2_surf)
162 {
163 #if ANDROID_VERSION >= 0x0402
164 int fence_fd;
165
166 if (dri2_surf->window->dequeueBuffer(dri2_surf->window, &dri2_surf->buffer,
167 &fence_fd))
168 return EGL_FALSE;
169
170 /* If access to the buffer is controlled by a sync fence, then block on the
171 * fence.
172 *
173 * It may be more performant to postpone blocking until there is an
174 * immediate need to write to the buffer. But doing so would require adding
175 * hooks to the DRI2 loader.
176 *
177 * From the ANativeWindow::dequeueBuffer documentation:
178 *
179 * The libsync fence file descriptor returned in the int pointed to by
180 * the fenceFd argument will refer to the fence that must signal
181 * before the dequeued buffer may be written to. A value of -1
182 * indicates that the caller may access the buffer immediately without
183 * waiting on a fence. If a valid file descriptor is returned (i.e.
184 * any value except -1) then the caller is responsible for closing the
185 * file descriptor.
186 */
187 if (fence_fd >= 0) {
188 /* From the SYNC_IOC_WAIT documentation in <linux/sync.h>:
189 *
190 * Waits indefinitely if timeout < 0.
191 */
192 int timeout = -1;
193 sync_wait(fence_fd, timeout);
194 close(fence_fd);
195 }
196
197 dri2_surf->buffer->common.incRef(&dri2_surf->buffer->common);
198 #else
199 if (dri2_surf->window->dequeueBuffer(dri2_surf->window, &dri2_surf->buffer))
200 return EGL_FALSE;
201
202 dri2_surf->buffer->common.incRef(&dri2_surf->buffer->common);
203 dri2_surf->window->lockBuffer(dri2_surf->window, dri2_surf->buffer);
204 #endif
205
206 /* Record all the buffers created by ANativeWindow and update back buffer
207 * for updating buffer's age in swap_buffers.
208 */
209 EGLBoolean updated = EGL_FALSE;
210 for (int i = 0; i < ARRAY_SIZE(dri2_surf->color_buffers); i++) {
211 if (!dri2_surf->color_buffers[i].buffer) {
212 dri2_surf->color_buffers[i].buffer = dri2_surf->buffer;
213 }
214 if (dri2_surf->color_buffers[i].buffer == dri2_surf->buffer) {
215 dri2_surf->back = &dri2_surf->color_buffers[i];
216 updated = EGL_TRUE;
217 break;
218 }
219 }
220
221 if (!updated) {
222 /* In case of all the buffers were recreated by ANativeWindow, reset
223 * the color_buffers
224 */
225 for (int i = 0; i < ARRAY_SIZE(dri2_surf->color_buffers); i++) {
226 dri2_surf->color_buffers[i].buffer = NULL;
227 dri2_surf->color_buffers[i].age = 0;
228 }
229 dri2_surf->color_buffers[0].buffer = dri2_surf->buffer;
230 dri2_surf->back = &dri2_surf->color_buffers[0];
231 }
232
233 return EGL_TRUE;
234 }
235
236 static EGLBoolean
237 droid_window_enqueue_buffer(_EGLDisplay *disp, struct dri2_egl_surface *dri2_surf)
238 {
239 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
240
241 /* To avoid blocking other EGL calls, release the display mutex before
242 * we enter droid_window_enqueue_buffer() and re-acquire the mutex upon
243 * return.
244 */
245 mtx_unlock(&disp->Mutex);
246
247 #if ANDROID_VERSION >= 0x0402
248 /* Queue the buffer without a sync fence. This informs the ANativeWindow
249 * that it may access the buffer immediately.
250 *
251 * From ANativeWindow::dequeueBuffer:
252 *
253 * The fenceFd argument specifies a libsync fence file descriptor for
254 * a fence that must signal before the buffer can be accessed. If
255 * the buffer can be accessed immediately then a value of -1 should
256 * be used. The caller must not use the file descriptor after it
257 * is passed to queueBuffer, and the ANativeWindow implementation
258 * is responsible for closing it.
259 */
260 int fence_fd = -1;
261 dri2_surf->window->queueBuffer(dri2_surf->window, dri2_surf->buffer,
262 fence_fd);
263 #else
264 dri2_surf->window->queueBuffer(dri2_surf->window, dri2_surf->buffer);
265 #endif
266
267 dri2_surf->buffer->common.decRef(&dri2_surf->buffer->common);
268 dri2_surf->buffer = NULL;
269 dri2_surf->back = NULL;
270
271 mtx_lock(&disp->Mutex);
272
273 if (dri2_surf->dri_image_back) {
274 dri2_dpy->image->destroyImage(dri2_surf->dri_image_back);
275 dri2_surf->dri_image_back = NULL;
276 }
277
278 return EGL_TRUE;
279 }
280
281 static void
282 droid_window_cancel_buffer(_EGLDisplay *disp, struct dri2_egl_surface *dri2_surf)
283 {
284 /* no cancel buffer? */
285 droid_window_enqueue_buffer(disp, dri2_surf);
286 }
287
288 static __DRIbuffer *
289 droid_alloc_local_buffer(struct dri2_egl_surface *dri2_surf,
290 unsigned int att, unsigned int format)
291 {
292 struct dri2_egl_display *dri2_dpy =
293 dri2_egl_display(dri2_surf->base.Resource.Display);
294
295 if (att >= ARRAY_SIZE(dri2_surf->local_buffers))
296 return NULL;
297
298 if (!dri2_surf->local_buffers[att]) {
299 dri2_surf->local_buffers[att] =
300 dri2_dpy->dri2->allocateBuffer(dri2_dpy->dri_screen, att, format,
301 dri2_surf->base.Width, dri2_surf->base.Height);
302 }
303
304 return dri2_surf->local_buffers[att];
305 }
306
307 static void
308 droid_free_local_buffers(struct dri2_egl_surface *dri2_surf)
309 {
310 struct dri2_egl_display *dri2_dpy =
311 dri2_egl_display(dri2_surf->base.Resource.Display);
312 int i;
313
314 for (i = 0; i < ARRAY_SIZE(dri2_surf->local_buffers); i++) {
315 if (dri2_surf->local_buffers[i]) {
316 dri2_dpy->dri2->releaseBuffer(dri2_dpy->dri_screen,
317 dri2_surf->local_buffers[i]);
318 dri2_surf->local_buffers[i] = NULL;
319 }
320 }
321 }
322
323 static _EGLSurface *
324 droid_create_surface(_EGLDriver *drv, _EGLDisplay *disp, EGLint type,
325 _EGLConfig *conf, void *native_window,
326 const EGLint *attrib_list)
327 {
328 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
329 struct dri2_egl_config *dri2_conf = dri2_egl_config(conf);
330 struct dri2_egl_surface *dri2_surf;
331 struct ANativeWindow *window = native_window;
332 const __DRIconfig *config;
333
334 dri2_surf = calloc(1, sizeof *dri2_surf);
335 if (!dri2_surf) {
336 _eglError(EGL_BAD_ALLOC, "droid_create_surface");
337 return NULL;
338 }
339
340 if (!_eglInitSurface(&dri2_surf->base, disp, type, conf, attrib_list))
341 goto cleanup_surface;
342
343 if (type == EGL_WINDOW_BIT) {
344 int format;
345
346 if (!window || window->common.magic != ANDROID_NATIVE_WINDOW_MAGIC) {
347 _eglError(EGL_BAD_NATIVE_WINDOW, "droid_create_surface");
348 goto cleanup_surface;
349 }
350 if (window->query(window, NATIVE_WINDOW_FORMAT, &format)) {
351 _eglError(EGL_BAD_NATIVE_WINDOW, "droid_create_surface");
352 goto cleanup_surface;
353 }
354
355 if (format != dri2_conf->base.NativeVisualID) {
356 _eglLog(_EGL_WARNING, "Native format mismatch: 0x%x != 0x%x",
357 format, dri2_conf->base.NativeVisualID);
358 }
359
360 window->query(window, NATIVE_WINDOW_WIDTH, &dri2_surf->base.Width);
361 window->query(window, NATIVE_WINDOW_HEIGHT, &dri2_surf->base.Height);
362 }
363
364 config = dri2_get_dri_config(dri2_conf, type,
365 dri2_surf->base.GLColorspace);
366 if (!config)
367 goto cleanup_surface;
368
369 dri2_surf->dri_drawable =
370 dri2_dpy->dri2->createNewDrawable(dri2_dpy->dri_screen, config,
371 dri2_surf);
372 if (dri2_surf->dri_drawable == NULL) {
373 _eglError(EGL_BAD_ALLOC, "dri2->createNewDrawable");
374 goto cleanup_surface;
375 }
376
377 if (window) {
378 window->common.incRef(&window->common);
379 dri2_surf->window = window;
380 }
381
382 return &dri2_surf->base;
383
384 cleanup_surface:
385 free(dri2_surf);
386
387 return NULL;
388 }
389
390 static _EGLSurface *
391 droid_create_window_surface(_EGLDriver *drv, _EGLDisplay *disp,
392 _EGLConfig *conf, void *native_window,
393 const EGLint *attrib_list)
394 {
395 return droid_create_surface(drv, disp, EGL_WINDOW_BIT, conf,
396 native_window, attrib_list);
397 }
398
399 static _EGLSurface *
400 droid_create_pbuffer_surface(_EGLDriver *drv, _EGLDisplay *disp,
401 _EGLConfig *conf, const EGLint *attrib_list)
402 {
403 return droid_create_surface(drv, disp, EGL_PBUFFER_BIT, conf,
404 NULL, attrib_list);
405 }
406
407 static EGLBoolean
408 droid_destroy_surface(_EGLDriver *drv, _EGLDisplay *disp, _EGLSurface *surf)
409 {
410 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
411 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(surf);
412
413 droid_free_local_buffers(dri2_surf);
414
415 if (dri2_surf->base.Type == EGL_WINDOW_BIT) {
416 if (dri2_surf->buffer)
417 droid_window_cancel_buffer(disp, dri2_surf);
418
419 dri2_surf->window->common.decRef(&dri2_surf->window->common);
420 }
421
422 if (dri2_surf->dri_image_back) {
423 _eglLog(_EGL_DEBUG, "%s : %d : destroy dri_image_back", __func__, __LINE__);
424 dri2_dpy->image->destroyImage(dri2_surf->dri_image_back);
425 dri2_surf->dri_image_back = NULL;
426 }
427
428 if (dri2_surf->dri_image_front) {
429 _eglLog(_EGL_DEBUG, "%s : %d : destroy dri_image_front", __func__, __LINE__);
430 dri2_dpy->image->destroyImage(dri2_surf->dri_image_front);
431 dri2_surf->dri_image_front = NULL;
432 }
433
434 dri2_dpy->core->destroyDrawable(dri2_surf->dri_drawable);
435
436 free(dri2_surf);
437
438 return EGL_TRUE;
439 }
440
441 static int
442 update_buffers(struct dri2_egl_surface *dri2_surf)
443 {
444 if (dri2_surf->base.Type != EGL_WINDOW_BIT)
445 return 0;
446
447 /* try to dequeue the next back buffer */
448 if (!dri2_surf->buffer && !droid_window_dequeue_buffer(dri2_surf)) {
449 _eglLog(_EGL_WARNING, "Could not dequeue buffer from native window");
450 return -1;
451 }
452
453 /* free outdated buffers and update the surface size */
454 if (dri2_surf->base.Width != dri2_surf->buffer->width ||
455 dri2_surf->base.Height != dri2_surf->buffer->height) {
456 droid_free_local_buffers(dri2_surf);
457 dri2_surf->base.Width = dri2_surf->buffer->width;
458 dri2_surf->base.Height = dri2_surf->buffer->height;
459 }
460
461 return 0;
462 }
463
464 static int
465 get_front_bo(struct dri2_egl_surface *dri2_surf, unsigned int format)
466 {
467 struct dri2_egl_display *dri2_dpy =
468 dri2_egl_display(dri2_surf->base.Resource.Display);
469
470 if (dri2_surf->dri_image_front)
471 return 0;
472
473 if (dri2_surf->base.Type == EGL_WINDOW_BIT) {
474 /* According current EGL spec, front buffer rendering
475 * for window surface is not supported now.
476 * and mesa doesn't have the implementation of this case.
477 * Add warning message, but not treat it as error.
478 */
479 _eglLog(_EGL_DEBUG, "DRI driver requested unsupported front buffer for window surface");
480 } else if (dri2_surf->base.Type == EGL_PBUFFER_BIT) {
481 dri2_surf->dri_image_front =
482 dri2_dpy->image->createImage(dri2_dpy->dri_screen,
483 dri2_surf->base.Width,
484 dri2_surf->base.Height,
485 format,
486 0,
487 dri2_surf);
488 if (!dri2_surf->dri_image_front) {
489 _eglLog(_EGL_WARNING, "dri2_image_front allocation failed");
490 return -1;
491 }
492 }
493
494 return 0;
495 }
496
497 static int
498 get_back_bo(struct dri2_egl_surface *dri2_surf, unsigned int format)
499 {
500 struct dri2_egl_display *dri2_dpy =
501 dri2_egl_display(dri2_surf->base.Resource.Display);
502 int fourcc, pitch;
503 int offset = 0, fd;
504
505 if (dri2_surf->dri_image_back)
506 return 0;
507
508 if (dri2_surf->base.Type == EGL_WINDOW_BIT) {
509 if (!dri2_surf->buffer) {
510 _eglLog(_EGL_WARNING, "Could not get native buffer");
511 return -1;
512 }
513
514 fd = get_native_buffer_fd(dri2_surf->buffer);
515 if (fd < 0) {
516 _eglLog(_EGL_WARNING, "Could not get native buffer FD");
517 return -1;
518 }
519
520 fourcc = get_fourcc(dri2_surf->buffer->format);
521
522 pitch = dri2_surf->buffer->stride *
523 get_format_bpp(dri2_surf->buffer->format);
524
525 if (fourcc == -1 || pitch == 0) {
526 _eglLog(_EGL_WARNING, "Invalid buffer fourcc(%x) or pitch(%d)",
527 fourcc, pitch);
528 return -1;
529 }
530
531 dri2_surf->dri_image_back =
532 dri2_dpy->image->createImageFromFds(dri2_dpy->dri_screen,
533 dri2_surf->base.Width,
534 dri2_surf->base.Height,
535 fourcc,
536 &fd,
537 1,
538 &pitch,
539 &offset,
540 dri2_surf);
541 if (!dri2_surf->dri_image_back) {
542 _eglLog(_EGL_WARNING, "failed to create DRI image from FD");
543 return -1;
544 }
545 } else if (dri2_surf->base.Type == EGL_PBUFFER_BIT) {
546 /* The EGL 1.5 spec states that pbuffers are single-buffered. Specifically,
547 * the spec states that they have a back buffer but no front buffer, in
548 * contrast to pixmaps, which have a front buffer but no back buffer.
549 *
550 * Single-buffered surfaces with no front buffer confuse Mesa; so we deviate
551 * from the spec, following the precedent of Mesa's EGL X11 platform. The
552 * X11 platform correctly assigns pbuffers to single-buffered configs, but
553 * assigns the pbuffer a front buffer instead of a back buffer.
554 *
555 * Pbuffers in the X11 platform mostly work today, so let's just copy its
556 * behavior instead of trying to fix (and hence potentially breaking) the
557 * world.
558 */
559 _eglLog(_EGL_DEBUG, "DRI driver requested unsupported back buffer for pbuffer surface");
560 }
561
562 return 0;
563 }
564
565 /* Some drivers will pass multiple bits in buffer_mask.
566 * For such case, will go through all the bits, and
567 * will not return error when unsupported buffer is requested, only
568 * return error when the allocation for supported buffer failed.
569 */
570 static int
571 droid_image_get_buffers(__DRIdrawable *driDrawable,
572 unsigned int format,
573 uint32_t *stamp,
574 void *loaderPrivate,
575 uint32_t buffer_mask,
576 struct __DRIimageList *images)
577 {
578 struct dri2_egl_surface *dri2_surf = loaderPrivate;
579
580 images->image_mask = 0;
581 images->front = NULL;
582 images->back = NULL;
583
584 if (update_buffers(dri2_surf) < 0)
585 return 0;
586
587 if (buffer_mask & __DRI_IMAGE_BUFFER_FRONT) {
588 if (get_front_bo(dri2_surf, format) < 0)
589 return 0;
590
591 if (dri2_surf->dri_image_front) {
592 images->front = dri2_surf->dri_image_front;
593 images->image_mask |= __DRI_IMAGE_BUFFER_FRONT;
594 }
595 }
596
597 if (buffer_mask & __DRI_IMAGE_BUFFER_BACK) {
598 if (get_back_bo(dri2_surf, format) < 0)
599 return 0;
600
601 if (dri2_surf->dri_image_back) {
602 images->back = dri2_surf->dri_image_back;
603 images->image_mask |= __DRI_IMAGE_BUFFER_BACK;
604 }
605 }
606
607 return 1;
608 }
609
610 static EGLint
611 droid_query_buffer_age(_EGLDriver *drv,
612 _EGLDisplay *disp, _EGLSurface *surface)
613 {
614 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(surface);
615
616 if (update_buffers(dri2_surf) < 0) {
617 _eglError(EGL_BAD_ALLOC, "droid_query_buffer_age");
618 return 0;
619 }
620
621 return dri2_surf->back->age;
622 }
623
624 static EGLBoolean
625 droid_swap_buffers(_EGLDriver *drv, _EGLDisplay *disp, _EGLSurface *draw)
626 {
627 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
628 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(draw);
629
630 if (dri2_surf->base.Type != EGL_WINDOW_BIT)
631 return EGL_TRUE;
632
633 for (int i = 0; i < ARRAY_SIZE(dri2_surf->color_buffers); i++) {
634 if (dri2_surf->color_buffers[i].age > 0)
635 dri2_surf->color_buffers[i].age++;
636 }
637
638 /* Make sure we have a back buffer in case we're swapping without
639 * ever rendering. */
640 if (get_back_bo(dri2_surf, 0) < 0) {
641 _eglError(EGL_BAD_ALLOC, "dri2_swap_buffers");
642 return EGL_FALSE;
643 }
644
645 dri2_surf->back->age = 1;
646
647 dri2_flush_drawable_for_swapbuffers(disp, draw);
648
649 if (dri2_surf->buffer)
650 droid_window_enqueue_buffer(disp, dri2_surf);
651
652 dri2_dpy->flush->invalidate(dri2_surf->dri_drawable);
653
654 return EGL_TRUE;
655 }
656
657 static _EGLImage *
658 droid_create_image_from_prime_fd_yuv(_EGLDisplay *disp, _EGLContext *ctx,
659 struct ANativeWindowBuffer *buf, int fd)
660 {
661 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
662 struct android_ycbcr ycbcr;
663 size_t offsets[3];
664 size_t pitches[3];
665 int is_ycrcb;
666 int fourcc;
667 int ret;
668
669 if (!dri2_dpy->gralloc->lock_ycbcr) {
670 _eglLog(_EGL_WARNING, "Gralloc does not support lock_ycbcr");
671 return NULL;
672 }
673
674 memset(&ycbcr, 0, sizeof(ycbcr));
675 ret = dri2_dpy->gralloc->lock_ycbcr(dri2_dpy->gralloc, buf->handle,
676 0, 0, 0, 0, 0, &ycbcr);
677 if (ret) {
678 _eglLog(_EGL_WARNING, "gralloc->lock_ycbcr failed: %d", ret);
679 return NULL;
680 }
681 dri2_dpy->gralloc->unlock(dri2_dpy->gralloc, buf->handle);
682
683 /* When lock_ycbcr's usage argument contains no SW_READ/WRITE flags
684 * it will return the .y/.cb/.cr pointers based on a NULL pointer,
685 * so they can be interpreted as offsets. */
686 offsets[0] = (size_t)ycbcr.y;
687 /* We assume here that all the planes are located in one DMA-buf. */
688 is_ycrcb = (size_t)ycbcr.cr < (size_t)ycbcr.cb;
689 if (is_ycrcb) {
690 offsets[1] = (size_t)ycbcr.cr;
691 offsets[2] = (size_t)ycbcr.cb;
692 } else {
693 offsets[1] = (size_t)ycbcr.cb;
694 offsets[2] = (size_t)ycbcr.cr;
695 }
696
697 /* .ystride is the line length (in bytes) of the Y plane,
698 * .cstride is the line length (in bytes) of any of the remaining
699 * Cb/Cr/CbCr planes, assumed to be the same for Cb and Cr for fully
700 * planar formats. */
701 pitches[0] = ycbcr.ystride;
702 pitches[1] = pitches[2] = ycbcr.cstride;
703
704 /* .chroma_step is the byte distance between the same chroma channel
705 * values of subsequent pixels, assumed to be the same for Cb and Cr. */
706 fourcc = get_fourcc_yuv(buf->format, is_ycrcb, ycbcr.chroma_step);
707 if (fourcc == -1) {
708 _eglLog(_EGL_WARNING, "unsupported YUV format, native = %x, is_ycrcb = %d, chroma_step = %d",
709 buf->format, is_ycrcb, ycbcr.chroma_step);
710 return NULL;
711 }
712
713 if (ycbcr.chroma_step == 2) {
714 /* Semi-planar Y + CbCr or Y + CbCr format. */
715 const EGLint attr_list_2plane[] = {
716 EGL_WIDTH, buf->width,
717 EGL_HEIGHT, buf->height,
718 EGL_LINUX_DRM_FOURCC_EXT, fourcc,
719 EGL_DMA_BUF_PLANE0_FD_EXT, fd,
720 EGL_DMA_BUF_PLANE0_PITCH_EXT, pitches[0],
721 EGL_DMA_BUF_PLANE0_OFFSET_EXT, offsets[0],
722 EGL_DMA_BUF_PLANE1_FD_EXT, fd,
723 EGL_DMA_BUF_PLANE1_PITCH_EXT, pitches[1],
724 EGL_DMA_BUF_PLANE1_OFFSET_EXT, offsets[1],
725 EGL_NONE, 0
726 };
727
728 return dri2_create_image_dma_buf(disp, ctx, NULL, attr_list_2plane);
729 } else {
730 /* Fully planar Y + Cb + Cr or Y + Cr + Cb format. */
731 const EGLint attr_list_3plane[] = {
732 EGL_WIDTH, buf->width,
733 EGL_HEIGHT, buf->height,
734 EGL_LINUX_DRM_FOURCC_EXT, fourcc,
735 EGL_DMA_BUF_PLANE0_FD_EXT, fd,
736 EGL_DMA_BUF_PLANE0_PITCH_EXT, pitches[0],
737 EGL_DMA_BUF_PLANE0_OFFSET_EXT, offsets[0],
738 EGL_DMA_BUF_PLANE1_FD_EXT, fd,
739 EGL_DMA_BUF_PLANE1_PITCH_EXT, pitches[1],
740 EGL_DMA_BUF_PLANE1_OFFSET_EXT, offsets[1],
741 EGL_DMA_BUF_PLANE2_FD_EXT, fd,
742 EGL_DMA_BUF_PLANE2_PITCH_EXT, pitches[2],
743 EGL_DMA_BUF_PLANE2_OFFSET_EXT, offsets[2],
744 EGL_NONE, 0
745 };
746
747 return dri2_create_image_dma_buf(disp, ctx, NULL, attr_list_3plane);
748 }
749 }
750
751 static _EGLImage *
752 droid_create_image_from_prime_fd(_EGLDisplay *disp, _EGLContext *ctx,
753 struct ANativeWindowBuffer *buf, int fd)
754 {
755 unsigned int pitch;
756
757 if (is_yuv(buf->format))
758 return droid_create_image_from_prime_fd_yuv(disp, ctx, buf, fd);
759
760 const int fourcc = get_fourcc(buf->format);
761 if (fourcc == -1) {
762 _eglError(EGL_BAD_PARAMETER, "eglCreateEGLImageKHR");
763 return NULL;
764 }
765
766 pitch = buf->stride * get_format_bpp(buf->format);
767 if (pitch == 0) {
768 _eglError(EGL_BAD_PARAMETER, "eglCreateEGLImageKHR");
769 return NULL;
770 }
771
772 const EGLint attr_list[] = {
773 EGL_WIDTH, buf->width,
774 EGL_HEIGHT, buf->height,
775 EGL_LINUX_DRM_FOURCC_EXT, fourcc,
776 EGL_DMA_BUF_PLANE0_FD_EXT, fd,
777 EGL_DMA_BUF_PLANE0_PITCH_EXT, pitch,
778 EGL_DMA_BUF_PLANE0_OFFSET_EXT, 0,
779 EGL_NONE, 0
780 };
781
782 return dri2_create_image_dma_buf(disp, ctx, NULL, attr_list);
783 }
784
785 static _EGLImage *
786 droid_create_image_from_name(_EGLDisplay *disp, _EGLContext *ctx,
787 struct ANativeWindowBuffer *buf)
788 {
789 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
790 struct dri2_egl_image *dri2_img;
791 int name;
792 int format;
793
794 name = get_native_buffer_name(buf);
795 if (!name) {
796 _eglError(EGL_BAD_PARAMETER, "eglCreateEGLImageKHR");
797 return NULL;
798 }
799
800 format = get_format(buf->format);
801 if (format == -1)
802 return NULL;
803
804 dri2_img = calloc(1, sizeof(*dri2_img));
805 if (!dri2_img) {
806 _eglError(EGL_BAD_ALLOC, "droid_create_image_mesa_drm");
807 return NULL;
808 }
809
810 if (!_eglInitImage(&dri2_img->base, disp)) {
811 free(dri2_img);
812 return NULL;
813 }
814
815 dri2_img->dri_image =
816 dri2_dpy->image->createImageFromName(dri2_dpy->dri_screen,
817 buf->width,
818 buf->height,
819 format,
820 name,
821 buf->stride,
822 dri2_img);
823 if (!dri2_img->dri_image) {
824 free(dri2_img);
825 _eglError(EGL_BAD_ALLOC, "droid_create_image_mesa_drm");
826 return NULL;
827 }
828
829 return &dri2_img->base;
830 }
831
832 static EGLBoolean
833 droid_query_surface(_EGLDriver *drv, _EGLDisplay *dpy, _EGLSurface *surf,
834 EGLint attribute, EGLint *value)
835 {
836 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(surf);
837 switch (attribute) {
838 case EGL_WIDTH:
839 if (dri2_surf->base.Type == EGL_WINDOW_BIT && dri2_surf->window) {
840 dri2_surf->window->query(dri2_surf->window,
841 NATIVE_WINDOW_DEFAULT_WIDTH, value);
842 return EGL_TRUE;
843 }
844 break;
845 case EGL_HEIGHT:
846 if (dri2_surf->base.Type == EGL_WINDOW_BIT && dri2_surf->window) {
847 dri2_surf->window->query(dri2_surf->window,
848 NATIVE_WINDOW_DEFAULT_HEIGHT, value);
849 return EGL_TRUE;
850 }
851 break;
852 default:
853 break;
854 }
855 return _eglQuerySurface(drv, dpy, surf, attribute, value);
856 }
857
858 static _EGLImage *
859 dri2_create_image_android_native_buffer(_EGLDisplay *disp,
860 _EGLContext *ctx,
861 struct ANativeWindowBuffer *buf)
862 {
863 int fd;
864
865 if (ctx != NULL) {
866 /* From the EGL_ANDROID_image_native_buffer spec:
867 *
868 * * If <target> is EGL_NATIVE_BUFFER_ANDROID and <ctx> is not
869 * EGL_NO_CONTEXT, the error EGL_BAD_CONTEXT is generated.
870 */
871 _eglError(EGL_BAD_CONTEXT, "eglCreateEGLImageKHR: for "
872 "EGL_NATIVE_BUFFER_ANDROID, the context must be "
873 "EGL_NO_CONTEXT");
874 return NULL;
875 }
876
877 if (!buf || buf->common.magic != ANDROID_NATIVE_BUFFER_MAGIC ||
878 buf->common.version != sizeof(*buf)) {
879 _eglError(EGL_BAD_PARAMETER, "eglCreateEGLImageKHR");
880 return NULL;
881 }
882
883 fd = get_native_buffer_fd(buf);
884 if (fd >= 0)
885 return droid_create_image_from_prime_fd(disp, ctx, buf, fd);
886
887 return droid_create_image_from_name(disp, ctx, buf);
888 }
889
890 static _EGLImage *
891 droid_create_image_khr(_EGLDriver *drv, _EGLDisplay *disp,
892 _EGLContext *ctx, EGLenum target,
893 EGLClientBuffer buffer, const EGLint *attr_list)
894 {
895 switch (target) {
896 case EGL_NATIVE_BUFFER_ANDROID:
897 return dri2_create_image_android_native_buffer(disp, ctx,
898 (struct ANativeWindowBuffer *) buffer);
899 default:
900 return dri2_create_image_khr(drv, disp, ctx, target, buffer, attr_list);
901 }
902 }
903
904 static void
905 droid_flush_front_buffer(__DRIdrawable * driDrawable, void *loaderPrivate)
906 {
907 }
908
909 static int
910 droid_get_buffers_parse_attachments(struct dri2_egl_surface *dri2_surf,
911 unsigned int *attachments, int count)
912 {
913 int num_buffers = 0, i;
914
915 /* fill dri2_surf->buffers */
916 for (i = 0; i < count * 2; i += 2) {
917 __DRIbuffer *buf, *local;
918
919 assert(num_buffers < ARRAY_SIZE(dri2_surf->buffers));
920 buf = &dri2_surf->buffers[num_buffers];
921
922 switch (attachments[i]) {
923 case __DRI_BUFFER_BACK_LEFT:
924 if (dri2_surf->base.Type == EGL_WINDOW_BIT) {
925 buf->attachment = attachments[i];
926 buf->name = get_native_buffer_name(dri2_surf->buffer);
927 buf->cpp = get_format_bpp(dri2_surf->buffer->format);
928 buf->pitch = dri2_surf->buffer->stride * buf->cpp;
929 buf->flags = 0;
930
931 if (buf->name)
932 num_buffers++;
933
934 break;
935 }
936 /* fall through for pbuffers */
937 case __DRI_BUFFER_DEPTH:
938 case __DRI_BUFFER_STENCIL:
939 case __DRI_BUFFER_ACCUM:
940 case __DRI_BUFFER_DEPTH_STENCIL:
941 case __DRI_BUFFER_HIZ:
942 local = droid_alloc_local_buffer(dri2_surf,
943 attachments[i], attachments[i + 1]);
944
945 if (local) {
946 *buf = *local;
947 num_buffers++;
948 }
949 break;
950 case __DRI_BUFFER_FRONT_LEFT:
951 case __DRI_BUFFER_FRONT_RIGHT:
952 case __DRI_BUFFER_FAKE_FRONT_LEFT:
953 case __DRI_BUFFER_FAKE_FRONT_RIGHT:
954 case __DRI_BUFFER_BACK_RIGHT:
955 default:
956 /* no front or right buffers */
957 break;
958 }
959 }
960
961 return num_buffers;
962 }
963
964 static __DRIbuffer *
965 droid_get_buffers_with_format(__DRIdrawable * driDrawable,
966 int *width, int *height,
967 unsigned int *attachments, int count,
968 int *out_count, void *loaderPrivate)
969 {
970 struct dri2_egl_surface *dri2_surf = loaderPrivate;
971
972 if (update_buffers(dri2_surf) < 0)
973 return NULL;
974
975 dri2_surf->buffer_count =
976 droid_get_buffers_parse_attachments(dri2_surf, attachments, count);
977
978 if (width)
979 *width = dri2_surf->base.Width;
980 if (height)
981 *height = dri2_surf->base.Height;
982
983 *out_count = dri2_surf->buffer_count;
984
985 return dri2_surf->buffers;
986 }
987
988 static EGLBoolean
989 droid_add_configs_for_visuals(_EGLDriver *drv, _EGLDisplay *dpy)
990 {
991 struct dri2_egl_display *dri2_dpy = dri2_egl_display(dpy);
992 static const struct {
993 int format;
994 unsigned int rgba_masks[4];
995 } visuals[] = {
996 { HAL_PIXEL_FORMAT_RGBA_8888, { 0xff, 0xff00, 0xff0000, 0xff000000 } },
997 { HAL_PIXEL_FORMAT_RGBX_8888, { 0xff, 0xff00, 0xff0000, 0x0 } },
998 { HAL_PIXEL_FORMAT_RGB_565, { 0xf800, 0x7e0, 0x1f, 0x0 } },
999 { HAL_PIXEL_FORMAT_BGRA_8888, { 0xff0000, 0xff00, 0xff, 0xff000000 } },
1000 };
1001 EGLint config_attrs[] = {
1002 EGL_NATIVE_VISUAL_ID, 0,
1003 EGL_NATIVE_VISUAL_TYPE, 0,
1004 EGL_FRAMEBUFFER_TARGET_ANDROID, EGL_TRUE,
1005 EGL_RECORDABLE_ANDROID, EGL_TRUE,
1006 EGL_NONE
1007 };
1008 unsigned int format_count[ARRAY_SIZE(visuals)] = { 0 };
1009 int count, i, j;
1010
1011 count = 0;
1012 for (i = 0; dri2_dpy->driver_configs[i]; i++) {
1013 const EGLint surface_type = EGL_WINDOW_BIT | EGL_PBUFFER_BIT;
1014 struct dri2_egl_config *dri2_conf;
1015
1016 for (j = 0; j < ARRAY_SIZE(visuals); j++) {
1017 config_attrs[1] = visuals[j].format;
1018 config_attrs[3] = visuals[j].format;
1019
1020 dri2_conf = dri2_add_config(dpy, dri2_dpy->driver_configs[i],
1021 count + 1, surface_type, config_attrs, visuals[j].rgba_masks);
1022 if (dri2_conf) {
1023 count++;
1024 format_count[j]++;
1025 }
1026 }
1027 }
1028
1029 for (i = 0; i < ARRAY_SIZE(format_count); i++) {
1030 if (!format_count[i]) {
1031 _eglLog(_EGL_DEBUG, "No DRI config supports native format 0x%x",
1032 visuals[i].format);
1033 }
1034 }
1035
1036 return (count != 0);
1037 }
1038
1039 static int
1040 droid_open_device(struct dri2_egl_display *dri2_dpy)
1041 {
1042 int fd = -1, err = -EINVAL;
1043
1044 if (dri2_dpy->gralloc->perform)
1045 err = dri2_dpy->gralloc->perform(dri2_dpy->gralloc,
1046 GRALLOC_MODULE_PERFORM_GET_DRM_FD,
1047 &fd);
1048 if (err || fd < 0) {
1049 _eglLog(_EGL_WARNING, "fail to get drm fd");
1050 fd = -1;
1051 }
1052
1053 return (fd >= 0) ? fcntl(fd, F_DUPFD_CLOEXEC, 3) : -1;
1054 }
1055
1056 /* support versions < JellyBean */
1057 #ifndef ALOGW
1058 #define ALOGW LOGW
1059 #endif
1060 #ifndef ALOGD
1061 #define ALOGD LOGD
1062 #endif
1063 #ifndef ALOGI
1064 #define ALOGI LOGI
1065 #endif
1066
1067 static void
1068 droid_log(EGLint level, const char *msg)
1069 {
1070 switch (level) {
1071 case _EGL_DEBUG:
1072 ALOGD("%s", msg);
1073 break;
1074 case _EGL_INFO:
1075 ALOGI("%s", msg);
1076 break;
1077 case _EGL_WARNING:
1078 ALOGW("%s", msg);
1079 break;
1080 case _EGL_FATAL:
1081 LOG_FATAL("%s", msg);
1082 break;
1083 default:
1084 break;
1085 }
1086 }
1087
1088 static struct dri2_egl_display_vtbl droid_display_vtbl = {
1089 .authenticate = NULL,
1090 .create_window_surface = droid_create_window_surface,
1091 .create_pixmap_surface = dri2_fallback_create_pixmap_surface,
1092 .create_pbuffer_surface = droid_create_pbuffer_surface,
1093 .destroy_surface = droid_destroy_surface,
1094 .create_image = droid_create_image_khr,
1095 .swap_interval = dri2_fallback_swap_interval,
1096 .swap_buffers = droid_swap_buffers,
1097 .swap_buffers_with_damage = dri2_fallback_swap_buffers_with_damage,
1098 .swap_buffers_region = dri2_fallback_swap_buffers_region,
1099 .post_sub_buffer = dri2_fallback_post_sub_buffer,
1100 .copy_buffers = dri2_fallback_copy_buffers,
1101 .query_buffer_age = droid_query_buffer_age,
1102 .query_surface = droid_query_surface,
1103 .create_wayland_buffer_from_image = dri2_fallback_create_wayland_buffer_from_image,
1104 .get_sync_values = dri2_fallback_get_sync_values,
1105 .get_dri_drawable = dri2_surface_get_dri_drawable,
1106 };
1107
1108 static const __DRIdri2LoaderExtension droid_dri2_loader_extension = {
1109 .base = { __DRI_DRI2_LOADER, 3 },
1110
1111 .getBuffers = NULL,
1112 .flushFrontBuffer = droid_flush_front_buffer,
1113 .getBuffersWithFormat = droid_get_buffers_with_format,
1114 };
1115
1116 static const __DRIimageLoaderExtension droid_image_loader_extension = {
1117 .base = { __DRI_IMAGE_LOADER, 1 },
1118
1119 .getBuffers = droid_image_get_buffers,
1120 .flushFrontBuffer = droid_flush_front_buffer,
1121 };
1122
1123 static const __DRIextension *droid_dri2_loader_extensions[] = {
1124 &droid_dri2_loader_extension.base,
1125 &image_lookup_extension.base,
1126 &use_invalidate.base,
1127 NULL,
1128 };
1129
1130 static const __DRIextension *droid_image_loader_extensions[] = {
1131 &droid_image_loader_extension.base,
1132 &image_lookup_extension.base,
1133 &use_invalidate.base,
1134 NULL,
1135 };
1136
1137 EGLBoolean
1138 dri2_initialize_android(_EGLDriver *drv, _EGLDisplay *dpy)
1139 {
1140 struct dri2_egl_display *dri2_dpy;
1141 const char *err;
1142 int ret;
1143
1144 _eglSetLogProc(droid_log);
1145
1146 loader_set_logger(_eglLog);
1147
1148 dri2_dpy = calloc(1, sizeof(*dri2_dpy));
1149 if (!dri2_dpy)
1150 return _eglError(EGL_BAD_ALLOC, "eglInitialize");
1151
1152 ret = hw_get_module(GRALLOC_HARDWARE_MODULE_ID,
1153 (const hw_module_t **)&dri2_dpy->gralloc);
1154 if (ret) {
1155 err = "DRI2: failed to get gralloc module";
1156 goto cleanup_display;
1157 }
1158
1159 dpy->DriverData = (void *) dri2_dpy;
1160
1161 dri2_dpy->fd = droid_open_device(dri2_dpy);
1162 if (dri2_dpy->fd < 0) {
1163 err = "DRI2: failed to open device";
1164 goto cleanup_display;
1165 }
1166
1167 dri2_dpy->driver_name = loader_get_driver_for_fd(dri2_dpy->fd);
1168 if (dri2_dpy->driver_name == NULL) {
1169 err = "DRI2: failed to get driver name";
1170 goto cleanup_device;
1171 }
1172
1173 if (!dri2_load_driver(dpy)) {
1174 err = "DRI2: failed to load driver";
1175 goto cleanup_driver_name;
1176 }
1177
1178 dri2_dpy->is_render_node = drmGetNodeTypeFromFd(dri2_dpy->fd) == DRM_NODE_RENDER;
1179
1180 /* render nodes cannot use Gem names, and thus do not support
1181 * the __DRI_DRI2_LOADER extension */
1182 if (!dri2_dpy->is_render_node)
1183 dri2_dpy->loader_extensions = droid_dri2_loader_extensions;
1184 else
1185 dri2_dpy->loader_extensions = droid_image_loader_extensions;
1186
1187 if (!dri2_create_screen(dpy)) {
1188 err = "DRI2: failed to create screen";
1189 goto cleanup_driver;
1190 }
1191
1192 if (!droid_add_configs_for_visuals(drv, dpy)) {
1193 err = "DRI2: failed to add configs";
1194 goto cleanup_screen;
1195 }
1196
1197 dpy->Extensions.ANDROID_framebuffer_target = EGL_TRUE;
1198 dpy->Extensions.ANDROID_image_native_buffer = EGL_TRUE;
1199 dpy->Extensions.ANDROID_recordable = EGL_TRUE;
1200 dpy->Extensions.EXT_buffer_age = EGL_TRUE;
1201
1202 /* Fill vtbl last to prevent accidentally calling virtual function during
1203 * initialization.
1204 */
1205 dri2_dpy->vtbl = &droid_display_vtbl;
1206
1207 return EGL_TRUE;
1208
1209 cleanup_screen:
1210 dri2_dpy->core->destroyScreen(dri2_dpy->dri_screen);
1211 cleanup_driver:
1212 dlclose(dri2_dpy->driver);
1213 cleanup_driver_name:
1214 free(dri2_dpy->driver_name);
1215 cleanup_device:
1216 close(dri2_dpy->fd);
1217 cleanup_display:
1218 free(dri2_dpy);
1219 dpy->DriverData = NULL;
1220
1221 return _eglError(EGL_NOT_INITIALIZED, err);
1222 }