blob: 793c3e887cb72acea90d540ae07156674321e249 [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 }
145 bool operator<(int surface_id) const {
146 return GetSurfaceId() < surface_id;
147 }
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800148
Corey Tabaka2c4aea32017-08-31 20:01:15 -0700149 // Sets the composer instance used by all Layer instances.
150 static void SetComposer(Hwc2::Composer* composer) { composer_ = composer; }
151
152 // Sets the display metrics used by all Layer instances.
153 static void SetDisplayMetrics(HWCDisplayMetrics display_metrics) {
154 display_metrics_ = display_metrics;
155 }
156
157 private:
158 void CommonLayerSetup();
159
160 // Applies all of the settings to this layer using the hwc functions
161 void UpdateLayerSettings();
162
163 // Applies visibility settings that may have changed.
164 void UpdateVisibilitySettings();
165
166 // Composer instance shared by all instances of Layer. This must be set
167 // whenever a new instance of the Composer is created. This may be set to
168 // nullptr as long as there are no instances of Layer that might need to use
169 // it.
170 static Hwc2::Composer* composer_;
171
172 // Display metrics shared by all instances of Layer. This must be set at least
173 // once during VrFlinger initialization and is expected to remain constant
174 // thereafter.
175 static HWCDisplayMetrics display_metrics_;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800176
177 // The hardware composer layer and metrics to use during the prepare cycle.
Corey Tabaka2251d822017-04-20 16:04:07 -0700178 hwc2_layer_t hardware_composer_layer_ = 0;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800179
180 // Layer properties used to setup the hardware composer layer during the
181 // Prepare phase.
Corey Tabaka2251d822017-04-20 16:04:07 -0700182 size_t z_order_ = 0;
183 HWC::BlendMode blending_ = HWC::BlendMode::None;
184 HWC::Transform transform_ = HWC::Transform::None;
185 HWC::Composition composition_type_ = HWC::Composition::Invalid;
186 HWC::Composition target_composition_type_ = HWC::Composition::Device;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800187
Corey Tabaka2251d822017-04-20 16:04:07 -0700188 // State when the layer is connected to a surface. Provides the same interface
189 // as SourceBuffer to simplify internal use by Layer.
190 struct SourceSurface {
191 std::shared_ptr<DirectDisplaySurface> surface;
192 AcquiredBuffer acquired_buffer;
193 pdx::LocalHandle release_fence;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800194
Corey Tabaka2251d822017-04-20 16:04:07 -0700195 SourceSurface(const std::shared_ptr<DirectDisplaySurface>& surface)
196 : surface(surface) {}
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800197
Corey Tabaka2251d822017-04-20 16:04:07 -0700198 // Attempts to acquire a new buffer from the surface and return a tuple with
199 // width, height, buffer handle, and fence. If a new buffer is not available
200 // the previous buffer is returned or an empty value if no buffer has ever
201 // been posted. When a new buffer is acquired the previous buffer's release
202 // fence is passed out automatically.
203 std::tuple<int, int, sp<GraphicBuffer>, pdx::LocalHandle> Acquire() {
204 if (surface->IsBufferAvailable()) {
205 acquired_buffer.Release(std::move(release_fence));
206 acquired_buffer = surface->AcquireCurrentBuffer();
207 ATRACE_ASYNC_END("BufferPost", acquired_buffer.buffer()->id());
208 }
209 if (!acquired_buffer.IsEmpty()) {
210 return std::make_tuple(acquired_buffer.buffer()->width(),
211 acquired_buffer.buffer()->height(),
212 acquired_buffer.buffer()->buffer()->buffer(),
213 acquired_buffer.ClaimAcquireFence());
214 } else {
215 return std::make_tuple(0, 0, nullptr, pdx::LocalHandle{});
216 }
217 }
218
219 void Finish(pdx::LocalHandle fence) { release_fence = std::move(fence); }
220
221 // Gets a pointer to the current acquired buffer or returns nullptr if there
222 // isn't one.
223 IonBuffer* GetBuffer() {
224 if (acquired_buffer.IsAvailable())
225 return acquired_buffer.buffer()->buffer();
226 else
227 return nullptr;
228 }
229
230 // Returns the surface id of the surface.
Corey Tabaka0b485c92017-05-19 12:02:58 -0700231 int GetSurfaceId() const { return surface->surface_id(); }
232
233 // Returns the buffer id for the current buffer.
234 int GetBufferId() const {
235 if (acquired_buffer.IsAvailable())
236 return acquired_buffer.buffer()->id();
237 else
238 return -1;
239 }
Corey Tabaka2251d822017-04-20 16:04:07 -0700240 };
241
242 // State when the layer is connected to a buffer. Provides the same interface
243 // as SourceSurface to simplify internal use by Layer.
244 struct SourceBuffer {
245 std::shared_ptr<IonBuffer> buffer;
246
247 std::tuple<int, int, sp<GraphicBuffer>, pdx::LocalHandle> Acquire() {
248 if (buffer)
249 return std::make_tuple(buffer->width(), buffer->height(),
250 buffer->buffer(), pdx::LocalHandle{});
251 else
252 return std::make_tuple(0, 0, nullptr, pdx::LocalHandle{});
253 }
254
255 void Finish(pdx::LocalHandle /*fence*/) {}
256
257 IonBuffer* GetBuffer() { return buffer.get(); }
258
259 int GetSurfaceId() const { return -1; }
Corey Tabaka0b485c92017-05-19 12:02:58 -0700260 int GetBufferId() const { return -1; }
Corey Tabaka2251d822017-04-20 16:04:07 -0700261 };
262
263 // The underlying hardware composer layer is supplied buffers either from a
264 // surface buffer train or from a buffer directly.
265 pdx::rpc::Variant<SourceSurface, SourceBuffer> source_;
266
267 pdx::LocalHandle acquire_fence_;
268 bool surface_rect_functions_applied_ = false;
Corey Tabaka2c4aea32017-08-31 20:01:15 -0700269 bool pending_visibility_settings_ = true;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800270
271 Layer(const Layer&) = delete;
272 void operator=(const Layer&) = delete;
273};
274
275// HardwareComposer encapsulates the hardware composer HAL, exposing a
276// simplified API to post buffers to the display.
Steven Thomas050b2c82017-03-06 11:45:16 -0800277//
278// HardwareComposer is accessed by both the vr flinger dispatcher thread and the
279// surface flinger main thread, in addition to internally running a separate
280// thread for compositing/EDS and posting layers to the HAL. When changing how
281// variables are used or adding new state think carefully about which threads
282// will access the state and whether it needs to be synchronized.
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800283class HardwareComposer {
284 public:
285 // Type for vsync callback.
286 using VSyncCallback = std::function<void(int, int64_t, int64_t, uint32_t)>;
Corey Tabaka2251d822017-04-20 16:04:07 -0700287 using RequestDisplayCallback = std::function<void(bool)>;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800288
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800289 HardwareComposer();
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800290 ~HardwareComposer();
291
Corey Tabaka2c4aea32017-08-31 20:01:15 -0700292 bool Initialize(Hwc2::Composer* composer,
Steven Thomasd7f49c52017-07-26 18:48:28 -0700293 RequestDisplayCallback request_display_callback);
Stephen Kiazyk016e5e32017-02-21 17:09:22 -0800294
295 bool IsInitialized() const { return initialized_; }
296
Steven Thomas050b2c82017-03-06 11:45:16 -0800297 // Start the post thread if there's work to do (i.e. visible layers). This
298 // should only be called from surface flinger's main thread.
299 void Enable();
300 // Pause the post thread, blocking until the post thread has signaled that
301 // it's paused. This should only be called from surface flinger's main thread.
302 void Disable();
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800303
304 // Get the HMD display metrics for the current display.
Corey Tabaka2251d822017-04-20 16:04:07 -0700305 display::Metrics GetHmdDisplayMetrics() const;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800306
Corey Tabaka2251d822017-04-20 16:04:07 -0700307 std::string Dump();
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800308
309 void SetVSyncCallback(VSyncCallback callback);
310
311 // Metrics of the logical display, which is always landscape.
312 int DisplayWidth() const { return display_metrics_.width; }
313 int DisplayHeight() const { return display_metrics_.height; }
314 HWCDisplayMetrics display_metrics() const { return display_metrics_; }
315
316 // Metrics of the native display, which depends on the specific hardware
317 // implementation of the display.
318 HWCDisplayMetrics native_display_metrics() const {
319 return native_display_metrics_;
320 }
321
Corey Tabaka2251d822017-04-20 16:04:07 -0700322 // Sets the display surfaces to compose the hardware layer stack.
Steven Thomas050b2c82017-03-06 11:45:16 -0800323 void SetDisplaySurfaces(
Corey Tabaka2251d822017-04-20 16:04:07 -0700324 std::vector<std::shared_ptr<DirectDisplaySurface>> surfaces);
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800325
John Bates954796e2017-05-11 11:00:31 -0700326 int OnNewGlobalBuffer(DvrGlobalBufferKey key, IonBuffer& ion_buffer);
327 void OnDeletedGlobalBuffer(DvrGlobalBufferKey key);
328
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800329 private:
Corey Tabaka2c4aea32017-08-31 20:01:15 -0700330 HWC::Error GetDisplayAttribute(Hwc2::Composer* composer,
331 hwc2_display_t display, hwc2_config_t config,
Steven Thomasd7f49c52017-07-26 18:48:28 -0700332 hwc2_attribute_t attributes,
333 int32_t* out_value) const;
Corey Tabaka2c4aea32017-08-31 20:01:15 -0700334 HWC::Error GetDisplayMetrics(Hwc2::Composer* composer, hwc2_display_t display,
Steven Thomasd7f49c52017-07-26 18:48:28 -0700335 hwc2_config_t config,
336 HWCDisplayMetrics* out_metrics) const;
337
338 HWC::Error EnableVsync(bool enabled);
Corey Tabaka7024b8f2017-08-22 11:59:15 -0700339 HWC::Error SetPowerMode(bool active);
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800340
341 class ComposerCallback : public Hwc2::IComposerCallback {
342 public:
Steven Thomasd7f49c52017-07-26 18:48:28 -0700343 ComposerCallback();
344 hardware::Return<void> onHotplug(Hwc2::Display display,
345 Connection conn) override;
346 hardware::Return<void> onRefresh(Hwc2::Display display) override;
347 hardware::Return<void> onVsync(Hwc2::Display display,
348 int64_t timestamp) override;
349 const pdx::LocalHandle& GetVsyncEventFd() const;
350 int64_t GetVsyncTime();
Corey Tabaka2c4aea32017-08-31 20:01:15 -0700351
Steven Thomasd7f49c52017-07-26 18:48:28 -0700352 private:
353 std::mutex vsync_mutex_;
354 pdx::LocalHandle vsync_event_fd_;
355 int64_t vsync_time_ = -1;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800356 };
357
Corey Tabaka2251d822017-04-20 16:04:07 -0700358 HWC::Error Validate(hwc2_display_t display);
359 HWC::Error Present(hwc2_display_t display);
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800360
361 void SetBacklightBrightness(int brightness);
362
Corey Tabaka2251d822017-04-20 16:04:07 -0700363 void PostLayers();
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800364 void PostThread();
365
Corey Tabaka2251d822017-04-20 16:04:07 -0700366 // The post thread has two controlling states:
367 // 1. Idle: no work to do (no visible surfaces).
368 // 2. Suspended: explicitly halted (system is not in VR mode).
369 // When either #1 or #2 is true then the post thread is quiescent, otherwise
370 // it is active.
371 using PostThreadStateType = uint32_t;
372 struct PostThreadState {
373 enum : PostThreadStateType {
374 Active = 0,
375 Idle = (1 << 0),
376 Suspended = (1 << 1),
377 Quit = (1 << 2),
378 };
379 };
380
381 void UpdatePostThreadState(uint32_t state, bool suspend);
382
Steven Thomas050b2c82017-03-06 11:45:16 -0800383 // Blocks until either event_fd becomes readable, or we're interrupted by a
Steven Thomasd7f49c52017-07-26 18:48:28 -0700384 // control thread, or timeout_ms is reached before any events occur. Any
385 // errors are returned as negative errno values, with -ETIMEDOUT returned in
386 // the case of a timeout. If we're interrupted, kPostThreadInterrupted will be
387 // returned.
Corey Tabaka2251d822017-04-20 16:04:07 -0700388 int PostThreadPollInterruptible(const pdx::LocalHandle& event_fd,
Corey Tabaka2c4aea32017-08-31 20:01:15 -0700389 int requested_events, int timeout_ms);
Steven Thomas050b2c82017-03-06 11:45:16 -0800390
Steven Thomasd7f49c52017-07-26 18:48:28 -0700391 // WaitForVSync and SleepUntil are blocking calls made on the post thread that
392 // can be interrupted by a control thread. If interrupted, these calls return
393 // kPostThreadInterrupted.
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800394 int ReadWaitPPState();
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800395 int WaitForVSync(int64_t* timestamp);
396 int SleepUntil(int64_t wakeup_timestamp);
397
Corey Tabaka7024b8f2017-08-22 11:59:15 -0700398 bool IsFramePendingInDriver() { return false; }
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800399
Corey Tabaka2251d822017-04-20 16:04:07 -0700400 // Reconfigures the layer stack if the display surfaces changed since the last
401 // frame. Called only from the post thread.
Steven Thomas050b2c82017-03-06 11:45:16 -0800402 bool UpdateLayerConfig();
Steven Thomas050b2c82017-03-06 11:45:16 -0800403
404 // Called on the post thread when the post thread is resumed.
405 void OnPostThreadResumed();
406 // Called on the post thread when the post thread is paused or quits.
407 void OnPostThreadPaused();
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800408
John Bates954796e2017-05-11 11:00:31 -0700409 // Map the given shared memory buffer to our broadcast ring to track updates
410 // to the config parameters.
411 int MapConfigBuffer(IonBuffer& ion_buffer);
412 void ConfigBufferDeleted();
413 // Poll for config udpates.
414 void UpdateConfigBuffer();
415
Stephen Kiazyk016e5e32017-02-21 17:09:22 -0800416 bool initialized_;
Corey Tabaka7024b8f2017-08-22 11:59:15 -0700417 bool is_standalone_device_;
Stephen Kiazyk016e5e32017-02-21 17:09:22 -0800418
Corey Tabaka2c4aea32017-08-31 20:01:15 -0700419 std::unique_ptr<Hwc2::Composer> composer_;
420 sp<ComposerCallback> composer_callback_;
Corey Tabaka2251d822017-04-20 16:04:07 -0700421 RequestDisplayCallback request_display_callback_;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800422
423 // Display metrics of the physical display.
424 HWCDisplayMetrics native_display_metrics_;
425 // Display metrics of the logical display, adjusted so that orientation is
426 // landscape.
427 HWCDisplayMetrics display_metrics_;
428 // Transform required to get from native to logical display orientation.
Corey Tabaka2251d822017-04-20 16:04:07 -0700429 HWC::Transform display_transform_ = HWC::Transform::None;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800430
Corey Tabaka2251d822017-04-20 16:04:07 -0700431 // Pending surface list. Set by the display service when DirectSurfaces are
432 // added, removed, or change visibility. Written by the message dispatch
433 // thread and read by the post thread.
434 std::vector<std::shared_ptr<DirectDisplaySurface>> pending_surfaces_;
Steven Thomas050b2c82017-03-06 11:45:16 -0800435
Corey Tabaka2c4aea32017-08-31 20:01:15 -0700436 // Layer set for handling buffer flow into hardware composer layers. This
437 // vector must be sorted by surface_id in ascending order.
438 std::vector<Layer> layers_;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800439
440 // Handler to hook vsync events outside of this class.
441 VSyncCallback vsync_callback_;
442
Steven Thomas282a5ed2017-02-07 18:07:01 -0800443 // The layer posting thread. This thread wakes up a short time before vsync to
Corey Tabaka2251d822017-04-20 16:04:07 -0700444 // hand buffers to hardware composer.
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800445 std::thread post_thread_;
446
Corey Tabaka2251d822017-04-20 16:04:07 -0700447 // Post thread state machine and synchronization primitives.
Corey Tabaka2c4aea32017-08-31 20:01:15 -0700448 PostThreadStateType post_thread_state_{PostThreadState::Idle |
449 PostThreadState::Suspended};
Corey Tabaka2251d822017-04-20 16:04:07 -0700450 std::atomic<bool> post_thread_quiescent_{true};
451 bool post_thread_resumed_{false};
452 pdx::LocalHandle post_thread_event_fd_;
453 std::mutex post_thread_mutex_;
454 std::condition_variable post_thread_wait_;
455 std::condition_variable post_thread_ready_;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800456
457 // Backlight LED brightness sysfs node.
458 pdx::LocalHandle backlight_brightness_fd_;
459
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800460 // VSync sleep timerfd.
461 pdx::LocalHandle vsync_sleep_timer_fd_;
462
463 // The timestamp of the last vsync.
Corey Tabaka2251d822017-04-20 16:04:07 -0700464 int64_t last_vsync_timestamp_ = 0;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800465
466 // Vsync count since display on.
Corey Tabaka2251d822017-04-20 16:04:07 -0700467 uint32_t vsync_count_ = 0;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800468
469 // Counter tracking the number of skipped frames.
Corey Tabaka2251d822017-04-20 16:04:07 -0700470 int frame_skip_count_ = 0;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800471
472 // Fd array for tracking retire fences that are returned by hwc. This allows
473 // us to detect when the display driver begins queuing frames.
474 std::vector<pdx::LocalHandle> retire_fence_fds_;
475
Okan Arikan822b7102017-05-08 13:31:34 -0700476 // If we are publishing vsync data, we will put it here.
477 std::unique_ptr<CPUMappedBroadcastRing<DvrVsyncRing>> vsync_ring_;
Steven Thomas050b2c82017-03-06 11:45:16 -0800478
John Bates954796e2017-05-11 11:00:31 -0700479 // Broadcast ring for receiving config data from the DisplayManager.
Okan Arikan6f468c62017-05-31 14:48:30 -0700480 DvrConfigRing shared_config_ring_;
John Bates954796e2017-05-11 11:00:31 -0700481 uint32_t shared_config_ring_sequence_{0};
482 // Config buffer for reading from the post thread.
Okan Arikan6f468c62017-05-31 14:48:30 -0700483 DvrConfig post_thread_config_;
John Bates954796e2017-05-11 11:00:31 -0700484 std::mutex shared_config_mutex_;
485
Steven Thomas050b2c82017-03-06 11:45:16 -0800486 static constexpr int kPostThreadInterrupted = 1;
487
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800488 HardwareComposer(const HardwareComposer&) = delete;
489 void operator=(const HardwareComposer&) = delete;
490};
491
492} // namespace dvr
493} // namespace android
494
495#endif // ANDROID_DVR_SERVICES_DISPLAYD_HARDWARE_COMPOSER_H_