20ff3f280a7d3b0896fea0c87f07cb18e9c353b2
[mesa.git] / src / gbm / main / gbm.c
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 #include <stddef.h>
29 #include <stdio.h>
30 #include <stdlib.h>
31 #include <string.h>
32 #include <stdint.h>
33
34 #ifdef MAJOR_IN_MKDEV
35 #include <sys/mkdev.h>
36 #endif
37 #ifdef MAJOR_IN_SYSMACROS
38 #include <sys/sysmacros.h>
39 #endif
40 #include <sys/stat.h>
41 #include <unistd.h>
42 #include <errno.h>
43
44 #include "gbm.h"
45 #include "gbmint.h"
46 #include "backend.h"
47
48 #define ARRAY_SIZE(a) (sizeof(a)/sizeof((a)[0]))
49
50 static struct gbm_device *devices[16];
51
52 static int device_num = 0;
53
54 /** Returns the file description for the gbm device
55 *
56 * \return The fd that the struct gbm_device was created with
57 */
58 GBM_EXPORT int
59 gbm_device_get_fd(struct gbm_device *gbm)
60 {
61 return gbm->fd;
62 }
63
64 /* FIXME: maybe superfluous, use udev subclass from the fd? */
65 /** Get the backend name for the given gbm device
66 *
67 * \return The backend name string - this belongs to the device and must not
68 * be freed
69 */
70 GBM_EXPORT const char *
71 gbm_device_get_backend_name(struct gbm_device *gbm)
72 {
73 return gbm->name;
74 }
75
76 /** Test if a format is supported for a given set of usage flags.
77 *
78 * \param gbm The created buffer manager
79 * \param format The format to test
80 * \param usage A bitmask of the usages to test the format against
81 * \return 1 if the format is supported otherwise 0
82 *
83 * \sa enum gbm_bo_flags for the list of flags that the format can be
84 * tested against
85 *
86 * \sa enum gbm_bo_format for the list of formats
87 */
88 GBM_EXPORT int
89 gbm_device_is_format_supported(struct gbm_device *gbm,
90 uint32_t format, uint32_t usage)
91 {
92 return gbm->is_format_supported(gbm, format, usage);
93 }
94
95 /** Destroy the gbm device and free all resources associated with it.
96 *
97 * \param gbm The device created using gbm_create_device()
98 */
99 GBM_EXPORT void
100 gbm_device_destroy(struct gbm_device *gbm)
101 {
102 gbm->refcount--;
103 if (gbm->refcount == 0)
104 gbm->destroy(gbm);
105 }
106
107 struct gbm_device *
108 _gbm_mesa_get_device(int fd)
109 {
110 struct gbm_device *gbm = NULL;
111 struct stat buf;
112 dev_t dev;
113 int i;
114
115 if (fd < 0 || fstat(fd, &buf) < 0 || !S_ISCHR(buf.st_mode)) {
116 errno = EINVAL;
117 return NULL;
118 }
119
120 for (i = 0; i < device_num; ++i) {
121 dev = devices[i]->stat.st_rdev;
122 if (major(dev) == major(buf.st_rdev) &&
123 minor(dev) == minor(buf.st_rdev)) {
124 gbm = devices[i];
125 gbm->refcount++;
126 break;
127 }
128 }
129
130 return gbm;
131 }
132
133 /** Create a gbm device for allocating buffers
134 *
135 * The file descriptor passed in is used by the backend to communicate with
136 * platform for allocating the memory. For allocations using DRI this would be
137 * the file descriptor returned when opening a device such as \c
138 * /dev/dri/card0
139 *
140 * \param fd The file descriptor for a backend specific device
141 * \return The newly created struct gbm_device. The resources associated with
142 * the device should be freed with gbm_device_destroy() when it is no longer
143 * needed. If the creation of the device failed NULL will be returned.
144 */
145 GBM_EXPORT struct gbm_device *
146 gbm_create_device(int fd)
147 {
148 struct gbm_device *gbm = NULL;
149 struct stat buf;
150
151 if (fd < 0 || fstat(fd, &buf) < 0 || !S_ISCHR(buf.st_mode)) {
152 errno = EINVAL;
153 return NULL;
154 }
155
156 if (device_num == 0)
157 memset(devices, 0, sizeof devices);
158
159 gbm = _gbm_create_device(fd);
160 if (gbm == NULL)
161 return NULL;
162
163 gbm->dummy = gbm_create_device;
164 gbm->stat = buf;
165 gbm->refcount = 1;
166
167 if (device_num < ARRAY_SIZE(devices)-1)
168 devices[device_num++] = gbm;
169
170 return gbm;
171 }
172
173 /** Get the width of the buffer object
174 *
175 * \param bo The buffer object
176 * \return The width of the allocated buffer object
177 *
178 */
179 GBM_EXPORT unsigned int
180 gbm_bo_get_width(struct gbm_bo *bo)
181 {
182 return bo->width;
183 }
184
185 /** Get the height of the buffer object
186 *
187 * \param bo The buffer object
188 * \return The height of the allocated buffer object
189 */
190 GBM_EXPORT unsigned int
191 gbm_bo_get_height(struct gbm_bo *bo)
192 {
193 return bo->height;
194 }
195
196 /** Get the stride of the buffer object
197 *
198 * This is calculated by the backend when it does the allocation in
199 * gbm_bo_create()
200 *
201 * \param bo The buffer object
202 * \return The stride of the allocated buffer object in bytes
203 */
204 GBM_EXPORT uint32_t
205 gbm_bo_get_stride(struct gbm_bo *bo)
206 {
207 return bo->stride;
208 }
209
210 /** Get the format of the buffer object
211 *
212 * The format of the pixels in the buffer.
213 *
214 * \param bo The buffer object
215 * \return The format of buffer object, on of the GBM_FORMAT_* codes
216 */
217 GBM_EXPORT uint32_t
218 gbm_bo_get_format(struct gbm_bo *bo)
219 {
220 return bo->format;
221 }
222
223 /** Get the handle of the buffer object
224 *
225 * This is stored in the platform generic union gbm_bo_handle type. However
226 * the format of this handle is platform specific.
227 *
228 * \param bo The buffer object
229 * \return Returns the handle of the allocated buffer object
230 */
231 GBM_EXPORT union gbm_bo_handle
232 gbm_bo_get_handle(struct gbm_bo *bo)
233 {
234 return bo->handle;
235 }
236
237 /** Get a DMA-BUF file descriptor for the buffer object
238 *
239 * This function creates a DMA-BUF (also known as PRIME) file descriptor
240 * handle for the buffer object. Each call to gbm_bo_get_fd() returns a new
241 * file descriptor and the caller is responsible for closing the file
242 * descriptor.
243
244 * \param bo The buffer object
245 * \return Returns a file descriptor referring to the underlying buffer
246 */
247 GBM_EXPORT int
248 gbm_bo_get_fd(struct gbm_bo *bo)
249 {
250 return bo->gbm->bo_get_fd(bo);
251 }
252
253
254 /** Write data into the buffer object
255 *
256 * If the buffer object was created with the GBM_BO_USE_WRITE flag,
257 * this function can be used to write data into the buffer object. The
258 * data is copied directly into the object and it's the responsibility
259 * of the caller to make sure the data represents valid pixel data,
260 * according to the width, height, stride and format of the buffer object.
261 *
262 * \param bo The buffer object
263 * \param buf The data to write
264 * \param count The number of bytes to write
265 * \return Returns 0 on success, otherwise -1 is returned an errno set
266 */
267 GBM_EXPORT int
268 gbm_bo_write(struct gbm_bo *bo, const void *buf, size_t count)
269 {
270 return bo->gbm->bo_write(bo, buf, count);
271 }
272
273 /** Get the gbm device used to create the buffer object
274 *
275 * \param bo The buffer object
276 * \return Returns the gbm device with which the buffer object was created
277 */
278 GBM_EXPORT struct gbm_device *
279 gbm_bo_get_device(struct gbm_bo *bo)
280 {
281 return bo->gbm;
282 }
283
284 /** Set the user data associated with a buffer object
285 *
286 * \param bo The buffer object
287 * \param data The data to associate to the buffer object
288 * \param destroy_user_data A callback (which may be %NULL) that will be
289 * called prior to the buffer destruction
290 */
291 GBM_EXPORT void
292 gbm_bo_set_user_data(struct gbm_bo *bo, void *data,
293 void (*destroy_user_data)(struct gbm_bo *, void *))
294 {
295 bo->user_data = data;
296 bo->destroy_user_data = destroy_user_data;
297 }
298
299 /** Get the user data associated with a buffer object
300 *
301 * \param bo The buffer object
302 * \return Returns the user data associated with the buffer object or %NULL
303 * if no data was associated with it
304 *
305 * \sa gbm_bo_set_user_data()
306 */
307 GBM_EXPORT void *
308 gbm_bo_get_user_data(struct gbm_bo *bo)
309 {
310 return bo->user_data;
311 }
312
313 /**
314 * Destroys the given buffer object and frees all resources associated with
315 * it.
316 *
317 * \param bo The buffer object
318 */
319 GBM_EXPORT void
320 gbm_bo_destroy(struct gbm_bo *bo)
321 {
322 if (bo->destroy_user_data)
323 bo->destroy_user_data(bo, bo->user_data);
324
325 bo->gbm->bo_destroy(bo);
326 }
327
328 /**
329 * Allocate a buffer object for the given dimensions
330 *
331 * \param gbm The gbm device returned from gbm_create_device()
332 * \param width The width for the buffer
333 * \param height The height for the buffer
334 * \param format The format to use for the buffer
335 * \param usage The union of the usage flags for this buffer
336 *
337 * \return A newly allocated buffer that should be freed with gbm_bo_destroy()
338 * when no longer needed. If an error occurs during allocation %NULL will be
339 * returned and errno set.
340 *
341 * \sa enum gbm_bo_format for the list of formats
342 * \sa enum gbm_bo_flags for the list of usage flags
343 */
344 GBM_EXPORT struct gbm_bo *
345 gbm_bo_create(struct gbm_device *gbm,
346 uint32_t width, uint32_t height,
347 uint32_t format, uint32_t usage)
348 {
349 if (width == 0 || height == 0) {
350 errno = EINVAL;
351 return NULL;
352 }
353
354 return gbm->bo_create(gbm, width, height, format, usage);
355 }
356
357 /**
358 * Create a gbm buffer object from an foreign object
359 *
360 * This function imports a foreign object and creates a new gbm bo for it.
361 * This enabled using the foreign object with a display API such as KMS.
362 * Currently two types of foreign objects are supported, indicated by the type
363 * argument:
364 *
365 * GBM_BO_IMPORT_WL_BUFFER
366 * GBM_BO_IMPORT_EGL_IMAGE
367 * GBM_BO_IMPORT_FD
368 *
369 * The gbm bo shares the underlying pixels but its life-time is
370 * independent of the foreign object.
371 *
372 * \param gbm The gbm device returned from gbm_create_device()
373 * \param gbm The type of object we're importing
374 * \param gbm Pointer to the external object
375 * \param usage The union of the usage flags for this buffer
376 *
377 * \return A newly allocated buffer object that should be freed with
378 * gbm_bo_destroy() when no longer needed. On error, %NULL is returned
379 * and errno is set.
380 *
381 * \sa enum gbm_bo_flags for the list of usage flags
382 */
383 GBM_EXPORT struct gbm_bo *
384 gbm_bo_import(struct gbm_device *gbm,
385 uint32_t type, void *buffer, uint32_t usage)
386 {
387 return gbm->bo_import(gbm, type, buffer, usage);
388 }
389
390 /**
391 * Map a region of a gbm buffer object for cpu access
392 *
393 * This function maps a region of a gbm bo for cpu read and/or write
394 * access.
395 *
396 * \param bo The buffer object
397 * \param x The X (top left origin) starting position of the mapped region for
398 * the buffer
399 * \param y The Y (top left origin) starting position of the mapped region for
400 * the buffer
401 * \param width The width of the mapped region for the buffer
402 * \param height The height of the mapped region for the buffer
403 * \param flags The union of the GBM_BO_TRANSFER_* flags for this buffer
404 * \param stride Ptr for returned stride in bytes of the mapped region
405 * \param map_data Returned opaque ptr for the mapped region
406 *
407 * \return Address of the mapped buffer that should be unmapped with
408 * gbm_bo_unmap() when no longer needed. On error, %NULL is returned
409 * and errno is set.
410 *
411 * \sa enum gbm_bo_transfer_flags for the list of flags
412 */
413 GBM_EXPORT void *
414 gbm_bo_map(struct gbm_bo *bo,
415 uint32_t x, uint32_t y,
416 uint32_t width, uint32_t height,
417 uint32_t flags, uint32_t *stride, void **map_data)
418 {
419 if (!bo || width == 0 || height == 0 || !stride || !map_data) {
420 errno = EINVAL;
421 return NULL;
422 }
423
424 return bo->gbm->bo_map(bo, x, y, width, height,
425 flags, stride, map_data);
426 }
427
428 /**
429 * Unmap a previously mapped region of a gbm buffer object
430 *
431 * This function unmaps a region of a gbm bo for cpu read and/or write
432 * access.
433 *
434 * \param bo The buffer object
435 * \param map_data opaque ptr returned from prior gbm_bo_map
436 */
437 GBM_EXPORT void
438 gbm_bo_unmap(struct gbm_bo *bo, void *map_data)
439 {
440 bo->gbm->bo_unmap(bo, map_data);
441 }
442
443 /**
444 * Allocate a surface object
445 *
446 * \param gbm The gbm device returned from gbm_create_device()
447 * \param width The width for the surface
448 * \param height The height for the surface
449 * \param format The format to use for the surface
450 *
451 * \return A newly allocated surface that should be freed with
452 * gbm_surface_destroy() when no longer needed. If an error occurs
453 * during allocation %NULL will be returned.
454 *
455 * \sa enum gbm_bo_format for the list of formats
456 */
457 GBM_EXPORT struct gbm_surface *
458 gbm_surface_create(struct gbm_device *gbm,
459 uint32_t width, uint32_t height,
460 uint32_t format, uint32_t flags)
461 {
462 return gbm->surface_create(gbm, width, height, format, flags);
463 }
464
465 /**
466 * Destroys the given surface and frees all resources associated with
467 * it.
468 *
469 * All buffers locked with gbm_surface_lock_front_buffer() should be
470 * released prior to calling this function.
471 *
472 * \param surf The surface
473 */
474 GBM_EXPORT void
475 gbm_surface_destroy(struct gbm_surface *surf)
476 {
477 surf->gbm->surface_destroy(surf);
478 }
479
480 /**
481 * Lock the surface's current front buffer
482 *
483 * Lock rendering to the surface's current front buffer until it is
484 * released with gbm_surface_release_buffer().
485 *
486 * This function must be called exactly once after calling
487 * eglSwapBuffers. Calling it before any eglSwapBuffer has happened
488 * on the surface or two or more times after eglSwapBuffers is an
489 * error. A new bo representing the new front buffer is returned. On
490 * multiple invocations, all the returned bos must be released in
491 * order to release the actual surface buffer.
492 *
493 * \param surf The surface
494 *
495 * \return A buffer object that should be released with
496 * gbm_surface_release_buffer() when no longer needed. The implementation
497 * is free to reuse buffers released with gbm_surface_release_buffer() so
498 * this bo should not be destroyed using gbm_bo_destroy(). If an error
499 * occurs this function returns %NULL.
500 */
501 GBM_EXPORT struct gbm_bo *
502 gbm_surface_lock_front_buffer(struct gbm_surface *surf)
503 {
504 return surf->gbm->surface_lock_front_buffer(surf);
505 }
506
507 /**
508 * Release a locked buffer obtained with gbm_surface_lock_front_buffer()
509 *
510 * Returns the underlying buffer to the gbm surface. Releasing a bo
511 * will typically make gbm_surface_has_free_buffer() return 1 and thus
512 * allow rendering the next frame, but not always. The implementation
513 * may choose to destroy the bo immediately or reuse it, in which case
514 * the user data associated with it is unchanged.
515 *
516 * \param surf The surface
517 * \param bo The buffer object
518 */
519 GBM_EXPORT void
520 gbm_surface_release_buffer(struct gbm_surface *surf, struct gbm_bo *bo)
521 {
522 surf->gbm->surface_release_buffer(surf, bo);
523 }
524
525 /**
526 * Return whether or not a surface has free (non-locked) buffers
527 *
528 * Before starting a new frame, the surface must have a buffer
529 * available for rendering. Initially, a gbm surface will have a free
530 * buffer, but after one or more buffers have been locked (\sa
531 * gbm_surface_lock_front_buffer()), the application must check for a
532 * free buffer before rendering.
533 *
534 * If a surface doesn't have a free buffer, the application must
535 * return a buffer to the surface using gbm_surface_release_buffer()
536 * and after that, the application can query for free buffers again.
537 *
538 * \param surf The surface
539 * \return 1 if the surface has free buffers, 0 otherwise
540 */
541 GBM_EXPORT int
542 gbm_surface_has_free_buffers(struct gbm_surface *surf)
543 {
544 return surf->gbm->surface_has_free_buffers(surf);
545 }