blob: 302ce8255a036e7e469ae91678241e70fca9b2cc [file] [log] [blame]
Mathias Agopiana350ff92010-08-10 17:14:02 -07001/*
2 * Copyright (C) 2010 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
Mathias Agopian2965b262012-04-08 15:13:32 -070017#define ATRACE_TAG ATRACE_TAG_GRAPHICS
18
Jesse Hall5880cc52012-06-05 23:40:32 -070019// Uncomment this to remove support for HWC_DEVICE_API_VERSION_0_3 and older
Mathias Agopian30bcc612012-08-22 15:39:48 -070020#define HWC_REMOVE_DEPRECATED_VERSIONS 1
Jesse Hall5880cc52012-06-05 23:40:32 -070021
Mathias Agopiana350ff92010-08-10 17:14:02 -070022#include <stdint.h>
Mathias Agopianf1352df2010-08-11 17:31:33 -070023#include <stdio.h>
24#include <stdlib.h>
25#include <string.h>
Mathias Agopiana350ff92010-08-10 17:14:02 -070026#include <sys/types.h>
27
28#include <utils/Errors.h>
Mathias Agopianda27af92012-09-13 18:17:13 -070029#include <utils/misc.h>
Mathias Agopian83727852010-09-23 18:13:21 -070030#include <utils/String8.h>
Mathias Agopian3eb38cb2012-04-03 22:09:52 -070031#include <utils/Thread.h>
Mathias Agopian2965b262012-04-08 15:13:32 -070032#include <utils/Trace.h>
Mathias Agopian22da60c2011-09-09 00:49:11 -070033#include <utils/Vector.h>
Mathias Agopiana350ff92010-08-10 17:14:02 -070034
Mathias Agopian921e6ac2012-07-23 23:11:29 -070035#include <ui/GraphicBuffer.h>
36
Mathias Agopiana350ff92010-08-10 17:14:02 -070037#include <hardware/hardware.h>
Mathias Agopian3eb38cb2012-04-03 22:09:52 -070038#include <hardware/hwcomposer.h>
Mathias Agopiana350ff92010-08-10 17:14:02 -070039
40#include <cutils/log.h>
Mathias Agopiane2c4f4e2012-04-10 18:25:31 -070041#include <cutils/properties.h>
Mathias Agopiana350ff92010-08-10 17:14:02 -070042
Mathias Agopian921e6ac2012-07-23 23:11:29 -070043#include "Layer.h" // needed only for debugging
Mathias Agopian22da60c2011-09-09 00:49:11 -070044#include "LayerBase.h"
Mathias Agopiana350ff92010-08-10 17:14:02 -070045#include "HWComposer.h"
Mathias Agopianc7d14e22011-08-01 16:32:21 -070046#include "SurfaceFlinger.h"
Mathias Agopianda27af92012-09-13 18:17:13 -070047#include <utils/CallStack.h>
Mathias Agopiana350ff92010-08-10 17:14:02 -070048
49namespace android {
Jesse Hall5880cc52012-06-05 23:40:32 -070050
Jesse Hall9eb1eb52012-08-29 10:39:38 -070051#define MIN_HWC_HEADER_VERSION 0
52
53static uint32_t hwcApiVersion(const hwc_composer_device_1_t* hwc) {
54 uint32_t hwcVersion = hwc->common.version;
55 if (MIN_HWC_HEADER_VERSION == 0 &&
56 (hwcVersion & HARDWARE_API_VERSION_2_MAJ_MIN_MASK) == 0) {
57 // legacy version encoding
58 hwcVersion <<= 16;
59 }
60 return hwcVersion & HARDWARE_API_VERSION_2_MAJ_MIN_MASK;
61}
62
63static uint32_t hwcHeaderVersion(const hwc_composer_device_1_t* hwc) {
64 uint32_t hwcVersion = hwc->common.version;
65 if (MIN_HWC_HEADER_VERSION == 0 &&
66 (hwcVersion & HARDWARE_API_VERSION_2_MAJ_MIN_MASK) == 0) {
67 // legacy version encoding
68 hwcVersion <<= 16;
69 }
70 return hwcVersion & HARDWARE_API_VERSION_2_HEADER_MASK;
71}
72
73static bool hwcHasApiVersion(const hwc_composer_device_1_t* hwc,
74 uint32_t version) {
75 return hwcApiVersion(hwc) >= (version & HARDWARE_API_VERSION_2_MAJ_MIN_MASK);
Jesse Hallbbd164a2012-08-21 12:05:09 -070076}
77
Mathias Agopiana350ff92010-08-10 17:14:02 -070078// ---------------------------------------------------------------------------
79
Mathias Agopian3e8b8532012-05-13 20:42:01 -070080struct HWComposer::cb_context {
81 struct callbacks : public hwc_procs_t {
82 // these are here to facilitate the transition when adding
83 // new callbacks (an implementation can check for NULL before
84 // calling a new callback).
85 void (*zero[4])(void);
86 };
87 callbacks procs;
88 HWComposer* hwc;
89};
90
91// ---------------------------------------------------------------------------
92
Mathias Agopian3eb38cb2012-04-03 22:09:52 -070093HWComposer::HWComposer(
94 const sp<SurfaceFlinger>& flinger,
Andy McFaddenb0d1dd32012-09-10 14:08:09 -070095 EventHandler& handler)
Mathias Agopianc7d14e22011-08-01 16:32:21 -070096 : mFlinger(flinger),
Andy McFaddenb0d1dd32012-09-10 14:08:09 -070097 mFbDev(0), mHwc(0), mNumDisplays(1),
Mathias Agopian3e8b8532012-05-13 20:42:01 -070098 mCBContext(new cb_context),
Mathias Agopiane60b0682012-08-21 23:34:09 -070099 mEventHandler(handler),
Mathias Agopiane2c4f4e2012-04-10 18:25:31 -0700100 mVSyncCount(0), mDebugForceFakeVSync(false)
Mathias Agopiana350ff92010-08-10 17:14:02 -0700101{
Mathias Agopiane60b0682012-08-21 23:34:09 -0700102 for (size_t i =0 ; i<MAX_DISPLAYS ; i++) {
103 mLists[i] = 0;
104 }
Jesse Hallb685c542012-07-31 14:32:56 -0700105
Mathias Agopiane2c4f4e2012-04-10 18:25:31 -0700106 char value[PROPERTY_VALUE_MAX];
107 property_get("debug.sf.no_hw_vsync", value, "0");
108 mDebugForceFakeVSync = atoi(value);
109
Mathias Agopian028508c2012-07-25 21:12:12 -0700110 bool needVSyncThread = true;
Andy McFaddenb0d1dd32012-09-10 14:08:09 -0700111
112 // Note: some devices may insist that the FB HAL be opened before HWC.
113 loadFbHalModule();
114 loadHwcModule();
115
Mathias Agopianda27af92012-09-13 18:17:13 -0700116 if (mFbDev && mHwc && hwcHasApiVersion(mHwc, HWC_DEVICE_API_VERSION_1_1)) {
117 // close FB HAL if we don't needed it.
118 // FIXME: this is temporary until we're not forced to open FB HAL
119 // before HWC.
120 framebuffer_close(mFbDev);
121 mFbDev = NULL;
122 }
123
Andy McFaddenbabba182012-09-12 13:14:51 -0700124 // If we have no HWC, or a pre-1.1 HWC, an FB dev is mandatory.
125 if ((!mHwc || !hwcHasApiVersion(mHwc, HWC_DEVICE_API_VERSION_1_1))
126 && !mFbDev) {
Andy McFadden43601a22012-09-11 15:15:13 -0700127 ALOGE("ERROR: failed to open framebuffer, aborting");
Andy McFadden43601a22012-09-11 15:15:13 -0700128 abort();
129 }
130
Andy McFaddenb0d1dd32012-09-10 14:08:09 -0700131 if (mHwc) {
132 ALOGI("Using %s version %u.%u", HWC_HARDWARE_COMPOSER,
133 (hwcApiVersion(mHwc) >> 24) & 0xff,
134 (hwcApiVersion(mHwc) >> 16) & 0xff);
135 if (mHwc->registerProcs) {
136 mCBContext->hwc = this;
137 mCBContext->procs.invalidate = &hook_invalidate;
138 mCBContext->procs.vsync = &hook_vsync;
139 if (hwcHasApiVersion(mHwc, HWC_DEVICE_API_VERSION_1_1))
140 mCBContext->procs.hotplug = &hook_hotplug;
141 else
142 mCBContext->procs.hotplug = NULL;
143 memset(mCBContext->procs.zero, 0, sizeof(mCBContext->procs.zero));
144 mHwc->registerProcs(mHwc, &mCBContext->procs);
Jesse Hall5880cc52012-06-05 23:40:32 -0700145 }
146
Andy McFaddenb0d1dd32012-09-10 14:08:09 -0700147 // don't need a vsync thread if we have a hardware composer
148 needVSyncThread = false;
149 // always turn vsync off when we start
150 mHwc->eventControl(mHwc, HWC_DISPLAY_PRIMARY, HWC_EVENT_VSYNC, 0);
Jesse Hallbbd164a2012-08-21 12:05:09 -0700151
Andy McFaddenb0d1dd32012-09-10 14:08:09 -0700152 // these IDs are always reserved
153 for (size_t i=0 ; i<HWC_NUM_DISPLAY_TYPES ; i++) {
154 mAllocatedDisplayIDs.markBit(i);
155 }
Jesse Hallb685c542012-07-31 14:32:56 -0700156
Andy McFaddenb0d1dd32012-09-10 14:08:09 -0700157 // the number of displays we actually have depends on the
158 // hw composer version
159 if (hwcHasApiVersion(mHwc, HWC_DEVICE_API_VERSION_1_2)) {
160 // 1.2 adds support for virtual displays
161 mNumDisplays = MAX_DISPLAYS;
162 } else if (hwcHasApiVersion(mHwc, HWC_DEVICE_API_VERSION_1_1)) {
163 // 1.1 adds support for multiple displays
164 mNumDisplays = HWC_NUM_DISPLAY_TYPES;
165 } else {
166 mNumDisplays = 1;
Mathias Agopianc7d14e22011-08-01 16:32:21 -0700167 }
Mathias Agopian3a778712012-04-09 14:16:47 -0700168 }
169
Andy McFaddenb0d1dd32012-09-10 14:08:09 -0700170 if (mFbDev) {
Jesse Hall1bd20e02012-08-29 10:47:52 -0700171 ALOG_ASSERT(!(mHwc && hwcHasApiVersion(mHwc, HWC_DEVICE_API_VERSION_1_1)),
172 "should only have fbdev if no hwc or hwc is 1.0");
173
Mathias Agopianf4358632012-08-22 17:16:19 -0700174 DisplayData& disp(mDisplayData[HWC_DISPLAY_PRIMARY]);
Mathias Agopian38e623b2012-09-20 19:27:07 -0700175 disp.connected = true;
Jesse Halldb276212012-09-07 11:20:56 -0700176 disp.width = mFbDev->width;
177 disp.height = mFbDev->height;
Andy McFaddenb0d1dd32012-09-10 14:08:09 -0700178 disp.format = mFbDev->format;
179 disp.xdpi = mFbDev->xdpi;
180 disp.ydpi = mFbDev->ydpi;
Mathias Agopianf4358632012-08-22 17:16:19 -0700181 if (disp.refresh == 0) {
Andy McFaddenb0d1dd32012-09-10 14:08:09 -0700182 disp.refresh = nsecs_t(1e9 / mFbDev->fps);
Mathias Agopianf4358632012-08-22 17:16:19 -0700183 ALOGW("getting VSYNC period from fb HAL: %lld", disp.refresh);
Mathias Agopian888c8222012-08-04 21:10:38 -0700184 }
Mathias Agopianf4358632012-08-22 17:16:19 -0700185 if (disp.refresh == 0) {
186 disp.refresh = nsecs_t(1e9 / 60.0);
Jesse Hall1bd20e02012-08-29 10:47:52 -0700187 ALOGW("getting VSYNC period from thin air: %lld",
188 mDisplayData[HWC_DISPLAY_PRIMARY].refresh);
Mathias Agopianf4358632012-08-22 17:16:19 -0700189 }
Jesse Hall1bd20e02012-08-29 10:47:52 -0700190 } else if (mHwc) {
Mathias Agopian1604f772012-09-18 21:54:42 -0700191 // here we're guaranteed to have at least HWC 1.1
192 for (size_t i =0 ; i<HWC_NUM_DISPLAY_TYPES ; i++) {
193 queryDisplayProperties(i);
194 }
Mathias Agopian888c8222012-08-04 21:10:38 -0700195 }
196
Mathias Agopian3a778712012-04-09 14:16:47 -0700197 if (needVSyncThread) {
198 // we don't have VSYNC support, we need to fake it
199 mVSyncThread = new VSyncThread(*this);
Mathias Agopiana350ff92010-08-10 17:14:02 -0700200 }
201}
202
203HWComposer::~HWComposer() {
Andy McFaddenbabba182012-09-12 13:14:51 -0700204 if (mHwc) {
Andy McFaddenae2cfb52012-09-12 16:59:59 -0700205 mHwc->eventControl(mHwc, HWC_DISPLAY_PRIMARY, HWC_EVENT_VSYNC, 0);
Andy McFaddenbabba182012-09-12 13:14:51 -0700206 }
Mathias Agopian3eb38cb2012-04-03 22:09:52 -0700207 if (mVSyncThread != NULL) {
208 mVSyncThread->requestExitAndWait();
209 }
Mathias Agopiana350ff92010-08-10 17:14:02 -0700210 if (mHwc) {
Jesse Hall5880cc52012-06-05 23:40:32 -0700211 hwc_close_1(mHwc);
Mathias Agopiana350ff92010-08-10 17:14:02 -0700212 }
Andy McFaddenb0d1dd32012-09-10 14:08:09 -0700213 if (mFbDev) {
214 framebuffer_close(mFbDev);
215 }
Mathias Agopian3e8b8532012-05-13 20:42:01 -0700216 delete mCBContext;
Mathias Agopiana350ff92010-08-10 17:14:02 -0700217}
218
Andy McFaddenb0d1dd32012-09-10 14:08:09 -0700219// Load and prepare the hardware composer module. Sets mHwc.
220void HWComposer::loadHwcModule()
221{
222 hw_module_t const* module;
223
224 if (hw_get_module(HWC_HARDWARE_MODULE_ID, &module) != 0) {
225 ALOGE("%s module not found", HWC_HARDWARE_MODULE_ID);
226 return;
227 }
228
229 int err = hwc_open_1(module, &mHwc);
230 if (err) {
231 ALOGE("%s device failed to initialize (%s)",
232 HWC_HARDWARE_COMPOSER, strerror(-err));
233 return;
234 }
235
236 if (!hwcHasApiVersion(mHwc, HWC_DEVICE_API_VERSION_1_0) ||
237 hwcHeaderVersion(mHwc) < MIN_HWC_HEADER_VERSION ||
238 hwcHeaderVersion(mHwc) > HWC_HEADER_VERSION) {
239 ALOGE("%s device version %#x unsupported, will not be used",
240 HWC_HARDWARE_COMPOSER, mHwc->common.version);
241 hwc_close_1(mHwc);
242 mHwc = NULL;
243 return;
244 }
245}
246
247// Load and prepare the FB HAL, which uses the gralloc module. Sets mFbDev.
248void HWComposer::loadFbHalModule()
249{
250 hw_module_t const* module;
251
252 if (hw_get_module(GRALLOC_HARDWARE_MODULE_ID, &module) != 0) {
253 ALOGE("%s module not found", GRALLOC_HARDWARE_MODULE_ID);
254 return;
255 }
256
257 int err = framebuffer_open(module, &mFbDev);
258 if (err) {
259 ALOGE("framebuffer_open failed (%s)", strerror(-err));
260 return;
261 }
262}
263
Mathias Agopiana350ff92010-08-10 17:14:02 -0700264status_t HWComposer::initCheck() const {
265 return mHwc ? NO_ERROR : NO_INIT;
266}
267
Jesse Hallbbd164a2012-08-21 12:05:09 -0700268void HWComposer::hook_invalidate(const struct hwc_procs* procs) {
269 cb_context* ctx = reinterpret_cast<cb_context*>(
270 const_cast<hwc_procs_t*>(procs));
271 ctx->hwc->invalidate();
Mathias Agopianc7d14e22011-08-01 16:32:21 -0700272}
273
Jesse Hall1bd20e02012-08-29 10:47:52 -0700274void HWComposer::hook_vsync(const struct hwc_procs* procs, int disp,
Jesse Hallbbd164a2012-08-21 12:05:09 -0700275 int64_t timestamp) {
276 cb_context* ctx = reinterpret_cast<cb_context*>(
277 const_cast<hwc_procs_t*>(procs));
Jesse Hall1bd20e02012-08-29 10:47:52 -0700278 ctx->hwc->vsync(disp, timestamp);
279}
280
281void HWComposer::hook_hotplug(const struct hwc_procs* procs, int disp,
282 int connected) {
283 cb_context* ctx = reinterpret_cast<cb_context*>(
284 const_cast<hwc_procs_t*>(procs));
285 ctx->hwc->hotplug(disp, connected);
Mathias Agopian31d28432012-04-03 16:31:39 -0700286}
287
Mathias Agopianc7d14e22011-08-01 16:32:21 -0700288void HWComposer::invalidate() {
Mathias Agopiane2c2f922011-10-05 15:00:22 -0700289 mFlinger->repaintEverything();
Mathias Agopianc7d14e22011-08-01 16:32:21 -0700290}
291
Jesse Hall1bd20e02012-08-29 10:47:52 -0700292void HWComposer::vsync(int disp, int64_t timestamp) {
Mathias Agopian2965b262012-04-08 15:13:32 -0700293 ATRACE_INT("VSYNC", ++mVSyncCount&1);
Jesse Hall1bd20e02012-08-29 10:47:52 -0700294 mEventHandler.onVSyncReceived(disp, timestamp);
Mathias Agopiand3ee2312012-08-02 14:01:42 -0700295 Mutex::Autolock _l(mLock);
296 mLastHwVSync = timestamp;
297}
298
Jesse Hall1bd20e02012-08-29 10:47:52 -0700299void HWComposer::hotplug(int disp, int connected) {
300 if (disp == HWC_DISPLAY_PRIMARY || disp >= HWC_NUM_DISPLAY_TYPES) {
301 ALOGE("hotplug event received for invalid display: disp=%d connected=%d",
302 disp, connected);
303 return;
304 }
Mathias Agopianf5a33922012-09-19 18:16:22 -0700305 queryDisplayProperties(disp);
Mathias Agopian148994e2012-09-19 17:31:36 -0700306 mEventHandler.onHotplugReceived(disp, bool(connected));
Jesse Hall1bd20e02012-08-29 10:47:52 -0700307}
308
309static const uint32_t DISPLAY_ATTRIBUTES[] = {
310 HWC_DISPLAY_VSYNC_PERIOD,
Jesse Halldb276212012-09-07 11:20:56 -0700311 HWC_DISPLAY_WIDTH,
312 HWC_DISPLAY_HEIGHT,
Jesse Hall1bd20e02012-08-29 10:47:52 -0700313 HWC_DISPLAY_DPI_X,
314 HWC_DISPLAY_DPI_Y,
315 HWC_DISPLAY_NO_ATTRIBUTE,
316};
317#define NUM_DISPLAY_ATTRIBUTES (sizeof(DISPLAY_ATTRIBUTES) / sizeof(DISPLAY_ATTRIBUTES)[0])
318
319// http://developer.android.com/reference/android/util/DisplayMetrics.html
320#define ANDROID_DENSITY_TV 213
321#define ANDROID_DENSITY_XHIGH 320
322
Mathias Agopian1604f772012-09-18 21:54:42 -0700323status_t HWComposer::queryDisplayProperties(int disp) {
324
Mathias Agopianda27af92012-09-13 18:17:13 -0700325 LOG_ALWAYS_FATAL_IF(!mHwc || !hwcHasApiVersion(mHwc, HWC_DEVICE_API_VERSION_1_1));
Jesse Hall1bd20e02012-08-29 10:47:52 -0700326
Andy McFaddenb0d1dd32012-09-10 14:08:09 -0700327 // use zero as default value for unspecified attributes
Jesse Hall1bd20e02012-08-29 10:47:52 -0700328 int32_t values[NUM_DISPLAY_ATTRIBUTES - 1];
329 memset(values, 0, sizeof(values));
330
331 uint32_t config;
332 size_t numConfigs = 1;
333 status_t err = mHwc->getDisplayConfigs(mHwc, disp, &config, &numConfigs);
Mathias Agopian1604f772012-09-18 21:54:42 -0700334 if (err != NO_ERROR) {
335 // this can happen if an unpluggable display is not connected
Mathias Agopianf5a33922012-09-19 18:16:22 -0700336 mDisplayData[disp].connected = false;
Mathias Agopian1604f772012-09-18 21:54:42 -0700337 return err;
Jesse Hall1bd20e02012-08-29 10:47:52 -0700338 }
339
Mathias Agopian9e2463e2012-09-21 18:26:16 -0700340 err = mHwc->getDisplayAttributes(mHwc, disp, config, DISPLAY_ATTRIBUTES, values);
341 if (err != NO_ERROR) {
342 // we can't get this display's info. turn it off.
343 mDisplayData[disp].connected = false;
344 return err;
345 }
Mathias Agopian1604f772012-09-18 21:54:42 -0700346
Jesse Hall1bd20e02012-08-29 10:47:52 -0700347 int32_t w = 0, h = 0;
348 for (size_t i = 0; i < NUM_DISPLAY_ATTRIBUTES - 1; i++) {
349 switch (DISPLAY_ATTRIBUTES[i]) {
350 case HWC_DISPLAY_VSYNC_PERIOD:
351 mDisplayData[disp].refresh = nsecs_t(values[i]);
352 break;
Jesse Halldb276212012-09-07 11:20:56 -0700353 case HWC_DISPLAY_WIDTH:
354 mDisplayData[disp].width = values[i];
Jesse Hall1bd20e02012-08-29 10:47:52 -0700355 break;
Jesse Halldb276212012-09-07 11:20:56 -0700356 case HWC_DISPLAY_HEIGHT:
357 mDisplayData[disp].height = values[i];
Jesse Hall1bd20e02012-08-29 10:47:52 -0700358 break;
359 case HWC_DISPLAY_DPI_X:
360 mDisplayData[disp].xdpi = values[i] / 1000.0f;
361 break;
362 case HWC_DISPLAY_DPI_Y:
363 mDisplayData[disp].ydpi = values[i] / 1000.0f;
364 break;
365 default:
Mathias Agopianda27af92012-09-13 18:17:13 -0700366 ALOG_ASSERT(false, "unknown display attribute[%d] %#x",
367 i, DISPLAY_ATTRIBUTES[i]);
Jesse Hall1bd20e02012-08-29 10:47:52 -0700368 break;
369 }
370 }
371
Mathias Agopianf5a33922012-09-19 18:16:22 -0700372 // FIXME: what should we set the format to?
373 mDisplayData[disp].format = HAL_PIXEL_FORMAT_RGBA_8888;
374 mDisplayData[disp].connected = true;
Jesse Hall1bd20e02012-08-29 10:47:52 -0700375 if (mDisplayData[disp].xdpi == 0.0f || mDisplayData[disp].ydpi == 0.0f) {
376 // is there anything smarter we can do?
377 if (h >= 1080) {
378 mDisplayData[disp].xdpi = ANDROID_DENSITY_XHIGH;
379 mDisplayData[disp].ydpi = ANDROID_DENSITY_XHIGH;
380 } else {
381 mDisplayData[disp].xdpi = ANDROID_DENSITY_TV;
382 mDisplayData[disp].ydpi = ANDROID_DENSITY_TV;
383 }
384 }
Mathias Agopian1604f772012-09-18 21:54:42 -0700385 return NO_ERROR;
Jesse Hall1bd20e02012-08-29 10:47:52 -0700386}
387
Mathias Agopiane60b0682012-08-21 23:34:09 -0700388int32_t HWComposer::allocateDisplayId() {
Mathias Agopianf4358632012-08-22 17:16:19 -0700389 if (mAllocatedDisplayIDs.count() >= mNumDisplays) {
Mathias Agopiane60b0682012-08-21 23:34:09 -0700390 return NO_MEMORY;
391 }
Mathias Agopianf4358632012-08-22 17:16:19 -0700392 int32_t id = mAllocatedDisplayIDs.firstUnmarkedBit();
393 mAllocatedDisplayIDs.markBit(id);
Mathias Agopiane60b0682012-08-21 23:34:09 -0700394 return id;
395}
396
397status_t HWComposer::freeDisplayId(int32_t id) {
Mathias Agopianf4358632012-08-22 17:16:19 -0700398 if (id < HWC_NUM_DISPLAY_TYPES) {
399 // cannot free the reserved IDs
Mathias Agopiane60b0682012-08-21 23:34:09 -0700400 return BAD_VALUE;
401 }
Mathias Agopianf4358632012-08-22 17:16:19 -0700402 if (uint32_t(id)>31 || !mAllocatedDisplayIDs.hasBit(id)) {
Mathias Agopiane60b0682012-08-21 23:34:09 -0700403 return BAD_INDEX;
404 }
Mathias Agopianf4358632012-08-22 17:16:19 -0700405 mAllocatedDisplayIDs.clearBit(id);
Mathias Agopiane60b0682012-08-21 23:34:09 -0700406 return NO_ERROR;
407}
408
Andy McFaddenb0d1dd32012-09-10 14:08:09 -0700409nsecs_t HWComposer::getRefreshPeriod(int disp) const {
410 return mDisplayData[disp].refresh;
Mathias Agopian888c8222012-08-04 21:10:38 -0700411}
412
Andy McFaddenb0d1dd32012-09-10 14:08:09 -0700413nsecs_t HWComposer::getRefreshTimestamp(int disp) const {
Mathias Agopiand3ee2312012-08-02 14:01:42 -0700414 // this returns the last refresh timestamp.
415 // if the last one is not available, we estimate it based on
416 // the refresh period and whatever closest timestamp we have.
417 Mutex::Autolock _l(mLock);
418 nsecs_t now = systemTime(CLOCK_MONOTONIC);
Andy McFaddenb0d1dd32012-09-10 14:08:09 -0700419 return now - ((now - mLastHwVSync) % mDisplayData[disp].refresh);
Mathias Agopian3eb38cb2012-04-03 22:09:52 -0700420}
421
Jesse Halldb276212012-09-07 11:20:56 -0700422uint32_t HWComposer::getWidth(int disp) const {
423 return mDisplayData[disp].width;
Mathias Agopian8b736f12012-08-13 17:54:26 -0700424}
425
Jesse Halldb276212012-09-07 11:20:56 -0700426uint32_t HWComposer::getHeight(int disp) const {
427 return mDisplayData[disp].height;
Andy McFaddenb0d1dd32012-09-10 14:08:09 -0700428}
429
430uint32_t HWComposer::getFormat(int disp) const {
431 return mDisplayData[disp].format;
432}
433
434float HWComposer::getDpiX(int disp) const {
435 return mDisplayData[disp].xdpi;
436}
437
438float HWComposer::getDpiY(int disp) const {
439 return mDisplayData[disp].ydpi;
Mathias Agopian8b736f12012-08-13 17:54:26 -0700440}
441
Mathias Agopianf5a33922012-09-19 18:16:22 -0700442bool HWComposer::isConnected(int disp) const {
443 return mDisplayData[disp].connected;
444}
445
Mathias Agopian03e40722012-04-26 16:11:59 -0700446void HWComposer::eventControl(int event, int enabled) {
Mathias Agopian3eb38cb2012-04-03 22:09:52 -0700447 status_t err = NO_ERROR;
Mathias Agopian30bcc612012-08-22 15:39:48 -0700448 if (mHwc) {
Mathias Agopiane2c4f4e2012-04-10 18:25:31 -0700449 if (!mDebugForceFakeVSync) {
Mathias Agopian30bcc612012-08-22 15:39:48 -0700450 err = mHwc->eventControl(mHwc, 0, event, enabled);
Mathias Agopian03e40722012-04-26 16:11:59 -0700451 // error here should not happen -- not sure what we should
452 // do if it does.
453 ALOGE_IF(err, "eventControl(%d, %d) failed %s",
454 event, enabled, strerror(-err));
Mathias Agopiane2c4f4e2012-04-10 18:25:31 -0700455 }
Mathias Agopian3eb38cb2012-04-03 22:09:52 -0700456 }
Mathias Agopian3a778712012-04-09 14:16:47 -0700457
458 if (err == NO_ERROR && mVSyncThread != NULL) {
459 mVSyncThread->setEnabled(enabled);
460 }
Mathias Agopian31d28432012-04-03 16:31:39 -0700461}
462
Mathias Agopian5f20e2d2012-08-10 18:50:38 -0700463status_t HWComposer::createWorkList(int32_t id, size_t numLayers) {
Mathias Agopianf4358632012-08-22 17:16:19 -0700464 if (uint32_t(id)>31 || !mAllocatedDisplayIDs.hasBit(id)) {
Mathias Agopian1e260872012-08-08 18:35:12 -0700465 return BAD_INDEX;
Mathias Agopiane60b0682012-08-21 23:34:09 -0700466 }
Mathias Agopian1e260872012-08-08 18:35:12 -0700467
Mathias Agopian45721772010-08-12 15:03:26 -0700468 if (mHwc) {
Mathias Agopianf4358632012-08-22 17:16:19 -0700469 DisplayData& disp(mDisplayData[id]);
Mathias Agopianda27af92012-09-13 18:17:13 -0700470 if (hwcHasApiVersion(mHwc, HWC_DEVICE_API_VERSION_1_1)) {
471 // we need space for the HWC_FRAMEBUFFER_TARGET
472 numLayers++;
473 }
Andy McFadden13a082e2012-08-24 10:16:42 -0700474 if (disp.capacity < numLayers || disp.list == NULL) {
Mathias Agopianda27af92012-09-13 18:17:13 -0700475 size_t size = sizeof(hwc_display_contents_1_t)
Mathias Agopianf4358632012-08-22 17:16:19 -0700476 + numLayers * sizeof(hwc_layer_1_t);
477 free(disp.list);
478 disp.list = (hwc_display_contents_1_t*)malloc(size);
479 disp.capacity = numLayers;
Mathias Agopian45721772010-08-12 15:03:26 -0700480 }
Mathias Agopianda27af92012-09-13 18:17:13 -0700481 if (hwcHasApiVersion(mHwc, HWC_DEVICE_API_VERSION_1_1)) {
482 disp.framebufferTarget = &disp.list->hwLayers[numLayers - 1];
483 memset(disp.framebufferTarget, 0, sizeof(hwc_layer_1_t));
484 const hwc_rect_t r = { 0, 0, disp.width, disp.height };
485 disp.framebufferTarget->compositionType = HWC_FRAMEBUFFER_TARGET;
486 disp.framebufferTarget->hints = 0;
487 disp.framebufferTarget->flags = 0;
488 disp.framebufferTarget->handle = disp.fbTargetHandle;
489 disp.framebufferTarget->transform = 0;
490 disp.framebufferTarget->blending = HWC_BLENDING_PREMULT;
491 disp.framebufferTarget->sourceCrop = r;
492 disp.framebufferTarget->displayFrame = r;
493 disp.framebufferTarget->visibleRegionScreen.numRects = 1;
494 disp.framebufferTarget->visibleRegionScreen.rects =
495 &disp.framebufferTarget->displayFrame;
496 disp.framebufferTarget->acquireFenceFd = -1;
497 disp.framebufferTarget->releaseFenceFd = -1;
498 }
Jesse Halldb276212012-09-07 11:20:56 -0700499 disp.list->retireFenceFd = -1;
Mathias Agopianf4358632012-08-22 17:16:19 -0700500 disp.list->flags = HWC_GEOMETRY_CHANGED;
501 disp.list->numHwLayers = numLayers;
Mathias Agopiana350ff92010-08-10 17:14:02 -0700502 }
503 return NO_ERROR;
504}
505
Mathias Agopianda27af92012-09-13 18:17:13 -0700506status_t HWComposer::setFramebufferTarget(int32_t id,
507 const sp<Fence>& acquireFence, const sp<GraphicBuffer>& buf) {
508 if (uint32_t(id)>31 || !mAllocatedDisplayIDs.hasBit(id)) {
509 return BAD_INDEX;
510 }
511 DisplayData& disp(mDisplayData[id]);
512 if (!disp.framebufferTarget) {
513 // this should never happen, but apparently eglCreateWindowSurface()
514 // triggers a SurfaceTextureClient::queueBuffer() on some
515 // devices (!?) -- log and ignore.
516 ALOGE("HWComposer: framebufferTarget is null");
Mathias Agopianf5a33922012-09-19 18:16:22 -0700517// CallStack stack;
518// stack.update();
519// stack.dump("");
Mathias Agopianda27af92012-09-13 18:17:13 -0700520 return NO_ERROR;
521 }
522
523 int acquireFenceFd = -1;
524 if (acquireFence != NULL) {
525 acquireFenceFd = acquireFence->dup();
526 }
527
528 // ALOGD("fbPost: handle=%p, fence=%d", buf->handle, acquireFenceFd);
529 disp.fbTargetHandle = buf->handle;
530 disp.framebufferTarget->handle = disp.fbTargetHandle;
531 disp.framebufferTarget->acquireFenceFd = acquireFenceFd;
532 return NO_ERROR;
533}
534
Mathias Agopiane60b0682012-08-21 23:34:09 -0700535status_t HWComposer::prepare() {
Mathias Agopianf4358632012-08-22 17:16:19 -0700536 for (size_t i=0 ; i<mNumDisplays ; i++) {
Mathias Agopianda27af92012-09-13 18:17:13 -0700537 DisplayData& disp(mDisplayData[i]);
538 if (disp.framebufferTarget) {
539 // make sure to reset the type to HWC_FRAMEBUFFER_TARGET
540 // DO NOT reset the handle field to NULL, because it's possible
541 // that we have nothing to redraw (eg: eglSwapBuffers() not called)
542 // in which case, we should continue to use the same buffer.
Andy McFadden27ec5732012-10-02 19:04:45 -0700543 LOG_FATAL_IF(disp.list == NULL);
Mathias Agopianda27af92012-09-13 18:17:13 -0700544 disp.framebufferTarget->compositionType = HWC_FRAMEBUFFER_TARGET;
545 }
Andy McFadden27ec5732012-10-02 19:04:45 -0700546 if (!disp.connected && disp.list != NULL) {
547 ALOGW("WARNING: disp %d: connected, non-null list, layers=%d",
548 i, disp.list->numHwLayers);
549 }
Mathias Agopianda27af92012-09-13 18:17:13 -0700550 mLists[i] = disp.list;
Mathias Agopianf4358632012-08-22 17:16:19 -0700551 if (mLists[i]) {
Jesse Halldb276212012-09-07 11:20:56 -0700552 if (hwcHasApiVersion(mHwc, HWC_DEVICE_API_VERSION_1_2)) {
553 mLists[i]->outbuf = NULL;
554 mLists[i]->outbufAcquireFenceFd = -1;
555 } else if (hwcHasApiVersion(mHwc, HWC_DEVICE_API_VERSION_1_1)) {
556 // garbage data to catch improper use
557 mLists[i]->dpy = (hwc_display_t)0xDEADBEEF;
558 mLists[i]->sur = (hwc_surface_t)0xDEADBEEF;
559 } else {
560 mLists[i]->dpy = EGL_NO_DISPLAY;
561 mLists[i]->sur = EGL_NO_SURFACE;
562 }
Mathias Agopianf4358632012-08-22 17:16:19 -0700563 }
564 }
Jesse Halldb276212012-09-07 11:20:56 -0700565
Mathias Agopianf4358632012-08-22 17:16:19 -0700566 int err = mHwc->prepare(mHwc, mNumDisplays, mLists);
Mathias Agopianda27af92012-09-13 18:17:13 -0700567 ALOGE_IF(err, "HWComposer: prepare failed (%s)", strerror(-err));
568
Mathias Agopian9c6e2972011-09-20 17:21:56 -0700569 if (err == NO_ERROR) {
Mathias Agopian5f20e2d2012-08-10 18:50:38 -0700570 // here we're just making sure that "skip" layers are set
571 // to HWC_FRAMEBUFFER and we're also counting how many layers
572 // we have of each type.
Mathias Agopianf4358632012-08-22 17:16:19 -0700573 for (size_t i=0 ; i<mNumDisplays ; i++) {
574 DisplayData& disp(mDisplayData[i]);
575 disp.hasFbComp = false;
576 disp.hasOvComp = false;
577 if (disp.list) {
578 for (size_t i=0 ; i<disp.list->numHwLayers ; i++) {
579 hwc_layer_1_t& l = disp.list->hwLayers[i];
Mathias Agopianda27af92012-09-13 18:17:13 -0700580
581 //ALOGD("prepare: %d, type=%d, handle=%p",
582 // i, l.compositionType, l.handle);
583
Mathias Agopianf4358632012-08-22 17:16:19 -0700584 if (l.flags & HWC_SKIP_LAYER) {
585 l.compositionType = HWC_FRAMEBUFFER;
586 }
587 if (l.compositionType == HWC_FRAMEBUFFER) {
588 disp.hasFbComp = true;
589 }
590 if (l.compositionType == HWC_OVERLAY) {
591 disp.hasOvComp = true;
592 }
593 }
Mathias Agopian9c6e2972011-09-20 17:21:56 -0700594 }
Mathias Agopian9c6e2972011-09-20 17:21:56 -0700595 }
Mathias Agopian9c6e2972011-09-20 17:21:56 -0700596 }
Mathias Agopiana350ff92010-08-10 17:14:02 -0700597 return (status_t)err;
598}
599
Mathias Agopiane60b0682012-08-21 23:34:09 -0700600bool HWComposer::hasHwcComposition(int32_t id) const {
Mathias Agopianf4358632012-08-22 17:16:19 -0700601 if (uint32_t(id)>31 || !mAllocatedDisplayIDs.hasBit(id))
Mathias Agopiane60b0682012-08-21 23:34:09 -0700602 return false;
603 return mDisplayData[id].hasOvComp;
Mathias Agopian9c6e2972011-09-20 17:21:56 -0700604}
605
Mathias Agopiane60b0682012-08-21 23:34:09 -0700606bool HWComposer::hasGlesComposition(int32_t id) const {
Mathias Agopianf4358632012-08-22 17:16:19 -0700607 if (uint32_t(id)>31 || !mAllocatedDisplayIDs.hasBit(id))
Mathias Agopiane60b0682012-08-21 23:34:09 -0700608 return false;
609 return mDisplayData[id].hasFbComp;
610}
611
Mathias Agopianda27af92012-09-13 18:17:13 -0700612int HWComposer::getAndResetReleaseFenceFd(int32_t id) {
613 if (uint32_t(id)>31 || !mAllocatedDisplayIDs.hasBit(id))
614 return BAD_INDEX;
615
616 int fd = INVALID_OPERATION;
617 if (mHwc && hwcHasApiVersion(mHwc, HWC_DEVICE_API_VERSION_1_1)) {
618 const DisplayData& disp(mDisplayData[id]);
619 if (disp.framebufferTarget) {
620 fd = disp.framebufferTarget->releaseFenceFd;
Jamie Gennisd30b36d2012-09-30 20:02:03 -0700621 disp.framebufferTarget->acquireFenceFd = -1;
Mathias Agopianda27af92012-09-13 18:17:13 -0700622 disp.framebufferTarget->releaseFenceFd = -1;
623 }
624 }
625 return fd;
626}
627
Mathias Agopian30bcc612012-08-22 15:39:48 -0700628status_t HWComposer::commit() {
Mathias Agopian86303202012-07-24 22:46:10 -0700629 int err = NO_ERROR;
630 if (mHwc) {
Jesse Hall9eb1eb52012-08-29 10:39:38 -0700631 if (!hwcHasApiVersion(mHwc, HWC_DEVICE_API_VERSION_1_1)) {
Mathias Agopian30bcc612012-08-22 15:39:48 -0700632 // On version 1.0, the OpenGL ES target surface is communicated
Mathias Agopianf4358632012-08-22 17:16:19 -0700633 // by the (dpy, sur) fields and we are guaranteed to have only
634 // a single display.
Mathias Agopian30bcc612012-08-22 15:39:48 -0700635 mLists[0]->dpy = eglGetCurrentDisplay();
636 mLists[0]->sur = eglGetCurrentSurface(EGL_DRAW);
Mathias Agopian86303202012-07-24 22:46:10 -0700637 }
Mathias Agopianf4358632012-08-22 17:16:19 -0700638
Mathias Agopian30bcc612012-08-22 15:39:48 -0700639 err = mHwc->set(mHwc, mNumDisplays, mLists);
Mathias Agopianf4358632012-08-22 17:16:19 -0700640
641 for (size_t i=0 ; i<mNumDisplays ; i++) {
642 DisplayData& disp(mDisplayData[i]);
643 if (disp.list) {
Jesse Halldb276212012-09-07 11:20:56 -0700644 if (disp.list->retireFenceFd != -1) {
645 close(disp.list->retireFenceFd);
646 disp.list->retireFenceFd = -1;
Mathias Agopianf4358632012-08-22 17:16:19 -0700647 }
648 disp.list->flags &= ~HWC_GEOMETRY_CHANGED;
649 }
Mathias Agopian30bcc612012-08-22 15:39:48 -0700650 }
Mathias Agopian58959342010-10-07 14:57:04 -0700651 }
Mathias Agopiana350ff92010-08-10 17:14:02 -0700652 return (status_t)err;
653}
654
Andy McFaddenc01a79d2012-09-27 16:02:06 -0700655status_t HWComposer::release(int disp) const {
656 LOG_FATAL_IF(disp >= HWC_NUM_DISPLAY_TYPES);
Mathias Agopian7ee4cd52011-09-02 12:22:39 -0700657 if (mHwc) {
Andy McFaddenc01a79d2012-09-27 16:02:06 -0700658 mHwc->eventControl(mHwc, disp, HWC_EVENT_VSYNC, 0);
659 return (status_t)mHwc->blank(mHwc, disp, 1);
Mathias Agopian7ee4cd52011-09-02 12:22:39 -0700660 }
661 return NO_ERROR;
662}
663
Andy McFaddenc01a79d2012-09-27 16:02:06 -0700664status_t HWComposer::acquire(int disp) const {
665 LOG_FATAL_IF(disp >= HWC_NUM_DISPLAY_TYPES);
Colin Cross10fbdb62012-07-12 17:56:34 -0700666 if (mHwc) {
Andy McFaddenc01a79d2012-09-27 16:02:06 -0700667 return (status_t)mHwc->blank(mHwc, disp, 0);
Colin Cross10fbdb62012-07-12 17:56:34 -0700668 }
Colin Cross10fbdb62012-07-12 17:56:34 -0700669 return NO_ERROR;
670}
671
Andy McFadden27ec5732012-10-02 19:04:45 -0700672void HWComposer::disconnectDisplay(int disp) {
673 LOG_ALWAYS_FATAL_IF(disp < 0 || disp == HWC_DISPLAY_PRIMARY ||
674 disp >= HWC_NUM_DISPLAY_TYPES);
675 DisplayData& dd(mDisplayData[disp]);
676 if (dd.list != NULL) {
677 free(dd.list);
678 dd.list = NULL;
679 dd.framebufferTarget = NULL; // points into dd.list
680 }
681}
682
Mathias Agopiancde87a32012-09-13 14:09:01 -0700683int HWComposer::getVisualID() const {
Jesse Halld3d35f12012-09-18 11:39:40 -0700684 if (mHwc && hwcHasApiVersion(mHwc, HWC_DEVICE_API_VERSION_1_1)) {
Mathias Agopianda27af92012-09-13 18:17:13 -0700685 // FIXME: temporary hack until HAL_PIXEL_FORMAT_IMPLEMENTATION_DEFINED
686 // is supported by the implementation. we can only be in this case
687 // if we have HWC 1.1
688 return HAL_PIXEL_FORMAT_RGBA_8888;
689 //return HAL_PIXEL_FORMAT_IMPLEMENTATION_DEFINED;
Andy McFaddenb0d1dd32012-09-10 14:08:09 -0700690 } else {
Mathias Agopiancde87a32012-09-13 14:09:01 -0700691 return mFbDev->format;
Andy McFaddenb0d1dd32012-09-10 14:08:09 -0700692 }
693}
694
Mathias Agopianda27af92012-09-13 18:17:13 -0700695bool HWComposer::supportsFramebufferTarget() const {
696 return (mHwc && hwcHasApiVersion(mHwc, HWC_DEVICE_API_VERSION_1_1));
697}
698
699int HWComposer::fbPost(int32_t id,
700 const sp<Fence>& acquireFence, const sp<GraphicBuffer>& buffer) {
Jesse Halld3d35f12012-09-18 11:39:40 -0700701 if (mHwc && hwcHasApiVersion(mHwc, HWC_DEVICE_API_VERSION_1_1)) {
Mathias Agopianda27af92012-09-13 18:17:13 -0700702 return setFramebufferTarget(id, acquireFence, buffer);
703 } else {
704 if (acquireFence != NULL) {
Jesse Hallba607d52012-10-01 14:05:20 -0700705 acquireFence->waitForever(1000, "HWComposer::fbPost");
Mathias Agopianda27af92012-09-13 18:17:13 -0700706 }
707 return mFbDev->post(mFbDev, buffer->handle);
Mathias Agopiancde87a32012-09-13 14:09:01 -0700708 }
Mathias Agopiancde87a32012-09-13 14:09:01 -0700709}
710
711int HWComposer::fbCompositionComplete() {
Jesse Halld3d35f12012-09-18 11:39:40 -0700712 if (mHwc && hwcHasApiVersion(mHwc, HWC_DEVICE_API_VERSION_1_1))
Mathias Agopianda27af92012-09-13 18:17:13 -0700713 return NO_ERROR;
714
715 if (mFbDev->compositionComplete) {
716 return mFbDev->compositionComplete(mFbDev);
717 } else {
718 return INVALID_OPERATION;
Mathias Agopiancde87a32012-09-13 14:09:01 -0700719 }
Mathias Agopiancde87a32012-09-13 14:09:01 -0700720}
721
Andy McFaddenb0d1dd32012-09-10 14:08:09 -0700722void HWComposer::fbDump(String8& result) {
Mathias Agopiancde87a32012-09-13 14:09:01 -0700723 if (mFbDev && mFbDev->common.version >= 1 && mFbDev->dump) {
Andy McFaddenb0d1dd32012-09-10 14:08:09 -0700724 const size_t SIZE = 4096;
725 char buffer[SIZE];
726 mFbDev->dump(mFbDev, buffer, SIZE);
727 result.append(buffer);
728 }
729}
730
Mathias Agopian3e8b8532012-05-13 20:42:01 -0700731/*
732 * Helper template to implement a concrete HWCLayer
733 * This holds the pointer to the concrete hwc layer type
734 * and implements the "iterable" side of HWCLayer.
735 */
736template<typename CONCRETE, typename HWCTYPE>
737class Iterable : public HWComposer::HWCLayer {
738protected:
739 HWCTYPE* const mLayerList;
740 HWCTYPE* mCurrentLayer;
741 Iterable(HWCTYPE* layer) : mLayerList(layer), mCurrentLayer(layer) { }
742 inline HWCTYPE const * getLayer() const { return mCurrentLayer; }
743 inline HWCTYPE* getLayer() { return mCurrentLayer; }
744 virtual ~Iterable() { }
745private:
746 // returns a copy of ourselves
747 virtual HWComposer::HWCLayer* dup() {
748 return new CONCRETE( static_cast<const CONCRETE&>(*this) );
749 }
750 virtual status_t setLayer(size_t index) {
751 mCurrentLayer = &mLayerList[index];
752 return NO_ERROR;
753 }
754};
755
Jesse Hall5880cc52012-06-05 23:40:32 -0700756/*
757 * Concrete implementation of HWCLayer for HWC_DEVICE_API_VERSION_1_0.
758 * This implements the HWCLayer side of HWCIterableLayer.
759 */
760class HWCLayerVersion1 : public Iterable<HWCLayerVersion1, hwc_layer_1_t> {
761public:
762 HWCLayerVersion1(hwc_layer_1_t* layer)
763 : Iterable<HWCLayerVersion1, hwc_layer_1_t>(layer) { }
764
765 virtual int32_t getCompositionType() const {
766 return getLayer()->compositionType;
767 }
768 virtual uint32_t getHints() const {
769 return getLayer()->hints;
770 }
Jesse Hallef194142012-06-14 14:45:17 -0700771 virtual int getAndResetReleaseFenceFd() {
772 int fd = getLayer()->releaseFenceFd;
773 getLayer()->releaseFenceFd = -1;
774 return fd;
775 }
Jesse Halldc5b4852012-06-29 15:21:18 -0700776 virtual void setAcquireFenceFd(int fenceFd) {
777 getLayer()->acquireFenceFd = fenceFd;
778 }
Jesse Hall5880cc52012-06-05 23:40:32 -0700779
780 virtual void setDefaultState() {
781 getLayer()->compositionType = HWC_FRAMEBUFFER;
782 getLayer()->hints = 0;
783 getLayer()->flags = HWC_SKIP_LAYER;
Mathias Agopian55882de2012-09-05 16:00:56 -0700784 getLayer()->handle = 0;
Jesse Hall5880cc52012-06-05 23:40:32 -0700785 getLayer()->transform = 0;
786 getLayer()->blending = HWC_BLENDING_NONE;
787 getLayer()->visibleRegionScreen.numRects = 0;
788 getLayer()->visibleRegionScreen.rects = NULL;
789 getLayer()->acquireFenceFd = -1;
790 getLayer()->releaseFenceFd = -1;
791 }
792 virtual void setSkip(bool skip) {
793 if (skip) {
794 getLayer()->flags |= HWC_SKIP_LAYER;
795 } else {
796 getLayer()->flags &= ~HWC_SKIP_LAYER;
797 }
798 }
799 virtual void setBlending(uint32_t blending) {
800 getLayer()->blending = blending;
801 }
802 virtual void setTransform(uint32_t transform) {
803 getLayer()->transform = transform;
804 }
805 virtual void setFrame(const Rect& frame) {
806 reinterpret_cast<Rect&>(getLayer()->displayFrame) = frame;
807 }
808 virtual void setCrop(const Rect& crop) {
809 reinterpret_cast<Rect&>(getLayer()->sourceCrop) = crop;
810 }
811 virtual void setVisibleRegionScreen(const Region& reg) {
Mathias Agopianc3973602012-08-31 17:51:25 -0700812 // Region::getSharedBuffer creates a reference to the underlying
813 // SharedBuffer of this Region, this reference is freed
814 // in onDisplayed()
815 hwc_region_t& visibleRegion = getLayer()->visibleRegionScreen;
816 SharedBuffer const* sb = reg.getSharedBuffer(&visibleRegion.numRects);
817 visibleRegion.rects = reinterpret_cast<hwc_rect_t const *>(sb->data());
Jesse Hall5880cc52012-06-05 23:40:32 -0700818 }
819 virtual void setBuffer(const sp<GraphicBuffer>& buffer) {
820 if (buffer == 0 || buffer->handle == 0) {
821 getLayer()->compositionType = HWC_FRAMEBUFFER;
822 getLayer()->flags |= HWC_SKIP_LAYER;
823 getLayer()->handle = 0;
824 } else {
825 getLayer()->handle = buffer->handle;
826 }
827 }
Mathias Agopianc3973602012-08-31 17:51:25 -0700828 virtual void onDisplayed() {
829 hwc_region_t& visibleRegion = getLayer()->visibleRegionScreen;
830 SharedBuffer const* sb = SharedBuffer::bufferFromData(visibleRegion.rects);
831 if (sb) {
832 sb->release();
833 // not technically needed but safer
834 visibleRegion.numRects = 0;
835 visibleRegion.rects = NULL;
836 }
Jesse Halle25d0052012-09-05 13:03:10 -0700837
838 getLayer()->acquireFenceFd = -1;
Mathias Agopianc3973602012-08-31 17:51:25 -0700839 }
Jesse Hall5880cc52012-06-05 23:40:32 -0700840};
Mathias Agopian3e8b8532012-05-13 20:42:01 -0700841
842/*
843 * returns an iterator initialized at a given index in the layer list
844 */
Mathias Agopian5f20e2d2012-08-10 18:50:38 -0700845HWComposer::LayerListIterator HWComposer::getLayerIterator(int32_t id, size_t index) {
Mathias Agopianf4358632012-08-22 17:16:19 -0700846 if (uint32_t(id)>31 || !mAllocatedDisplayIDs.hasBit(id)) {
Mathias Agopian5f20e2d2012-08-10 18:50:38 -0700847 return LayerListIterator();
Mathias Agopianf4358632012-08-22 17:16:19 -0700848 }
849 const DisplayData& disp(mDisplayData[id]);
850 if (!mHwc || !disp.list || index > disp.list->numHwLayers) {
Mathias Agopian3e8b8532012-05-13 20:42:01 -0700851 return LayerListIterator();
Mathias Agopianf4358632012-08-22 17:16:19 -0700852 }
853 return LayerListIterator(new HWCLayerVersion1(disp.list->hwLayers), index);
Mathias Agopiana350ff92010-08-10 17:14:02 -0700854}
855
Mathias Agopian3e8b8532012-05-13 20:42:01 -0700856/*
857 * returns an iterator on the beginning of the layer list
858 */
Mathias Agopian5f20e2d2012-08-10 18:50:38 -0700859HWComposer::LayerListIterator HWComposer::begin(int32_t id) {
Mathias Agopian1e260872012-08-08 18:35:12 -0700860 return getLayerIterator(id, 0);
Mathias Agopian3e8b8532012-05-13 20:42:01 -0700861}
862
863/*
864 * returns an iterator on the end of the layer list
865 */
Mathias Agopian5f20e2d2012-08-10 18:50:38 -0700866HWComposer::LayerListIterator HWComposer::end(int32_t id) {
Mathias Agopianda27af92012-09-13 18:17:13 -0700867 size_t numLayers = 0;
868 if (uint32_t(id) <= 31 && mAllocatedDisplayIDs.hasBit(id)) {
869 const DisplayData& disp(mDisplayData[id]);
870 if (mHwc && disp.list) {
871 numLayers = disp.list->numHwLayers;
872 if (hwcHasApiVersion(mHwc, HWC_DEVICE_API_VERSION_1_1)) {
873 // with HWC 1.1, the last layer is always the HWC_FRAMEBUFFER_TARGET,
874 // which we ignore when iterating through the layer list.
875 ALOGE_IF(!numLayers, "mDisplayData[%d].list->numHwLayers is 0", id);
876 if (numLayers) {
877 numLayers--;
878 }
879 }
880 }
881 }
882 return getLayerIterator(id, numLayers);
Mathias Agopian3e8b8532012-05-13 20:42:01 -0700883}
884
Mathias Agopian22da60c2011-09-09 00:49:11 -0700885void HWComposer::dump(String8& result, char* buffer, size_t SIZE,
886 const Vector< sp<LayerBase> >& visibleLayersSortedByZ) const {
Jesse Hallb685c542012-07-31 14:32:56 -0700887 if (mHwc) {
Mathias Agopiancde87a32012-09-13 14:09:01 -0700888 result.appendFormat("Hardware Composer state (version %8x):\n", hwcApiVersion(mHwc));
Mathias Agopianf4358632012-08-22 17:16:19 -0700889 result.appendFormat(" mDebugForceFakeVSync=%d\n", mDebugForceFakeVSync);
890 for (size_t i=0 ; i<mNumDisplays ; i++) {
891 const DisplayData& disp(mDisplayData[i]);
Mathias Agopianb4d18ed2012-09-20 23:14:05 -0700892
893 if (disp.connected) {
894 result.appendFormat(
895 " Display[%d] : %ux%u, xdpi=%f, ydpi=%f, refresh=%lld\n",
896 i, disp.width, disp.height, disp.xdpi, disp.ydpi, disp.refresh);
897 }
898
899 if (disp.list && disp.connected) {
900 result.appendFormat(
901 " numHwLayers=%u, flags=%08x\n",
902 disp.list->numHwLayers, disp.list->flags);
903
Mathias Agopianf4358632012-08-22 17:16:19 -0700904 result.append(
Mathias Agopianda27af92012-09-13 18:17:13 -0700905 " type | handle | hints | flags | tr | blend | format | source crop | frame name \n"
906 "------------+----------+----------+----------+----+-------+----------+---------------------------+--------------------------------\n");
907 // " __________ | ________ | ________ | ________ | __ | _____ | ________ | [_____,_____,_____,_____] | [_____,_____,_____,_____]
Mathias Agopianf4358632012-08-22 17:16:19 -0700908 for (size_t i=0 ; i<disp.list->numHwLayers ; i++) {
909 const hwc_layer_1_t&l = disp.list->hwLayers[i];
Mathias Agopianf4358632012-08-22 17:16:19 -0700910 int32_t format = -1;
Mathias Agopianda27af92012-09-13 18:17:13 -0700911 String8 name("unknown");
912 if (i < visibleLayersSortedByZ.size()) {
913 const sp<LayerBase>& layer(visibleLayersSortedByZ[i]);
914 if (layer->getLayer() != NULL) {
915 const sp<GraphicBuffer>& buffer(
Mathias Agopianf4358632012-08-22 17:16:19 -0700916 layer->getLayer()->getActiveBuffer());
Mathias Agopianda27af92012-09-13 18:17:13 -0700917 if (buffer != NULL) {
918 format = buffer->getPixelFormat();
919 }
Mathias Agopianf4358632012-08-22 17:16:19 -0700920 }
Mathias Agopianda27af92012-09-13 18:17:13 -0700921 name = layer->getName();
Mathias Agopianf4358632012-08-22 17:16:19 -0700922 }
Mathias Agopianda27af92012-09-13 18:17:13 -0700923
924 int type = l.compositionType;
925 if (type == HWC_FRAMEBUFFER_TARGET) {
926 name = "HWC_FRAMEBUFFER_TARGET";
927 format = disp.format;
928 }
929
930 static char const* compositionTypeName[] = {
931 "GLES",
932 "HWC",
933 "BACKGROUND",
934 "FB TARGET",
935 "UNKNOWN"};
936 if (type >= NELEM(compositionTypeName))
937 type = NELEM(compositionTypeName) - 1;
938
Mathias Agopianf4358632012-08-22 17:16:19 -0700939 result.appendFormat(
Mathias Agopianda27af92012-09-13 18:17:13 -0700940 " %10s | %08x | %08x | %08x | %02x | %05x | %08x | [%5d,%5d,%5d,%5d] | [%5d,%5d,%5d,%5d] %s\n",
941 compositionTypeName[type],
Mathias Agopianf4358632012-08-22 17:16:19 -0700942 intptr_t(l.handle), l.hints, l.flags, l.transform, l.blending, format,
943 l.sourceCrop.left, l.sourceCrop.top, l.sourceCrop.right, l.sourceCrop.bottom,
944 l.displayFrame.left, l.displayFrame.top, l.displayFrame.right, l.displayFrame.bottom,
Mathias Agopianda27af92012-09-13 18:17:13 -0700945 name.string());
Mathias Agopianfb4d5d52011-09-20 15:13:14 -0700946 }
947 }
Mathias Agopian83727852010-09-23 18:13:21 -0700948 }
Erik Gilling1d21a9c2010-12-01 16:38:01 -0800949 }
Mathias Agopian30bcc612012-08-22 15:39:48 -0700950
951 if (mHwc && mHwc->dump) {
952 mHwc->dump(mHwc, buffer, SIZE);
Erik Gilling1d21a9c2010-12-01 16:38:01 -0800953 result.append(buffer);
Mathias Agopian83727852010-09-23 18:13:21 -0700954 }
955}
956
Mathias Agopiana350ff92010-08-10 17:14:02 -0700957// ---------------------------------------------------------------------------
Mathias Agopian2965b262012-04-08 15:13:32 -0700958
959HWComposer::VSyncThread::VSyncThread(HWComposer& hwc)
960 : mHwc(hwc), mEnabled(false),
961 mNextFakeVSync(0),
Andy McFaddenb0d1dd32012-09-10 14:08:09 -0700962 mRefreshPeriod(hwc.getRefreshPeriod(HWC_DISPLAY_PRIMARY))
Mathias Agopian2965b262012-04-08 15:13:32 -0700963{
964}
965
966void HWComposer::VSyncThread::setEnabled(bool enabled) {
967 Mutex::Autolock _l(mLock);
968 mEnabled = enabled;
969 mCondition.signal();
970}
971
972void HWComposer::VSyncThread::onFirstRef() {
973 run("VSyncThread", PRIORITY_URGENT_DISPLAY + PRIORITY_MORE_FAVORABLE);
974}
975
976bool HWComposer::VSyncThread::threadLoop() {
977 { // scope for lock
978 Mutex::Autolock _l(mLock);
979 while (!mEnabled) {
980 mCondition.wait(mLock);
981 }
982 }
983
984 const nsecs_t period = mRefreshPeriod;
985 const nsecs_t now = systemTime(CLOCK_MONOTONIC);
986 nsecs_t next_vsync = mNextFakeVSync;
987 nsecs_t sleep = next_vsync - now;
988 if (sleep < 0) {
989 // we missed, find where the next vsync should be
990 sleep = (period - ((now - next_vsync) % period));
991 next_vsync = now + sleep;
992 }
993 mNextFakeVSync = next_vsync + period;
994
995 struct timespec spec;
996 spec.tv_sec = next_vsync / 1000000000;
997 spec.tv_nsec = next_vsync % 1000000000;
998
999 int err;
1000 do {
1001 err = clock_nanosleep(CLOCK_MONOTONIC, TIMER_ABSTIME, &spec, NULL);
1002 } while (err<0 && errno == EINTR);
1003
1004 if (err == 0) {
1005 mHwc.mEventHandler.onVSyncReceived(0, next_vsync);
1006 }
1007
1008 return true;
1009}
1010
1011// ---------------------------------------------------------------------------
Mathias Agopiana350ff92010-08-10 17:14:02 -07001012}; // namespace android