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