gbm.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314
  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. #ifndef _GBM_H_
  28. #define _GBM_H_
  29. #ifdef __cplusplus
  30. extern "C" {
  31. #endif
  32. #define __GBM__ 1
  33. #include <stddef.h>
  34. #include <stdint.h>
  35. /**
  36. * \file gbm.h
  37. * \brief Generic Buffer Manager
  38. */
  39. struct gbm_device;
  40. struct gbm_bo;
  41. struct gbm_surface;
  42. /**
  43. * \mainpage The Generic Buffer Manager
  44. *
  45. * This module provides an abstraction that the caller can use to request a
  46. * buffer from the underlying memory management system for the platform.
  47. *
  48. * This allows the creation of portable code whilst still allowing access to
  49. * the underlying memory manager.
  50. */
  51. /**
  52. * Abstraction representing the handle to a buffer allocated by the
  53. * manager
  54. */
  55. union gbm_bo_handle {
  56. void *ptr;
  57. int32_t s32;
  58. uint32_t u32;
  59. int64_t s64;
  60. uint64_t u64;
  61. };
  62. /** Format of the allocated buffer */
  63. enum gbm_bo_format {
  64. /** RGB with 8 bits per channel in a 32 bit value */
  65. GBM_BO_FORMAT_XRGB8888,
  66. /** ARGB with 8 bits per channel in a 32 bit value */
  67. GBM_BO_FORMAT_ARGB8888
  68. };
  69. #define __gbm_fourcc_code(a,b,c,d) ((uint32_t)(a) | ((uint32_t)(b) << 8) | \
  70. ((uint32_t)(c) << 16) | ((uint32_t)(d) << 24))
  71. #define GBM_FORMAT_BIG_ENDIAN (1<<31) /* format is big endian instead of little endian */
  72. /* color index */
  73. #define GBM_FORMAT_C8 __gbm_fourcc_code('C', '8', ' ', ' ') /* [7:0] C */
  74. /* 8 bpp RGB */
  75. #define GBM_FORMAT_RGB332 __gbm_fourcc_code('R', 'G', 'B', '8') /* [7:0] R:G:B 3:3:2 */
  76. #define GBM_FORMAT_BGR233 __gbm_fourcc_code('B', 'G', 'R', '8') /* [7:0] B:G:R 2:3:3 */
  77. /* 16 bpp RGB */
  78. #define GBM_FORMAT_XRGB4444 __gbm_fourcc_code('X', 'R', '1', '2') /* [15:0] x:R:G:B 4:4:4:4 little endian */
  79. #define GBM_FORMAT_XBGR4444 __gbm_fourcc_code('X', 'B', '1', '2') /* [15:0] x:B:G:R 4:4:4:4 little endian */
  80. #define GBM_FORMAT_RGBX4444 __gbm_fourcc_code('R', 'X', '1', '2') /* [15:0] R:G:B:x 4:4:4:4 little endian */
  81. #define GBM_FORMAT_BGRX4444 __gbm_fourcc_code('B', 'X', '1', '2') /* [15:0] B:G:R:x 4:4:4:4 little endian */
  82. #define GBM_FORMAT_ARGB4444 __gbm_fourcc_code('A', 'R', '1', '2') /* [15:0] A:R:G:B 4:4:4:4 little endian */
  83. #define GBM_FORMAT_ABGR4444 __gbm_fourcc_code('A', 'B', '1', '2') /* [15:0] A:B:G:R 4:4:4:4 little endian */
  84. #define GBM_FORMAT_RGBA4444 __gbm_fourcc_code('R', 'A', '1', '2') /* [15:0] R:G:B:A 4:4:4:4 little endian */
  85. #define GBM_FORMAT_BGRA4444 __gbm_fourcc_code('B', 'A', '1', '2') /* [15:0] B:G:R:A 4:4:4:4 little endian */
  86. #define GBM_FORMAT_XRGB1555 __gbm_fourcc_code('X', 'R', '1', '5') /* [15:0] x:R:G:B 1:5:5:5 little endian */
  87. #define GBM_FORMAT_XBGR1555 __gbm_fourcc_code('X', 'B', '1', '5') /* [15:0] x:B:G:R 1:5:5:5 little endian */
  88. #define GBM_FORMAT_RGBX5551 __gbm_fourcc_code('R', 'X', '1', '5') /* [15:0] R:G:B:x 5:5:5:1 little endian */
  89. #define GBM_FORMAT_BGRX5551 __gbm_fourcc_code('B', 'X', '1', '5') /* [15:0] B:G:R:x 5:5:5:1 little endian */
  90. #define GBM_FORMAT_ARGB1555 __gbm_fourcc_code('A', 'R', '1', '5') /* [15:0] A:R:G:B 1:5:5:5 little endian */
  91. #define GBM_FORMAT_ABGR1555 __gbm_fourcc_code('A', 'B', '1', '5') /* [15:0] A:B:G:R 1:5:5:5 little endian */
  92. #define GBM_FORMAT_RGBA5551 __gbm_fourcc_code('R', 'A', '1', '5') /* [15:0] R:G:B:A 5:5:5:1 little endian */
  93. #define GBM_FORMAT_BGRA5551 __gbm_fourcc_code('B', 'A', '1', '5') /* [15:0] B:G:R:A 5:5:5:1 little endian */
  94. #define GBM_FORMAT_RGB565 __gbm_fourcc_code('R', 'G', '1', '6') /* [15:0] R:G:B 5:6:5 little endian */
  95. #define GBM_FORMAT_BGR565 __gbm_fourcc_code('B', 'G', '1', '6') /* [15:0] B:G:R 5:6:5 little endian */
  96. /* 24 bpp RGB */
  97. #define GBM_FORMAT_RGB888 __gbm_fourcc_code('R', 'G', '2', '4') /* [23:0] R:G:B little endian */
  98. #define GBM_FORMAT_BGR888 __gbm_fourcc_code('B', 'G', '2', '4') /* [23:0] B:G:R little endian */
  99. /* 32 bpp RGB */
  100. #define GBM_FORMAT_XRGB8888 __gbm_fourcc_code('X', 'R', '2', '4') /* [31:0] x:R:G:B 8:8:8:8 little endian */
  101. #define GBM_FORMAT_XBGR8888 __gbm_fourcc_code('X', 'B', '2', '4') /* [31:0] x:B:G:R 8:8:8:8 little endian */
  102. #define GBM_FORMAT_RGBX8888 __gbm_fourcc_code('R', 'X', '2', '4') /* [31:0] R:G:B:x 8:8:8:8 little endian */
  103. #define GBM_FORMAT_BGRX8888 __gbm_fourcc_code('B', 'X', '2', '4') /* [31:0] B:G:R:x 8:8:8:8 little endian */
  104. #define GBM_FORMAT_ARGB8888 __gbm_fourcc_code('A', 'R', '2', '4') /* [31:0] A:R:G:B 8:8:8:8 little endian */
  105. #define GBM_FORMAT_ABGR8888 __gbm_fourcc_code('A', 'B', '2', '4') /* [31:0] A:B:G:R 8:8:8:8 little endian */
  106. #define GBM_FORMAT_RGBA8888 __gbm_fourcc_code('R', 'A', '2', '4') /* [31:0] R:G:B:A 8:8:8:8 little endian */
  107. #define GBM_FORMAT_BGRA8888 __gbm_fourcc_code('B', 'A', '2', '4') /* [31:0] B:G:R:A 8:8:8:8 little endian */
  108. #define GBM_FORMAT_XRGB2101010 __gbm_fourcc_code('X', 'R', '3', '0') /* [31:0] x:R:G:B 2:10:10:10 little endian */
  109. #define GBM_FORMAT_XBGR2101010 __gbm_fourcc_code('X', 'B', '3', '0') /* [31:0] x:B:G:R 2:10:10:10 little endian */
  110. #define GBM_FORMAT_RGBX1010102 __gbm_fourcc_code('R', 'X', '3', '0') /* [31:0] R:G:B:x 10:10:10:2 little endian */
  111. #define GBM_FORMAT_BGRX1010102 __gbm_fourcc_code('B', 'X', '3', '0') /* [31:0] B:G:R:x 10:10:10:2 little endian */
  112. #define GBM_FORMAT_ARGB2101010 __gbm_fourcc_code('A', 'R', '3', '0') /* [31:0] A:R:G:B 2:10:10:10 little endian */
  113. #define GBM_FORMAT_ABGR2101010 __gbm_fourcc_code('A', 'B', '3', '0') /* [31:0] A:B:G:R 2:10:10:10 little endian */
  114. #define GBM_FORMAT_RGBA1010102 __gbm_fourcc_code('R', 'A', '3', '0') /* [31:0] R:G:B:A 10:10:10:2 little endian */
  115. #define GBM_FORMAT_BGRA1010102 __gbm_fourcc_code('B', 'A', '3', '0') /* [31:0] B:G:R:A 10:10:10:2 little endian */
  116. /* packed YCbCr */
  117. #define GBM_FORMAT_YUYV __gbm_fourcc_code('Y', 'U', 'Y', 'V') /* [31:0] Cr0:Y1:Cb0:Y0 8:8:8:8 little endian */
  118. #define GBM_FORMAT_YVYU __gbm_fourcc_code('Y', 'V', 'Y', 'U') /* [31:0] Cb0:Y1:Cr0:Y0 8:8:8:8 little endian */
  119. #define GBM_FORMAT_UYVY __gbm_fourcc_code('U', 'Y', 'V', 'Y') /* [31:0] Y1:Cr0:Y0:Cb0 8:8:8:8 little endian */
  120. #define GBM_FORMAT_VYUY __gbm_fourcc_code('V', 'Y', 'U', 'Y') /* [31:0] Y1:Cb0:Y0:Cr0 8:8:8:8 little endian */
  121. #define GBM_FORMAT_AYUV __gbm_fourcc_code('A', 'Y', 'U', 'V') /* [31:0] A:Y:Cb:Cr 8:8:8:8 little endian */
  122. /*
  123. * 2 plane YCbCr
  124. * index 0 = Y plane, [7:0] Y
  125. * index 1 = Cr:Cb plane, [15:0] Cr:Cb little endian
  126. * or
  127. * index 1 = Cb:Cr plane, [15:0] Cb:Cr little endian
  128. */
  129. #define GBM_FORMAT_NV12 __gbm_fourcc_code('N', 'V', '1', '2') /* 2x2 subsampled Cr:Cb plane */
  130. #define GBM_FORMAT_NV21 __gbm_fourcc_code('N', 'V', '2', '1') /* 2x2 subsampled Cb:Cr plane */
  131. #define GBM_FORMAT_NV16 __gbm_fourcc_code('N', 'V', '1', '6') /* 2x1 subsampled Cr:Cb plane */
  132. #define GBM_FORMAT_NV61 __gbm_fourcc_code('N', 'V', '6', '1') /* 2x1 subsampled Cb:Cr plane */
  133. /*
  134. * 3 plane YCbCr
  135. * index 0: Y plane, [7:0] Y
  136. * index 1: Cb plane, [7:0] Cb
  137. * index 2: Cr plane, [7:0] Cr
  138. * or
  139. * index 1: Cr plane, [7:0] Cr
  140. * index 2: Cb plane, [7:0] Cb
  141. */
  142. #define GBM_FORMAT_YUV410 __gbm_fourcc_code('Y', 'U', 'V', '9') /* 4x4 subsampled Cb (1) and Cr (2) planes */
  143. #define GBM_FORMAT_YVU410 __gbm_fourcc_code('Y', 'V', 'U', '9') /* 4x4 subsampled Cr (1) and Cb (2) planes */
  144. #define GBM_FORMAT_YUV411 __gbm_fourcc_code('Y', 'U', '1', '1') /* 4x1 subsampled Cb (1) and Cr (2) planes */
  145. #define GBM_FORMAT_YVU411 __gbm_fourcc_code('Y', 'V', '1', '1') /* 4x1 subsampled Cr (1) and Cb (2) planes */
  146. #define GBM_FORMAT_YUV420 __gbm_fourcc_code('Y', 'U', '1', '2') /* 2x2 subsampled Cb (1) and Cr (2) planes */
  147. #define GBM_FORMAT_YVU420 __gbm_fourcc_code('Y', 'V', '1', '2') /* 2x2 subsampled Cr (1) and Cb (2) planes */
  148. #define GBM_FORMAT_YUV422 __gbm_fourcc_code('Y', 'U', '1', '6') /* 2x1 subsampled Cb (1) and Cr (2) planes */
  149. #define GBM_FORMAT_YVU422 __gbm_fourcc_code('Y', 'V', '1', '6') /* 2x1 subsampled Cr (1) and Cb (2) planes */
  150. #define GBM_FORMAT_YUV444 __gbm_fourcc_code('Y', 'U', '2', '4') /* non-subsampled Cb (1) and Cr (2) planes */
  151. #define GBM_FORMAT_YVU444 __gbm_fourcc_code('Y', 'V', '2', '4') /* non-subsampled Cr (1) and Cb (2) planes */
  152. /**
  153. * Flags to indicate the intended use for the buffer - these are passed into
  154. * gbm_bo_create(). The caller must set the union of all the flags that are
  155. * appropriate
  156. *
  157. * \sa Use gbm_device_is_format_supported() to check if the combination of format
  158. * and use flags are supported
  159. */
  160. enum gbm_bo_flags {
  161. /**
  162. * Buffer is going to be presented to the screen using an API such as KMS
  163. */
  164. GBM_BO_USE_SCANOUT = (1 << 0),
  165. /**
  166. * Buffer is going to be used as cursor
  167. */
  168. GBM_BO_USE_CURSOR = (1 << 1),
  169. /**
  170. * Deprecated
  171. */
  172. GBM_BO_USE_CURSOR_64X64 = GBM_BO_USE_CURSOR,
  173. /**
  174. * Buffer is to be used for rendering - for example it is going to be used
  175. * as the storage for a color buffer
  176. */
  177. GBM_BO_USE_RENDERING = (1 << 2),
  178. /**
  179. * Buffer can be used for gbm_bo_write. This is guaranteed to work
  180. * with GBM_BO_USE_CURSOR. but may not work for other combinations.
  181. */
  182. GBM_BO_USE_WRITE = (1 << 3),
  183. /**
  184. * Buffer is linear, i.e. not tiled.
  185. */
  186. GBM_BO_USE_LINEAR = (1 << 4),
  187. };
  188. int
  189. gbm_device_get_fd(struct gbm_device *gbm);
  190. const char *
  191. gbm_device_get_backend_name(struct gbm_device *gbm);
  192. int
  193. gbm_device_is_format_supported(struct gbm_device *gbm,
  194. uint32_t format, uint32_t usage);
  195. void
  196. gbm_device_destroy(struct gbm_device *gbm);
  197. struct gbm_device *
  198. gbm_create_device(int fd);
  199. struct gbm_bo *
  200. gbm_bo_create(struct gbm_device *gbm,
  201. uint32_t width, uint32_t height,
  202. uint32_t format, uint32_t flags);
  203. #define GBM_BO_IMPORT_WL_BUFFER 0x5501
  204. #define GBM_BO_IMPORT_EGL_IMAGE 0x5502
  205. #define GBM_BO_IMPORT_FD 0x5503
  206. struct gbm_import_fd_data {
  207. int fd;
  208. uint32_t width;
  209. uint32_t height;
  210. uint32_t stride;
  211. uint32_t format;
  212. };
  213. struct gbm_bo *
  214. gbm_bo_import(struct gbm_device *gbm, uint32_t type,
  215. void *buffer, uint32_t usage);
  216. uint32_t
  217. gbm_bo_get_width(struct gbm_bo *bo);
  218. uint32_t
  219. gbm_bo_get_height(struct gbm_bo *bo);
  220. uint32_t
  221. gbm_bo_get_stride(struct gbm_bo *bo);
  222. uint32_t
  223. gbm_bo_get_format(struct gbm_bo *bo);
  224. struct gbm_device *
  225. gbm_bo_get_device(struct gbm_bo *bo);
  226. union gbm_bo_handle
  227. gbm_bo_get_handle(struct gbm_bo *bo);
  228. int
  229. gbm_bo_get_fd(struct gbm_bo *bo);
  230. int
  231. gbm_bo_write(struct gbm_bo *bo, const void *buf, size_t count);
  232. void
  233. gbm_bo_set_user_data(struct gbm_bo *bo, void *data,
  234. void (*destroy_user_data)(struct gbm_bo *, void *));
  235. void *
  236. gbm_bo_get_user_data(struct gbm_bo *bo);
  237. void
  238. gbm_bo_destroy(struct gbm_bo *bo);
  239. struct gbm_surface *
  240. gbm_surface_create(struct gbm_device *gbm,
  241. uint32_t width, uint32_t height,
  242. uint32_t format, uint32_t flags);
  243. int
  244. gbm_surface_needs_lock_front_buffer(struct gbm_surface *surface);
  245. struct gbm_bo *
  246. gbm_surface_lock_front_buffer(struct gbm_surface *surface);
  247. void
  248. gbm_surface_release_buffer(struct gbm_surface *surface, struct gbm_bo *bo);
  249. int
  250. gbm_surface_has_free_buffers(struct gbm_surface *surface);
  251. void
  252. gbm_surface_destroy(struct gbm_surface *surface);
  253. #ifdef __cplusplus
  254. }
  255. #endif
  256. #endif