blob: e74f00dcccf322254a8f5febf9025375cf0da4cf [file] [log] [blame]
Dan Stoza651bf312015-10-23 17:03:17 -07001/*
2 * Copyright 2015 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_SF_HWC2_H
18#define ANDROID_SF_HWC2_H
19
20#define HWC2_INCLUDE_STRINGIFICATION
21#define HWC2_USE_CPP11
22#include <hardware/hwcomposer2.h>
23#undef HWC2_INCLUDE_STRINGIFICATION
24#undef HWC2_USE_CPP11
25
Courtney Goeltzenleuchterf9c98e52018-02-12 07:23:17 -070026#include <gui/HdrMetadata.h>
Mathias Agopian1d77b712017-02-17 15:46:13 -080027#include <math/mat4.h>
Courtney Goeltzenleuchterf9c98e52018-02-12 07:23:17 -070028#include <ui/HdrCapabilities.h>
Dan Stoza7d7ae732016-03-16 12:23:40 -070029
Dan Stoza651bf312015-10-23 17:03:17 -070030#include <utils/Log.h>
31#include <utils/StrongPointer.h>
32#include <utils/Timers.h>
33
34#include <functional>
35#include <string>
36#include <unordered_map>
Dan Stoza9f26a9c2016-06-22 14:51:09 -070037#include <unordered_set>
Dan Stoza651bf312015-10-23 17:03:17 -070038#include <vector>
Alistair Strachanc1752532017-06-07 16:34:44 -070039#include <map>
Dan Stoza651bf312015-10-23 17:03:17 -070040
41namespace android {
42 class Fence;
Dan Stoza5a423ea2017-02-16 14:10:39 -080043 class FloatRect;
Dan Stoza651bf312015-10-23 17:03:17 -070044 class GraphicBuffer;
45 class Rect;
46 class Region;
Chia-I Wuaab99f52016-10-05 12:59:58 +080047 namespace Hwc2 {
48 class Composer;
Dan Stoza71bded52016-10-19 11:10:33 -070049 }
Dan Stoza651bf312015-10-23 17:03:17 -070050}
51
52namespace HWC2 {
53
54class Display;
55class Layer;
56
Steven Thomas94e35b92017-07-26 18:48:28 -070057// Implement this interface to receive hardware composer events.
58//
59// These callback functions will generally be called on a hwbinder thread, but
60// when first registering the callback the onHotplugReceived() function will
61// immediately be called on the thread calling registerCallback().
62//
63// All calls receive a sequenceId, which will be the value that was supplied to
64// HWC2::Device::registerCallback(). It's used to help differentiate callbacks
65// from different hardware composer instances.
66class ComposerCallback {
67 public:
68 virtual void onHotplugReceived(int32_t sequenceId, hwc2_display_t display,
Lloyd Pique715a2c12017-12-14 17:18:08 -080069 Connection connection) = 0;
Steven Thomas94e35b92017-07-26 18:48:28 -070070 virtual void onRefreshReceived(int32_t sequenceId,
71 hwc2_display_t display) = 0;
72 virtual void onVsyncReceived(int32_t sequenceId, hwc2_display_t display,
73 int64_t timestamp) = 0;
74 virtual ~ComposerCallback() = default;
75};
Dan Stoza651bf312015-10-23 17:03:17 -070076
Fabien Sanglard33960702016-11-29 17:58:21 -080077// C++ Wrapper around hwc2_device_t. Load all functions pointers
78// and handle callback registration.
Dan Stoza651bf312015-10-23 17:03:17 -070079class Device
80{
81public:
Lloyd Piquea822d522017-12-20 16:42:57 -080082 explicit Device(std::unique_ptr<android::Hwc2::Composer> composer);
Dan Stoza651bf312015-10-23 17:03:17 -070083
Steven Thomas94e35b92017-07-26 18:48:28 -070084 void registerCallback(ComposerCallback* callback, int32_t sequenceId);
Dan Stoza651bf312015-10-23 17:03:17 -070085
86 // Required by HWC2
87
88 std::string dump() const;
89
Dan Stoza9f26a9c2016-06-22 14:51:09 -070090 const std::unordered_set<Capability>& getCapabilities() const {
Dan Stoza651bf312015-10-23 17:03:17 -070091 return mCapabilities;
92 };
93
94 uint32_t getMaxVirtualDisplayCount() const;
95 Error createVirtualDisplay(uint32_t width, uint32_t height,
Steven Thomas94e35b92017-07-26 18:48:28 -070096 android_pixel_format_t* format, Display** outDisplay);
97 void destroyDisplay(hwc2_display_t displayId);
Dan Stoza651bf312015-10-23 17:03:17 -070098
Steven Thomas94e35b92017-07-26 18:48:28 -070099 void onHotplug(hwc2_display_t displayId, Connection connection);
Dan Stoza651bf312015-10-23 17:03:17 -0700100
101 // Other Device methods
102
Steven Thomas94e35b92017-07-26 18:48:28 -0700103 Display* getDisplayById(hwc2_display_t id);
Dan Stoza09e7a272016-04-14 12:31:01 -0700104
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -0800105 android::Hwc2::Composer* getComposer() { return mComposer.get(); }
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -0800106
Chia-I Wuae5a6b82017-10-10 09:09:22 -0700107 // We buffer most state changes and flush them implicitly with
108 // Display::validate, Display::present, and Display::presentOrValidate.
109 // This method provides an explicit way to flush state changes to HWC.
110 Error flushCommands();
111
Dan Stoza651bf312015-10-23 17:03:17 -0700112private:
113 // Initialization methods
114
Dan Stoza651bf312015-10-23 17:03:17 -0700115 void loadCapabilities();
Dan Stoza651bf312015-10-23 17:03:17 -0700116
117 // Member variables
Chia-I Wuaab99f52016-10-05 12:59:58 +0800118 std::unique_ptr<android::Hwc2::Composer> mComposer;
Dan Stoza9f26a9c2016-06-22 14:51:09 -0700119 std::unordered_set<Capability> mCapabilities;
Steven Thomas94e35b92017-07-26 18:48:28 -0700120 std::unordered_map<hwc2_display_t, std::unique_ptr<Display>> mDisplays;
Lloyd Piquea822d522017-12-20 16:42:57 -0800121 bool mRegisteredCallback = false;
Dan Stoza651bf312015-10-23 17:03:17 -0700122};
123
Fabien Sanglard33960702016-11-29 17:58:21 -0800124// Convenience C++ class to access hwc2_device_t Display functions directly.
Steven Thomas94e35b92017-07-26 18:48:28 -0700125class Display
Dan Stoza651bf312015-10-23 17:03:17 -0700126{
127public:
Steven Thomas94e35b92017-07-26 18:48:28 -0700128 Display(android::Hwc2::Composer& composer,
129 const std::unordered_set<Capability>& capabilities,
130 hwc2_display_t id, DisplayType type);
Dan Stoza651bf312015-10-23 17:03:17 -0700131 ~Display();
132
Dan Stoza651bf312015-10-23 17:03:17 -0700133 class Config
134 {
135 public:
136 class Builder
137 {
138 public:
139 Builder(Display& display, hwc2_config_t id);
140
141 std::shared_ptr<const Config> build() {
142 return std::const_pointer_cast<const Config>(
143 std::move(mConfig));
144 }
145
146 Builder& setWidth(int32_t width) {
147 mConfig->mWidth = width;
148 return *this;
149 }
150 Builder& setHeight(int32_t height) {
151 mConfig->mHeight = height;
152 return *this;
153 }
154 Builder& setVsyncPeriod(int32_t vsyncPeriod) {
155 mConfig->mVsyncPeriod = vsyncPeriod;
156 return *this;
157 }
158 Builder& setDpiX(int32_t dpiX) {
159 if (dpiX == -1) {
160 mConfig->mDpiX = getDefaultDensity();
161 } else {
162 mConfig->mDpiX = dpiX / 1000.0f;
163 }
164 return *this;
165 }
166 Builder& setDpiY(int32_t dpiY) {
167 if (dpiY == -1) {
168 mConfig->mDpiY = getDefaultDensity();
169 } else {
170 mConfig->mDpiY = dpiY / 1000.0f;
171 }
172 return *this;
173 }
174
175 private:
176 float getDefaultDensity();
177 std::shared_ptr<Config> mConfig;
178 };
179
180 hwc2_display_t getDisplayId() const { return mDisplay.getId(); }
181 hwc2_config_t getId() const { return mId; }
182
183 int32_t getWidth() const { return mWidth; }
184 int32_t getHeight() const { return mHeight; }
185 nsecs_t getVsyncPeriod() const { return mVsyncPeriod; }
186 float getDpiX() const { return mDpiX; }
187 float getDpiY() const { return mDpiY; }
188
189 private:
190 Config(Display& display, hwc2_config_t id);
191
192 Display& mDisplay;
193 hwc2_config_t mId;
194
195 int32_t mWidth;
196 int32_t mHeight;
197 nsecs_t mVsyncPeriod;
198 float mDpiX;
199 float mDpiY;
200 };
201
202 // Required by HWC2
203
204 [[clang::warn_unused_result]] Error acceptChanges();
Steven Thomas94e35b92017-07-26 18:48:28 -0700205 [[clang::warn_unused_result]] Error createLayer(Layer** outLayer);
206 [[clang::warn_unused_result]] Error destroyLayer(Layer* layer);
Dan Stoza651bf312015-10-23 17:03:17 -0700207 [[clang::warn_unused_result]] Error getActiveConfig(
208 std::shared_ptr<const Config>* outConfig) const;
209 [[clang::warn_unused_result]] Error getChangedCompositionTypes(
Steven Thomas94e35b92017-07-26 18:48:28 -0700210 std::unordered_map<Layer*, Composition>* outTypes);
Dan Stoza076ac672016-03-14 10:47:53 -0700211 [[clang::warn_unused_result]] Error getColorModes(
Michael Wright28f24d02016-07-12 13:30:53 -0700212 std::vector<android_color_mode_t>* outModes) const;
Dan Stoza651bf312015-10-23 17:03:17 -0700213
214 // Doesn't call into the HWC2 device, so no errors are possible
215 std::vector<std::shared_ptr<const Config>> getConfigs() const;
216
217 [[clang::warn_unused_result]] Error getName(std::string* outName) const;
218 [[clang::warn_unused_result]] Error getRequests(
219 DisplayRequest* outDisplayRequests,
Steven Thomas94e35b92017-07-26 18:48:28 -0700220 std::unordered_map<Layer*, LayerRequest>* outLayerRequests);
Dan Stoza651bf312015-10-23 17:03:17 -0700221 [[clang::warn_unused_result]] Error getType(DisplayType* outType) const;
222 [[clang::warn_unused_result]] Error supportsDoze(bool* outSupport) const;
Dan Stoza7d7ae732016-03-16 12:23:40 -0700223 [[clang::warn_unused_result]] Error getHdrCapabilities(
224 std::unique_ptr<android::HdrCapabilities>* outCapabilities) const;
Dan Stoza651bf312015-10-23 17:03:17 -0700225 [[clang::warn_unused_result]] Error getReleaseFences(
Steven Thomas94e35b92017-07-26 18:48:28 -0700226 std::unordered_map<Layer*,
Dan Stoza651bf312015-10-23 17:03:17 -0700227 android::sp<android::Fence>>* outFences) const;
228 [[clang::warn_unused_result]] Error present(
Fabien Sanglard11d0fc32016-12-01 15:43:01 -0800229 android::sp<android::Fence>* outPresentFence);
Dan Stoza651bf312015-10-23 17:03:17 -0700230 [[clang::warn_unused_result]] Error setActiveConfig(
231 const std::shared_ptr<const Config>& config);
232 [[clang::warn_unused_result]] Error setClientTarget(
Daniel Nicoara1f42e3a2017-04-10 13:27:32 -0400233 uint32_t slot, const android::sp<android::GraphicBuffer>& target,
Dan Stoza651bf312015-10-23 17:03:17 -0700234 const android::sp<android::Fence>& acquireFence,
235 android_dataspace_t dataspace);
Michael Wright28f24d02016-07-12 13:30:53 -0700236 [[clang::warn_unused_result]] Error setColorMode(android_color_mode_t mode);
Dan Stoza5df2a862016-03-24 16:19:37 -0700237 [[clang::warn_unused_result]] Error setColorTransform(
238 const android::mat4& matrix, android_color_transform_t hint);
Dan Stoza651bf312015-10-23 17:03:17 -0700239 [[clang::warn_unused_result]] Error setOutputBuffer(
240 const android::sp<android::GraphicBuffer>& buffer,
241 const android::sp<android::Fence>& releaseFence);
242 [[clang::warn_unused_result]] Error setPowerMode(PowerMode mode);
243 [[clang::warn_unused_result]] Error setVsyncEnabled(Vsync enabled);
244 [[clang::warn_unused_result]] Error validate(uint32_t* outNumTypes,
245 uint32_t* outNumRequests);
Fabien Sanglard249c0ae2017-06-19 19:22:36 -0700246 [[clang::warn_unused_result]] Error presentOrValidate(uint32_t* outNumTypes,
247 uint32_t* outNumRequests,
248 android::sp<android::Fence>* outPresentFence, uint32_t* state);
Dan Stoza651bf312015-10-23 17:03:17 -0700249
250 // Other Display methods
251
Dan Stoza651bf312015-10-23 17:03:17 -0700252 hwc2_display_t getId() const { return mId; }
253 bool isConnected() const { return mIsConnected; }
Steven Thomas94e35b92017-07-26 18:48:28 -0700254 void setConnected(bool connected); // For use by Device only
Dan Stoza651bf312015-10-23 17:03:17 -0700255
256private:
Dan Stoza651bf312015-10-23 17:03:17 -0700257 int32_t getAttribute(hwc2_config_t configId, Attribute attribute);
258 void loadConfig(hwc2_config_t configId);
259 void loadConfigs();
260
Dan Stoza651bf312015-10-23 17:03:17 -0700261 // This may fail (and return a null pointer) if no layer with this ID exists
262 // on this display
Steven Thomas94e35b92017-07-26 18:48:28 -0700263 Layer* getLayerById(hwc2_layer_t id) const;
Dan Stoza651bf312015-10-23 17:03:17 -0700264
265 // Member variables
266
Steven Thomas94e35b92017-07-26 18:48:28 -0700267 // These are references to data owned by HWC2::Device, which will outlive
268 // this HWC2::Display, so these references are guaranteed to be valid for
269 // the lifetime of this object.
270 android::Hwc2::Composer& mComposer;
271 const std::unordered_set<Capability>& mCapabilities;
272
Dan Stoza651bf312015-10-23 17:03:17 -0700273 hwc2_display_t mId;
274 bool mIsConnected;
Chris Forbes016d73c2017-04-11 10:04:31 -0700275 DisplayType mType;
Steven Thomas94e35b92017-07-26 18:48:28 -0700276 std::unordered_map<hwc2_layer_t, std::unique_ptr<Layer>> mLayers;
Alistair Strachanc1752532017-06-07 16:34:44 -0700277 // The ordering in this map matters, for getConfigs(), when it is
278 // converted to a vector
279 std::map<hwc2_config_t, std::shared_ptr<const Config>> mConfigs;
Dan Stoza651bf312015-10-23 17:03:17 -0700280};
281
Fabien Sanglard33960702016-11-29 17:58:21 -0800282// Convenience C++ class to access hwc2_device_t Layer functions directly.
Dan Stoza651bf312015-10-23 17:03:17 -0700283class Layer
284{
285public:
Steven Thomas94e35b92017-07-26 18:48:28 -0700286 Layer(android::Hwc2::Composer& composer,
287 const std::unordered_set<Capability>& capabilities,
288 hwc2_display_t displayId, hwc2_layer_t layerId);
Dan Stoza651bf312015-10-23 17:03:17 -0700289 ~Layer();
290
Dan Stoza651bf312015-10-23 17:03:17 -0700291 hwc2_layer_t getId() const { return mId; }
292
Steven Thomas94e35b92017-07-26 18:48:28 -0700293 // Register a listener to be notified when the layer is destroyed. When the
294 // listener function is called, the Layer will be in the process of being
295 // destroyed, so it's not safe to call methods on it.
296 void setLayerDestroyedListener(std::function<void(Layer*)> listener);
297
Dan Stoza651bf312015-10-23 17:03:17 -0700298 [[clang::warn_unused_result]] Error setCursorPosition(int32_t x, int32_t y);
Chia-I Wu06d63de2017-01-04 14:58:51 +0800299 [[clang::warn_unused_result]] Error setBuffer(uint32_t slot,
Daniel Nicoara1f42e3a2017-04-10 13:27:32 -0400300 const android::sp<android::GraphicBuffer>& buffer,
Dan Stoza651bf312015-10-23 17:03:17 -0700301 const android::sp<android::Fence>& acquireFence);
302 [[clang::warn_unused_result]] Error setSurfaceDamage(
303 const android::Region& damage);
304
305 [[clang::warn_unused_result]] Error setBlendMode(BlendMode mode);
306 [[clang::warn_unused_result]] Error setColor(hwc_color_t color);
307 [[clang::warn_unused_result]] Error setCompositionType(Composition type);
Dan Stoza5df2a862016-03-24 16:19:37 -0700308 [[clang::warn_unused_result]] Error setDataspace(
309 android_dataspace_t dataspace);
Courtney Goeltzenleuchterf9c98e52018-02-12 07:23:17 -0700310 [[clang::warn_unused_result]] Error setHdrMetadata(const android::HdrMetadata& metadata);
Dan Stoza651bf312015-10-23 17:03:17 -0700311 [[clang::warn_unused_result]] Error setDisplayFrame(
312 const android::Rect& frame);
313 [[clang::warn_unused_result]] Error setPlaneAlpha(float alpha);
314 [[clang::warn_unused_result]] Error setSidebandStream(
315 const native_handle_t* stream);
316 [[clang::warn_unused_result]] Error setSourceCrop(
Dan Stoza5a423ea2017-02-16 14:10:39 -0800317 const android::FloatRect& crop);
Dan Stoza651bf312015-10-23 17:03:17 -0700318 [[clang::warn_unused_result]] Error setTransform(Transform transform);
319 [[clang::warn_unused_result]] Error setVisibleRegion(
320 const android::Region& region);
321 [[clang::warn_unused_result]] Error setZOrder(uint32_t z);
Daniel Nicoara2f5f8a52016-12-20 16:11:58 -0500322 [[clang::warn_unused_result]] Error setInfo(uint32_t type, uint32_t appId);
Dan Stoza651bf312015-10-23 17:03:17 -0700323
324private:
Steven Thomas94e35b92017-07-26 18:48:28 -0700325 // These are references to data owned by HWC2::Device, which will outlive
326 // this HWC2::Layer, so these references are guaranteed to be valid for
327 // the lifetime of this object.
328 android::Hwc2::Composer& mComposer;
329 const std::unordered_set<Capability>& mCapabilities;
330
Dan Stoza651bf312015-10-23 17:03:17 -0700331 hwc2_display_t mDisplayId;
Dan Stoza651bf312015-10-23 17:03:17 -0700332 hwc2_layer_t mId;
Courtney Goeltzenleuchterc988ee42017-05-31 17:56:46 -0600333 android_dataspace mDataSpace = HAL_DATASPACE_UNKNOWN;
Courtney Goeltzenleuchterf9c98e52018-02-12 07:23:17 -0700334 android::HdrMetadata mHdrMetadata;
Steven Thomas94e35b92017-07-26 18:48:28 -0700335 std::function<void(Layer*)> mLayerDestroyedListener;
Dan Stoza651bf312015-10-23 17:03:17 -0700336};
337
338} // namespace HWC2
339
340#endif // ANDROID_SF_HWC2_H