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