Dan Stoza | 651bf31 | 2015-10-23 17:03:17 -0700 | [diff] [blame] | 1 | /* |
| 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 | |
Dominik Laskowski | 8b01cc0 | 2020-07-14 19:02:41 -0700 | [diff] [blame] | 17 | #pragma once |
Dan Stoza | 651bf31 | 2015-10-23 17:03:17 -0700 | [diff] [blame] | 18 | |
Lloyd Pique | a516c00 | 2021-05-07 14:36:58 -0700 | [diff] [blame] | 19 | #include <android-base/expected.h> |
Ady Abraham | 27fbcc7 | 2021-09-20 14:54:57 -0700 | [diff] [blame] | 20 | #include <android-base/thread_annotations.h> |
Courtney Goeltzenleuchter | f9c98e5 | 2018-02-12 07:23:17 -0700 | [diff] [blame] | 21 | #include <gui/HdrMetadata.h> |
Mathias Agopian | 1d77b71 | 2017-02-17 15:46:13 -0800 | [diff] [blame] | 22 | #include <math/mat4.h> |
Courtney Goeltzenleuchter | f9c98e5 | 2018-02-12 07:23:17 -0700 | [diff] [blame] | 23 | #include <ui/HdrCapabilities.h> |
Yichi Chen | 8366f56 | 2019-03-25 19:44:06 +0800 | [diff] [blame] | 24 | #include <ui/Region.h> |
Marin Shalamanov | 228f46b | 2021-01-28 21:11:45 +0100 | [diff] [blame] | 25 | #include <ui/StaticDisplayInfo.h> |
Dan Stoza | 651bf31 | 2015-10-23 17:03:17 -0700 | [diff] [blame] | 26 | #include <utils/Log.h> |
| 27 | #include <utils/StrongPointer.h> |
| 28 | #include <utils/Timers.h> |
| 29 | |
| 30 | #include <functional> |
Dominik Laskowski | 5690bde | 2020-04-23 19:04:22 -0700 | [diff] [blame] | 31 | #include <future> |
Dan Stoza | 651bf31 | 2015-10-23 17:03:17 -0700 | [diff] [blame] | 32 | #include <string> |
| 33 | #include <unordered_map> |
Dan Stoza | 9f26a9c | 2016-06-22 14:51:09 -0700 | [diff] [blame] | 34 | #include <unordered_set> |
Dan Stoza | 651bf31 | 2015-10-23 17:03:17 -0700 | [diff] [blame] | 35 | #include <vector> |
| 36 | |
Alec Mouri | cdf1679 | 2021-12-10 13:16:06 -0800 | [diff] [blame] | 37 | #include "ComposerHal.h" |
Peiyong Lin | e9d809e | 2020-04-14 13:10:48 -0700 | [diff] [blame] | 38 | #include "Hal.h" |
| 39 | |
Leon Scroggins III | e7c51c6 | 2022-02-01 15:53:54 -0500 | [diff] [blame] | 40 | #include <aidl/android/hardware/graphics/common/DisplayDecorationSupport.h> |
Ady Abraham | de549d4 | 2022-01-26 19:19:17 -0800 | [diff] [blame] | 41 | #include <aidl/android/hardware/graphics/composer3/Capability.h> |
Alec Mouri | 8506569 | 2022-03-18 00:58:26 +0000 | [diff] [blame] | 42 | #include <aidl/android/hardware/graphics/composer3/ClientTargetPropertyWithBrightness.h> |
Ady Abraham | 6e60b14 | 2022-01-06 18:10:35 -0800 | [diff] [blame] | 43 | #include <aidl/android/hardware/graphics/composer3/Color.h> |
Leon Scroggins III | 2e1aa18 | 2021-12-01 17:33:12 -0500 | [diff] [blame] | 44 | #include <aidl/android/hardware/graphics/composer3/Composition.h> |
Leon Scroggins III | 5967aec | 2021-12-29 11:14:22 -0500 | [diff] [blame] | 45 | #include <aidl/android/hardware/graphics/composer3/DisplayCapability.h> |
Leon Scroggins III | 2e1aa18 | 2021-12-01 17:33:12 -0500 | [diff] [blame] | 46 | |
Dan Stoza | 651bf31 | 2015-10-23 17:03:17 -0700 | [diff] [blame] | 47 | namespace android { |
Lloyd Pique | bc79209 | 2018-01-17 11:52:30 -0800 | [diff] [blame] | 48 | |
Dominik Laskowski | 8b01cc0 | 2020-07-14 19:02:41 -0700 | [diff] [blame] | 49 | class Fence; |
| 50 | class FloatRect; |
| 51 | class GraphicBuffer; |
| 52 | class TestableSurfaceFlinger; |
| 53 | struct DisplayedFrameStats; |
| 54 | |
| 55 | namespace Hwc2 { |
| 56 | class Composer; |
| 57 | } // namespace Hwc2 |
Dan Stoza | 651bf31 | 2015-10-23 17:03:17 -0700 | [diff] [blame] | 58 | |
| 59 | namespace HWC2 { |
| 60 | |
Dan Stoza | 651bf31 | 2015-10-23 17:03:17 -0700 | [diff] [blame] | 61 | class Layer; |
Peiyong Lin | e9d809e | 2020-04-14 13:10:48 -0700 | [diff] [blame] | 62 | |
| 63 | namespace hal = android::hardware::graphics::composer::hal; |
Dan Stoza | 651bf31 | 2015-10-23 17:03:17 -0700 | [diff] [blame] | 64 | |
Steven Thomas | 94e35b9 | 2017-07-26 18:48:28 -0700 | [diff] [blame] | 65 | // Implement this interface to receive hardware composer events. |
| 66 | // |
| 67 | // These callback functions will generally be called on a hwbinder thread, but |
Dominik Laskowski | 0deb06e | 2021-04-16 23:18:31 -0700 | [diff] [blame] | 68 | // when first registering the callback the onComposerHalHotplug() function will |
Steven Thomas | 94e35b9 | 2017-07-26 18:48:28 -0700 | [diff] [blame] | 69 | // immediately be called on the thread calling registerCallback(). |
Dominik Laskowski | 8b01cc0 | 2020-07-14 19:02:41 -0700 | [diff] [blame] | 70 | struct ComposerCallback { |
Dominik Laskowski | 0deb06e | 2021-04-16 23:18:31 -0700 | [diff] [blame] | 71 | virtual void onComposerHalHotplug(hal::HWDisplayId, hal::Connection) = 0; |
| 72 | virtual void onComposerHalRefresh(hal::HWDisplayId) = 0; |
| 73 | virtual void onComposerHalVsync(hal::HWDisplayId, int64_t timestamp, |
| 74 | std::optional<hal::VsyncPeriodNanos>) = 0; |
| 75 | virtual void onComposerHalVsyncPeriodTimingChanged(hal::HWDisplayId, |
| 76 | const hal::VsyncPeriodChangeTimeline&) = 0; |
| 77 | virtual void onComposerHalSeamlessPossible(hal::HWDisplayId) = 0; |
Yichi Chen | 3401b56 | 2022-01-17 15:42:35 +0800 | [diff] [blame] | 78 | virtual void onComposerHalVsyncIdle(hal::HWDisplayId) = 0; |
Ady Abraham | 7159f57 | 2019-10-11 11:10:18 -0700 | [diff] [blame] | 79 | |
Dominik Laskowski | 8b01cc0 | 2020-07-14 19:02:41 -0700 | [diff] [blame] | 80 | protected: |
| 81 | ~ComposerCallback() = default; |
Steven Thomas | 94e35b9 | 2017-07-26 18:48:28 -0700 | [diff] [blame] | 82 | }; |
Dan Stoza | 651bf31 | 2015-10-23 17:03:17 -0700 | [diff] [blame] | 83 | |
Peiyong Lin | e9d809e | 2020-04-14 13:10:48 -0700 | [diff] [blame] | 84 | // Convenience C++ class to access per display functions directly. |
Ana Krulec | 4593b69 | 2019-01-11 22:07:25 -0800 | [diff] [blame] | 85 | class Display { |
Dan Stoza | 651bf31 | 2015-10-23 17:03:17 -0700 | [diff] [blame] | 86 | public: |
Ana Krulec | 4593b69 | 2019-01-11 22:07:25 -0800 | [diff] [blame] | 87 | virtual ~Display(); |
Dan Stoza | 651bf31 | 2015-10-23 17:03:17 -0700 | [diff] [blame] | 88 | |
Peiyong Lin | e9d809e | 2020-04-14 13:10:48 -0700 | [diff] [blame] | 89 | virtual hal::HWDisplayId getId() const = 0; |
Ana Krulec | 4593b69 | 2019-01-11 22:07:25 -0800 | [diff] [blame] | 90 | virtual bool isConnected() const = 0; |
| 91 | virtual void setConnected(bool connected) = 0; // For use by Device only |
Leon Scroggins III | 5967aec | 2021-12-29 11:14:22 -0500 | [diff] [blame] | 92 | virtual bool hasCapability( |
| 93 | aidl::android::hardware::graphics::composer3::DisplayCapability) const = 0; |
Ady Abraham | 7159f57 | 2019-10-11 11:10:18 -0700 | [diff] [blame] | 94 | virtual bool isVsyncPeriodSwitchSupported() const = 0; |
ramindani | 32cf060 | 2022-03-02 02:30:29 +0000 | [diff] [blame] | 95 | virtual bool hasDisplayIdleTimerCapability() const = 0; |
Lloyd Pique | a516c00 | 2021-05-07 14:36:58 -0700 | [diff] [blame] | 96 | virtual void onLayerDestroyed(hal::HWLayerId layerId) = 0; |
Dan Stoza | 651bf31 | 2015-10-23 17:03:17 -0700 | [diff] [blame] | 97 | |
ramindani | 86d3d98 | 2022-03-16 20:57:42 +0000 | [diff] [blame] | 98 | [[nodiscard]] virtual hal::Error acceptChanges() = 0; |
| 99 | [[nodiscard]] virtual base::expected<std::shared_ptr<HWC2::Layer>, hal::Error> |
Lloyd Pique | a516c00 | 2021-05-07 14:36:58 -0700 | [diff] [blame] | 100 | createLayer() = 0; |
ramindani | 86d3d98 | 2022-03-16 20:57:42 +0000 | [diff] [blame] | 101 | [[nodiscard]] virtual hal::Error getChangedCompositionTypes( |
Leon Scroggins III | 2e1aa18 | 2021-12-01 17:33:12 -0500 | [diff] [blame] | 102 | std::unordered_map<Layer*, aidl::android::hardware::graphics::composer3::Composition>* |
| 103 | outTypes) = 0; |
ramindani | 86d3d98 | 2022-03-16 20:57:42 +0000 | [diff] [blame] | 104 | [[nodiscard]] virtual hal::Error getColorModes(std::vector<hal::ColorMode>* outModes) const = 0; |
Chia-I Wu | d7e01d7 | 2018-06-21 13:39:09 +0800 | [diff] [blame] | 105 | // Returns a bitmask which contains HdrMetadata::Type::*. |
ramindani | 86d3d98 | 2022-03-16 20:57:42 +0000 | [diff] [blame] | 106 | [[nodiscard]] virtual int32_t getSupportedPerFrameMetadata() const = 0; |
| 107 | [[nodiscard]] virtual hal::Error getRenderIntents( |
Peiyong Lin | e9d809e | 2020-04-14 13:10:48 -0700 | [diff] [blame] | 108 | hal::ColorMode colorMode, std::vector<hal::RenderIntent>* outRenderIntents) const = 0; |
ramindani | 86d3d98 | 2022-03-16 20:57:42 +0000 | [diff] [blame] | 109 | [[nodiscard]] virtual hal::Error getDataspaceSaturationMatrix(hal::Dataspace dataspace, |
| 110 | android::mat4* outMatrix) = 0; |
Ana Krulec | 4593b69 | 2019-01-11 22:07:25 -0800 | [diff] [blame] | 111 | |
ramindani | 86d3d98 | 2022-03-16 20:57:42 +0000 | [diff] [blame] | 112 | [[nodiscard]] virtual hal::Error getName(std::string* outName) const = 0; |
| 113 | [[nodiscard]] virtual hal::Error getRequests( |
Peiyong Lin | e9d809e | 2020-04-14 13:10:48 -0700 | [diff] [blame] | 114 | hal::DisplayRequest* outDisplayRequests, |
| 115 | std::unordered_map<Layer*, hal::LayerRequest>* outLayerRequests) = 0; |
ramindani | 86d3d98 | 2022-03-16 20:57:42 +0000 | [diff] [blame] | 116 | [[nodiscard]] virtual hal::Error getConnectionType(ui::DisplayConnectionType*) const = 0; |
| 117 | [[nodiscard]] virtual hal::Error supportsDoze(bool* outSupport) const = 0; |
| 118 | [[nodiscard]] virtual hal::Error getHdrCapabilities( |
Ana Krulec | 4593b69 | 2019-01-11 22:07:25 -0800 | [diff] [blame] | 119 | android::HdrCapabilities* outCapabilities) const = 0; |
ramindani | 86d3d98 | 2022-03-16 20:57:42 +0000 | [diff] [blame] | 120 | [[nodiscard]] virtual hal::Error getDisplayedContentSamplingAttributes( |
Peiyong Lin | e9d809e | 2020-04-14 13:10:48 -0700 | [diff] [blame] | 121 | hal::PixelFormat* outFormat, hal::Dataspace* outDataspace, |
Ana Krulec | 4593b69 | 2019-01-11 22:07:25 -0800 | [diff] [blame] | 122 | uint8_t* outComponentMask) const = 0; |
ramindani | 86d3d98 | 2022-03-16 20:57:42 +0000 | [diff] [blame] | 123 | [[nodiscard]] virtual hal::Error setDisplayContentSamplingEnabled(bool enabled, |
| 124 | uint8_t componentMask, |
| 125 | uint64_t maxFrames) const = 0; |
| 126 | [[nodiscard]] virtual hal::Error getDisplayedContentSample( |
Ana Krulec | 4593b69 | 2019-01-11 22:07:25 -0800 | [diff] [blame] | 127 | uint64_t maxFrames, uint64_t timestamp, |
| 128 | android::DisplayedFrameStats* outStats) const = 0; |
ramindani | 86d3d98 | 2022-03-16 20:57:42 +0000 | [diff] [blame] | 129 | [[nodiscard]] virtual hal::Error getReleaseFences( |
Ana Krulec | 4593b69 | 2019-01-11 22:07:25 -0800 | [diff] [blame] | 130 | std::unordered_map<Layer*, android::sp<android::Fence>>* outFences) const = 0; |
ramindani | 86d3d98 | 2022-03-16 20:57:42 +0000 | [diff] [blame] | 131 | [[nodiscard]] virtual hal::Error present(android::sp<android::Fence>* outPresentFence) = 0; |
| 132 | [[nodiscard]] virtual hal::Error setClientTarget( |
Ana Krulec | 4593b69 | 2019-01-11 22:07:25 -0800 | [diff] [blame] | 133 | uint32_t slot, const android::sp<android::GraphicBuffer>& target, |
Peiyong Lin | e9d809e | 2020-04-14 13:10:48 -0700 | [diff] [blame] | 134 | const android::sp<android::Fence>& acquireFence, hal::Dataspace dataspace) = 0; |
ramindani | 86d3d98 | 2022-03-16 20:57:42 +0000 | [diff] [blame] | 135 | [[nodiscard]] virtual hal::Error setColorMode(hal::ColorMode mode, |
| 136 | hal::RenderIntent renderIntent) = 0; |
| 137 | [[nodiscard]] virtual hal::Error setColorTransform(const android::mat4& matrix) = 0; |
| 138 | [[nodiscard]] virtual hal::Error setOutputBuffer( |
Ana Krulec | 4593b69 | 2019-01-11 22:07:25 -0800 | [diff] [blame] | 139 | const android::sp<android::GraphicBuffer>& buffer, |
| 140 | const android::sp<android::Fence>& releaseFence) = 0; |
ramindani | 86d3d98 | 2022-03-16 20:57:42 +0000 | [diff] [blame] | 141 | [[nodiscard]] virtual hal::Error setPowerMode(hal::PowerMode mode) = 0; |
| 142 | [[nodiscard]] virtual hal::Error setVsyncEnabled(hal::Vsync enabled) = 0; |
| 143 | [[nodiscard]] virtual hal::Error validate(nsecs_t expectedPresentTime, uint32_t* outNumTypes, |
| 144 | uint32_t* outNumRequests) = 0; |
| 145 | [[nodiscard]] virtual hal::Error presentOrValidate(nsecs_t expectedPresentTime, |
| 146 | uint32_t* outNumTypes, |
| 147 | uint32_t* outNumRequests, |
| 148 | android::sp<android::Fence>* outPresentFence, |
| 149 | uint32_t* state) = 0; |
| 150 | [[nodiscard]] virtual std::future<hal::Error> setDisplayBrightness( |
Alec Mouri | 4d8a05d | 2022-03-23 18:14:26 +0000 | [diff] [blame^] | 151 | float brightness, float brightnessNits, |
| 152 | const Hwc2::Composer::DisplayBrightnessOptions& options) = 0; |
ramindani | 86d3d98 | 2022-03-16 20:57:42 +0000 | [diff] [blame] | 153 | [[nodiscard]] virtual hal::Error setActiveConfigWithConstraints( |
Marin Shalamanov | 3ea1d60 | 2020-12-16 19:59:39 +0100 | [diff] [blame] | 154 | hal::HWConfigId configId, const hal::VsyncPeriodChangeConstraints& constraints, |
Peiyong Lin | e9d809e | 2020-04-14 13:10:48 -0700 | [diff] [blame] | 155 | hal::VsyncPeriodChangeTimeline* outTimeline) = 0; |
ramindani | 86d3d98 | 2022-03-16 20:57:42 +0000 | [diff] [blame] | 156 | [[nodiscard]] virtual hal::Error setBootDisplayConfig(hal::HWConfigId configId) = 0; |
| 157 | [[nodiscard]] virtual hal::Error clearBootDisplayConfig() = 0; |
| 158 | [[nodiscard]] virtual hal::Error getPreferredBootDisplayConfig( |
Kriti Dang | 7defaf3 | 2021-11-15 11:55:43 +0100 | [diff] [blame] | 159 | hal::HWConfigId* configId) const = 0; |
ramindani | 86d3d98 | 2022-03-16 20:57:42 +0000 | [diff] [blame] | 160 | [[nodiscard]] virtual hal::Error setAutoLowLatencyMode(bool on) = 0; |
| 161 | [[nodiscard]] virtual hal::Error getSupportedContentTypes( |
Peiyong Lin | e9d809e | 2020-04-14 13:10:48 -0700 | [diff] [blame] | 162 | std::vector<hal::ContentType>*) const = 0; |
ramindani | 86d3d98 | 2022-03-16 20:57:42 +0000 | [diff] [blame] | 163 | [[nodiscard]] virtual hal::Error setContentType(hal::ContentType) = 0; |
| 164 | [[nodiscard]] virtual hal::Error getClientTargetProperty( |
Alec Mouri | 8506569 | 2022-03-18 00:58:26 +0000 | [diff] [blame] | 165 | aidl::android::hardware::graphics::composer3::ClientTargetPropertyWithBrightness* |
| 166 | outClientTargetProperty) = 0; |
ramindani | 86d3d98 | 2022-03-16 20:57:42 +0000 | [diff] [blame] | 167 | [[nodiscard]] virtual hal::Error getDisplayDecorationSupport( |
Leon Scroggins III | e7c51c6 | 2022-02-01 15:53:54 -0500 | [diff] [blame] | 168 | std::optional<aidl::android::hardware::graphics::common::DisplayDecorationSupport>* |
| 169 | support) = 0; |
ramindani | 86d3d98 | 2022-03-16 20:57:42 +0000 | [diff] [blame] | 170 | [[nodiscard]] virtual hal::Error setIdleTimerEnabled(std::chrono::milliseconds timeout) = 0; |
| 171 | [[nodiscard]] virtual hal::Error getPhysicalDisplayOrientation( |
ramindani | 06e518e | 2022-03-14 18:47:53 +0000 | [diff] [blame] | 172 | Hwc2::AidlTransform* outTransform) const = 0; |
Ana Krulec | 4593b69 | 2019-01-11 22:07:25 -0800 | [diff] [blame] | 173 | }; |
| 174 | |
| 175 | namespace impl { |
| 176 | |
Lloyd Pique | a516c00 | 2021-05-07 14:36:58 -0700 | [diff] [blame] | 177 | class Layer; |
| 178 | |
Ana Krulec | 4593b69 | 2019-01-11 22:07:25 -0800 | [diff] [blame] | 179 | class Display : public HWC2::Display { |
| 180 | public: |
Ady Abraham | de549d4 | 2022-01-26 19:19:17 -0800 | [diff] [blame] | 181 | Display(android::Hwc2::Composer&, |
| 182 | const std::unordered_set<aidl::android::hardware::graphics::composer3::Capability>&, |
| 183 | hal::HWDisplayId, hal::DisplayType); |
Ana Krulec | 4593b69 | 2019-01-11 22:07:25 -0800 | [diff] [blame] | 184 | ~Display() override; |
| 185 | |
| 186 | // Required by HWC2 |
Peiyong Lin | e9d809e | 2020-04-14 13:10:48 -0700 | [diff] [blame] | 187 | hal::Error acceptChanges() override; |
Lloyd Pique | a516c00 | 2021-05-07 14:36:58 -0700 | [diff] [blame] | 188 | base::expected<std::shared_ptr<HWC2::Layer>, hal::Error> createLayer() override; |
Peiyong Lin | e9d809e | 2020-04-14 13:10:48 -0700 | [diff] [blame] | 189 | hal::Error getChangedCompositionTypes( |
Leon Scroggins III | 2e1aa18 | 2021-12-01 17:33:12 -0500 | [diff] [blame] | 190 | std::unordered_map<HWC2::Layer*, |
| 191 | aidl::android::hardware::graphics::composer3::Composition>* outTypes) |
| 192 | override; |
Peiyong Lin | e9d809e | 2020-04-14 13:10:48 -0700 | [diff] [blame] | 193 | hal::Error getColorModes(std::vector<hal::ColorMode>* outModes) const override; |
Ana Krulec | 4593b69 | 2019-01-11 22:07:25 -0800 | [diff] [blame] | 194 | // Returns a bitmask which contains HdrMetadata::Type::*. |
| 195 | int32_t getSupportedPerFrameMetadata() const override; |
Peiyong Lin | e9d809e | 2020-04-14 13:10:48 -0700 | [diff] [blame] | 196 | hal::Error getRenderIntents(hal::ColorMode colorMode, |
| 197 | std::vector<hal::RenderIntent>* outRenderIntents) const override; |
Marin Shalamanov | 0f10d0d | 2020-08-06 20:04:06 +0200 | [diff] [blame] | 198 | hal::Error getDataspaceSaturationMatrix(hal::Dataspace, android::mat4* outMatrix) override; |
Dan Stoza | 651bf31 | 2015-10-23 17:03:17 -0700 | [diff] [blame] | 199 | |
Peiyong Lin | e9d809e | 2020-04-14 13:10:48 -0700 | [diff] [blame] | 200 | hal::Error getName(std::string* outName) const override; |
| 201 | hal::Error getRequests( |
| 202 | hal::DisplayRequest* outDisplayRequests, |
Lloyd Pique | a516c00 | 2021-05-07 14:36:58 -0700 | [diff] [blame] | 203 | std::unordered_map<HWC2::Layer*, hal::LayerRequest>* outLayerRequests) override; |
Marin Shalamanov | 228f46b | 2021-01-28 21:11:45 +0100 | [diff] [blame] | 204 | hal::Error getConnectionType(ui::DisplayConnectionType*) const override; |
Ady Abraham | 27fbcc7 | 2021-09-20 14:54:57 -0700 | [diff] [blame] | 205 | hal::Error supportsDoze(bool* outSupport) const override EXCLUDES(mDisplayCapabilitiesMutex); |
Peiyong Lin | e9d809e | 2020-04-14 13:10:48 -0700 | [diff] [blame] | 206 | hal::Error getHdrCapabilities(android::HdrCapabilities* outCapabilities) const override; |
| 207 | hal::Error getDisplayedContentSamplingAttributes(hal::PixelFormat* outFormat, |
| 208 | hal::Dataspace* outDataspace, |
| 209 | uint8_t* outComponentMask) const override; |
| 210 | hal::Error setDisplayContentSamplingEnabled(bool enabled, uint8_t componentMask, |
| 211 | uint64_t maxFrames) const override; |
| 212 | hal::Error getDisplayedContentSample(uint64_t maxFrames, uint64_t timestamp, |
| 213 | android::DisplayedFrameStats* outStats) const override; |
Lloyd Pique | a516c00 | 2021-05-07 14:36:58 -0700 | [diff] [blame] | 214 | hal::Error getReleaseFences(std::unordered_map<HWC2::Layer*, android::sp<android::Fence>>* |
| 215 | outFences) const override; |
Peiyong Lin | e9d809e | 2020-04-14 13:10:48 -0700 | [diff] [blame] | 216 | hal::Error present(android::sp<android::Fence>* outPresentFence) override; |
Peiyong Lin | e9d809e | 2020-04-14 13:10:48 -0700 | [diff] [blame] | 217 | hal::Error setClientTarget(uint32_t slot, const android::sp<android::GraphicBuffer>& target, |
| 218 | const android::sp<android::Fence>& acquireFence, |
| 219 | hal::Dataspace dataspace) override; |
Marin Shalamanov | 0f10d0d | 2020-08-06 20:04:06 +0200 | [diff] [blame] | 220 | hal::Error setColorMode(hal::ColorMode, hal::RenderIntent) override; |
Ady Abraham | dc011a9 | 2021-12-21 14:06:44 -0800 | [diff] [blame] | 221 | hal::Error setColorTransform(const android::mat4& matrix) override; |
Marin Shalamanov | 0f10d0d | 2020-08-06 20:04:06 +0200 | [diff] [blame] | 222 | hal::Error setOutputBuffer(const android::sp<android::GraphicBuffer>&, |
Peiyong Lin | e9d809e | 2020-04-14 13:10:48 -0700 | [diff] [blame] | 223 | const android::sp<android::Fence>& releaseFence) override; |
Marin Shalamanov | 0f10d0d | 2020-08-06 20:04:06 +0200 | [diff] [blame] | 224 | hal::Error setPowerMode(hal::PowerMode) override; |
Peiyong Lin | e9d809e | 2020-04-14 13:10:48 -0700 | [diff] [blame] | 225 | hal::Error setVsyncEnabled(hal::Vsync enabled) override; |
Ady Abraham | 43065bd | 2021-12-10 17:22:15 -0800 | [diff] [blame] | 226 | hal::Error validate(nsecs_t expectedPresentTime, uint32_t* outNumTypes, |
| 227 | uint32_t* outNumRequests) override; |
| 228 | hal::Error presentOrValidate(nsecs_t expectedPresentTime, uint32_t* outNumTypes, |
| 229 | uint32_t* outNumRequests, |
Peiyong Lin | e9d809e | 2020-04-14 13:10:48 -0700 | [diff] [blame] | 230 | android::sp<android::Fence>* outPresentFence, |
| 231 | uint32_t* state) override; |
Alec Mouri | cdf1679 | 2021-12-10 13:16:06 -0800 | [diff] [blame] | 232 | std::future<hal::Error> setDisplayBrightness( |
Alec Mouri | 4d8a05d | 2022-03-23 18:14:26 +0000 | [diff] [blame^] | 233 | float brightness, float brightnessNits, |
| 234 | const Hwc2::Composer::DisplayBrightnessOptions& options) override; |
Marin Shalamanov | 3ea1d60 | 2020-12-16 19:59:39 +0100 | [diff] [blame] | 235 | hal::Error setActiveConfigWithConstraints(hal::HWConfigId configId, |
| 236 | const hal::VsyncPeriodChangeConstraints& constraints, |
| 237 | hal::VsyncPeriodChangeTimeline* outTimeline) override; |
Kriti Dang | 7defaf3 | 2021-11-15 11:55:43 +0100 | [diff] [blame] | 238 | hal::Error setBootDisplayConfig(hal::HWConfigId configId) override; |
| 239 | hal::Error clearBootDisplayConfig() override; |
| 240 | hal::Error getPreferredBootDisplayConfig(hal::HWConfigId* configId) const override; |
Dominik Laskowski | 5690bde | 2020-04-23 19:04:22 -0700 | [diff] [blame] | 241 | hal::Error setAutoLowLatencyMode(bool on) override; |
Peiyong Lin | e9d809e | 2020-04-14 13:10:48 -0700 | [diff] [blame] | 242 | hal::Error getSupportedContentTypes( |
| 243 | std::vector<hal::ContentType>* outSupportedContentTypes) const override; |
Dominik Laskowski | 5690bde | 2020-04-23 19:04:22 -0700 | [diff] [blame] | 244 | hal::Error setContentType(hal::ContentType) override; |
Alec Mouri | 8506569 | 2022-03-18 00:58:26 +0000 | [diff] [blame] | 245 | hal::Error getClientTargetProperty( |
| 246 | aidl::android::hardware::graphics::composer3::ClientTargetPropertyWithBrightness* |
| 247 | outClientTargetProperty) override; |
Leon Scroggins III | e7c51c6 | 2022-02-01 15:53:54 -0500 | [diff] [blame] | 248 | hal::Error getDisplayDecorationSupport( |
| 249 | std::optional<aidl::android::hardware::graphics::common::DisplayDecorationSupport>* |
| 250 | support) override; |
ramindani | 32cf060 | 2022-03-02 02:30:29 +0000 | [diff] [blame] | 251 | hal::Error setIdleTimerEnabled(std::chrono::milliseconds timeout) override; |
Peiyong Lin | dfc3f7c | 2020-05-07 20:15:50 -0700 | [diff] [blame] | 252 | |
Dan Stoza | 651bf31 | 2015-10-23 17:03:17 -0700 | [diff] [blame] | 253 | // Other Display methods |
Peiyong Lin | e9d809e | 2020-04-14 13:10:48 -0700 | [diff] [blame] | 254 | hal::HWDisplayId getId() const override { return mId; } |
Ana Krulec | 4593b69 | 2019-01-11 22:07:25 -0800 | [diff] [blame] | 255 | bool isConnected() const override { return mIsConnected; } |
| 256 | void setConnected(bool connected) override; // For use by Device only |
Leon Scroggins III | 5967aec | 2021-12-29 11:14:22 -0500 | [diff] [blame] | 257 | bool hasCapability(aidl::android::hardware::graphics::composer3::DisplayCapability) |
| 258 | const override EXCLUDES(mDisplayCapabilitiesMutex); |
Lloyd Pique | a516c00 | 2021-05-07 14:36:58 -0700 | [diff] [blame] | 259 | bool isVsyncPeriodSwitchSupported() const override; |
ramindani | 32cf060 | 2022-03-02 02:30:29 +0000 | [diff] [blame] | 260 | bool hasDisplayIdleTimerCapability() const override; |
Lloyd Pique | a516c00 | 2021-05-07 14:36:58 -0700 | [diff] [blame] | 261 | void onLayerDestroyed(hal::HWLayerId layerId) override; |
ramindani | 06e518e | 2022-03-14 18:47:53 +0000 | [diff] [blame] | 262 | hal::Error getPhysicalDisplayOrientation(Hwc2::AidlTransform* outTransform) const override; |
Dan Stoza | 651bf31 | 2015-10-23 17:03:17 -0700 | [diff] [blame] | 263 | |
| 264 | private: |
Dan Stoza | 651bf31 | 2015-10-23 17:03:17 -0700 | [diff] [blame] | 265 | |
Dan Stoza | 651bf31 | 2015-10-23 17:03:17 -0700 | [diff] [blame] | 266 | // This may fail (and return a null pointer) if no layer with this ID exists |
| 267 | // on this display |
Lloyd Pique | a516c00 | 2021-05-07 14:36:58 -0700 | [diff] [blame] | 268 | std::shared_ptr<HWC2::Layer> getLayerById(hal::HWLayerId id) const; |
Dan Stoza | 651bf31 | 2015-10-23 17:03:17 -0700 | [diff] [blame] | 269 | |
Lloyd Pique | bc79209 | 2018-01-17 11:52:30 -0800 | [diff] [blame] | 270 | friend android::TestableSurfaceFlinger; |
| 271 | |
Dan Stoza | 651bf31 | 2015-10-23 17:03:17 -0700 | [diff] [blame] | 272 | // Member variables |
| 273 | |
Steven Thomas | 94e35b9 | 2017-07-26 18:48:28 -0700 | [diff] [blame] | 274 | // These are references to data owned by HWC2::Device, which will outlive |
| 275 | // this HWC2::Display, so these references are guaranteed to be valid for |
| 276 | // the lifetime of this object. |
| 277 | android::Hwc2::Composer& mComposer; |
Ady Abraham | de549d4 | 2022-01-26 19:19:17 -0800 | [diff] [blame] | 278 | const std::unordered_set<aidl::android::hardware::graphics::composer3::Capability>& |
| 279 | mCapabilities; |
Steven Thomas | 94e35b9 | 2017-07-26 18:48:28 -0700 | [diff] [blame] | 280 | |
Peiyong Lin | e9d809e | 2020-04-14 13:10:48 -0700 | [diff] [blame] | 281 | const hal::HWDisplayId mId; |
| 282 | hal::DisplayType mType; |
Dominik Laskowski | 55c8540 | 2020-01-21 16:25:47 -0800 | [diff] [blame] | 283 | bool mIsConnected = false; |
Ady Abraham | 7159f57 | 2019-10-11 11:10:18 -0700 | [diff] [blame] | 284 | |
Lloyd Pique | a516c00 | 2021-05-07 14:36:58 -0700 | [diff] [blame] | 285 | using Layers = std::unordered_map<hal::HWLayerId, std::weak_ptr<HWC2::impl::Layer>>; |
| 286 | Layers mLayers; |
Ady Abraham | 7159f57 | 2019-10-11 11:10:18 -0700 | [diff] [blame] | 287 | |
Ady Abraham | 27fbcc7 | 2021-09-20 14:54:57 -0700 | [diff] [blame] | 288 | mutable std::mutex mDisplayCapabilitiesMutex; |
Peiyong Lin | 1336e6e | 2019-05-28 09:23:50 -0700 | [diff] [blame] | 289 | std::once_flag mDisplayCapabilityQueryFlag; |
Leon Scroggins III | 5967aec | 2021-12-29 11:14:22 -0500 | [diff] [blame] | 290 | std::optional< |
| 291 | std::unordered_set<aidl::android::hardware::graphics::composer3::DisplayCapability>> |
| 292 | mDisplayCapabilities GUARDED_BY(mDisplayCapabilitiesMutex); |
Dan Stoza | 651bf31 | 2015-10-23 17:03:17 -0700 | [diff] [blame] | 293 | }; |
Dominik Laskowski | 55c8540 | 2020-01-21 16:25:47 -0800 | [diff] [blame] | 294 | |
Ana Krulec | 4593b69 | 2019-01-11 22:07:25 -0800 | [diff] [blame] | 295 | } // namespace impl |
Dan Stoza | 651bf31 | 2015-10-23 17:03:17 -0700 | [diff] [blame] | 296 | |
Lloyd Pique | 35d5824 | 2018-12-18 16:33:25 -0800 | [diff] [blame] | 297 | class Layer { |
| 298 | public: |
| 299 | virtual ~Layer(); |
| 300 | |
Peiyong Lin | e9d809e | 2020-04-14 13:10:48 -0700 | [diff] [blame] | 301 | virtual hal::HWLayerId getId() const = 0; |
Lloyd Pique | 35d5824 | 2018-12-18 16:33:25 -0800 | [diff] [blame] | 302 | |
ramindani | 86d3d98 | 2022-03-16 20:57:42 +0000 | [diff] [blame] | 303 | [[nodiscard]] virtual hal::Error setCursorPosition(int32_t x, int32_t y) = 0; |
| 304 | [[nodiscard]] virtual hal::Error setBuffer(uint32_t slot, |
| 305 | const android::sp<android::GraphicBuffer>& buffer, |
| 306 | const android::sp<android::Fence>& acquireFence) = 0; |
| 307 | [[nodiscard]] virtual hal::Error setSurfaceDamage(const android::Region& damage) = 0; |
Lloyd Pique | 35d5824 | 2018-12-18 16:33:25 -0800 | [diff] [blame] | 308 | |
ramindani | 86d3d98 | 2022-03-16 20:57:42 +0000 | [diff] [blame] | 309 | [[nodiscard]] virtual hal::Error setBlendMode(hal::BlendMode mode) = 0; |
| 310 | [[nodiscard]] virtual hal::Error setColor( |
Ady Abraham | 6e60b14 | 2022-01-06 18:10:35 -0800 | [diff] [blame] | 311 | aidl::android::hardware::graphics::composer3::Color color) = 0; |
ramindani | 86d3d98 | 2022-03-16 20:57:42 +0000 | [diff] [blame] | 312 | [[nodiscard]] virtual hal::Error setCompositionType( |
Leon Scroggins III | 2e1aa18 | 2021-12-01 17:33:12 -0500 | [diff] [blame] | 313 | aidl::android::hardware::graphics::composer3::Composition type) = 0; |
ramindani | 86d3d98 | 2022-03-16 20:57:42 +0000 | [diff] [blame] | 314 | [[nodiscard]] virtual hal::Error setDataspace(hal::Dataspace dataspace) = 0; |
| 315 | [[nodiscard]] virtual hal::Error setPerFrameMetadata(const int32_t supportedPerFrameMetadata, |
| 316 | const android::HdrMetadata& metadata) = 0; |
| 317 | [[nodiscard]] virtual hal::Error setDisplayFrame(const android::Rect& frame) = 0; |
| 318 | [[nodiscard]] virtual hal::Error setPlaneAlpha(float alpha) = 0; |
| 319 | [[nodiscard]] virtual hal::Error setSidebandStream(const native_handle_t* stream) = 0; |
| 320 | [[nodiscard]] virtual hal::Error setSourceCrop(const android::FloatRect& crop) = 0; |
| 321 | [[nodiscard]] virtual hal::Error setTransform(hal::Transform transform) = 0; |
| 322 | [[nodiscard]] virtual hal::Error setVisibleRegion(const android::Region& region) = 0; |
| 323 | [[nodiscard]] virtual hal::Error setZOrder(uint32_t z) = 0; |
Lloyd Pique | 35d5824 | 2018-12-18 16:33:25 -0800 | [diff] [blame] | 324 | |
| 325 | // Composer HAL 2.3 |
ramindani | 86d3d98 | 2022-03-16 20:57:42 +0000 | [diff] [blame] | 326 | [[nodiscard]] virtual hal::Error setColorTransform(const android::mat4& matrix) = 0; |
Lloyd Pique | 4603f3c | 2020-02-11 12:06:56 -0800 | [diff] [blame] | 327 | |
| 328 | // Composer HAL 2.4 |
ramindani | 86d3d98 | 2022-03-16 20:57:42 +0000 | [diff] [blame] | 329 | [[nodiscard]] virtual hal::Error setLayerGenericMetadata(const std::string& name, |
| 330 | bool mandatory, |
| 331 | const std::vector<uint8_t>& value) = 0; |
Alec Mouri | cdf6cbc | 2021-11-01 17:21:15 -0700 | [diff] [blame] | 332 | |
| 333 | // AIDL HAL |
ramindani | 86d3d98 | 2022-03-16 20:57:42 +0000 | [diff] [blame] | 334 | [[nodiscard]] virtual hal::Error setBrightness(float brightness) = 0; |
| 335 | [[nodiscard]] virtual hal::Error setBlockingRegion(const android::Region& region) = 0; |
Lloyd Pique | 35d5824 | 2018-12-18 16:33:25 -0800 | [diff] [blame] | 336 | }; |
| 337 | |
| 338 | namespace impl { |
| 339 | |
Peiyong Lin | e9d809e | 2020-04-14 13:10:48 -0700 | [diff] [blame] | 340 | // Convenience C++ class to access per layer functions directly. |
Lloyd Pique | 35d5824 | 2018-12-18 16:33:25 -0800 | [diff] [blame] | 341 | |
| 342 | class Layer : public HWC2::Layer { |
Dan Stoza | 651bf31 | 2015-10-23 17:03:17 -0700 | [diff] [blame] | 343 | public: |
Peiyong Lin | e9d809e | 2020-04-14 13:10:48 -0700 | [diff] [blame] | 344 | Layer(android::Hwc2::Composer& composer, |
Ady Abraham | de549d4 | 2022-01-26 19:19:17 -0800 | [diff] [blame] | 345 | const std::unordered_set<aidl::android::hardware::graphics::composer3::Capability>& |
| 346 | capabilities, |
| 347 | HWC2::Display& display, hal::HWLayerId layerId); |
Lloyd Pique | 35d5824 | 2018-12-18 16:33:25 -0800 | [diff] [blame] | 348 | ~Layer() override; |
Dan Stoza | 651bf31 | 2015-10-23 17:03:17 -0700 | [diff] [blame] | 349 | |
Lloyd Pique | a516c00 | 2021-05-07 14:36:58 -0700 | [diff] [blame] | 350 | void onOwningDisplayDestroyed(); |
| 351 | |
Peiyong Lin | e9d809e | 2020-04-14 13:10:48 -0700 | [diff] [blame] | 352 | hal::HWLayerId getId() const override { return mId; } |
Dan Stoza | 651bf31 | 2015-10-23 17:03:17 -0700 | [diff] [blame] | 353 | |
Peiyong Lin | e9d809e | 2020-04-14 13:10:48 -0700 | [diff] [blame] | 354 | hal::Error setCursorPosition(int32_t x, int32_t y) override; |
| 355 | hal::Error setBuffer(uint32_t slot, const android::sp<android::GraphicBuffer>& buffer, |
| 356 | const android::sp<android::Fence>& acquireFence) override; |
| 357 | hal::Error setSurfaceDamage(const android::Region& damage) override; |
Steven Thomas | 94e35b9 | 2017-07-26 18:48:28 -0700 | [diff] [blame] | 358 | |
Peiyong Lin | e9d809e | 2020-04-14 13:10:48 -0700 | [diff] [blame] | 359 | hal::Error setBlendMode(hal::BlendMode mode) override; |
Ady Abraham | 6e60b14 | 2022-01-06 18:10:35 -0800 | [diff] [blame] | 360 | hal::Error setColor(aidl::android::hardware::graphics::composer3::Color color) override; |
Leon Scroggins III | 2e1aa18 | 2021-12-01 17:33:12 -0500 | [diff] [blame] | 361 | hal::Error setCompositionType( |
| 362 | aidl::android::hardware::graphics::composer3::Composition type) override; |
Peiyong Lin | e9d809e | 2020-04-14 13:10:48 -0700 | [diff] [blame] | 363 | hal::Error setDataspace(hal::Dataspace dataspace) override; |
| 364 | hal::Error setPerFrameMetadata(const int32_t supportedPerFrameMetadata, |
| 365 | const android::HdrMetadata& metadata) override; |
| 366 | hal::Error setDisplayFrame(const android::Rect& frame) override; |
| 367 | hal::Error setPlaneAlpha(float alpha) override; |
| 368 | hal::Error setSidebandStream(const native_handle_t* stream) override; |
| 369 | hal::Error setSourceCrop(const android::FloatRect& crop) override; |
| 370 | hal::Error setTransform(hal::Transform transform) override; |
| 371 | hal::Error setVisibleRegion(const android::Region& region) override; |
| 372 | hal::Error setZOrder(uint32_t z) override; |
Dan Stoza | 651bf31 | 2015-10-23 17:03:17 -0700 | [diff] [blame] | 373 | |
Peiyong Lin | 698147a | 2018-09-14 13:27:18 -0700 | [diff] [blame] | 374 | // Composer HAL 2.3 |
Peiyong Lin | e9d809e | 2020-04-14 13:10:48 -0700 | [diff] [blame] | 375 | hal::Error setColorTransform(const android::mat4& matrix) override; |
Peiyong Lin | 698147a | 2018-09-14 13:27:18 -0700 | [diff] [blame] | 376 | |
Lloyd Pique | 4603f3c | 2020-02-11 12:06:56 -0800 | [diff] [blame] | 377 | // Composer HAL 2.4 |
Peiyong Lin | e9d809e | 2020-04-14 13:10:48 -0700 | [diff] [blame] | 378 | hal::Error setLayerGenericMetadata(const std::string& name, bool mandatory, |
| 379 | const std::vector<uint8_t>& value) override; |
Lloyd Pique | 4603f3c | 2020-02-11 12:06:56 -0800 | [diff] [blame] | 380 | |
Alec Mouri | cdf6cbc | 2021-11-01 17:21:15 -0700 | [diff] [blame] | 381 | // AIDL HAL |
Alec Mouri | 6da0e27 | 2022-02-07 12:45:57 -0800 | [diff] [blame] | 382 | hal::Error setBrightness(float brightness) override; |
Leon Scroggins III | d77d316 | 2022-01-05 10:42:28 -0500 | [diff] [blame] | 383 | hal::Error setBlockingRegion(const android::Region& region) override; |
Alec Mouri | cdf6cbc | 2021-11-01 17:21:15 -0700 | [diff] [blame] | 384 | |
Dan Stoza | 651bf31 | 2015-10-23 17:03:17 -0700 | [diff] [blame] | 385 | private: |
Steven Thomas | 94e35b9 | 2017-07-26 18:48:28 -0700 | [diff] [blame] | 386 | // These are references to data owned by HWC2::Device, which will outlive |
| 387 | // this HWC2::Layer, so these references are guaranteed to be valid for |
| 388 | // the lifetime of this object. |
| 389 | android::Hwc2::Composer& mComposer; |
Ady Abraham | de549d4 | 2022-01-26 19:19:17 -0800 | [diff] [blame] | 390 | const std::unordered_set<aidl::android::hardware::graphics::composer3::Capability>& |
| 391 | mCapabilities; |
Steven Thomas | 94e35b9 | 2017-07-26 18:48:28 -0700 | [diff] [blame] | 392 | |
Lloyd Pique | a516c00 | 2021-05-07 14:36:58 -0700 | [diff] [blame] | 393 | HWC2::Display* mDisplay; |
Peiyong Lin | e9d809e | 2020-04-14 13:10:48 -0700 | [diff] [blame] | 394 | hal::HWLayerId mId; |
Yichi Chen | 8366f56 | 2019-03-25 19:44:06 +0800 | [diff] [blame] | 395 | |
| 396 | // Cached HWC2 data, to ensure the same commands aren't sent to the HWC |
| 397 | // multiple times. |
| 398 | android::Region mVisibleRegion = android::Region::INVALID_REGION; |
| 399 | android::Region mDamageRegion = android::Region::INVALID_REGION; |
Leon Scroggins III | d77d316 | 2022-01-05 10:42:28 -0500 | [diff] [blame] | 400 | android::Region mBlockingRegion = android::Region::INVALID_REGION; |
Peiyong Lin | e9d809e | 2020-04-14 13:10:48 -0700 | [diff] [blame] | 401 | hal::Dataspace mDataSpace = hal::Dataspace::UNKNOWN; |
Courtney Goeltzenleuchter | f9c98e5 | 2018-02-12 07:23:17 -0700 | [diff] [blame] | 402 | android::HdrMetadata mHdrMetadata; |
Peiyong Lin | 698147a | 2018-09-14 13:27:18 -0700 | [diff] [blame] | 403 | android::mat4 mColorMatrix; |
Yichi Chen | 8366f56 | 2019-03-25 19:44:06 +0800 | [diff] [blame] | 404 | uint32_t mBufferSlot; |
Dan Stoza | 651bf31 | 2015-10-23 17:03:17 -0700 | [diff] [blame] | 405 | }; |
| 406 | |
Lloyd Pique | 35d5824 | 2018-12-18 16:33:25 -0800 | [diff] [blame] | 407 | } // namespace impl |
Dan Stoza | 651bf31 | 2015-10-23 17:03:17 -0700 | [diff] [blame] | 408 | } // namespace HWC2 |
Peiyong Lin | e9d809e | 2020-04-14 13:10:48 -0700 | [diff] [blame] | 409 | } // namespace android |