blob: 04a01955558b47fbb0def503384d7b83c8626e40 [file] [log] [blame]
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001/*
2**
3** Copyright 2007 The Android Open Source Project
4**
5** Licensed under the Apache License Version 2.0(the "License");
6** you may not use this file except in compliance with the License.
7** You may obtain a copy of the License at
8**
9** http://www.apache.org/licenses/LICENSE-2.0
10**
11** Unless required by applicable law or agreed to in writing software
12** distributed under the License is distributed on an "AS IS" BASIS
13** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND either express or implied.
14** See the License for the specific language governing permissions and
15** limitations under the License.
16*/
17
Mathias Agopian0926f502009-05-04 14:17:04 -070018#define LOG_TAG "FramebufferNativeWindow"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080019
20#include <stdlib.h>
21#include <stdio.h>
22#include <string.h>
Mathias Agopian076b1cc2009-04-10 14:24:30 -070023#include <errno.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080024
25#include <cutils/log.h>
26#include <cutils/atomic.h>
Mathias Agopian076b1cc2009-04-10 14:24:30 -070027#include <utils/threads.h>
Mathias Agopian42db9dc2009-08-06 20:46:44 -070028#include <utils/RefBase.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080029
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080030#include <ui/Rect.h>
Mathias Agopian0926f502009-05-04 14:17:04 -070031#include <ui/FramebufferNativeWindow.h>
Mathias Agopian35b48d12010-09-13 22:57:58 -070032#include <ui/GraphicLog.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080033
34#include <EGL/egl.h>
35
36#include <pixelflinger/format.h>
Mathias Agopian076b1cc2009-04-10 14:24:30 -070037#include <pixelflinger/pixelflinger.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080038
Mathias Agopian076b1cc2009-04-10 14:24:30 -070039#include <hardware/hardware.h>
40#include <hardware/gralloc.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080041
Mathias Agopian58a79f42009-05-05 18:21:32 -070042#include <private/ui/android_natives_priv.h>
43
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080044// ----------------------------------------------------------------------------
45namespace android {
46// ----------------------------------------------------------------------------
47
Mathias Agopian7189c002009-05-05 18:11:11 -070048class NativeBuffer
49 : public EGLNativeBase<
50 android_native_buffer_t,
51 NativeBuffer,
52 LightRefBase<NativeBuffer> >
53{
54public:
55 NativeBuffer(int w, int h, int f, int u) : BASE() {
56 android_native_buffer_t::width = w;
57 android_native_buffer_t::height = h;
58 android_native_buffer_t::format = f;
59 android_native_buffer_t::usage = u;
60 }
61private:
62 friend class LightRefBase<NativeBuffer>;
63 ~NativeBuffer() { }; // this class cannot be overloaded
64};
65
66
Mathias Agopian076b1cc2009-04-10 14:24:30 -070067/*
68 * This implements the (main) framebuffer management. This class is used
69 * mostly by SurfaceFlinger, but also by command line GL application.
70 *
Dianne Hackborn4b5e91e2010-06-30 13:56:17 -070071 * In fact this is an implementation of ANativeWindow on top of
Mathias Agopian076b1cc2009-04-10 14:24:30 -070072 * the framebuffer.
73 *
74 * Currently it is pretty simple, it manages only two buffers (the front and
75 * back buffer).
76 *
77 */
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080078
Mathias Agopian076b1cc2009-04-10 14:24:30 -070079FramebufferNativeWindow::FramebufferNativeWindow()
Mathias Agopian1e16b132009-05-07 17:40:23 -070080 : BASE(), fbDev(0), grDev(0), mUpdateOnDemand(false)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080081{
Mathias Agopian076b1cc2009-04-10 14:24:30 -070082 hw_module_t const* module;
83 if (hw_get_module(GRALLOC_HARDWARE_MODULE_ID, &module) == 0) {
84 int stride;
Mathias Agopian076b1cc2009-04-10 14:24:30 -070085 int err;
Rodrigo Obregon71484f22010-11-03 15:16:18 -050086 int i;
Mathias Agopian42db9dc2009-08-06 20:46:44 -070087 err = framebuffer_open(module, &fbDev);
88 LOGE_IF(err, "couldn't open framebuffer HAL (%s)", strerror(-err));
89
90 err = gralloc_open(module, &grDev);
91 LOGE_IF(err, "couldn't open gralloc HAL (%s)", strerror(-err));
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080092
Mathias Agopian42db9dc2009-08-06 20:46:44 -070093 // bail out if we can't initialize the modules
94 if (!fbDev || !grDev)
95 return;
Mathias Agopian076b1cc2009-04-10 14:24:30 -070096
Mathias Agopian1e16b132009-05-07 17:40:23 -070097 mUpdateOnDemand = (fbDev->setUpdateRect != 0);
98
Mathias Agopian076b1cc2009-04-10 14:24:30 -070099 // initialize the buffer FIFO
Rodrigo Obregon71484f22010-11-03 15:16:18 -0500100 mNumBuffers = NUM_FRAME_BUFFERS;
101 mNumFreeBuffers = NUM_FRAME_BUFFERS;
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700102 mBufferHead = mNumBuffers-1;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800103
Rodrigo Obregon71484f22010-11-03 15:16:18 -0500104 for (i = 0; i < mNumBuffers; i++)
105 {
106 buffers[i] = new NativeBuffer(
107 fbDev->width, fbDev->height, fbDev->format, GRALLOC_USAGE_HW_FB);
108 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800109
Rodrigo Obregon71484f22010-11-03 15:16:18 -0500110 for (i = 0; i < mNumBuffers; i++)
111 {
112 err = grDev->alloc(grDev,
113 fbDev->width, fbDev->height, fbDev->format,
114 GRALLOC_USAGE_HW_FB, &buffers[i]->handle, &buffers[i]->stride);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800115
Rodrigo Obregon71484f22010-11-03 15:16:18 -0500116 LOGE_IF(err, "fb buffer %d allocation failed w=%d, h=%d, err=%s",
117 i, fbDev->width, fbDev->height, strerror(-err));
118
119 if (err)
120 {
121 mNumBuffers = i;
122 mNumFreeBuffers = i;
123 mBufferHead = mNumBuffers-1;
124 break;
125 }
126 }
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700127
Dianne Hackborn4b5e91e2010-06-30 13:56:17 -0700128 const_cast<uint32_t&>(ANativeWindow::flags) = fbDev->flags;
129 const_cast<float&>(ANativeWindow::xdpi) = fbDev->xdpi;
130 const_cast<float&>(ANativeWindow::ydpi) = fbDev->ydpi;
131 const_cast<int&>(ANativeWindow::minSwapInterval) =
Marco Nelissena4557932009-09-23 10:54:36 -0700132 fbDev->minSwapInterval;
Dianne Hackborn4b5e91e2010-06-30 13:56:17 -0700133 const_cast<int&>(ANativeWindow::maxSwapInterval) =
Marco Nelissena4557932009-09-23 10:54:36 -0700134 fbDev->maxSwapInterval;
135 } else {
136 LOGE("Couldn't get gralloc module");
137 }
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700138
Dianne Hackborn4b5e91e2010-06-30 13:56:17 -0700139 ANativeWindow::setSwapInterval = setSwapInterval;
140 ANativeWindow::dequeueBuffer = dequeueBuffer;
141 ANativeWindow::lockBuffer = lockBuffer;
142 ANativeWindow::queueBuffer = queueBuffer;
143 ANativeWindow::query = query;
144 ANativeWindow::perform = perform;
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700145}
146
Mathias Agopian42db9dc2009-08-06 20:46:44 -0700147FramebufferNativeWindow::~FramebufferNativeWindow()
148{
149 if (grDev) {
150 if (buffers[0] != NULL)
151 grDev->free(grDev, buffers[0]->handle);
152 if (buffers[1] != NULL)
153 grDev->free(grDev, buffers[1]->handle);
154 gralloc_close(grDev);
155 }
156
157 if (fbDev) {
158 framebuffer_close(fbDev);
159 }
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700160}
161
Mathias Agopian1e16b132009-05-07 17:40:23 -0700162status_t FramebufferNativeWindow::setUpdateRectangle(const Rect& r)
163{
164 if (!mUpdateOnDemand) {
165 return INVALID_OPERATION;
166 }
167 return fbDev->setUpdateRect(fbDev, r.left, r.top, r.width(), r.height());
168}
169
Mathias Agopian74faca22009-09-17 16:18:16 -0700170status_t FramebufferNativeWindow::compositionComplete()
171{
172 if (fbDev->compositionComplete) {
173 return fbDev->compositionComplete(fbDev);
174 }
175 return INVALID_OPERATION;
176}
177
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700178int FramebufferNativeWindow::setSwapInterval(
Dianne Hackborn4b5e91e2010-06-30 13:56:17 -0700179 ANativeWindow* window, int interval)
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700180{
181 framebuffer_device_t* fb = getSelf(window)->fbDev;
182 return fb->setSwapInterval(fb, interval);
183}
184
Mathias Agopian35b48d12010-09-13 22:57:58 -0700185// only for debugging / logging
186int FramebufferNativeWindow::getCurrentBufferIndex() const
187{
188 Mutex::Autolock _l(mutex);
189 const int index = mCurrentBufferIndex;
190 return index;
191}
192
Dianne Hackborn4b5e91e2010-06-30 13:56:17 -0700193int FramebufferNativeWindow::dequeueBuffer(ANativeWindow* window,
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700194 android_native_buffer_t** buffer)
195{
196 FramebufferNativeWindow* self = getSelf(window);
197 Mutex::Autolock _l(self->mutex);
198 framebuffer_device_t* fb = self->fbDev;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800199
Mathias Agopian35b48d12010-09-13 22:57:58 -0700200 int index = self->mBufferHead++;
201 if (self->mBufferHead >= self->mNumBuffers)
202 self->mBufferHead = 0;
203
204 GraphicLog& logger(GraphicLog::getInstance());
205 logger.log(GraphicLog::SF_FB_DEQUEUE_BEFORE, index);
206
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700207 // wait for a free buffer
208 while (!self->mNumFreeBuffers) {
209 self->mCondition.wait(self->mutex);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800210 }
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700211 // get this buffer
212 self->mNumFreeBuffers--;
Mathias Agopian35b48d12010-09-13 22:57:58 -0700213 self->mCurrentBufferIndex = index;
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700214
215 *buffer = self->buffers[index].get();
216
Mathias Agopian35b48d12010-09-13 22:57:58 -0700217 logger.log(GraphicLog::SF_FB_DEQUEUE_AFTER, index);
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700218 return 0;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800219}
220
Dianne Hackborn4b5e91e2010-06-30 13:56:17 -0700221int FramebufferNativeWindow::lockBuffer(ANativeWindow* window,
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700222 android_native_buffer_t* buffer)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800223{
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700224 FramebufferNativeWindow* self = getSelf(window);
225 Mutex::Autolock _l(self->mutex);
226
Mathias Agopian35b48d12010-09-13 22:57:58 -0700227 const int index = self->mCurrentBufferIndex;
228 GraphicLog& logger(GraphicLog::getInstance());
229 logger.log(GraphicLog::SF_FB_LOCK_BEFORE, index);
230
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700231 // wait that the buffer we're locking is not front anymore
232 while (self->front == buffer) {
233 self->mCondition.wait(self->mutex);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800234 }
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700235
Mathias Agopian35b48d12010-09-13 22:57:58 -0700236 logger.log(GraphicLog::SF_FB_LOCK_AFTER, index);
237
Mathias Agopian0926f502009-05-04 14:17:04 -0700238 return NO_ERROR;
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700239}
240
Dianne Hackborn4b5e91e2010-06-30 13:56:17 -0700241int FramebufferNativeWindow::queueBuffer(ANativeWindow* window,
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700242 android_native_buffer_t* buffer)
243{
244 FramebufferNativeWindow* self = getSelf(window);
245 Mutex::Autolock _l(self->mutex);
246 framebuffer_device_t* fb = self->fbDev;
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700247 buffer_handle_t handle = static_cast<NativeBuffer*>(buffer)->handle;
Mathias Agopian35b48d12010-09-13 22:57:58 -0700248
249 const int index = self->mCurrentBufferIndex;
250 GraphicLog& logger(GraphicLog::getInstance());
251 logger.log(GraphicLog::SF_FB_POST_BEFORE, index);
252
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700253 int res = fb->post(fb, handle);
Mathias Agopian35b48d12010-09-13 22:57:58 -0700254
255 logger.log(GraphicLog::SF_FB_POST_AFTER, index);
256
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700257 self->front = static_cast<NativeBuffer*>(buffer);
258 self->mNumFreeBuffers++;
259 self->mCondition.broadcast();
260 return res;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800261}
262
Dianne Hackborn4b5e91e2010-06-30 13:56:17 -0700263int FramebufferNativeWindow::query(ANativeWindow* window,
Mathias Agopiancb6b9042009-07-30 18:14:56 -0700264 int what, int* value)
265{
266 FramebufferNativeWindow* self = getSelf(window);
267 Mutex::Autolock _l(self->mutex);
268 framebuffer_device_t* fb = self->fbDev;
269 switch (what) {
270 case NATIVE_WINDOW_WIDTH:
271 *value = fb->width;
272 return NO_ERROR;
273 case NATIVE_WINDOW_HEIGHT:
274 *value = fb->height;
275 return NO_ERROR;
Mathias Agopian6b1f4102009-08-06 16:04:29 -0700276 case NATIVE_WINDOW_FORMAT:
277 *value = fb->format;
278 return NO_ERROR;
Mathias Agopiancb6b9042009-07-30 18:14:56 -0700279 }
Mathias Agopian42db9dc2009-08-06 20:46:44 -0700280 *value = 0;
Mathias Agopiancb6b9042009-07-30 18:14:56 -0700281 return BAD_VALUE;
282}
283
Dianne Hackborn4b5e91e2010-06-30 13:56:17 -0700284int FramebufferNativeWindow::perform(ANativeWindow* window,
Mathias Agopian52212712009-08-11 22:34:02 -0700285 int operation, ...)
286{
287 switch (operation) {
288 case NATIVE_WINDOW_SET_USAGE:
Mathias Agopian55fa2512010-03-11 15:06:54 -0800289 case NATIVE_WINDOW_CONNECT:
290 case NATIVE_WINDOW_DISCONNECT:
Mathias Agopian52212712009-08-11 22:34:02 -0700291 break;
292 default:
293 return NAME_NOT_FOUND;
294 }
295 return NO_ERROR;
296}
297
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800298// ----------------------------------------------------------------------------
299}; // namespace android
300// ----------------------------------------------------------------------------
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700301
Mathias Agopian42db9dc2009-08-06 20:46:44 -0700302using namespace android;
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700303
304EGLNativeWindowType android_createDisplaySurface(void)
305{
Mathias Agopian42db9dc2009-08-06 20:46:44 -0700306 FramebufferNativeWindow* w;
307 w = new FramebufferNativeWindow();
308 if (w->getDevice() == NULL) {
309 // get a ref so it can be destroyed when we exit this block
310 sp<FramebufferNativeWindow> ref(w);
311 return NULL;
312 }
313 return (EGLNativeWindowType)w;
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700314}