blob: 043b07558e5062669255045cc8c27230599a3fb8 [file] [log] [blame]
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2007 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
Jamie Gennis1c8e95c2012-02-23 19:27:23 -080017#define ATRACE_TAG ATRACE_TAG_GRAPHICS
18
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080019#include <stdint.h>
Mathias Agopian921e6ac2012-07-23 23:11:29 -070020#include <sys/types.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080021#include <errno.h>
22#include <math.h>
Keun young Park63f165f2012-08-31 10:53:36 -070023#include <dlfcn.h>
Greg Hackmann86efcc02014-03-07 12:44:02 -080024#include <inttypes.h>
Jesse Hallb154c422014-07-13 12:47:02 -070025#include <stdatomic.h>
Mathias Agopian921e6ac2012-07-23 23:11:29 -070026
27#include <EGL/egl.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080028
29#include <cutils/log.h>
30#include <cutils/properties.h>
31
Mathias Agopianc5b2c0b2009-05-19 19:08:10 -070032#include <binder/IPCThreadState.h>
33#include <binder/IServiceManager.h>
Mathias Agopian7303c6b2009-07-02 18:11:53 -070034#include <binder/MemoryHeapBase.h>
Mathias Agopian99b49842011-06-27 16:05:52 -070035#include <binder/PermissionCache.h>
Mathias Agopian7303c6b2009-07-02 18:11:53 -070036
Mathias Agopianc666cae2012-07-25 18:56:13 -070037#include <ui/DisplayInfo.h>
38
Mathias Agopian921e6ac2012-07-23 23:11:29 -070039#include <gui/BitTube.h>
Jamie Gennis1a4d8832012-08-02 20:11:05 -070040#include <gui/BufferQueue.h>
Andy McFadden4803b742012-09-24 19:07:20 -070041#include <gui/GuiConfig.h>
Jamie Gennis1a4d8832012-08-02 20:11:05 -070042#include <gui/IDisplayEventConnection.h>
Mathias Agopiane3c697f2013-02-14 17:11:02 -080043#include <gui/Surface.h>
Jamie Gennis392edd82012-11-29 23:26:29 -080044#include <gui/GraphicBufferAlloc.h>
Mathias Agopian921e6ac2012-07-23 23:11:29 -070045
46#include <ui/GraphicBufferAllocator.h>
47#include <ui/PixelFormat.h>
Andy McFadden4803b742012-09-24 19:07:20 -070048#include <ui/UiConfig.h>
Mathias Agopiand0566bc2011-11-17 17:49:17 -080049
Mathias Agopiancde87a32012-09-13 14:09:01 -070050#include <utils/misc.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080051#include <utils/String8.h>
52#include <utils/String16.h>
53#include <utils/StopWatch.h>
Jamie Gennis1c8e95c2012-02-23 19:27:23 -080054#include <utils/Trace.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080055
Mathias Agopian921e6ac2012-07-23 23:11:29 -070056#include <private/android_filesystem_config.h>
Mathias Agopianca088332013-03-28 17:44:13 -070057#include <private/gui/SyncFeatures.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080058
Mathias Agopian3e25fd82013-04-22 17:52:16 +020059#include "Client.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080060#include "clz.h"
Mathias Agopian3e25fd82013-04-22 17:52:16 +020061#include "Colorizer.h"
Mathias Agopian90ac7992012-02-25 18:48:35 -080062#include "DdmConnection.h"
Mathias Agopian0f2f5ff2012-07-31 23:09:07 -070063#include "DisplayDevice.h"
Jamie Gennisfaf77cc2013-07-30 15:10:32 -070064#include "DispSync.h"
Jamie Gennisd1700752013-10-14 12:22:52 -070065#include "EventControlThread.h"
Mathias Agopiand0566bc2011-11-17 17:49:17 -080066#include "EventThread.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080067#include "Layer.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080068#include "LayerDim.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080069#include "SurfaceFlinger.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080070
Mathias Agopiana4912602012-07-12 14:25:33 -070071#include "DisplayHardware/FramebufferSurface.h"
Mathias Agopiana350ff92010-08-10 17:14:02 -070072#include "DisplayHardware/HWComposer.h"
Jesse Hall99c7dbb2013-03-14 14:29:29 -070073#include "DisplayHardware/VirtualDisplaySurface.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080074
Mathias Agopianff2ed702013-09-01 21:36:12 -070075#include "Effects/Daltonizer.h"
76
Mathias Agopian875d8e12013-06-07 15:35:48 -070077#include "RenderEngine/RenderEngine.h"
Mathias Agopianff2ed702013-09-01 21:36:12 -070078#include <cutils/compiler.h>
Mathias Agopian875d8e12013-06-07 15:35:48 -070079
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080080#define DISPLAY_COUNT 1
81
Mathias Agopianfee2b462013-07-03 12:34:01 -070082/*
83 * DEBUG_SCREENSHOTS: set to true to check that screenshots are not all
84 * black pixels.
85 */
86#define DEBUG_SCREENSHOTS false
87
Mathias Agopianca088332013-03-28 17:44:13 -070088EGLAPI const char* eglQueryStringImplementationANDROID(EGLDisplay dpy, EGLint name);
89
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080090namespace android {
Jamie Gennisfaf77cc2013-07-30 15:10:32 -070091
Jamie Gennisfaf77cc2013-07-30 15:10:32 -070092// This is the phase offset in nanoseconds of the software vsync event
93// relative to the vsync event reported by HWComposer. The software vsync
94// event is when SurfaceFlinger and Choreographer-based applications run each
95// frame.
96//
97// This phase offset allows adjustment of the minimum latency from application
98// wake-up (by Choregographer) time to the time at which the resulting window
99// image is displayed. This value may be either positive (after the HW vsync)
100// or negative (before the HW vsync). Setting it to 0 will result in a
101// minimum latency of two vsync periods because the app and SurfaceFlinger
102// will run just after the HW vsync. Setting it to a positive number will
103// result in the minimum latency being:
104//
105// (2 * VSYNC_PERIOD - (vsyncPhaseOffsetNs % VSYNC_PERIOD))
106//
107// Note that reducing this latency makes it more likely for the applications
108// to not have their window content image ready in time. When this happens
109// the latency will end up being an additional vsync period, and animations
110// will hiccup. Therefore, this latency should be tuned somewhat
111// conservatively (or at least with awareness of the trade-off being made).
112static const int64_t vsyncPhaseOffsetNs = VSYNC_EVENT_PHASE_OFFSET_NS;
113
Jamie Gennis0a645cc2013-10-14 20:52:46 -0700114// This is the phase offset at which SurfaceFlinger's composition runs.
115static const int64_t sfVsyncPhaseOffsetNs = SF_VSYNC_EVENT_PHASE_OFFSET_NS;
116
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800117// ---------------------------------------------------------------------------
118
Mathias Agopian99b49842011-06-27 16:05:52 -0700119const String16 sHardwareTest("android.permission.HARDWARE_TEST");
120const String16 sAccessSurfaceFlinger("android.permission.ACCESS_SURFACE_FLINGER");
121const String16 sReadFramebuffer("android.permission.READ_FRAME_BUFFER");
122const String16 sDump("android.permission.DUMP");
123
124// ---------------------------------------------------------------------------
125
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800126SurfaceFlinger::SurfaceFlinger()
Mathias Agopian4f4f0942013-08-19 17:26:18 -0700127 : BnSurfaceComposer(),
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800128 mTransactionFlags(0),
Jamie Gennis2d5e2302012-10-15 18:24:43 -0700129 mTransactionPending(false),
130 mAnimTransactionPending(false),
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700131 mLayersRemoved(false),
Mathias Agopian52bbb1a2012-07-31 19:01:53 -0700132 mRepaintEverything(0),
Mathias Agopian875d8e12013-06-07 15:35:48 -0700133 mRenderEngine(NULL),
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800134 mBootTime(systemTime()),
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800135 mVisibleRegionsDirty(false),
Mathias Agopiana350ff92010-08-10 17:14:02 -0700136 mHwWorkListDirty(false),
Jamie Gennis4b0eba92013-02-05 13:30:24 -0800137 mAnimCompositionPending(false),
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800138 mDebugRegion(0),
Mathias Agopian8afb7e32011-08-15 20:44:40 -0700139 mDebugDDMS(0),
Mathias Agopian73d3ba92010-09-22 18:58:01 -0700140 mDebugDisableHWC(0),
Mathias Agopiana4583642011-08-23 18:03:18 -0700141 mDebugDisableTransformHint(0),
Mathias Agopian9795c422009-08-26 16:36:26 -0700142 mDebugInSwapBuffers(0),
143 mLastSwapBufferTime(0),
144 mDebugInTransaction(0),
145 mLastTransactionTime(0),
Mathias Agopianff2ed702013-09-01 21:36:12 -0700146 mBootFinished(false),
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700147 mPrimaryHWVsyncEnabled(false),
Jesse Hall948fe0c2013-10-14 12:56:09 -0700148 mHWVsyncAvailable(false),
Alan Viverette9c5a3332013-09-12 20:04:35 -0700149 mDaltonize(false),
150 mHasColorMatrix(false)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800151{
Steve Blocka19954a2012-01-04 20:05:49 +0000152 ALOGI("SurfaceFlinger is starting");
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800153
154 // debugging stuff...
155 char value[PROPERTY_VALUE_MAX];
Mathias Agopian8afb7e32011-08-15 20:44:40 -0700156
Mathias Agopianb4b17302013-03-20 18:36:41 -0700157 property_get("ro.bq.gpu_to_cpu_unsupported", value, "0");
Mathias Agopian50210b92013-03-21 21:13:21 -0700158 mGpuToCpuSupported = !atoi(value);
Mathias Agopianb4b17302013-03-20 18:36:41 -0700159
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800160 property_get("debug.sf.showupdates", value, "0");
161 mDebugRegion = atoi(value);
Mathias Agopian8afb7e32011-08-15 20:44:40 -0700162
Mathias Agopian8afb7e32011-08-15 20:44:40 -0700163 property_get("debug.sf.ddms", value, "0");
164 mDebugDDMS = atoi(value);
165 if (mDebugDDMS) {
Keun young Park63f165f2012-08-31 10:53:36 -0700166 if (!startDdmConnection()) {
167 // start failed, and DDMS debugging not enabled
168 mDebugDDMS = 0;
169 }
Mathias Agopian8afb7e32011-08-15 20:44:40 -0700170 }
Mathias Agopianc1d359d2012-08-04 20:09:03 -0700171 ALOGI_IF(mDebugRegion, "showupdates enabled");
172 ALOGI_IF(mDebugDDMS, "DDMS debugging enabled");
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800173}
174
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800175void SurfaceFlinger::onFirstRef()
176{
177 mEventQueue.init(this);
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800178}
179
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800180SurfaceFlinger::~SurfaceFlinger()
181{
Mathias Agopiana4912602012-07-12 14:25:33 -0700182 EGLDisplay display = eglGetDisplay(EGL_DEFAULT_DISPLAY);
183 eglMakeCurrent(display, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT);
184 eglTerminate(display);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800185}
186
Dan Stozac7014012014-02-14 15:03:43 -0800187void SurfaceFlinger::binderDied(const wp<IBinder>& /* who */)
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800188{
189 // the window manager died on us. prepare its eulogy.
190
Andy McFadden13a082e2012-08-24 10:16:42 -0700191 // restore initial conditions (default device unblank, etc)
192 initializeDisplays();
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800193
194 // restart the boot-animation
Mathias Agopiana67e4182012-06-19 17:26:12 -0700195 startBootAnim();
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800196}
197
Mathias Agopian7e27f052010-05-28 14:22:23 -0700198sp<ISurfaceComposerClient> SurfaceFlinger::createConnection()
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800199{
Mathias Agopian96f08192010-06-02 23:28:45 -0700200 sp<ISurfaceComposerClient> bclient;
201 sp<Client> client(new Client(this));
202 status_t err = client->initCheck();
203 if (err == NO_ERROR) {
204 bclient = client;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800205 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800206 return bclient;
207}
208
Jamie Gennisdd3cb842012-10-19 18:19:11 -0700209sp<IBinder> SurfaceFlinger::createDisplay(const String8& displayName,
210 bool secure)
Mathias Agopiane57f2922012-08-09 16:29:12 -0700211{
212 class DisplayToken : public BBinder {
213 sp<SurfaceFlinger> flinger;
214 virtual ~DisplayToken() {
215 // no more references, this display must be terminated
216 Mutex::Autolock _l(flinger->mStateLock);
217 flinger->mCurrentState.displays.removeItem(this);
218 flinger->setTransactionFlags(eDisplayTransactionNeeded);
219 }
220 public:
221 DisplayToken(const sp<SurfaceFlinger>& flinger)
222 : flinger(flinger) {
223 }
224 };
225
226 sp<BBinder> token = new DisplayToken(this);
227
228 Mutex::Autolock _l(mStateLock);
Mathias Agopian3ee454a2012-08-27 16:28:24 -0700229 DisplayDeviceState info(DisplayDevice::DISPLAY_VIRTUAL);
Andy McFadden8dfa92f2012-09-17 18:27:17 -0700230 info.displayName = displayName;
Jamie Gennisdd3cb842012-10-19 18:19:11 -0700231 info.isSecure = secure;
Mathias Agopiane57f2922012-08-09 16:29:12 -0700232 mCurrentState.displays.add(token, info);
233
234 return token;
235}
236
Jesse Hall6c913be2013-08-08 12:15:49 -0700237void SurfaceFlinger::destroyDisplay(const sp<IBinder>& display) {
238 Mutex::Autolock _l(mStateLock);
239
240 ssize_t idx = mCurrentState.displays.indexOfKey(display);
241 if (idx < 0) {
242 ALOGW("destroyDisplay: invalid display token");
243 return;
244 }
245
246 const DisplayDeviceState& info(mCurrentState.displays.valueAt(idx));
247 if (!info.isVirtualDisplay()) {
248 ALOGE("destroyDisplay called for non-virtual display");
249 return;
250 }
251
252 mCurrentState.displays.removeItemsAt(idx);
253 setTransactionFlags(eDisplayTransactionNeeded);
254}
255
Jesse Hall692c7232012-11-08 15:41:56 -0800256void SurfaceFlinger::createBuiltinDisplayLocked(DisplayDevice::DisplayType type) {
257 ALOGW_IF(mBuiltinDisplays[type],
258 "Overwriting display token for display type %d", type);
259 mBuiltinDisplays[type] = new BBinder();
260 DisplayDeviceState info(type);
261 // All non-virtual displays are currently considered secure.
262 info.isSecure = true;
263 mCurrentState.displays.add(mBuiltinDisplays[type], info);
264}
265
Mathias Agopiane57f2922012-08-09 16:29:12 -0700266sp<IBinder> SurfaceFlinger::getBuiltInDisplay(int32_t id) {
Jesse Hall9e663de2013-08-16 14:28:37 -0700267 if (uint32_t(id) >= DisplayDevice::NUM_BUILTIN_DISPLAY_TYPES) {
Mathias Agopiane57f2922012-08-09 16:29:12 -0700268 ALOGE("getDefaultDisplay: id=%d is not a valid default display id", id);
269 return NULL;
270 }
Jesse Hall692c7232012-11-08 15:41:56 -0800271 return mBuiltinDisplays[id];
Mathias Agopiane57f2922012-08-09 16:29:12 -0700272}
273
Jamie Gennis9a78c902011-01-12 18:30:40 -0800274sp<IGraphicBufferAlloc> SurfaceFlinger::createGraphicBufferAlloc()
275{
276 sp<GraphicBufferAlloc> gba(new GraphicBufferAlloc());
277 return gba;
278}
Mathias Agopianb7e930d2010-06-01 15:12:58 -0700279
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800280void SurfaceFlinger::bootFinished()
281{
282 const nsecs_t now = systemTime();
283 const nsecs_t duration = now - mBootTime;
Steve Blocka19954a2012-01-04 20:05:49 +0000284 ALOGI("Boot is finished (%ld ms)", long(ns2ms(duration)) );
Mathias Agopian3330b202009-10-05 17:07:12 -0700285 mBootFinished = true;
Mathias Agopian1f339ff2011-07-01 17:08:43 -0700286
287 // wait patiently for the window manager death
288 const String16 name("window");
289 sp<IBinder> window(defaultServiceManager()->getService(name));
290 if (window != 0) {
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700291 window->linkToDeath(static_cast<IBinder::DeathRecipient*>(this));
Mathias Agopian1f339ff2011-07-01 17:08:43 -0700292 }
293
294 // stop boot animation
Mathias Agopiana67e4182012-06-19 17:26:12 -0700295 // formerly we would just kill the process, but we now ask it to exit so it
296 // can choose where to stop the animation.
297 property_set("service.bootanim.exit", "1");
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800298}
299
Mathias Agopian3f844832013-08-07 21:24:32 -0700300void SurfaceFlinger::deleteTextureAsync(uint32_t texture) {
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700301 class MessageDestroyGLTexture : public MessageBase {
Mathias Agopian3f844832013-08-07 21:24:32 -0700302 RenderEngine& engine;
303 uint32_t texture;
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700304 public:
Mathias Agopian3f844832013-08-07 21:24:32 -0700305 MessageDestroyGLTexture(RenderEngine& engine, uint32_t texture)
306 : engine(engine), texture(texture) {
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700307 }
308 virtual bool handler() {
Mathias Agopian3f844832013-08-07 21:24:32 -0700309 engine.deleteTextures(1, &texture);
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700310 return true;
311 }
312 };
Mathias Agopian3f844832013-08-07 21:24:32 -0700313 postMessageAsync(new MessageDestroyGLTexture(getRenderEngine(), texture));
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700314}
315
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700316class DispSyncSource : public VSyncSource, private DispSync::Callback {
317public:
Andy McFadden5167ec62014-05-22 13:08:43 -0700318 DispSyncSource(DispSync* dispSync, nsecs_t phaseOffset, bool traceVsync,
319 const char* label) :
Jamie Gennis0a645cc2013-10-14 20:52:46 -0700320 mValue(0),
321 mPhaseOffset(phaseOffset),
322 mTraceVsync(traceVsync),
Andy McFadden5167ec62014-05-22 13:08:43 -0700323 mVsyncOnLabel(String8::format("VsyncOn-%s", label)),
324 mVsyncEventLabel(String8::format("VSYNC-%s", label)),
Jamie Gennis0a645cc2013-10-14 20:52:46 -0700325 mDispSync(dispSync) {}
Mathias Agopiana4912602012-07-12 14:25:33 -0700326
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700327 virtual ~DispSyncSource() {}
328
329 virtual void setVSyncEnabled(bool enable) {
330 // Do NOT lock the mutex here so as to avoid any mutex ordering issues
331 // with locking it in the onDispSyncEvent callback.
332 if (enable) {
Jamie Gennis0a645cc2013-10-14 20:52:46 -0700333 status_t err = mDispSync->addEventListener(mPhaseOffset,
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700334 static_cast<DispSync::Callback*>(this));
335 if (err != NO_ERROR) {
336 ALOGE("error registering vsync callback: %s (%d)",
337 strerror(-err), err);
338 }
Andy McFadden5167ec62014-05-22 13:08:43 -0700339 //ATRACE_INT(mVsyncOnLabel.string(), 1);
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700340 } else {
341 status_t err = mDispSync->removeEventListener(
342 static_cast<DispSync::Callback*>(this));
343 if (err != NO_ERROR) {
344 ALOGE("error unregistering vsync callback: %s (%d)",
345 strerror(-err), err);
346 }
Andy McFadden5167ec62014-05-22 13:08:43 -0700347 //ATRACE_INT(mVsyncOnLabel.string(), 0);
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700348 }
349 }
350
351 virtual void setCallback(const sp<VSyncSource::Callback>& callback) {
352 Mutex::Autolock lock(mMutex);
353 mCallback = callback;
354 }
355
356private:
357 virtual void onDispSyncEvent(nsecs_t when) {
358 sp<VSyncSource::Callback> callback;
359 {
360 Mutex::Autolock lock(mMutex);
361 callback = mCallback;
362
Jamie Gennis0a645cc2013-10-14 20:52:46 -0700363 if (mTraceVsync) {
364 mValue = (mValue + 1) % 2;
Andy McFadden5167ec62014-05-22 13:08:43 -0700365 ATRACE_INT(mVsyncEventLabel.string(), mValue);
Jamie Gennis0a645cc2013-10-14 20:52:46 -0700366 }
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700367 }
368
369 if (callback != NULL) {
370 callback->onVSyncEvent(when);
371 }
372 }
373
374 int mValue;
375
Jamie Gennis0a645cc2013-10-14 20:52:46 -0700376 const nsecs_t mPhaseOffset;
377 const bool mTraceVsync;
Andy McFadden5167ec62014-05-22 13:08:43 -0700378 const String8 mVsyncOnLabel;
379 const String8 mVsyncEventLabel;
Jamie Gennis0a645cc2013-10-14 20:52:46 -0700380
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700381 DispSync* mDispSync;
382 sp<VSyncSource::Callback> mCallback;
383 Mutex mMutex;
384};
385
386void SurfaceFlinger::init() {
Mathias Agopiana4912602012-07-12 14:25:33 -0700387 ALOGI( "SurfaceFlinger's main thread ready to run. "
388 "Initializing graphics H/W...");
389
Jesse Hallb65f32e2013-09-27 22:10:47 -0700390 status_t err;
Jesse Hall692c7232012-11-08 15:41:56 -0800391 Mutex::Autolock _l(mStateLock);
392
Andy McFaddenb0d1dd32012-09-10 14:08:09 -0700393 // initialize EGL for the default display
Jesse Hall34a09ba2012-07-29 22:35:34 -0700394 mEGLDisplay = eglGetDisplay(EGL_DEFAULT_DISPLAY);
395 eglInitialize(mEGLDisplay, NULL, NULL);
Mathias Agopiana4912602012-07-12 14:25:33 -0700396
Andy McFaddenb0d1dd32012-09-10 14:08:09 -0700397 // Initialize the H/W composer object. There may or may not be an
398 // actual hardware composer underneath.
399 mHwc = new HWComposer(this,
400 *static_cast<HWComposer::EventHandler *>(this));
401
Mathias Agopian875d8e12013-06-07 15:35:48 -0700402 // get a RenderEngine for the given display / config (can't fail)
Jesse Hall05f8c702013-12-23 20:44:38 -0800403 mRenderEngine = RenderEngine::create(mEGLDisplay, mHwc->getVisualID());
Mathias Agopian875d8e12013-06-07 15:35:48 -0700404
405 // retrieve the EGL context that was selected/created
406 mEGLContext = mRenderEngine->getEGLContext();
Mathias Agopiana4912602012-07-12 14:25:33 -0700407
Mathias Agopianda27af92012-09-13 18:17:13 -0700408 LOG_ALWAYS_FATAL_IF(mEGLContext == EGL_NO_CONTEXT,
409 "couldn't create EGLContext");
410
Mathias Agopiancde87a32012-09-13 14:09:01 -0700411 // initialize our non-virtual displays
Jesse Hall9e663de2013-08-16 14:28:37 -0700412 for (size_t i=0 ; i<DisplayDevice::NUM_BUILTIN_DISPLAY_TYPES ; i++) {
Mathias Agopianf5a33922012-09-19 18:16:22 -0700413 DisplayDevice::DisplayType type((DisplayDevice::DisplayType)i);
Mathias Agopianf5a33922012-09-19 18:16:22 -0700414 // set-up the displays that are already connected
Mathias Agopian9e2463e2012-09-21 18:26:16 -0700415 if (mHwc->isConnected(i) || type==DisplayDevice::DISPLAY_PRIMARY) {
Jamie Gennisdd3cb842012-10-19 18:19:11 -0700416 // All non-virtual displays are currently considered secure.
417 bool isSecure = true;
Jesse Hall692c7232012-11-08 15:41:56 -0800418 createBuiltinDisplayLocked(type);
419 wp<IBinder> token = mBuiltinDisplays[i];
420
Dan Stozab9b08832014-03-13 11:55:57 -0700421 sp<IGraphicBufferProducer> producer;
422 sp<IGraphicBufferConsumer> consumer;
423 BufferQueue::createBufferQueue(&producer, &consumer,
424 new GraphicBufferAlloc());
425
426 sp<FramebufferSurface> fbs = new FramebufferSurface(*mHwc, i,
427 consumer);
Jesse Hall19e87292013-12-23 21:02:15 -0800428 int32_t hwcId = allocateHwcDisplayId(type);
Mathias Agopianf5a33922012-09-19 18:16:22 -0700429 sp<DisplayDevice> hw = new DisplayDevice(this,
Jesse Hall19e87292013-12-23 21:02:15 -0800430 type, hwcId, mHwc->getFormat(hwcId), isSecure, token,
Dan Stozab9b08832014-03-13 11:55:57 -0700431 fbs, producer,
Jesse Hall05f8c702013-12-23 20:44:38 -0800432 mRenderEngine->getEGLConfig());
Mathias Agopianf5a33922012-09-19 18:16:22 -0700433 if (i > DisplayDevice::DISPLAY_PRIMARY) {
Andy McFaddenc01a79d2012-09-27 16:02:06 -0700434 // FIXME: currently we don't get blank/unblank requests
Mathias Agopianf5a33922012-09-19 18:16:22 -0700435 // for displays other than the main display, so we always
436 // assume a connected display is unblanked.
Greg Hackmann86efcc02014-03-07 12:44:02 -0800437 ALOGD("marking display %zu as acquired/unblanked", i);
Prashant Malani2c9b11f2014-05-25 01:36:31 -0700438 hw->setPowerMode(HWC_POWER_MODE_NORMAL);
Mathias Agopianf5a33922012-09-19 18:16:22 -0700439 }
440 mDisplays.add(token, hw);
441 }
Mathias Agopiane57f2922012-08-09 16:29:12 -0700442 }
Mathias Agopiancde87a32012-09-13 14:09:01 -0700443
Mathias Agopiana6bb1072013-08-07 20:10:20 -0700444 // make the GLContext current so that we can create textures when creating Layers
445 // (which may happens before we render something)
446 getDefaultDisplayDevice()->makeCurrent(mEGLDisplay, mEGLContext);
447
Mathias Agopian028508c2012-07-25 21:12:12 -0700448 // start the EventThread
Jamie Gennis0a645cc2013-10-14 20:52:46 -0700449 sp<VSyncSource> vsyncSrc = new DispSyncSource(&mPrimaryDispSync,
Andy McFadden5167ec62014-05-22 13:08:43 -0700450 vsyncPhaseOffsetNs, true, "app");
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700451 mEventThread = new EventThread(vsyncSrc);
Jamie Gennis0a645cc2013-10-14 20:52:46 -0700452 sp<VSyncSource> sfVsyncSrc = new DispSyncSource(&mPrimaryDispSync,
Andy McFadden5167ec62014-05-22 13:08:43 -0700453 sfVsyncPhaseOffsetNs, true, "sf");
Jamie Gennis0a645cc2013-10-14 20:52:46 -0700454 mSFEventThread = new EventThread(sfVsyncSrc);
455 mEventQueue.setEventThread(mSFEventThread);
Mathias Agopian028508c2012-07-25 21:12:12 -0700456
Jamie Gennisd1700752013-10-14 12:22:52 -0700457 mEventControlThread = new EventControlThread(this);
458 mEventControlThread->run("EventControl", PRIORITY_URGENT_DISPLAY);
459
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700460 // set a fake vsync period if there is no HWComposer
461 if (mHwc->initCheck() != NO_ERROR) {
462 mPrimaryDispSync.setPeriod(16666667);
463 }
464
Mathias Agopian92a979a2012-08-02 18:32:23 -0700465 // initialize our drawing state
466 mDrawingState = mCurrentState;
Mathias Agopian86303202012-07-24 22:46:10 -0700467
Andy McFadden13a082e2012-08-24 10:16:42 -0700468 // set initial conditions (e.g. unblank default device)
469 initializeDisplays();
470
Mathias Agopiana1ecca92009-05-21 19:21:59 -0700471 // start boot animation
Mathias Agopiana67e4182012-06-19 17:26:12 -0700472 startBootAnim();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800473}
474
Mathias Agopian3ee454a2012-08-27 16:28:24 -0700475int32_t SurfaceFlinger::allocateHwcDisplayId(DisplayDevice::DisplayType type) {
Jesse Hall9e663de2013-08-16 14:28:37 -0700476 return (uint32_t(type) < DisplayDevice::NUM_BUILTIN_DISPLAY_TYPES) ?
Mathias Agopian3ee454a2012-08-27 16:28:24 -0700477 type : mHwc->allocateDisplayId();
478}
479
Mathias Agopiana67e4182012-06-19 17:26:12 -0700480void SurfaceFlinger::startBootAnim() {
481 // start boot animation
482 property_set("service.bootanim.exit", "0");
483 property_set("ctl.start", "bootanim");
484}
485
Mathias Agopian875d8e12013-06-07 15:35:48 -0700486size_t SurfaceFlinger::getMaxTextureSize() const {
487 return mRenderEngine->getMaxTextureSize();
Mathias Agopiana4912602012-07-12 14:25:33 -0700488}
489
Mathias Agopian875d8e12013-06-07 15:35:48 -0700490size_t SurfaceFlinger::getMaxViewportDims() const {
491 return mRenderEngine->getMaxViewportDims();
Mathias Agopiana4912602012-07-12 14:25:33 -0700492}
493
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800494// ----------------------------------------------------------------------------
Mathias Agopiand0566bc2011-11-17 17:49:17 -0800495
Jamie Gennis582270d2011-08-17 18:19:00 -0700496bool SurfaceFlinger::authenticateSurfaceTexture(
Andy McFadden2adaf042012-12-18 09:49:45 -0800497 const sp<IGraphicBufferProducer>& bufferProducer) const {
Jamie Gennis134f0422011-03-08 12:18:54 -0800498 Mutex::Autolock _l(mStateLock);
Andy McFadden2adaf042012-12-18 09:49:45 -0800499 sp<IBinder> surfaceTextureBinder(bufferProducer->asBinder());
Mathias Agopian67106042013-03-14 19:18:13 -0700500 return mGraphicBufferProducerList.indexOf(surfaceTextureBinder) >= 0;
Jamie Gennis134f0422011-03-08 12:18:54 -0800501}
502
Dan Stoza7f7da322014-05-02 15:26:25 -0700503status_t SurfaceFlinger::getDisplayConfigs(const sp<IBinder>& display,
504 Vector<DisplayInfo>* configs) {
505 if (configs == NULL) {
506 return BAD_VALUE;
507 }
508
Jesse Hall692c7232012-11-08 15:41:56 -0800509 int32_t type = NAME_NOT_FOUND;
Jesse Hall9e663de2013-08-16 14:28:37 -0700510 for (int i=0 ; i<DisplayDevice::NUM_BUILTIN_DISPLAY_TYPES ; i++) {
Jesse Hall692c7232012-11-08 15:41:56 -0800511 if (display == mBuiltinDisplays[i]) {
Mathias Agopian1604f772012-09-18 21:54:42 -0700512 type = i;
513 break;
514 }
515 }
516
517 if (type < 0) {
518 return type;
Mathias Agopianc666cae2012-07-25 18:56:13 -0700519 }
Mathias Agopian8b736f12012-08-13 17:54:26 -0700520
Mathias Agopian8b736f12012-08-13 17:54:26 -0700521 // TODO: Not sure if display density should handled by SF any longer
522 class Density {
523 static int getDensityFromProperty(char const* propName) {
524 char property[PROPERTY_VALUE_MAX];
525 int density = 0;
526 if (property_get(propName, property, NULL) > 0) {
527 density = atoi(property);
528 }
529 return density;
530 }
531 public:
532 static int getEmuDensity() {
533 return getDensityFromProperty("qemu.sf.lcd_density"); }
534 static int getBuildDensity() {
535 return getDensityFromProperty("ro.sf.lcd_density"); }
536 };
Mathias Agopian1604f772012-09-18 21:54:42 -0700537
Dan Stoza7f7da322014-05-02 15:26:25 -0700538 configs->clear();
Mathias Agopian1604f772012-09-18 21:54:42 -0700539
Dan Stoza7f7da322014-05-02 15:26:25 -0700540 const Vector<HWComposer::DisplayConfig>& hwConfigs =
541 getHwComposer().getConfigs(type);
542 for (size_t c = 0; c < hwConfigs.size(); ++c) {
543 const HWComposer::DisplayConfig& hwConfig = hwConfigs[c];
544 DisplayInfo info = DisplayInfo();
545
546 float xdpi = hwConfig.xdpi;
547 float ydpi = hwConfig.ydpi;
548
549 if (type == DisplayDevice::DISPLAY_PRIMARY) {
550 // The density of the device is provided by a build property
551 float density = Density::getBuildDensity() / 160.0f;
552 if (density == 0) {
553 // the build doesn't provide a density -- this is wrong!
554 // use xdpi instead
555 ALOGE("ro.sf.lcd_density must be defined as a build property");
556 density = xdpi / 160.0f;
557 }
558 if (Density::getEmuDensity()) {
559 // if "qemu.sf.lcd_density" is specified, it overrides everything
560 xdpi = ydpi = density = Density::getEmuDensity();
561 density /= 160.0f;
562 }
563 info.density = density;
564
565 // TODO: this needs to go away (currently needed only by webkit)
566 sp<const DisplayDevice> hw(getDefaultDisplayDevice());
567 info.orientation = hw->getOrientation();
568 } else {
569 // TODO: where should this value come from?
570 static const int TV_DENSITY = 213;
571 info.density = TV_DENSITY / 160.0f;
572 info.orientation = 0;
573 }
574
575 info.w = hwConfig.width;
576 info.h = hwConfig.height;
577 info.xdpi = xdpi;
578 info.ydpi = ydpi;
579 info.fps = float(1e9 / hwConfig.refresh);
Andy McFadden91b2ca82014-06-13 14:04:23 -0700580 info.appVsyncOffset = VSYNC_EVENT_PHASE_OFFSET_NS;
581
582 // This is how far in advance a buffer must be queued for
583 // presentation at a given time. If you want a buffer to appear
584 // on the screen at time N, you must submit the buffer before
585 // (N - presentationDeadline).
586 //
587 // Normally it's one full refresh period (to give SF a chance to
588 // latch the buffer), but this can be reduced by configuring a
589 // DispSync offset. Any additional delays introduced by the hardware
590 // composer or panel must be accounted for here.
591 //
592 // We add an additional 1ms to allow for processing time and
593 // differences between the ideal and actual refresh rate.
594 info.presentationDeadline =
595 hwConfig.refresh - SF_VSYNC_EVENT_PHASE_OFFSET_NS + 1000000;
Dan Stoza7f7da322014-05-02 15:26:25 -0700596
597 // All non-virtual displays are currently considered secure.
598 info.secure = true;
599
600 configs->push_back(info);
Mathias Agopian8b736f12012-08-13 17:54:26 -0700601 }
602
Dan Stoza7f7da322014-05-02 15:26:25 -0700603 return NO_ERROR;
604}
Jamie Gennisdd3cb842012-10-19 18:19:11 -0700605
Michael Lentine6c9e34a2014-07-14 13:48:55 -0700606int SurfaceFlinger::getActiveConfig(const sp<IBinder>& display) {
607 return getDisplayDevice(display)->getActiveConfig();
Dan Stoza7f7da322014-05-02 15:26:25 -0700608}
Jamie Gennisdd3cb842012-10-19 18:19:11 -0700609
Michael Lentine6c9e34a2014-07-14 13:48:55 -0700610void SurfaceFlinger::setActiveConfigInternal(const sp<DisplayDevice>& hw, int mode) {
611 ALOGD("Set active config mode=%d, type=%d flinger=%p", mode, hw->getDisplayType(),
612 this);
613 int32_t type = hw->getDisplayType();
614 int currentMode = hw->getActiveConfig();
615
616 if (mode == currentMode) {
617 ALOGD("Screen type=%d is already mode=%d", hw->getDisplayType(), mode);
618 return;
619 }
620
621 if (type >= DisplayDevice::NUM_BUILTIN_DISPLAY_TYPES) {
622 ALOGW("Trying to set config for virtual display");
623 return;
624 }
625
626 hw->setActiveConfig(mode);
627 getHwComposer().setActiveConfig(type, mode);
628}
629
630status_t SurfaceFlinger::setActiveConfig(const sp<IBinder>& display, int mode) {
631 class MessageSetActiveConfig: public MessageBase {
632 SurfaceFlinger& mFlinger;
633 sp<IBinder> mDisplay;
634 int mMode;
635 public:
636 MessageSetActiveConfig(SurfaceFlinger& flinger, const sp<IBinder>& disp,
637 int mode) :
638 mFlinger(flinger), mDisplay(disp) { mMode = mode; }
639 virtual bool handler() {
Michael Lentine7306c672014-07-30 13:00:37 -0700640 Vector<DisplayInfo> configs;
641 mFlinger.getDisplayConfigs(mDisplay, &configs);
642 if(mMode < 0 || mMode >= configs.size()) {
Michael Lentine9ae79d82014-07-30 16:42:12 -0700643 ALOGE("Attempt to set active config = %d for display with %zu configs",
Michael Lentine7306c672014-07-30 13:00:37 -0700644 mMode, configs.size());
645 }
Michael Lentine6c9e34a2014-07-14 13:48:55 -0700646 sp<DisplayDevice> hw(mFlinger.getDisplayDevice(mDisplay));
647 if (hw == NULL) {
648 ALOGE("Attempt to set active config = %d for null display %p",
Michael Lentine7306c672014-07-30 13:00:37 -0700649 mMode, mDisplay.get());
Michael Lentine6c9e34a2014-07-14 13:48:55 -0700650 } else if (hw->getDisplayType() >= DisplayDevice::DISPLAY_VIRTUAL) {
651 ALOGW("Attempt to set active config = %d for virtual display",
652 mMode);
653 } else {
654 mFlinger.setActiveConfigInternal(hw, mMode);
655 }
656 return true;
657 }
658 };
659 sp<MessageBase> msg = new MessageSetActiveConfig(*this, display, mode);
660 postMessageSync(msg);
Mathias Agopian888c8222012-08-04 21:10:38 -0700661 return NO_ERROR;
Mathias Agopianc666cae2012-07-25 18:56:13 -0700662}
663
Svetoslavd85084b2014-03-20 10:28:31 -0700664status_t SurfaceFlinger::clearAnimationFrameStats() {
665 Mutex::Autolock _l(mStateLock);
666 mAnimFrameTracker.clearStats();
667 return NO_ERROR;
668}
669
670status_t SurfaceFlinger::getAnimationFrameStats(FrameStats* outStats) const {
671 Mutex::Autolock _l(mStateLock);
672 mAnimFrameTracker.getStats(outStats);
673 return NO_ERROR;
674}
675
Mathias Agopiand0566bc2011-11-17 17:49:17 -0800676// ----------------------------------------------------------------------------
677
678sp<IDisplayEventConnection> SurfaceFlinger::createDisplayEventConnection() {
Mathias Agopian8aedd472012-01-24 16:39:14 -0800679 return mEventThread->createEventConnection();
Mathias Agopianbb641242010-05-18 17:06:55 -0700680}
681
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800682// ----------------------------------------------------------------------------
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800683
684void SurfaceFlinger::waitForEvent() {
685 mEventQueue.waitMessage();
686}
687
688void SurfaceFlinger::signalTransaction() {
689 mEventQueue.invalidate();
690}
691
692void SurfaceFlinger::signalLayerUpdate() {
693 mEventQueue.invalidate();
694}
695
696void SurfaceFlinger::signalRefresh() {
697 mEventQueue.refresh();
698}
699
700status_t SurfaceFlinger::postMessageAsync(const sp<MessageBase>& msg,
Dan Stozac7014012014-02-14 15:03:43 -0800701 nsecs_t reltime, uint32_t /* flags */) {
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800702 return mEventQueue.postMessage(msg, reltime);
703}
704
705status_t SurfaceFlinger::postMessageSync(const sp<MessageBase>& msg,
Dan Stozac7014012014-02-14 15:03:43 -0800706 nsecs_t reltime, uint32_t /* flags */) {
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800707 status_t res = mEventQueue.postMessage(msg, reltime);
708 if (res == NO_ERROR) {
709 msg->wait();
710 }
711 return res;
712}
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800713
Mathias Agopian4f4f0942013-08-19 17:26:18 -0700714void SurfaceFlinger::run() {
Mathias Agopian4f4f0942013-08-19 17:26:18 -0700715 do {
716 waitForEvent();
717 } while (true);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800718}
719
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700720void SurfaceFlinger::enableHardwareVsync() {
721 Mutex::Autolock _l(mHWVsyncLock);
Jesse Hall948fe0c2013-10-14 12:56:09 -0700722 if (!mPrimaryHWVsyncEnabled && mHWVsyncAvailable) {
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700723 mPrimaryDispSync.beginResync();
Jamie Gennisd1700752013-10-14 12:22:52 -0700724 //eventControl(HWC_DISPLAY_PRIMARY, SurfaceFlinger::EVENT_VSYNC, true);
725 mEventControlThread->setVsyncEnabled(true);
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700726 mPrimaryHWVsyncEnabled = true;
Andy McFadden43601a22012-09-11 15:15:13 -0700727 }
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700728}
729
Jesse Hall948fe0c2013-10-14 12:56:09 -0700730void SurfaceFlinger::resyncToHardwareVsync(bool makeAvailable) {
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700731 Mutex::Autolock _l(mHWVsyncLock);
732
Jesse Hall948fe0c2013-10-14 12:56:09 -0700733 if (makeAvailable) {
734 mHWVsyncAvailable = true;
735 } else if (!mHWVsyncAvailable) {
736 ALOGE("resyncToHardwareVsync called when HW vsync unavailable");
737 return;
738 }
739
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700740 const nsecs_t period =
741 getHwComposer().getRefreshPeriod(HWC_DISPLAY_PRIMARY);
742
743 mPrimaryDispSync.reset();
744 mPrimaryDispSync.setPeriod(period);
745
746 if (!mPrimaryHWVsyncEnabled) {
747 mPrimaryDispSync.beginResync();
Jamie Gennisd1700752013-10-14 12:22:52 -0700748 //eventControl(HWC_DISPLAY_PRIMARY, SurfaceFlinger::EVENT_VSYNC, true);
749 mEventControlThread->setVsyncEnabled(true);
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700750 mPrimaryHWVsyncEnabled = true;
751 }
752}
753
Jesse Hall948fe0c2013-10-14 12:56:09 -0700754void SurfaceFlinger::disableHardwareVsync(bool makeUnavailable) {
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700755 Mutex::Autolock _l(mHWVsyncLock);
756 if (mPrimaryHWVsyncEnabled) {
Jamie Gennisd1700752013-10-14 12:22:52 -0700757 //eventControl(HWC_DISPLAY_PRIMARY, SurfaceFlinger::EVENT_VSYNC, false);
758 mEventControlThread->setVsyncEnabled(false);
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700759 mPrimaryDispSync.endResync();
760 mPrimaryHWVsyncEnabled = false;
761 }
Jesse Hall948fe0c2013-10-14 12:56:09 -0700762 if (makeUnavailable) {
763 mHWVsyncAvailable = false;
764 }
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700765}
766
767void SurfaceFlinger::onVSyncReceived(int type, nsecs_t timestamp) {
Jamie Gennisd1700752013-10-14 12:22:52 -0700768 bool needsHwVsync = false;
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700769
Jamie Gennisd1700752013-10-14 12:22:52 -0700770 { // Scope for the lock
771 Mutex::Autolock _l(mHWVsyncLock);
772 if (type == 0 && mPrimaryHWVsyncEnabled) {
773 needsHwVsync = mPrimaryDispSync.addResyncSample(timestamp);
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700774 }
Mathias Agopian148994e2012-09-19 17:31:36 -0700775 }
Jamie Gennisd1700752013-10-14 12:22:52 -0700776
777 if (needsHwVsync) {
778 enableHardwareVsync();
779 } else {
780 disableHardwareVsync(false);
781 }
Mathias Agopian148994e2012-09-19 17:31:36 -0700782}
783
784void SurfaceFlinger::onHotplugReceived(int type, bool connected) {
785 if (mEventThread == NULL) {
786 // This is a temporary workaround for b/7145521. A non-null pointer
787 // does not mean EventThread has finished initializing, so this
788 // is not a correct fix.
789 ALOGW("WARNING: EventThread not started, ignoring hotplug");
790 return;
791 }
Mathias Agopian9e2463e2012-09-21 18:26:16 -0700792
Jesse Hall9e663de2013-08-16 14:28:37 -0700793 if (uint32_t(type) < DisplayDevice::NUM_BUILTIN_DISPLAY_TYPES) {
Mathias Agopian9e2463e2012-09-21 18:26:16 -0700794 Mutex::Autolock _l(mStateLock);
Jesse Hall692c7232012-11-08 15:41:56 -0800795 if (connected) {
796 createBuiltinDisplayLocked((DisplayDevice::DisplayType)type);
Mathias Agopian9e2463e2012-09-21 18:26:16 -0700797 } else {
Jesse Hall692c7232012-11-08 15:41:56 -0800798 mCurrentState.displays.removeItem(mBuiltinDisplays[type]);
799 mBuiltinDisplays[type].clear();
Mathias Agopian9e2463e2012-09-21 18:26:16 -0700800 }
801 setTransactionFlags(eDisplayTransactionNeeded);
802
Andy McFadden9e9689c2012-10-10 18:17:51 -0700803 // Defer EventThread notification until SF has updated mDisplays.
Mathias Agopian3ee454a2012-08-27 16:28:24 -0700804 }
Mathias Agopian86303202012-07-24 22:46:10 -0700805}
806
Mathias Agopian81cd5d32012-10-04 02:34:38 -0700807void SurfaceFlinger::eventControl(int disp, int event, int enabled) {
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700808 ATRACE_CALL();
Mathias Agopian81cd5d32012-10-04 02:34:38 -0700809 getHwComposer().eventControl(disp, event, enabled);
Mathias Agopian86303202012-07-24 22:46:10 -0700810}
811
Mathias Agopian4fec8732012-06-29 14:12:52 -0700812void SurfaceFlinger::onMessageReceived(int32_t what) {
Jamie Gennis1c8e95c2012-02-23 19:27:23 -0800813 ATRACE_CALL();
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800814 switch (what) {
Mathias Agopian9eb1f052013-04-10 16:27:17 -0700815 case MessageQueue::TRANSACTION:
816 handleMessageTransaction();
817 break;
Mathias Agopian4fec8732012-06-29 14:12:52 -0700818 case MessageQueue::INVALIDATE:
819 handleMessageTransaction();
820 handleMessageInvalidate();
821 signalRefresh();
822 break;
823 case MessageQueue::REFRESH:
824 handleMessageRefresh();
825 break;
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800826 }
827}
828
Mathias Agopian4fec8732012-06-29 14:12:52 -0700829void SurfaceFlinger::handleMessageTransaction() {
Mathias Agopiane57f2922012-08-09 16:29:12 -0700830 uint32_t transactionFlags = peekTransactionFlags(eTransactionMask);
Mathias Agopian4fec8732012-06-29 14:12:52 -0700831 if (transactionFlags) {
Mathias Agopian87baae12012-07-31 12:38:26 -0700832 handleTransaction(transactionFlags);
Mathias Agopian4fec8732012-06-29 14:12:52 -0700833 }
834}
835
836void SurfaceFlinger::handleMessageInvalidate() {
Mathias Agopiancd60f992012-08-16 16:28:27 -0700837 ATRACE_CALL();
Mathias Agopian87baae12012-07-31 12:38:26 -0700838 handlePageFlip();
Mathias Agopian4fec8732012-06-29 14:12:52 -0700839}
840
841void SurfaceFlinger::handleMessageRefresh() {
Mathias Agopiancd60f992012-08-16 16:28:27 -0700842 ATRACE_CALL();
843 preComposition();
844 rebuildLayerStacks();
845 setUpHWComposer();
846 doDebugFlashRegions();
847 doComposition();
848 postComposition();
849}
Mathias Agopian4fec8732012-06-29 14:12:52 -0700850
Mathias Agopiancd60f992012-08-16 16:28:27 -0700851void SurfaceFlinger::doDebugFlashRegions()
852{
853 // is debugging enabled
854 if (CC_LIKELY(!mDebugRegion))
855 return;
856
857 const bool repaintEverything = mRepaintEverything;
858 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
859 const sp<DisplayDevice>& hw(mDisplays[dpy]);
Prashant Malani2c9b11f2014-05-25 01:36:31 -0700860 if (hw->isDisplayOn()) {
Mathias Agopiancd60f992012-08-16 16:28:27 -0700861 // transform the dirty region into this screen's coordinate space
862 const Region dirtyRegion(hw->getDirtyRegion(repaintEverything));
863 if (!dirtyRegion.isEmpty()) {
864 // redraw the whole screen
865 doComposeSurfaces(hw, Region(hw->bounds()));
866
867 // and draw the dirty region
Mathias Agopiancd60f992012-08-16 16:28:27 -0700868 const int32_t height = hw->getHeight();
Mathias Agopian3f844832013-08-07 21:24:32 -0700869 RenderEngine& engine(getRenderEngine());
870 engine.fillRegionWithColor(dirtyRegion, height, 1, 0, 1, 1);
871
Mathias Agopiancd60f992012-08-16 16:28:27 -0700872 hw->compositionComplete();
Mathias Agopianda27af92012-09-13 18:17:13 -0700873 hw->swapBuffers(getHwComposer());
Mathias Agopiancd60f992012-08-16 16:28:27 -0700874 }
875 }
876 }
877
878 postFramebuffer();
879
880 if (mDebugRegion > 1) {
881 usleep(mDebugRegion * 1000);
882 }
Mathias Agopianbb53b0e2012-09-24 21:27:29 -0700883
884 HWComposer& hwc(getHwComposer());
885 if (hwc.initCheck() == NO_ERROR) {
886 status_t err = hwc.prepare();
887 ALOGE_IF(err, "HWComposer::prepare failed (%s)", strerror(-err));
888 }
Mathias Agopiancd60f992012-08-16 16:28:27 -0700889}
890
891void SurfaceFlinger::preComposition()
892{
893 bool needExtraInvalidate = false;
Mathias Agopian1eae0ee2013-06-05 16:59:15 -0700894 const LayerVector& layers(mDrawingState.layersSortedByZ);
895 const size_t count = layers.size();
Mathias Agopiancd60f992012-08-16 16:28:27 -0700896 for (size_t i=0 ; i<count ; i++) {
Mathias Agopian1eae0ee2013-06-05 16:59:15 -0700897 if (layers[i]->onPreComposition()) {
Mathias Agopiancd60f992012-08-16 16:28:27 -0700898 needExtraInvalidate = true;
899 }
900 }
901 if (needExtraInvalidate) {
902 signalLayerUpdate();
903 }
904}
905
906void SurfaceFlinger::postComposition()
907{
Mathias Agopian1eae0ee2013-06-05 16:59:15 -0700908 const LayerVector& layers(mDrawingState.layersSortedByZ);
909 const size_t count = layers.size();
Mathias Agopiancd60f992012-08-16 16:28:27 -0700910 for (size_t i=0 ; i<count ; i++) {
Mathias Agopian1eae0ee2013-06-05 16:59:15 -0700911 layers[i]->onPostComposition();
Mathias Agopiancd60f992012-08-16 16:28:27 -0700912 }
Jamie Gennis4b0eba92013-02-05 13:30:24 -0800913
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700914 const HWComposer& hwc = getHwComposer();
915 sp<Fence> presentFence = hwc.getDisplayFence(HWC_DISPLAY_PRIMARY);
916
917 if (presentFence->isValid()) {
918 if (mPrimaryDispSync.addPresentFence(presentFence)) {
919 enableHardwareVsync();
920 } else {
Jesse Hall948fe0c2013-10-14 12:56:09 -0700921 disableHardwareVsync(false);
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700922 }
923 }
924
Andy McFadden5167ec62014-05-22 13:08:43 -0700925 if (kIgnorePresentFences) {
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700926 const sp<const DisplayDevice> hw(getDefaultDisplayDevice());
Prashant Malani2c9b11f2014-05-25 01:36:31 -0700927 if (hw->isDisplayOn()) {
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700928 enableHardwareVsync();
929 }
930 }
931
Jamie Gennis4b0eba92013-02-05 13:30:24 -0800932 if (mAnimCompositionPending) {
933 mAnimCompositionPending = false;
934
Jesse Halla9a1b002013-02-27 16:39:25 -0800935 if (presentFence->isValid()) {
Jamie Gennis4b0eba92013-02-05 13:30:24 -0800936 mAnimFrameTracker.setActualPresentFence(presentFence);
937 } else {
938 // The HWC doesn't support present fences, so use the refresh
939 // timestamp instead.
940 nsecs_t presentTime = hwc.getRefreshTimestamp(HWC_DISPLAY_PRIMARY);
941 mAnimFrameTracker.setActualPresentTime(presentTime);
942 }
943 mAnimFrameTracker.advanceFrame();
944 }
Mathias Agopiancd60f992012-08-16 16:28:27 -0700945}
946
947void SurfaceFlinger::rebuildLayerStacks() {
948 // rebuild the visible layer list per screen
Mathias Agopian52bbb1a2012-07-31 19:01:53 -0700949 if (CC_UNLIKELY(mVisibleRegionsDirty)) {
Mathias Agopiancd60f992012-08-16 16:28:27 -0700950 ATRACE_CALL();
Mathias Agopian87baae12012-07-31 12:38:26 -0700951 mVisibleRegionsDirty = false;
952 invalidateHwcGeometry();
Mathias Agopiance3a0a52012-09-12 15:34:57 -0700953
Mathias Agopian1eae0ee2013-06-05 16:59:15 -0700954 const LayerVector& layers(mDrawingState.layersSortedByZ);
Mathias Agopian92a979a2012-08-02 18:32:23 -0700955 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
Mathias Agopiance3a0a52012-09-12 15:34:57 -0700956 Region opaqueRegion;
957 Region dirtyRegion;
Mathias Agopian13127d82013-03-05 17:47:11 -0800958 Vector< sp<Layer> > layersSortedByZ;
Mathias Agopian42977342012-08-05 00:40:46 -0700959 const sp<DisplayDevice>& hw(mDisplays[dpy]);
Mathias Agopian7e7ed7f2012-08-28 14:20:00 -0700960 const Transform& tr(hw->getTransform());
961 const Rect bounds(hw->getBounds());
Prashant Malani2c9b11f2014-05-25 01:36:31 -0700962 if (hw->isDisplayOn()) {
Mathias Agopian1eae0ee2013-06-05 16:59:15 -0700963 SurfaceFlinger::computeVisibleRegions(layers,
Mathias Agopiance3a0a52012-09-12 15:34:57 -0700964 hw->getLayerStack(), dirtyRegion, opaqueRegion);
Mathias Agopian7e7ed7f2012-08-28 14:20:00 -0700965
Mathias Agopian1eae0ee2013-06-05 16:59:15 -0700966 const size_t count = layers.size();
Mathias Agopiance3a0a52012-09-12 15:34:57 -0700967 for (size_t i=0 ; i<count ; i++) {
Mathias Agopian1eae0ee2013-06-05 16:59:15 -0700968 const sp<Layer>& layer(layers[i]);
969 const Layer::State& s(layer->getDrawingState());
Mathias Agopiance3a0a52012-09-12 15:34:57 -0700970 if (s.layerStack == hw->getLayerStack()) {
Jesse Halla8026d22012-09-25 13:25:04 -0700971 Region drawRegion(tr.transform(
972 layer->visibleNonTransparentRegion));
973 drawRegion.andSelf(bounds);
974 if (!drawRegion.isEmpty()) {
Mathias Agopiance3a0a52012-09-12 15:34:57 -0700975 layersSortedByZ.add(layer);
976 }
Mathias Agopian87baae12012-07-31 12:38:26 -0700977 }
978 }
Mathias Agopian3b1d2b62012-07-11 13:48:17 -0700979 }
Mathias Agopian42977342012-08-05 00:40:46 -0700980 hw->setVisibleLayersSortedByZ(layersSortedByZ);
Mathias Agopian7e7ed7f2012-08-28 14:20:00 -0700981 hw->undefinedRegion.set(bounds);
982 hw->undefinedRegion.subtractSelf(tr.transform(opaqueRegion));
983 hw->dirtyRegion.orSelf(dirtyRegion);
Mathias Agopian3b1d2b62012-07-11 13:48:17 -0700984 }
Mathias Agopian3b1d2b62012-07-11 13:48:17 -0700985 }
Mathias Agopiancd60f992012-08-16 16:28:27 -0700986}
Mathias Agopian3b1d2b62012-07-11 13:48:17 -0700987
Mathias Agopiancd60f992012-08-16 16:28:27 -0700988void SurfaceFlinger::setUpHWComposer() {
Jesse Hall028dc8f2013-08-20 16:35:32 -0700989 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
Jesse Hallb7a05492014-08-14 15:45:06 -0700990 bool dirty = !mDisplays[dpy]->getDirtyRegion(false).isEmpty();
991 bool empty = mDisplays[dpy]->getVisibleLayersSortedByZ().size() == 0;
992 bool wasEmpty = !mDisplays[dpy]->lastCompositionHadVisibleLayers;
993
994 // If nothing has changed (!dirty), don't recompose.
995 // If something changed, but we don't currently have any visible layers,
996 // and didn't when we last did a composition, then skip it this time.
997 // The second rule does two things:
998 // - When all layers are removed from a display, we'll emit one black
999 // frame, then nothing more until we get new layers.
1000 // - When a display is created with a private layer stack, we won't
1001 // emit any black frames until a layer is added to the layer stack.
1002 bool mustRecompose = dirty && !(empty && wasEmpty);
1003
1004 ALOGV_IF(mDisplays[dpy]->getDisplayType() == DisplayDevice::DISPLAY_VIRTUAL,
1005 "dpy[%zu]: %s composition (%sdirty %sempty %swasEmpty)", dpy,
1006 mustRecompose ? "doing" : "skipping",
1007 dirty ? "+" : "-",
1008 empty ? "+" : "-",
1009 wasEmpty ? "+" : "-");
1010
Dan Stoza71433162014-02-04 16:22:36 -08001011 mDisplays[dpy]->beginFrame(mustRecompose);
Jesse Hallb7a05492014-08-14 15:45:06 -07001012
1013 if (mustRecompose) {
1014 mDisplays[dpy]->lastCompositionHadVisibleLayers = !empty;
1015 }
Jesse Hall028dc8f2013-08-20 16:35:32 -07001016 }
1017
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07001018 HWComposer& hwc(getHwComposer());
1019 if (hwc.initCheck() == NO_ERROR) {
1020 // build the h/w work list
Jamie Gennisa4310c82012-09-25 20:26:00 -07001021 if (CC_UNLIKELY(mHwWorkListDirty)) {
1022 mHwWorkListDirty = false;
1023 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
1024 sp<const DisplayDevice> hw(mDisplays[dpy]);
1025 const int32_t id = hw->getHwcDisplayId();
1026 if (id >= 0) {
Mathias Agopian13127d82013-03-05 17:47:11 -08001027 const Vector< sp<Layer> >& currentLayers(
Jamie Gennisa4310c82012-09-25 20:26:00 -07001028 hw->getVisibleLayersSortedByZ());
1029 const size_t count = currentLayers.size();
1030 if (hwc.createWorkList(id, count) == NO_ERROR) {
1031 HWComposer::LayerListIterator cur = hwc.begin(id);
1032 const HWComposer::LayerListIterator end = hwc.end(id);
1033 for (size_t i=0 ; cur!=end && i<count ; ++i, ++cur) {
Mathias Agopian13127d82013-03-05 17:47:11 -08001034 const sp<Layer>& layer(currentLayers[i]);
Jamie Gennisa4310c82012-09-25 20:26:00 -07001035 layer->setGeometry(hw, *cur);
Alan Viverette9c5a3332013-09-12 20:04:35 -07001036 if (mDebugDisableHWC || mDebugRegion || mDaltonize || mHasColorMatrix) {
Jamie Gennisa4310c82012-09-25 20:26:00 -07001037 cur->setSkip(true);
1038 }
1039 }
1040 }
1041 }
1042 }
1043 }
1044
1045 // set the per-frame data
Mathias Agopian92a979a2012-08-02 18:32:23 -07001046 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
Mathias Agopian42977342012-08-05 00:40:46 -07001047 sp<const DisplayDevice> hw(mDisplays[dpy]);
Mathias Agopiane60b0682012-08-21 23:34:09 -07001048 const int32_t id = hw->getHwcDisplayId();
1049 if (id >= 0) {
Mathias Agopian13127d82013-03-05 17:47:11 -08001050 const Vector< sp<Layer> >& currentLayers(
Mathias Agopiancd60f992012-08-16 16:28:27 -07001051 hw->getVisibleLayersSortedByZ());
Mathias Agopiane60b0682012-08-21 23:34:09 -07001052 const size_t count = currentLayers.size();
Jamie Gennisa4310c82012-09-25 20:26:00 -07001053 HWComposer::LayerListIterator cur = hwc.begin(id);
1054 const HWComposer::LayerListIterator end = hwc.end(id);
1055 for (size_t i=0 ; cur!=end && i<count ; ++i, ++cur) {
1056 /*
1057 * update the per-frame h/w composer data for each layer
1058 * and build the transparent region of the FB
1059 */
Mathias Agopian13127d82013-03-05 17:47:11 -08001060 const sp<Layer>& layer(currentLayers[i]);
Jamie Gennisa4310c82012-09-25 20:26:00 -07001061 layer->setPerFrameData(hw, *cur);
Mathias Agopian1e260872012-08-08 18:35:12 -07001062 }
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07001063 }
Mathias Agopian87baae12012-07-31 12:38:26 -07001064 }
Jamie Gennisa4310c82012-09-25 20:26:00 -07001065
Riley Andrews03414a12014-07-01 14:22:59 -07001066 // If possible, attempt to use the cursor overlay on each display.
1067 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
1068 sp<const DisplayDevice> hw(mDisplays[dpy]);
1069 const int32_t id = hw->getHwcDisplayId();
1070 if (id >= 0) {
1071 const Vector< sp<Layer> >& currentLayers(
1072 hw->getVisibleLayersSortedByZ());
1073 const size_t count = currentLayers.size();
1074 HWComposer::LayerListIterator cur = hwc.begin(id);
1075 const HWComposer::LayerListIterator end = hwc.end(id);
1076 for (size_t i=0 ; cur!=end && i<count ; ++i, ++cur) {
1077 const sp<Layer>& layer(currentLayers[i]);
1078 if (layer->isPotentialCursor()) {
1079 cur->setIsCursorLayerHint();
1080 break;
1081 }
1082 }
1083 }
1084 }
1085
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07001086 status_t err = hwc.prepare();
1087 ALOGE_IF(err, "HWComposer::prepare failed (%s)", strerror(-err));
Jesse Hall38efe862013-04-06 23:12:29 -07001088
1089 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
1090 sp<const DisplayDevice> hw(mDisplays[dpy]);
1091 hw->prepareFrame(hwc);
1092 }
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07001093 }
Mathias Agopiancd60f992012-08-16 16:28:27 -07001094}
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07001095
Mathias Agopiancd60f992012-08-16 16:28:27 -07001096void SurfaceFlinger::doComposition() {
1097 ATRACE_CALL();
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07001098 const bool repaintEverything = android_atomic_and(0, &mRepaintEverything);
Mathias Agopian92a979a2012-08-02 18:32:23 -07001099 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
Mathias Agopian42977342012-08-05 00:40:46 -07001100 const sp<DisplayDevice>& hw(mDisplays[dpy]);
Prashant Malani2c9b11f2014-05-25 01:36:31 -07001101 if (hw->isDisplayOn()) {
Mathias Agopiancd60f992012-08-16 16:28:27 -07001102 // transform the dirty region into this screen's coordinate space
1103 const Region dirtyRegion(hw->getDirtyRegion(repaintEverything));
Mathias Agopian02b95102012-11-05 17:50:57 -08001104
1105 // repaint the framebuffer (if needed)
1106 doDisplayComposition(hw, dirtyRegion);
1107
Mathias Agopiancd60f992012-08-16 16:28:27 -07001108 hw->dirtyRegion.clear();
1109 hw->flip(hw->swapRegion);
1110 hw->swapRegion.clear();
Mathias Agopian87baae12012-07-31 12:38:26 -07001111 }
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07001112 // inform the h/w that we're done compositing
Mathias Agopian42977342012-08-05 00:40:46 -07001113 hw->compositionComplete();
Mathias Agopian4fec8732012-06-29 14:12:52 -07001114 }
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07001115 postFramebuffer();
Mathias Agopian4fec8732012-06-29 14:12:52 -07001116}
1117
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001118void SurfaceFlinger::postFramebuffer()
1119{
Mathias Agopian841cde52012-03-01 15:44:37 -08001120 ATRACE_CALL();
Mathias Agopianb048cef2012-02-04 15:44:04 -08001121
Mathias Agopiana44b0412011-10-16 18:46:35 -07001122 const nsecs_t now = systemTime();
1123 mDebugInSwapBuffers = now;
Jesse Hallc5c5a142012-07-02 16:49:28 -07001124
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07001125 HWComposer& hwc(getHwComposer());
Jesse Hallef194142012-06-14 14:45:17 -07001126 if (hwc.initCheck() == NO_ERROR) {
Mathias Agopian2a231842012-09-24 18:12:35 -07001127 if (!hwc.supportsFramebufferTarget()) {
1128 // EGL spec says:
1129 // "surface must be bound to the calling thread's current context,
1130 // for the current rendering API."
Mathias Agopian875d8e12013-06-07 15:35:48 -07001131 getDefaultDisplayDevice()->makeCurrent(mEGLDisplay, mEGLContext);
Mathias Agopian2a231842012-09-24 18:12:35 -07001132 }
Mathias Agopiane60b0682012-08-21 23:34:09 -07001133 hwc.commit();
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07001134 }
1135
Mathias Agopian6da15f42013-09-25 20:40:07 -07001136 // make the default display current because the VirtualDisplayDevice code cannot
1137 // deal with dequeueBuffer() being called outside of the composition loop; however
1138 // the code below can call glFlush() which is allowed (and does in some case) call
1139 // dequeueBuffer().
1140 getDefaultDisplayDevice()->makeCurrent(mEGLDisplay, mEGLContext);
1141
Mathias Agopian92a979a2012-08-02 18:32:23 -07001142 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
Mathias Agopian42977342012-08-05 00:40:46 -07001143 sp<const DisplayDevice> hw(mDisplays[dpy]);
Mathias Agopian13127d82013-03-05 17:47:11 -08001144 const Vector< sp<Layer> >& currentLayers(hw->getVisibleLayersSortedByZ());
Mathias Agopianda27af92012-09-13 18:17:13 -07001145 hw->onSwapBuffersCompleted(hwc);
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07001146 const size_t count = currentLayers.size();
Mathias Agopiane60b0682012-08-21 23:34:09 -07001147 int32_t id = hw->getHwcDisplayId();
1148 if (id >=0 && hwc.initCheck() == NO_ERROR) {
Mathias Agopian1e260872012-08-08 18:35:12 -07001149 HWComposer::LayerListIterator cur = hwc.begin(id);
1150 const HWComposer::LayerListIterator end = hwc.end(id);
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07001151 for (size_t i = 0; cur != end && i < count; ++i, ++cur) {
Mathias Agopiand3ee2312012-08-02 14:01:42 -07001152 currentLayers[i]->onLayerDisplayed(hw, &*cur);
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07001153 }
Mathias Agopiancd60f992012-08-16 16:28:27 -07001154 } else {
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07001155 for (size_t i = 0; i < count; i++) {
Mathias Agopiand3ee2312012-08-02 14:01:42 -07001156 currentLayers[i]->onLayerDisplayed(hw, NULL);
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07001157 }
Jesse Hallef194142012-06-14 14:45:17 -07001158 }
Jamie Gennise8696a42012-01-15 18:54:57 -08001159 }
1160
Mathias Agopiana44b0412011-10-16 18:46:35 -07001161 mLastSwapBufferTime = systemTime() - now;
1162 mDebugInSwapBuffers = 0;
Jamie Gennis6547ff42013-07-16 20:12:42 -07001163
1164 uint32_t flipCount = getDefaultDisplayDevice()->getPageFlipCount();
1165 if (flipCount % LOG_FRAME_STATS_PERIOD == 0) {
1166 logFrameStats();
1167 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001168}
1169
Mathias Agopian87baae12012-07-31 12:38:26 -07001170void SurfaceFlinger::handleTransaction(uint32_t transactionFlags)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001171{
Mathias Agopian841cde52012-03-01 15:44:37 -08001172 ATRACE_CALL();
1173
Mathias Agopian7cc6df52013-06-05 14:30:54 -07001174 // here we keep a copy of the drawing state (that is the state that's
1175 // going to be overwritten by handleTransactionLocked()) outside of
1176 // mStateLock so that the side-effects of the State assignment
1177 // don't happen with mStateLock held (which can cause deadlocks).
1178 State drawingState(mDrawingState);
1179
Mathias Agopianca4d3602011-05-19 15:38:14 -07001180 Mutex::Autolock _l(mStateLock);
1181 const nsecs_t now = systemTime();
1182 mDebugInTransaction = now;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001183
Mathias Agopianca4d3602011-05-19 15:38:14 -07001184 // Here we're guaranteed that some transaction flags are set
1185 // so we can call handleTransactionLocked() unconditionally.
1186 // We call getTransactionFlags(), which will also clear the flags,
1187 // with mStateLock held to guarantee that mCurrentState won't change
1188 // until the transaction is committed.
Mathias Agopian4da75192010-08-10 17:19:56 -07001189
Mathias Agopiane57f2922012-08-09 16:29:12 -07001190 transactionFlags = getTransactionFlags(eTransactionMask);
Mathias Agopian87baae12012-07-31 12:38:26 -07001191 handleTransactionLocked(transactionFlags);
Mathias Agopiandea20b12011-05-03 17:04:02 -07001192
Mathias Agopianca4d3602011-05-19 15:38:14 -07001193 mLastTransactionTime = systemTime() - now;
1194 mDebugInTransaction = 0;
1195 invalidateHwcGeometry();
1196 // here the transaction has been committed
Mathias Agopian3d579642009-06-04 18:46:21 -07001197}
1198
Mathias Agopian87baae12012-07-31 12:38:26 -07001199void SurfaceFlinger::handleTransactionLocked(uint32_t transactionFlags)
Mathias Agopian3d579642009-06-04 18:46:21 -07001200{
1201 const LayerVector& currentLayers(mCurrentState.layersSortedByZ);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001202 const size_t count = currentLayers.size();
1203
1204 /*
1205 * Traversal of the children
1206 * (perform the transaction for each of them if needed)
1207 */
1208
Mathias Agopian3559b072012-08-15 13:46:03 -07001209 if (transactionFlags & eTraversalNeeded) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001210 for (size_t i=0 ; i<count ; i++) {
Mathias Agopian13127d82013-03-05 17:47:11 -08001211 const sp<Layer>& layer(currentLayers[i]);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001212 uint32_t trFlags = layer->getTransactionFlags(eTransactionNeeded);
1213 if (!trFlags) continue;
1214
1215 const uint32_t flags = layer->doTransaction(0);
1216 if (flags & Layer::eVisibleRegion)
1217 mVisibleRegionsDirty = true;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001218 }
1219 }
1220
1221 /*
Mathias Agopian3559b072012-08-15 13:46:03 -07001222 * Perform display own transactions if needed
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001223 */
1224
Mathias Agopiane57f2922012-08-09 16:29:12 -07001225 if (transactionFlags & eDisplayTransactionNeeded) {
Mathias Agopian92a979a2012-08-02 18:32:23 -07001226 // here we take advantage of Vector's copy-on-write semantics to
1227 // improve performance by skipping the transaction entirely when
1228 // know that the lists are identical
Mathias Agopiane57f2922012-08-09 16:29:12 -07001229 const KeyedVector< wp<IBinder>, DisplayDeviceState>& curr(mCurrentState.displays);
1230 const KeyedVector< wp<IBinder>, DisplayDeviceState>& draw(mDrawingState.displays);
Mathias Agopian92a979a2012-08-02 18:32:23 -07001231 if (!curr.isIdenticalTo(draw)) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001232 mVisibleRegionsDirty = true;
Mathias Agopian92a979a2012-08-02 18:32:23 -07001233 const size_t cc = curr.size();
Mathias Agopian93997a82012-08-29 17:30:36 -07001234 size_t dc = draw.size();
Mathias Agopian92a979a2012-08-02 18:32:23 -07001235
1236 // find the displays that were removed
1237 // (ie: in drawing state but not in current state)
1238 // also handle displays that changed
1239 // (ie: displays that are in both lists)
1240 for (size_t i=0 ; i<dc ; i++) {
Mathias Agopiane57f2922012-08-09 16:29:12 -07001241 const ssize_t j = curr.indexOfKey(draw.keyAt(i));
1242 if (j < 0) {
Mathias Agopian92a979a2012-08-02 18:32:23 -07001243 // in drawing state but not in current state
Mathias Agopian3ee454a2012-08-27 16:28:24 -07001244 if (!draw[i].isMainDisplay()) {
Andy McFadden27ec5732012-10-02 19:04:45 -07001245 // Call makeCurrent() on the primary display so we can
1246 // be sure that nothing associated with this display
1247 // is current.
Jesse Hall02d86562013-03-25 14:43:23 -07001248 const sp<const DisplayDevice> defaultDisplay(getDefaultDisplayDevice());
Mathias Agopian875d8e12013-06-07 15:35:48 -07001249 defaultDisplay->makeCurrent(mEGLDisplay, mEGLContext);
Jesse Hall02d86562013-03-25 14:43:23 -07001250 sp<DisplayDevice> hw(getDisplayDevice(draw.keyAt(i)));
1251 if (hw != NULL)
1252 hw->disconnect(getHwComposer());
Jesse Hall9e663de2013-08-16 14:28:37 -07001253 if (draw[i].type < DisplayDevice::NUM_BUILTIN_DISPLAY_TYPES)
Jesse Hall7adb0f82013-03-06 16:13:49 -08001254 mEventThread->onHotplugReceived(draw[i].type, false);
Jesse Hall02d86562013-03-25 14:43:23 -07001255 mDisplays.removeItem(draw.keyAt(i));
Mathias Agopian92a979a2012-08-02 18:32:23 -07001256 } else {
1257 ALOGW("trying to remove the main display");
1258 }
1259 } else {
1260 // this display is in both lists. see if something changed.
Mathias Agopiane57f2922012-08-09 16:29:12 -07001261 const DisplayDeviceState& state(curr[j]);
Mathias Agopian3ee454a2012-08-27 16:28:24 -07001262 const wp<IBinder>& display(curr.keyAt(j));
Mathias Agopian111b2d82012-08-16 20:52:17 -07001263 if (state.surface->asBinder() != draw[i].surface->asBinder()) {
Mathias Agopiane57f2922012-08-09 16:29:12 -07001264 // changing the surface is like destroying and
Mathias Agopian93997a82012-08-29 17:30:36 -07001265 // recreating the DisplayDevice, so we just remove it
1266 // from the drawing state, so that it get re-added
1267 // below.
Jesse Hall02d86562013-03-25 14:43:23 -07001268 sp<DisplayDevice> hw(getDisplayDevice(display));
1269 if (hw != NULL)
1270 hw->disconnect(getHwComposer());
Mathias Agopian93997a82012-08-29 17:30:36 -07001271 mDisplays.removeItem(display);
1272 mDrawingState.displays.removeItemsAt(i);
1273 dc--; i--;
1274 // at this point we must loop to the next item
1275 continue;
1276 }
Mathias Agopiane57f2922012-08-09 16:29:12 -07001277
Mathias Agopiandb9b41f2012-10-15 16:51:41 -07001278 const sp<DisplayDevice> disp(getDisplayDevice(display));
Mathias Agopian93997a82012-08-29 17:30:36 -07001279 if (disp != NULL) {
1280 if (state.layerStack != draw[i].layerStack) {
1281 disp->setLayerStack(state.layerStack);
1282 }
Mathias Agopian00e8c7a2012-09-04 19:30:46 -07001283 if ((state.orientation != draw[i].orientation)
1284 || (state.viewport != draw[i].viewport)
1285 || (state.frame != draw[i].frame))
1286 {
1287 disp->setProjection(state.orientation,
Jeff Brown4fb39992012-09-07 12:55:10 -07001288 state.viewport, state.frame);
Mathias Agopian93997a82012-08-29 17:30:36 -07001289 }
Michael Lentine47e45402014-07-18 15:34:25 -07001290 if (state.width != draw[i].width || state.height != draw[i].height) {
1291 disp->setDisplaySize(state.width, state.height);
1292 }
Mathias Agopian92a979a2012-08-02 18:32:23 -07001293 }
1294 }
1295 }
1296
1297 // find displays that were added
1298 // (ie: in current state but not in drawing state)
1299 for (size_t i=0 ; i<cc ; i++) {
Mathias Agopiane57f2922012-08-09 16:29:12 -07001300 if (draw.indexOfKey(curr.keyAt(i)) < 0) {
Mathias Agopiane57f2922012-08-09 16:29:12 -07001301 const DisplayDeviceState& state(curr[i]);
Mathias Agopiancde87a32012-09-13 14:09:01 -07001302
Jesse Hall99c7dbb2013-03-14 14:29:29 -07001303 sp<DisplaySurface> dispSurface;
Mathias Agopiandb89edc2013-08-02 01:40:18 -07001304 sp<IGraphicBufferProducer> producer;
Dan Stozab9b08832014-03-13 11:55:57 -07001305 sp<IGraphicBufferProducer> bqProducer;
1306 sp<IGraphicBufferConsumer> bqConsumer;
1307 BufferQueue::createBufferQueue(&bqProducer, &bqConsumer,
1308 new GraphicBufferAlloc());
Mathias Agopiandb89edc2013-08-02 01:40:18 -07001309
Jesse Hall02d86562013-03-25 14:43:23 -07001310 int32_t hwcDisplayId = -1;
Jesse Hall99c7dbb2013-03-14 14:29:29 -07001311 if (state.isVirtualDisplay()) {
Jesse Hall02d86562013-03-25 14:43:23 -07001312 // Virtual displays without a surface are dormant:
1313 // they have external state (layer stack, projection,
1314 // etc.) but no internal state (i.e. a DisplayDevice).
Jesse Hall99c7dbb2013-03-14 14:29:29 -07001315 if (state.surface != NULL) {
Mathias Agopiandb89edc2013-08-02 01:40:18 -07001316
Jesse Hall02d86562013-03-25 14:43:23 -07001317 hwcDisplayId = allocateHwcDisplayId(state.type);
Mathias Agopiandb89edc2013-08-02 01:40:18 -07001318 sp<VirtualDisplaySurface> vds = new VirtualDisplaySurface(
Dan Stozab9b08832014-03-13 11:55:57 -07001319 *mHwc, hwcDisplayId, state.surface,
1320 bqProducer, bqConsumer, state.displayName);
Mathias Agopiandb89edc2013-08-02 01:40:18 -07001321
1322 dispSurface = vds;
Michael Lentine47e45402014-07-18 15:34:25 -07001323 producer = vds;
Jesse Hall99c7dbb2013-03-14 14:29:29 -07001324 }
1325 } else {
Mathias Agopiancde87a32012-09-13 14:09:01 -07001326 ALOGE_IF(state.surface!=NULL,
1327 "adding a supported display, but rendering "
1328 "surface is provided (%p), ignoring it",
1329 state.surface.get());
Jesse Hall02d86562013-03-25 14:43:23 -07001330 hwcDisplayId = allocateHwcDisplayId(state.type);
Mathias Agopiancde87a32012-09-13 14:09:01 -07001331 // for supported (by hwc) displays we provide our
1332 // own rendering surface
Dan Stozab9b08832014-03-13 11:55:57 -07001333 dispSurface = new FramebufferSurface(*mHwc, state.type,
1334 bqConsumer);
1335 producer = bqProducer;
Mathias Agopiancde87a32012-09-13 14:09:01 -07001336 }
1337
1338 const wp<IBinder>& display(curr.keyAt(i));
Jesse Hall99c7dbb2013-03-14 14:29:29 -07001339 if (dispSurface != NULL) {
Mathias Agopiancde87a32012-09-13 14:09:01 -07001340 sp<DisplayDevice> hw = new DisplayDevice(this,
Jesse Hall19e87292013-12-23 21:02:15 -08001341 state.type, hwcDisplayId,
1342 mHwc->getFormat(hwcDisplayId), state.isSecure,
Jesse Hall05f8c702013-12-23 20:44:38 -08001343 display, dispSurface, producer,
1344 mRenderEngine->getEGLConfig());
Mathias Agopiancde87a32012-09-13 14:09:01 -07001345 hw->setLayerStack(state.layerStack);
1346 hw->setProjection(state.orientation,
Jeff Brown4fb39992012-09-07 12:55:10 -07001347 state.viewport, state.frame);
Andy McFadden8dfa92f2012-09-17 18:27:17 -07001348 hw->setDisplayName(state.displayName);
Mathias Agopiancde87a32012-09-13 14:09:01 -07001349 mDisplays.add(display, hw);
Jesse Hall1c569c42013-04-05 13:44:52 -07001350 if (state.isVirtualDisplay()) {
1351 if (hwcDisplayId >= 0) {
1352 mHwc->setVirtualDisplayProperties(hwcDisplayId,
1353 hw->getWidth(), hw->getHeight(),
1354 hw->getFormat());
1355 }
1356 } else {
Jesse Hall7adb0f82013-03-06 16:13:49 -08001357 mEventThread->onHotplugReceived(state.type, true);
Jesse Hall1c569c42013-04-05 13:44:52 -07001358 }
Mathias Agopian93997a82012-08-29 17:30:36 -07001359 }
Mathias Agopian92a979a2012-08-02 18:32:23 -07001360 }
1361 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001362 }
Mathias Agopian3559b072012-08-15 13:46:03 -07001363 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001364
Mathias Agopian84300952012-11-21 16:02:13 -08001365 if (transactionFlags & (eTraversalNeeded|eDisplayTransactionNeeded)) {
1366 // The transform hint might have changed for some layers
1367 // (either because a display has changed, or because a layer
1368 // as changed).
1369 //
1370 // Walk through all the layers in currentLayers,
1371 // and update their transform hint.
1372 //
1373 // If a layer is visible only on a single display, then that
1374 // display is used to calculate the hint, otherwise we use the
1375 // default display.
1376 //
1377 // NOTE: we do this here, rather than in rebuildLayerStacks() so that
1378 // the hint is set before we acquire a buffer from the surface texture.
1379 //
1380 // NOTE: layer transactions have taken place already, so we use their
1381 // drawing state. However, SurfaceFlinger's own transaction has not
1382 // happened yet, so we must use the current state layer list
1383 // (soon to become the drawing state list).
1384 //
1385 sp<const DisplayDevice> disp;
1386 uint32_t currentlayerStack = 0;
1387 for (size_t i=0; i<count; i++) {
1388 // NOTE: we rely on the fact that layers are sorted by
1389 // layerStack first (so we don't have to traverse the list
1390 // of displays for every layer).
Mathias Agopian13127d82013-03-05 17:47:11 -08001391 const sp<Layer>& layer(currentLayers[i]);
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001392 uint32_t layerStack = layer->getDrawingState().layerStack;
Mathias Agopian84300952012-11-21 16:02:13 -08001393 if (i==0 || currentlayerStack != layerStack) {
1394 currentlayerStack = layerStack;
1395 // figure out if this layerstack is mirrored
1396 // (more than one display) if so, pick the default display,
1397 // if not, pick the only display it's on.
1398 disp.clear();
1399 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
1400 sp<const DisplayDevice> hw(mDisplays[dpy]);
1401 if (hw->getLayerStack() == currentlayerStack) {
1402 if (disp == NULL) {
1403 disp = hw;
1404 } else {
Chet Haase91d25932013-04-11 15:24:55 -07001405 disp = NULL;
Mathias Agopian84300952012-11-21 16:02:13 -08001406 break;
1407 }
1408 }
1409 }
1410 }
Chet Haase91d25932013-04-11 15:24:55 -07001411 if (disp == NULL) {
1412 // NOTE: TEMPORARY FIX ONLY. Real fix should cause layers to
1413 // redraw after transform hint changes. See bug 8508397.
1414
1415 // could be null when this layer is using a layerStack
1416 // that is not visible on any display. Also can occur at
1417 // screen off/on times.
1418 disp = getDefaultDisplayDevice();
Mathias Agopian84300952012-11-21 16:02:13 -08001419 }
Chet Haase91d25932013-04-11 15:24:55 -07001420 layer->updateTransformHint(disp);
Mathias Agopian84300952012-11-21 16:02:13 -08001421 }
1422 }
1423
1424
Mathias Agopian3559b072012-08-15 13:46:03 -07001425 /*
1426 * Perform our own transaction if needed
1427 */
Mathias Agopian0aa758d2009-04-22 15:23:34 -07001428
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001429 const LayerVector& layers(mDrawingState.layersSortedByZ);
1430 if (currentLayers.size() > layers.size()) {
Mathias Agopian3559b072012-08-15 13:46:03 -07001431 // layers have been added
1432 mVisibleRegionsDirty = true;
1433 }
1434
1435 // some layers might have been removed, so
1436 // we need to update the regions they're exposing.
1437 if (mLayersRemoved) {
1438 mLayersRemoved = false;
1439 mVisibleRegionsDirty = true;
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001440 const size_t count = layers.size();
Mathias Agopian3559b072012-08-15 13:46:03 -07001441 for (size_t i=0 ; i<count ; i++) {
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001442 const sp<Layer>& layer(layers[i]);
Mathias Agopian3559b072012-08-15 13:46:03 -07001443 if (currentLayers.indexOf(layer) < 0) {
1444 // this layer is not visible anymore
1445 // TODO: we could traverse the tree from front to back and
1446 // compute the actual visible region
1447 // TODO: we could cache the transformed region
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001448 const Layer::State& s(layer->getDrawingState());
Mathias Agopian1501d542012-09-04 21:04:09 -07001449 Region visibleReg = s.transform.transform(
1450 Region(Rect(s.active.w, s.active.h)));
1451 invalidateLayerStack(s.layerStack, visibleReg);
Mathias Agopian0aa758d2009-04-22 15:23:34 -07001452 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001453 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001454 }
1455
1456 commitTransaction();
Riley Andrews03414a12014-07-01 14:22:59 -07001457
1458 updateCursorAsync();
1459}
1460
1461void SurfaceFlinger::updateCursorAsync()
1462{
1463 HWComposer& hwc(getHwComposer());
1464 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
1465 sp<const DisplayDevice> hw(mDisplays[dpy]);
1466 const int32_t id = hw->getHwcDisplayId();
1467 if (id < 0) {
1468 continue;
1469 }
1470 const Vector< sp<Layer> >& currentLayers(
1471 hw->getVisibleLayersSortedByZ());
1472 const size_t count = currentLayers.size();
1473 HWComposer::LayerListIterator cur = hwc.begin(id);
1474 const HWComposer::LayerListIterator end = hwc.end(id);
1475 for (size_t i=0 ; cur!=end && i<count ; ++i, ++cur) {
1476 if (cur->getCompositionType() != HWC_CURSOR_OVERLAY) {
1477 continue;
1478 }
1479 const sp<Layer>& layer(currentLayers[i]);
1480 Rect cursorPos = layer->getPosition(hw);
1481 hwc.setCursorPositionAsync(id, cursorPos);
1482 break;
1483 }
1484 }
Mathias Agopian4fec8732012-06-29 14:12:52 -07001485}
1486
1487void SurfaceFlinger::commitTransaction()
1488{
1489 if (!mLayersPendingRemoval.isEmpty()) {
1490 // Notify removed layers now that they can't be drawn from
1491 for (size_t i = 0; i < mLayersPendingRemoval.size(); i++) {
1492 mLayersPendingRemoval[i]->onRemoved();
1493 }
1494 mLayersPendingRemoval.clear();
1495 }
1496
Jamie Gennis4b0eba92013-02-05 13:30:24 -08001497 // If this transaction is part of a window animation then the next frame
1498 // we composite should be considered an animation as well.
1499 mAnimCompositionPending = mAnimTransactionPending;
1500
Mathias Agopian4fec8732012-06-29 14:12:52 -07001501 mDrawingState = mCurrentState;
Jamie Gennis2d5e2302012-10-15 18:24:43 -07001502 mTransactionPending = false;
1503 mAnimTransactionPending = false;
Mathias Agopian4fec8732012-06-29 14:12:52 -07001504 mTransactionCV.broadcast();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001505}
1506
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001507void SurfaceFlinger::computeVisibleRegions(
Mathias Agopian87baae12012-07-31 12:38:26 -07001508 const LayerVector& currentLayers, uint32_t layerStack,
1509 Region& outDirtyRegion, Region& outOpaqueRegion)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001510{
Mathias Agopian841cde52012-03-01 15:44:37 -08001511 ATRACE_CALL();
1512
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001513 Region aboveOpaqueLayers;
1514 Region aboveCoveredLayers;
1515 Region dirty;
1516
Mathias Agopian87baae12012-07-31 12:38:26 -07001517 outDirtyRegion.clear();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001518
1519 size_t i = currentLayers.size();
1520 while (i--) {
Mathias Agopian13127d82013-03-05 17:47:11 -08001521 const sp<Layer>& layer = currentLayers[i];
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001522
1523 // start with the whole surface at its current location
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001524 const Layer::State& s(layer->getDrawingState());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001525
Jesse Hall01e29052013-02-19 16:13:35 -08001526 // only consider the layers on the given layer stack
Mathias Agopian87baae12012-07-31 12:38:26 -07001527 if (s.layerStack != layerStack)
1528 continue;
1529
Mathias Agopianab028732010-03-16 16:41:46 -07001530 /*
1531 * opaqueRegion: area of a surface that is fully opaque.
1532 */
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001533 Region opaqueRegion;
Mathias Agopianab028732010-03-16 16:41:46 -07001534
1535 /*
1536 * visibleRegion: area of a surface that is visible on screen
1537 * and not fully transparent. This is essentially the layer's
1538 * footprint minus the opaque regions above it.
1539 * Areas covered by a translucent surface are considered visible.
1540 */
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001541 Region visibleRegion;
Mathias Agopianab028732010-03-16 16:41:46 -07001542
1543 /*
1544 * coveredRegion: area of a surface that is covered by all
1545 * visible regions above it (which includes the translucent areas).
1546 */
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001547 Region coveredRegion;
Mathias Agopianab028732010-03-16 16:41:46 -07001548
Jesse Halla8026d22012-09-25 13:25:04 -07001549 /*
1550 * transparentRegion: area of a surface that is hinted to be completely
1551 * transparent. This is only used to tell when the layer has no visible
1552 * non-transparent regions and can be removed from the layer list. It
1553 * does not affect the visibleRegion of this layer or any layers
1554 * beneath it. The hint may not be correct if apps don't respect the
1555 * SurfaceView restrictions (which, sadly, some don't).
1556 */
1557 Region transparentRegion;
1558
Mathias Agopianab028732010-03-16 16:41:46 -07001559
1560 // handle hidden surfaces by setting the visible region to empty
Mathias Agopianda27af92012-09-13 18:17:13 -07001561 if (CC_LIKELY(layer->isVisible())) {
Andy McFadden4125a4f2014-01-29 17:17:11 -08001562 const bool translucent = !layer->isOpaque(s);
Mathias Agopian5219a062013-02-26 16:37:53 -08001563 Rect bounds(s.transform.transform(layer->computeBounds()));
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001564 visibleRegion.set(bounds);
Mathias Agopianab028732010-03-16 16:41:46 -07001565 if (!visibleRegion.isEmpty()) {
1566 // Remove the transparent area from the visible region
1567 if (translucent) {
Mathias Agopian4fec8732012-06-29 14:12:52 -07001568 const Transform tr(s.transform);
1569 if (tr.transformed()) {
1570 if (tr.preserveRects()) {
1571 // transform the transparent region
Mathias Agopian2ca79392013-04-02 18:30:32 -07001572 transparentRegion = tr.transform(s.activeTransparentRegion);
Mathias Agopian4fec8732012-06-29 14:12:52 -07001573 } else {
1574 // transformation too complex, can't do the
1575 // transparent region optimization.
Jesse Halla8026d22012-09-25 13:25:04 -07001576 transparentRegion.clear();
Mathias Agopian4fec8732012-06-29 14:12:52 -07001577 }
1578 } else {
Mathias Agopian2ca79392013-04-02 18:30:32 -07001579 transparentRegion = s.activeTransparentRegion;
Mathias Agopian4fec8732012-06-29 14:12:52 -07001580 }
Mathias Agopianab028732010-03-16 16:41:46 -07001581 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001582
Mathias Agopianab028732010-03-16 16:41:46 -07001583 // compute the opaque region
Mathias Agopian4fec8732012-06-29 14:12:52 -07001584 const int32_t layerOrientation = s.transform.getOrientation();
Mathias Agopianab028732010-03-16 16:41:46 -07001585 if (s.alpha==255 && !translucent &&
1586 ((layerOrientation & Transform::ROT_INVALID) == false)) {
1587 // the opaque region is the layer's footprint
1588 opaqueRegion = visibleRegion;
1589 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001590 }
1591 }
1592
Mathias Agopianab028732010-03-16 16:41:46 -07001593 // Clip the covered region to the visible region
1594 coveredRegion = aboveCoveredLayers.intersect(visibleRegion);
1595
1596 // Update aboveCoveredLayers for next (lower) layer
1597 aboveCoveredLayers.orSelf(visibleRegion);
1598
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001599 // subtract the opaque region covered by the layers above us
1600 visibleRegion.subtractSelf(aboveOpaqueLayers);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001601
1602 // compute this layer's dirty region
1603 if (layer->contentDirty) {
1604 // we need to invalidate the whole region
1605 dirty = visibleRegion;
1606 // as well, as the old visible region
Mathias Agopian4fec8732012-06-29 14:12:52 -07001607 dirty.orSelf(layer->visibleRegion);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001608 layer->contentDirty = false;
1609 } else {
Mathias Agopiana8d44f72009-06-28 02:54:16 -07001610 /* compute the exposed region:
Mathias Agopianab028732010-03-16 16:41:46 -07001611 * the exposed region consists of two components:
1612 * 1) what's VISIBLE now and was COVERED before
1613 * 2) what's EXPOSED now less what was EXPOSED before
1614 *
1615 * note that (1) is conservative, we start with the whole
1616 * visible region but only keep what used to be covered by
1617 * something -- which mean it may have been exposed.
1618 *
1619 * (2) handles areas that were not covered by anything but got
1620 * exposed because of a resize.
Mathias Agopiana8d44f72009-06-28 02:54:16 -07001621 */
Mathias Agopianab028732010-03-16 16:41:46 -07001622 const Region newExposed = visibleRegion - coveredRegion;
Mathias Agopian4fec8732012-06-29 14:12:52 -07001623 const Region oldVisibleRegion = layer->visibleRegion;
1624 const Region oldCoveredRegion = layer->coveredRegion;
Mathias Agopianab028732010-03-16 16:41:46 -07001625 const Region oldExposed = oldVisibleRegion - oldCoveredRegion;
1626 dirty = (visibleRegion&oldCoveredRegion) | (newExposed-oldExposed);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001627 }
1628 dirty.subtractSelf(aboveOpaqueLayers);
1629
1630 // accumulate to the screen dirty region
Mathias Agopian87baae12012-07-31 12:38:26 -07001631 outDirtyRegion.orSelf(dirty);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001632
Mathias Agopianab028732010-03-16 16:41:46 -07001633 // Update aboveOpaqueLayers for next (lower) layer
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001634 aboveOpaqueLayers.orSelf(opaqueRegion);
Andreas Huber8b42e8a2010-08-16 08:49:37 -07001635
Jesse Halla8026d22012-09-25 13:25:04 -07001636 // Store the visible region in screen space
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001637 layer->setVisibleRegion(visibleRegion);
1638 layer->setCoveredRegion(coveredRegion);
Jesse Halla8026d22012-09-25 13:25:04 -07001639 layer->setVisibleNonTransparentRegion(
1640 visibleRegion.subtract(transparentRegion));
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001641 }
1642
Mathias Agopian87baae12012-07-31 12:38:26 -07001643 outOpaqueRegion = aboveOpaqueLayers;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001644}
1645
Mathias Agopian87baae12012-07-31 12:38:26 -07001646void SurfaceFlinger::invalidateLayerStack(uint32_t layerStack,
1647 const Region& dirty) {
Mathias Agopian92a979a2012-08-02 18:32:23 -07001648 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
Mathias Agopian42977342012-08-05 00:40:46 -07001649 const sp<DisplayDevice>& hw(mDisplays[dpy]);
1650 if (hw->getLayerStack() == layerStack) {
1651 hw->dirtyRegion.orSelf(dirty);
Mathias Agopian92a979a2012-08-02 18:32:23 -07001652 }
1653 }
Mathias Agopian87baae12012-07-31 12:38:26 -07001654}
1655
1656void SurfaceFlinger::handlePageFlip()
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001657{
Mathias Agopian4fec8732012-06-29 14:12:52 -07001658 Region dirtyRegion;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001659
Mathias Agopian4fec8732012-06-29 14:12:52 -07001660 bool visibleRegions = false;
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001661 const LayerVector& layers(mDrawingState.layersSortedByZ);
Eric Penner51c59cd2014-07-28 19:51:58 -07001662
1663 // Store the set of layers that need updates. This set must not change as
1664 // buffers are being latched, as this could result in a deadlock.
1665 // Example: Two producers share the same command stream and:
1666 // 1.) Layer 0 is latched
1667 // 2.) Layer 0 gets a new frame
1668 // 2.) Layer 1 gets a new frame
1669 // 3.) Layer 1 is latched.
1670 // Display is now waiting on Layer 1's frame, which is behind layer 0's
1671 // second frame. But layer 0's second frame could be waiting on display.
1672 Vector<Layer*> layersWithQueuedFrames;
1673 for (size_t i = 0, count = layers.size(); i<count ; i++) {
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001674 const sp<Layer>& layer(layers[i]);
Eric Penner51c59cd2014-07-28 19:51:58 -07001675 if (layer->hasQueuedFrame())
1676 layersWithQueuedFrames.push_back(layer.get());
1677 }
1678 for (size_t i = 0, count = layersWithQueuedFrames.size() ; i<count ; i++) {
1679 Layer* layer = layersWithQueuedFrames[i];
Mathias Agopian87baae12012-07-31 12:38:26 -07001680 const Region dirty(layer->latchBuffer(visibleRegions));
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001681 const Layer::State& s(layer->getDrawingState());
Mathias Agopian87baae12012-07-31 12:38:26 -07001682 invalidateLayerStack(s.layerStack, dirty);
Mathias Agopian4fec8732012-06-29 14:12:52 -07001683 }
Mathias Agopian4da75192010-08-10 17:19:56 -07001684
Mathias Agopian3b1d2b62012-07-11 13:48:17 -07001685 mVisibleRegionsDirty |= visibleRegions;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001686}
1687
Mathias Agopianad456f92011-01-13 17:53:01 -08001688void SurfaceFlinger::invalidateHwcGeometry()
1689{
1690 mHwWorkListDirty = true;
1691}
1692
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001693
Mathias Agopiancd60f992012-08-16 16:28:27 -07001694void SurfaceFlinger::doDisplayComposition(const sp<const DisplayDevice>& hw,
Mathias Agopian87baae12012-07-31 12:38:26 -07001695 const Region& inDirtyRegion)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001696{
Dan Stoza71433162014-02-04 16:22:36 -08001697 // We only need to actually compose the display if:
1698 // 1) It is being handled by hardware composer, which may need this to
1699 // keep its virtual display state machine in sync, or
1700 // 2) There is work to be done (the dirty region isn't empty)
1701 bool isHwcDisplay = hw->getHwcDisplayId() >= 0;
1702 if (!isHwcDisplay && inDirtyRegion.isEmpty()) {
1703 return;
1704 }
1705
Mathias Agopian87baae12012-07-31 12:38:26 -07001706 Region dirtyRegion(inDirtyRegion);
1707
Mathias Agopianb8a55602009-06-26 19:06:36 -07001708 // compute the invalid region
Mathias Agopian42977342012-08-05 00:40:46 -07001709 hw->swapRegion.orSelf(dirtyRegion);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001710
Mathias Agopian42977342012-08-05 00:40:46 -07001711 uint32_t flags = hw->getFlags();
Mathias Agopian0f2f5ff2012-07-31 23:09:07 -07001712 if (flags & DisplayDevice::SWAP_RECTANGLE) {
Mathias Agopian29d06ac2009-06-29 18:49:56 -07001713 // we can redraw only what's dirty, but since SWAP_RECTANGLE only
1714 // takes a rectangle, we must make sure to update that whole
1715 // rectangle in that case
Mathias Agopian42977342012-08-05 00:40:46 -07001716 dirtyRegion.set(hw->swapRegion.bounds());
Mathias Agopian29d06ac2009-06-29 18:49:56 -07001717 } else {
Mathias Agopian0f2f5ff2012-07-31 23:09:07 -07001718 if (flags & DisplayDevice::PARTIAL_UPDATES) {
Mathias Agopian29d06ac2009-06-29 18:49:56 -07001719 // We need to redraw the rectangle that will be updated
1720 // (pushed to the framebuffer).
Mathias Agopian95a666b2009-09-24 14:57:26 -07001721 // This is needed because PARTIAL_UPDATES only takes one
Mathias Agopian0f2f5ff2012-07-31 23:09:07 -07001722 // rectangle instead of a region (see DisplayDevice::flip())
Mathias Agopian42977342012-08-05 00:40:46 -07001723 dirtyRegion.set(hw->swapRegion.bounds());
Mathias Agopian29d06ac2009-06-29 18:49:56 -07001724 } else {
1725 // we need to redraw everything (the whole screen)
Mathias Agopian42977342012-08-05 00:40:46 -07001726 dirtyRegion.set(hw->bounds());
1727 hw->swapRegion = dirtyRegion;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001728 }
1729 }
1730
Alan Viverette9c5a3332013-09-12 20:04:35 -07001731 if (CC_LIKELY(!mDaltonize && !mHasColorMatrix)) {
Mathias Agopianff2ed702013-09-01 21:36:12 -07001732 doComposeSurfaces(hw, dirtyRegion);
1733 } else {
1734 RenderEngine& engine(getRenderEngine());
Alan Viverette9c5a3332013-09-12 20:04:35 -07001735 mat4 colorMatrix = mColorMatrix;
1736 if (mDaltonize) {
Alan Viverette9c5a3332013-09-12 20:04:35 -07001737 colorMatrix = colorMatrix * mDaltonizer();
Alan Viverette9c5a3332013-09-12 20:04:35 -07001738 }
1739 engine.beginGroup(colorMatrix);
Mathias Agopianff2ed702013-09-01 21:36:12 -07001740 doComposeSurfaces(hw, dirtyRegion);
1741 engine.endGroup();
1742 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001743
Mathias Agopian9c6e2972011-09-20 17:21:56 -07001744 // update the swap region and clear the dirty region
Mathias Agopian42977342012-08-05 00:40:46 -07001745 hw->swapRegion.orSelf(dirtyRegion);
Mathias Agopianda27af92012-09-13 18:17:13 -07001746
1747 // swap buffers (presentation)
1748 hw->swapBuffers(getHwComposer());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001749}
1750
Mathias Agopiancd60f992012-08-16 16:28:27 -07001751void SurfaceFlinger::doComposeSurfaces(const sp<const DisplayDevice>& hw, const Region& dirty)
Mathias Agopianf384cc32011-09-08 18:31:55 -07001752{
Mathias Agopian3f844832013-08-07 21:24:32 -07001753 RenderEngine& engine(getRenderEngine());
Mathias Agopian85d751c2012-08-29 16:59:24 -07001754 const int32_t id = hw->getHwcDisplayId();
Mathias Agopian86303202012-07-24 22:46:10 -07001755 HWComposer& hwc(getHwComposer());
Mathias Agopian1e260872012-08-08 18:35:12 -07001756 HWComposer::LayerListIterator cur = hwc.begin(id);
1757 const HWComposer::LayerListIterator end = hwc.end(id);
Mathias Agopiancd20eb02011-09-22 20:57:04 -07001758
Jesse Halld05a17f2013-09-30 16:49:30 -07001759 bool hasGlesComposition = hwc.hasGlesComposition(id);
Mathias Agopian85d751c2012-08-29 16:59:24 -07001760 if (hasGlesComposition) {
Mathias Agopian875d8e12013-06-07 15:35:48 -07001761 if (!hw->makeCurrent(mEGLDisplay, mEGLContext)) {
Michael Chockc8c71092013-03-04 15:15:46 -08001762 ALOGW("DisplayDevice::makeCurrent failed. Aborting surface composition for display %s",
1763 hw->getDisplayName().string());
1764 return;
1765 }
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07001766
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07001767 // Never touch the framebuffer if we don't have any framebuffer layers
Mathias Agopian85d751c2012-08-29 16:59:24 -07001768 const bool hasHwcComposition = hwc.hasHwcComposition(id);
Mathias Agopiane60b0682012-08-21 23:34:09 -07001769 if (hasHwcComposition) {
Mathias Agopianb9494d52012-04-18 02:28:45 -07001770 // when using overlays, we assume a fully transparent framebuffer
1771 // NOTE: we could reduce how much we need to clear, for instance
1772 // remove where there are opaque FB layers. however, on some
Mathias Agopian3f844832013-08-07 21:24:32 -07001773 // GPUs doing a "clean slate" clear might be more efficient.
Mathias Agopianb9494d52012-04-18 02:28:45 -07001774 // We'll revisit later if needed.
Mathias Agopian3f844832013-08-07 21:24:32 -07001775 engine.clearWithColor(0, 0, 0, 0);
Mathias Agopianb9494d52012-04-18 02:28:45 -07001776 } else {
Mathias Agopian766dc492012-10-30 18:08:06 -07001777 // we start with the whole screen area
1778 const Region bounds(hw->getBounds());
1779
1780 // we remove the scissor part
1781 // we're left with the letterbox region
1782 // (common case is that letterbox ends-up being empty)
1783 const Region letterbox(bounds.subtract(hw->getScissor()));
1784
1785 // compute the area to clear
1786 Region region(hw->undefinedRegion.merge(letterbox));
1787
1788 // but limit it to the dirty region
1789 region.andSelf(dirty);
1790
Mathias Agopianb9494d52012-04-18 02:28:45 -07001791 // screen is already cleared here
Mathias Agopian87baae12012-07-31 12:38:26 -07001792 if (!region.isEmpty()) {
Mathias Agopianb9494d52012-04-18 02:28:45 -07001793 // can happen with SurfaceView
Mathias Agopian55801e42012-08-27 18:54:24 -07001794 drawWormhole(hw, region);
Mathias Agopianb9494d52012-04-18 02:28:45 -07001795 }
Mathias Agopiana2f4e562012-04-15 23:34:59 -07001796 }
Mathias Agopianf45c5102012-10-24 16:29:17 -07001797
Mathias Agopian766dc492012-10-30 18:08:06 -07001798 if (hw->getDisplayType() != DisplayDevice::DISPLAY_PRIMARY) {
1799 // just to be on the safe side, we don't set the
Mathias Agopianf45c5102012-10-24 16:29:17 -07001800 // scissor on the main display. It should never be needed
1801 // anyways (though in theory it could since the API allows it).
1802 const Rect& bounds(hw->getBounds());
Mathias Agopian766dc492012-10-30 18:08:06 -07001803 const Rect& scissor(hw->getScissor());
Mathias Agopianf45c5102012-10-24 16:29:17 -07001804 if (scissor != bounds) {
1805 // scissor doesn't match the screen's dimensions, so we
1806 // need to clear everything outside of it and enable
1807 // the GL scissor so we don't draw anything where we shouldn't
Mathias Agopian3f844832013-08-07 21:24:32 -07001808
Mathias Agopianf45c5102012-10-24 16:29:17 -07001809 // enable scissor for this frame
Mathias Agopian3f844832013-08-07 21:24:32 -07001810 const uint32_t height = hw->getHeight();
1811 engine.setScissor(scissor.left, height - scissor.bottom,
1812 scissor.getWidth(), scissor.getHeight());
Mathias Agopianf45c5102012-10-24 16:29:17 -07001813 }
1814 }
Mathias Agopian85d751c2012-08-29 16:59:24 -07001815 }
Mathias Agopian4b2ba532012-03-29 12:23:51 -07001816
Mathias Agopian85d751c2012-08-29 16:59:24 -07001817 /*
1818 * and then, render the layers targeted at the framebuffer
1819 */
Mathias Agopian4b2ba532012-03-29 12:23:51 -07001820
Mathias Agopian13127d82013-03-05 17:47:11 -08001821 const Vector< sp<Layer> >& layers(hw->getVisibleLayersSortedByZ());
Mathias Agopian85d751c2012-08-29 16:59:24 -07001822 const size_t count = layers.size();
1823 const Transform& tr = hw->getTransform();
1824 if (cur != end) {
1825 // we're using h/w composer
1826 for (size_t i=0 ; i<count && cur!=end ; ++i, ++cur) {
Mathias Agopian13127d82013-03-05 17:47:11 -08001827 const sp<Layer>& layer(layers[i]);
Mathias Agopian4fec8732012-06-29 14:12:52 -07001828 const Region clip(dirty.intersect(tr.transform(layer->visibleRegion)));
Mathias Agopian85d751c2012-08-29 16:59:24 -07001829 if (!clip.isEmpty()) {
1830 switch (cur->getCompositionType()) {
Riley Andrews03414a12014-07-01 14:22:59 -07001831 case HWC_CURSOR_OVERLAY:
Mathias Agopian85d751c2012-08-29 16:59:24 -07001832 case HWC_OVERLAY: {
Mathias Agopianac683022013-10-01 15:36:52 -07001833 const Layer::State& state(layer->getDrawingState());
Mathias Agopian85d751c2012-08-29 16:59:24 -07001834 if ((cur->getHints() & HWC_HINT_CLEAR_FB)
1835 && i
Andy McFadden4125a4f2014-01-29 17:17:11 -08001836 && layer->isOpaque(state) && (state.alpha == 0xFF)
Mathias Agopian85d751c2012-08-29 16:59:24 -07001837 && hasGlesComposition) {
Mathias Agopiancd60f992012-08-16 16:28:27 -07001838 // never clear the very first layer since we're
1839 // guaranteed the FB is already cleared
1840 layer->clearWithOpenGL(hw, clip);
1841 }
Mathias Agopian85d751c2012-08-29 16:59:24 -07001842 break;
Mathias Agopiancd60f992012-08-16 16:28:27 -07001843 }
Mathias Agopian85d751c2012-08-29 16:59:24 -07001844 case HWC_FRAMEBUFFER: {
1845 layer->draw(hw, clip);
1846 break;
1847 }
Mathias Agopianda27af92012-09-13 18:17:13 -07001848 case HWC_FRAMEBUFFER_TARGET: {
1849 // this should not happen as the iterator shouldn't
1850 // let us get there.
Greg Hackmann86efcc02014-03-07 12:44:02 -08001851 ALOGW("HWC_FRAMEBUFFER_TARGET found in hwc list (index=%zu)", i);
Mathias Agopianda27af92012-09-13 18:17:13 -07001852 break;
1853 }
Mathias Agopiancd60f992012-08-16 16:28:27 -07001854 }
Mathias Agopian85d751c2012-08-29 16:59:24 -07001855 }
1856 layer->setAcquireFence(hw, *cur);
1857 }
1858 } else {
1859 // we're not using h/w composer
1860 for (size_t i=0 ; i<count ; ++i) {
Mathias Agopian13127d82013-03-05 17:47:11 -08001861 const sp<Layer>& layer(layers[i]);
Mathias Agopian85d751c2012-08-29 16:59:24 -07001862 const Region clip(dirty.intersect(
1863 tr.transform(layer->visibleRegion)));
1864 if (!clip.isEmpty()) {
1865 layer->draw(hw, clip);
Jesse Halla6b32db2012-07-19 16:44:38 -07001866 }
Mathias Agopian4b2ba532012-03-29 12:23:51 -07001867 }
1868 }
Mathias Agopianf45c5102012-10-24 16:29:17 -07001869
1870 // disable scissor at the end of the frame
Mathias Agopian3f844832013-08-07 21:24:32 -07001871 engine.disableScissor();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001872}
1873
Mathias Agopian3f844832013-08-07 21:24:32 -07001874void SurfaceFlinger::drawWormhole(const sp<const DisplayDevice>& hw, const Region& region) const {
Mathias Agopian55801e42012-08-27 18:54:24 -07001875 const int32_t height = hw->getHeight();
Mathias Agopian3f844832013-08-07 21:24:32 -07001876 RenderEngine& engine(getRenderEngine());
1877 engine.fillRegionWithColor(region, height, 0, 0, 0, 0);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001878}
1879
Mathias Agopianac9fa422013-02-11 16:40:36 -08001880void SurfaceFlinger::addClientLayer(const sp<Client>& client,
1881 const sp<IBinder>& handle,
Mathias Agopian67106042013-03-14 19:18:13 -07001882 const sp<IGraphicBufferProducer>& gbc,
Mathias Agopian13127d82013-03-05 17:47:11 -08001883 const sp<Layer>& lbc)
Mathias Agopian96f08192010-06-02 23:28:45 -07001884{
Mathias Agopian96f08192010-06-02 23:28:45 -07001885 // attach this layer to the client
Mathias Agopianac9fa422013-02-11 16:40:36 -08001886 client->attachLayer(handle, lbc);
Mathias Agopian4f113742011-05-03 16:21:41 -07001887
Mathias Agopian96f08192010-06-02 23:28:45 -07001888 // add this layer to the current state list
Mathias Agopian921e6ac2012-07-23 23:11:29 -07001889 Mutex::Autolock _l(mStateLock);
1890 mCurrentState.layersSortedByZ.add(lbc);
Mathias Agopian67106042013-03-14 19:18:13 -07001891 mGraphicBufferProducerList.add(gbc->asBinder());
Mathias Agopian96f08192010-06-02 23:28:45 -07001892}
1893
Mathias Agopian3f844832013-08-07 21:24:32 -07001894status_t SurfaceFlinger::removeLayer(const sp<Layer>& layer) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001895 Mutex::Autolock _l(mStateLock);
Mathias Agopian13127d82013-03-05 17:47:11 -08001896 ssize_t index = mCurrentState.layersSortedByZ.remove(layer);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001897 if (index >= 0) {
Mathias Agopian67106042013-03-14 19:18:13 -07001898 mLayersPendingRemoval.push(layer);
Mathias Agopian076b1cc2009-04-10 14:24:30 -07001899 mLayersRemoved = true;
Mathias Agopian67106042013-03-14 19:18:13 -07001900 setTransactionFlags(eTransactionNeeded);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001901 return NO_ERROR;
1902 }
Mathias Agopian3d579642009-06-04 18:46:21 -07001903 return status_t(index);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001904}
1905
Dan Stozac7014012014-02-14 15:03:43 -08001906uint32_t SurfaceFlinger::peekTransactionFlags(uint32_t /* flags */) {
Mathias Agopiandea20b12011-05-03 17:04:02 -07001907 return android_atomic_release_load(&mTransactionFlags);
1908}
1909
Mathias Agopian3f844832013-08-07 21:24:32 -07001910uint32_t SurfaceFlinger::getTransactionFlags(uint32_t flags) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001911 return android_atomic_and(~flags, &mTransactionFlags) & flags;
1912}
1913
Mathias Agopian3f844832013-08-07 21:24:32 -07001914uint32_t SurfaceFlinger::setTransactionFlags(uint32_t flags) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001915 uint32_t old = android_atomic_or(flags, &mTransactionFlags);
1916 if ((old & flags)==0) { // wake the server up
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001917 signalTransaction();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001918 }
1919 return old;
1920}
1921
Mathias Agopian8b33f032012-07-24 20:43:54 -07001922void SurfaceFlinger::setTransactionState(
1923 const Vector<ComposerState>& state,
1924 const Vector<DisplayState>& displays,
1925 uint32_t flags)
1926{
Jamie Gennis7c41bf72012-10-17 09:29:47 -07001927 ATRACE_CALL();
Mathias Agopian698c0872011-06-28 19:09:31 -07001928 Mutex::Autolock _l(mStateLock);
Jamie Gennis28378392011-10-12 17:39:00 -07001929 uint32_t transactionFlags = 0;
Mathias Agopiane57f2922012-08-09 16:29:12 -07001930
Jamie Gennis2d5e2302012-10-15 18:24:43 -07001931 if (flags & eAnimation) {
1932 // For window updates that are part of an animation we must wait for
1933 // previous animation "frames" to be handled.
1934 while (mAnimTransactionPending) {
Jamie Gennis7c41bf72012-10-17 09:29:47 -07001935 status_t err = mTransactionCV.waitRelative(mStateLock, s2ns(5));
Jamie Gennis2d5e2302012-10-15 18:24:43 -07001936 if (CC_UNLIKELY(err != NO_ERROR)) {
1937 // just in case something goes wrong in SF, return to the
Jamie Gennis7c41bf72012-10-17 09:29:47 -07001938 // caller after a few seconds.
1939 ALOGW_IF(err == TIMED_OUT, "setTransactionState timed out "
1940 "waiting for previous animation frame");
Jamie Gennis2d5e2302012-10-15 18:24:43 -07001941 mAnimTransactionPending = false;
1942 break;
1943 }
1944 }
1945 }
1946
Mathias Agopiane57f2922012-08-09 16:29:12 -07001947 size_t count = displays.size();
1948 for (size_t i=0 ; i<count ; i++) {
1949 const DisplayState& s(displays[i]);
1950 transactionFlags |= setDisplayStateLocked(s);
Jamie Gennisb8d69a52011-10-10 15:48:06 -07001951 }
1952
Mathias Agopiane57f2922012-08-09 16:29:12 -07001953 count = state.size();
Mathias Agopian698c0872011-06-28 19:09:31 -07001954 for (size_t i=0 ; i<count ; i++) {
1955 const ComposerState& s(state[i]);
Mathias Agopiand17e3b52012-10-22 14:27:45 -07001956 // Here we need to check that the interface we're given is indeed
1957 // one of our own. A malicious client could give us a NULL
1958 // IInterface, or one of its own or even one of our own but a
1959 // different type. All these situations would cause us to crash.
1960 //
1961 // NOTE: it would be better to use RTTI as we could directly check
1962 // that we have a Client*. however, RTTI is disabled in Android.
1963 if (s.client != NULL) {
1964 sp<IBinder> binder = s.client->asBinder();
1965 if (binder != NULL) {
1966 String16 desc(binder->getInterfaceDescriptor());
1967 if (desc == ISurfaceComposerClient::descriptor) {
1968 sp<Client> client( static_cast<Client *>(s.client.get()) );
1969 transactionFlags |= setClientStateLocked(client, s.state);
1970 }
1971 }
1972 }
Mathias Agopian698c0872011-06-28 19:09:31 -07001973 }
Mathias Agopian698c0872011-06-28 19:09:31 -07001974
Mathias Agopian386aa982011-11-07 21:58:03 -08001975 if (transactionFlags) {
1976 // this triggers the transaction
1977 setTransactionFlags(transactionFlags);
1978
1979 // if this is a synchronous transaction, wait for it to take effect
1980 // before returning.
1981 if (flags & eSynchronous) {
Jamie Gennis2d5e2302012-10-15 18:24:43 -07001982 mTransactionPending = true;
Mathias Agopian386aa982011-11-07 21:58:03 -08001983 }
Jamie Gennis2d5e2302012-10-15 18:24:43 -07001984 if (flags & eAnimation) {
1985 mAnimTransactionPending = true;
1986 }
1987 while (mTransactionPending) {
Mathias Agopian386aa982011-11-07 21:58:03 -08001988 status_t err = mTransactionCV.waitRelative(mStateLock, s2ns(5));
1989 if (CC_UNLIKELY(err != NO_ERROR)) {
1990 // just in case something goes wrong in SF, return to the
1991 // called after a few seconds.
Jamie Gennis2d5e2302012-10-15 18:24:43 -07001992 ALOGW_IF(err == TIMED_OUT, "setTransactionState timed out!");
1993 mTransactionPending = false;
Mathias Agopian386aa982011-11-07 21:58:03 -08001994 break;
1995 }
Mathias Agopiancbb288b2009-09-07 16:32:45 -07001996 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001997 }
1998}
1999
Mathias Agopiane57f2922012-08-09 16:29:12 -07002000uint32_t SurfaceFlinger::setDisplayStateLocked(const DisplayState& s)
2001{
Jesse Hall9a143922012-10-04 16:29:19 -07002002 ssize_t dpyIdx = mCurrentState.displays.indexOfKey(s.token);
2003 if (dpyIdx < 0)
2004 return 0;
2005
Mathias Agopiane57f2922012-08-09 16:29:12 -07002006 uint32_t flags = 0;
Jesse Hall9a143922012-10-04 16:29:19 -07002007 DisplayDeviceState& disp(mCurrentState.displays.editValueAt(dpyIdx));
Mathias Agopian3ee454a2012-08-27 16:28:24 -07002008 if (disp.isValid()) {
Mathias Agopiane57f2922012-08-09 16:29:12 -07002009 const uint32_t what = s.what;
2010 if (what & DisplayState::eSurfaceChanged) {
2011 if (disp.surface->asBinder() != s.surface->asBinder()) {
2012 disp.surface = s.surface;
2013 flags |= eDisplayTransactionNeeded;
2014 }
2015 }
2016 if (what & DisplayState::eLayerStackChanged) {
2017 if (disp.layerStack != s.layerStack) {
2018 disp.layerStack = s.layerStack;
2019 flags |= eDisplayTransactionNeeded;
2020 }
2021 }
Mathias Agopian00e8c7a2012-09-04 19:30:46 -07002022 if (what & DisplayState::eDisplayProjectionChanged) {
Mathias Agopiane57f2922012-08-09 16:29:12 -07002023 if (disp.orientation != s.orientation) {
2024 disp.orientation = s.orientation;
2025 flags |= eDisplayTransactionNeeded;
2026 }
2027 if (disp.frame != s.frame) {
2028 disp.frame = s.frame;
2029 flags |= eDisplayTransactionNeeded;
2030 }
2031 if (disp.viewport != s.viewport) {
2032 disp.viewport = s.viewport;
2033 flags |= eDisplayTransactionNeeded;
2034 }
2035 }
Michael Lentine47e45402014-07-18 15:34:25 -07002036 if (what & DisplayState::eDisplaySizeChanged) {
2037 if (disp.width != s.width) {
2038 disp.width = s.width;
2039 flags |= eDisplayTransactionNeeded;
2040 }
2041 if (disp.height != s.height) {
2042 disp.height = s.height;
2043 flags |= eDisplayTransactionNeeded;
2044 }
2045 }
Mathias Agopiane57f2922012-08-09 16:29:12 -07002046 }
2047 return flags;
2048}
2049
2050uint32_t SurfaceFlinger::setClientStateLocked(
2051 const sp<Client>& client,
2052 const layer_state_t& s)
2053{
2054 uint32_t flags = 0;
Mathias Agopian13127d82013-03-05 17:47:11 -08002055 sp<Layer> layer(client->getLayerUser(s.surface));
Mathias Agopiane57f2922012-08-09 16:29:12 -07002056 if (layer != 0) {
2057 const uint32_t what = s.what;
2058 if (what & layer_state_t::ePositionChanged) {
2059 if (layer->setPosition(s.x, s.y))
2060 flags |= eTraversalNeeded;
2061 }
2062 if (what & layer_state_t::eLayerChanged) {
2063 // NOTE: index needs to be calculated before we update the state
2064 ssize_t idx = mCurrentState.layersSortedByZ.indexOf(layer);
2065 if (layer->setLayer(s.z)) {
2066 mCurrentState.layersSortedByZ.removeAt(idx);
2067 mCurrentState.layersSortedByZ.add(layer);
2068 // we need traversal (state changed)
2069 // AND transaction (list changed)
2070 flags |= eTransactionNeeded|eTraversalNeeded;
2071 }
2072 }
2073 if (what & layer_state_t::eSizeChanged) {
2074 if (layer->setSize(s.w, s.h)) {
2075 flags |= eTraversalNeeded;
2076 }
2077 }
2078 if (what & layer_state_t::eAlphaChanged) {
2079 if (layer->setAlpha(uint8_t(255.0f*s.alpha+0.5f)))
2080 flags |= eTraversalNeeded;
2081 }
2082 if (what & layer_state_t::eMatrixChanged) {
2083 if (layer->setMatrix(s.matrix))
2084 flags |= eTraversalNeeded;
2085 }
2086 if (what & layer_state_t::eTransparentRegionChanged) {
2087 if (layer->setTransparentRegionHint(s.transparentRegion))
2088 flags |= eTraversalNeeded;
2089 }
Andy McFadden4125a4f2014-01-29 17:17:11 -08002090 if ((what & layer_state_t::eVisibilityChanged) ||
2091 (what & layer_state_t::eOpacityChanged)) {
2092 // TODO: should we just use an eFlagsChanged for this?
Mathias Agopiane57f2922012-08-09 16:29:12 -07002093 if (layer->setFlags(s.flags, s.mask))
2094 flags |= eTraversalNeeded;
2095 }
2096 if (what & layer_state_t::eCropChanged) {
2097 if (layer->setCrop(s.crop))
2098 flags |= eTraversalNeeded;
2099 }
2100 if (what & layer_state_t::eLayerStackChanged) {
2101 // NOTE: index needs to be calculated before we update the state
2102 ssize_t idx = mCurrentState.layersSortedByZ.indexOf(layer);
2103 if (layer->setLayerStack(s.layerStack)) {
2104 mCurrentState.layersSortedByZ.removeAt(idx);
2105 mCurrentState.layersSortedByZ.add(layer);
2106 // we need traversal (state changed)
2107 // AND transaction (list changed)
2108 flags |= eTransactionNeeded|eTraversalNeeded;
2109 }
2110 }
2111 }
2112 return flags;
2113}
2114
Mathias Agopian4d9b8222013-03-12 17:11:48 -07002115status_t SurfaceFlinger::createLayer(
Mathias Agopian0ef4e152011-04-20 14:19:32 -07002116 const String8& name,
2117 const sp<Client>& client,
Mathias Agopian4d9b8222013-03-12 17:11:48 -07002118 uint32_t w, uint32_t h, PixelFormat format, uint32_t flags,
2119 sp<IBinder>* handle, sp<IGraphicBufferProducer>* gbp)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002120{
Mathias Agopian4d9b8222013-03-12 17:11:48 -07002121 //ALOGD("createLayer for (%d x %d), name=%s", w, h, name.string());
Mathias Agopian6e2d6482009-07-09 18:16:43 -07002122 if (int32_t(w|h) < 0) {
Mathias Agopian921e6ac2012-07-23 23:11:29 -07002123 ALOGE("createLayer() failed, w or h is negative (w=%d, h=%d)",
Mathias Agopian6e2d6482009-07-09 18:16:43 -07002124 int(w), int(h));
Mathias Agopian4d9b8222013-03-12 17:11:48 -07002125 return BAD_VALUE;
Mathias Agopian6e2d6482009-07-09 18:16:43 -07002126 }
Andreas Huber8b42e8a2010-08-16 08:49:37 -07002127
Mathias Agopian4d9b8222013-03-12 17:11:48 -07002128 status_t result = NO_ERROR;
2129
2130 sp<Layer> layer;
2131
Mathias Agopian3165cc22012-08-08 19:42:09 -07002132 switch (flags & ISurfaceComposerClient::eFXSurfaceMask) {
2133 case ISurfaceComposerClient::eFXSurfaceNormal:
Mathias Agopian4d9b8222013-03-12 17:11:48 -07002134 result = createNormalLayer(client,
2135 name, w, h, flags, format,
2136 handle, gbp, &layer);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002137 break;
Mathias Agopian3165cc22012-08-08 19:42:09 -07002138 case ISurfaceComposerClient::eFXSurfaceDim:
Mathias Agopian4d9b8222013-03-12 17:11:48 -07002139 result = createDimLayer(client,
2140 name, w, h, flags,
2141 handle, gbp, &layer);
2142 break;
2143 default:
2144 result = BAD_VALUE;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002145 break;
2146 }
2147
Mathias Agopian4d9b8222013-03-12 17:11:48 -07002148 if (result == NO_ERROR) {
Mathias Agopian67106042013-03-14 19:18:13 -07002149 addClientLayer(client, *handle, *gbp, layer);
Mathias Agopian96f08192010-06-02 23:28:45 -07002150 setTransactionFlags(eTransactionNeeded);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002151 }
Mathias Agopian4d9b8222013-03-12 17:11:48 -07002152 return result;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002153}
2154
Mathias Agopian4d9b8222013-03-12 17:11:48 -07002155status_t SurfaceFlinger::createNormalLayer(const sp<Client>& client,
2156 const String8& name, uint32_t w, uint32_t h, uint32_t flags, PixelFormat& format,
2157 sp<IBinder>* handle, sp<IGraphicBufferProducer>* gbp, sp<Layer>* outLayer)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002158{
2159 // initialize the surfaces
Mathias Agopian92a979a2012-08-02 18:32:23 -07002160 switch (format) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002161 case PIXEL_FORMAT_TRANSPARENT:
2162 case PIXEL_FORMAT_TRANSLUCENT:
2163 format = PIXEL_FORMAT_RGBA_8888;
2164 break;
2165 case PIXEL_FORMAT_OPAQUE:
Mathias Agopian8f105402010-04-05 18:01:24 -07002166 format = PIXEL_FORMAT_RGBX_8888;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002167 break;
2168 }
2169
Mathias Agopian4d9b8222013-03-12 17:11:48 -07002170 *outLayer = new Layer(this, client, name, w, h, flags);
2171 status_t err = (*outLayer)->setBuffers(w, h, format, flags);
2172 if (err == NO_ERROR) {
2173 *handle = (*outLayer)->getHandle();
Dan Stozab9b08832014-03-13 11:55:57 -07002174 *gbp = (*outLayer)->getProducer();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002175 }
Mathias Agopian4d9b8222013-03-12 17:11:48 -07002176
2177 ALOGE_IF(err, "createNormalLayer() failed (%s)", strerror(-err));
2178 return err;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002179}
2180
Mathias Agopian4d9b8222013-03-12 17:11:48 -07002181status_t SurfaceFlinger::createDimLayer(const sp<Client>& client,
2182 const String8& name, uint32_t w, uint32_t h, uint32_t flags,
2183 sp<IBinder>* handle, sp<IGraphicBufferProducer>* gbp, sp<Layer>* outLayer)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002184{
Mathias Agopian4d9b8222013-03-12 17:11:48 -07002185 *outLayer = new LayerDim(this, client, name, w, h, flags);
2186 *handle = (*outLayer)->getHandle();
Dan Stozab9b08832014-03-13 11:55:57 -07002187 *gbp = (*outLayer)->getProducer();
Mathias Agopian4d9b8222013-03-12 17:11:48 -07002188 return NO_ERROR;
Mathias Agopian118d0242011-10-13 16:02:48 -07002189}
2190
Mathias Agopianac9fa422013-02-11 16:40:36 -08002191status_t SurfaceFlinger::onLayerRemoved(const sp<Client>& client, const sp<IBinder>& handle)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002192{
Mathias Agopian67106042013-03-14 19:18:13 -07002193 // called by the window manager when it wants to remove a Layer
2194 status_t err = NO_ERROR;
2195 sp<Layer> l(client->getLayerUser(handle));
2196 if (l != NULL) {
2197 err = removeLayer(l);
2198 ALOGE_IF(err<0 && err != NAME_NOT_FOUND,
2199 "error removing layer=%p (%s)", l.get(), strerror(-err));
Mathias Agopian9a112062009-04-17 19:36:26 -07002200 }
2201 return err;
2202}
2203
Mathias Agopian13127d82013-03-05 17:47:11 -08002204status_t SurfaceFlinger::onLayerDestroyed(const wp<Layer>& layer)
Mathias Agopian9a112062009-04-17 19:36:26 -07002205{
Mathias Agopian67106042013-03-14 19:18:13 -07002206 // called by ~LayerCleaner() when all references to the IBinder (handle)
2207 // are gone
Mathias Agopianca4d3602011-05-19 15:38:14 -07002208 status_t err = NO_ERROR;
Mathias Agopian13127d82013-03-05 17:47:11 -08002209 sp<Layer> l(layer.promote());
Mathias Agopianca4d3602011-05-19 15:38:14 -07002210 if (l != NULL) {
Mathias Agopian67106042013-03-14 19:18:13 -07002211 err = removeLayer(l);
Steve Blocke6f43dd2012-01-06 19:20:56 +00002212 ALOGE_IF(err<0 && err != NAME_NOT_FOUND,
Mathias Agopianca4d3602011-05-19 15:38:14 -07002213 "error removing layer=%p (%s)", l.get(), strerror(-err));
2214 }
2215 return err;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002216}
2217
Mathias Agopianb60314a2012-04-10 22:09:54 -07002218// ---------------------------------------------------------------------------
2219
Andy McFadden13a082e2012-08-24 10:16:42 -07002220void SurfaceFlinger::onInitializeDisplays() {
Jesse Hall01e29052013-02-19 16:13:35 -08002221 // reset screen orientation and use primary layer stack
Andy McFadden13a082e2012-08-24 10:16:42 -07002222 Vector<ComposerState> state;
2223 Vector<DisplayState> displays;
2224 DisplayState d;
Jesse Hall01e29052013-02-19 16:13:35 -08002225 d.what = DisplayState::eDisplayProjectionChanged |
2226 DisplayState::eLayerStackChanged;
Jesse Hall692c7232012-11-08 15:41:56 -08002227 d.token = mBuiltinDisplays[DisplayDevice::DISPLAY_PRIMARY];
Jesse Hall01e29052013-02-19 16:13:35 -08002228 d.layerStack = 0;
Andy McFadden13a082e2012-08-24 10:16:42 -07002229 d.orientation = DisplayState::eOrientationDefault;
Jeff Brown4c05dd12012-09-09 00:07:17 -07002230 d.frame.makeInvalid();
2231 d.viewport.makeInvalid();
Michael Lentine47e45402014-07-18 15:34:25 -07002232 d.width = 0;
2233 d.height = 0;
Andy McFadden13a082e2012-08-24 10:16:42 -07002234 displays.add(d);
2235 setTransactionState(state, displays, 0);
Prashant Malani2c9b11f2014-05-25 01:36:31 -07002236 setPowerModeInternal(getDisplayDevice(d.token), HWC_POWER_MODE_NORMAL);
Jamie Gennis6547ff42013-07-16 20:12:42 -07002237
2238 const nsecs_t period =
2239 getHwComposer().getRefreshPeriod(HWC_DISPLAY_PRIMARY);
2240 mAnimFrameTracker.setDisplayRefreshPeriod(period);
Andy McFadden13a082e2012-08-24 10:16:42 -07002241}
2242
2243void SurfaceFlinger::initializeDisplays() {
2244 class MessageScreenInitialized : public MessageBase {
2245 SurfaceFlinger* flinger;
2246 public:
2247 MessageScreenInitialized(SurfaceFlinger* flinger) : flinger(flinger) { }
2248 virtual bool handler() {
2249 flinger->onInitializeDisplays();
2250 return true;
2251 }
2252 };
2253 sp<MessageBase> msg = new MessageScreenInitialized(this);
2254 postMessageAsync(msg); // we may be called from main thread, use async message
2255}
2256
Prashant Malani2c9b11f2014-05-25 01:36:31 -07002257void SurfaceFlinger::setPowerModeInternal(const sp<DisplayDevice>& hw,
2258 int mode) {
2259 ALOGD("Set power mode=%d, type=%d flinger=%p", mode, hw->getDisplayType(),
2260 this);
2261 int32_t type = hw->getDisplayType();
2262 int currentMode = hw->getPowerMode();
Andy McFadden13a082e2012-08-24 10:16:42 -07002263
Prashant Malani2c9b11f2014-05-25 01:36:31 -07002264 if (mode == currentMode) {
2265 ALOGD("Screen type=%d is already mode=%d", hw->getDisplayType(), mode);
Andy McFaddenc01a79d2012-09-27 16:02:06 -07002266 return;
2267 }
2268
Prashant Malani2c9b11f2014-05-25 01:36:31 -07002269 hw->setPowerMode(mode);
2270 if (type >= DisplayDevice::NUM_BUILTIN_DISPLAY_TYPES) {
2271 ALOGW("Trying to set power mode for virtual display");
2272 return;
2273 }
Andy McFaddenc01a79d2012-09-27 16:02:06 -07002274
Prashant Malani2c9b11f2014-05-25 01:36:31 -07002275 if (currentMode == HWC_POWER_MODE_OFF) {
2276 getHwComposer().setPowerMode(type, mode);
Andy McFaddenc01a79d2012-09-27 16:02:06 -07002277 if (type == DisplayDevice::DISPLAY_PRIMARY) {
2278 // FIXME: eventthread only knows about the main display right now
2279 mEventThread->onScreenAcquired();
Jesse Hall948fe0c2013-10-14 12:56:09 -07002280 resyncToHardwareVsync(true);
Andy McFaddenc01a79d2012-09-27 16:02:06 -07002281 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002282
Prashant Malani2c9b11f2014-05-25 01:36:31 -07002283 mVisibleRegionsDirty = true;
2284 repaintEverything();
2285 } else if (mode == HWC_POWER_MODE_OFF) {
Andy McFaddenc01a79d2012-09-27 16:02:06 -07002286 if (type == DisplayDevice::DISPLAY_PRIMARY) {
Jesse Hall948fe0c2013-10-14 12:56:09 -07002287 disableHardwareVsync(true); // also cancels any in-progress resync
2288
Mathias Agopiancde87a32012-09-13 14:09:01 -07002289 // FIXME: eventthread only knows about the main display right now
2290 mEventThread->onScreenReleased();
2291 }
Andy McFaddenc01a79d2012-09-27 16:02:06 -07002292
Prashant Malani2c9b11f2014-05-25 01:36:31 -07002293 getHwComposer().setPowerMode(type, mode);
2294 mVisibleRegionsDirty = true;
2295 // from this point on, SF will stop drawing on this display
2296 } else {
2297 getHwComposer().setPowerMode(type, mode);
Andy McFaddenc01a79d2012-09-27 16:02:06 -07002298 }
Andy McFaddenc01a79d2012-09-27 16:02:06 -07002299}
2300
Prashant Malani2c9b11f2014-05-25 01:36:31 -07002301void SurfaceFlinger::setPowerMode(const sp<IBinder>& display, int mode) {
2302 class MessageSetPowerMode: public MessageBase {
Mathias Agopiandb9b41f2012-10-15 16:51:41 -07002303 SurfaceFlinger& mFlinger;
2304 sp<IBinder> mDisplay;
Prashant Malani2c9b11f2014-05-25 01:36:31 -07002305 int mMode;
Andy McFaddenc01a79d2012-09-27 16:02:06 -07002306 public:
Prashant Malani2c9b11f2014-05-25 01:36:31 -07002307 MessageSetPowerMode(SurfaceFlinger& flinger,
2308 const sp<IBinder>& disp, int mode) : mFlinger(flinger),
2309 mDisplay(disp) { mMode = mode; }
Andy McFaddenc01a79d2012-09-27 16:02:06 -07002310 virtual bool handler() {
Prashant Malani2c9b11f2014-05-25 01:36:31 -07002311 sp<DisplayDevice> hw(mFlinger.getDisplayDevice(mDisplay));
Mathias Agopiandb9b41f2012-10-15 16:51:41 -07002312 if (hw == NULL) {
Prashant Malani2c9b11f2014-05-25 01:36:31 -07002313 ALOGE("Attempt to set power mode = %d for null display %p",
Michael Lentine7306c672014-07-30 13:00:37 -07002314 mMode, mDisplay.get());
Jesse Hall9e663de2013-08-16 14:28:37 -07002315 } else if (hw->getDisplayType() >= DisplayDevice::DISPLAY_VIRTUAL) {
Prashant Malani2c9b11f2014-05-25 01:36:31 -07002316 ALOGW("Attempt to set power mode = %d for virtual display",
2317 mMode);
Mathias Agopiandb9b41f2012-10-15 16:51:41 -07002318 } else {
Prashant Malani2c9b11f2014-05-25 01:36:31 -07002319 mFlinger.setPowerModeInternal(hw, mMode);
Mathias Agopiandb9b41f2012-10-15 16:51:41 -07002320 }
Andy McFaddenc01a79d2012-09-27 16:02:06 -07002321 return true;
2322 }
2323 };
Prashant Malani2c9b11f2014-05-25 01:36:31 -07002324 sp<MessageBase> msg = new MessageSetPowerMode(*this, display, mode);
Mathias Agopiandb9b41f2012-10-15 16:51:41 -07002325 postMessageSync(msg);
Mathias Agopianb60314a2012-04-10 22:09:54 -07002326}
2327
2328// ---------------------------------------------------------------------------
2329
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002330status_t SurfaceFlinger::dump(int fd, const Vector<String16>& args)
2331{
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002332 String8 result;
Mathias Agopian99b49842011-06-27 16:05:52 -07002333
Mathias Agopianbd115332013-04-18 16:41:04 -07002334 IPCThreadState* ipc = IPCThreadState::self();
2335 const int pid = ipc->getCallingPid();
2336 const int uid = ipc->getCallingUid();
2337 if ((uid != AID_SHELL) &&
2338 !PermissionCache::checkPermission(sDump, pid, uid)) {
Mathias Agopian74d211a2013-04-22 16:55:35 +02002339 result.appendFormat("Permission Denial: "
Mathias Agopianbd115332013-04-18 16:41:04 -07002340 "can't dump SurfaceFlinger from pid=%d, uid=%d\n", pid, uid);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002341 } else {
Mathias Agopian9795c422009-08-26 16:36:26 -07002342 // Try to get the main lock, but don't insist if we can't
2343 // (this would indicate SF is stuck, but we want to be able to
2344 // print something in dumpsys).
2345 int retry = 3;
2346 while (mStateLock.tryLock()<0 && --retry>=0) {
2347 usleep(1000000);
2348 }
2349 const bool locked(retry >= 0);
2350 if (!locked) {
Mathias Agopian74d211a2013-04-22 16:55:35 +02002351 result.append(
Mathias Agopian9795c422009-08-26 16:36:26 -07002352 "SurfaceFlinger appears to be unresponsive, "
2353 "dumping anyways (no locks held)\n");
Mathias Agopian9795c422009-08-26 16:36:26 -07002354 }
2355
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002356 bool dumpAll = true;
2357 size_t index = 0;
Mathias Agopian25e66fc2012-01-28 22:31:55 -08002358 size_t numArgs = args.size();
2359 if (numArgs) {
Mathias Agopian25e66fc2012-01-28 22:31:55 -08002360 if ((index < numArgs) &&
2361 (args[index] == String16("--list"))) {
2362 index++;
Mathias Agopian74d211a2013-04-22 16:55:35 +02002363 listLayersLocked(args, index, result);
Mathias Agopian35aadd62012-03-08 22:01:51 -08002364 dumpAll = false;
Mathias Agopian25e66fc2012-01-28 22:31:55 -08002365 }
2366
2367 if ((index < numArgs) &&
2368 (args[index] == String16("--latency"))) {
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002369 index++;
Mathias Agopian74d211a2013-04-22 16:55:35 +02002370 dumpStatsLocked(args, index, result);
Mathias Agopian35aadd62012-03-08 22:01:51 -08002371 dumpAll = false;
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002372 }
Mathias Agopian25e66fc2012-01-28 22:31:55 -08002373
2374 if ((index < numArgs) &&
2375 (args[index] == String16("--latency-clear"))) {
2376 index++;
Mathias Agopian74d211a2013-04-22 16:55:35 +02002377 clearStatsLocked(args, index, result);
Mathias Agopian35aadd62012-03-08 22:01:51 -08002378 dumpAll = false;
Mathias Agopian25e66fc2012-01-28 22:31:55 -08002379 }
Andy McFaddenc751e922014-05-08 14:53:26 -07002380
2381 if ((index < numArgs) &&
2382 (args[index] == String16("--dispsync"))) {
2383 index++;
2384 mPrimaryDispSync.dump(result);
2385 dumpAll = false;
2386 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002387 }
Mathias Agopian1b5e1022010-04-20 17:55:49 -07002388
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002389 if (dumpAll) {
Mathias Agopian74d211a2013-04-22 16:55:35 +02002390 dumpAllLocked(args, index, result);
Mathias Agopian48b888a2011-01-19 16:15:53 -08002391 }
2392
Mathias Agopian9795c422009-08-26 16:36:26 -07002393 if (locked) {
2394 mStateLock.unlock();
2395 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002396 }
2397 write(fd, result.string(), result.size());
2398 return NO_ERROR;
2399}
2400
Dan Stozac7014012014-02-14 15:03:43 -08002401void SurfaceFlinger::listLayersLocked(const Vector<String16>& /* args */,
2402 size_t& /* index */, String8& result) const
Mathias Agopian25e66fc2012-01-28 22:31:55 -08002403{
2404 const LayerVector& currentLayers = mCurrentState.layersSortedByZ;
2405 const size_t count = currentLayers.size();
2406 for (size_t i=0 ; i<count ; i++) {
Mathias Agopian13127d82013-03-05 17:47:11 -08002407 const sp<Layer>& layer(currentLayers[i]);
Mathias Agopian74d211a2013-04-22 16:55:35 +02002408 result.appendFormat("%s\n", layer->getName().string());
Mathias Agopian25e66fc2012-01-28 22:31:55 -08002409 }
2410}
2411
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002412void SurfaceFlinger::dumpStatsLocked(const Vector<String16>& args, size_t& index,
Mathias Agopian74d211a2013-04-22 16:55:35 +02002413 String8& result) const
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002414{
2415 String8 name;
2416 if (index < args.size()) {
2417 name = String8(args[index]);
2418 index++;
2419 }
2420
Jamie Gennis4b0eba92013-02-05 13:30:24 -08002421 const nsecs_t period =
2422 getHwComposer().getRefreshPeriod(HWC_DISPLAY_PRIMARY);
Greg Hackmann86efcc02014-03-07 12:44:02 -08002423 result.appendFormat("%" PRId64 "\n", period);
Jamie Gennis4b0eba92013-02-05 13:30:24 -08002424
2425 if (name.isEmpty()) {
Svetoslavd85084b2014-03-20 10:28:31 -07002426 mAnimFrameTracker.dumpStats(result);
Jamie Gennis4b0eba92013-02-05 13:30:24 -08002427 } else {
2428 const LayerVector& currentLayers = mCurrentState.layersSortedByZ;
2429 const size_t count = currentLayers.size();
2430 for (size_t i=0 ; i<count ; i++) {
Mathias Agopian13127d82013-03-05 17:47:11 -08002431 const sp<Layer>& layer(currentLayers[i]);
Jamie Gennis4b0eba92013-02-05 13:30:24 -08002432 if (name == layer->getName()) {
Svetoslavd85084b2014-03-20 10:28:31 -07002433 layer->dumpFrameStats(result);
Jamie Gennis4b0eba92013-02-05 13:30:24 -08002434 }
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002435 }
2436 }
2437}
2438
Mathias Agopian25e66fc2012-01-28 22:31:55 -08002439void SurfaceFlinger::clearStatsLocked(const Vector<String16>& args, size_t& index,
Dan Stozac7014012014-02-14 15:03:43 -08002440 String8& /* result */)
Mathias Agopian25e66fc2012-01-28 22:31:55 -08002441{
2442 String8 name;
2443 if (index < args.size()) {
2444 name = String8(args[index]);
2445 index++;
2446 }
2447
2448 const LayerVector& currentLayers = mCurrentState.layersSortedByZ;
2449 const size_t count = currentLayers.size();
2450 for (size_t i=0 ; i<count ; i++) {
Mathias Agopian13127d82013-03-05 17:47:11 -08002451 const sp<Layer>& layer(currentLayers[i]);
Mathias Agopian25e66fc2012-01-28 22:31:55 -08002452 if (name.isEmpty() || (name == layer->getName())) {
Svetoslavd85084b2014-03-20 10:28:31 -07002453 layer->clearFrameStats();
Mathias Agopian25e66fc2012-01-28 22:31:55 -08002454 }
2455 }
Jamie Gennis4b0eba92013-02-05 13:30:24 -08002456
Svetoslavd85084b2014-03-20 10:28:31 -07002457 mAnimFrameTracker.clearStats();
Mathias Agopian25e66fc2012-01-28 22:31:55 -08002458}
2459
Jamie Gennis6547ff42013-07-16 20:12:42 -07002460// This should only be called from the main thread. Otherwise it would need
2461// the lock and should use mCurrentState rather than mDrawingState.
2462void SurfaceFlinger::logFrameStats() {
2463 const LayerVector& drawingLayers = mDrawingState.layersSortedByZ;
2464 const size_t count = drawingLayers.size();
2465 for (size_t i=0 ; i<count ; i++) {
2466 const sp<Layer>& layer(drawingLayers[i]);
2467 layer->logFrameStats();
2468 }
2469
2470 mAnimFrameTracker.logAndResetStats(String8("<win-anim>"));
2471}
2472
Andy McFadden4803b742012-09-24 19:07:20 -07002473/*static*/ void SurfaceFlinger::appendSfConfigString(String8& result)
2474{
2475 static const char* config =
2476 " [sf"
Andy McFadden4803b742012-09-24 19:07:20 -07002477#ifdef HAS_CONTEXT_PRIORITY
2478 " HAS_CONTEXT_PRIORITY"
2479#endif
2480#ifdef NEVER_DEFAULT_TO_ASYNC_MODE
2481 " NEVER_DEFAULT_TO_ASYNC_MODE"
2482#endif
2483#ifdef TARGET_DISABLE_TRIPLE_BUFFERING
2484 " TARGET_DISABLE_TRIPLE_BUFFERING"
2485#endif
2486 "]";
2487 result.append(config);
2488}
2489
Mathias Agopian74d211a2013-04-22 16:55:35 +02002490void SurfaceFlinger::dumpAllLocked(const Vector<String16>& args, size_t& index,
2491 String8& result) const
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002492{
Mathias Agopian3e25fd82013-04-22 17:52:16 +02002493 bool colorize = false;
2494 if (index < args.size()
2495 && (args[index] == String16("--color"))) {
2496 colorize = true;
2497 index++;
2498 }
2499
2500 Colorizer colorizer(colorize);
2501
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002502 // figure out if we're stuck somewhere
2503 const nsecs_t now = systemTime();
2504 const nsecs_t inSwapBuffers(mDebugInSwapBuffers);
2505 const nsecs_t inTransaction(mDebugInTransaction);
2506 nsecs_t inSwapBuffersDuration = (inSwapBuffers) ? now-inSwapBuffers : 0;
2507 nsecs_t inTransactionDuration = (inTransaction) ? now-inTransaction : 0;
2508
2509 /*
Andy McFadden4803b742012-09-24 19:07:20 -07002510 * Dump library configuration.
2511 */
Mathias Agopian3e25fd82013-04-22 17:52:16 +02002512
2513 colorizer.bold(result);
Andy McFadden4803b742012-09-24 19:07:20 -07002514 result.append("Build configuration:");
Mathias Agopian3e25fd82013-04-22 17:52:16 +02002515 colorizer.reset(result);
Andy McFadden4803b742012-09-24 19:07:20 -07002516 appendSfConfigString(result);
2517 appendUiConfigString(result);
2518 appendGuiConfigString(result);
2519 result.append("\n");
2520
Mathias Agopian3e25fd82013-04-22 17:52:16 +02002521 colorizer.bold(result);
Mathias Agopianca088332013-03-28 17:44:13 -07002522 result.append("Sync configuration: ");
Mathias Agopian3e25fd82013-04-22 17:52:16 +02002523 colorizer.reset(result);
Mathias Agopianca088332013-03-28 17:44:13 -07002524 result.append(SyncFeatures::getInstance().toString());
2525 result.append("\n");
2526
Andy McFadden41d67d72014-04-25 16:58:34 -07002527 colorizer.bold(result);
2528 result.append("DispSync configuration: ");
2529 colorizer.reset(result);
Jesse Hall24cd98e2014-07-13 14:37:16 -07002530 result.appendFormat("app phase %" PRId64 " ns, sf phase %" PRId64 " ns, "
2531 "present offset %d ns (refresh %" PRId64 " ns)",
Andy McFadden41d67d72014-04-25 16:58:34 -07002532 vsyncPhaseOffsetNs, sfVsyncPhaseOffsetNs, PRESENT_TIME_OFFSET_FROM_VSYNC_NS,
2533 mHwc->getRefreshPeriod(HWC_DISPLAY_PRIMARY));
2534 result.append("\n");
2535
Andy McFadden4803b742012-09-24 19:07:20 -07002536 /*
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002537 * Dump the visible layer list
2538 */
2539 const LayerVector& currentLayers = mCurrentState.layersSortedByZ;
2540 const size_t count = currentLayers.size();
Mathias Agopian3e25fd82013-04-22 17:52:16 +02002541 colorizer.bold(result);
Greg Hackmann86efcc02014-03-07 12:44:02 -08002542 result.appendFormat("Visible layers (count = %zu)\n", count);
Mathias Agopian3e25fd82013-04-22 17:52:16 +02002543 colorizer.reset(result);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002544 for (size_t i=0 ; i<count ; i++) {
Mathias Agopian13127d82013-03-05 17:47:11 -08002545 const sp<Layer>& layer(currentLayers[i]);
Mathias Agopian3e25fd82013-04-22 17:52:16 +02002546 layer->dump(result, colorizer);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002547 }
2548
2549 /*
Mathias Agopian5f20e2d2012-08-10 18:50:38 -07002550 * Dump Display state
2551 */
2552
Mathias Agopian3e25fd82013-04-22 17:52:16 +02002553 colorizer.bold(result);
Greg Hackmann86efcc02014-03-07 12:44:02 -08002554 result.appendFormat("Displays (%zu entries)\n", mDisplays.size());
Mathias Agopian3e25fd82013-04-22 17:52:16 +02002555 colorizer.reset(result);
Mathias Agopian5f20e2d2012-08-10 18:50:38 -07002556 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
2557 const sp<const DisplayDevice>& hw(mDisplays[dpy]);
Mathias Agopian74d211a2013-04-22 16:55:35 +02002558 hw->dump(result);
Mathias Agopian5f20e2d2012-08-10 18:50:38 -07002559 }
2560
2561 /*
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002562 * Dump SurfaceFlinger global state
2563 */
2564
Mathias Agopian3e25fd82013-04-22 17:52:16 +02002565 colorizer.bold(result);
Mathias Agopian74d211a2013-04-22 16:55:35 +02002566 result.append("SurfaceFlinger global state:\n");
Mathias Agopian3e25fd82013-04-22 17:52:16 +02002567 colorizer.reset(result);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002568
Mathias Agopian888c8222012-08-04 21:10:38 -07002569 HWComposer& hwc(getHwComposer());
Mathias Agopian42977342012-08-05 00:40:46 -07002570 sp<const DisplayDevice> hw(getDefaultDisplayDevice());
Mathias Agopianca088332013-03-28 17:44:13 -07002571
Mathias Agopian3e25fd82013-04-22 17:52:16 +02002572 colorizer.bold(result);
2573 result.appendFormat("EGL implementation : %s\n",
2574 eglQueryStringImplementationANDROID(mEGLDisplay, EGL_VERSION));
2575 colorizer.reset(result);
2576 result.appendFormat("%s\n",
Mathias Agopianca088332013-03-28 17:44:13 -07002577 eglQueryStringImplementationANDROID(mEGLDisplay, EGL_EXTENSIONS));
Mathias Agopianca088332013-03-28 17:44:13 -07002578
Mathias Agopian875d8e12013-06-07 15:35:48 -07002579 mRenderEngine->dump(result);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002580
Mathias Agopian42977342012-08-05 00:40:46 -07002581 hw->undefinedRegion.dump(result, "undefinedRegion");
Prashant Malani2c9b11f2014-05-25 01:36:31 -07002582 result.appendFormat(" orientation=%d, isDisplayOn=%d\n",
2583 hw->getOrientation(), hw->isDisplayOn());
Mathias Agopian74d211a2013-04-22 16:55:35 +02002584 result.appendFormat(
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002585 " last eglSwapBuffers() time: %f us\n"
2586 " last transaction time : %f us\n"
Mathias Agopianc95dbdc2012-02-05 00:19:27 -08002587 " transaction-flags : %08x\n"
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002588 " refresh-rate : %f fps\n"
2589 " x-dpi : %f\n"
Mathias Agopianed985572013-03-22 00:24:39 -07002590 " y-dpi : %f\n"
Mathias Agopianed985572013-03-22 00:24:39 -07002591 " gpu_to_cpu_unsupported : %d\n"
2592 ,
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002593 mLastSwapBufferTime/1000.0,
2594 mLastTransactionTime/1000.0,
Mathias Agopianc95dbdc2012-02-05 00:19:27 -08002595 mTransactionFlags,
Andy McFaddenb0d1dd32012-09-10 14:08:09 -07002596 1e9 / hwc.getRefreshPeriod(HWC_DISPLAY_PRIMARY),
2597 hwc.getDpiX(HWC_DISPLAY_PRIMARY),
Mathias Agopianed985572013-03-22 00:24:39 -07002598 hwc.getDpiY(HWC_DISPLAY_PRIMARY),
Mathias Agopianed985572013-03-22 00:24:39 -07002599 !mGpuToCpuSupported);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002600
Mathias Agopian74d211a2013-04-22 16:55:35 +02002601 result.appendFormat(" eglSwapBuffers time: %f us\n",
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002602 inSwapBuffersDuration/1000.0);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002603
Mathias Agopian74d211a2013-04-22 16:55:35 +02002604 result.appendFormat(" transaction time: %f us\n",
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002605 inTransactionDuration/1000.0);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002606
2607 /*
2608 * VSYNC state
2609 */
Mathias Agopian74d211a2013-04-22 16:55:35 +02002610 mEventThread->dump(result);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002611
2612 /*
2613 * Dump HWComposer state
2614 */
Mathias Agopian3e25fd82013-04-22 17:52:16 +02002615 colorizer.bold(result);
Mathias Agopian74d211a2013-04-22 16:55:35 +02002616 result.append("h/w composer state:\n");
Mathias Agopian3e25fd82013-04-22 17:52:16 +02002617 colorizer.reset(result);
Mathias Agopian74d211a2013-04-22 16:55:35 +02002618 result.appendFormat(" h/w composer %s and %s\n",
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002619 hwc.initCheck()==NO_ERROR ? "present" : "not present",
Alan Viverette9c5a3332013-09-12 20:04:35 -07002620 (mDebugDisableHWC || mDebugRegion || mDaltonize
2621 || mHasColorMatrix) ? "disabled" : "enabled");
Mathias Agopian74d211a2013-04-22 16:55:35 +02002622 hwc.dump(result);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002623
2624 /*
2625 * Dump gralloc state
2626 */
2627 const GraphicBufferAllocator& alloc(GraphicBufferAllocator::get());
2628 alloc.dump(result);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002629}
2630
Mathias Agopian13127d82013-03-05 17:47:11 -08002631const Vector< sp<Layer> >&
Jesse Hall48bc05b2013-03-21 14:06:52 -07002632SurfaceFlinger::getLayerSortedByZForHwcDisplay(int id) {
Mathias Agopiandb9b41f2012-10-15 16:51:41 -07002633 // Note: mStateLock is held here
Jesse Hall48bc05b2013-03-21 14:06:52 -07002634 wp<IBinder> dpy;
2635 for (size_t i=0 ; i<mDisplays.size() ; i++) {
2636 if (mDisplays.valueAt(i)->getHwcDisplayId() == id) {
2637 dpy = mDisplays.keyAt(i);
2638 break;
2639 }
2640 }
2641 if (dpy == NULL) {
2642 ALOGE("getLayerSortedByZForHwcDisplay: invalid hwc display id %d", id);
2643 // Just use the primary display so we have something to return
2644 dpy = getBuiltInDisplay(DisplayDevice::DISPLAY_PRIMARY);
2645 }
2646 return getDisplayDevice(dpy)->getVisibleLayersSortedByZ();
Mathias Agopiancb558572012-10-04 15:58:54 -07002647}
2648
Keun young Park63f165f2012-08-31 10:53:36 -07002649bool SurfaceFlinger::startDdmConnection()
2650{
2651 void* libddmconnection_dso =
2652 dlopen("libsurfaceflinger_ddmconnection.so", RTLD_NOW);
2653 if (!libddmconnection_dso) {
2654 return false;
2655 }
2656 void (*DdmConnection_start)(const char* name);
2657 DdmConnection_start =
Jesse Hall24cd98e2014-07-13 14:37:16 -07002658 (decltype(DdmConnection_start))dlsym(libddmconnection_dso, "DdmConnection_start");
Keun young Park63f165f2012-08-31 10:53:36 -07002659 if (!DdmConnection_start) {
2660 dlclose(libddmconnection_dso);
2661 return false;
2662 }
2663 (*DdmConnection_start)(getServiceName());
2664 return true;
2665}
2666
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002667status_t SurfaceFlinger::onTransact(
2668 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
2669{
2670 switch (code) {
2671 case CREATE_CONNECTION:
Mathias Agopian041a0752013-03-15 18:31:56 -07002672 case CREATE_DISPLAY:
Mathias Agopian698c0872011-06-28 19:09:31 -07002673 case SET_TRANSACTION_STATE:
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002674 case BOOT_FINISHED:
Svetoslavd85084b2014-03-20 10:28:31 -07002675 case CLEAR_ANIMATION_FRAME_STATS:
2676 case GET_ANIMATION_FRAME_STATS:
Prashant Malani2c9b11f2014-05-25 01:36:31 -07002677 case SET_POWER_MODE:
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002678 {
2679 // codes that require permission check
2680 IPCThreadState* ipc = IPCThreadState::self();
2681 const int pid = ipc->getCallingPid();
Mathias Agopiana1ecca92009-05-21 19:21:59 -07002682 const int uid = ipc->getCallingUid();
Mathias Agopian99b49842011-06-27 16:05:52 -07002683 if ((uid != AID_GRAPHICS) &&
2684 !PermissionCache::checkPermission(sAccessSurfaceFlinger, pid, uid)) {
Steve Blocke6f43dd2012-01-06 19:20:56 +00002685 ALOGE("Permission Denial: "
Mathias Agopian375f5632009-06-15 18:24:59 -07002686 "can't access SurfaceFlinger pid=%d, uid=%d", pid, uid);
2687 return PERMISSION_DENIED;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002688 }
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07002689 break;
2690 }
2691 case CAPTURE_SCREEN:
2692 {
2693 // codes that require permission check
2694 IPCThreadState* ipc = IPCThreadState::self();
2695 const int pid = ipc->getCallingPid();
2696 const int uid = ipc->getCallingUid();
Mathias Agopian99b49842011-06-27 16:05:52 -07002697 if ((uid != AID_GRAPHICS) &&
2698 !PermissionCache::checkPermission(sReadFramebuffer, pid, uid)) {
Steve Blocke6f43dd2012-01-06 19:20:56 +00002699 ALOGE("Permission Denial: "
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07002700 "can't read framebuffer pid=%d, uid=%d", pid, uid);
2701 return PERMISSION_DENIED;
2702 }
2703 break;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002704 }
2705 }
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07002706
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002707 status_t err = BnSurfaceComposer::onTransact(code, data, reply, flags);
2708 if (err == UNKNOWN_TRANSACTION || err == PERMISSION_DENIED) {
Mathias Agopianb8a55602009-06-26 19:06:36 -07002709 CHECK_INTERFACE(ISurfaceComposer, data, reply);
Glenn Kasten99ed2242011-12-15 09:51:17 -08002710 if (CC_UNLIKELY(!PermissionCache::checkCallingPermission(sHardwareTest))) {
Mathias Agopian375f5632009-06-15 18:24:59 -07002711 IPCThreadState* ipc = IPCThreadState::self();
2712 const int pid = ipc->getCallingPid();
2713 const int uid = ipc->getCallingUid();
Steve Blocke6f43dd2012-01-06 19:20:56 +00002714 ALOGE("Permission Denial: "
Mathias Agopian375f5632009-06-15 18:24:59 -07002715 "can't access SurfaceFlinger pid=%d, uid=%d", pid, uid);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002716 return PERMISSION_DENIED;
2717 }
2718 int n;
2719 switch (code) {
Mathias Agopian01b76682009-04-16 20:04:08 -07002720 case 1000: // SHOW_CPU, NOT SUPPORTED ANYMORE
Mathias Agopian35b48d12010-09-13 22:57:58 -07002721 case 1001: // SHOW_FPS, NOT SUPPORTED ANYMORE
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002722 return NO_ERROR;
2723 case 1002: // SHOW_UPDATES
2724 n = data.readInt32();
2725 mDebugRegion = n ? n : (mDebugRegion ? 0 : 1);
Mathias Agopian53331da2011-08-22 21:44:41 -07002726 invalidateHwcGeometry();
2727 repaintEverything();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002728 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002729 case 1004:{ // repaint everything
Mathias Agopian53331da2011-08-22 21:44:41 -07002730 repaintEverything();
Mathias Agopiancbb288b2009-09-07 16:32:45 -07002731 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002732 }
Mathias Agopiancbb288b2009-09-07 16:32:45 -07002733 case 1005:{ // force transaction
Mathias Agopiane57f2922012-08-09 16:29:12 -07002734 setTransactionFlags(
2735 eTransactionNeeded|
2736 eDisplayTransactionNeeded|
2737 eTraversalNeeded);
Mathias Agopiancbb288b2009-09-07 16:32:45 -07002738 return NO_ERROR;
2739 }
Mathias Agopian4d143ee2012-02-23 20:05:39 -08002740 case 1006:{ // send empty update
2741 signalRefresh();
2742 return NO_ERROR;
2743 }
Mathias Agopian53331da2011-08-22 21:44:41 -07002744 case 1008: // toggle use of hw composer
2745 n = data.readInt32();
2746 mDebugDisableHWC = n ? 1 : 0;
2747 invalidateHwcGeometry();
2748 repaintEverything();
2749 return NO_ERROR;
Mathias Agopiana4583642011-08-23 18:03:18 -07002750 case 1009: // toggle use of transform hint
2751 n = data.readInt32();
2752 mDebugDisableTransformHint = n ? 1 : 0;
2753 invalidateHwcGeometry();
2754 repaintEverything();
2755 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002756 case 1010: // interrogate.
Mathias Agopian01b76682009-04-16 20:04:08 -07002757 reply->writeInt32(0);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002758 reply->writeInt32(0);
2759 reply->writeInt32(mDebugRegion);
Mathias Agopianb9494d52012-04-18 02:28:45 -07002760 reply->writeInt32(0);
Dianne Hackborn12839be2012-02-06 21:21:05 -08002761 reply->writeInt32(mDebugDisableHWC);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002762 return NO_ERROR;
2763 case 1013: {
2764 Mutex::Autolock _l(mStateLock);
Mathias Agopian42977342012-08-05 00:40:46 -07002765 sp<const DisplayDevice> hw(getDefaultDisplayDevice());
2766 reply->writeInt32(hw->getPageFlipCount());
Mathias Agopianff2ed702013-09-01 21:36:12 -07002767 return NO_ERROR;
2768 }
2769 case 1014: {
2770 // daltonize
2771 n = data.readInt32();
2772 switch (n % 10) {
2773 case 1: mDaltonizer.setType(Daltonizer::protanomaly); break;
2774 case 2: mDaltonizer.setType(Daltonizer::deuteranomaly); break;
2775 case 3: mDaltonizer.setType(Daltonizer::tritanomaly); break;
2776 }
2777 if (n >= 10) {
2778 mDaltonizer.setMode(Daltonizer::correction);
2779 } else {
2780 mDaltonizer.setMode(Daltonizer::simulation);
2781 }
2782 mDaltonize = n > 0;
2783 invalidateHwcGeometry();
2784 repaintEverything();
Alan Viverette9c5a3332013-09-12 20:04:35 -07002785 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002786 }
Alan Viverette9c5a3332013-09-12 20:04:35 -07002787 case 1015: {
2788 // apply a color matrix
2789 n = data.readInt32();
2790 mHasColorMatrix = n ? 1 : 0;
2791 if (n) {
2792 // color matrix is sent as mat3 matrix followed by vec3
2793 // offset, then packed into a mat4 where the last row is
2794 // the offset and extra values are 0
Alan Viverette794c5ba2013-10-03 16:40:52 -07002795 for (size_t i = 0 ; i < 4; i++) {
2796 for (size_t j = 0; j < 4; j++) {
2797 mColorMatrix[i][j] = data.readFloat();
2798 }
Alan Viverette9c5a3332013-09-12 20:04:35 -07002799 }
Alan Viverette9c5a3332013-09-12 20:04:35 -07002800 } else {
2801 mColorMatrix = mat4();
2802 }
2803 invalidateHwcGeometry();
2804 repaintEverything();
2805 return NO_ERROR;
2806 }
Ruchi Kandoif52b3c82014-04-24 16:42:35 -07002807 // This is an experimental interface
2808 // Needs to be shifted to proper binder interface when we productize
2809 case 1016: {
Andy McFadden645b1f72014-06-10 14:43:32 -07002810 n = data.readInt32();
2811 mPrimaryDispSync.setRefreshSkipCount(n);
Ruchi Kandoif52b3c82014-04-24 16:42:35 -07002812 return NO_ERROR;
2813 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002814 }
2815 }
2816 return err;
2817}
2818
Mathias Agopian53331da2011-08-22 21:44:41 -07002819void SurfaceFlinger::repaintEverything() {
Mathias Agopian87baae12012-07-31 12:38:26 -07002820 android_atomic_or(1, &mRepaintEverything);
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08002821 signalTransaction();
Mathias Agopian53331da2011-08-22 21:44:41 -07002822}
2823
Mathias Agopian59119e62010-10-11 12:37:43 -07002824// ---------------------------------------------------------------------------
Mathias Agopian2a9fc492013-03-01 13:42:57 -08002825// Capture screen into an IGraphiBufferProducer
Mathias Agopian9daa5c92010-10-12 16:05:48 -07002826// ---------------------------------------------------------------------------
2827
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07002828/* The code below is here to handle b/8734824
2829 *
2830 * We create a IGraphicBufferProducer wrapper that forwards all calls
Jesse Hallb154c422014-07-13 12:47:02 -07002831 * from the surfaceflinger thread to the calling binder thread, where they
2832 * are executed. This allows the calling thread in the calling process to be
2833 * reused and not depend on having "enough" binder threads to handle the
2834 * requests.
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07002835 */
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07002836class GraphicProducerWrapper : public BBinder, public MessageHandler {
Jesse Hallb154c422014-07-13 12:47:02 -07002837 /* Parts of GraphicProducerWrapper are run on two different threads,
2838 * communicating by sending messages via Looper but also by shared member
2839 * data. Coherence maintenance is subtle and in places implicit (ugh).
2840 *
2841 * Don't rely on Looper's sendMessage/handleMessage providing
2842 * release/acquire semantics for any data not actually in the Message.
2843 * Data going from surfaceflinger to binder threads needs to be
2844 * synchronized explicitly.
2845 *
2846 * Barrier open/wait do provide release/acquire semantics. This provides
2847 * implicit synchronization for data coming back from binder to
2848 * surfaceflinger threads.
2849 */
2850
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07002851 sp<IGraphicBufferProducer> impl;
2852 sp<Looper> looper;
2853 status_t result;
2854 bool exitPending;
2855 bool exitRequested;
Jesse Hallb154c422014-07-13 12:47:02 -07002856 Barrier barrier;
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07002857 uint32_t code;
2858 Parcel const* data;
2859 Parcel* reply;
2860
2861 enum {
2862 MSG_API_CALL,
2863 MSG_EXIT
2864 };
2865
2866 /*
Jesse Hallb154c422014-07-13 12:47:02 -07002867 * Called on surfaceflinger thread. This is called by our "fake"
2868 * BpGraphicBufferProducer. We package the data and reply Parcel and
2869 * forward them to the binder thread.
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07002870 */
2871 virtual status_t transact(uint32_t code,
Dan Stozac7014012014-02-14 15:03:43 -08002872 const Parcel& data, Parcel* reply, uint32_t /* flags */) {
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07002873 this->code = code;
2874 this->data = &data;
2875 this->reply = reply;
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07002876 if (exitPending) {
Jesse Hallb154c422014-07-13 12:47:02 -07002877 // if we've exited, we run the message synchronously right here.
2878 // note (JH): as far as I can tell from looking at the code, this
2879 // never actually happens. if it does, i'm not sure if it happens
2880 // on the surfaceflinger or binder thread.
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07002881 handleMessage(Message(MSG_API_CALL));
2882 } else {
2883 barrier.close();
Jesse Hallb154c422014-07-13 12:47:02 -07002884 // Prevent stores to this->{code, data, reply} from being
2885 // reordered later than the construction of Message.
2886 atomic_thread_fence(memory_order_release);
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07002887 looper->sendMessage(this, Message(MSG_API_CALL));
2888 barrier.wait();
2889 }
bdeng3Xc2633ce2014-03-20 09:15:34 +08002890 return result;
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07002891 }
2892
2893 /*
Jesse Hallb154c422014-07-13 12:47:02 -07002894 * here we run on the binder thread. All we've got to do is
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07002895 * call the real BpGraphicBufferProducer.
2896 */
2897 virtual void handleMessage(const Message& message) {
Jesse Hallb154c422014-07-13 12:47:02 -07002898 int what = message.what;
2899 // Prevent reads below from happening before the read from Message
2900 atomic_thread_fence(memory_order_acquire);
2901 if (what == MSG_API_CALL) {
bdeng3Xc2633ce2014-03-20 09:15:34 +08002902 result = impl->asBinder()->transact(code, data[0], reply);
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07002903 barrier.open();
Jesse Hallb154c422014-07-13 12:47:02 -07002904 } else if (what == MSG_EXIT) {
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07002905 exitRequested = true;
2906 }
2907 }
2908
2909public:
Jesse Hallb154c422014-07-13 12:47:02 -07002910 GraphicProducerWrapper(const sp<IGraphicBufferProducer>& impl)
2911 : impl(impl),
2912 looper(new Looper(true)),
2913 exitPending(false),
2914 exitRequested(false)
2915 {}
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07002916
Jesse Hallb154c422014-07-13 12:47:02 -07002917 // Binder thread
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07002918 status_t waitForResponse() {
2919 do {
2920 looper->pollOnce(-1);
2921 } while (!exitRequested);
2922 return result;
2923 }
2924
Jesse Hallb154c422014-07-13 12:47:02 -07002925 // Client thread
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07002926 void exit(status_t result) {
Mike J. Chenaaff4ef2013-07-30 10:19:24 -07002927 this->result = result;
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07002928 exitPending = true;
Jesse Hallb154c422014-07-13 12:47:02 -07002929 // Ensure this->result is visible to the binder thread before it
2930 // handles the message.
2931 atomic_thread_fence(memory_order_release);
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07002932 looper->sendMessage(this, Message(MSG_EXIT));
2933 }
2934};
2935
2936
Mathias Agopian2a9fc492013-03-01 13:42:57 -08002937status_t SurfaceFlinger::captureScreen(const sp<IBinder>& display,
2938 const sp<IGraphicBufferProducer>& producer,
Dan Stozac1879002014-05-22 15:59:05 -07002939 Rect sourceCrop, uint32_t reqWidth, uint32_t reqHeight,
Dan Stozac7014012014-02-14 15:03:43 -08002940 uint32_t minLayerZ, uint32_t maxLayerZ,
Riley Andrewsc3ebe662014-09-04 16:20:31 -07002941 bool useIdentityTransform, ISurfaceComposer::Rotation rotation) {
Mathias Agopian2a9fc492013-03-01 13:42:57 -08002942
2943 if (CC_UNLIKELY(display == 0))
2944 return BAD_VALUE;
2945
2946 if (CC_UNLIKELY(producer == 0))
2947 return BAD_VALUE;
2948
Mathias Agopian5ff5a842013-08-13 15:55:43 -07002949 // if we have secure windows on this display, never allow the screen capture
2950 // unless the producer interface is local (i.e.: we can take a screenshot for
2951 // ourselves).
2952 if (!producer->asBinder()->localBinder()) {
2953 Mutex::Autolock _l(mStateLock);
2954 sp<const DisplayDevice> hw(getDisplayDevice(display));
2955 if (hw->getSecureLayerVisible()) {
2956 ALOGW("FB is protected: PERMISSION_DENIED");
2957 return PERMISSION_DENIED;
2958 }
2959 }
2960
Riley Andrewsc3ebe662014-09-04 16:20:31 -07002961 // Convert to surfaceflinger's internal rotation type.
2962 Transform::orientation_flags rotationFlags;
2963 switch (rotation) {
2964 case ISurfaceComposer::eRotateNone:
2965 rotationFlags = Transform::ROT_0;
2966 break;
2967 case ISurfaceComposer::eRotate90:
2968 rotationFlags = Transform::ROT_90;
2969 break;
2970 case ISurfaceComposer::eRotate180:
2971 rotationFlags = Transform::ROT_180;
2972 break;
2973 case ISurfaceComposer::eRotate270:
2974 rotationFlags = Transform::ROT_270;
2975 break;
2976 default:
2977 rotationFlags = Transform::ROT_0;
2978 ALOGE("Invalid rotation passed to captureScreen(): %d\n", rotation);
2979 break;
2980 }
2981
Mathias Agopian2a9fc492013-03-01 13:42:57 -08002982 class MessageCaptureScreen : public MessageBase {
2983 SurfaceFlinger* flinger;
2984 sp<IBinder> display;
2985 sp<IGraphicBufferProducer> producer;
Dan Stozac1879002014-05-22 15:59:05 -07002986 Rect sourceCrop;
Mathias Agopian2a9fc492013-03-01 13:42:57 -08002987 uint32_t reqWidth, reqHeight;
2988 uint32_t minLayerZ,maxLayerZ;
Dan Stozac7014012014-02-14 15:03:43 -08002989 bool useIdentityTransform;
Riley Andrewsc3ebe662014-09-04 16:20:31 -07002990 Transform::orientation_flags rotation;
Mathias Agopian2a9fc492013-03-01 13:42:57 -08002991 status_t result;
2992 public:
2993 MessageCaptureScreen(SurfaceFlinger* flinger,
2994 const sp<IBinder>& display,
2995 const sp<IGraphicBufferProducer>& producer,
Dan Stozac1879002014-05-22 15:59:05 -07002996 Rect sourceCrop, uint32_t reqWidth, uint32_t reqHeight,
Dan Stozac7014012014-02-14 15:03:43 -08002997 uint32_t minLayerZ, uint32_t maxLayerZ,
Riley Andrewsc3ebe662014-09-04 16:20:31 -07002998 bool useIdentityTransform, Transform::orientation_flags rotation)
Mathias Agopian2a9fc492013-03-01 13:42:57 -08002999 : flinger(flinger), display(display), producer(producer),
Dan Stozac1879002014-05-22 15:59:05 -07003000 sourceCrop(sourceCrop), reqWidth(reqWidth), reqHeight(reqHeight),
Mathias Agopian2a9fc492013-03-01 13:42:57 -08003001 minLayerZ(minLayerZ), maxLayerZ(maxLayerZ),
Dan Stozac7014012014-02-14 15:03:43 -08003002 useIdentityTransform(useIdentityTransform),
Riley Andrewsc3ebe662014-09-04 16:20:31 -07003003 rotation(rotation),
Mathias Agopian2a9fc492013-03-01 13:42:57 -08003004 result(PERMISSION_DENIED)
3005 {
3006 }
3007 status_t getResult() const {
3008 return result;
3009 }
3010 virtual bool handler() {
3011 Mutex::Autolock _l(flinger->mStateLock);
3012 sp<const DisplayDevice> hw(flinger->getDisplayDevice(display));
Dan Stozac7014012014-02-14 15:03:43 -08003013 result = flinger->captureScreenImplLocked(hw, producer,
Dan Stozac1879002014-05-22 15:59:05 -07003014 sourceCrop, reqWidth, reqHeight, minLayerZ, maxLayerZ,
Riley Andrewsc3ebe662014-09-04 16:20:31 -07003015 useIdentityTransform, rotation);
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07003016 static_cast<GraphicProducerWrapper*>(producer->asBinder().get())->exit(result);
Mathias Agopian2a9fc492013-03-01 13:42:57 -08003017 return true;
3018 }
3019 };
3020
Mathias Agopian9eb1f052013-04-10 16:27:17 -07003021 // make sure to process transactions before screenshots -- a transaction
3022 // might already be pending but scheduled for VSYNC; this guarantees we
3023 // will handle it before the screenshot. When VSYNC finally arrives
3024 // the scheduled transaction will be a no-op. If no transactions are
3025 // scheduled at this time, this will end-up being a no-op as well.
3026 mEventQueue.invalidateTransactionNow();
3027
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07003028 // this creates a "fake" BBinder which will serve as a "fake" remote
3029 // binder to receive the marshaled calls and forward them to the
3030 // real remote (a BpGraphicBufferProducer)
3031 sp<GraphicProducerWrapper> wrapper = new GraphicProducerWrapper(producer);
3032
3033 // the asInterface() call below creates our "fake" BpGraphicBufferProducer
3034 // which does the marshaling work forwards to our "fake remote" above.
Mathias Agopian2a9fc492013-03-01 13:42:57 -08003035 sp<MessageBase> msg = new MessageCaptureScreen(this,
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07003036 display, IGraphicBufferProducer::asInterface( wrapper ),
Dan Stozac1879002014-05-22 15:59:05 -07003037 sourceCrop, reqWidth, reqHeight, minLayerZ, maxLayerZ,
Riley Andrewsc3ebe662014-09-04 16:20:31 -07003038 useIdentityTransform, rotationFlags);
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07003039
3040 status_t res = postMessageAsync(msg);
Mathias Agopian2a9fc492013-03-01 13:42:57 -08003041 if (res == NO_ERROR) {
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07003042 res = wrapper->waitForResponse();
Mathias Agopian2a9fc492013-03-01 13:42:57 -08003043 }
3044 return res;
3045}
3046
Mathias Agopian180f10d2013-04-10 22:55:41 -07003047
3048void SurfaceFlinger::renderScreenImplLocked(
3049 const sp<const DisplayDevice>& hw,
Dan Stozac1879002014-05-22 15:59:05 -07003050 Rect sourceCrop, uint32_t reqWidth, uint32_t reqHeight,
Mathias Agopian180f10d2013-04-10 22:55:41 -07003051 uint32_t minLayerZ, uint32_t maxLayerZ,
Riley Andrewsc3ebe662014-09-04 16:20:31 -07003052 bool yswap, bool useIdentityTransform, Transform::orientation_flags rotation)
Mathias Agopian180f10d2013-04-10 22:55:41 -07003053{
3054 ATRACE_CALL();
Mathias Agopian3f844832013-08-07 21:24:32 -07003055 RenderEngine& engine(getRenderEngine());
Mathias Agopian180f10d2013-04-10 22:55:41 -07003056
3057 // get screen geometry
3058 const uint32_t hw_w = hw->getWidth();
3059 const uint32_t hw_h = hw->getHeight();
Mathias Agopian180f10d2013-04-10 22:55:41 -07003060 const bool filtering = reqWidth != hw_w || reqWidth != hw_h;
3061
Dan Stozac1879002014-05-22 15:59:05 -07003062 // if a default or invalid sourceCrop is passed in, set reasonable values
3063 if (sourceCrop.width() == 0 || sourceCrop.height() == 0 ||
3064 !sourceCrop.isValid()) {
3065 sourceCrop.setLeftTop(Point(0, 0));
3066 sourceCrop.setRightBottom(Point(hw_w, hw_h));
3067 }
3068
3069 // ensure that sourceCrop is inside screen
3070 if (sourceCrop.left < 0) {
3071 ALOGE("Invalid crop rect: l = %d (< 0)", sourceCrop.left);
3072 }
Dan Stozabe31f442014-06-11 11:20:54 -07003073 if (sourceCrop.right > hw_w) {
3074 ALOGE("Invalid crop rect: r = %d (> %d)", sourceCrop.right, hw_w);
Dan Stozac1879002014-05-22 15:59:05 -07003075 }
3076 if (sourceCrop.top < 0) {
3077 ALOGE("Invalid crop rect: t = %d (< 0)", sourceCrop.top);
3078 }
Dan Stozabe31f442014-06-11 11:20:54 -07003079 if (sourceCrop.bottom > hw_h) {
3080 ALOGE("Invalid crop rect: b = %d (> %d)", sourceCrop.bottom, hw_h);
Dan Stozac1879002014-05-22 15:59:05 -07003081 }
3082
Mathias Agopian180f10d2013-04-10 22:55:41 -07003083 // make sure to clear all GL error flags
Mathias Agopian3f844832013-08-07 21:24:32 -07003084 engine.checkErrors();
Mathias Agopian180f10d2013-04-10 22:55:41 -07003085
3086 // set-up our viewport
Riley Andrewsc3ebe662014-09-04 16:20:31 -07003087 engine.setViewportAndProjection(
3088 reqWidth, reqHeight, sourceCrop, hw_h, yswap, rotation);
Mathias Agopian3f844832013-08-07 21:24:32 -07003089 engine.disableTexturing();
Mathias Agopian180f10d2013-04-10 22:55:41 -07003090
3091 // redraw the screen entirely...
Mathias Agopian3f844832013-08-07 21:24:32 -07003092 engine.clearWithColor(0, 0, 0, 1);
Mathias Agopian180f10d2013-04-10 22:55:41 -07003093
3094 const LayerVector& layers( mDrawingState.layersSortedByZ );
3095 const size_t count = layers.size();
3096 for (size_t i=0 ; i<count ; ++i) {
3097 const sp<Layer>& layer(layers[i]);
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07003098 const Layer::State& state(layer->getDrawingState());
Mathias Agopian180f10d2013-04-10 22:55:41 -07003099 if (state.layerStack == hw->getLayerStack()) {
3100 if (state.z >= minLayerZ && state.z <= maxLayerZ) {
3101 if (layer->isVisible()) {
3102 if (filtering) layer->setFiltering(true);
Dan Stozac7014012014-02-14 15:03:43 -08003103 layer->draw(hw, useIdentityTransform);
Mathias Agopian180f10d2013-04-10 22:55:41 -07003104 if (filtering) layer->setFiltering(false);
3105 }
3106 }
3107 }
3108 }
3109
3110 // compositionComplete is needed for older driver
3111 hw->compositionComplete();
Mathias Agopian931bda12013-08-28 18:11:46 -07003112 hw->setViewportAndProjection();
Mathias Agopian180f10d2013-04-10 22:55:41 -07003113}
3114
3115
Mathias Agopian2a9fc492013-03-01 13:42:57 -08003116status_t SurfaceFlinger::captureScreenImplLocked(
3117 const sp<const DisplayDevice>& hw,
3118 const sp<IGraphicBufferProducer>& producer,
Dan Stozac1879002014-05-22 15:59:05 -07003119 Rect sourceCrop, uint32_t reqWidth, uint32_t reqHeight,
Dan Stozac7014012014-02-14 15:03:43 -08003120 uint32_t minLayerZ, uint32_t maxLayerZ,
Riley Andrewsc3ebe662014-09-04 16:20:31 -07003121 bool useIdentityTransform, Transform::orientation_flags rotation)
Mathias Agopian2a9fc492013-03-01 13:42:57 -08003122{
3123 ATRACE_CALL();
3124
Mathias Agopian180f10d2013-04-10 22:55:41 -07003125 // get screen geometry
3126 const uint32_t hw_w = hw->getWidth();
3127 const uint32_t hw_h = hw->getHeight();
Mathias Agopian2a9fc492013-03-01 13:42:57 -08003128
Mathias Agopian180f10d2013-04-10 22:55:41 -07003129 if ((reqWidth > hw_w) || (reqHeight > hw_h)) {
3130 ALOGE("size mismatch (%d, %d) > (%d, %d)",
3131 reqWidth, reqHeight, hw_w, hw_h);
3132 return BAD_VALUE;
3133 }
Mathias Agopianc1d1b0d2011-01-16 14:05:02 -08003134
Mathias Agopian180f10d2013-04-10 22:55:41 -07003135 reqWidth = (!reqWidth) ? hw_w : reqWidth;
3136 reqHeight = (!reqHeight) ? hw_h : reqHeight;
3137
Mathias Agopian0aea53f2013-04-24 19:03:08 +02003138 // create a surface (because we're a producer, and we need to
3139 // dequeue/queue a buffer)
Jesse Hall83cafff2013-09-16 15:24:53 -07003140 sp<Surface> sur = new Surface(producer, false);
Mathias Agopian0aea53f2013-04-24 19:03:08 +02003141 ANativeWindow* window = sur.get();
Mathias Agopian180f10d2013-04-10 22:55:41 -07003142
3143 status_t result = NO_ERROR;
Mathias Agopian0aea53f2013-04-24 19:03:08 +02003144 if (native_window_api_connect(window, NATIVE_WINDOW_API_EGL) == NO_ERROR) {
Mathias Agopian3ca76f42013-08-06 16:07:33 -07003145 uint32_t usage = GRALLOC_USAGE_SW_READ_OFTEN | GRALLOC_USAGE_SW_WRITE_OFTEN |
3146 GRALLOC_USAGE_HW_RENDER | GRALLOC_USAGE_HW_TEXTURE;
Mathias Agopian180f10d2013-04-10 22:55:41 -07003147
Mathias Agopian0aea53f2013-04-24 19:03:08 +02003148 int err = 0;
3149 err = native_window_set_buffers_dimensions(window, reqWidth, reqHeight);
Mathias Agopian4ceff3d2013-08-21 15:23:15 -07003150 err |= native_window_set_scaling_mode(window, NATIVE_WINDOW_SCALING_MODE_SCALE_TO_WINDOW);
Mathias Agopian0aea53f2013-04-24 19:03:08 +02003151 err |= native_window_set_buffers_format(window, HAL_PIXEL_FORMAT_RGBA_8888);
3152 err |= native_window_set_usage(window, usage);
Mathias Agopian180f10d2013-04-10 22:55:41 -07003153
Mathias Agopian0aea53f2013-04-24 19:03:08 +02003154 if (err == NO_ERROR) {
3155 ANativeWindowBuffer* buffer;
3156 /* TODO: Once we have the sync framework everywhere this can use
3157 * server-side waits on the fence that dequeueBuffer returns.
3158 */
3159 result = native_window_dequeue_buffer_and_wait(window, &buffer);
3160 if (result == NO_ERROR) {
Riley Andrews86639902014-08-15 12:27:24 -07003161 int syncFd = -1;
Mathias Agopian0aea53f2013-04-24 19:03:08 +02003162 // create an EGLImage from the buffer so we can later
3163 // turn it into a texture
3164 EGLImageKHR image = eglCreateImageKHR(mEGLDisplay, EGL_NO_CONTEXT,
3165 EGL_NATIVE_BUFFER_ANDROID, buffer, NULL);
3166 if (image != EGL_NO_IMAGE_KHR) {
Mathias Agopian3f844832013-08-07 21:24:32 -07003167 // this binds the given EGLImage as a framebuffer for the
3168 // duration of this scope.
3169 RenderEngine::BindImageAsFramebuffer imageBond(getRenderEngine(), image);
3170 if (imageBond.getStatus() == NO_ERROR) {
Mathias Agopian0aea53f2013-04-24 19:03:08 +02003171 // this will in fact render into our dequeued buffer
3172 // via an FBO, which means we didn't have to create
3173 // an EGLSurface and therefore we're not
3174 // dependent on the context's EGLConfig.
Riley Andrewsc3ebe662014-09-04 16:20:31 -07003175 renderScreenImplLocked(
3176 hw, sourceCrop, reqWidth, reqHeight, minLayerZ, maxLayerZ, true,
3177 useIdentityTransform, rotation);
Mathias Agopiand5556842013-09-19 17:08:37 -07003178
Riley Andrews86639902014-08-15 12:27:24 -07003179 // Attempt to create a sync khr object that can produce a sync point. If that
3180 // isn't available, create a non-dupable sync object in the fallback path and
3181 // wait on it directly.
3182 EGLSyncKHR sync;
3183 if (!DEBUG_SCREENSHOTS) {
3184 sync = eglCreateSyncKHR(mEGLDisplay, EGL_SYNC_NATIVE_FENCE_ANDROID, NULL);
Andy McFadden2d8d1202013-10-09 16:38:02 -07003185 } else {
Riley Andrews86639902014-08-15 12:27:24 -07003186 sync = EGL_NO_SYNC_KHR;
Andy McFadden2d8d1202013-10-09 16:38:02 -07003187 }
Riley Andrews86639902014-08-15 12:27:24 -07003188 if (sync != EGL_NO_SYNC_KHR) {
3189 // get the sync fd
3190 syncFd = eglDupNativeFenceFDANDROID(mEGLDisplay, sync);
3191 if (syncFd == EGL_NO_NATIVE_FENCE_FD_ANDROID) {
3192 ALOGW("captureScreen: failed to dup sync khr object");
3193 syncFd = -1;
3194 }
3195 eglDestroySyncKHR(mEGLDisplay, sync);
3196 } else {
3197 // fallback path
3198 sync = eglCreateSyncKHR(mEGLDisplay, EGL_SYNC_FENCE_KHR, NULL);
3199 if (sync != EGL_NO_SYNC_KHR) {
3200 EGLint result = eglClientWaitSyncKHR(mEGLDisplay, sync,
3201 EGL_SYNC_FLUSH_COMMANDS_BIT_KHR, 2000000000 /*2 sec*/);
3202 EGLint eglErr = eglGetError();
3203 if (result == EGL_TIMEOUT_EXPIRED_KHR) {
3204 ALOGW("captureScreen: fence wait timed out");
3205 } else {
3206 ALOGW_IF(eglErr != EGL_SUCCESS,
3207 "captureScreen: error waiting on EGL fence: %#x", eglErr);
3208 }
3209 eglDestroySyncKHR(mEGLDisplay, sync);
3210 } else {
3211 ALOGW("captureScreen: error creating EGL fence: %#x", eglGetError());
3212 }
3213 }
Mathias Agopiand5556842013-09-19 17:08:37 -07003214 if (DEBUG_SCREENSHOTS) {
3215 uint32_t* pixels = new uint32_t[reqWidth*reqHeight];
3216 getRenderEngine().readPixels(0, 0, reqWidth, reqHeight, pixels);
3217 checkScreenshot(reqWidth, reqHeight, reqWidth, pixels,
3218 hw, minLayerZ, maxLayerZ);
3219 delete [] pixels;
3220 }
3221
Mathias Agopian0aea53f2013-04-24 19:03:08 +02003222 } else {
3223 ALOGE("got GL_FRAMEBUFFER_COMPLETE_OES error while taking screenshot");
3224 result = INVALID_OPERATION;
3225 }
Mathias Agopian0aea53f2013-04-24 19:03:08 +02003226 // destroy our image
3227 eglDestroyImageKHR(mEGLDisplay, image);
3228 } else {
3229 result = BAD_VALUE;
3230 }
Riley Andrews86639902014-08-15 12:27:24 -07003231 window->queueBuffer(window, buffer, syncFd);
3232 if (syncFd != -1) {
3233 close(syncFd);
3234 }
Mathias Agopian0aea53f2013-04-24 19:03:08 +02003235 }
3236 } else {
3237 result = BAD_VALUE;
3238 }
3239 native_window_api_disconnect(window, NATIVE_WINDOW_API_EGL);
3240 }
Mathias Agopian180f10d2013-04-10 22:55:41 -07003241
Mathias Agopian74c40c02010-09-29 13:02:36 -07003242 return result;
3243}
3244
Mathias Agopiand5556842013-09-19 17:08:37 -07003245void SurfaceFlinger::checkScreenshot(size_t w, size_t s, size_t h, void const* vaddr,
3246 const sp<const DisplayDevice>& hw, uint32_t minLayerZ, uint32_t maxLayerZ) {
Mathias Agopianfee2b462013-07-03 12:34:01 -07003247 if (DEBUG_SCREENSHOTS) {
Mathias Agopiand5556842013-09-19 17:08:37 -07003248 for (size_t y=0 ; y<h ; y++) {
3249 uint32_t const * p = (uint32_t const *)vaddr + y*s;
3250 for (size_t x=0 ; x<w ; x++) {
Mathias Agopianfee2b462013-07-03 12:34:01 -07003251 if (p[x] != 0xFF000000) return;
3252 }
3253 }
3254 ALOGE("*** we just took a black screenshot ***\n"
3255 "requested minz=%d, maxz=%d, layerStack=%d",
3256 minLayerZ, maxLayerZ, hw->getLayerStack());
3257 const LayerVector& layers( mDrawingState.layersSortedByZ );
3258 const size_t count = layers.size();
3259 for (size_t i=0 ; i<count ; ++i) {
3260 const sp<Layer>& layer(layers[i]);
3261 const Layer::State& state(layer->getDrawingState());
3262 const bool visible = (state.layerStack == hw->getLayerStack())
3263 && (state.z >= minLayerZ && state.z <= maxLayerZ)
3264 && (layer->isVisible());
Greg Hackmann86efcc02014-03-07 12:44:02 -08003265 ALOGE("%c index=%zu, name=%s, layerStack=%d, z=%d, visible=%d, flags=%x, alpha=%x",
Mathias Agopianfee2b462013-07-03 12:34:01 -07003266 visible ? '+' : '-',
3267 i, layer->getName().string(), state.layerStack, state.z,
3268 layer->isVisible(), state.flags, state.alpha);
3269 }
3270 }
3271}
3272
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07003273// ---------------------------------------------------------------------------
3274
Mathias Agopian921e6ac2012-07-23 23:11:29 -07003275SurfaceFlinger::LayerVector::LayerVector() {
3276}
3277
3278SurfaceFlinger::LayerVector::LayerVector(const LayerVector& rhs)
Mathias Agopian13127d82013-03-05 17:47:11 -08003279 : SortedVector<sp<Layer> >(rhs) {
Mathias Agopian921e6ac2012-07-23 23:11:29 -07003280}
3281
3282int SurfaceFlinger::LayerVector::do_compare(const void* lhs,
3283 const void* rhs) const
Mathias Agopianb7e930d2010-06-01 15:12:58 -07003284{
Mathias Agopianbe246f82012-07-31 22:59:38 -07003285 // sort layers per layer-stack, then by z-order and finally by sequence
Mathias Agopian13127d82013-03-05 17:47:11 -08003286 const sp<Layer>& l(*reinterpret_cast<const sp<Layer>*>(lhs));
3287 const sp<Layer>& r(*reinterpret_cast<const sp<Layer>*>(rhs));
Mathias Agopianbe246f82012-07-31 22:59:38 -07003288
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07003289 uint32_t ls = l->getCurrentState().layerStack;
3290 uint32_t rs = r->getCurrentState().layerStack;
Mathias Agopianbe246f82012-07-31 22:59:38 -07003291 if (ls != rs)
3292 return ls - rs;
3293
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07003294 uint32_t lz = l->getCurrentState().z;
3295 uint32_t rz = r->getCurrentState().z;
Mathias Agopianbe246f82012-07-31 22:59:38 -07003296 if (lz != rz)
3297 return lz - rz;
3298
3299 return l->sequence - r->sequence;
Mathias Agopian921e6ac2012-07-23 23:11:29 -07003300}
3301
3302// ---------------------------------------------------------------------------
3303
Mathias Agopian3ee454a2012-08-27 16:28:24 -07003304SurfaceFlinger::DisplayDeviceState::DisplayDeviceState()
Michael Lentine47e45402014-07-18 15:34:25 -07003305 : type(DisplayDevice::DISPLAY_ID_INVALID), width(0), height(0) {
Mathias Agopiane57f2922012-08-09 16:29:12 -07003306}
3307
Mathias Agopian3ee454a2012-08-27 16:28:24 -07003308SurfaceFlinger::DisplayDeviceState::DisplayDeviceState(DisplayDevice::DisplayType type)
Michael Lentine47e45402014-07-18 15:34:25 -07003309 : type(type), layerStack(DisplayDevice::NO_LAYER_STACK), orientation(0), width(0), height(0) {
Mathias Agopianda8d0a52012-09-04 15:05:38 -07003310 viewport.makeInvalid();
3311 frame.makeInvalid();
Mathias Agopianb7e930d2010-06-01 15:12:58 -07003312}
3313
3314// ---------------------------------------------------------------------------
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003315
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003316}; // namespace android
Mathias Agopian3f844832013-08-07 21:24:32 -07003317
3318
3319#if defined(__gl_h_)
3320#error "don't include gl/gl.h in this file"
3321#endif
3322
3323#if defined(__gl2_h_)
3324#error "don't include gl2/gl2.h in this file"
3325#endif