blob: 1d8d46354db54029bd0dcbfc3f1bb0d43bf0d581 [file] [log] [blame]
Alex Vakulenkoa8a92782017-01-27 14:41:57 -08001#ifndef ANDROID_DVR_SERVICES_DISPLAYD_HARDWARE_COMPOSER_H_
2#define ANDROID_DVR_SERVICES_DISPLAYD_HARDWARE_COMPOSER_H_
3
Corey Tabaka2251d822017-04-20 16:04:07 -07004#include <ui/GraphicBuffer.h>
5#include "DisplayHardware/ComposerHal.h"
6#include "hwc_types.h"
Alex Vakulenkoa8a92782017-01-27 14:41:57 -08007
Okan Arikan822b7102017-05-08 13:31:34 -07008#include <dvr/dvr_shared_buffers.h>
Corey Tabaka2251d822017-04-20 16:04:07 -07009#include <hardware/gralloc.h>
10#include <log/log.h>
Alex Vakulenkoa8a92782017-01-27 14:41:57 -080011
12#include <array>
13#include <condition_variable>
14#include <memory>
15#include <mutex>
Steven Thomasbfe46a02018-02-16 14:27:35 -080016#include <optional>
Alex Vakulenkoa8a92782017-01-27 14:41:57 -080017#include <thread>
18#include <tuple>
19#include <vector>
20
Okan Arikan6f468c62017-05-31 14:48:30 -070021#include <dvr/dvr_config.h>
Okan Arikan822b7102017-05-08 13:31:34 -070022#include <dvr/dvr_vsync.h>
Alex Vakulenkoa8a92782017-01-27 14:41:57 -080023#include <pdx/file_handle.h>
Corey Tabaka2251d822017-04-20 16:04:07 -070024#include <pdx/rpc/variant.h>
Alex Vakulenkoa8a92782017-01-27 14:41:57 -080025#include <private/dvr/buffer_hub_client.h>
Okan Arikan822b7102017-05-08 13:31:34 -070026#include <private/dvr/shared_buffer_helpers.h>
Alex Vakulenkoa8a92782017-01-27 14:41:57 -080027
28#include "acquired_buffer.h"
Alex Vakulenkoa8a92782017-01-27 14:41:57 -080029#include "display_surface.h"
30
Alex Vakulenkoa8a92782017-01-27 14:41:57 -080031// Hardware composer HAL doesn't define HWC_TRANSFORM_NONE as of this writing.
32#ifndef HWC_TRANSFORM_NONE
33#define HWC_TRANSFORM_NONE static_cast<hwc_transform_t>(0)
34#endif
35
36namespace android {
37namespace dvr {
38
Steven Thomasbfe46a02018-02-16 14:27:35 -080039// Basic display metrics for physical displays.
40struct DisplayParams {
41 hwc2_display_t id;
42 bool is_primary;
43
Alex Vakulenkoa8a92782017-01-27 14:41:57 -080044 int width;
45 int height;
Steven Thomasbfe46a02018-02-16 14:27:35 -080046
Alex Vakulenkoa8a92782017-01-27 14:41:57 -080047 struct {
48 int x;
49 int y;
50 } dpi;
Steven Thomasbfe46a02018-02-16 14:27:35 -080051
Alex Vakulenkoa8a92782017-01-27 14:41:57 -080052 int vsync_period_ns;
53};
54
55// Layer represents the connection between a hardware composer layer and the
56// source supplying buffers for the layer's contents.
57class Layer {
58 public:
Corey Tabaka2c4aea32017-08-31 20:01:15 -070059 Layer() = default;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -080060
61 // Sets up the layer to use a display surface as its content source. The Layer
Corey Tabaka2251d822017-04-20 16:04:07 -070062 // automatically handles ACQUIRE/RELEASE phases for the surface's buffer train
63 // every frame.
Alex Vakulenkoa8a92782017-01-27 14:41:57 -080064 //
Steven Thomasbfe46a02018-02-16 14:27:35 -080065 // |composer| The composer instance.
66 // |display_params| Info about the display to use.
Alex Vakulenkoa8a92782017-01-27 14:41:57 -080067 // |blending| receives HWC_BLENDING_* values.
Alex Vakulenkoa8a92782017-01-27 14:41:57 -080068 // |composition_type| receives either HWC_FRAMEBUFFER for most layers or
69 // HWC_FRAMEBUFFER_TARGET (unless you know what you are doing).
Corey Tabaka2251d822017-04-20 16:04:07 -070070 // |index| is the index of this surface in the DirectDisplaySurface array.
Steven Thomasbfe46a02018-02-16 14:27:35 -080071 Layer(Hwc2::Composer* composer, const DisplayParams& display_params,
72 const std::shared_ptr<DirectDisplaySurface>& surface,
73 HWC::BlendMode blending, HWC::Composition composition_type,
74 size_t z_order);
Alex Vakulenkoa8a92782017-01-27 14:41:57 -080075
76 // Sets up the layer to use a direct buffer as its content source. No special
77 // handling of the buffer is performed; responsibility for updating or
78 // changing the buffer each frame is on the caller.
79 //
Steven Thomasbfe46a02018-02-16 14:27:35 -080080 // |composer| The composer instance.
81 // |display_params| Info about the display to use.
Alex Vakulenkoa8a92782017-01-27 14:41:57 -080082 // |blending| receives HWC_BLENDING_* values.
Alex Vakulenkoa8a92782017-01-27 14:41:57 -080083 // |composition_type| receives either HWC_FRAMEBUFFER for most layers or
84 // HWC_FRAMEBUFFER_TARGET (unless you know what you are doing).
Steven Thomasbfe46a02018-02-16 14:27:35 -080085 Layer(Hwc2::Composer* composer, const DisplayParams& display_params,
86 const std::shared_ptr<IonBuffer>& buffer, HWC::BlendMode blending,
87 HWC::Composition composition_type, size_t z_order);
Corey Tabaka2c4aea32017-08-31 20:01:15 -070088
89 Layer(Layer&&);
90 Layer& operator=(Layer&&);
91
92 ~Layer();
93
94 // Releases any shared pointers and fence handles held by this instance.
95 void Reset();
Alex Vakulenkoa8a92782017-01-27 14:41:57 -080096
97 // Layers that use a direct IonBuffer should call this each frame to update
98 // which buffer will be used for the next PostLayers.
Corey Tabaka2251d822017-04-20 16:04:07 -070099 void UpdateBuffer(const std::shared_ptr<IonBuffer>& buffer);
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800100
101 // Sets up the hardware composer layer for the next frame. When the layer is
102 // associated with a display surface, this method automatically ACQUIRES a new
103 // buffer if one is available.
104 void Prepare();
105
106 // After calling prepare, if this frame is to be dropped instead of passing
107 // along to the HWC, call Drop to close the contained fence(s).
108 void Drop();
109
110 // Performs fence bookkeeping after the frame has been posted to hardware
111 // composer.
112 void Finish(int release_fence_fd);
113
114 // Sets the blending for the layer. |blending| receives HWC_BLENDING_* values.
Corey Tabaka2251d822017-04-20 16:04:07 -0700115 void SetBlending(HWC::BlendMode blending);
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800116
Corey Tabaka2251d822017-04-20 16:04:07 -0700117 // Sets the z-order of this layer
118 void SetZOrder(size_t z_order);
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800119
120 // Gets the current IonBuffer associated with this layer. Ownership of the
121 // buffer DOES NOT pass to the caller and the pointer is not guaranteed to
122 // remain valid across calls to Layer::Setup(), Layer::Prepare(), or
123 // Layer::Reset(). YOU HAVE BEEN WARNED.
124 IonBuffer* GetBuffer();
125
Corey Tabaka2251d822017-04-20 16:04:07 -0700126 HWC::Composition GetCompositionType() const { return composition_type_; }
127 HWC::Layer GetLayerHandle() const { return hardware_composer_layer_; }
128 bool IsLayerSetup() const { return !source_.empty(); }
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800129
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800130 int GetSurfaceId() const {
Corey Tabaka2251d822017-04-20 16:04:07 -0700131 int surface_id = -1;
132 pdx::rpc::IfAnyOf<SourceSurface>::Call(
133 &source_, [&surface_id](const SourceSurface& surface_source) {
Corey Tabaka0b485c92017-05-19 12:02:58 -0700134 surface_id = surface_source.GetSurfaceId();
Corey Tabaka2251d822017-04-20 16:04:07 -0700135 });
136 return surface_id;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800137 }
138
Corey Tabaka0b485c92017-05-19 12:02:58 -0700139 int GetBufferId() const {
140 int buffer_id = -1;
141 pdx::rpc::IfAnyOf<SourceSurface>::Call(
142 &source_, [&buffer_id](const SourceSurface& surface_source) {
143 buffer_id = surface_source.GetBufferId();
144 });
145 return buffer_id;
146 }
147
Corey Tabaka2c4aea32017-08-31 20:01:15 -0700148 // Compares Layers by surface id.
149 bool operator<(const Layer& other) const {
150 return GetSurfaceId() < other.GetSurfaceId();
151 }
Corey Tabakab3732f02017-09-16 00:58:54 -0700152 bool operator<(int surface_id) const { return GetSurfaceId() < surface_id; }
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800153
Steven Thomasbfe46a02018-02-16 14:27:35 -0800154 void IgnoreBadDisplayErrorsOnDestroy(bool ignore) {
155 ignore_bad_display_errors_on_destroy_ = ignore;
Steven Thomas6e8f7062017-11-22 14:15:29 -0800156 }
157
Corey Tabaka2c4aea32017-08-31 20:01:15 -0700158 private:
159 void CommonLayerSetup();
160
161 // Applies all of the settings to this layer using the hwc functions
162 void UpdateLayerSettings();
163
164 // Applies visibility settings that may have changed.
165 void UpdateVisibilitySettings();
166
Corey Tabaka0d07cdd2017-09-28 11:15:50 -0700167 // Checks whether the buffer, given by id, is associated with the given slot
168 // in the HWC buffer cache. If the slot is not associated with the given
169 // buffer the cache is updated to establish the association and the buffer
170 // should be sent to HWC using setLayerBuffer. Returns true if the association
171 // was already established, false if not. A buffer_id of -1 is never
172 // associated and always returns false.
173 bool CheckAndUpdateCachedBuffer(std::size_t slot, int buffer_id);
174
Steven Thomasbfe46a02018-02-16 14:27:35 -0800175 // Composer instance.
176 Hwc2::Composer* composer_ = nullptr;
Corey Tabaka2c4aea32017-08-31 20:01:15 -0700177
Steven Thomasbfe46a02018-02-16 14:27:35 -0800178 // Parameters of the display to use for this layer.
179 DisplayParams display_params_;
Steven Thomas6e8f7062017-11-22 14:15:29 -0800180
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800181 // The hardware composer layer and metrics to use during the prepare cycle.
Corey Tabaka2251d822017-04-20 16:04:07 -0700182 hwc2_layer_t hardware_composer_layer_ = 0;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800183
184 // Layer properties used to setup the hardware composer layer during the
185 // Prepare phase.
Corey Tabaka2251d822017-04-20 16:04:07 -0700186 size_t z_order_ = 0;
187 HWC::BlendMode blending_ = HWC::BlendMode::None;
Corey Tabaka2251d822017-04-20 16:04:07 -0700188 HWC::Composition composition_type_ = HWC::Composition::Invalid;
189 HWC::Composition target_composition_type_ = HWC::Composition::Device;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800190
Corey Tabaka2251d822017-04-20 16:04:07 -0700191 // State when the layer is connected to a surface. Provides the same interface
192 // as SourceBuffer to simplify internal use by Layer.
193 struct SourceSurface {
194 std::shared_ptr<DirectDisplaySurface> surface;
195 AcquiredBuffer acquired_buffer;
196 pdx::LocalHandle release_fence;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800197
Corey Tabaka2251d822017-04-20 16:04:07 -0700198 SourceSurface(const std::shared_ptr<DirectDisplaySurface>& surface)
199 : surface(surface) {}
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800200
Corey Tabaka2251d822017-04-20 16:04:07 -0700201 // Attempts to acquire a new buffer from the surface and return a tuple with
202 // width, height, buffer handle, and fence. If a new buffer is not available
203 // the previous buffer is returned or an empty value if no buffer has ever
204 // been posted. When a new buffer is acquired the previous buffer's release
205 // fence is passed out automatically.
Corey Tabaka0d07cdd2017-09-28 11:15:50 -0700206 std::tuple<int, int, int, sp<GraphicBuffer>, pdx::LocalHandle, std::size_t>
207 Acquire() {
Corey Tabaka2251d822017-04-20 16:04:07 -0700208 if (surface->IsBufferAvailable()) {
209 acquired_buffer.Release(std::move(release_fence));
210 acquired_buffer = surface->AcquireCurrentBuffer();
211 ATRACE_ASYNC_END("BufferPost", acquired_buffer.buffer()->id());
212 }
213 if (!acquired_buffer.IsEmpty()) {
Corey Tabaka0d07cdd2017-09-28 11:15:50 -0700214 return std::make_tuple(
215 acquired_buffer.buffer()->width(),
216 acquired_buffer.buffer()->height(), acquired_buffer.buffer()->id(),
217 acquired_buffer.buffer()->buffer()->buffer(),
218 acquired_buffer.ClaimAcquireFence(), acquired_buffer.slot());
Corey Tabaka2251d822017-04-20 16:04:07 -0700219 } else {
Corey Tabaka0d07cdd2017-09-28 11:15:50 -0700220 return std::make_tuple(0, 0, -1, nullptr, pdx::LocalHandle{}, 0);
Corey Tabaka2251d822017-04-20 16:04:07 -0700221 }
222 }
223
224 void Finish(pdx::LocalHandle fence) { release_fence = std::move(fence); }
225
226 // Gets a pointer to the current acquired buffer or returns nullptr if there
227 // isn't one.
228 IonBuffer* GetBuffer() {
229 if (acquired_buffer.IsAvailable())
230 return acquired_buffer.buffer()->buffer();
231 else
232 return nullptr;
233 }
234
235 // Returns the surface id of the surface.
Corey Tabaka0b485c92017-05-19 12:02:58 -0700236 int GetSurfaceId() const { return surface->surface_id(); }
237
238 // Returns the buffer id for the current buffer.
239 int GetBufferId() const {
240 if (acquired_buffer.IsAvailable())
241 return acquired_buffer.buffer()->id();
242 else
243 return -1;
244 }
Corey Tabaka2251d822017-04-20 16:04:07 -0700245 };
246
247 // State when the layer is connected to a buffer. Provides the same interface
248 // as SourceSurface to simplify internal use by Layer.
249 struct SourceBuffer {
250 std::shared_ptr<IonBuffer> buffer;
251
Corey Tabaka0d07cdd2017-09-28 11:15:50 -0700252 std::tuple<int, int, int, sp<GraphicBuffer>, pdx::LocalHandle, std::size_t>
253 Acquire() {
Corey Tabaka2251d822017-04-20 16:04:07 -0700254 if (buffer)
Corey Tabaka0d07cdd2017-09-28 11:15:50 -0700255 return std::make_tuple(buffer->width(), buffer->height(), -1,
256 buffer->buffer(), pdx::LocalHandle{}, 0);
Corey Tabaka2251d822017-04-20 16:04:07 -0700257 else
Corey Tabaka0d07cdd2017-09-28 11:15:50 -0700258 return std::make_tuple(0, 0, -1, nullptr, pdx::LocalHandle{}, 0);
Corey Tabaka2251d822017-04-20 16:04:07 -0700259 }
260
261 void Finish(pdx::LocalHandle /*fence*/) {}
262
263 IonBuffer* GetBuffer() { return buffer.get(); }
264
265 int GetSurfaceId() const { return -1; }
Corey Tabaka0b485c92017-05-19 12:02:58 -0700266 int GetBufferId() const { return -1; }
Corey Tabaka2251d822017-04-20 16:04:07 -0700267 };
268
269 // The underlying hardware composer layer is supplied buffers either from a
270 // surface buffer train or from a buffer directly.
271 pdx::rpc::Variant<SourceSurface, SourceBuffer> source_;
272
273 pdx::LocalHandle acquire_fence_;
274 bool surface_rect_functions_applied_ = false;
Corey Tabaka2c4aea32017-08-31 20:01:15 -0700275 bool pending_visibility_settings_ = true;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800276
Corey Tabaka0d07cdd2017-09-28 11:15:50 -0700277 // Map of buffer slot assignments that have already been established with HWC:
278 // slot -> buffer_id. When this map contains a matching slot and buffer_id the
279 // buffer argument to setLayerBuffer may be nullptr to avoid the cost of
280 // importing a buffer HWC already knows about.
281 std::map<std::size_t, int> cached_buffer_map_;
282
Steven Thomasbfe46a02018-02-16 14:27:35 -0800283 // When calling destroyLayer() on an external display that's been removed we
284 // typically get HWC2_ERROR_BAD_DISPLAY errors. If
285 // ignore_bad_display_errors_on_destroy_ is true, don't log the bad display
286 // errors, since they're expected.
287 bool ignore_bad_display_errors_on_destroy_ = false;
288
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800289 Layer(const Layer&) = delete;
290 void operator=(const Layer&) = delete;
291};
292
293// HardwareComposer encapsulates the hardware composer HAL, exposing a
294// simplified API to post buffers to the display.
Steven Thomas050b2c82017-03-06 11:45:16 -0800295//
296// HardwareComposer is accessed by both the vr flinger dispatcher thread and the
297// surface flinger main thread, in addition to internally running a separate
298// thread for compositing/EDS and posting layers to the HAL. When changing how
299// variables are used or adding new state think carefully about which threads
300// will access the state and whether it needs to be synchronized.
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800301class HardwareComposer {
302 public:
303 // Type for vsync callback.
Steven Thomas6e8f7062017-11-22 14:15:29 -0800304 using VSyncCallback = std::function<void(int64_t, int64_t, uint32_t)>;
Corey Tabaka2251d822017-04-20 16:04:07 -0700305 using RequestDisplayCallback = std::function<void(bool)>;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800306
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800307 HardwareComposer();
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800308 ~HardwareComposer();
309
Corey Tabaka2c4aea32017-08-31 20:01:15 -0700310 bool Initialize(Hwc2::Composer* composer,
Steven Thomas6e8f7062017-11-22 14:15:29 -0800311 hwc2_display_t primary_display_id,
Steven Thomasd7f49c52017-07-26 18:48:28 -0700312 RequestDisplayCallback request_display_callback);
Stephen Kiazyk016e5e32017-02-21 17:09:22 -0800313
314 bool IsInitialized() const { return initialized_; }
315
Steven Thomas050b2c82017-03-06 11:45:16 -0800316 // Start the post thread if there's work to do (i.e. visible layers). This
317 // should only be called from surface flinger's main thread.
318 void Enable();
319 // Pause the post thread, blocking until the post thread has signaled that
320 // it's paused. This should only be called from surface flinger's main thread.
321 void Disable();
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800322
Steven Thomasaf336272018-01-04 17:36:47 -0800323 // Called on a binder thread.
324 void OnBootFinished();
325
Corey Tabaka2251d822017-04-20 16:04:07 -0700326 std::string Dump();
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800327
328 void SetVSyncCallback(VSyncCallback callback);
329
Steven Thomasbfe46a02018-02-16 14:27:35 -0800330 const DisplayParams& GetPrimaryDisplayParams() const {
331 return primary_display_;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800332 }
333
Corey Tabaka2251d822017-04-20 16:04:07 -0700334 // Sets the display surfaces to compose the hardware layer stack.
Steven Thomas050b2c82017-03-06 11:45:16 -0800335 void SetDisplaySurfaces(
Corey Tabaka2251d822017-04-20 16:04:07 -0700336 std::vector<std::shared_ptr<DirectDisplaySurface>> surfaces);
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800337
John Bates954796e2017-05-11 11:00:31 -0700338 int OnNewGlobalBuffer(DvrGlobalBufferKey key, IonBuffer& ion_buffer);
339 void OnDeletedGlobalBuffer(DvrGlobalBufferKey key);
340
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800341 private:
Steven Thomasbfe46a02018-02-16 14:27:35 -0800342 DisplayParams GetDisplayParams(Hwc2::Composer* composer,
343 hwc2_display_t display, bool is_primary);
Steven Thomasd7f49c52017-07-26 18:48:28 -0700344
Steven Thomasbfe46a02018-02-16 14:27:35 -0800345 // Turn display vsync on/off. Returns true on success, false on failure.
346 bool EnableVsync(const DisplayParams& display, bool enabled);
347 // Turn display power on/off. Returns true on success, false on failure.
348 bool SetPowerMode(const DisplayParams& display, bool active);
349 // Convenience function to turn a display on/off. Turns both power and vsync
350 // on/off. Returns true on success, false on failure.
351 bool EnableDisplay(const DisplayParams& display, bool enabled);
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800352
353 class ComposerCallback : public Hwc2::IComposerCallback {
354 public:
Corey Tabakab3732f02017-09-16 00:58:54 -0700355 ComposerCallback() = default;
Steven Thomasd7f49c52017-07-26 18:48:28 -0700356 hardware::Return<void> onHotplug(Hwc2::Display display,
357 Connection conn) override;
358 hardware::Return<void> onRefresh(Hwc2::Display display) override;
359 hardware::Return<void> onVsync(Hwc2::Display display,
360 int64_t timestamp) override;
Corey Tabakab3732f02017-09-16 00:58:54 -0700361
Steven Thomasbfe46a02018-02-16 14:27:35 -0800362 bool GotFirstHotplug() { return got_first_hotplug_; }
363
364 struct Displays {
365 hwc2_display_t primary_display = 0;
366 std::optional<hwc2_display_t> external_display;
367 bool external_display_was_hotplugged = false;
368 };
369
370 Displays GetDisplays();
371 pdx::Status<int64_t> GetVsyncTime(hwc2_display_t display);
Corey Tabaka2c4aea32017-08-31 20:01:15 -0700372
Steven Thomasd7f49c52017-07-26 18:48:28 -0700373 private:
Steven Thomasbfe46a02018-02-16 14:27:35 -0800374 struct DisplayInfo {
375 hwc2_display_t id = 0;
376 pdx::LocalHandle driver_vsync_event_fd;
377 int64_t callback_vsync_timestamp{0};
378 };
379
380 DisplayInfo* GetDisplayInfo(hwc2_display_t display);
381
382 std::mutex mutex_;
383
384 bool got_first_hotplug_ = false;
385 DisplayInfo primary_display_;
386 std::optional<DisplayInfo> external_display_;
387 bool external_display_was_hotplugged_ = false;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800388 };
389
Corey Tabaka2251d822017-04-20 16:04:07 -0700390 HWC::Error Validate(hwc2_display_t display);
391 HWC::Error Present(hwc2_display_t display);
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800392
Steven Thomasbfe46a02018-02-16 14:27:35 -0800393 void PostLayers(hwc2_display_t display);
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800394 void PostThread();
395
Corey Tabaka2251d822017-04-20 16:04:07 -0700396 // The post thread has two controlling states:
397 // 1. Idle: no work to do (no visible surfaces).
398 // 2. Suspended: explicitly halted (system is not in VR mode).
399 // When either #1 or #2 is true then the post thread is quiescent, otherwise
400 // it is active.
401 using PostThreadStateType = uint32_t;
402 struct PostThreadState {
403 enum : PostThreadStateType {
404 Active = 0,
405 Idle = (1 << 0),
406 Suspended = (1 << 1),
407 Quit = (1 << 2),
408 };
409 };
410
411 void UpdatePostThreadState(uint32_t state, bool suspend);
412
Steven Thomas050b2c82017-03-06 11:45:16 -0800413 // Blocks until either event_fd becomes readable, or we're interrupted by a
Steven Thomasd7f49c52017-07-26 18:48:28 -0700414 // control thread, or timeout_ms is reached before any events occur. Any
415 // errors are returned as negative errno values, with -ETIMEDOUT returned in
416 // the case of a timeout. If we're interrupted, kPostThreadInterrupted will be
417 // returned.
Corey Tabaka2251d822017-04-20 16:04:07 -0700418 int PostThreadPollInterruptible(const pdx::LocalHandle& event_fd,
Corey Tabaka2c4aea32017-08-31 20:01:15 -0700419 int requested_events, int timeout_ms);
Steven Thomas050b2c82017-03-06 11:45:16 -0800420
Steven Thomasbfe46a02018-02-16 14:27:35 -0800421 // WaitForPredictedVSync and SleepUntil are blocking calls made on the post
422 // thread that can be interrupted by a control thread. If interrupted, these
423 // calls return kPostThreadInterrupted.
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800424 int ReadWaitPPState();
Steven Thomasbfe46a02018-02-16 14:27:35 -0800425 pdx::Status<int64_t> WaitForPredictedVSync();
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800426 int SleepUntil(int64_t wakeup_timestamp);
427
Steven Thomasbfe46a02018-02-16 14:27:35 -0800428 // Initialize any newly connected displays, and set target_display_ to the
429 // display we should render to. Returns true if target_display_
430 // changed. Called only from the post thread.
431 bool UpdateTargetDisplay();
432
Corey Tabaka2251d822017-04-20 16:04:07 -0700433 // Reconfigures the layer stack if the display surfaces changed since the last
434 // frame. Called only from the post thread.
Steven Thomasbfe46a02018-02-16 14:27:35 -0800435 void UpdateLayerConfig();
436
437 // Called on the post thread to create the Composer instance.
438 void CreateComposer();
Steven Thomas050b2c82017-03-06 11:45:16 -0800439
440 // Called on the post thread when the post thread is resumed.
441 void OnPostThreadResumed();
442 // Called on the post thread when the post thread is paused or quits.
443 void OnPostThreadPaused();
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800444
Steven Thomasaf336272018-01-04 17:36:47 -0800445 // Use post_thread_wait_ to wait for a specific condition, specified by pred.
446 // timeout_sec < 0 means wait indefinitely, otherwise it specifies the timeout
447 // in seconds.
448 // The lock must be held when this function is called.
449 // Returns true if the wait was interrupted because the post thread was asked
450 // to quit.
451 bool PostThreadCondWait(std::unique_lock<std::mutex>& lock,
452 int timeout_sec,
453 const std::function<bool()>& pred);
454
John Bates954796e2017-05-11 11:00:31 -0700455 // Map the given shared memory buffer to our broadcast ring to track updates
456 // to the config parameters.
457 int MapConfigBuffer(IonBuffer& ion_buffer);
458 void ConfigBufferDeleted();
459 // Poll for config udpates.
460 void UpdateConfigBuffer();
461
Stephen Kiazyk016e5e32017-02-21 17:09:22 -0800462 bool initialized_;
Corey Tabaka7024b8f2017-08-22 11:59:15 -0700463 bool is_standalone_device_;
Stephen Kiazyk016e5e32017-02-21 17:09:22 -0800464
Corey Tabaka2c4aea32017-08-31 20:01:15 -0700465 std::unique_ptr<Hwc2::Composer> composer_;
466 sp<ComposerCallback> composer_callback_;
Corey Tabaka2251d822017-04-20 16:04:07 -0700467 RequestDisplayCallback request_display_callback_;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800468
Steven Thomasbfe46a02018-02-16 14:27:35 -0800469 DisplayParams primary_display_;
470 std::optional<DisplayParams> external_display_;
471 DisplayParams* target_display_ = &primary_display_;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800472
Steven Thomasbfe46a02018-02-16 14:27:35 -0800473 // The list of surfaces we should draw. Set by the display service when
474 // DirectSurfaces are added, removed, or change visibility. Written by the
475 // message dispatch thread and read by the post thread.
476 std::vector<std::shared_ptr<DirectDisplaySurface>> surfaces_;
477 // Set to true by the dispatch thread whenever surfaces_ changes. Set to false
478 // by the post thread when the new list of surfaces is processed.
479 bool surfaces_changed_ = false;
480
481 std::vector<std::shared_ptr<DirectDisplaySurface>> current_surfaces_;
Steven Thomas050b2c82017-03-06 11:45:16 -0800482
Corey Tabaka2c4aea32017-08-31 20:01:15 -0700483 // Layer set for handling buffer flow into hardware composer layers. This
484 // vector must be sorted by surface_id in ascending order.
485 std::vector<Layer> layers_;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800486
487 // Handler to hook vsync events outside of this class.
488 VSyncCallback vsync_callback_;
489
Steven Thomas282a5ed2017-02-07 18:07:01 -0800490 // The layer posting thread. This thread wakes up a short time before vsync to
Corey Tabaka2251d822017-04-20 16:04:07 -0700491 // hand buffers to hardware composer.
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800492 std::thread post_thread_;
493
Corey Tabaka2251d822017-04-20 16:04:07 -0700494 // Post thread state machine and synchronization primitives.
Corey Tabaka2c4aea32017-08-31 20:01:15 -0700495 PostThreadStateType post_thread_state_{PostThreadState::Idle |
496 PostThreadState::Suspended};
Corey Tabaka2251d822017-04-20 16:04:07 -0700497 std::atomic<bool> post_thread_quiescent_{true};
498 bool post_thread_resumed_{false};
499 pdx::LocalHandle post_thread_event_fd_;
500 std::mutex post_thread_mutex_;
501 std::condition_variable post_thread_wait_;
502 std::condition_variable post_thread_ready_;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800503
Steven Thomasaf336272018-01-04 17:36:47 -0800504 // When boot is finished this will be set to true and the post thread will be
505 // notified via post_thread_wait_.
506 bool boot_finished_ = false;
507
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800508 // VSync sleep timerfd.
509 pdx::LocalHandle vsync_sleep_timer_fd_;
510
511 // The timestamp of the last vsync.
Corey Tabaka2251d822017-04-20 16:04:07 -0700512 int64_t last_vsync_timestamp_ = 0;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800513
Corey Tabakab3732f02017-09-16 00:58:54 -0700514 // The number of vsync intervals to predict since the last vsync.
515 int vsync_prediction_interval_ = 1;
516
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800517 // Vsync count since display on.
Corey Tabaka2251d822017-04-20 16:04:07 -0700518 uint32_t vsync_count_ = 0;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800519
520 // Counter tracking the number of skipped frames.
Corey Tabaka2251d822017-04-20 16:04:07 -0700521 int frame_skip_count_ = 0;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800522
523 // Fd array for tracking retire fences that are returned by hwc. This allows
524 // us to detect when the display driver begins queuing frames.
525 std::vector<pdx::LocalHandle> retire_fence_fds_;
526
Okan Arikan822b7102017-05-08 13:31:34 -0700527 // If we are publishing vsync data, we will put it here.
528 std::unique_ptr<CPUMappedBroadcastRing<DvrVsyncRing>> vsync_ring_;
Steven Thomas050b2c82017-03-06 11:45:16 -0800529
John Bates954796e2017-05-11 11:00:31 -0700530 // Broadcast ring for receiving config data from the DisplayManager.
Okan Arikan6f468c62017-05-31 14:48:30 -0700531 DvrConfigRing shared_config_ring_;
John Bates954796e2017-05-11 11:00:31 -0700532 uint32_t shared_config_ring_sequence_{0};
533 // Config buffer for reading from the post thread.
Okan Arikan6f468c62017-05-31 14:48:30 -0700534 DvrConfig post_thread_config_;
John Bates954796e2017-05-11 11:00:31 -0700535 std::mutex shared_config_mutex_;
536
Steven Thomas050b2c82017-03-06 11:45:16 -0800537 static constexpr int kPostThreadInterrupted = 1;
538
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800539 HardwareComposer(const HardwareComposer&) = delete;
540 void operator=(const HardwareComposer&) = delete;
541};
542
543} // namespace dvr
544} // namespace android
545
546#endif // ANDROID_DVR_SERVICES_DISPLAYD_HARDWARE_COMPOSER_H_