75299bdb84698642994d57e02c3d1f40c8da2109
[mesa.git] / src / gbm / backends / dri / gbm_driint.h
1 /*
2 * Copyright © 2011 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 * Benjamin Franzke <benjaminfranzke@googlemail.com>
26 */
27
28 #ifndef _GBM_DRI_INTERNAL_H_
29 #define _GBM_DRI_INTERNAL_H_
30
31 #include <xf86drm.h>
32 #include <string.h>
33 #include <sys/mman.h>
34 #include "gbmint.h"
35 #include "c11/threads.h"
36
37 #include <GL/gl.h> /* dri_interface needs GL types */
38 #include "GL/internal/dri_interface.h"
39
40 struct gbm_dri_surface;
41 struct gbm_dri_bo;
42
43 struct gbm_dri_visual {
44 uint32_t gbm_format;
45 int dri_image_format;
46 struct {
47 int red;
48 int green;
49 int blue;
50 int alpha;
51 } rgba_shifts;
52 struct {
53 unsigned int red;
54 unsigned int green;
55 unsigned int blue;
56 unsigned int alpha;
57 } rgba_sizes;
58 };
59
60 struct gbm_dri_device {
61 struct gbm_device base;
62
63 void *driver;
64 char *driver_name; /* Name of the DRI module, without the _dri suffix */
65
66 __DRIscreen *screen;
67 __DRIcontext *context;
68 mtx_t mutex;
69
70 const __DRIcoreExtension *core;
71 const __DRIdri2Extension *dri2;
72 const __DRI2fenceExtension *fence;
73 const __DRIimageExtension *image;
74 const __DRIswrastExtension *swrast;
75 const __DRI2flushExtension *flush;
76
77 const __DRIconfig **driver_configs;
78 const __DRIextension **loader_extensions;
79 const __DRIextension **driver_extensions;
80
81 __DRIimage *(*lookup_image)(__DRIscreen *screen, void *image, void *data);
82 void *lookup_user_data;
83
84 __DRIbuffer *(*get_buffers)(__DRIdrawable * driDrawable,
85 int *width, int *height,
86 unsigned int *attachments, int count,
87 int *out_count, void *data);
88 void (*flush_front_buffer)(__DRIdrawable * driDrawable, void *data);
89 __DRIbuffer *(*get_buffers_with_format)(__DRIdrawable * driDrawable,
90 int *width, int *height,
91 unsigned int *attachments, int count,
92 int *out_count, void *data);
93 int (*image_get_buffers)(__DRIdrawable *driDrawable,
94 unsigned int format,
95 uint32_t *stamp,
96 void *loaderPrivate,
97 uint32_t buffer_mask,
98 struct __DRIimageList *buffers);
99 void (*swrast_put_image2)(__DRIdrawable *driDrawable,
100 int op,
101 int x,
102 int y,
103 int width,
104 int height,
105 int stride,
106 char *data,
107 void *loaderPrivate);
108 void (*swrast_get_image)(__DRIdrawable *driDrawable,
109 int x,
110 int y,
111 int width,
112 int height,
113 char *data,
114 void *loaderPrivate);
115
116 struct wl_drm *wl_drm;
117
118 const struct gbm_dri_visual *visual_table;
119 int num_visuals;
120 };
121
122 struct gbm_dri_bo {
123 struct gbm_bo base;
124
125 __DRIimage *image;
126
127 /* Used for cursors and the swrast front BO */
128 uint32_t handle, size;
129 void *map;
130 };
131
132 struct gbm_dri_surface {
133 struct gbm_surface base;
134
135 void *dri_private;
136 };
137
138 static inline struct gbm_dri_device *
139 gbm_dri_device(struct gbm_device *gbm)
140 {
141 return (struct gbm_dri_device *) gbm;
142 }
143
144 static inline struct gbm_dri_bo *
145 gbm_dri_bo(struct gbm_bo *bo)
146 {
147 return (struct gbm_dri_bo *) bo;
148 }
149
150 static inline struct gbm_dri_surface *
151 gbm_dri_surface(struct gbm_surface *surface)
152 {
153 return (struct gbm_dri_surface *) surface;
154 }
155
156 static inline void *
157 gbm_dri_bo_map_dumb(struct gbm_dri_bo *bo)
158 {
159 struct drm_mode_map_dumb map_arg;
160 int ret;
161
162 if (bo->image != NULL)
163 return NULL;
164
165 if (bo->map != NULL)
166 return bo->map;
167
168 memset(&map_arg, 0, sizeof(map_arg));
169 map_arg.handle = bo->handle;
170
171 ret = drmIoctl(bo->base.gbm->fd, DRM_IOCTL_MODE_MAP_DUMB, &map_arg);
172 if (ret)
173 return NULL;
174
175 bo->map = mmap(0, bo->size, PROT_WRITE,
176 MAP_SHARED, bo->base.gbm->fd, map_arg.offset);
177 if (bo->map == MAP_FAILED) {
178 bo->map = NULL;
179 return NULL;
180 }
181
182 return bo->map;
183 }
184
185 static inline void
186 gbm_dri_bo_unmap_dumb(struct gbm_dri_bo *bo)
187 {
188 munmap(bo->map, bo->size);
189 bo->map = NULL;
190 }
191
192 #endif