1 /*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17 #include <sys/mman.h>
18
19 #include <dlfcn.h>
20
21 #include <cutils/ashmem.h>
22 #include <cutils/log.h>
23
24 #include <hardware/hardware.h>
25 #include <hardware/gralloc.h>
26
27 #include <fcntl.h>
28 #include <errno.h>
29 #include <sys/ioctl.h>
30 #include <string.h>
31 #include <stdlib.h>
32
33 #include <cutils/log.h>
34 #include <cutils/atomic.h>
35
36 #include <linux/fb.h>
37 #include <linux/msm_mdp.h>
38
39 #include "gralloc_priv.h"
40 #include "gr.h"
41
42 /*****************************************************************************/
43
44 // numbers of buffers for page flipping
45 #define NUM_BUFFERS 2
46
47
48 enum {
49 PAGE_FLIP = 0x00000001,
50 LOCKED = 0x00000002
51 };
52
53 struct fb_context_t {
54 framebuffer_device_t device;
55 };
56
57 /*****************************************************************************/
58
59 static void
60 msm_copy_buffer(buffer_handle_t handle, int fd, int width, int height,
61 int x, int y, int w, int h);
62
fb_setSwapInterval(struct framebuffer_device_t * dev,int interval)63 static int fb_setSwapInterval(struct framebuffer_device_t* dev,
64 int interval)
65 {
66 fb_context_t* ctx = (fb_context_t*)dev;
67 if (interval < dev->minSwapInterval || interval > dev->maxSwapInterval)
68 return -EINVAL;
69 // FIXME: implement fb_setSwapInterval
70 return 0;
71 }
72
fb_setUpdateRect(struct framebuffer_device_t * dev,int l,int t,int w,int h)73 static int fb_setUpdateRect(struct framebuffer_device_t* dev,
74 int l, int t, int w, int h)
75 {
76 if (((w|h) <= 0) || ((l|t)<0))
77 return -EINVAL;
78
79 fb_context_t* ctx = (fb_context_t*)dev;
80 private_module_t* m = reinterpret_cast<private_module_t*>(
81 dev->common.module);
82 m->info.reserved[0] = 0x54445055; // "UPDT";
83 m->info.reserved[1] = (uint16_t)l | ((uint32_t)t << 16);
84 m->info.reserved[2] = (uint16_t)(l+w) | ((uint32_t)(t+h) << 16);
85 return 0;
86 }
87
fb_post(struct framebuffer_device_t * dev,buffer_handle_t buffer)88 static int fb_post(struct framebuffer_device_t* dev, buffer_handle_t buffer)
89 {
90 if (private_handle_t::validate(buffer) < 0)
91 return -EINVAL;
92
93 fb_context_t* ctx = (fb_context_t*)dev;
94
95 private_handle_t const* hnd = reinterpret_cast<private_handle_t const*>(buffer);
96 private_module_t* m = reinterpret_cast<private_module_t*>(
97 dev->common.module);
98
99 if (m->currentBuffer) {
100 m->base.unlock(&m->base, m->currentBuffer);
101 m->currentBuffer = 0;
102 }
103
104 if (hnd->flags & private_handle_t::PRIV_FLAGS_FRAMEBUFFER) {
105
106 m->base.lock(&m->base, buffer,
107 private_module_t::PRIV_USAGE_LOCKED_FOR_POST,
108 0, 0, m->info.xres, m->info.yres, NULL);
109
110 const size_t offset = hnd->base - m->framebuffer->base;
111 m->info.activate = FB_ACTIVATE_VBL;
112 m->info.yoffset = offset / m->finfo.line_length;
113 if (ioctl(m->framebuffer->fd, FBIOPUT_VSCREENINFO, &m->info) == -1) {
114 LOGE("FBIOPUT_VSCREENINFO failed");
115 m->base.unlock(&m->base, buffer);
116 return -errno;
117 }
118 m->currentBuffer = buffer;
119
120 } else {
121 // If we can't do the page_flip, just copy the buffer to the front
122 // FIXME: use copybit HAL instead of memcpy
123
124 void* fb_vaddr;
125 void* buffer_vaddr;
126
127 m->base.lock(&m->base, m->framebuffer,
128 GRALLOC_USAGE_SW_WRITE_RARELY,
129 0, 0, m->info.xres, m->info.yres,
130 &fb_vaddr);
131
132 m->base.lock(&m->base, buffer,
133 GRALLOC_USAGE_SW_READ_RARELY,
134 0, 0, m->info.xres, m->info.yres,
135 &buffer_vaddr);
136
137 //memcpy(fb_vaddr, buffer_vaddr, m->finfo.line_length * m->info.yres);
138
139 msm_copy_buffer(m->framebuffer, m->framebuffer->fd,
140 m->info.xres, m->info.yres,
141 m->info.xoffset, m->info.yoffset,
142 m->info.width, m->info.height);
143
144 m->base.unlock(&m->base, buffer);
145 m->base.unlock(&m->base, m->framebuffer);
146 }
147
148 return 0;
149 }
150
151 /*****************************************************************************/
152
mapFrameBufferLocked(struct private_module_t * module)153 int mapFrameBufferLocked(struct private_module_t* module)
154 {
155 // already initialized...
156 if (module->framebuffer) {
157 return 0;
158 }
159
160 char const * const device_template[] = {
161 "/dev/graphics/fb%u",
162 "/dev/fb%u",
163 0 };
164
165 int fd = -1;
166 int i=0;
167 char name[64];
168
169 while ((fd==-1) && device_template[i]) {
170 snprintf(name, 64, device_template[i], 0);
171 fd = open(name, O_RDWR, 0);
172 i++;
173 }
174 if (fd < 0)
175 return -errno;
176
177 struct fb_fix_screeninfo finfo;
178 if (ioctl(fd, FBIOGET_FSCREENINFO, &finfo) == -1)
179 return -errno;
180
181 struct fb_var_screeninfo info;
182 if (ioctl(fd, FBIOGET_VSCREENINFO, &info) == -1)
183 return -errno;
184
185 info.reserved[0] = 0;
186 info.reserved[1] = 0;
187 info.reserved[2] = 0;
188 info.xoffset = 0;
189 info.yoffset = 0;
190 info.activate = FB_ACTIVATE_NOW;
191
192 /*
193 * Explicitly request 5/6/5
194 */
195 info.bits_per_pixel = 16;
196 info.red.offset = 11;
197 info.red.length = 5;
198 info.green.offset = 5;
199 info.green.length = 6;
200 info.blue.offset = 0;
201 info.blue.length = 5;
202 info.transp.offset = 0;
203 info.transp.length = 0;
204
205 /*
206 * Request NUM_BUFFERS screens (at lest 2 for page flipping)
207 */
208 info.yres_virtual = info.yres * NUM_BUFFERS;
209
210
211 uint32_t flags = PAGE_FLIP;
212 if (ioctl(fd, FBIOPUT_VSCREENINFO, &info) == -1) {
213 info.yres_virtual = info.yres;
214 flags &= ~PAGE_FLIP;
215 LOGW("FBIOPUT_VSCREENINFO failed, page flipping not supported");
216 }
217
218 if (info.yres_virtual < info.yres * 2) {
219 // we need at least 2 for page-flipping
220 info.yres_virtual = info.yres;
221 flags &= ~PAGE_FLIP;
222 LOGW("page flipping not supported (yres_virtual=%d, requested=%d)",
223 info.yres_virtual, info.yres*2);
224 }
225
226 if (ioctl(fd, FBIOGET_VSCREENINFO, &info) == -1)
227 return -errno;
228
229 int refreshRate = 1000000000000000LLU /
230 (
231 uint64_t( info.upper_margin + info.lower_margin + info.yres )
232 * ( info.left_margin + info.right_margin + info.xres )
233 * info.pixclock
234 );
235
236 if (refreshRate == 0) {
237 // bleagh, bad info from the driver
238 refreshRate = 60*1000; // 60 Hz
239 }
240
241 if (int(info.width) <= 0 || int(info.height) <= 0) {
242 // the driver doesn't return that information
243 // default to 160 dpi
244 info.width = ((info.xres * 25.4f)/160.0f + 0.5f);
245 info.height = ((info.yres * 25.4f)/160.0f + 0.5f);
246 }
247
248 float xdpi = (info.xres * 25.4f) / info.width;
249 float ydpi = (info.yres * 25.4f) / info.height;
250 float fps = refreshRate / 1000.0f;
251
252 LOGI( "using (fd=%d)\n"
253 "id = %s\n"
254 "xres = %d px\n"
255 "yres = %d px\n"
256 "xres_virtual = %d px\n"
257 "yres_virtual = %d px\n"
258 "bpp = %d\n"
259 "r = %2u:%u\n"
260 "g = %2u:%u\n"
261 "b = %2u:%u\n",
262 fd,
263 finfo.id,
264 info.xres,
265 info.yres,
266 info.xres_virtual,
267 info.yres_virtual,
268 info.bits_per_pixel,
269 info.red.offset, info.red.length,
270 info.green.offset, info.green.length,
271 info.blue.offset, info.blue.length
272 );
273
274 LOGI( "width = %d mm (%f dpi)\n"
275 "height = %d mm (%f dpi)\n"
276 "refresh rate = %.2f Hz\n",
277 info.width, xdpi,
278 info.height, ydpi,
279 fps
280 );
281
282
283 if (ioctl(fd, FBIOGET_FSCREENINFO, &finfo) == -1)
284 return -errno;
285
286 if (finfo.smem_len <= 0)
287 return -errno;
288
289
290 module->flags = flags;
291 module->info = info;
292 module->finfo = finfo;
293 module->xdpi = xdpi;
294 module->ydpi = ydpi;
295 module->fps = fps;
296
297 /*
298 * map the framebuffer
299 */
300
301 int err;
302 size_t fbSize = roundUpToPageSize(finfo.line_length * info.yres_virtual);
303 module->framebuffer = new private_handle_t(dup(fd), fbSize,
304 private_handle_t::PRIV_FLAGS_USES_PMEM);
305
306 module->numBuffers = info.yres_virtual / info.yres;
307 module->bufferMask = 0;
308
309 void* vaddr = mmap(0, fbSize, PROT_READ|PROT_WRITE, MAP_SHARED, fd, 0);
310 if (vaddr == MAP_FAILED) {
311 LOGE("Error mapping the framebuffer (%s)", strerror(errno));
312 return -errno;
313 }
314 module->framebuffer->base = intptr_t(vaddr);
315
316 memset(vaddr, 0, fbSize);
317 return 0;
318 }
319
mapFrameBuffer(struct private_module_t * module)320 static int mapFrameBuffer(struct private_module_t* module)
321 {
322 pthread_mutex_lock(&module->lock);
323 int err = mapFrameBufferLocked(module);
324 pthread_mutex_unlock(&module->lock);
325 return err;
326 }
327
328 /*****************************************************************************/
329
fb_close(struct hw_device_t * dev)330 static int fb_close(struct hw_device_t *dev)
331 {
332 fb_context_t* ctx = (fb_context_t*)dev;
333 if (ctx) {
334 free(ctx);
335 }
336 return 0;
337 }
338
fb_device_open(hw_module_t const * module,const char * name,hw_device_t ** device)339 int fb_device_open(hw_module_t const* module, const char* name,
340 hw_device_t** device)
341 {
342 int status = -EINVAL;
343 if (!strcmp(name, GRALLOC_HARDWARE_FB0)) {
344 alloc_device_t* gralloc_device;
345 status = gralloc_open(module, &gralloc_device);
346 if (status < 0)
347 return status;
348
349 /* initialize our state here */
350 fb_context_t *dev = (fb_context_t*)malloc(sizeof(*dev));
351 memset(dev, 0, sizeof(*dev));
352
353 /* initialize the procs */
354 dev->device.common.tag = HARDWARE_DEVICE_TAG;
355 dev->device.common.version = 0;
356 dev->device.common.module = const_cast<hw_module_t*>(module);
357 dev->device.common.close = fb_close;
358 dev->device.setSwapInterval = fb_setSwapInterval;
359 dev->device.post = fb_post;
360 dev->device.setUpdateRect = 0;
361
362 private_module_t* m = (private_module_t*)module;
363 status = mapFrameBuffer(m);
364 if (status >= 0) {
365 int stride = m->finfo.line_length / (m->info.bits_per_pixel >> 3);
366 const_cast<uint32_t&>(dev->device.flags) = 0;
367 const_cast<uint32_t&>(dev->device.width) = m->info.xres;
368 const_cast<uint32_t&>(dev->device.height) = m->info.yres;
369 const_cast<int&>(dev->device.stride) = stride;
370 const_cast<int&>(dev->device.format) = HAL_PIXEL_FORMAT_RGB_565;
371 const_cast<float&>(dev->device.xdpi) = m->xdpi;
372 const_cast<float&>(dev->device.ydpi) = m->ydpi;
373 const_cast<float&>(dev->device.fps) = m->fps;
374 const_cast<int&>(dev->device.minSwapInterval) = 1;
375 const_cast<int&>(dev->device.maxSwapInterval) = 1;
376
377 if (m->finfo.reserved[0] == 0x5444 &&
378 m->finfo.reserved[1] == 0x5055) {
379 dev->device.setUpdateRect = fb_setUpdateRect;
380 LOGD("UPDATE_ON_DEMAND supported");
381 }
382
383 *device = &dev->device.common;
384 }
385 }
386 return status;
387 }
388
389 /* Copy a pmem buffer to the framebuffer */
390
391 static void
msm_copy_buffer(buffer_handle_t handle,int fd,int width,int height,int x,int y,int w,int h)392 msm_copy_buffer(buffer_handle_t handle, int fd, int width, int height,
393 int x, int y, int w, int h)
394 {
395 struct {
396 unsigned int count;
397 mdp_blit_req req;
398 } blit;
399 private_handle_t *priv = (private_handle_t*) handle;
400
401 memset(&blit, 0, sizeof(blit));
402 blit.count = 1;
403
404 blit.req.flags = 0;
405 blit.req.alpha = 0xff;
406 blit.req.transp_mask = 0xffffffff;
407
408 blit.req.src.width = width;
409 blit.req.src.height = height;
410 blit.req.src.offset = 0;
411 blit.req.src.memory_id = priv->fd;
412
413 blit.req.dst.width = width;
414 blit.req.dst.height = height;
415 blit.req.dst.offset = 0;
416 blit.req.dst.memory_id = fd;
417 blit.req.dst.format = MDP_RGB_565;
418
419 blit.req.src_rect.x = blit.req.dst_rect.x = x;
420 blit.req.src_rect.y = blit.req.dst_rect.y = y;
421 blit.req.src_rect.w = blit.req.dst_rect.w = w;
422 blit.req.src_rect.h = blit.req.dst_rect.h = h;
423
424 if (ioctl(fd, MSMFB_BLIT, &blit))
425 LOGE("MSMFB_BLIT failed = %d", -errno);
426 }
427