blob: d37fcb2b8a25751452028fb801c2b78b2dfc736e [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
Mark Salyzyn92dc3fc2014-03-12 13:12:44 -070019#include <inttypes.h>
20#include <math.h>
Mathias Agopiana350ff92010-08-10 17:14:02 -070021#include <stdint.h>
Mathias Agopianf1352df2010-08-11 17:31:33 -070022#include <stdio.h>
23#include <stdlib.h>
24#include <string.h>
Mathias Agopiana350ff92010-08-10 17:14:02 -070025#include <sys/types.h>
26
27#include <utils/Errors.h>
Mathias Agopianda27af92012-09-13 18:17:13 -070028#include <utils/misc.h>
Jesse Hall399184a2014-03-03 15:42:54 -080029#include <utils/NativeHandle.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
Jesse Hall1c569c42013-04-05 13:44:52 -070040#include <android/configuration.h>
41
Mathias Agopiana350ff92010-08-10 17:14:02 -070042#include <cutils/log.h>
Mathias Agopiane2c4f4e2012-04-10 18:25:31 -070043#include <cutils/properties.h>
Mathias Agopiana350ff92010-08-10 17:14:02 -070044
Mathias Agopiana350ff92010-08-10 17:14:02 -070045#include "HWComposer.h"
Mathias Agopian33ceeb32013-04-01 16:54:58 -070046
47#include "../Layer.h" // needed only for debugging
48#include "../SurfaceFlinger.h"
Mathias Agopiana350ff92010-08-10 17:14:02 -070049
50namespace android {
Jesse Hall5880cc52012-06-05 23:40:32 -070051
Jesse Hall72960512013-01-10 16:19:56 -080052#define MIN_HWC_HEADER_VERSION HWC_HEADER_VERSION
Jesse Hall9eb1eb52012-08-29 10:39:38 -070053
54static uint32_t hwcApiVersion(const hwc_composer_device_1_t* hwc) {
55 uint32_t hwcVersion = hwc->common.version;
Jesse Hall9eb1eb52012-08-29 10:39:38 -070056 return hwcVersion & HARDWARE_API_VERSION_2_MAJ_MIN_MASK;
57}
58
59static uint32_t hwcHeaderVersion(const hwc_composer_device_1_t* hwc) {
60 uint32_t hwcVersion = hwc->common.version;
Jesse Hall9eb1eb52012-08-29 10:39:38 -070061 return hwcVersion & HARDWARE_API_VERSION_2_HEADER_MASK;
62}
63
64static bool hwcHasApiVersion(const hwc_composer_device_1_t* hwc,
65 uint32_t version) {
66 return hwcApiVersion(hwc) >= (version & HARDWARE_API_VERSION_2_MAJ_MIN_MASK);
Jesse Hallbbd164a2012-08-21 12:05:09 -070067}
68
Mathias Agopiana350ff92010-08-10 17:14:02 -070069// ---------------------------------------------------------------------------
70
Mathias Agopian3e8b8532012-05-13 20:42:01 -070071struct HWComposer::cb_context {
72 struct callbacks : public hwc_procs_t {
73 // these are here to facilitate the transition when adding
74 // new callbacks (an implementation can check for NULL before
75 // calling a new callback).
76 void (*zero[4])(void);
77 };
78 callbacks procs;
79 HWComposer* hwc;
80};
81
82// ---------------------------------------------------------------------------
83
Mathias Agopian3eb38cb2012-04-03 22:09:52 -070084HWComposer::HWComposer(
85 const sp<SurfaceFlinger>& flinger,
Andy McFaddenb0d1dd32012-09-10 14:08:09 -070086 EventHandler& handler)
Mathias Agopianc7d14e22011-08-01 16:32:21 -070087 : mFlinger(flinger),
Andy McFaddenb0d1dd32012-09-10 14:08:09 -070088 mFbDev(0), mHwc(0), mNumDisplays(1),
Mathias Agopian3e8b8532012-05-13 20:42:01 -070089 mCBContext(new cb_context),
Mathias Agopiane60b0682012-08-21 23:34:09 -070090 mEventHandler(handler),
Mathias Agopianbef42c52013-08-21 17:45:46 -070091 mDebugForceFakeVSync(false)
Mathias Agopiana350ff92010-08-10 17:14:02 -070092{
Jesse Hall9e663de2013-08-16 14:28:37 -070093 for (size_t i =0 ; i<MAX_HWC_DISPLAYS ; i++) {
Mathias Agopiane60b0682012-08-21 23:34:09 -070094 mLists[i] = 0;
95 }
Jesse Hallb685c542012-07-31 14:32:56 -070096
Mathias Agopianbef42c52013-08-21 17:45:46 -070097 for (size_t i=0 ; i<HWC_NUM_PHYSICAL_DISPLAY_TYPES ; i++) {
98 mLastHwVSync[i] = 0;
99 mVSyncCounts[i] = 0;
100 }
101
Mathias Agopiane2c4f4e2012-04-10 18:25:31 -0700102 char value[PROPERTY_VALUE_MAX];
103 property_get("debug.sf.no_hw_vsync", value, "0");
104 mDebugForceFakeVSync = atoi(value);
105
Mathias Agopian028508c2012-07-25 21:12:12 -0700106 bool needVSyncThread = true;
Andy McFaddenb0d1dd32012-09-10 14:08:09 -0700107
108 // Note: some devices may insist that the FB HAL be opened before HWC.
Jesse Hallef64b752013-03-18 11:28:50 -0700109 int fberr = loadFbHalModule();
Andy McFaddenb0d1dd32012-09-10 14:08:09 -0700110 loadHwcModule();
111
Mathias Agopianda27af92012-09-13 18:17:13 -0700112 if (mFbDev && mHwc && hwcHasApiVersion(mHwc, HWC_DEVICE_API_VERSION_1_1)) {
113 // close FB HAL if we don't needed it.
114 // FIXME: this is temporary until we're not forced to open FB HAL
115 // before HWC.
116 framebuffer_close(mFbDev);
117 mFbDev = NULL;
118 }
119
Andy McFaddenbabba182012-09-12 13:14:51 -0700120 // If we have no HWC, or a pre-1.1 HWC, an FB dev is mandatory.
121 if ((!mHwc || !hwcHasApiVersion(mHwc, HWC_DEVICE_API_VERSION_1_1))
122 && !mFbDev) {
Jesse Hallef64b752013-03-18 11:28:50 -0700123 ALOGE("ERROR: failed to open framebuffer (%s), aborting",
124 strerror(-fberr));
Andy McFadden43601a22012-09-11 15:15:13 -0700125 abort();
126 }
127
Andy McFadden620685c2012-10-19 12:53:46 -0700128 // these display IDs are always reserved
Jesse Hall9e663de2013-08-16 14:28:37 -0700129 for (size_t i=0 ; i<NUM_BUILTIN_DISPLAYS ; i++) {
Andy McFadden620685c2012-10-19 12:53:46 -0700130 mAllocatedDisplayIDs.markBit(i);
131 }
132
Andy McFaddenb0d1dd32012-09-10 14:08:09 -0700133 if (mHwc) {
134 ALOGI("Using %s version %u.%u", HWC_HARDWARE_COMPOSER,
135 (hwcApiVersion(mHwc) >> 24) & 0xff,
136 (hwcApiVersion(mHwc) >> 16) & 0xff);
137 if (mHwc->registerProcs) {
138 mCBContext->hwc = this;
139 mCBContext->procs.invalidate = &hook_invalidate;
140 mCBContext->procs.vsync = &hook_vsync;
141 if (hwcHasApiVersion(mHwc, HWC_DEVICE_API_VERSION_1_1))
142 mCBContext->procs.hotplug = &hook_hotplug;
143 else
144 mCBContext->procs.hotplug = NULL;
145 memset(mCBContext->procs.zero, 0, sizeof(mCBContext->procs.zero));
146 mHwc->registerProcs(mHwc, &mCBContext->procs);
Jesse Hall5880cc52012-06-05 23:40:32 -0700147 }
148
Andy McFaddenb0d1dd32012-09-10 14:08:09 -0700149 // don't need a vsync thread if we have a hardware composer
150 needVSyncThread = false;
151 // always turn vsync off when we start
Mathias Agopian81cd5d32012-10-04 02:34:38 -0700152 eventControl(HWC_DISPLAY_PRIMARY, HWC_EVENT_VSYNC, 0);
Jesse Hallbbd164a2012-08-21 12:05:09 -0700153
Andy McFaddenb0d1dd32012-09-10 14:08:09 -0700154 // the number of displays we actually have depends on the
155 // hw composer version
Jesse Hall38efe862013-04-06 23:12:29 -0700156 if (hwcHasApiVersion(mHwc, HWC_DEVICE_API_VERSION_1_3)) {
157 // 1.3 adds support for virtual displays
Jesse Hall9e663de2013-08-16 14:28:37 -0700158 mNumDisplays = MAX_HWC_DISPLAYS;
Andy McFaddenb0d1dd32012-09-10 14:08:09 -0700159 } else if (hwcHasApiVersion(mHwc, HWC_DEVICE_API_VERSION_1_1)) {
160 // 1.1 adds support for multiple displays
Jesse Hall9e663de2013-08-16 14:28:37 -0700161 mNumDisplays = NUM_BUILTIN_DISPLAYS;
Andy McFaddenb0d1dd32012-09-10 14:08:09 -0700162 } else {
163 mNumDisplays = 1;
Mathias Agopianc7d14e22011-08-01 16:32:21 -0700164 }
Mathias Agopian3a778712012-04-09 14:16:47 -0700165 }
166
Andy McFaddenb0d1dd32012-09-10 14:08:09 -0700167 if (mFbDev) {
Jesse Hall1bd20e02012-08-29 10:47:52 -0700168 ALOG_ASSERT(!(mHwc && hwcHasApiVersion(mHwc, HWC_DEVICE_API_VERSION_1_1)),
169 "should only have fbdev if no hwc or hwc is 1.0");
170
Mathias Agopianf4358632012-08-22 17:16:19 -0700171 DisplayData& disp(mDisplayData[HWC_DISPLAY_PRIMARY]);
Mathias Agopian38e623b2012-09-20 19:27:07 -0700172 disp.connected = true;
Andy McFaddenb0d1dd32012-09-10 14:08:09 -0700173 disp.format = mFbDev->format;
Dan Stoza7f7da322014-05-02 15:26:25 -0700174 DisplayConfig config = DisplayConfig();
175 config.width = mFbDev->width;
176 config.height = mFbDev->height;
177 config.xdpi = mFbDev->xdpi;
178 config.ydpi = mFbDev->ydpi;
179 config.refresh = nsecs_t(1e9 / mFbDev->fps);
180 disp.configs.push_back(config);
181 disp.currentConfig = 0;
Jesse Hall1bd20e02012-08-29 10:47:52 -0700182 } else if (mHwc) {
Mathias Agopian1604f772012-09-18 21:54:42 -0700183 // here we're guaranteed to have at least HWC 1.1
Jesse Hall9e663de2013-08-16 14:28:37 -0700184 for (size_t i =0 ; i<NUM_BUILTIN_DISPLAYS ; i++) {
Mathias Agopian1604f772012-09-18 21:54:42 -0700185 queryDisplayProperties(i);
186 }
Mathias Agopian888c8222012-08-04 21:10:38 -0700187 }
188
Mathias Agopian3a778712012-04-09 14:16:47 -0700189 if (needVSyncThread) {
190 // we don't have VSYNC support, we need to fake it
191 mVSyncThread = new VSyncThread(*this);
Mathias Agopiana350ff92010-08-10 17:14:02 -0700192 }
193}
194
195HWComposer::~HWComposer() {
Andy McFaddenbabba182012-09-12 13:14:51 -0700196 if (mHwc) {
Mathias Agopian81cd5d32012-10-04 02:34:38 -0700197 eventControl(HWC_DISPLAY_PRIMARY, HWC_EVENT_VSYNC, 0);
Andy McFaddenbabba182012-09-12 13:14:51 -0700198 }
Mathias Agopian3eb38cb2012-04-03 22:09:52 -0700199 if (mVSyncThread != NULL) {
200 mVSyncThread->requestExitAndWait();
201 }
Mathias Agopiana350ff92010-08-10 17:14:02 -0700202 if (mHwc) {
Jesse Hall5880cc52012-06-05 23:40:32 -0700203 hwc_close_1(mHwc);
Mathias Agopiana350ff92010-08-10 17:14:02 -0700204 }
Andy McFaddenb0d1dd32012-09-10 14:08:09 -0700205 if (mFbDev) {
206 framebuffer_close(mFbDev);
207 }
Mathias Agopian3e8b8532012-05-13 20:42:01 -0700208 delete mCBContext;
Mathias Agopiana350ff92010-08-10 17:14:02 -0700209}
210
Andy McFaddenb0d1dd32012-09-10 14:08:09 -0700211// Load and prepare the hardware composer module. Sets mHwc.
212void HWComposer::loadHwcModule()
213{
214 hw_module_t const* module;
215
216 if (hw_get_module(HWC_HARDWARE_MODULE_ID, &module) != 0) {
217 ALOGE("%s module not found", HWC_HARDWARE_MODULE_ID);
218 return;
219 }
220
221 int err = hwc_open_1(module, &mHwc);
222 if (err) {
223 ALOGE("%s device failed to initialize (%s)",
224 HWC_HARDWARE_COMPOSER, strerror(-err));
225 return;
226 }
227
228 if (!hwcHasApiVersion(mHwc, HWC_DEVICE_API_VERSION_1_0) ||
229 hwcHeaderVersion(mHwc) < MIN_HWC_HEADER_VERSION ||
230 hwcHeaderVersion(mHwc) > HWC_HEADER_VERSION) {
231 ALOGE("%s device version %#x unsupported, will not be used",
232 HWC_HARDWARE_COMPOSER, mHwc->common.version);
233 hwc_close_1(mHwc);
234 mHwc = NULL;
235 return;
236 }
237}
238
239// Load and prepare the FB HAL, which uses the gralloc module. Sets mFbDev.
Jesse Hallef64b752013-03-18 11:28:50 -0700240int HWComposer::loadFbHalModule()
Andy McFaddenb0d1dd32012-09-10 14:08:09 -0700241{
242 hw_module_t const* module;
243
Jesse Hallef64b752013-03-18 11:28:50 -0700244 int err = hw_get_module(GRALLOC_HARDWARE_MODULE_ID, &module);
245 if (err != 0) {
Andy McFaddenb0d1dd32012-09-10 14:08:09 -0700246 ALOGE("%s module not found", GRALLOC_HARDWARE_MODULE_ID);
Jesse Hallef64b752013-03-18 11:28:50 -0700247 return err;
Andy McFaddenb0d1dd32012-09-10 14:08:09 -0700248 }
249
Jesse Hallef64b752013-03-18 11:28:50 -0700250 return framebuffer_open(module, &mFbDev);
Andy McFaddenb0d1dd32012-09-10 14:08:09 -0700251}
252
Mathias Agopiana350ff92010-08-10 17:14:02 -0700253status_t HWComposer::initCheck() const {
254 return mHwc ? NO_ERROR : NO_INIT;
255}
256
Jesse Hallbbd164a2012-08-21 12:05:09 -0700257void HWComposer::hook_invalidate(const struct hwc_procs* procs) {
258 cb_context* ctx = reinterpret_cast<cb_context*>(
259 const_cast<hwc_procs_t*>(procs));
260 ctx->hwc->invalidate();
Mathias Agopianc7d14e22011-08-01 16:32:21 -0700261}
262
Jesse Hall1bd20e02012-08-29 10:47:52 -0700263void HWComposer::hook_vsync(const struct hwc_procs* procs, int disp,
Jesse Hallbbd164a2012-08-21 12:05:09 -0700264 int64_t timestamp) {
265 cb_context* ctx = reinterpret_cast<cb_context*>(
266 const_cast<hwc_procs_t*>(procs));
Jesse Hall1bd20e02012-08-29 10:47:52 -0700267 ctx->hwc->vsync(disp, timestamp);
268}
269
270void HWComposer::hook_hotplug(const struct hwc_procs* procs, int disp,
271 int connected) {
272 cb_context* ctx = reinterpret_cast<cb_context*>(
273 const_cast<hwc_procs_t*>(procs));
274 ctx->hwc->hotplug(disp, connected);
Mathias Agopian31d28432012-04-03 16:31:39 -0700275}
276
Mathias Agopianc7d14e22011-08-01 16:32:21 -0700277void HWComposer::invalidate() {
Mathias Agopiane2c2f922011-10-05 15:00:22 -0700278 mFlinger->repaintEverything();
Mathias Agopianc7d14e22011-08-01 16:32:21 -0700279}
280
Jesse Hall1bd20e02012-08-29 10:47:52 -0700281void HWComposer::vsync(int disp, int64_t timestamp) {
Mathias Agopianbef42c52013-08-21 17:45:46 -0700282 if (uint32_t(disp) < HWC_NUM_PHYSICAL_DISPLAY_TYPES) {
Jesse Hall8e26b282013-10-14 12:36:45 -0700283 {
284 Mutex::Autolock _l(mLock);
285
286 // There have been reports of HWCs that signal several vsync events
287 // with the same timestamp when turning the display off and on. This
288 // is a bug in the HWC implementation, but filter the extra events
289 // out here so they don't cause havoc downstream.
290 if (timestamp == mLastHwVSync[disp]) {
Michael Lentine258ee432014-07-30 16:24:48 -0700291 ALOGW("Ignoring duplicate VSYNC event from HWC (t=%" PRId64 ")",
Jesse Hall8e26b282013-10-14 12:36:45 -0700292 timestamp);
293 return;
294 }
295
296 mLastHwVSync[disp] = timestamp;
297 }
298
Mathias Agopianbef42c52013-08-21 17:45:46 -0700299 char tag[16];
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700300 snprintf(tag, sizeof(tag), "HW_VSYNC_%1u", disp);
Mathias Agopianbef42c52013-08-21 17:45:46 -0700301 ATRACE_INT(tag, ++mVSyncCounts[disp] & 1);
302
303 mEventHandler.onVSyncReceived(disp, timestamp);
Mathias Agopianbef42c52013-08-21 17:45:46 -0700304 }
Mathias Agopiand3ee2312012-08-02 14:01:42 -0700305}
306
Jesse Hall1bd20e02012-08-29 10:47:52 -0700307void HWComposer::hotplug(int disp, int connected) {
Michael Lentine10613dc2015-05-12 18:04:26 -0700308 if (disp >= VIRTUAL_DISPLAY_ID_BASE) {
Jesse Hall1bd20e02012-08-29 10:47:52 -0700309 ALOGE("hotplug event received for invalid display: disp=%d connected=%d",
310 disp, connected);
311 return;
312 }
Mathias Agopianf5a33922012-09-19 18:16:22 -0700313 queryDisplayProperties(disp);
Michael Lentine10613dc2015-05-12 18:04:26 -0700314 // Do not teardown or recreate the primary display
315 if (disp != HWC_DISPLAY_PRIMARY) {
316 mEventHandler.onHotplugReceived(disp, bool(connected));
317 }
Jesse Hall1bd20e02012-08-29 10:47:52 -0700318}
319
Jesse Hallbacc28e2014-09-28 12:14:12 -0700320static float getDefaultDensity(uint32_t width, uint32_t height) {
321 // Default density is based on TVs: 1080p displays get XHIGH density,
322 // lower-resolution displays get TV density. Maybe eventually we'll need
323 // to update it for 4K displays, though hopefully those just report
324 // accurate DPI information to begin with. This is also used for virtual
325 // displays and even primary displays with older hwcomposers, so be
326 // careful about orientation.
327
328 uint32_t h = width < height ? width : height;
329 if (h >= 1080) return ACONFIGURATION_DENSITY_XHIGH;
330 else return ACONFIGURATION_DENSITY_TV;
Jesse Hall1c569c42013-04-05 13:44:52 -0700331}
332
Jesse Hall1bd20e02012-08-29 10:47:52 -0700333static const uint32_t DISPLAY_ATTRIBUTES[] = {
334 HWC_DISPLAY_VSYNC_PERIOD,
Jesse Halldb276212012-09-07 11:20:56 -0700335 HWC_DISPLAY_WIDTH,
336 HWC_DISPLAY_HEIGHT,
Jesse Hall1bd20e02012-08-29 10:47:52 -0700337 HWC_DISPLAY_DPI_X,
338 HWC_DISPLAY_DPI_Y,
Dan Stozaf2699fc2015-08-31 12:06:48 -0700339 HWC_DISPLAY_COLOR_TRANSFORM,
Jesse Hall1bd20e02012-08-29 10:47:52 -0700340 HWC_DISPLAY_NO_ATTRIBUTE,
341};
342#define NUM_DISPLAY_ATTRIBUTES (sizeof(DISPLAY_ATTRIBUTES) / sizeof(DISPLAY_ATTRIBUTES)[0])
343
Dan Stozaf2699fc2015-08-31 12:06:48 -0700344static const uint32_t PRE_HWC15_DISPLAY_ATTRIBUTES[] = {
345 HWC_DISPLAY_VSYNC_PERIOD,
346 HWC_DISPLAY_WIDTH,
347 HWC_DISPLAY_HEIGHT,
348 HWC_DISPLAY_DPI_X,
349 HWC_DISPLAY_DPI_Y,
350 HWC_DISPLAY_NO_ATTRIBUTE,
351};
352
Mathias Agopian1604f772012-09-18 21:54:42 -0700353status_t HWComposer::queryDisplayProperties(int disp) {
354
Mathias Agopianda27af92012-09-13 18:17:13 -0700355 LOG_ALWAYS_FATAL_IF(!mHwc || !hwcHasApiVersion(mHwc, HWC_DEVICE_API_VERSION_1_1));
Jesse Hall1bd20e02012-08-29 10:47:52 -0700356
Andy McFaddenb0d1dd32012-09-10 14:08:09 -0700357 // use zero as default value for unspecified attributes
Jesse Hall1bd20e02012-08-29 10:47:52 -0700358 int32_t values[NUM_DISPLAY_ATTRIBUTES - 1];
359 memset(values, 0, sizeof(values));
360
Dan Stoza7f7da322014-05-02 15:26:25 -0700361 const size_t MAX_NUM_CONFIGS = 128;
362 uint32_t configs[MAX_NUM_CONFIGS] = {0};
363 size_t numConfigs = MAX_NUM_CONFIGS;
364 status_t err = mHwc->getDisplayConfigs(mHwc, disp, configs, &numConfigs);
Mathias Agopian1604f772012-09-18 21:54:42 -0700365 if (err != NO_ERROR) {
366 // this can happen if an unpluggable display is not connected
Mathias Agopianf5a33922012-09-19 18:16:22 -0700367 mDisplayData[disp].connected = false;
Mathias Agopian1604f772012-09-18 21:54:42 -0700368 return err;
Jesse Hall1bd20e02012-08-29 10:47:52 -0700369 }
370
Dan Stoza7f7da322014-05-02 15:26:25 -0700371 mDisplayData[disp].currentConfig = 0;
372 for (size_t c = 0; c < numConfigs; ++c) {
373 err = mHwc->getDisplayAttributes(mHwc, disp, configs[c],
374 DISPLAY_ATTRIBUTES, values);
Dan Stozaf2699fc2015-08-31 12:06:48 -0700375 // If this is a pre-1.5 HWC, it may not know about color transform, so
376 // try again with a smaller set of attributes
377 if (err != NO_ERROR) {
378 err = mHwc->getDisplayAttributes(mHwc, disp, configs[c],
379 PRE_HWC15_DISPLAY_ATTRIBUTES, values);
380 }
Dan Stoza7f7da322014-05-02 15:26:25 -0700381 if (err != NO_ERROR) {
382 // we can't get this display's info. turn it off.
383 mDisplayData[disp].connected = false;
384 return err;
Jesse Hall1bd20e02012-08-29 10:47:52 -0700385 }
Dan Stoza7f7da322014-05-02 15:26:25 -0700386
387 DisplayConfig config = DisplayConfig();
388 for (size_t i = 0; i < NUM_DISPLAY_ATTRIBUTES - 1; i++) {
389 switch (DISPLAY_ATTRIBUTES[i]) {
390 case HWC_DISPLAY_VSYNC_PERIOD:
391 config.refresh = nsecs_t(values[i]);
392 break;
393 case HWC_DISPLAY_WIDTH:
394 config.width = values[i];
395 break;
396 case HWC_DISPLAY_HEIGHT:
397 config.height = values[i];
398 break;
399 case HWC_DISPLAY_DPI_X:
400 config.xdpi = values[i] / 1000.0f;
401 break;
402 case HWC_DISPLAY_DPI_Y:
403 config.ydpi = values[i] / 1000.0f;
404 break;
Dan Stozaf2699fc2015-08-31 12:06:48 -0700405 case HWC_DISPLAY_COLOR_TRANSFORM:
406 config.colorTransform = values[i];
407 break;
Dan Stoza7f7da322014-05-02 15:26:25 -0700408 default:
Michael Lentineb54ee772014-08-07 14:54:23 -0700409 ALOG_ASSERT(false, "unknown display attribute[%zu] %#x",
Dan Stoza7f7da322014-05-02 15:26:25 -0700410 i, DISPLAY_ATTRIBUTES[i]);
411 break;
412 }
413 }
414
415 if (config.xdpi == 0.0f || config.ydpi == 0.0f) {
Jesse Hallbacc28e2014-09-28 12:14:12 -0700416 float dpi = getDefaultDensity(config.width, config.height);
Dan Stoza7f7da322014-05-02 15:26:25 -0700417 config.xdpi = dpi;
418 config.ydpi = dpi;
419 }
420
421 mDisplayData[disp].configs.push_back(config);
Jesse Hall1bd20e02012-08-29 10:47:52 -0700422 }
423
Mathias Agopianf5a33922012-09-19 18:16:22 -0700424 // FIXME: what should we set the format to?
425 mDisplayData[disp].format = HAL_PIXEL_FORMAT_RGBA_8888;
426 mDisplayData[disp].connected = true;
Mathias Agopian1604f772012-09-18 21:54:42 -0700427 return NO_ERROR;
Jesse Hall1bd20e02012-08-29 10:47:52 -0700428}
429
Jesse Hall1c569c42013-04-05 13:44:52 -0700430status_t HWComposer::setVirtualDisplayProperties(int32_t id,
431 uint32_t w, uint32_t h, uint32_t format) {
432 if (id < VIRTUAL_DISPLAY_ID_BASE || id >= int32_t(mNumDisplays) ||
433 !mAllocatedDisplayIDs.hasBit(id)) {
434 return BAD_INDEX;
435 }
Dan Stoza7f7da322014-05-02 15:26:25 -0700436 size_t configId = mDisplayData[id].currentConfig;
Jesse Hall1c569c42013-04-05 13:44:52 -0700437 mDisplayData[id].format = format;
Dan Stoza7f7da322014-05-02 15:26:25 -0700438 DisplayConfig& config = mDisplayData[id].configs.editItemAt(configId);
439 config.width = w;
440 config.height = h;
Jesse Hallbacc28e2014-09-28 12:14:12 -0700441 config.xdpi = config.ydpi = getDefaultDensity(w, h);
Jesse Hall1c569c42013-04-05 13:44:52 -0700442 return NO_ERROR;
443}
444
Mathias Agopiane60b0682012-08-21 23:34:09 -0700445int32_t HWComposer::allocateDisplayId() {
Mathias Agopianf4358632012-08-22 17:16:19 -0700446 if (mAllocatedDisplayIDs.count() >= mNumDisplays) {
Mathias Agopiane60b0682012-08-21 23:34:09 -0700447 return NO_MEMORY;
448 }
Mathias Agopianf4358632012-08-22 17:16:19 -0700449 int32_t id = mAllocatedDisplayIDs.firstUnmarkedBit();
450 mAllocatedDisplayIDs.markBit(id);
Jesse Hall7adb0f82013-03-06 16:13:49 -0800451 mDisplayData[id].connected = true;
Dan Stoza7f7da322014-05-02 15:26:25 -0700452 mDisplayData[id].configs.resize(1);
453 mDisplayData[id].currentConfig = 0;
Mathias Agopiane60b0682012-08-21 23:34:09 -0700454 return id;
455}
456
457status_t HWComposer::freeDisplayId(int32_t id) {
Jesse Hall9e663de2013-08-16 14:28:37 -0700458 if (id < NUM_BUILTIN_DISPLAYS) {
Mathias Agopianf4358632012-08-22 17:16:19 -0700459 // cannot free the reserved IDs
Mathias Agopiane60b0682012-08-21 23:34:09 -0700460 return BAD_VALUE;
461 }
Mathias Agopianf4358632012-08-22 17:16:19 -0700462 if (uint32_t(id)>31 || !mAllocatedDisplayIDs.hasBit(id)) {
Mathias Agopiane60b0682012-08-21 23:34:09 -0700463 return BAD_INDEX;
464 }
Mathias Agopianf4358632012-08-22 17:16:19 -0700465 mAllocatedDisplayIDs.clearBit(id);
Jesse Hall7adb0f82013-03-06 16:13:49 -0800466 mDisplayData[id].connected = false;
Mathias Agopiane60b0682012-08-21 23:34:09 -0700467 return NO_ERROR;
468}
469
Andy McFaddenb0d1dd32012-09-10 14:08:09 -0700470nsecs_t HWComposer::getRefreshTimestamp(int disp) const {
Mathias Agopiand3ee2312012-08-02 14:01:42 -0700471 // this returns the last refresh timestamp.
472 // if the last one is not available, we estimate it based on
473 // the refresh period and whatever closest timestamp we have.
474 Mutex::Autolock _l(mLock);
475 nsecs_t now = systemTime(CLOCK_MONOTONIC);
Dan Stoza7f7da322014-05-02 15:26:25 -0700476 size_t configId = mDisplayData[disp].currentConfig;
477 return now - ((now - mLastHwVSync[disp]) %
478 mDisplayData[disp].configs[configId].refresh);
Mathias Agopian3eb38cb2012-04-03 22:09:52 -0700479}
480
Jamie Gennis2ec3e072012-11-11 16:24:33 -0800481sp<Fence> HWComposer::getDisplayFence(int disp) const {
482 return mDisplayData[disp].lastDisplayFence;
483}
484
Andy McFaddenb0d1dd32012-09-10 14:08:09 -0700485uint32_t HWComposer::getFormat(int disp) const {
Ajay Dudani4e3e30c2015-05-03 11:44:55 -0700486 if (static_cast<uint32_t>(disp) >= MAX_HWC_DISPLAYS || !mAllocatedDisplayIDs.hasBit(disp)) {
Jesse Hall19e87292013-12-23 21:02:15 -0800487 return HAL_PIXEL_FORMAT_RGBA_8888;
488 } else {
489 return mDisplayData[disp].format;
490 }
Andy McFaddenb0d1dd32012-09-10 14:08:09 -0700491}
492
Dan Stoza7f7da322014-05-02 15:26:25 -0700493bool HWComposer::isConnected(int disp) const {
494 return mDisplayData[disp].connected;
495}
496
497uint32_t HWComposer::getWidth(int disp) const {
498 size_t currentConfig = mDisplayData[disp].currentConfig;
499 return mDisplayData[disp].configs[currentConfig].width;
500}
501
502uint32_t HWComposer::getHeight(int disp) const {
503 size_t currentConfig = mDisplayData[disp].currentConfig;
504 return mDisplayData[disp].configs[currentConfig].height;
505}
506
Andy McFaddenb0d1dd32012-09-10 14:08:09 -0700507float HWComposer::getDpiX(int disp) const {
Dan Stoza7f7da322014-05-02 15:26:25 -0700508 size_t currentConfig = mDisplayData[disp].currentConfig;
509 return mDisplayData[disp].configs[currentConfig].xdpi;
Andy McFaddenb0d1dd32012-09-10 14:08:09 -0700510}
511
512float HWComposer::getDpiY(int disp) const {
Dan Stoza7f7da322014-05-02 15:26:25 -0700513 size_t currentConfig = mDisplayData[disp].currentConfig;
514 return mDisplayData[disp].configs[currentConfig].ydpi;
Mathias Agopian8b736f12012-08-13 17:54:26 -0700515}
516
Dan Stoza7f7da322014-05-02 15:26:25 -0700517nsecs_t HWComposer::getRefreshPeriod(int disp) const {
518 size_t currentConfig = mDisplayData[disp].currentConfig;
519 return mDisplayData[disp].configs[currentConfig].refresh;
520}
521
522const Vector<HWComposer::DisplayConfig>& HWComposer::getConfigs(int disp) const {
523 return mDisplayData[disp].configs;
524}
525
526size_t HWComposer::getCurrentConfig(int disp) const {
527 return mDisplayData[disp].currentConfig;
Mathias Agopianf5a33922012-09-19 18:16:22 -0700528}
529
Mathias Agopian81cd5d32012-10-04 02:34:38 -0700530void HWComposer::eventControl(int disp, int event, int enabled) {
531 if (uint32_t(disp)>31 || !mAllocatedDisplayIDs.hasBit(disp)) {
Andy McFadden620685c2012-10-19 12:53:46 -0700532 ALOGD("eventControl ignoring event %d on unallocated disp %d (en=%d)",
533 event, disp, enabled);
534 return;
535 }
536 if (event != EVENT_VSYNC) {
537 ALOGW("eventControl got unexpected event %d (disp=%d en=%d)",
538 event, disp, enabled);
Mathias Agopian81cd5d32012-10-04 02:34:38 -0700539 return;
540 }
Mathias Agopian3eb38cb2012-04-03 22:09:52 -0700541 status_t err = NO_ERROR;
Mathias Agopian81cd5d32012-10-04 02:34:38 -0700542 if (mHwc && !mDebugForceFakeVSync) {
543 // NOTE: we use our own internal lock here because we have to call
544 // into the HWC with the lock held, and we want to make sure
545 // that even if HWC blocks (which it shouldn't), it won't
546 // affect other threads.
547 Mutex::Autolock _l(mEventControlLock);
548 const int32_t eventBit = 1UL << event;
549 const int32_t newValue = enabled ? eventBit : 0;
550 const int32_t oldValue = mDisplayData[disp].events & eventBit;
551 if (newValue != oldValue) {
552 ATRACE_CALL();
553 err = mHwc->eventControl(mHwc, disp, event, enabled);
554 if (!err) {
555 int32_t& events(mDisplayData[disp].events);
556 events = (events & ~eventBit) | newValue;
Jesse Hall4d407a02014-08-25 14:44:16 -0700557
558 char tag[16];
559 snprintf(tag, sizeof(tag), "HW_VSYNC_ON_%1u", disp);
560 ATRACE_INT(tag, enabled);
Mathias Agopian81cd5d32012-10-04 02:34:38 -0700561 }
Mathias Agopiane2c4f4e2012-04-10 18:25:31 -0700562 }
Mathias Agopian81cd5d32012-10-04 02:34:38 -0700563 // error here should not happen -- not sure what we should
564 // do if it does.
565 ALOGE_IF(err, "eventControl(%d, %d) failed %s",
566 event, enabled, strerror(-err));
Mathias Agopian3eb38cb2012-04-03 22:09:52 -0700567 }
Mathias Agopian3a778712012-04-09 14:16:47 -0700568
569 if (err == NO_ERROR && mVSyncThread != NULL) {
570 mVSyncThread->setEnabled(enabled);
571 }
Mathias Agopian31d28432012-04-03 16:31:39 -0700572}
573
Mathias Agopian5f20e2d2012-08-10 18:50:38 -0700574status_t HWComposer::createWorkList(int32_t id, size_t numLayers) {
Mathias Agopianf4358632012-08-22 17:16:19 -0700575 if (uint32_t(id)>31 || !mAllocatedDisplayIDs.hasBit(id)) {
Mathias Agopian1e260872012-08-08 18:35:12 -0700576 return BAD_INDEX;
Mathias Agopiane60b0682012-08-21 23:34:09 -0700577 }
Mathias Agopian1e260872012-08-08 18:35:12 -0700578
Mathias Agopian45721772010-08-12 15:03:26 -0700579 if (mHwc) {
Mathias Agopianf4358632012-08-22 17:16:19 -0700580 DisplayData& disp(mDisplayData[id]);
Mathias Agopianda27af92012-09-13 18:17:13 -0700581 if (hwcHasApiVersion(mHwc, HWC_DEVICE_API_VERSION_1_1)) {
582 // we need space for the HWC_FRAMEBUFFER_TARGET
583 numLayers++;
584 }
Andy McFadden13a082e2012-08-24 10:16:42 -0700585 if (disp.capacity < numLayers || disp.list == NULL) {
Mathias Agopianda27af92012-09-13 18:17:13 -0700586 size_t size = sizeof(hwc_display_contents_1_t)
Mathias Agopianf4358632012-08-22 17:16:19 -0700587 + numLayers * sizeof(hwc_layer_1_t);
588 free(disp.list);
589 disp.list = (hwc_display_contents_1_t*)malloc(size);
590 disp.capacity = numLayers;
Mathias Agopian45721772010-08-12 15:03:26 -0700591 }
Mathias Agopianda27af92012-09-13 18:17:13 -0700592 if (hwcHasApiVersion(mHwc, HWC_DEVICE_API_VERSION_1_1)) {
593 disp.framebufferTarget = &disp.list->hwLayers[numLayers - 1];
594 memset(disp.framebufferTarget, 0, sizeof(hwc_layer_1_t));
Dan Stoza7f7da322014-05-02 15:26:25 -0700595 const DisplayConfig& currentConfig =
596 disp.configs[disp.currentConfig];
597 const hwc_rect_t r = { 0, 0,
598 (int) currentConfig.width, (int) currentConfig.height };
Mathias Agopianda27af92012-09-13 18:17:13 -0700599 disp.framebufferTarget->compositionType = HWC_FRAMEBUFFER_TARGET;
600 disp.framebufferTarget->hints = 0;
601 disp.framebufferTarget->flags = 0;
602 disp.framebufferTarget->handle = disp.fbTargetHandle;
603 disp.framebufferTarget->transform = 0;
604 disp.framebufferTarget->blending = HWC_BLENDING_PREMULT;
Mathias Agopian8f63c202013-09-25 20:44:34 -0700605 if (hwcHasApiVersion(mHwc, HWC_DEVICE_API_VERSION_1_3)) {
606 disp.framebufferTarget->sourceCropf.left = 0;
607 disp.framebufferTarget->sourceCropf.top = 0;
Dan Stoza7f7da322014-05-02 15:26:25 -0700608 disp.framebufferTarget->sourceCropf.right =
609 currentConfig.width;
610 disp.framebufferTarget->sourceCropf.bottom =
611 currentConfig.height;
Mathias Agopian8f63c202013-09-25 20:44:34 -0700612 } else {
613 disp.framebufferTarget->sourceCrop = r;
614 }
Mathias Agopianda27af92012-09-13 18:17:13 -0700615 disp.framebufferTarget->displayFrame = r;
616 disp.framebufferTarget->visibleRegionScreen.numRects = 1;
617 disp.framebufferTarget->visibleRegionScreen.rects =
618 &disp.framebufferTarget->displayFrame;
619 disp.framebufferTarget->acquireFenceFd = -1;
620 disp.framebufferTarget->releaseFenceFd = -1;
Mathias Agopian70a6e882013-03-21 16:25:12 -0700621 disp.framebufferTarget->planeAlpha = 0xFF;
Mathias Agopianda27af92012-09-13 18:17:13 -0700622 }
Jesse Halldb276212012-09-07 11:20:56 -0700623 disp.list->retireFenceFd = -1;
Mathias Agopianf4358632012-08-22 17:16:19 -0700624 disp.list->flags = HWC_GEOMETRY_CHANGED;
625 disp.list->numHwLayers = numLayers;
Mathias Agopiana350ff92010-08-10 17:14:02 -0700626 }
627 return NO_ERROR;
628}
629
Mathias Agopianda27af92012-09-13 18:17:13 -0700630status_t HWComposer::setFramebufferTarget(int32_t id,
631 const sp<Fence>& acquireFence, const sp<GraphicBuffer>& buf) {
632 if (uint32_t(id)>31 || !mAllocatedDisplayIDs.hasBit(id)) {
633 return BAD_INDEX;
634 }
635 DisplayData& disp(mDisplayData[id]);
636 if (!disp.framebufferTarget) {
637 // this should never happen, but apparently eglCreateWindowSurface()
Mathias Agopiane3c697f2013-02-14 17:11:02 -0800638 // triggers a Surface::queueBuffer() on some
Mathias Agopianda27af92012-09-13 18:17:13 -0700639 // devices (!?) -- log and ignore.
640 ALOGE("HWComposer: framebufferTarget is null");
Mathias Agopianda27af92012-09-13 18:17:13 -0700641 return NO_ERROR;
642 }
643
644 int acquireFenceFd = -1;
Jamie Gennis1df8c342012-12-20 14:05:45 -0800645 if (acquireFence->isValid()) {
Mathias Agopianda27af92012-09-13 18:17:13 -0700646 acquireFenceFd = acquireFence->dup();
647 }
648
649 // ALOGD("fbPost: handle=%p, fence=%d", buf->handle, acquireFenceFd);
650 disp.fbTargetHandle = buf->handle;
651 disp.framebufferTarget->handle = disp.fbTargetHandle;
652 disp.framebufferTarget->acquireFenceFd = acquireFenceFd;
653 return NO_ERROR;
654}
655
Mathias Agopiane60b0682012-08-21 23:34:09 -0700656status_t HWComposer::prepare() {
Manoj Kumar AVMe04e4ed2015-06-11 14:18:14 -0700657 Mutex::Autolock _l(mDisplayLock);
Mathias Agopianf4358632012-08-22 17:16:19 -0700658 for (size_t i=0 ; i<mNumDisplays ; i++) {
Mathias Agopianda27af92012-09-13 18:17:13 -0700659 DisplayData& disp(mDisplayData[i]);
660 if (disp.framebufferTarget) {
661 // make sure to reset the type to HWC_FRAMEBUFFER_TARGET
662 // DO NOT reset the handle field to NULL, because it's possible
663 // that we have nothing to redraw (eg: eglSwapBuffers() not called)
664 // in which case, we should continue to use the same buffer.
Andy McFadden27ec5732012-10-02 19:04:45 -0700665 LOG_FATAL_IF(disp.list == NULL);
Mathias Agopianda27af92012-09-13 18:17:13 -0700666 disp.framebufferTarget->compositionType = HWC_FRAMEBUFFER_TARGET;
667 }
Andy McFadden27ec5732012-10-02 19:04:45 -0700668 if (!disp.connected && disp.list != NULL) {
Michael Lentine258ee432014-07-30 16:24:48 -0700669 ALOGW("WARNING: disp %zu: connected, non-null list, layers=%zu",
Andy McFadden27ec5732012-10-02 19:04:45 -0700670 i, disp.list->numHwLayers);
671 }
Mathias Agopianda27af92012-09-13 18:17:13 -0700672 mLists[i] = disp.list;
Mathias Agopianf4358632012-08-22 17:16:19 -0700673 if (mLists[i]) {
Jesse Hall38efe862013-04-06 23:12:29 -0700674 if (hwcHasApiVersion(mHwc, HWC_DEVICE_API_VERSION_1_3)) {
Jesse Hallf7a67582013-11-05 16:12:31 -0800675 mLists[i]->outbuf = disp.outbufHandle;
Jesse Halldb276212012-09-07 11:20:56 -0700676 mLists[i]->outbufAcquireFenceFd = -1;
677 } else if (hwcHasApiVersion(mHwc, HWC_DEVICE_API_VERSION_1_1)) {
678 // garbage data to catch improper use
679 mLists[i]->dpy = (hwc_display_t)0xDEADBEEF;
680 mLists[i]->sur = (hwc_surface_t)0xDEADBEEF;
681 } else {
682 mLists[i]->dpy = EGL_NO_DISPLAY;
683 mLists[i]->sur = EGL_NO_SURFACE;
684 }
Mathias Agopianf4358632012-08-22 17:16:19 -0700685 }
686 }
Jesse Halldb276212012-09-07 11:20:56 -0700687
Mathias Agopianf4358632012-08-22 17:16:19 -0700688 int err = mHwc->prepare(mHwc, mNumDisplays, mLists);
Mathias Agopianda27af92012-09-13 18:17:13 -0700689 ALOGE_IF(err, "HWComposer: prepare failed (%s)", strerror(-err));
690
Mathias Agopian9c6e2972011-09-20 17:21:56 -0700691 if (err == NO_ERROR) {
Mathias Agopian5f20e2d2012-08-10 18:50:38 -0700692 // here we're just making sure that "skip" layers are set
693 // to HWC_FRAMEBUFFER and we're also counting how many layers
694 // we have of each type.
Jesse Halld05a17f2013-09-30 16:49:30 -0700695 //
696 // If there are no window layers, we treat the display has having FB
697 // composition, because SurfaceFlinger will use GLES to draw the
698 // wormhole region.
Mathias Agopianf4358632012-08-22 17:16:19 -0700699 for (size_t i=0 ; i<mNumDisplays ; i++) {
700 DisplayData& disp(mDisplayData[i]);
701 disp.hasFbComp = false;
702 disp.hasOvComp = false;
703 if (disp.list) {
704 for (size_t i=0 ; i<disp.list->numHwLayers ; i++) {
705 hwc_layer_1_t& l = disp.list->hwLayers[i];
Mathias Agopianda27af92012-09-13 18:17:13 -0700706
707 //ALOGD("prepare: %d, type=%d, handle=%p",
708 // i, l.compositionType, l.handle);
709
Mathias Agopianf4358632012-08-22 17:16:19 -0700710 if (l.flags & HWC_SKIP_LAYER) {
711 l.compositionType = HWC_FRAMEBUFFER;
712 }
713 if (l.compositionType == HWC_FRAMEBUFFER) {
714 disp.hasFbComp = true;
715 }
716 if (l.compositionType == HWC_OVERLAY) {
717 disp.hasOvComp = true;
718 }
Riley Andrews03414a12014-07-01 14:22:59 -0700719 if (l.compositionType == HWC_CURSOR_OVERLAY) {
720 disp.hasOvComp = true;
721 }
Mathias Agopianf4358632012-08-22 17:16:19 -0700722 }
Jesse Halld05a17f2013-09-30 16:49:30 -0700723 if (disp.list->numHwLayers == (disp.framebufferTarget ? 1 : 0)) {
724 disp.hasFbComp = true;
725 }
726 } else {
727 disp.hasFbComp = true;
Mathias Agopian9c6e2972011-09-20 17:21:56 -0700728 }
Mathias Agopian9c6e2972011-09-20 17:21:56 -0700729 }
Mathias Agopian9c6e2972011-09-20 17:21:56 -0700730 }
Mathias Agopiana350ff92010-08-10 17:14:02 -0700731 return (status_t)err;
732}
733
Mathias Agopiane60b0682012-08-21 23:34:09 -0700734bool HWComposer::hasHwcComposition(int32_t id) const {
Jesse Hall99c7dbb2013-03-14 14:29:29 -0700735 if (!mHwc || uint32_t(id)>31 || !mAllocatedDisplayIDs.hasBit(id))
Mathias Agopiane60b0682012-08-21 23:34:09 -0700736 return false;
737 return mDisplayData[id].hasOvComp;
Mathias Agopian9c6e2972011-09-20 17:21:56 -0700738}
739
Mathias Agopiane60b0682012-08-21 23:34:09 -0700740bool HWComposer::hasGlesComposition(int32_t id) const {
Jesse Hall99c7dbb2013-03-14 14:29:29 -0700741 if (!mHwc || uint32_t(id)>31 || !mAllocatedDisplayIDs.hasBit(id))
742 return true;
Mathias Agopiane60b0682012-08-21 23:34:09 -0700743 return mDisplayData[id].hasFbComp;
744}
745
Jesse Hall13f01cb2013-03-20 11:37:21 -0700746sp<Fence> HWComposer::getAndResetReleaseFence(int32_t id) {
Mathias Agopianda27af92012-09-13 18:17:13 -0700747 if (uint32_t(id)>31 || !mAllocatedDisplayIDs.hasBit(id))
Jesse Hall13f01cb2013-03-20 11:37:21 -0700748 return Fence::NO_FENCE;
Mathias Agopianda27af92012-09-13 18:17:13 -0700749
750 int fd = INVALID_OPERATION;
751 if (mHwc && hwcHasApiVersion(mHwc, HWC_DEVICE_API_VERSION_1_1)) {
752 const DisplayData& disp(mDisplayData[id]);
753 if (disp.framebufferTarget) {
754 fd = disp.framebufferTarget->releaseFenceFd;
Jamie Gennisd30b36d2012-09-30 20:02:03 -0700755 disp.framebufferTarget->acquireFenceFd = -1;
Mathias Agopianda27af92012-09-13 18:17:13 -0700756 disp.framebufferTarget->releaseFenceFd = -1;
757 }
758 }
Jesse Hall13f01cb2013-03-20 11:37:21 -0700759 return fd >= 0 ? new Fence(fd) : Fence::NO_FENCE;
Mathias Agopianda27af92012-09-13 18:17:13 -0700760}
761
Mathias Agopian30bcc612012-08-22 15:39:48 -0700762status_t HWComposer::commit() {
Mathias Agopian86303202012-07-24 22:46:10 -0700763 int err = NO_ERROR;
764 if (mHwc) {
Jesse Hall9eb1eb52012-08-29 10:39:38 -0700765 if (!hwcHasApiVersion(mHwc, HWC_DEVICE_API_VERSION_1_1)) {
Mathias Agopian30bcc612012-08-22 15:39:48 -0700766 // On version 1.0, the OpenGL ES target surface is communicated
Mathias Agopianf4358632012-08-22 17:16:19 -0700767 // by the (dpy, sur) fields and we are guaranteed to have only
768 // a single display.
Mathias Agopian30bcc612012-08-22 15:39:48 -0700769 mLists[0]->dpy = eglGetCurrentDisplay();
770 mLists[0]->sur = eglGetCurrentSurface(EGL_DRAW);
Mathias Agopian86303202012-07-24 22:46:10 -0700771 }
Mathias Agopianf4358632012-08-22 17:16:19 -0700772
Jesse Hallafaf14b2013-03-20 13:42:29 -0700773 for (size_t i=VIRTUAL_DISPLAY_ID_BASE; i<mNumDisplays; i++) {
Jesse Hall80e0a392013-03-15 12:32:10 -0700774 DisplayData& disp(mDisplayData[i]);
Jesse Hall851cfe82013-03-20 13:44:00 -0700775 if (disp.outbufHandle) {
776 mLists[i]->outbuf = disp.outbufHandle;
Jesse Hall80e0a392013-03-15 12:32:10 -0700777 mLists[i]->outbufAcquireFenceFd =
Jesse Hall851cfe82013-03-20 13:44:00 -0700778 disp.outbufAcquireFence->dup();
Jesse Hall80e0a392013-03-15 12:32:10 -0700779 }
780 }
781
Mathias Agopian30bcc612012-08-22 15:39:48 -0700782 err = mHwc->set(mHwc, mNumDisplays, mLists);
Mathias Agopianf4358632012-08-22 17:16:19 -0700783
784 for (size_t i=0 ; i<mNumDisplays ; i++) {
785 DisplayData& disp(mDisplayData[i]);
Jamie Gennis2ec3e072012-11-11 16:24:33 -0800786 disp.lastDisplayFence = disp.lastRetireFence;
Jamie Gennis1df8c342012-12-20 14:05:45 -0800787 disp.lastRetireFence = Fence::NO_FENCE;
Mathias Agopianf4358632012-08-22 17:16:19 -0700788 if (disp.list) {
Jesse Halldb276212012-09-07 11:20:56 -0700789 if (disp.list->retireFenceFd != -1) {
Jamie Gennis2ec3e072012-11-11 16:24:33 -0800790 disp.lastRetireFence = new Fence(disp.list->retireFenceFd);
Jesse Halldb276212012-09-07 11:20:56 -0700791 disp.list->retireFenceFd = -1;
Mathias Agopianf4358632012-08-22 17:16:19 -0700792 }
793 disp.list->flags &= ~HWC_GEOMETRY_CHANGED;
794 }
Mathias Agopian30bcc612012-08-22 15:39:48 -0700795 }
Mathias Agopian58959342010-10-07 14:57:04 -0700796 }
Mathias Agopiana350ff92010-08-10 17:14:02 -0700797 return (status_t)err;
798}
799
Prashant Malani2c9b11f2014-05-25 01:36:31 -0700800status_t HWComposer::setPowerMode(int disp, int mode) {
Jesse Hallafaf14b2013-03-20 13:42:29 -0700801 LOG_FATAL_IF(disp >= VIRTUAL_DISPLAY_ID_BASE);
Mathias Agopian7ee4cd52011-09-02 12:22:39 -0700802 if (mHwc) {
Prashant Malani2c9b11f2014-05-25 01:36:31 -0700803 if (mode == HWC_POWER_MODE_OFF) {
804 eventControl(disp, HWC_EVENT_VSYNC, 0);
805 }
806 if (hwcHasApiVersion(mHwc, HWC_DEVICE_API_VERSION_1_4)) {
807 return (status_t)mHwc->setPowerMode(mHwc, disp, mode);
808 } else {
809 return (status_t)mHwc->blank(mHwc, disp,
810 mode == HWC_POWER_MODE_OFF ? 1 : 0);
811 }
Colin Cross10fbdb62012-07-12 17:56:34 -0700812 }
Colin Cross10fbdb62012-07-12 17:56:34 -0700813 return NO_ERROR;
814}
815
Michael Lentine6c9e34a2014-07-14 13:48:55 -0700816status_t HWComposer::setActiveConfig(int disp, int mode) {
817 LOG_FATAL_IF(disp >= VIRTUAL_DISPLAY_ID_BASE);
Michael Lentined3e69142014-08-21 14:43:13 -0700818 DisplayData& dd(mDisplayData[disp]);
819 dd.currentConfig = mode;
Michael Lentine6c9e34a2014-07-14 13:48:55 -0700820 if (mHwc && hwcHasApiVersion(mHwc, HWC_DEVICE_API_VERSION_1_4)) {
821 return (status_t)mHwc->setActiveConfig(mHwc, disp, mode);
822 } else {
823 LOG_FATAL_IF(mode != 0);
824 }
825 return NO_ERROR;
826}
827
Andy McFadden27ec5732012-10-02 19:04:45 -0700828void HWComposer::disconnectDisplay(int disp) {
Andy McFadden5a8f9012012-10-04 19:09:45 -0700829 LOG_ALWAYS_FATAL_IF(disp < 0 || disp == HWC_DISPLAY_PRIMARY);
Andy McFadden27ec5732012-10-02 19:04:45 -0700830 DisplayData& dd(mDisplayData[disp]);
Jesse Hall851cfe82013-03-20 13:44:00 -0700831 free(dd.list);
832 dd.list = NULL;
833 dd.framebufferTarget = NULL; // points into dd.list
834 dd.fbTargetHandle = NULL;
835 dd.outbufHandle = NULL;
836 dd.lastRetireFence = Fence::NO_FENCE;
837 dd.lastDisplayFence = Fence::NO_FENCE;
838 dd.outbufAcquireFence = Fence::NO_FENCE;
Naseer Ahmed949ea082014-08-20 16:31:58 -0400839 // clear all the previous configs and repopulate when a new
840 // device is added
841 dd.configs.clear();
Andy McFadden27ec5732012-10-02 19:04:45 -0700842}
843
Mathias Agopiancde87a32012-09-13 14:09:01 -0700844int HWComposer::getVisualID() const {
Jesse Halld3d35f12012-09-18 11:39:40 -0700845 if (mHwc && hwcHasApiVersion(mHwc, HWC_DEVICE_API_VERSION_1_1)) {
Mathias Agopianda27af92012-09-13 18:17:13 -0700846 // FIXME: temporary hack until HAL_PIXEL_FORMAT_IMPLEMENTATION_DEFINED
847 // is supported by the implementation. we can only be in this case
848 // if we have HWC 1.1
849 return HAL_PIXEL_FORMAT_RGBA_8888;
850 //return HAL_PIXEL_FORMAT_IMPLEMENTATION_DEFINED;
Andy McFaddenb0d1dd32012-09-10 14:08:09 -0700851 } else {
Mathias Agopiancde87a32012-09-13 14:09:01 -0700852 return mFbDev->format;
Andy McFaddenb0d1dd32012-09-10 14:08:09 -0700853 }
854}
855
Mathias Agopianda27af92012-09-13 18:17:13 -0700856bool HWComposer::supportsFramebufferTarget() const {
857 return (mHwc && hwcHasApiVersion(mHwc, HWC_DEVICE_API_VERSION_1_1));
858}
859
860int HWComposer::fbPost(int32_t id,
861 const sp<Fence>& acquireFence, const sp<GraphicBuffer>& buffer) {
Jesse Halld3d35f12012-09-18 11:39:40 -0700862 if (mHwc && hwcHasApiVersion(mHwc, HWC_DEVICE_API_VERSION_1_1)) {
Mathias Agopianda27af92012-09-13 18:17:13 -0700863 return setFramebufferTarget(id, acquireFence, buffer);
864 } else {
Mathias Agopianea74d3b2013-05-16 18:03:22 -0700865 acquireFence->waitForever("HWComposer::fbPost");
Mathias Agopianda27af92012-09-13 18:17:13 -0700866 return mFbDev->post(mFbDev, buffer->handle);
Mathias Agopiancde87a32012-09-13 14:09:01 -0700867 }
Mathias Agopiancde87a32012-09-13 14:09:01 -0700868}
869
870int HWComposer::fbCompositionComplete() {
Jesse Halld3d35f12012-09-18 11:39:40 -0700871 if (mHwc && hwcHasApiVersion(mHwc, HWC_DEVICE_API_VERSION_1_1))
Mathias Agopianda27af92012-09-13 18:17:13 -0700872 return NO_ERROR;
873
874 if (mFbDev->compositionComplete) {
875 return mFbDev->compositionComplete(mFbDev);
876 } else {
877 return INVALID_OPERATION;
Mathias Agopiancde87a32012-09-13 14:09:01 -0700878 }
Mathias Agopiancde87a32012-09-13 14:09:01 -0700879}
880
Andy McFaddenb0d1dd32012-09-10 14:08:09 -0700881void HWComposer::fbDump(String8& result) {
Mathias Agopiancde87a32012-09-13 14:09:01 -0700882 if (mFbDev && mFbDev->common.version >= 1 && mFbDev->dump) {
Andy McFaddenb0d1dd32012-09-10 14:08:09 -0700883 const size_t SIZE = 4096;
884 char buffer[SIZE];
885 mFbDev->dump(mFbDev, buffer, SIZE);
886 result.append(buffer);
887 }
888}
889
Jesse Hall851cfe82013-03-20 13:44:00 -0700890status_t HWComposer::setOutputBuffer(int32_t id, const sp<Fence>& acquireFence,
891 const sp<GraphicBuffer>& buf) {
892 if (uint32_t(id)>31 || !mAllocatedDisplayIDs.hasBit(id))
893 return BAD_INDEX;
894 if (id < VIRTUAL_DISPLAY_ID_BASE)
895 return INVALID_OPERATION;
896
897 DisplayData& disp(mDisplayData[id]);
898 disp.outbufHandle = buf->handle;
899 disp.outbufAcquireFence = acquireFence;
900 return NO_ERROR;
901}
902
Andy McFadden41d67d72014-04-25 16:58:34 -0700903sp<Fence> HWComposer::getLastRetireFence(int32_t id) const {
Jesse Hall851cfe82013-03-20 13:44:00 -0700904 if (uint32_t(id)>31 || !mAllocatedDisplayIDs.hasBit(id))
905 return Fence::NO_FENCE;
906 return mDisplayData[id].lastRetireFence;
907}
908
Riley Andrews03414a12014-07-01 14:22:59 -0700909status_t HWComposer::setCursorPositionAsync(int32_t id, const Rect& pos)
910{
911 if (mHwc->setCursorPositionAsync) {
912 return (status_t)mHwc->setCursorPositionAsync(mHwc, id, pos.left, pos.top);
913 }
914 else {
915 return NO_ERROR;
916 }
917}
918
Mathias Agopian3e8b8532012-05-13 20:42:01 -0700919/*
920 * Helper template to implement a concrete HWCLayer
921 * This holds the pointer to the concrete hwc layer type
922 * and implements the "iterable" side of HWCLayer.
923 */
924template<typename CONCRETE, typename HWCTYPE>
925class Iterable : public HWComposer::HWCLayer {
926protected:
927 HWCTYPE* const mLayerList;
928 HWCTYPE* mCurrentLayer;
929 Iterable(HWCTYPE* layer) : mLayerList(layer), mCurrentLayer(layer) { }
930 inline HWCTYPE const * getLayer() const { return mCurrentLayer; }
931 inline HWCTYPE* getLayer() { return mCurrentLayer; }
932 virtual ~Iterable() { }
933private:
934 // returns a copy of ourselves
935 virtual HWComposer::HWCLayer* dup() {
936 return new CONCRETE( static_cast<const CONCRETE&>(*this) );
937 }
938 virtual status_t setLayer(size_t index) {
939 mCurrentLayer = &mLayerList[index];
940 return NO_ERROR;
941 }
942};
943
Jesse Hall5880cc52012-06-05 23:40:32 -0700944/*
945 * Concrete implementation of HWCLayer for HWC_DEVICE_API_VERSION_1_0.
946 * This implements the HWCLayer side of HWCIterableLayer.
947 */
948class HWCLayerVersion1 : public Iterable<HWCLayerVersion1, hwc_layer_1_t> {
Mathias Agopian9f8386e2013-01-29 18:56:42 -0800949 struct hwc_composer_device_1* mHwc;
Jesse Hall5880cc52012-06-05 23:40:32 -0700950public:
Mathias Agopian9f8386e2013-01-29 18:56:42 -0800951 HWCLayerVersion1(struct hwc_composer_device_1* hwc, hwc_layer_1_t* layer)
952 : Iterable<HWCLayerVersion1, hwc_layer_1_t>(layer), mHwc(hwc) { }
Jesse Hall5880cc52012-06-05 23:40:32 -0700953
954 virtual int32_t getCompositionType() const {
955 return getLayer()->compositionType;
956 }
957 virtual uint32_t getHints() const {
958 return getLayer()->hints;
959 }
Jesse Hall13f01cb2013-03-20 11:37:21 -0700960 virtual sp<Fence> getAndResetReleaseFence() {
Jesse Hallef194142012-06-14 14:45:17 -0700961 int fd = getLayer()->releaseFenceFd;
962 getLayer()->releaseFenceFd = -1;
Jesse Hall13f01cb2013-03-20 11:37:21 -0700963 return fd >= 0 ? new Fence(fd) : Fence::NO_FENCE;
Jesse Hallef194142012-06-14 14:45:17 -0700964 }
Jesse Halldc5b4852012-06-29 15:21:18 -0700965 virtual void setAcquireFenceFd(int fenceFd) {
966 getLayer()->acquireFenceFd = fenceFd;
967 }
Mathias Agopian9f8386e2013-01-29 18:56:42 -0800968 virtual void setPerFrameDefaultState() {
969 //getLayer()->compositionType = HWC_FRAMEBUFFER;
970 }
971 virtual void setPlaneAlpha(uint8_t alpha) {
972 if (hwcHasApiVersion(mHwc, HWC_DEVICE_API_VERSION_1_2)) {
973 getLayer()->planeAlpha = alpha;
974 } else {
Mathias Agopian5fe58b82013-02-07 16:22:50 -0800975 if (alpha < 0xFF) {
976 getLayer()->flags |= HWC_SKIP_LAYER;
977 }
Mathias Agopian9f8386e2013-01-29 18:56:42 -0800978 }
979 }
Jesse Hall5880cc52012-06-05 23:40:32 -0700980 virtual void setDefaultState() {
Mathias Agopian9f8386e2013-01-29 18:56:42 -0800981 hwc_layer_1_t* const l = getLayer();
982 l->compositionType = HWC_FRAMEBUFFER;
983 l->hints = 0;
984 l->flags = HWC_SKIP_LAYER;
985 l->handle = 0;
986 l->transform = 0;
987 l->blending = HWC_BLENDING_NONE;
988 l->visibleRegionScreen.numRects = 0;
989 l->visibleRegionScreen.rects = NULL;
990 l->acquireFenceFd = -1;
991 l->releaseFenceFd = -1;
992 l->planeAlpha = 0xFF;
Jesse Hall5880cc52012-06-05 23:40:32 -0700993 }
994 virtual void setSkip(bool skip) {
995 if (skip) {
996 getLayer()->flags |= HWC_SKIP_LAYER;
997 } else {
998 getLayer()->flags &= ~HWC_SKIP_LAYER;
999 }
1000 }
Riley Andrews03414a12014-07-01 14:22:59 -07001001 virtual void setIsCursorLayerHint(bool isCursor) {
1002 if (hwcHasApiVersion(mHwc, HWC_DEVICE_API_VERSION_1_4)) {
1003 if (isCursor) {
1004 getLayer()->flags |= HWC_IS_CURSOR_LAYER;
1005 }
1006 else {
1007 getLayer()->flags &= ~HWC_IS_CURSOR_LAYER;
1008 }
1009 }
1010 }
Jesse Hall5880cc52012-06-05 23:40:32 -07001011 virtual void setBlending(uint32_t blending) {
1012 getLayer()->blending = blending;
1013 }
1014 virtual void setTransform(uint32_t transform) {
1015 getLayer()->transform = transform;
1016 }
1017 virtual void setFrame(const Rect& frame) {
Mathias Agopian6b442672013-07-09 21:24:52 -07001018 getLayer()->displayFrame = reinterpret_cast<hwc_rect_t const&>(frame);
Jesse Hall5880cc52012-06-05 23:40:32 -07001019 }
Mathias Agopian6b442672013-07-09 21:24:52 -07001020 virtual void setCrop(const FloatRect& crop) {
1021 if (hwcHasApiVersion(mHwc, HWC_DEVICE_API_VERSION_1_3)) {
1022 getLayer()->sourceCropf = reinterpret_cast<hwc_frect_t const&>(crop);
1023 } else {
1024 /*
1025 * Since h/w composer didn't support a flot crop rect before version 1.3,
1026 * using integer coordinates instead produces a different output from the GL code in
1027 * Layer::drawWithOpenGL(). The difference can be large if the buffer crop to
1028 * window size ratio is large and a window crop is defined
1029 * (i.e.: if we scale the buffer a lot and we also crop it with a window crop).
1030 */
1031 hwc_rect_t& r = getLayer()->sourceCrop;
1032 r.left = int(ceilf(crop.left));
1033 r.top = int(ceilf(crop.top));
1034 r.right = int(floorf(crop.right));
1035 r.bottom= int(floorf(crop.bottom));
1036 }
Jesse Hall5880cc52012-06-05 23:40:32 -07001037 }
1038 virtual void setVisibleRegionScreen(const Region& reg) {
Mathias Agopianc3973602012-08-31 17:51:25 -07001039 hwc_region_t& visibleRegion = getLayer()->visibleRegionScreen;
Pablo Ceballosd814cf22015-09-11 14:37:39 -07001040 mVisibleRegion = reg;
1041 visibleRegion.rects = reinterpret_cast<hwc_rect_t const *>(
1042 mVisibleRegion.getArray(&visibleRegion.numRects));
Jesse Hall5880cc52012-06-05 23:40:32 -07001043 }
Dan Stozaee44edd2015-03-23 15:50:23 -07001044 virtual void setSurfaceDamage(const Region& reg) {
1045 if (!hwcHasApiVersion(mHwc, HWC_DEVICE_API_VERSION_1_5)) {
1046 return;
1047 }
1048 hwc_region_t& surfaceDamage = getLayer()->surfaceDamage;
1049 // We encode default full-screen damage as INVALID_RECT upstream, but as
1050 // 0 rects for HWComposer
1051 if (reg.isRect() && reg.getBounds() == Rect::INVALID_RECT) {
1052 surfaceDamage.numRects = 0;
1053 surfaceDamage.rects = NULL;
1054 return;
1055 }
Pablo Ceballosd814cf22015-09-11 14:37:39 -07001056 mSurfaceDamage = reg;
1057 surfaceDamage.rects = reinterpret_cast<hwc_rect_t const *>(
1058 mSurfaceDamage.getArray(&surfaceDamage.numRects));
Dan Stozaee44edd2015-03-23 15:50:23 -07001059 }
Jesse Hall399184a2014-03-03 15:42:54 -08001060 virtual void setSidebandStream(const sp<NativeHandle>& stream) {
1061 ALOG_ASSERT(stream->handle() != NULL);
1062 getLayer()->compositionType = HWC_SIDEBAND;
1063 getLayer()->sidebandStream = stream->handle();
1064 }
Jesse Hall5880cc52012-06-05 23:40:32 -07001065 virtual void setBuffer(const sp<GraphicBuffer>& buffer) {
1066 if (buffer == 0 || buffer->handle == 0) {
1067 getLayer()->compositionType = HWC_FRAMEBUFFER;
1068 getLayer()->flags |= HWC_SKIP_LAYER;
1069 getLayer()->handle = 0;
1070 } else {
Jesse Hall399184a2014-03-03 15:42:54 -08001071 if (getLayer()->compositionType == HWC_SIDEBAND) {
1072 // If this was a sideband layer but the stream was removed, reset
1073 // it to FRAMEBUFFER. The HWC can change it to OVERLAY in prepare.
1074 getLayer()->compositionType = HWC_FRAMEBUFFER;
1075 }
Jesse Hall5880cc52012-06-05 23:40:32 -07001076 getLayer()->handle = buffer->handle;
1077 }
1078 }
Mathias Agopianc3973602012-08-31 17:51:25 -07001079 virtual void onDisplayed() {
Jesse Halle25d0052012-09-05 13:03:10 -07001080 getLayer()->acquireFenceFd = -1;
Mathias Agopianc3973602012-08-31 17:51:25 -07001081 }
Pablo Ceballosd814cf22015-09-11 14:37:39 -07001082
1083protected:
1084 // We need to hold "copies" of these for memory management purposes. The
1085 // actual hwc_layer_1_t holds pointers to the memory within. Vector<>
1086 // internally doesn't copy the memory unless one of the copies is modified.
1087 Region mVisibleRegion;
1088 Region mSurfaceDamage;
Jesse Hall5880cc52012-06-05 23:40:32 -07001089};
Mathias Agopian3e8b8532012-05-13 20:42:01 -07001090
1091/*
1092 * returns an iterator initialized at a given index in the layer list
1093 */
Mathias Agopian5f20e2d2012-08-10 18:50:38 -07001094HWComposer::LayerListIterator HWComposer::getLayerIterator(int32_t id, size_t index) {
Mathias Agopianf4358632012-08-22 17:16:19 -07001095 if (uint32_t(id)>31 || !mAllocatedDisplayIDs.hasBit(id)) {
Mathias Agopian5f20e2d2012-08-10 18:50:38 -07001096 return LayerListIterator();
Mathias Agopianf4358632012-08-22 17:16:19 -07001097 }
1098 const DisplayData& disp(mDisplayData[id]);
1099 if (!mHwc || !disp.list || index > disp.list->numHwLayers) {
Mathias Agopian3e8b8532012-05-13 20:42:01 -07001100 return LayerListIterator();
Mathias Agopianf4358632012-08-22 17:16:19 -07001101 }
Mathias Agopian9f8386e2013-01-29 18:56:42 -08001102 return LayerListIterator(new HWCLayerVersion1(mHwc, disp.list->hwLayers), index);
Mathias Agopiana350ff92010-08-10 17:14:02 -07001103}
1104
Mathias Agopian3e8b8532012-05-13 20:42:01 -07001105/*
1106 * returns an iterator on the beginning of the layer list
1107 */
Mathias Agopian5f20e2d2012-08-10 18:50:38 -07001108HWComposer::LayerListIterator HWComposer::begin(int32_t id) {
Mathias Agopian1e260872012-08-08 18:35:12 -07001109 return getLayerIterator(id, 0);
Mathias Agopian3e8b8532012-05-13 20:42:01 -07001110}
1111
1112/*
1113 * returns an iterator on the end of the layer list
1114 */
Mathias Agopian5f20e2d2012-08-10 18:50:38 -07001115HWComposer::LayerListIterator HWComposer::end(int32_t id) {
Mathias Agopianda27af92012-09-13 18:17:13 -07001116 size_t numLayers = 0;
1117 if (uint32_t(id) <= 31 && mAllocatedDisplayIDs.hasBit(id)) {
1118 const DisplayData& disp(mDisplayData[id]);
1119 if (mHwc && disp.list) {
1120 numLayers = disp.list->numHwLayers;
1121 if (hwcHasApiVersion(mHwc, HWC_DEVICE_API_VERSION_1_1)) {
1122 // with HWC 1.1, the last layer is always the HWC_FRAMEBUFFER_TARGET,
1123 // which we ignore when iterating through the layer list.
1124 ALOGE_IF(!numLayers, "mDisplayData[%d].list->numHwLayers is 0", id);
1125 if (numLayers) {
1126 numLayers--;
1127 }
1128 }
1129 }
1130 }
1131 return getLayerIterator(id, numLayers);
Mathias Agopian3e8b8532012-05-13 20:42:01 -07001132}
1133
Andy McFadden4df87bd2014-04-21 18:08:54 -07001134// Converts a PixelFormat to a human-readable string. Max 11 chars.
1135// (Could use a table of prefab String8 objects.)
1136static String8 getFormatStr(PixelFormat format) {
1137 switch (format) {
1138 case PIXEL_FORMAT_RGBA_8888: return String8("RGBA_8888");
1139 case PIXEL_FORMAT_RGBX_8888: return String8("RGBx_8888");
1140 case PIXEL_FORMAT_RGB_888: return String8("RGB_888");
1141 case PIXEL_FORMAT_RGB_565: return String8("RGB_565");
1142 case PIXEL_FORMAT_BGRA_8888: return String8("BGRA_8888");
Andy McFaddenf0058ca2014-05-20 13:28:50 -07001143 case HAL_PIXEL_FORMAT_IMPLEMENTATION_DEFINED:
1144 return String8("ImplDef");
Andy McFadden4df87bd2014-04-21 18:08:54 -07001145 default:
1146 String8 result;
1147 result.appendFormat("? %08x", format);
1148 return result;
1149 }
1150}
1151
Mathias Agopian74d211a2013-04-22 16:55:35 +02001152void HWComposer::dump(String8& result) const {
Manoj Kumar AVMe04e4ed2015-06-11 14:18:14 -07001153 Mutex::Autolock _l(mDisplayLock);
Jesse Hallb685c542012-07-31 14:32:56 -07001154 if (mHwc) {
Andy McFadden4df87bd2014-04-21 18:08:54 -07001155 result.appendFormat("Hardware Composer state (version %08x):\n", hwcApiVersion(mHwc));
Mathias Agopianf4358632012-08-22 17:16:19 -07001156 result.appendFormat(" mDebugForceFakeVSync=%d\n", mDebugForceFakeVSync);
1157 for (size_t i=0 ; i<mNumDisplays ; i++) {
1158 const DisplayData& disp(mDisplayData[i]);
Jesse Hall02d86562013-03-25 14:43:23 -07001159 if (!disp.connected)
1160 continue;
Mathias Agopianb4d18ed2012-09-20 23:14:05 -07001161
Mathias Agopian13127d82013-03-05 17:47:11 -08001162 const Vector< sp<Layer> >& visibleLayersSortedByZ =
Mathias Agopiancb558572012-10-04 15:58:54 -07001163 mFlinger->getLayerSortedByZForHwcDisplay(i);
1164
Dan Stoza7f7da322014-05-02 15:26:25 -07001165
1166 result.appendFormat(" Display[%zd] configurations (* current):\n", i);
1167 for (size_t c = 0; c < disp.configs.size(); ++c) {
1168 const DisplayConfig& config(disp.configs[c]);
Dan Stozaf2699fc2015-08-31 12:06:48 -07001169 result.appendFormat(" %s%zd: %ux%u, xdpi=%f, ydpi=%f"
1170 ", refresh=%" PRId64 ", colorTransform=%d\n",
1171 c == disp.currentConfig ? "* " : "", c,
1172 config.width, config.height, config.xdpi, config.ydpi,
1173 config.refresh, config.colorTransform);
Dan Stoza7f7da322014-05-02 15:26:25 -07001174 }
Mathias Agopianb4d18ed2012-09-20 23:14:05 -07001175
Jesse Hall02d86562013-03-25 14:43:23 -07001176 if (disp.list) {
Mathias Agopianb4d18ed2012-09-20 23:14:05 -07001177 result.appendFormat(
Mark Salyzyn92dc3fc2014-03-12 13:12:44 -07001178 " numHwLayers=%zu, flags=%08x\n",
Mathias Agopianb4d18ed2012-09-20 23:14:05 -07001179 disp.list->numHwLayers, disp.list->flags);
1180
Mathias Agopianf4358632012-08-22 17:16:19 -07001181 result.append(
Andy McFadden4df87bd2014-04-21 18:08:54 -07001182 " type | handle | hint | flag | tr | blnd | format | source crop (l,t,r,b) | frame | name \n"
1183 "-----------+----------+------+------+----+------+-------------+--------------------------------+------------------------+------\n");
1184 // " _________ | ________ | ____ | ____ | __ | ____ | ___________ |_____._,_____._,_____._,_____._ |_____,_____,_____,_____ | ___...
Mathias Agopianf4358632012-08-22 17:16:19 -07001185 for (size_t i=0 ; i<disp.list->numHwLayers ; i++) {
1186 const hwc_layer_1_t&l = disp.list->hwLayers[i];
Mathias Agopianf4358632012-08-22 17:16:19 -07001187 int32_t format = -1;
Mathias Agopianda27af92012-09-13 18:17:13 -07001188 String8 name("unknown");
Mathias Agopiancb558572012-10-04 15:58:54 -07001189
Mathias Agopianda27af92012-09-13 18:17:13 -07001190 if (i < visibleLayersSortedByZ.size()) {
Mathias Agopian13127d82013-03-05 17:47:11 -08001191 const sp<Layer>& layer(visibleLayersSortedByZ[i]);
1192 const sp<GraphicBuffer>& buffer(
1193 layer->getActiveBuffer());
1194 if (buffer != NULL) {
1195 format = buffer->getPixelFormat();
Mathias Agopianf4358632012-08-22 17:16:19 -07001196 }
Mathias Agopianda27af92012-09-13 18:17:13 -07001197 name = layer->getName();
Mathias Agopianf4358632012-08-22 17:16:19 -07001198 }
Mathias Agopianda27af92012-09-13 18:17:13 -07001199
1200 int type = l.compositionType;
1201 if (type == HWC_FRAMEBUFFER_TARGET) {
1202 name = "HWC_FRAMEBUFFER_TARGET";
1203 format = disp.format;
1204 }
1205
1206 static char const* compositionTypeName[] = {
1207 "GLES",
1208 "HWC",
Andy McFadden4df87bd2014-04-21 18:08:54 -07001209 "BKGND",
Mathias Agopianda27af92012-09-13 18:17:13 -07001210 "FB TARGET",
Riley Andrews03414a12014-07-01 14:22:59 -07001211 "SIDEBAND",
1212 "HWC_CURSOR",
Mathias Agopianda27af92012-09-13 18:17:13 -07001213 "UNKNOWN"};
1214 if (type >= NELEM(compositionTypeName))
1215 type = NELEM(compositionTypeName) - 1;
1216
Andy McFadden4df87bd2014-04-21 18:08:54 -07001217 String8 formatStr = getFormatStr(format);
Jesse Hall353ddc62013-08-20 16:11:50 -07001218 if (hwcHasApiVersion(mHwc, HWC_DEVICE_API_VERSION_1_3)) {
1219 result.appendFormat(
Andy McFadden4df87bd2014-04-21 18:08:54 -07001220 " %9s | %08" PRIxPTR " | %04x | %04x | %02x | %04x | %-11s |%7.1f,%7.1f,%7.1f,%7.1f |%5d,%5d,%5d,%5d | %s\n",
Jesse Hall353ddc62013-08-20 16:11:50 -07001221 compositionTypeName[type],
Andy McFadden4df87bd2014-04-21 18:08:54 -07001222 intptr_t(l.handle), l.hints, l.flags, l.transform, l.blending, formatStr.string(),
Jesse Hall353ddc62013-08-20 16:11:50 -07001223 l.sourceCropf.left, l.sourceCropf.top, l.sourceCropf.right, l.sourceCropf.bottom,
1224 l.displayFrame.left, l.displayFrame.top, l.displayFrame.right, l.displayFrame.bottom,
1225 name.string());
1226 } else {
1227 result.appendFormat(
Andy McFadden4df87bd2014-04-21 18:08:54 -07001228 " %9s | %08" PRIxPTR " | %04x | %04x | %02x | %04x | %-11s |%7d,%7d,%7d,%7d |%5d,%5d,%5d,%5d | %s\n",
Jesse Hall353ddc62013-08-20 16:11:50 -07001229 compositionTypeName[type],
Andy McFadden4df87bd2014-04-21 18:08:54 -07001230 intptr_t(l.handle), l.hints, l.flags, l.transform, l.blending, formatStr.string(),
Jesse Hall353ddc62013-08-20 16:11:50 -07001231 l.sourceCrop.left, l.sourceCrop.top, l.sourceCrop.right, l.sourceCrop.bottom,
1232 l.displayFrame.left, l.displayFrame.top, l.displayFrame.right, l.displayFrame.bottom,
1233 name.string());
1234 }
Mathias Agopianfb4d5d52011-09-20 15:13:14 -07001235 }
1236 }
Mathias Agopian83727852010-09-23 18:13:21 -07001237 }
Erik Gilling1d21a9c2010-12-01 16:38:01 -08001238 }
Mathias Agopian30bcc612012-08-22 15:39:48 -07001239
1240 if (mHwc && mHwc->dump) {
Mathias Agopian74d211a2013-04-22 16:55:35 +02001241 const size_t SIZE = 4096;
1242 char buffer[SIZE];
Mathias Agopian30bcc612012-08-22 15:39:48 -07001243 mHwc->dump(mHwc, buffer, SIZE);
Erik Gilling1d21a9c2010-12-01 16:38:01 -08001244 result.append(buffer);
Mathias Agopian83727852010-09-23 18:13:21 -07001245 }
1246}
1247
Mathias Agopiana350ff92010-08-10 17:14:02 -07001248// ---------------------------------------------------------------------------
Mathias Agopian2965b262012-04-08 15:13:32 -07001249
1250HWComposer::VSyncThread::VSyncThread(HWComposer& hwc)
1251 : mHwc(hwc), mEnabled(false),
1252 mNextFakeVSync(0),
Andy McFaddenb0d1dd32012-09-10 14:08:09 -07001253 mRefreshPeriod(hwc.getRefreshPeriod(HWC_DISPLAY_PRIMARY))
Mathias Agopian2965b262012-04-08 15:13:32 -07001254{
1255}
1256
1257void HWComposer::VSyncThread::setEnabled(bool enabled) {
1258 Mutex::Autolock _l(mLock);
Mathias Agopian81cd5d32012-10-04 02:34:38 -07001259 if (mEnabled != enabled) {
1260 mEnabled = enabled;
1261 mCondition.signal();
1262 }
Mathias Agopian2965b262012-04-08 15:13:32 -07001263}
1264
1265void HWComposer::VSyncThread::onFirstRef() {
1266 run("VSyncThread", PRIORITY_URGENT_DISPLAY + PRIORITY_MORE_FAVORABLE);
1267}
1268
1269bool HWComposer::VSyncThread::threadLoop() {
1270 { // scope for lock
1271 Mutex::Autolock _l(mLock);
1272 while (!mEnabled) {
1273 mCondition.wait(mLock);
1274 }
1275 }
1276
1277 const nsecs_t period = mRefreshPeriod;
1278 const nsecs_t now = systemTime(CLOCK_MONOTONIC);
1279 nsecs_t next_vsync = mNextFakeVSync;
1280 nsecs_t sleep = next_vsync - now;
1281 if (sleep < 0) {
1282 // we missed, find where the next vsync should be
1283 sleep = (period - ((now - next_vsync) % period));
1284 next_vsync = now + sleep;
1285 }
1286 mNextFakeVSync = next_vsync + period;
1287
1288 struct timespec spec;
1289 spec.tv_sec = next_vsync / 1000000000;
1290 spec.tv_nsec = next_vsync % 1000000000;
1291
1292 int err;
1293 do {
1294 err = clock_nanosleep(CLOCK_MONOTONIC, TIMER_ABSTIME, &spec, NULL);
1295 } while (err<0 && errno == EINTR);
1296
1297 if (err == 0) {
1298 mHwc.mEventHandler.onVSyncReceived(0, next_vsync);
1299 }
1300
1301 return true;
1302}
1303
Jesse Halla9a1b002013-02-27 16:39:25 -08001304HWComposer::DisplayData::DisplayData()
Dan Stoza7f7da322014-05-02 15:26:25 -07001305: configs(),
1306 currentConfig(0),
1307 format(HAL_PIXEL_FORMAT_RGBA_8888),
Jesse Halla9a1b002013-02-27 16:39:25 -08001308 connected(false),
1309 hasFbComp(false), hasOvComp(false),
1310 capacity(0), list(NULL),
1311 framebufferTarget(NULL), fbTargetHandle(0),
1312 lastRetireFence(Fence::NO_FENCE), lastDisplayFence(Fence::NO_FENCE),
Jesse Hall851cfe82013-03-20 13:44:00 -07001313 outbufHandle(NULL), outbufAcquireFence(Fence::NO_FENCE),
Jesse Halla9a1b002013-02-27 16:39:25 -08001314 events(0)
1315{}
1316
1317HWComposer::DisplayData::~DisplayData() {
1318 free(list);
1319}
1320
Mathias Agopian2965b262012-04-08 15:13:32 -07001321// ---------------------------------------------------------------------------
Mathias Agopiana350ff92010-08-10 17:14:02 -07001322}; // namespace android