blob: b2ec3e44a978f36a3b2321fbef0aa297038e319c [file] [log] [blame]
Mathias Agopiana8a75162009-04-10 14:24:31 -07001/*
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
Mark Salyzynd88dfe82017-04-11 08:56:09 -070017#include <dlfcn.h>
18#include <errno.h>
19#include <fcntl.h>
20#include <stdlib.h>
21#include <string.h>
22#include <sys/ioctl.h>
Mathias Agopiana8a75162009-04-10 14:24:31 -070023#include <sys/mman.h>
24
Mathias Agopiana8a75162009-04-10 14:24:31 -070025#include <cutils/ashmem.h>
Mathias Agopiana8a75162009-04-10 14:24:31 -070026#include <cutils/atomic.h>
Mark Salyzynd88dfe82017-04-11 08:56:09 -070027#include <log/log.h>
28
29#include <hardware/gralloc.h>
30#include <hardware/hardware.h>
Mathias Agopiana8a75162009-04-10 14:24:31 -070031
Elliott Hughesca6ccd92015-08-12 16:42:13 -070032#ifdef __ANDROID__
Mathias Agopiana8a75162009-04-10 14:24:31 -070033#include <linux/fb.h>
34#endif
35
36#include "gralloc_priv.h"
Mathias Agopianfc054132009-08-18 17:35:44 -070037#include "gr.h"
Mathias Agopiana8a75162009-04-10 14:24:31 -070038
39/*****************************************************************************/
40
Bernhard Rosenkraenzer56416422014-02-25 13:50:34 +053041// Set TARGET_USE_PAN_DISPLAY to true at compile time if the
42// board uses FBIOPAN_DISPLAY to setup page flipping, otherwise
43// default ioctl to do page-flipping is FBIOPUT_VSCREENINFO.
44#ifndef USE_PAN_DISPLAY
45#define USE_PAN_DISPLAY 0
46#endif
47
Mathias Agopiancdb66fb2009-07-06 20:49:05 -070048// numbers of buffers for page flipping
Mathias Agopiana8a75162009-04-10 14:24:31 -070049#define NUM_BUFFERS 2
50
51
52enum {
53 PAGE_FLIP = 0x00000001,
54 LOCKED = 0x00000002
55};
56
57struct fb_context_t {
58 framebuffer_device_t device;
59};
60
61/*****************************************************************************/
62
63static int fb_setSwapInterval(struct framebuffer_device_t* dev,
64 int interval)
65{
Mathias Agopiana8a75162009-04-10 14:24:31 -070066 if (interval < dev->minSwapInterval || interval > dev->maxSwapInterval)
67 return -EINVAL;
68 // FIXME: implement fb_setSwapInterval
69 return 0;
70}
71
Mathias Agopiana8a75162009-04-10 14:24:31 -070072static int fb_post(struct framebuffer_device_t* dev, buffer_handle_t buffer)
73{
74 if (private_handle_t::validate(buffer) < 0)
75 return -EINVAL;
76
Mathias Agopiana8a75162009-04-10 14:24:31 -070077 private_handle_t const* hnd = reinterpret_cast<private_handle_t const*>(buffer);
78 private_module_t* m = reinterpret_cast<private_module_t*>(
79 dev->common.module);
Mathias Agopiana8a75162009-04-10 14:24:31 -070080
81 if (hnd->flags & private_handle_t::PRIV_FLAGS_FRAMEBUFFER) {
Mathias Agopiana8a75162009-04-10 14:24:31 -070082 const size_t offset = hnd->base - m->framebuffer->base;
83 m->info.activate = FB_ACTIVATE_VBL;
84 m->info.yoffset = offset / m->finfo.line_length;
85 if (ioctl(m->framebuffer->fd, FBIOPUT_VSCREENINFO, &m->info) == -1) {
Steve Block60d056b2012-01-08 10:17:53 +000086 ALOGE("FBIOPUT_VSCREENINFO failed");
Mathias Agopiana8a75162009-04-10 14:24:31 -070087 m->base.unlock(&m->base, buffer);
88 return -errno;
89 }
90 m->currentBuffer = buffer;
91
92 } else {
93 // If we can't do the page_flip, just copy the buffer to the front
94 // FIXME: use copybit HAL instead of memcpy
95
Mathias Agopian988b8bd2009-05-04 14:26:56 -070096 void* fb_vaddr;
97 void* buffer_vaddr;
Mathias Agopiana8a75162009-04-10 14:24:31 -070098
Mathias Agopian988b8bd2009-05-04 14:26:56 -070099 m->base.lock(&m->base, m->framebuffer,
100 GRALLOC_USAGE_SW_WRITE_RARELY,
101 0, 0, m->info.xres, m->info.yres,
102 &fb_vaddr);
103
104 m->base.lock(&m->base, buffer,
105 GRALLOC_USAGE_SW_READ_RARELY,
106 0, 0, m->info.xres, m->info.yres,
107 &buffer_vaddr);
108
109 memcpy(fb_vaddr, buffer_vaddr, m->finfo.line_length * m->info.yres);
Mathias Agopiana8a75162009-04-10 14:24:31 -0700110
111 m->base.unlock(&m->base, buffer);
Mathias Agopian988b8bd2009-05-04 14:26:56 -0700112 m->base.unlock(&m->base, m->framebuffer);
Mathias Agopiana8a75162009-04-10 14:24:31 -0700113 }
114
115 return 0;
116}
117
118/*****************************************************************************/
119
Peter Collingbournef2ed2932019-10-15 17:29:20 -0700120int mapFrameBufferLocked(struct private_module_t* module, int format)
Mathias Agopiana8a75162009-04-10 14:24:31 -0700121{
122 // already initialized...
123 if (module->framebuffer) {
124 return 0;
125 }
126
127 char const * const device_template[] = {
128 "/dev/graphics/fb%u",
129 "/dev/fb%u",
130 0 };
131
132 int fd = -1;
133 int i=0;
134 char name[64];
135
136 while ((fd==-1) && device_template[i]) {
137 snprintf(name, 64, device_template[i], 0);
138 fd = open(name, O_RDWR, 0);
139 i++;
140 }
141 if (fd < 0)
142 return -errno;
143
144 struct fb_fix_screeninfo finfo;
145 if (ioctl(fd, FBIOGET_FSCREENINFO, &finfo) == -1)
146 return -errno;
147
148 struct fb_var_screeninfo info;
149 if (ioctl(fd, FBIOGET_VSCREENINFO, &info) == -1)
150 return -errno;
151
152 info.reserved[0] = 0;
153 info.reserved[1] = 0;
154 info.reserved[2] = 0;
155 info.xoffset = 0;
156 info.yoffset = 0;
157 info.activate = FB_ACTIVATE_NOW;
158
159 /*
Mathias Agopiana8a75162009-04-10 14:24:31 -0700160 * Request NUM_BUFFERS screens (at lest 2 for page flipping)
161 */
162 info.yres_virtual = info.yres * NUM_BUFFERS;
163
Peter Collingbournef2ed2932019-10-15 17:29:20 -0700164 switch (format) {
165 case HAL_PIXEL_FORMAT_RGBA_8888:
166 info.bits_per_pixel = 32;
167 info.red.offset = 0;
168 info.red.length = 8;
169 info.green.offset = 8;
170 info.green.length = 8;
171 info.blue.offset = 16;
172 info.blue.length = 8;
173 break;
174 default:
175 ALOGW("unknown format: %d", format);
176 break;
177 }
Mathias Agopiana8a75162009-04-10 14:24:31 -0700178
179 uint32_t flags = PAGE_FLIP;
Bernhard Rosenkraenzer56416422014-02-25 13:50:34 +0530180#if USE_PAN_DISPLAY
181 if (ioctl(fd, FBIOPAN_DISPLAY, &info) == -1) {
182 ALOGW("FBIOPAN_DISPLAY failed, page flipping not supported");
183#else
Mathias Agopiana8a75162009-04-10 14:24:31 -0700184 if (ioctl(fd, FBIOPUT_VSCREENINFO, &info) == -1) {
Bernhard Rosenkraenzer56416422014-02-25 13:50:34 +0530185 ALOGW("FBIOPUT_VSCREENINFO failed, page flipping not supported");
186#endif
Mathias Agopiana8a75162009-04-10 14:24:31 -0700187 info.yres_virtual = info.yres;
188 flags &= ~PAGE_FLIP;
Mathias Agopiana8a75162009-04-10 14:24:31 -0700189 }
190
191 if (info.yres_virtual < info.yres * 2) {
192 // we need at least 2 for page-flipping
193 info.yres_virtual = info.yres;
194 flags &= ~PAGE_FLIP;
Steve Block22d35132012-01-05 23:27:52 +0000195 ALOGW("page flipping not supported (yres_virtual=%d, requested=%d)",
Mathias Agopiana8a75162009-04-10 14:24:31 -0700196 info.yres_virtual, info.yres*2);
197 }
198
199 if (ioctl(fd, FBIOGET_VSCREENINFO, &info) == -1)
200 return -errno;
201
David 'Digit' Turner80d36992011-01-15 21:06:12 +0100202 uint64_t refreshQuotient =
Mathias Agopiana8a75162009-04-10 14:24:31 -0700203 (
204 uint64_t( info.upper_margin + info.lower_margin + info.yres )
205 * ( info.left_margin + info.right_margin + info.xres )
206 * info.pixclock
207 );
208
David 'Digit' Turner80d36992011-01-15 21:06:12 +0100209 /* Beware, info.pixclock might be 0 under emulation, so avoid a
210 * division-by-0 here (SIGFPE on ARM) */
211 int refreshRate = refreshQuotient > 0 ? (int)(1000000000000000LLU / refreshQuotient) : 0;
212
Mathias Agopiana8a75162009-04-10 14:24:31 -0700213 if (refreshRate == 0) {
214 // bleagh, bad info from the driver
215 refreshRate = 60*1000; // 60 Hz
216 }
217
218 if (int(info.width) <= 0 || int(info.height) <= 0) {
219 // the driver doesn't return that information
220 // default to 160 dpi
221 info.width = ((info.xres * 25.4f)/160.0f + 0.5f);
222 info.height = ((info.yres * 25.4f)/160.0f + 0.5f);
223 }
224
225 float xdpi = (info.xres * 25.4f) / info.width;
226 float ydpi = (info.yres * 25.4f) / info.height;
227 float fps = refreshRate / 1000.0f;
228
Steve Blockb224b782012-01-04 20:07:12 +0000229 ALOGI( "using (fd=%d)\n"
Mathias Agopiana8a75162009-04-10 14:24:31 -0700230 "id = %s\n"
231 "xres = %d px\n"
232 "yres = %d px\n"
233 "xres_virtual = %d px\n"
234 "yres_virtual = %d px\n"
235 "bpp = %d\n"
236 "r = %2u:%u\n"
237 "g = %2u:%u\n"
238 "b = %2u:%u\n",
239 fd,
240 finfo.id,
241 info.xres,
242 info.yres,
243 info.xres_virtual,
244 info.yres_virtual,
245 info.bits_per_pixel,
246 info.red.offset, info.red.length,
247 info.green.offset, info.green.length,
248 info.blue.offset, info.blue.length
249 );
250
Steve Blockb224b782012-01-04 20:07:12 +0000251 ALOGI( "width = %d mm (%f dpi)\n"
Mathias Agopiana8a75162009-04-10 14:24:31 -0700252 "height = %d mm (%f dpi)\n"
253 "refresh rate = %.2f Hz\n",
254 info.width, xdpi,
255 info.height, ydpi,
256 fps
257 );
258
259
260 if (ioctl(fd, FBIOGET_FSCREENINFO, &finfo) == -1)
261 return -errno;
262
263 if (finfo.smem_len <= 0)
264 return -errno;
265
266
267 module->flags = flags;
268 module->info = info;
269 module->finfo = finfo;
270 module->xdpi = xdpi;
271 module->ydpi = ydpi;
272 module->fps = fps;
273
274 /*
275 * map the framebuffer
276 */
277
Mathias Agopiana8a75162009-04-10 14:24:31 -0700278 size_t fbSize = roundUpToPageSize(finfo.line_length * info.yres_virtual);
Mathias Agopianf96b2062009-12-14 18:27:09 -0800279 module->framebuffer = new private_handle_t(dup(fd), fbSize, 0);
Mathias Agopiana8a75162009-04-10 14:24:31 -0700280
281 module->numBuffers = info.yres_virtual / info.yres;
282 module->bufferMask = 0;
Mathias Agopian988b8bd2009-05-04 14:26:56 -0700283
Mathias Agopian51156652009-06-09 18:55:49 -0700284 void* vaddr = mmap(0, fbSize, PROT_READ|PROT_WRITE, MAP_SHARED, fd, 0);
285 if (vaddr == MAP_FAILED) {
Steve Block60d056b2012-01-08 10:17:53 +0000286 ALOGE("Error mapping the framebuffer (%s)", strerror(errno));
Mathias Agopian51156652009-06-09 18:55:49 -0700287 return -errno;
288 }
289 module->framebuffer->base = intptr_t(vaddr);
Mathias Agopiana8a75162009-04-10 14:24:31 -0700290 memset(vaddr, 0, fbSize);
Mathias Agopiana8a75162009-04-10 14:24:31 -0700291 return 0;
292}
293
294static int mapFrameBuffer(struct private_module_t* module)
295{
296 pthread_mutex_lock(&module->lock);
Peter Collingbournef2ed2932019-10-15 17:29:20 -0700297 // Request RGBA8888 because the platform assumes support for RGBA8888.
298 int err = mapFrameBufferLocked(module, HAL_PIXEL_FORMAT_RGBA_8888);
Mathias Agopiana8a75162009-04-10 14:24:31 -0700299 pthread_mutex_unlock(&module->lock);
300 return err;
301}
302
303/*****************************************************************************/
304
305static int fb_close(struct hw_device_t *dev)
306{
307 fb_context_t* ctx = (fb_context_t*)dev;
308 if (ctx) {
309 free(ctx);
310 }
311 return 0;
312}
313
314int fb_device_open(hw_module_t const* module, const char* name,
315 hw_device_t** device)
316{
317 int status = -EINVAL;
318 if (!strcmp(name, GRALLOC_HARDWARE_FB0)) {
Mathias Agopiana8a75162009-04-10 14:24:31 -0700319 /* initialize our state here */
320 fb_context_t *dev = (fb_context_t*)malloc(sizeof(*dev));
321 memset(dev, 0, sizeof(*dev));
322
323 /* initialize the procs */
324 dev->device.common.tag = HARDWARE_DEVICE_TAG;
325 dev->device.common.version = 0;
326 dev->device.common.module = const_cast<hw_module_t*>(module);
327 dev->device.common.close = fb_close;
328 dev->device.setSwapInterval = fb_setSwapInterval;
Mathias Agopiana8a75162009-04-10 14:24:31 -0700329 dev->device.post = fb_post;
Mathias Agopiand28d7e82009-07-07 12:20:31 -0700330 dev->device.setUpdateRect = 0;
Mathias Agopiana8a75162009-04-10 14:24:31 -0700331
332 private_module_t* m = (private_module_t*)module;
333 status = mapFrameBuffer(m);
334 if (status >= 0) {
335 int stride = m->finfo.line_length / (m->info.bits_per_pixel >> 3);
David 'Digit' Turner25b68b52011-01-16 19:52:22 +0100336 int format = (m->info.bits_per_pixel == 32)
Bernhard Rosenkraenzer5e3ac6b2014-02-21 01:38:44 +0530337 ? (m->info.red.offset ? HAL_PIXEL_FORMAT_BGRA_8888 : HAL_PIXEL_FORMAT_RGBX_8888)
David 'Digit' Turner25b68b52011-01-16 19:52:22 +0100338 : HAL_PIXEL_FORMAT_RGB_565;
Mathias Agopian295190f2009-05-05 18:30:52 -0700339 const_cast<uint32_t&>(dev->device.flags) = 0;
Mathias Agopiana8a75162009-04-10 14:24:31 -0700340 const_cast<uint32_t&>(dev->device.width) = m->info.xres;
341 const_cast<uint32_t&>(dev->device.height) = m->info.yres;
342 const_cast<int&>(dev->device.stride) = stride;
David 'Digit' Turner25b68b52011-01-16 19:52:22 +0100343 const_cast<int&>(dev->device.format) = format;
Mathias Agopiana8a75162009-04-10 14:24:31 -0700344 const_cast<float&>(dev->device.xdpi) = m->xdpi;
345 const_cast<float&>(dev->device.ydpi) = m->ydpi;
346 const_cast<float&>(dev->device.fps) = m->fps;
347 const_cast<int&>(dev->device.minSwapInterval) = 1;
348 const_cast<int&>(dev->device.maxSwapInterval) = 1;
Mathias Agopiana8a75162009-04-10 14:24:31 -0700349 *device = &dev->device.common;
George Burgess IV4028ac92018-02-12 13:14:52 -0800350 } else {
351 free(dev);
Mathias Agopiana8a75162009-04-10 14:24:31 -0700352 }
353 }
354 return status;
355}