blob: 8ca474b39f3460ca4fdf6a8693311239e841a063 [file] [log] [blame]
Mathias Agopiane291f712012-05-13 22:49:06 -07001/*
2 * Copyright (C) 2010 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef ANDROID_INCLUDE_HARDWARE_HWCOMPOSER_DEFS_H
18#define ANDROID_INCLUDE_HARDWARE_HWCOMPOSER_DEFS_H
19
20#include <stdint.h>
21#include <sys/cdefs.h>
22
23#include <hardware/gralloc.h>
24#include <hardware/hardware.h>
25#include <cutils/native_handle.h>
26
27__BEGIN_DECLS
28
Dan Stoza4e9221b2015-09-02 15:43:39 -070029/* Shared by HWC1 and HWC2 */
Mathias Agopiane291f712012-05-13 22:49:06 -070030
Jesse Hall3f5b5222012-08-28 15:23:58 -070031#define HWC_HEADER_VERSION 1
Mathias Agopiane291f712012-05-13 22:49:06 -070032
Jesse Hall903811c2012-09-04 11:42:09 -070033#define HWC_MODULE_API_VERSION_0_1 HARDWARE_MODULE_API_VERSION(0, 1)
Jesse Hall3f5b5222012-08-28 15:23:58 -070034
Jesse Hall3f5b5222012-08-28 15:23:58 -070035#define HWC_DEVICE_API_VERSION_1_0 HARDWARE_DEVICE_API_VERSION_2(1, 0, HWC_HEADER_VERSION)
36#define HWC_DEVICE_API_VERSION_1_1 HARDWARE_DEVICE_API_VERSION_2(1, 1, HWC_HEADER_VERSION)
37#define HWC_DEVICE_API_VERSION_1_2 HARDWARE_DEVICE_API_VERSION_2(1, 2, HWC_HEADER_VERSION)
Mathias Agopian3b4732c2013-07-09 19:55:41 -070038#define HWC_DEVICE_API_VERSION_1_3 HARDWARE_DEVICE_API_VERSION_2(1, 3, HWC_HEADER_VERSION)
Jesse Hall8c79c082014-02-13 15:38:56 -080039#define HWC_DEVICE_API_VERSION_1_4 HARDWARE_DEVICE_API_VERSION_2(1, 4, HWC_HEADER_VERSION)
Dan Stoza811445a2015-02-12 10:11:21 -080040#define HWC_DEVICE_API_VERSION_1_5 HARDWARE_DEVICE_API_VERSION_2(1, 5, HWC_HEADER_VERSION)
Mathias Agopiane291f712012-05-13 22:49:06 -070041
Dan Stoza4e9221b2015-09-02 15:43:39 -070042#define HWC_DEVICE_API_VERSION_2_0 HARDWARE_DEVICE_API_VERSION_2(2, 0, HWC_HEADER_VERSION)
43
44/**
45 * The id of this module
46 */
47#define HWC_HARDWARE_MODULE_ID "hwcomposer"
48
49/**
50 * Name of the sensors device to open
51 */
52#define HWC_HARDWARE_COMPOSER "composer"
53
54typedef struct hwc_color {
55 uint8_t r;
56 uint8_t g;
57 uint8_t b;
58 uint8_t a;
59} hwc_color_t;
60
Peiyong Linfd05d132018-01-22 12:23:25 -080061typedef struct hwc_float_color {
62 float r;
63 float g;
64 float b;
65 float a;
66} hwc_float_color_t;
67
Dan Stoza4e9221b2015-09-02 15:43:39 -070068typedef struct hwc_frect {
69 float left;
70 float top;
71 float right;
72 float bottom;
73} hwc_frect_t;
74
75typedef struct hwc_rect {
76 int left;
77 int top;
78 int right;
79 int bottom;
80} hwc_rect_t;
81
82typedef struct hwc_region {
83 size_t numRects;
84 hwc_rect_t const* rects;
85} hwc_region_t;
86
87/*
88 * hwc_layer_t::transform values
89 */
90typedef enum {
91 /* flip source image horizontally */
92 HWC_TRANSFORM_FLIP_H = HAL_TRANSFORM_FLIP_H,
93 /* flip source image vertically */
94 HWC_TRANSFORM_FLIP_V = HAL_TRANSFORM_FLIP_V,
95 /* rotate source image 90 degrees clock-wise */
96 HWC_TRANSFORM_ROT_90 = HAL_TRANSFORM_ROT_90,
97 /* rotate source image 180 degrees */
98 HWC_TRANSFORM_ROT_180 = HAL_TRANSFORM_ROT_180,
99 /* rotate source image 270 degrees clock-wise */
100 HWC_TRANSFORM_ROT_270 = HAL_TRANSFORM_ROT_270,
101 /* flip source image horizontally, the rotate 90 degrees clock-wise */
102 HWC_TRANSFORM_FLIP_H_ROT_90 = HAL_TRANSFORM_FLIP_H | HAL_TRANSFORM_ROT_90,
103 /* flip source image vertically, the rotate 90 degrees clock-wise */
104 HWC_TRANSFORM_FLIP_V_ROT_90 = HAL_TRANSFORM_FLIP_V | HAL_TRANSFORM_ROT_90,
105} hwc_transform_t;
106
107/*******************************************************************************
108 * Beyond this point are things only used by HWC1, which should be ignored when
109 * implementing a HWC2 device
110 ******************************************************************************/
111
Mathias Agopiane291f712012-05-13 22:49:06 -0700112enum {
113 /* hwc_composer_device_t::set failed in EGL */
114 HWC_EGL_ERROR = -1
115};
116
117/*
118 * hwc_layer_t::hints values
119 * Hints are set by the HAL and read by SurfaceFlinger
120 */
121enum {
122 /*
123 * HWC can set the HWC_HINT_TRIPLE_BUFFER hint to indicate to SurfaceFlinger
124 * that it should triple buffer this layer. Typically HWC does this when
125 * the layer will be unavailable for use for an extended period of time,
126 * e.g. if the display will be fetching data directly from the layer and
127 * the layer can not be modified until after the next set().
128 */
129 HWC_HINT_TRIPLE_BUFFER = 0x00000001,
130
131 /*
132 * HWC sets HWC_HINT_CLEAR_FB to tell SurfaceFlinger that it should clear the
133 * framebuffer with transparent pixels where this layer would be.
134 * SurfaceFlinger will only honor this flag when the layer has no blending
135 *
136 */
137 HWC_HINT_CLEAR_FB = 0x00000002
138};
139
140/*
141 * hwc_layer_t::flags values
142 * Flags are set by SurfaceFlinger and read by the HAL
143 */
144enum {
145 /*
Fabien Sanglarde203b362016-11-16 15:01:48 -0800146 * HWC_SKIP_LAYER is set by SurfaceFlinger to indicate that the HAL
Mathias Agopiane291f712012-05-13 22:49:06 -0700147 * shall not consider this layer for composition as it will be handled
Fabien Sanglarde203b362016-11-16 15:01:48 -0800148 * by SurfaceFlinger (just as if compositionType was set to HWC_FRAMEBUFFER).
Mathias Agopiane291f712012-05-13 22:49:06 -0700149 */
150 HWC_SKIP_LAYER = 0x00000001,
Riley Andrews4a6788b2014-06-30 15:55:55 -0700151
152 /*
153 * HWC_IS_CURSOR_LAYER is set by surfaceflinger to indicate that this
154 * layer is being used as a cursor on this particular display, and that
155 * surfaceflinger can potentially perform asynchronous position updates for
156 * this layer. If a call to prepare() returns HWC_CURSOR_OVERLAY for the
157 * composition type of this layer, then the hwcomposer will allow async
158 * position updates to this layer via setCursorPositionAsync().
159 */
160 HWC_IS_CURSOR_LAYER = 0x00000002
Mathias Agopiane291f712012-05-13 22:49:06 -0700161};
162
163/*
164 * hwc_layer_t::compositionType values
165 */
166enum {
167 /* this layer is to be drawn into the framebuffer by SurfaceFlinger */
168 HWC_FRAMEBUFFER = 0,
169
170 /* this layer will be handled in the HWC */
171 HWC_OVERLAY = 1,
172
173 /* this is the background layer. it's used to set the background color.
174 * there is only a single background layer */
175 HWC_BACKGROUND = 2,
Jesse Halld18c83f2012-08-16 16:21:13 -0700176
177 /* this layer holds the result of compositing the HWC_FRAMEBUFFER layers.
178 * Added in HWC_DEVICE_API_VERSION_1_1. */
179 HWC_FRAMEBUFFER_TARGET = 3,
Jesse Hall8c79c082014-02-13 15:38:56 -0800180
181 /* this layer's contents are taken from a sideband buffer stream.
182 * Added in HWC_DEVICE_API_VERSION_1_4. */
183 HWC_SIDEBAND = 4,
Mathias Agopiane291f712012-05-13 22:49:06 -0700184
Riley Andrews4a6788b2014-06-30 15:55:55 -0700185 /* this layer's composition will be handled by hwcomposer by dedicated
186 cursor overlay hardware. hwcomposer will also all async position updates
187 of this layer outside of the normal prepare()/set() loop. Added in
188 HWC_DEVICE_API_VERSION_1_4. */
189 HWC_CURSOR_OVERLAY = 5
190 };
Mathias Agopiane291f712012-05-13 22:49:06 -0700191/*
192 * hwc_layer_t::blending values
193 */
194enum {
195 /* no blending */
196 HWC_BLENDING_NONE = 0x0100,
197
198 /* ONE / ONE_MINUS_SRC_ALPHA */
199 HWC_BLENDING_PREMULT = 0x0105,
200
201 /* SRC_ALPHA / ONE_MINUS_SRC_ALPHA */
202 HWC_BLENDING_COVERAGE = 0x0405
203};
204
Mathias Agopiane291f712012-05-13 22:49:06 -0700205/* attributes queriable with query() */
206enum {
207 /*
Jesse Hall2c137592012-08-29 10:37:37 -0700208 * Must return 1 if the background layer is supported, 0 otherwise.
Mathias Agopiane291f712012-05-13 22:49:06 -0700209 */
210 HWC_BACKGROUND_LAYER_SUPPORTED = 0,
211
212 /*
Jesse Hall2c137592012-08-29 10:37:37 -0700213 * Returns the vsync period in nanoseconds.
214 *
215 * This query is not used for HWC_DEVICE_API_VERSION_1_1 and later.
216 * Instead, the per-display attribute HWC_DISPLAY_VSYNC_PERIOD is used.
Mathias Agopiane291f712012-05-13 22:49:06 -0700217 */
218 HWC_VSYNC_PERIOD = 1,
Jesse Hall43b51d92012-08-22 11:42:57 -0700219
220 /*
Jesse Hall2c137592012-08-29 10:37:37 -0700221 * Availability: HWC_DEVICE_API_VERSION_1_1
222 * Returns a mask of supported display types.
Jesse Hall43b51d92012-08-22 11:42:57 -0700223 */
224 HWC_DISPLAY_TYPES_SUPPORTED = 2,
Mathias Agopiane291f712012-05-13 22:49:06 -0700225};
226
Jesse Hall2c137592012-08-29 10:37:37 -0700227/* display attributes returned by getDisplayAttributes() */
228enum {
229 /* Indicates the end of an attribute list */
230 HWC_DISPLAY_NO_ATTRIBUTE = 0,
231
232 /* The vsync period in nanoseconds */
233 HWC_DISPLAY_VSYNC_PERIOD = 1,
234
235 /* The number of pixels in the horizontal and vertical directions. */
Jesse Hall7cb03d72012-09-06 16:57:12 -0700236 HWC_DISPLAY_WIDTH = 2,
237 HWC_DISPLAY_HEIGHT = 3,
Jesse Hall2c137592012-08-29 10:37:37 -0700238
239 /* The number of pixels per thousand inches of this configuration.
240 *
241 * Scaling DPI by 1000 allows it to be stored in an int without losing
242 * too much precision.
243 *
244 * If the DPI for a configuration is unavailable or the HWC implementation
245 * considers it unreliable, it should set these attributes to zero.
246 */
247 HWC_DISPLAY_DPI_X = 4,
248 HWC_DISPLAY_DPI_Y = 5,
Dan Stoza95f01792015-08-31 12:08:57 -0700249
250 /* Indicates which of the vendor-defined color transforms is provided by
251 * this configuration. */
252 HWC_DISPLAY_COLOR_TRANSFORM = 6,
Jesse Hall2c137592012-08-29 10:37:37 -0700253};
254
Mathias Agopiane291f712012-05-13 22:49:06 -0700255/* Allowed events for hwc_methods::eventControl() */
256enum {
257 HWC_EVENT_VSYNC = 0
258};
259
Jesse Hall43b51d92012-08-22 11:42:57 -0700260/* Display types and associated mask bits. */
261enum {
262 HWC_DISPLAY_PRIMARY = 0,
263 HWC_DISPLAY_EXTERNAL = 1, // HDMI, DP, etc.
Jesse Hallfc0ff2a2013-08-16 11:13:36 -0700264 HWC_DISPLAY_VIRTUAL = 2,
265
266 HWC_NUM_PHYSICAL_DISPLAY_TYPES = 2,
267 HWC_NUM_DISPLAY_TYPES = 3,
Jesse Hall43b51d92012-08-22 11:42:57 -0700268};
269
270enum {
271 HWC_DISPLAY_PRIMARY_BIT = 1 << HWC_DISPLAY_PRIMARY,
272 HWC_DISPLAY_EXTERNAL_BIT = 1 << HWC_DISPLAY_EXTERNAL,
Jesse Hallfc0ff2a2013-08-16 11:13:36 -0700273 HWC_DISPLAY_VIRTUAL_BIT = 1 << HWC_DISPLAY_VIRTUAL,
Jesse Hall43b51d92012-08-22 11:42:57 -0700274};
275
Prashant Malani02b31982014-05-25 20:41:20 -0700276/* Display power modes */
277enum {
Jeff Brown842b9062014-07-17 20:01:59 -0700278 /* The display is turned off (blanked). */
Prashant Malani02b31982014-05-25 20:41:20 -0700279 HWC_POWER_MODE_OFF = 0,
Jeff Brown842b9062014-07-17 20:01:59 -0700280 /* The display is turned on and configured in a low power state
281 * that is suitable for presenting ambient information to the user,
282 * possibly with lower fidelity than normal but greater efficiency. */
Prashant Malani02b31982014-05-25 20:41:20 -0700283 HWC_POWER_MODE_DOZE = 1,
Jeff Brown842b9062014-07-17 20:01:59 -0700284 /* The display is turned on normally. */
Prashant Malani02b31982014-05-25 20:41:20 -0700285 HWC_POWER_MODE_NORMAL = 2,
Jeff Brown842b9062014-07-17 20:01:59 -0700286 /* The display is configured as in HWC_POWER_MODE_DOZE but may
287 * stop applying frame buffer updates from the graphics subsystem.
288 * This power mode is effectively a hint from the doze dream to
289 * tell the hardware that it is done drawing to the display for the
290 * time being and that the display should remain on in a low power
291 * state and continue showing its current contents indefinitely
292 * until the mode changes.
293 *
294 * This mode may also be used as a signal to enable hardware-based doze
295 * functionality. In this case, the doze dream is effectively
296 * indicating that the hardware is free to take over the display
297 * and manage it autonomously to implement low power always-on display
298 * functionality. */
299 HWC_POWER_MODE_DOZE_SUSPEND = 3,
Prashant Malani02b31982014-05-25 20:41:20 -0700300};
301
Ady Abraham8324c922019-10-10 19:14:07 -0700302/* Constraints for changing vsync period */
303typedef struct hwc_vsync_period_change_constraints {
304 /* Time in CLOCK_MONOTONIC after which the vsync period may change
305 * (i.e., the vsync period must not change before this time). */
306 int64_t desiredTimeNanos;
307 /*
308 * If true, requires that the vsync period change must happen seamlessly without
309 * a noticeable visual artifact. */
310 uint8_t seamlessRequired;
311} hwc_vsync_period_change_constraints_t;
312
Mathias Agopiane291f712012-05-13 22:49:06 -0700313/*****************************************************************************/
314
315__END_DECLS
316
317#endif /* ANDROID_INCLUDE_HARDWARE_HWCOMPOSER_DEFS_H */