blob: f0465ebe7a921c927e7cc5be3efd84f6a832199b [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;
369 } else if(ctx->mExtDispConfiguring) {
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800370 ALOGD_IF( isDebug(),"%s: External Display connection is pending",
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800371 __FUNCTION__);
Saurabh Shahaa236822013-04-24 18:07:26 -0700372 ret = false;
Saurabh Shahaa236822013-04-24 18:07:26 -0700373 } else if(ctx->isPaddingRound) {
Saurabh Shah0ceeb6a2013-04-23 10:46:07 -0700374 ctx->isPaddingRound = false;
375 ALOGD_IF(isDebug(), "%s: padding round",__FUNCTION__);
Saurabh Shahaa236822013-04-24 18:07:26 -0700376 ret = false;
Ramkumar Radhakrishnane661f962013-06-05 17:21:38 -0700377 } else if(numAppLayers > MAX_NUM_APP_LAYERS) {
378 ALOGD_IF(isDebug(), "%s: Number of App layers exceeded the limit ",
379 __FUNCTION__);
380 ret = false;
Saurabh Shah0ceeb6a2013-04-23 10:46:07 -0700381 }
Saurabh Shahaa236822013-04-24 18:07:26 -0700382 return ret;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800383}
384
385/* Checks for conditions where all the layers marked for MDP comp cannot be
386 * bypassed. On such conditions we try to bypass atleast YUV layers */
387bool MDPComp::isFullFrameDoable(hwc_context_t *ctx,
388 hwc_display_contents_1_t* list){
389
Saurabh Shahaa236822013-04-24 18:07:26 -0700390 const int numAppLayers = ctx->listStats[mDpy].numAppLayers;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800391
Saurabh Shah2d998a92013-05-14 17:55:58 -0700392 if(sIdleFallBack) {
393 ALOGD_IF(isDebug(), "%s: Idle fallback dpy %d",__FUNCTION__, mDpy);
394 return false;
395 }
396
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800397 if(mDpy > HWC_DISPLAY_PRIMARY){
398 ALOGD_IF(isDebug(), "%s: Cannot support External display(s)",
399 __FUNCTION__);
400 return false;
401 }
402
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800403 if(isSkipPresent(ctx, mDpy)) {
Saurabh Shahaa236822013-04-24 18:07:26 -0700404 ALOGD_IF(isDebug(),"%s: SKIP present: %d",
405 __FUNCTION__,
406 isSkipPresent(ctx, mDpy));
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800407 return false;
408 }
409
Saurabh Shah9f084ad2013-05-02 11:28:09 -0700410 if(ctx->listStats[mDpy].needsAlphaScale
411 && ctx->mMDP.version < qdutils::MDSS_V5) {
412 ALOGD_IF(isDebug(), "%s: frame needs alpha downscaling",__FUNCTION__);
413 return false;
414 }
415
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800416 //MDP composition is not efficient if layer needs rotator.
417 for(int i = 0; i < numAppLayers; ++i) {
418 // As MDP h/w supports flip operation, use MDP comp only for
419 // 180 transforms. Fail for any transform involving 90 (90, 270).
420 hwc_layer_1_t* layer = &list->hwLayers[i];
421 private_handle_t *hnd = (private_handle_t *)layer->handle;
Jeykumar Sankarana37fdbf2013-03-06 18:59:28 -0800422
Saurabh Shah4fdde762013-04-30 18:47:33 -0700423 if((layer->transform & HWC_TRANSFORM_ROT_90) && !isYuvBuffer(hnd)) {
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800424 ALOGD_IF(isDebug(), "%s: orientation involved",__FUNCTION__);
425 return false;
426 }
427
Saurabh Shah4fdde762013-04-30 18:47:33 -0700428 if(!isValidDimension(ctx,layer)) {
429 ALOGD_IF(isDebug(), "%s: Buffer is of invalid width",
430 __FUNCTION__);
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800431 return false;
432 }
Prabhanjan Kandula9fb032a2013-06-18 17:37:22 +0530433
434 //For 8x26 with panel width>1k, if RGB layer needs HFLIP fail mdp comp
435 // may not need it if Gfx pre-rotation can handle all flips & rotations
436 if(qdutils::MDPVersion::getInstance().is8x26() &&
437 (ctx->dpyAttr[mDpy].xres > 1024) &&
438 (layer->transform & HWC_TRANSFORM_FLIP_H) &&
439 (!isYuvBuffer(hnd)))
440 return false;
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800441 }
Saurabh Shahaa236822013-04-24 18:07:26 -0700442
443 //If all above hard conditions are met we can do full or partial MDP comp.
444 bool ret = false;
445 if(fullMDPComp(ctx, list)) {
446 ret = true;
Jeykumar Sankaran24c199d2013-05-24 09:40:36 -0700447 } else if(partialMDPComp(ctx, list)) {
Saurabh Shahaa236822013-04-24 18:07:26 -0700448 ret = true;
449 }
450 return ret;
451}
452
453bool MDPComp::fullMDPComp(hwc_context_t *ctx, hwc_display_contents_1_t* list) {
454 //Setup mCurrentFrame
455 mCurrentFrame.mdpCount = mCurrentFrame.layerCount;
456 mCurrentFrame.fbCount = 0;
457 mCurrentFrame.fbZ = -1;
458 memset(&mCurrentFrame.isFBComposed, 0, sizeof(mCurrentFrame.isFBComposed));
459
460 int mdpCount = mCurrentFrame.mdpCount;
461 if(mdpCount > sMaxPipesPerMixer) {
462 ALOGD_IF(isDebug(), "%s: Exceeds MAX_PIPES_PER_MIXER",__FUNCTION__);
463 return false;
464 }
465
466 int numPipesNeeded = pipesNeeded(ctx, list);
467 int availPipes = getAvailablePipes(ctx);
468
469 if(numPipesNeeded > availPipes) {
470 ALOGD_IF(isDebug(), "%s: Insufficient MDP pipes, needed %d, avail %d",
471 __FUNCTION__, numPipesNeeded, availPipes);
472 return false;
473 }
474
475 return true;
476}
477
478bool MDPComp::partialMDPComp(hwc_context_t *ctx, hwc_display_contents_1_t* list)
479{
480 int numAppLayers = ctx->listStats[mDpy].numAppLayers;
Jeykumar Sankaran24c199d2013-05-24 09:40:36 -0700481
482 if(!sEnableMixedMode) {
483 //Mixed mode is disabled. No need to even try caching.
484 return false;
485 }
486
Saurabh Shahaa236822013-04-24 18:07:26 -0700487 //Setup mCurrentFrame
488 mCurrentFrame.reset(numAppLayers);
489 updateLayerCache(ctx, list);
490 updateYUV(ctx, list);
491 batchLayers(); //sets up fbZ also
492
493 int mdpCount = mCurrentFrame.mdpCount;
494 if(mdpCount > (sMaxPipesPerMixer - 1)) { // -1 since FB is used
495 ALOGD_IF(isDebug(), "%s: Exceeds MAX_PIPES_PER_MIXER",__FUNCTION__);
496 return false;
497 }
498
499 int numPipesNeeded = pipesNeeded(ctx, list);
500 int availPipes = getAvailablePipes(ctx);
501
502 if(numPipesNeeded > availPipes) {
503 ALOGD_IF(isDebug(), "%s: Insufficient MDP pipes, needed %d, avail %d",
504 __FUNCTION__, numPipesNeeded, availPipes);
505 return false;
506 }
507
508 return true;
509}
510
511bool MDPComp::isOnlyVideoDoable(hwc_context_t *ctx,
512 hwc_display_contents_1_t* list){
513 int numAppLayers = ctx->listStats[mDpy].numAppLayers;
514 mCurrentFrame.reset(numAppLayers);
515 updateYUV(ctx, list);
Saurabh Shah4fdde762013-04-30 18:47:33 -0700516 int mdpCount = mCurrentFrame.mdpCount;
Saurabh Shahaa236822013-04-24 18:07:26 -0700517 int fbNeeded = int(mCurrentFrame.fbCount != 0);
518
519 if(!isYuvPresent(ctx, mDpy)) {
520 return false;
521 }
522
Saurabh Shah4fdde762013-04-30 18:47:33 -0700523 if(!mdpCount)
524 return false;
525
Saurabh Shahaa236822013-04-24 18:07:26 -0700526 if(mdpCount > (sMaxPipesPerMixer - fbNeeded)) {
527 ALOGD_IF(isDebug(), "%s: Exceeds MAX_PIPES_PER_MIXER",__FUNCTION__);
528 return false;
529 }
530
531 int numPipesNeeded = pipesNeeded(ctx, list);
532 int availPipes = getAvailablePipes(ctx);
533 if(numPipesNeeded > availPipes) {
534 ALOGD_IF(isDebug(), "%s: Insufficient MDP pipes, needed %d, avail %d",
535 __FUNCTION__, numPipesNeeded, availPipes);
536 return false;
537 }
538
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800539 return true;
540}
541
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800542/* Checks for conditions where YUV layers cannot be bypassed */
543bool MDPComp::isYUVDoable(hwc_context_t* ctx, hwc_layer_1_t* layer) {
Saurabh Shahe2474082013-05-15 16:32:13 -0700544 bool extAnimBlockFeature = mDpy && ctx->listStats[mDpy].isDisplayAnimating;
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800545
Saurabh Shahe2474082013-05-15 16:32:13 -0700546 if(isSkipLayer(layer) && !extAnimBlockFeature) {
547 ALOGD_IF(isDebug(), "%s: Video marked SKIP dpy %d", __FUNCTION__, mDpy);
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800548 return false;
549 }
550
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800551 if(isSecuring(ctx, layer)) {
552 ALOGD_IF(isDebug(), "%s: MDP securing is active", __FUNCTION__);
553 return false;
554 }
555
Saurabh Shah4fdde762013-04-30 18:47:33 -0700556 if(!isValidDimension(ctx, layer)) {
557 ALOGD_IF(isDebug(), "%s: Buffer is of invalid width",
558 __FUNCTION__);
559 return false;
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800560 }
Saurabh Shah4fdde762013-04-30 18:47:33 -0700561
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800562 return true;
563}
564
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800565void MDPComp::batchLayers() {
566 /* Idea is to keep as many contiguous non-updating(cached) layers in FB and
567 * send rest of them through MDP. NEVER mark an updating layer for caching.
568 * But cached ones can be marked for MDP*/
569
570 int maxBatchStart = -1;
571 int maxBatchCount = 0;
572
573 /* All or Nothing is cached. No batching needed */
Saurabh Shahaa236822013-04-24 18:07:26 -0700574 if(!mCurrentFrame.fbCount) {
575 mCurrentFrame.fbZ = -1;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800576 return;
Saurabh Shahaa236822013-04-24 18:07:26 -0700577 }
578 if(!mCurrentFrame.mdpCount) {
579 mCurrentFrame.fbZ = 0;
580 return;
581 }
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800582
583 /* Search for max number of contiguous (cached) layers */
584 int i = 0;
585 while (i < mCurrentFrame.layerCount) {
586 int count = 0;
587 while(mCurrentFrame.isFBComposed[i] && i < mCurrentFrame.layerCount) {
588 count++; i++;
589 }
590 if(count > maxBatchCount) {
591 maxBatchCount = count;
592 maxBatchStart = i - count;
Saurabh Shahaa236822013-04-24 18:07:26 -0700593 mCurrentFrame.fbZ = maxBatchStart;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800594 }
595 if(i < mCurrentFrame.layerCount) i++;
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800596 }
597
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800598 /* reset rest of the layers for MDP comp */
599 for(int i = 0; i < mCurrentFrame.layerCount; i++) {
600 if(i != maxBatchStart){
601 mCurrentFrame.isFBComposed[i] = false;
602 } else {
603 i += maxBatchCount;
604 }
605 }
606
607 mCurrentFrame.fbCount = maxBatchCount;
Saurabh Shahaa236822013-04-24 18:07:26 -0700608 mCurrentFrame.mdpCount = mCurrentFrame.layerCount -
609 mCurrentFrame.fbCount;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800610
611 ALOGD_IF(isDebug(),"%s: cached count: %d",__FUNCTION__,
612 mCurrentFrame.fbCount);
613}
Saurabh Shah85234ec2013-04-12 17:09:00 -0700614
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800615void MDPComp::updateLayerCache(hwc_context_t* ctx,
616 hwc_display_contents_1_t* list) {
617
618 int numAppLayers = ctx->listStats[mDpy].numAppLayers;
619 int numCacheableLayers = 0;
620
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800621 for(int i = 0; i < numAppLayers; i++) {
622 if (mCachedFrame.hnd[i] == list->hwLayers[i].handle) {
623 numCacheableLayers++;
624 mCurrentFrame.isFBComposed[i] = true;
625 } else {
Saurabh Shahaa236822013-04-24 18:07:26 -0700626 mCurrentFrame.isFBComposed[i] = false;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800627 mCachedFrame.hnd[i] = list->hwLayers[i].handle;
628 }
629 }
Saurabh Shahaa236822013-04-24 18:07:26 -0700630
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800631 mCurrentFrame.fbCount = numCacheableLayers;
Saurabh Shahaa236822013-04-24 18:07:26 -0700632 mCurrentFrame.mdpCount = mCurrentFrame.layerCount -
633 mCurrentFrame.fbCount;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800634 ALOGD_IF(isDebug(),"%s: cached count: %d",__FUNCTION__, numCacheableLayers);
635}
636
637int MDPComp::getAvailablePipes(hwc_context_t* ctx) {
638 int numDMAPipes = qdutils::MDPVersion::getInstance().getDMAPipes();
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800639 overlay::Overlay& ov = *ctx->mOverlay;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800640
641 int numAvailable = ov.availablePipes(mDpy);
642
643 //Reserve DMA for rotator
Saurabh Shah85234ec2013-04-12 17:09:00 -0700644 if(Overlay::getDMAMode() == Overlay::DMA_BLOCK_MODE)
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800645 numAvailable -= numDMAPipes;
646
647 //Reserve pipe(s)for FB
648 if(mCurrentFrame.fbCount)
649 numAvailable -= pipesForFB();
650
651 return numAvailable;
652}
653
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800654void MDPComp::updateYUV(hwc_context_t* ctx, hwc_display_contents_1_t* list) {
655
656 int nYuvCount = ctx->listStats[mDpy].yuvCount;
Ramkumar Radhakrishnan59a11072013-04-15 16:14:49 -0700657 if(!nYuvCount && mDpy) {
658 //Reset "No animation on external display" related parameters.
659 ctx->mPrevCropVideo.left = ctx->mPrevCropVideo.top =
660 ctx->mPrevCropVideo.right = ctx->mPrevCropVideo.bottom = 0;
661 ctx->mPrevDestVideo.left = ctx->mPrevDestVideo.top =
662 ctx->mPrevDestVideo.right = ctx->mPrevDestVideo.bottom = 0;
663 ctx->mPrevTransformVideo = 0;
664 return;
665 }
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800666 for(int index = 0;index < nYuvCount; index++){
667 int nYuvIndex = ctx->listStats[mDpy].yuvIndices[index];
668 hwc_layer_1_t* layer = &list->hwLayers[nYuvIndex];
669
670 if(!isYUVDoable(ctx, layer)) {
671 if(!mCurrentFrame.isFBComposed[nYuvIndex]) {
672 mCurrentFrame.isFBComposed[nYuvIndex] = true;
673 mCurrentFrame.fbCount++;
674 }
675 } else {
676 if(mCurrentFrame.isFBComposed[nYuvIndex]) {
677 mCurrentFrame.isFBComposed[nYuvIndex] = false;
678 mCurrentFrame.fbCount--;
679 }
680 }
681 }
Saurabh Shahaa236822013-04-24 18:07:26 -0700682
683 mCurrentFrame.mdpCount = mCurrentFrame.layerCount -
684 mCurrentFrame.fbCount;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800685 ALOGD_IF(isDebug(),"%s: cached count: %d",__FUNCTION__,
686 mCurrentFrame.fbCount);
687}
688
Saurabh Shahaa236822013-04-24 18:07:26 -0700689bool MDPComp::programMDP(hwc_context_t *ctx, hwc_display_contents_1_t* list) {
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800690 if(!allocLayerPipes(ctx, list)) {
691 ALOGD_IF(isDebug(), "%s: Unable to allocate MDP pipes", __FUNCTION__);
Saurabh Shahaa236822013-04-24 18:07:26 -0700692 return false;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800693 }
694
Saurabh Shahaa236822013-04-24 18:07:26 -0700695 bool fbBatch = false;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800696 for (int index = 0, mdpNextZOrder = 0; index < mCurrentFrame.layerCount;
Saurabh Shahaa236822013-04-24 18:07:26 -0700697 index++) {
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800698 if(!mCurrentFrame.isFBComposed[index]) {
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800699 int mdpIndex = mCurrentFrame.layerToMDP[index];
700 hwc_layer_1_t* layer = &list->hwLayers[index];
701
702 MdpPipeInfo* cur_pipe = mCurrentFrame.mdpToLayer[mdpIndex].pipeInfo;
703 cur_pipe->zOrder = mdpNextZOrder++;
704
705 if(configure(ctx, layer, mCurrentFrame.mdpToLayer[mdpIndex]) != 0 ){
706 ALOGD_IF(isDebug(), "%s: Failed to configure overlay for \
707 layer %d",__FUNCTION__, index);
Saurabh Shahaa236822013-04-24 18:07:26 -0700708 return false;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800709 }
Saurabh Shahaa236822013-04-24 18:07:26 -0700710 } else if(fbBatch == false) {
711 mdpNextZOrder++;
712 fbBatch = true;
713 }
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800714 }
715
Saurabh Shahaa236822013-04-24 18:07:26 -0700716 return true;
717}
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800718
Saurabh Shahaa236822013-04-24 18:07:26 -0700719bool MDPComp::programYUV(hwc_context_t *ctx, hwc_display_contents_1_t* list) {
720 if(!allocLayerPipes(ctx, list)) {
721 ALOGD_IF(isDebug(), "%s: Unable to allocate MDP pipes", __FUNCTION__);
722 return false;
723 }
724 //If we are in this block, it means we have yuv + rgb layers both
725 int mdpIdx = 0;
726 for (int index = 0; index < mCurrentFrame.layerCount; index++) {
727 if(!mCurrentFrame.isFBComposed[index]) {
728 hwc_layer_1_t* layer = &list->hwLayers[index];
729 int mdpIndex = mCurrentFrame.layerToMDP[index];
730 MdpPipeInfo* cur_pipe =
731 mCurrentFrame.mdpToLayer[mdpIndex].pipeInfo;
732 cur_pipe->zOrder = mdpIdx++;
733
734 if(configure(ctx, layer,
735 mCurrentFrame.mdpToLayer[mdpIndex]) != 0 ){
736 ALOGD_IF(isDebug(), "%s: Failed to configure overlay for \
737 layer %d",__FUNCTION__, index);
738 return false;
739 }
740 }
741 }
742 return true;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800743}
744
745int MDPComp::prepare(hwc_context_t *ctx, hwc_display_contents_1_t* list) {
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800746
747 //reset old data
Saurabh Shahaa236822013-04-24 18:07:26 -0700748 const int numLayers = ctx->listStats[mDpy].numAppLayers;
749 mCurrentFrame.reset(numLayers);
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800750
Saurabh Shahaa236822013-04-24 18:07:26 -0700751 //Hard conditions, if not met, cannot do MDP comp
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800752 if(!isFrameDoable(ctx)) {
753 ALOGD_IF( isDebug(),"%s: MDP Comp not possible for this frame",
754 __FUNCTION__);
Saurabh Shahaa236822013-04-24 18:07:26 -0700755 mCurrentFrame.reset(numLayers);
756 mCachedFrame.cacheAll(list);
757 mCachedFrame.updateCounts(mCurrentFrame);
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800758 return 0;
759 }
760
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800761 //Check whether layers marked for MDP Composition is actually doable.
Saurabh Shahaa236822013-04-24 18:07:26 -0700762 if(isFullFrameDoable(ctx, list)){
Saurabh Shah2f3895f2013-05-02 10:13:31 -0700763 mCurrentFrame.map();
764 //Acquire and Program MDP pipes
765 if(!programMDP(ctx, list)) {
766 mCurrentFrame.reset(numLayers);
767 mCachedFrame.cacheAll(list);
768 } else { //Success
769 //Any change in composition types needs an FB refresh
770 mCurrentFrame.needsRedraw = false;
771 if(mCurrentFrame.fbCount &&
772 ((mCurrentFrame.mdpCount != mCachedFrame.mdpCount) ||
773 (mCurrentFrame.fbCount != mCachedFrame.cacheCount) ||
774 (mCurrentFrame.fbZ != mCachedFrame.fbZ) ||
775 (!mCurrentFrame.mdpCount) ||
776 (list->flags & HWC_GEOMETRY_CHANGED) ||
777 isSkipPresent(ctx, mDpy) ||
778 (mDpy > HWC_DISPLAY_PRIMARY))) {
779 mCurrentFrame.needsRedraw = true;
Saurabh Shahaa236822013-04-24 18:07:26 -0700780 }
781 }
782 } else if(isOnlyVideoDoable(ctx, list)) {
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800783 //All layers marked for MDP comp cannot be bypassed.
784 //Try to compose atleast YUV layers through MDP comp and let
785 //all the RGB layers compose in FB
Saurabh Shahaa236822013-04-24 18:07:26 -0700786 //Destination over
787 mCurrentFrame.fbZ = -1;
788 if(mCurrentFrame.fbCount)
789 mCurrentFrame.fbZ = ctx->listStats[mDpy].yuvCount;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800790
Saurabh Shahaa236822013-04-24 18:07:26 -0700791 mCurrentFrame.map();
792 if(!programYUV(ctx, list)) {
793 mCurrentFrame.reset(numLayers);
794 mCachedFrame.cacheAll(list);
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800795 }
Saurabh Shahaa236822013-04-24 18:07:26 -0700796 } else {
797 mCurrentFrame.reset(numLayers);
798 mCachedFrame.cacheAll(list);
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800799 }
800
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800801 //UpdateLayerFlags
802 setMDPCompLayerFlags(ctx, list);
Saurabh Shahaa236822013-04-24 18:07:26 -0700803 mCachedFrame.updateCounts(mCurrentFrame);
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800804
805 if(isDebug()) {
Saurabh Shahaa236822013-04-24 18:07:26 -0700806 ALOGD("GEOMETRY change: %d", (list->flags & HWC_GEOMETRY_CHANGED));
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800807 android::String8 sDump("");
808 dump(sDump);
809 ALOGE("%s",sDump.string());
810 }
811
812 return mCurrentFrame.fbZ;
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800813}
814
815//=============MDPCompLowRes===================================================
816
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700817/*
818 * Configures pipe(s) for MDP composition
819 */
Saurabh Shahcbf7ccc2012-12-19 16:45:51 -0800820int MDPCompLowRes::configure(hwc_context_t *ctx, hwc_layer_1_t *layer,
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800821 PipeLayerPair& PipeLayerPair) {
Saurabh Shahacf10202013-02-26 10:15:15 -0800822 MdpPipeInfoLowRes& mdp_info =
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800823 *(static_cast<MdpPipeInfoLowRes*>(PipeLayerPair.pipeInfo));
Saurabh Shahacf10202013-02-26 10:15:15 -0800824 eMdpFlags mdpFlags = OV_MDP_BACKEND_COMPOSITION;
825 eZorder zOrder = static_cast<eZorder>(mdp_info.zOrder);
826 eIsFg isFg = IS_FG_OFF;
827 eDest dest = mdp_info.index;
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700828
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800829 ALOGD_IF(isDebug(),"%s: configuring: layer: %p z_order: %d dest_pipe: %d",
830 __FUNCTION__, layer, zOrder, dest);
831
832 return configureLowRes(ctx, layer, mDpy, mdpFlags, zOrder, isFg, dest,
833 &PipeLayerPair.rot);
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700834}
835
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800836int MDPCompLowRes::pipesNeeded(hwc_context_t *ctx,
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800837 hwc_display_contents_1_t* list) {
838 return mCurrentFrame.mdpCount;
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700839}
840
Saurabh Shahcbf7ccc2012-12-19 16:45:51 -0800841bool MDPCompLowRes::allocLayerPipes(hwc_context_t *ctx,
Saurabh Shahe51f8ca2013-05-06 17:26:16 -0700842 hwc_display_contents_1_t* list) {
843 for(int index = 0; index < mCurrentFrame.layerCount; index++) {
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700844
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800845 if(mCurrentFrame.isFBComposed[index]) continue;
Saurabh Shahe51f8ca2013-05-06 17:26:16 -0700846
Jeykumar Sankarancf537002013-01-21 21:19:15 -0800847 hwc_layer_1_t* layer = &list->hwLayers[index];
848 private_handle_t *hnd = (private_handle_t *)layer->handle;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800849 int mdpIndex = mCurrentFrame.layerToMDP[index];
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800850 PipeLayerPair& info = mCurrentFrame.mdpToLayer[mdpIndex];
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800851 info.pipeInfo = new MdpPipeInfoLowRes;
Saurabh Shahacf10202013-02-26 10:15:15 -0800852 info.rot = NULL;
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800853 MdpPipeInfoLowRes& pipe_info = *(MdpPipeInfoLowRes*)info.pipeInfo;
Jeykumar Sankarana37fdbf2013-03-06 18:59:28 -0800854 ePipeType type = MDPCOMP_OV_ANY;
855
Saurabh Shahe51f8ca2013-05-06 17:26:16 -0700856 if(isYuvBuffer(hnd)) {
857 type = MDPCOMP_OV_VG;
Saurabh Shah8a117932013-05-23 12:48:13 -0700858 } else if(!qhwc::needsScaling(ctx, layer, mDpy)
Saurabh Shah85234ec2013-04-12 17:09:00 -0700859 && Overlay::getDMAMode() != Overlay::DMA_BLOCK_MODE
860 && ctx->mMDP.version >= qdutils::MDSS_V5) {
Jeykumar Sankarana37fdbf2013-03-06 18:59:28 -0800861 type = MDPCOMP_OV_DMA;
862 }
863
864 pipe_info.index = getMdpPipe(ctx, type);
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800865 if(pipe_info.index == ovutils::OV_INVALID) {
Saurabh Shahe51f8ca2013-05-06 17:26:16 -0700866 ALOGD_IF(isDebug(), "%s: Unable to get pipe type = %d",
867 __FUNCTION__, (int) type);
Naseer Ahmed54821fe2012-11-28 18:44:38 -0500868 return false;
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700869 }
870 }
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700871 return true;
872}
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700873
Saurabh Shahcbf7ccc2012-12-19 16:45:51 -0800874bool MDPCompLowRes::draw(hwc_context_t *ctx, hwc_display_contents_1_t* list) {
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700875
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800876 if(!isEnabled()) {
Naseer Ahmed54821fe2012-11-28 18:44:38 -0500877 ALOGD_IF(isDebug(),"%s: MDP Comp not configured", __FUNCTION__);
878 return true;
Saurabh Shahcbf7ccc2012-12-19 16:45:51 -0800879 }
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700880
881 if(!ctx || !list) {
882 ALOGE("%s: invalid contxt or list",__FUNCTION__);
Naseer Ahmed54821fe2012-11-28 18:44:38 -0500883 return false;
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700884 }
885
Naseer Ahmed54821fe2012-11-28 18:44:38 -0500886 /* reset Invalidator */
Saurabh Shah2d998a92013-05-14 17:55:58 -0700887 if(idleInvalidator && !sIdleFallBack && mCurrentFrame.mdpCount)
Naseer Ahmed54821fe2012-11-28 18:44:38 -0500888 idleInvalidator->markForSleep();
889
890 overlay::Overlay& ov = *ctx->mOverlay;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800891 LayerProp *layerProp = ctx->layerProp[mDpy];
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700892
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800893 int numHwLayers = ctx->listStats[mDpy].numAppLayers;
894 for(int i = 0; i < numHwLayers && mCurrentFrame.mdpCount; i++ )
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700895 {
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800896 if(mCurrentFrame.isFBComposed[i]) continue;
897
Naseer Ahmed5b6708a2012-08-02 13:46:08 -0700898 hwc_layer_1_t *layer = &list->hwLayers[i];
Saurabh Shahacf10202013-02-26 10:15:15 -0800899 private_handle_t *hnd = (private_handle_t *)layer->handle;
900 if(!hnd) {
901 ALOGE("%s handle null", __FUNCTION__);
902 return false;
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700903 }
904
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800905 int mdpIndex = mCurrentFrame.layerToMDP[i];
906
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800907 MdpPipeInfoLowRes& pipe_info =
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800908 *(MdpPipeInfoLowRes*)mCurrentFrame.mdpToLayer[mdpIndex].pipeInfo;
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800909 ovutils::eDest dest = pipe_info.index;
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800910 if(dest == ovutils::OV_INVALID) {
911 ALOGE("%s: Invalid pipe index (%d)", __FUNCTION__, dest);
Naseer Ahmed54821fe2012-11-28 18:44:38 -0500912 return false;
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700913 }
914
Saurabh Shahacf10202013-02-26 10:15:15 -0800915 if(!(layerProp[i].mFlags & HWC_MDPCOMP)) {
916 continue;
917 }
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700918
Saurabh Shahacf10202013-02-26 10:15:15 -0800919 ALOGD_IF(isDebug(),"%s: MDP Comp: Drawing layer: %p hnd: %p \
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800920 using pipe: %d", __FUNCTION__, layer,
921 hnd, dest );
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700922
Saurabh Shahacf10202013-02-26 10:15:15 -0800923 int fd = hnd->fd;
924 uint32_t offset = hnd->offset;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800925 Rotator *rot = mCurrentFrame.mdpToLayer[mdpIndex].rot;
Saurabh Shahacf10202013-02-26 10:15:15 -0800926 if(rot) {
927 if(!rot->queueBuffer(fd, offset))
Naseer Ahmed54821fe2012-11-28 18:44:38 -0500928 return false;
Saurabh Shahacf10202013-02-26 10:15:15 -0800929 fd = rot->getDstMemId();
930 offset = rot->getDstOffset();
931 }
932
933 if (!ov.queueBuffer(fd, offset, dest)) {
934 ALOGE("%s: queueBuffer failed for external", __FUNCTION__);
935 return false;
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700936 }
Naseer Ahmed54821fe2012-11-28 18:44:38 -0500937
938 layerProp[i].mFlags &= ~HWC_MDPCOMP;
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700939 }
Naseer Ahmed54821fe2012-11-28 18:44:38 -0500940 return true;
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700941}
942
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800943//=============MDPCompHighRes===================================================
944
945int MDPCompHighRes::pipesNeeded(hwc_context_t *ctx,
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800946 hwc_display_contents_1_t* list) {
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800947 int pipesNeeded = 0;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800948 int hw_w = ctx->dpyAttr[mDpy].xres;
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800949
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800950 for(int i = 0; i < mCurrentFrame.layerCount; ++i) {
951 if(!mCurrentFrame.isFBComposed[i]) {
952 hwc_layer_1_t* layer = &list->hwLayers[i];
953 hwc_rect_t dst = layer->displayFrame;
954 if(dst.left > hw_w/2) {
955 pipesNeeded++;
956 } else if(dst.right <= hw_w/2) {
957 pipesNeeded++;
958 } else {
959 pipesNeeded += 2;
960 }
961 }
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800962 }
963 return pipesNeeded;
964}
965
966bool MDPCompHighRes::acquireMDPPipes(hwc_context_t *ctx, hwc_layer_1_t* layer,
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800967 MdpPipeInfoHighRes& pipe_info,
968 ePipeType type) {
969 int hw_w = ctx->dpyAttr[mDpy].xres;
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800970
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800971 hwc_rect_t dst = layer->displayFrame;
972 if(dst.left > hw_w/2) {
973 pipe_info.lIndex = ovutils::OV_INVALID;
974 pipe_info.rIndex = getMdpPipe(ctx, type);
975 if(pipe_info.rIndex == ovutils::OV_INVALID)
976 return false;
977 } else if (dst.right <= hw_w/2) {
978 pipe_info.rIndex = ovutils::OV_INVALID;
979 pipe_info.lIndex = getMdpPipe(ctx, type);
980 if(pipe_info.lIndex == ovutils::OV_INVALID)
981 return false;
982 } else {
983 pipe_info.rIndex = getMdpPipe(ctx, type);
984 pipe_info.lIndex = getMdpPipe(ctx, type);
985 if(pipe_info.rIndex == ovutils::OV_INVALID ||
986 pipe_info.lIndex == ovutils::OV_INVALID)
987 return false;
988 }
989 return true;
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800990}
991
992bool MDPCompHighRes::allocLayerPipes(hwc_context_t *ctx,
Saurabh Shahe51f8ca2013-05-06 17:26:16 -0700993 hwc_display_contents_1_t* list) {
994 for(int index = 0 ; index < mCurrentFrame.layerCount; index++) {
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800995
Saurabh Shahe51f8ca2013-05-06 17:26:16 -0700996 if(mCurrentFrame.isFBComposed[index]) continue;
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800997
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800998 hwc_layer_1_t* layer = &list->hwLayers[index];
999 private_handle_t *hnd = (private_handle_t *)layer->handle;
Saurabh Shah0d65dbe2013-06-06 18:33:16 -07001000 int mdpIndex = mCurrentFrame.layerToMDP[index];
1001 PipeLayerPair& info = mCurrentFrame.mdpToLayer[mdpIndex];
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001002 info.pipeInfo = new MdpPipeInfoHighRes;
Saurabh Shah9e3adb22013-03-26 11:16:27 -07001003 info.rot = NULL;
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001004 MdpPipeInfoHighRes& pipe_info = *(MdpPipeInfoHighRes*)info.pipeInfo;
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001005 ePipeType type = MDPCOMP_OV_ANY;
1006
Saurabh Shahe51f8ca2013-05-06 17:26:16 -07001007 if(isYuvBuffer(hnd)) {
1008 type = MDPCOMP_OV_VG;
Saurabh Shah8a117932013-05-23 12:48:13 -07001009 } else if(!qhwc::needsScaling(ctx, layer, mDpy)
Saurabh Shah85234ec2013-04-12 17:09:00 -07001010 && Overlay::getDMAMode() != Overlay::DMA_BLOCK_MODE
Saurabh Shahe51f8ca2013-05-06 17:26:16 -07001011 && ctx->mMDP.version >= qdutils::MDSS_V5) {
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001012 type = MDPCOMP_OV_DMA;
Saurabh Shahe51f8ca2013-05-06 17:26:16 -07001013 }
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001014
1015 if(!acquireMDPPipes(ctx, layer, pipe_info, type)) {
Saurabh Shahe51f8ca2013-05-06 17:26:16 -07001016 ALOGD_IF(isDebug(), "%s: Unable to get pipe for type = %d",
1017 __FUNCTION__, (int) type);
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001018 return false;
1019 }
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001020 }
1021 return true;
1022}
1023/*
1024 * Configures pipe(s) for MDP composition
1025 */
1026int MDPCompHighRes::configure(hwc_context_t *ctx, hwc_layer_1_t *layer,
Jeykumar Sankaran85977e32013-02-25 17:06:08 -08001027 PipeLayerPair& PipeLayerPair) {
Saurabh Shahacf10202013-02-26 10:15:15 -08001028 MdpPipeInfoHighRes& mdp_info =
Jeykumar Sankaran85977e32013-02-25 17:06:08 -08001029 *(static_cast<MdpPipeInfoHighRes*>(PipeLayerPair.pipeInfo));
Saurabh Shahacf10202013-02-26 10:15:15 -08001030 eZorder zOrder = static_cast<eZorder>(mdp_info.zOrder);
1031 eIsFg isFg = IS_FG_OFF;
1032 eMdpFlags mdpFlagsL = OV_MDP_BACKEND_COMPOSITION;
1033 eDest lDest = mdp_info.lIndex;
1034 eDest rDest = mdp_info.rIndex;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -08001035
1036 ALOGD_IF(isDebug(),"%s: configuring: layer: %p z_order: %d dest_pipeL: %d"
1037 "dest_pipeR: %d",__FUNCTION__, layer, zOrder, lDest, rDest);
1038
1039 return configureHighRes(ctx, layer, mDpy, mdpFlagsL, zOrder, isFg, lDest,
1040 rDest, &PipeLayerPair.rot);
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001041}
1042
1043bool MDPCompHighRes::draw(hwc_context_t *ctx, hwc_display_contents_1_t* list) {
1044
Jeykumar Sankaran85977e32013-02-25 17:06:08 -08001045 if(!isEnabled()) {
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001046 ALOGD_IF(isDebug(),"%s: MDP Comp not configured", __FUNCTION__);
1047 return true;
1048 }
1049
1050 if(!ctx || !list) {
1051 ALOGE("%s: invalid contxt or list",__FUNCTION__);
Naseer Ahmed7c958d42012-07-31 18:57:03 -07001052 return false;
1053 }
1054
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001055 /* reset Invalidator */
Saurabh Shah2d998a92013-05-14 17:55:58 -07001056 if(idleInvalidator && !sIdleFallBack && mCurrentFrame.mdpCount)
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001057 idleInvalidator->markForSleep();
1058
Naseer Ahmed54821fe2012-11-28 18:44:38 -05001059 overlay::Overlay& ov = *ctx->mOverlay;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -08001060 LayerProp *layerProp = ctx->layerProp[mDpy];
Naseer Ahmed7c958d42012-07-31 18:57:03 -07001061
Jeykumar Sankaran85977e32013-02-25 17:06:08 -08001062 int numHwLayers = ctx->listStats[mDpy].numAppLayers;
1063 for(int i = 0; i < numHwLayers && mCurrentFrame.mdpCount; i++ )
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001064 {
Jeykumar Sankaran85977e32013-02-25 17:06:08 -08001065 if(mCurrentFrame.isFBComposed[i]) continue;
1066
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001067 hwc_layer_1_t *layer = &list->hwLayers[i];
Saurabh Shahacf10202013-02-26 10:15:15 -08001068 private_handle_t *hnd = (private_handle_t *)layer->handle;
1069 if(!hnd) {
1070 ALOGE("%s handle null", __FUNCTION__);
1071 return false;
1072 }
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001073
1074 if(!(layerProp[i].mFlags & HWC_MDPCOMP)) {
1075 continue;
Naseer Ahmed7c958d42012-07-31 18:57:03 -07001076 }
Naseer Ahmed7c958d42012-07-31 18:57:03 -07001077
Jeykumar Sankaran85977e32013-02-25 17:06:08 -08001078 int mdpIndex = mCurrentFrame.layerToMDP[i];
1079
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001080 MdpPipeInfoHighRes& pipe_info =
Jeykumar Sankaran85977e32013-02-25 17:06:08 -08001081 *(MdpPipeInfoHighRes*)mCurrentFrame.mdpToLayer[mdpIndex].pipeInfo;
1082 Rotator *rot = mCurrentFrame.mdpToLayer[mdpIndex].rot;
Saurabh Shahacf10202013-02-26 10:15:15 -08001083
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001084 ovutils::eDest indexL = pipe_info.lIndex;
1085 ovutils::eDest indexR = pipe_info.rIndex;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -08001086
Saurabh Shahacf10202013-02-26 10:15:15 -08001087 int fd = hnd->fd;
1088 int offset = hnd->offset;
1089
1090 if(rot) {
1091 rot->queueBuffer(fd, offset);
1092 fd = rot->getDstMemId();
1093 offset = rot->getDstOffset();
1094 }
Naseer Ahmed7c958d42012-07-31 18:57:03 -07001095
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001096 //************* play left mixer **********
1097 if(indexL != ovutils::OV_INVALID) {
1098 ovutils::eDest destL = (ovutils::eDest)indexL;
Saurabh Shahacf10202013-02-26 10:15:15 -08001099 ALOGD_IF(isDebug(),"%s: MDP Comp: Drawing layer: %p hnd: %p \
Jeykumar Sankaran85977e32013-02-25 17:06:08 -08001100 using pipe: %d", __FUNCTION__, layer, hnd, indexL );
Saurabh Shahacf10202013-02-26 10:15:15 -08001101 if (!ov.queueBuffer(fd, offset, destL)) {
1102 ALOGE("%s: queueBuffer failed for left mixer", __FUNCTION__);
1103 return false;
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001104 }
1105 }
1106
1107 //************* play right mixer **********
1108 if(indexR != ovutils::OV_INVALID) {
1109 ovutils::eDest destR = (ovutils::eDest)indexR;
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, indexR );
Saurabh Shahacf10202013-02-26 10:15:15 -08001112 if (!ov.queueBuffer(fd, offset, destR)) {
1113 ALOGE("%s: queueBuffer failed for right mixer", __FUNCTION__);
1114 return false;
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001115 }
1116 }
Saurabh Shahacf10202013-02-26 10:15:15 -08001117
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001118 layerProp[i].mFlags &= ~HWC_MDPCOMP;
1119 }
Saurabh Shahacf10202013-02-26 10:15:15 -08001120
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001121 return true;
Naseer Ahmed7c958d42012-07-31 18:57:03 -07001122}
Naseer Ahmed7c958d42012-07-31 18:57:03 -07001123}; //namespace
1124