blob: 7010db963034c0631a2e1a309dcd2fc7de660dc7 [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
Corey Tabaka0d07cdd2017-09-28 11:15:50 -0700164 // Checks whether the buffer, given by id, is associated with the given slot
165 // in the HWC buffer cache. If the slot is not associated with the given
166 // buffer the cache is updated to establish the association and the buffer
167 // should be sent to HWC using setLayerBuffer. Returns true if the association
168 // was already established, false if not. A buffer_id of -1 is never
169 // associated and always returns false.
170 bool CheckAndUpdateCachedBuffer(std::size_t slot, int buffer_id);
171
Corey Tabaka2c4aea32017-08-31 20:01:15 -0700172 // Composer instance shared by all instances of Layer. This must be set
173 // whenever a new instance of the Composer is created. This may be set to
174 // nullptr as long as there are no instances of Layer that might need to use
175 // it.
176 static Hwc2::Composer* composer_;
177
178 // Display metrics shared by all instances of Layer. This must be set at least
179 // once during VrFlinger initialization and is expected to remain constant
180 // thereafter.
181 static HWCDisplayMetrics display_metrics_;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800182
183 // The hardware composer layer and metrics to use during the prepare cycle.
Corey Tabaka2251d822017-04-20 16:04:07 -0700184 hwc2_layer_t hardware_composer_layer_ = 0;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800185
186 // Layer properties used to setup the hardware composer layer during the
187 // Prepare phase.
Corey Tabaka2251d822017-04-20 16:04:07 -0700188 size_t z_order_ = 0;
189 HWC::BlendMode blending_ = HWC::BlendMode::None;
190 HWC::Transform transform_ = HWC::Transform::None;
191 HWC::Composition composition_type_ = HWC::Composition::Invalid;
192 HWC::Composition target_composition_type_ = HWC::Composition::Device;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800193
Corey Tabaka2251d822017-04-20 16:04:07 -0700194 // State when the layer is connected to a surface. Provides the same interface
195 // as SourceBuffer to simplify internal use by Layer.
196 struct SourceSurface {
197 std::shared_ptr<DirectDisplaySurface> surface;
198 AcquiredBuffer acquired_buffer;
199 pdx::LocalHandle release_fence;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800200
Corey Tabaka2251d822017-04-20 16:04:07 -0700201 SourceSurface(const std::shared_ptr<DirectDisplaySurface>& surface)
202 : surface(surface) {}
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800203
Corey Tabaka2251d822017-04-20 16:04:07 -0700204 // Attempts to acquire a new buffer from the surface and return a tuple with
205 // width, height, buffer handle, and fence. If a new buffer is not available
206 // the previous buffer is returned or an empty value if no buffer has ever
207 // been posted. When a new buffer is acquired the previous buffer's release
208 // fence is passed out automatically.
Corey Tabaka0d07cdd2017-09-28 11:15:50 -0700209 std::tuple<int, int, int, sp<GraphicBuffer>, pdx::LocalHandle, std::size_t>
210 Acquire() {
Corey Tabaka2251d822017-04-20 16:04:07 -0700211 if (surface->IsBufferAvailable()) {
212 acquired_buffer.Release(std::move(release_fence));
213 acquired_buffer = surface->AcquireCurrentBuffer();
214 ATRACE_ASYNC_END("BufferPost", acquired_buffer.buffer()->id());
215 }
216 if (!acquired_buffer.IsEmpty()) {
Corey Tabaka0d07cdd2017-09-28 11:15:50 -0700217 return std::make_tuple(
218 acquired_buffer.buffer()->width(),
219 acquired_buffer.buffer()->height(), acquired_buffer.buffer()->id(),
220 acquired_buffer.buffer()->buffer()->buffer(),
221 acquired_buffer.ClaimAcquireFence(), acquired_buffer.slot());
Corey Tabaka2251d822017-04-20 16:04:07 -0700222 } else {
Corey Tabaka0d07cdd2017-09-28 11:15:50 -0700223 return std::make_tuple(0, 0, -1, nullptr, pdx::LocalHandle{}, 0);
Corey Tabaka2251d822017-04-20 16:04:07 -0700224 }
225 }
226
227 void Finish(pdx::LocalHandle fence) { release_fence = std::move(fence); }
228
229 // Gets a pointer to the current acquired buffer or returns nullptr if there
230 // isn't one.
231 IonBuffer* GetBuffer() {
232 if (acquired_buffer.IsAvailable())
233 return acquired_buffer.buffer()->buffer();
234 else
235 return nullptr;
236 }
237
238 // Returns the surface id of the surface.
Corey Tabaka0b485c92017-05-19 12:02:58 -0700239 int GetSurfaceId() const { return surface->surface_id(); }
240
241 // Returns the buffer id for the current buffer.
242 int GetBufferId() const {
243 if (acquired_buffer.IsAvailable())
244 return acquired_buffer.buffer()->id();
245 else
246 return -1;
247 }
Corey Tabaka2251d822017-04-20 16:04:07 -0700248 };
249
250 // State when the layer is connected to a buffer. Provides the same interface
251 // as SourceSurface to simplify internal use by Layer.
252 struct SourceBuffer {
253 std::shared_ptr<IonBuffer> buffer;
254
Corey Tabaka0d07cdd2017-09-28 11:15:50 -0700255 std::tuple<int, int, int, sp<GraphicBuffer>, pdx::LocalHandle, std::size_t>
256 Acquire() {
Corey Tabaka2251d822017-04-20 16:04:07 -0700257 if (buffer)
Corey Tabaka0d07cdd2017-09-28 11:15:50 -0700258 return std::make_tuple(buffer->width(), buffer->height(), -1,
259 buffer->buffer(), pdx::LocalHandle{}, 0);
Corey Tabaka2251d822017-04-20 16:04:07 -0700260 else
Corey Tabaka0d07cdd2017-09-28 11:15:50 -0700261 return std::make_tuple(0, 0, -1, nullptr, pdx::LocalHandle{}, 0);
Corey Tabaka2251d822017-04-20 16:04:07 -0700262 }
263
264 void Finish(pdx::LocalHandle /*fence*/) {}
265
266 IonBuffer* GetBuffer() { return buffer.get(); }
267
268 int GetSurfaceId() const { return -1; }
Corey Tabaka0b485c92017-05-19 12:02:58 -0700269 int GetBufferId() const { return -1; }
Corey Tabaka2251d822017-04-20 16:04:07 -0700270 };
271
272 // The underlying hardware composer layer is supplied buffers either from a
273 // surface buffer train or from a buffer directly.
274 pdx::rpc::Variant<SourceSurface, SourceBuffer> source_;
275
276 pdx::LocalHandle acquire_fence_;
277 bool surface_rect_functions_applied_ = false;
Corey Tabaka2c4aea32017-08-31 20:01:15 -0700278 bool pending_visibility_settings_ = true;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800279
Corey Tabaka0d07cdd2017-09-28 11:15:50 -0700280 // Map of buffer slot assignments that have already been established with HWC:
281 // slot -> buffer_id. When this map contains a matching slot and buffer_id the
282 // buffer argument to setLayerBuffer may be nullptr to avoid the cost of
283 // importing a buffer HWC already knows about.
284 std::map<std::size_t, int> cached_buffer_map_;
285
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800286 Layer(const Layer&) = delete;
287 void operator=(const Layer&) = delete;
288};
289
290// HardwareComposer encapsulates the hardware composer HAL, exposing a
291// simplified API to post buffers to the display.
Steven Thomas050b2c82017-03-06 11:45:16 -0800292//
293// HardwareComposer is accessed by both the vr flinger dispatcher thread and the
294// surface flinger main thread, in addition to internally running a separate
295// thread for compositing/EDS and posting layers to the HAL. When changing how
296// variables are used or adding new state think carefully about which threads
297// will access the state and whether it needs to be synchronized.
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800298class HardwareComposer {
299 public:
300 // Type for vsync callback.
301 using VSyncCallback = std::function<void(int, int64_t, int64_t, uint32_t)>;
Corey Tabaka2251d822017-04-20 16:04:07 -0700302 using RequestDisplayCallback = std::function<void(bool)>;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800303
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800304 HardwareComposer();
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800305 ~HardwareComposer();
306
Corey Tabaka2c4aea32017-08-31 20:01:15 -0700307 bool Initialize(Hwc2::Composer* composer,
Steven Thomasd7f49c52017-07-26 18:48:28 -0700308 RequestDisplayCallback request_display_callback);
Stephen Kiazyk016e5e32017-02-21 17:09:22 -0800309
310 bool IsInitialized() const { return initialized_; }
311
Steven Thomas050b2c82017-03-06 11:45:16 -0800312 // Start the post thread if there's work to do (i.e. visible layers). This
313 // should only be called from surface flinger's main thread.
314 void Enable();
315 // Pause the post thread, blocking until the post thread has signaled that
316 // it's paused. This should only be called from surface flinger's main thread.
317 void Disable();
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800318
319 // Get the HMD display metrics for the current display.
Corey Tabaka2251d822017-04-20 16:04:07 -0700320 display::Metrics GetHmdDisplayMetrics() const;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800321
Corey Tabaka2251d822017-04-20 16:04:07 -0700322 std::string Dump();
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800323
324 void SetVSyncCallback(VSyncCallback callback);
325
326 // Metrics of the logical display, which is always landscape.
327 int DisplayWidth() const { return display_metrics_.width; }
328 int DisplayHeight() const { return display_metrics_.height; }
329 HWCDisplayMetrics display_metrics() const { return display_metrics_; }
330
331 // Metrics of the native display, which depends on the specific hardware
332 // implementation of the display.
333 HWCDisplayMetrics native_display_metrics() const {
334 return native_display_metrics_;
335 }
336
Corey Tabaka2251d822017-04-20 16:04:07 -0700337 // Sets the display surfaces to compose the hardware layer stack.
Steven Thomas050b2c82017-03-06 11:45:16 -0800338 void SetDisplaySurfaces(
Corey Tabaka2251d822017-04-20 16:04:07 -0700339 std::vector<std::shared_ptr<DirectDisplaySurface>> surfaces);
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800340
John Bates954796e2017-05-11 11:00:31 -0700341 int OnNewGlobalBuffer(DvrGlobalBufferKey key, IonBuffer& ion_buffer);
342 void OnDeletedGlobalBuffer(DvrGlobalBufferKey key);
343
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800344 private:
Corey Tabaka2c4aea32017-08-31 20:01:15 -0700345 HWC::Error GetDisplayAttribute(Hwc2::Composer* composer,
346 hwc2_display_t display, hwc2_config_t config,
Steven Thomasd7f49c52017-07-26 18:48:28 -0700347 hwc2_attribute_t attributes,
348 int32_t* out_value) const;
Corey Tabaka2c4aea32017-08-31 20:01:15 -0700349 HWC::Error GetDisplayMetrics(Hwc2::Composer* composer, hwc2_display_t display,
Steven Thomasd7f49c52017-07-26 18:48:28 -0700350 hwc2_config_t config,
351 HWCDisplayMetrics* out_metrics) const;
352
353 HWC::Error EnableVsync(bool enabled);
Corey Tabaka7024b8f2017-08-22 11:59:15 -0700354 HWC::Error SetPowerMode(bool active);
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800355
356 class ComposerCallback : public Hwc2::IComposerCallback {
357 public:
Corey Tabakab3732f02017-09-16 00:58:54 -0700358 ComposerCallback() = default;
Steven Thomasd7f49c52017-07-26 18:48:28 -0700359 hardware::Return<void> onHotplug(Hwc2::Display display,
360 Connection conn) override;
361 hardware::Return<void> onRefresh(Hwc2::Display display) override;
362 hardware::Return<void> onVsync(Hwc2::Display display,
363 int64_t timestamp) override;
Corey Tabakab3732f02017-09-16 00:58:54 -0700364
365 pdx::Status<int64_t> GetVsyncTime(Hwc2::Display display);
Corey Tabaka2c4aea32017-08-31 20:01:15 -0700366
Steven Thomasd7f49c52017-07-26 18:48:28 -0700367 private:
368 std::mutex vsync_mutex_;
Corey Tabakab3732f02017-09-16 00:58:54 -0700369
370 struct Display {
371 pdx::LocalHandle driver_vsync_event_fd;
372 int64_t callback_vsync_timestamp{0};
373 };
374 std::array<Display, HWC_NUM_PHYSICAL_DISPLAY_TYPES> displays_;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800375 };
376
Corey Tabaka2251d822017-04-20 16:04:07 -0700377 HWC::Error Validate(hwc2_display_t display);
378 HWC::Error Present(hwc2_display_t display);
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800379
380 void SetBacklightBrightness(int brightness);
381
Corey Tabaka2251d822017-04-20 16:04:07 -0700382 void PostLayers();
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800383 void PostThread();
384
Corey Tabaka2251d822017-04-20 16:04:07 -0700385 // The post thread has two controlling states:
386 // 1. Idle: no work to do (no visible surfaces).
387 // 2. Suspended: explicitly halted (system is not in VR mode).
388 // When either #1 or #2 is true then the post thread is quiescent, otherwise
389 // it is active.
390 using PostThreadStateType = uint32_t;
391 struct PostThreadState {
392 enum : PostThreadStateType {
393 Active = 0,
394 Idle = (1 << 0),
395 Suspended = (1 << 1),
396 Quit = (1 << 2),
397 };
398 };
399
400 void UpdatePostThreadState(uint32_t state, bool suspend);
401
Steven Thomas050b2c82017-03-06 11:45:16 -0800402 // Blocks until either event_fd becomes readable, or we're interrupted by a
Steven Thomasd7f49c52017-07-26 18:48:28 -0700403 // control thread, or timeout_ms is reached before any events occur. Any
404 // errors are returned as negative errno values, with -ETIMEDOUT returned in
405 // the case of a timeout. If we're interrupted, kPostThreadInterrupted will be
406 // returned.
Corey Tabaka2251d822017-04-20 16:04:07 -0700407 int PostThreadPollInterruptible(const pdx::LocalHandle& event_fd,
Corey Tabaka2c4aea32017-08-31 20:01:15 -0700408 int requested_events, int timeout_ms);
Steven Thomas050b2c82017-03-06 11:45:16 -0800409
Steven Thomasd7f49c52017-07-26 18:48:28 -0700410 // WaitForVSync and SleepUntil are blocking calls made on the post thread that
411 // can be interrupted by a control thread. If interrupted, these calls return
412 // kPostThreadInterrupted.
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800413 int ReadWaitPPState();
Corey Tabakab3732f02017-09-16 00:58:54 -0700414 pdx::Status<int64_t> WaitForVSync();
415 pdx::Status<int64_t> GetVSyncTime();
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800416 int SleepUntil(int64_t wakeup_timestamp);
417
Corey Tabaka2251d822017-04-20 16:04:07 -0700418 // Reconfigures the layer stack if the display surfaces changed since the last
419 // frame. Called only from the post thread.
Steven Thomas050b2c82017-03-06 11:45:16 -0800420 bool UpdateLayerConfig();
Steven Thomas050b2c82017-03-06 11:45:16 -0800421
422 // Called on the post thread when the post thread is resumed.
423 void OnPostThreadResumed();
424 // Called on the post thread when the post thread is paused or quits.
425 void OnPostThreadPaused();
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800426
John Bates954796e2017-05-11 11:00:31 -0700427 // Map the given shared memory buffer to our broadcast ring to track updates
428 // to the config parameters.
429 int MapConfigBuffer(IonBuffer& ion_buffer);
430 void ConfigBufferDeleted();
431 // Poll for config udpates.
432 void UpdateConfigBuffer();
433
Stephen Kiazyk016e5e32017-02-21 17:09:22 -0800434 bool initialized_;
Corey Tabaka7024b8f2017-08-22 11:59:15 -0700435 bool is_standalone_device_;
Stephen Kiazyk016e5e32017-02-21 17:09:22 -0800436
Corey Tabaka2c4aea32017-08-31 20:01:15 -0700437 std::unique_ptr<Hwc2::Composer> composer_;
438 sp<ComposerCallback> composer_callback_;
Corey Tabaka2251d822017-04-20 16:04:07 -0700439 RequestDisplayCallback request_display_callback_;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800440
441 // Display metrics of the physical display.
442 HWCDisplayMetrics native_display_metrics_;
443 // Display metrics of the logical display, adjusted so that orientation is
444 // landscape.
445 HWCDisplayMetrics display_metrics_;
446 // Transform required to get from native to logical display orientation.
Corey Tabaka2251d822017-04-20 16:04:07 -0700447 HWC::Transform display_transform_ = HWC::Transform::None;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800448
Corey Tabaka2251d822017-04-20 16:04:07 -0700449 // Pending surface list. Set by the display service when DirectSurfaces are
450 // added, removed, or change visibility. Written by the message dispatch
451 // thread and read by the post thread.
452 std::vector<std::shared_ptr<DirectDisplaySurface>> pending_surfaces_;
Steven Thomas050b2c82017-03-06 11:45:16 -0800453
Corey Tabaka2c4aea32017-08-31 20:01:15 -0700454 // Layer set for handling buffer flow into hardware composer layers. This
455 // vector must be sorted by surface_id in ascending order.
456 std::vector<Layer> layers_;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800457
458 // Handler to hook vsync events outside of this class.
459 VSyncCallback vsync_callback_;
460
Steven Thomas282a5ed2017-02-07 18:07:01 -0800461 // The layer posting thread. This thread wakes up a short time before vsync to
Corey Tabaka2251d822017-04-20 16:04:07 -0700462 // hand buffers to hardware composer.
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800463 std::thread post_thread_;
464
Corey Tabaka2251d822017-04-20 16:04:07 -0700465 // Post thread state machine and synchronization primitives.
Corey Tabaka2c4aea32017-08-31 20:01:15 -0700466 PostThreadStateType post_thread_state_{PostThreadState::Idle |
467 PostThreadState::Suspended};
Corey Tabaka2251d822017-04-20 16:04:07 -0700468 std::atomic<bool> post_thread_quiescent_{true};
469 bool post_thread_resumed_{false};
470 pdx::LocalHandle post_thread_event_fd_;
471 std::mutex post_thread_mutex_;
472 std::condition_variable post_thread_wait_;
473 std::condition_variable post_thread_ready_;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800474
475 // Backlight LED brightness sysfs node.
476 pdx::LocalHandle backlight_brightness_fd_;
477
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800478 // VSync sleep timerfd.
479 pdx::LocalHandle vsync_sleep_timer_fd_;
480
481 // The timestamp of the last vsync.
Corey Tabaka2251d822017-04-20 16:04:07 -0700482 int64_t last_vsync_timestamp_ = 0;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800483
Corey Tabakab3732f02017-09-16 00:58:54 -0700484 // The number of vsync intervals to predict since the last vsync.
485 int vsync_prediction_interval_ = 1;
486
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800487 // Vsync count since display on.
Corey Tabaka2251d822017-04-20 16:04:07 -0700488 uint32_t vsync_count_ = 0;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800489
490 // Counter tracking the number of skipped frames.
Corey Tabaka2251d822017-04-20 16:04:07 -0700491 int frame_skip_count_ = 0;
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800492
493 // Fd array for tracking retire fences that are returned by hwc. This allows
494 // us to detect when the display driver begins queuing frames.
495 std::vector<pdx::LocalHandle> retire_fence_fds_;
496
Okan Arikan822b7102017-05-08 13:31:34 -0700497 // If we are publishing vsync data, we will put it here.
498 std::unique_ptr<CPUMappedBroadcastRing<DvrVsyncRing>> vsync_ring_;
Steven Thomas050b2c82017-03-06 11:45:16 -0800499
John Bates954796e2017-05-11 11:00:31 -0700500 // Broadcast ring for receiving config data from the DisplayManager.
Okan Arikan6f468c62017-05-31 14:48:30 -0700501 DvrConfigRing shared_config_ring_;
John Bates954796e2017-05-11 11:00:31 -0700502 uint32_t shared_config_ring_sequence_{0};
503 // Config buffer for reading from the post thread.
Okan Arikan6f468c62017-05-31 14:48:30 -0700504 DvrConfig post_thread_config_;
John Bates954796e2017-05-11 11:00:31 -0700505 std::mutex shared_config_mutex_;
506
Steven Thomas050b2c82017-03-06 11:45:16 -0800507 static constexpr int kPostThreadInterrupted = 1;
508
Alex Vakulenkoa8a92782017-01-27 14:41:57 -0800509 HardwareComposer(const HardwareComposer&) = delete;
510 void operator=(const HardwareComposer&) = delete;
511};
512
513} // namespace dvr
514} // namespace android
515
516#endif // ANDROID_DVR_SERVICES_DISPLAYD_HARDWARE_COMPOSER_H_