blob: 6b2cb9e95118f2b94a3c9fd9f305dabb44e97b47 [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 }
433 }
Saurabh Shahaa236822013-04-24 18:07:26 -0700434
435 //If all above hard conditions are met we can do full or partial MDP comp.
436 bool ret = false;
437 if(fullMDPComp(ctx, list)) {
438 ret = true;
Jeykumar Sankaran24c199d2013-05-24 09:40:36 -0700439 } else if(partialMDPComp(ctx, list)) {
Saurabh Shahaa236822013-04-24 18:07:26 -0700440 ret = true;
441 }
442 return ret;
443}
444
445bool MDPComp::fullMDPComp(hwc_context_t *ctx, hwc_display_contents_1_t* list) {
446 //Setup mCurrentFrame
447 mCurrentFrame.mdpCount = mCurrentFrame.layerCount;
448 mCurrentFrame.fbCount = 0;
449 mCurrentFrame.fbZ = -1;
450 memset(&mCurrentFrame.isFBComposed, 0, sizeof(mCurrentFrame.isFBComposed));
451
452 int mdpCount = mCurrentFrame.mdpCount;
453 if(mdpCount > sMaxPipesPerMixer) {
454 ALOGD_IF(isDebug(), "%s: Exceeds MAX_PIPES_PER_MIXER",__FUNCTION__);
455 return false;
456 }
457
458 int numPipesNeeded = pipesNeeded(ctx, list);
459 int availPipes = getAvailablePipes(ctx);
460
461 if(numPipesNeeded > availPipes) {
462 ALOGD_IF(isDebug(), "%s: Insufficient MDP pipes, needed %d, avail %d",
463 __FUNCTION__, numPipesNeeded, availPipes);
464 return false;
465 }
466
467 return true;
468}
469
470bool MDPComp::partialMDPComp(hwc_context_t *ctx, hwc_display_contents_1_t* list)
471{
472 int numAppLayers = ctx->listStats[mDpy].numAppLayers;
Jeykumar Sankaran24c199d2013-05-24 09:40:36 -0700473
474 if(!sEnableMixedMode) {
475 //Mixed mode is disabled. No need to even try caching.
476 return false;
477 }
478
Saurabh Shahaa236822013-04-24 18:07:26 -0700479 //Setup mCurrentFrame
480 mCurrentFrame.reset(numAppLayers);
481 updateLayerCache(ctx, list);
482 updateYUV(ctx, list);
483 batchLayers(); //sets up fbZ also
484
485 int mdpCount = mCurrentFrame.mdpCount;
486 if(mdpCount > (sMaxPipesPerMixer - 1)) { // -1 since FB is used
487 ALOGD_IF(isDebug(), "%s: Exceeds MAX_PIPES_PER_MIXER",__FUNCTION__);
488 return false;
489 }
490
491 int numPipesNeeded = pipesNeeded(ctx, list);
492 int availPipes = getAvailablePipes(ctx);
493
494 if(numPipesNeeded > availPipes) {
495 ALOGD_IF(isDebug(), "%s: Insufficient MDP pipes, needed %d, avail %d",
496 __FUNCTION__, numPipesNeeded, availPipes);
497 return false;
498 }
499
500 return true;
501}
502
503bool MDPComp::isOnlyVideoDoable(hwc_context_t *ctx,
504 hwc_display_contents_1_t* list){
505 int numAppLayers = ctx->listStats[mDpy].numAppLayers;
506 mCurrentFrame.reset(numAppLayers);
507 updateYUV(ctx, list);
Saurabh Shah4fdde762013-04-30 18:47:33 -0700508 int mdpCount = mCurrentFrame.mdpCount;
Saurabh Shahaa236822013-04-24 18:07:26 -0700509 int fbNeeded = int(mCurrentFrame.fbCount != 0);
510
511 if(!isYuvPresent(ctx, mDpy)) {
512 return false;
513 }
514
Saurabh Shah4fdde762013-04-30 18:47:33 -0700515 if(!mdpCount)
516 return false;
517
Saurabh Shahaa236822013-04-24 18:07:26 -0700518 if(mdpCount > (sMaxPipesPerMixer - fbNeeded)) {
519 ALOGD_IF(isDebug(), "%s: Exceeds MAX_PIPES_PER_MIXER",__FUNCTION__);
520 return false;
521 }
522
523 int numPipesNeeded = pipesNeeded(ctx, list);
524 int availPipes = getAvailablePipes(ctx);
525 if(numPipesNeeded > availPipes) {
526 ALOGD_IF(isDebug(), "%s: Insufficient MDP pipes, needed %d, avail %d",
527 __FUNCTION__, numPipesNeeded, availPipes);
528 return false;
529 }
530
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800531 return true;
532}
533
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800534/* Checks for conditions where YUV layers cannot be bypassed */
535bool MDPComp::isYUVDoable(hwc_context_t* ctx, hwc_layer_1_t* layer) {
Saurabh Shahe2474082013-05-15 16:32:13 -0700536 bool extAnimBlockFeature = mDpy && ctx->listStats[mDpy].isDisplayAnimating;
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800537
Saurabh Shahe2474082013-05-15 16:32:13 -0700538 if(isSkipLayer(layer) && !extAnimBlockFeature) {
539 ALOGD_IF(isDebug(), "%s: Video marked SKIP dpy %d", __FUNCTION__, mDpy);
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800540 return false;
541 }
542
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800543 if(isSecuring(ctx, layer)) {
544 ALOGD_IF(isDebug(), "%s: MDP securing is active", __FUNCTION__);
545 return false;
546 }
547
Saurabh Shah4fdde762013-04-30 18:47:33 -0700548 if(!isValidDimension(ctx, layer)) {
549 ALOGD_IF(isDebug(), "%s: Buffer is of invalid width",
550 __FUNCTION__);
551 return false;
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800552 }
Saurabh Shah4fdde762013-04-30 18:47:33 -0700553
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800554 return true;
555}
556
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800557void MDPComp::batchLayers() {
558 /* Idea is to keep as many contiguous non-updating(cached) layers in FB and
559 * send rest of them through MDP. NEVER mark an updating layer for caching.
560 * But cached ones can be marked for MDP*/
561
562 int maxBatchStart = -1;
563 int maxBatchCount = 0;
564
565 /* All or Nothing is cached. No batching needed */
Saurabh Shahaa236822013-04-24 18:07:26 -0700566 if(!mCurrentFrame.fbCount) {
567 mCurrentFrame.fbZ = -1;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800568 return;
Saurabh Shahaa236822013-04-24 18:07:26 -0700569 }
570 if(!mCurrentFrame.mdpCount) {
571 mCurrentFrame.fbZ = 0;
572 return;
573 }
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800574
575 /* Search for max number of contiguous (cached) layers */
576 int i = 0;
577 while (i < mCurrentFrame.layerCount) {
578 int count = 0;
579 while(mCurrentFrame.isFBComposed[i] && i < mCurrentFrame.layerCount) {
580 count++; i++;
581 }
582 if(count > maxBatchCount) {
583 maxBatchCount = count;
584 maxBatchStart = i - count;
Saurabh Shahaa236822013-04-24 18:07:26 -0700585 mCurrentFrame.fbZ = maxBatchStart;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800586 }
587 if(i < mCurrentFrame.layerCount) i++;
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800588 }
589
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800590 /* reset rest of the layers for MDP comp */
591 for(int i = 0; i < mCurrentFrame.layerCount; i++) {
592 if(i != maxBatchStart){
593 mCurrentFrame.isFBComposed[i] = false;
594 } else {
595 i += maxBatchCount;
596 }
597 }
598
599 mCurrentFrame.fbCount = maxBatchCount;
Saurabh Shahaa236822013-04-24 18:07:26 -0700600 mCurrentFrame.mdpCount = mCurrentFrame.layerCount -
601 mCurrentFrame.fbCount;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800602
603 ALOGD_IF(isDebug(),"%s: cached count: %d",__FUNCTION__,
604 mCurrentFrame.fbCount);
605}
Saurabh Shah85234ec2013-04-12 17:09:00 -0700606
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800607void MDPComp::updateLayerCache(hwc_context_t* ctx,
608 hwc_display_contents_1_t* list) {
609
610 int numAppLayers = ctx->listStats[mDpy].numAppLayers;
611 int numCacheableLayers = 0;
612
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800613 for(int i = 0; i < numAppLayers; i++) {
614 if (mCachedFrame.hnd[i] == list->hwLayers[i].handle) {
615 numCacheableLayers++;
616 mCurrentFrame.isFBComposed[i] = true;
617 } else {
Saurabh Shahaa236822013-04-24 18:07:26 -0700618 mCurrentFrame.isFBComposed[i] = false;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800619 mCachedFrame.hnd[i] = list->hwLayers[i].handle;
620 }
621 }
Saurabh Shahaa236822013-04-24 18:07:26 -0700622
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800623 mCurrentFrame.fbCount = numCacheableLayers;
Saurabh Shahaa236822013-04-24 18:07:26 -0700624 mCurrentFrame.mdpCount = mCurrentFrame.layerCount -
625 mCurrentFrame.fbCount;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800626 ALOGD_IF(isDebug(),"%s: cached count: %d",__FUNCTION__, numCacheableLayers);
627}
628
629int MDPComp::getAvailablePipes(hwc_context_t* ctx) {
630 int numDMAPipes = qdutils::MDPVersion::getInstance().getDMAPipes();
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800631 overlay::Overlay& ov = *ctx->mOverlay;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800632
633 int numAvailable = ov.availablePipes(mDpy);
634
635 //Reserve DMA for rotator
Saurabh Shah85234ec2013-04-12 17:09:00 -0700636 if(Overlay::getDMAMode() == Overlay::DMA_BLOCK_MODE)
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800637 numAvailable -= numDMAPipes;
638
639 //Reserve pipe(s)for FB
640 if(mCurrentFrame.fbCount)
641 numAvailable -= pipesForFB();
642
643 return numAvailable;
644}
645
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800646void MDPComp::updateYUV(hwc_context_t* ctx, hwc_display_contents_1_t* list) {
647
648 int nYuvCount = ctx->listStats[mDpy].yuvCount;
Ramkumar Radhakrishnan59a11072013-04-15 16:14:49 -0700649 if(!nYuvCount && mDpy) {
650 //Reset "No animation on external display" related parameters.
651 ctx->mPrevCropVideo.left = ctx->mPrevCropVideo.top =
652 ctx->mPrevCropVideo.right = ctx->mPrevCropVideo.bottom = 0;
653 ctx->mPrevDestVideo.left = ctx->mPrevDestVideo.top =
654 ctx->mPrevDestVideo.right = ctx->mPrevDestVideo.bottom = 0;
655 ctx->mPrevTransformVideo = 0;
656 return;
657 }
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800658 for(int index = 0;index < nYuvCount; index++){
659 int nYuvIndex = ctx->listStats[mDpy].yuvIndices[index];
660 hwc_layer_1_t* layer = &list->hwLayers[nYuvIndex];
661
662 if(!isYUVDoable(ctx, layer)) {
663 if(!mCurrentFrame.isFBComposed[nYuvIndex]) {
664 mCurrentFrame.isFBComposed[nYuvIndex] = true;
665 mCurrentFrame.fbCount++;
666 }
667 } else {
668 if(mCurrentFrame.isFBComposed[nYuvIndex]) {
669 mCurrentFrame.isFBComposed[nYuvIndex] = false;
670 mCurrentFrame.fbCount--;
671 }
672 }
673 }
Saurabh Shahaa236822013-04-24 18:07:26 -0700674
675 mCurrentFrame.mdpCount = mCurrentFrame.layerCount -
676 mCurrentFrame.fbCount;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800677 ALOGD_IF(isDebug(),"%s: cached count: %d",__FUNCTION__,
678 mCurrentFrame.fbCount);
679}
680
Saurabh Shahaa236822013-04-24 18:07:26 -0700681bool MDPComp::programMDP(hwc_context_t *ctx, hwc_display_contents_1_t* list) {
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800682 if(!allocLayerPipes(ctx, list)) {
683 ALOGD_IF(isDebug(), "%s: Unable to allocate MDP pipes", __FUNCTION__);
Saurabh Shahaa236822013-04-24 18:07:26 -0700684 return false;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800685 }
686
Saurabh Shahaa236822013-04-24 18:07:26 -0700687 bool fbBatch = false;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800688 for (int index = 0, mdpNextZOrder = 0; index < mCurrentFrame.layerCount;
Saurabh Shahaa236822013-04-24 18:07:26 -0700689 index++) {
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800690 if(!mCurrentFrame.isFBComposed[index]) {
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800691 int mdpIndex = mCurrentFrame.layerToMDP[index];
692 hwc_layer_1_t* layer = &list->hwLayers[index];
693
694 MdpPipeInfo* cur_pipe = mCurrentFrame.mdpToLayer[mdpIndex].pipeInfo;
695 cur_pipe->zOrder = mdpNextZOrder++;
696
697 if(configure(ctx, layer, mCurrentFrame.mdpToLayer[mdpIndex]) != 0 ){
698 ALOGD_IF(isDebug(), "%s: Failed to configure overlay for \
699 layer %d",__FUNCTION__, index);
Saurabh Shahaa236822013-04-24 18:07:26 -0700700 return false;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800701 }
Saurabh Shahaa236822013-04-24 18:07:26 -0700702 } else if(fbBatch == false) {
703 mdpNextZOrder++;
704 fbBatch = true;
705 }
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800706 }
707
Saurabh Shahaa236822013-04-24 18:07:26 -0700708 return true;
709}
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800710
Saurabh Shahaa236822013-04-24 18:07:26 -0700711bool MDPComp::programYUV(hwc_context_t *ctx, hwc_display_contents_1_t* list) {
712 if(!allocLayerPipes(ctx, list)) {
713 ALOGD_IF(isDebug(), "%s: Unable to allocate MDP pipes", __FUNCTION__);
714 return false;
715 }
716 //If we are in this block, it means we have yuv + rgb layers both
717 int mdpIdx = 0;
718 for (int index = 0; index < mCurrentFrame.layerCount; index++) {
719 if(!mCurrentFrame.isFBComposed[index]) {
720 hwc_layer_1_t* layer = &list->hwLayers[index];
721 int mdpIndex = mCurrentFrame.layerToMDP[index];
722 MdpPipeInfo* cur_pipe =
723 mCurrentFrame.mdpToLayer[mdpIndex].pipeInfo;
724 cur_pipe->zOrder = mdpIdx++;
725
726 if(configure(ctx, layer,
727 mCurrentFrame.mdpToLayer[mdpIndex]) != 0 ){
728 ALOGD_IF(isDebug(), "%s: Failed to configure overlay for \
729 layer %d",__FUNCTION__, index);
730 return false;
731 }
732 }
733 }
734 return true;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800735}
736
737int MDPComp::prepare(hwc_context_t *ctx, hwc_display_contents_1_t* list) {
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800738
739 //reset old data
Saurabh Shahaa236822013-04-24 18:07:26 -0700740 const int numLayers = ctx->listStats[mDpy].numAppLayers;
741 mCurrentFrame.reset(numLayers);
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800742
Saurabh Shahaa236822013-04-24 18:07:26 -0700743 //Hard conditions, if not met, cannot do MDP comp
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800744 if(!isFrameDoable(ctx)) {
745 ALOGD_IF( isDebug(),"%s: MDP Comp not possible for this frame",
746 __FUNCTION__);
Saurabh Shahaa236822013-04-24 18:07:26 -0700747 mCurrentFrame.reset(numLayers);
748 mCachedFrame.cacheAll(list);
749 mCachedFrame.updateCounts(mCurrentFrame);
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800750 return 0;
751 }
752
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800753 //Check whether layers marked for MDP Composition is actually doable.
Saurabh Shahaa236822013-04-24 18:07:26 -0700754 if(isFullFrameDoable(ctx, list)){
Saurabh Shah2f3895f2013-05-02 10:13:31 -0700755 mCurrentFrame.map();
756 //Acquire and Program MDP pipes
757 if(!programMDP(ctx, list)) {
758 mCurrentFrame.reset(numLayers);
759 mCachedFrame.cacheAll(list);
760 } else { //Success
761 //Any change in composition types needs an FB refresh
762 mCurrentFrame.needsRedraw = false;
763 if(mCurrentFrame.fbCount &&
764 ((mCurrentFrame.mdpCount != mCachedFrame.mdpCount) ||
765 (mCurrentFrame.fbCount != mCachedFrame.cacheCount) ||
766 (mCurrentFrame.fbZ != mCachedFrame.fbZ) ||
767 (!mCurrentFrame.mdpCount) ||
768 (list->flags & HWC_GEOMETRY_CHANGED) ||
769 isSkipPresent(ctx, mDpy) ||
770 (mDpy > HWC_DISPLAY_PRIMARY))) {
771 mCurrentFrame.needsRedraw = true;
Saurabh Shahaa236822013-04-24 18:07:26 -0700772 }
773 }
774 } else if(isOnlyVideoDoable(ctx, list)) {
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800775 //All layers marked for MDP comp cannot be bypassed.
776 //Try to compose atleast YUV layers through MDP comp and let
777 //all the RGB layers compose in FB
Saurabh Shahaa236822013-04-24 18:07:26 -0700778 //Destination over
779 mCurrentFrame.fbZ = -1;
780 if(mCurrentFrame.fbCount)
781 mCurrentFrame.fbZ = ctx->listStats[mDpy].yuvCount;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800782
Saurabh Shahaa236822013-04-24 18:07:26 -0700783 mCurrentFrame.map();
784 if(!programYUV(ctx, list)) {
785 mCurrentFrame.reset(numLayers);
786 mCachedFrame.cacheAll(list);
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800787 }
Saurabh Shahaa236822013-04-24 18:07:26 -0700788 } else {
789 mCurrentFrame.reset(numLayers);
790 mCachedFrame.cacheAll(list);
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800791 }
792
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800793 //UpdateLayerFlags
794 setMDPCompLayerFlags(ctx, list);
Saurabh Shahaa236822013-04-24 18:07:26 -0700795 mCachedFrame.updateCounts(mCurrentFrame);
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800796
797 if(isDebug()) {
Saurabh Shahaa236822013-04-24 18:07:26 -0700798 ALOGD("GEOMETRY change: %d", (list->flags & HWC_GEOMETRY_CHANGED));
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800799 android::String8 sDump("");
800 dump(sDump);
801 ALOGE("%s",sDump.string());
802 }
803
804 return mCurrentFrame.fbZ;
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800805}
806
807//=============MDPCompLowRes===================================================
808
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700809/*
810 * Configures pipe(s) for MDP composition
811 */
Saurabh Shahcbf7ccc2012-12-19 16:45:51 -0800812int MDPCompLowRes::configure(hwc_context_t *ctx, hwc_layer_1_t *layer,
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800813 PipeLayerPair& PipeLayerPair) {
Saurabh Shahacf10202013-02-26 10:15:15 -0800814 MdpPipeInfoLowRes& mdp_info =
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800815 *(static_cast<MdpPipeInfoLowRes*>(PipeLayerPair.pipeInfo));
Saurabh Shahacf10202013-02-26 10:15:15 -0800816 eMdpFlags mdpFlags = OV_MDP_BACKEND_COMPOSITION;
817 eZorder zOrder = static_cast<eZorder>(mdp_info.zOrder);
818 eIsFg isFg = IS_FG_OFF;
819 eDest dest = mdp_info.index;
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700820
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800821 ALOGD_IF(isDebug(),"%s: configuring: layer: %p z_order: %d dest_pipe: %d",
822 __FUNCTION__, layer, zOrder, dest);
823
824 return configureLowRes(ctx, layer, mDpy, mdpFlags, zOrder, isFg, dest,
825 &PipeLayerPair.rot);
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700826}
827
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800828int MDPCompLowRes::pipesNeeded(hwc_context_t *ctx,
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800829 hwc_display_contents_1_t* list) {
830 return mCurrentFrame.mdpCount;
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700831}
832
Saurabh Shahcbf7ccc2012-12-19 16:45:51 -0800833bool MDPCompLowRes::allocLayerPipes(hwc_context_t *ctx,
Saurabh Shahe51f8ca2013-05-06 17:26:16 -0700834 hwc_display_contents_1_t* list) {
835 for(int index = 0; index < mCurrentFrame.layerCount; index++) {
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700836
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800837 if(mCurrentFrame.isFBComposed[index]) continue;
Saurabh Shahe51f8ca2013-05-06 17:26:16 -0700838
Jeykumar Sankarancf537002013-01-21 21:19:15 -0800839 hwc_layer_1_t* layer = &list->hwLayers[index];
840 private_handle_t *hnd = (private_handle_t *)layer->handle;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800841 int mdpIndex = mCurrentFrame.layerToMDP[index];
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800842 PipeLayerPair& info = mCurrentFrame.mdpToLayer[mdpIndex];
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800843 info.pipeInfo = new MdpPipeInfoLowRes;
Saurabh Shahacf10202013-02-26 10:15:15 -0800844 info.rot = NULL;
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800845 MdpPipeInfoLowRes& pipe_info = *(MdpPipeInfoLowRes*)info.pipeInfo;
Jeykumar Sankarana37fdbf2013-03-06 18:59:28 -0800846 ePipeType type = MDPCOMP_OV_ANY;
847
Saurabh Shahe51f8ca2013-05-06 17:26:16 -0700848 if(isYuvBuffer(hnd)) {
849 type = MDPCOMP_OV_VG;
Saurabh Shah8a117932013-05-23 12:48:13 -0700850 } else if(!qhwc::needsScaling(ctx, layer, mDpy)
Saurabh Shah85234ec2013-04-12 17:09:00 -0700851 && Overlay::getDMAMode() != Overlay::DMA_BLOCK_MODE
852 && ctx->mMDP.version >= qdutils::MDSS_V5) {
Jeykumar Sankarana37fdbf2013-03-06 18:59:28 -0800853 type = MDPCOMP_OV_DMA;
854 }
855
856 pipe_info.index = getMdpPipe(ctx, type);
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800857 if(pipe_info.index == ovutils::OV_INVALID) {
Saurabh Shahe51f8ca2013-05-06 17:26:16 -0700858 ALOGD_IF(isDebug(), "%s: Unable to get pipe type = %d",
859 __FUNCTION__, (int) type);
Naseer Ahmed54821fe2012-11-28 18:44:38 -0500860 return false;
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700861 }
862 }
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700863 return true;
864}
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700865
Saurabh Shahcbf7ccc2012-12-19 16:45:51 -0800866bool MDPCompLowRes::draw(hwc_context_t *ctx, hwc_display_contents_1_t* list) {
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700867
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800868 if(!isEnabled()) {
Naseer Ahmed54821fe2012-11-28 18:44:38 -0500869 ALOGD_IF(isDebug(),"%s: MDP Comp not configured", __FUNCTION__);
870 return true;
Saurabh Shahcbf7ccc2012-12-19 16:45:51 -0800871 }
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700872
873 if(!ctx || !list) {
874 ALOGE("%s: invalid contxt or list",__FUNCTION__);
Naseer Ahmed54821fe2012-11-28 18:44:38 -0500875 return false;
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700876 }
877
Naseer Ahmed54821fe2012-11-28 18:44:38 -0500878 /* reset Invalidator */
Saurabh Shah2d998a92013-05-14 17:55:58 -0700879 if(idleInvalidator && !sIdleFallBack && mCurrentFrame.mdpCount)
Naseer Ahmed54821fe2012-11-28 18:44:38 -0500880 idleInvalidator->markForSleep();
881
882 overlay::Overlay& ov = *ctx->mOverlay;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800883 LayerProp *layerProp = ctx->layerProp[mDpy];
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700884
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800885 int numHwLayers = ctx->listStats[mDpy].numAppLayers;
886 for(int i = 0; i < numHwLayers && mCurrentFrame.mdpCount; i++ )
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700887 {
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800888 if(mCurrentFrame.isFBComposed[i]) continue;
889
Naseer Ahmed5b6708a2012-08-02 13:46:08 -0700890 hwc_layer_1_t *layer = &list->hwLayers[i];
Saurabh Shahacf10202013-02-26 10:15:15 -0800891 private_handle_t *hnd = (private_handle_t *)layer->handle;
892 if(!hnd) {
893 ALOGE("%s handle null", __FUNCTION__);
894 return false;
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700895 }
896
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800897 int mdpIndex = mCurrentFrame.layerToMDP[i];
898
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800899 MdpPipeInfoLowRes& pipe_info =
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800900 *(MdpPipeInfoLowRes*)mCurrentFrame.mdpToLayer[mdpIndex].pipeInfo;
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800901 ovutils::eDest dest = pipe_info.index;
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800902 if(dest == ovutils::OV_INVALID) {
903 ALOGE("%s: Invalid pipe index (%d)", __FUNCTION__, dest);
Naseer Ahmed54821fe2012-11-28 18:44:38 -0500904 return false;
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700905 }
906
Saurabh Shahacf10202013-02-26 10:15:15 -0800907 if(!(layerProp[i].mFlags & HWC_MDPCOMP)) {
908 continue;
909 }
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700910
Saurabh Shahacf10202013-02-26 10:15:15 -0800911 ALOGD_IF(isDebug(),"%s: MDP Comp: Drawing layer: %p hnd: %p \
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800912 using pipe: %d", __FUNCTION__, layer,
913 hnd, dest );
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700914
Saurabh Shahacf10202013-02-26 10:15:15 -0800915 int fd = hnd->fd;
916 uint32_t offset = hnd->offset;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800917 Rotator *rot = mCurrentFrame.mdpToLayer[mdpIndex].rot;
Saurabh Shahacf10202013-02-26 10:15:15 -0800918 if(rot) {
919 if(!rot->queueBuffer(fd, offset))
Naseer Ahmed54821fe2012-11-28 18:44:38 -0500920 return false;
Saurabh Shahacf10202013-02-26 10:15:15 -0800921 fd = rot->getDstMemId();
922 offset = rot->getDstOffset();
923 }
924
925 if (!ov.queueBuffer(fd, offset, dest)) {
926 ALOGE("%s: queueBuffer failed for external", __FUNCTION__);
927 return false;
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700928 }
Naseer Ahmed54821fe2012-11-28 18:44:38 -0500929
930 layerProp[i].mFlags &= ~HWC_MDPCOMP;
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700931 }
Naseer Ahmed54821fe2012-11-28 18:44:38 -0500932 return true;
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700933}
934
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800935//=============MDPCompHighRes===================================================
936
937int MDPCompHighRes::pipesNeeded(hwc_context_t *ctx,
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800938 hwc_display_contents_1_t* list) {
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800939 int pipesNeeded = 0;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800940 int hw_w = ctx->dpyAttr[mDpy].xres;
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800941
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800942 for(int i = 0; i < mCurrentFrame.layerCount; ++i) {
943 if(!mCurrentFrame.isFBComposed[i]) {
944 hwc_layer_1_t* layer = &list->hwLayers[i];
945 hwc_rect_t dst = layer->displayFrame;
946 if(dst.left > hw_w/2) {
947 pipesNeeded++;
948 } else if(dst.right <= hw_w/2) {
949 pipesNeeded++;
950 } else {
951 pipesNeeded += 2;
952 }
953 }
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800954 }
955 return pipesNeeded;
956}
957
958bool MDPCompHighRes::acquireMDPPipes(hwc_context_t *ctx, hwc_layer_1_t* layer,
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800959 MdpPipeInfoHighRes& pipe_info,
960 ePipeType type) {
961 int hw_w = ctx->dpyAttr[mDpy].xres;
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800962
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800963 hwc_rect_t dst = layer->displayFrame;
964 if(dst.left > hw_w/2) {
965 pipe_info.lIndex = ovutils::OV_INVALID;
966 pipe_info.rIndex = getMdpPipe(ctx, type);
967 if(pipe_info.rIndex == ovutils::OV_INVALID)
968 return false;
969 } else if (dst.right <= hw_w/2) {
970 pipe_info.rIndex = ovutils::OV_INVALID;
971 pipe_info.lIndex = getMdpPipe(ctx, type);
972 if(pipe_info.lIndex == ovutils::OV_INVALID)
973 return false;
974 } else {
975 pipe_info.rIndex = getMdpPipe(ctx, type);
976 pipe_info.lIndex = getMdpPipe(ctx, type);
977 if(pipe_info.rIndex == ovutils::OV_INVALID ||
978 pipe_info.lIndex == ovutils::OV_INVALID)
979 return false;
980 }
981 return true;
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800982}
983
984bool MDPCompHighRes::allocLayerPipes(hwc_context_t *ctx,
Saurabh Shahe51f8ca2013-05-06 17:26:16 -0700985 hwc_display_contents_1_t* list) {
986 for(int index = 0 ; index < mCurrentFrame.layerCount; index++) {
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800987
Saurabh Shahe51f8ca2013-05-06 17:26:16 -0700988 if(mCurrentFrame.isFBComposed[index]) continue;
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800989
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800990 hwc_layer_1_t* layer = &list->hwLayers[index];
991 private_handle_t *hnd = (private_handle_t *)layer->handle;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -0800992 PipeLayerPair& info = mCurrentFrame.mdpToLayer[index];
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800993 info.pipeInfo = new MdpPipeInfoHighRes;
Saurabh Shah9e3adb22013-03-26 11:16:27 -0700994 info.rot = NULL;
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800995 MdpPipeInfoHighRes& pipe_info = *(MdpPipeInfoHighRes*)info.pipeInfo;
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -0800996 ePipeType type = MDPCOMP_OV_ANY;
997
Saurabh Shahe51f8ca2013-05-06 17:26:16 -0700998 if(isYuvBuffer(hnd)) {
999 type = MDPCOMP_OV_VG;
Saurabh Shah8a117932013-05-23 12:48:13 -07001000 } else if(!qhwc::needsScaling(ctx, layer, mDpy)
Saurabh Shah85234ec2013-04-12 17:09:00 -07001001 && Overlay::getDMAMode() != Overlay::DMA_BLOCK_MODE
Saurabh Shahe51f8ca2013-05-06 17:26:16 -07001002 && ctx->mMDP.version >= qdutils::MDSS_V5) {
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001003 type = MDPCOMP_OV_DMA;
Saurabh Shahe51f8ca2013-05-06 17:26:16 -07001004 }
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001005
1006 if(!acquireMDPPipes(ctx, layer, pipe_info, type)) {
Saurabh Shahe51f8ca2013-05-06 17:26:16 -07001007 ALOGD_IF(isDebug(), "%s: Unable to get pipe for type = %d",
1008 __FUNCTION__, (int) type);
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001009 return false;
1010 }
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001011 }
1012 return true;
1013}
1014/*
1015 * Configures pipe(s) for MDP composition
1016 */
1017int MDPCompHighRes::configure(hwc_context_t *ctx, hwc_layer_1_t *layer,
Jeykumar Sankaran85977e32013-02-25 17:06:08 -08001018 PipeLayerPair& PipeLayerPair) {
Saurabh Shahacf10202013-02-26 10:15:15 -08001019 MdpPipeInfoHighRes& mdp_info =
Jeykumar Sankaran85977e32013-02-25 17:06:08 -08001020 *(static_cast<MdpPipeInfoHighRes*>(PipeLayerPair.pipeInfo));
Saurabh Shahacf10202013-02-26 10:15:15 -08001021 eZorder zOrder = static_cast<eZorder>(mdp_info.zOrder);
1022 eIsFg isFg = IS_FG_OFF;
1023 eMdpFlags mdpFlagsL = OV_MDP_BACKEND_COMPOSITION;
1024 eDest lDest = mdp_info.lIndex;
1025 eDest rDest = mdp_info.rIndex;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -08001026
1027 ALOGD_IF(isDebug(),"%s: configuring: layer: %p z_order: %d dest_pipeL: %d"
1028 "dest_pipeR: %d",__FUNCTION__, layer, zOrder, lDest, rDest);
1029
1030 return configureHighRes(ctx, layer, mDpy, mdpFlagsL, zOrder, isFg, lDest,
1031 rDest, &PipeLayerPair.rot);
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001032}
1033
1034bool MDPCompHighRes::draw(hwc_context_t *ctx, hwc_display_contents_1_t* list) {
1035
Jeykumar Sankaran85977e32013-02-25 17:06:08 -08001036 if(!isEnabled()) {
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001037 ALOGD_IF(isDebug(),"%s: MDP Comp not configured", __FUNCTION__);
1038 return true;
1039 }
1040
1041 if(!ctx || !list) {
1042 ALOGE("%s: invalid contxt or list",__FUNCTION__);
Naseer Ahmed7c958d42012-07-31 18:57:03 -07001043 return false;
1044 }
1045
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001046 /* reset Invalidator */
Saurabh Shah2d998a92013-05-14 17:55:58 -07001047 if(idleInvalidator && !sIdleFallBack && mCurrentFrame.mdpCount)
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001048 idleInvalidator->markForSleep();
1049
Naseer Ahmed54821fe2012-11-28 18:44:38 -05001050 overlay::Overlay& ov = *ctx->mOverlay;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -08001051 LayerProp *layerProp = ctx->layerProp[mDpy];
Naseer Ahmed7c958d42012-07-31 18:57:03 -07001052
Jeykumar Sankaran85977e32013-02-25 17:06:08 -08001053 int numHwLayers = ctx->listStats[mDpy].numAppLayers;
1054 for(int i = 0; i < numHwLayers && mCurrentFrame.mdpCount; i++ )
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001055 {
Jeykumar Sankaran85977e32013-02-25 17:06:08 -08001056 if(mCurrentFrame.isFBComposed[i]) continue;
1057
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001058 hwc_layer_1_t *layer = &list->hwLayers[i];
Saurabh Shahacf10202013-02-26 10:15:15 -08001059 private_handle_t *hnd = (private_handle_t *)layer->handle;
1060 if(!hnd) {
1061 ALOGE("%s handle null", __FUNCTION__);
1062 return false;
1063 }
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001064
1065 if(!(layerProp[i].mFlags & HWC_MDPCOMP)) {
1066 continue;
Naseer Ahmed7c958d42012-07-31 18:57:03 -07001067 }
Naseer Ahmed7c958d42012-07-31 18:57:03 -07001068
Jeykumar Sankaran85977e32013-02-25 17:06:08 -08001069 int mdpIndex = mCurrentFrame.layerToMDP[i];
1070
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001071 MdpPipeInfoHighRes& pipe_info =
Jeykumar Sankaran85977e32013-02-25 17:06:08 -08001072 *(MdpPipeInfoHighRes*)mCurrentFrame.mdpToLayer[mdpIndex].pipeInfo;
1073 Rotator *rot = mCurrentFrame.mdpToLayer[mdpIndex].rot;
Saurabh Shahacf10202013-02-26 10:15:15 -08001074
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001075 ovutils::eDest indexL = pipe_info.lIndex;
1076 ovutils::eDest indexR = pipe_info.rIndex;
Jeykumar Sankaran85977e32013-02-25 17:06:08 -08001077
Saurabh Shahacf10202013-02-26 10:15:15 -08001078 int fd = hnd->fd;
1079 int offset = hnd->offset;
1080
1081 if(rot) {
1082 rot->queueBuffer(fd, offset);
1083 fd = rot->getDstMemId();
1084 offset = rot->getDstOffset();
1085 }
Naseer Ahmed7c958d42012-07-31 18:57:03 -07001086
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001087 //************* play left mixer **********
1088 if(indexL != ovutils::OV_INVALID) {
1089 ovutils::eDest destL = (ovutils::eDest)indexL;
Saurabh Shahacf10202013-02-26 10:15:15 -08001090 ALOGD_IF(isDebug(),"%s: MDP Comp: Drawing layer: %p hnd: %p \
Jeykumar Sankaran85977e32013-02-25 17:06:08 -08001091 using pipe: %d", __FUNCTION__, layer, hnd, indexL );
Saurabh Shahacf10202013-02-26 10:15:15 -08001092 if (!ov.queueBuffer(fd, offset, destL)) {
1093 ALOGE("%s: queueBuffer failed for left mixer", __FUNCTION__);
1094 return false;
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001095 }
1096 }
1097
1098 //************* play right mixer **********
1099 if(indexR != ovutils::OV_INVALID) {
1100 ovutils::eDest destR = (ovutils::eDest)indexR;
Saurabh Shahacf10202013-02-26 10:15:15 -08001101 ALOGD_IF(isDebug(),"%s: MDP Comp: Drawing layer: %p hnd: %p \
Jeykumar Sankaran85977e32013-02-25 17:06:08 -08001102 using pipe: %d", __FUNCTION__, layer, hnd, indexR );
Saurabh Shahacf10202013-02-26 10:15:15 -08001103 if (!ov.queueBuffer(fd, offset, destR)) {
1104 ALOGE("%s: queueBuffer failed for right mixer", __FUNCTION__);
1105 return false;
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001106 }
1107 }
Saurabh Shahacf10202013-02-26 10:15:15 -08001108
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001109 layerProp[i].mFlags &= ~HWC_MDPCOMP;
1110 }
Saurabh Shahacf10202013-02-26 10:15:15 -08001111
Jeykumar Sankaranb551ce42013-01-10 16:26:48 -08001112 return true;
Naseer Ahmed7c958d42012-07-31 18:57:03 -07001113}
Naseer Ahmed7c958d42012-07-31 18:57:03 -07001114}; //namespace
1115