Saurabh Shah | e012f7a | 2012-08-18 15:11:57 -0700 | [diff] [blame] | 1 | /* |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 2 | * Copyright (C) 2008 The Android Open Source Project |
Raj kamal | 23f69b2 | 2012-11-17 00:20:55 +0530 | [diff] [blame] | 3 | * Copyright (c) 2010-2013, The Linux Foundation. All rights reserved. |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 4 | * Not a Contribution, Apache license notifications and license are retained |
| 5 | * for attribution purposes only. |
| 6 | * |
| 7 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 8 | * you may not use this file except in compliance with the License. |
| 9 | * You may obtain a copy of the License at |
| 10 | * |
| 11 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | * |
| 13 | * Unless required by applicable law or agreed to in writing, software |
| 14 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | * See the License for the specific language governing permissions and |
| 17 | * limitations under the License. |
Saurabh Shah | e012f7a | 2012-08-18 15:11:57 -0700 | [diff] [blame] | 18 | */ |
| 19 | |
| 20 | #include "overlayUtils.h" |
| 21 | #include "overlayRotator.h" |
| 22 | |
| 23 | namespace ovutils = overlay::utils; |
| 24 | |
| 25 | namespace overlay { |
| 26 | |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 27 | MdpRot::MdpRot() { |
| 28 | reset(); |
| 29 | init(); |
| 30 | } |
| 31 | |
| 32 | MdpRot::~MdpRot() { close(); } |
| 33 | |
Saurabh Shah | acf1020 | 2013-02-26 10:15:15 -0800 | [diff] [blame] | 34 | bool MdpRot::enabled() const { return mRotImgInfo.enable; } |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 35 | |
Saurabh Shah | acf1020 | 2013-02-26 10:15:15 -0800 | [diff] [blame] | 36 | void MdpRot::setRotations(uint32_t r) { mRotImgInfo.rotations = r; } |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 37 | |
Saurabh Shah | acf1020 | 2013-02-26 10:15:15 -0800 | [diff] [blame] | 38 | int MdpRot::getDstMemId() const { |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 39 | return mRotDataInfo.dst.memory_id; |
| 40 | } |
| 41 | |
Saurabh Shah | acf1020 | 2013-02-26 10:15:15 -0800 | [diff] [blame] | 42 | uint32_t MdpRot::getDstOffset() const { |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 43 | return mRotDataInfo.dst.offset; |
| 44 | } |
| 45 | |
Saurabh Shah | acf1020 | 2013-02-26 10:15:15 -0800 | [diff] [blame] | 46 | uint32_t MdpRot::getDstFormat() const { |
Raj kamal | 23f69b2 | 2012-11-17 00:20:55 +0530 | [diff] [blame] | 47 | return mRotImgInfo.dst.format; |
| 48 | } |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 49 | |
Saurabh Shah | acf1020 | 2013-02-26 10:15:15 -0800 | [diff] [blame] | 50 | uint32_t MdpRot::getSessId() const { return mRotImgInfo.session_id; } |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 51 | |
Ramkumar Radhakrishnan | 288f8c7 | 2013-01-15 11:37:54 -0800 | [diff] [blame] | 52 | void MdpRot::setDownscale(int ds) { |
Ramkumar Radhakrishnan | 4ca8f3a | 2013-02-14 18:56:50 -0800 | [diff] [blame] | 53 | if ((utils::ROT_DS_EIGHTH == ds) && (mRotImgInfo.src_rect.h & 0xF)) { |
Ramkumar Radhakrishnan | 288f8c7 | 2013-01-15 11:37:54 -0800 | [diff] [blame] | 54 | // Ensure src_rect.h is a multiple of 16 for 1/8 downscaling. |
| 55 | // This is an undocumented MDP Rotator constraint. |
Ramkumar Radhakrishnan | 4ca8f3a | 2013-02-14 18:56:50 -0800 | [diff] [blame] | 56 | mRotImgInfo.src_rect.h = utils::aligndown(mRotImgInfo.src_rect.h, 16); |
Ramkumar Radhakrishnan | 288f8c7 | 2013-01-15 11:37:54 -0800 | [diff] [blame] | 57 | } |
| 58 | mRotImgInfo.downscale_ratio = ds; |
| 59 | } |
| 60 | |
Saurabh Shah | acf1020 | 2013-02-26 10:15:15 -0800 | [diff] [blame] | 61 | void MdpRot::save() { |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 62 | mLSRotImgInfo = mRotImgInfo; |
| 63 | } |
| 64 | |
Saurabh Shah | acf1020 | 2013-02-26 10:15:15 -0800 | [diff] [blame] | 65 | bool MdpRot::rotConfChanged() const { |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 66 | // 0 means same |
| 67 | if(0 == ::memcmp(&mRotImgInfo, &mLSRotImgInfo, |
| 68 | sizeof (msm_rotator_img_info))) { |
| 69 | return false; |
| 70 | } |
| 71 | return true; |
| 72 | } |
| 73 | |
Saurabh Shah | e012f7a | 2012-08-18 15:11:57 -0700 | [diff] [blame] | 74 | bool MdpRot::init() |
| 75 | { |
| 76 | if(!mFd.open(Res::rotPath, O_RDWR)){ |
| 77 | ALOGE("MdpRot failed to init %s", Res::rotPath); |
| 78 | return false; |
| 79 | } |
| 80 | return true; |
| 81 | } |
| 82 | |
| 83 | void MdpRot::setSource(const overlay::utils::Whf& awhf) { |
| 84 | utils::Whf whf(awhf); |
Saurabh Shah | e012f7a | 2012-08-18 15:11:57 -0700 | [diff] [blame] | 85 | mRotImgInfo.src.format = whf.format; |
Saurabh Shah | e012f7a | 2012-08-18 15:11:57 -0700 | [diff] [blame] | 86 | |
| 87 | mRotImgInfo.src.width = whf.w; |
| 88 | mRotImgInfo.src.height = whf.h; |
| 89 | |
| 90 | mRotImgInfo.src_rect.w = whf.w; |
| 91 | mRotImgInfo.src_rect.h = whf.h; |
| 92 | |
| 93 | mRotImgInfo.dst.width = whf.w; |
| 94 | mRotImgInfo.dst.height = whf.h; |
Saurabh Shah | e012f7a | 2012-08-18 15:11:57 -0700 | [diff] [blame] | 95 | } |
| 96 | |
Saurabh Shah | acf1020 | 2013-02-26 10:15:15 -0800 | [diff] [blame] | 97 | void MdpRot::setFlags(const utils::eMdpFlags& flags) { |
Saurabh Shah | e012f7a | 2012-08-18 15:11:57 -0700 | [diff] [blame] | 98 | mRotImgInfo.secure = 0; |
| 99 | if(flags & utils::OV_MDP_SECURE_OVERLAY_SESSION) |
| 100 | mRotImgInfo.secure = 1; |
| 101 | } |
| 102 | |
Saurabh Shah | acf1020 | 2013-02-26 10:15:15 -0800 | [diff] [blame] | 103 | void MdpRot::setTransform(const utils::eTransform& rot) |
Saurabh Shah | e012f7a | 2012-08-18 15:11:57 -0700 | [diff] [blame] | 104 | { |
| 105 | int r = utils::getMdpOrient(rot); |
| 106 | setRotations(r); |
Saurabh Shah | e012f7a | 2012-08-18 15:11:57 -0700 | [diff] [blame] | 107 | mOrientation = static_cast<utils::eTransform>(r); |
| 108 | ALOGE_IF(DEBUG_OVERLAY, "%s: r=%d", __FUNCTION__, r); |
Ramkumar Radhakrishnan | 288f8c7 | 2013-01-15 11:37:54 -0800 | [diff] [blame] | 109 | } |
Saurabh Shah | e012f7a | 2012-08-18 15:11:57 -0700 | [diff] [blame] | 110 | |
Saurabh Shah | acf1020 | 2013-02-26 10:15:15 -0800 | [diff] [blame] | 111 | void MdpRot::doTransform() { |
Saurabh Shah | e012f7a | 2012-08-18 15:11:57 -0700 | [diff] [blame] | 112 | if(mOrientation & utils::OVERLAY_TRANSFORM_ROT_90) |
| 113 | utils::swap(mRotImgInfo.dst.width, mRotImgInfo.dst.height); |
| 114 | } |
| 115 | |
| 116 | bool MdpRot::commit() { |
| 117 | doTransform(); |
Saurabh Shah | c23b380 | 2012-08-31 11:11:30 -0700 | [diff] [blame] | 118 | if(rotConfChanged()) { |
Saurabh Shah | acf1020 | 2013-02-26 10:15:15 -0800 | [diff] [blame] | 119 | mRotImgInfo.enable = 1; |
Saurabh Shah | c23b380 | 2012-08-31 11:11:30 -0700 | [diff] [blame] | 120 | if(!overlay::mdp_wrapper::startRotator(mFd.getFD(), mRotImgInfo)) { |
| 121 | ALOGE("MdpRot commit failed"); |
| 122 | dump(); |
Saurabh Shah | acf1020 | 2013-02-26 10:15:15 -0800 | [diff] [blame] | 123 | mRotImgInfo.enable = 0; |
Saurabh Shah | c23b380 | 2012-08-31 11:11:30 -0700 | [diff] [blame] | 124 | return false; |
| 125 | } |
| 126 | save(); |
| 127 | mRotDataInfo.session_id = mRotImgInfo.session_id; |
Saurabh Shah | e012f7a | 2012-08-18 15:11:57 -0700 | [diff] [blame] | 128 | } |
Saurabh Shah | e012f7a | 2012-08-18 15:11:57 -0700 | [diff] [blame] | 129 | return true; |
| 130 | } |
| 131 | |
Saurabh Shah | fc3652f | 2013-02-15 13:15:45 -0800 | [diff] [blame] | 132 | uint32_t MdpRot::calcOutputBufSize() { |
| 133 | ovutils::Whf destWhf(mRotImgInfo.dst.width, |
| 134 | mRotImgInfo.dst.height, mRotImgInfo.dst.format); |
| 135 | return Rotator::calcOutputBufSize(destWhf); |
| 136 | } |
| 137 | |
Saurabh Shah | e012f7a | 2012-08-18 15:11:57 -0700 | [diff] [blame] | 138 | bool MdpRot::open_i(uint32_t numbufs, uint32_t bufsz) |
| 139 | { |
| 140 | OvMem mem; |
| 141 | |
| 142 | OVASSERT(MAP_FAILED == mem.addr(), "MAP failed in open_i"); |
| 143 | |
| 144 | if(!mem.open(numbufs, bufsz, mRotImgInfo.secure)){ |
| 145 | ALOGE("%s: Failed to open", __func__); |
| 146 | mem.close(); |
| 147 | return false; |
| 148 | } |
| 149 | |
| 150 | OVASSERT(MAP_FAILED != mem.addr(), "MAP failed"); |
| 151 | OVASSERT(mem.getFD() != -1, "getFd is -1"); |
| 152 | |
| 153 | mRotDataInfo.dst.memory_id = mem.getFD(); |
| 154 | mRotDataInfo.dst.offset = 0; |
| 155 | mMem.curr().m = mem; |
| 156 | return true; |
| 157 | } |
| 158 | |
| 159 | bool MdpRot::close() { |
| 160 | bool success = true; |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 161 | if(mFd.valid() && (getSessId() != 0)) { |
Saurabh Shah | e012f7a | 2012-08-18 15:11:57 -0700 | [diff] [blame] | 162 | if(!mdp_wrapper::endRotator(mFd.getFD(), getSessId())) { |
Naseer Ahmed | 758bfc5 | 2012-11-28 17:02:08 -0500 | [diff] [blame] | 163 | ALOGE("Mdp Rot error endRotator, fd=%d sessId=%u", |
Saurabh Shah | e012f7a | 2012-08-18 15:11:57 -0700 | [diff] [blame] | 164 | mFd.getFD(), getSessId()); |
| 165 | success = false; |
| 166 | } |
| 167 | } |
| 168 | if (!mFd.close()) { |
| 169 | ALOGE("Mdp Rot error closing fd"); |
| 170 | success = false; |
| 171 | } |
| 172 | if (!mMem.close()) { |
| 173 | ALOGE("Mdp Rot error closing mem"); |
| 174 | success = false; |
| 175 | } |
| 176 | reset(); |
| 177 | return success; |
| 178 | } |
| 179 | |
| 180 | bool MdpRot::remap(uint32_t numbufs) { |
| 181 | // if current size changed, remap |
Saurabh Shah | fc3652f | 2013-02-15 13:15:45 -0800 | [diff] [blame] | 182 | uint32_t opBufSize = calcOutputBufSize(); |
| 183 | if(opBufSize == mMem.curr().size()) { |
| 184 | ALOGE_IF(DEBUG_OVERLAY, "%s: same size %d", __FUNCTION__, opBufSize); |
Saurabh Shah | e012f7a | 2012-08-18 15:11:57 -0700 | [diff] [blame] | 185 | return true; |
| 186 | } |
| 187 | |
| 188 | ALOGE_IF(DEBUG_OVERLAY, "%s: size changed - remapping", __FUNCTION__); |
| 189 | OVASSERT(!mMem.prev().valid(), "Prev should not be valid"); |
| 190 | |
| 191 | // ++mMem will make curr to be prev, and prev will be curr |
| 192 | ++mMem; |
Saurabh Shah | fc3652f | 2013-02-15 13:15:45 -0800 | [diff] [blame] | 193 | if(!open_i(numbufs, opBufSize)) { |
Saurabh Shah | e012f7a | 2012-08-18 15:11:57 -0700 | [diff] [blame] | 194 | ALOGE("%s Error could not open", __FUNCTION__); |
| 195 | return false; |
| 196 | } |
| 197 | for (uint32_t i = 0; i < numbufs; ++i) { |
Saurabh Shah | fc3652f | 2013-02-15 13:15:45 -0800 | [diff] [blame] | 198 | mMem.curr().mRotOffset[i] = i * opBufSize; |
Saurabh Shah | e012f7a | 2012-08-18 15:11:57 -0700 | [diff] [blame] | 199 | } |
| 200 | return true; |
| 201 | } |
| 202 | |
| 203 | void MdpRot::reset() { |
| 204 | ovutils::memset0(mRotImgInfo); |
Saurabh Shah | c23b380 | 2012-08-31 11:11:30 -0700 | [diff] [blame] | 205 | ovutils::memset0(mLSRotImgInfo); |
Saurabh Shah | e012f7a | 2012-08-18 15:11:57 -0700 | [diff] [blame] | 206 | ovutils::memset0(mRotDataInfo); |
| 207 | ovutils::memset0(mMem.curr().mRotOffset); |
| 208 | ovutils::memset0(mMem.prev().mRotOffset); |
| 209 | mMem.curr().mCurrOffset = 0; |
| 210 | mMem.prev().mCurrOffset = 0; |
Saurabh Shah | e012f7a | 2012-08-18 15:11:57 -0700 | [diff] [blame] | 211 | mOrientation = utils::OVERLAY_TRANSFORM_0; |
| 212 | } |
| 213 | |
| 214 | bool MdpRot::queueBuffer(int fd, uint32_t offset) { |
| 215 | if(enabled()) { |
| 216 | mRotDataInfo.src.memory_id = fd; |
| 217 | mRotDataInfo.src.offset = offset; |
| 218 | |
| 219 | remap(RotMem::Mem::ROT_NUM_BUFS); |
| 220 | OVASSERT(mMem.curr().m.numBufs(), |
| 221 | "queueBuffer numbufs is 0"); |
| 222 | mRotDataInfo.dst.offset = |
| 223 | mMem.curr().mRotOffset[mMem.curr().mCurrOffset]; |
| 224 | mMem.curr().mCurrOffset = |
| 225 | (mMem.curr().mCurrOffset + 1) % mMem.curr().m.numBufs(); |
| 226 | |
| 227 | if(!overlay::mdp_wrapper::rotate(mFd.getFD(), mRotDataInfo)) { |
| 228 | ALOGE("MdpRot failed rotate"); |
| 229 | dump(); |
| 230 | return false; |
| 231 | } |
| 232 | |
| 233 | // if the prev mem is valid, we need to close |
| 234 | if(mMem.prev().valid()) { |
| 235 | // FIXME if no wait for vsync the above |
| 236 | // play will return immediatly and might cause |
| 237 | // tearing when prev.close is called. |
| 238 | if(!mMem.prev().close()) { |
| 239 | ALOGE("%s error in closing prev rot mem", __FUNCTION__); |
| 240 | return false; |
| 241 | } |
| 242 | } |
| 243 | } |
| 244 | return true; |
| 245 | } |
| 246 | |
| 247 | void MdpRot::dump() const { |
| 248 | ALOGE("== Dump MdpRot start =="); |
| 249 | mFd.dump(); |
| 250 | mMem.curr().m.dump(); |
| 251 | mdp_wrapper::dump("mRotImgInfo", mRotImgInfo); |
| 252 | mdp_wrapper::dump("mRotDataInfo", mRotDataInfo); |
| 253 | ALOGE("== Dump MdpRot end =="); |
| 254 | } |
| 255 | |
Saurabh Shah | 0d0a7cb | 2013-02-12 17:58:19 -0800 | [diff] [blame] | 256 | void MdpRot::getDump(char *buf, size_t len) const { |
| 257 | ovutils::getDump(buf, len, "MdpRotCtrl(msm_rotator_img_info)", mRotImgInfo); |
| 258 | ovutils::getDump(buf, len, "MdpRotData(msm_rotator_data_info)", mRotDataInfo); |
| 259 | } |
| 260 | |
Saurabh Shah | e012f7a | 2012-08-18 15:11:57 -0700 | [diff] [blame] | 261 | } // namespace overlay |