blob: ba6cae7945e4a5c099e022299f05ef9a46e533d3 [file] [log] [blame]
Naseer Ahmed7c958d42012-07-31 18:57:03 -07001/*
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08002 * Copyright (C) 2012-2013, The Linux Foundation. All rights reserved.
Naseer Ahmed7c958d42012-07-31 18:57:03 -07003 * Not a Contribution, Apache license notifications and license are retained
4 * for attribution purposes only.
5 *
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 */
18
Saurabh Shah4fdde762013-04-30 18:47:33 -070019#include <math.h>
Naseer Ahmed7c958d42012-07-31 18:57:03 -070020#include "hwc_mdpcomp.h"
Naseer Ahmed54821fe2012-11-28 18:44:38 -050021#include <sys/ioctl.h>
Saurabh Shah56f610d2012-08-07 15:27:06 -070022#include "external.h"
Ramkumar Radhakrishnan47573e22012-11-07 11:36:41 -080023#include "qdMetaData.h"
Ramkumar Radhakrishnan288f8c72013-01-15 11:37:54 -080024#include "mdp_version.h"
Saurabh Shahacf10202013-02-26 10:15:15 -080025#include <overlayRotator.h>
26
Saurabh Shah85234ec2013-04-12 17:09:00 -070027using namespace overlay;
Saurabh Shahbd2d0832013-04-04 14:33:08 -070028using namespace qdutils;
Saurabh Shahacf10202013-02-26 10:15:15 -080029using namespace overlay::utils;
30namespace ovutils = overlay::utils;
Naseer Ahmed7c958d42012-07-31 18:57:03 -070031
Naseer Ahmed7c958d42012-07-31 18:57:03 -070032namespace qhwc {
33
Saurabh Shahcbf7ccc2012-12-19 16:45:51 -080034//==============MDPComp========================================================
35
Naseer Ahmed7c958d42012-07-31 18:57:03 -070036IdleInvalidator *MDPComp::idleInvalidator = NULL;
37bool MDPComp::sIdleFallBack = false;
38bool MDPComp::sDebugLogs = false;
Naseer Ahmed54821fe2012-11-28 18:44:38 -050039bool MDPComp::sEnabled = false;
Jeykumar Sankaran24c199d2013-05-24 09:40:36 -070040bool MDPComp::sEnableMixedMode = true;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -080041int MDPComp::sMaxPipesPerMixer = MAX_PIPES_PER_MIXER;
Naseer Ahmed7c958d42012-07-31 18:57:03 -070042
Jeykumar Sankaran85977e32013-02-25 17:06:08 -080043MDPComp* MDPComp::getObject(const int& width, int dpy) {
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -080044 if(width <= MAX_DISPLAY_DIM) {
Jeykumar Sankaran85977e32013-02-25 17:06:08 -080045 return new MDPCompLowRes(dpy);
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -080046 } else {
Jeykumar Sankaran85977e32013-02-25 17:06:08 -080047 return new MDPCompHighRes(dpy);
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -080048 }
Saurabh Shahcbf7ccc2012-12-19 16:45:51 -080049}
50
Jeykumar Sankaran85977e32013-02-25 17:06:08 -080051MDPComp::MDPComp(int dpy):mDpy(dpy){};
52
Saurabh Shahcbf7ccc2012-12-19 16:45:51 -080053void MDPComp::dump(android::String8& buf)
54{
Jeykumar Sankaran85977e32013-02-25 17:06:08 -080055 dumpsys_log(buf,"HWC Map for Dpy: %s \n",
56 mDpy ? "\"EXTERNAL\"" : "\"PRIMARY\"");
57 dumpsys_log(buf,"PREV_FRAME: layerCount:%2d mdpCount:%2d \
58 cacheCount:%2d \n", mCachedFrame.layerCount,
59 mCachedFrame.mdpCount, mCachedFrame.cacheCount);
60 dumpsys_log(buf,"CURR_FRAME: layerCount:%2d mdpCount:%2d \
61 fbCount:%2d \n", mCurrentFrame.layerCount,
62 mCurrentFrame.mdpCount, mCurrentFrame.fbCount);
63 dumpsys_log(buf,"needsFBRedraw:%3s pipesUsed:%2d MaxPipesPerMixer: %d \n",
64 (mCurrentFrame.needsRedraw? "YES" : "NO"),
65 mCurrentFrame.mdpCount, sMaxPipesPerMixer);
66 dumpsys_log(buf," --------------------------------------------- \n");
67 dumpsys_log(buf," listIdx | cached? | mdpIndex | comptype | Z \n");
68 dumpsys_log(buf," --------------------------------------------- \n");
69 for(int index = 0; index < mCurrentFrame.layerCount; index++ )
70 dumpsys_log(buf," %7d | %7s | %8d | %9s | %2d \n",
71 index,
72 (mCurrentFrame.isFBComposed[index] ? "YES" : "NO"),
73 mCurrentFrame.layerToMDP[index],
74 (mCurrentFrame.isFBComposed[index] ?
75 (mCurrentFrame.needsRedraw ? "GLES" : "CACHE") : "MDP"),
76 (mCurrentFrame.isFBComposed[index] ? mCurrentFrame.fbZ :
77 mCurrentFrame.mdpToLayer[mCurrentFrame.layerToMDP[index]].pipeInfo->zOrder));
78 dumpsys_log(buf,"\n");
Saurabh Shahcbf7ccc2012-12-19 16:45:51 -080079}
80
81bool MDPComp::init(hwc_context_t *ctx) {
82
83 if(!ctx) {
84 ALOGE("%s: Invalid hwc context!!",__FUNCTION__);
85 return false;
86 }
87
Saurabh Shahcbf7ccc2012-12-19 16:45:51 -080088 char property[PROPERTY_VALUE_MAX];
89
90 sEnabled = false;
91 if((property_get("persist.hwc.mdpcomp.enable", property, NULL) > 0) &&
Jeykumar Sankaran85977e32013-02-25 17:06:08 -080092 (!strncmp(property, "1", PROPERTY_VALUE_MAX ) ||
93 (!strncasecmp(property,"true", PROPERTY_VALUE_MAX )))) {
Saurabh Shahcbf7ccc2012-12-19 16:45:51 -080094 sEnabled = true;
Xiaoming Zhou944e02e2013-05-01 20:54:03 -040095 if(!setupBasePipe(ctx)) {
96 ALOGE("%s: Failed to setup primary base pipe", __FUNCTION__);
97 return false;
98 }
Saurabh Shahcbf7ccc2012-12-19 16:45:51 -080099 }
100
Jeykumar Sankaran24c199d2013-05-24 09:40:36 -0700101 sEnableMixedMode = true;
102 if((property_get("debug.mdpcomp.mixedmode.disable", property, NULL) > 0) &&
103 (!strncmp(property, "1", PROPERTY_VALUE_MAX ) ||
104 (!strncasecmp(property,"true", PROPERTY_VALUE_MAX )))) {
105 sEnableMixedMode = false;
106 }
107
Saurabh Shahcbf7ccc2012-12-19 16:45:51 -0800108 sDebugLogs = false;
109 if(property_get("debug.mdpcomp.logs", property, NULL) > 0) {
110 if(atoi(property) != 0)
111 sDebugLogs = true;
112 }
113
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800114 sMaxPipesPerMixer = MAX_PIPES_PER_MIXER;
Saurabh Shah85234ec2013-04-12 17:09:00 -0700115 if(property_get("debug.mdpcomp.maxpermixer", property, "-1") > 0) {
116 int val = atoi(property);
117 if(val >= 0)
118 sMaxPipesPerMixer = min(val, MAX_PIPES_PER_MIXER);
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800119 }
120
Saurabh Shahcbf7ccc2012-12-19 16:45:51 -0800121 unsigned long idle_timeout = DEFAULT_IDLE_TIME;
122 if(property_get("debug.mdpcomp.idletime", property, NULL) > 0) {
123 if(atoi(property) != 0)
124 idle_timeout = atoi(property);
125 }
126
127 //create Idle Invalidator
128 idleInvalidator = IdleInvalidator::getInstance();
129
130 if(idleInvalidator == NULL) {
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800131 ALOGE("%s: failed to instantiate idleInvalidator object", __FUNCTION__);
Saurabh Shahcbf7ccc2012-12-19 16:45:51 -0800132 } else {
133 idleInvalidator->init(timeout_handler, ctx, idle_timeout);
134 }
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700135 return true;
136}
137
138void MDPComp::timeout_handler(void *udata) {
139 struct hwc_context_t* ctx = (struct hwc_context_t*)(udata);
140
141 if(!ctx) {
142 ALOGE("%s: received empty data in timer callback", __FUNCTION__);
143 return;
144 }
145
Jesse Hall3be78d92012-08-21 15:12:23 -0700146 if(!ctx->proc) {
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700147 ALOGE("%s: HWC proc not registered", __FUNCTION__);
148 return;
149 }
150 sIdleFallBack = true;
151 /* Trigger SF to redraw the current frame */
Jesse Hall3be78d92012-08-21 15:12:23 -0700152 ctx->proc->invalidate(ctx->proc);
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700153}
154
Saurabh Shahcbf7ccc2012-12-19 16:45:51 -0800155void MDPComp::setMDPCompLayerFlags(hwc_context_t *ctx,
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800156 hwc_display_contents_1_t* list) {
157 LayerProp *layerProp = ctx->layerProp[mDpy];
Saurabh Shahcbf7ccc2012-12-19 16:45:51 -0800158
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800159 for(int index = 0; index < ctx->listStats[mDpy].numAppLayers; index++) {
Saurabh Shahcbf7ccc2012-12-19 16:45:51 -0800160 hwc_layer_1_t* layer = &(list->hwLayers[index]);
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800161 if(!mCurrentFrame.isFBComposed[index]) {
162 layerProp[index].mFlags |= HWC_MDPCOMP;
163 layer->compositionType = HWC_OVERLAY;
164 layer->hints |= HWC_HINT_CLEAR_FB;
165 mCachedFrame.hnd[index] = NULL;
166 } else {
167 if(!mCurrentFrame.needsRedraw)
168 layer->compositionType = HWC_OVERLAY;
Saurabh Shahcbf7ccc2012-12-19 16:45:51 -0800169 }
170 }
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700171}
Naseer Ahmed54821fe2012-11-28 18:44:38 -0500172
Saurabh Shahcbf7ccc2012-12-19 16:45:51 -0800173/*
174 * Sets up BORDERFILL as default base pipe and detaches RGB0.
175 * Framebuffer is always updated using PLAY ioctl.
176 */
177bool MDPComp::setupBasePipe(hwc_context_t *ctx) {
178 const int dpy = HWC_DISPLAY_PRIMARY;
179 int fb_stride = ctx->dpyAttr[dpy].stride;
180 int fb_width = ctx->dpyAttr[dpy].xres;
181 int fb_height = ctx->dpyAttr[dpy].yres;
182 int fb_fd = ctx->dpyAttr[dpy].fd;
183
184 mdp_overlay ovInfo;
185 msmfb_overlay_data ovData;
186 memset(&ovInfo, 0, sizeof(mdp_overlay));
187 memset(&ovData, 0, sizeof(msmfb_overlay_data));
188
189 ovInfo.src.format = MDP_RGB_BORDERFILL;
190 ovInfo.src.width = fb_width;
191 ovInfo.src.height = fb_height;
192 ovInfo.src_rect.w = fb_width;
193 ovInfo.src_rect.h = fb_height;
194 ovInfo.dst_rect.w = fb_width;
195 ovInfo.dst_rect.h = fb_height;
196 ovInfo.id = MSMFB_NEW_REQUEST;
197
198 if (ioctl(fb_fd, MSMFB_OVERLAY_SET, &ovInfo) < 0) {
199 ALOGE("Failed to call ioctl MSMFB_OVERLAY_SET err=%s",
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800200 strerror(errno));
Saurabh Shahcbf7ccc2012-12-19 16:45:51 -0800201 return false;
202 }
203
204 ovData.id = ovInfo.id;
205 if (ioctl(fb_fd, MSMFB_OVERLAY_PLAY, &ovData) < 0) {
206 ALOGE("Failed to call ioctl MSMFB_OVERLAY_PLAY err=%s",
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800207 strerror(errno));
Saurabh Shahcbf7ccc2012-12-19 16:45:51 -0800208 return false;
209 }
210 return true;
211}
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800212MDPComp::FrameInfo::FrameInfo() {
Saurabh Shahaa236822013-04-24 18:07:26 -0700213 reset(0);
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800214}
Saurabh Shahcbf7ccc2012-12-19 16:45:51 -0800215
Saurabh Shahaa236822013-04-24 18:07:26 -0700216void MDPComp::FrameInfo::reset(const int& numLayers) {
217 for(int i = 0 ; i < MAX_PIPES_PER_MIXER && numLayers; i++ ) {
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800218 if(mdpToLayer[i].pipeInfo) {
219 delete mdpToLayer[i].pipeInfo;
220 mdpToLayer[i].pipeInfo = NULL;
221 //We dont own the rotator
222 mdpToLayer[i].rot = NULL;
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800223 }
Saurabh Shahcbf7ccc2012-12-19 16:45:51 -0800224 }
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800225
226 memset(&mdpToLayer, 0, sizeof(mdpToLayer));
227 memset(&layerToMDP, -1, sizeof(layerToMDP));
Saurabh Shahaa236822013-04-24 18:07:26 -0700228 memset(&isFBComposed, 1, sizeof(isFBComposed));
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800229
Saurabh Shahaa236822013-04-24 18:07:26 -0700230 layerCount = numLayers;
231 fbCount = numLayers;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800232 mdpCount = 0;
Saurabh Shah2f3895f2013-05-02 10:13:31 -0700233 needsRedraw = true;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800234 fbZ = 0;
235}
236
Saurabh Shahaa236822013-04-24 18:07:26 -0700237void MDPComp::FrameInfo::map() {
238 // populate layer and MDP maps
239 int mdpIdx = 0;
240 for(int idx = 0; idx < layerCount; idx++) {
241 if(!isFBComposed[idx]) {
242 mdpToLayer[mdpIdx].listIndex = idx;
243 layerToMDP[idx] = mdpIdx++;
244 }
245 }
246}
247
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800248MDPComp::LayerCache::LayerCache() {
249 reset();
250}
251
252void MDPComp::LayerCache::reset() {
Saurabh Shahaa236822013-04-24 18:07:26 -0700253 memset(&hnd, 0, sizeof(hnd));
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800254 mdpCount = 0;
255 cacheCount = 0;
256 layerCount = 0;
Saurabh Shahaa236822013-04-24 18:07:26 -0700257 fbZ = -1;
258}
259
260void MDPComp::LayerCache::cacheAll(hwc_display_contents_1_t* list) {
261 const int numAppLayers = list->numHwLayers - 1;
262 for(int i = 0; i < numAppLayers; i++) {
263 hnd[i] = list->hwLayers[i].handle;
264 }
265}
266
267void MDPComp::LayerCache::updateCounts(const FrameInfo& curFrame) {
268 mdpCount = curFrame.mdpCount;
269 cacheCount = curFrame.fbCount;
270 layerCount = curFrame.layerCount;
271 fbZ = curFrame.fbZ;
Saurabh Shahcbf7ccc2012-12-19 16:45:51 -0800272}
273
Sravan Kumar D.V.Nad5d9292013-04-24 14:23:04 +0530274bool MDPComp::isValidDimension(hwc_context_t *ctx, hwc_layer_1_t *layer) {
Saurabh Shah4fdde762013-04-30 18:47:33 -0700275 const int dpy = HWC_DISPLAY_PRIMARY;
Jeykumar Sankaranc18dbc22013-02-08 14:29:44 -0800276 private_handle_t *hnd = (private_handle_t *)layer->handle;
277
278 if(!hnd) {
279 ALOGE("%s: layer handle is NULL", __FUNCTION__);
280 return false;
281 }
282
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800283 int hw_w = ctx->dpyAttr[mDpy].xres;
284 int hw_h = ctx->dpyAttr[mDpy].yres;
Jeykumar Sankaranc18dbc22013-02-08 14:29:44 -0800285
Saurabh Shah4fdde762013-04-30 18:47:33 -0700286 hwc_rect_t crop = layer->sourceCrop;
287 hwc_rect_t dst = layer->displayFrame;
Jeykumar Sankaranc18dbc22013-02-08 14:29:44 -0800288
289 if(dst.left < 0 || dst.top < 0 || dst.right > hw_w || dst.bottom > hw_h) {
Saurabh Shah4fdde762013-04-30 18:47:33 -0700290 hwc_rect_t scissor = {0, 0, hw_w, hw_h };
291 qhwc::calculate_crop_rects(crop, dst, scissor, layer->transform);
Jeykumar Sankaranc18dbc22013-02-08 14:29:44 -0800292 }
293
Saurabh Shah4fdde762013-04-30 18:47:33 -0700294 int crop_w = crop.right - crop.left;
295 int crop_h = crop.bottom - crop.top;
296 int dst_w = dst.right - dst.left;
297 int dst_h = dst.bottom - dst.top;
298 float w_dscale = ceilf((float)crop_w / (float)dst_w);
299 float h_dscale = ceilf((float)crop_h / (float)dst_h);
300
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800301 /* Workaround for MDP HW limitation in DSI command mode panels where
302 * FPS will not go beyond 30 if buffers on RGB pipes are of width or height
303 * less than 5 pixels
Sravan Kumar D.V.Nad5d9292013-04-24 14:23:04 +0530304 * There also is a HW limilation in MDP, minimum block size is 2x2
305 * Fallback to GPU if height is less than 2.
306 */
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800307 if((crop_w < 5)||(crop_h < 5))
Jeykumar Sankaranc18dbc22013-02-08 14:29:44 -0800308 return false;
309
Saurabh Shah4fdde762013-04-30 18:47:33 -0700310 const uint32_t downscale =
311 qdutils::MDPVersion::getInstance().getMaxMDPDownscale();
312 if(ctx->mMDP.version >= qdutils::MDSS_V5) {
313 /* Workaround for downscales larger than 4x.
314 * Will be removed once decimator block is enabled for MDSS
315 */
316 if(!qdutils::MDPVersion::getInstance().supportsDecimation()) {
317 if(crop_w > MAX_DISPLAY_DIM || w_dscale > downscale ||
318 h_dscale > downscale)
319 return false;
320 } else {
321 if(w_dscale > 64 || h_dscale > 64)
322 return false;
323 }
324 } else { //A-family
325 if(w_dscale > downscale || h_dscale > downscale)
326 return false;
327 }
328
Jeykumar Sankaranc18dbc22013-02-08 14:29:44 -0800329 return true;
330}
331
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800332ovutils::eDest MDPComp::getMdpPipe(hwc_context_t *ctx, ePipeType type) {
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800333 overlay::Overlay& ov = *ctx->mOverlay;
334 ovutils::eDest mdp_pipe = ovutils::OV_INVALID;
335
336 switch(type) {
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800337 case MDPCOMP_OV_DMA:
338 mdp_pipe = ov.nextPipe(ovutils::OV_MDP_PIPE_DMA, mDpy);
339 if(mdp_pipe != ovutils::OV_INVALID) {
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800340 return mdp_pipe;
341 }
342 case MDPCOMP_OV_ANY:
343 case MDPCOMP_OV_RGB:
344 mdp_pipe = ov.nextPipe(ovutils::OV_MDP_PIPE_RGB, mDpy);
345 if(mdp_pipe != ovutils::OV_INVALID) {
346 return mdp_pipe;
347 }
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800348
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800349 if(type == MDPCOMP_OV_RGB) {
350 //Requested only for RGB pipe
351 break;
352 }
353 case MDPCOMP_OV_VG:
354 return ov.nextPipe(ovutils::OV_MDP_PIPE_VG, mDpy);
355 default:
356 ALOGE("%s: Invalid pipe type",__FUNCTION__);
357 return ovutils::OV_INVALID;
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800358 };
359 return ovutils::OV_INVALID;
360}
361
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800362bool MDPComp::isFrameDoable(hwc_context_t *ctx) {
Saurabh Shahaa236822013-04-24 18:07:26 -0700363 bool ret = true;
Jeykumar Sankaran24c199d2013-05-24 09:40:36 -0700364 const int numAppLayers = ctx->listStats[mDpy].numAppLayers;
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800365
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800366 if(!isEnabled()) {
367 ALOGD_IF(isDebug(),"%s: MDP Comp. not enabled.", __FUNCTION__);
Saurabh Shahaa236822013-04-24 18:07:26 -0700368 ret = false;
Saurabh Shahd4e65852013-06-17 11:33:53 -0700369 } else if(qdutils::MDPVersion::getInstance().is8x26() &&
370 ctx->mVideoTransFlag &&
371 ctx->mExtDisplay->isExternalConnected()) {
372 //1 Padding round to shift pipes across mixers
373 ALOGD_IF(isDebug(),"%s: MDP Comp. video transition padding round",
374 __FUNCTION__);
375 ret = false;
Saurabh Shahaa236822013-04-24 18:07:26 -0700376 } else if(ctx->mExtDispConfiguring) {
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800377 ALOGD_IF( isDebug(),"%s: External Display connection is pending",
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800378 __FUNCTION__);
Saurabh Shahaa236822013-04-24 18:07:26 -0700379 ret = false;
Saurabh Shahaa236822013-04-24 18:07:26 -0700380 } else if(ctx->isPaddingRound) {
Saurabh Shah0ceeb6a2013-04-23 10:46:07 -0700381 ctx->isPaddingRound = false;
382 ALOGD_IF(isDebug(), "%s: padding round",__FUNCTION__);
Saurabh Shahaa236822013-04-24 18:07:26 -0700383 ret = false;
Saurabh Shah0ceeb6a2013-04-23 10:46:07 -0700384 }
Saurabh Shahaa236822013-04-24 18:07:26 -0700385 return ret;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800386}
387
388/* Checks for conditions where all the layers marked for MDP comp cannot be
389 * bypassed. On such conditions we try to bypass atleast YUV layers */
390bool MDPComp::isFullFrameDoable(hwc_context_t *ctx,
391 hwc_display_contents_1_t* list){
392
Saurabh Shahaa236822013-04-24 18:07:26 -0700393 const int numAppLayers = ctx->listStats[mDpy].numAppLayers;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800394
Saurabh Shah2d998a92013-05-14 17:55:58 -0700395 if(sIdleFallBack) {
396 ALOGD_IF(isDebug(), "%s: Idle fallback dpy %d",__FUNCTION__, mDpy);
397 return false;
398 }
399
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800400 if(mDpy > HWC_DISPLAY_PRIMARY){
401 ALOGD_IF(isDebug(), "%s: Cannot support External display(s)",
402 __FUNCTION__);
403 return false;
404 }
405
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800406 if(isSkipPresent(ctx, mDpy)) {
Saurabh Shahaa236822013-04-24 18:07:26 -0700407 ALOGD_IF(isDebug(),"%s: SKIP present: %d",
408 __FUNCTION__,
409 isSkipPresent(ctx, mDpy));
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800410 return false;
411 }
412
Saurabh Shah9f084ad2013-05-02 11:28:09 -0700413 if(ctx->listStats[mDpy].needsAlphaScale
414 && ctx->mMDP.version < qdutils::MDSS_V5) {
415 ALOGD_IF(isDebug(), "%s: frame needs alpha downscaling",__FUNCTION__);
416 return false;
417 }
418
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800419 //MDP composition is not efficient if layer needs rotator.
420 for(int i = 0; i < numAppLayers; ++i) {
421 // As MDP h/w supports flip operation, use MDP comp only for
422 // 180 transforms. Fail for any transform involving 90 (90, 270).
423 hwc_layer_1_t* layer = &list->hwLayers[i];
424 private_handle_t *hnd = (private_handle_t *)layer->handle;
Jeykumar Sankarana37fdbf2013-03-06 18:59:28 -0800425
Saurabh Shah4fdde762013-04-30 18:47:33 -0700426 if((layer->transform & HWC_TRANSFORM_ROT_90) && !isYuvBuffer(hnd)) {
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800427 ALOGD_IF(isDebug(), "%s: orientation involved",__FUNCTION__);
428 return false;
429 }
430
Saurabh Shah4fdde762013-04-30 18:47:33 -0700431 if(!isValidDimension(ctx,layer)) {
432 ALOGD_IF(isDebug(), "%s: Buffer is of invalid width",
433 __FUNCTION__);
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800434 return false;
435 }
Prabhanjan Kandula9fb032a2013-06-18 17:37:22 +0530436
437 //For 8x26 with panel width>1k, if RGB layer needs HFLIP fail mdp comp
438 // may not need it if Gfx pre-rotation can handle all flips & rotations
439 if(qdutils::MDPVersion::getInstance().is8x26() &&
440 (ctx->dpyAttr[mDpy].xres > 1024) &&
441 (layer->transform & HWC_TRANSFORM_FLIP_H) &&
442 (!isYuvBuffer(hnd)))
443 return false;
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800444 }
Saurabh Shahaa236822013-04-24 18:07:26 -0700445
446 //If all above hard conditions are met we can do full or partial MDP comp.
447 bool ret = false;
448 if(fullMDPComp(ctx, list)) {
449 ret = true;
Jeykumar Sankaran24c199d2013-05-24 09:40:36 -0700450 } else if(partialMDPComp(ctx, list)) {
Saurabh Shahaa236822013-04-24 18:07:26 -0700451 ret = true;
452 }
453 return ret;
454}
455
456bool MDPComp::fullMDPComp(hwc_context_t *ctx, hwc_display_contents_1_t* list) {
457 //Setup mCurrentFrame
458 mCurrentFrame.mdpCount = mCurrentFrame.layerCount;
459 mCurrentFrame.fbCount = 0;
460 mCurrentFrame.fbZ = -1;
461 memset(&mCurrentFrame.isFBComposed, 0, sizeof(mCurrentFrame.isFBComposed));
462
463 int mdpCount = mCurrentFrame.mdpCount;
464 if(mdpCount > sMaxPipesPerMixer) {
465 ALOGD_IF(isDebug(), "%s: Exceeds MAX_PIPES_PER_MIXER",__FUNCTION__);
466 return false;
467 }
468
469 int numPipesNeeded = pipesNeeded(ctx, list);
470 int availPipes = getAvailablePipes(ctx);
471
472 if(numPipesNeeded > availPipes) {
473 ALOGD_IF(isDebug(), "%s: Insufficient MDP pipes, needed %d, avail %d",
474 __FUNCTION__, numPipesNeeded, availPipes);
475 return false;
476 }
477
478 return true;
479}
480
481bool MDPComp::partialMDPComp(hwc_context_t *ctx, hwc_display_contents_1_t* list)
482{
483 int numAppLayers = ctx->listStats[mDpy].numAppLayers;
Jeykumar Sankaran24c199d2013-05-24 09:40:36 -0700484
485 if(!sEnableMixedMode) {
486 //Mixed mode is disabled. No need to even try caching.
487 return false;
488 }
489
Saurabh Shahaa236822013-04-24 18:07:26 -0700490 //Setup mCurrentFrame
491 mCurrentFrame.reset(numAppLayers);
492 updateLayerCache(ctx, list);
493 updateYUV(ctx, list);
494 batchLayers(); //sets up fbZ also
495
496 int mdpCount = mCurrentFrame.mdpCount;
497 if(mdpCount > (sMaxPipesPerMixer - 1)) { // -1 since FB is used
498 ALOGD_IF(isDebug(), "%s: Exceeds MAX_PIPES_PER_MIXER",__FUNCTION__);
499 return false;
500 }
501
502 int numPipesNeeded = pipesNeeded(ctx, list);
503 int availPipes = getAvailablePipes(ctx);
504
505 if(numPipesNeeded > availPipes) {
506 ALOGD_IF(isDebug(), "%s: Insufficient MDP pipes, needed %d, avail %d",
507 __FUNCTION__, numPipesNeeded, availPipes);
508 return false;
509 }
510
511 return true;
512}
513
514bool MDPComp::isOnlyVideoDoable(hwc_context_t *ctx,
515 hwc_display_contents_1_t* list){
516 int numAppLayers = ctx->listStats[mDpy].numAppLayers;
517 mCurrentFrame.reset(numAppLayers);
518 updateYUV(ctx, list);
Saurabh Shah4fdde762013-04-30 18:47:33 -0700519 int mdpCount = mCurrentFrame.mdpCount;
Saurabh Shahaa236822013-04-24 18:07:26 -0700520 int fbNeeded = int(mCurrentFrame.fbCount != 0);
521
522 if(!isYuvPresent(ctx, mDpy)) {
523 return false;
524 }
525
Saurabh Shah4fdde762013-04-30 18:47:33 -0700526 if(!mdpCount)
527 return false;
528
Saurabh Shahaa236822013-04-24 18:07:26 -0700529 if(mdpCount > (sMaxPipesPerMixer - fbNeeded)) {
530 ALOGD_IF(isDebug(), "%s: Exceeds MAX_PIPES_PER_MIXER",__FUNCTION__);
531 return false;
532 }
533
534 int numPipesNeeded = pipesNeeded(ctx, list);
535 int availPipes = getAvailablePipes(ctx);
536 if(numPipesNeeded > availPipes) {
537 ALOGD_IF(isDebug(), "%s: Insufficient MDP pipes, needed %d, avail %d",
538 __FUNCTION__, numPipesNeeded, availPipes);
539 return false;
540 }
541
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800542 return true;
543}
544
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800545/* Checks for conditions where YUV layers cannot be bypassed */
546bool MDPComp::isYUVDoable(hwc_context_t* ctx, hwc_layer_1_t* layer) {
Saurabh Shahe2474082013-05-15 16:32:13 -0700547 bool extAnimBlockFeature = mDpy && ctx->listStats[mDpy].isDisplayAnimating;
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800548
Saurabh Shahe2474082013-05-15 16:32:13 -0700549 if(isSkipLayer(layer) && !extAnimBlockFeature) {
550 ALOGD_IF(isDebug(), "%s: Video marked SKIP dpy %d", __FUNCTION__, mDpy);
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800551 return false;
552 }
553
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800554 if(isSecuring(ctx, layer)) {
555 ALOGD_IF(isDebug(), "%s: MDP securing is active", __FUNCTION__);
556 return false;
557 }
558
Saurabh Shah4fdde762013-04-30 18:47:33 -0700559 if(!isValidDimension(ctx, layer)) {
560 ALOGD_IF(isDebug(), "%s: Buffer is of invalid width",
561 __FUNCTION__);
562 return false;
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800563 }
Saurabh Shah4fdde762013-04-30 18:47:33 -0700564
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800565 return true;
566}
567
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800568void MDPComp::batchLayers() {
569 /* Idea is to keep as many contiguous non-updating(cached) layers in FB and
570 * send rest of them through MDP. NEVER mark an updating layer for caching.
571 * But cached ones can be marked for MDP*/
572
573 int maxBatchStart = -1;
574 int maxBatchCount = 0;
575
576 /* All or Nothing is cached. No batching needed */
Saurabh Shahaa236822013-04-24 18:07:26 -0700577 if(!mCurrentFrame.fbCount) {
578 mCurrentFrame.fbZ = -1;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800579 return;
Saurabh Shahaa236822013-04-24 18:07:26 -0700580 }
581 if(!mCurrentFrame.mdpCount) {
582 mCurrentFrame.fbZ = 0;
583 return;
584 }
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800585
586 /* Search for max number of contiguous (cached) layers */
587 int i = 0;
588 while (i < mCurrentFrame.layerCount) {
589 int count = 0;
590 while(mCurrentFrame.isFBComposed[i] && i < mCurrentFrame.layerCount) {
591 count++; i++;
592 }
593 if(count > maxBatchCount) {
594 maxBatchCount = count;
595 maxBatchStart = i - count;
Saurabh Shahaa236822013-04-24 18:07:26 -0700596 mCurrentFrame.fbZ = maxBatchStart;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800597 }
598 if(i < mCurrentFrame.layerCount) i++;
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800599 }
600
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800601 /* reset rest of the layers for MDP comp */
602 for(int i = 0; i < mCurrentFrame.layerCount; i++) {
603 if(i != maxBatchStart){
604 mCurrentFrame.isFBComposed[i] = false;
605 } else {
606 i += maxBatchCount;
607 }
608 }
609
610 mCurrentFrame.fbCount = maxBatchCount;
Saurabh Shahaa236822013-04-24 18:07:26 -0700611 mCurrentFrame.mdpCount = mCurrentFrame.layerCount -
612 mCurrentFrame.fbCount;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800613
614 ALOGD_IF(isDebug(),"%s: cached count: %d",__FUNCTION__,
615 mCurrentFrame.fbCount);
616}
Saurabh Shah85234ec2013-04-12 17:09:00 -0700617
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800618void MDPComp::updateLayerCache(hwc_context_t* ctx,
619 hwc_display_contents_1_t* list) {
620
621 int numAppLayers = ctx->listStats[mDpy].numAppLayers;
622 int numCacheableLayers = 0;
623
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800624 for(int i = 0; i < numAppLayers; i++) {
625 if (mCachedFrame.hnd[i] == list->hwLayers[i].handle) {
626 numCacheableLayers++;
627 mCurrentFrame.isFBComposed[i] = true;
628 } else {
Saurabh Shahaa236822013-04-24 18:07:26 -0700629 mCurrentFrame.isFBComposed[i] = false;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800630 mCachedFrame.hnd[i] = list->hwLayers[i].handle;
631 }
632 }
Saurabh Shahaa236822013-04-24 18:07:26 -0700633
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800634 mCurrentFrame.fbCount = numCacheableLayers;
Saurabh Shahaa236822013-04-24 18:07:26 -0700635 mCurrentFrame.mdpCount = mCurrentFrame.layerCount -
636 mCurrentFrame.fbCount;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800637 ALOGD_IF(isDebug(),"%s: cached count: %d",__FUNCTION__, numCacheableLayers);
638}
639
640int MDPComp::getAvailablePipes(hwc_context_t* ctx) {
641 int numDMAPipes = qdutils::MDPVersion::getInstance().getDMAPipes();
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800642 overlay::Overlay& ov = *ctx->mOverlay;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800643
644 int numAvailable = ov.availablePipes(mDpy);
645
646 //Reserve DMA for rotator
Saurabh Shah85234ec2013-04-12 17:09:00 -0700647 if(Overlay::getDMAMode() == Overlay::DMA_BLOCK_MODE)
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800648 numAvailable -= numDMAPipes;
649
650 //Reserve pipe(s)for FB
651 if(mCurrentFrame.fbCount)
652 numAvailable -= pipesForFB();
653
654 return numAvailable;
655}
656
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800657void MDPComp::updateYUV(hwc_context_t* ctx, hwc_display_contents_1_t* list) {
658
659 int nYuvCount = ctx->listStats[mDpy].yuvCount;
Ramkumar Radhakrishnan59a11072013-04-15 16:14:49 -0700660 if(!nYuvCount && mDpy) {
661 //Reset "No animation on external display" related parameters.
662 ctx->mPrevCropVideo.left = ctx->mPrevCropVideo.top =
663 ctx->mPrevCropVideo.right = ctx->mPrevCropVideo.bottom = 0;
664 ctx->mPrevDestVideo.left = ctx->mPrevDestVideo.top =
665 ctx->mPrevDestVideo.right = ctx->mPrevDestVideo.bottom = 0;
666 ctx->mPrevTransformVideo = 0;
667 return;
668 }
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800669 for(int index = 0;index < nYuvCount; index++){
670 int nYuvIndex = ctx->listStats[mDpy].yuvIndices[index];
671 hwc_layer_1_t* layer = &list->hwLayers[nYuvIndex];
672
673 if(!isYUVDoable(ctx, layer)) {
674 if(!mCurrentFrame.isFBComposed[nYuvIndex]) {
675 mCurrentFrame.isFBComposed[nYuvIndex] = true;
676 mCurrentFrame.fbCount++;
677 }
678 } else {
679 if(mCurrentFrame.isFBComposed[nYuvIndex]) {
680 mCurrentFrame.isFBComposed[nYuvIndex] = false;
681 mCurrentFrame.fbCount--;
682 }
683 }
684 }
Saurabh Shahaa236822013-04-24 18:07:26 -0700685
686 mCurrentFrame.mdpCount = mCurrentFrame.layerCount -
687 mCurrentFrame.fbCount;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800688 ALOGD_IF(isDebug(),"%s: cached count: %d",__FUNCTION__,
689 mCurrentFrame.fbCount);
690}
691
Saurabh Shahaa236822013-04-24 18:07:26 -0700692bool MDPComp::programMDP(hwc_context_t *ctx, hwc_display_contents_1_t* list) {
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800693 if(!allocLayerPipes(ctx, list)) {
694 ALOGD_IF(isDebug(), "%s: Unable to allocate MDP pipes", __FUNCTION__);
Saurabh Shahaa236822013-04-24 18:07:26 -0700695 return false;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800696 }
697
Saurabh Shahaa236822013-04-24 18:07:26 -0700698 bool fbBatch = false;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800699 for (int index = 0, mdpNextZOrder = 0; index < mCurrentFrame.layerCount;
Saurabh Shahaa236822013-04-24 18:07:26 -0700700 index++) {
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800701 if(!mCurrentFrame.isFBComposed[index]) {
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800702 int mdpIndex = mCurrentFrame.layerToMDP[index];
703 hwc_layer_1_t* layer = &list->hwLayers[index];
704
705 MdpPipeInfo* cur_pipe = mCurrentFrame.mdpToLayer[mdpIndex].pipeInfo;
706 cur_pipe->zOrder = mdpNextZOrder++;
707
708 if(configure(ctx, layer, mCurrentFrame.mdpToLayer[mdpIndex]) != 0 ){
709 ALOGD_IF(isDebug(), "%s: Failed to configure overlay for \
710 layer %d",__FUNCTION__, index);
Saurabh Shahaa236822013-04-24 18:07:26 -0700711 return false;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800712 }
Saurabh Shahaa236822013-04-24 18:07:26 -0700713 } else if(fbBatch == false) {
714 mdpNextZOrder++;
715 fbBatch = true;
716 }
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800717 }
718
Saurabh Shahaa236822013-04-24 18:07:26 -0700719 return true;
720}
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800721
Saurabh Shahaa236822013-04-24 18:07:26 -0700722bool MDPComp::programYUV(hwc_context_t *ctx, hwc_display_contents_1_t* list) {
723 if(!allocLayerPipes(ctx, list)) {
724 ALOGD_IF(isDebug(), "%s: Unable to allocate MDP pipes", __FUNCTION__);
725 return false;
726 }
727 //If we are in this block, it means we have yuv + rgb layers both
728 int mdpIdx = 0;
729 for (int index = 0; index < mCurrentFrame.layerCount; index++) {
730 if(!mCurrentFrame.isFBComposed[index]) {
731 hwc_layer_1_t* layer = &list->hwLayers[index];
732 int mdpIndex = mCurrentFrame.layerToMDP[index];
733 MdpPipeInfo* cur_pipe =
734 mCurrentFrame.mdpToLayer[mdpIndex].pipeInfo;
735 cur_pipe->zOrder = mdpIdx++;
736
737 if(configure(ctx, layer,
738 mCurrentFrame.mdpToLayer[mdpIndex]) != 0 ){
739 ALOGD_IF(isDebug(), "%s: Failed to configure overlay for \
740 layer %d",__FUNCTION__, index);
741 return false;
742 }
743 }
744 }
745 return true;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800746}
747
748int MDPComp::prepare(hwc_context_t *ctx, hwc_display_contents_1_t* list) {
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800749
Saurabh Shahaa236822013-04-24 18:07:26 -0700750 const int numLayers = ctx->listStats[mDpy].numAppLayers;
Ramkumar Radhakrishnanc5893f12013-06-06 19:43:53 -0700751
752 //number of app layers exceeds MAX_NUM_APP_LAYERS fall back to GPU
753 //do not cache the information for next draw cycle.
754 if(numLayers > MAX_NUM_APP_LAYERS) {
755 ALOGD_IF(isDebug(), "%s: Number of App layers exceeded the limit ",
756 __FUNCTION__);
757 return 0;
758 }
759 //reset old data
Saurabh Shahaa236822013-04-24 18:07:26 -0700760 mCurrentFrame.reset(numLayers);
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800761
Saurabh Shahaa236822013-04-24 18:07:26 -0700762 //Hard conditions, if not met, cannot do MDP comp
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800763 if(!isFrameDoable(ctx)) {
764 ALOGD_IF( isDebug(),"%s: MDP Comp not possible for this frame",
765 __FUNCTION__);
Saurabh Shahaa236822013-04-24 18:07:26 -0700766 mCurrentFrame.reset(numLayers);
767 mCachedFrame.cacheAll(list);
768 mCachedFrame.updateCounts(mCurrentFrame);
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800769 return 0;
770 }
771
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800772 //Check whether layers marked for MDP Composition is actually doable.
Saurabh Shahaa236822013-04-24 18:07:26 -0700773 if(isFullFrameDoable(ctx, list)){
Saurabh Shah2f3895f2013-05-02 10:13:31 -0700774 mCurrentFrame.map();
775 //Acquire and Program MDP pipes
776 if(!programMDP(ctx, list)) {
777 mCurrentFrame.reset(numLayers);
778 mCachedFrame.cacheAll(list);
779 } else { //Success
780 //Any change in composition types needs an FB refresh
781 mCurrentFrame.needsRedraw = false;
782 if(mCurrentFrame.fbCount &&
783 ((mCurrentFrame.mdpCount != mCachedFrame.mdpCount) ||
784 (mCurrentFrame.fbCount != mCachedFrame.cacheCount) ||
785 (mCurrentFrame.fbZ != mCachedFrame.fbZ) ||
786 (!mCurrentFrame.mdpCount) ||
787 (list->flags & HWC_GEOMETRY_CHANGED) ||
788 isSkipPresent(ctx, mDpy) ||
789 (mDpy > HWC_DISPLAY_PRIMARY))) {
790 mCurrentFrame.needsRedraw = true;
Saurabh Shahaa236822013-04-24 18:07:26 -0700791 }
792 }
793 } else if(isOnlyVideoDoable(ctx, list)) {
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800794 //All layers marked for MDP comp cannot be bypassed.
795 //Try to compose atleast YUV layers through MDP comp and let
796 //all the RGB layers compose in FB
Saurabh Shahaa236822013-04-24 18:07:26 -0700797 //Destination over
798 mCurrentFrame.fbZ = -1;
799 if(mCurrentFrame.fbCount)
Saurabh Shahe8e76272013-06-12 16:08:06 -0700800 mCurrentFrame.fbZ = mCurrentFrame.mdpCount;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800801
Saurabh Shahaa236822013-04-24 18:07:26 -0700802 mCurrentFrame.map();
803 if(!programYUV(ctx, list)) {
804 mCurrentFrame.reset(numLayers);
805 mCachedFrame.cacheAll(list);
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800806 }
Saurabh Shahaa236822013-04-24 18:07:26 -0700807 } else {
808 mCurrentFrame.reset(numLayers);
809 mCachedFrame.cacheAll(list);
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800810 }
811
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800812 //UpdateLayerFlags
813 setMDPCompLayerFlags(ctx, list);
Saurabh Shahaa236822013-04-24 18:07:26 -0700814 mCachedFrame.updateCounts(mCurrentFrame);
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800815
816 if(isDebug()) {
Saurabh Shahaa236822013-04-24 18:07:26 -0700817 ALOGD("GEOMETRY change: %d", (list->flags & HWC_GEOMETRY_CHANGED));
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800818 android::String8 sDump("");
819 dump(sDump);
820 ALOGE("%s",sDump.string());
821 }
822
823 return mCurrentFrame.fbZ;
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800824}
825
826//=============MDPCompLowRes===================================================
827
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700828/*
829 * Configures pipe(s) for MDP composition
830 */
Saurabh Shahcbf7ccc2012-12-19 16:45:51 -0800831int MDPCompLowRes::configure(hwc_context_t *ctx, hwc_layer_1_t *layer,
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800832 PipeLayerPair& PipeLayerPair) {
Saurabh Shahacf10202013-02-26 10:15:15 -0800833 MdpPipeInfoLowRes& mdp_info =
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800834 *(static_cast<MdpPipeInfoLowRes*>(PipeLayerPair.pipeInfo));
Saurabh Shahacf10202013-02-26 10:15:15 -0800835 eMdpFlags mdpFlags = OV_MDP_BACKEND_COMPOSITION;
836 eZorder zOrder = static_cast<eZorder>(mdp_info.zOrder);
837 eIsFg isFg = IS_FG_OFF;
838 eDest dest = mdp_info.index;
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700839
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800840 ALOGD_IF(isDebug(),"%s: configuring: layer: %p z_order: %d dest_pipe: %d",
841 __FUNCTION__, layer, zOrder, dest);
842
843 return configureLowRes(ctx, layer, mDpy, mdpFlags, zOrder, isFg, dest,
844 &PipeLayerPair.rot);
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700845}
846
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800847int MDPCompLowRes::pipesNeeded(hwc_context_t *ctx,
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800848 hwc_display_contents_1_t* list) {
849 return mCurrentFrame.mdpCount;
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700850}
851
Saurabh Shahcbf7ccc2012-12-19 16:45:51 -0800852bool MDPCompLowRes::allocLayerPipes(hwc_context_t *ctx,
Saurabh Shahe51f8ca2013-05-06 17:26:16 -0700853 hwc_display_contents_1_t* list) {
854 for(int index = 0; index < mCurrentFrame.layerCount; index++) {
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700855
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800856 if(mCurrentFrame.isFBComposed[index]) continue;
Saurabh Shahe51f8ca2013-05-06 17:26:16 -0700857
Jeykumar Sankarancf537002013-01-21 21:19:15 -0800858 hwc_layer_1_t* layer = &list->hwLayers[index];
859 private_handle_t *hnd = (private_handle_t *)layer->handle;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800860 int mdpIndex = mCurrentFrame.layerToMDP[index];
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800861 PipeLayerPair& info = mCurrentFrame.mdpToLayer[mdpIndex];
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800862 info.pipeInfo = new MdpPipeInfoLowRes;
Saurabh Shahacf10202013-02-26 10:15:15 -0800863 info.rot = NULL;
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800864 MdpPipeInfoLowRes& pipe_info = *(MdpPipeInfoLowRes*)info.pipeInfo;
Jeykumar Sankarana37fdbf2013-03-06 18:59:28 -0800865 ePipeType type = MDPCOMP_OV_ANY;
866
Saurabh Shahe51f8ca2013-05-06 17:26:16 -0700867 if(isYuvBuffer(hnd)) {
868 type = MDPCOMP_OV_VG;
Saurabh Shah8a117932013-05-23 12:48:13 -0700869 } else if(!qhwc::needsScaling(ctx, layer, mDpy)
Saurabh Shah85234ec2013-04-12 17:09:00 -0700870 && Overlay::getDMAMode() != Overlay::DMA_BLOCK_MODE
871 && ctx->mMDP.version >= qdutils::MDSS_V5) {
Jeykumar Sankarana37fdbf2013-03-06 18:59:28 -0800872 type = MDPCOMP_OV_DMA;
873 }
874
875 pipe_info.index = getMdpPipe(ctx, type);
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800876 if(pipe_info.index == ovutils::OV_INVALID) {
Saurabh Shahe51f8ca2013-05-06 17:26:16 -0700877 ALOGD_IF(isDebug(), "%s: Unable to get pipe type = %d",
878 __FUNCTION__, (int) type);
Naseer Ahmed54821fe2012-11-28 18:44:38 -0500879 return false;
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700880 }
881 }
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700882 return true;
883}
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700884
Saurabh Shahcbf7ccc2012-12-19 16:45:51 -0800885bool MDPCompLowRes::draw(hwc_context_t *ctx, hwc_display_contents_1_t* list) {
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700886
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800887 if(!isEnabled()) {
Naseer Ahmed54821fe2012-11-28 18:44:38 -0500888 ALOGD_IF(isDebug(),"%s: MDP Comp not configured", __FUNCTION__);
889 return true;
Saurabh Shahcbf7ccc2012-12-19 16:45:51 -0800890 }
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700891
892 if(!ctx || !list) {
893 ALOGE("%s: invalid contxt or list",__FUNCTION__);
Naseer Ahmed54821fe2012-11-28 18:44:38 -0500894 return false;
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700895 }
896
Naseer Ahmed54821fe2012-11-28 18:44:38 -0500897 /* reset Invalidator */
Saurabh Shah2d998a92013-05-14 17:55:58 -0700898 if(idleInvalidator && !sIdleFallBack && mCurrentFrame.mdpCount)
Naseer Ahmed54821fe2012-11-28 18:44:38 -0500899 idleInvalidator->markForSleep();
900
901 overlay::Overlay& ov = *ctx->mOverlay;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800902 LayerProp *layerProp = ctx->layerProp[mDpy];
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700903
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800904 int numHwLayers = ctx->listStats[mDpy].numAppLayers;
905 for(int i = 0; i < numHwLayers && mCurrentFrame.mdpCount; i++ )
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700906 {
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800907 if(mCurrentFrame.isFBComposed[i]) continue;
908
Naseer Ahmed5b6708a2012-08-02 13:46:08 -0700909 hwc_layer_1_t *layer = &list->hwLayers[i];
Saurabh Shahacf10202013-02-26 10:15:15 -0800910 private_handle_t *hnd = (private_handle_t *)layer->handle;
911 if(!hnd) {
912 ALOGE("%s handle null", __FUNCTION__);
913 return false;
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700914 }
915
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800916 int mdpIndex = mCurrentFrame.layerToMDP[i];
917
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800918 MdpPipeInfoLowRes& pipe_info =
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800919 *(MdpPipeInfoLowRes*)mCurrentFrame.mdpToLayer[mdpIndex].pipeInfo;
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800920 ovutils::eDest dest = pipe_info.index;
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800921 if(dest == ovutils::OV_INVALID) {
922 ALOGE("%s: Invalid pipe index (%d)", __FUNCTION__, dest);
Naseer Ahmed54821fe2012-11-28 18:44:38 -0500923 return false;
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700924 }
925
Saurabh Shahacf10202013-02-26 10:15:15 -0800926 if(!(layerProp[i].mFlags & HWC_MDPCOMP)) {
927 continue;
928 }
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700929
Saurabh Shahacf10202013-02-26 10:15:15 -0800930 ALOGD_IF(isDebug(),"%s: MDP Comp: Drawing layer: %p hnd: %p \
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800931 using pipe: %d", __FUNCTION__, layer,
932 hnd, dest );
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700933
Saurabh Shahacf10202013-02-26 10:15:15 -0800934 int fd = hnd->fd;
935 uint32_t offset = hnd->offset;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800936 Rotator *rot = mCurrentFrame.mdpToLayer[mdpIndex].rot;
Saurabh Shahacf10202013-02-26 10:15:15 -0800937 if(rot) {
938 if(!rot->queueBuffer(fd, offset))
Naseer Ahmed54821fe2012-11-28 18:44:38 -0500939 return false;
Saurabh Shahacf10202013-02-26 10:15:15 -0800940 fd = rot->getDstMemId();
941 offset = rot->getDstOffset();
942 }
943
944 if (!ov.queueBuffer(fd, offset, dest)) {
945 ALOGE("%s: queueBuffer failed for external", __FUNCTION__);
946 return false;
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700947 }
Naseer Ahmed54821fe2012-11-28 18:44:38 -0500948
949 layerProp[i].mFlags &= ~HWC_MDPCOMP;
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700950 }
Naseer Ahmed54821fe2012-11-28 18:44:38 -0500951 return true;
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700952}
953
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800954//=============MDPCompHighRes===================================================
955
956int MDPCompHighRes::pipesNeeded(hwc_context_t *ctx,
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800957 hwc_display_contents_1_t* list) {
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800958 int pipesNeeded = 0;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800959 int hw_w = ctx->dpyAttr[mDpy].xres;
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800960
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800961 for(int i = 0; i < mCurrentFrame.layerCount; ++i) {
962 if(!mCurrentFrame.isFBComposed[i]) {
963 hwc_layer_1_t* layer = &list->hwLayers[i];
964 hwc_rect_t dst = layer->displayFrame;
965 if(dst.left > hw_w/2) {
966 pipesNeeded++;
967 } else if(dst.right <= hw_w/2) {
968 pipesNeeded++;
969 } else {
970 pipesNeeded += 2;
971 }
972 }
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800973 }
974 return pipesNeeded;
975}
976
977bool MDPCompHighRes::acquireMDPPipes(hwc_context_t *ctx, hwc_layer_1_t* layer,
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800978 MdpPipeInfoHighRes& pipe_info,
979 ePipeType type) {
980 int hw_w = ctx->dpyAttr[mDpy].xres;
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800981
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800982 hwc_rect_t dst = layer->displayFrame;
983 if(dst.left > hw_w/2) {
984 pipe_info.lIndex = ovutils::OV_INVALID;
985 pipe_info.rIndex = getMdpPipe(ctx, type);
986 if(pipe_info.rIndex == ovutils::OV_INVALID)
987 return false;
988 } else if (dst.right <= hw_w/2) {
989 pipe_info.rIndex = ovutils::OV_INVALID;
990 pipe_info.lIndex = getMdpPipe(ctx, type);
991 if(pipe_info.lIndex == ovutils::OV_INVALID)
992 return false;
993 } else {
994 pipe_info.rIndex = getMdpPipe(ctx, type);
995 pipe_info.lIndex = getMdpPipe(ctx, type);
996 if(pipe_info.rIndex == ovutils::OV_INVALID ||
997 pipe_info.lIndex == ovutils::OV_INVALID)
998 return false;
999 }
1000 return true;
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001001}
1002
1003bool MDPCompHighRes::allocLayerPipes(hwc_context_t *ctx,
Saurabh Shahe51f8ca2013-05-06 17:26:16 -07001004 hwc_display_contents_1_t* list) {
1005 for(int index = 0 ; index < mCurrentFrame.layerCount; index++) {
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001006
Saurabh Shahe51f8ca2013-05-06 17:26:16 -07001007 if(mCurrentFrame.isFBComposed[index]) continue;
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001008
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001009 hwc_layer_1_t* layer = &list->hwLayers[index];
1010 private_handle_t *hnd = (private_handle_t *)layer->handle;
Saurabh Shah0d65dbe2013-06-06 18:33:16 -07001011 int mdpIndex = mCurrentFrame.layerToMDP[index];
1012 PipeLayerPair& info = mCurrentFrame.mdpToLayer[mdpIndex];
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001013 info.pipeInfo = new MdpPipeInfoHighRes;
Saurabh Shah9e3adb22013-03-26 11:16:27 -07001014 info.rot = NULL;
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001015 MdpPipeInfoHighRes& pipe_info = *(MdpPipeInfoHighRes*)info.pipeInfo;
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001016 ePipeType type = MDPCOMP_OV_ANY;
1017
Saurabh Shahe51f8ca2013-05-06 17:26:16 -07001018 if(isYuvBuffer(hnd)) {
1019 type = MDPCOMP_OV_VG;
Saurabh Shah8a117932013-05-23 12:48:13 -07001020 } else if(!qhwc::needsScaling(ctx, layer, mDpy)
Saurabh Shah85234ec2013-04-12 17:09:00 -07001021 && Overlay::getDMAMode() != Overlay::DMA_BLOCK_MODE
Saurabh Shahe51f8ca2013-05-06 17:26:16 -07001022 && ctx->mMDP.version >= qdutils::MDSS_V5) {
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001023 type = MDPCOMP_OV_DMA;
Saurabh Shahe51f8ca2013-05-06 17:26:16 -07001024 }
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001025
1026 if(!acquireMDPPipes(ctx, layer, pipe_info, type)) {
Saurabh Shahe51f8ca2013-05-06 17:26:16 -07001027 ALOGD_IF(isDebug(), "%s: Unable to get pipe for type = %d",
1028 __FUNCTION__, (int) type);
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001029 return false;
1030 }
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001031 }
1032 return true;
1033}
1034/*
1035 * Configures pipe(s) for MDP composition
1036 */
1037int MDPCompHighRes::configure(hwc_context_t *ctx, hwc_layer_1_t *layer,
Jeykumar Sankaran85977e32013-02-25 17:06:08 -08001038 PipeLayerPair& PipeLayerPair) {
Saurabh Shahacf10202013-02-26 10:15:15 -08001039 MdpPipeInfoHighRes& mdp_info =
Jeykumar Sankaran85977e32013-02-25 17:06:08 -08001040 *(static_cast<MdpPipeInfoHighRes*>(PipeLayerPair.pipeInfo));
Saurabh Shahacf10202013-02-26 10:15:15 -08001041 eZorder zOrder = static_cast<eZorder>(mdp_info.zOrder);
1042 eIsFg isFg = IS_FG_OFF;
1043 eMdpFlags mdpFlagsL = OV_MDP_BACKEND_COMPOSITION;
1044 eDest lDest = mdp_info.lIndex;
1045 eDest rDest = mdp_info.rIndex;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -08001046
1047 ALOGD_IF(isDebug(),"%s: configuring: layer: %p z_order: %d dest_pipeL: %d"
1048 "dest_pipeR: %d",__FUNCTION__, layer, zOrder, lDest, rDest);
1049
1050 return configureHighRes(ctx, layer, mDpy, mdpFlagsL, zOrder, isFg, lDest,
1051 rDest, &PipeLayerPair.rot);
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001052}
1053
1054bool MDPCompHighRes::draw(hwc_context_t *ctx, hwc_display_contents_1_t* list) {
1055
Jeykumar Sankaran85977e32013-02-25 17:06:08 -08001056 if(!isEnabled()) {
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001057 ALOGD_IF(isDebug(),"%s: MDP Comp not configured", __FUNCTION__);
1058 return true;
1059 }
1060
1061 if(!ctx || !list) {
1062 ALOGE("%s: invalid contxt or list",__FUNCTION__);
Naseer Ahmed7c958d42012-07-31 18:57:03 -07001063 return false;
1064 }
1065
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001066 /* reset Invalidator */
Saurabh Shah2d998a92013-05-14 17:55:58 -07001067 if(idleInvalidator && !sIdleFallBack && mCurrentFrame.mdpCount)
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001068 idleInvalidator->markForSleep();
1069
Naseer Ahmed54821fe2012-11-28 18:44:38 -05001070 overlay::Overlay& ov = *ctx->mOverlay;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -08001071 LayerProp *layerProp = ctx->layerProp[mDpy];
Naseer Ahmed7c958d42012-07-31 18:57:03 -07001072
Jeykumar Sankaran85977e32013-02-25 17:06:08 -08001073 int numHwLayers = ctx->listStats[mDpy].numAppLayers;
1074 for(int i = 0; i < numHwLayers && mCurrentFrame.mdpCount; i++ )
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001075 {
Jeykumar Sankaran85977e32013-02-25 17:06:08 -08001076 if(mCurrentFrame.isFBComposed[i]) continue;
1077
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001078 hwc_layer_1_t *layer = &list->hwLayers[i];
Saurabh Shahacf10202013-02-26 10:15:15 -08001079 private_handle_t *hnd = (private_handle_t *)layer->handle;
1080 if(!hnd) {
1081 ALOGE("%s handle null", __FUNCTION__);
1082 return false;
1083 }
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001084
1085 if(!(layerProp[i].mFlags & HWC_MDPCOMP)) {
1086 continue;
Naseer Ahmed7c958d42012-07-31 18:57:03 -07001087 }
Naseer Ahmed7c958d42012-07-31 18:57:03 -07001088
Jeykumar Sankaran85977e32013-02-25 17:06:08 -08001089 int mdpIndex = mCurrentFrame.layerToMDP[i];
1090
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001091 MdpPipeInfoHighRes& pipe_info =
Jeykumar Sankaran85977e32013-02-25 17:06:08 -08001092 *(MdpPipeInfoHighRes*)mCurrentFrame.mdpToLayer[mdpIndex].pipeInfo;
1093 Rotator *rot = mCurrentFrame.mdpToLayer[mdpIndex].rot;
Saurabh Shahacf10202013-02-26 10:15:15 -08001094
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001095 ovutils::eDest indexL = pipe_info.lIndex;
1096 ovutils::eDest indexR = pipe_info.rIndex;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -08001097
Saurabh Shahacf10202013-02-26 10:15:15 -08001098 int fd = hnd->fd;
1099 int offset = hnd->offset;
1100
1101 if(rot) {
1102 rot->queueBuffer(fd, offset);
1103 fd = rot->getDstMemId();
1104 offset = rot->getDstOffset();
1105 }
Naseer Ahmed7c958d42012-07-31 18:57:03 -07001106
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001107 //************* play left mixer **********
1108 if(indexL != ovutils::OV_INVALID) {
1109 ovutils::eDest destL = (ovutils::eDest)indexL;
Saurabh Shahacf10202013-02-26 10:15:15 -08001110 ALOGD_IF(isDebug(),"%s: MDP Comp: Drawing layer: %p hnd: %p \
Jeykumar Sankaran85977e32013-02-25 17:06:08 -08001111 using pipe: %d", __FUNCTION__, layer, hnd, indexL );
Saurabh Shahacf10202013-02-26 10:15:15 -08001112 if (!ov.queueBuffer(fd, offset, destL)) {
1113 ALOGE("%s: queueBuffer failed for left mixer", __FUNCTION__);
1114 return false;
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001115 }
1116 }
1117
1118 //************* play right mixer **********
1119 if(indexR != ovutils::OV_INVALID) {
1120 ovutils::eDest destR = (ovutils::eDest)indexR;
Saurabh Shahacf10202013-02-26 10:15:15 -08001121 ALOGD_IF(isDebug(),"%s: MDP Comp: Drawing layer: %p hnd: %p \
Jeykumar Sankaran85977e32013-02-25 17:06:08 -08001122 using pipe: %d", __FUNCTION__, layer, hnd, indexR );
Saurabh Shahacf10202013-02-26 10:15:15 -08001123 if (!ov.queueBuffer(fd, offset, destR)) {
1124 ALOGE("%s: queueBuffer failed for right mixer", __FUNCTION__);
1125 return false;
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001126 }
1127 }
Saurabh Shahacf10202013-02-26 10:15:15 -08001128
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001129 layerProp[i].mFlags &= ~HWC_MDPCOMP;
1130 }
Saurabh Shahacf10202013-02-26 10:15:15 -08001131
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001132 return true;
Naseer Ahmed7c958d42012-07-31 18:57:03 -07001133}
Naseer Ahmed7c958d42012-07-31 18:57:03 -07001134}; //namespace
1135