blob: 91b021a26dceac6e480f606c6d855f1894665429 [file] [log] [blame]
Stéphane Marchesin25a26062014-09-12 16:18:59 -07001/*
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_H_
29#define _GBM_H_
30
31#ifdef __cplusplus
32extern "C" {
33#endif
34
35
36#define __GBM__ 1
37
38#include <stdint.h>
39
40/**
41 * \file gbm.h
42 * \brief Generic Buffer Manager
43 */
44
45struct gbm_device;
46struct gbm_bo;
47struct gbm_surface;
48
49/**
50 * \mainpage The Generic Buffer Manager
51 *
52 * This module provides an abstraction that the caller can use to request a
53 * buffer from the underlying memory management system for the platform.
54 *
55 * This allows the creation of portable code whilst still allowing access to
56 * the underlying memory manager.
57 */
58
59/**
60 * Abstraction representing the handle to a buffer allocated by the
61 * manager
62 */
63union gbm_bo_handle {
64 void *ptr;
65 int32_t s32;
66 uint32_t u32;
67 int64_t s64;
68 uint64_t u64;
69};
70
71/** Format of the allocated buffer */
72enum gbm_bo_format {
73 /** RGB with 8 bits per channel in a 32 bit value */
Yuly Novikov96c7a3b2015-12-08 22:48:29 -050074 GBM_BO_FORMAT_XRGB8888,
Stéphane Marchesin25a26062014-09-12 16:18:59 -070075 /** ARGB with 8 bits per channel in a 32 bit value */
76 GBM_BO_FORMAT_ARGB8888
77};
78
79#define __gbm_fourcc_code(a,b,c,d) ((uint32_t)(a) | ((uint32_t)(b) << 8) | \
80 ((uint32_t)(c) << 16) | ((uint32_t)(d) << 24))
81
82#define GBM_FORMAT_BIG_ENDIAN (1<<31) /* format is big endian instead of little endian */
83
84/* color index */
85#define GBM_FORMAT_C8 __gbm_fourcc_code('C', '8', ' ', ' ') /* [7:0] C */
86
Dongseong Hwangb26f26d2016-04-07 14:51:29 +030087/* 8 bpp Red */
88#define GBM_FORMAT_R8 __gbm_fourcc_code('R', '8', ' ', ' ') /* [7:0] R */
89
90/* 16 bpp RG */
91#define GBM_FORMAT_RG88 __gbm_fourcc_code('R', 'G', '8', '8') /* [15:0] R:G 8:8 little endian */
92#define GBM_FORMAT_GR88 __gbm_fourcc_code('G', 'R', '8', '8') /* [15:0] G:R 8:8 little endian */
93
Stéphane Marchesin25a26062014-09-12 16:18:59 -070094/* 8 bpp RGB */
95#define GBM_FORMAT_RGB332 __gbm_fourcc_code('R', 'G', 'B', '8') /* [7:0] R:G:B 3:3:2 */
96#define GBM_FORMAT_BGR233 __gbm_fourcc_code('B', 'G', 'R', '8') /* [7:0] B:G:R 2:3:3 */
97
98/* 16 bpp RGB */
99#define GBM_FORMAT_XRGB4444 __gbm_fourcc_code('X', 'R', '1', '2') /* [15:0] x:R:G:B 4:4:4:4 little endian */
100#define GBM_FORMAT_XBGR4444 __gbm_fourcc_code('X', 'B', '1', '2') /* [15:0] x:B:G:R 4:4:4:4 little endian */
101#define GBM_FORMAT_RGBX4444 __gbm_fourcc_code('R', 'X', '1', '2') /* [15:0] R:G:B:x 4:4:4:4 little endian */
102#define GBM_FORMAT_BGRX4444 __gbm_fourcc_code('B', 'X', '1', '2') /* [15:0] B:G:R:x 4:4:4:4 little endian */
103
104#define GBM_FORMAT_ARGB4444 __gbm_fourcc_code('A', 'R', '1', '2') /* [15:0] A:R:G:B 4:4:4:4 little endian */
105#define GBM_FORMAT_ABGR4444 __gbm_fourcc_code('A', 'B', '1', '2') /* [15:0] A:B:G:R 4:4:4:4 little endian */
106#define GBM_FORMAT_RGBA4444 __gbm_fourcc_code('R', 'A', '1', '2') /* [15:0] R:G:B:A 4:4:4:4 little endian */
107#define GBM_FORMAT_BGRA4444 __gbm_fourcc_code('B', 'A', '1', '2') /* [15:0] B:G:R:A 4:4:4:4 little endian */
108
109#define GBM_FORMAT_XRGB1555 __gbm_fourcc_code('X', 'R', '1', '5') /* [15:0] x:R:G:B 1:5:5:5 little endian */
110#define GBM_FORMAT_XBGR1555 __gbm_fourcc_code('X', 'B', '1', '5') /* [15:0] x:B:G:R 1:5:5:5 little endian */
111#define GBM_FORMAT_RGBX5551 __gbm_fourcc_code('R', 'X', '1', '5') /* [15:0] R:G:B:x 5:5:5:1 little endian */
112#define GBM_FORMAT_BGRX5551 __gbm_fourcc_code('B', 'X', '1', '5') /* [15:0] B:G:R:x 5:5:5:1 little endian */
113
114#define GBM_FORMAT_ARGB1555 __gbm_fourcc_code('A', 'R', '1', '5') /* [15:0] A:R:G:B 1:5:5:5 little endian */
115#define GBM_FORMAT_ABGR1555 __gbm_fourcc_code('A', 'B', '1', '5') /* [15:0] A:B:G:R 1:5:5:5 little endian */
116#define GBM_FORMAT_RGBA5551 __gbm_fourcc_code('R', 'A', '1', '5') /* [15:0] R:G:B:A 5:5:5:1 little endian */
117#define GBM_FORMAT_BGRA5551 __gbm_fourcc_code('B', 'A', '1', '5') /* [15:0] B:G:R:A 5:5:5:1 little endian */
118
119#define GBM_FORMAT_RGB565 __gbm_fourcc_code('R', 'G', '1', '6') /* [15:0] R:G:B 5:6:5 little endian */
120#define GBM_FORMAT_BGR565 __gbm_fourcc_code('B', 'G', '1', '6') /* [15:0] B:G:R 5:6:5 little endian */
121
122/* 24 bpp RGB */
123#define GBM_FORMAT_RGB888 __gbm_fourcc_code('R', 'G', '2', '4') /* [23:0] R:G:B little endian */
124#define GBM_FORMAT_BGR888 __gbm_fourcc_code('B', 'G', '2', '4') /* [23:0] B:G:R little endian */
125
126/* 32 bpp RGB */
127#define GBM_FORMAT_XRGB8888 __gbm_fourcc_code('X', 'R', '2', '4') /* [31:0] x:R:G:B 8:8:8:8 little endian */
128#define GBM_FORMAT_XBGR8888 __gbm_fourcc_code('X', 'B', '2', '4') /* [31:0] x:B:G:R 8:8:8:8 little endian */
129#define GBM_FORMAT_RGBX8888 __gbm_fourcc_code('R', 'X', '2', '4') /* [31:0] R:G:B:x 8:8:8:8 little endian */
130#define GBM_FORMAT_BGRX8888 __gbm_fourcc_code('B', 'X', '2', '4') /* [31:0] B:G:R:x 8:8:8:8 little endian */
131
132#define GBM_FORMAT_ARGB8888 __gbm_fourcc_code('A', 'R', '2', '4') /* [31:0] A:R:G:B 8:8:8:8 little endian */
133#define GBM_FORMAT_ABGR8888 __gbm_fourcc_code('A', 'B', '2', '4') /* [31:0] A:B:G:R 8:8:8:8 little endian */
134#define GBM_FORMAT_RGBA8888 __gbm_fourcc_code('R', 'A', '2', '4') /* [31:0] R:G:B:A 8:8:8:8 little endian */
135#define GBM_FORMAT_BGRA8888 __gbm_fourcc_code('B', 'A', '2', '4') /* [31:0] B:G:R:A 8:8:8:8 little endian */
136
137#define GBM_FORMAT_XRGB2101010 __gbm_fourcc_code('X', 'R', '3', '0') /* [31:0] x:R:G:B 2:10:10:10 little endian */
138#define GBM_FORMAT_XBGR2101010 __gbm_fourcc_code('X', 'B', '3', '0') /* [31:0] x:B:G:R 2:10:10:10 little endian */
139#define GBM_FORMAT_RGBX1010102 __gbm_fourcc_code('R', 'X', '3', '0') /* [31:0] R:G:B:x 10:10:10:2 little endian */
140#define GBM_FORMAT_BGRX1010102 __gbm_fourcc_code('B', 'X', '3', '0') /* [31:0] B:G:R:x 10:10:10:2 little endian */
141
142#define GBM_FORMAT_ARGB2101010 __gbm_fourcc_code('A', 'R', '3', '0') /* [31:0] A:R:G:B 2:10:10:10 little endian */
143#define GBM_FORMAT_ABGR2101010 __gbm_fourcc_code('A', 'B', '3', '0') /* [31:0] A:B:G:R 2:10:10:10 little endian */
144#define GBM_FORMAT_RGBA1010102 __gbm_fourcc_code('R', 'A', '3', '0') /* [31:0] R:G:B:A 10:10:10:2 little endian */
145#define GBM_FORMAT_BGRA1010102 __gbm_fourcc_code('B', 'A', '3', '0') /* [31:0] B:G:R:A 10:10:10:2 little endian */
146
147/* packed YCbCr */
148#define GBM_FORMAT_YUYV __gbm_fourcc_code('Y', 'U', 'Y', 'V') /* [31:0] Cr0:Y1:Cb0:Y0 8:8:8:8 little endian */
149#define GBM_FORMAT_YVYU __gbm_fourcc_code('Y', 'V', 'Y', 'U') /* [31:0] Cb0:Y1:Cr0:Y0 8:8:8:8 little endian */
150#define GBM_FORMAT_UYVY __gbm_fourcc_code('U', 'Y', 'V', 'Y') /* [31:0] Y1:Cr0:Y0:Cb0 8:8:8:8 little endian */
151#define GBM_FORMAT_VYUY __gbm_fourcc_code('V', 'Y', 'U', 'Y') /* [31:0] Y1:Cb0:Y0:Cr0 8:8:8:8 little endian */
152
153#define GBM_FORMAT_AYUV __gbm_fourcc_code('A', 'Y', 'U', 'V') /* [31:0] A:Y:Cb:Cr 8:8:8:8 little endian */
154
155/*
156 * 2 plane YCbCr
157 * index 0 = Y plane, [7:0] Y
158 * index 1 = Cr:Cb plane, [15:0] Cr:Cb little endian
159 * or
160 * index 1 = Cb:Cr plane, [15:0] Cb:Cr little endian
161 */
162#define GBM_FORMAT_NV12 __gbm_fourcc_code('N', 'V', '1', '2') /* 2x2 subsampled Cr:Cb plane */
163#define GBM_FORMAT_NV21 __gbm_fourcc_code('N', 'V', '2', '1') /* 2x2 subsampled Cb:Cr plane */
164#define GBM_FORMAT_NV16 __gbm_fourcc_code('N', 'V', '1', '6') /* 2x1 subsampled Cr:Cb plane */
165#define GBM_FORMAT_NV61 __gbm_fourcc_code('N', 'V', '6', '1') /* 2x1 subsampled Cb:Cr plane */
166
167/*
168 * 3 plane YCbCr
169 * index 0: Y plane, [7:0] Y
170 * index 1: Cb plane, [7:0] Cb
171 * index 2: Cr plane, [7:0] Cr
172 * or
173 * index 1: Cr plane, [7:0] Cr
174 * index 2: Cb plane, [7:0] Cb
175 */
176#define GBM_FORMAT_YUV410 __gbm_fourcc_code('Y', 'U', 'V', '9') /* 4x4 subsampled Cb (1) and Cr (2) planes */
177#define GBM_FORMAT_YVU410 __gbm_fourcc_code('Y', 'V', 'U', '9') /* 4x4 subsampled Cr (1) and Cb (2) planes */
178#define GBM_FORMAT_YUV411 __gbm_fourcc_code('Y', 'U', '1', '1') /* 4x1 subsampled Cb (1) and Cr (2) planes */
179#define GBM_FORMAT_YVU411 __gbm_fourcc_code('Y', 'V', '1', '1') /* 4x1 subsampled Cr (1) and Cb (2) planes */
180#define GBM_FORMAT_YUV420 __gbm_fourcc_code('Y', 'U', '1', '2') /* 2x2 subsampled Cb (1) and Cr (2) planes */
181#define GBM_FORMAT_YVU420 __gbm_fourcc_code('Y', 'V', '1', '2') /* 2x2 subsampled Cr (1) and Cb (2) planes */
182#define GBM_FORMAT_YUV422 __gbm_fourcc_code('Y', 'U', '1', '6') /* 2x1 subsampled Cb (1) and Cr (2) planes */
183#define GBM_FORMAT_YVU422 __gbm_fourcc_code('Y', 'V', '1', '6') /* 2x1 subsampled Cr (1) and Cb (2) planes */
184#define GBM_FORMAT_YUV444 __gbm_fourcc_code('Y', 'U', '2', '4') /* non-subsampled Cb (1) and Cr (2) planes */
185#define GBM_FORMAT_YVU444 __gbm_fourcc_code('Y', 'V', '2', '4') /* non-subsampled Cr (1) and Cb (2) planes */
186
187
188/**
189 * Flags to indicate the intended use for the buffer - these are passed into
190 * gbm_bo_create(). The caller must set the union of all the flags that are
191 * appropriate
192 *
193 * \sa Use gbm_device_is_format_supported() to check if the combination of format
194 * and use flags are supported
195 */
196enum gbm_bo_flags {
197 /**
198 * Buffer is going to be presented to the screen using an API such as KMS
199 */
200 GBM_BO_USE_SCANOUT = (1 << 0),
201 /**
202 * Buffer is going to be used as cursor
203 */
204 GBM_BO_USE_CURSOR = (1 << 1),
205 /**
206 * Deprecated
207 */
208 GBM_BO_USE_CURSOR_64X64 = GBM_BO_USE_CURSOR,
209 /**
210 * Buffer is to be used for rendering - for example it is going to be used
211 * as the storage for a color buffer
212 */
213 GBM_BO_USE_RENDERING = (1 << 2),
214 /**
Zach Reizner5c227772016-03-08 10:22:40 -0800215 * Deprecated
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700216 */
217 GBM_BO_USE_WRITE = (1 << 3),
Zach Reizner1e229392016-02-25 10:45:44 -0800218 /**
219 * Buffer is guaranteed to be laid out linearly in memory. That is, the
220 * buffer is laid out as an array with 'height' blocks, each block with
221 * length 'stride'. Each stride is in the same order as the rows of the
222 * buffer.
223 */
224 GBM_BO_USE_LINEAR = (1 << 4),
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700225};
226
227int
228gbm_device_get_fd(struct gbm_device *gbm);
229
230const char *
231gbm_device_get_backend_name(struct gbm_device *gbm);
232
233int
234gbm_device_is_format_supported(struct gbm_device *gbm,
235 uint32_t format, uint32_t usage);
236
237void
238gbm_device_destroy(struct gbm_device *gbm);
239
240struct gbm_device *
241gbm_create_device(int fd);
242
243struct gbm_bo *
244gbm_bo_create(struct gbm_device *gbm,
245 uint32_t width, uint32_t height,
246 uint32_t format, uint32_t flags);
247
248#define GBM_BO_IMPORT_WL_BUFFER 0x5501
249#define GBM_BO_IMPORT_EGL_IMAGE 0x5502
250#define GBM_BO_IMPORT_FD 0x5503
251
252struct gbm_import_fd_data {
253 int fd;
254 uint32_t width;
255 uint32_t height;
256 uint32_t stride;
257 uint32_t format;
258};
259
260struct gbm_bo *
261gbm_bo_import(struct gbm_device *gbm, uint32_t type,
262 void *buffer, uint32_t usage);
263
264uint32_t
265gbm_bo_get_width(struct gbm_bo *bo);
266
267uint32_t
268gbm_bo_get_height(struct gbm_bo *bo);
269
270uint32_t
271gbm_bo_get_stride(struct gbm_bo *bo);
272
Lauri Peltonen7842d8f2014-12-17 23:01:37 -0800273/* Tegra bringup hack to pass tiling parameters at EGLImage creation. */
274uint32_t
275gbm_bo_get_stride_or_tiling(struct gbm_bo *bo);
276
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700277uint32_t
278gbm_bo_get_format(struct gbm_bo *bo);
279
280struct gbm_device *
281gbm_bo_get_device(struct gbm_bo *bo);
282
283union gbm_bo_handle
284gbm_bo_get_handle(struct gbm_bo *bo);
285
286int
287gbm_bo_get_fd(struct gbm_bo *bo);
288
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500289size_t
290gbm_bo_get_num_planes(struct gbm_bo *bo);
291
292union gbm_bo_handle
293gbm_bo_get_plane_handle(struct gbm_bo *bo, size_t plane);
294
295int
296gbm_bo_get_plane_fd(struct gbm_bo *bo, size_t plane);
297
298uint32_t
299gbm_bo_get_plane_offset(struct gbm_bo *bo, size_t plane);
300
301uint32_t
302gbm_bo_get_plane_size(struct gbm_bo *bo, size_t plane);
303
304uint32_t
305gbm_bo_get_plane_stride(struct gbm_bo *bo, size_t plane);
306
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700307void
308gbm_bo_set_user_data(struct gbm_bo *bo, void *data,
309 void (*destroy_user_data)(struct gbm_bo *, void *));
310
311void *
312gbm_bo_get_user_data(struct gbm_bo *bo);
313
314void
315gbm_bo_destroy(struct gbm_bo *bo);
316
317struct gbm_surface *
318gbm_surface_create(struct gbm_device *gbm,
319 uint32_t width, uint32_t height,
320 uint32_t format, uint32_t flags);
321
322struct gbm_bo *
323gbm_surface_lock_front_buffer(struct gbm_surface *surface);
324
325void
326gbm_surface_release_buffer(struct gbm_surface *surface, struct gbm_bo *bo);
327
328int
329gbm_surface_has_free_buffers(struct gbm_surface *surface);
330
331void
332gbm_surface_destroy(struct gbm_surface *surface);
333
334#ifdef __cplusplus
335}
336#endif
337
338#endif