Merge branch 'gallium-0.2' of git+ssh://marcheu@git.freedesktop.org/git/nouveau/mesa...
[mesa.git] / src / glx / x11 / dri2_glx.c
1 /*
2 * Copyright © 2008 Red Hat, Inc.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Soft-
6 * ware"), to deal in the Software without restriction, including without
7 * limitation the rights to use, copy, modify, merge, publish, distribute,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, provided that the above copyright
10 * notice(s) and this permission notice appear in all copies of the Soft-
11 * ware and that both the above copyright notice(s) and this permission
12 * notice appear in supporting documentation.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
15 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABIL-
16 * ITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY
17 * RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN
18 * THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSE-
19 * QUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
20 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
21 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFOR-
22 * MANCE OF THIS SOFTWARE.
23 *
24 * Except as contained in this notice, the name of a copyright holder shall
25 * not be used in advertising or otherwise to promote the sale, use or
26 * other dealings in this Software without prior written authorization of
27 * the copyright holder.
28 *
29 * Authors:
30 * Kristian Høgsberg (krh@redhat.com)
31 */
32
33 #ifdef GLX_DIRECT_RENDERING
34
35 #include <X11/Xlib.h>
36 #include <X11/extensions/Xfixes.h>
37 #include <X11/extensions/Xdamage.h>
38 #include "glxclient.h"
39 #include "glcontextmodes.h"
40 #include "xf86dri.h"
41 #include <dlfcn.h>
42 #include <fcntl.h>
43 #include <unistd.h>
44 #include <sys/types.h>
45 #include <sys/mman.h>
46 #include "xf86drm.h"
47 #include "dri2.h"
48 #include "dri_common.h"
49
50 typedef struct __GLXDRIdisplayPrivateRec __GLXDRIdisplayPrivate;
51 typedef struct __GLXDRIcontextPrivateRec __GLXDRIcontextPrivate;
52 typedef struct __GLXDRIdrawablePrivateRec __GLXDRIdrawablePrivate;
53
54 struct __GLXDRIdisplayPrivateRec {
55 __GLXDRIdisplay base;
56
57 /*
58 ** XFree86-DRI version information
59 */
60 int driMajor;
61 int driMinor;
62 int driPatch;
63 };
64
65 struct __GLXDRIcontextPrivateRec {
66 __GLXDRIcontext base;
67 __DRIcontext *driContext;
68 __GLXscreenConfigs *psc;
69 };
70
71 struct __GLXDRIdrawablePrivateRec {
72 __GLXDRIdrawable base;
73 __DRIbuffer buffers[5];
74 int bufferCount;
75 int width, height;
76 };
77
78 static void dri2DestroyContext(__GLXDRIcontext *context,
79 __GLXscreenConfigs *psc, Display *dpy)
80 {
81 __GLXDRIcontextPrivate *pcp = (__GLXDRIcontextPrivate *) context;
82 const __DRIcoreExtension *core = pcp->psc->core;
83
84 (*core->destroyContext)(pcp->driContext);
85
86 Xfree(pcp);
87 }
88
89 static Bool dri2BindContext(__GLXDRIcontext *context,
90 __GLXDRIdrawable *draw, __GLXDRIdrawable *read)
91 {
92 __GLXDRIcontextPrivate *pcp = (__GLXDRIcontextPrivate *) context;
93 const __DRIcoreExtension *core = pcp->psc->core;
94
95 return (*core->bindContext)(pcp->driContext,
96 draw->driDrawable,
97 read->driDrawable);
98 }
99
100 static void dri2UnbindContext(__GLXDRIcontext *context)
101 {
102 __GLXDRIcontextPrivate *pcp = (__GLXDRIcontextPrivate *) context;
103 const __DRIcoreExtension *core = pcp->psc->core;
104
105 (*core->unbindContext)(pcp->driContext);
106 }
107
108 static __GLXDRIcontext *dri2CreateContext(__GLXscreenConfigs *psc,
109 const __GLcontextModes *mode,
110 GLXContext gc,
111 GLXContext shareList, int renderType)
112 {
113 __GLXDRIcontextPrivate *pcp, *pcp_shared;
114 __GLXDRIconfigPrivate *config = (__GLXDRIconfigPrivate *) mode;
115 __DRIcontext *shared = NULL;
116
117 if (shareList) {
118 pcp_shared = (__GLXDRIcontextPrivate *) shareList->driContext;
119 shared = pcp_shared->driContext;
120 }
121
122 pcp = Xmalloc(sizeof *pcp);
123 if (pcp == NULL)
124 return NULL;
125
126 pcp->psc = psc;
127 pcp->driContext =
128 (*psc->dri2->createNewContext)(psc->__driScreen,
129 config->driConfig, shared, pcp);
130 gc->__driContext = pcp->driContext;
131
132 if (pcp->driContext == NULL) {
133 Xfree(pcp);
134 return NULL;
135 }
136
137 pcp->base.destroyContext = dri2DestroyContext;
138 pcp->base.bindContext = dri2BindContext;
139 pcp->base.unbindContext = dri2UnbindContext;
140
141 return &pcp->base;
142 }
143
144 static void dri2DestroyDrawable(__GLXDRIdrawable *pdraw)
145 {
146 const __DRIcoreExtension *core = pdraw->psc->core;
147
148 (*core->destroyDrawable)(pdraw->driDrawable);
149 DRI2DestroyDrawable(pdraw->psc->dpy, pdraw->drawable);
150 Xfree(pdraw);
151 }
152
153 static __GLXDRIdrawable *dri2CreateDrawable(__GLXscreenConfigs *psc,
154 XID xDrawable,
155 GLXDrawable drawable,
156 const __GLcontextModes *modes)
157 {
158 __GLXDRIdrawablePrivate *pdraw;
159 __GLXDRIconfigPrivate *config = (__GLXDRIconfigPrivate *) modes;
160
161 pdraw = Xmalloc(sizeof(*pdraw));
162 if (!pdraw)
163 return NULL;
164
165 pdraw->base.destroyDrawable = dri2DestroyDrawable;
166 pdraw->base.xDrawable = xDrawable;
167 pdraw->base.drawable = drawable;
168 pdraw->base.psc = psc;
169
170 DRI2CreateDrawable(psc->dpy, xDrawable);
171
172 /* Create a new drawable */
173 pdraw->base.driDrawable =
174 (*psc->dri2->createNewDrawable)(psc->__driScreen,
175 config->driConfig, pdraw);
176
177 if (!pdraw->base.driDrawable) {
178 DRI2DestroyDrawable(psc->dpy, drawable);
179 Xfree(pdraw);
180 return NULL;
181 }
182
183 return &pdraw->base;
184 }
185
186 static void dri2CopySubBuffer(__GLXDRIdrawable *pdraw,
187 int x, int y, int width, int height)
188 {
189 XRectangle xrect;
190 XserverRegion region;
191
192 xrect.x = x;
193 xrect.y = y;
194 xrect.width = width;
195 xrect.height = height;
196
197 region = XFixesCreateRegion(pdraw->psc->dpy, &xrect, 1);
198 DRI2CopyRegion(pdraw->psc->dpy, pdraw->drawable, region,
199 DRI2BufferFrontLeft, DRI2BufferBackLeft);
200 XFixesDestroyRegion(pdraw->psc->dpy, region);
201 }
202
203 static void dri2SwapBuffers(__GLXDRIdrawable *pdraw)
204 {
205 __GLXDRIdrawablePrivate *priv = (__GLXDRIdrawablePrivate *) pdraw;
206
207 dri2CopySubBuffer(pdraw, 0, 0, priv->width, priv->height);
208 }
209
210 static void dri2DestroyScreen(__GLXscreenConfigs *psc)
211 {
212 /* Free the direct rendering per screen data */
213 (*psc->core->destroyScreen)(psc->__driScreen);
214 close(psc->fd);
215 psc->__driScreen = NULL;
216 }
217
218 static __DRIbuffer *
219 dri2GetBuffers(__DRIdrawable *driDrawable,
220 int *width, int *height,
221 unsigned int *attachments, int count,
222 int *out_count, void *loaderPrivate)
223 {
224 __GLXDRIdrawablePrivate *pdraw = loaderPrivate;
225 DRI2Buffer *buffers;
226 int i;
227
228 buffers = DRI2GetBuffers(pdraw->base.psc->dpy, pdraw->base.xDrawable,
229 width, height, attachments, count, out_count);
230 if (buffers == NULL)
231 return NULL;
232
233 pdraw->width = *width;
234 pdraw->height = *height;
235
236 /* This assumes the DRI2 buffer attachment tokens matches the
237 * __DRIbuffer tokens. */
238 for (i = 0; i < *out_count; i++) {
239 pdraw->buffers[i].attachment = buffers[i].attachment;
240 pdraw->buffers[i].name = buffers[i].name;
241 pdraw->buffers[i].pitch = buffers[i].pitch;
242 pdraw->buffers[i].cpp = buffers[i].cpp;
243 pdraw->buffers[i].flags = buffers[i].flags;
244 }
245
246 Xfree(buffers);
247
248 return pdraw->buffers;
249 }
250
251 static const __DRIdri2LoaderExtension dri2LoaderExtension = {
252 { __DRI_DRI2_LOADER, __DRI_DRI2_LOADER_VERSION },
253 dri2GetBuffers,
254 };
255
256 static const __DRIextension *loader_extensions[] = {
257 &dri2LoaderExtension.base,
258 &systemTimeExtension.base,
259 NULL
260 };
261
262 static __GLXDRIscreen *dri2CreateScreen(__GLXscreenConfigs *psc, int screen,
263 __GLXdisplayPrivate *priv)
264 {
265 const __DRIconfig **driver_configs;
266 const __DRIextension **extensions;
267 __GLXDRIscreen *psp;
268 char *driverName, *deviceName;
269 drm_magic_t magic;
270 int i;
271
272 psp = Xmalloc(sizeof *psp);
273 if (psp == NULL)
274 return NULL;
275
276 /* Initialize per screen dynamic client GLX extensions */
277 psc->ext_list_first_time = GL_TRUE;
278
279 if (!DRI2Connect(psc->dpy, RootWindow(psc->dpy, screen),
280 &driverName, &deviceName))
281 return NULL;
282
283 psc->driver = driOpenDriver(driverName);
284 if (psc->driver == NULL)
285 goto handle_error;
286
287 extensions = dlsym(psc->driver, __DRI_DRIVER_EXTENSIONS);
288 if (extensions == NULL) {
289 ErrorMessageF("driver exports no extensions (%s)\n", dlerror());
290 goto handle_error;
291 }
292
293 for (i = 0; extensions[i]; i++) {
294 if (strcmp(extensions[i]->name, __DRI_CORE) == 0)
295 psc->core = (__DRIcoreExtension *) extensions[i];
296 if (strcmp(extensions[i]->name, __DRI_DRI2) == 0)
297 psc->dri2 = (__DRIdri2Extension *) extensions[i];
298 }
299
300 if (psc->core == NULL || psc->dri2 == NULL) {
301 ErrorMessageF("core dri or dri2 extension not found\n");
302 goto handle_error;
303 }
304
305 psc->fd = open(deviceName, O_RDWR);
306 if (psc->fd < 0) {
307 ErrorMessageF("failed to open drm device: %s\n", strerror(errno));
308 return NULL;
309 }
310
311 if (drmGetMagic(psc->fd, &magic))
312 return NULL;
313
314 if (!DRI2Authenticate(psc->dpy, RootWindow(psc->dpy, screen), magic))
315 return NULL;
316
317 psc->__driScreen =
318 psc->dri2->createNewScreen(screen, psc->fd,
319 loader_extensions, &driver_configs, psc);
320 if (psc->__driScreen == NULL) {
321 ErrorMessageF("failed to create dri screen\n");
322 return NULL;
323 }
324
325 driBindExtensions(psc, 1);
326
327 psc->configs = driConvertConfigs(psc->core, psc->configs, driver_configs);
328 psc->visuals = driConvertConfigs(psc->core, psc->visuals, driver_configs);
329
330 psp->destroyScreen = dri2DestroyScreen;
331 psp->createContext = dri2CreateContext;
332 psp->createDrawable = dri2CreateDrawable;
333 psp->swapBuffers = dri2SwapBuffers;
334 psp->copySubBuffer = dri2CopySubBuffer;
335
336 Xfree(driverName);
337 Xfree(deviceName);
338
339 return psp;
340
341 handle_error:
342 Xfree(driverName);
343 Xfree(deviceName);
344
345 /* FIXME: clean up here */
346
347 return NULL;
348 }
349
350 /* Called from __glXFreeDisplayPrivate.
351 */
352 static void dri2DestroyDisplay(__GLXDRIdisplay *dpy)
353 {
354 Xfree(dpy);
355 }
356
357 /*
358 * Allocate, initialize and return a __DRIdisplayPrivate object.
359 * This is called from __glXInitialize() when we are given a new
360 * display pointer.
361 */
362 _X_HIDDEN __GLXDRIdisplay *dri2CreateDisplay(Display *dpy)
363 {
364 __GLXDRIdisplayPrivate *pdp;
365 int eventBase, errorBase;
366
367 if (!DRI2QueryExtension(dpy, &eventBase, &errorBase))
368 return NULL;
369
370 pdp = Xmalloc(sizeof *pdp);
371 if (pdp == NULL)
372 return NULL;
373
374 if (!DRI2QueryVersion(dpy, &pdp->driMajor, &pdp->driMinor)) {
375 Xfree(pdp);
376 return NULL;
377 }
378
379 pdp->driPatch = 0;
380
381 pdp->base.destroyDisplay = dri2DestroyDisplay;
382 pdp->base.createScreen = dri2CreateScreen;
383
384 return &pdp->base;
385 }
386
387 #endif /* GLX_DIRECT_RENDERING */