egl_dri2: Log both driver and core extensions
[mesa.git] / src / egl / drivers / dri2 / egl_dri2.c
1 /*
2 * Copyright © 2010 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
19 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
20 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 * DEALINGS IN THE SOFTWARE.
23 *
24 * Authors:
25 * Kristian Høgsberg <krh@bitplanet.net>
26 */
27
28 #include <stdlib.h>
29 #include <string.h>
30 #include <stdio.h>
31 #include <limits.h>
32 #include <dlfcn.h>
33 #include <fcntl.h>
34 #include <errno.h>
35 #include <unistd.h>
36 #include <xf86drm.h>
37 #include <GL/gl.h>
38 #include <GL/internal/dri_interface.h>
39 #include <xcb/xcb.h>
40 #include <xcb/dri2.h>
41 #include <xcb/xfixes.h>
42 #include <X11/Xlib-xcb.h>
43
44 #include <glapi/glapi.h>
45 #include "eglconfigutil.h"
46 #include "eglconfig.h"
47 #include "eglcontext.h"
48 #include "egldisplay.h"
49 #include "egldriver.h"
50 #include "eglcurrent.h"
51 #include "egllog.h"
52 #include "eglsurface.h"
53
54 struct dri2_egl_driver
55 {
56 _EGLDriver base;
57 };
58
59 struct dri2_egl_display
60 {
61 xcb_connection_t *conn;
62 int dri2_major;
63 int dri2_minor;
64 __DRIscreen *dri_screen;
65 void *driver;
66 __DRIcoreExtension *core;
67 __DRIdri2Extension *dri2;
68 __DRI2flushExtension *flush;
69 int fd;
70
71 __DRIdri2LoaderExtension loader_extension;
72 const __DRIextension *extensions[2];
73 };
74
75 struct dri2_egl_context
76 {
77 _EGLContext base;
78 __DRIcontext *dri_context;
79 };
80
81 struct dri2_egl_surface
82 {
83 _EGLSurface base;
84 __DRIdrawable *dri_drawable;
85 xcb_drawable_t drawable;
86 __DRIbuffer buffers[5];
87 int buffer_count;
88 xcb_xfixes_region_t region;
89 int have_back;
90 int have_fake_front;
91 int swap_interval;
92 };
93
94 struct dri2_egl_config
95 {
96 _EGLConfig base;
97 const __DRIconfig *dri_config;
98 };
99
100 /* standard typecasts */
101 _EGL_DRIVER_STANDARD_TYPECASTS(dri2_egl)
102
103 EGLint dri2_to_egl_attribute_map[] = {
104 0,
105 EGL_BUFFER_SIZE, /* __DRI_ATTRIB_BUFFER_SIZE */
106 EGL_LEVEL, /* __DRI_ATTRIB_LEVEL */
107 EGL_RED_SIZE, /* __DRI_ATTRIB_RED_SIZE */
108 EGL_GREEN_SIZE, /* __DRI_ATTRIB_GREEN_SIZE */
109 EGL_BLUE_SIZE, /* __DRI_ATTRIB_BLUE_SIZE */
110 0, /* __DRI_ATTRIB_LUMINANCE_SIZE */
111 EGL_ALPHA_SIZE, /* __DRI_ATTRIB_ALPHA_SIZE */
112 0, /* __DRI_ATTRIB_ALPHA_MASK_SIZE */
113 EGL_DEPTH_SIZE, /* __DRI_ATTRIB_DEPTH_SIZE */
114 EGL_STENCIL_SIZE, /* __DRI_ATTRIB_STENCIL_SIZE */
115 0, /* __DRI_ATTRIB_ACCUM_RED_SIZE */
116 0, /* __DRI_ATTRIB_ACCUM_GREEN_SIZE */
117 0, /* __DRI_ATTRIB_ACCUM_BLUE_SIZE */
118 0, /* __DRI_ATTRIB_ACCUM_ALPHA_SIZE */
119 EGL_SAMPLE_BUFFERS, /* __DRI_ATTRIB_SAMPLE_BUFFERS */
120 EGL_SAMPLES, /* __DRI_ATTRIB_SAMPLES */
121 0, /* __DRI_ATTRIB_RENDER_TYPE, */
122 0, /* __DRI_ATTRIB_CONFIG_CAVEAT */
123 0, /* __DRI_ATTRIB_CONFORMANT */
124 0, /* __DRI_ATTRIB_DOUBLE_BUFFER */
125 0, /* __DRI_ATTRIB_STEREO */
126 0, /* __DRI_ATTRIB_AUX_BUFFERS */
127 0, /* __DRI_ATTRIB_TRANSPARENT_TYPE */
128 0, /* __DRI_ATTRIB_TRANSPARENT_INDEX_VALUE */
129 0, /* __DRI_ATTRIB_TRANSPARENT_RED_VALUE */
130 0, /* __DRI_ATTRIB_TRANSPARENT_GREEN_VALUE */
131 0, /* __DRI_ATTRIB_TRANSPARENT_BLUE_VALUE */
132 0, /* __DRI_ATTRIB_TRANSPARENT_ALPHA_VALUE */
133 0, /* __DRI_ATTRIB_FLOAT_MODE */
134 0, /* __DRI_ATTRIB_RED_MASK */
135 0, /* __DRI_ATTRIB_GREEN_MASK */
136 0, /* __DRI_ATTRIB_BLUE_MASK */
137 0, /* __DRI_ATTRIB_ALPHA_MASK */
138 EGL_MAX_PBUFFER_WIDTH, /* __DRI_ATTRIB_MAX_PBUFFER_WIDTH */
139 EGL_MAX_PBUFFER_HEIGHT, /* __DRI_ATTRIB_MAX_PBUFFER_HEIGHT */
140 EGL_MAX_PBUFFER_PIXELS, /* __DRI_ATTRIB_MAX_PBUFFER_PIXELS */
141 0, /* __DRI_ATTRIB_OPTIMAL_PBUFFER_WIDTH */
142 0, /* __DRI_ATTRIB_OPTIMAL_PBUFFER_HEIGHT */
143 0, /* __DRI_ATTRIB_VISUAL_SELECT_GROUP */
144 0, /* __DRI_ATTRIB_SWAP_METHOD */
145 EGL_MAX_SWAP_INTERVAL, /* __DRI_ATTRIB_MAX_SWAP_INTERVAL */
146 EGL_MIN_SWAP_INTERVAL, /* __DRI_ATTRIB_MIN_SWAP_INTERVAL */
147 0, /* __DRI_ATTRIB_BIND_TO_TEXTURE_RGB */
148 0, /* __DRI_ATTRIB_BIND_TO_TEXTURE_RGBA */
149 0, /* __DRI_ATTRIB_BIND_TO_MIPMAP_TEXTURE */
150 0, /* __DRI_ATTRIB_BIND_TO_TEXTURE_TARGETS */
151 0, /* __DRI_ATTRIB_YINVERTED */
152 };
153
154 static void
155 dri2_add_config(_EGLDisplay *disp, const __DRIconfig *dri_config, int id)
156 {
157 struct dri2_egl_config *conf;
158 struct dri2_egl_display *dri2_dpy;
159 unsigned int attrib, value, double_buffer;
160 EGLint key, bind_to_texture_rgb, bind_to_texture_rgba;
161 int i;
162
163 dri2_dpy = disp->DriverData;
164 conf = malloc(sizeof *conf);
165 if (conf == NULL)
166 return;
167
168 conf->dri_config = dri_config;
169 _eglInitConfig(&conf->base, disp, id);
170
171 i = 0;
172 while (dri2_dpy->core->indexConfigAttrib(dri_config, i++, &attrib, &value)) {
173 switch (attrib) {
174 case 0:
175 break;
176
177 case __DRI_ATTRIB_RENDER_TYPE:
178 if (value & __DRI_ATTRIB_RGBA_BIT)
179 value = EGL_RGB_BUFFER;
180 else if (value & __DRI_ATTRIB_LUMINANCE_BIT)
181 value = EGL_LUMINANCE_BUFFER;
182 else
183 /* not valid */;
184 _eglSetConfigKey(&conf->base, EGL_COLOR_BUFFER_TYPE, value);
185 break;
186
187 case __DRI_ATTRIB_CONFIG_CAVEAT:
188 if (value & __DRI_ATTRIB_NON_CONFORMANT_CONFIG)
189 value = EGL_NON_CONFORMANT_CONFIG;
190 else if (value & __DRI_ATTRIB_SLOW_BIT)
191 value = EGL_SLOW_CONFIG;
192 else
193 value = EGL_NONE;
194 _eglSetConfigKey(&conf->base, EGL_CONFIG_CAVEAT, value);
195 break;
196
197 case __DRI_ATTRIB_BIND_TO_TEXTURE_RGB:
198 bind_to_texture_rgb = value;
199 break;
200
201 case __DRI_ATTRIB_BIND_TO_TEXTURE_RGBA:
202 bind_to_texture_rgba = value;
203 break;
204
205 case __DRI_ATTRIB_DOUBLE_BUFFER:
206 double_buffer = value;
207 break;
208
209 default:
210 key = dri2_to_egl_attribute_map[attrib];
211 if (key != 0)
212 _eglSetConfigKey(&conf->base, key, value);
213 break;
214 }
215 }
216
217 /* EGL_SWAP_BEHAVIOR_PRESERVED_BIT */
218
219 if (double_buffer) {
220 /* FIXME: Figure out how to get the visual ID and types */
221 _eglSetConfigKey(&conf->base, EGL_SURFACE_TYPE, EGL_WINDOW_BIT);
222 _eglSetConfigKey(&conf->base, EGL_NATIVE_VISUAL_ID, 0x21);
223 _eglSetConfigKey(&conf->base, EGL_NATIVE_VISUAL_TYPE,
224 XCB_VISUAL_CLASS_TRUE_COLOR);
225 } else {
226 _eglSetConfigKey(&conf->base,
227 EGL_SURFACE_TYPE, EGL_PIXMAP_BIT | EGL_PBUFFER_BIT);
228 _eglSetConfigKey(&conf->base,
229 EGL_BIND_TO_TEXTURE_RGB, bind_to_texture_rgb);
230 _eglSetConfigKey(&conf->base,
231 EGL_BIND_TO_TEXTURE_RGBA, bind_to_texture_rgba);
232 }
233
234 /* EGL_OPENGL_ES_BIT, EGL_OPENVG_BIT, EGL_OPENGL_ES2_BIT */
235 _eglSetConfigKey(&conf->base, EGL_RENDERABLE_TYPE, EGL_OPENGL_BIT);
236 _eglSetConfigKey(&conf->base, EGL_CONFORMANT, EGL_OPENGL_BIT);
237
238 if (!_eglValidateConfig(&conf->base, EGL_FALSE)) {
239 _eglLog(_EGL_DEBUG, "DRI2: failed to validate config %d", id);
240 free(conf);
241 return;
242 }
243
244 _eglAddConfig(disp, &conf->base);
245 }
246
247 /**
248 * Process list of buffer received from the server
249 *
250 * Processes the list of buffers received in a reply from the server to either
251 * \c DRI2GetBuffers or \c DRI2GetBuffersWithFormat.
252 */
253 static void
254 dri2_process_buffers(struct dri2_egl_surface *dri2_surf,
255 xcb_dri2_dri2_buffer_t *buffers, unsigned count)
256 {
257 struct dri2_egl_display *dri2_dpy =
258 dri2_egl_display(dri2_surf->base.Resource.Display);
259 xcb_rectangle_t rectangle;
260 int i;
261
262 dri2_surf->buffer_count = count;
263 dri2_surf->have_fake_front = 0;
264 dri2_surf->have_back = 0;
265
266 /* This assumes the DRI2 buffer attachment tokens matches the
267 * __DRIbuffer tokens. */
268 for (i = 0; i < count; i++) {
269 dri2_surf->buffers[i].attachment = buffers[i].attachment;
270 dri2_surf->buffers[i].name = buffers[i].name;
271 dri2_surf->buffers[i].pitch = buffers[i].pitch;
272 dri2_surf->buffers[i].cpp = buffers[i].cpp;
273 dri2_surf->buffers[i].flags = buffers[i].flags;
274 if (dri2_surf->buffers[i].attachment == __DRI_BUFFER_FAKE_FRONT_LEFT)
275 dri2_surf->have_fake_front = 1;
276 if (dri2_surf->buffers[i].attachment == __DRI_BUFFER_BACK_LEFT)
277 dri2_surf->have_back = 1;
278 }
279
280 if (dri2_surf->region != XCB_NONE)
281 xcb_xfixes_destroy_region(dri2_dpy->conn, dri2_surf->region);
282
283 rectangle.x = 0;
284 rectangle.y = 0;
285 rectangle.width = dri2_surf->base.Width;
286 rectangle.height = dri2_surf->base.Height;
287 dri2_surf->region = xcb_generate_id(dri2_dpy->conn);
288 xcb_xfixes_create_region(dri2_dpy->conn, dri2_surf->region, 1, &rectangle);
289 }
290
291 static __DRIbuffer *
292 dri2_get_buffers(__DRIdrawable * driDrawable,
293 int *width, int *height,
294 unsigned int *attachments, int count,
295 int *out_count, void *loaderPrivate)
296 {
297 struct dri2_egl_surface *dri2_surf = loaderPrivate;
298 struct dri2_egl_display *dri2_dpy =
299 dri2_egl_display(dri2_surf->base.Resource.Display);
300 xcb_dri2_dri2_buffer_t *buffers;
301 xcb_dri2_get_buffers_reply_t *reply;
302 xcb_dri2_get_buffers_cookie_t cookie;
303
304 cookie = xcb_dri2_get_buffers_unchecked (dri2_dpy->conn,
305 dri2_surf->drawable,
306 count, count, attachments);
307 reply = xcb_dri2_get_buffers_reply (dri2_dpy->conn, cookie, NULL);
308 buffers = xcb_dri2_get_buffers_buffers (reply);
309 if (buffers == NULL)
310 return NULL;
311
312 *out_count = reply->count;
313 dri2_surf->base.Width = *width = reply->width;
314 dri2_surf->base.Height = *height = reply->height;
315 dri2_process_buffers(dri2_surf, buffers, *out_count);
316
317 free(reply);
318
319 return dri2_surf->buffers;
320 }
321
322 static void
323 dri2_flush_front_buffer(__DRIdrawable * driDrawable, void *loaderPrivate)
324 {
325 /* FIXME: Does EGL support front buffer rendering at all? */
326
327 #if 0
328 struct dri2_egl_surface *dri2_surf = loaderPrivate;
329
330 dri2WaitGL(dri2_surf);
331 #endif
332 }
333
334 static __DRIbuffer *
335 dri2_get_buffers_with_format(__DRIdrawable * driDrawable,
336 int *width, int *height,
337 unsigned int *attachments, int count,
338 int *out_count, void *loaderPrivate)
339 {
340 struct dri2_egl_surface *dri2_surf = loaderPrivate;
341 struct dri2_egl_display *dri2_dpy =
342 dri2_egl_display(dri2_surf->base.Resource.Display);
343 xcb_dri2_dri2_buffer_t *buffers;
344 xcb_dri2_get_buffers_with_format_reply_t *reply;
345 xcb_dri2_get_buffers_with_format_cookie_t cookie;
346 xcb_dri2_attach_format_t *format_attachments;
347
348 format_attachments = (xcb_dri2_attach_format_t *) attachments;
349 cookie = xcb_dri2_get_buffers_with_format_unchecked (dri2_dpy->conn,
350 dri2_surf->drawable,
351 count, count,
352 format_attachments);
353
354 reply = xcb_dri2_get_buffers_with_format_reply (dri2_dpy->conn,
355 cookie, NULL);
356 if (reply == NULL)
357 return NULL;
358
359 buffers = xcb_dri2_get_buffers_with_format_buffers (reply);
360 dri2_surf->base.Width = *width = reply->width;
361 dri2_surf->base.Height = *height = reply->height;
362 *out_count = reply->count;
363 dri2_process_buffers(dri2_surf, buffers, *out_count);
364
365 free(reply);
366
367 return dri2_surf->buffers;
368 }
369
370 #ifdef GLX_USE_TLS
371 static const char dri_driver_format[] = "%.*s/tls/%.*s_dri.so";
372 #else
373 static const char dri_driver_format[] = "%.*s/%.*s_dri.so";
374 #endif
375
376 static const char dri_driver_path[] = DEFAULT_DRIVER_DIR;
377
378 /**
379 * Called via eglInitialize(), GLX_drv->API.Initialize().
380 */
381 static EGLBoolean
382 dri2_initialize(_EGLDriver *drv, _EGLDisplay *disp,
383 EGLint *major, EGLint *minor)
384 {
385 const __DRIextension **extensions;
386 const __DRIconfig **driver_configs;
387 struct dri2_egl_display *dri2_dpy;
388 char path[PATH_MAX], *search_paths, *p, *next, *end;
389 xcb_xfixes_query_version_reply_t *xfixes_query;
390 xcb_xfixes_query_version_cookie_t xfixes_query_cookie;
391 xcb_dri2_query_version_reply_t *dri2_query;
392 xcb_dri2_query_version_cookie_t dri2_query_cookie;
393 xcb_dri2_connect_reply_t *connect;
394 xcb_dri2_connect_cookie_t connect_cookie;
395 xcb_dri2_authenticate_reply_t *authenticate;
396 xcb_dri2_authenticate_cookie_t authenticate_cookie;
397 xcb_generic_error_t *error;
398 drm_magic_t magic;
399 xcb_screen_iterator_t s;
400 int i;
401
402 dri2_dpy = malloc(sizeof *dri2_dpy);
403 if (!dri2_dpy)
404 return _eglError(EGL_BAD_ALLOC, "eglInitialize");
405
406 disp->DriverData = (void *) dri2_dpy;
407 dri2_dpy->conn = XGetXCBConnection(disp->NativeDisplay);
408 if (!dri2_dpy->conn) {
409 dri2_dpy->conn = xcb_connect(0, 0);
410 if (!dri2_dpy->conn) {
411 _eglLog(_EGL_WARNING, "DRI2: xcb_connect failed");
412 goto cleanup_dpy;
413 }
414 }
415
416 xcb_prefetch_extension_data (dri2_dpy->conn, &xcb_xfixes_id);
417 xcb_prefetch_extension_data (dri2_dpy->conn, &xcb_dri2_id);
418
419 xfixes_query_cookie = xcb_xfixes_query_version(dri2_dpy->conn,
420 XCB_XFIXES_MAJOR_VERSION,
421 XCB_XFIXES_MINOR_VERSION);
422
423 dri2_query_cookie = xcb_dri2_query_version (dri2_dpy->conn,
424 XCB_DRI2_MAJOR_VERSION,
425 XCB_DRI2_MINOR_VERSION);
426
427 s = xcb_setup_roots_iterator(xcb_get_setup(dri2_dpy->conn));
428 connect_cookie = xcb_dri2_connect_unchecked (dri2_dpy->conn,
429 s.data->root,
430 XCB_DRI2_DRIVER_TYPE_DRI);
431
432 xfixes_query =
433 xcb_xfixes_query_version_reply (dri2_dpy->conn,
434 xfixes_query_cookie, &error);
435 if (xfixes_query == NULL ||
436 error != NULL || xfixes_query->major_version < 2) {
437 _eglLog(_EGL_FATAL, "DRI2: failed to query xfixes version");
438 free(error);
439 goto cleanup_conn;
440 }
441 free(xfixes_query);
442
443 dri2_query =
444 xcb_dri2_query_version_reply (dri2_dpy->conn, dri2_query_cookie, &error);
445 if (dri2_query == NULL || error != NULL) {
446 _eglLog(_EGL_FATAL, "DRI2: failed to query version");
447 free(error);
448 goto cleanup_conn;
449 }
450 dri2_dpy->dri2_major = dri2_query->major_version;
451 dri2_dpy->dri2_minor = dri2_query->minor_version;
452 free(dri2_query);
453
454 connect = xcb_dri2_connect_reply (dri2_dpy->conn, connect_cookie, NULL);
455 if (connect == NULL ||
456 connect->driver_name_length + connect->device_name_length == 0) {
457 _eglLog(_EGL_FATAL, "DRI2: failed to authenticate");
458 goto cleanup_connect;
459 }
460
461 search_paths = NULL;
462 if (geteuid() == getuid()) {
463 /* don't allow setuid apps to use LIBGL_DRIVERS_PATH */
464 search_paths = getenv("LIBGL_DRIVERS_PATH");
465 }
466 if (search_paths == NULL)
467 search_paths = DEFAULT_DRIVER_DIR;
468
469 dri2_dpy->driver = NULL;
470 end = search_paths + strlen(search_paths);
471 for (p = search_paths; p < end && dri2_dpy->driver == NULL; p = next + 1) {
472 next = strchr(p, ':');
473 if (next == NULL)
474 next = end;
475
476 snprintf(path, sizeof path,
477 dri_driver_format,
478 (int) (next - p), p,
479 xcb_dri2_connect_driver_name_length (connect),
480 xcb_dri2_connect_driver_name (connect));
481
482 dri2_dpy->driver = dlopen(path, RTLD_NOW | RTLD_GLOBAL);
483 }
484
485 if (dri2_dpy->driver == NULL) {
486 _eglLog(_EGL_FATAL,
487 "DRI2: failed to open any driver (search paths %s)",
488 search_paths);
489 goto cleanup_connect;
490 }
491
492 _eglLog(_EGL_DEBUG, "DRI2: dlopen(%s)", path);
493 extensions = dlsym(dri2_dpy->driver, __DRI_DRIVER_EXTENSIONS);
494 if (extensions == NULL) {
495 _eglLog(_EGL_FATAL,
496 "DRI2: driver exports no extensions (%s)", dlerror());
497 goto cleanup_driver;
498 }
499
500 for (i = 0; extensions[i]; i++) {
501 _eglLog(_EGL_DEBUG, "DRI2: found driver extension `%s'",
502 extensions[i]->name);
503 if (strcmp(extensions[i]->name, __DRI_CORE) == 0)
504 dri2_dpy->core = (__DRIcoreExtension *) extensions[i];
505 if (strcmp(extensions[i]->name, __DRI_DRI2) == 0)
506 dri2_dpy->dri2 = (__DRIdri2Extension *) extensions[i];
507 }
508
509 if (dri2_dpy->core == NULL) {
510 _eglLog(_EGL_FATAL, "DRI2: driver has no core extension");
511 goto cleanup_driver;
512 }
513
514 if (dri2_dpy->dri2 == NULL) {
515 _eglLog(_EGL_FATAL, "DRI2: driver has no dri2 extension");
516 goto cleanup_driver;
517 }
518
519 snprintf(path, sizeof path, "%.*s",
520 xcb_dri2_connect_device_name_length (connect),
521 xcb_dri2_connect_device_name (connect));
522 dri2_dpy->fd = open (path, O_RDWR);
523 if (dri2_dpy->fd == -1) {
524 _eglLog(_EGL_FATAL,
525 "DRI2: could not open %s (%s)", path, strerror(errno));
526 goto cleanup_driver;
527 }
528
529 if (drmGetMagic(dri2_dpy->fd, &magic)) {
530 _eglLog(_EGL_FATAL, "DRI2: failed to get drm magic");
531 goto cleanup_fd;
532 }
533
534 authenticate_cookie = xcb_dri2_authenticate_unchecked (dri2_dpy->conn,
535 s.data->root, magic);
536 authenticate = xcb_dri2_authenticate_reply (dri2_dpy->conn,
537 authenticate_cookie, NULL);
538 if (authenticate == NULL || !authenticate->authenticated) {
539 _eglLog(_EGL_FATAL, "DRI2: failed to authenticate");
540 free(authenticate);
541 goto cleanup_fd;
542 }
543
544 free(authenticate);
545 if (dri2_dpy->dri2_minor >= 1) {
546 dri2_dpy->loader_extension.base.name = __DRI_DRI2_LOADER;
547 dri2_dpy->loader_extension.base.version = 3;
548 dri2_dpy->loader_extension.getBuffers = dri2_get_buffers;
549 dri2_dpy->loader_extension.flushFrontBuffer = dri2_flush_front_buffer;
550 dri2_dpy->loader_extension.getBuffersWithFormat =
551 dri2_get_buffers_with_format;
552 } else {
553 dri2_dpy->loader_extension.base.name = __DRI_DRI2_LOADER;
554 dri2_dpy->loader_extension.base.version = 2;
555 dri2_dpy->loader_extension.getBuffers = dri2_get_buffers;
556 dri2_dpy->loader_extension.flushFrontBuffer = dri2_flush_front_buffer;
557 dri2_dpy->loader_extension.getBuffersWithFormat = NULL;
558 }
559
560 dri2_dpy->extensions[0] = &dri2_dpy->loader_extension.base;
561 dri2_dpy->extensions[1] = NULL;
562
563 dri2_dpy->dri_screen =
564 dri2_dpy->dri2->createNewScreen(0, dri2_dpy->fd, dri2_dpy->extensions,
565 &driver_configs, dri2_dpy);
566
567 if (dri2_dpy->dri_screen == NULL) {
568 _eglLog(_EGL_FATAL, "DRI2: failed to create dri screen");
569 goto cleanup_fd;
570 }
571
572 extensions = dri2_dpy->core->getExtensions(dri2_dpy->dri_screen);
573 for (i = 0; extensions[i]; i++) {
574 _eglLog(_EGL_DEBUG, "DRI2: found core extension `%s'",
575 extensions[i]->name);
576 if ((strcmp(extensions[i]->name, __DRI2_FLUSH) == 0))
577 dri2_dpy->flush = (__DRI2flushExtension *) extensions[i];
578 }
579
580 if (dri2_dpy->flush == NULL) {
581 _eglLog(_EGL_FATAL, "DRI2: driver doesn't support the flush extension");
582 goto cleanup_dri_screen;
583 }
584
585 for (i = 0; driver_configs[i]; i++)
586 dri2_add_config(disp, driver_configs[i], i + 1);
587 if (!disp->NumConfigs) {
588 _eglLog(_EGL_WARNING, "DRI2: failed to create any config");
589 goto cleanup_configs;
590 }
591
592 disp->ClientAPIsMask = EGL_OPENGL_BIT;
593
594 /* we're supporting EGL 1.4 */
595 *major = 1;
596 *minor = 4;
597 free (connect);
598 return EGL_TRUE;
599
600 cleanup_configs:
601 _eglCleanupDisplay(disp);
602 cleanup_dri_screen:
603 dri2_dpy->core->destroyScreen(dri2_dpy->dri_screen);
604 cleanup_fd:
605 close(dri2_dpy->fd);
606 cleanup_driver:
607 dlclose(dri2_dpy->driver);
608 cleanup_connect:
609 free(connect);
610 cleanup_conn:
611 if (disp->NativeDisplay == NULL)
612 xcb_disconnect(dri2_dpy->conn);
613 cleanup_dpy:
614 free(dri2_dpy);
615
616 return EGL_FALSE;
617 }
618
619 /**
620 * Called via eglTerminate(), drv->API.Terminate().
621 */
622 static EGLBoolean
623 dri2_terminate(_EGLDriver *drv, _EGLDisplay *disp)
624 {
625 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
626
627 _eglReleaseDisplayResources(drv, disp);
628 _eglCleanupDisplay(disp);
629
630 dri2_dpy->core->destroyScreen(dri2_dpy->dri_screen);
631 close(dri2_dpy->fd);
632 dlclose(dri2_dpy->driver);
633 if (disp->NativeDisplay == NULL)
634 xcb_disconnect(dri2_dpy->conn);
635 free(dri2_dpy);
636 disp->DriverData = NULL;
637
638 return EGL_TRUE;
639 }
640
641
642 /**
643 * Called via eglCreateContext(), drv->API.CreateContext().
644 */
645 static _EGLContext *
646 dri2_create_context(_EGLDriver *drv, _EGLDisplay *disp, _EGLConfig *conf,
647 _EGLContext *share_list, const EGLint *attrib_list)
648 {
649 struct dri2_egl_context *dri2_ctx;
650 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
651 struct dri2_egl_context *dri2_ctx_shared = dri2_egl_context(share_list);
652 struct dri2_egl_config *dri2_config = dri2_egl_config(conf);
653
654 dri2_ctx = malloc(sizeof *dri2_ctx);
655 if (!dri2_ctx) {
656 _eglError(EGL_BAD_ALLOC, "eglCreateContext");
657 return NULL;
658 }
659
660 if (!_eglInitContext(&dri2_ctx->base, disp, conf, attrib_list))
661 goto cleanup;
662
663 dri2_ctx->dri_context =
664 dri2_dpy->dri2->createNewContext(dri2_dpy->dri_screen,
665 dri2_config->dri_config,
666 dri2_ctx_shared ?
667 dri2_ctx_shared->dri_context : NULL,
668 dri2_ctx);
669
670 if (!dri2_ctx->dri_context)
671 goto cleanup;
672
673 return &dri2_ctx->base;
674
675 cleanup:
676 free(dri2_ctx);
677 return NULL;
678 }
679
680 static EGLBoolean
681 dri2_destroy_surface(_EGLDriver *drv, _EGLDisplay *disp, _EGLSurface *surf)
682 {
683 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
684 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(surf);
685
686 if (_eglIsSurfaceBound(surf))
687 return EGL_TRUE;
688
689 (*dri2_dpy->core->destroyDrawable)(dri2_surf->dri_drawable);
690
691 xcb_dri2_destroy_drawable (dri2_dpy->conn, dri2_surf->drawable);
692
693 if (surf->Type == EGL_PBUFFER_BIT)
694 xcb_free_pixmap (dri2_dpy->conn, dri2_surf->drawable);
695
696 free(surf);
697
698 return EGL_TRUE;
699 }
700
701 /**
702 * Called via eglMakeCurrent(), drv->API.MakeCurrent().
703 */
704 static EGLBoolean
705 dri2_make_current(_EGLDriver *drv, _EGLDisplay *disp, _EGLSurface *dsurf,
706 _EGLSurface *rsurf, _EGLContext *ctx)
707 {
708 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
709 struct dri2_egl_surface *dri2_dsurf = dri2_egl_surface(dsurf);
710 struct dri2_egl_surface *dri2_rsurf = dri2_egl_surface(rsurf);
711 struct dri2_egl_context *dri2_ctx = dri2_egl_context(ctx);
712 __DRIdrawable *ddraw, *rdraw;
713 __DRIcontext *cctx;
714
715 /* bind the new context and return the "orphaned" one */
716 if (!_eglBindContext(&ctx, &dsurf, &rsurf))
717 return EGL_FALSE;
718
719 ddraw = (dri2_dsurf) ? dri2_dsurf->dri_drawable : NULL;
720 rdraw = (dri2_rsurf) ? dri2_rsurf->dri_drawable : NULL;
721 cctx = (dri2_ctx) ? dri2_ctx->dri_context : NULL;
722
723 if ((cctx == NULL && ddraw == NULL && rdraw == NULL) ||
724 dri2_dpy->core->bindContext(cctx, ddraw, rdraw)) {
725 if (dsurf && !_eglIsSurfaceLinked(dsurf))
726 dri2_destroy_surface(drv, disp, dsurf);
727 if (rsurf && rsurf != dsurf && !_eglIsSurfaceLinked(dsurf))
728 dri2_destroy_surface(drv, disp, rsurf);
729 if (ctx != NULL && !_eglIsContextLinked(ctx))
730 dri2_dpy->core->unbindContext(dri2_egl_context(ctx)->dri_context);
731
732 return EGL_TRUE;
733 } else {
734 _eglBindContext(&ctx, &dsurf, &rsurf);
735
736 return EGL_FALSE;
737 }
738 }
739
740 /**
741 * Called via eglCreateWindowSurface(), drv->API.CreateWindowSurface().
742 */
743 static _EGLSurface *
744 dri2_create_surface(_EGLDriver *drv, _EGLDisplay *disp, EGLint type,
745 _EGLConfig *conf, EGLNativeWindowType window,
746 const EGLint *attrib_list)
747 {
748 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
749 struct dri2_egl_config *dri2_conf = dri2_egl_config(conf);
750 struct dri2_egl_surface *dri2_surf;
751 xcb_get_geometry_cookie_t cookie;
752 xcb_get_geometry_reply_t *reply;
753 xcb_screen_iterator_t s;
754 xcb_generic_error_t *error;
755
756 dri2_surf = malloc(sizeof *dri2_surf);
757 if (!dri2_surf) {
758 _eglError(EGL_BAD_ALLOC, "dri2_create_surface");
759 return NULL;
760 }
761
762 if (!_eglInitSurface(&dri2_surf->base, disp, type, conf, attrib_list))
763 goto cleanup_surf;
764
765 dri2_surf->region = XCB_NONE;
766 if (type == EGL_PBUFFER_BIT) {
767 dri2_surf->drawable = xcb_generate_id(dri2_dpy->conn);
768 s = xcb_setup_roots_iterator(xcb_get_setup(dri2_dpy->conn));
769 xcb_create_pixmap(dri2_dpy->conn,
770 _eglGetConfigKey(conf, EGL_BUFFER_SIZE),
771 dri2_surf->drawable, s.data->root,
772 dri2_surf->base.Width, dri2_surf->base.Height);
773 } else {
774 dri2_surf->drawable = window;
775 }
776
777 dri2_surf->dri_drawable =
778 (*dri2_dpy->dri2->createNewDrawable) (dri2_dpy->dri_screen,
779 dri2_conf->dri_config, dri2_surf);
780 if (dri2_surf->dri_drawable == NULL) {
781 _eglError(EGL_BAD_ALLOC, "dri2->createNewDrawable");
782 goto cleanup_pixmap;
783 }
784
785 xcb_dri2_create_drawable (dri2_dpy->conn, dri2_surf->drawable);
786
787 if (type != EGL_PBUFFER_BIT) {
788 cookie = xcb_get_geometry (dri2_dpy->conn, dri2_surf->drawable);
789 reply = xcb_get_geometry_reply (dri2_dpy->conn, cookie, &error);
790 if (reply == NULL || error != NULL) {
791 _eglError(EGL_BAD_ALLOC, "xcb_get_geometry");
792 free(error);
793 goto cleanup_dri_drawable;
794 }
795
796 dri2_surf->base.Width = reply->width;
797 dri2_surf->base.Height = reply->height;
798 free(reply);
799 }
800
801 return &dri2_surf->base;
802
803 cleanup_dri_drawable:
804 dri2_dpy->core->destroyDrawable(dri2_surf->dri_drawable);
805 cleanup_pixmap:
806 if (type == EGL_PBUFFER_BIT)
807 xcb_free_pixmap(dri2_dpy->conn, dri2_surf->drawable);
808 cleanup_surf:
809 free(dri2_surf);
810
811 return NULL;
812 }
813
814 /**
815 * Called via eglCreateWindowSurface(), drv->API.CreateWindowSurface().
816 */
817 static _EGLSurface *
818 dri2_create_window_surface(_EGLDriver *drv, _EGLDisplay *disp,
819 _EGLConfig *conf, EGLNativeWindowType window,
820 const EGLint *attrib_list)
821 {
822 return dri2_create_surface(drv, disp, EGL_WINDOW_BIT, conf,
823 window, attrib_list);
824 }
825
826 static _EGLSurface *
827 dri2_create_pixmap_surface(_EGLDriver *drv, _EGLDisplay *disp,
828 _EGLConfig *conf, EGLNativePixmapType pixmap,
829 const EGLint *attrib_list)
830 {
831 return dri2_create_surface(drv, disp, EGL_PIXMAP_BIT, conf,
832 pixmap, attrib_list);
833 }
834
835 static _EGLSurface *
836 dri2_create_pbuffer_surface(_EGLDriver *drv, _EGLDisplay *disp,
837 _EGLConfig *conf, const EGLint *attrib_list)
838 {
839 return dri2_create_surface(drv, disp, EGL_PBUFFER_BIT, conf,
840 XCB_WINDOW_NONE, attrib_list);
841 }
842
843 static EGLBoolean
844 dri2_swap_buffers(_EGLDriver *drv, _EGLDisplay *disp, _EGLSurface *draw)
845 {
846 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
847 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(draw);
848 xcb_dri2_copy_region_cookie_t cookie;
849
850 (*dri2_dpy->flush->flush)(dri2_surf->dri_drawable);
851
852 #if 0
853 /* FIXME: Add support for dri swapbuffers, that'll give us swap
854 * interval and page flipping (at least for fullscreen windows) as
855 * well as the page flip event. */
856 #if __DRI2_FLUSH_VERSION >= 2
857 if (pdraw->psc->f)
858 (*pdraw->psc->f->flushInvalidate)(pdraw->driDrawable);
859 #endif
860 #endif
861
862 if (!dri2_surf->have_back)
863 return EGL_TRUE;
864
865 cookie = xcb_dri2_copy_region_unchecked(dri2_dpy->conn,
866 dri2_surf->drawable,
867 dri2_surf->region,
868 XCB_DRI2_ATTACHMENT_BUFFER_FRONT_LEFT,
869 XCB_DRI2_ATTACHMENT_BUFFER_BACK_LEFT);
870 free(xcb_dri2_copy_region_reply(dri2_dpy->conn, cookie, NULL));
871
872 return EGL_TRUE;
873 }
874
875 /*
876 * Called from eglGetProcAddress() via drv->API.GetProcAddress().
877 */
878 static _EGLProc
879 dri2_get_proc_address(_EGLDriver *drv, const char *procname)
880 {
881 /* FIXME: Do we need to support lookup of EGL symbols too? */
882
883 return (_EGLProc) _glapi_get_proc_address(procname);
884 }
885
886 static EGLBoolean
887 dri2_wait_client(_EGLDriver *drv, _EGLDisplay *disp, _EGLContext *ctx)
888 {
889 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
890 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(ctx->DrawSurface);
891
892 /* FIXME: If EGL allows frontbuffer rendering for window surfaces,
893 * we need to copy fake to real here.*/
894
895 (*dri2_dpy->flush->flush)(dri2_surf->dri_drawable);
896
897 return EGL_TRUE;
898 }
899
900 static EGLBoolean
901 dri2_wait_native(_EGLDriver *drv, _EGLDisplay *disp, EGLint engine)
902 {
903 if (engine != EGL_CORE_NATIVE_ENGINE)
904 return _eglError(EGL_BAD_PARAMETER, "eglWaitNative");
905 /* glXWaitX(); */
906
907 return EGL_TRUE;
908 }
909
910 static void
911 dri2_unload(_EGLDriver *drv)
912 {
913 struct dri2_egl_driver *dri2_drv = dri2_egl_driver(drv);
914 free(dri2_drv);
915 }
916
917 static EGLBoolean
918 dri2_copy_buffers(_EGLDriver *drv, _EGLDisplay *disp, _EGLSurface *surf,
919 EGLNativePixmapType target)
920 {
921 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
922 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(surf);
923 xcb_gcontext_t gc;
924
925 (*dri2_dpy->flush->flush)(dri2_surf->dri_drawable);
926
927 gc = xcb_generate_id(dri2_dpy->conn);
928 xcb_create_gc(dri2_dpy->conn, gc, target, 0, NULL);
929 xcb_copy_area(dri2_dpy->conn,
930 dri2_surf->drawable,
931 target,
932 gc,
933 0, 0,
934 0, 0,
935 dri2_surf->base.Width,
936 dri2_surf->base.Height);
937 xcb_free_gc(dri2_dpy->conn, gc);
938
939 return EGL_TRUE;
940 }
941
942 /**
943 * This is the main entrypoint into the driver, called by libEGL.
944 * Create a new _EGLDriver object and init its dispatch table.
945 */
946 _EGLDriver *
947 _eglMain(const char *args)
948 {
949 struct dri2_egl_driver *dri2_drv;
950
951 dri2_drv = malloc(sizeof *dri2_drv);
952 if (!dri2_drv)
953 return NULL;
954
955 _eglInitDriverFallbacks(&dri2_drv->base);
956 dri2_drv->base.API.Initialize = dri2_initialize;
957 dri2_drv->base.API.Terminate = dri2_terminate;
958 dri2_drv->base.API.CreateContext = dri2_create_context;
959 dri2_drv->base.API.MakeCurrent = dri2_make_current;
960 dri2_drv->base.API.CreateWindowSurface = dri2_create_window_surface;
961 dri2_drv->base.API.CreatePixmapSurface = dri2_create_pixmap_surface;
962 dri2_drv->base.API.CreatePbufferSurface = dri2_create_pbuffer_surface;
963 dri2_drv->base.API.DestroySurface = dri2_destroy_surface;
964 dri2_drv->base.API.SwapBuffers = dri2_swap_buffers;
965 dri2_drv->base.API.GetProcAddress = dri2_get_proc_address;
966 dri2_drv->base.API.WaitClient = dri2_wait_client;
967 dri2_drv->base.API.WaitNative = dri2_wait_native;
968 dri2_drv->base.API.CopyBuffers = dri2_copy_buffers;
969
970 dri2_drv->base.Name = "DRI2";
971 dri2_drv->base.Unload = dri2_unload;
972
973 return &dri2_drv->base;
974 }