blob: 9c7d7903fed950911c18764d9c43c89d1bd4270f [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
29/*****************************************************************************/
30
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
42enum {
43 /* hwc_composer_device_t::set failed in EGL */
44 HWC_EGL_ERROR = -1
45};
46
47/*
48 * hwc_layer_t::hints values
49 * Hints are set by the HAL and read by SurfaceFlinger
50 */
51enum {
52 /*
53 * HWC can set the HWC_HINT_TRIPLE_BUFFER hint to indicate to SurfaceFlinger
54 * that it should triple buffer this layer. Typically HWC does this when
55 * the layer will be unavailable for use for an extended period of time,
56 * e.g. if the display will be fetching data directly from the layer and
57 * the layer can not be modified until after the next set().
58 */
59 HWC_HINT_TRIPLE_BUFFER = 0x00000001,
60
61 /*
62 * HWC sets HWC_HINT_CLEAR_FB to tell SurfaceFlinger that it should clear the
63 * framebuffer with transparent pixels where this layer would be.
64 * SurfaceFlinger will only honor this flag when the layer has no blending
65 *
66 */
67 HWC_HINT_CLEAR_FB = 0x00000002
68};
69
70/*
71 * hwc_layer_t::flags values
72 * Flags are set by SurfaceFlinger and read by the HAL
73 */
74enum {
75 /*
76 * HWC_SKIP_LAYER is set by SurfaceFlnger to indicate that the HAL
77 * shall not consider this layer for composition as it will be handled
78 * by SurfaceFlinger (just as if compositionType was set to HWC_OVERLAY).
79 */
80 HWC_SKIP_LAYER = 0x00000001,
Riley Andrews4a6788b2014-06-30 15:55:55 -070081
82 /*
83 * HWC_IS_CURSOR_LAYER is set by surfaceflinger to indicate that this
84 * layer is being used as a cursor on this particular display, and that
85 * surfaceflinger can potentially perform asynchronous position updates for
86 * this layer. If a call to prepare() returns HWC_CURSOR_OVERLAY for the
87 * composition type of this layer, then the hwcomposer will allow async
88 * position updates to this layer via setCursorPositionAsync().
89 */
90 HWC_IS_CURSOR_LAYER = 0x00000002
Mathias Agopiane291f712012-05-13 22:49:06 -070091};
92
93/*
94 * hwc_layer_t::compositionType values
95 */
96enum {
97 /* this layer is to be drawn into the framebuffer by SurfaceFlinger */
98 HWC_FRAMEBUFFER = 0,
99
100 /* this layer will be handled in the HWC */
101 HWC_OVERLAY = 1,
102
103 /* this is the background layer. it's used to set the background color.
104 * there is only a single background layer */
105 HWC_BACKGROUND = 2,
Jesse Halld18c83f2012-08-16 16:21:13 -0700106
107 /* this layer holds the result of compositing the HWC_FRAMEBUFFER layers.
108 * Added in HWC_DEVICE_API_VERSION_1_1. */
109 HWC_FRAMEBUFFER_TARGET = 3,
Jesse Hall8c79c082014-02-13 15:38:56 -0800110
111 /* this layer's contents are taken from a sideband buffer stream.
112 * Added in HWC_DEVICE_API_VERSION_1_4. */
113 HWC_SIDEBAND = 4,
Mathias Agopiane291f712012-05-13 22:49:06 -0700114
Riley Andrews4a6788b2014-06-30 15:55:55 -0700115 /* this layer's composition will be handled by hwcomposer by dedicated
116 cursor overlay hardware. hwcomposer will also all async position updates
117 of this layer outside of the normal prepare()/set() loop. Added in
118 HWC_DEVICE_API_VERSION_1_4. */
119 HWC_CURSOR_OVERLAY = 5
120 };
Mathias Agopiane291f712012-05-13 22:49:06 -0700121/*
122 * hwc_layer_t::blending values
123 */
124enum {
125 /* no blending */
126 HWC_BLENDING_NONE = 0x0100,
127
128 /* ONE / ONE_MINUS_SRC_ALPHA */
129 HWC_BLENDING_PREMULT = 0x0105,
130
131 /* SRC_ALPHA / ONE_MINUS_SRC_ALPHA */
132 HWC_BLENDING_COVERAGE = 0x0405
133};
134
135/*
136 * hwc_layer_t::transform values
137 */
138enum {
139 /* flip source image horizontally */
140 HWC_TRANSFORM_FLIP_H = HAL_TRANSFORM_FLIP_H,
141 /* flip source image vertically */
142 HWC_TRANSFORM_FLIP_V = HAL_TRANSFORM_FLIP_V,
143 /* rotate source image 90 degrees clock-wise */
144 HWC_TRANSFORM_ROT_90 = HAL_TRANSFORM_ROT_90,
145 /* rotate source image 180 degrees */
146 HWC_TRANSFORM_ROT_180 = HAL_TRANSFORM_ROT_180,
147 /* rotate source image 270 degrees clock-wise */
148 HWC_TRANSFORM_ROT_270 = HAL_TRANSFORM_ROT_270,
149};
150
151/* attributes queriable with query() */
152enum {
153 /*
Jesse Hall2c137592012-08-29 10:37:37 -0700154 * Must return 1 if the background layer is supported, 0 otherwise.
Mathias Agopiane291f712012-05-13 22:49:06 -0700155 */
156 HWC_BACKGROUND_LAYER_SUPPORTED = 0,
157
158 /*
Jesse Hall2c137592012-08-29 10:37:37 -0700159 * Returns the vsync period in nanoseconds.
160 *
161 * This query is not used for HWC_DEVICE_API_VERSION_1_1 and later.
162 * Instead, the per-display attribute HWC_DISPLAY_VSYNC_PERIOD is used.
Mathias Agopiane291f712012-05-13 22:49:06 -0700163 */
164 HWC_VSYNC_PERIOD = 1,
Jesse Hall43b51d92012-08-22 11:42:57 -0700165
166 /*
Jesse Hall2c137592012-08-29 10:37:37 -0700167 * Availability: HWC_DEVICE_API_VERSION_1_1
168 * Returns a mask of supported display types.
Jesse Hall43b51d92012-08-22 11:42:57 -0700169 */
170 HWC_DISPLAY_TYPES_SUPPORTED = 2,
Mathias Agopiane291f712012-05-13 22:49:06 -0700171};
172
Jesse Hall2c137592012-08-29 10:37:37 -0700173/* display attributes returned by getDisplayAttributes() */
174enum {
175 /* Indicates the end of an attribute list */
176 HWC_DISPLAY_NO_ATTRIBUTE = 0,
177
178 /* The vsync period in nanoseconds */
179 HWC_DISPLAY_VSYNC_PERIOD = 1,
180
181 /* The number of pixels in the horizontal and vertical directions. */
Jesse Hall7cb03d72012-09-06 16:57:12 -0700182 HWC_DISPLAY_WIDTH = 2,
183 HWC_DISPLAY_HEIGHT = 3,
Jesse Hall2c137592012-08-29 10:37:37 -0700184
185 /* The number of pixels per thousand inches of this configuration.
186 *
187 * Scaling DPI by 1000 allows it to be stored in an int without losing
188 * too much precision.
189 *
190 * If the DPI for a configuration is unavailable or the HWC implementation
191 * considers it unreliable, it should set these attributes to zero.
192 */
193 HWC_DISPLAY_DPI_X = 4,
194 HWC_DISPLAY_DPI_Y = 5,
Dan Stoza95f01792015-08-31 12:08:57 -0700195
196 /* Indicates which of the vendor-defined color transforms is provided by
197 * this configuration. */
198 HWC_DISPLAY_COLOR_TRANSFORM = 6,
Jesse Hall2c137592012-08-29 10:37:37 -0700199};
200
Mathias Agopiane291f712012-05-13 22:49:06 -0700201/* Allowed events for hwc_methods::eventControl() */
202enum {
203 HWC_EVENT_VSYNC = 0
204};
205
Jesse Hall43b51d92012-08-22 11:42:57 -0700206/* Display types and associated mask bits. */
207enum {
208 HWC_DISPLAY_PRIMARY = 0,
209 HWC_DISPLAY_EXTERNAL = 1, // HDMI, DP, etc.
Vinu Deokaran45922f02015-07-20 14:13:36 -0400210 HWC_DISPLAY_TERTIARY = 2,
211 HWC_DISPLAY_VIRTUAL = 3,
Jesse Hallfc0ff2a2013-08-16 11:13:36 -0700212
Vinu Deokaran45922f02015-07-20 14:13:36 -0400213 HWC_NUM_PHYSICAL_DISPLAY_TYPES = 3,
214 HWC_NUM_DISPLAY_TYPES = 4,
Jesse Hall43b51d92012-08-22 11:42:57 -0700215};
216
217enum {
218 HWC_DISPLAY_PRIMARY_BIT = 1 << HWC_DISPLAY_PRIMARY,
219 HWC_DISPLAY_EXTERNAL_BIT = 1 << HWC_DISPLAY_EXTERNAL,
Vinu Deokaran45922f02015-07-20 14:13:36 -0400220 HWC_DISPLAY_TERTIARY_BIT = 1 << HWC_DISPLAY_TERTIARY,
Jesse Hallfc0ff2a2013-08-16 11:13:36 -0700221 HWC_DISPLAY_VIRTUAL_BIT = 1 << HWC_DISPLAY_VIRTUAL,
Jesse Hall43b51d92012-08-22 11:42:57 -0700222};
223
Prashant Malani02b31982014-05-25 20:41:20 -0700224/* Display power modes */
225enum {
Jeff Brown842b9062014-07-17 20:01:59 -0700226 /* The display is turned off (blanked). */
Prashant Malani02b31982014-05-25 20:41:20 -0700227 HWC_POWER_MODE_OFF = 0,
Jeff Brown842b9062014-07-17 20:01:59 -0700228 /* The display is turned on and configured in a low power state
229 * that is suitable for presenting ambient information to the user,
230 * possibly with lower fidelity than normal but greater efficiency. */
Prashant Malani02b31982014-05-25 20:41:20 -0700231 HWC_POWER_MODE_DOZE = 1,
Jeff Brown842b9062014-07-17 20:01:59 -0700232 /* The display is turned on normally. */
Prashant Malani02b31982014-05-25 20:41:20 -0700233 HWC_POWER_MODE_NORMAL = 2,
Jeff Brown842b9062014-07-17 20:01:59 -0700234 /* The display is configured as in HWC_POWER_MODE_DOZE but may
235 * stop applying frame buffer updates from the graphics subsystem.
236 * This power mode is effectively a hint from the doze dream to
237 * tell the hardware that it is done drawing to the display for the
238 * time being and that the display should remain on in a low power
239 * state and continue showing its current contents indefinitely
240 * until the mode changes.
241 *
242 * This mode may also be used as a signal to enable hardware-based doze
243 * functionality. In this case, the doze dream is effectively
244 * indicating that the hardware is free to take over the display
245 * and manage it autonomously to implement low power always-on display
246 * functionality. */
247 HWC_POWER_MODE_DOZE_SUSPEND = 3,
Prashant Malani02b31982014-05-25 20:41:20 -0700248};
249
Mathias Agopiane291f712012-05-13 22:49:06 -0700250/*****************************************************************************/
251
252__END_DECLS
253
254#endif /* ANDROID_INCLUDE_HARDWARE_HWCOMPOSER_DEFS_H */