pipe-loader: don't mix code and variable declarations
[mesa.git] / src / gallium / auxiliary / pipe-loader / pipe_loader_drm.c
1 /**************************************************************************
2 *
3 * Copyright 2011 Intel Corporation
4 * Copyright 2012 Francisco Jerez
5 * All Rights Reserved.
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the
9 * "Software"), to deal in the Software without restriction, including
10 * without limitation the rights to use, copy, modify, merge, publish,
11 * distribute, sub license, and/or sell copies of the Software, and to
12 * permit persons to whom the Software is furnished to do so, subject to
13 * the following conditions:
14 *
15 * The above copyright notice and this permission notice (including the
16 * next paragraph) shall be included in all copies or substantial portions
17 * of the Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
20 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
22 * IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR
23 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
24 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
25 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26 *
27 * Authors:
28 * Kristian Høgsberg <krh@bitplanet.net>
29 * Benjamin Franzke <benjaminfranzke@googlemail.com>
30 *
31 **************************************************************************/
32
33 #include <fcntl.h>
34 #include <stdio.h>
35 #include <xf86drm.h>
36 #include <unistd.h>
37
38 #include "loader.h"
39 #include "target-helpers/drm_helper_public.h"
40 #include "state_tracker/drm_driver.h"
41 #include "pipe_loader_priv.h"
42
43 #include "util/u_memory.h"
44 #include "util/u_dl.h"
45 #include "util/u_debug.h"
46
47 #define DRM_RENDER_NODE_DEV_NAME_FORMAT "%s/renderD%d"
48 #define DRM_RENDER_NODE_MAX_NODES 63
49 #define DRM_RENDER_NODE_MIN_MINOR 128
50 #define DRM_RENDER_NODE_MAX_MINOR (DRM_RENDER_NODE_MIN_MINOR + DRM_RENDER_NODE_MAX_NODES)
51
52 struct pipe_loader_drm_device {
53 struct pipe_loader_device base;
54 const struct drm_driver_descriptor *dd;
55 #ifndef GALLIUM_STATIC_TARGETS
56 struct util_dl_library *lib;
57 #endif
58 int fd;
59 };
60
61 #define pipe_loader_drm_device(dev) ((struct pipe_loader_drm_device *)dev)
62
63 static const struct pipe_loader_ops pipe_loader_drm_ops;
64
65 #ifdef GALLIUM_STATIC_TARGETS
66 static const struct drm_conf_ret throttle_ret = {
67 DRM_CONF_INT,
68 {2},
69 };
70
71 static const struct drm_conf_ret share_fd_ret = {
72 DRM_CONF_BOOL,
73 {true},
74 };
75
76 static inline const struct drm_conf_ret *
77 configuration_query(enum drm_conf conf)
78 {
79 switch (conf) {
80 case DRM_CONF_THROTTLE:
81 return &throttle_ret;
82 case DRM_CONF_SHARE_FD:
83 return &share_fd_ret;
84 default:
85 break;
86 }
87 return NULL;
88 }
89
90 static const struct drm_driver_descriptor driver_descriptors[] = {
91 {
92 .name = "i915",
93 .driver_name = "i915",
94 .create_screen = pipe_i915_create_screen,
95 .configuration = configuration_query,
96 },
97 {
98 .name = "i965",
99 .driver_name = "i915",
100 .create_screen = pipe_ilo_create_screen,
101 .configuration = configuration_query,
102 },
103 {
104 .name = "nouveau",
105 .driver_name = "nouveau",
106 .create_screen = pipe_nouveau_create_screen,
107 .configuration = configuration_query,
108 },
109 {
110 .name = "r300",
111 .driver_name = "radeon",
112 .create_screen = pipe_r300_create_screen,
113 .configuration = configuration_query,
114 },
115 {
116 .name = "r600",
117 .driver_name = "radeon",
118 .create_screen = pipe_r600_create_screen,
119 .configuration = configuration_query,
120 },
121 {
122 .name = "radeonsi",
123 .driver_name = "radeon",
124 .create_screen = pipe_radeonsi_create_screen,
125 .configuration = configuration_query,
126 },
127 {
128 .name = "vmwgfx",
129 .driver_name = "vmwgfx",
130 .create_screen = pipe_vmwgfx_create_screen,
131 .configuration = configuration_query,
132 },
133 {
134 .name = "kgsl",
135 .driver_name = "freedreno",
136 .create_screen = pipe_freedreno_create_screen,
137 .configuration = configuration_query,
138 },
139 {
140 .name = "msm",
141 .driver_name = "freedreno",
142 .create_screen = pipe_freedreno_create_screen,
143 .configuration = configuration_query,
144 },
145 {
146 .name = "virtio_gpu",
147 .driver_name = "virtio-gpu",
148 .create_screen = pipe_virgl_create_screen,
149 .configuration = configuration_query,
150 },
151 {
152 .name = "vc4",
153 .driver_name = "vc4",
154 .create_screen = pipe_vc4_create_screen,
155 .configuration = configuration_query,
156 },
157 #ifdef USE_VC4_SIMULATOR
158 {
159 .name = "i965",
160 .driver_name = "vc4",
161 .create_screen = pipe_vc4_create_screen,
162 .configuration = configuration_query,
163 },
164 #endif
165 };
166 #endif
167
168 bool
169 pipe_loader_drm_probe_fd(struct pipe_loader_device **dev, int fd)
170 {
171 struct pipe_loader_drm_device *ddev = CALLOC_STRUCT(pipe_loader_drm_device);
172 int vendor_id, chip_id;
173
174 if (!ddev)
175 return false;
176
177 if (loader_get_pci_id_for_fd(fd, &vendor_id, &chip_id)) {
178 ddev->base.type = PIPE_LOADER_DEVICE_PCI;
179 ddev->base.u.pci.vendor_id = vendor_id;
180 ddev->base.u.pci.chip_id = chip_id;
181 } else {
182 ddev->base.type = PIPE_LOADER_DEVICE_PLATFORM;
183 }
184 ddev->base.ops = &pipe_loader_drm_ops;
185 ddev->fd = fd;
186
187 ddev->base.driver_name = loader_get_driver_for_fd(fd, _LOADER_GALLIUM);
188 if (!ddev->base.driver_name)
189 goto fail;
190
191 #ifdef GALLIUM_STATIC_TARGETS
192 for (int i = 0; i < ARRAY_SIZE(driver_descriptors); i++) {
193 if (strcmp(driver_descriptors[i].name, ddev->base.driver_name) == 0) {
194 ddev->dd = &driver_descriptors[i];
195 break;
196 }
197 }
198 if (!ddev->dd)
199 goto fail;
200 #else
201 ddev->lib = pipe_loader_find_module(&ddev->base, PIPE_SEARCH_DIR);
202 if (!ddev->lib)
203 goto fail;
204
205 ddev->dd = (const struct drm_driver_descriptor *)
206 util_dl_get_proc_address(ddev->lib, "driver_descriptor");
207
208 /* sanity check on the name */
209 if (!ddev->dd || strcmp(ddev->dd->name, ddev->base.driver_name) != 0)
210 goto fail;
211 #endif
212
213 *dev = &ddev->base;
214 return true;
215
216 fail:
217 #ifndef GALLIUM_STATIC_TARGETS
218 if (ddev->lib)
219 util_dl_close(ddev->lib);
220 #endif
221 FREE(ddev);
222 return false;
223 }
224
225 static int
226 open_drm_render_node_minor(int minor)
227 {
228 char path[PATH_MAX];
229 snprintf(path, sizeof(path), DRM_RENDER_NODE_DEV_NAME_FORMAT, DRM_DIR_NAME,
230 minor);
231 return loader_open_device(path);
232 }
233
234 int
235 pipe_loader_drm_probe(struct pipe_loader_device **devs, int ndev)
236 {
237 int i, j, fd;
238
239 for (i = DRM_RENDER_NODE_MIN_MINOR, j = 0;
240 i <= DRM_RENDER_NODE_MAX_MINOR; i++) {
241 struct pipe_loader_device *dev;
242
243 fd = open_drm_render_node_minor(i);
244 if (fd < 0)
245 continue;
246
247 if (!pipe_loader_drm_probe_fd(&dev, fd)) {
248 close(fd);
249 continue;
250 }
251
252 if (j < ndev) {
253 devs[j] = dev;
254 } else {
255 close(fd);
256 dev->ops->release(&dev);
257 }
258 j++;
259 }
260
261 return j;
262 }
263
264 static void
265 pipe_loader_drm_release(struct pipe_loader_device **dev)
266 {
267 struct pipe_loader_drm_device *ddev = pipe_loader_drm_device(*dev);
268
269 #ifndef GALLIUM_STATIC_TARGETS
270 if (ddev->lib)
271 util_dl_close(ddev->lib);
272 #endif
273
274 close(ddev->fd);
275 FREE(ddev->base.driver_name);
276 FREE(ddev);
277 *dev = NULL;
278 }
279
280 static const struct drm_conf_ret *
281 pipe_loader_drm_configuration(struct pipe_loader_device *dev,
282 enum drm_conf conf)
283 {
284 struct pipe_loader_drm_device *ddev = pipe_loader_drm_device(dev);
285
286 if (!ddev->dd->configuration)
287 return NULL;
288
289 return ddev->dd->configuration(conf);
290 }
291
292 static struct pipe_screen *
293 pipe_loader_drm_create_screen(struct pipe_loader_device *dev)
294 {
295 struct pipe_loader_drm_device *ddev = pipe_loader_drm_device(dev);
296
297 return ddev->dd->create_screen(ddev->fd);
298 }
299
300 static const struct pipe_loader_ops pipe_loader_drm_ops = {
301 .create_screen = pipe_loader_drm_create_screen,
302 .configuration = pipe_loader_drm_configuration,
303 .release = pipe_loader_drm_release
304 };