blob: 45d9db89f8d67aa285e861dd09e438603c06ac04 [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 }
Naseer Ahmed61f60952017-05-24 16:48:35 -0400157 return status;
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500158}
159
Dileep Marchya58928122020-01-28 12:16:51 +0530160void HWCDisplayBuiltIn::Dump(std::ostringstream *os) {
161 HWCDisplay::Dump(os);
162 *os << histogram.Dump();
Lakshmi Narayana Kalavala25fe12c2019-12-11 20:44:55 -0800163}
164
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +0530165HWC2::Error HWCDisplayBuiltIn::Validate(uint32_t *out_num_types, uint32_t *out_num_requests) {
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500166 auto status = HWC2::Error::None;
167 DisplayError error = kErrorNone;
168
Gurpreet Singh Dhamia4276882019-04-12 10:30:58 -0700169 DTRACE_SCOPED();
170
Mathew Joseph Karimpanalb1c15862019-07-04 11:14:24 +0530171 if (display_paused_ || (!is_primary_ && active_secure_sessions_[kSecureDisplay])) {
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500172 MarkLayersForGPUBypass();
173 return status;
174 }
175
Arun Kumar K.R29cd6582016-05-10 19:12:45 -0700176 if (color_tranform_failed_) {
177 // Must fall back to client composition
178 MarkLayersForClientComposition();
179 }
180
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500181 // Fill in the remaining blanks in the layers and add them to the SDM layerstack
182 BuildLayerStack();
Pullakavi Srinivas1ae4acb2019-11-18 19:33:45 +0530183
184 // Add stitch layer to layer stack.
185 AppendStitchLayer();
186
Arun Kumar K.R536c7d62016-06-14 18:47:39 -0700187 // Checks and replaces layer stack for solid fill
188 SolidFillPrepare();
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500189
Sushil Chauhan8008d602018-09-04 14:43:27 -0700190 // Apply current Color Mode and Render Intent.
Xu Yang84e61412018-12-06 14:52:16 +0800191 if (color_mode_->ApplyCurrentColorModeWithRenderIntent(
192 static_cast<bool>(layer_stack_.flags.hdr_present)) != HWC2::Error::None) {
Sushil Chauhan8008d602018-09-04 14:43:27 -0700193 // Fallback to GPU Composition, if Color Mode can't be applied.
194 MarkLayersForClientComposition();
195 }
196
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500197 bool pending_output_dump = dump_frame_count_ && dump_output_to_file_;
198
Sushil Chauhan06521582018-03-19 14:00:23 -0700199 if (readback_buffer_queued_ || pending_output_dump) {
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500200 // RHS values were set in FrameCaptureAsync() called from a binder thread. They are picked up
Sushil Chauhan06521582018-03-19 14:00:23 -0700201 // here in a subsequent draw round. Readback is not allowed for any secure use case.
202 readback_configured_ = !layer_stack_.flags.secure_present;
203 if (readback_configured_) {
Sushil Chauhanf42d8622018-09-30 23:20:37 -0700204 DisablePartialUpdateOneFrame();
Sushil Chauhan06521582018-03-19 14:00:23 -0700205 layer_stack_.output_buffer = &output_buffer_;
206 layer_stack_.flags.post_processed_output = post_processed_output_;
207 }
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500208 }
209
Ramakant Singh5db0dfb2017-08-23 12:34:57 +0530210 uint32_t num_updating_layers = GetUpdatingLayersCount();
211 bool one_updating_layer = (num_updating_layers == 1);
212 if (num_updating_layers != 0) {
213 ToggleCPUHint(one_updating_layer);
214 }
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500215
216 uint32_t refresh_rate = GetOptimalRefreshRate(one_updating_layer);
Pullakavi Srinivas4619db92019-04-20 15:07:59 +0530217 error = display_intf_->SetRefreshRate(refresh_rate, force_refresh_rate_);
218
219 // Get the refresh rate set.
220 display_intf_->GetRefreshRate(&refresh_rate);
221 bool vsync_source = (callbacks_->GetVsyncSource() == id_);
222
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500223 if (error == kErrorNone) {
Pullakavi Srinivas4619db92019-04-20 15:07:59 +0530224 if (vsync_source && (current_refresh_rate_ < refresh_rate)) {
225 DTRACE_BEGIN("HWC2::Vsync::Enable");
226 // Display is ramping up from idle.
227 // Client realizes need for resync upon change in config.
228 // Since we know config has changed, triggering vsync proactively
229 // can help in reducing pipeline delays to enable events.
230 SetVsyncEnabled(HWC2::Vsync::Enable);
231 DTRACE_END();
232 }
233 // On success, set current refresh rate to new refresh rate.
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500234 current_refresh_rate_ = refresh_rate;
235 }
236
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500237 if (layer_set_.empty()) {
Uday Kiran Pichika8d827732018-01-09 18:08:38 +0530238 // Avoid flush for Command mode panel.
Pullakavi Srinivas2d55f3a2019-07-16 14:49:06 +0530239 flush_ = !client_connected_;
Ramkumar Radhakrishnana38b7602018-03-15 14:49:52 -0700240 validated_ = true;
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500241 return status;
242 }
243
244 status = PrepareLayerStack(out_num_types, out_num_requests);
Namit Solanki5b428dc2018-02-27 11:39:05 +0530245 pending_commit_ = true;
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500246 return status;
247}
248
Padmanabhan Komandurue74cf4f2019-04-25 17:38:43 -0700249HWC2::Error HWCDisplayBuiltIn::CommitLayerStack() {
250 skip_commit_ = CanSkipCommit();
251 return HWCDisplay::CommitLayerStack();
252}
253
254bool HWCDisplayBuiltIn::CanSkipCommit() {
255 if (layer_stack_invalid_) {
256 return false;
257 }
258
259 // Reject repeated drawcycle requests if it satisfies all conditions.
260 // 1. None of the layerstack attributes changed.
261 // 2. No new buffer latched.
262 // 3. No refresh request triggered by HWC.
263 // 4. This display is not source of vsync.
264 bool buffers_latched = false;
265 for (auto &hwc_layer : layer_set_) {
266 buffers_latched |= hwc_layer->BufferLatched();
267 hwc_layer->ResetBufferFlip();
268 }
269
Padmanabhan Komanduruf5e6c5d2019-04-04 13:56:31 +0530270 bool vsync_source = (callbacks_->GetVsyncSource() == id_);
Padmanabhan Komanduru866bf6a2019-03-19 14:30:48 +0530271 bool skip_commit = enable_optimize_refresh_ && !pending_commit_ && !buffers_latched &&
Padmanabhan Komanduruf5e6c5d2019-04-04 13:56:31 +0530272 !pending_refresh_ && !vsync_source;
Padmanabhan Komandurue74cf4f2019-04-25 17:38:43 -0700273 pending_refresh_ = false;
274
275 return skip_commit;
276}
277
Pullakavi Srinivas1ae4acb2019-11-18 19:33:45 +0530278HWC2::Error HWCDisplayBuiltIn::CommitStitchLayers() {
Pullakavi Srinivasdb2b84a2019-11-21 14:47:35 +0530279 if (disable_layer_stitch_) {
Pullakavi Srinivas1ae4acb2019-11-18 19:33:45 +0530280 return HWC2::Error::None;
281 }
282
Pullakavi Srinivasdb2b84a2019-11-21 14:47:35 +0530283 if (!validated_ || skip_commit_) {
Pullakavi Srinivas1ae4acb2019-11-18 19:33:45 +0530284 return HWC2::Error::None;
285 }
286
287 for (auto &layer : layer_stack_.layers) {
288 LayerComposition &composition = layer->composition;
289 if (composition != kCompositionStitch) {
290 continue;
291 }
292
Pullakavi Srinivasdb2b84a2019-11-21 14:47:35 +0530293 LayerStitchContext ctx = {};
Pullakavi Srinivas1ae4acb2019-11-18 19:33:45 +0530294 // Stitch target doesn't have an input fence.
295 // Render all layers at specified destination.
296 LayerBuffer &input_buffer = layer->input_buffer;
297 ctx.src_hnd = reinterpret_cast<const private_handle_t *>(input_buffer.buffer_id);
298 Layer *stitch_layer = stitch_target_->GetSDMLayer();
299 LayerBuffer &output_buffer = stitch_layer->input_buffer;
300 ctx.dst_hnd = reinterpret_cast<const private_handle_t *>(output_buffer.buffer_id);
Pullakavi Srinivasf25bc4a2020-02-27 12:07:39 +0530301 SetRect(layer->stitch_info.dst_rect, &ctx.dst_rect);
302 SetRect(layer->stitch_info.slice_rect, &ctx.scissor_rect);
Rajavenu Kyatham7338b9e2019-12-30 19:52:16 +0530303 ctx.src_acquire_fence = input_buffer.acquire_fence;
Pullakavi Srinivas1ae4acb2019-11-18 19:33:45 +0530304
305 layer_stitch_task_.PerformTask(LayerStitchTaskCode::kCodeStitch, &ctx);
306
Rajavenu Kyatham7338b9e2019-12-30 19:52:16 +0530307 // Merge with current fence.
308 output_buffer.acquire_fence = Fence::Merge(output_buffer.acquire_fence, ctx.release_fence);
Pullakavi Srinivas1ae4acb2019-11-18 19:33:45 +0530309 }
310
311 return HWC2::Error::None;
312}
313
Padmanabhan Komanduru6693fcb2019-11-22 21:06:52 +0530314void HWCDisplayBuiltIn::CacheAvrStatus() {
315 QSyncMode qsync_mode = kQSyncModeNone;
316
317 DisplayError error = display_intf_->GetQSyncMode(&qsync_mode);
318 if (error != kErrorNone) {
319 return;
320 }
321
322 bool qsync_enabled = (qsync_mode != kQSyncModeNone);
323 if (qsync_enabled_ != qsync_enabled) {
324 qsync_reconfigured_ = true;
325 qsync_enabled_ = qsync_enabled;
326 } else {
327 qsync_reconfigured_ = false;
328 }
329}
330
331bool HWCDisplayBuiltIn::IsQsyncCallbackNeeded(bool *qsync_enabled, int32_t *refresh_rate,
332 int32_t *qsync_refresh_rate) {
333 if (!qsync_reconfigured_) {
334 return false;
335 }
336
337 bool vsync_source = (callbacks_->GetVsyncSource() == id_);
338 // Qsync callback not needed if this display is not the source of vsync
339 if (!vsync_source) {
340 return false;
341 }
342
343 *qsync_enabled = qsync_enabled_;
344 uint32_t current_rate = 0;
345 display_intf_->GetRefreshRate(&current_rate);
346 *refresh_rate = INT32(current_rate);
347 *qsync_refresh_rate = min_refresh_rate_;
348
349 return true;
350}
351
Padmanabhan Komandurub5ff0fb2020-02-12 18:08:04 +0530352int HWCDisplayBuiltIn::GetBwCode(const DisplayConfigVariableInfo &attr) {
353 uint32_t min_refresh_rate = 0, max_refresh_rate = 0;
354 display_intf_->GetRefreshRateRange(&min_refresh_rate, &max_refresh_rate);
355 uint32_t fps = attr.smart_panel ? attr.fps : max_refresh_rate;
356
357 if (fps <= 60) {
358 return kBwLow;
359 } else if (fps <= 90) {
360 return kBwMedium;
361 } else {
362 return kBwHigh;
363 }
364}
365
366void HWCDisplayBuiltIn::SetBwLimitHint(bool enable) {
367 if (!enable_bw_limits_) {
368 return;
369 }
370
371 if (!enable) {
372 thermal_bandwidth_client_cancel_request(const_cast<char*>(kDisplayBwName));
373 curr_refresh_rate_ = 0;
374 return;
375 }
376
377 uint32_t config_index = 0;
378 DisplayConfigVariableInfo attr = {};
379 GetActiveDisplayConfig(&config_index);
380 GetDisplayAttributesForConfig(INT(config_index), &attr);
381 if (attr.fps != curr_refresh_rate_ || attr.smart_panel != is_smart_panel_) {
382 int bw_code = GetBwCode(attr);
383 int req_data = thermal_bandwidth_client_merge_input_info(bw_code, 0);
384 int error = thermal_bandwidth_client_request(const_cast<char*>(kDisplayBwName), req_data);
385 if (error) {
386 DLOGE("Thermal bandwidth request failed %d", error);
387 }
388 curr_refresh_rate_ = attr.fps;
389 is_smart_panel_ = attr.smart_panel;
390 }
391}
392
393HWC2::Error HWCDisplayBuiltIn::SetPowerMode(HWC2::PowerMode mode, bool teardown) {
394 auto status = HWCDisplay::SetPowerMode(mode, teardown);
395 if (status != HWC2::Error::None) {
396 return status;
397 }
398
399 if (mode == HWC2::PowerMode::Off) {
400 SetBwLimitHint(false);
401 }
402
403 return HWC2::Error::None;
404}
405
Dileep Marchyaad668432019-12-02 10:44:52 +0530406HWC2::Error HWCDisplayBuiltIn::Present(shared_ptr<Fence> *out_retire_fence) {
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500407 auto status = HWC2::Error::None;
Gurpreet Singh Dhamia4276882019-04-12 10:30:58 -0700408
409 DTRACE_SCOPED();
Mathew Joseph Karimpanalb1c15862019-07-04 11:14:24 +0530410
411 if (!is_primary_ && active_secure_sessions_[kSecureDisplay]) {
Pullakavi Srinivas1ae4acb2019-11-18 19:33:45 +0530412 return status;
Mathew Joseph Karimpanalb1c15862019-07-04 11:14:24 +0530413 } else if (display_paused_) {
Pullakavi Srinivas0a1dba62018-07-02 15:49:11 +0530414 DisplayError error = display_intf_->Flush(&layer_stack_);
Saurabh Shaha307e8c2017-09-28 18:05:40 -0700415 validated_ = false;
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500416 if (error != kErrorNone) {
417 DLOGE("Flush failed. Error = %d", error);
418 }
419 } else {
Padmanabhan Komanduru6693fcb2019-11-22 21:06:52 +0530420 CacheAvrStatus();
421
Pullakavi Srinivas1ae4acb2019-11-18 19:33:45 +0530422 status = CommitStitchLayers();
423 if (status != HWC2::Error::None) {
424 DLOGE("Stitch failed: %d", status);
425 return status;
426 }
427
Padmanabhan Komandurue74cf4f2019-04-25 17:38:43 -0700428 status = CommitLayerStack();
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500429 if (status == HWC2::Error::None) {
430 HandleFrameOutput();
Pullakavi Srinivasdb2b84a2019-11-21 14:47:35 +0530431 PostCommitStitchLayers();
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500432 status = HWCDisplay::PostCommitLayerStack(out_retire_fence);
Padmanabhan Komandurub5ff0fb2020-02-12 18:08:04 +0530433 SetBwLimitHint(true);
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500434 }
435 }
Arun Kumar K.R536c7d62016-06-14 18:47:39 -0700436
Namit Solanki5b428dc2018-02-27 11:39:05 +0530437 pending_commit_ = false;
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500438 return status;
439}
440
Pullakavi Srinivasdb2b84a2019-11-21 14:47:35 +0530441void HWCDisplayBuiltIn::PostCommitStitchLayers() {
442 if (disable_layer_stitch_) {
443 return;
444 }
445
446 // Close Stitch buffer acquire fence.
447 Layer *stitch_layer = stitch_target_->GetSDMLayer();
448 LayerBuffer &output_buffer = stitch_layer->input_buffer;
449 for (auto &layer : layer_stack_.layers) {
450 LayerComposition &composition = layer->composition;
451 if (composition != kCompositionStitch) {
452 continue;
453 }
454 LayerBuffer &input_buffer = layer->input_buffer;
Rajavenu Kyatham7338b9e2019-12-30 19:52:16 +0530455 input_buffer.release_fence = output_buffer.acquire_fence;
Pullakavi Srinivasdb2b84a2019-11-21 14:47:35 +0530456 }
Pullakavi Srinivasdb2b84a2019-11-21 14:47:35 +0530457}
458
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +0530459HWC2::Error HWCDisplayBuiltIn::GetColorModes(uint32_t *out_num_modes, ColorMode *out_modes) {
Arun Kumar K.R29cd6582016-05-10 19:12:45 -0700460 if (out_modes == nullptr) {
461 *out_num_modes = color_mode_->GetColorModeCount();
462 } else {
463 color_mode_->GetColorModes(out_num_modes, out_modes);
464 }
465
466 return HWC2::Error::None;
467}
468
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +0530469HWC2::Error HWCDisplayBuiltIn::GetRenderIntents(ColorMode mode, uint32_t *out_num_intents,
Naseer Ahmede7a77982018-06-04 10:56:04 -0400470 RenderIntent *out_intents) {
471 if (out_intents == nullptr) {
472 *out_num_intents = color_mode_->GetRenderIntentCount(mode);
473 } else {
474 color_mode_->GetRenderIntents(mode, out_num_intents, out_intents);
475 }
476 return HWC2::Error::None;
477}
478
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +0530479HWC2::Error HWCDisplayBuiltIn::SetColorMode(ColorMode mode) {
Naseer Ahmede7a77982018-06-04 10:56:04 -0400480 return SetColorModeWithRenderIntent(mode, RenderIntent::COLORIMETRIC);
481}
482
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +0530483HWC2::Error HWCDisplayBuiltIn::SetColorModeWithRenderIntent(ColorMode mode, RenderIntent intent) {
Sushil Chauhan8008d602018-09-04 14:43:27 -0700484 auto status = color_mode_->CacheColorModeWithRenderIntent(mode, intent);
Arun Kumar K.R29cd6582016-05-10 19:12:45 -0700485 if (status != HWC2::Error::None) {
Naseer Ahmede7a77982018-06-04 10:56:04 -0400486 DLOGE("failed for mode = %d intent = %d", mode, intent);
Arun Kumar K.R29cd6582016-05-10 19:12:45 -0700487 return status;
488 }
Ramkumar Radhakrishnan44c64362018-12-12 13:03:59 -0800489 callbacks_->Refresh(id_);
Saurabh Shaha307e8c2017-09-28 18:05:40 -0700490 validated_ = false;
Arun Kumar K.R29cd6582016-05-10 19:12:45 -0700491 return status;
492}
493
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +0530494HWC2::Error HWCDisplayBuiltIn::SetColorModeById(int32_t color_mode_id) {
Naseer Ahmed6776dae2017-05-09 11:49:41 -0400495 auto status = color_mode_->SetColorModeById(color_mode_id);
496 if (status != HWC2::Error::None) {
497 DLOGE("failed for mode = %d", color_mode_id);
498 return status;
499 }
500
Ramkumar Radhakrishnan44c64362018-12-12 13:03:59 -0800501 callbacks_->Refresh(id_);
Saurabh Shaha307e8c2017-09-28 18:05:40 -0700502 validated_ = false;
Naseer Ahmed6776dae2017-05-09 11:49:41 -0400503
504 return status;
505}
506
Xu Yang84e61412018-12-06 14:52:16 +0800507HWC2::Error HWCDisplayBuiltIn::SetColorModeFromClientApi(int32_t color_mode_id) {
508 DisplayError error = kErrorNone;
509 std::string mode_string;
510
511 error = display_intf_->GetColorModeName(color_mode_id, &mode_string);
512 if (error) {
513 DLOGE("Failed to get mode name for mode %d", color_mode_id);
514 return HWC2::Error::BadParameter;
515 }
516
517 auto status = color_mode_->SetColorModeFromClientApi(mode_string);
518 if (status != HWC2::Error::None) {
519 DLOGE("Failed to set mode = %d", color_mode_id);
520 return status;
521 }
522
523 return status;
524}
525
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +0530526HWC2::Error HWCDisplayBuiltIn::RestoreColorTransform() {
Ch Ganesh Kumar5d43ff62017-10-13 19:01:47 +0530527 auto status = color_mode_->RestoreColorTransform();
528 if (status != HWC2::Error::None) {
529 DLOGE("failed to RestoreColorTransform");
530 return status;
531 }
532
Ramkumar Radhakrishnan44c64362018-12-12 13:03:59 -0800533 callbacks_->Refresh(id_);
Ch Ganesh Kumar5d43ff62017-10-13 19:01:47 +0530534
535 return status;
536}
537
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +0530538HWC2::Error HWCDisplayBuiltIn::SetColorTransform(const float *matrix,
Arun Kumar K.R29cd6582016-05-10 19:12:45 -0700539 android_color_transform_t hint) {
540 if (!matrix) {
541 return HWC2::Error::BadParameter;
542 }
543
544 auto status = color_mode_->SetColorTransform(matrix, hint);
545 if (status != HWC2::Error::None) {
546 DLOGE("failed for hint = %d", hint);
547 color_tranform_failed_ = true;
548 return status;
549 }
550
Ramkumar Radhakrishnan44c64362018-12-12 13:03:59 -0800551 callbacks_->Refresh(id_);
Arun Kumar K.R29cd6582016-05-10 19:12:45 -0700552 color_tranform_failed_ = false;
Saurabh Shaha307e8c2017-09-28 18:05:40 -0700553 validated_ = false;
Arun Kumar K.R29cd6582016-05-10 19:12:45 -0700554
555 return status;
556}
557
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +0530558HWC2::Error HWCDisplayBuiltIn::SetReadbackBuffer(const native_handle_t *buffer,
Rajavenu Kyatham7338b9e2019-12-30 19:52:16 +0530559 shared_ptr<Fence> acquire_fence,
560 bool post_processed_output, CWBClient client) {
Dileep Marchyacb2a3a92019-06-21 17:30:50 +0530561 if (cwb_client_ != client && cwb_client_ != kCWBClientNone) {
562 DLOGE("CWB is in use with client = %d", cwb_client_);
563 return HWC2::Error::NoResources;
564 }
565
Sushil Chauhan06521582018-03-19 14:00:23 -0700566 const private_handle_t *handle = reinterpret_cast<const private_handle_t *>(buffer);
567 if (!handle || (handle->fd < 0)) {
568 return HWC2::Error::BadParameter;
569 }
570
571 // Configure the output buffer as Readback buffer
572 output_buffer_.width = UINT32(handle->width);
573 output_buffer_.height = UINT32(handle->height);
574 output_buffer_.unaligned_width = UINT32(handle->unaligned_width);
575 output_buffer_.unaligned_height = UINT32(handle->unaligned_height);
576 output_buffer_.format = HWCLayer::GetSDMFormat(handle->format, handle->flags);
577 output_buffer_.planes[0].fd = handle->fd;
578 output_buffer_.planes[0].stride = UINT32(handle->width);
Rajavenu Kyatham7338b9e2019-12-30 19:52:16 +0530579 output_buffer_.acquire_fence = acquire_fence;
Sushil Chauhand0dc03d2018-09-19 07:08:40 -0700580 output_buffer_.handle_id = handle->id;
Sushil Chauhan06521582018-03-19 14:00:23 -0700581
582 post_processed_output_ = post_processed_output;
583 readback_buffer_queued_ = true;
584 readback_configured_ = false;
585 validated_ = false;
Dileep Marchyacb2a3a92019-06-21 17:30:50 +0530586 cwb_client_ = client;
Sushil Chauhan06521582018-03-19 14:00:23 -0700587
Sushil Chauhan06521582018-03-19 14:00:23 -0700588 return HWC2::Error::None;
589}
590
Rajavenu Kyatham7338b9e2019-12-30 19:52:16 +0530591HWC2::Error HWCDisplayBuiltIn::GetReadbackBufferFence(shared_ptr<Fence> *release_fence) {
Sushil Chauhan06521582018-03-19 14:00:23 -0700592 auto status = HWC2::Error::None;
593
Rajavenu Kyatham7338b9e2019-12-30 19:52:16 +0530594 if (readback_configured_ && output_buffer_.release_fence) {
595 *release_fence = output_buffer_.release_fence;
Sushil Chauhan06521582018-03-19 14:00:23 -0700596 } else {
597 status = HWC2::Error::Unsupported;
Sushil Chauhan06521582018-03-19 14:00:23 -0700598 }
599
600 post_processed_output_ = false;
601 readback_buffer_queued_ = false;
602 readback_configured_ = false;
603 output_buffer_ = {};
Dileep Marchyacb2a3a92019-06-21 17:30:50 +0530604 cwb_client_ = kCWBClientNone;
Sushil Chauhan06521582018-03-19 14:00:23 -0700605
606 return status;
607}
608
Gurpreet Singh Dhami1207e462018-12-27 20:02:02 -0500609DisplayError HWCDisplayBuiltIn::TeardownConcurrentWriteback(void) {
610 DisplayError error = kErrorNotSupported;
Rajavenu Kyatham7338b9e2019-12-30 19:52:16 +0530611 if (Fence::Wait(output_buffer_.release_fence) != kErrorNone) {
612 DLOGE("sync_wait error errno = %d, desc = %s", errno, strerror(errno));
613 return kErrorResources;
Gurpreet Singh Dhami1207e462018-12-27 20:02:02 -0500614 }
615
616 if (display_intf_) {
617 error = display_intf_->TeardownConcurrentWriteback();
618 }
619
620 return error;
621}
622
Yuchao Ma577f0f72018-07-09 11:20:00 +0800623HWC2::Error HWCDisplayBuiltIn::SetDisplayDppsAdROI(uint32_t h_start, uint32_t h_end,
624 uint32_t v_start, uint32_t v_end,
625 uint32_t factor_in, uint32_t factor_out) {
626 DisplayError error = kErrorNone;
627 DisplayDppsAd4RoiCfg dpps_ad4_roi_cfg = {};
628 uint32_t panel_width = 0, panel_height = 0;
629 constexpr uint16_t kMaxFactorVal = 0xffff;
630
631 if (h_start >= h_end || v_start >= v_end || factor_in > kMaxFactorVal ||
632 factor_out > kMaxFactorVal) {
633 DLOGE("Invalid roi region = [%u, %u, %u, %u, %u, %u]",
634 h_start, h_end, v_start, v_end, factor_in, factor_out);
635 return HWC2::Error::BadParameter;
636 }
637
638 GetPanelResolution(&panel_width, &panel_height);
639
640 if (h_start >= panel_width || h_end > panel_width ||
641 v_start >= panel_height || v_end > panel_height) {
642 DLOGE("Invalid roi region = [%u, %u, %u, %u], panel resolution = [%u, %u]",
643 h_start, h_end, v_start, v_end, panel_width, panel_height);
644 return HWC2::Error::BadParameter;
645 }
646
647 dpps_ad4_roi_cfg.h_start = h_start;
648 dpps_ad4_roi_cfg.h_end = h_end;
649 dpps_ad4_roi_cfg.v_start = v_start;
650 dpps_ad4_roi_cfg.v_end = v_end;
651 dpps_ad4_roi_cfg.factor_in = factor_in;
652 dpps_ad4_roi_cfg.factor_out = factor_out;
653
654 error = display_intf_->SetDisplayDppsAdROI(&dpps_ad4_roi_cfg);
655 if (error)
656 return HWC2::Error::BadConfig;
657
Ramkumar Radhakrishnan44c64362018-12-12 13:03:59 -0800658 callbacks_->Refresh(id_);
Yuchao Ma577f0f72018-07-09 11:20:00 +0800659
660 return HWC2::Error::None;
661}
662
Xu Yang9dacc872018-12-25 11:04:28 +0800663HWC2::Error HWCDisplayBuiltIn::SetFrameTriggerMode(uint32_t mode) {
664 DisplayError error = kErrorNone;
665 FrameTriggerMode trigger_mode = kFrameTriggerDefault;
666
667 if (mode >= kFrameTriggerMax) {
668 DLOGE("Invalid input mode %d", mode);
669 return HWC2::Error::BadParameter;
670 }
671
672 trigger_mode = static_cast<FrameTriggerMode>(mode);
673 error = display_intf_->SetFrameTriggerMode(trigger_mode);
674 if (error)
675 return HWC2::Error::BadConfig;
676
677 callbacks_->Refresh(HWC_DISPLAY_PRIMARY);
678 validated_ = false;
679
680 return HWC2::Error::None;
681}
682
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +0530683int HWCDisplayBuiltIn::Perform(uint32_t operation, ...) {
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500684 va_list args;
685 va_start(args, operation);
Arun Kumar K.R536c7d62016-06-14 18:47:39 -0700686 int val = 0;
Gopikrishnaiah Anandancc123062017-07-31 17:21:03 -0700687 LayerSolidFill *solid_fill_color;
Arun Kumar K.R536c7d62016-06-14 18:47:39 -0700688 LayerRect *rect = NULL;
689
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500690 switch (operation) {
691 case SET_METADATA_DYN_REFRESH_RATE:
Arun Kumar K.R536c7d62016-06-14 18:47:39 -0700692 val = va_arg(args, int32_t);
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500693 SetMetaDataRefreshRateFlag(val);
694 break;
695 case SET_BINDER_DYN_REFRESH_RATE:
Arun Kumar K.R536c7d62016-06-14 18:47:39 -0700696 val = va_arg(args, int32_t);
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500697 ForceRefreshRate(UINT32(val));
698 break;
699 case SET_DISPLAY_MODE:
Arun Kumar K.R536c7d62016-06-14 18:47:39 -0700700 val = va_arg(args, int32_t);
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500701 SetDisplayMode(UINT32(val));
702 break;
703 case SET_QDCM_SOLID_FILL_INFO:
Gopikrishnaiah Anandancc123062017-07-31 17:21:03 -0700704 solid_fill_color = va_arg(args, LayerSolidFill*);
705 SetQDCMSolidFillInfo(true, *solid_fill_color);
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500706 break;
707 case UNSET_QDCM_SOLID_FILL_INFO:
Gopikrishnaiah Anandancc123062017-07-31 17:21:03 -0700708 solid_fill_color = va_arg(args, LayerSolidFill*);
709 SetQDCMSolidFillInfo(false, *solid_fill_color);
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500710 break;
Arun Kumar K.R536c7d62016-06-14 18:47:39 -0700711 case SET_QDCM_SOLID_FILL_RECT:
712 rect = va_arg(args, LayerRect*);
713 solid_fill_rect_ = *rect;
714 break;
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500715 default:
716 DLOGW("Invalid operation %d", operation);
Arun Kumar K.R536c7d62016-06-14 18:47:39 -0700717 va_end(args);
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500718 return -EINVAL;
719 }
Arun Kumar K.R536c7d62016-06-14 18:47:39 -0700720 va_end(args);
Saurabh Shaha307e8c2017-09-28 18:05:40 -0700721 validated_ = false;
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500722
723 return 0;
724}
725
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +0530726DisplayError HWCDisplayBuiltIn::SetDisplayMode(uint32_t mode) {
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500727 DisplayError error = kErrorNone;
728
729 if (display_intf_) {
730 error = display_intf_->SetDisplayMode(mode);
Tharaga Balachandran04192a62018-08-29 16:23:25 -0400731 if (error == kErrorNone) {
732 DisplayConfigFixedInfo fixed_info = {};
733 display_intf_->GetConfig(&fixed_info);
734 is_cmd_mode_ = fixed_info.is_cmdmode;
735 partial_update_enabled_ = fixed_info.partial_update;
736 for (auto hwc_layer : layer_set_) {
737 hwc_layer->SetPartialUpdate(partial_update_enabled_);
738 }
739 client_target_->SetPartialUpdate(partial_update_enabled_);
740 }
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500741 }
742
743 return error;
744}
745
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +0530746void HWCDisplayBuiltIn::SetMetaDataRefreshRateFlag(bool enable) {
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500747 int disable_metadata_dynfps = 0;
748
Uday Kiran Pichika5e656b22018-05-15 18:48:24 +0530749 HWCDebugHandler::Get()->GetProperty(DISABLE_METADATA_DYNAMIC_FPS_PROP, &disable_metadata_dynfps);
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500750 if (disable_metadata_dynfps) {
751 return;
752 }
753 use_metadata_refresh_rate_ = enable;
754}
755
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +0530756void HWCDisplayBuiltIn::SetQDCMSolidFillInfo(bool enable, const LayerSolidFill &color) {
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500757 solid_fill_enable_ = enable;
758 solid_fill_color_ = color;
759}
760
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +0530761void HWCDisplayBuiltIn::ToggleCPUHint(bool set) {
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500762 if (!cpu_hint_) {
763 return;
764 }
765
766 if (set) {
767 cpu_hint_->Set();
768 } else {
769 cpu_hint_->Reset();
770 }
771}
772
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +0530773int HWCDisplayBuiltIn::HandleSecureSession(const std::bitset<kSecureMax> &secure_sessions,
Ramkumar Radhakrishnana38b7602018-03-15 14:49:52 -0700774 bool *power_on_pending) {
775 if (!power_on_pending) {
776 return -EINVAL;
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500777 }
Ramkumar Radhakrishnana38b7602018-03-15 14:49:52 -0700778
Mathew Joseph Karimpanalb1c15862019-07-04 11:14:24 +0530779 if (!is_primary_) {
780 return HWCDisplay::HandleSecureSession(secure_sessions, power_on_pending);
781 }
782
Ramkumar Radhakrishnan44c64362018-12-12 13:03:59 -0800783 if (current_power_mode_ != HWC2::PowerMode::On) {
784 return 0;
785 }
786
Ramkumar Radhakrishnana38b7602018-03-15 14:49:52 -0700787 if (active_secure_sessions_[kSecureDisplay] != secure_sessions[kSecureDisplay]) {
788 SecureEvent secure_event =
789 secure_sessions.test(kSecureDisplay) ? kSecureDisplayStart : kSecureDisplayEnd;
Pullakavi Srinivas0a1dba62018-07-02 15:49:11 +0530790 DisplayError err = display_intf_->HandleSecureEvent(secure_event, &layer_stack_);
Ramkumar Radhakrishnana38b7602018-03-15 14:49:52 -0700791 if (err != kErrorNone) {
792 DLOGE("Set secure event failed");
793 return err;
794 }
795
Pullakavi Srinivasce3692b2020-02-13 01:14:09 +0530796 DLOGI("SecureDisplay state changed from %d to %d for display %" PRIu64 "-%d",
Ramkumar Radhakrishnana38b7602018-03-15 14:49:52 -0700797 active_secure_sessions_.test(kSecureDisplay), secure_sessions.test(kSecureDisplay),
Mathew Joseph Karimpanalb1c15862019-07-04 11:14:24 +0530798 id_, type_);
Ramkumar Radhakrishnana38b7602018-03-15 14:49:52 -0700799 }
800 active_secure_sessions_ = secure_sessions;
801 *power_on_pending = false;
802 return 0;
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500803}
804
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +0530805void HWCDisplayBuiltIn::ForceRefreshRate(uint32_t refresh_rate) {
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500806 if ((refresh_rate && (refresh_rate < min_refresh_rate_ || refresh_rate > max_refresh_rate_)) ||
807 force_refresh_rate_ == refresh_rate) {
808 // Cannot honor force refresh rate, as its beyond the range or new request is same
809 return;
810 }
811
812 force_refresh_rate_ = refresh_rate;
813
Ramkumar Radhakrishnan44c64362018-12-12 13:03:59 -0800814 callbacks_->Refresh(id_);
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500815
816 return;
817}
818
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +0530819uint32_t HWCDisplayBuiltIn::GetOptimalRefreshRate(bool one_updating_layer) {
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500820 if (force_refresh_rate_) {
821 return force_refresh_rate_;
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500822 } else if (use_metadata_refresh_rate_ && one_updating_layer && metadata_refresh_rate_) {
823 return metadata_refresh_rate_;
824 }
825
826 return max_refresh_rate_;
827}
828
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +0530829void HWCDisplayBuiltIn::SetIdleTimeoutMs(uint32_t timeout_ms) {
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500830 display_intf_->SetIdleTimeoutMs(timeout_ms);
Saurabh Shaha307e8c2017-09-28 18:05:40 -0700831 validated_ = false;
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500832}
833
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +0530834void HWCDisplayBuiltIn::HandleFrameOutput() {
Sushil Chauhan06521582018-03-19 14:00:23 -0700835 if (readback_buffer_queued_) {
836 validated_ = false;
837 }
838
Sushil Chauhan1d3b90c2018-12-11 16:52:35 -0800839 if (frame_capture_buffer_queued_) {
840 HandleFrameCapture();
841 } else if (dump_output_to_file_) {
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500842 HandleFrameDump();
843 }
844}
845
Sushil Chauhan1d3b90c2018-12-11 16:52:35 -0800846void HWCDisplayBuiltIn::HandleFrameCapture() {
Rajavenu Kyatham7338b9e2019-12-30 19:52:16 +0530847 if (readback_configured_ && output_buffer_.release_fence) {
848 frame_capture_status_ = Fence::Wait(output_buffer_.release_fence);
Sushil Chauhan1d3b90c2018-12-11 16:52:35 -0800849 }
850
851 frame_capture_buffer_queued_ = false;
852 readback_buffer_queued_ = false;
853 post_processed_output_ = false;
854 readback_configured_ = false;
855 output_buffer_ = {};
Dileep Marchyacb2a3a92019-06-21 17:30:50 +0530856 cwb_client_ = kCWBClientNone;
Sushil Chauhan1d3b90c2018-12-11 16:52:35 -0800857}
858
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +0530859void HWCDisplayBuiltIn::HandleFrameDump() {
Ramkumar Radhakrishnan68331fc2019-06-19 11:24:12 -0700860 if (dump_frame_count_) {
861 int ret = 0;
Rajavenu Kyatham7338b9e2019-12-30 19:52:16 +0530862 ret = Fence::Wait(output_buffer_.release_fence);
863 if (ret != kErrorNone) {
864 DLOGE("sync_wait error errno = %d, desc = %s", errno, strerror(errno));
Ramkumar Radhakrishnan68331fc2019-06-19 11:24:12 -0700865 }
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500866
Ramkumar Radhakrishnan68331fc2019-06-19 11:24:12 -0700867 if (!ret) {
Dileep Marchyaad668432019-12-02 10:44:52 +0530868 DumpOutputBuffer(output_buffer_info_, output_buffer_base_, layer_stack_.retire_fence);
869 validated_ = false;
870 }
Ramkumar Radhakrishnan68331fc2019-06-19 11:24:12 -0700871
872 if (0 == (dump_frame_count_ - 1)) {
873 dump_output_to_file_ = false;
874 // Unmap and Free buffer
875 if (munmap(output_buffer_base_, output_buffer_info_.alloc_buffer_info.size) != 0) {
876 DLOGE("unmap failed with err %d", errno);
877 }
878 if (buffer_allocator_->FreeBuffer(&output_buffer_info_) != 0) {
879 DLOGE("FreeBuffer failed");
880 }
881
Sushil Chauhan06521582018-03-19 14:00:23 -0700882 readback_buffer_queued_ = false;
Ramkumar Radhakrishnan68331fc2019-06-19 11:24:12 -0700883 post_processed_output_ = false;
884 readback_configured_ = false;
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500885
Ramkumar Radhakrishnan68331fc2019-06-19 11:24:12 -0700886 output_buffer_ = {};
887 output_buffer_info_ = {};
888 output_buffer_base_ = nullptr;
Dileep Marchyacb2a3a92019-06-21 17:30:50 +0530889 cwb_client_ = kCWBClientNone;
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500890 }
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500891 }
892}
893
Sushil Chauhan267a6192018-06-06 18:41:47 -0700894HWC2::Error HWCDisplayBuiltIn::SetFrameDumpConfig(uint32_t count, uint32_t bit_mask_layer_type,
895 int32_t format, bool post_processed) {
896 HWCDisplay::SetFrameDumpConfig(count, bit_mask_layer_type, format, post_processed);
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500897 dump_output_to_file_ = bit_mask_layer_type & (1 << OUTPUT_LAYER_DUMP);
898 DLOGI("output_layer_dump_enable %d", dump_output_to_file_);
899
Dileep Marchyacb2a3a92019-06-21 17:30:50 +0530900 if (dump_output_to_file_) {
901 if (cwb_client_ != kCWBClientNone) {
902 DLOGE("CWB is in use with client = %d", cwb_client_);
903 dump_output_to_file_ = false;
904 return HWC2::Error::NoResources;
905 }
906 }
907
Sushil Chauhand0dc03d2018-09-19 07:08:40 -0700908 if (!count || !dump_output_to_file_ || (output_buffer_info_.alloc_buffer_info.fd >= 0)) {
Mathew Joseph Karimpanaldbd64f82017-10-06 10:13:38 +0530909 return HWC2::Error::None;
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500910 }
911
912 // Allocate and map output buffer
Sushil Chauhan267a6192018-06-06 18:41:47 -0700913 if (post_processed) {
914 // To dump post-processed (DSPP) output, use Panel resolution.
915 GetPanelResolution(&output_buffer_info_.buffer_config.width,
916 &output_buffer_info_.buffer_config.height);
917 } else {
918 // To dump Layer Mixer output, use FrameBuffer resolution.
919 GetFrameBufferResolution(&output_buffer_info_.buffer_config.width,
920 &output_buffer_info_.buffer_config.height);
921 }
922
923 output_buffer_info_.buffer_config.format = HWCLayer::GetSDMFormat(format, 0);
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500924 output_buffer_info_.buffer_config.buffer_count = 1;
925 if (buffer_allocator_->AllocateBuffer(&output_buffer_info_) != 0) {
926 DLOGE("Buffer allocation failed");
927 output_buffer_info_ = {};
Mathew Joseph Karimpanaldbd64f82017-10-06 10:13:38 +0530928 return HWC2::Error::NoResources;
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500929 }
930
931 void *buffer = mmap(NULL, output_buffer_info_.alloc_buffer_info.size, PROT_READ | PROT_WRITE,
932 MAP_SHARED, output_buffer_info_.alloc_buffer_info.fd, 0);
933
934 if (buffer == MAP_FAILED) {
935 DLOGE("mmap failed with err %d", errno);
936 buffer_allocator_->FreeBuffer(&output_buffer_info_);
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 output_buffer_base_ = buffer;
Sushil Chauhan06521582018-03-19 14:00:23 -0700942 const native_handle_t *handle = static_cast<native_handle_t *>(output_buffer_info_.private_data);
Rajavenu Kyatham7338b9e2019-12-30 19:52:16 +0530943 SetReadbackBuffer(handle, nullptr, post_processed, kCWBClientFrameDump);
Sushil Chauhan06521582018-03-19 14:00:23 -0700944
Mathew Joseph Karimpanaldbd64f82017-10-06 10:13:38 +0530945 return HWC2::Error::None;
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500946}
947
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +0530948int HWCDisplayBuiltIn::FrameCaptureAsync(const BufferInfo &output_buffer_info,
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500949 bool post_processed_output) {
Dileep Marchyacb2a3a92019-06-21 17:30:50 +0530950 if (cwb_client_ != kCWBClientNone) {
951 DLOGE("CWB is in use with client = %d", cwb_client_);
952 return -1;
953 }
954
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500955 // Note: This function is called in context of a binder thread and a lock is already held
956 if (output_buffer_info.alloc_buffer_info.fd < 0) {
957 DLOGE("Invalid fd %d", output_buffer_info.alloc_buffer_info.fd);
958 return -1;
959 }
960
961 auto panel_width = 0u;
962 auto panel_height = 0u;
963 auto fb_width = 0u;
964 auto fb_height = 0u;
965
966 GetPanelResolution(&panel_width, &panel_height);
967 GetFrameBufferResolution(&fb_width, &fb_height);
968
Ch Ganesh Kumar5c4988b2017-06-07 15:21:02 +0530969 if (post_processed_output && (output_buffer_info.buffer_config.width < panel_width ||
970 output_buffer_info.buffer_config.height < panel_height)) {
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500971 DLOGE("Buffer dimensions should not be less than panel resolution");
972 return -1;
Ch Ganesh Kumar5c4988b2017-06-07 15:21:02 +0530973 } else if (!post_processed_output && (output_buffer_info.buffer_config.width < fb_width ||
974 output_buffer_info.buffer_config.height < fb_height)) {
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500975 DLOGE("Buffer dimensions should not be less than FB resolution");
976 return -1;
977 }
978
Sushil Chauhan06521582018-03-19 14:00:23 -0700979 const native_handle_t *buffer = static_cast<native_handle_t *>(output_buffer_info.private_data);
Rajavenu Kyatham7338b9e2019-12-30 19:52:16 +0530980 SetReadbackBuffer(buffer, nullptr, post_processed_output, kCWBClientColor);
Sushil Chauhan1d3b90c2018-12-11 16:52:35 -0800981 frame_capture_buffer_queued_ = true;
982 frame_capture_status_ = -EAGAIN;
Naseer Ahmedb92e73f2016-03-12 02:03:48 -0500983
984 return 0;
985}
986
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +0530987DisplayError HWCDisplayBuiltIn::SetDetailEnhancerConfig
Alan Kwong2e136332016-08-16 07:50:16 -0400988 (const DisplayDetailEnhancerData &de_data) {
989 DisplayError error = kErrorNotSupported;
990
991 if (display_intf_) {
992 error = display_intf_->SetDetailEnhancerData(de_data);
Saurabh Shaha307e8c2017-09-28 18:05:40 -0700993 validated_ = false;
Alan Kwong2e136332016-08-16 07:50:16 -0400994 }
995 return error;
996}
997
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +0530998DisplayError HWCDisplayBuiltIn::ControlPartialUpdate(bool enable, uint32_t *pending) {
Arun Kumar K.R17bbd042016-06-07 17:38:02 -0700999 DisplayError error = kErrorNone;
1000
1001 if (display_intf_) {
1002 error = display_intf_->ControlPartialUpdate(enable, pending);
Saurabh Shaha307e8c2017-09-28 18:05:40 -07001003 validated_ = false;
Arun Kumar K.R17bbd042016-06-07 17:38:02 -07001004 }
1005
1006 return error;
1007}
1008
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +05301009DisplayError HWCDisplayBuiltIn::DisablePartialUpdateOneFrame() {
Arun Kumar K.R17bbd042016-06-07 17:38:02 -07001010 DisplayError error = kErrorNone;
1011
1012 if (display_intf_) {
1013 error = display_intf_->DisablePartialUpdateOneFrame();
Saurabh Shaha307e8c2017-09-28 18:05:40 -07001014 validated_ = false;
Arun Kumar K.R17bbd042016-06-07 17:38:02 -07001015 }
1016
1017 return error;
1018}
1019
Lakshmi Narayana Kalavala25fe12c2019-12-11 20:44:55 -08001020HWC2::Error HWCDisplayBuiltIn::SetDisplayedContentSamplingEnabledVndService(bool enabled) {
1021 std::unique_lock<decltype(sampling_mutex)> lk(sampling_mutex);
1022 vndservice_sampling_vote = enabled;
1023 if (api_sampling_vote || vndservice_sampling_vote) {
1024 histogram.start();
Lakshmi Narayana Kalavalaf30c2292019-09-26 15:26:24 -07001025 display_intf_->colorSamplingOn();
Lakshmi Narayana Kalavala25fe12c2019-12-11 20:44:55 -08001026 } else {
Lakshmi Narayana Kalavalaf30c2292019-09-26 15:26:24 -07001027 display_intf_->colorSamplingOff();
Lakshmi Narayana Kalavala25fe12c2019-12-11 20:44:55 -08001028 histogram.stop();
1029 }
1030 return HWC2::Error::None;
1031}
1032
1033HWC2::Error HWCDisplayBuiltIn::SetDisplayedContentSamplingEnabled(int32_t enabled,
1034 uint8_t component_mask,
1035 uint64_t max_frames) {
1036 if ((enabled != HWC2_DISPLAYED_CONTENT_SAMPLING_ENABLE) &&
1037 (enabled != HWC2_DISPLAYED_CONTENT_SAMPLING_DISABLE))
1038 return HWC2::Error::BadParameter;
1039
1040 std::unique_lock<decltype(sampling_mutex)> lk(sampling_mutex);
1041 if (enabled == HWC2_DISPLAYED_CONTENT_SAMPLING_ENABLE) {
1042 api_sampling_vote = true;
1043 } else {
1044 api_sampling_vote = false;
1045 }
1046
1047 auto start = api_sampling_vote || vndservice_sampling_vote;
1048 if (start && max_frames == 0) {
1049 histogram.start();
Lakshmi Narayana Kalavalaf30c2292019-09-26 15:26:24 -07001050 display_intf_->colorSamplingOn();
Lakshmi Narayana Kalavala25fe12c2019-12-11 20:44:55 -08001051 } else if (start) {
1052 histogram.start(max_frames);
Lakshmi Narayana Kalavalaf30c2292019-09-26 15:26:24 -07001053 display_intf_->colorSamplingOn();
Lakshmi Narayana Kalavala25fe12c2019-12-11 20:44:55 -08001054 } else {
Lakshmi Narayana Kalavalaf30c2292019-09-26 15:26:24 -07001055 display_intf_->colorSamplingOff();
Lakshmi Narayana Kalavala25fe12c2019-12-11 20:44:55 -08001056 histogram.stop();
1057 }
1058 return HWC2::Error::None;
1059}
1060
1061HWC2::Error HWCDisplayBuiltIn::GetDisplayedContentSamplingAttributes(
1062 int32_t *format, int32_t *dataspace, uint8_t *supported_components) {
1063 return histogram.getAttributes(format, dataspace, supported_components);
1064}
1065
1066HWC2::Error HWCDisplayBuiltIn::GetDisplayedContentSample(
1067 uint64_t max_frames, uint64_t timestamp, uint64_t *numFrames,
1068 int32_t samples_size[NUM_HISTOGRAM_COLOR_COMPONENTS],
1069 uint64_t *samples[NUM_HISTOGRAM_COLOR_COMPONENTS]) {
1070 histogram.collect(max_frames, timestamp, samples_size, samples, numFrames);
1071 return HWC2::Error::None;
1072}
Arun Kumar K.R17bbd042016-06-07 17:38:02 -07001073
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +05301074DisplayError HWCDisplayBuiltIn::SetMixerResolution(uint32_t width, uint32_t height) {
Sushil Chauhan409e8442017-06-12 17:43:25 -07001075 DisplayError error = display_intf_->SetMixerResolution(width, height);
Ramkumar Radhakrishnanf7f52162019-06-06 19:40:04 -07001076 callbacks_->Refresh(id_);
Saurabh Shaha307e8c2017-09-28 18:05:40 -07001077 validated_ = false;
Sushil Chauhan409e8442017-06-12 17:43:25 -07001078 return error;
Arun Kumar K.R8da7f502016-06-07 17:45:50 -07001079}
1080
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +05301081DisplayError HWCDisplayBuiltIn::GetMixerResolution(uint32_t *width, uint32_t *height) {
Arun Kumar K.R8da7f502016-06-07 17:45:50 -07001082 return display_intf_->GetMixerResolution(width, height);
1083}
1084
Dileep Marchyaf3ce11f2018-04-30 23:35:46 +05301085HWC2::Error HWCDisplayBuiltIn::SetQSyncMode(QSyncMode qsync_mode) {
Pullakavi Srinivas24574142019-08-14 12:18:12 +05301086 // Client needs to ensure that config change and qsync mode change
1087 // are not triggered in the same drawcycle.
1088 if (pending_config_) {
1089 DLOGE("Failed to set qsync mode. Pending active config transition");
1090 return HWC2::Error::Unsupported;
1091 }
1092
Sushil Chauhan380a59d2018-03-19 15:47:50 -07001093 auto err = display_intf_->SetQSyncMode(qsync_mode);
1094 if (err != kErrorNone) {
1095 return HWC2::Error::Unsupported;
1096 }
1097
Sushil Chauhanec4eb572019-02-07 13:29:42 -08001098 validated_ = false;
Sushil Chauhan380a59d2018-03-19 15:47:50 -07001099 return HWC2::Error::None;
1100}
1101
Ramkumar Radhakrishnan4faf8a62018-11-15 17:15:37 -08001102DisplayError HWCDisplayBuiltIn::ControlIdlePowerCollapse(bool enable, bool synchronous) {
Ramkumar Radhakrishnanf985d482018-07-23 18:10:41 -07001103 DisplayError error = kErrorNone;
1104
1105 if (display_intf_) {
1106 error = display_intf_->ControlIdlePowerCollapse(enable, synchronous);
1107 validated_ = false;
1108 }
Ramkumar Radhakrishnan4faf8a62018-11-15 17:15:37 -08001109 return error;
Ramkumar Radhakrishnanf985d482018-07-23 18:10:41 -07001110}
1111
Pullakavi Srinivas9189e602018-12-19 16:58:07 +05301112DisplayError HWCDisplayBuiltIn::SetDynamicDSIClock(uint64_t bitclk) {
Dileep Marchyaafa45bc2019-06-21 17:05:31 +05301113 DisablePartialUpdateOneFrame();
1114 DisplayError error = display_intf_->SetDynamicDSIClock(bitclk);
1115 if (error != kErrorNone) {
Pullakavi Srinivasce3692b2020-02-13 01:14:09 +05301116 DLOGE(" failed: Clk: %" PRIu64 " Error: %d", bitclk, error);
Dileep Marchyaafa45bc2019-06-21 17:05:31 +05301117 return error;
Pullakavi Srinivas9189e602018-12-19 16:58:07 +05301118 }
1119
1120 callbacks_->Refresh(id_);
1121 validated_ = false;
1122
1123 return kErrorNone;
1124}
1125
1126DisplayError HWCDisplayBuiltIn::GetDynamicDSIClock(uint64_t *bitclk) {
Pullakavi Srinivas9189e602018-12-19 16:58:07 +05301127 if (display_intf_) {
1128 return display_intf_->GetDynamicDSIClock(bitclk);
1129 }
1130
1131 return kErrorNotSupported;
1132}
1133
1134DisplayError HWCDisplayBuiltIn::GetSupportedDSIClock(std::vector<uint64_t> *bitclk_rates) {
1135 if (display_intf_) {
1136 return display_intf_->GetSupportedDSIClock(bitclk_rates);
1137 }
1138
1139 return kErrorNotSupported;
1140}
1141
Padmanabhan Komandurue74cf4f2019-04-25 17:38:43 -07001142HWC2::Error HWCDisplayBuiltIn::UpdateDisplayId(hwc2_display_t id) {
1143 id_ = id;
1144 return HWC2::Error::None;
1145}
1146
1147HWC2::Error HWCDisplayBuiltIn::SetPendingRefresh() {
1148 pending_refresh_ = true;
1149 return HWC2::Error::None;
1150}
1151
Varun Arora75c05f02019-05-14 14:53:37 -07001152HWC2::Error HWCDisplayBuiltIn::SetPanelBrightness(float brightness) {
1153 DisplayError ret = display_intf_->SetPanelBrightness(brightness);
1154 if (ret != kErrorNone) {
1155 return HWC2::Error::NoResources;
1156 }
1157
1158 return HWC2::Error::None;
1159}
1160
1161HWC2::Error HWCDisplayBuiltIn::GetPanelBrightness(float *brightness) {
1162 DisplayError ret = display_intf_->GetPanelBrightness(brightness);
1163 if (ret != kErrorNone) {
1164 return HWC2::Error::NoResources;
1165 }
1166
1167 return HWC2::Error::None;
1168}
Xu Yang45d0abf2019-07-05 11:34:06 +08001169
Yuchao Maada1c402019-11-12 14:47:11 +08001170HWC2::Error HWCDisplayBuiltIn::GetPanelMaxBrightness(uint32_t *max_brightness_level) {
1171 DisplayError ret = display_intf_->GetPanelMaxBrightness(max_brightness_level);
1172 if (ret != kErrorNone) {
1173 return HWC2::Error::NoResources;
1174 }
1175
1176 return HWC2::Error::None;
1177}
1178
Xu Yang45d0abf2019-07-05 11:34:06 +08001179HWC2::Error HWCDisplayBuiltIn::SetBLScale(uint32_t level) {
1180 DisplayError ret = display_intf_->SetBLScale(level);
1181 if (ret != kErrorNone) {
1182 return HWC2::Error::NoResources;
1183 }
Srinivas Pullakavi3c4337f2019-07-03 11:24:31 +05301184 return HWC2::Error::None;
1185}
Xu Yang45d0abf2019-07-05 11:34:06 +08001186
Srinivas Pullakavi3c4337f2019-07-03 11:24:31 +05301187HWC2::Error HWCDisplayBuiltIn::UpdatePowerMode(HWC2::PowerMode mode) {
1188 current_power_mode_ = mode;
1189 validated_ = false;
Xu Yang45d0abf2019-07-05 11:34:06 +08001190 return HWC2::Error::None;
1191}
1192
Rajavenu Kyatham7338b9e2019-12-30 19:52:16 +05301193HWC2::Error HWCDisplayBuiltIn::SetClientTarget(buffer_handle_t target,
1194 shared_ptr<Fence> acquire_fence,
Padmanabhan Komanduru9a91e9f2019-09-12 12:33:19 +05301195 int32_t dataspace, hwc_region_t damage) {
1196 HWC2::Error error = HWCDisplay::SetClientTarget(target, acquire_fence, dataspace, damage);
1197 if (error != HWC2::Error::None) {
1198 return error;
1199 }
1200
Pullakavi Srinivasd32b4922020-02-10 10:08:31 +05301201 // windowed_display and dynamic scaling are not supported.
1202 if (windowed_display_) {
1203 return HWC2::Error::None;
1204 }
1205
Padmanabhan Komanduru9a91e9f2019-09-12 12:33:19 +05301206 Layer *sdm_layer = client_target_->GetSDMLayer();
Padmanabhan Komandurua4bf6062019-10-13 09:04:49 +05301207 uint32_t fb_width = 0, fb_height = 0;
1208
1209 GetFrameBufferResolution(&fb_width, &fb_height);
1210
1211 if (fb_width != sdm_layer->input_buffer.unaligned_width ||
1212 fb_height != sdm_layer->input_buffer.unaligned_height) {
1213 if (SetFrameBufferConfig(sdm_layer->input_buffer.unaligned_width,
1214 sdm_layer->input_buffer.unaligned_height)) {
1215 return HWC2::Error::BadParameter;
1216 }
1217 }
Padmanabhan Komanduru9a91e9f2019-09-12 12:33:19 +05301218
1219 return HWC2::Error::None;
1220}
Sushil Chauhan1566a132019-10-02 11:59:28 -07001221
1222bool HWCDisplayBuiltIn::IsSmartPanelConfig(uint32_t config_id) {
1223 if (config_id < hwc_config_map_.size()) {
1224 uint32_t index = hwc_config_map_.at(config_id);
1225 return variable_config_map_.at(index).smart_panel;
1226 }
1227
1228 return false;
1229}
1230
Pullakavi Srinivas1ae4acb2019-11-18 19:33:45 +05301231int HWCDisplayBuiltIn::Deinit() {
1232 // Destory color convert instance. This destroys thread and underlying GL resources.
1233 if (gl_layer_stitch_) {
1234 layer_stitch_task_.PerformTask(LayerStitchTaskCode::kCodeDestroyInstance, nullptr);
1235 }
1236
Lakshmi Narayana Kalavala25fe12c2019-12-11 20:44:55 -08001237 histogram.stop();
Pullakavi Srinivas1ae4acb2019-11-18 19:33:45 +05301238 return HWCDisplay::Deinit();
1239}
1240
1241void HWCDisplayBuiltIn::OnTask(const LayerStitchTaskCode &task_code,
1242 SyncTask<LayerStitchTaskCode>::TaskContext *task_context) {
1243 switch (task_code) {
1244 case LayerStitchTaskCode::kCodeGetInstance: {
1245 gl_layer_stitch_ = GLLayerStitch::GetInstance(false /* Non-secure */);
1246 }
1247 break;
1248 case LayerStitchTaskCode::kCodeStitch: {
1249 DTRACE_SCOPED();
Pullakavi Srinivasdb2b84a2019-11-21 14:47:35 +05301250 LayerStitchContext* ctx = reinterpret_cast<LayerStitchContext*>(task_context);
Pullakavi Srinivas1ae4acb2019-11-18 19:33:45 +05301251 gl_layer_stitch_->Blit(ctx->src_hnd, ctx->dst_hnd, ctx->src_rect, ctx->dst_rect,
Pullakavi Srinivasf25bc4a2020-02-27 12:07:39 +05301252 ctx->scissor_rect, ctx->src_acquire_fence,
1253 ctx->dst_acquire_fence, &(ctx->release_fence));
Pullakavi Srinivas1ae4acb2019-11-18 19:33:45 +05301254 }
1255 break;
1256 case LayerStitchTaskCode::kCodeDestroyInstance: {
1257 if (gl_layer_stitch_) {
1258 GLLayerStitch::Destroy(gl_layer_stitch_);
1259 }
1260 }
1261 break;
1262 }
1263}
1264
1265bool HWCDisplayBuiltIn::InitLayerStitch() {
1266 if (!is_primary_) {
1267 // Disable on all non-primary builtins.
1268 DLOGI("Non-primary builtin.");
Pullakavi Srinivas94793b42019-11-27 20:03:50 +05301269 disable_layer_stitch_ = true;
Pullakavi Srinivas1ae4acb2019-11-18 19:33:45 +05301270 return true;
1271 }
1272
1273 // Disable by default.
1274 int value = 1;
1275 Debug::Get()->GetProperty(DISABLE_LAYER_STITCH, &value);
1276 disable_layer_stitch_ = (value == 1);
1277
1278 if (disable_layer_stitch_) {
1279 DLOGI("Layer Stitch Disabled !!!");
1280 return true;
1281 }
1282
1283 // Initialize stitch context. This will be non-secure.
1284 layer_stitch_task_.PerformTask(LayerStitchTaskCode::kCodeGetInstance, nullptr);
1285 if (gl_layer_stitch_ == nullptr) {
1286 DLOGE("Failed to get LayerStitch Instance");
1287 return false;
1288 }
1289
1290 if (!AllocateStitchBuffer()) {
1291 return true;
1292 }
1293
1294 stitch_target_ = new HWCLayer(id_, static_cast<HWCBufferAllocator *>(buffer_allocator_));
1295
1296 // Populate buffer params and pvt handle.
1297 InitStitchTarget();
1298
1299 DLOGI("Created LayerStitch instance: %p", gl_layer_stitch_);
1300
1301 return true;
1302}
1303
1304bool HWCDisplayBuiltIn::AllocateStitchBuffer() {
1305 // Buffer dimensions: FB width * (1.5 * height)
1306
1307 DisplayError error = display_intf_->GetFrameBufferConfig(&fb_config_);
1308 if (error != kErrorNone) {
1309 DLOGE("Get frame buffer config failed. Error = %d", error);
1310 return false;
1311 }
1312
1313 BufferConfig &config = buffer_info_.buffer_config;
1314 config.width = fb_config_.x_pixels;
1315 config.height = fb_config_.y_pixels * kBufferHeightFactor;
1316
1317 // By default UBWC is enabled and below property is global enable/disable for all
1318 // buffers allocated through gralloc , including framebuffer targets.
1319 int ubwc_disabled = 0;
1320 HWCDebugHandler::Get()->GetProperty(DISABLE_UBWC_PROP, &ubwc_disabled);
1321 config.format = ubwc_disabled ? kFormatRGBA8888 : kFormatRGBA8888Ubwc;
1322
1323 config.gfx_client = true;
1324
1325 // Populate default params.
1326 config.secure = false;
1327 config.cache = false;
1328 config.secure_camera = false;
1329
1330 error = buffer_allocator_->AllocateBuffer(&buffer_info_);
1331
1332 if (error != kErrorNone) {
1333 DLOGE("Failed to allocate buffer. Error: %d", error);
1334 return false;
1335 }
1336
1337 return true;
1338}
1339
1340void HWCDisplayBuiltIn::InitStitchTarget() {
1341 LayerBuffer buffer = {};
1342 buffer.planes[0].fd = buffer_info_.alloc_buffer_info.fd;
1343 buffer.planes[0].offset = 0;
1344 buffer.planes[0].stride = buffer_info_.alloc_buffer_info.stride;
1345 buffer.size = buffer_info_.alloc_buffer_info.size;
1346 buffer.handle_id = buffer_info_.alloc_buffer_info.id;
1347 buffer.width = buffer_info_.alloc_buffer_info.aligned_width;
1348 buffer.height = buffer_info_.alloc_buffer_info.aligned_height;
1349 buffer.unaligned_width = fb_config_.x_pixels;
Pullakavi Srinivasdb2b84a2019-11-21 14:47:35 +05301350 buffer.unaligned_height = fb_config_.y_pixels * kBufferHeightFactor;
Pullakavi Srinivas1ae4acb2019-11-18 19:33:45 +05301351 buffer.format = buffer_info_.alloc_buffer_info.format;
1352
1353 Layer *sdm_stitch_target = stitch_target_->GetSDMLayer();
1354 sdm_stitch_target->composition = kCompositionStitchTarget;
1355 sdm_stitch_target->input_buffer = buffer;
1356 sdm_stitch_target->input_buffer.buffer_id = reinterpret_cast<uint64_t>(buffer_info_.private_data);
1357}
1358
1359void HWCDisplayBuiltIn::AppendStitchLayer() {
1360 if (disable_layer_stitch_) {
1361 return;
1362 }
1363
1364 // Append stitch target buffer to layer stack.
1365 Layer *sdm_stitch_target = stitch_target_->GetSDMLayer();
1366 sdm_stitch_target->composition = kCompositionStitchTarget;
Pullakavi Srinivasdb2b84a2019-11-21 14:47:35 +05301367 sdm_stitch_target->dst_rect = {0, 0, FLOAT(fb_config_.x_pixels), FLOAT(fb_config_.y_pixels)};
Pullakavi Srinivas1ae4acb2019-11-18 19:33:45 +05301368 layer_stack_.layers.push_back(sdm_stitch_target);
1369}
1370
Lakshmi Narayana Kalavalae0127eb2019-12-03 11:07:26 -08001371DisplayError HWCDisplayBuiltIn::HistogramEvent(int fd, uint32_t blob_id) {
1372 histogram.notify_histogram_event(fd, blob_id);
1373 return kErrorNone;
1374}
Pullakavi Srinivasdb2b84a2019-11-21 14:47:35 +05301375
1376int HWCDisplayBuiltIn::PostInit() {
1377 auto status = InitLayerStitch();
1378 if (!status) {
1379 DLOGW("Failed to initialize Layer Stitch context");
1380 // Disable layer stitch.
1381 disable_layer_stitch_ = true;
1382 }
1383
1384 return 0;
1385}
1386
Venkat Thogaru8e9b1242020-03-30 19:25:24 +05301387bool HWCDisplayBuiltIn::HasReadBackBufferSupport() {
1388 DisplayConfigFixedInfo fixed_info = {};
1389 display_intf_->GetConfig(&fixed_info);
1390
1391 return fixed_info.readback_supported;
1392}
1393
Naseer Ahmedb92e73f2016-03-12 02:03:48 -05001394} // namespace sdm