blob: 312a6c655ec0b4ed73daa80a1c815e09d9582531 [file] [log] [blame]
Naseer Ahmed29a26812012-06-14 00:56:20 -07001/*
Arun Kumar K.R7e5a1f82014-01-22 10:36:16 -08002* Copyright (c) 2011-2014, The Linux Foundation. All rights reserved.
Naseer Ahmed29a26812012-06-14 00:56:20 -07003*
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 Ahmed758bfc52012-11-28 17:02:08 -050013* * Neither the name of The Linux Foundation nor the names of its
Naseer Ahmed29a26812012-06-14 00:56:20 -070014* 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
30#include <stdlib.h>
Saurabh Shahdb7ae312013-03-19 15:45:24 -070031#include <math.h>
Naseer Ahmed29a26812012-06-14 00:56:20 -070032#include <utils/Log.h>
33#include <linux/msm_mdp.h>
34#include <cutils/properties.h>
35#include "gralloc_priv.h"
Naseer Ahmed29a26812012-06-14 00:56:20 -070036#include "overlayUtils.h"
37#include "mdpWrapper.h"
Saurabh Shah94822ee2012-08-17 16:48:43 -070038#include "mdp_version.h"
Manoj Kumar AVM8a220812013-10-10 11:46:06 -070039#include <hardware/hwcomposer_defs.h>
Naseer Ahmed29a26812012-06-14 00:56:20 -070040
41// just a helper static thingy
42namespace {
43struct IOFile {
44 IOFile(const char* s, const char* mode) : fp(0) {
45 fp = ::fopen(s, mode);
46 if(!fp) {
47 ALOGE("Failed open %s", s);
48 }
49 }
50 template <class T>
51 size_t read(T& r, size_t elem) {
52 if(fp) {
53 return ::fread(&r, sizeof(T), elem, fp);
54 }
55 return 0;
56 }
57 size_t write(const char* s, uint32_t val) {
58 if(fp) {
59 return ::fprintf(fp, s, val);
60 }
61 return 0;
62 }
63 bool valid() const { return fp != 0; }
64 ~IOFile() {
65 if(fp) ::fclose(fp);
66 fp=0;
67 }
68 FILE* fp;
69};
70}
71
72namespace overlay {
73
74//----------From class Res ------------------------------
Naseer Ahmedf48aef62012-07-20 09:05:53 -070075const char* const Res::fbPath = "/dev/graphics/fb%u";
Naseer Ahmed29a26812012-06-14 00:56:20 -070076const char* const Res::rotPath = "/dev/msm_rotator";
77const char* const Res::format3DFile =
78 "/sys/class/graphics/fb1/format_3d";
79const char* const Res::edid3dInfoFile =
80 "/sys/class/graphics/fb1/3d_present";
81const char* const Res::barrierFile =
82 "/sys/devices/platform/mipi_novatek.0/enable_3d_barrier";
83//--------------------------------------------------------
84
85
86
87namespace utils {
Ajay Dudanicb3da0a2012-09-07 13:37:49 -070088
Naseer Ahmed29a26812012-06-14 00:56:20 -070089//--------------------------------------------------------
Naseer Ahmedaf49e212012-07-31 19:13:41 -070090//Refer to graphics.h, gralloc_priv.h, msm_mdp.h
Naseer Ahmed29a26812012-06-14 00:56:20 -070091int getMdpFormat(int format) {
92 switch (format) {
Naseer Ahmedaf49e212012-07-31 19:13:41 -070093 //From graphics.h
Naseer Ahmed29a26812012-06-14 00:56:20 -070094 case HAL_PIXEL_FORMAT_RGBA_8888 :
95 return MDP_RGBA_8888;
Naseer Ahmed29a26812012-06-14 00:56:20 -070096 case HAL_PIXEL_FORMAT_RGBX_8888:
97 return MDP_RGBX_8888;
Naseer Ahmedaf49e212012-07-31 19:13:41 -070098 case HAL_PIXEL_FORMAT_RGB_888:
99 return MDP_RGB_888;
100 case HAL_PIXEL_FORMAT_RGB_565:
101 return MDP_RGB_565;
102 case HAL_PIXEL_FORMAT_BGRA_8888:
103 return MDP_BGRA_8888;
Sushil Chauhan1f6d68f2013-10-11 11:49:35 -0700104 case HAL_PIXEL_FORMAT_BGRX_8888:
105 return MDP_BGRX_8888;
Naseer Ahmed29a26812012-06-14 00:56:20 -0700106 case HAL_PIXEL_FORMAT_YV12:
Saurabh Shahae1044e2012-08-21 16:03:32 -0700107 return MDP_Y_CR_CB_GH2V2;
Naseer Ahmedaf49e212012-07-31 19:13:41 -0700108 case HAL_PIXEL_FORMAT_YCbCr_422_SP:
109 return MDP_Y_CBCR_H2V1;
110 case HAL_PIXEL_FORMAT_YCrCb_420_SP:
111 return MDP_Y_CRCB_H2V2;
112
113 //From gralloc_priv.h
114 case HAL_PIXEL_FORMAT_YCbCr_420_SP_TILED:
115 return MDP_Y_CBCR_H2V2_TILE;
116 case HAL_PIXEL_FORMAT_YCbCr_420_SP:
117 return MDP_Y_CBCR_H2V2;
118 case HAL_PIXEL_FORMAT_YCrCb_422_SP:
119 return MDP_Y_CRCB_H2V1;
Ramkumar Radhakrishnanb52399c2013-08-06 20:17:29 -0700120 case HAL_PIXEL_FORMAT_YCbCr_422_I:
121 return MDP_YCBYCR_H2V1;
122 case HAL_PIXEL_FORMAT_YCrCb_422_I:
123 return MDP_YCRYCB_H2V1;
Naseer Ahmedaf49e212012-07-31 19:13:41 -0700124 case HAL_PIXEL_FORMAT_YCbCr_444_SP:
125 return MDP_Y_CBCR_H1V1;
126 case HAL_PIXEL_FORMAT_YCrCb_444_SP:
127 return MDP_Y_CRCB_H1V1;
Sushil Chauhanc5e61482012-08-22 17:13:32 -0700128 case HAL_PIXEL_FORMAT_YCbCr_420_SP_VENUS:
Naseer Ahmed8f8cb8a2013-08-22 15:34:30 -0400129 case HAL_PIXEL_FORMAT_NV12_ENCODEABLE:
130 //NV12 encodeable format maps to the venus format on
131 //B-Family targets
Sushil Chauhanc5e61482012-08-22 17:13:32 -0700132 return MDP_Y_CBCR_H2V2_VENUS;
Naseer Ahmed29a26812012-06-14 00:56:20 -0700133 default:
Naseer Ahmedaf49e212012-07-31 19:13:41 -0700134 //Unsupported by MDP
135 //---graphics.h--------
136 //HAL_PIXEL_FORMAT_RGBA_5551
137 //HAL_PIXEL_FORMAT_RGBA_4444
Naseer Ahmedaf49e212012-07-31 19:13:41 -0700138 //---gralloc_priv.h-----
139 //HAL_PIXEL_FORMAT_YCrCb_420_SP_ADRENO = 0x7FA30C01
140 //HAL_PIXEL_FORMAT_R_8 = 0x10D
141 //HAL_PIXEL_FORMAT_RG_88 = 0x10E
Saurabh Shahfc3652f2013-02-15 13:15:45 -0800142 ALOGE("%s: Unsupported HAL format = 0x%x", __func__, format);
143 return -1;
144 }
145 // not reached
146 return -1;
147}
148
Manoj Kumar AVM8a220812013-10-10 11:46:06 -0700149// This function returns corresponding tile format
150// MDSS support following RGB tile formats
151// 32 bit formats
152// 16 bit formats
153int getMdpFormat(int format, bool tileEnabled)
154{
155 if(!tileEnabled) {
156 return getMdpFormat(format);
157 }
158 switch (format) {
159 case HAL_PIXEL_FORMAT_RGBA_8888 :
160 return MDP_RGBA_8888_TILE;
161 case HAL_PIXEL_FORMAT_RGBX_8888:
162 return MDP_RGBX_8888_TILE;
163 case HAL_PIXEL_FORMAT_RGB_565:
Manoj Kumar AVM5a5529b2014-02-24 18:16:37 -0800164 return MDP_RGB_565_TILE;
Manoj Kumar AVM8a220812013-10-10 11:46:06 -0700165 case HAL_PIXEL_FORMAT_BGRA_8888:
166 return MDP_BGRA_8888_TILE;
167 case HAL_PIXEL_FORMAT_BGRX_8888:
168 return MDP_BGRX_8888_TILE;
169 default:
170 return getMdpFormat(format);
171 }
172}
173
174
175
Saurabh Shahfc3652f2013-02-15 13:15:45 -0800176//Takes mdp format as input and translates to equivalent HAL format
177//Refer to graphics.h, gralloc_priv.h, msm_mdp.h for formats.
178int getHALFormat(int mdpFormat) {
179 switch (mdpFormat) {
180 //From graphics.h
181 case MDP_RGBA_8888:
182 return HAL_PIXEL_FORMAT_RGBA_8888;
183 case MDP_RGBX_8888:
184 return HAL_PIXEL_FORMAT_RGBX_8888;
185 case MDP_RGB_888:
186 return HAL_PIXEL_FORMAT_RGB_888;
187 case MDP_RGB_565:
188 return HAL_PIXEL_FORMAT_RGB_565;
189 case MDP_BGRA_8888:
190 return HAL_PIXEL_FORMAT_BGRA_8888;
191 case MDP_Y_CR_CB_GH2V2:
192 return HAL_PIXEL_FORMAT_YV12;
193 case MDP_Y_CBCR_H2V1:
194 return HAL_PIXEL_FORMAT_YCbCr_422_SP;
195 case MDP_Y_CRCB_H2V2:
196 return HAL_PIXEL_FORMAT_YCrCb_420_SP;
197
198 //From gralloc_priv.h
199 case MDP_Y_CBCR_H2V2_TILE:
200 return HAL_PIXEL_FORMAT_YCbCr_420_SP_TILED;
201 case MDP_Y_CBCR_H2V2:
202 return HAL_PIXEL_FORMAT_YCbCr_420_SP;
203 case MDP_Y_CRCB_H2V1:
204 return HAL_PIXEL_FORMAT_YCrCb_422_SP;
Ramkumar Radhakrishnanb52399c2013-08-06 20:17:29 -0700205 case MDP_YCBYCR_H2V1:
206 return HAL_PIXEL_FORMAT_YCbCr_422_I;
207 case MDP_YCRYCB_H2V1:
208 return HAL_PIXEL_FORMAT_YCrCb_422_I;
209 case MDP_Y_CBCR_H1V1:
Saurabh Shahfc3652f2013-02-15 13:15:45 -0800210 return HAL_PIXEL_FORMAT_YCbCr_444_SP;
211 case MDP_Y_CRCB_H1V1:
212 return HAL_PIXEL_FORMAT_YCrCb_444_SP;
213 case MDP_Y_CBCR_H2V2_VENUS:
214 return HAL_PIXEL_FORMAT_YCbCr_420_SP_VENUS;
215 default:
216 ALOGE("%s: Unsupported MDP format = 0x%x", __func__, mdpFormat);
Naseer Ahmed29a26812012-06-14 00:56:20 -0700217 return -1;
218 }
219 // not reached
220 return -1;
221}
222
Saurabh Shahd1a22782013-04-10 09:09:45 -0700223int getMdpOrient(eTransform rotation) {
224 int retTrans = 0;
225 bool trans90 = false;
226 int mdpVersion = qdutils::MDPVersion::getInstance().getMDPVersion();
227 bool aFamily = (mdpVersion < qdutils::MDSS_V5);
228
229 ALOGD_IF(DEBUG_OVERLAY, "%s: In rotation = %d", __FUNCTION__, rotation);
230 if(rotation & OVERLAY_TRANSFORM_ROT_90) {
231 retTrans |= MDP_ROT_90;
232 trans90 = true;
233 }
234
235 if(rotation & OVERLAY_TRANSFORM_FLIP_H) {
236 if(trans90 && aFamily) {
237 //Swap for a-family, since its driver does 90 first
238 retTrans |= MDP_FLIP_UD;
239 } else {
240 retTrans |= MDP_FLIP_LR;
241 }
242 }
243
244 if(rotation & OVERLAY_TRANSFORM_FLIP_V) {
245 if(trans90 && aFamily) {
246 //Swap for a-family, since its driver does 90 first
247 retTrans |= MDP_FLIP_LR;
248 } else {
249 retTrans |= MDP_FLIP_UD;
250 }
251 }
252
253 ALOGD_IF(DEBUG_OVERLAY, "%s: Out rotation = %d", __FUNCTION__, retTrans);
254 return retTrans;
255}
256
Saurabh Shahacf10202013-02-26 10:15:15 -0800257int getDownscaleFactor(const int& src_w, const int& src_h,
258 const int& dst_w, const int& dst_h) {
259 int dscale_factor = utils::ROT_DS_NONE;
260 // We need this check to engage the rotator whenever possible to assist MDP
261 // in performing video downscale.
262 // This saves bandwidth and avoids causing the driver to make too many panel
263 // -mode switches between BLT (writeback) and non-BLT (Direct) modes.
264 // Use-case: Video playback [with downscaling and rotation].
265 if (dst_w && dst_h)
266 {
Saurabh Shahdb7ae312013-03-19 15:45:24 -0700267 float fDscale = (float)(src_w * src_h) / (float)(dst_w * dst_h);
268 uint32_t dscale = (int)sqrtf(fDscale);
269
Saurabh Shahacf10202013-02-26 10:15:15 -0800270 if(dscale < 2) {
271 // Down-scale to > 50% of orig.
272 dscale_factor = utils::ROT_DS_NONE;
273 } else if(dscale < 4) {
274 // Down-scale to between > 25% to <= 50% of orig.
275 dscale_factor = utils::ROT_DS_HALF;
276 } else if(dscale < 8) {
277 // Down-scale to between > 12.5% to <= 25% of orig.
278 dscale_factor = utils::ROT_DS_FOURTH;
279 } else {
280 // Down-scale to <= 12.5% of orig.
281 dscale_factor = utils::ROT_DS_EIGHTH;
282 }
283 }
284 return dscale_factor;
285}
286
Saurabh Shah1a03d482013-05-29 13:44:20 -0700287void getDecimationFactor(const int& src_w, const int& src_h,
Saurabh Shahb6810df2014-06-17 16:00:22 -0700288 const int& dst_w, const int& dst_h, uint8_t& horzDeci,
289 uint8_t& vertDeci) {
290 horzDeci = 0;
291 vertDeci = 0;
292 float horDscale = ceilf((float)src_w / (float)dst_w);
293 float verDscale = ceilf((float)src_h / (float)dst_h);
Saurabh Shah1a03d482013-05-29 13:44:20 -0700294
295 //Next power of 2, if not already
296 horDscale = powf(2.0f, ceilf(log2f(horDscale)));
297 verDscale = powf(2.0f, ceilf(log2f(verDscale)));
298
299 //Since MDP can do 1/4 dscale and has better quality, split the task
300 //between decimator and MDP downscale
301 horDscale /= 4.0f;
302 verDscale /= 4.0f;
Saurabh Shahb6810df2014-06-17 16:00:22 -0700303
304 if((int)horDscale)
305 horzDeci = (uint8_t)log2f(horDscale);
306
307 if((int)verDscale)
308 vertDeci = (uint8_t)log2f(verDscale);
309
310 if(src_w > 2048) {
311 //If the client sends us something > what a layer mixer supports
312 //then it means it doesn't want to use split-pipe but wants us to
313 //decimate. A minimum decimation of 2 will ensure that the width is
314 //always within layer mixer limits.
315 if(horzDeci < 2)
316 horzDeci = 2;
317 }
Saurabh Shah1a03d482013-05-29 13:44:20 -0700318}
319
Saurabh Shahacf10202013-02-26 10:15:15 -0800320static inline int compute(const uint32_t& x, const uint32_t& y,
321 const uint32_t& z) {
322 return x - ( y + z );
323}
324
Saurabh Shah76fd6552013-03-14 14:45:38 -0700325void preRotateSource(const eTransform& tr, Whf& whf, Dim& srcCrop) {
Saurabh Shahacf10202013-02-26 10:15:15 -0800326 if(tr & OVERLAY_TRANSFORM_FLIP_H) {
327 srcCrop.x = compute(whf.w, srcCrop.x, srcCrop.w);
328 }
329 if(tr & OVERLAY_TRANSFORM_FLIP_V) {
330 srcCrop.y = compute(whf.h, srcCrop.y, srcCrop.h);
331 }
332 if(tr & OVERLAY_TRANSFORM_ROT_90) {
333 int tmp = srcCrop.x;
334 srcCrop.x = compute(whf.h,
335 srcCrop.y,
336 srcCrop.h);
337 srcCrop.y = tmp;
338 swap(whf.w, whf.h);
339 swap(srcCrop.w, srcCrop.h);
340 }
Saurabh Shahacf10202013-02-26 10:15:15 -0800341}
342
Naseer Ahmed29a26812012-06-14 00:56:20 -0700343bool is3DTV() {
344 char is3DTV = '0';
345 IOFile fp(Res::edid3dInfoFile, "r");
346 (void)fp.read(is3DTV, 1);
347 ALOGI("3DTV EDID flag: %d", is3DTV);
348 return (is3DTV == '0') ? false : true;
349}
350
351bool isPanel3D() {
352 OvFD fd;
Naseer Ahmedf48aef62012-07-20 09:05:53 -0700353 if(!overlay::open(fd, 0 /*fb*/, Res::fbPath)){
Naseer Ahmed29a26812012-06-14 00:56:20 -0700354 ALOGE("isPanel3D Can't open framebuffer 0");
355 return false;
356 }
357 fb_fix_screeninfo finfo;
358 if(!mdp_wrapper::getFScreenInfo(fd.getFD(), finfo)) {
359 ALOGE("isPanel3D read fb0 failed");
360 }
361 fd.close();
362 return (FB_TYPE_3D_PANEL == finfo.type) ? true : false;
363}
364
365bool usePanel3D() {
366 if(!isPanel3D())
367 return false;
368 char value[PROPERTY_VALUE_MAX];
369 property_get("persist.user.panel3D", value, "0");
370 int usePanel3D = atoi(value);
371 return usePanel3D ? true : false;
372}
373
374bool send3DInfoPacket (uint32_t format3D) {
375 IOFile fp(Res::format3DFile, "wb");
376 (void)fp.write("%d", format3D);
377 if(!fp.valid()) {
378 ALOGE("send3DInfoPacket: no sysfs entry for setting 3d mode");
379 return false;
380 }
381 return true;
382}
383
384bool enableBarrier (uint32_t orientation) {
385 IOFile fp(Res::barrierFile, "wb");
386 (void)fp.write("%d", orientation);
387 if(!fp.valid()) {
388 ALOGE("enableBarrier no sysfs entry for "
389 "enabling barriers on 3D panel");
390 return false;
391 }
392 return true;
393}
394
395uint32_t getS3DFormat(uint32_t fmt) {
396 // The S3D is part of the HAL_PIXEL_FORMAT_YV12 value. Add
397 // an explicit check for the format
398 if (fmt == HAL_PIXEL_FORMAT_YV12) {
399 return 0;
400 }
401 uint32_t fmt3D = format3D(fmt);
402 uint32_t fIn3D = format3DInput(fmt3D); // MSB 2 bytes - inp
403 uint32_t fOut3D = format3DOutput(fmt3D); // LSB 2 bytes - out
404 fmt3D = fIn3D | fOut3D;
405 if (!fIn3D) {
406 fmt3D |= fOut3D << SHIFT_TOT_3D; //Set the input format
407 }
408 if (!fOut3D) {
409 switch (fIn3D) {
410 case HAL_3D_IN_SIDE_BY_SIDE_L_R:
411 case HAL_3D_IN_SIDE_BY_SIDE_R_L:
412 // For all side by side formats, set the output
413 // format as Side-by-Side i.e 0x1
414 fmt3D |= HAL_3D_IN_SIDE_BY_SIDE_L_R >> SHIFT_TOT_3D;
415 break;
416 default:
417 fmt3D |= fIn3D >> SHIFT_TOT_3D; //Set the output format
418 }
419 }
420 return fmt3D;
421}
422
Saurabh Shah0d0a7cb2013-02-12 17:58:19 -0800423void getDump(char *buf, size_t len, const char *prefix,
424 const mdp_overlay& ov) {
425 char str[256] = {'\0'};
426 snprintf(str, 256,
Saurabh Shahbd2d0832013-04-04 14:33:08 -0700427 "%s id=%d z=%d fg=%d alpha=%d mask=%d flags=0x%x H.Deci=%d,"
428 "V.Deci=%d\n",
Saurabh Shah0d0a7cb2013-02-12 17:58:19 -0800429 prefix, ov.id, ov.z_order, ov.is_fg, ov.alpha,
Saurabh Shahbd2d0832013-04-04 14:33:08 -0700430 ov.transp_mask, ov.flags, ov.horz_deci, ov.vert_deci);
Ramkumar Radhakrishnan36bd5272014-01-31 20:03:01 -0800431 strlcat(buf, str, len);
Saurabh Shahae61b2b2013-04-10 16:37:25 -0700432 getDump(buf, len, "\tsrc", ov.src);
433 getDump(buf, len, "\tsrc_rect", ov.src_rect);
434 getDump(buf, len, "\tdst_rect", ov.dst_rect);
Saurabh Shah0d0a7cb2013-02-12 17:58:19 -0800435}
436
Ramkumar Radhakrishnan36bd5272014-01-31 20:03:01 -0800437void getDump(char *buf, size_t len, const char *prefix,
Saurabh Shah0d0a7cb2013-02-12 17:58:19 -0800438 const msmfb_img& ov) {
439 char str_src[256] = {'\0'};
440 snprintf(str_src, 256,
441 "%s w=%d h=%d format=%d %s\n",
442 prefix, ov.width, ov.height, ov.format,
443 overlay::utils::getFormatString(ov.format));
Ramkumar Radhakrishnan36bd5272014-01-31 20:03:01 -0800444 strlcat(buf, str_src, len);
Saurabh Shah0d0a7cb2013-02-12 17:58:19 -0800445}
446
Ramkumar Radhakrishnan36bd5272014-01-31 20:03:01 -0800447void getDump(char *buf, size_t len, const char *prefix,
Saurabh Shah0d0a7cb2013-02-12 17:58:19 -0800448 const mdp_rect& ov) {
449 char str_rect[256] = {'\0'};
450 snprintf(str_rect, 256,
451 "%s x=%d y=%d w=%d h=%d\n",
452 prefix, ov.x, ov.y, ov.w, ov.h);
Ramkumar Radhakrishnan36bd5272014-01-31 20:03:01 -0800453 strlcat(buf, str_rect, len);
Saurabh Shah0d0a7cb2013-02-12 17:58:19 -0800454}
455
456void getDump(char *buf, size_t len, const char *prefix,
457 const msmfb_overlay_data& ov) {
458 char str[256] = {'\0'};
459 snprintf(str, 256,
460 "%s id=%d\n",
461 prefix, ov.id);
Ramkumar Radhakrishnan36bd5272014-01-31 20:03:01 -0800462 strlcat(buf, str, len);
Saurabh Shahae61b2b2013-04-10 16:37:25 -0700463 getDump(buf, len, "\tdata", ov.data);
Saurabh Shah0d0a7cb2013-02-12 17:58:19 -0800464}
465
Ramkumar Radhakrishnan36bd5272014-01-31 20:03:01 -0800466void getDump(char *buf, size_t len, const char *prefix,
Saurabh Shah0d0a7cb2013-02-12 17:58:19 -0800467 const msmfb_data& ov) {
468 char str_data[256] = {'\0'};
469 snprintf(str_data, 256,
Saurabh Shah7ef9ec92013-10-29 10:32:23 -0700470 "%s offset=%d memid=%d id=%d flags=0x%x\n",
471 prefix, ov.offset, ov.memory_id, ov.id, ov.flags);
Ramkumar Radhakrishnan36bd5272014-01-31 20:03:01 -0800472 strlcat(buf, str_data, len);
Saurabh Shah0d0a7cb2013-02-12 17:58:19 -0800473}
474
475void getDump(char *buf, size_t len, const char *prefix,
476 const msm_rotator_img_info& rot) {
477 char str[256] = {'\0'};
478 snprintf(str, 256, "%s sessid=%u rot=%d, enable=%d downscale=%d\n",
479 prefix, rot.session_id, rot.rotations, rot.enable,
480 rot.downscale_ratio);
Ramkumar Radhakrishnan36bd5272014-01-31 20:03:01 -0800481 strlcat(buf, str, len);
Saurabh Shah0d0a7cb2013-02-12 17:58:19 -0800482 getDump(buf, len, "\tsrc", rot.src);
483 getDump(buf, len, "\tdst", rot.dst);
484 getDump(buf, len, "\tsrc_rect", rot.src_rect);
485}
486
487void getDump(char *buf, size_t len, const char *prefix,
488 const msm_rotator_data_info& rot) {
489 char str[256] = {'\0'};
490 snprintf(str, 256,
Saurabh Shahae61b2b2013-04-10 16:37:25 -0700491 "%s sessid=%u\n",
492 prefix, rot.session_id);
Ramkumar Radhakrishnan36bd5272014-01-31 20:03:01 -0800493 strlcat(buf, str, len);
Saurabh Shah0d0a7cb2013-02-12 17:58:19 -0800494 getDump(buf, len, "\tsrc", rot.src);
495 getDump(buf, len, "\tdst", rot.dst);
Saurabh Shah0d0a7cb2013-02-12 17:58:19 -0800496}
497
Sushil Chauhan1cac8152013-05-08 15:53:51 -0700498//Helper to even out x,w and y,h pairs
499//x,y are always evened to ceil and w,h are evened to floor
500void normalizeCrop(uint32_t& xy, uint32_t& wh) {
501 if(xy & 1) {
502 even_ceil(xy);
503 if(wh & 1)
504 even_floor(wh);
505 else
506 wh -= 2;
507 } else {
508 even_floor(wh);
509 }
510}
511
Naseer Ahmed29a26812012-06-14 00:56:20 -0700512} // utils
513
514} // overlay