blob: 918f2e75676ac6d2abfa306f1e83acb8d14b4e81 [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
Mathias Agopian5f2165f2012-02-24 18:25:41 -080030#include <ui/ANativeObjectBase.h>
Jamie Gennisd8e812c2012-06-13 16:32:25 -070031#include <ui/Fence.h>
Mathias Agopian0926f502009-05-04 14:17:04 -070032#include <ui/FramebufferNativeWindow.h>
Mathias Agopian5f2165f2012-02-24 18:25:41 -080033#include <ui/Rect.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080034
35#include <EGL/egl.h>
36
Mathias Agopian076b1cc2009-04-10 14:24:30 -070037#include <hardware/hardware.h>
38#include <hardware/gralloc.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080039
40// ----------------------------------------------------------------------------
41namespace android {
42// ----------------------------------------------------------------------------
43
Mathias Agopian7189c002009-05-05 18:11:11 -070044class NativeBuffer
Mathias Agopian5f2165f2012-02-24 18:25:41 -080045 : public ANativeObjectBase<
Iliyan Malchev697526b2011-05-01 11:33:26 -070046 ANativeWindowBuffer,
Mathias Agopian7189c002009-05-05 18:11:11 -070047 NativeBuffer,
48 LightRefBase<NativeBuffer> >
49{
50public:
51 NativeBuffer(int w, int h, int f, int u) : BASE() {
Iliyan Malchev697526b2011-05-01 11:33:26 -070052 ANativeWindowBuffer::width = w;
53 ANativeWindowBuffer::height = h;
54 ANativeWindowBuffer::format = f;
55 ANativeWindowBuffer::usage = u;
Mathias Agopian7189c002009-05-05 18:11:11 -070056 }
57private:
58 friend class LightRefBase<NativeBuffer>;
59 ~NativeBuffer() { }; // this class cannot be overloaded
60};
61
62
Mathias Agopian076b1cc2009-04-10 14:24:30 -070063/*
64 * This implements the (main) framebuffer management. This class is used
65 * mostly by SurfaceFlinger, but also by command line GL application.
66 *
Dianne Hackborn4b5e91e2010-06-30 13:56:17 -070067 * In fact this is an implementation of ANativeWindow on top of
Mathias Agopian076b1cc2009-04-10 14:24:30 -070068 * the framebuffer.
69 *
70 * Currently it is pretty simple, it manages only two buffers (the front and
71 * back buffer).
72 *
73 */
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080074
Mathias Agopian076b1cc2009-04-10 14:24:30 -070075FramebufferNativeWindow::FramebufferNativeWindow()
Mathias Agopian1e16b132009-05-07 17:40:23 -070076 : BASE(), fbDev(0), grDev(0), mUpdateOnDemand(false)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080077{
Mathias Agopian076b1cc2009-04-10 14:24:30 -070078 hw_module_t const* module;
79 if (hw_get_module(GRALLOC_HARDWARE_MODULE_ID, &module) == 0) {
80 int stride;
Mathias Agopian076b1cc2009-04-10 14:24:30 -070081 int err;
Rodrigo Obregon71484f22010-11-03 15:16:18 -050082 int i;
Mathias Agopian42db9dc2009-08-06 20:46:44 -070083 err = framebuffer_open(module, &fbDev);
Steve Blocke6f43dd2012-01-06 19:20:56 +000084 ALOGE_IF(err, "couldn't open framebuffer HAL (%s)", strerror(-err));
Mathias Agopian42db9dc2009-08-06 20:46:44 -070085
86 err = gralloc_open(module, &grDev);
Steve Blocke6f43dd2012-01-06 19:20:56 +000087 ALOGE_IF(err, "couldn't open gralloc HAL (%s)", strerror(-err));
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080088
Mathias Agopian42db9dc2009-08-06 20:46:44 -070089 // bail out if we can't initialize the modules
90 if (!fbDev || !grDev)
91 return;
Mathias Agopian076b1cc2009-04-10 14:24:30 -070092
Mathias Agopian1e16b132009-05-07 17:40:23 -070093 mUpdateOnDemand = (fbDev->setUpdateRect != 0);
94
Mathias Agopian076b1cc2009-04-10 14:24:30 -070095 // initialize the buffer FIFO
Naseer Ahmed0bc64be2012-06-29 12:02:32 -070096 if(fbDev->numFramebuffers >= MIN_NUM_FRAME_BUFFERS &&
97 fbDev->numFramebuffers <= MAX_NUM_FRAME_BUFFERS){
98 mNumBuffers = fbDev->numFramebuffers;
99 } else {
100 mNumBuffers = MIN_NUM_FRAME_BUFFERS;
101 }
102 mNumFreeBuffers = mNumBuffers;
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700103 mBufferHead = mNumBuffers-1;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800104
Dima Zavinc6cd27c2012-02-22 14:37:57 -0800105 /*
106 * This does not actually change the framebuffer format. It merely
107 * fakes this format to surfaceflinger so that when it creates
108 * framebuffer surfaces it will use this format. It's really a giant
109 * HACK to allow interworking with buggy gralloc+GPU driver
110 * implementations. You should *NEVER* need to set this for shipping
111 * devices.
112 */
113#ifdef FRAMEBUFFER_FORCE_FORMAT
114 *((uint32_t *)&fbDev->format) = FRAMEBUFFER_FORCE_FORMAT;
115#endif
116
Rodrigo Obregon71484f22010-11-03 15:16:18 -0500117 for (i = 0; i < mNumBuffers; i++)
118 {
119 buffers[i] = new NativeBuffer(
120 fbDev->width, fbDev->height, fbDev->format, GRALLOC_USAGE_HW_FB);
121 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800122
Rodrigo Obregon71484f22010-11-03 15:16:18 -0500123 for (i = 0; i < mNumBuffers; i++)
124 {
125 err = grDev->alloc(grDev,
126 fbDev->width, fbDev->height, fbDev->format,
127 GRALLOC_USAGE_HW_FB, &buffers[i]->handle, &buffers[i]->stride);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800128
Steve Blocke6f43dd2012-01-06 19:20:56 +0000129 ALOGE_IF(err, "fb buffer %d allocation failed w=%d, h=%d, err=%s",
Rodrigo Obregon71484f22010-11-03 15:16:18 -0500130 i, fbDev->width, fbDev->height, strerror(-err));
131
132 if (err)
133 {
134 mNumBuffers = i;
135 mNumFreeBuffers = i;
136 mBufferHead = mNumBuffers-1;
137 break;
138 }
139 }
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700140
Dianne Hackborn4b5e91e2010-06-30 13:56:17 -0700141 const_cast<uint32_t&>(ANativeWindow::flags) = fbDev->flags;
142 const_cast<float&>(ANativeWindow::xdpi) = fbDev->xdpi;
143 const_cast<float&>(ANativeWindow::ydpi) = fbDev->ydpi;
144 const_cast<int&>(ANativeWindow::minSwapInterval) =
Marco Nelissena4557932009-09-23 10:54:36 -0700145 fbDev->minSwapInterval;
Dianne Hackborn4b5e91e2010-06-30 13:56:17 -0700146 const_cast<int&>(ANativeWindow::maxSwapInterval) =
Marco Nelissena4557932009-09-23 10:54:36 -0700147 fbDev->maxSwapInterval;
148 } else {
Steve Blocke6f43dd2012-01-06 19:20:56 +0000149 ALOGE("Couldn't get gralloc module");
Marco Nelissena4557932009-09-23 10:54:36 -0700150 }
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700151
Dianne Hackborn4b5e91e2010-06-30 13:56:17 -0700152 ANativeWindow::setSwapInterval = setSwapInterval;
153 ANativeWindow::dequeueBuffer = dequeueBuffer;
Dianne Hackborn4b5e91e2010-06-30 13:56:17 -0700154 ANativeWindow::queueBuffer = queueBuffer;
155 ANativeWindow::query = query;
156 ANativeWindow::perform = perform;
Jamie Gennisd8e812c2012-06-13 16:32:25 -0700157
158 ANativeWindow::dequeueBuffer_DEPRECATED = dequeueBuffer_DEPRECATED;
159 ANativeWindow::lockBuffer_DEPRECATED = lockBuffer_DEPRECATED;
160 ANativeWindow::queueBuffer_DEPRECATED = queueBuffer_DEPRECATED;
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700161}
162
Mathias Agopian42db9dc2009-08-06 20:46:44 -0700163FramebufferNativeWindow::~FramebufferNativeWindow()
164{
165 if (grDev) {
Naseer Ahmed0bc64be2012-06-29 12:02:32 -0700166 for(int i = 0; i < mNumBuffers; i++) {
167 if (buffers[i] != NULL) {
168 grDev->free(grDev, buffers[i]->handle);
169 }
170 }
Mathias Agopian42db9dc2009-08-06 20:46:44 -0700171 gralloc_close(grDev);
172 }
173
174 if (fbDev) {
175 framebuffer_close(fbDev);
176 }
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700177}
178
Mathias Agopian1e16b132009-05-07 17:40:23 -0700179status_t FramebufferNativeWindow::setUpdateRectangle(const Rect& r)
180{
181 if (!mUpdateOnDemand) {
182 return INVALID_OPERATION;
183 }
184 return fbDev->setUpdateRect(fbDev, r.left, r.top, r.width(), r.height());
185}
186
Mathias Agopian74faca22009-09-17 16:18:16 -0700187status_t FramebufferNativeWindow::compositionComplete()
188{
189 if (fbDev->compositionComplete) {
190 return fbDev->compositionComplete(fbDev);
191 }
192 return INVALID_OPERATION;
193}
194
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700195int FramebufferNativeWindow::setSwapInterval(
Dianne Hackborn4b5e91e2010-06-30 13:56:17 -0700196 ANativeWindow* window, int interval)
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700197{
198 framebuffer_device_t* fb = getSelf(window)->fbDev;
199 return fb->setSwapInterval(fb, interval);
200}
201
Erik Gilling1d21a9c2010-12-01 16:38:01 -0800202void FramebufferNativeWindow::dump(String8& result) {
203 if (fbDev->common.version >= 1 && fbDev->dump) {
204 const size_t SIZE = 4096;
205 char buffer[SIZE];
206
207 fbDev->dump(fbDev, buffer, SIZE);
208 result.append(buffer);
209 }
210}
211
Mathias Agopian35b48d12010-09-13 22:57:58 -0700212// only for debugging / logging
213int FramebufferNativeWindow::getCurrentBufferIndex() const
214{
215 Mutex::Autolock _l(mutex);
216 const int index = mCurrentBufferIndex;
217 return index;
218}
219
Jamie Gennisd8e812c2012-06-13 16:32:25 -0700220int FramebufferNativeWindow::dequeueBuffer_DEPRECATED(ANativeWindow* window,
Iliyan Malchev697526b2011-05-01 11:33:26 -0700221 ANativeWindowBuffer** buffer)
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700222{
Jamie Gennisd8e812c2012-06-13 16:32:25 -0700223 int fenceFd = -1;
224 int result = dequeueBuffer(window, buffer, &fenceFd);
225 sp<Fence> fence(new Fence(fenceFd));
226 int waitResult = fence->wait(Fence::TIMEOUT_NEVER);
227 if (waitResult != OK) {
228 ALOGE("dequeueBuffer_DEPRECATED: Fence::wait returned an "
229 "error: %d", waitResult);
230 return waitResult;
231 }
232 return result;
233}
234
235int FramebufferNativeWindow::dequeueBuffer(ANativeWindow* window,
236 ANativeWindowBuffer** buffer, int* fenceFd)
237{
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700238 FramebufferNativeWindow* self = getSelf(window);
239 Mutex::Autolock _l(self->mutex);
240 framebuffer_device_t* fb = self->fbDev;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800241
Mathias Agopian35b48d12010-09-13 22:57:58 -0700242 int index = self->mBufferHead++;
243 if (self->mBufferHead >= self->mNumBuffers)
244 self->mBufferHead = 0;
245
Jesse Halla74cbc02012-06-21 11:35:23 -0700246 // wait for a free non-front buffer
247 while (self->mNumFreeBuffers < 2) {
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700248 self->mCondition.wait(self->mutex);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800249 }
Jesse Halla74cbc02012-06-21 11:35:23 -0700250 ALOG_ASSERT(self->buffers[index] != self->front);
251
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700252 // get this buffer
253 self->mNumFreeBuffers--;
Mathias Agopian35b48d12010-09-13 22:57:58 -0700254 self->mCurrentBufferIndex = index;
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700255
256 *buffer = self->buffers[index].get();
Jamie Gennisd8e812c2012-06-13 16:32:25 -0700257 *fenceFd = -1;
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700258
259 return 0;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800260}
261
Mark Salyzyn92dc3fc2014-03-12 13:12:44 -0700262int FramebufferNativeWindow::lockBuffer_DEPRECATED(ANativeWindow* /*window*/,
263 ANativeWindowBuffer* /*buffer*/)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800264{
Mathias Agopian0926f502009-05-04 14:17:04 -0700265 return NO_ERROR;
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700266}
267
Jamie Gennisd8e812c2012-06-13 16:32:25 -0700268int FramebufferNativeWindow::queueBuffer_DEPRECATED(ANativeWindow* window,
Iliyan Malchev697526b2011-05-01 11:33:26 -0700269 ANativeWindowBuffer* buffer)
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700270{
Jamie Gennisd8e812c2012-06-13 16:32:25 -0700271 return queueBuffer(window, buffer, -1);
272}
273
274int FramebufferNativeWindow::queueBuffer(ANativeWindow* window,
275 ANativeWindowBuffer* buffer, int fenceFd)
276{
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700277 FramebufferNativeWindow* self = getSelf(window);
278 Mutex::Autolock _l(self->mutex);
279 framebuffer_device_t* fb = self->fbDev;
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700280 buffer_handle_t handle = static_cast<NativeBuffer*>(buffer)->handle;
Mathias Agopian35b48d12010-09-13 22:57:58 -0700281
Jamie Gennisd8e812c2012-06-13 16:32:25 -0700282 sp<Fence> fence(new Fence(fenceFd));
283 fence->wait(Fence::TIMEOUT_NEVER);
284
Mathias Agopian35b48d12010-09-13 22:57:58 -0700285 const int index = self->mCurrentBufferIndex;
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700286 int res = fb->post(fb, handle);
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700287 self->front = static_cast<NativeBuffer*>(buffer);
288 self->mNumFreeBuffers++;
289 self->mCondition.broadcast();
290 return res;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800291}
292
Iliyan Malchev41abd672011-04-14 16:54:38 -0700293int FramebufferNativeWindow::query(const ANativeWindow* window,
Mathias Agopiancb6b9042009-07-30 18:14:56 -0700294 int what, int* value)
295{
Iliyan Malchev41abd672011-04-14 16:54:38 -0700296 const FramebufferNativeWindow* self = getSelf(window);
Mathias Agopiancb6b9042009-07-30 18:14:56 -0700297 Mutex::Autolock _l(self->mutex);
298 framebuffer_device_t* fb = self->fbDev;
299 switch (what) {
300 case NATIVE_WINDOW_WIDTH:
301 *value = fb->width;
302 return NO_ERROR;
303 case NATIVE_WINDOW_HEIGHT:
304 *value = fb->height;
305 return NO_ERROR;
Mathias Agopian6b1f4102009-08-06 16:04:29 -0700306 case NATIVE_WINDOW_FORMAT:
307 *value = fb->format;
308 return NO_ERROR;
Jamie Gennis391bbe22011-03-14 15:00:06 -0700309 case NATIVE_WINDOW_CONCRETE_TYPE:
310 *value = NATIVE_WINDOW_FRAMEBUFFER;
311 return NO_ERROR;
Mathias Agopian97c602c2011-07-19 15:24:46 -0700312 case NATIVE_WINDOW_QUEUES_TO_WINDOW_COMPOSER:
313 *value = 0;
314 return NO_ERROR;
315 case NATIVE_WINDOW_DEFAULT_WIDTH:
316 *value = fb->width;
317 return NO_ERROR;
318 case NATIVE_WINDOW_DEFAULT_HEIGHT:
319 *value = fb->height;
320 return NO_ERROR;
321 case NATIVE_WINDOW_TRANSFORM_HINT:
322 *value = 0;
323 return NO_ERROR;
Mathias Agopiancb6b9042009-07-30 18:14:56 -0700324 }
Mathias Agopian42db9dc2009-08-06 20:46:44 -0700325 *value = 0;
Mathias Agopiancb6b9042009-07-30 18:14:56 -0700326 return BAD_VALUE;
327}
328
Mark Salyzyn92dc3fc2014-03-12 13:12:44 -0700329int FramebufferNativeWindow::perform(ANativeWindow* /*window*/,
Mathias Agopian52212712009-08-11 22:34:02 -0700330 int operation, ...)
331{
332 switch (operation) {
Mathias Agopian55fa2512010-03-11 15:06:54 -0800333 case NATIVE_WINDOW_CONNECT:
334 case NATIVE_WINDOW_DISCONNECT:
Mathias Agopianbb66c9b2011-07-21 14:50:29 -0700335 case NATIVE_WINDOW_SET_USAGE:
Mathias Agopian7734ebf2011-07-13 15:24:42 -0700336 case NATIVE_WINDOW_SET_BUFFERS_GEOMETRY:
Mathias Agopian7734ebf2011-07-13 15:24:42 -0700337 case NATIVE_WINDOW_SET_BUFFERS_DIMENSIONS:
Mathias Agopian7734ebf2011-07-13 15:24:42 -0700338 case NATIVE_WINDOW_SET_BUFFERS_FORMAT:
Mathias Agopianbb66c9b2011-07-21 14:50:29 -0700339 case NATIVE_WINDOW_SET_BUFFERS_TRANSFORM:
Mathias Agopian81a63352011-07-29 17:55:48 -0700340 case NATIVE_WINDOW_API_CONNECT:
341 case NATIVE_WINDOW_API_DISCONNECT:
Mathias Agopianbb66c9b2011-07-21 14:50:29 -0700342 // TODO: we should implement these
Mathias Agopian7734ebf2011-07-13 15:24:42 -0700343 return NO_ERROR;
Mathias Agopianbb66c9b2011-07-21 14:50:29 -0700344
345 case NATIVE_WINDOW_LOCK:
346 case NATIVE_WINDOW_UNLOCK_AND_POST:
347 case NATIVE_WINDOW_SET_CROP:
348 case NATIVE_WINDOW_SET_BUFFER_COUNT:
349 case NATIVE_WINDOW_SET_BUFFERS_TIMESTAMP:
Mathias Agopian7734ebf2011-07-13 15:24:42 -0700350 case NATIVE_WINDOW_SET_SCALING_MODE:
351 return INVALID_OPERATION;
Mathias Agopian52212712009-08-11 22:34:02 -0700352 }
Mathias Agopian7734ebf2011-07-13 15:24:42 -0700353 return NAME_NOT_FOUND;
Mathias Agopian52212712009-08-11 22:34:02 -0700354}
355
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800356// ----------------------------------------------------------------------------
357}; // namespace android
358// ----------------------------------------------------------------------------
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700359
Mathias Agopian42db9dc2009-08-06 20:46:44 -0700360using namespace android;
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700361
362EGLNativeWindowType android_createDisplaySurface(void)
363{
Mathias Agopian42db9dc2009-08-06 20:46:44 -0700364 FramebufferNativeWindow* w;
365 w = new FramebufferNativeWindow();
366 if (w->getDevice() == NULL) {
367 // get a ref so it can be destroyed when we exit this block
368 sp<FramebufferNativeWindow> ref(w);
369 return NULL;
370 }
371 return (EGLNativeWindowType)w;
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700372}