blob: 8131e5098904660a93bc6a282eda8b2a4a9b6ee3 [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>
16#include <thread>
17#include <tuple>
18#include <vector>
19
Okan Arikan6f468c62017-05-31 14:48:30 -070020#include <dvr/dvr_config.h>
Okan Arikan822b7102017-05-08 13:31:34 -070021#include <dvr/dvr_vsync.h>
Alex Vakulenkoa8a92782017-01-27 14:41:57 -080022#include <pdx/file_handle.h>
Corey Tabaka2251d822017-04-20 16:04:07 -070023#include <pdx/rpc/variant.h>
Alex Vakulenkoa8a92782017-01-27 14:41:57 -080024#include <private/dvr/buffer_hub_client.h>
Okan Arikan822b7102017-05-08 13:31:34 -070025#include <private/dvr/shared_buffer_helpers.h>
Alex Vakulenkoa8a92782017-01-27 14:41:57 -080026
27#include "acquired_buffer.h"
Alex Vakulenkoa8a92782017-01-27 14:41:57 -080028#include "display_surface.h"
29
Alex Vakulenkoa8a92782017-01-27 14:41:57 -080030// Hardware composer HAL doesn't define HWC_TRANSFORM_NONE as of this writing.
31#ifndef HWC_TRANSFORM_NONE
32#define HWC_TRANSFORM_NONE static_cast<hwc_transform_t>(0)
33#endif
34
35namespace android {
36namespace dvr {
37
38// Basic display metrics for physical displays. Dimensions and densities are
39// relative to the physical display orientation, which may be different from the
40// logical display orientation exposed to applications.
41struct HWCDisplayMetrics {
42 int width;
43 int height;
44 struct {
45 int x;
46 int y;
47 } dpi;
48 int vsync_period_ns;
49};
50
51// Layer represents the connection between a hardware composer layer and the
52// source supplying buffers for the layer's contents.
53class Layer {
54 public:
Corey Tabaka2c4aea32017-08-31 20:01:15 -070055 Layer() = default;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -080056
57 // Sets up the layer to use a display surface as its content source. The Layer
Corey Tabaka2251d822017-04-20 16:04:07 -070058 // automatically handles ACQUIRE/RELEASE phases for the surface's buffer train
59 // every frame.
Alex Vakulenkoa8a92782017-01-27 14:41:57 -080060 //
61 // |blending| receives HWC_BLENDING_* values.
62 // |transform| receives HWC_TRANSFORM_* values.
63 // |composition_type| receives either HWC_FRAMEBUFFER for most layers or
64 // HWC_FRAMEBUFFER_TARGET (unless you know what you are doing).
Corey Tabaka2251d822017-04-20 16:04:07 -070065 // |index| is the index of this surface in the DirectDisplaySurface array.
Corey Tabaka2c4aea32017-08-31 20:01:15 -070066 Layer(const std::shared_ptr<DirectDisplaySurface>& surface,
67 HWC::BlendMode blending, HWC::Transform transform,
68 HWC::Composition composition_type, size_t z_roder);
Alex Vakulenkoa8a92782017-01-27 14:41:57 -080069
70 // Sets up the layer to use a direct buffer as its content source. No special
71 // handling of the buffer is performed; responsibility for updating or
72 // changing the buffer each frame is on the caller.
73 //
74 // |blending| receives HWC_BLENDING_* values.
75 // |transform| receives HWC_TRANSFORM_* values.
76 // |composition_type| receives either HWC_FRAMEBUFFER for most layers or
77 // HWC_FRAMEBUFFER_TARGET (unless you know what you are doing).
Corey Tabaka2c4aea32017-08-31 20:01:15 -070078 Layer(const std::shared_ptr<IonBuffer>& buffer, HWC::BlendMode blending,
79 HWC::Transform transform, HWC::Composition composition_type,
80 size_t z_order);
81
82 Layer(Layer&&);
83 Layer& operator=(Layer&&);
84
85 ~Layer();
86
87 // Releases any shared pointers and fence handles held by this instance.
88 void Reset();
Alex Vakulenkoa8a92782017-01-27 14:41:57 -080089
90 // Layers that use a direct IonBuffer should call this each frame to update
91 // which buffer will be used for the next PostLayers.
Corey Tabaka2251d822017-04-20 16:04:07 -070092 void UpdateBuffer(const std::shared_ptr<IonBuffer>& buffer);
Alex Vakulenkoa8a92782017-01-27 14:41:57 -080093
94 // Sets up the hardware composer layer for the next frame. When the layer is
95 // associated with a display surface, this method automatically ACQUIRES a new
96 // buffer if one is available.
97 void Prepare();
98
99 // After calling prepare, if this frame is to be dropped instead of passing
100 // along to the HWC, call Drop to close the contained fence(s).
101 void Drop();
102
103 // Performs fence bookkeeping after the frame has been posted to hardware
104 // composer.
105 void Finish(int release_fence_fd);
106
107 // Sets the blending for the layer. |blending| receives HWC_BLENDING_* values.
Corey Tabaka2251d822017-04-20 16:04:07 -0700108 void SetBlending(HWC::BlendMode blending);
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800109
Corey Tabaka2251d822017-04-20 16:04:07 -0700110 // Sets the z-order of this layer
111 void SetZOrder(size_t z_order);
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800112
113 // Gets the current IonBuffer associated with this layer. Ownership of the
114 // buffer DOES NOT pass to the caller and the pointer is not guaranteed to
115 // remain valid across calls to Layer::Setup(), Layer::Prepare(), or
116 // Layer::Reset(). YOU HAVE BEEN WARNED.
117 IonBuffer* GetBuffer();
118
Corey Tabaka2251d822017-04-20 16:04:07 -0700119 HWC::Composition GetCompositionType() const { return composition_type_; }
120 HWC::Layer GetLayerHandle() const { return hardware_composer_layer_; }
121 bool IsLayerSetup() const { return !source_.empty(); }
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800122
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800123 int GetSurfaceId() const {
Corey Tabaka2251d822017-04-20 16:04:07 -0700124 int surface_id = -1;
125 pdx::rpc::IfAnyOf<SourceSurface>::Call(
126 &source_, [&surface_id](const SourceSurface& surface_source) {
Corey Tabaka0b485c92017-05-19 12:02:58 -0700127 surface_id = surface_source.GetSurfaceId();
Corey Tabaka2251d822017-04-20 16:04:07 -0700128 });
129 return surface_id;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800130 }
131
Corey Tabaka0b485c92017-05-19 12:02:58 -0700132 int GetBufferId() const {
133 int buffer_id = -1;
134 pdx::rpc::IfAnyOf<SourceSurface>::Call(
135 &source_, [&buffer_id](const SourceSurface& surface_source) {
136 buffer_id = surface_source.GetBufferId();
137 });
138 return buffer_id;
139 }
140
Corey Tabaka2c4aea32017-08-31 20:01:15 -0700141 // Compares Layers by surface id.
142 bool operator<(const Layer& other) const {
143 return GetSurfaceId() < other.GetSurfaceId();
144 }
Corey Tabakab3732f02017-09-16 00:58:54 -0700145 bool operator<(int surface_id) const { return GetSurfaceId() < surface_id; }
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800146
Corey Tabaka2c4aea32017-08-31 20:01:15 -0700147 // Sets the composer instance used by all Layer instances.
148 static void SetComposer(Hwc2::Composer* composer) { composer_ = composer; }
149
150 // Sets the display metrics used by all Layer instances.
151 static void SetDisplayMetrics(HWCDisplayMetrics display_metrics) {
152 display_metrics_ = display_metrics;
153 }
154
155 private:
156 void CommonLayerSetup();
157
158 // Applies all of the settings to this layer using the hwc functions
159 void UpdateLayerSettings();
160
161 // Applies visibility settings that may have changed.
162 void UpdateVisibilitySettings();
163
164 // Composer instance shared by all instances of Layer. This must be set
165 // whenever a new instance of the Composer is created. This may be set to
166 // nullptr as long as there are no instances of Layer that might need to use
167 // it.
168 static Hwc2::Composer* composer_;
169
170 // Display metrics shared by all instances of Layer. This must be set at least
171 // once during VrFlinger initialization and is expected to remain constant
172 // thereafter.
173 static HWCDisplayMetrics display_metrics_;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800174
175 // The hardware composer layer and metrics to use during the prepare cycle.
Corey Tabaka2251d822017-04-20 16:04:07 -0700176 hwc2_layer_t hardware_composer_layer_ = 0;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800177
178 // Layer properties used to setup the hardware composer layer during the
179 // Prepare phase.
Corey Tabaka2251d822017-04-20 16:04:07 -0700180 size_t z_order_ = 0;
181 HWC::BlendMode blending_ = HWC::BlendMode::None;
182 HWC::Transform transform_ = HWC::Transform::None;
183 HWC::Composition composition_type_ = HWC::Composition::Invalid;
184 HWC::Composition target_composition_type_ = HWC::Composition::Device;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800185
Corey Tabaka2251d822017-04-20 16:04:07 -0700186 // State when the layer is connected to a surface. Provides the same interface
187 // as SourceBuffer to simplify internal use by Layer.
188 struct SourceSurface {
189 std::shared_ptr<DirectDisplaySurface> surface;
190 AcquiredBuffer acquired_buffer;
191 pdx::LocalHandle release_fence;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800192
Corey Tabaka2251d822017-04-20 16:04:07 -0700193 SourceSurface(const std::shared_ptr<DirectDisplaySurface>& surface)
194 : surface(surface) {}
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800195
Corey Tabaka2251d822017-04-20 16:04:07 -0700196 // Attempts to acquire a new buffer from the surface and return a tuple with
197 // width, height, buffer handle, and fence. If a new buffer is not available
198 // the previous buffer is returned or an empty value if no buffer has ever
199 // been posted. When a new buffer is acquired the previous buffer's release
200 // fence is passed out automatically.
201 std::tuple<int, int, sp<GraphicBuffer>, pdx::LocalHandle> Acquire() {
202 if (surface->IsBufferAvailable()) {
203 acquired_buffer.Release(std::move(release_fence));
204 acquired_buffer = surface->AcquireCurrentBuffer();
205 ATRACE_ASYNC_END("BufferPost", acquired_buffer.buffer()->id());
206 }
207 if (!acquired_buffer.IsEmpty()) {
208 return std::make_tuple(acquired_buffer.buffer()->width(),
209 acquired_buffer.buffer()->height(),
210 acquired_buffer.buffer()->buffer()->buffer(),
211 acquired_buffer.ClaimAcquireFence());
212 } else {
213 return std::make_tuple(0, 0, nullptr, pdx::LocalHandle{});
214 }
215 }
216
217 void Finish(pdx::LocalHandle fence) { release_fence = std::move(fence); }
218
219 // Gets a pointer to the current acquired buffer or returns nullptr if there
220 // isn't one.
221 IonBuffer* GetBuffer() {
222 if (acquired_buffer.IsAvailable())
223 return acquired_buffer.buffer()->buffer();
224 else
225 return nullptr;
226 }
227
228 // Returns the surface id of the surface.
Corey Tabaka0b485c92017-05-19 12:02:58 -0700229 int GetSurfaceId() const { return surface->surface_id(); }
230
231 // Returns the buffer id for the current buffer.
232 int GetBufferId() const {
233 if (acquired_buffer.IsAvailable())
234 return acquired_buffer.buffer()->id();
235 else
236 return -1;
237 }
Corey Tabaka2251d822017-04-20 16:04:07 -0700238 };
239
240 // State when the layer is connected to a buffer. Provides the same interface
241 // as SourceSurface to simplify internal use by Layer.
242 struct SourceBuffer {
243 std::shared_ptr<IonBuffer> buffer;
244
245 std::tuple<int, int, sp<GraphicBuffer>, pdx::LocalHandle> Acquire() {
246 if (buffer)
247 return std::make_tuple(buffer->width(), buffer->height(),
248 buffer->buffer(), pdx::LocalHandle{});
249 else
250 return std::make_tuple(0, 0, nullptr, pdx::LocalHandle{});
251 }
252
253 void Finish(pdx::LocalHandle /*fence*/) {}
254
255 IonBuffer* GetBuffer() { return buffer.get(); }
256
257 int GetSurfaceId() const { return -1; }
Corey Tabaka0b485c92017-05-19 12:02:58 -0700258 int GetBufferId() const { return -1; }
Corey Tabaka2251d822017-04-20 16:04:07 -0700259 };
260
261 // The underlying hardware composer layer is supplied buffers either from a
262 // surface buffer train or from a buffer directly.
263 pdx::rpc::Variant<SourceSurface, SourceBuffer> source_;
264
265 pdx::LocalHandle acquire_fence_;
266 bool surface_rect_functions_applied_ = false;
Corey Tabaka2c4aea32017-08-31 20:01:15 -0700267 bool pending_visibility_settings_ = true;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800268
269 Layer(const Layer&) = delete;
270 void operator=(const Layer&) = delete;
271};
272
273// HardwareComposer encapsulates the hardware composer HAL, exposing a
274// simplified API to post buffers to the display.
Steven Thomas050b2c82017-03-06 11:45:16 -0800275//
276// HardwareComposer is accessed by both the vr flinger dispatcher thread and the
277// surface flinger main thread, in addition to internally running a separate
278// thread for compositing/EDS and posting layers to the HAL. When changing how
279// variables are used or adding new state think carefully about which threads
280// will access the state and whether it needs to be synchronized.
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800281class HardwareComposer {
282 public:
283 // Type for vsync callback.
284 using VSyncCallback = std::function<void(int, int64_t, int64_t, uint32_t)>;
Corey Tabaka2251d822017-04-20 16:04:07 -0700285 using RequestDisplayCallback = std::function<void(bool)>;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800286
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800287 HardwareComposer();
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800288 ~HardwareComposer();
289
Corey Tabaka2c4aea32017-08-31 20:01:15 -0700290 bool Initialize(Hwc2::Composer* composer,
Steven Thomasd7f49c52017-07-26 18:48:28 -0700291 RequestDisplayCallback request_display_callback);
Stephen Kiazyk016e5e32017-02-21 17:09:22 -0800292
293 bool IsInitialized() const { return initialized_; }
294
Steven Thomas050b2c82017-03-06 11:45:16 -0800295 // Start the post thread if there's work to do (i.e. visible layers). This
296 // should only be called from surface flinger's main thread.
297 void Enable();
298 // Pause the post thread, blocking until the post thread has signaled that
299 // it's paused. This should only be called from surface flinger's main thread.
300 void Disable();
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800301
302 // Get the HMD display metrics for the current display.
Corey Tabaka2251d822017-04-20 16:04:07 -0700303 display::Metrics GetHmdDisplayMetrics() const;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800304
Corey Tabaka2251d822017-04-20 16:04:07 -0700305 std::string Dump();
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800306
307 void SetVSyncCallback(VSyncCallback callback);
308
309 // Metrics of the logical display, which is always landscape.
310 int DisplayWidth() const { return display_metrics_.width; }
311 int DisplayHeight() const { return display_metrics_.height; }
312 HWCDisplayMetrics display_metrics() const { return display_metrics_; }
313
314 // Metrics of the native display, which depends on the specific hardware
315 // implementation of the display.
316 HWCDisplayMetrics native_display_metrics() const {
317 return native_display_metrics_;
318 }
319
Corey Tabaka2251d822017-04-20 16:04:07 -0700320 // Sets the display surfaces to compose the hardware layer stack.
Steven Thomas050b2c82017-03-06 11:45:16 -0800321 void SetDisplaySurfaces(
Corey Tabaka2251d822017-04-20 16:04:07 -0700322 std::vector<std::shared_ptr<DirectDisplaySurface>> surfaces);
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800323
John Bates954796e2017-05-11 11:00:31 -0700324 int OnNewGlobalBuffer(DvrGlobalBufferKey key, IonBuffer& ion_buffer);
325 void OnDeletedGlobalBuffer(DvrGlobalBufferKey key);
326
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800327 private:
Corey Tabaka2c4aea32017-08-31 20:01:15 -0700328 HWC::Error GetDisplayAttribute(Hwc2::Composer* composer,
329 hwc2_display_t display, hwc2_config_t config,
Steven Thomasd7f49c52017-07-26 18:48:28 -0700330 hwc2_attribute_t attributes,
331 int32_t* out_value) const;
Corey Tabaka2c4aea32017-08-31 20:01:15 -0700332 HWC::Error GetDisplayMetrics(Hwc2::Composer* composer, hwc2_display_t display,
Steven Thomasd7f49c52017-07-26 18:48:28 -0700333 hwc2_config_t config,
334 HWCDisplayMetrics* out_metrics) const;
335
336 HWC::Error EnableVsync(bool enabled);
Corey Tabaka7024b8f2017-08-22 11:59:15 -0700337 HWC::Error SetPowerMode(bool active);
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800338
339 class ComposerCallback : public Hwc2::IComposerCallback {
340 public:
Corey Tabakab3732f02017-09-16 00:58:54 -0700341 ComposerCallback() = default;
Steven Thomasd7f49c52017-07-26 18:48:28 -0700342 hardware::Return<void> onHotplug(Hwc2::Display display,
343 Connection conn) override;
344 hardware::Return<void> onRefresh(Hwc2::Display display) override;
345 hardware::Return<void> onVsync(Hwc2::Display display,
346 int64_t timestamp) override;
Corey Tabakab3732f02017-09-16 00:58:54 -0700347
348 pdx::Status<int64_t> GetVsyncTime(Hwc2::Display display);
Corey Tabaka2c4aea32017-08-31 20:01:15 -0700349
Steven Thomasd7f49c52017-07-26 18:48:28 -0700350 private:
351 std::mutex vsync_mutex_;
Corey Tabakab3732f02017-09-16 00:58:54 -0700352
353 struct Display {
354 pdx::LocalHandle driver_vsync_event_fd;
355 int64_t callback_vsync_timestamp{0};
356 };
357 std::array<Display, HWC_NUM_PHYSICAL_DISPLAY_TYPES> displays_;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800358 };
359
Corey Tabaka2251d822017-04-20 16:04:07 -0700360 HWC::Error Validate(hwc2_display_t display);
361 HWC::Error Present(hwc2_display_t display);
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800362
363 void SetBacklightBrightness(int brightness);
364
Corey Tabaka2251d822017-04-20 16:04:07 -0700365 void PostLayers();
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800366 void PostThread();
367
Corey Tabaka2251d822017-04-20 16:04:07 -0700368 // The post thread has two controlling states:
369 // 1. Idle: no work to do (no visible surfaces).
370 // 2. Suspended: explicitly halted (system is not in VR mode).
371 // When either #1 or #2 is true then the post thread is quiescent, otherwise
372 // it is active.
373 using PostThreadStateType = uint32_t;
374 struct PostThreadState {
375 enum : PostThreadStateType {
376 Active = 0,
377 Idle = (1 << 0),
378 Suspended = (1 << 1),
379 Quit = (1 << 2),
380 };
381 };
382
383 void UpdatePostThreadState(uint32_t state, bool suspend);
384
Steven Thomas050b2c82017-03-06 11:45:16 -0800385 // Blocks until either event_fd becomes readable, or we're interrupted by a
Steven Thomasd7f49c52017-07-26 18:48:28 -0700386 // control thread, or timeout_ms is reached before any events occur. Any
387 // errors are returned as negative errno values, with -ETIMEDOUT returned in
388 // the case of a timeout. If we're interrupted, kPostThreadInterrupted will be
389 // returned.
Corey Tabaka2251d822017-04-20 16:04:07 -0700390 int PostThreadPollInterruptible(const pdx::LocalHandle& event_fd,
Corey Tabaka2c4aea32017-08-31 20:01:15 -0700391 int requested_events, int timeout_ms);
Steven Thomas050b2c82017-03-06 11:45:16 -0800392
Steven Thomasd7f49c52017-07-26 18:48:28 -0700393 // WaitForVSync and SleepUntil are blocking calls made on the post thread that
394 // can be interrupted by a control thread. If interrupted, these calls return
395 // kPostThreadInterrupted.
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800396 int ReadWaitPPState();
Corey Tabakab3732f02017-09-16 00:58:54 -0700397 pdx::Status<int64_t> WaitForVSync();
398 pdx::Status<int64_t> GetVSyncTime();
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800399 int SleepUntil(int64_t wakeup_timestamp);
400
Corey Tabaka2251d822017-04-20 16:04:07 -0700401 // Reconfigures the layer stack if the display surfaces changed since the last
402 // frame. Called only from the post thread.
Steven Thomas050b2c82017-03-06 11:45:16 -0800403 bool UpdateLayerConfig();
Steven Thomas050b2c82017-03-06 11:45:16 -0800404
405 // Called on the post thread when the post thread is resumed.
406 void OnPostThreadResumed();
407 // Called on the post thread when the post thread is paused or quits.
408 void OnPostThreadPaused();
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800409
John Bates954796e2017-05-11 11:00:31 -0700410 // Map the given shared memory buffer to our broadcast ring to track updates
411 // to the config parameters.
412 int MapConfigBuffer(IonBuffer& ion_buffer);
413 void ConfigBufferDeleted();
414 // Poll for config udpates.
415 void UpdateConfigBuffer();
416
Stephen Kiazyk016e5e32017-02-21 17:09:22 -0800417 bool initialized_;
Corey Tabaka7024b8f2017-08-22 11:59:15 -0700418 bool is_standalone_device_;
Stephen Kiazyk016e5e32017-02-21 17:09:22 -0800419
Corey Tabaka2c4aea32017-08-31 20:01:15 -0700420 std::unique_ptr<Hwc2::Composer> composer_;
421 sp<ComposerCallback> composer_callback_;
Corey Tabaka2251d822017-04-20 16:04:07 -0700422 RequestDisplayCallback request_display_callback_;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800423
424 // Display metrics of the physical display.
425 HWCDisplayMetrics native_display_metrics_;
426 // Display metrics of the logical display, adjusted so that orientation is
427 // landscape.
428 HWCDisplayMetrics display_metrics_;
429 // Transform required to get from native to logical display orientation.
Corey Tabaka2251d822017-04-20 16:04:07 -0700430 HWC::Transform display_transform_ = HWC::Transform::None;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800431
Corey Tabaka2251d822017-04-20 16:04:07 -0700432 // Pending surface list. Set by the display service when DirectSurfaces are
433 // added, removed, or change visibility. Written by the message dispatch
434 // thread and read by the post thread.
435 std::vector<std::shared_ptr<DirectDisplaySurface>> pending_surfaces_;
Steven Thomas050b2c82017-03-06 11:45:16 -0800436
Corey Tabaka2c4aea32017-08-31 20:01:15 -0700437 // Layer set for handling buffer flow into hardware composer layers. This
438 // vector must be sorted by surface_id in ascending order.
439 std::vector<Layer> layers_;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800440
441 // Handler to hook vsync events outside of this class.
442 VSyncCallback vsync_callback_;
443
Steven Thomas282a5ed2017-02-07 18:07:01 -0800444 // The layer posting thread. This thread wakes up a short time before vsync to
Corey Tabaka2251d822017-04-20 16:04:07 -0700445 // hand buffers to hardware composer.
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800446 std::thread post_thread_;
447
Corey Tabaka2251d822017-04-20 16:04:07 -0700448 // Post thread state machine and synchronization primitives.
Corey Tabaka2c4aea32017-08-31 20:01:15 -0700449 PostThreadStateType post_thread_state_{PostThreadState::Idle |
450 PostThreadState::Suspended};
Corey Tabaka2251d822017-04-20 16:04:07 -0700451 std::atomic<bool> post_thread_quiescent_{true};
452 bool post_thread_resumed_{false};
453 pdx::LocalHandle post_thread_event_fd_;
454 std::mutex post_thread_mutex_;
455 std::condition_variable post_thread_wait_;
456 std::condition_variable post_thread_ready_;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800457
458 // Backlight LED brightness sysfs node.
459 pdx::LocalHandle backlight_brightness_fd_;
460
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800461 // VSync sleep timerfd.
462 pdx::LocalHandle vsync_sleep_timer_fd_;
463
464 // The timestamp of the last vsync.
Corey Tabaka2251d822017-04-20 16:04:07 -0700465 int64_t last_vsync_timestamp_ = 0;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800466
Corey Tabakab3732f02017-09-16 00:58:54 -0700467 // The number of vsync intervals to predict since the last vsync.
468 int vsync_prediction_interval_ = 1;
469
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800470 // Vsync count since display on.
Corey Tabaka2251d822017-04-20 16:04:07 -0700471 uint32_t vsync_count_ = 0;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800472
473 // Counter tracking the number of skipped frames.
Corey Tabaka2251d822017-04-20 16:04:07 -0700474 int frame_skip_count_ = 0;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800475
476 // Fd array for tracking retire fences that are returned by hwc. This allows
477 // us to detect when the display driver begins queuing frames.
478 std::vector<pdx::LocalHandle> retire_fence_fds_;
479
Okan Arikan822b7102017-05-08 13:31:34 -0700480 // If we are publishing vsync data, we will put it here.
481 std::unique_ptr<CPUMappedBroadcastRing<DvrVsyncRing>> vsync_ring_;
Steven Thomas050b2c82017-03-06 11:45:16 -0800482
John Bates954796e2017-05-11 11:00:31 -0700483 // Broadcast ring for receiving config data from the DisplayManager.
Okan Arikan6f468c62017-05-31 14:48:30 -0700484 DvrConfigRing shared_config_ring_;
John Bates954796e2017-05-11 11:00:31 -0700485 uint32_t shared_config_ring_sequence_{0};
486 // Config buffer for reading from the post thread.
Okan Arikan6f468c62017-05-31 14:48:30 -0700487 DvrConfig post_thread_config_;
John Bates954796e2017-05-11 11:00:31 -0700488 std::mutex shared_config_mutex_;
489
Steven Thomas050b2c82017-03-06 11:45:16 -0800490 static constexpr int kPostThreadInterrupted = 1;
491
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800492 HardwareComposer(const HardwareComposer&) = delete;
493 void operator=(const HardwareComposer&) = delete;
494};
495
496} // namespace dvr
497} // namespace android
498
499#endif // ANDROID_DVR_SERVICES_DISPLAYD_HARDWARE_COMPOSER_H_