blob: e5779d40d146b336e683f5e0dfb85fe743e7bc51 [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>
Peiyong Linfd997e02018-03-28 15:29:00 -070028#include <ui/GraphicTypes.h>
Courtney Goeltzenleuchterf9c98e52018-02-12 07:23:17 -070029#include <ui/HdrCapabilities.h>
Dan Stoza7d7ae732016-03-16 12:23:40 -070030
Dan Stoza651bf312015-10-23 17:03:17 -070031#include <utils/Log.h>
32#include <utils/StrongPointer.h>
33#include <utils/Timers.h>
34
35#include <functional>
36#include <string>
37#include <unordered_map>
Dan Stoza9f26a9c2016-06-22 14:51:09 -070038#include <unordered_set>
Dan Stoza651bf312015-10-23 17:03:17 -070039#include <vector>
Alistair Strachanc1752532017-06-07 16:34:44 -070040#include <map>
Dan Stoza651bf312015-10-23 17:03:17 -070041
42namespace android {
43 class Fence;
Dan Stoza5a423ea2017-02-16 14:10:39 -080044 class FloatRect;
Dan Stoza651bf312015-10-23 17:03:17 -070045 class GraphicBuffer;
46 class Rect;
47 class Region;
Chia-I Wuaab99f52016-10-05 12:59:58 +080048 namespace Hwc2 {
49 class Composer;
Dan Stoza71bded52016-10-19 11:10:33 -070050 }
Lloyd Piquebc792092018-01-17 11:52:30 -080051
52 class TestableSurfaceFlinger;
Dan Stoza651bf312015-10-23 17:03:17 -070053}
54
55namespace HWC2 {
56
57class Display;
58class Layer;
59
Steven Thomas94e35b92017-07-26 18:48:28 -070060// Implement this interface to receive hardware composer events.
61//
62// These callback functions will generally be called on a hwbinder thread, but
63// when first registering the callback the onHotplugReceived() function will
64// immediately be called on the thread calling registerCallback().
65//
66// All calls receive a sequenceId, which will be the value that was supplied to
67// HWC2::Device::registerCallback(). It's used to help differentiate callbacks
68// from different hardware composer instances.
69class ComposerCallback {
70 public:
71 virtual void onHotplugReceived(int32_t sequenceId, hwc2_display_t display,
Lloyd Pique715a2c12017-12-14 17:18:08 -080072 Connection connection) = 0;
Steven Thomas94e35b92017-07-26 18:48:28 -070073 virtual void onRefreshReceived(int32_t sequenceId,
74 hwc2_display_t display) = 0;
75 virtual void onVsyncReceived(int32_t sequenceId, hwc2_display_t display,
76 int64_t timestamp) = 0;
77 virtual ~ComposerCallback() = default;
78};
Dan Stoza651bf312015-10-23 17:03:17 -070079
Fabien Sanglard33960702016-11-29 17:58:21 -080080// C++ Wrapper around hwc2_device_t. Load all functions pointers
81// and handle callback registration.
Dan Stoza651bf312015-10-23 17:03:17 -070082class Device
83{
84public:
Lloyd Piquea822d522017-12-20 16:42:57 -080085 explicit Device(std::unique_ptr<android::Hwc2::Composer> composer);
Dan Stoza651bf312015-10-23 17:03:17 -070086
Steven Thomas94e35b92017-07-26 18:48:28 -070087 void registerCallback(ComposerCallback* callback, int32_t sequenceId);
Dan Stoza651bf312015-10-23 17:03:17 -070088
89 // Required by HWC2
90
91 std::string dump() const;
92
Dan Stoza9f26a9c2016-06-22 14:51:09 -070093 const std::unordered_set<Capability>& getCapabilities() const {
Dan Stoza651bf312015-10-23 17:03:17 -070094 return mCapabilities;
95 };
96
97 uint32_t getMaxVirtualDisplayCount() const;
98 Error createVirtualDisplay(uint32_t width, uint32_t height,
Peiyong Lin34beb7a2018-03-28 11:57:12 -070099 android::ui::PixelFormat* format, Display** outDisplay);
Steven Thomas94e35b92017-07-26 18:48:28 -0700100 void destroyDisplay(hwc2_display_t displayId);
Dan Stoza651bf312015-10-23 17:03:17 -0700101
Steven Thomas94e35b92017-07-26 18:48:28 -0700102 void onHotplug(hwc2_display_t displayId, Connection connection);
Dan Stoza651bf312015-10-23 17:03:17 -0700103
104 // Other Device methods
105
Steven Thomas94e35b92017-07-26 18:48:28 -0700106 Display* getDisplayById(hwc2_display_t id);
Dan Stoza09e7a272016-04-14 12:31:01 -0700107
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -0800108 android::Hwc2::Composer* getComposer() { return mComposer.get(); }
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -0800109
Chia-I Wuae5a6b82017-10-10 09:09:22 -0700110 // We buffer most state changes and flush them implicitly with
111 // Display::validate, Display::present, and Display::presentOrValidate.
112 // This method provides an explicit way to flush state changes to HWC.
113 Error flushCommands();
114
Dan Stoza651bf312015-10-23 17:03:17 -0700115private:
116 // Initialization methods
117
Dan Stoza651bf312015-10-23 17:03:17 -0700118 void loadCapabilities();
Dan Stoza651bf312015-10-23 17:03:17 -0700119
120 // Member variables
Chia-I Wuaab99f52016-10-05 12:59:58 +0800121 std::unique_ptr<android::Hwc2::Composer> mComposer;
Dan Stoza9f26a9c2016-06-22 14:51:09 -0700122 std::unordered_set<Capability> mCapabilities;
Steven Thomas94e35b92017-07-26 18:48:28 -0700123 std::unordered_map<hwc2_display_t, std::unique_ptr<Display>> mDisplays;
Lloyd Piquea822d522017-12-20 16:42:57 -0800124 bool mRegisteredCallback = false;
Dan Stoza651bf312015-10-23 17:03:17 -0700125};
126
Fabien Sanglard33960702016-11-29 17:58:21 -0800127// Convenience C++ class to access hwc2_device_t Display functions directly.
Steven Thomas94e35b92017-07-26 18:48:28 -0700128class Display
Dan Stoza651bf312015-10-23 17:03:17 -0700129{
130public:
Lloyd Piquebc792092018-01-17 11:52:30 -0800131 Display(android::Hwc2::Composer& composer, const std::unordered_set<Capability>& capabilities,
Steven Thomas94e35b92017-07-26 18:48:28 -0700132 hwc2_display_t id, DisplayType type);
Dan Stoza651bf312015-10-23 17:03:17 -0700133 ~Display();
134
Dan Stoza651bf312015-10-23 17:03:17 -0700135 class Config
136 {
137 public:
138 class Builder
139 {
140 public:
141 Builder(Display& display, hwc2_config_t id);
142
143 std::shared_ptr<const Config> build() {
144 return std::const_pointer_cast<const Config>(
145 std::move(mConfig));
146 }
147
148 Builder& setWidth(int32_t width) {
149 mConfig->mWidth = width;
150 return *this;
151 }
152 Builder& setHeight(int32_t height) {
153 mConfig->mHeight = height;
154 return *this;
155 }
156 Builder& setVsyncPeriod(int32_t vsyncPeriod) {
157 mConfig->mVsyncPeriod = vsyncPeriod;
158 return *this;
159 }
160 Builder& setDpiX(int32_t dpiX) {
161 if (dpiX == -1) {
162 mConfig->mDpiX = getDefaultDensity();
163 } else {
164 mConfig->mDpiX = dpiX / 1000.0f;
165 }
166 return *this;
167 }
168 Builder& setDpiY(int32_t dpiY) {
169 if (dpiY == -1) {
170 mConfig->mDpiY = getDefaultDensity();
171 } else {
172 mConfig->mDpiY = dpiY / 1000.0f;
173 }
174 return *this;
175 }
176
177 private:
178 float getDefaultDensity();
179 std::shared_ptr<Config> mConfig;
180 };
181
182 hwc2_display_t getDisplayId() const { return mDisplay.getId(); }
183 hwc2_config_t getId() const { return mId; }
184
185 int32_t getWidth() const { return mWidth; }
186 int32_t getHeight() const { return mHeight; }
187 nsecs_t getVsyncPeriod() const { return mVsyncPeriod; }
188 float getDpiX() const { return mDpiX; }
189 float getDpiY() const { return mDpiY; }
190
191 private:
192 Config(Display& display, hwc2_config_t id);
193
194 Display& mDisplay;
195 hwc2_config_t mId;
196
197 int32_t mWidth;
198 int32_t mHeight;
199 nsecs_t mVsyncPeriod;
200 float mDpiX;
201 float mDpiY;
202 };
203
204 // Required by HWC2
205
206 [[clang::warn_unused_result]] Error acceptChanges();
Steven Thomas94e35b92017-07-26 18:48:28 -0700207 [[clang::warn_unused_result]] Error createLayer(Layer** outLayer);
208 [[clang::warn_unused_result]] Error destroyLayer(Layer* layer);
Dan Stoza651bf312015-10-23 17:03:17 -0700209 [[clang::warn_unused_result]] Error getActiveConfig(
210 std::shared_ptr<const Config>* outConfig) const;
211 [[clang::warn_unused_result]] Error getChangedCompositionTypes(
Steven Thomas94e35b92017-07-26 18:48:28 -0700212 std::unordered_map<Layer*, Composition>* outTypes);
Dan Stoza076ac672016-03-14 10:47:53 -0700213 [[clang::warn_unused_result]] Error getColorModes(
Peiyong Linfd997e02018-03-28 15:29:00 -0700214 std::vector<android::ui::ColorMode>* outModes) const;
Peiyong Lin0e7a7912018-04-05 14:36:36 -0700215 [[clang::warn_unused_result]] Error getRenderIntents(
216 android::ui::ColorMode colorMode,
217 std::vector<android::ui::RenderIntent>* outRenderIntents) const;
218 [[clang::warn_unused_result]] Error getDataspaceSaturationMatrix(
219 android::ui::Dataspace dataspace, android::mat4* outMatrix);
Dan Stoza651bf312015-10-23 17:03:17 -0700220
221 // Doesn't call into the HWC2 device, so no errors are possible
222 std::vector<std::shared_ptr<const Config>> getConfigs() const;
223
224 [[clang::warn_unused_result]] Error getName(std::string* outName) const;
225 [[clang::warn_unused_result]] Error getRequests(
226 DisplayRequest* outDisplayRequests,
Steven Thomas94e35b92017-07-26 18:48:28 -0700227 std::unordered_map<Layer*, LayerRequest>* outLayerRequests);
Dan Stoza651bf312015-10-23 17:03:17 -0700228 [[clang::warn_unused_result]] Error getType(DisplayType* outType) const;
229 [[clang::warn_unused_result]] Error supportsDoze(bool* outSupport) const;
Dan Stoza7d7ae732016-03-16 12:23:40 -0700230 [[clang::warn_unused_result]] Error getHdrCapabilities(
231 std::unique_ptr<android::HdrCapabilities>* outCapabilities) const;
Dan Stoza651bf312015-10-23 17:03:17 -0700232 [[clang::warn_unused_result]] Error getReleaseFences(
Steven Thomas94e35b92017-07-26 18:48:28 -0700233 std::unordered_map<Layer*,
Dan Stoza651bf312015-10-23 17:03:17 -0700234 android::sp<android::Fence>>* outFences) const;
235 [[clang::warn_unused_result]] Error present(
Fabien Sanglard11d0fc32016-12-01 15:43:01 -0800236 android::sp<android::Fence>* outPresentFence);
Dan Stoza651bf312015-10-23 17:03:17 -0700237 [[clang::warn_unused_result]] Error setActiveConfig(
238 const std::shared_ptr<const Config>& config);
239 [[clang::warn_unused_result]] Error setClientTarget(
Daniel Nicoara1f42e3a2017-04-10 13:27:32 -0400240 uint32_t slot, const android::sp<android::GraphicBuffer>& target,
Dan Stoza651bf312015-10-23 17:03:17 -0700241 const android::sp<android::Fence>& acquireFence,
Peiyong Lin34beb7a2018-03-28 11:57:12 -0700242 android::ui::Dataspace dataspace);
Peiyong Linfd997e02018-03-28 15:29:00 -0700243 [[clang::warn_unused_result]] Error setColorMode(
Peiyong Lin0e7a7912018-04-05 14:36:36 -0700244 android::ui::ColorMode mode,
245 android::ui::RenderIntent renderIntent);
Dan Stoza5df2a862016-03-24 16:19:37 -0700246 [[clang::warn_unused_result]] Error setColorTransform(
247 const android::mat4& matrix, android_color_transform_t hint);
Dan Stoza651bf312015-10-23 17:03:17 -0700248 [[clang::warn_unused_result]] Error setOutputBuffer(
249 const android::sp<android::GraphicBuffer>& buffer,
250 const android::sp<android::Fence>& releaseFence);
251 [[clang::warn_unused_result]] Error setPowerMode(PowerMode mode);
252 [[clang::warn_unused_result]] Error setVsyncEnabled(Vsync enabled);
253 [[clang::warn_unused_result]] Error validate(uint32_t* outNumTypes,
254 uint32_t* outNumRequests);
Fabien Sanglard249c0ae2017-06-19 19:22:36 -0700255 [[clang::warn_unused_result]] Error presentOrValidate(uint32_t* outNumTypes,
Peiyong Linfd997e02018-03-28 15:29:00 -0700256 uint32_t* outNumRequests,
257 android::sp<android::Fence>* outPresentFence, uint32_t* state);
Dan Stoza651bf312015-10-23 17:03:17 -0700258
259 // Other Display methods
260
Dan Stoza651bf312015-10-23 17:03:17 -0700261 hwc2_display_t getId() const { return mId; }
262 bool isConnected() const { return mIsConnected; }
Steven Thomas94e35b92017-07-26 18:48:28 -0700263 void setConnected(bool connected); // For use by Device only
Dan Stoza651bf312015-10-23 17:03:17 -0700264
265private:
Dan Stoza651bf312015-10-23 17:03:17 -0700266 int32_t getAttribute(hwc2_config_t configId, Attribute attribute);
267 void loadConfig(hwc2_config_t configId);
268 void loadConfigs();
269
Dan Stoza651bf312015-10-23 17:03:17 -0700270 // This may fail (and return a null pointer) if no layer with this ID exists
271 // on this display
Steven Thomas94e35b92017-07-26 18:48:28 -0700272 Layer* getLayerById(hwc2_layer_t id) const;
Dan Stoza651bf312015-10-23 17:03:17 -0700273
Lloyd Piquebc792092018-01-17 11:52:30 -0800274 friend android::TestableSurfaceFlinger;
275
Dan Stoza651bf312015-10-23 17:03:17 -0700276 // Member variables
277
Steven Thomas94e35b92017-07-26 18:48:28 -0700278 // These are references to data owned by HWC2::Device, which will outlive
279 // this HWC2::Display, so these references are guaranteed to be valid for
280 // the lifetime of this object.
281 android::Hwc2::Composer& mComposer;
282 const std::unordered_set<Capability>& mCapabilities;
283
Dan Stoza651bf312015-10-23 17:03:17 -0700284 hwc2_display_t mId;
285 bool mIsConnected;
Chris Forbes016d73c2017-04-11 10:04:31 -0700286 DisplayType mType;
Steven Thomas94e35b92017-07-26 18:48:28 -0700287 std::unordered_map<hwc2_layer_t, std::unique_ptr<Layer>> mLayers;
Alistair Strachanc1752532017-06-07 16:34:44 -0700288 // The ordering in this map matters, for getConfigs(), when it is
289 // converted to a vector
290 std::map<hwc2_config_t, std::shared_ptr<const Config>> mConfigs;
Dan Stoza651bf312015-10-23 17:03:17 -0700291};
292
Fabien Sanglard33960702016-11-29 17:58:21 -0800293// Convenience C++ class to access hwc2_device_t Layer functions directly.
Dan Stoza651bf312015-10-23 17:03:17 -0700294class Layer
295{
296public:
Steven Thomas94e35b92017-07-26 18:48:28 -0700297 Layer(android::Hwc2::Composer& composer,
298 const std::unordered_set<Capability>& capabilities,
299 hwc2_display_t displayId, hwc2_layer_t layerId);
Dan Stoza651bf312015-10-23 17:03:17 -0700300 ~Layer();
301
Dan Stoza651bf312015-10-23 17:03:17 -0700302 hwc2_layer_t getId() const { return mId; }
303
Steven Thomas94e35b92017-07-26 18:48:28 -0700304 // Register a listener to be notified when the layer is destroyed. When the
305 // listener function is called, the Layer will be in the process of being
306 // destroyed, so it's not safe to call methods on it.
307 void setLayerDestroyedListener(std::function<void(Layer*)> listener);
308
Dan Stoza651bf312015-10-23 17:03:17 -0700309 [[clang::warn_unused_result]] Error setCursorPosition(int32_t x, int32_t y);
Chia-I Wu06d63de2017-01-04 14:58:51 +0800310 [[clang::warn_unused_result]] Error setBuffer(uint32_t slot,
Daniel Nicoara1f42e3a2017-04-10 13:27:32 -0400311 const android::sp<android::GraphicBuffer>& buffer,
Dan Stoza651bf312015-10-23 17:03:17 -0700312 const android::sp<android::Fence>& acquireFence);
313 [[clang::warn_unused_result]] Error setSurfaceDamage(
314 const android::Region& damage);
315
316 [[clang::warn_unused_result]] Error setBlendMode(BlendMode mode);
317 [[clang::warn_unused_result]] Error setColor(hwc_color_t color);
318 [[clang::warn_unused_result]] Error setCompositionType(Composition type);
Dan Stoza5df2a862016-03-24 16:19:37 -0700319 [[clang::warn_unused_result]] Error setDataspace(
Peiyong Lin34beb7a2018-03-28 11:57:12 -0700320 android::ui::Dataspace dataspace);
Courtney Goeltzenleuchterf9c98e52018-02-12 07:23:17 -0700321 [[clang::warn_unused_result]] Error setHdrMetadata(const android::HdrMetadata& metadata);
Dan Stoza651bf312015-10-23 17:03:17 -0700322 [[clang::warn_unused_result]] Error setDisplayFrame(
323 const android::Rect& frame);
324 [[clang::warn_unused_result]] Error setPlaneAlpha(float alpha);
325 [[clang::warn_unused_result]] Error setSidebandStream(
326 const native_handle_t* stream);
327 [[clang::warn_unused_result]] Error setSourceCrop(
Dan Stoza5a423ea2017-02-16 14:10:39 -0800328 const android::FloatRect& crop);
Dan Stoza651bf312015-10-23 17:03:17 -0700329 [[clang::warn_unused_result]] Error setTransform(Transform transform);
330 [[clang::warn_unused_result]] Error setVisibleRegion(
331 const android::Region& region);
332 [[clang::warn_unused_result]] Error setZOrder(uint32_t z);
Daniel Nicoara2f5f8a52016-12-20 16:11:58 -0500333 [[clang::warn_unused_result]] Error setInfo(uint32_t type, uint32_t appId);
Dan Stoza651bf312015-10-23 17:03:17 -0700334
335private:
Steven Thomas94e35b92017-07-26 18:48:28 -0700336 // These are references to data owned by HWC2::Device, which will outlive
337 // this HWC2::Layer, so these references are guaranteed to be valid for
338 // the lifetime of this object.
339 android::Hwc2::Composer& mComposer;
340 const std::unordered_set<Capability>& mCapabilities;
341
Dan Stoza651bf312015-10-23 17:03:17 -0700342 hwc2_display_t mDisplayId;
Dan Stoza651bf312015-10-23 17:03:17 -0700343 hwc2_layer_t mId;
Peiyong Lin34beb7a2018-03-28 11:57:12 -0700344 android::ui::Dataspace mDataSpace = android::ui::Dataspace::UNKNOWN;
Courtney Goeltzenleuchterf9c98e52018-02-12 07:23:17 -0700345 android::HdrMetadata mHdrMetadata;
Steven Thomas94e35b92017-07-26 18:48:28 -0700346 std::function<void(Layer*)> mLayerDestroyedListener;
Dan Stoza651bf312015-10-23 17:03:17 -0700347};
348
349} // namespace HWC2
350
351#endif // ANDROID_SF_HWC2_H