blob: 6aa1c660669311c11f6b677f57affc62cb36b7e1 [file] [log] [blame]
Naseer Ahmedb92e73f2016-03-12 02:03:48 -05001/*
Rajavenu Kyatham7338b9e2019-12-30 19:52:16 +05302* Copyright (c) 2014-2020, The Linux Foundation. All rights reserved.
Naseer Ahmedb92e73f2016-03-12 02:03:48 -05003*
4* Redistribution and use in source and binary forms, with or without
5* modification, are permitted provided that the following conditions are
6* met:
7* * Redistributions of source code must retain the above copyright
8* notice, this list of conditions and the following disclaimer.
9* * Redistributions in binary form must reproduce the above
10* copyright notice, this list of conditions and the following
11* disclaimer in the documentation and/or other materials provided
12* with the distribution.
13* * Neither the name of The Linux Foundation nor the names of its
14* contributors may be used to endorse or promote products derived
15* from this software without specific prior written permission.
16*
17* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
18* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
19* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
20* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
21* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
24* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
25* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
26* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
27* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28*/
29
30#include <cutils/properties.h>
31#include <sync/sync.h>
32#include <utils/constants.h>
33#include <utils/debug.h>
Sushil Chauhan06521582018-03-19 14:00:23 -070034#include <utils/utils.h>
Naseer Ahmedb92e73f2016-03-12 02:03:48 -050035#include <stdarg.h>
36#include <sys/mman.h>
37
Arun Kumar K.R29cd6582016-05-10 19:12:45 -070038#include <map>
39#include <string>
40#include <vector>
41
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +053042#include "hwc_display_builtin.h"
Naseer Ahmedb92e73f2016-03-12 02:03:48 -050043#include "hwc_debugger.h"
Pullakavi Srinivas9189e602018-12-19 16:58:07 +053044#include "hwc_session.h"
Naseer Ahmedb92e73f2016-03-12 02:03:48 -050045
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +053046#define __CLASS__ "HWCDisplayBuiltIn"
Naseer Ahmedb92e73f2016-03-12 02:03:48 -050047
48namespace sdm {
49
Pullakavi Srinivas1ae4acb2019-11-18 19:33:45 +053050static void SetRect(LayerRect &src_rect, GLRect *target) {
51 target->left = src_rect.left;
52 target->top = src_rect.top;
53 target->right = src_rect.right;
54 target->bottom = src_rect.bottom;
55}
56
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +053057int HWCDisplayBuiltIn::Create(CoreInterface *core_intf, BufferAllocator *buffer_allocator,
Varun Arora7c8ee542018-05-01 20:58:16 -070058 HWCCallbacks *callbacks, HWCDisplayEventHandler *event_handler,
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +053059 qService::QService *qservice, hwc2_display_t id, int32_t sdm_id,
60 HWCDisplay **hwc_display) {
Naseer Ahmedb92e73f2016-03-12 02:03:48 -050061 int status = 0;
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +053062 uint32_t builtin_width = 0;
63 uint32_t builtin_height = 0;
Naseer Ahmedb92e73f2016-03-12 02:03:48 -050064
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +053065 HWCDisplay *hwc_display_builtin =
66 new HWCDisplayBuiltIn(core_intf, buffer_allocator, callbacks, event_handler, qservice, id,
67 sdm_id);
68 status = hwc_display_builtin->Init();
Naseer Ahmedb92e73f2016-03-12 02:03:48 -050069 if (status) {
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +053070 delete hwc_display_builtin;
Naseer Ahmedb92e73f2016-03-12 02:03:48 -050071 return status;
72 }
73
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +053074 hwc_display_builtin->GetMixerResolution(&builtin_width, &builtin_height);
Naseer Ahmedb92e73f2016-03-12 02:03:48 -050075 int width = 0, height = 0;
Uday Kiran Pichika5e656b22018-05-15 18:48:24 +053076 HWCDebugHandler::Get()->GetProperty(FB_WIDTH_PROP, &width);
77 HWCDebugHandler::Get()->GetProperty(FB_HEIGHT_PROP, &height);
Naseer Ahmedb92e73f2016-03-12 02:03:48 -050078 if (width > 0 && height > 0) {
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +053079 builtin_width = UINT32(width);
80 builtin_height = UINT32(height);
Naseer Ahmedb92e73f2016-03-12 02:03:48 -050081 }
82
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +053083 status = hwc_display_builtin->SetFrameBufferResolution(builtin_width, builtin_height);
Naseer Ahmedb92e73f2016-03-12 02:03:48 -050084 if (status) {
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +053085 Destroy(hwc_display_builtin);
Naseer Ahmedb92e73f2016-03-12 02:03:48 -050086 return status;
87 }
88
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +053089 *hwc_display = hwc_display_builtin;
Naseer Ahmedb92e73f2016-03-12 02:03:48 -050090
91 return status;
92}
93
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +053094void HWCDisplayBuiltIn::Destroy(HWCDisplay *hwc_display) {
Naseer Ahmedb92e73f2016-03-12 02:03:48 -050095 hwc_display->Deinit();
96 delete hwc_display;
97}
98
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +053099HWCDisplayBuiltIn::HWCDisplayBuiltIn(CoreInterface *core_intf, BufferAllocator *buffer_allocator,
Varun Arora7c8ee542018-05-01 20:58:16 -0700100 HWCCallbacks *callbacks, HWCDisplayEventHandler *event_handler,
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +0530101 qService::QService *qservice, hwc2_display_t id,
102 int32_t sdm_id)
103 : HWCDisplay(core_intf, buffer_allocator, callbacks, event_handler, qservice, kBuiltIn, id,
Gousemoodhin Nadaf087c3102019-01-07 19:34:56 +0530104 sdm_id, DISPLAY_CLASS_BUILTIN),
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +0530105 buffer_allocator_(buffer_allocator),
Pullakavi Srinivas1ae4acb2019-11-18 19:33:45 +0530106 cpu_hint_(NULL), layer_stitch_task_(*this) {
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500107}
108
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +0530109int HWCDisplayBuiltIn::Init() {
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500110 cpu_hint_ = new CPUHint();
111 if (cpu_hint_->Init(static_cast<HWCDebugHandler *>(HWCDebugHandler::Get())) != kErrorNone) {
112 delete cpu_hint_;
113 cpu_hint_ = NULL;
114 }
115
116 use_metadata_refresh_rate_ = true;
117 int disable_metadata_dynfps = 0;
Uday Kiran Pichika5e656b22018-05-15 18:48:24 +0530118 HWCDebugHandler::Get()->GetProperty(DISABLE_METADATA_DYNAMIC_FPS_PROP, &disable_metadata_dynfps);
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500119 if (disable_metadata_dynfps) {
120 use_metadata_refresh_rate_ = false;
121 }
122
Arun Kumar K.R29cd6582016-05-10 19:12:45 -0700123 int status = HWCDisplay::Init();
124 if (status) {
125 return status;
126 }
127 color_mode_ = new HWCColorMode(display_intf_);
Naseer Ahmed61f60952017-05-24 16:48:35 -0400128 color_mode_->Init();
Arun Kumar K.R29cd6582016-05-10 19:12:45 -0700129
Padmanabhan Komanduru866bf6a2019-03-19 14:30:48 +0530130 int optimize_refresh = 0;
131 HWCDebugHandler::Get()->GetProperty(ENABLE_OPTIMIZE_REFRESH, &optimize_refresh);
132 enable_optimize_refresh_ = (optimize_refresh == 1);
133 if (enable_optimize_refresh_) {
Pullakavi Srinivasce3692b2020-02-13 01:14:09 +0530134 DLOGI("Drop redundant drawcycles %" PRIu64 , id_);
Padmanabhan Komandurue74cf4f2019-04-25 17:38:43 -0700135 }
136
Sushil Chauhandbd8db42020-02-28 13:07:48 -0800137 int vsyncs = 0;
138 HWCDebugHandler::Get()->GetProperty(DEFER_FPS_FRAME_COUNT, &vsyncs);
139 if (vsyncs > 0) {
140 SetVsyncsApplyRateChange(UINT32(vsyncs));
141 }
142
Mathew Joseph Karimpanalb1c15862019-07-04 11:14:24 +0530143 is_primary_ = display_intf_->IsPrimaryDisplay();
144
Rajavenu Kyathamf87a7a72019-12-05 16:43:07 +0530145 if (is_primary_) {
Padmanabhan Komandurub5ff0fb2020-02-12 18:08:04 +0530146 int enable_bw_limits = 0;
147 HWCDebugHandler::Get()->GetProperty(ENABLE_BW_LIMITS, &enable_bw_limits);
148 enable_bw_limits_ = (enable_bw_limits == 1);
149 if (enable_bw_limits_) {
Pullakavi Srinivasce3692b2020-02-13 01:14:09 +0530150 DLOGI("Enable BW Limits %" PRIu64, id_);
Padmanabhan Komandurub5ff0fb2020-02-12 18:08:04 +0530151 }
Pullakavi Srinivasd32b4922020-02-10 10:08:31 +0530152 windowed_display_ = Debug::GetWindowRect(&window_rect_.left, &window_rect_.top,
153 &window_rect_.right, &window_rect_.bottom) != kErrorUndefined;
Rajavenu Kyathamf87a7a72019-12-05 16:43:07 +0530154 DLOGI("Window rect : [%f %f %f %f]", window_rect_.left, window_rect_.top,
Pullakavi Srinivasd32b4922020-02-10 10:08:31 +0530155 window_rect_.right, window_rect_.bottom);
Rajavenu Kyathamf87a7a72019-12-05 16:43:07 +0530156 }
Pullakavi Srinivas7bdcc762020-03-06 12:41:36 +0530157
158 uint32_t config_index = 0;
159 GetActiveDisplayConfig(&config_index);
160 DisplayConfigVariableInfo attr = {};
161 GetDisplayAttributesForConfig(INT(config_index), &attr);
162 active_refresh_rate_ = attr.fps;
163
164 DLOGI("active_refresh_rate: %d", active_refresh_rate_);
165
Naseer Ahmed61f60952017-05-24 16:48:35 -0400166 return status;
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500167}
168
Dileep Marchya58928122020-01-28 12:16:51 +0530169void HWCDisplayBuiltIn::Dump(std::ostringstream *os) {
170 HWCDisplay::Dump(os);
171 *os << histogram.Dump();
Lakshmi Narayana Kalavala25fe12c2019-12-11 20:44:55 -0800172}
173
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +0530174HWC2::Error HWCDisplayBuiltIn::Validate(uint32_t *out_num_types, uint32_t *out_num_requests) {
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500175 auto status = HWC2::Error::None;
176 DisplayError error = kErrorNone;
177
Gurpreet Singh Dhamia4276882019-04-12 10:30:58 -0700178 DTRACE_SCOPED();
179
Mathew Joseph Karimpanalb1c15862019-07-04 11:14:24 +0530180 if (display_paused_ || (!is_primary_ && active_secure_sessions_[kSecureDisplay])) {
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500181 MarkLayersForGPUBypass();
182 return status;
183 }
184
Arun Kumar K.R29cd6582016-05-10 19:12:45 -0700185 if (color_tranform_failed_) {
186 // Must fall back to client composition
187 MarkLayersForClientComposition();
188 }
189
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500190 // Fill in the remaining blanks in the layers and add them to the SDM layerstack
191 BuildLayerStack();
Pullakavi Srinivas1ae4acb2019-11-18 19:33:45 +0530192
193 // Add stitch layer to layer stack.
194 AppendStitchLayer();
195
Arun Kumar K.R536c7d62016-06-14 18:47:39 -0700196 // Checks and replaces layer stack for solid fill
197 SolidFillPrepare();
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500198
Sushil Chauhan8008d602018-09-04 14:43:27 -0700199 // Apply current Color Mode and Render Intent.
Xu Yang84e61412018-12-06 14:52:16 +0800200 if (color_mode_->ApplyCurrentColorModeWithRenderIntent(
201 static_cast<bool>(layer_stack_.flags.hdr_present)) != HWC2::Error::None) {
Sushil Chauhan8008d602018-09-04 14:43:27 -0700202 // Fallback to GPU Composition, if Color Mode can't be applied.
203 MarkLayersForClientComposition();
204 }
205
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500206 bool pending_output_dump = dump_frame_count_ && dump_output_to_file_;
207
Sushil Chauhan06521582018-03-19 14:00:23 -0700208 if (readback_buffer_queued_ || pending_output_dump) {
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500209 // RHS values were set in FrameCaptureAsync() called from a binder thread. They are picked up
Sushil Chauhan06521582018-03-19 14:00:23 -0700210 // here in a subsequent draw round. Readback is not allowed for any secure use case.
211 readback_configured_ = !layer_stack_.flags.secure_present;
212 if (readback_configured_) {
Sushil Chauhanf42d8622018-09-30 23:20:37 -0700213 DisablePartialUpdateOneFrame();
Sushil Chauhan06521582018-03-19 14:00:23 -0700214 layer_stack_.output_buffer = &output_buffer_;
215 layer_stack_.flags.post_processed_output = post_processed_output_;
216 }
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500217 }
218
Ramakant Singh5db0dfb2017-08-23 12:34:57 +0530219 uint32_t num_updating_layers = GetUpdatingLayersCount();
220 bool one_updating_layer = (num_updating_layers == 1);
221 if (num_updating_layers != 0) {
222 ToggleCPUHint(one_updating_layer);
223 }
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500224
225 uint32_t refresh_rate = GetOptimalRefreshRate(one_updating_layer);
Pullakavi Srinivas4619db92019-04-20 15:07:59 +0530226 error = display_intf_->SetRefreshRate(refresh_rate, force_refresh_rate_);
227
228 // Get the refresh rate set.
229 display_intf_->GetRefreshRate(&refresh_rate);
230 bool vsync_source = (callbacks_->GetVsyncSource() == id_);
231
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500232 if (error == kErrorNone) {
Pullakavi Srinivas4619db92019-04-20 15:07:59 +0530233 if (vsync_source && (current_refresh_rate_ < refresh_rate)) {
234 DTRACE_BEGIN("HWC2::Vsync::Enable");
235 // Display is ramping up from idle.
236 // Client realizes need for resync upon change in config.
237 // Since we know config has changed, triggering vsync proactively
238 // can help in reducing pipeline delays to enable events.
239 SetVsyncEnabled(HWC2::Vsync::Enable);
240 DTRACE_END();
241 }
242 // On success, set current refresh rate to new refresh rate.
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500243 current_refresh_rate_ = refresh_rate;
244 }
245
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500246 if (layer_set_.empty()) {
Uday Kiran Pichika8d827732018-01-09 18:08:38 +0530247 // Avoid flush for Command mode panel.
Pullakavi Srinivas2d55f3a2019-07-16 14:49:06 +0530248 flush_ = !client_connected_;
Ramkumar Radhakrishnana38b7602018-03-15 14:49:52 -0700249 validated_ = true;
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500250 return status;
251 }
252
253 status = PrepareLayerStack(out_num_types, out_num_requests);
Namit Solanki5b428dc2018-02-27 11:39:05 +0530254 pending_commit_ = true;
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500255 return status;
256}
257
Padmanabhan Komandurue74cf4f2019-04-25 17:38:43 -0700258HWC2::Error HWCDisplayBuiltIn::CommitLayerStack() {
259 skip_commit_ = CanSkipCommit();
260 return HWCDisplay::CommitLayerStack();
261}
262
263bool HWCDisplayBuiltIn::CanSkipCommit() {
264 if (layer_stack_invalid_) {
265 return false;
266 }
267
268 // Reject repeated drawcycle requests if it satisfies all conditions.
269 // 1. None of the layerstack attributes changed.
270 // 2. No new buffer latched.
271 // 3. No refresh request triggered by HWC.
272 // 4. This display is not source of vsync.
273 bool buffers_latched = false;
274 for (auto &hwc_layer : layer_set_) {
275 buffers_latched |= hwc_layer->BufferLatched();
276 hwc_layer->ResetBufferFlip();
277 }
278
Padmanabhan Komanduruf5e6c5d2019-04-04 13:56:31 +0530279 bool vsync_source = (callbacks_->GetVsyncSource() == id_);
Padmanabhan Komanduru866bf6a2019-03-19 14:30:48 +0530280 bool skip_commit = enable_optimize_refresh_ && !pending_commit_ && !buffers_latched &&
Padmanabhan Komanduruf5e6c5d2019-04-04 13:56:31 +0530281 !pending_refresh_ && !vsync_source;
Padmanabhan Komandurue74cf4f2019-04-25 17:38:43 -0700282 pending_refresh_ = false;
283
284 return skip_commit;
285}
286
Pullakavi Srinivas1ae4acb2019-11-18 19:33:45 +0530287HWC2::Error HWCDisplayBuiltIn::CommitStitchLayers() {
Pullakavi Srinivasdb2b84a2019-11-21 14:47:35 +0530288 if (disable_layer_stitch_) {
Pullakavi Srinivas1ae4acb2019-11-18 19:33:45 +0530289 return HWC2::Error::None;
290 }
291
Pullakavi Srinivasdb2b84a2019-11-21 14:47:35 +0530292 if (!validated_ || skip_commit_) {
Pullakavi Srinivas1ae4acb2019-11-18 19:33:45 +0530293 return HWC2::Error::None;
294 }
295
296 for (auto &layer : layer_stack_.layers) {
297 LayerComposition &composition = layer->composition;
298 if (composition != kCompositionStitch) {
299 continue;
300 }
301
Pullakavi Srinivasdb2b84a2019-11-21 14:47:35 +0530302 LayerStitchContext ctx = {};
Pullakavi Srinivas1ae4acb2019-11-18 19:33:45 +0530303 // Stitch target doesn't have an input fence.
304 // Render all layers at specified destination.
305 LayerBuffer &input_buffer = layer->input_buffer;
306 ctx.src_hnd = reinterpret_cast<const private_handle_t *>(input_buffer.buffer_id);
307 Layer *stitch_layer = stitch_target_->GetSDMLayer();
308 LayerBuffer &output_buffer = stitch_layer->input_buffer;
309 ctx.dst_hnd = reinterpret_cast<const private_handle_t *>(output_buffer.buffer_id);
Pullakavi Srinivasf25bc4a2020-02-27 12:07:39 +0530310 SetRect(layer->stitch_info.dst_rect, &ctx.dst_rect);
311 SetRect(layer->stitch_info.slice_rect, &ctx.scissor_rect);
Rajavenu Kyatham7338b9e2019-12-30 19:52:16 +0530312 ctx.src_acquire_fence = input_buffer.acquire_fence;
Pullakavi Srinivas1ae4acb2019-11-18 19:33:45 +0530313
314 layer_stitch_task_.PerformTask(LayerStitchTaskCode::kCodeStitch, &ctx);
315
Rajavenu Kyatham7338b9e2019-12-30 19:52:16 +0530316 // Merge with current fence.
317 output_buffer.acquire_fence = Fence::Merge(output_buffer.acquire_fence, ctx.release_fence);
Pullakavi Srinivas1ae4acb2019-11-18 19:33:45 +0530318 }
319
320 return HWC2::Error::None;
321}
322
Padmanabhan Komanduru6693fcb2019-11-22 21:06:52 +0530323void HWCDisplayBuiltIn::CacheAvrStatus() {
324 QSyncMode qsync_mode = kQSyncModeNone;
325
326 DisplayError error = display_intf_->GetQSyncMode(&qsync_mode);
327 if (error != kErrorNone) {
328 return;
329 }
330
331 bool qsync_enabled = (qsync_mode != kQSyncModeNone);
332 if (qsync_enabled_ != qsync_enabled) {
333 qsync_reconfigured_ = true;
334 qsync_enabled_ = qsync_enabled;
335 } else {
336 qsync_reconfigured_ = false;
337 }
338}
339
340bool HWCDisplayBuiltIn::IsQsyncCallbackNeeded(bool *qsync_enabled, int32_t *refresh_rate,
341 int32_t *qsync_refresh_rate) {
342 if (!qsync_reconfigured_) {
343 return false;
344 }
345
346 bool vsync_source = (callbacks_->GetVsyncSource() == id_);
347 // Qsync callback not needed if this display is not the source of vsync
348 if (!vsync_source) {
349 return false;
350 }
351
352 *qsync_enabled = qsync_enabled_;
353 uint32_t current_rate = 0;
354 display_intf_->GetRefreshRate(&current_rate);
355 *refresh_rate = INT32(current_rate);
356 *qsync_refresh_rate = min_refresh_rate_;
357
358 return true;
359}
360
Padmanabhan Komandurub5ff0fb2020-02-12 18:08:04 +0530361int HWCDisplayBuiltIn::GetBwCode(const DisplayConfigVariableInfo &attr) {
362 uint32_t min_refresh_rate = 0, max_refresh_rate = 0;
363 display_intf_->GetRefreshRateRange(&min_refresh_rate, &max_refresh_rate);
364 uint32_t fps = attr.smart_panel ? attr.fps : max_refresh_rate;
365
366 if (fps <= 60) {
367 return kBwLow;
368 } else if (fps <= 90) {
369 return kBwMedium;
370 } else {
371 return kBwHigh;
372 }
373}
374
375void HWCDisplayBuiltIn::SetBwLimitHint(bool enable) {
376 if (!enable_bw_limits_) {
377 return;
378 }
379
380 if (!enable) {
381 thermal_bandwidth_client_cancel_request(const_cast<char*>(kDisplayBwName));
382 curr_refresh_rate_ = 0;
383 return;
384 }
385
386 uint32_t config_index = 0;
387 DisplayConfigVariableInfo attr = {};
388 GetActiveDisplayConfig(&config_index);
389 GetDisplayAttributesForConfig(INT(config_index), &attr);
390 if (attr.fps != curr_refresh_rate_ || attr.smart_panel != is_smart_panel_) {
391 int bw_code = GetBwCode(attr);
392 int req_data = thermal_bandwidth_client_merge_input_info(bw_code, 0);
393 int error = thermal_bandwidth_client_request(const_cast<char*>(kDisplayBwName), req_data);
394 if (error) {
395 DLOGE("Thermal bandwidth request failed %d", error);
396 }
397 curr_refresh_rate_ = attr.fps;
398 is_smart_panel_ = attr.smart_panel;
399 }
400}
401
402HWC2::Error HWCDisplayBuiltIn::SetPowerMode(HWC2::PowerMode mode, bool teardown) {
403 auto status = HWCDisplay::SetPowerMode(mode, teardown);
404 if (status != HWC2::Error::None) {
405 return status;
406 }
407
408 if (mode == HWC2::PowerMode::Off) {
409 SetBwLimitHint(false);
410 }
411
412 return HWC2::Error::None;
413}
414
Dileep Marchyaad668432019-12-02 10:44:52 +0530415HWC2::Error HWCDisplayBuiltIn::Present(shared_ptr<Fence> *out_retire_fence) {
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500416 auto status = HWC2::Error::None;
Gurpreet Singh Dhamia4276882019-04-12 10:30:58 -0700417
418 DTRACE_SCOPED();
Mathew Joseph Karimpanalb1c15862019-07-04 11:14:24 +0530419
420 if (!is_primary_ && active_secure_sessions_[kSecureDisplay]) {
Pullakavi Srinivas1ae4acb2019-11-18 19:33:45 +0530421 return status;
Mathew Joseph Karimpanalb1c15862019-07-04 11:14:24 +0530422 } else if (display_paused_) {
Pullakavi Srinivas0a1dba62018-07-02 15:49:11 +0530423 DisplayError error = display_intf_->Flush(&layer_stack_);
Saurabh Shaha307e8c2017-09-28 18:05:40 -0700424 validated_ = false;
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500425 if (error != kErrorNone) {
426 DLOGE("Flush failed. Error = %d", error);
427 }
428 } else {
Padmanabhan Komanduru6693fcb2019-11-22 21:06:52 +0530429 CacheAvrStatus();
430
Pullakavi Srinivas1ae4acb2019-11-18 19:33:45 +0530431 status = CommitStitchLayers();
432 if (status != HWC2::Error::None) {
433 DLOGE("Stitch failed: %d", status);
434 return status;
435 }
436
Padmanabhan Komandurue74cf4f2019-04-25 17:38:43 -0700437 status = CommitLayerStack();
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500438 if (status == HWC2::Error::None) {
439 HandleFrameOutput();
Pullakavi Srinivasdb2b84a2019-11-21 14:47:35 +0530440 PostCommitStitchLayers();
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500441 status = HWCDisplay::PostCommitLayerStack(out_retire_fence);
Padmanabhan Komandurub5ff0fb2020-02-12 18:08:04 +0530442 SetBwLimitHint(true);
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500443 }
444 }
Arun Kumar K.R536c7d62016-06-14 18:47:39 -0700445
Namit Solanki5b428dc2018-02-27 11:39:05 +0530446 pending_commit_ = false;
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500447 return status;
448}
449
Pullakavi Srinivasdb2b84a2019-11-21 14:47:35 +0530450void HWCDisplayBuiltIn::PostCommitStitchLayers() {
451 if (disable_layer_stitch_) {
452 return;
453 }
454
455 // Close Stitch buffer acquire fence.
456 Layer *stitch_layer = stitch_target_->GetSDMLayer();
457 LayerBuffer &output_buffer = stitch_layer->input_buffer;
458 for (auto &layer : layer_stack_.layers) {
459 LayerComposition &composition = layer->composition;
460 if (composition != kCompositionStitch) {
461 continue;
462 }
463 LayerBuffer &input_buffer = layer->input_buffer;
Rajavenu Kyatham7338b9e2019-12-30 19:52:16 +0530464 input_buffer.release_fence = output_buffer.acquire_fence;
Pullakavi Srinivasdb2b84a2019-11-21 14:47:35 +0530465 }
Pullakavi Srinivasdb2b84a2019-11-21 14:47:35 +0530466}
467
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +0530468HWC2::Error HWCDisplayBuiltIn::GetColorModes(uint32_t *out_num_modes, ColorMode *out_modes) {
Arun Kumar K.R29cd6582016-05-10 19:12:45 -0700469 if (out_modes == nullptr) {
470 *out_num_modes = color_mode_->GetColorModeCount();
471 } else {
472 color_mode_->GetColorModes(out_num_modes, out_modes);
473 }
474
475 return HWC2::Error::None;
476}
477
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +0530478HWC2::Error HWCDisplayBuiltIn::GetRenderIntents(ColorMode mode, uint32_t *out_num_intents,
Naseer Ahmede7a77982018-06-04 10:56:04 -0400479 RenderIntent *out_intents) {
480 if (out_intents == nullptr) {
481 *out_num_intents = color_mode_->GetRenderIntentCount(mode);
482 } else {
483 color_mode_->GetRenderIntents(mode, out_num_intents, out_intents);
484 }
485 return HWC2::Error::None;
486}
487
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +0530488HWC2::Error HWCDisplayBuiltIn::SetColorMode(ColorMode mode) {
Naseer Ahmede7a77982018-06-04 10:56:04 -0400489 return SetColorModeWithRenderIntent(mode, RenderIntent::COLORIMETRIC);
490}
491
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +0530492HWC2::Error HWCDisplayBuiltIn::SetColorModeWithRenderIntent(ColorMode mode, RenderIntent intent) {
Sushil Chauhan8008d602018-09-04 14:43:27 -0700493 auto status = color_mode_->CacheColorModeWithRenderIntent(mode, intent);
Arun Kumar K.R29cd6582016-05-10 19:12:45 -0700494 if (status != HWC2::Error::None) {
Naseer Ahmede7a77982018-06-04 10:56:04 -0400495 DLOGE("failed for mode = %d intent = %d", mode, intent);
Arun Kumar K.R29cd6582016-05-10 19:12:45 -0700496 return status;
497 }
Ramkumar Radhakrishnan44c64362018-12-12 13:03:59 -0800498 callbacks_->Refresh(id_);
Saurabh Shaha307e8c2017-09-28 18:05:40 -0700499 validated_ = false;
Arun Kumar K.R29cd6582016-05-10 19:12:45 -0700500 return status;
501}
502
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +0530503HWC2::Error HWCDisplayBuiltIn::SetColorModeById(int32_t color_mode_id) {
Naseer Ahmed6776dae2017-05-09 11:49:41 -0400504 auto status = color_mode_->SetColorModeById(color_mode_id);
505 if (status != HWC2::Error::None) {
506 DLOGE("failed for mode = %d", color_mode_id);
507 return status;
508 }
509
Ramkumar Radhakrishnan44c64362018-12-12 13:03:59 -0800510 callbacks_->Refresh(id_);
Saurabh Shaha307e8c2017-09-28 18:05:40 -0700511 validated_ = false;
Naseer Ahmed6776dae2017-05-09 11:49:41 -0400512
513 return status;
514}
515
Xu Yang84e61412018-12-06 14:52:16 +0800516HWC2::Error HWCDisplayBuiltIn::SetColorModeFromClientApi(int32_t color_mode_id) {
517 DisplayError error = kErrorNone;
518 std::string mode_string;
519
520 error = display_intf_->GetColorModeName(color_mode_id, &mode_string);
521 if (error) {
522 DLOGE("Failed to get mode name for mode %d", color_mode_id);
523 return HWC2::Error::BadParameter;
524 }
525
526 auto status = color_mode_->SetColorModeFromClientApi(mode_string);
527 if (status != HWC2::Error::None) {
528 DLOGE("Failed to set mode = %d", color_mode_id);
529 return status;
530 }
531
532 return status;
533}
534
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +0530535HWC2::Error HWCDisplayBuiltIn::RestoreColorTransform() {
Ch Ganesh Kumar5d43ff62017-10-13 19:01:47 +0530536 auto status = color_mode_->RestoreColorTransform();
537 if (status != HWC2::Error::None) {
538 DLOGE("failed to RestoreColorTransform");
539 return status;
540 }
541
Ramkumar Radhakrishnan44c64362018-12-12 13:03:59 -0800542 callbacks_->Refresh(id_);
Ch Ganesh Kumar5d43ff62017-10-13 19:01:47 +0530543
544 return status;
545}
546
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +0530547HWC2::Error HWCDisplayBuiltIn::SetColorTransform(const float *matrix,
Arun Kumar K.R29cd6582016-05-10 19:12:45 -0700548 android_color_transform_t hint) {
549 if (!matrix) {
550 return HWC2::Error::BadParameter;
551 }
552
553 auto status = color_mode_->SetColorTransform(matrix, hint);
554 if (status != HWC2::Error::None) {
555 DLOGE("failed for hint = %d", hint);
556 color_tranform_failed_ = true;
557 return status;
558 }
559
Ramkumar Radhakrishnan44c64362018-12-12 13:03:59 -0800560 callbacks_->Refresh(id_);
Arun Kumar K.R29cd6582016-05-10 19:12:45 -0700561 color_tranform_failed_ = false;
Saurabh Shaha307e8c2017-09-28 18:05:40 -0700562 validated_ = false;
Arun Kumar K.R29cd6582016-05-10 19:12:45 -0700563
564 return status;
565}
566
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +0530567HWC2::Error HWCDisplayBuiltIn::SetReadbackBuffer(const native_handle_t *buffer,
Rajavenu Kyatham7338b9e2019-12-30 19:52:16 +0530568 shared_ptr<Fence> acquire_fence,
569 bool post_processed_output, CWBClient client) {
Dileep Marchyacb2a3a92019-06-21 17:30:50 +0530570 if (cwb_client_ != client && cwb_client_ != kCWBClientNone) {
571 DLOGE("CWB is in use with client = %d", cwb_client_);
572 return HWC2::Error::NoResources;
573 }
574
Sushil Chauhan06521582018-03-19 14:00:23 -0700575 const private_handle_t *handle = reinterpret_cast<const private_handle_t *>(buffer);
576 if (!handle || (handle->fd < 0)) {
577 return HWC2::Error::BadParameter;
578 }
579
580 // Configure the output buffer as Readback buffer
581 output_buffer_.width = UINT32(handle->width);
582 output_buffer_.height = UINT32(handle->height);
583 output_buffer_.unaligned_width = UINT32(handle->unaligned_width);
584 output_buffer_.unaligned_height = UINT32(handle->unaligned_height);
585 output_buffer_.format = HWCLayer::GetSDMFormat(handle->format, handle->flags);
586 output_buffer_.planes[0].fd = handle->fd;
587 output_buffer_.planes[0].stride = UINT32(handle->width);
Rajavenu Kyatham7338b9e2019-12-30 19:52:16 +0530588 output_buffer_.acquire_fence = acquire_fence;
Sushil Chauhand0dc03d2018-09-19 07:08:40 -0700589 output_buffer_.handle_id = handle->id;
Sushil Chauhan06521582018-03-19 14:00:23 -0700590
591 post_processed_output_ = post_processed_output;
592 readback_buffer_queued_ = true;
593 readback_configured_ = false;
594 validated_ = false;
Dileep Marchyacb2a3a92019-06-21 17:30:50 +0530595 cwb_client_ = client;
Sushil Chauhan06521582018-03-19 14:00:23 -0700596
Sushil Chauhan06521582018-03-19 14:00:23 -0700597 return HWC2::Error::None;
598}
599
Rajavenu Kyatham7338b9e2019-12-30 19:52:16 +0530600HWC2::Error HWCDisplayBuiltIn::GetReadbackBufferFence(shared_ptr<Fence> *release_fence) {
Sushil Chauhan06521582018-03-19 14:00:23 -0700601 auto status = HWC2::Error::None;
602
Rajavenu Kyatham7338b9e2019-12-30 19:52:16 +0530603 if (readback_configured_ && output_buffer_.release_fence) {
604 *release_fence = output_buffer_.release_fence;
Sushil Chauhan06521582018-03-19 14:00:23 -0700605 } else {
606 status = HWC2::Error::Unsupported;
Sushil Chauhan06521582018-03-19 14:00:23 -0700607 }
608
609 post_processed_output_ = false;
610 readback_buffer_queued_ = false;
611 readback_configured_ = false;
612 output_buffer_ = {};
Dileep Marchyacb2a3a92019-06-21 17:30:50 +0530613 cwb_client_ = kCWBClientNone;
Sushil Chauhan06521582018-03-19 14:00:23 -0700614
615 return status;
616}
617
Gurpreet Singh Dhami1207e462018-12-27 20:02:02 -0500618DisplayError HWCDisplayBuiltIn::TeardownConcurrentWriteback(void) {
619 DisplayError error = kErrorNotSupported;
Rajavenu Kyatham7338b9e2019-12-30 19:52:16 +0530620 if (Fence::Wait(output_buffer_.release_fence) != kErrorNone) {
621 DLOGE("sync_wait error errno = %d, desc = %s", errno, strerror(errno));
622 return kErrorResources;
Gurpreet Singh Dhami1207e462018-12-27 20:02:02 -0500623 }
624
625 if (display_intf_) {
626 error = display_intf_->TeardownConcurrentWriteback();
627 }
628
629 return error;
630}
631
Yuchao Ma577f0f72018-07-09 11:20:00 +0800632HWC2::Error HWCDisplayBuiltIn::SetDisplayDppsAdROI(uint32_t h_start, uint32_t h_end,
633 uint32_t v_start, uint32_t v_end,
634 uint32_t factor_in, uint32_t factor_out) {
635 DisplayError error = kErrorNone;
636 DisplayDppsAd4RoiCfg dpps_ad4_roi_cfg = {};
637 uint32_t panel_width = 0, panel_height = 0;
638 constexpr uint16_t kMaxFactorVal = 0xffff;
639
640 if (h_start >= h_end || v_start >= v_end || factor_in > kMaxFactorVal ||
641 factor_out > kMaxFactorVal) {
642 DLOGE("Invalid roi region = [%u, %u, %u, %u, %u, %u]",
643 h_start, h_end, v_start, v_end, factor_in, factor_out);
644 return HWC2::Error::BadParameter;
645 }
646
647 GetPanelResolution(&panel_width, &panel_height);
648
649 if (h_start >= panel_width || h_end > panel_width ||
650 v_start >= panel_height || v_end > panel_height) {
651 DLOGE("Invalid roi region = [%u, %u, %u, %u], panel resolution = [%u, %u]",
652 h_start, h_end, v_start, v_end, panel_width, panel_height);
653 return HWC2::Error::BadParameter;
654 }
655
656 dpps_ad4_roi_cfg.h_start = h_start;
657 dpps_ad4_roi_cfg.h_end = h_end;
658 dpps_ad4_roi_cfg.v_start = v_start;
659 dpps_ad4_roi_cfg.v_end = v_end;
660 dpps_ad4_roi_cfg.factor_in = factor_in;
661 dpps_ad4_roi_cfg.factor_out = factor_out;
662
663 error = display_intf_->SetDisplayDppsAdROI(&dpps_ad4_roi_cfg);
664 if (error)
665 return HWC2::Error::BadConfig;
666
Ramkumar Radhakrishnan44c64362018-12-12 13:03:59 -0800667 callbacks_->Refresh(id_);
Yuchao Ma577f0f72018-07-09 11:20:00 +0800668
669 return HWC2::Error::None;
670}
671
Xu Yang9dacc872018-12-25 11:04:28 +0800672HWC2::Error HWCDisplayBuiltIn::SetFrameTriggerMode(uint32_t mode) {
673 DisplayError error = kErrorNone;
674 FrameTriggerMode trigger_mode = kFrameTriggerDefault;
675
676 if (mode >= kFrameTriggerMax) {
677 DLOGE("Invalid input mode %d", mode);
678 return HWC2::Error::BadParameter;
679 }
680
681 trigger_mode = static_cast<FrameTriggerMode>(mode);
682 error = display_intf_->SetFrameTriggerMode(trigger_mode);
683 if (error)
684 return HWC2::Error::BadConfig;
685
686 callbacks_->Refresh(HWC_DISPLAY_PRIMARY);
687 validated_ = false;
688
689 return HWC2::Error::None;
690}
691
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +0530692int HWCDisplayBuiltIn::Perform(uint32_t operation, ...) {
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500693 va_list args;
694 va_start(args, operation);
Arun Kumar K.R536c7d62016-06-14 18:47:39 -0700695 int val = 0;
Gopikrishnaiah Anandancc123062017-07-31 17:21:03 -0700696 LayerSolidFill *solid_fill_color;
Arun Kumar K.R536c7d62016-06-14 18:47:39 -0700697 LayerRect *rect = NULL;
698
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500699 switch (operation) {
700 case SET_METADATA_DYN_REFRESH_RATE:
Arun Kumar K.R536c7d62016-06-14 18:47:39 -0700701 val = va_arg(args, int32_t);
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500702 SetMetaDataRefreshRateFlag(val);
703 break;
704 case SET_BINDER_DYN_REFRESH_RATE:
Arun Kumar K.R536c7d62016-06-14 18:47:39 -0700705 val = va_arg(args, int32_t);
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500706 ForceRefreshRate(UINT32(val));
707 break;
708 case SET_DISPLAY_MODE:
Arun Kumar K.R536c7d62016-06-14 18:47:39 -0700709 val = va_arg(args, int32_t);
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500710 SetDisplayMode(UINT32(val));
711 break;
712 case SET_QDCM_SOLID_FILL_INFO:
Gopikrishnaiah Anandancc123062017-07-31 17:21:03 -0700713 solid_fill_color = va_arg(args, LayerSolidFill*);
714 SetQDCMSolidFillInfo(true, *solid_fill_color);
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500715 break;
716 case UNSET_QDCM_SOLID_FILL_INFO:
Gopikrishnaiah Anandancc123062017-07-31 17:21:03 -0700717 solid_fill_color = va_arg(args, LayerSolidFill*);
718 SetQDCMSolidFillInfo(false, *solid_fill_color);
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500719 break;
Arun Kumar K.R536c7d62016-06-14 18:47:39 -0700720 case SET_QDCM_SOLID_FILL_RECT:
721 rect = va_arg(args, LayerRect*);
722 solid_fill_rect_ = *rect;
723 break;
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500724 default:
725 DLOGW("Invalid operation %d", operation);
Arun Kumar K.R536c7d62016-06-14 18:47:39 -0700726 va_end(args);
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500727 return -EINVAL;
728 }
Arun Kumar K.R536c7d62016-06-14 18:47:39 -0700729 va_end(args);
Saurabh Shaha307e8c2017-09-28 18:05:40 -0700730 validated_ = false;
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500731
732 return 0;
733}
734
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +0530735DisplayError HWCDisplayBuiltIn::SetDisplayMode(uint32_t mode) {
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500736 DisplayError error = kErrorNone;
737
738 if (display_intf_) {
739 error = display_intf_->SetDisplayMode(mode);
Tharaga Balachandran04192a62018-08-29 16:23:25 -0400740 if (error == kErrorNone) {
741 DisplayConfigFixedInfo fixed_info = {};
742 display_intf_->GetConfig(&fixed_info);
743 is_cmd_mode_ = fixed_info.is_cmdmode;
744 partial_update_enabled_ = fixed_info.partial_update;
745 for (auto hwc_layer : layer_set_) {
746 hwc_layer->SetPartialUpdate(partial_update_enabled_);
747 }
748 client_target_->SetPartialUpdate(partial_update_enabled_);
749 }
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500750 }
751
752 return error;
753}
754
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +0530755void HWCDisplayBuiltIn::SetMetaDataRefreshRateFlag(bool enable) {
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500756 int disable_metadata_dynfps = 0;
757
Uday Kiran Pichika5e656b22018-05-15 18:48:24 +0530758 HWCDebugHandler::Get()->GetProperty(DISABLE_METADATA_DYNAMIC_FPS_PROP, &disable_metadata_dynfps);
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500759 if (disable_metadata_dynfps) {
760 return;
761 }
762 use_metadata_refresh_rate_ = enable;
763}
764
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +0530765void HWCDisplayBuiltIn::SetQDCMSolidFillInfo(bool enable, const LayerSolidFill &color) {
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500766 solid_fill_enable_ = enable;
767 solid_fill_color_ = color;
768}
769
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +0530770void HWCDisplayBuiltIn::ToggleCPUHint(bool set) {
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500771 if (!cpu_hint_) {
772 return;
773 }
774
775 if (set) {
776 cpu_hint_->Set();
777 } else {
778 cpu_hint_->Reset();
779 }
780}
781
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +0530782int HWCDisplayBuiltIn::HandleSecureSession(const std::bitset<kSecureMax> &secure_sessions,
Ramkumar Radhakrishnana38b7602018-03-15 14:49:52 -0700783 bool *power_on_pending) {
784 if (!power_on_pending) {
785 return -EINVAL;
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500786 }
Ramkumar Radhakrishnana38b7602018-03-15 14:49:52 -0700787
Mathew Joseph Karimpanalb1c15862019-07-04 11:14:24 +0530788 if (!is_primary_) {
789 return HWCDisplay::HandleSecureSession(secure_sessions, power_on_pending);
790 }
791
Ramkumar Radhakrishnan44c64362018-12-12 13:03:59 -0800792 if (current_power_mode_ != HWC2::PowerMode::On) {
793 return 0;
794 }
795
Ramkumar Radhakrishnana38b7602018-03-15 14:49:52 -0700796 if (active_secure_sessions_[kSecureDisplay] != secure_sessions[kSecureDisplay]) {
797 SecureEvent secure_event =
798 secure_sessions.test(kSecureDisplay) ? kSecureDisplayStart : kSecureDisplayEnd;
Pullakavi Srinivas0a1dba62018-07-02 15:49:11 +0530799 DisplayError err = display_intf_->HandleSecureEvent(secure_event, &layer_stack_);
Ramkumar Radhakrishnana38b7602018-03-15 14:49:52 -0700800 if (err != kErrorNone) {
801 DLOGE("Set secure event failed");
802 return err;
803 }
804
Pullakavi Srinivasce3692b2020-02-13 01:14:09 +0530805 DLOGI("SecureDisplay state changed from %d to %d for display %" PRIu64 "-%d",
Ramkumar Radhakrishnana38b7602018-03-15 14:49:52 -0700806 active_secure_sessions_.test(kSecureDisplay), secure_sessions.test(kSecureDisplay),
Mathew Joseph Karimpanalb1c15862019-07-04 11:14:24 +0530807 id_, type_);
Ramkumar Radhakrishnana38b7602018-03-15 14:49:52 -0700808 }
809 active_secure_sessions_ = secure_sessions;
810 *power_on_pending = false;
811 return 0;
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500812}
813
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +0530814void HWCDisplayBuiltIn::ForceRefreshRate(uint32_t refresh_rate) {
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500815 if ((refresh_rate && (refresh_rate < min_refresh_rate_ || refresh_rate > max_refresh_rate_)) ||
816 force_refresh_rate_ == refresh_rate) {
817 // Cannot honor force refresh rate, as its beyond the range or new request is same
818 return;
819 }
820
821 force_refresh_rate_ = refresh_rate;
822
Ramkumar Radhakrishnan44c64362018-12-12 13:03:59 -0800823 callbacks_->Refresh(id_);
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500824
825 return;
826}
827
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +0530828uint32_t HWCDisplayBuiltIn::GetOptimalRefreshRate(bool one_updating_layer) {
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500829 if (force_refresh_rate_) {
830 return force_refresh_rate_;
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500831 } else if (use_metadata_refresh_rate_ && one_updating_layer && metadata_refresh_rate_) {
832 return metadata_refresh_rate_;
833 }
834
Pullakavi Srinivas7bdcc762020-03-06 12:41:36 +0530835 DLOGI("active_refresh_rate_: %d", active_refresh_rate_);
836 return active_refresh_rate_;
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500837}
838
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +0530839void HWCDisplayBuiltIn::SetIdleTimeoutMs(uint32_t timeout_ms) {
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500840 display_intf_->SetIdleTimeoutMs(timeout_ms);
Saurabh Shaha307e8c2017-09-28 18:05:40 -0700841 validated_ = false;
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500842}
843
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +0530844void HWCDisplayBuiltIn::HandleFrameOutput() {
Sushil Chauhan06521582018-03-19 14:00:23 -0700845 if (readback_buffer_queued_) {
846 validated_ = false;
847 }
848
Sushil Chauhan1d3b90c2018-12-11 16:52:35 -0800849 if (frame_capture_buffer_queued_) {
850 HandleFrameCapture();
851 } else if (dump_output_to_file_) {
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500852 HandleFrameDump();
853 }
854}
855
Sushil Chauhan1d3b90c2018-12-11 16:52:35 -0800856void HWCDisplayBuiltIn::HandleFrameCapture() {
Rajavenu Kyatham7338b9e2019-12-30 19:52:16 +0530857 if (readback_configured_ && output_buffer_.release_fence) {
858 frame_capture_status_ = Fence::Wait(output_buffer_.release_fence);
Sushil Chauhan1d3b90c2018-12-11 16:52:35 -0800859 }
860
861 frame_capture_buffer_queued_ = false;
862 readback_buffer_queued_ = false;
863 post_processed_output_ = false;
864 readback_configured_ = false;
865 output_buffer_ = {};
Dileep Marchyacb2a3a92019-06-21 17:30:50 +0530866 cwb_client_ = kCWBClientNone;
Sushil Chauhan1d3b90c2018-12-11 16:52:35 -0800867}
868
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +0530869void HWCDisplayBuiltIn::HandleFrameDump() {
Ramkumar Radhakrishnan68331fc2019-06-19 11:24:12 -0700870 if (dump_frame_count_) {
871 int ret = 0;
Rajavenu Kyatham7338b9e2019-12-30 19:52:16 +0530872 ret = Fence::Wait(output_buffer_.release_fence);
873 if (ret != kErrorNone) {
874 DLOGE("sync_wait error errno = %d, desc = %s", errno, strerror(errno));
Ramkumar Radhakrishnan68331fc2019-06-19 11:24:12 -0700875 }
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500876
Ramkumar Radhakrishnan68331fc2019-06-19 11:24:12 -0700877 if (!ret) {
Dileep Marchyaad668432019-12-02 10:44:52 +0530878 DumpOutputBuffer(output_buffer_info_, output_buffer_base_, layer_stack_.retire_fence);
879 validated_ = false;
880 }
Ramkumar Radhakrishnan68331fc2019-06-19 11:24:12 -0700881
882 if (0 == (dump_frame_count_ - 1)) {
883 dump_output_to_file_ = false;
884 // Unmap and Free buffer
885 if (munmap(output_buffer_base_, output_buffer_info_.alloc_buffer_info.size) != 0) {
886 DLOGE("unmap failed with err %d", errno);
887 }
888 if (buffer_allocator_->FreeBuffer(&output_buffer_info_) != 0) {
889 DLOGE("FreeBuffer failed");
890 }
891
Sushil Chauhan06521582018-03-19 14:00:23 -0700892 readback_buffer_queued_ = false;
Ramkumar Radhakrishnan68331fc2019-06-19 11:24:12 -0700893 post_processed_output_ = false;
894 readback_configured_ = false;
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500895
Ramkumar Radhakrishnan68331fc2019-06-19 11:24:12 -0700896 output_buffer_ = {};
897 output_buffer_info_ = {};
898 output_buffer_base_ = nullptr;
Dileep Marchyacb2a3a92019-06-21 17:30:50 +0530899 cwb_client_ = kCWBClientNone;
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500900 }
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500901 }
902}
903
Sushil Chauhan267a6192018-06-06 18:41:47 -0700904HWC2::Error HWCDisplayBuiltIn::SetFrameDumpConfig(uint32_t count, uint32_t bit_mask_layer_type,
905 int32_t format, bool post_processed) {
906 HWCDisplay::SetFrameDumpConfig(count, bit_mask_layer_type, format, post_processed);
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500907 dump_output_to_file_ = bit_mask_layer_type & (1 << OUTPUT_LAYER_DUMP);
908 DLOGI("output_layer_dump_enable %d", dump_output_to_file_);
909
Dileep Marchyacb2a3a92019-06-21 17:30:50 +0530910 if (dump_output_to_file_) {
911 if (cwb_client_ != kCWBClientNone) {
912 DLOGE("CWB is in use with client = %d", cwb_client_);
913 dump_output_to_file_ = false;
914 return HWC2::Error::NoResources;
915 }
916 }
917
Sushil Chauhand0dc03d2018-09-19 07:08:40 -0700918 if (!count || !dump_output_to_file_ || (output_buffer_info_.alloc_buffer_info.fd >= 0)) {
Mathew Joseph Karimpanaldbd64f82017-10-06 10:13:38 +0530919 return HWC2::Error::None;
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500920 }
921
922 // Allocate and map output buffer
Sushil Chauhan267a6192018-06-06 18:41:47 -0700923 if (post_processed) {
924 // To dump post-processed (DSPP) output, use Panel resolution.
925 GetPanelResolution(&output_buffer_info_.buffer_config.width,
926 &output_buffer_info_.buffer_config.height);
927 } else {
928 // To dump Layer Mixer output, use FrameBuffer resolution.
929 GetFrameBufferResolution(&output_buffer_info_.buffer_config.width,
930 &output_buffer_info_.buffer_config.height);
931 }
932
933 output_buffer_info_.buffer_config.format = HWCLayer::GetSDMFormat(format, 0);
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500934 output_buffer_info_.buffer_config.buffer_count = 1;
935 if (buffer_allocator_->AllocateBuffer(&output_buffer_info_) != 0) {
936 DLOGE("Buffer allocation failed");
937 output_buffer_info_ = {};
Mathew Joseph Karimpanaldbd64f82017-10-06 10:13:38 +0530938 return HWC2::Error::NoResources;
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500939 }
940
941 void *buffer = mmap(NULL, output_buffer_info_.alloc_buffer_info.size, PROT_READ | PROT_WRITE,
942 MAP_SHARED, output_buffer_info_.alloc_buffer_info.fd, 0);
943
944 if (buffer == MAP_FAILED) {
945 DLOGE("mmap failed with err %d", errno);
946 buffer_allocator_->FreeBuffer(&output_buffer_info_);
947 output_buffer_info_ = {};
Mathew Joseph Karimpanaldbd64f82017-10-06 10:13:38 +0530948 return HWC2::Error::NoResources;
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500949 }
950
951 output_buffer_base_ = buffer;
Sushil Chauhan06521582018-03-19 14:00:23 -0700952 const native_handle_t *handle = static_cast<native_handle_t *>(output_buffer_info_.private_data);
Rajavenu Kyatham7338b9e2019-12-30 19:52:16 +0530953 SetReadbackBuffer(handle, nullptr, post_processed, kCWBClientFrameDump);
Sushil Chauhan06521582018-03-19 14:00:23 -0700954
Mathew Joseph Karimpanaldbd64f82017-10-06 10:13:38 +0530955 return HWC2::Error::None;
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500956}
957
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +0530958int HWCDisplayBuiltIn::FrameCaptureAsync(const BufferInfo &output_buffer_info,
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500959 bool post_processed_output) {
Dileep Marchyacb2a3a92019-06-21 17:30:50 +0530960 if (cwb_client_ != kCWBClientNone) {
961 DLOGE("CWB is in use with client = %d", cwb_client_);
962 return -1;
963 }
964
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500965 // Note: This function is called in context of a binder thread and a lock is already held
966 if (output_buffer_info.alloc_buffer_info.fd < 0) {
967 DLOGE("Invalid fd %d", output_buffer_info.alloc_buffer_info.fd);
968 return -1;
969 }
970
971 auto panel_width = 0u;
972 auto panel_height = 0u;
973 auto fb_width = 0u;
974 auto fb_height = 0u;
975
976 GetPanelResolution(&panel_width, &panel_height);
977 GetFrameBufferResolution(&fb_width, &fb_height);
978
Ch Ganesh Kumar5c4988b2017-06-07 15:21:02 +0530979 if (post_processed_output && (output_buffer_info.buffer_config.width < panel_width ||
980 output_buffer_info.buffer_config.height < panel_height)) {
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500981 DLOGE("Buffer dimensions should not be less than panel resolution");
982 return -1;
Ch Ganesh Kumar5c4988b2017-06-07 15:21:02 +0530983 } else if (!post_processed_output && (output_buffer_info.buffer_config.width < fb_width ||
984 output_buffer_info.buffer_config.height < fb_height)) {
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500985 DLOGE("Buffer dimensions should not be less than FB resolution");
986 return -1;
987 }
988
Sushil Chauhan06521582018-03-19 14:00:23 -0700989 const native_handle_t *buffer = static_cast<native_handle_t *>(output_buffer_info.private_data);
Rajavenu Kyatham7338b9e2019-12-30 19:52:16 +0530990 SetReadbackBuffer(buffer, nullptr, post_processed_output, kCWBClientColor);
Sushil Chauhan1d3b90c2018-12-11 16:52:35 -0800991 frame_capture_buffer_queued_ = true;
992 frame_capture_status_ = -EAGAIN;
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500993
994 return 0;
995}
996
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +0530997DisplayError HWCDisplayBuiltIn::SetDetailEnhancerConfig
Alan Kwong2e136332016-08-16 07:50:16 -0400998 (const DisplayDetailEnhancerData &de_data) {
999 DisplayError error = kErrorNotSupported;
1000
1001 if (display_intf_) {
1002 error = display_intf_->SetDetailEnhancerData(de_data);
Saurabh Shaha307e8c2017-09-28 18:05:40 -07001003 validated_ = false;
Alan Kwong2e136332016-08-16 07:50:16 -04001004 }
1005 return error;
1006}
1007
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +05301008DisplayError HWCDisplayBuiltIn::ControlPartialUpdate(bool enable, uint32_t *pending) {
Arun Kumar K.R17bbd042016-06-07 17:38:02 -07001009 DisplayError error = kErrorNone;
1010
1011 if (display_intf_) {
1012 error = display_intf_->ControlPartialUpdate(enable, pending);
Saurabh Shaha307e8c2017-09-28 18:05:40 -07001013 validated_ = false;
Arun Kumar K.R17bbd042016-06-07 17:38:02 -07001014 }
1015
1016 return error;
1017}
1018
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +05301019DisplayError HWCDisplayBuiltIn::DisablePartialUpdateOneFrame() {
Arun Kumar K.R17bbd042016-06-07 17:38:02 -07001020 DisplayError error = kErrorNone;
1021
1022 if (display_intf_) {
1023 error = display_intf_->DisablePartialUpdateOneFrame();
Saurabh Shaha307e8c2017-09-28 18:05:40 -07001024 validated_ = false;
Arun Kumar K.R17bbd042016-06-07 17:38:02 -07001025 }
1026
1027 return error;
1028}
1029
Lakshmi Narayana Kalavala25fe12c2019-12-11 20:44:55 -08001030HWC2::Error HWCDisplayBuiltIn::SetDisplayedContentSamplingEnabledVndService(bool enabled) {
1031 std::unique_lock<decltype(sampling_mutex)> lk(sampling_mutex);
1032 vndservice_sampling_vote = enabled;
1033 if (api_sampling_vote || vndservice_sampling_vote) {
1034 histogram.start();
Lakshmi Narayana Kalavalaf30c2292019-09-26 15:26:24 -07001035 display_intf_->colorSamplingOn();
Lakshmi Narayana Kalavala25fe12c2019-12-11 20:44:55 -08001036 } else {
Lakshmi Narayana Kalavalaf30c2292019-09-26 15:26:24 -07001037 display_intf_->colorSamplingOff();
Lakshmi Narayana Kalavala25fe12c2019-12-11 20:44:55 -08001038 histogram.stop();
1039 }
1040 return HWC2::Error::None;
1041}
1042
1043HWC2::Error HWCDisplayBuiltIn::SetDisplayedContentSamplingEnabled(int32_t enabled,
1044 uint8_t component_mask,
1045 uint64_t max_frames) {
1046 if ((enabled != HWC2_DISPLAYED_CONTENT_SAMPLING_ENABLE) &&
1047 (enabled != HWC2_DISPLAYED_CONTENT_SAMPLING_DISABLE))
1048 return HWC2::Error::BadParameter;
1049
1050 std::unique_lock<decltype(sampling_mutex)> lk(sampling_mutex);
1051 if (enabled == HWC2_DISPLAYED_CONTENT_SAMPLING_ENABLE) {
1052 api_sampling_vote = true;
1053 } else {
1054 api_sampling_vote = false;
1055 }
1056
1057 auto start = api_sampling_vote || vndservice_sampling_vote;
1058 if (start && max_frames == 0) {
1059 histogram.start();
Lakshmi Narayana Kalavalaf30c2292019-09-26 15:26:24 -07001060 display_intf_->colorSamplingOn();
Lakshmi Narayana Kalavala25fe12c2019-12-11 20:44:55 -08001061 } else if (start) {
1062 histogram.start(max_frames);
Lakshmi Narayana Kalavalaf30c2292019-09-26 15:26:24 -07001063 display_intf_->colorSamplingOn();
Lakshmi Narayana Kalavala25fe12c2019-12-11 20:44:55 -08001064 } else {
Lakshmi Narayana Kalavalaf30c2292019-09-26 15:26:24 -07001065 display_intf_->colorSamplingOff();
Lakshmi Narayana Kalavala25fe12c2019-12-11 20:44:55 -08001066 histogram.stop();
1067 }
1068 return HWC2::Error::None;
1069}
1070
1071HWC2::Error HWCDisplayBuiltIn::GetDisplayedContentSamplingAttributes(
1072 int32_t *format, int32_t *dataspace, uint8_t *supported_components) {
1073 return histogram.getAttributes(format, dataspace, supported_components);
1074}
1075
1076HWC2::Error HWCDisplayBuiltIn::GetDisplayedContentSample(
1077 uint64_t max_frames, uint64_t timestamp, uint64_t *numFrames,
1078 int32_t samples_size[NUM_HISTOGRAM_COLOR_COMPONENTS],
1079 uint64_t *samples[NUM_HISTOGRAM_COLOR_COMPONENTS]) {
1080 histogram.collect(max_frames, timestamp, samples_size, samples, numFrames);
1081 return HWC2::Error::None;
1082}
Arun Kumar K.R17bbd042016-06-07 17:38:02 -07001083
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +05301084DisplayError HWCDisplayBuiltIn::SetMixerResolution(uint32_t width, uint32_t height) {
Sushil Chauhan409e8442017-06-12 17:43:25 -07001085 DisplayError error = display_intf_->SetMixerResolution(width, height);
Ramkumar Radhakrishnanf7f52162019-06-06 19:40:04 -07001086 callbacks_->Refresh(id_);
Saurabh Shaha307e8c2017-09-28 18:05:40 -07001087 validated_ = false;
Sushil Chauhan409e8442017-06-12 17:43:25 -07001088 return error;
Arun Kumar K.R8da7f502016-06-07 17:45:50 -07001089}
1090
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +05301091DisplayError HWCDisplayBuiltIn::GetMixerResolution(uint32_t *width, uint32_t *height) {
Arun Kumar K.R8da7f502016-06-07 17:45:50 -07001092 return display_intf_->GetMixerResolution(width, height);
1093}
1094
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +05301095HWC2::Error HWCDisplayBuiltIn::SetQSyncMode(QSyncMode qsync_mode) {
Pullakavi Srinivas24574142019-08-14 12:18:12 +05301096 // Client needs to ensure that config change and qsync mode change
1097 // are not triggered in the same drawcycle.
1098 if (pending_config_) {
1099 DLOGE("Failed to set qsync mode. Pending active config transition");
1100 return HWC2::Error::Unsupported;
1101 }
1102
Sushil Chauhan380a59d2018-03-19 15:47:50 -07001103 auto err = display_intf_->SetQSyncMode(qsync_mode);
1104 if (err != kErrorNone) {
1105 return HWC2::Error::Unsupported;
1106 }
1107
Sushil Chauhanec4eb572019-02-07 13:29:42 -08001108 validated_ = false;
Sushil Chauhan380a59d2018-03-19 15:47:50 -07001109 return HWC2::Error::None;
1110}
1111
Ramkumar Radhakrishnan4faf8a62018-11-15 17:15:37 -08001112DisplayError HWCDisplayBuiltIn::ControlIdlePowerCollapse(bool enable, bool synchronous) {
Ramkumar Radhakrishnanf985d482018-07-23 18:10:41 -07001113 DisplayError error = kErrorNone;
1114
1115 if (display_intf_) {
1116 error = display_intf_->ControlIdlePowerCollapse(enable, synchronous);
1117 validated_ = false;
1118 }
Ramkumar Radhakrishnan4faf8a62018-11-15 17:15:37 -08001119 return error;
Ramkumar Radhakrishnanf985d482018-07-23 18:10:41 -07001120}
1121
Pullakavi Srinivas9189e602018-12-19 16:58:07 +05301122DisplayError HWCDisplayBuiltIn::SetDynamicDSIClock(uint64_t bitclk) {
Dileep Marchyaafa45bc2019-06-21 17:05:31 +05301123 DisablePartialUpdateOneFrame();
1124 DisplayError error = display_intf_->SetDynamicDSIClock(bitclk);
1125 if (error != kErrorNone) {
Pullakavi Srinivasce3692b2020-02-13 01:14:09 +05301126 DLOGE(" failed: Clk: %" PRIu64 " Error: %d", bitclk, error);
Dileep Marchyaafa45bc2019-06-21 17:05:31 +05301127 return error;
Pullakavi Srinivas9189e602018-12-19 16:58:07 +05301128 }
1129
1130 callbacks_->Refresh(id_);
1131 validated_ = false;
1132
1133 return kErrorNone;
1134}
1135
1136DisplayError HWCDisplayBuiltIn::GetDynamicDSIClock(uint64_t *bitclk) {
Pullakavi Srinivas9189e602018-12-19 16:58:07 +05301137 if (display_intf_) {
1138 return display_intf_->GetDynamicDSIClock(bitclk);
1139 }
1140
1141 return kErrorNotSupported;
1142}
1143
1144DisplayError HWCDisplayBuiltIn::GetSupportedDSIClock(std::vector<uint64_t> *bitclk_rates) {
1145 if (display_intf_) {
1146 return display_intf_->GetSupportedDSIClock(bitclk_rates);
1147 }
1148
1149 return kErrorNotSupported;
1150}
1151
Padmanabhan Komandurue74cf4f2019-04-25 17:38:43 -07001152HWC2::Error HWCDisplayBuiltIn::UpdateDisplayId(hwc2_display_t id) {
1153 id_ = id;
1154 return HWC2::Error::None;
1155}
1156
1157HWC2::Error HWCDisplayBuiltIn::SetPendingRefresh() {
1158 pending_refresh_ = true;
1159 return HWC2::Error::None;
1160}
1161
Varun Arora75c05f02019-05-14 14:53:37 -07001162HWC2::Error HWCDisplayBuiltIn::SetPanelBrightness(float brightness) {
1163 DisplayError ret = display_intf_->SetPanelBrightness(brightness);
1164 if (ret != kErrorNone) {
1165 return HWC2::Error::NoResources;
1166 }
1167
1168 return HWC2::Error::None;
1169}
1170
1171HWC2::Error HWCDisplayBuiltIn::GetPanelBrightness(float *brightness) {
1172 DisplayError ret = display_intf_->GetPanelBrightness(brightness);
1173 if (ret != kErrorNone) {
1174 return HWC2::Error::NoResources;
1175 }
1176
1177 return HWC2::Error::None;
1178}
Xu Yang45d0abf2019-07-05 11:34:06 +08001179
Yuchao Maada1c402019-11-12 14:47:11 +08001180HWC2::Error HWCDisplayBuiltIn::GetPanelMaxBrightness(uint32_t *max_brightness_level) {
1181 DisplayError ret = display_intf_->GetPanelMaxBrightness(max_brightness_level);
1182 if (ret != kErrorNone) {
1183 return HWC2::Error::NoResources;
1184 }
1185
1186 return HWC2::Error::None;
1187}
1188
Xu Yang45d0abf2019-07-05 11:34:06 +08001189HWC2::Error HWCDisplayBuiltIn::SetBLScale(uint32_t level) {
1190 DisplayError ret = display_intf_->SetBLScale(level);
1191 if (ret != kErrorNone) {
1192 return HWC2::Error::NoResources;
1193 }
Srinivas Pullakavi3c4337f2019-07-03 11:24:31 +05301194 return HWC2::Error::None;
1195}
Xu Yang45d0abf2019-07-05 11:34:06 +08001196
Srinivas Pullakavi3c4337f2019-07-03 11:24:31 +05301197HWC2::Error HWCDisplayBuiltIn::UpdatePowerMode(HWC2::PowerMode mode) {
1198 current_power_mode_ = mode;
1199 validated_ = false;
Xu Yang45d0abf2019-07-05 11:34:06 +08001200 return HWC2::Error::None;
1201}
1202
Rajavenu Kyatham7338b9e2019-12-30 19:52:16 +05301203HWC2::Error HWCDisplayBuiltIn::SetClientTarget(buffer_handle_t target,
1204 shared_ptr<Fence> acquire_fence,
Padmanabhan Komanduru9a91e9f2019-09-12 12:33:19 +05301205 int32_t dataspace, hwc_region_t damage) {
1206 HWC2::Error error = HWCDisplay::SetClientTarget(target, acquire_fence, dataspace, damage);
1207 if (error != HWC2::Error::None) {
1208 return error;
1209 }
1210
Pullakavi Srinivasd32b4922020-02-10 10:08:31 +05301211 // windowed_display and dynamic scaling are not supported.
1212 if (windowed_display_) {
1213 return HWC2::Error::None;
1214 }
1215
Padmanabhan Komanduru9a91e9f2019-09-12 12:33:19 +05301216 Layer *sdm_layer = client_target_->GetSDMLayer();
Padmanabhan Komandurua4bf6062019-10-13 09:04:49 +05301217 uint32_t fb_width = 0, fb_height = 0;
1218
1219 GetFrameBufferResolution(&fb_width, &fb_height);
1220
1221 if (fb_width != sdm_layer->input_buffer.unaligned_width ||
1222 fb_height != sdm_layer->input_buffer.unaligned_height) {
1223 if (SetFrameBufferConfig(sdm_layer->input_buffer.unaligned_width,
1224 sdm_layer->input_buffer.unaligned_height)) {
1225 return HWC2::Error::BadParameter;
1226 }
1227 }
Padmanabhan Komanduru9a91e9f2019-09-12 12:33:19 +05301228
1229 return HWC2::Error::None;
1230}
Sushil Chauhan1566a132019-10-02 11:59:28 -07001231
1232bool HWCDisplayBuiltIn::IsSmartPanelConfig(uint32_t config_id) {
1233 if (config_id < hwc_config_map_.size()) {
1234 uint32_t index = hwc_config_map_.at(config_id);
1235 return variable_config_map_.at(index).smart_panel;
1236 }
1237
1238 return false;
1239}
1240
Pullakavi Srinivas1ae4acb2019-11-18 19:33:45 +05301241int HWCDisplayBuiltIn::Deinit() {
1242 // Destory color convert instance. This destroys thread and underlying GL resources.
1243 if (gl_layer_stitch_) {
1244 layer_stitch_task_.PerformTask(LayerStitchTaskCode::kCodeDestroyInstance, nullptr);
1245 }
1246
Lakshmi Narayana Kalavala25fe12c2019-12-11 20:44:55 -08001247 histogram.stop();
Pullakavi Srinivas1ae4acb2019-11-18 19:33:45 +05301248 return HWCDisplay::Deinit();
1249}
1250
1251void HWCDisplayBuiltIn::OnTask(const LayerStitchTaskCode &task_code,
1252 SyncTask<LayerStitchTaskCode>::TaskContext *task_context) {
1253 switch (task_code) {
1254 case LayerStitchTaskCode::kCodeGetInstance: {
1255 gl_layer_stitch_ = GLLayerStitch::GetInstance(false /* Non-secure */);
1256 }
1257 break;
1258 case LayerStitchTaskCode::kCodeStitch: {
1259 DTRACE_SCOPED();
Pullakavi Srinivasdb2b84a2019-11-21 14:47:35 +05301260 LayerStitchContext* ctx = reinterpret_cast<LayerStitchContext*>(task_context);
Pullakavi Srinivas1ae4acb2019-11-18 19:33:45 +05301261 gl_layer_stitch_->Blit(ctx->src_hnd, ctx->dst_hnd, ctx->src_rect, ctx->dst_rect,
Pullakavi Srinivasf25bc4a2020-02-27 12:07:39 +05301262 ctx->scissor_rect, ctx->src_acquire_fence,
1263 ctx->dst_acquire_fence, &(ctx->release_fence));
Pullakavi Srinivas1ae4acb2019-11-18 19:33:45 +05301264 }
1265 break;
1266 case LayerStitchTaskCode::kCodeDestroyInstance: {
1267 if (gl_layer_stitch_) {
1268 GLLayerStitch::Destroy(gl_layer_stitch_);
1269 }
1270 }
1271 break;
1272 }
1273}
1274
1275bool HWCDisplayBuiltIn::InitLayerStitch() {
1276 if (!is_primary_) {
1277 // Disable on all non-primary builtins.
1278 DLOGI("Non-primary builtin.");
Pullakavi Srinivas94793b42019-11-27 20:03:50 +05301279 disable_layer_stitch_ = true;
Pullakavi Srinivas1ae4acb2019-11-18 19:33:45 +05301280 return true;
1281 }
1282
1283 // Disable by default.
1284 int value = 1;
1285 Debug::Get()->GetProperty(DISABLE_LAYER_STITCH, &value);
1286 disable_layer_stitch_ = (value == 1);
1287
1288 if (disable_layer_stitch_) {
1289 DLOGI("Layer Stitch Disabled !!!");
1290 return true;
1291 }
1292
1293 // Initialize stitch context. This will be non-secure.
1294 layer_stitch_task_.PerformTask(LayerStitchTaskCode::kCodeGetInstance, nullptr);
1295 if (gl_layer_stitch_ == nullptr) {
1296 DLOGE("Failed to get LayerStitch Instance");
1297 return false;
1298 }
1299
1300 if (!AllocateStitchBuffer()) {
1301 return true;
1302 }
1303
1304 stitch_target_ = new HWCLayer(id_, static_cast<HWCBufferAllocator *>(buffer_allocator_));
1305
1306 // Populate buffer params and pvt handle.
1307 InitStitchTarget();
1308
1309 DLOGI("Created LayerStitch instance: %p", gl_layer_stitch_);
1310
1311 return true;
1312}
1313
1314bool HWCDisplayBuiltIn::AllocateStitchBuffer() {
1315 // Buffer dimensions: FB width * (1.5 * height)
1316
1317 DisplayError error = display_intf_->GetFrameBufferConfig(&fb_config_);
1318 if (error != kErrorNone) {
1319 DLOGE("Get frame buffer config failed. Error = %d", error);
1320 return false;
1321 }
1322
1323 BufferConfig &config = buffer_info_.buffer_config;
1324 config.width = fb_config_.x_pixels;
1325 config.height = fb_config_.y_pixels * kBufferHeightFactor;
1326
1327 // By default UBWC is enabled and below property is global enable/disable for all
1328 // buffers allocated through gralloc , including framebuffer targets.
1329 int ubwc_disabled = 0;
1330 HWCDebugHandler::Get()->GetProperty(DISABLE_UBWC_PROP, &ubwc_disabled);
1331 config.format = ubwc_disabled ? kFormatRGBA8888 : kFormatRGBA8888Ubwc;
1332
1333 config.gfx_client = true;
1334
1335 // Populate default params.
1336 config.secure = false;
1337 config.cache = false;
1338 config.secure_camera = false;
1339
1340 error = buffer_allocator_->AllocateBuffer(&buffer_info_);
1341
1342 if (error != kErrorNone) {
1343 DLOGE("Failed to allocate buffer. Error: %d", error);
1344 return false;
1345 }
1346
1347 return true;
1348}
1349
1350void HWCDisplayBuiltIn::InitStitchTarget() {
1351 LayerBuffer buffer = {};
1352 buffer.planes[0].fd = buffer_info_.alloc_buffer_info.fd;
1353 buffer.planes[0].offset = 0;
1354 buffer.planes[0].stride = buffer_info_.alloc_buffer_info.stride;
1355 buffer.size = buffer_info_.alloc_buffer_info.size;
1356 buffer.handle_id = buffer_info_.alloc_buffer_info.id;
1357 buffer.width = buffer_info_.alloc_buffer_info.aligned_width;
1358 buffer.height = buffer_info_.alloc_buffer_info.aligned_height;
1359 buffer.unaligned_width = fb_config_.x_pixels;
Pullakavi Srinivasdb2b84a2019-11-21 14:47:35 +05301360 buffer.unaligned_height = fb_config_.y_pixels * kBufferHeightFactor;
Pullakavi Srinivas1ae4acb2019-11-18 19:33:45 +05301361 buffer.format = buffer_info_.alloc_buffer_info.format;
1362
1363 Layer *sdm_stitch_target = stitch_target_->GetSDMLayer();
1364 sdm_stitch_target->composition = kCompositionStitchTarget;
1365 sdm_stitch_target->input_buffer = buffer;
1366 sdm_stitch_target->input_buffer.buffer_id = reinterpret_cast<uint64_t>(buffer_info_.private_data);
1367}
1368
1369void HWCDisplayBuiltIn::AppendStitchLayer() {
1370 if (disable_layer_stitch_) {
1371 return;
1372 }
1373
1374 // Append stitch target buffer to layer stack.
1375 Layer *sdm_stitch_target = stitch_target_->GetSDMLayer();
1376 sdm_stitch_target->composition = kCompositionStitchTarget;
Pullakavi Srinivasdb2b84a2019-11-21 14:47:35 +05301377 sdm_stitch_target->dst_rect = {0, 0, FLOAT(fb_config_.x_pixels), FLOAT(fb_config_.y_pixels)};
Pullakavi Srinivas1ae4acb2019-11-18 19:33:45 +05301378 layer_stack_.layers.push_back(sdm_stitch_target);
1379}
1380
Lakshmi Narayana Kalavalae0127eb2019-12-03 11:07:26 -08001381DisplayError HWCDisplayBuiltIn::HistogramEvent(int fd, uint32_t blob_id) {
1382 histogram.notify_histogram_event(fd, blob_id);
1383 return kErrorNone;
1384}
Pullakavi Srinivasdb2b84a2019-11-21 14:47:35 +05301385
1386int HWCDisplayBuiltIn::PostInit() {
1387 auto status = InitLayerStitch();
1388 if (!status) {
1389 DLOGW("Failed to initialize Layer Stitch context");
1390 // Disable layer stitch.
1391 disable_layer_stitch_ = true;
1392 }
1393
1394 return 0;
1395}
1396
Venkat Thogaru8e9b1242020-03-30 19:25:24 +05301397bool HWCDisplayBuiltIn::HasReadBackBufferSupport() {
1398 DisplayConfigFixedInfo fixed_info = {};
1399 display_intf_->GetConfig(&fixed_info);
1400
1401 return fixed_info.readback_supported;
1402}
1403
Naseer Ahmedb92e73f2016-03-12 02:03:48 -05001404} // namespace sdm