Naseer Ahmed | 7c958d4 | 2012-07-31 18:57:03 -0700 | [diff] [blame] | 1 | /* |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 2 | * Copyright (C) 2012-2013, The Linux Foundation. All rights reserved. |
Naseer Ahmed | 7c958d4 | 2012-07-31 18:57:03 -0700 | [diff] [blame] | 3 | * 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 Shah | 4fdde76 | 2013-04-30 18:47:33 -0700 | [diff] [blame] | 19 | #include <math.h> |
Naseer Ahmed | 7c958d4 | 2012-07-31 18:57:03 -0700 | [diff] [blame] | 20 | #include "hwc_mdpcomp.h" |
Naseer Ahmed | 54821fe | 2012-11-28 18:44:38 -0500 | [diff] [blame] | 21 | #include <sys/ioctl.h> |
Saurabh Shah | 56f610d | 2012-08-07 15:27:06 -0700 | [diff] [blame] | 22 | #include "external.h" |
Ramkumar Radhakrishnan | 47573e2 | 2012-11-07 11:36:41 -0800 | [diff] [blame] | 23 | #include "qdMetaData.h" |
Ramkumar Radhakrishnan | 288f8c7 | 2013-01-15 11:37:54 -0800 | [diff] [blame] | 24 | #include "mdp_version.h" |
Saurabh Shah | acf1020 | 2013-02-26 10:15:15 -0800 | [diff] [blame] | 25 | #include <overlayRotator.h> |
| 26 | |
Saurabh Shah | 85234ec | 2013-04-12 17:09:00 -0700 | [diff] [blame] | 27 | using namespace overlay; |
Saurabh Shah | bd2d083 | 2013-04-04 14:33:08 -0700 | [diff] [blame] | 28 | using namespace qdutils; |
Saurabh Shah | acf1020 | 2013-02-26 10:15:15 -0800 | [diff] [blame] | 29 | using namespace overlay::utils; |
| 30 | namespace ovutils = overlay::utils; |
Naseer Ahmed | 7c958d4 | 2012-07-31 18:57:03 -0700 | [diff] [blame] | 31 | |
Naseer Ahmed | 7c958d4 | 2012-07-31 18:57:03 -0700 | [diff] [blame] | 32 | namespace qhwc { |
| 33 | |
Saurabh Shah | cbf7ccc | 2012-12-19 16:45:51 -0800 | [diff] [blame] | 34 | //==============MDPComp======================================================== |
| 35 | |
Naseer Ahmed | 7c958d4 | 2012-07-31 18:57:03 -0700 | [diff] [blame] | 36 | IdleInvalidator *MDPComp::idleInvalidator = NULL; |
| 37 | bool MDPComp::sIdleFallBack = false; |
| 38 | bool MDPComp::sDebugLogs = false; |
Naseer Ahmed | 54821fe | 2012-11-28 18:44:38 -0500 | [diff] [blame] | 39 | bool MDPComp::sEnabled = false; |
Jeykumar Sankaran | 24c199d | 2013-05-24 09:40:36 -0700 | [diff] [blame] | 40 | bool MDPComp::sEnableMixedMode = true; |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 41 | int MDPComp::sMaxPipesPerMixer = MAX_PIPES_PER_MIXER; |
Naseer Ahmed | 7c958d4 | 2012-07-31 18:57:03 -0700 | [diff] [blame] | 42 | |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 43 | MDPComp* MDPComp::getObject(const int& width, int dpy) { |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 44 | if(width <= MAX_DISPLAY_DIM) { |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 45 | return new MDPCompLowRes(dpy); |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 46 | } else { |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 47 | return new MDPCompHighRes(dpy); |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 48 | } |
Saurabh Shah | cbf7ccc | 2012-12-19 16:45:51 -0800 | [diff] [blame] | 49 | } |
| 50 | |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 51 | MDPComp::MDPComp(int dpy):mDpy(dpy){}; |
| 52 | |
Saurabh Shah | cbf7ccc | 2012-12-19 16:45:51 -0800 | [diff] [blame] | 53 | void MDPComp::dump(android::String8& buf) |
| 54 | { |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 55 | 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 Shah | cbf7ccc | 2012-12-19 16:45:51 -0800 | [diff] [blame] | 79 | } |
| 80 | |
| 81 | bool MDPComp::init(hwc_context_t *ctx) { |
| 82 | |
| 83 | if(!ctx) { |
| 84 | ALOGE("%s: Invalid hwc context!!",__FUNCTION__); |
| 85 | return false; |
| 86 | } |
| 87 | |
Saurabh Shah | cbf7ccc | 2012-12-19 16:45:51 -0800 | [diff] [blame] | 88 | char property[PROPERTY_VALUE_MAX]; |
| 89 | |
| 90 | sEnabled = false; |
| 91 | if((property_get("persist.hwc.mdpcomp.enable", property, NULL) > 0) && |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 92 | (!strncmp(property, "1", PROPERTY_VALUE_MAX ) || |
| 93 | (!strncasecmp(property,"true", PROPERTY_VALUE_MAX )))) { |
Saurabh Shah | cbf7ccc | 2012-12-19 16:45:51 -0800 | [diff] [blame] | 94 | sEnabled = true; |
Xiaoming Zhou | 944e02e | 2013-05-01 20:54:03 -0400 | [diff] [blame] | 95 | if(!setupBasePipe(ctx)) { |
| 96 | ALOGE("%s: Failed to setup primary base pipe", __FUNCTION__); |
| 97 | return false; |
| 98 | } |
Saurabh Shah | cbf7ccc | 2012-12-19 16:45:51 -0800 | [diff] [blame] | 99 | } |
| 100 | |
Jeykumar Sankaran | 24c199d | 2013-05-24 09:40:36 -0700 | [diff] [blame] | 101 | 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 Shah | cbf7ccc | 2012-12-19 16:45:51 -0800 | [diff] [blame] | 108 | sDebugLogs = false; |
| 109 | if(property_get("debug.mdpcomp.logs", property, NULL) > 0) { |
| 110 | if(atoi(property) != 0) |
| 111 | sDebugLogs = true; |
| 112 | } |
| 113 | |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 114 | sMaxPipesPerMixer = MAX_PIPES_PER_MIXER; |
Saurabh Shah | 85234ec | 2013-04-12 17:09:00 -0700 | [diff] [blame] | 115 | 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 Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 119 | } |
| 120 | |
Saurabh Shah | cbf7ccc | 2012-12-19 16:45:51 -0800 | [diff] [blame] | 121 | 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 Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 131 | ALOGE("%s: failed to instantiate idleInvalidator object", __FUNCTION__); |
Saurabh Shah | cbf7ccc | 2012-12-19 16:45:51 -0800 | [diff] [blame] | 132 | } else { |
| 133 | idleInvalidator->init(timeout_handler, ctx, idle_timeout); |
| 134 | } |
Naseer Ahmed | 7c958d4 | 2012-07-31 18:57:03 -0700 | [diff] [blame] | 135 | return true; |
| 136 | } |
| 137 | |
| 138 | void 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 Hall | 3be78d9 | 2012-08-21 15:12:23 -0700 | [diff] [blame] | 146 | if(!ctx->proc) { |
Naseer Ahmed | 7c958d4 | 2012-07-31 18:57:03 -0700 | [diff] [blame] | 147 | ALOGE("%s: HWC proc not registered", __FUNCTION__); |
| 148 | return; |
| 149 | } |
| 150 | sIdleFallBack = true; |
| 151 | /* Trigger SF to redraw the current frame */ |
Jesse Hall | 3be78d9 | 2012-08-21 15:12:23 -0700 | [diff] [blame] | 152 | ctx->proc->invalidate(ctx->proc); |
Naseer Ahmed | 7c958d4 | 2012-07-31 18:57:03 -0700 | [diff] [blame] | 153 | } |
| 154 | |
Saurabh Shah | cbf7ccc | 2012-12-19 16:45:51 -0800 | [diff] [blame] | 155 | void MDPComp::setMDPCompLayerFlags(hwc_context_t *ctx, |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 156 | hwc_display_contents_1_t* list) { |
| 157 | LayerProp *layerProp = ctx->layerProp[mDpy]; |
Saurabh Shah | cbf7ccc | 2012-12-19 16:45:51 -0800 | [diff] [blame] | 158 | |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 159 | for(int index = 0; index < ctx->listStats[mDpy].numAppLayers; index++) { |
Saurabh Shah | cbf7ccc | 2012-12-19 16:45:51 -0800 | [diff] [blame] | 160 | hwc_layer_1_t* layer = &(list->hwLayers[index]); |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 161 | 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 Shah | cbf7ccc | 2012-12-19 16:45:51 -0800 | [diff] [blame] | 169 | } |
| 170 | } |
Naseer Ahmed | 7c958d4 | 2012-07-31 18:57:03 -0700 | [diff] [blame] | 171 | } |
Naseer Ahmed | 54821fe | 2012-11-28 18:44:38 -0500 | [diff] [blame] | 172 | |
Saurabh Shah | cbf7ccc | 2012-12-19 16:45:51 -0800 | [diff] [blame] | 173 | /* |
| 174 | * Sets up BORDERFILL as default base pipe and detaches RGB0. |
| 175 | * Framebuffer is always updated using PLAY ioctl. |
| 176 | */ |
| 177 | bool 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 Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 200 | strerror(errno)); |
Saurabh Shah | cbf7ccc | 2012-12-19 16:45:51 -0800 | [diff] [blame] | 201 | 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 Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 207 | strerror(errno)); |
Saurabh Shah | cbf7ccc | 2012-12-19 16:45:51 -0800 | [diff] [blame] | 208 | return false; |
| 209 | } |
| 210 | return true; |
| 211 | } |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 212 | MDPComp::FrameInfo::FrameInfo() { |
Saurabh Shah | aa23682 | 2013-04-24 18:07:26 -0700 | [diff] [blame] | 213 | reset(0); |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 214 | } |
Saurabh Shah | cbf7ccc | 2012-12-19 16:45:51 -0800 | [diff] [blame] | 215 | |
Saurabh Shah | aa23682 | 2013-04-24 18:07:26 -0700 | [diff] [blame] | 216 | void MDPComp::FrameInfo::reset(const int& numLayers) { |
| 217 | for(int i = 0 ; i < MAX_PIPES_PER_MIXER && numLayers; i++ ) { |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 218 | 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 Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 223 | } |
Saurabh Shah | cbf7ccc | 2012-12-19 16:45:51 -0800 | [diff] [blame] | 224 | } |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 225 | |
| 226 | memset(&mdpToLayer, 0, sizeof(mdpToLayer)); |
| 227 | memset(&layerToMDP, -1, sizeof(layerToMDP)); |
Saurabh Shah | aa23682 | 2013-04-24 18:07:26 -0700 | [diff] [blame] | 228 | memset(&isFBComposed, 1, sizeof(isFBComposed)); |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 229 | |
Saurabh Shah | aa23682 | 2013-04-24 18:07:26 -0700 | [diff] [blame] | 230 | layerCount = numLayers; |
| 231 | fbCount = numLayers; |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 232 | mdpCount = 0; |
Saurabh Shah | 2f3895f | 2013-05-02 10:13:31 -0700 | [diff] [blame] | 233 | needsRedraw = true; |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 234 | fbZ = 0; |
| 235 | } |
| 236 | |
Saurabh Shah | aa23682 | 2013-04-24 18:07:26 -0700 | [diff] [blame] | 237 | void 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 Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 248 | MDPComp::LayerCache::LayerCache() { |
| 249 | reset(); |
| 250 | } |
| 251 | |
| 252 | void MDPComp::LayerCache::reset() { |
Saurabh Shah | aa23682 | 2013-04-24 18:07:26 -0700 | [diff] [blame] | 253 | memset(&hnd, 0, sizeof(hnd)); |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 254 | mdpCount = 0; |
| 255 | cacheCount = 0; |
| 256 | layerCount = 0; |
Saurabh Shah | aa23682 | 2013-04-24 18:07:26 -0700 | [diff] [blame] | 257 | fbZ = -1; |
| 258 | } |
| 259 | |
| 260 | void 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 | |
| 267 | void MDPComp::LayerCache::updateCounts(const FrameInfo& curFrame) { |
| 268 | mdpCount = curFrame.mdpCount; |
| 269 | cacheCount = curFrame.fbCount; |
| 270 | layerCount = curFrame.layerCount; |
| 271 | fbZ = curFrame.fbZ; |
Saurabh Shah | cbf7ccc | 2012-12-19 16:45:51 -0800 | [diff] [blame] | 272 | } |
| 273 | |
Sravan Kumar D.V.N | ad5d929 | 2013-04-24 14:23:04 +0530 | [diff] [blame] | 274 | bool MDPComp::isValidDimension(hwc_context_t *ctx, hwc_layer_1_t *layer) { |
Saurabh Shah | 4fdde76 | 2013-04-30 18:47:33 -0700 | [diff] [blame] | 275 | const int dpy = HWC_DISPLAY_PRIMARY; |
Jeykumar Sankaran | c18dbc2 | 2013-02-08 14:29:44 -0800 | [diff] [blame] | 276 | 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 Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 283 | int hw_w = ctx->dpyAttr[mDpy].xres; |
| 284 | int hw_h = ctx->dpyAttr[mDpy].yres; |
Jeykumar Sankaran | c18dbc2 | 2013-02-08 14:29:44 -0800 | [diff] [blame] | 285 | |
Saurabh Shah | 4fdde76 | 2013-04-30 18:47:33 -0700 | [diff] [blame] | 286 | hwc_rect_t crop = layer->sourceCrop; |
| 287 | hwc_rect_t dst = layer->displayFrame; |
Jeykumar Sankaran | c18dbc2 | 2013-02-08 14:29:44 -0800 | [diff] [blame] | 288 | |
| 289 | if(dst.left < 0 || dst.top < 0 || dst.right > hw_w || dst.bottom > hw_h) { |
Saurabh Shah | 4fdde76 | 2013-04-30 18:47:33 -0700 | [diff] [blame] | 290 | hwc_rect_t scissor = {0, 0, hw_w, hw_h }; |
| 291 | qhwc::calculate_crop_rects(crop, dst, scissor, layer->transform); |
Jeykumar Sankaran | c18dbc2 | 2013-02-08 14:29:44 -0800 | [diff] [blame] | 292 | } |
| 293 | |
Saurabh Shah | 4fdde76 | 2013-04-30 18:47:33 -0700 | [diff] [blame] | 294 | 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 Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 301 | /* 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.N | ad5d929 | 2013-04-24 14:23:04 +0530 | [diff] [blame] | 304 | * 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 Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 307 | if((crop_w < 5)||(crop_h < 5)) |
Jeykumar Sankaran | c18dbc2 | 2013-02-08 14:29:44 -0800 | [diff] [blame] | 308 | return false; |
| 309 | |
Saurabh Shah | 4fdde76 | 2013-04-30 18:47:33 -0700 | [diff] [blame] | 310 | 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 Sankaran | c18dbc2 | 2013-02-08 14:29:44 -0800 | [diff] [blame] | 329 | return true; |
| 330 | } |
| 331 | |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 332 | ovutils::eDest MDPComp::getMdpPipe(hwc_context_t *ctx, ePipeType type) { |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 333 | overlay::Overlay& ov = *ctx->mOverlay; |
| 334 | ovutils::eDest mdp_pipe = ovutils::OV_INVALID; |
| 335 | |
| 336 | switch(type) { |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 337 | case MDPCOMP_OV_DMA: |
| 338 | mdp_pipe = ov.nextPipe(ovutils::OV_MDP_PIPE_DMA, mDpy); |
| 339 | if(mdp_pipe != ovutils::OV_INVALID) { |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 340 | 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 Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 348 | |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 349 | 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 Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 358 | }; |
| 359 | return ovutils::OV_INVALID; |
| 360 | } |
| 361 | |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 362 | bool MDPComp::isFrameDoable(hwc_context_t *ctx) { |
Saurabh Shah | aa23682 | 2013-04-24 18:07:26 -0700 | [diff] [blame] | 363 | bool ret = true; |
Jeykumar Sankaran | 24c199d | 2013-05-24 09:40:36 -0700 | [diff] [blame] | 364 | const int numAppLayers = ctx->listStats[mDpy].numAppLayers; |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 365 | |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 366 | if(!isEnabled()) { |
| 367 | ALOGD_IF(isDebug(),"%s: MDP Comp. not enabled.", __FUNCTION__); |
Saurabh Shah | aa23682 | 2013-04-24 18:07:26 -0700 | [diff] [blame] | 368 | ret = false; |
| 369 | } else if(ctx->mExtDispConfiguring) { |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 370 | ALOGD_IF( isDebug(),"%s: External Display connection is pending", |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 371 | __FUNCTION__); |
Saurabh Shah | aa23682 | 2013-04-24 18:07:26 -0700 | [diff] [blame] | 372 | ret = false; |
Saurabh Shah | aa23682 | 2013-04-24 18:07:26 -0700 | [diff] [blame] | 373 | } else if(ctx->isPaddingRound) { |
Saurabh Shah | 0ceeb6a | 2013-04-23 10:46:07 -0700 | [diff] [blame] | 374 | ctx->isPaddingRound = false; |
| 375 | ALOGD_IF(isDebug(), "%s: padding round",__FUNCTION__); |
Saurabh Shah | aa23682 | 2013-04-24 18:07:26 -0700 | [diff] [blame] | 376 | ret = false; |
Ramkumar Radhakrishnan | e661f96 | 2013-06-05 17:21:38 -0700 | [diff] [blame] | 377 | } 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 Shah | 0ceeb6a | 2013-04-23 10:46:07 -0700 | [diff] [blame] | 381 | } |
Saurabh Shah | aa23682 | 2013-04-24 18:07:26 -0700 | [diff] [blame] | 382 | return ret; |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 383 | } |
| 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 */ |
| 387 | bool MDPComp::isFullFrameDoable(hwc_context_t *ctx, |
| 388 | hwc_display_contents_1_t* list){ |
| 389 | |
Saurabh Shah | aa23682 | 2013-04-24 18:07:26 -0700 | [diff] [blame] | 390 | const int numAppLayers = ctx->listStats[mDpy].numAppLayers; |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 391 | |
Saurabh Shah | 2d998a9 | 2013-05-14 17:55:58 -0700 | [diff] [blame] | 392 | if(sIdleFallBack) { |
| 393 | ALOGD_IF(isDebug(), "%s: Idle fallback dpy %d",__FUNCTION__, mDpy); |
| 394 | return false; |
| 395 | } |
| 396 | |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 397 | if(mDpy > HWC_DISPLAY_PRIMARY){ |
| 398 | ALOGD_IF(isDebug(), "%s: Cannot support External display(s)", |
| 399 | __FUNCTION__); |
| 400 | return false; |
| 401 | } |
| 402 | |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 403 | if(isSkipPresent(ctx, mDpy)) { |
Saurabh Shah | aa23682 | 2013-04-24 18:07:26 -0700 | [diff] [blame] | 404 | ALOGD_IF(isDebug(),"%s: SKIP present: %d", |
| 405 | __FUNCTION__, |
| 406 | isSkipPresent(ctx, mDpy)); |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 407 | return false; |
| 408 | } |
| 409 | |
Saurabh Shah | 9f084ad | 2013-05-02 11:28:09 -0700 | [diff] [blame] | 410 | 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 Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 416 | //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 Sankaran | a37fdbf | 2013-03-06 18:59:28 -0800 | [diff] [blame] | 422 | |
Saurabh Shah | 4fdde76 | 2013-04-30 18:47:33 -0700 | [diff] [blame] | 423 | if((layer->transform & HWC_TRANSFORM_ROT_90) && !isYuvBuffer(hnd)) { |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 424 | ALOGD_IF(isDebug(), "%s: orientation involved",__FUNCTION__); |
| 425 | return false; |
| 426 | } |
| 427 | |
Saurabh Shah | 4fdde76 | 2013-04-30 18:47:33 -0700 | [diff] [blame] | 428 | if(!isValidDimension(ctx,layer)) { |
| 429 | ALOGD_IF(isDebug(), "%s: Buffer is of invalid width", |
| 430 | __FUNCTION__); |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 431 | return false; |
| 432 | } |
Prabhanjan Kandula | 9fb032a | 2013-06-18 17:37:22 +0530 | [diff] [blame^] | 433 | |
| 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 Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 441 | } |
Saurabh Shah | aa23682 | 2013-04-24 18:07:26 -0700 | [diff] [blame] | 442 | |
| 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 Sankaran | 24c199d | 2013-05-24 09:40:36 -0700 | [diff] [blame] | 447 | } else if(partialMDPComp(ctx, list)) { |
Saurabh Shah | aa23682 | 2013-04-24 18:07:26 -0700 | [diff] [blame] | 448 | ret = true; |
| 449 | } |
| 450 | return ret; |
| 451 | } |
| 452 | |
| 453 | bool 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 | |
| 478 | bool MDPComp::partialMDPComp(hwc_context_t *ctx, hwc_display_contents_1_t* list) |
| 479 | { |
| 480 | int numAppLayers = ctx->listStats[mDpy].numAppLayers; |
Jeykumar Sankaran | 24c199d | 2013-05-24 09:40:36 -0700 | [diff] [blame] | 481 | |
| 482 | if(!sEnableMixedMode) { |
| 483 | //Mixed mode is disabled. No need to even try caching. |
| 484 | return false; |
| 485 | } |
| 486 | |
Saurabh Shah | aa23682 | 2013-04-24 18:07:26 -0700 | [diff] [blame] | 487 | //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 | |
| 511 | bool 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 Shah | 4fdde76 | 2013-04-30 18:47:33 -0700 | [diff] [blame] | 516 | int mdpCount = mCurrentFrame.mdpCount; |
Saurabh Shah | aa23682 | 2013-04-24 18:07:26 -0700 | [diff] [blame] | 517 | int fbNeeded = int(mCurrentFrame.fbCount != 0); |
| 518 | |
| 519 | if(!isYuvPresent(ctx, mDpy)) { |
| 520 | return false; |
| 521 | } |
| 522 | |
Saurabh Shah | 4fdde76 | 2013-04-30 18:47:33 -0700 | [diff] [blame] | 523 | if(!mdpCount) |
| 524 | return false; |
| 525 | |
Saurabh Shah | aa23682 | 2013-04-24 18:07:26 -0700 | [diff] [blame] | 526 | 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 Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 539 | return true; |
| 540 | } |
| 541 | |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 542 | /* Checks for conditions where YUV layers cannot be bypassed */ |
| 543 | bool MDPComp::isYUVDoable(hwc_context_t* ctx, hwc_layer_1_t* layer) { |
Saurabh Shah | e247408 | 2013-05-15 16:32:13 -0700 | [diff] [blame] | 544 | bool extAnimBlockFeature = mDpy && ctx->listStats[mDpy].isDisplayAnimating; |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 545 | |
Saurabh Shah | e247408 | 2013-05-15 16:32:13 -0700 | [diff] [blame] | 546 | if(isSkipLayer(layer) && !extAnimBlockFeature) { |
| 547 | ALOGD_IF(isDebug(), "%s: Video marked SKIP dpy %d", __FUNCTION__, mDpy); |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 548 | return false; |
| 549 | } |
| 550 | |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 551 | if(isSecuring(ctx, layer)) { |
| 552 | ALOGD_IF(isDebug(), "%s: MDP securing is active", __FUNCTION__); |
| 553 | return false; |
| 554 | } |
| 555 | |
Saurabh Shah | 4fdde76 | 2013-04-30 18:47:33 -0700 | [diff] [blame] | 556 | if(!isValidDimension(ctx, layer)) { |
| 557 | ALOGD_IF(isDebug(), "%s: Buffer is of invalid width", |
| 558 | __FUNCTION__); |
| 559 | return false; |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 560 | } |
Saurabh Shah | 4fdde76 | 2013-04-30 18:47:33 -0700 | [diff] [blame] | 561 | |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 562 | return true; |
| 563 | } |
| 564 | |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 565 | void 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 Shah | aa23682 | 2013-04-24 18:07:26 -0700 | [diff] [blame] | 574 | if(!mCurrentFrame.fbCount) { |
| 575 | mCurrentFrame.fbZ = -1; |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 576 | return; |
Saurabh Shah | aa23682 | 2013-04-24 18:07:26 -0700 | [diff] [blame] | 577 | } |
| 578 | if(!mCurrentFrame.mdpCount) { |
| 579 | mCurrentFrame.fbZ = 0; |
| 580 | return; |
| 581 | } |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 582 | |
| 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 Shah | aa23682 | 2013-04-24 18:07:26 -0700 | [diff] [blame] | 593 | mCurrentFrame.fbZ = maxBatchStart; |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 594 | } |
| 595 | if(i < mCurrentFrame.layerCount) i++; |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 596 | } |
| 597 | |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 598 | /* 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 Shah | aa23682 | 2013-04-24 18:07:26 -0700 | [diff] [blame] | 608 | mCurrentFrame.mdpCount = mCurrentFrame.layerCount - |
| 609 | mCurrentFrame.fbCount; |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 610 | |
| 611 | ALOGD_IF(isDebug(),"%s: cached count: %d",__FUNCTION__, |
| 612 | mCurrentFrame.fbCount); |
| 613 | } |
Saurabh Shah | 85234ec | 2013-04-12 17:09:00 -0700 | [diff] [blame] | 614 | |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 615 | void 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 Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 621 | 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 Shah | aa23682 | 2013-04-24 18:07:26 -0700 | [diff] [blame] | 626 | mCurrentFrame.isFBComposed[i] = false; |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 627 | mCachedFrame.hnd[i] = list->hwLayers[i].handle; |
| 628 | } |
| 629 | } |
Saurabh Shah | aa23682 | 2013-04-24 18:07:26 -0700 | [diff] [blame] | 630 | |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 631 | mCurrentFrame.fbCount = numCacheableLayers; |
Saurabh Shah | aa23682 | 2013-04-24 18:07:26 -0700 | [diff] [blame] | 632 | mCurrentFrame.mdpCount = mCurrentFrame.layerCount - |
| 633 | mCurrentFrame.fbCount; |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 634 | ALOGD_IF(isDebug(),"%s: cached count: %d",__FUNCTION__, numCacheableLayers); |
| 635 | } |
| 636 | |
| 637 | int MDPComp::getAvailablePipes(hwc_context_t* ctx) { |
| 638 | int numDMAPipes = qdutils::MDPVersion::getInstance().getDMAPipes(); |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 639 | overlay::Overlay& ov = *ctx->mOverlay; |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 640 | |
| 641 | int numAvailable = ov.availablePipes(mDpy); |
| 642 | |
| 643 | //Reserve DMA for rotator |
Saurabh Shah | 85234ec | 2013-04-12 17:09:00 -0700 | [diff] [blame] | 644 | if(Overlay::getDMAMode() == Overlay::DMA_BLOCK_MODE) |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 645 | numAvailable -= numDMAPipes; |
| 646 | |
| 647 | //Reserve pipe(s)for FB |
| 648 | if(mCurrentFrame.fbCount) |
| 649 | numAvailable -= pipesForFB(); |
| 650 | |
| 651 | return numAvailable; |
| 652 | } |
| 653 | |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 654 | void MDPComp::updateYUV(hwc_context_t* ctx, hwc_display_contents_1_t* list) { |
| 655 | |
| 656 | int nYuvCount = ctx->listStats[mDpy].yuvCount; |
Ramkumar Radhakrishnan | 59a1107 | 2013-04-15 16:14:49 -0700 | [diff] [blame] | 657 | 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 Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 666 | 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 Shah | aa23682 | 2013-04-24 18:07:26 -0700 | [diff] [blame] | 682 | |
| 683 | mCurrentFrame.mdpCount = mCurrentFrame.layerCount - |
| 684 | mCurrentFrame.fbCount; |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 685 | ALOGD_IF(isDebug(),"%s: cached count: %d",__FUNCTION__, |
| 686 | mCurrentFrame.fbCount); |
| 687 | } |
| 688 | |
Saurabh Shah | aa23682 | 2013-04-24 18:07:26 -0700 | [diff] [blame] | 689 | bool MDPComp::programMDP(hwc_context_t *ctx, hwc_display_contents_1_t* list) { |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 690 | if(!allocLayerPipes(ctx, list)) { |
| 691 | ALOGD_IF(isDebug(), "%s: Unable to allocate MDP pipes", __FUNCTION__); |
Saurabh Shah | aa23682 | 2013-04-24 18:07:26 -0700 | [diff] [blame] | 692 | return false; |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 693 | } |
| 694 | |
Saurabh Shah | aa23682 | 2013-04-24 18:07:26 -0700 | [diff] [blame] | 695 | bool fbBatch = false; |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 696 | for (int index = 0, mdpNextZOrder = 0; index < mCurrentFrame.layerCount; |
Saurabh Shah | aa23682 | 2013-04-24 18:07:26 -0700 | [diff] [blame] | 697 | index++) { |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 698 | if(!mCurrentFrame.isFBComposed[index]) { |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 699 | 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 Shah | aa23682 | 2013-04-24 18:07:26 -0700 | [diff] [blame] | 708 | return false; |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 709 | } |
Saurabh Shah | aa23682 | 2013-04-24 18:07:26 -0700 | [diff] [blame] | 710 | } else if(fbBatch == false) { |
| 711 | mdpNextZOrder++; |
| 712 | fbBatch = true; |
| 713 | } |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 714 | } |
| 715 | |
Saurabh Shah | aa23682 | 2013-04-24 18:07:26 -0700 | [diff] [blame] | 716 | return true; |
| 717 | } |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 718 | |
Saurabh Shah | aa23682 | 2013-04-24 18:07:26 -0700 | [diff] [blame] | 719 | bool 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 Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 743 | } |
| 744 | |
| 745 | int MDPComp::prepare(hwc_context_t *ctx, hwc_display_contents_1_t* list) { |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 746 | |
| 747 | //reset old data |
Saurabh Shah | aa23682 | 2013-04-24 18:07:26 -0700 | [diff] [blame] | 748 | const int numLayers = ctx->listStats[mDpy].numAppLayers; |
| 749 | mCurrentFrame.reset(numLayers); |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 750 | |
Saurabh Shah | aa23682 | 2013-04-24 18:07:26 -0700 | [diff] [blame] | 751 | //Hard conditions, if not met, cannot do MDP comp |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 752 | if(!isFrameDoable(ctx)) { |
| 753 | ALOGD_IF( isDebug(),"%s: MDP Comp not possible for this frame", |
| 754 | __FUNCTION__); |
Saurabh Shah | aa23682 | 2013-04-24 18:07:26 -0700 | [diff] [blame] | 755 | mCurrentFrame.reset(numLayers); |
| 756 | mCachedFrame.cacheAll(list); |
| 757 | mCachedFrame.updateCounts(mCurrentFrame); |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 758 | return 0; |
| 759 | } |
| 760 | |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 761 | //Check whether layers marked for MDP Composition is actually doable. |
Saurabh Shah | aa23682 | 2013-04-24 18:07:26 -0700 | [diff] [blame] | 762 | if(isFullFrameDoable(ctx, list)){ |
Saurabh Shah | 2f3895f | 2013-05-02 10:13:31 -0700 | [diff] [blame] | 763 | 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 Shah | aa23682 | 2013-04-24 18:07:26 -0700 | [diff] [blame] | 780 | } |
| 781 | } |
| 782 | } else if(isOnlyVideoDoable(ctx, list)) { |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 783 | //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 Shah | aa23682 | 2013-04-24 18:07:26 -0700 | [diff] [blame] | 786 | //Destination over |
| 787 | mCurrentFrame.fbZ = -1; |
| 788 | if(mCurrentFrame.fbCount) |
| 789 | mCurrentFrame.fbZ = ctx->listStats[mDpy].yuvCount; |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 790 | |
Saurabh Shah | aa23682 | 2013-04-24 18:07:26 -0700 | [diff] [blame] | 791 | mCurrentFrame.map(); |
| 792 | if(!programYUV(ctx, list)) { |
| 793 | mCurrentFrame.reset(numLayers); |
| 794 | mCachedFrame.cacheAll(list); |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 795 | } |
Saurabh Shah | aa23682 | 2013-04-24 18:07:26 -0700 | [diff] [blame] | 796 | } else { |
| 797 | mCurrentFrame.reset(numLayers); |
| 798 | mCachedFrame.cacheAll(list); |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 799 | } |
| 800 | |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 801 | //UpdateLayerFlags |
| 802 | setMDPCompLayerFlags(ctx, list); |
Saurabh Shah | aa23682 | 2013-04-24 18:07:26 -0700 | [diff] [blame] | 803 | mCachedFrame.updateCounts(mCurrentFrame); |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 804 | |
| 805 | if(isDebug()) { |
Saurabh Shah | aa23682 | 2013-04-24 18:07:26 -0700 | [diff] [blame] | 806 | ALOGD("GEOMETRY change: %d", (list->flags & HWC_GEOMETRY_CHANGED)); |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 807 | android::String8 sDump(""); |
| 808 | dump(sDump); |
| 809 | ALOGE("%s",sDump.string()); |
| 810 | } |
| 811 | |
| 812 | return mCurrentFrame.fbZ; |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 813 | } |
| 814 | |
| 815 | //=============MDPCompLowRes=================================================== |
| 816 | |
Naseer Ahmed | 7c958d4 | 2012-07-31 18:57:03 -0700 | [diff] [blame] | 817 | /* |
| 818 | * Configures pipe(s) for MDP composition |
| 819 | */ |
Saurabh Shah | cbf7ccc | 2012-12-19 16:45:51 -0800 | [diff] [blame] | 820 | int MDPCompLowRes::configure(hwc_context_t *ctx, hwc_layer_1_t *layer, |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 821 | PipeLayerPair& PipeLayerPair) { |
Saurabh Shah | acf1020 | 2013-02-26 10:15:15 -0800 | [diff] [blame] | 822 | MdpPipeInfoLowRes& mdp_info = |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 823 | *(static_cast<MdpPipeInfoLowRes*>(PipeLayerPair.pipeInfo)); |
Saurabh Shah | acf1020 | 2013-02-26 10:15:15 -0800 | [diff] [blame] | 824 | 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 Ahmed | 7c958d4 | 2012-07-31 18:57:03 -0700 | [diff] [blame] | 828 | |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 829 | 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 Ahmed | 7c958d4 | 2012-07-31 18:57:03 -0700 | [diff] [blame] | 834 | } |
| 835 | |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 836 | int MDPCompLowRes::pipesNeeded(hwc_context_t *ctx, |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 837 | hwc_display_contents_1_t* list) { |
| 838 | return mCurrentFrame.mdpCount; |
Naseer Ahmed | 7c958d4 | 2012-07-31 18:57:03 -0700 | [diff] [blame] | 839 | } |
| 840 | |
Saurabh Shah | cbf7ccc | 2012-12-19 16:45:51 -0800 | [diff] [blame] | 841 | bool MDPCompLowRes::allocLayerPipes(hwc_context_t *ctx, |
Saurabh Shah | e51f8ca | 2013-05-06 17:26:16 -0700 | [diff] [blame] | 842 | hwc_display_contents_1_t* list) { |
| 843 | for(int index = 0; index < mCurrentFrame.layerCount; index++) { |
Naseer Ahmed | 7c958d4 | 2012-07-31 18:57:03 -0700 | [diff] [blame] | 844 | |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 845 | if(mCurrentFrame.isFBComposed[index]) continue; |
Saurabh Shah | e51f8ca | 2013-05-06 17:26:16 -0700 | [diff] [blame] | 846 | |
Jeykumar Sankaran | cf53700 | 2013-01-21 21:19:15 -0800 | [diff] [blame] | 847 | hwc_layer_1_t* layer = &list->hwLayers[index]; |
| 848 | private_handle_t *hnd = (private_handle_t *)layer->handle; |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 849 | int mdpIndex = mCurrentFrame.layerToMDP[index]; |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 850 | PipeLayerPair& info = mCurrentFrame.mdpToLayer[mdpIndex]; |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 851 | info.pipeInfo = new MdpPipeInfoLowRes; |
Saurabh Shah | acf1020 | 2013-02-26 10:15:15 -0800 | [diff] [blame] | 852 | info.rot = NULL; |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 853 | MdpPipeInfoLowRes& pipe_info = *(MdpPipeInfoLowRes*)info.pipeInfo; |
Jeykumar Sankaran | a37fdbf | 2013-03-06 18:59:28 -0800 | [diff] [blame] | 854 | ePipeType type = MDPCOMP_OV_ANY; |
| 855 | |
Saurabh Shah | e51f8ca | 2013-05-06 17:26:16 -0700 | [diff] [blame] | 856 | if(isYuvBuffer(hnd)) { |
| 857 | type = MDPCOMP_OV_VG; |
Saurabh Shah | 8a11793 | 2013-05-23 12:48:13 -0700 | [diff] [blame] | 858 | } else if(!qhwc::needsScaling(ctx, layer, mDpy) |
Saurabh Shah | 85234ec | 2013-04-12 17:09:00 -0700 | [diff] [blame] | 859 | && Overlay::getDMAMode() != Overlay::DMA_BLOCK_MODE |
| 860 | && ctx->mMDP.version >= qdutils::MDSS_V5) { |
Jeykumar Sankaran | a37fdbf | 2013-03-06 18:59:28 -0800 | [diff] [blame] | 861 | type = MDPCOMP_OV_DMA; |
| 862 | } |
| 863 | |
| 864 | pipe_info.index = getMdpPipe(ctx, type); |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 865 | if(pipe_info.index == ovutils::OV_INVALID) { |
Saurabh Shah | e51f8ca | 2013-05-06 17:26:16 -0700 | [diff] [blame] | 866 | ALOGD_IF(isDebug(), "%s: Unable to get pipe type = %d", |
| 867 | __FUNCTION__, (int) type); |
Naseer Ahmed | 54821fe | 2012-11-28 18:44:38 -0500 | [diff] [blame] | 868 | return false; |
Naseer Ahmed | 7c958d4 | 2012-07-31 18:57:03 -0700 | [diff] [blame] | 869 | } |
| 870 | } |
Naseer Ahmed | 7c958d4 | 2012-07-31 18:57:03 -0700 | [diff] [blame] | 871 | return true; |
| 872 | } |
Naseer Ahmed | 7c958d4 | 2012-07-31 18:57:03 -0700 | [diff] [blame] | 873 | |
Saurabh Shah | cbf7ccc | 2012-12-19 16:45:51 -0800 | [diff] [blame] | 874 | bool MDPCompLowRes::draw(hwc_context_t *ctx, hwc_display_contents_1_t* list) { |
Naseer Ahmed | 7c958d4 | 2012-07-31 18:57:03 -0700 | [diff] [blame] | 875 | |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 876 | if(!isEnabled()) { |
Naseer Ahmed | 54821fe | 2012-11-28 18:44:38 -0500 | [diff] [blame] | 877 | ALOGD_IF(isDebug(),"%s: MDP Comp not configured", __FUNCTION__); |
| 878 | return true; |
Saurabh Shah | cbf7ccc | 2012-12-19 16:45:51 -0800 | [diff] [blame] | 879 | } |
Naseer Ahmed | 7c958d4 | 2012-07-31 18:57:03 -0700 | [diff] [blame] | 880 | |
| 881 | if(!ctx || !list) { |
| 882 | ALOGE("%s: invalid contxt or list",__FUNCTION__); |
Naseer Ahmed | 54821fe | 2012-11-28 18:44:38 -0500 | [diff] [blame] | 883 | return false; |
Naseer Ahmed | 7c958d4 | 2012-07-31 18:57:03 -0700 | [diff] [blame] | 884 | } |
| 885 | |
Naseer Ahmed | 54821fe | 2012-11-28 18:44:38 -0500 | [diff] [blame] | 886 | /* reset Invalidator */ |
Saurabh Shah | 2d998a9 | 2013-05-14 17:55:58 -0700 | [diff] [blame] | 887 | if(idleInvalidator && !sIdleFallBack && mCurrentFrame.mdpCount) |
Naseer Ahmed | 54821fe | 2012-11-28 18:44:38 -0500 | [diff] [blame] | 888 | idleInvalidator->markForSleep(); |
| 889 | |
| 890 | overlay::Overlay& ov = *ctx->mOverlay; |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 891 | LayerProp *layerProp = ctx->layerProp[mDpy]; |
Naseer Ahmed | 7c958d4 | 2012-07-31 18:57:03 -0700 | [diff] [blame] | 892 | |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 893 | int numHwLayers = ctx->listStats[mDpy].numAppLayers; |
| 894 | for(int i = 0; i < numHwLayers && mCurrentFrame.mdpCount; i++ ) |
Naseer Ahmed | 7c958d4 | 2012-07-31 18:57:03 -0700 | [diff] [blame] | 895 | { |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 896 | if(mCurrentFrame.isFBComposed[i]) continue; |
| 897 | |
Naseer Ahmed | 5b6708a | 2012-08-02 13:46:08 -0700 | [diff] [blame] | 898 | hwc_layer_1_t *layer = &list->hwLayers[i]; |
Saurabh Shah | acf1020 | 2013-02-26 10:15:15 -0800 | [diff] [blame] | 899 | private_handle_t *hnd = (private_handle_t *)layer->handle; |
| 900 | if(!hnd) { |
| 901 | ALOGE("%s handle null", __FUNCTION__); |
| 902 | return false; |
Naseer Ahmed | 7c958d4 | 2012-07-31 18:57:03 -0700 | [diff] [blame] | 903 | } |
| 904 | |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 905 | int mdpIndex = mCurrentFrame.layerToMDP[i]; |
| 906 | |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 907 | MdpPipeInfoLowRes& pipe_info = |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 908 | *(MdpPipeInfoLowRes*)mCurrentFrame.mdpToLayer[mdpIndex].pipeInfo; |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 909 | ovutils::eDest dest = pipe_info.index; |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 910 | if(dest == ovutils::OV_INVALID) { |
| 911 | ALOGE("%s: Invalid pipe index (%d)", __FUNCTION__, dest); |
Naseer Ahmed | 54821fe | 2012-11-28 18:44:38 -0500 | [diff] [blame] | 912 | return false; |
Naseer Ahmed | 7c958d4 | 2012-07-31 18:57:03 -0700 | [diff] [blame] | 913 | } |
| 914 | |
Saurabh Shah | acf1020 | 2013-02-26 10:15:15 -0800 | [diff] [blame] | 915 | if(!(layerProp[i].mFlags & HWC_MDPCOMP)) { |
| 916 | continue; |
| 917 | } |
Naseer Ahmed | 7c958d4 | 2012-07-31 18:57:03 -0700 | [diff] [blame] | 918 | |
Saurabh Shah | acf1020 | 2013-02-26 10:15:15 -0800 | [diff] [blame] | 919 | ALOGD_IF(isDebug(),"%s: MDP Comp: Drawing layer: %p hnd: %p \ |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 920 | using pipe: %d", __FUNCTION__, layer, |
| 921 | hnd, dest ); |
Naseer Ahmed | 7c958d4 | 2012-07-31 18:57:03 -0700 | [diff] [blame] | 922 | |
Saurabh Shah | acf1020 | 2013-02-26 10:15:15 -0800 | [diff] [blame] | 923 | int fd = hnd->fd; |
| 924 | uint32_t offset = hnd->offset; |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 925 | Rotator *rot = mCurrentFrame.mdpToLayer[mdpIndex].rot; |
Saurabh Shah | acf1020 | 2013-02-26 10:15:15 -0800 | [diff] [blame] | 926 | if(rot) { |
| 927 | if(!rot->queueBuffer(fd, offset)) |
Naseer Ahmed | 54821fe | 2012-11-28 18:44:38 -0500 | [diff] [blame] | 928 | return false; |
Saurabh Shah | acf1020 | 2013-02-26 10:15:15 -0800 | [diff] [blame] | 929 | 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 Ahmed | 7c958d4 | 2012-07-31 18:57:03 -0700 | [diff] [blame] | 936 | } |
Naseer Ahmed | 54821fe | 2012-11-28 18:44:38 -0500 | [diff] [blame] | 937 | |
| 938 | layerProp[i].mFlags &= ~HWC_MDPCOMP; |
Naseer Ahmed | 7c958d4 | 2012-07-31 18:57:03 -0700 | [diff] [blame] | 939 | } |
Naseer Ahmed | 54821fe | 2012-11-28 18:44:38 -0500 | [diff] [blame] | 940 | return true; |
Naseer Ahmed | 7c958d4 | 2012-07-31 18:57:03 -0700 | [diff] [blame] | 941 | } |
| 942 | |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 943 | //=============MDPCompHighRes=================================================== |
| 944 | |
| 945 | int MDPCompHighRes::pipesNeeded(hwc_context_t *ctx, |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 946 | hwc_display_contents_1_t* list) { |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 947 | int pipesNeeded = 0; |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 948 | int hw_w = ctx->dpyAttr[mDpy].xres; |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 949 | |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 950 | 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 Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 962 | } |
| 963 | return pipesNeeded; |
| 964 | } |
| 965 | |
| 966 | bool MDPCompHighRes::acquireMDPPipes(hwc_context_t *ctx, hwc_layer_1_t* layer, |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 967 | MdpPipeInfoHighRes& pipe_info, |
| 968 | ePipeType type) { |
| 969 | int hw_w = ctx->dpyAttr[mDpy].xres; |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 970 | |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 971 | 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 Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 990 | } |
| 991 | |
| 992 | bool MDPCompHighRes::allocLayerPipes(hwc_context_t *ctx, |
Saurabh Shah | e51f8ca | 2013-05-06 17:26:16 -0700 | [diff] [blame] | 993 | hwc_display_contents_1_t* list) { |
| 994 | for(int index = 0 ; index < mCurrentFrame.layerCount; index++) { |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 995 | |
Saurabh Shah | e51f8ca | 2013-05-06 17:26:16 -0700 | [diff] [blame] | 996 | if(mCurrentFrame.isFBComposed[index]) continue; |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 997 | |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 998 | hwc_layer_1_t* layer = &list->hwLayers[index]; |
| 999 | private_handle_t *hnd = (private_handle_t *)layer->handle; |
Saurabh Shah | 0d65dbe | 2013-06-06 18:33:16 -0700 | [diff] [blame] | 1000 | int mdpIndex = mCurrentFrame.layerToMDP[index]; |
| 1001 | PipeLayerPair& info = mCurrentFrame.mdpToLayer[mdpIndex]; |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 1002 | info.pipeInfo = new MdpPipeInfoHighRes; |
Saurabh Shah | 9e3adb2 | 2013-03-26 11:16:27 -0700 | [diff] [blame] | 1003 | info.rot = NULL; |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 1004 | MdpPipeInfoHighRes& pipe_info = *(MdpPipeInfoHighRes*)info.pipeInfo; |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 1005 | ePipeType type = MDPCOMP_OV_ANY; |
| 1006 | |
Saurabh Shah | e51f8ca | 2013-05-06 17:26:16 -0700 | [diff] [blame] | 1007 | if(isYuvBuffer(hnd)) { |
| 1008 | type = MDPCOMP_OV_VG; |
Saurabh Shah | 8a11793 | 2013-05-23 12:48:13 -0700 | [diff] [blame] | 1009 | } else if(!qhwc::needsScaling(ctx, layer, mDpy) |
Saurabh Shah | 85234ec | 2013-04-12 17:09:00 -0700 | [diff] [blame] | 1010 | && Overlay::getDMAMode() != Overlay::DMA_BLOCK_MODE |
Saurabh Shah | e51f8ca | 2013-05-06 17:26:16 -0700 | [diff] [blame] | 1011 | && ctx->mMDP.version >= qdutils::MDSS_V5) { |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 1012 | type = MDPCOMP_OV_DMA; |
Saurabh Shah | e51f8ca | 2013-05-06 17:26:16 -0700 | [diff] [blame] | 1013 | } |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 1014 | |
| 1015 | if(!acquireMDPPipes(ctx, layer, pipe_info, type)) { |
Saurabh Shah | e51f8ca | 2013-05-06 17:26:16 -0700 | [diff] [blame] | 1016 | ALOGD_IF(isDebug(), "%s: Unable to get pipe for type = %d", |
| 1017 | __FUNCTION__, (int) type); |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 1018 | return false; |
| 1019 | } |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 1020 | } |
| 1021 | return true; |
| 1022 | } |
| 1023 | /* |
| 1024 | * Configures pipe(s) for MDP composition |
| 1025 | */ |
| 1026 | int MDPCompHighRes::configure(hwc_context_t *ctx, hwc_layer_1_t *layer, |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 1027 | PipeLayerPair& PipeLayerPair) { |
Saurabh Shah | acf1020 | 2013-02-26 10:15:15 -0800 | [diff] [blame] | 1028 | MdpPipeInfoHighRes& mdp_info = |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 1029 | *(static_cast<MdpPipeInfoHighRes*>(PipeLayerPair.pipeInfo)); |
Saurabh Shah | acf1020 | 2013-02-26 10:15:15 -0800 | [diff] [blame] | 1030 | 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 Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 1035 | |
| 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 Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 1041 | } |
| 1042 | |
| 1043 | bool MDPCompHighRes::draw(hwc_context_t *ctx, hwc_display_contents_1_t* list) { |
| 1044 | |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 1045 | if(!isEnabled()) { |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 1046 | 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 Ahmed | 7c958d4 | 2012-07-31 18:57:03 -0700 | [diff] [blame] | 1052 | return false; |
| 1053 | } |
| 1054 | |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 1055 | /* reset Invalidator */ |
Saurabh Shah | 2d998a9 | 2013-05-14 17:55:58 -0700 | [diff] [blame] | 1056 | if(idleInvalidator && !sIdleFallBack && mCurrentFrame.mdpCount) |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 1057 | idleInvalidator->markForSleep(); |
| 1058 | |
Naseer Ahmed | 54821fe | 2012-11-28 18:44:38 -0500 | [diff] [blame] | 1059 | overlay::Overlay& ov = *ctx->mOverlay; |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 1060 | LayerProp *layerProp = ctx->layerProp[mDpy]; |
Naseer Ahmed | 7c958d4 | 2012-07-31 18:57:03 -0700 | [diff] [blame] | 1061 | |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 1062 | int numHwLayers = ctx->listStats[mDpy].numAppLayers; |
| 1063 | for(int i = 0; i < numHwLayers && mCurrentFrame.mdpCount; i++ ) |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 1064 | { |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 1065 | if(mCurrentFrame.isFBComposed[i]) continue; |
| 1066 | |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 1067 | hwc_layer_1_t *layer = &list->hwLayers[i]; |
Saurabh Shah | acf1020 | 2013-02-26 10:15:15 -0800 | [diff] [blame] | 1068 | private_handle_t *hnd = (private_handle_t *)layer->handle; |
| 1069 | if(!hnd) { |
| 1070 | ALOGE("%s handle null", __FUNCTION__); |
| 1071 | return false; |
| 1072 | } |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 1073 | |
| 1074 | if(!(layerProp[i].mFlags & HWC_MDPCOMP)) { |
| 1075 | continue; |
Naseer Ahmed | 7c958d4 | 2012-07-31 18:57:03 -0700 | [diff] [blame] | 1076 | } |
Naseer Ahmed | 7c958d4 | 2012-07-31 18:57:03 -0700 | [diff] [blame] | 1077 | |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 1078 | int mdpIndex = mCurrentFrame.layerToMDP[i]; |
| 1079 | |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 1080 | MdpPipeInfoHighRes& pipe_info = |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 1081 | *(MdpPipeInfoHighRes*)mCurrentFrame.mdpToLayer[mdpIndex].pipeInfo; |
| 1082 | Rotator *rot = mCurrentFrame.mdpToLayer[mdpIndex].rot; |
Saurabh Shah | acf1020 | 2013-02-26 10:15:15 -0800 | [diff] [blame] | 1083 | |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 1084 | ovutils::eDest indexL = pipe_info.lIndex; |
| 1085 | ovutils::eDest indexR = pipe_info.rIndex; |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 1086 | |
Saurabh Shah | acf1020 | 2013-02-26 10:15:15 -0800 | [diff] [blame] | 1087 | 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 Ahmed | 7c958d4 | 2012-07-31 18:57:03 -0700 | [diff] [blame] | 1095 | |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 1096 | //************* play left mixer ********** |
| 1097 | if(indexL != ovutils::OV_INVALID) { |
| 1098 | ovutils::eDest destL = (ovutils::eDest)indexL; |
Saurabh Shah | acf1020 | 2013-02-26 10:15:15 -0800 | [diff] [blame] | 1099 | ALOGD_IF(isDebug(),"%s: MDP Comp: Drawing layer: %p hnd: %p \ |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 1100 | using pipe: %d", __FUNCTION__, layer, hnd, indexL ); |
Saurabh Shah | acf1020 | 2013-02-26 10:15:15 -0800 | [diff] [blame] | 1101 | if (!ov.queueBuffer(fd, offset, destL)) { |
| 1102 | ALOGE("%s: queueBuffer failed for left mixer", __FUNCTION__); |
| 1103 | return false; |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 1104 | } |
| 1105 | } |
| 1106 | |
| 1107 | //************* play right mixer ********** |
| 1108 | if(indexR != ovutils::OV_INVALID) { |
| 1109 | ovutils::eDest destR = (ovutils::eDest)indexR; |
Saurabh Shah | acf1020 | 2013-02-26 10:15:15 -0800 | [diff] [blame] | 1110 | ALOGD_IF(isDebug(),"%s: MDP Comp: Drawing layer: %p hnd: %p \ |
Jeykumar Sankaran | 85977e3 | 2013-02-25 17:06:08 -0800 | [diff] [blame] | 1111 | using pipe: %d", __FUNCTION__, layer, hnd, indexR ); |
Saurabh Shah | acf1020 | 2013-02-26 10:15:15 -0800 | [diff] [blame] | 1112 | if (!ov.queueBuffer(fd, offset, destR)) { |
| 1113 | ALOGE("%s: queueBuffer failed for right mixer", __FUNCTION__); |
| 1114 | return false; |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 1115 | } |
| 1116 | } |
Saurabh Shah | acf1020 | 2013-02-26 10:15:15 -0800 | [diff] [blame] | 1117 | |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 1118 | layerProp[i].mFlags &= ~HWC_MDPCOMP; |
| 1119 | } |
Saurabh Shah | acf1020 | 2013-02-26 10:15:15 -0800 | [diff] [blame] | 1120 | |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 1121 | return true; |
Naseer Ahmed | 7c958d4 | 2012-07-31 18:57:03 -0700 | [diff] [blame] | 1122 | } |
Naseer Ahmed | 7c958d4 | 2012-07-31 18:57:03 -0700 | [diff] [blame] | 1123 | }; //namespace |
| 1124 | |