Naseer Ahmed | 29a2681 | 2012-06-14 00:56:20 -0700 | [diff] [blame] | 1 | /* |
Sushil Chauhan | 07a2c76 | 2013-03-06 15:36:49 -0800 | [diff] [blame] | 2 | * Copyright (c) 2011-2013, The Linux Foundation. All rights reserved. |
Naseer Ahmed | 29a2681 | 2012-06-14 00:56:20 -0700 | [diff] [blame] | 3 | * |
| 4 | * Redistribution and use in source and binary forms, with or without |
| 5 | * modification, are permitted provided that the following conditions are |
| 6 | * met: |
| 7 | * * Redistributions of source code must retain the above copyright |
| 8 | * notice, this list of conditions and the following disclaimer. |
| 9 | * * Redistributions in binary form must reproduce the above |
| 10 | * copyright notice, this list of conditions and the following |
| 11 | * disclaimer in the documentation and/or other materials provided |
| 12 | * with the distribution. |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 13 | * * Neither the name of The Linux Foundation nor the names of its |
Naseer Ahmed | 29a2681 | 2012-06-14 00:56:20 -0700 | [diff] [blame] | 14 | * contributors may be used to endorse or promote products derived |
| 15 | * from this software without specific prior written permission. |
| 16 | * |
| 17 | * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED |
| 18 | * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 19 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT |
| 20 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS |
| 21 | * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 22 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 23 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR |
| 24 | * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| 25 | * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE |
| 26 | * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN |
| 27 | * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 28 | */ |
| 29 | |
Naseer Ahmed | 29a2681 | 2012-06-14 00:56:20 -0700 | [diff] [blame] | 30 | #include "overlay.h" |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 31 | #include "pipes/overlayGenPipe.h" |
| 32 | #include "mdp_version.h" |
Saurabh Shah | 5daeee5 | 2013-01-23 16:52:26 +0800 | [diff] [blame] | 33 | #include "qdMetaData.h" |
Naseer Ahmed | 29a2681 | 2012-06-14 00:56:20 -0700 | [diff] [blame] | 34 | |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 35 | #define PIPE_DEBUG 0 |
Naseer Ahmed | 29a2681 | 2012-06-14 00:56:20 -0700 | [diff] [blame] | 36 | |
| 37 | namespace overlay { |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 38 | using namespace utils; |
Naseer Ahmed | 29a2681 | 2012-06-14 00:56:20 -0700 | [diff] [blame] | 39 | |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 40 | Overlay::Overlay() { |
Sushil Chauhan | 07a2c76 | 2013-03-06 15:36:49 -0800 | [diff] [blame] | 41 | PipeBook::NUM_PIPES = qdutils::MDPVersion::getInstance().getTotalPipes(); |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 42 | for(int i = 0; i < PipeBook::NUM_PIPES; i++) { |
| 43 | mPipeBook[i].init(); |
Naseer Ahmed | 1ddf366 | 2012-07-31 19:14:18 -0700 | [diff] [blame] | 44 | } |
Naseer Ahmed | 1ddf366 | 2012-07-31 19:14:18 -0700 | [diff] [blame] | 45 | |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 46 | mDumpStr[0] = '\0'; |
Naseer Ahmed | 29a2681 | 2012-06-14 00:56:20 -0700 | [diff] [blame] | 47 | } |
| 48 | |
| 49 | Overlay::~Overlay() { |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 50 | for(int i = 0; i < PipeBook::NUM_PIPES; i++) { |
| 51 | mPipeBook[i].destroy(); |
| 52 | } |
Naseer Ahmed | 29a2681 | 2012-06-14 00:56:20 -0700 | [diff] [blame] | 53 | } |
| 54 | |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 55 | void Overlay::configBegin() { |
| 56 | for(int i = 0; i < PipeBook::NUM_PIPES; i++) { |
| 57 | //Mark as available for this round. |
| 58 | PipeBook::resetUse(i); |
| 59 | PipeBook::resetAllocation(i); |
| 60 | } |
Saurabh Shah | 784e985 | 2013-08-21 16:51:21 -0700 | [diff] [blame] | 61 | sForceSetBitmap = 0; |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 62 | mDumpStr[0] = '\0'; |
| 63 | } |
| 64 | |
| 65 | void Overlay::configDone() { |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 66 | for(int i = 0; i < PipeBook::NUM_PIPES; i++) { |
| 67 | if(PipeBook::isNotUsed(i)) { |
| 68 | //Forces UNSET on pipes, flushes rotator memory and session, closes |
| 69 | //fds |
| 70 | if(mPipeBook[i].valid()) { |
| 71 | char str[32]; |
Saurabh Shah | af5f597 | 2013-07-30 13:56:35 -0700 | [diff] [blame] | 72 | sprintf(str, "Unset=%s dpy=%d mix=%d; ", |
| 73 | PipeBook::getDestStr((eDest)i), |
| 74 | mPipeBook[i].mDisplay, mPipeBook[i].mMixer); |
Saurabh Shah | 9dc88fc | 2013-07-15 16:02:30 -0700 | [diff] [blame] | 75 | #if PIPE_DEBUG |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 76 | strncat(mDumpStr, str, strlen(str)); |
Saurabh Shah | 9dc88fc | 2013-07-15 16:02:30 -0700 | [diff] [blame] | 77 | #endif |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 78 | } |
| 79 | mPipeBook[i].destroy(); |
Naseer Ahmed | 1ddf366 | 2012-07-31 19:14:18 -0700 | [diff] [blame] | 80 | } |
Naseer Ahmed | 29a2681 | 2012-06-14 00:56:20 -0700 | [diff] [blame] | 81 | } |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 82 | dump(); |
| 83 | PipeBook::save(); |
| 84 | } |
| 85 | |
Saurabh Shah | af5f597 | 2013-07-30 13:56:35 -0700 | [diff] [blame] | 86 | eDest Overlay::nextPipe(eMdpPipeType type, int dpy, int mixer) { |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 87 | eDest dest = OV_INVALID; |
| 88 | |
| 89 | for(int i = 0; i < PipeBook::NUM_PIPES; i++) { |
Saurabh Shah | af5f597 | 2013-07-30 13:56:35 -0700 | [diff] [blame] | 90 | if( (type == OV_MDP_PIPE_ANY || //Pipe type match |
| 91 | type == PipeBook::getPipeType((eDest)i)) && |
| 92 | (mPipeBook[i].mDisplay == DPY_UNUSED || //Free or same display |
| 93 | mPipeBook[i].mDisplay == dpy) && |
| 94 | (mPipeBook[i].mMixer == MIXER_UNUSED || //Free or same mixer |
| 95 | mPipeBook[i].mMixer == mixer) && |
| 96 | PipeBook::isNotAllocated(i) && //Free pipe |
| 97 | !(sDMAMode == DMA_BLOCK_MODE && //DMA pipe in Line mode |
| 98 | PipeBook::getPipeType((eDest)i) == OV_MDP_PIPE_DMA)) { |
| 99 | dest = (eDest)i; |
| 100 | PipeBook::setAllocation(i); |
| 101 | break; |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 102 | } |
| 103 | } |
| 104 | |
| 105 | if(dest != OV_INVALID) { |
| 106 | int index = (int)dest; |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 107 | mPipeBook[index].mDisplay = dpy; |
Saurabh Shah | af5f597 | 2013-07-30 13:56:35 -0700 | [diff] [blame] | 108 | mPipeBook[index].mMixer = mixer; |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 109 | if(not mPipeBook[index].valid()) { |
| 110 | mPipeBook[index].mPipe = new GenericPipe(dpy); |
| 111 | char str[32]; |
Saurabh Shah | af5f597 | 2013-07-30 13:56:35 -0700 | [diff] [blame] | 112 | snprintf(str, 32, "Set=%s dpy=%d mix=%d; ", |
| 113 | PipeBook::getDestStr(dest), dpy, mixer); |
Saurabh Shah | 9dc88fc | 2013-07-15 16:02:30 -0700 | [diff] [blame] | 114 | #if PIPE_DEBUG |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 115 | strncat(mDumpStr, str, strlen(str)); |
Saurabh Shah | 9dc88fc | 2013-07-15 16:02:30 -0700 | [diff] [blame] | 116 | #endif |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 117 | } |
| 118 | } else { |
Saurabh Shah | af5f597 | 2013-07-30 13:56:35 -0700 | [diff] [blame] | 119 | ALOGD_IF(PIPE_DEBUG, "Pipe unavailable type=%d display=%d mixer=%d", |
| 120 | (int)type, dpy, mixer); |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 121 | } |
| 122 | |
| 123 | return dest; |
| 124 | } |
| 125 | |
Saurabh Shah | 0ceeb6a | 2013-04-23 10:46:07 -0700 | [diff] [blame] | 126 | bool Overlay::isPipeTypeAttached(eMdpPipeType type) { |
| 127 | for(int i = 0; i < PipeBook::NUM_PIPES; i++) { |
| 128 | if(type == PipeBook::getPipeType((eDest)i) && |
Saurabh Shah | c8118ac | 2013-06-27 10:03:19 -0700 | [diff] [blame] | 129 | mPipeBook[i].mDisplay != DPY_UNUSED) { |
Saurabh Shah | 0ceeb6a | 2013-04-23 10:46:07 -0700 | [diff] [blame] | 130 | return true; |
| 131 | } |
| 132 | } |
| 133 | return false; |
| 134 | } |
| 135 | |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 136 | bool Overlay::commit(utils::eDest dest) { |
| 137 | bool ret = false; |
| 138 | int index = (int)dest; |
| 139 | validate(index); |
| 140 | |
| 141 | if(mPipeBook[index].mPipe->commit()) { |
| 142 | ret = true; |
| 143 | PipeBook::setUse((int)dest); |
Saurabh Shah | 784e985 | 2013-08-21 16:51:21 -0700 | [diff] [blame] | 144 | if(sForceSetBitmap & (1 << mPipeBook[index].mDisplay)) { |
| 145 | mPipeBook[index].mPipe->forceSet(); |
| 146 | } |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 147 | } else { |
Sushil Chauhan | e0dff93 | 2013-03-01 14:33:18 -0800 | [diff] [blame] | 148 | int dpy = mPipeBook[index].mDisplay; |
| 149 | for(int i = 0; i < PipeBook::NUM_PIPES; i++) |
Saurabh Shah | df0be75 | 2013-05-23 14:40:00 -0700 | [diff] [blame] | 150 | if (mPipeBook[i].mDisplay == dpy) { |
Sushil Chauhan | e0dff93 | 2013-03-01 14:33:18 -0800 | [diff] [blame] | 151 | PipeBook::resetAllocation(i); |
Saurabh Shah | df0be75 | 2013-05-23 14:40:00 -0700 | [diff] [blame] | 152 | PipeBook::resetUse(i); |
| 153 | if(mPipeBook[i].valid()) { |
| 154 | mPipeBook[i].mPipe->forceSet(); |
| 155 | } |
| 156 | } |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 157 | } |
| 158 | return ret; |
Naseer Ahmed | 29a2681 | 2012-06-14 00:56:20 -0700 | [diff] [blame] | 159 | } |
| 160 | |
Naseer Ahmed | f48aef6 | 2012-07-20 09:05:53 -0700 | [diff] [blame] | 161 | bool Overlay::queueBuffer(int fd, uint32_t offset, |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 162 | utils::eDest dest) { |
| 163 | int index = (int)dest; |
| 164 | bool ret = false; |
| 165 | validate(index); |
| 166 | //Queue only if commit() has succeeded (and the bit set) |
| 167 | if(PipeBook::isUsed((int)dest)) { |
| 168 | ret = mPipeBook[index].mPipe->queueBuffer(fd, offset); |
Naseer Ahmed | 29a2681 | 2012-06-14 00:56:20 -0700 | [diff] [blame] | 169 | } |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 170 | return ret; |
Naseer Ahmed | 29a2681 | 2012-06-14 00:56:20 -0700 | [diff] [blame] | 171 | } |
| 172 | |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 173 | void Overlay::setCrop(const utils::Dim& d, |
| 174 | utils::eDest dest) { |
| 175 | int index = (int)dest; |
| 176 | validate(index); |
| 177 | mPipeBook[index].mPipe->setCrop(d); |
Naseer Ahmed | 29a2681 | 2012-06-14 00:56:20 -0700 | [diff] [blame] | 178 | } |
Naseer Ahmed | f48aef6 | 2012-07-20 09:05:53 -0700 | [diff] [blame] | 179 | |
Sushil Chauhan | 897a9c3 | 2013-07-18 11:09:55 -0700 | [diff] [blame^] | 180 | void Overlay::setColor(const uint32_t color, |
| 181 | utils::eDest dest) { |
| 182 | int index = (int)dest; |
| 183 | validate(index); |
| 184 | mPipeBook[index].mPipe->setColor(color); |
| 185 | } |
| 186 | |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 187 | void Overlay::setPosition(const utils::Dim& d, |
| 188 | utils::eDest dest) { |
| 189 | int index = (int)dest; |
| 190 | validate(index); |
| 191 | mPipeBook[index].mPipe->setPosition(d); |
| 192 | } |
| 193 | |
| 194 | void Overlay::setTransform(const int orient, |
| 195 | utils::eDest dest) { |
| 196 | int index = (int)dest; |
| 197 | validate(index); |
| 198 | |
Naseer Ahmed | f48aef6 | 2012-07-20 09:05:53 -0700 | [diff] [blame] | 199 | utils::eTransform transform = |
| 200 | static_cast<utils::eTransform>(orient); |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 201 | mPipeBook[index].mPipe->setTransform(transform); |
Naseer Ahmed | f48aef6 | 2012-07-20 09:05:53 -0700 | [diff] [blame] | 202 | |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 203 | } |
| 204 | |
| 205 | void Overlay::setSource(const utils::PipeArgs args, |
| 206 | utils::eDest dest) { |
| 207 | int index = (int)dest; |
| 208 | validate(index); |
| 209 | |
| 210 | PipeArgs newArgs(args); |
Sushil Chauhan | 07a2c76 | 2013-03-06 15:36:49 -0800 | [diff] [blame] | 211 | if(PipeBook::getPipeType(dest) == OV_MDP_PIPE_VG) { |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 212 | setMdpFlags(newArgs.mdpFlags, OV_MDP_PIPE_SHARE); |
| 213 | } else { |
| 214 | clearMdpFlags(newArgs.mdpFlags, OV_MDP_PIPE_SHARE); |
Naseer Ahmed | 29a2681 | 2012-06-14 00:56:20 -0700 | [diff] [blame] | 215 | } |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 216 | |
Sushil Chauhan | 07a2c76 | 2013-03-06 15:36:49 -0800 | [diff] [blame] | 217 | if(PipeBook::getPipeType(dest) == OV_MDP_PIPE_DMA) { |
Jeykumar Sankaran | b551ce4 | 2013-01-10 16:26:48 -0800 | [diff] [blame] | 218 | setMdpFlags(newArgs.mdpFlags, OV_MDP_PIPE_FORCE_DMA); |
| 219 | } else { |
| 220 | clearMdpFlags(newArgs.mdpFlags, OV_MDP_PIPE_FORCE_DMA); |
| 221 | } |
| 222 | |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 223 | mPipeBook[index].mPipe->setSource(newArgs); |
Naseer Ahmed | 29a2681 | 2012-06-14 00:56:20 -0700 | [diff] [blame] | 224 | } |
Naseer Ahmed | f48aef6 | 2012-07-20 09:05:53 -0700 | [diff] [blame] | 225 | |
Saurabh Shah | 5daeee5 | 2013-01-23 16:52:26 +0800 | [diff] [blame] | 226 | void Overlay::setVisualParams(const MetaData_t& metadata, utils::eDest dest) { |
| 227 | int index = (int)dest; |
| 228 | validate(index); |
| 229 | mPipeBook[index].mPipe->setVisualParams(metadata); |
| 230 | } |
| 231 | |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 232 | Overlay* Overlay::getInstance() { |
| 233 | if(sInstance == NULL) { |
| 234 | sInstance = new Overlay(); |
Naseer Ahmed | 29a2681 | 2012-06-14 00:56:20 -0700 | [diff] [blame] | 235 | } |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 236 | return sInstance; |
Saurabh Shah | c4d034f | 2012-09-27 15:55:15 -0700 | [diff] [blame] | 237 | } |
| 238 | |
Sushil Chauhan | 07a2c76 | 2013-03-06 15:36:49 -0800 | [diff] [blame] | 239 | // Clears any VG pipes allocated to the fb devices |
| 240 | // Generates a LUT for pipe types. |
| 241 | int Overlay::initOverlay() { |
| 242 | int mdpVersion = qdutils::MDPVersion::getInstance().getMDPVersion(); |
| 243 | int numPipesXType[OV_MDP_PIPE_ANY] = {0}; |
| 244 | numPipesXType[OV_MDP_PIPE_RGB] = |
| 245 | qdutils::MDPVersion::getInstance().getRGBPipes(); |
| 246 | numPipesXType[OV_MDP_PIPE_VG] = |
| 247 | qdutils::MDPVersion::getInstance().getVGPipes(); |
| 248 | numPipesXType[OV_MDP_PIPE_DMA] = |
| 249 | qdutils::MDPVersion::getInstance().getDMAPipes(); |
| 250 | |
| 251 | int index = 0; |
| 252 | for(int X = 0; X < (int)OV_MDP_PIPE_ANY; X++) { //iterate over types |
| 253 | for(int j = 0; j < numPipesXType[X]; j++) { //iterate over num |
| 254 | PipeBook::pipeTypeLUT[index] = (utils::eMdpPipeType)X; |
| 255 | index++; |
| 256 | } |
Saurabh Shah | c4d034f | 2012-09-27 15:55:15 -0700 | [diff] [blame] | 257 | } |
Sushil Chauhan | 07a2c76 | 2013-03-06 15:36:49 -0800 | [diff] [blame] | 258 | |
Xiaoming Zhou | 5eff8b6 | 2013-05-01 20:56:09 -0400 | [diff] [blame] | 259 | if (mdpVersion < qdutils::MDSS_V5 && mdpVersion != qdutils::MDP_V3_0_4) { |
Sushil Chauhan | 07a2c76 | 2013-03-06 15:36:49 -0800 | [diff] [blame] | 260 | msmfb_mixer_info_req req; |
| 261 | mdp_mixer_info *minfo = NULL; |
| 262 | char name[64]; |
| 263 | int fd = -1; |
Saurabh Shah | c8118ac | 2013-06-27 10:03:19 -0700 | [diff] [blame] | 264 | for(int i = 0; i < MAX_FB_DEVICES; i++) { |
Sushil Chauhan | 07a2c76 | 2013-03-06 15:36:49 -0800 | [diff] [blame] | 265 | snprintf(name, 64, FB_DEVICE_TEMPLATE, i); |
| 266 | ALOGD("initoverlay:: opening the device:: %s", name); |
| 267 | fd = ::open(name, O_RDWR, 0); |
| 268 | if(fd < 0) { |
| 269 | ALOGE("cannot open framebuffer(%d)", i); |
| 270 | return -1; |
| 271 | } |
| 272 | //Get the mixer configuration */ |
| 273 | req.mixer_num = i; |
| 274 | if (ioctl(fd, MSMFB_MIXER_INFO, &req) == -1) { |
| 275 | ALOGE("ERROR: MSMFB_MIXER_INFO ioctl failed"); |
| 276 | close(fd); |
| 277 | return -1; |
| 278 | } |
| 279 | minfo = req.info; |
| 280 | for (int j = 0; j < req.cnt; j++) { |
| 281 | ALOGD("ndx=%d num=%d z_order=%d", minfo->pndx, minfo->pnum, |
| 282 | minfo->z_order); |
| 283 | // except the RGB base layer with z_order of -1, clear any |
| 284 | // other pipes connected to mixer. |
| 285 | if((minfo->z_order) != -1) { |
| 286 | int index = minfo->pndx; |
| 287 | ALOGD("Unset overlay with index: %d at mixer %d", index, i); |
| 288 | if(ioctl(fd, MSMFB_OVERLAY_UNSET, &index) == -1) { |
| 289 | ALOGE("ERROR: MSMFB_OVERLAY_UNSET failed"); |
| 290 | close(fd); |
| 291 | return -1; |
| 292 | } |
| 293 | } |
| 294 | minfo++; |
| 295 | } |
| 296 | close(fd); |
| 297 | fd = -1; |
| 298 | } |
| 299 | } |
Saurabh Shah | c8118ac | 2013-06-27 10:03:19 -0700 | [diff] [blame] | 300 | |
| 301 | FILE *displayDeviceFP = NULL; |
| 302 | const int MAX_FRAME_BUFFER_NAME_SIZE = 128; |
| 303 | char fbType[MAX_FRAME_BUFFER_NAME_SIZE]; |
| 304 | char msmFbTypePath[MAX_FRAME_BUFFER_NAME_SIZE]; |
| 305 | const char *strDtvPanel = "dtv panel"; |
| 306 | const char *strWbPanel = "writeback panel"; |
| 307 | |
| 308 | for(int num = 1; num < MAX_FB_DEVICES; num++) { |
| 309 | snprintf (msmFbTypePath, sizeof(msmFbTypePath), |
| 310 | "/sys/class/graphics/fb%d/msm_fb_type", num); |
| 311 | displayDeviceFP = fopen(msmFbTypePath, "r"); |
| 312 | |
| 313 | if(displayDeviceFP){ |
| 314 | fread(fbType, sizeof(char), MAX_FRAME_BUFFER_NAME_SIZE, |
| 315 | displayDeviceFP); |
| 316 | |
| 317 | if(strncmp(fbType, strDtvPanel, strlen(strDtvPanel)) == 0) { |
| 318 | sDpyFbMap[DPY_EXTERNAL] = num; |
| 319 | } else if(strncmp(fbType, strWbPanel, strlen(strWbPanel)) == 0) { |
| 320 | sDpyFbMap[DPY_WRITEBACK] = num; |
| 321 | } |
| 322 | |
| 323 | fclose(displayDeviceFP); |
| 324 | } |
| 325 | } |
| 326 | |
Sushil Chauhan | 07a2c76 | 2013-03-06 15:36:49 -0800 | [diff] [blame] | 327 | return 0; |
Naseer Ahmed | 29a2681 | 2012-06-14 00:56:20 -0700 | [diff] [blame] | 328 | } |
| 329 | |
Saurabh Shah | c8118ac | 2013-06-27 10:03:19 -0700 | [diff] [blame] | 330 | bool Overlay::displayCommit(const int& fd) { |
Jeykumar Sankaran | 6a9bb9e | 2013-08-01 14:19:26 -0700 | [diff] [blame] | 331 | utils::Dim roi; |
| 332 | return displayCommit(fd, roi); |
| 333 | } |
| 334 | |
| 335 | bool Overlay::displayCommit(const int& fd, const utils::Dim& roi) { |
Saurabh Shah | c8118ac | 2013-06-27 10:03:19 -0700 | [diff] [blame] | 336 | //Commit |
| 337 | struct mdp_display_commit info; |
| 338 | memset(&info, 0, sizeof(struct mdp_display_commit)); |
| 339 | info.flags = MDP_DISPLAY_COMMIT_OVERLAY; |
Jeykumar Sankaran | 6a9bb9e | 2013-08-01 14:19:26 -0700 | [diff] [blame] | 340 | info.roi.x = roi.x; |
| 341 | info.roi.y = roi.y; |
| 342 | info.roi.w = roi.w; |
| 343 | info.roi.h = roi.h; |
| 344 | |
Saurabh Shah | c8118ac | 2013-06-27 10:03:19 -0700 | [diff] [blame] | 345 | if(!mdp_wrapper::displayCommit(fd, info)) { |
Jeykumar Sankaran | 6a9bb9e | 2013-08-01 14:19:26 -0700 | [diff] [blame] | 346 | ALOGE("%s: commit failed", __func__); |
| 347 | return false; |
Saurabh Shah | c8118ac | 2013-06-27 10:03:19 -0700 | [diff] [blame] | 348 | } |
| 349 | return true; |
| 350 | } |
| 351 | |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 352 | void Overlay::dump() const { |
Saurabh Shah | 9dc88fc | 2013-07-15 16:02:30 -0700 | [diff] [blame] | 353 | #if PIPE_DEBUG |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 354 | if(strlen(mDumpStr)) { //dump only on state change |
Saurabh Shah | 9dc88fc | 2013-07-15 16:02:30 -0700 | [diff] [blame] | 355 | ALOGD("%s\n", mDumpStr); |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 356 | } |
Saurabh Shah | 9dc88fc | 2013-07-15 16:02:30 -0700 | [diff] [blame] | 357 | #endif |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 358 | } |
| 359 | |
Saurabh Shah | 0d0a7cb | 2013-02-12 17:58:19 -0800 | [diff] [blame] | 360 | void Overlay::getDump(char *buf, size_t len) { |
| 361 | int totalPipes = 0; |
Saurabh Shah | ae61b2b | 2013-04-10 16:37:25 -0700 | [diff] [blame] | 362 | const char *str = "\nOverlay State\n\n"; |
Saurabh Shah | 0d0a7cb | 2013-02-12 17:58:19 -0800 | [diff] [blame] | 363 | strncat(buf, str, strlen(str)); |
| 364 | for(int i = 0; i < PipeBook::NUM_PIPES; i++) { |
| 365 | if(mPipeBook[i].valid()) { |
| 366 | mPipeBook[i].mPipe->getDump(buf, len); |
| 367 | char str[64] = {'\0'}; |
Saurabh Shah | ae61b2b | 2013-04-10 16:37:25 -0700 | [diff] [blame] | 368 | snprintf(str, 64, "Display=%d\n\n", mPipeBook[i].mDisplay); |
Saurabh Shah | 0d0a7cb | 2013-02-12 17:58:19 -0800 | [diff] [blame] | 369 | strncat(buf, str, strlen(str)); |
| 370 | totalPipes++; |
| 371 | } |
| 372 | } |
| 373 | char str_pipes[64] = {'\0'}; |
Saurabh Shah | ae61b2b | 2013-04-10 16:37:25 -0700 | [diff] [blame] | 374 | snprintf(str_pipes, 64, "Pipes=%d\n\n", totalPipes); |
Saurabh Shah | 0d0a7cb | 2013-02-12 17:58:19 -0800 | [diff] [blame] | 375 | strncat(buf, str_pipes, strlen(str_pipes)); |
| 376 | } |
| 377 | |
Sushil Chauhan | bd3ea92 | 2013-05-15 12:25:26 -0700 | [diff] [blame] | 378 | void Overlay::clear(int dpy) { |
| 379 | for(int i = 0; i < PipeBook::NUM_PIPES; i++) { |
| 380 | if (mPipeBook[i].mDisplay == dpy) { |
| 381 | // Mark as available for this round |
| 382 | PipeBook::resetUse(i); |
| 383 | PipeBook::resetAllocation(i); |
Saurabh Shah | df0be75 | 2013-05-23 14:40:00 -0700 | [diff] [blame] | 384 | if(mPipeBook[i].valid()) { |
| 385 | mPipeBook[i].mPipe->forceSet(); |
| 386 | } |
Sushil Chauhan | bd3ea92 | 2013-05-15 12:25:26 -0700 | [diff] [blame] | 387 | } |
| 388 | } |
| 389 | } |
| 390 | |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 391 | void Overlay::PipeBook::init() { |
| 392 | mPipe = NULL; |
| 393 | mDisplay = DPY_UNUSED; |
Saurabh Shah | af5f597 | 2013-07-30 13:56:35 -0700 | [diff] [blame] | 394 | mMixer = MIXER_UNUSED; |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 395 | } |
| 396 | |
| 397 | void Overlay::PipeBook::destroy() { |
| 398 | if(mPipe) { |
| 399 | delete mPipe; |
| 400 | mPipe = NULL; |
| 401 | } |
| 402 | mDisplay = DPY_UNUSED; |
Saurabh Shah | af5f597 | 2013-07-30 13:56:35 -0700 | [diff] [blame] | 403 | mMixer = MIXER_UNUSED; |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 404 | } |
| 405 | |
| 406 | Overlay* Overlay::sInstance = 0; |
Saurabh Shah | c8118ac | 2013-06-27 10:03:19 -0700 | [diff] [blame] | 407 | int Overlay::sDpyFbMap[DPY_MAX] = {0, -1, -1}; |
Saurabh Shah | 85234ec | 2013-04-12 17:09:00 -0700 | [diff] [blame] | 408 | int Overlay::sDMAMode = DMA_LINE_MODE; |
Saurabh Shah | 784e985 | 2013-08-21 16:51:21 -0700 | [diff] [blame] | 409 | int Overlay::sForceSetBitmap = 0; |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 410 | int Overlay::PipeBook::NUM_PIPES = 0; |
| 411 | int Overlay::PipeBook::sPipeUsageBitmap = 0; |
| 412 | int Overlay::PipeBook::sLastUsageBitmap = 0; |
| 413 | int Overlay::PipeBook::sAllocatedBitmap = 0; |
Sushil Chauhan | 07a2c76 | 2013-03-06 15:36:49 -0800 | [diff] [blame] | 414 | utils::eMdpPipeType Overlay::PipeBook::pipeTypeLUT[utils::OV_MAX] = |
| 415 | {utils::OV_MDP_PIPE_ANY}; |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 416 | |
| 417 | }; // namespace overlay |