blob: 891526f3bec2e46c151deaa112d30b18922bdd10 [file] [log] [blame]
Chia-I Wu2ec32d42011-06-12 16:21:30 +08001/*
2 * Copyright (C) 2010-2011 Chia-I Wu <olvaffe@gmail.com>
3 * Copyright (C) 2010-2011 LunarG Inc.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice shall be included
13 * in all copies or substantial portions of the Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
22 */
23
24#ifndef _GRALLOC_DRM_H_
25#define _GRALLOC_DRM_H_
26
27#include <hardware/gralloc.h>
Tapani Pälli45a94512012-12-14 10:43:39 +020028#include "gralloc_drm_formats.h"
Chia-I Wu2ec32d42011-06-12 16:21:30 +080029
Chih-Wei Huang4b3db542013-04-11 10:41:50 +030030#ifdef __cplusplus
31extern "C" {
32#endif
33
Chia-I Wu2ec32d42011-06-12 16:21:30 +080034struct gralloc_drm_t;
35struct gralloc_drm_bo_t;
36
37struct gralloc_drm_t *gralloc_drm_create(void);
38void gralloc_drm_destroy(struct gralloc_drm_t *drm);
39
40int gralloc_drm_get_fd(struct gralloc_drm_t *drm);
41int gralloc_drm_get_magic(struct gralloc_drm_t *drm, int32_t *magic);
42int gralloc_drm_auth_magic(struct gralloc_drm_t *drm, int32_t magic);
43int gralloc_drm_set_master(struct gralloc_drm_t *drm);
44void gralloc_drm_drop_master(struct gralloc_drm_t *drm);
45
46int gralloc_drm_init_kms(struct gralloc_drm_t *drm);
Chia-I Wud5c39c92011-07-31 17:09:11 +090047void gralloc_drm_fini_kms(struct gralloc_drm_t *drm);
48int gralloc_drm_is_kms_initialized(struct gralloc_drm_t *drm);
49
Chia-I Wu2ec32d42011-06-12 16:21:30 +080050void gralloc_drm_get_kms_info(struct gralloc_drm_t *drm, struct framebuffer_device_t *fb);
51int gralloc_drm_is_kms_pipelined(struct gralloc_drm_t *drm);
52
53static inline int gralloc_drm_get_bpp(int format)
54{
55 int bpp;
56
57 switch (format) {
58 case HAL_PIXEL_FORMAT_RGBA_8888:
59 case HAL_PIXEL_FORMAT_RGBX_8888:
60 case HAL_PIXEL_FORMAT_BGRA_8888:
61 bpp = 4;
62 break;
63 case HAL_PIXEL_FORMAT_RGB_888:
64 bpp = 3;
65 break;
66 case HAL_PIXEL_FORMAT_RGB_565:
67 case HAL_PIXEL_FORMAT_RGBA_5551:
68 case HAL_PIXEL_FORMAT_RGBA_4444:
Chia-I Wub65a3f82011-10-27 18:01:23 +080069 case HAL_PIXEL_FORMAT_YCbCr_422_I:
Chia-I Wu2ec32d42011-06-12 16:21:30 +080070 bpp = 2;
71 break;
Chia-I Wub65a3f82011-10-27 18:01:23 +080072 /* planar; only Y is considered */
73 case HAL_PIXEL_FORMAT_YV12:
Tapani Pälli45a94512012-12-14 10:43:39 +020074 case HAL_PIXEL_FORMAT_DRM_NV12:
Chia-I Wub65a3f82011-10-27 18:01:23 +080075 case HAL_PIXEL_FORMAT_YCbCr_422_SP:
76 case HAL_PIXEL_FORMAT_YCrCb_420_SP:
77 bpp = 1;
78 break;
Chia-I Wu2ec32d42011-06-12 16:21:30 +080079 default:
80 bpp = 0;
81 break;
82 }
83
84 return bpp;
85}
86
Chia-I Wub65a3f82011-10-27 18:01:23 +080087static inline void gralloc_drm_align_geometry(int format, int *width, int *height)
88{
89 int align_w = 1, align_h = 1, extra_height_div = 0;
90
91 switch (format) {
Tapani Pälli45a94512012-12-14 10:43:39 +020092 case HAL_PIXEL_FORMAT_DRM_NV12:
Chia-I Wub65a3f82011-10-27 18:01:23 +080093 case HAL_PIXEL_FORMAT_YV12:
94 align_w = 32;
95 align_h = 2;
96 extra_height_div = 2;
97 break;
98 case HAL_PIXEL_FORMAT_YCbCr_422_SP:
99 align_w = 2;
100 extra_height_div = 1;
101 break;
102 case HAL_PIXEL_FORMAT_YCrCb_420_SP:
103 align_w = 2;
104 align_h = 2;
105 extra_height_div = 2;
106 break;
107 case HAL_PIXEL_FORMAT_YCbCr_422_I:
108 align_w = 2;
109 break;
110 }
111
112 *width = (*width + align_w - 1) & ~(align_w - 1);
113 *height = (*height + align_h - 1) & ~(align_h - 1);
114
115 if (extra_height_div)
116 *height += *height / extra_height_div;
117}
118
Chia-I Wu8542de32011-07-31 16:35:21 +0900119int gralloc_drm_handle_register(buffer_handle_t handle, struct gralloc_drm_t *drm);
120int gralloc_drm_handle_unregister(buffer_handle_t handle);
121
Chia-I Wu2ec32d42011-06-12 16:21:30 +0800122struct gralloc_drm_bo_t *gralloc_drm_bo_create(struct gralloc_drm_t *drm, int width, int height, int format, int usage);
Tapani Pällia86ecd92012-08-01 16:06:00 +0300123void gralloc_drm_bo_decref(struct gralloc_drm_bo_t *bo);
Chia-I Wu2ec32d42011-06-12 16:21:30 +0800124
Chia-I Wu8542de32011-07-31 16:35:21 +0900125struct gralloc_drm_bo_t *gralloc_drm_bo_from_handle(buffer_handle_t handle);
126buffer_handle_t gralloc_drm_bo_get_handle(struct gralloc_drm_bo_t *bo, int *stride);
Tapani Pälli421d4ec2013-01-15 13:58:57 +0200127int gralloc_drm_get_gem_handle(buffer_handle_t handle);
Tapani Pällia8f03342013-01-18 15:01:43 +0200128void gralloc_drm_resolve_format(buffer_handle_t _handle, uint32_t *pitches, uint32_t *offsets, uint32_t *handles);
Tapani Pälli73e275e2013-01-21 14:58:33 +0200129unsigned int planes_for_format(struct gralloc_drm_t *drm, int hal_format);
Chia-I Wu2fc5da42011-07-29 19:57:04 +0900130
Chia-I Wu25e04132011-07-29 20:43:12 +0900131int gralloc_drm_bo_lock(struct gralloc_drm_bo_t *bo, int x, int y, int w, int h, int enable_write, void **addr);
132void gralloc_drm_bo_unlock(struct gralloc_drm_bo_t *bo);
Chia-I Wu2ec32d42011-06-12 16:21:30 +0800133
134int gralloc_drm_bo_need_fb(const struct gralloc_drm_bo_t *bo);
135int gralloc_drm_bo_add_fb(struct gralloc_drm_bo_t *bo);
136void gralloc_drm_bo_rm_fb(struct gralloc_drm_bo_t *bo);
137int gralloc_drm_bo_post(struct gralloc_drm_bo_t *bo);
138
Chih-Wei Huang4b3db542013-04-11 10:41:50 +0300139#ifdef __cplusplus
140}
141#endif
Chia-I Wu2ec32d42011-06-12 16:21:30 +0800142#endif /* _GRALLOC_DRM_H_ */