blob: 161f05c4bc0d43ffae3a248c8f6398aad74798b7 [file] [log] [blame]
Naseer Ahmed29a26812012-06-14 00:56:20 -07001/*
2* Copyright (c) 2011-2012, Code Aurora Forum. All rights reserved.
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.
13* * Neither the name of Code Aurora Forum, Inc. nor the names of its
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
30#include <stdlib.h>
31#include <utils/Log.h>
32#include <linux/msm_mdp.h>
33#include <cutils/properties.h>
34#include "gralloc_priv.h"
35#include "fb_priv.h"
36#include "overlayUtils.h"
37#include "mdpWrapper.h"
38
39// just a helper static thingy
40namespace {
41struct IOFile {
42 IOFile(const char* s, const char* mode) : fp(0) {
43 fp = ::fopen(s, mode);
44 if(!fp) {
45 ALOGE("Failed open %s", s);
46 }
47 }
48 template <class T>
49 size_t read(T& r, size_t elem) {
50 if(fp) {
51 return ::fread(&r, sizeof(T), elem, fp);
52 }
53 return 0;
54 }
55 size_t write(const char* s, uint32_t val) {
56 if(fp) {
57 return ::fprintf(fp, s, val);
58 }
59 return 0;
60 }
61 bool valid() const { return fp != 0; }
62 ~IOFile() {
63 if(fp) ::fclose(fp);
64 fp=0;
65 }
66 FILE* fp;
67};
68}
69
70namespace overlay {
71
72//----------From class Res ------------------------------
Naseer Ahmedf48aef62012-07-20 09:05:53 -070073const char* const Res::fbPath = "/dev/graphics/fb%u";
Naseer Ahmed29a26812012-06-14 00:56:20 -070074const char* const Res::rotPath = "/dev/msm_rotator";
75const char* const Res::format3DFile =
76 "/sys/class/graphics/fb1/format_3d";
77const char* const Res::edid3dInfoFile =
78 "/sys/class/graphics/fb1/3d_present";
79const char* const Res::barrierFile =
80 "/sys/devices/platform/mipi_novatek.0/enable_3d_barrier";
81//--------------------------------------------------------
82
83
84
85namespace utils {
86//--------------------------------------------------------
87FrameBufferInfo::FrameBufferInfo() {
88 mFBWidth = 0;
89 mFBHeight = 0;
90 mBorderFillSupported = false;
91
92 OvFD mFd;
93
94 // Use open defined in overlayFD file to open fd for fb0
Naseer Ahmedf48aef62012-07-20 09:05:53 -070095 if(!overlay::open(mFd, 0, Res::fbPath)) {
Naseer Ahmed29a26812012-06-14 00:56:20 -070096 ALOGE("FrameBufferInfo: failed to open fd");
97 return;
98 }
99
100 if (!mFd.valid()) {
101 ALOGE("FrameBufferInfo: FD not valid");
102 return;
103 }
104
105 fb_var_screeninfo vinfo;
106 if (!mdp_wrapper::getVScreenInfo(mFd.getFD(), vinfo)) {
107 ALOGE("FrameBufferInfo: failed getVScreenInfo on fb0");
108 mFd.close();
109 return;
110 }
111
112 mdp_overlay ov;
113 memset(&ov, 0, sizeof(ov));
114 ov.id = 1;
115 if (!mdp_wrapper::getOverlay(mFd.getFD(), ov)) {
116 ALOGE("FrameBufferInfo: failed getOverlay on fb0");
117 mFd.close();
118 return;
119 }
120
121 mFd.close();
122
123 mFBWidth = vinfo.xres;
124 mFBHeight = vinfo.yres;
125 mBorderFillSupported = (ov.flags & MDP_BORDERFILL_SUPPORTED) ?
126 true : false;
127}
128
129FrameBufferInfo* FrameBufferInfo::getInstance() {
130 if (!sFBInfoInstance) {
131 sFBInfoInstance = new FrameBufferInfo;
132 }
133 return sFBInfoInstance;
134}
135
136int FrameBufferInfo::getWidth() const {
137 return mFBWidth;
138}
139
140int FrameBufferInfo::getHeight() const {
141 return mFBHeight;
142}
143
144bool FrameBufferInfo::supportTrueMirroring() const {
Naseer Ahmed0c8b7b52012-07-20 09:06:13 -0700145 char value[PROPERTY_VALUE_MAX] = {0};
146 property_get("hw.trueMirrorSupported", value, "0");
147 int trueMirroringSupported = atoi(value);
148 return (trueMirroringSupported && mBorderFillSupported);
Naseer Ahmed29a26812012-06-14 00:56:20 -0700149}
150
151//--------------------------------------------------------
Naseer Ahmedaf49e212012-07-31 19:13:41 -0700152//Refer to graphics.h, gralloc_priv.h, msm_mdp.h
Naseer Ahmed29a26812012-06-14 00:56:20 -0700153int getMdpFormat(int format) {
154 switch (format) {
Naseer Ahmedaf49e212012-07-31 19:13:41 -0700155 //From graphics.h
Naseer Ahmed29a26812012-06-14 00:56:20 -0700156 case HAL_PIXEL_FORMAT_RGBA_8888 :
157 return MDP_RGBA_8888;
Naseer Ahmed29a26812012-06-14 00:56:20 -0700158 case HAL_PIXEL_FORMAT_RGBX_8888:
159 return MDP_RGBX_8888;
Naseer Ahmedaf49e212012-07-31 19:13:41 -0700160 case HAL_PIXEL_FORMAT_RGB_888:
161 return MDP_RGB_888;
162 case HAL_PIXEL_FORMAT_RGB_565:
163 return MDP_RGB_565;
164 case HAL_PIXEL_FORMAT_BGRA_8888:
165 return MDP_BGRA_8888;
Naseer Ahmed29a26812012-06-14 00:56:20 -0700166 case HAL_PIXEL_FORMAT_YV12:
167 return MDP_Y_CR_CB_H2V2;
Naseer Ahmedaf49e212012-07-31 19:13:41 -0700168 case HAL_PIXEL_FORMAT_YCbCr_422_SP:
169 return MDP_Y_CBCR_H2V1;
170 case HAL_PIXEL_FORMAT_YCrCb_420_SP:
171 return MDP_Y_CRCB_H2V2;
172
173 //From gralloc_priv.h
174 case HAL_PIXEL_FORMAT_YCbCr_420_SP_TILED:
175 return MDP_Y_CBCR_H2V2_TILE;
176 case HAL_PIXEL_FORMAT_YCbCr_420_SP:
177 return MDP_Y_CBCR_H2V2;
178 case HAL_PIXEL_FORMAT_YCrCb_422_SP:
179 return MDP_Y_CRCB_H2V1;
180 case HAL_PIXEL_FORMAT_YCbCr_444_SP:
181 return MDP_Y_CBCR_H1V1;
182 case HAL_PIXEL_FORMAT_YCrCb_444_SP:
183 return MDP_Y_CRCB_H1V1;
184
Naseer Ahmed29a26812012-06-14 00:56:20 -0700185 default:
Naseer Ahmedaf49e212012-07-31 19:13:41 -0700186 //Unsupported by MDP
187 //---graphics.h--------
188 //HAL_PIXEL_FORMAT_RGBA_5551
189 //HAL_PIXEL_FORMAT_RGBA_4444
190 //HAL_PIXEL_FORMAT_YCbCr_422_I
191 //---gralloc_priv.h-----
192 //HAL_PIXEL_FORMAT_YCrCb_420_SP_ADRENO = 0x7FA30C01
193 //HAL_PIXEL_FORMAT_R_8 = 0x10D
194 //HAL_PIXEL_FORMAT_RG_88 = 0x10E
195 ALOGE("%s: Unsupported format = 0x%x", __func__, format);
Naseer Ahmed29a26812012-06-14 00:56:20 -0700196 return -1;
197 }
198 // not reached
199 return -1;
200}
201
Naseer Ahmedf48aef62012-07-20 09:05:53 -0700202//Set by client as HDMI/WFD
203void setExtType(const int& type) {
204 if(type != HDMI && type != WFD) {
205 ALOGE("%s: Unrecognized type %d", __func__, type);
206 return;
207 }
208 sExtType = type;
209}
210
211//Return External panel type set by client.
212int getExtType() {
213 return sExtType;
Naseer Ahmed29a26812012-06-14 00:56:20 -0700214}
215
216bool is3DTV() {
217 char is3DTV = '0';
218 IOFile fp(Res::edid3dInfoFile, "r");
219 (void)fp.read(is3DTV, 1);
220 ALOGI("3DTV EDID flag: %d", is3DTV);
221 return (is3DTV == '0') ? false : true;
222}
223
224bool isPanel3D() {
225 OvFD fd;
Naseer Ahmedf48aef62012-07-20 09:05:53 -0700226 if(!overlay::open(fd, 0 /*fb*/, Res::fbPath)){
Naseer Ahmed29a26812012-06-14 00:56:20 -0700227 ALOGE("isPanel3D Can't open framebuffer 0");
228 return false;
229 }
230 fb_fix_screeninfo finfo;
231 if(!mdp_wrapper::getFScreenInfo(fd.getFD(), finfo)) {
232 ALOGE("isPanel3D read fb0 failed");
233 }
234 fd.close();
235 return (FB_TYPE_3D_PANEL == finfo.type) ? true : false;
236}
237
238bool usePanel3D() {
239 if(!isPanel3D())
240 return false;
241 char value[PROPERTY_VALUE_MAX];
242 property_get("persist.user.panel3D", value, "0");
243 int usePanel3D = atoi(value);
244 return usePanel3D ? true : false;
245}
246
247bool send3DInfoPacket (uint32_t format3D) {
248 IOFile fp(Res::format3DFile, "wb");
249 (void)fp.write("%d", format3D);
250 if(!fp.valid()) {
251 ALOGE("send3DInfoPacket: no sysfs entry for setting 3d mode");
252 return false;
253 }
254 return true;
255}
256
257bool enableBarrier (uint32_t orientation) {
258 IOFile fp(Res::barrierFile, "wb");
259 (void)fp.write("%d", orientation);
260 if(!fp.valid()) {
261 ALOGE("enableBarrier no sysfs entry for "
262 "enabling barriers on 3D panel");
263 return false;
264 }
265 return true;
266}
267
268uint32_t getS3DFormat(uint32_t fmt) {
269 // The S3D is part of the HAL_PIXEL_FORMAT_YV12 value. Add
270 // an explicit check for the format
271 if (fmt == HAL_PIXEL_FORMAT_YV12) {
272 return 0;
273 }
274 uint32_t fmt3D = format3D(fmt);
275 uint32_t fIn3D = format3DInput(fmt3D); // MSB 2 bytes - inp
276 uint32_t fOut3D = format3DOutput(fmt3D); // LSB 2 bytes - out
277 fmt3D = fIn3D | fOut3D;
278 if (!fIn3D) {
279 fmt3D |= fOut3D << SHIFT_TOT_3D; //Set the input format
280 }
281 if (!fOut3D) {
282 switch (fIn3D) {
283 case HAL_3D_IN_SIDE_BY_SIDE_L_R:
284 case HAL_3D_IN_SIDE_BY_SIDE_R_L:
285 // For all side by side formats, set the output
286 // format as Side-by-Side i.e 0x1
287 fmt3D |= HAL_3D_IN_SIDE_BY_SIDE_L_R >> SHIFT_TOT_3D;
288 break;
289 default:
290 fmt3D |= fIn3D >> SHIFT_TOT_3D; //Set the output format
291 }
292 }
293 return fmt3D;
294}
295
Naseer Ahmed29a26812012-06-14 00:56:20 -0700296} // utils
297
298} // overlay