blob: 37b37575532fedfa847afbaa59da1ac037910fb4 [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
Dan Stoza9e56aa02015-11-02 13:00:03 -080017// #define LOG_NDEBUG 0
Jamie Gennis1c8e95c2012-02-23 19:27:23 -080018#define ATRACE_TAG ATRACE_TAG_GRAPHICS
19
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080020#include <stdint.h>
Mathias Agopian921e6ac2012-07-23 23:11:29 -070021#include <sys/types.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080022#include <errno.h>
23#include <math.h>
Keun young Park63f165f2012-08-31 10:53:36 -070024#include <dlfcn.h>
Greg Hackmann86efcc02014-03-07 12:44:02 -080025#include <inttypes.h>
Jesse Hallb154c422014-07-13 12:47:02 -070026#include <stdatomic.h>
Mathias Agopian921e6ac2012-07-23 23:11:29 -070027
28#include <EGL/egl.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080029
30#include <cutils/log.h>
31#include <cutils/properties.h>
32
Mathias Agopianc5b2c0b2009-05-19 19:08:10 -070033#include <binder/IPCThreadState.h>
34#include <binder/IServiceManager.h>
Mathias Agopian7303c6b2009-07-02 18:11:53 -070035#include <binder/MemoryHeapBase.h>
Mathias Agopian99b49842011-06-27 16:05:52 -070036#include <binder/PermissionCache.h>
Mathias Agopian7303c6b2009-07-02 18:11:53 -070037
Mathias Agopianc666cae2012-07-25 18:56:13 -070038#include <ui/DisplayInfo.h>
Lajos Molnar67d8bd62014-09-11 14:58:45 -070039#include <ui/DisplayStatInfo.h>
Mathias Agopianc666cae2012-07-25 18:56:13 -070040
Mathias Agopian921e6ac2012-07-23 23:11:29 -070041#include <gui/BitTube.h>
Jamie Gennis1a4d8832012-08-02 20:11:05 -070042#include <gui/BufferQueue.h>
Andy McFadden4803b742012-09-24 19:07:20 -070043#include <gui/GuiConfig.h>
Jamie Gennis1a4d8832012-08-02 20:11:05 -070044#include <gui/IDisplayEventConnection.h>
Mathias Agopiane3c697f2013-02-14 17:11:02 -080045#include <gui/Surface.h>
Jamie Gennis392edd82012-11-29 23:26:29 -080046#include <gui/GraphicBufferAlloc.h>
Mathias Agopian921e6ac2012-07-23 23:11:29 -070047
48#include <ui/GraphicBufferAllocator.h>
49#include <ui/PixelFormat.h>
Andy McFadden4803b742012-09-24 19:07:20 -070050#include <ui/UiConfig.h>
Mathias Agopiand0566bc2011-11-17 17:49:17 -080051
Mathias Agopiancde87a32012-09-13 14:09:01 -070052#include <utils/misc.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080053#include <utils/String8.h>
54#include <utils/String16.h>
55#include <utils/StopWatch.h>
Yusuke Sato0a688f52015-07-30 23:05:39 -070056#include <utils/Timers.h>
Jamie Gennis1c8e95c2012-02-23 19:27:23 -080057#include <utils/Trace.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080058
Mathias Agopian921e6ac2012-07-23 23:11:29 -070059#include <private/android_filesystem_config.h>
Mathias Agopianca088332013-03-28 17:44:13 -070060#include <private/gui/SyncFeatures.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080061
Mathias Agopian3e25fd82013-04-22 17:52:16 +020062#include "Client.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080063#include "clz.h"
Mathias Agopian3e25fd82013-04-22 17:52:16 +020064#include "Colorizer.h"
Mathias Agopian90ac7992012-02-25 18:48:35 -080065#include "DdmConnection.h"
Mathias Agopian0f2f5ff2012-07-31 23:09:07 -070066#include "DisplayDevice.h"
Jamie Gennisfaf77cc2013-07-30 15:10:32 -070067#include "DispSync.h"
Jamie Gennisd1700752013-10-14 12:22:52 -070068#include "EventControlThread.h"
Mathias Agopiand0566bc2011-11-17 17:49:17 -080069#include "EventThread.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080070#include "Layer.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080071#include "LayerDim.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080072#include "SurfaceFlinger.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080073
Mathias Agopiana4912602012-07-12 14:25:33 -070074#include "DisplayHardware/FramebufferSurface.h"
Mathias Agopiana350ff92010-08-10 17:14:02 -070075#include "DisplayHardware/HWComposer.h"
Jesse Hall99c7dbb2013-03-14 14:29:29 -070076#include "DisplayHardware/VirtualDisplaySurface.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080077
Mathias Agopianff2ed702013-09-01 21:36:12 -070078#include "Effects/Daltonizer.h"
79
Mathias Agopian875d8e12013-06-07 15:35:48 -070080#include "RenderEngine/RenderEngine.h"
Mathias Agopianff2ed702013-09-01 21:36:12 -070081#include <cutils/compiler.h>
Mathias Agopian875d8e12013-06-07 15:35:48 -070082
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080083#define DISPLAY_COUNT 1
84
Mathias Agopianfee2b462013-07-03 12:34:01 -070085/*
86 * DEBUG_SCREENSHOTS: set to true to check that screenshots are not all
87 * black pixels.
88 */
89#define DEBUG_SCREENSHOTS false
90
Mathias Agopianca088332013-03-28 17:44:13 -070091EGLAPI const char* eglQueryStringImplementationANDROID(EGLDisplay dpy, EGLint name);
92
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080093namespace android {
Jamie Gennisfaf77cc2013-07-30 15:10:32 -070094
Jamie Gennisfaf77cc2013-07-30 15:10:32 -070095// This is the phase offset in nanoseconds of the software vsync event
96// relative to the vsync event reported by HWComposer. The software vsync
97// event is when SurfaceFlinger and Choreographer-based applications run each
98// frame.
99//
100// This phase offset allows adjustment of the minimum latency from application
101// wake-up (by Choregographer) time to the time at which the resulting window
102// image is displayed. This value may be either positive (after the HW vsync)
103// or negative (before the HW vsync). Setting it to 0 will result in a
104// minimum latency of two vsync periods because the app and SurfaceFlinger
105// will run just after the HW vsync. Setting it to a positive number will
106// result in the minimum latency being:
107//
108// (2 * VSYNC_PERIOD - (vsyncPhaseOffsetNs % VSYNC_PERIOD))
109//
110// Note that reducing this latency makes it more likely for the applications
111// to not have their window content image ready in time. When this happens
112// the latency will end up being an additional vsync period, and animations
113// will hiccup. Therefore, this latency should be tuned somewhat
114// conservatively (or at least with awareness of the trade-off being made).
115static const int64_t vsyncPhaseOffsetNs = VSYNC_EVENT_PHASE_OFFSET_NS;
116
Jamie Gennis0a645cc2013-10-14 20:52:46 -0700117// This is the phase offset at which SurfaceFlinger's composition runs.
118static const int64_t sfVsyncPhaseOffsetNs = SF_VSYNC_EVENT_PHASE_OFFSET_NS;
119
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800120// ---------------------------------------------------------------------------
121
Mathias Agopian99b49842011-06-27 16:05:52 -0700122const String16 sHardwareTest("android.permission.HARDWARE_TEST");
123const String16 sAccessSurfaceFlinger("android.permission.ACCESS_SURFACE_FLINGER");
124const String16 sReadFramebuffer("android.permission.READ_FRAME_BUFFER");
125const String16 sDump("android.permission.DUMP");
126
127// ---------------------------------------------------------------------------
128
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800129SurfaceFlinger::SurfaceFlinger()
Mathias Agopian4f4f0942013-08-19 17:26:18 -0700130 : BnSurfaceComposer(),
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800131 mTransactionFlags(0),
Jamie Gennis2d5e2302012-10-15 18:24:43 -0700132 mTransactionPending(false),
133 mAnimTransactionPending(false),
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700134 mLayersRemoved(false),
Mathias Agopian52bbb1a2012-07-31 19:01:53 -0700135 mRepaintEverything(0),
Mathias Agopian875d8e12013-06-07 15:35:48 -0700136 mRenderEngine(NULL),
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800137 mBootTime(systemTime()),
Dan Stoza9e56aa02015-11-02 13:00:03 -0800138 mBuiltinDisplays(),
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800139 mVisibleRegionsDirty(false),
Dan Stoza9e56aa02015-11-02 13:00:03 -0800140 mGeometryInvalid(false),
Jamie Gennis4b0eba92013-02-05 13:30:24 -0800141 mAnimCompositionPending(false),
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800142 mDebugRegion(0),
Mathias Agopian8afb7e32011-08-15 20:44:40 -0700143 mDebugDDMS(0),
Mathias Agopian73d3ba92010-09-22 18:58:01 -0700144 mDebugDisableHWC(0),
Mathias Agopiana4583642011-08-23 18:03:18 -0700145 mDebugDisableTransformHint(0),
Mathias Agopian9795c422009-08-26 16:36:26 -0700146 mDebugInSwapBuffers(0),
147 mLastSwapBufferTime(0),
148 mDebugInTransaction(0),
149 mLastTransactionTime(0),
Mathias Agopianff2ed702013-09-01 21:36:12 -0700150 mBootFinished(false),
Dan Stozaee44edd2015-03-23 15:50:23 -0700151 mForceFullDamage(false),
Tim Murray4a4e4a22016-04-19 16:29:23 +0000152 mPrimaryDispSync("PrimaryDispSync"),
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700153 mPrimaryHWVsyncEnabled(false),
Jesse Hall948fe0c2013-10-14 12:56:09 -0700154 mHWVsyncAvailable(false),
Alan Viverette9c5a3332013-09-12 20:04:35 -0700155 mDaltonize(false),
Dan Stozab90cf072015-03-05 11:05:59 -0800156 mHasColorMatrix(false),
157 mHasPoweredOff(false),
158 mFrameBuckets(),
159 mTotalTime(0),
160 mLastSwapTime(0)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800161{
Steve Blocka19954a2012-01-04 20:05:49 +0000162 ALOGI("SurfaceFlinger is starting");
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800163
164 // debugging stuff...
165 char value[PROPERTY_VALUE_MAX];
Mathias Agopian8afb7e32011-08-15 20:44:40 -0700166
Mathias Agopianb4b17302013-03-20 18:36:41 -0700167 property_get("ro.bq.gpu_to_cpu_unsupported", value, "0");
Mathias Agopian50210b92013-03-21 21:13:21 -0700168 mGpuToCpuSupported = !atoi(value);
Mathias Agopianb4b17302013-03-20 18:36:41 -0700169
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800170 property_get("debug.sf.showupdates", value, "0");
171 mDebugRegion = atoi(value);
Mathias Agopian8afb7e32011-08-15 20:44:40 -0700172
Mathias Agopian8afb7e32011-08-15 20:44:40 -0700173 property_get("debug.sf.ddms", value, "0");
174 mDebugDDMS = atoi(value);
175 if (mDebugDDMS) {
Keun young Park63f165f2012-08-31 10:53:36 -0700176 if (!startDdmConnection()) {
177 // start failed, and DDMS debugging not enabled
178 mDebugDDMS = 0;
179 }
Mathias Agopian8afb7e32011-08-15 20:44:40 -0700180 }
Mathias Agopianc1d359d2012-08-04 20:09:03 -0700181 ALOGI_IF(mDebugRegion, "showupdates enabled");
182 ALOGI_IF(mDebugDDMS, "DDMS debugging enabled");
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800183}
184
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800185void SurfaceFlinger::onFirstRef()
186{
187 mEventQueue.init(this);
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800188}
189
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800190SurfaceFlinger::~SurfaceFlinger()
191{
Mathias Agopiana4912602012-07-12 14:25:33 -0700192 EGLDisplay display = eglGetDisplay(EGL_DEFAULT_DISPLAY);
193 eglMakeCurrent(display, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT);
194 eglTerminate(display);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800195}
196
Dan Stozac7014012014-02-14 15:03:43 -0800197void SurfaceFlinger::binderDied(const wp<IBinder>& /* who */)
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800198{
199 // the window manager died on us. prepare its eulogy.
200
Andy McFadden13a082e2012-08-24 10:16:42 -0700201 // restore initial conditions (default device unblank, etc)
202 initializeDisplays();
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800203
204 // restart the boot-animation
Mathias Agopiana67e4182012-06-19 17:26:12 -0700205 startBootAnim();
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800206}
207
Mathias Agopian7e27f052010-05-28 14:22:23 -0700208sp<ISurfaceComposerClient> SurfaceFlinger::createConnection()
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800209{
Mathias Agopian96f08192010-06-02 23:28:45 -0700210 sp<ISurfaceComposerClient> bclient;
211 sp<Client> client(new Client(this));
212 status_t err = client->initCheck();
213 if (err == NO_ERROR) {
214 bclient = client;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800215 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800216 return bclient;
217}
218
Jamie Gennisdd3cb842012-10-19 18:19:11 -0700219sp<IBinder> SurfaceFlinger::createDisplay(const String8& displayName,
220 bool secure)
Mathias Agopiane57f2922012-08-09 16:29:12 -0700221{
222 class DisplayToken : public BBinder {
223 sp<SurfaceFlinger> flinger;
224 virtual ~DisplayToken() {
225 // no more references, this display must be terminated
226 Mutex::Autolock _l(flinger->mStateLock);
227 flinger->mCurrentState.displays.removeItem(this);
228 flinger->setTransactionFlags(eDisplayTransactionNeeded);
229 }
230 public:
231 DisplayToken(const sp<SurfaceFlinger>& flinger)
232 : flinger(flinger) {
233 }
234 };
235
236 sp<BBinder> token = new DisplayToken(this);
237
238 Mutex::Autolock _l(mStateLock);
Pablo Ceballos53390e12015-08-04 11:25:59 -0700239 DisplayDeviceState info(DisplayDevice::DISPLAY_VIRTUAL, secure);
Andy McFadden8dfa92f2012-09-17 18:27:17 -0700240 info.displayName = displayName;
Mathias Agopiane57f2922012-08-09 16:29:12 -0700241 mCurrentState.displays.add(token, info);
242
243 return token;
244}
245
Jesse Hall6c913be2013-08-08 12:15:49 -0700246void SurfaceFlinger::destroyDisplay(const sp<IBinder>& display) {
247 Mutex::Autolock _l(mStateLock);
248
249 ssize_t idx = mCurrentState.displays.indexOfKey(display);
250 if (idx < 0) {
251 ALOGW("destroyDisplay: invalid display token");
252 return;
253 }
254
255 const DisplayDeviceState& info(mCurrentState.displays.valueAt(idx));
256 if (!info.isVirtualDisplay()) {
257 ALOGE("destroyDisplay called for non-virtual display");
258 return;
259 }
260
261 mCurrentState.displays.removeItemsAt(idx);
262 setTransactionFlags(eDisplayTransactionNeeded);
263}
264
Jesse Hall692c7232012-11-08 15:41:56 -0800265void SurfaceFlinger::createBuiltinDisplayLocked(DisplayDevice::DisplayType type) {
Dan Stoza9e56aa02015-11-02 13:00:03 -0800266 ALOGV("createBuiltinDisplayLocked(%d)", type);
Jesse Hall692c7232012-11-08 15:41:56 -0800267 ALOGW_IF(mBuiltinDisplays[type],
268 "Overwriting display token for display type %d", type);
269 mBuiltinDisplays[type] = new BBinder();
Jesse Hall692c7232012-11-08 15:41:56 -0800270 // All non-virtual displays are currently considered secure.
Pablo Ceballos53390e12015-08-04 11:25:59 -0700271 DisplayDeviceState info(type, true);
Jesse Hall692c7232012-11-08 15:41:56 -0800272 mCurrentState.displays.add(mBuiltinDisplays[type], info);
273}
274
Mathias Agopiane57f2922012-08-09 16:29:12 -0700275sp<IBinder> SurfaceFlinger::getBuiltInDisplay(int32_t id) {
Jesse Hall9e663de2013-08-16 14:28:37 -0700276 if (uint32_t(id) >= DisplayDevice::NUM_BUILTIN_DISPLAY_TYPES) {
Mathias Agopiane57f2922012-08-09 16:29:12 -0700277 ALOGE("getDefaultDisplay: id=%d is not a valid default display id", id);
278 return NULL;
279 }
Jesse Hall692c7232012-11-08 15:41:56 -0800280 return mBuiltinDisplays[id];
Mathias Agopiane57f2922012-08-09 16:29:12 -0700281}
282
Jamie Gennis9a78c902011-01-12 18:30:40 -0800283sp<IGraphicBufferAlloc> SurfaceFlinger::createGraphicBufferAlloc()
284{
285 sp<GraphicBufferAlloc> gba(new GraphicBufferAlloc());
286 return gba;
287}
Mathias Agopianb7e930d2010-06-01 15:12:58 -0700288
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800289void SurfaceFlinger::bootFinished()
290{
291 const nsecs_t now = systemTime();
292 const nsecs_t duration = now - mBootTime;
Steve Blocka19954a2012-01-04 20:05:49 +0000293 ALOGI("Boot is finished (%ld ms)", long(ns2ms(duration)) );
Mathias Agopian3330b202009-10-05 17:07:12 -0700294 mBootFinished = true;
Mathias Agopian1f339ff2011-07-01 17:08:43 -0700295
296 // wait patiently for the window manager death
297 const String16 name("window");
298 sp<IBinder> window(defaultServiceManager()->getService(name));
299 if (window != 0) {
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700300 window->linkToDeath(static_cast<IBinder::DeathRecipient*>(this));
Mathias Agopian1f339ff2011-07-01 17:08:43 -0700301 }
302
303 // stop boot animation
Mathias Agopiana67e4182012-06-19 17:26:12 -0700304 // formerly we would just kill the process, but we now ask it to exit so it
305 // can choose where to stop the animation.
306 property_set("service.bootanim.exit", "1");
Yusuke Sato0a688f52015-07-30 23:05:39 -0700307
308 const int LOGTAG_SF_STOP_BOOTANIM = 60110;
309 LOG_EVENT_LONG(LOGTAG_SF_STOP_BOOTANIM,
310 ns2ms(systemTime(SYSTEM_TIME_MONOTONIC)));
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800311}
312
Mathias Agopian3f844832013-08-07 21:24:32 -0700313void SurfaceFlinger::deleteTextureAsync(uint32_t texture) {
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700314 class MessageDestroyGLTexture : public MessageBase {
Mathias Agopian3f844832013-08-07 21:24:32 -0700315 RenderEngine& engine;
316 uint32_t texture;
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700317 public:
Mathias Agopian3f844832013-08-07 21:24:32 -0700318 MessageDestroyGLTexture(RenderEngine& engine, uint32_t texture)
319 : engine(engine), texture(texture) {
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700320 }
321 virtual bool handler() {
Mathias Agopian3f844832013-08-07 21:24:32 -0700322 engine.deleteTextures(1, &texture);
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700323 return true;
324 }
325 };
Mathias Agopian3f844832013-08-07 21:24:32 -0700326 postMessageAsync(new MessageDestroyGLTexture(getRenderEngine(), texture));
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700327}
328
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700329class DispSyncSource : public VSyncSource, private DispSync::Callback {
330public:
Andy McFadden5167ec62014-05-22 13:08:43 -0700331 DispSyncSource(DispSync* dispSync, nsecs_t phaseOffset, bool traceVsync,
Tim Murray4a4e4a22016-04-19 16:29:23 +0000332 const char* name) :
333 mName(name),
Jamie Gennis0a645cc2013-10-14 20:52:46 -0700334 mValue(0),
Jamie Gennis0a645cc2013-10-14 20:52:46 -0700335 mTraceVsync(traceVsync),
Tim Murray4a4e4a22016-04-19 16:29:23 +0000336 mVsyncOnLabel(String8::format("VsyncOn-%s", name)),
337 mVsyncEventLabel(String8::format("VSYNC-%s", name)),
Dan Stozadb4ac3c2015-04-14 11:34:01 -0700338 mDispSync(dispSync),
339 mCallbackMutex(),
340 mCallback(),
341 mVsyncMutex(),
342 mPhaseOffset(phaseOffset),
343 mEnabled(false) {}
Mathias Agopiana4912602012-07-12 14:25:33 -0700344
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700345 virtual ~DispSyncSource() {}
346
347 virtual void setVSyncEnabled(bool enable) {
Dan Stozadb4ac3c2015-04-14 11:34:01 -0700348 Mutex::Autolock lock(mVsyncMutex);
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700349 if (enable) {
Tim Murray4a4e4a22016-04-19 16:29:23 +0000350 status_t err = mDispSync->addEventListener(mName, mPhaseOffset,
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700351 static_cast<DispSync::Callback*>(this));
352 if (err != NO_ERROR) {
353 ALOGE("error registering vsync callback: %s (%d)",
354 strerror(-err), err);
355 }
Andy McFadden5167ec62014-05-22 13:08:43 -0700356 //ATRACE_INT(mVsyncOnLabel.string(), 1);
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700357 } else {
358 status_t err = mDispSync->removeEventListener(
359 static_cast<DispSync::Callback*>(this));
360 if (err != NO_ERROR) {
361 ALOGE("error unregistering vsync callback: %s (%d)",
362 strerror(-err), err);
363 }
Andy McFadden5167ec62014-05-22 13:08:43 -0700364 //ATRACE_INT(mVsyncOnLabel.string(), 0);
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700365 }
Dan Stozadb4ac3c2015-04-14 11:34:01 -0700366 mEnabled = enable;
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700367 }
368
369 virtual void setCallback(const sp<VSyncSource::Callback>& callback) {
Dan Stozadb4ac3c2015-04-14 11:34:01 -0700370 Mutex::Autolock lock(mCallbackMutex);
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700371 mCallback = callback;
372 }
373
Dan Stozadb4ac3c2015-04-14 11:34:01 -0700374 virtual void setPhaseOffset(nsecs_t phaseOffset) {
375 Mutex::Autolock lock(mVsyncMutex);
376
377 // Normalize phaseOffset to [0, period)
378 auto period = mDispSync->getPeriod();
379 phaseOffset %= period;
380 if (phaseOffset < 0) {
381 // If we're here, then phaseOffset is in (-period, 0). After this
382 // operation, it will be in (0, period)
383 phaseOffset += period;
384 }
385 mPhaseOffset = phaseOffset;
386
387 // If we're not enabled, we don't need to mess with the listeners
388 if (!mEnabled) {
389 return;
390 }
391
392 // Remove the listener with the old offset
393 status_t err = mDispSync->removeEventListener(
394 static_cast<DispSync::Callback*>(this));
395 if (err != NO_ERROR) {
396 ALOGE("error unregistering vsync callback: %s (%d)",
397 strerror(-err), err);
398 }
399
400 // Add a listener with the new offset
Tim Murray4a4e4a22016-04-19 16:29:23 +0000401 err = mDispSync->addEventListener(mName, mPhaseOffset,
Dan Stozadb4ac3c2015-04-14 11:34:01 -0700402 static_cast<DispSync::Callback*>(this));
403 if (err != NO_ERROR) {
404 ALOGE("error registering vsync callback: %s (%d)",
405 strerror(-err), err);
406 }
407 }
408
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700409private:
410 virtual void onDispSyncEvent(nsecs_t when) {
411 sp<VSyncSource::Callback> callback;
412 {
Dan Stozadb4ac3c2015-04-14 11:34:01 -0700413 Mutex::Autolock lock(mCallbackMutex);
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700414 callback = mCallback;
415
Jamie Gennis0a645cc2013-10-14 20:52:46 -0700416 if (mTraceVsync) {
417 mValue = (mValue + 1) % 2;
Andy McFadden5167ec62014-05-22 13:08:43 -0700418 ATRACE_INT(mVsyncEventLabel.string(), mValue);
Jamie Gennis0a645cc2013-10-14 20:52:46 -0700419 }
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700420 }
421
422 if (callback != NULL) {
423 callback->onVSyncEvent(when);
424 }
425 }
426
Tim Murray4a4e4a22016-04-19 16:29:23 +0000427 const char* const mName;
428
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700429 int mValue;
430
Jamie Gennis0a645cc2013-10-14 20:52:46 -0700431 const bool mTraceVsync;
Andy McFadden5167ec62014-05-22 13:08:43 -0700432 const String8 mVsyncOnLabel;
433 const String8 mVsyncEventLabel;
Jamie Gennis0a645cc2013-10-14 20:52:46 -0700434
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700435 DispSync* mDispSync;
Dan Stozadb4ac3c2015-04-14 11:34:01 -0700436
437 Mutex mCallbackMutex; // Protects the following
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700438 sp<VSyncSource::Callback> mCallback;
Dan Stozadb4ac3c2015-04-14 11:34:01 -0700439
440 Mutex mVsyncMutex; // Protects the following
441 nsecs_t mPhaseOffset;
442 bool mEnabled;
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700443};
444
445void SurfaceFlinger::init() {
Mathias Agopiana4912602012-07-12 14:25:33 -0700446 ALOGI( "SurfaceFlinger's main thread ready to run. "
447 "Initializing graphics H/W...");
448
Dan Stoza9e56aa02015-11-02 13:00:03 -0800449 { // Autolock scope
450 Mutex::Autolock _l(mStateLock);
451
452 // initialize EGL for the default display
453 mEGLDisplay = eglGetDisplay(EGL_DEFAULT_DISPLAY);
454 eglInitialize(mEGLDisplay, NULL, NULL);
455
456 // start the EventThread
457 sp<VSyncSource> vsyncSrc = new DispSyncSource(&mPrimaryDispSync,
458 vsyncPhaseOffsetNs, true, "app");
Tim Murray4a4e4a22016-04-19 16:29:23 +0000459 mEventThread = new EventThread(vsyncSrc, *this);
Dan Stoza9e56aa02015-11-02 13:00:03 -0800460 sp<VSyncSource> sfVsyncSrc = new DispSyncSource(&mPrimaryDispSync,
461 sfVsyncPhaseOffsetNs, true, "sf");
Tim Murray4a4e4a22016-04-19 16:29:23 +0000462 mSFEventThread = new EventThread(sfVsyncSrc, *this);
Dan Stoza9e56aa02015-11-02 13:00:03 -0800463 mEventQueue.setEventThread(mSFEventThread);
464
Tim Murray41a38532016-06-22 12:42:10 -0700465 // set EventThread and SFEventThread to SCHED_FIFO for minimum jitter
466 struct sched_param param = {0};
467 param.sched_priority = 1;
468 if (sched_setscheduler(mEventThread->getTid(), SCHED_FIFO, &param) != 0) {
469 ALOGE("Couldn't set SCHED_FIFO for EventThread");
470 }
471
472 if (sched_setscheduler(mSFEventThread->getTid(), SCHED_FIFO, &param) != 0) {
473 ALOGE("Couldn't set SCHED_FIFO for SFEventThread");
474 }
475
476
Dan Stoza9e56aa02015-11-02 13:00:03 -0800477 // Get a RenderEngine for the given display / config (can't fail)
478 mRenderEngine = RenderEngine::create(mEGLDisplay,
479 HAL_PIXEL_FORMAT_RGBA_8888);
480 }
481
482 // Drop the state lock while we initialize the hardware composer. We drop
483 // the lock because on creation, it will call back into SurfaceFlinger to
484 // initialize the primary display.
485 mHwc = new HWComposer(this);
486 mHwc->setEventHandler(static_cast<HWComposer::EventHandler*>(this));
487
Jesse Hall692c7232012-11-08 15:41:56 -0800488 Mutex::Autolock _l(mStateLock);
489
Mathias Agopian875d8e12013-06-07 15:35:48 -0700490 // retrieve the EGL context that was selected/created
491 mEGLContext = mRenderEngine->getEGLContext();
Mathias Agopiana4912602012-07-12 14:25:33 -0700492
Mathias Agopianda27af92012-09-13 18:17:13 -0700493 LOG_ALWAYS_FATAL_IF(mEGLContext == EGL_NO_CONTEXT,
494 "couldn't create EGLContext");
495
Dan Stoza9e56aa02015-11-02 13:00:03 -0800496 // make the GLContext current so that we can create textures when creating
497 // Layers (which may happens before we render something)
Mathias Agopiana6bb1072013-08-07 20:10:20 -0700498 getDefaultDisplayDevice()->makeCurrent(mEGLDisplay, mEGLContext);
499
Jamie Gennisd1700752013-10-14 12:22:52 -0700500 mEventControlThread = new EventControlThread(this);
501 mEventControlThread->run("EventControl", PRIORITY_URGENT_DISPLAY);
502
Mathias Agopian92a979a2012-08-02 18:32:23 -0700503 // initialize our drawing state
504 mDrawingState = mCurrentState;
Mathias Agopian86303202012-07-24 22:46:10 -0700505
Andy McFadden13a082e2012-08-24 10:16:42 -0700506 // set initial conditions (e.g. unblank default device)
507 initializeDisplays();
508
Mathias Agopiana1ecca92009-05-21 19:21:59 -0700509 // start boot animation
Mathias Agopiana67e4182012-06-19 17:26:12 -0700510 startBootAnim();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800511
Dan Stoza9e56aa02015-11-02 13:00:03 -0800512 ALOGV("Done initializing");
Mathias Agopian3ee454a2012-08-27 16:28:24 -0700513}
514
Mathias Agopiana67e4182012-06-19 17:26:12 -0700515void SurfaceFlinger::startBootAnim() {
516 // start boot animation
517 property_set("service.bootanim.exit", "0");
518 property_set("ctl.start", "bootanim");
519}
520
Mathias Agopian875d8e12013-06-07 15:35:48 -0700521size_t SurfaceFlinger::getMaxTextureSize() const {
522 return mRenderEngine->getMaxTextureSize();
Mathias Agopiana4912602012-07-12 14:25:33 -0700523}
524
Mathias Agopian875d8e12013-06-07 15:35:48 -0700525size_t SurfaceFlinger::getMaxViewportDims() const {
526 return mRenderEngine->getMaxViewportDims();
Mathias Agopiana4912602012-07-12 14:25:33 -0700527}
528
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800529// ----------------------------------------------------------------------------
Mathias Agopiand0566bc2011-11-17 17:49:17 -0800530
Jamie Gennis582270d2011-08-17 18:19:00 -0700531bool SurfaceFlinger::authenticateSurfaceTexture(
Andy McFadden2adaf042012-12-18 09:49:45 -0800532 const sp<IGraphicBufferProducer>& bufferProducer) const {
Jamie Gennis134f0422011-03-08 12:18:54 -0800533 Mutex::Autolock _l(mStateLock);
Marco Nelissen097ca272014-11-14 08:01:01 -0800534 sp<IBinder> surfaceTextureBinder(IInterface::asBinder(bufferProducer));
Mathias Agopian67106042013-03-14 19:18:13 -0700535 return mGraphicBufferProducerList.indexOf(surfaceTextureBinder) >= 0;
Jamie Gennis134f0422011-03-08 12:18:54 -0800536}
537
Dan Stoza7f7da322014-05-02 15:26:25 -0700538status_t SurfaceFlinger::getDisplayConfigs(const sp<IBinder>& display,
539 Vector<DisplayInfo>* configs) {
Tatenda Chipeperekwa23e16bb2014-10-29 16:47:19 -0700540 if ((configs == NULL) || (display.get() == NULL)) {
Dan Stoza7f7da322014-05-02 15:26:25 -0700541 return BAD_VALUE;
542 }
543
Naseer Ahmed7aa0c472014-11-03 14:49:23 -0500544 if (!display.get())
545 return NAME_NOT_FOUND;
546
Jesse Hall692c7232012-11-08 15:41:56 -0800547 int32_t type = NAME_NOT_FOUND;
Jesse Hall9e663de2013-08-16 14:28:37 -0700548 for (int i=0 ; i<DisplayDevice::NUM_BUILTIN_DISPLAY_TYPES ; i++) {
Jesse Hall692c7232012-11-08 15:41:56 -0800549 if (display == mBuiltinDisplays[i]) {
Mathias Agopian1604f772012-09-18 21:54:42 -0700550 type = i;
551 break;
552 }
553 }
554
555 if (type < 0) {
556 return type;
Mathias Agopianc666cae2012-07-25 18:56:13 -0700557 }
Mathias Agopian8b736f12012-08-13 17:54:26 -0700558
Mathias Agopian8b736f12012-08-13 17:54:26 -0700559 // TODO: Not sure if display density should handled by SF any longer
560 class Density {
561 static int getDensityFromProperty(char const* propName) {
562 char property[PROPERTY_VALUE_MAX];
563 int density = 0;
564 if (property_get(propName, property, NULL) > 0) {
565 density = atoi(property);
566 }
567 return density;
568 }
569 public:
570 static int getEmuDensity() {
571 return getDensityFromProperty("qemu.sf.lcd_density"); }
572 static int getBuildDensity() {
573 return getDensityFromProperty("ro.sf.lcd_density"); }
574 };
Mathias Agopian1604f772012-09-18 21:54:42 -0700575
Dan Stoza7f7da322014-05-02 15:26:25 -0700576 configs->clear();
Mathias Agopian1604f772012-09-18 21:54:42 -0700577
Dan Stoza9e56aa02015-11-02 13:00:03 -0800578 for (const auto& hwConfig : getHwComposer().getConfigs(type)) {
Dan Stoza7f7da322014-05-02 15:26:25 -0700579 DisplayInfo info = DisplayInfo();
580
Dan Stoza9e56aa02015-11-02 13:00:03 -0800581 float xdpi = hwConfig->getDpiX();
582 float ydpi = hwConfig->getDpiY();
Dan Stoza7f7da322014-05-02 15:26:25 -0700583
584 if (type == DisplayDevice::DISPLAY_PRIMARY) {
585 // The density of the device is provided by a build property
586 float density = Density::getBuildDensity() / 160.0f;
587 if (density == 0) {
588 // the build doesn't provide a density -- this is wrong!
589 // use xdpi instead
590 ALOGE("ro.sf.lcd_density must be defined as a build property");
591 density = xdpi / 160.0f;
592 }
593 if (Density::getEmuDensity()) {
594 // if "qemu.sf.lcd_density" is specified, it overrides everything
595 xdpi = ydpi = density = Density::getEmuDensity();
596 density /= 160.0f;
597 }
598 info.density = density;
599
600 // TODO: this needs to go away (currently needed only by webkit)
601 sp<const DisplayDevice> hw(getDefaultDisplayDevice());
602 info.orientation = hw->getOrientation();
603 } else {
604 // TODO: where should this value come from?
605 static const int TV_DENSITY = 213;
606 info.density = TV_DENSITY / 160.0f;
607 info.orientation = 0;
608 }
609
Dan Stoza9e56aa02015-11-02 13:00:03 -0800610 info.w = hwConfig->getWidth();
611 info.h = hwConfig->getHeight();
Dan Stoza7f7da322014-05-02 15:26:25 -0700612 info.xdpi = xdpi;
613 info.ydpi = ydpi;
Dan Stoza9e56aa02015-11-02 13:00:03 -0800614 info.fps = 1e9 / hwConfig->getVsyncPeriod();
Andy McFadden91b2ca82014-06-13 14:04:23 -0700615 info.appVsyncOffset = VSYNC_EVENT_PHASE_OFFSET_NS;
Dan Stoza9e56aa02015-11-02 13:00:03 -0800616
617 // TODO: Hook this back up
618 info.colorTransform = 0;
Andy McFadden91b2ca82014-06-13 14:04:23 -0700619
620 // This is how far in advance a buffer must be queued for
621 // presentation at a given time. If you want a buffer to appear
622 // on the screen at time N, you must submit the buffer before
623 // (N - presentationDeadline).
624 //
625 // Normally it's one full refresh period (to give SF a chance to
626 // latch the buffer), but this can be reduced by configuring a
627 // DispSync offset. Any additional delays introduced by the hardware
628 // composer or panel must be accounted for here.
629 //
630 // We add an additional 1ms to allow for processing time and
631 // differences between the ideal and actual refresh rate.
Dan Stoza9e56aa02015-11-02 13:00:03 -0800632 info.presentationDeadline = hwConfig->getVsyncPeriod() -
633 SF_VSYNC_EVENT_PHASE_OFFSET_NS + 1000000;
Dan Stoza7f7da322014-05-02 15:26:25 -0700634
635 // All non-virtual displays are currently considered secure.
636 info.secure = true;
637
638 configs->push_back(info);
Mathias Agopian8b736f12012-08-13 17:54:26 -0700639 }
640
Dan Stoza7f7da322014-05-02 15:26:25 -0700641 return NO_ERROR;
642}
Jamie Gennisdd3cb842012-10-19 18:19:11 -0700643
Andreas Gampe89fd4f72014-11-13 14:18:56 -0800644status_t SurfaceFlinger::getDisplayStats(const sp<IBinder>& /* display */,
Lajos Molnar67d8bd62014-09-11 14:58:45 -0700645 DisplayStatInfo* stats) {
646 if (stats == NULL) {
647 return BAD_VALUE;
648 }
649
650 // FIXME for now we always return stats for the primary display
651 memset(stats, 0, sizeof(*stats));
652 stats->vsyncTime = mPrimaryDispSync.computeNextRefresh(0);
653 stats->vsyncPeriod = mPrimaryDispSync.getPeriod();
654 return NO_ERROR;
655}
656
Michael Lentine6c9e34a2014-07-14 13:48:55 -0700657int SurfaceFlinger::getActiveConfig(const sp<IBinder>& display) {
Dan Stoza24a42e92015-03-09 10:04:11 -0700658 sp<DisplayDevice> device(getDisplayDevice(display));
659 if (device != NULL) {
660 return device->getActiveConfig();
661 }
662 return BAD_VALUE;
Dan Stoza7f7da322014-05-02 15:26:25 -0700663}
Jamie Gennisdd3cb842012-10-19 18:19:11 -0700664
Michael Lentine6c9e34a2014-07-14 13:48:55 -0700665void SurfaceFlinger::setActiveConfigInternal(const sp<DisplayDevice>& hw, int mode) {
666 ALOGD("Set active config mode=%d, type=%d flinger=%p", mode, hw->getDisplayType(),
667 this);
668 int32_t type = hw->getDisplayType();
669 int currentMode = hw->getActiveConfig();
670
671 if (mode == currentMode) {
672 ALOGD("Screen type=%d is already mode=%d", hw->getDisplayType(), mode);
673 return;
674 }
675
676 if (type >= DisplayDevice::NUM_BUILTIN_DISPLAY_TYPES) {
677 ALOGW("Trying to set config for virtual display");
678 return;
679 }
680
681 hw->setActiveConfig(mode);
682 getHwComposer().setActiveConfig(type, mode);
683}
684
685status_t SurfaceFlinger::setActiveConfig(const sp<IBinder>& display, int mode) {
686 class MessageSetActiveConfig: public MessageBase {
687 SurfaceFlinger& mFlinger;
688 sp<IBinder> mDisplay;
689 int mMode;
690 public:
691 MessageSetActiveConfig(SurfaceFlinger& flinger, const sp<IBinder>& disp,
692 int mode) :
693 mFlinger(flinger), mDisplay(disp) { mMode = mode; }
694 virtual bool handler() {
Michael Lentine7306c672014-07-30 13:00:37 -0700695 Vector<DisplayInfo> configs;
696 mFlinger.getDisplayConfigs(mDisplay, &configs);
Jesse Hall78442112014-08-07 22:43:06 -0700697 if (mMode < 0 || mMode >= static_cast<int>(configs.size())) {
Michael Lentine9ae79d82014-07-30 16:42:12 -0700698 ALOGE("Attempt to set active config = %d for display with %zu configs",
Michael Lentine7306c672014-07-30 13:00:37 -0700699 mMode, configs.size());
700 }
Michael Lentine6c9e34a2014-07-14 13:48:55 -0700701 sp<DisplayDevice> hw(mFlinger.getDisplayDevice(mDisplay));
702 if (hw == NULL) {
703 ALOGE("Attempt to set active config = %d for null display %p",
Michael Lentine7306c672014-07-30 13:00:37 -0700704 mMode, mDisplay.get());
Michael Lentine6c9e34a2014-07-14 13:48:55 -0700705 } else if (hw->getDisplayType() >= DisplayDevice::DISPLAY_VIRTUAL) {
706 ALOGW("Attempt to set active config = %d for virtual display",
707 mMode);
708 } else {
709 mFlinger.setActiveConfigInternal(hw, mMode);
710 }
711 return true;
712 }
713 };
714 sp<MessageBase> msg = new MessageSetActiveConfig(*this, display, mode);
715 postMessageSync(msg);
Mathias Agopian888c8222012-08-04 21:10:38 -0700716 return NO_ERROR;
Mathias Agopianc666cae2012-07-25 18:56:13 -0700717}
718
Svetoslavd85084b2014-03-20 10:28:31 -0700719status_t SurfaceFlinger::clearAnimationFrameStats() {
720 Mutex::Autolock _l(mStateLock);
721 mAnimFrameTracker.clearStats();
722 return NO_ERROR;
723}
724
725status_t SurfaceFlinger::getAnimationFrameStats(FrameStats* outStats) const {
726 Mutex::Autolock _l(mStateLock);
727 mAnimFrameTracker.getStats(outStats);
728 return NO_ERROR;
729}
730
Dan Stozac4f471e2016-03-24 09:31:08 -0700731status_t SurfaceFlinger::getHdrCapabilities(const sp<IBinder>& display,
732 HdrCapabilities* outCapabilities) const {
733 Mutex::Autolock _l(mStateLock);
734
735 sp<const DisplayDevice> displayDevice(getDisplayDevice(display));
736 if (displayDevice == nullptr) {
737 ALOGE("getHdrCapabilities: Invalid display %p", displayDevice.get());
738 return BAD_VALUE;
739 }
740
741 std::unique_ptr<HdrCapabilities> capabilities =
742 mHwc->getHdrCapabilities(displayDevice->getHwcDisplayId());
743 if (capabilities) {
744 std::swap(*outCapabilities, *capabilities);
745 } else {
746 return BAD_VALUE;
747 }
748
749 return NO_ERROR;
750}
751
Mathias Agopiand0566bc2011-11-17 17:49:17 -0800752// ----------------------------------------------------------------------------
753
754sp<IDisplayEventConnection> SurfaceFlinger::createDisplayEventConnection() {
Mathias Agopian8aedd472012-01-24 16:39:14 -0800755 return mEventThread->createEventConnection();
Mathias Agopianbb641242010-05-18 17:06:55 -0700756}
757
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800758// ----------------------------------------------------------------------------
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800759
760void SurfaceFlinger::waitForEvent() {
761 mEventQueue.waitMessage();
762}
763
764void SurfaceFlinger::signalTransaction() {
765 mEventQueue.invalidate();
766}
767
768void SurfaceFlinger::signalLayerUpdate() {
769 mEventQueue.invalidate();
770}
771
772void SurfaceFlinger::signalRefresh() {
773 mEventQueue.refresh();
774}
775
776status_t SurfaceFlinger::postMessageAsync(const sp<MessageBase>& msg,
Dan Stozac7014012014-02-14 15:03:43 -0800777 nsecs_t reltime, uint32_t /* flags */) {
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800778 return mEventQueue.postMessage(msg, reltime);
779}
780
781status_t SurfaceFlinger::postMessageSync(const sp<MessageBase>& msg,
Dan Stozac7014012014-02-14 15:03:43 -0800782 nsecs_t reltime, uint32_t /* flags */) {
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800783 status_t res = mEventQueue.postMessage(msg, reltime);
784 if (res == NO_ERROR) {
785 msg->wait();
786 }
787 return res;
788}
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800789
Mathias Agopian4f4f0942013-08-19 17:26:18 -0700790void SurfaceFlinger::run() {
Mathias Agopian4f4f0942013-08-19 17:26:18 -0700791 do {
792 waitForEvent();
793 } while (true);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800794}
795
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700796void SurfaceFlinger::enableHardwareVsync() {
797 Mutex::Autolock _l(mHWVsyncLock);
Jesse Hall948fe0c2013-10-14 12:56:09 -0700798 if (!mPrimaryHWVsyncEnabled && mHWVsyncAvailable) {
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700799 mPrimaryDispSync.beginResync();
Jamie Gennisd1700752013-10-14 12:22:52 -0700800 //eventControl(HWC_DISPLAY_PRIMARY, SurfaceFlinger::EVENT_VSYNC, true);
801 mEventControlThread->setVsyncEnabled(true);
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700802 mPrimaryHWVsyncEnabled = true;
Andy McFadden43601a22012-09-11 15:15:13 -0700803 }
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700804}
805
Jesse Hall948fe0c2013-10-14 12:56:09 -0700806void SurfaceFlinger::resyncToHardwareVsync(bool makeAvailable) {
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700807 Mutex::Autolock _l(mHWVsyncLock);
808
Jesse Hall948fe0c2013-10-14 12:56:09 -0700809 if (makeAvailable) {
810 mHWVsyncAvailable = true;
811 } else if (!mHWVsyncAvailable) {
Dan Stoza0a3c4d62016-04-19 11:56:20 -0700812 // Hardware vsync is not currently available, so abort the resync
813 // attempt for now
Jesse Hall948fe0c2013-10-14 12:56:09 -0700814 return;
815 }
816
Dan Stoza9e56aa02015-11-02 13:00:03 -0800817 const auto& activeConfig = mHwc->getActiveConfig(HWC_DISPLAY_PRIMARY);
818 const nsecs_t period = activeConfig->getVsyncPeriod();
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700819
820 mPrimaryDispSync.reset();
821 mPrimaryDispSync.setPeriod(period);
822
823 if (!mPrimaryHWVsyncEnabled) {
824 mPrimaryDispSync.beginResync();
Jamie Gennisd1700752013-10-14 12:22:52 -0700825 //eventControl(HWC_DISPLAY_PRIMARY, SurfaceFlinger::EVENT_VSYNC, true);
826 mEventControlThread->setVsyncEnabled(true);
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700827 mPrimaryHWVsyncEnabled = true;
828 }
829}
830
Jesse Hall948fe0c2013-10-14 12:56:09 -0700831void SurfaceFlinger::disableHardwareVsync(bool makeUnavailable) {
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700832 Mutex::Autolock _l(mHWVsyncLock);
833 if (mPrimaryHWVsyncEnabled) {
Jamie Gennisd1700752013-10-14 12:22:52 -0700834 //eventControl(HWC_DISPLAY_PRIMARY, SurfaceFlinger::EVENT_VSYNC, false);
835 mEventControlThread->setVsyncEnabled(false);
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700836 mPrimaryDispSync.endResync();
837 mPrimaryHWVsyncEnabled = false;
838 }
Jesse Hall948fe0c2013-10-14 12:56:09 -0700839 if (makeUnavailable) {
840 mHWVsyncAvailable = false;
841 }
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700842}
843
Tim Murray4a4e4a22016-04-19 16:29:23 +0000844void SurfaceFlinger::resyncWithRateLimit() {
845 static constexpr nsecs_t kIgnoreDelay = ms2ns(500);
846 if (systemTime() - mLastSwapTime > kIgnoreDelay) {
Dan Stoza0a3c4d62016-04-19 11:56:20 -0700847 resyncToHardwareVsync(false);
Tim Murray4a4e4a22016-04-19 16:29:23 +0000848 }
849}
850
Dan Stoza9e56aa02015-11-02 13:00:03 -0800851void SurfaceFlinger::onVSyncReceived(int32_t type, nsecs_t timestamp) {
Jamie Gennisd1700752013-10-14 12:22:52 -0700852 bool needsHwVsync = false;
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700853
Jamie Gennisd1700752013-10-14 12:22:52 -0700854 { // Scope for the lock
855 Mutex::Autolock _l(mHWVsyncLock);
856 if (type == 0 && mPrimaryHWVsyncEnabled) {
857 needsHwVsync = mPrimaryDispSync.addResyncSample(timestamp);
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700858 }
Mathias Agopian148994e2012-09-19 17:31:36 -0700859 }
Jamie Gennisd1700752013-10-14 12:22:52 -0700860
861 if (needsHwVsync) {
862 enableHardwareVsync();
863 } else {
864 disableHardwareVsync(false);
865 }
Mathias Agopian148994e2012-09-19 17:31:36 -0700866}
867
Dan Stoza9e56aa02015-11-02 13:00:03 -0800868void SurfaceFlinger::onHotplugReceived(int32_t disp, bool connected) {
869 ALOGV("onHotplugReceived(%d, %s)", disp, connected ? "true" : "false");
870 if (disp == DisplayDevice::DISPLAY_PRIMARY) {
871 Mutex::Autolock lock(mStateLock);
Mathias Agopian9e2463e2012-09-21 18:26:16 -0700872
Dan Stoza9e56aa02015-11-02 13:00:03 -0800873 // All non-virtual displays are currently considered secure.
874 bool isSecure = true;
875
876 int32_t type = DisplayDevice::DISPLAY_PRIMARY;
877 createBuiltinDisplayLocked(DisplayDevice::DISPLAY_PRIMARY);
878 wp<IBinder> token = mBuiltinDisplays[type];
879
880 sp<IGraphicBufferProducer> producer;
881 sp<IGraphicBufferConsumer> consumer;
882 BufferQueue::createBufferQueue(&producer, &consumer,
883 new GraphicBufferAlloc());
884
885 sp<FramebufferSurface> fbs = new FramebufferSurface(*mHwc,
886 DisplayDevice::DISPLAY_PRIMARY, consumer);
887 sp<DisplayDevice> hw = new DisplayDevice(this,
888 DisplayDevice::DISPLAY_PRIMARY, disp, isSecure, token, fbs,
889 producer, mRenderEngine->getEGLConfig());
890 mDisplays.add(token, hw);
891 } else {
892 auto type = DisplayDevice::DISPLAY_EXTERNAL;
Mathias Agopian9e2463e2012-09-21 18:26:16 -0700893 Mutex::Autolock _l(mStateLock);
Jesse Hall692c7232012-11-08 15:41:56 -0800894 if (connected) {
Dan Stoza9e56aa02015-11-02 13:00:03 -0800895 createBuiltinDisplayLocked(type);
Mathias Agopian9e2463e2012-09-21 18:26:16 -0700896 } else {
Jesse Hall692c7232012-11-08 15:41:56 -0800897 mCurrentState.displays.removeItem(mBuiltinDisplays[type]);
898 mBuiltinDisplays[type].clear();
Mathias Agopian9e2463e2012-09-21 18:26:16 -0700899 }
900 setTransactionFlags(eDisplayTransactionNeeded);
901
Andy McFadden9e9689c2012-10-10 18:17:51 -0700902 // Defer EventThread notification until SF has updated mDisplays.
Mathias Agopian3ee454a2012-08-27 16:28:24 -0700903 }
Mathias Agopian86303202012-07-24 22:46:10 -0700904}
905
Dan Stoza9e56aa02015-11-02 13:00:03 -0800906void SurfaceFlinger::setVsyncEnabled(int disp, int enabled) {
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700907 ATRACE_CALL();
Dan Stoza9e56aa02015-11-02 13:00:03 -0800908 getHwComposer().setVsyncEnabled(disp,
909 enabled ? HWC2::Vsync::Enable : HWC2::Vsync::Disable);
Mathias Agopian86303202012-07-24 22:46:10 -0700910}
911
Mathias Agopian4fec8732012-06-29 14:12:52 -0700912void SurfaceFlinger::onMessageReceived(int32_t what) {
Jamie Gennis1c8e95c2012-02-23 19:27:23 -0800913 ATRACE_CALL();
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800914 switch (what) {
Dan Stoza6b9454d2014-11-07 16:00:59 -0800915 case MessageQueue::INVALIDATE: {
916 bool refreshNeeded = handleMessageTransaction();
917 refreshNeeded |= handleMessageInvalidate();
Dan Stoza58784442014-12-02 16:58:17 -0800918 refreshNeeded |= mRepaintEverything;
Dan Stoza6b9454d2014-11-07 16:00:59 -0800919 if (refreshNeeded) {
Dan Stoza58784442014-12-02 16:58:17 -0800920 // Signal a refresh if a transaction modified the window state,
921 // a new buffer was latched, or if HWC has requested a full
922 // repaint
Dan Stoza6b9454d2014-11-07 16:00:59 -0800923 signalRefresh();
924 }
925 break;
926 }
927 case MessageQueue::REFRESH: {
928 handleMessageRefresh();
929 break;
930 }
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800931 }
932}
933
Dan Stoza6b9454d2014-11-07 16:00:59 -0800934bool SurfaceFlinger::handleMessageTransaction() {
Mathias Agopiane57f2922012-08-09 16:29:12 -0700935 uint32_t transactionFlags = peekTransactionFlags(eTransactionMask);
Mathias Agopian4fec8732012-06-29 14:12:52 -0700936 if (transactionFlags) {
Mathias Agopian87baae12012-07-31 12:38:26 -0700937 handleTransaction(transactionFlags);
Dan Stoza6b9454d2014-11-07 16:00:59 -0800938 return true;
Mathias Agopian4fec8732012-06-29 14:12:52 -0700939 }
Dan Stoza6b9454d2014-11-07 16:00:59 -0800940 return false;
Mathias Agopian4fec8732012-06-29 14:12:52 -0700941}
942
Dan Stoza6b9454d2014-11-07 16:00:59 -0800943bool SurfaceFlinger::handleMessageInvalidate() {
Mathias Agopiancd60f992012-08-16 16:28:27 -0700944 ATRACE_CALL();
Dan Stoza05dacfb2016-07-01 13:33:38 -0700945 bool frameMissed = !mHadClientComposition &&
946 mPreviousPresentFence != Fence::NO_FENCE &&
947 mPreviousPresentFence->getSignalTime() == INT64_MAX;
948 ATRACE_INT("FrameMissed", static_cast<int>(frameMissed));
949 if (frameMissed) {
950 signalLayerUpdate();
951 return false;
952 }
Dan Stoza6b9454d2014-11-07 16:00:59 -0800953 return handlePageFlip();
Mathias Agopian4fec8732012-06-29 14:12:52 -0700954}
955
956void SurfaceFlinger::handleMessageRefresh() {
Mathias Agopiancd60f992012-08-16 16:28:27 -0700957 ATRACE_CALL();
Dan Stoza14cd37c2015-07-09 12:43:33 -0700958
Pablo Ceballos40845df2016-01-25 17:41:15 -0800959 nsecs_t refreshStartTime = systemTime(SYSTEM_TIME_MONOTONIC);
Dan Stoza14cd37c2015-07-09 12:43:33 -0700960
Dan Stoza05dacfb2016-07-01 13:33:38 -0700961 preComposition();
962 rebuildLayerStacks();
963 setUpHWComposer();
964 doDebugFlashRegions();
965 doComposition();
966 postComposition(refreshStartTime);
967
968 mPreviousPresentFence = mHwc->getRetireFence(HWC_DISPLAY_PRIMARY);
969 mHadClientComposition = mHwc->hasClientComposition(HWC_DISPLAY_PRIMARY);
Dan Stoza14cd37c2015-07-09 12:43:33 -0700970
Dan Stoza9e56aa02015-11-02 13:00:03 -0800971 // Release any buffers which were replaced this frame
972 for (auto& layer : mLayersWithQueuedFrames) {
973 layer->releasePendingBuffer();
974 }
975 mLayersWithQueuedFrames.clear();
Mathias Agopiancd60f992012-08-16 16:28:27 -0700976}
Mathias Agopian4fec8732012-06-29 14:12:52 -0700977
Mathias Agopiancd60f992012-08-16 16:28:27 -0700978void SurfaceFlinger::doDebugFlashRegions()
979{
980 // is debugging enabled
981 if (CC_LIKELY(!mDebugRegion))
982 return;
983
984 const bool repaintEverything = mRepaintEverything;
985 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
986 const sp<DisplayDevice>& hw(mDisplays[dpy]);
Prashant Malani2c9b11f2014-05-25 01:36:31 -0700987 if (hw->isDisplayOn()) {
Mathias Agopiancd60f992012-08-16 16:28:27 -0700988 // transform the dirty region into this screen's coordinate space
989 const Region dirtyRegion(hw->getDirtyRegion(repaintEverything));
990 if (!dirtyRegion.isEmpty()) {
991 // redraw the whole screen
992 doComposeSurfaces(hw, Region(hw->bounds()));
993
994 // and draw the dirty region
Mathias Agopiancd60f992012-08-16 16:28:27 -0700995 const int32_t height = hw->getHeight();
Mathias Agopian3f844832013-08-07 21:24:32 -0700996 RenderEngine& engine(getRenderEngine());
997 engine.fillRegionWithColor(dirtyRegion, height, 1, 0, 1, 1);
998
Mathias Agopianda27af92012-09-13 18:17:13 -0700999 hw->swapBuffers(getHwComposer());
Mathias Agopiancd60f992012-08-16 16:28:27 -07001000 }
1001 }
1002 }
1003
1004 postFramebuffer();
1005
1006 if (mDebugRegion > 1) {
1007 usleep(mDebugRegion * 1000);
1008 }
Mathias Agopianbb53b0e2012-09-24 21:27:29 -07001009
Dan Stoza9e56aa02015-11-02 13:00:03 -08001010 for (size_t displayId = 0; displayId < mDisplays.size(); ++displayId) {
Dan Stoza7bdf55a2016-06-17 11:29:01 -07001011 auto& displayDevice = mDisplays[displayId];
1012 if (!displayDevice->isDisplayOn()) {
1013 continue;
1014 }
1015
1016 status_t result = displayDevice->prepareFrame(*mHwc);
Dan Stoza9e56aa02015-11-02 13:00:03 -08001017 ALOGE_IF(result != NO_ERROR, "prepareFrame for display %zd failed:"
1018 " %d (%s)", displayId, result, strerror(-result));
Mathias Agopianbb53b0e2012-09-24 21:27:29 -07001019 }
Mathias Agopiancd60f992012-08-16 16:28:27 -07001020}
1021
1022void SurfaceFlinger::preComposition()
1023{
Dan Stoza9e56aa02015-11-02 13:00:03 -08001024 ATRACE_CALL();
1025 ALOGV("preComposition");
1026
Mathias Agopiancd60f992012-08-16 16:28:27 -07001027 bool needExtraInvalidate = false;
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001028 const LayerVector& layers(mDrawingState.layersSortedByZ);
1029 const size_t count = layers.size();
Mathias Agopiancd60f992012-08-16 16:28:27 -07001030 for (size_t i=0 ; i<count ; i++) {
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001031 if (layers[i]->onPreComposition()) {
Mathias Agopiancd60f992012-08-16 16:28:27 -07001032 needExtraInvalidate = true;
1033 }
1034 }
1035 if (needExtraInvalidate) {
1036 signalLayerUpdate();
1037 }
1038}
1039
Pablo Ceballos40845df2016-01-25 17:41:15 -08001040void SurfaceFlinger::postComposition(nsecs_t refreshStartTime)
Mathias Agopiancd60f992012-08-16 16:28:27 -07001041{
Dan Stoza9e56aa02015-11-02 13:00:03 -08001042 ATRACE_CALL();
1043 ALOGV("postComposition");
1044
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001045 const LayerVector& layers(mDrawingState.layersSortedByZ);
1046 const size_t count = layers.size();
Mathias Agopiancd60f992012-08-16 16:28:27 -07001047 for (size_t i=0 ; i<count ; i++) {
Dan Stozae77c7662016-05-13 11:37:28 -07001048 bool frameLatched = layers[i]->onPostComposition();
1049 if (frameLatched) {
1050 recordBufferingStats(layers[i]->getName().string(),
1051 layers[i]->getOccupancyHistory(false));
1052 }
Mathias Agopiancd60f992012-08-16 16:28:27 -07001053 }
Jamie Gennis4b0eba92013-02-05 13:30:24 -08001054
Dan Stoza9e56aa02015-11-02 13:00:03 -08001055 sp<Fence> presentFence = mHwc->getRetireFence(HWC_DISPLAY_PRIMARY);
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001056
1057 if (presentFence->isValid()) {
1058 if (mPrimaryDispSync.addPresentFence(presentFence)) {
1059 enableHardwareVsync();
1060 } else {
Jesse Hall948fe0c2013-10-14 12:56:09 -07001061 disableHardwareVsync(false);
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001062 }
1063 }
1064
Dan Stozab90cf072015-03-05 11:05:59 -08001065 const sp<const DisplayDevice> hw(getDefaultDisplayDevice());
Andy McFadden5167ec62014-05-22 13:08:43 -07001066 if (kIgnorePresentFences) {
Prashant Malani2c9b11f2014-05-25 01:36:31 -07001067 if (hw->isDisplayOn()) {
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001068 enableHardwareVsync();
1069 }
1070 }
1071
Pablo Ceballos40845df2016-01-25 17:41:15 -08001072 mFenceTracker.addFrame(refreshStartTime, presentFence,
1073 hw->getVisibleLayersSortedByZ(), hw->getClientTargetAcquireFence());
1074
Jamie Gennis4b0eba92013-02-05 13:30:24 -08001075 if (mAnimCompositionPending) {
1076 mAnimCompositionPending = false;
1077
Jesse Halla9a1b002013-02-27 16:39:25 -08001078 if (presentFence->isValid()) {
Jamie Gennis4b0eba92013-02-05 13:30:24 -08001079 mAnimFrameTracker.setActualPresentFence(presentFence);
1080 } else {
1081 // The HWC doesn't support present fences, so use the refresh
1082 // timestamp instead.
Dan Stoza9e56aa02015-11-02 13:00:03 -08001083 nsecs_t presentTime =
1084 mHwc->getRefreshTimestamp(HWC_DISPLAY_PRIMARY);
Jamie Gennis4b0eba92013-02-05 13:30:24 -08001085 mAnimFrameTracker.setActualPresentTime(presentTime);
1086 }
1087 mAnimFrameTracker.advanceFrame();
1088 }
Dan Stozab90cf072015-03-05 11:05:59 -08001089
1090 if (hw->getPowerMode() == HWC_POWER_MODE_OFF) {
1091 return;
1092 }
1093
1094 nsecs_t currentTime = systemTime();
1095 if (mHasPoweredOff) {
1096 mHasPoweredOff = false;
1097 } else {
1098 nsecs_t period = mPrimaryDispSync.getPeriod();
1099 nsecs_t elapsedTime = currentTime - mLastSwapTime;
1100 size_t numPeriods = static_cast<size_t>(elapsedTime / period);
1101 if (numPeriods < NUM_BUCKETS - 1) {
1102 mFrameBuckets[numPeriods] += elapsedTime;
1103 } else {
1104 mFrameBuckets[NUM_BUCKETS - 1] += elapsedTime;
1105 }
1106 mTotalTime += elapsedTime;
1107 }
1108 mLastSwapTime = currentTime;
Mathias Agopiancd60f992012-08-16 16:28:27 -07001109}
1110
1111void SurfaceFlinger::rebuildLayerStacks() {
Dan Stoza9e56aa02015-11-02 13:00:03 -08001112 ATRACE_CALL();
1113 ALOGV("rebuildLayerStacks");
1114
Mathias Agopiancd60f992012-08-16 16:28:27 -07001115 // rebuild the visible layer list per screen
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07001116 if (CC_UNLIKELY(mVisibleRegionsDirty)) {
Mathias Agopiancd60f992012-08-16 16:28:27 -07001117 ATRACE_CALL();
Mathias Agopian87baae12012-07-31 12:38:26 -07001118 mVisibleRegionsDirty = false;
1119 invalidateHwcGeometry();
Mathias Agopiance3a0a52012-09-12 15:34:57 -07001120
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001121 const LayerVector& layers(mDrawingState.layersSortedByZ);
Mathias Agopian92a979a2012-08-02 18:32:23 -07001122 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
Mathias Agopiance3a0a52012-09-12 15:34:57 -07001123 Region opaqueRegion;
1124 Region dirtyRegion;
Dan Stoza9e56aa02015-11-02 13:00:03 -08001125 Vector<sp<Layer>> layersSortedByZ;
1126 const sp<DisplayDevice>& displayDevice(mDisplays[dpy]);
1127 const Transform& tr(displayDevice->getTransform());
1128 const Rect bounds(displayDevice->getBounds());
1129 if (displayDevice->isDisplayOn()) {
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001130 SurfaceFlinger::computeVisibleRegions(layers,
Dan Stoza9e56aa02015-11-02 13:00:03 -08001131 displayDevice->getLayerStack(), dirtyRegion,
1132 opaqueRegion);
Mathias Agopian7e7ed7f2012-08-28 14:20:00 -07001133
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001134 const size_t count = layers.size();
Mathias Agopiance3a0a52012-09-12 15:34:57 -07001135 for (size_t i=0 ; i<count ; i++) {
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001136 const sp<Layer>& layer(layers[i]);
1137 const Layer::State& s(layer->getDrawingState());
Dan Stoza9e56aa02015-11-02 13:00:03 -08001138 if (s.layerStack == displayDevice->getLayerStack()) {
Jesse Halla8026d22012-09-25 13:25:04 -07001139 Region drawRegion(tr.transform(
1140 layer->visibleNonTransparentRegion));
1141 drawRegion.andSelf(bounds);
1142 if (!drawRegion.isEmpty()) {
Mathias Agopiance3a0a52012-09-12 15:34:57 -07001143 layersSortedByZ.add(layer);
Dan Stoza9e56aa02015-11-02 13:00:03 -08001144 } else {
1145 // Clear out the HWC layer if this layer was
1146 // previously visible, but no longer is
1147 layer->setHwcLayer(displayDevice->getHwcDisplayId(),
1148 nullptr);
Mathias Agopiance3a0a52012-09-12 15:34:57 -07001149 }
Mathias Agopian87baae12012-07-31 12:38:26 -07001150 }
1151 }
Mathias Agopian3b1d2b62012-07-11 13:48:17 -07001152 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08001153 displayDevice->setVisibleLayersSortedByZ(layersSortedByZ);
1154 displayDevice->undefinedRegion.set(bounds);
1155 displayDevice->undefinedRegion.subtractSelf(
1156 tr.transform(opaqueRegion));
1157 displayDevice->dirtyRegion.orSelf(dirtyRegion);
Mathias Agopian3b1d2b62012-07-11 13:48:17 -07001158 }
Mathias Agopian3b1d2b62012-07-11 13:48:17 -07001159 }
Mathias Agopiancd60f992012-08-16 16:28:27 -07001160}
Mathias Agopian3b1d2b62012-07-11 13:48:17 -07001161
Mathias Agopiancd60f992012-08-16 16:28:27 -07001162void SurfaceFlinger::setUpHWComposer() {
Dan Stoza9e56aa02015-11-02 13:00:03 -08001163 ATRACE_CALL();
1164 ALOGV("setUpHWComposer");
1165
Jesse Hall028dc8f2013-08-20 16:35:32 -07001166 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
Jesse Hallb7a05492014-08-14 15:45:06 -07001167 bool dirty = !mDisplays[dpy]->getDirtyRegion(false).isEmpty();
1168 bool empty = mDisplays[dpy]->getVisibleLayersSortedByZ().size() == 0;
1169 bool wasEmpty = !mDisplays[dpy]->lastCompositionHadVisibleLayers;
1170
1171 // If nothing has changed (!dirty), don't recompose.
1172 // If something changed, but we don't currently have any visible layers,
1173 // and didn't when we last did a composition, then skip it this time.
1174 // The second rule does two things:
1175 // - When all layers are removed from a display, we'll emit one black
1176 // frame, then nothing more until we get new layers.
1177 // - When a display is created with a private layer stack, we won't
1178 // emit any black frames until a layer is added to the layer stack.
1179 bool mustRecompose = dirty && !(empty && wasEmpty);
1180
1181 ALOGV_IF(mDisplays[dpy]->getDisplayType() == DisplayDevice::DISPLAY_VIRTUAL,
1182 "dpy[%zu]: %s composition (%sdirty %sempty %swasEmpty)", dpy,
1183 mustRecompose ? "doing" : "skipping",
1184 dirty ? "+" : "-",
1185 empty ? "+" : "-",
1186 wasEmpty ? "+" : "-");
1187
Dan Stoza71433162014-02-04 16:22:36 -08001188 mDisplays[dpy]->beginFrame(mustRecompose);
Jesse Hallb7a05492014-08-14 15:45:06 -07001189
1190 if (mustRecompose) {
1191 mDisplays[dpy]->lastCompositionHadVisibleLayers = !empty;
1192 }
Jesse Hall028dc8f2013-08-20 16:35:32 -07001193 }
1194
Dan Stoza9e56aa02015-11-02 13:00:03 -08001195 // build the h/w work list
1196 if (CC_UNLIKELY(mGeometryInvalid)) {
1197 mGeometryInvalid = false;
1198 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
1199 sp<const DisplayDevice> displayDevice(mDisplays[dpy]);
1200 const auto hwcId = displayDevice->getHwcDisplayId();
1201 if (hwcId >= 0) {
1202 const Vector<sp<Layer>>& currentLayers(
1203 displayDevice->getVisibleLayersSortedByZ());
1204 bool foundLayerWithoutHwc = false;
1205 for (auto& layer : currentLayers) {
1206 if (!layer->hasHwcLayer(hwcId)) {
1207 auto hwcLayer = mHwc->createLayer(hwcId);
1208 if (hwcLayer) {
1209 layer->setHwcLayer(hwcId, std::move(hwcLayer));
1210 } else {
1211 layer->forceClientComposition(hwcId);
1212 foundLayerWithoutHwc = true;
1213 continue;
Jamie Gennisa4310c82012-09-25 20:26:00 -07001214 }
1215 }
Jamie Gennisa4310c82012-09-25 20:26:00 -07001216
Dan Stoza9e56aa02015-11-02 13:00:03 -08001217 layer->setGeometry(displayDevice);
1218 if (mDebugDisableHWC || mDebugRegion || mDaltonize ||
1219 mHasColorMatrix) {
1220 layer->forceClientComposition(hwcId);
Riley Andrews03414a12014-07-01 14:22:59 -07001221 }
1222 }
1223 }
1224 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08001225 }
Riley Andrews03414a12014-07-01 14:22:59 -07001226
Dan Stoza9e56aa02015-11-02 13:00:03 -08001227 // Set the per-frame data
1228 for (size_t displayId = 0; displayId < mDisplays.size(); ++displayId) {
1229 auto& displayDevice = mDisplays[displayId];
1230 const auto hwcId = displayDevice->getHwcDisplayId();
1231 if (hwcId < 0) {
1232 continue;
Jesse Hall38efe862013-04-06 23:12:29 -07001233 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08001234 for (auto& layer : displayDevice->getVisibleLayersSortedByZ()) {
1235 layer->setPerFrameData(displayDevice);
1236 }
1237 }
1238
1239 for (size_t displayId = 0; displayId < mDisplays.size(); ++displayId) {
Dan Stoza7bdf55a2016-06-17 11:29:01 -07001240 auto& displayDevice = mDisplays[displayId];
1241 if (!displayDevice->isDisplayOn()) {
1242 continue;
1243 }
1244
1245 status_t result = displayDevice->prepareFrame(*mHwc);
Dan Stoza9e56aa02015-11-02 13:00:03 -08001246 ALOGE_IF(result != NO_ERROR, "prepareFrame for display %zd failed:"
1247 " %d (%s)", displayId, result, strerror(-result));
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07001248 }
Mathias Agopiancd60f992012-08-16 16:28:27 -07001249}
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07001250
Mathias Agopiancd60f992012-08-16 16:28:27 -07001251void SurfaceFlinger::doComposition() {
1252 ATRACE_CALL();
Dan Stoza9e56aa02015-11-02 13:00:03 -08001253 ALOGV("doComposition");
1254
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07001255 const bool repaintEverything = android_atomic_and(0, &mRepaintEverything);
Mathias Agopian92a979a2012-08-02 18:32:23 -07001256 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
Mathias Agopian42977342012-08-05 00:40:46 -07001257 const sp<DisplayDevice>& hw(mDisplays[dpy]);
Prashant Malani2c9b11f2014-05-25 01:36:31 -07001258 if (hw->isDisplayOn()) {
Mathias Agopiancd60f992012-08-16 16:28:27 -07001259 // transform the dirty region into this screen's coordinate space
1260 const Region dirtyRegion(hw->getDirtyRegion(repaintEverything));
Mathias Agopian02b95102012-11-05 17:50:57 -08001261
1262 // repaint the framebuffer (if needed)
1263 doDisplayComposition(hw, dirtyRegion);
1264
Mathias Agopiancd60f992012-08-16 16:28:27 -07001265 hw->dirtyRegion.clear();
1266 hw->flip(hw->swapRegion);
1267 hw->swapRegion.clear();
Mathias Agopian87baae12012-07-31 12:38:26 -07001268 }
Mathias Agopian4fec8732012-06-29 14:12:52 -07001269 }
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07001270 postFramebuffer();
Mathias Agopian4fec8732012-06-29 14:12:52 -07001271}
1272
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001273void SurfaceFlinger::postFramebuffer()
1274{
Mathias Agopian841cde52012-03-01 15:44:37 -08001275 ATRACE_CALL();
Dan Stoza9e56aa02015-11-02 13:00:03 -08001276 ALOGV("postFramebuffer");
Mathias Agopianb048cef2012-02-04 15:44:04 -08001277
Mathias Agopiana44b0412011-10-16 18:46:35 -07001278 const nsecs_t now = systemTime();
1279 mDebugInSwapBuffers = now;
Jesse Hallc5c5a142012-07-02 16:49:28 -07001280
Dan Stoza9e56aa02015-11-02 13:00:03 -08001281 for (size_t displayId = 0; displayId < mDisplays.size(); ++displayId) {
1282 auto& displayDevice = mDisplays[displayId];
Dan Stoza7bdf55a2016-06-17 11:29:01 -07001283 if (!displayDevice->isDisplayOn()) {
1284 continue;
1285 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08001286 const auto hwcId = displayDevice->getHwcDisplayId();
1287 if (hwcId >= 0) {
1288 mHwc->commit(hwcId);
Mathias Agopian2a231842012-09-24 18:12:35 -07001289 }
Dan Stoza2dc3be82016-04-06 14:05:37 -07001290 displayDevice->onSwapBuffersCompleted();
Dan Stoza9e56aa02015-11-02 13:00:03 -08001291 if (displayId == 0) {
1292 // Make the default display current because the VirtualDisplayDevice
1293 // code cannot deal with dequeueBuffer() being called outside of the
1294 // composition loop; however the code below can call glFlush() which
1295 // is allowed to (and does in some case) call dequeueBuffer().
1296 displayDevice->makeCurrent(mEGLDisplay, mEGLContext);
1297 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08001298 for (auto& layer : displayDevice->getVisibleLayersSortedByZ()) {
1299 sp<Fence> releaseFence = Fence::NO_FENCE;
1300 if (layer->getCompositionType(hwcId) == HWC2::Composition::Client) {
1301 releaseFence = displayDevice->getClientTargetAcquireFence();
1302 } else {
1303 auto hwcLayer = layer->getHwcLayer(hwcId);
1304 releaseFence = mHwc->getLayerReleaseFence(hwcId, hwcLayer);
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07001305 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08001306 layer->onLayerDisplayed(releaseFence);
1307 }
1308 if (hwcId >= 0) {
1309 mHwc->clearReleaseFences(hwcId);
Jesse Hallef194142012-06-14 14:45:17 -07001310 }
Jamie Gennise8696a42012-01-15 18:54:57 -08001311 }
1312
Mathias Agopiana44b0412011-10-16 18:46:35 -07001313 mLastSwapBufferTime = systemTime() - now;
1314 mDebugInSwapBuffers = 0;
Jamie Gennis6547ff42013-07-16 20:12:42 -07001315
1316 uint32_t flipCount = getDefaultDisplayDevice()->getPageFlipCount();
1317 if (flipCount % LOG_FRAME_STATS_PERIOD == 0) {
1318 logFrameStats();
1319 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001320}
1321
Mathias Agopian87baae12012-07-31 12:38:26 -07001322void SurfaceFlinger::handleTransaction(uint32_t transactionFlags)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001323{
Mathias Agopian841cde52012-03-01 15:44:37 -08001324 ATRACE_CALL();
1325
Mathias Agopian7cc6df52013-06-05 14:30:54 -07001326 // here we keep a copy of the drawing state (that is the state that's
1327 // going to be overwritten by handleTransactionLocked()) outside of
1328 // mStateLock so that the side-effects of the State assignment
1329 // don't happen with mStateLock held (which can cause deadlocks).
1330 State drawingState(mDrawingState);
1331
Mathias Agopianca4d3602011-05-19 15:38:14 -07001332 Mutex::Autolock _l(mStateLock);
1333 const nsecs_t now = systemTime();
1334 mDebugInTransaction = now;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001335
Mathias Agopianca4d3602011-05-19 15:38:14 -07001336 // Here we're guaranteed that some transaction flags are set
1337 // so we can call handleTransactionLocked() unconditionally.
1338 // We call getTransactionFlags(), which will also clear the flags,
1339 // with mStateLock held to guarantee that mCurrentState won't change
1340 // until the transaction is committed.
Mathias Agopian4da75192010-08-10 17:19:56 -07001341
Mathias Agopiane57f2922012-08-09 16:29:12 -07001342 transactionFlags = getTransactionFlags(eTransactionMask);
Mathias Agopian87baae12012-07-31 12:38:26 -07001343 handleTransactionLocked(transactionFlags);
Mathias Agopiandea20b12011-05-03 17:04:02 -07001344
Mathias Agopianca4d3602011-05-19 15:38:14 -07001345 mLastTransactionTime = systemTime() - now;
1346 mDebugInTransaction = 0;
1347 invalidateHwcGeometry();
1348 // here the transaction has been committed
Mathias Agopian3d579642009-06-04 18:46:21 -07001349}
1350
Mathias Agopian87baae12012-07-31 12:38:26 -07001351void SurfaceFlinger::handleTransactionLocked(uint32_t transactionFlags)
Mathias Agopian3d579642009-06-04 18:46:21 -07001352{
1353 const LayerVector& currentLayers(mCurrentState.layersSortedByZ);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001354 const size_t count = currentLayers.size();
1355
Dan Stoza7dde5992015-05-22 09:51:44 -07001356 // Notify all layers of available frames
1357 for (size_t i = 0; i < count; ++i) {
1358 currentLayers[i]->notifyAvailableFrames();
1359 }
1360
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001361 /*
1362 * Traversal of the children
1363 * (perform the transaction for each of them if needed)
1364 */
1365
Mathias Agopian3559b072012-08-15 13:46:03 -07001366 if (transactionFlags & eTraversalNeeded) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001367 for (size_t i=0 ; i<count ; i++) {
Mathias Agopian13127d82013-03-05 17:47:11 -08001368 const sp<Layer>& layer(currentLayers[i]);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001369 uint32_t trFlags = layer->getTransactionFlags(eTransactionNeeded);
1370 if (!trFlags) continue;
1371
1372 const uint32_t flags = layer->doTransaction(0);
1373 if (flags & Layer::eVisibleRegion)
1374 mVisibleRegionsDirty = true;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001375 }
1376 }
1377
1378 /*
Mathias Agopian3559b072012-08-15 13:46:03 -07001379 * Perform display own transactions if needed
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001380 */
1381
Mathias Agopiane57f2922012-08-09 16:29:12 -07001382 if (transactionFlags & eDisplayTransactionNeeded) {
Mathias Agopian92a979a2012-08-02 18:32:23 -07001383 // here we take advantage of Vector's copy-on-write semantics to
1384 // improve performance by skipping the transaction entirely when
1385 // know that the lists are identical
Mathias Agopiane57f2922012-08-09 16:29:12 -07001386 const KeyedVector< wp<IBinder>, DisplayDeviceState>& curr(mCurrentState.displays);
1387 const KeyedVector< wp<IBinder>, DisplayDeviceState>& draw(mDrawingState.displays);
Mathias Agopian92a979a2012-08-02 18:32:23 -07001388 if (!curr.isIdenticalTo(draw)) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001389 mVisibleRegionsDirty = true;
Mathias Agopian92a979a2012-08-02 18:32:23 -07001390 const size_t cc = curr.size();
Mathias Agopian93997a82012-08-29 17:30:36 -07001391 size_t dc = draw.size();
Mathias Agopian92a979a2012-08-02 18:32:23 -07001392
1393 // find the displays that were removed
1394 // (ie: in drawing state but not in current state)
1395 // also handle displays that changed
1396 // (ie: displays that are in both lists)
1397 for (size_t i=0 ; i<dc ; i++) {
Mathias Agopiane57f2922012-08-09 16:29:12 -07001398 const ssize_t j = curr.indexOfKey(draw.keyAt(i));
1399 if (j < 0) {
Mathias Agopian92a979a2012-08-02 18:32:23 -07001400 // in drawing state but not in current state
Mathias Agopian3ee454a2012-08-27 16:28:24 -07001401 if (!draw[i].isMainDisplay()) {
Andy McFadden27ec5732012-10-02 19:04:45 -07001402 // Call makeCurrent() on the primary display so we can
1403 // be sure that nothing associated with this display
1404 // is current.
Jesse Hall02d86562013-03-25 14:43:23 -07001405 const sp<const DisplayDevice> defaultDisplay(getDefaultDisplayDevice());
Mathias Agopian875d8e12013-06-07 15:35:48 -07001406 defaultDisplay->makeCurrent(mEGLDisplay, mEGLContext);
Jesse Hall02d86562013-03-25 14:43:23 -07001407 sp<DisplayDevice> hw(getDisplayDevice(draw.keyAt(i)));
1408 if (hw != NULL)
1409 hw->disconnect(getHwComposer());
Jesse Hall9e663de2013-08-16 14:28:37 -07001410 if (draw[i].type < DisplayDevice::NUM_BUILTIN_DISPLAY_TYPES)
Jesse Hall7adb0f82013-03-06 16:13:49 -08001411 mEventThread->onHotplugReceived(draw[i].type, false);
Jesse Hall02d86562013-03-25 14:43:23 -07001412 mDisplays.removeItem(draw.keyAt(i));
Mathias Agopian92a979a2012-08-02 18:32:23 -07001413 } else {
1414 ALOGW("trying to remove the main display");
1415 }
1416 } else {
1417 // this display is in both lists. see if something changed.
Mathias Agopiane57f2922012-08-09 16:29:12 -07001418 const DisplayDeviceState& state(curr[j]);
Mathias Agopian3ee454a2012-08-27 16:28:24 -07001419 const wp<IBinder>& display(curr.keyAt(j));
Marco Nelissen097ca272014-11-14 08:01:01 -08001420 const sp<IBinder> state_binder = IInterface::asBinder(state.surface);
1421 const sp<IBinder> draw_binder = IInterface::asBinder(draw[i].surface);
Dan Albert1474f882014-09-08 18:59:09 -07001422 if (state_binder != draw_binder) {
Mathias Agopiane57f2922012-08-09 16:29:12 -07001423 // changing the surface is like destroying and
Mathias Agopian93997a82012-08-29 17:30:36 -07001424 // recreating the DisplayDevice, so we just remove it
1425 // from the drawing state, so that it get re-added
1426 // below.
Jesse Hall02d86562013-03-25 14:43:23 -07001427 sp<DisplayDevice> hw(getDisplayDevice(display));
1428 if (hw != NULL)
1429 hw->disconnect(getHwComposer());
Mathias Agopian93997a82012-08-29 17:30:36 -07001430 mDisplays.removeItem(display);
1431 mDrawingState.displays.removeItemsAt(i);
1432 dc--; i--;
1433 // at this point we must loop to the next item
1434 continue;
1435 }
Mathias Agopiane57f2922012-08-09 16:29:12 -07001436
Mathias Agopiandb9b41f2012-10-15 16:51:41 -07001437 const sp<DisplayDevice> disp(getDisplayDevice(display));
Mathias Agopian93997a82012-08-29 17:30:36 -07001438 if (disp != NULL) {
1439 if (state.layerStack != draw[i].layerStack) {
1440 disp->setLayerStack(state.layerStack);
1441 }
Mathias Agopian00e8c7a2012-09-04 19:30:46 -07001442 if ((state.orientation != draw[i].orientation)
1443 || (state.viewport != draw[i].viewport)
1444 || (state.frame != draw[i].frame))
1445 {
1446 disp->setProjection(state.orientation,
Jeff Brown4fb39992012-09-07 12:55:10 -07001447 state.viewport, state.frame);
Mathias Agopian93997a82012-08-29 17:30:36 -07001448 }
Michael Lentine47e45402014-07-18 15:34:25 -07001449 if (state.width != draw[i].width || state.height != draw[i].height) {
1450 disp->setDisplaySize(state.width, state.height);
1451 }
Mathias Agopian92a979a2012-08-02 18:32:23 -07001452 }
1453 }
1454 }
1455
1456 // find displays that were added
1457 // (ie: in current state but not in drawing state)
1458 for (size_t i=0 ; i<cc ; i++) {
Mathias Agopiane57f2922012-08-09 16:29:12 -07001459 if (draw.indexOfKey(curr.keyAt(i)) < 0) {
Mathias Agopiane57f2922012-08-09 16:29:12 -07001460 const DisplayDeviceState& state(curr[i]);
Mathias Agopiancde87a32012-09-13 14:09:01 -07001461
Jesse Hall99c7dbb2013-03-14 14:29:29 -07001462 sp<DisplaySurface> dispSurface;
Mathias Agopiandb89edc2013-08-02 01:40:18 -07001463 sp<IGraphicBufferProducer> producer;
Dan Stozab9b08832014-03-13 11:55:57 -07001464 sp<IGraphicBufferProducer> bqProducer;
1465 sp<IGraphicBufferConsumer> bqConsumer;
Dan Stoza70982a52016-01-11 23:40:44 +00001466 BufferQueue::createBufferQueue(&bqProducer, &bqConsumer,
1467 new GraphicBufferAlloc());
Mathias Agopiandb89edc2013-08-02 01:40:18 -07001468
Dan Stoza9e56aa02015-11-02 13:00:03 -08001469 int32_t hwcId = -1;
Jesse Hall99c7dbb2013-03-14 14:29:29 -07001470 if (state.isVirtualDisplay()) {
Jesse Hall02d86562013-03-25 14:43:23 -07001471 // Virtual displays without a surface are dormant:
1472 // they have external state (layer stack, projection,
1473 // etc.) but no internal state (i.e. a DisplayDevice).
Jesse Hall99c7dbb2013-03-14 14:29:29 -07001474 if (state.surface != NULL) {
Mathias Agopiandb89edc2013-08-02 01:40:18 -07001475
Dan Stoza1f3efb12014-10-15 16:34:55 -07001476 int width = 0;
1477 int status = state.surface->query(
1478 NATIVE_WINDOW_WIDTH, &width);
1479 ALOGE_IF(status != NO_ERROR,
1480 "Unable to query width (%d)", status);
1481 int height = 0;
1482 status = state.surface->query(
1483 NATIVE_WINDOW_HEIGHT, &height);
1484 ALOGE_IF(status != NO_ERROR,
1485 "Unable to query height (%d)", status);
Dan Stoza5cf424b2016-05-20 14:02:39 -07001486 int intFormat = 0;
1487 status = state.surface->query(
1488 NATIVE_WINDOW_FORMAT, &intFormat);
1489 ALOGE_IF(status != NO_ERROR,
1490 "Unable to query format (%d)", status);
1491 auto format = static_cast<android_pixel_format_t>(
1492 intFormat);
Dan Stoza1f3efb12014-10-15 16:34:55 -07001493
Dan Stoza5cf424b2016-05-20 14:02:39 -07001494 mHwc->allocateVirtualDisplay(width, height, &format,
Dan Stoza9e56aa02015-11-02 13:00:03 -08001495 &hwcId);
1496
Dan Stoza5cf424b2016-05-20 14:02:39 -07001497 // TODO: Plumb requested format back up to consumer
1498
Dan Stoza9e56aa02015-11-02 13:00:03 -08001499 sp<VirtualDisplaySurface> vds =
1500 new VirtualDisplaySurface(*mHwc,
1501 hwcId, state.surface, bqProducer,
1502 bqConsumer, state.displayName);
Mathias Agopiandb89edc2013-08-02 01:40:18 -07001503
1504 dispSurface = vds;
Michael Lentine47e45402014-07-18 15:34:25 -07001505 producer = vds;
Jesse Hall99c7dbb2013-03-14 14:29:29 -07001506 }
1507 } else {
Mathias Agopiancde87a32012-09-13 14:09:01 -07001508 ALOGE_IF(state.surface!=NULL,
1509 "adding a supported display, but rendering "
1510 "surface is provided (%p), ignoring it",
1511 state.surface.get());
Dan Stoza9e56aa02015-11-02 13:00:03 -08001512 if (state.type == DisplayDevice::DISPLAY_EXTERNAL) {
1513 hwcId = DisplayDevice::DISPLAY_EXTERNAL;
1514 dispSurface = new FramebufferSurface(*mHwc,
1515 DisplayDevice::DISPLAY_EXTERNAL,
1516 bqConsumer);
1517 producer = bqProducer;
1518 } else {
1519 ALOGE("Attempted to add non-external non-virtual"
1520 " display");
1521 }
Mathias Agopiancde87a32012-09-13 14:09:01 -07001522 }
1523
1524 const wp<IBinder>& display(curr.keyAt(i));
Jesse Hall99c7dbb2013-03-14 14:29:29 -07001525 if (dispSurface != NULL) {
Mathias Agopiancde87a32012-09-13 14:09:01 -07001526 sp<DisplayDevice> hw = new DisplayDevice(this,
Dan Stoza9e56aa02015-11-02 13:00:03 -08001527 state.type, hwcId, state.isSecure, display,
1528 dispSurface, producer,
Jesse Hall05f8c702013-12-23 20:44:38 -08001529 mRenderEngine->getEGLConfig());
Mathias Agopiancde87a32012-09-13 14:09:01 -07001530 hw->setLayerStack(state.layerStack);
1531 hw->setProjection(state.orientation,
Jeff Brown4fb39992012-09-07 12:55:10 -07001532 state.viewport, state.frame);
Andy McFadden8dfa92f2012-09-17 18:27:17 -07001533 hw->setDisplayName(state.displayName);
Mathias Agopiancde87a32012-09-13 14:09:01 -07001534 mDisplays.add(display, hw);
Dan Stoza9e56aa02015-11-02 13:00:03 -08001535 if (!state.isVirtualDisplay()) {
Jesse Hall7adb0f82013-03-06 16:13:49 -08001536 mEventThread->onHotplugReceived(state.type, true);
Jesse Hall1c569c42013-04-05 13:44:52 -07001537 }
Mathias Agopian93997a82012-08-29 17:30:36 -07001538 }
Mathias Agopian92a979a2012-08-02 18:32:23 -07001539 }
1540 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001541 }
Mathias Agopian3559b072012-08-15 13:46:03 -07001542 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001543
Mathias Agopian84300952012-11-21 16:02:13 -08001544 if (transactionFlags & (eTraversalNeeded|eDisplayTransactionNeeded)) {
1545 // The transform hint might have changed for some layers
1546 // (either because a display has changed, or because a layer
1547 // as changed).
1548 //
1549 // Walk through all the layers in currentLayers,
1550 // and update their transform hint.
1551 //
1552 // If a layer is visible only on a single display, then that
1553 // display is used to calculate the hint, otherwise we use the
1554 // default display.
1555 //
1556 // NOTE: we do this here, rather than in rebuildLayerStacks() so that
1557 // the hint is set before we acquire a buffer from the surface texture.
1558 //
1559 // NOTE: layer transactions have taken place already, so we use their
1560 // drawing state. However, SurfaceFlinger's own transaction has not
1561 // happened yet, so we must use the current state layer list
1562 // (soon to become the drawing state list).
1563 //
1564 sp<const DisplayDevice> disp;
1565 uint32_t currentlayerStack = 0;
1566 for (size_t i=0; i<count; i++) {
1567 // NOTE: we rely on the fact that layers are sorted by
1568 // layerStack first (so we don't have to traverse the list
1569 // of displays for every layer).
Mathias Agopian13127d82013-03-05 17:47:11 -08001570 const sp<Layer>& layer(currentLayers[i]);
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001571 uint32_t layerStack = layer->getDrawingState().layerStack;
Mathias Agopian84300952012-11-21 16:02:13 -08001572 if (i==0 || currentlayerStack != layerStack) {
1573 currentlayerStack = layerStack;
1574 // figure out if this layerstack is mirrored
1575 // (more than one display) if so, pick the default display,
1576 // if not, pick the only display it's on.
1577 disp.clear();
1578 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
1579 sp<const DisplayDevice> hw(mDisplays[dpy]);
1580 if (hw->getLayerStack() == currentlayerStack) {
1581 if (disp == NULL) {
1582 disp = hw;
1583 } else {
Chet Haase91d25932013-04-11 15:24:55 -07001584 disp = NULL;
Mathias Agopian84300952012-11-21 16:02:13 -08001585 break;
1586 }
1587 }
1588 }
1589 }
Chet Haase91d25932013-04-11 15:24:55 -07001590 if (disp == NULL) {
1591 // NOTE: TEMPORARY FIX ONLY. Real fix should cause layers to
1592 // redraw after transform hint changes. See bug 8508397.
1593
1594 // could be null when this layer is using a layerStack
1595 // that is not visible on any display. Also can occur at
1596 // screen off/on times.
1597 disp = getDefaultDisplayDevice();
Mathias Agopian84300952012-11-21 16:02:13 -08001598 }
Chet Haase91d25932013-04-11 15:24:55 -07001599 layer->updateTransformHint(disp);
Mathias Agopian84300952012-11-21 16:02:13 -08001600 }
1601 }
1602
1603
Mathias Agopian3559b072012-08-15 13:46:03 -07001604 /*
1605 * Perform our own transaction if needed
1606 */
Mathias Agopian0aa758d2009-04-22 15:23:34 -07001607
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001608 const LayerVector& layers(mDrawingState.layersSortedByZ);
1609 if (currentLayers.size() > layers.size()) {
Mathias Agopian3559b072012-08-15 13:46:03 -07001610 // layers have been added
1611 mVisibleRegionsDirty = true;
1612 }
1613
1614 // some layers might have been removed, so
1615 // we need to update the regions they're exposing.
1616 if (mLayersRemoved) {
1617 mLayersRemoved = false;
1618 mVisibleRegionsDirty = true;
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001619 const size_t count = layers.size();
Mathias Agopian3559b072012-08-15 13:46:03 -07001620 for (size_t i=0 ; i<count ; i++) {
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001621 const sp<Layer>& layer(layers[i]);
Mathias Agopian3559b072012-08-15 13:46:03 -07001622 if (currentLayers.indexOf(layer) < 0) {
1623 // this layer is not visible anymore
1624 // TODO: we could traverse the tree from front to back and
1625 // compute the actual visible region
1626 // TODO: we could cache the transformed region
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001627 const Layer::State& s(layer->getDrawingState());
Robert Carr3dcabfa2016-03-01 18:36:58 -08001628 Region visibleReg = s.active.transform.transform(
Mathias Agopian1501d542012-09-04 21:04:09 -07001629 Region(Rect(s.active.w, s.active.h)));
1630 invalidateLayerStack(s.layerStack, visibleReg);
Mathias Agopian0aa758d2009-04-22 15:23:34 -07001631 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001632 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001633 }
1634
1635 commitTransaction();
Riley Andrews03414a12014-07-01 14:22:59 -07001636
1637 updateCursorAsync();
1638}
1639
1640void SurfaceFlinger::updateCursorAsync()
1641{
Dan Stoza9e56aa02015-11-02 13:00:03 -08001642 for (size_t displayId = 0; displayId < mDisplays.size(); ++displayId) {
1643 auto& displayDevice = mDisplays[displayId];
1644 if (displayDevice->getHwcDisplayId() < 0) {
Riley Andrews03414a12014-07-01 14:22:59 -07001645 continue;
1646 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08001647
1648 for (auto& layer : displayDevice->getVisibleLayersSortedByZ()) {
1649 layer->updateCursorPosition(displayDevice);
Riley Andrews03414a12014-07-01 14:22:59 -07001650 }
1651 }
Mathias Agopian4fec8732012-06-29 14:12:52 -07001652}
1653
1654void SurfaceFlinger::commitTransaction()
1655{
1656 if (!mLayersPendingRemoval.isEmpty()) {
1657 // Notify removed layers now that they can't be drawn from
1658 for (size_t i = 0; i < mLayersPendingRemoval.size(); i++) {
Dan Stozae77c7662016-05-13 11:37:28 -07001659 recordBufferingStats(mLayersPendingRemoval[i]->getName().string(),
1660 mLayersPendingRemoval[i]->getOccupancyHistory(true));
Mathias Agopian4fec8732012-06-29 14:12:52 -07001661 mLayersPendingRemoval[i]->onRemoved();
1662 }
1663 mLayersPendingRemoval.clear();
1664 }
1665
Jamie Gennis4b0eba92013-02-05 13:30:24 -08001666 // If this transaction is part of a window animation then the next frame
1667 // we composite should be considered an animation as well.
1668 mAnimCompositionPending = mAnimTransactionPending;
1669
Mathias Agopian4fec8732012-06-29 14:12:52 -07001670 mDrawingState = mCurrentState;
Jamie Gennis2d5e2302012-10-15 18:24:43 -07001671 mTransactionPending = false;
1672 mAnimTransactionPending = false;
Mathias Agopian4fec8732012-06-29 14:12:52 -07001673 mTransactionCV.broadcast();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001674}
1675
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001676void SurfaceFlinger::computeVisibleRegions(
Mathias Agopian87baae12012-07-31 12:38:26 -07001677 const LayerVector& currentLayers, uint32_t layerStack,
1678 Region& outDirtyRegion, Region& outOpaqueRegion)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001679{
Mathias Agopian841cde52012-03-01 15:44:37 -08001680 ATRACE_CALL();
Dan Stoza9e56aa02015-11-02 13:00:03 -08001681 ALOGV("computeVisibleRegions");
Mathias Agopian841cde52012-03-01 15:44:37 -08001682
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001683 Region aboveOpaqueLayers;
1684 Region aboveCoveredLayers;
1685 Region dirty;
1686
Mathias Agopian87baae12012-07-31 12:38:26 -07001687 outDirtyRegion.clear();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001688
1689 size_t i = currentLayers.size();
1690 while (i--) {
Mathias Agopian13127d82013-03-05 17:47:11 -08001691 const sp<Layer>& layer = currentLayers[i];
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001692
1693 // start with the whole surface at its current location
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001694 const Layer::State& s(layer->getDrawingState());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001695
Jesse Hall01e29052013-02-19 16:13:35 -08001696 // only consider the layers on the given layer stack
Mathias Agopian87baae12012-07-31 12:38:26 -07001697 if (s.layerStack != layerStack)
1698 continue;
1699
Mathias Agopianab028732010-03-16 16:41:46 -07001700 /*
1701 * opaqueRegion: area of a surface that is fully opaque.
1702 */
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001703 Region opaqueRegion;
Mathias Agopianab028732010-03-16 16:41:46 -07001704
1705 /*
1706 * visibleRegion: area of a surface that is visible on screen
1707 * and not fully transparent. This is essentially the layer's
1708 * footprint minus the opaque regions above it.
1709 * Areas covered by a translucent surface are considered visible.
1710 */
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001711 Region visibleRegion;
Mathias Agopianab028732010-03-16 16:41:46 -07001712
1713 /*
1714 * coveredRegion: area of a surface that is covered by all
1715 * visible regions above it (which includes the translucent areas).
1716 */
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001717 Region coveredRegion;
Mathias Agopianab028732010-03-16 16:41:46 -07001718
Jesse Halla8026d22012-09-25 13:25:04 -07001719 /*
1720 * transparentRegion: area of a surface that is hinted to be completely
1721 * transparent. This is only used to tell when the layer has no visible
1722 * non-transparent regions and can be removed from the layer list. It
1723 * does not affect the visibleRegion of this layer or any layers
1724 * beneath it. The hint may not be correct if apps don't respect the
1725 * SurfaceView restrictions (which, sadly, some don't).
1726 */
1727 Region transparentRegion;
1728
Mathias Agopianab028732010-03-16 16:41:46 -07001729
1730 // handle hidden surfaces by setting the visible region to empty
Mathias Agopianda27af92012-09-13 18:17:13 -07001731 if (CC_LIKELY(layer->isVisible())) {
Andy McFadden4125a4f2014-01-29 17:17:11 -08001732 const bool translucent = !layer->isOpaque(s);
Robert Carr3dcabfa2016-03-01 18:36:58 -08001733 Rect bounds(s.active.transform.transform(layer->computeBounds()));
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001734 visibleRegion.set(bounds);
Mathias Agopianab028732010-03-16 16:41:46 -07001735 if (!visibleRegion.isEmpty()) {
1736 // Remove the transparent area from the visible region
1737 if (translucent) {
Robert Carr3dcabfa2016-03-01 18:36:58 -08001738 const Transform tr(s.active.transform);
Dan Stoza22f7fc42016-05-10 16:19:53 -07001739 if (tr.preserveRects()) {
1740 // transform the transparent region
1741 transparentRegion = tr.transform(s.activeTransparentRegion);
Mathias Agopian4fec8732012-06-29 14:12:52 -07001742 } else {
Dan Stoza22f7fc42016-05-10 16:19:53 -07001743 // transformation too complex, can't do the
1744 // transparent region optimization.
1745 transparentRegion.clear();
Mathias Agopian4fec8732012-06-29 14:12:52 -07001746 }
Mathias Agopianab028732010-03-16 16:41:46 -07001747 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001748
Mathias Agopianab028732010-03-16 16:41:46 -07001749 // compute the opaque region
Robert Carr3dcabfa2016-03-01 18:36:58 -08001750 const int32_t layerOrientation = s.active.transform.getOrientation();
Dan Stoza9e56aa02015-11-02 13:00:03 -08001751 if (s.alpha == 1.0f && !translucent &&
Mathias Agopianab028732010-03-16 16:41:46 -07001752 ((layerOrientation & Transform::ROT_INVALID) == false)) {
1753 // the opaque region is the layer's footprint
1754 opaqueRegion = visibleRegion;
1755 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001756 }
1757 }
1758
Mathias Agopianab028732010-03-16 16:41:46 -07001759 // Clip the covered region to the visible region
1760 coveredRegion = aboveCoveredLayers.intersect(visibleRegion);
1761
1762 // Update aboveCoveredLayers for next (lower) layer
1763 aboveCoveredLayers.orSelf(visibleRegion);
1764
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001765 // subtract the opaque region covered by the layers above us
1766 visibleRegion.subtractSelf(aboveOpaqueLayers);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001767
1768 // compute this layer's dirty region
1769 if (layer->contentDirty) {
1770 // we need to invalidate the whole region
1771 dirty = visibleRegion;
1772 // as well, as the old visible region
Mathias Agopian4fec8732012-06-29 14:12:52 -07001773 dirty.orSelf(layer->visibleRegion);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001774 layer->contentDirty = false;
1775 } else {
Mathias Agopiana8d44f72009-06-28 02:54:16 -07001776 /* compute the exposed region:
Mathias Agopianab028732010-03-16 16:41:46 -07001777 * the exposed region consists of two components:
1778 * 1) what's VISIBLE now and was COVERED before
1779 * 2) what's EXPOSED now less what was EXPOSED before
1780 *
1781 * note that (1) is conservative, we start with the whole
1782 * visible region but only keep what used to be covered by
1783 * something -- which mean it may have been exposed.
1784 *
1785 * (2) handles areas that were not covered by anything but got
1786 * exposed because of a resize.
Mathias Agopiana8d44f72009-06-28 02:54:16 -07001787 */
Mathias Agopianab028732010-03-16 16:41:46 -07001788 const Region newExposed = visibleRegion - coveredRegion;
Mathias Agopian4fec8732012-06-29 14:12:52 -07001789 const Region oldVisibleRegion = layer->visibleRegion;
1790 const Region oldCoveredRegion = layer->coveredRegion;
Mathias Agopianab028732010-03-16 16:41:46 -07001791 const Region oldExposed = oldVisibleRegion - oldCoveredRegion;
1792 dirty = (visibleRegion&oldCoveredRegion) | (newExposed-oldExposed);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001793 }
1794 dirty.subtractSelf(aboveOpaqueLayers);
1795
1796 // accumulate to the screen dirty region
Mathias Agopian87baae12012-07-31 12:38:26 -07001797 outDirtyRegion.orSelf(dirty);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001798
Mathias Agopianab028732010-03-16 16:41:46 -07001799 // Update aboveOpaqueLayers for next (lower) layer
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001800 aboveOpaqueLayers.orSelf(opaqueRegion);
Andreas Huber8b42e8a2010-08-16 08:49:37 -07001801
Jesse Halla8026d22012-09-25 13:25:04 -07001802 // Store the visible region in screen space
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001803 layer->setVisibleRegion(visibleRegion);
1804 layer->setCoveredRegion(coveredRegion);
Jesse Halla8026d22012-09-25 13:25:04 -07001805 layer->setVisibleNonTransparentRegion(
1806 visibleRegion.subtract(transparentRegion));
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001807 }
1808
Mathias Agopian87baae12012-07-31 12:38:26 -07001809 outOpaqueRegion = aboveOpaqueLayers;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001810}
1811
Mathias Agopian87baae12012-07-31 12:38:26 -07001812void SurfaceFlinger::invalidateLayerStack(uint32_t layerStack,
1813 const Region& dirty) {
Mathias Agopian92a979a2012-08-02 18:32:23 -07001814 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
Mathias Agopian42977342012-08-05 00:40:46 -07001815 const sp<DisplayDevice>& hw(mDisplays[dpy]);
1816 if (hw->getLayerStack() == layerStack) {
1817 hw->dirtyRegion.orSelf(dirty);
Mathias Agopian92a979a2012-08-02 18:32:23 -07001818 }
1819 }
Mathias Agopian87baae12012-07-31 12:38:26 -07001820}
1821
Dan Stoza6b9454d2014-11-07 16:00:59 -08001822bool SurfaceFlinger::handlePageFlip()
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001823{
Dan Stoza9e56aa02015-11-02 13:00:03 -08001824 ALOGV("handlePageFlip");
1825
Mathias Agopian4fec8732012-06-29 14:12:52 -07001826 Region dirtyRegion;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001827
Mathias Agopian4fec8732012-06-29 14:12:52 -07001828 bool visibleRegions = false;
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001829 const LayerVector& layers(mDrawingState.layersSortedByZ);
Dan Stoza6b9454d2014-11-07 16:00:59 -08001830 bool frameQueued = false;
Eric Penner51c59cd2014-07-28 19:51:58 -07001831
1832 // Store the set of layers that need updates. This set must not change as
1833 // buffers are being latched, as this could result in a deadlock.
1834 // Example: Two producers share the same command stream and:
1835 // 1.) Layer 0 is latched
1836 // 2.) Layer 0 gets a new frame
1837 // 2.) Layer 1 gets a new frame
1838 // 3.) Layer 1 is latched.
1839 // Display is now waiting on Layer 1's frame, which is behind layer 0's
1840 // second frame. But layer 0's second frame could be waiting on display.
Eric Penner51c59cd2014-07-28 19:51:58 -07001841 for (size_t i = 0, count = layers.size(); i<count ; i++) {
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001842 const sp<Layer>& layer(layers[i]);
Dan Stoza6b9454d2014-11-07 16:00:59 -08001843 if (layer->hasQueuedFrame()) {
1844 frameQueued = true;
1845 if (layer->shouldPresentNow(mPrimaryDispSync)) {
Dan Stoza9e56aa02015-11-02 13:00:03 -08001846 mLayersWithQueuedFrames.push_back(layer.get());
Dan Stozaee44edd2015-03-23 15:50:23 -07001847 } else {
1848 layer->useEmptyDamage();
Dan Stoza6b9454d2014-11-07 16:00:59 -08001849 }
Dan Stozaee44edd2015-03-23 15:50:23 -07001850 } else {
1851 layer->useEmptyDamage();
Dan Stoza6b9454d2014-11-07 16:00:59 -08001852 }
Eric Penner51c59cd2014-07-28 19:51:58 -07001853 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08001854 for (auto& layer : mLayersWithQueuedFrames) {
Mathias Agopian87baae12012-07-31 12:38:26 -07001855 const Region dirty(layer->latchBuffer(visibleRegions));
Dan Stozaee44edd2015-03-23 15:50:23 -07001856 layer->useSurfaceDamage();
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001857 const Layer::State& s(layer->getDrawingState());
Mathias Agopian87baae12012-07-31 12:38:26 -07001858 invalidateLayerStack(s.layerStack, dirty);
Mathias Agopian4fec8732012-06-29 14:12:52 -07001859 }
Mathias Agopian4da75192010-08-10 17:19:56 -07001860
Mathias Agopian3b1d2b62012-07-11 13:48:17 -07001861 mVisibleRegionsDirty |= visibleRegions;
Dan Stoza6b9454d2014-11-07 16:00:59 -08001862
1863 // If we will need to wake up at some time in the future to deal with a
1864 // queued frame that shouldn't be displayed during this vsync period, wake
1865 // up during the next vsync period to check again.
Dan Stoza9e56aa02015-11-02 13:00:03 -08001866 if (frameQueued && mLayersWithQueuedFrames.empty()) {
Dan Stoza6b9454d2014-11-07 16:00:59 -08001867 signalLayerUpdate();
1868 }
1869
1870 // Only continue with the refresh if there is actually new work to do
Dan Stoza9e56aa02015-11-02 13:00:03 -08001871 return !mLayersWithQueuedFrames.empty();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001872}
1873
Mathias Agopianad456f92011-01-13 17:53:01 -08001874void SurfaceFlinger::invalidateHwcGeometry()
1875{
Dan Stoza9e56aa02015-11-02 13:00:03 -08001876 mGeometryInvalid = true;
Mathias Agopianad456f92011-01-13 17:53:01 -08001877}
1878
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001879
Mathias Agopiancd60f992012-08-16 16:28:27 -07001880void SurfaceFlinger::doDisplayComposition(const sp<const DisplayDevice>& hw,
Mathias Agopian87baae12012-07-31 12:38:26 -07001881 const Region& inDirtyRegion)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001882{
Dan Stoza71433162014-02-04 16:22:36 -08001883 // We only need to actually compose the display if:
1884 // 1) It is being handled by hardware composer, which may need this to
1885 // keep its virtual display state machine in sync, or
1886 // 2) There is work to be done (the dirty region isn't empty)
1887 bool isHwcDisplay = hw->getHwcDisplayId() >= 0;
1888 if (!isHwcDisplay && inDirtyRegion.isEmpty()) {
Dan Stoza9e56aa02015-11-02 13:00:03 -08001889 ALOGV("Skipping display composition");
Dan Stoza71433162014-02-04 16:22:36 -08001890 return;
1891 }
1892
Dan Stoza9e56aa02015-11-02 13:00:03 -08001893 ALOGV("doDisplayComposition");
1894
Mathias Agopian87baae12012-07-31 12:38:26 -07001895 Region dirtyRegion(inDirtyRegion);
1896
Mathias Agopianb8a55602009-06-26 19:06:36 -07001897 // compute the invalid region
Mathias Agopian42977342012-08-05 00:40:46 -07001898 hw->swapRegion.orSelf(dirtyRegion);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001899
Mathias Agopian42977342012-08-05 00:40:46 -07001900 uint32_t flags = hw->getFlags();
Mathias Agopian0f2f5ff2012-07-31 23:09:07 -07001901 if (flags & DisplayDevice::SWAP_RECTANGLE) {
Mathias Agopian29d06ac2009-06-29 18:49:56 -07001902 // we can redraw only what's dirty, but since SWAP_RECTANGLE only
1903 // takes a rectangle, we must make sure to update that whole
1904 // rectangle in that case
Mathias Agopian42977342012-08-05 00:40:46 -07001905 dirtyRegion.set(hw->swapRegion.bounds());
Mathias Agopian29d06ac2009-06-29 18:49:56 -07001906 } else {
Mathias Agopian0f2f5ff2012-07-31 23:09:07 -07001907 if (flags & DisplayDevice::PARTIAL_UPDATES) {
Mathias Agopian29d06ac2009-06-29 18:49:56 -07001908 // We need to redraw the rectangle that will be updated
1909 // (pushed to the framebuffer).
Mathias Agopian95a666b2009-09-24 14:57:26 -07001910 // This is needed because PARTIAL_UPDATES only takes one
Mathias Agopian0f2f5ff2012-07-31 23:09:07 -07001911 // rectangle instead of a region (see DisplayDevice::flip())
Mathias Agopian42977342012-08-05 00:40:46 -07001912 dirtyRegion.set(hw->swapRegion.bounds());
Mathias Agopian29d06ac2009-06-29 18:49:56 -07001913 } else {
1914 // we need to redraw everything (the whole screen)
Mathias Agopian42977342012-08-05 00:40:46 -07001915 dirtyRegion.set(hw->bounds());
1916 hw->swapRegion = dirtyRegion;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001917 }
1918 }
1919
Alan Viverette9c5a3332013-09-12 20:04:35 -07001920 if (CC_LIKELY(!mDaltonize && !mHasColorMatrix)) {
Michael Lentine3f121fc2014-10-01 11:17:28 -07001921 if (!doComposeSurfaces(hw, dirtyRegion)) return;
Mathias Agopianff2ed702013-09-01 21:36:12 -07001922 } else {
1923 RenderEngine& engine(getRenderEngine());
Alan Viverette9c5a3332013-09-12 20:04:35 -07001924 mat4 colorMatrix = mColorMatrix;
1925 if (mDaltonize) {
Alan Viverette9c5a3332013-09-12 20:04:35 -07001926 colorMatrix = colorMatrix * mDaltonizer();
Alan Viverette9c5a3332013-09-12 20:04:35 -07001927 }
Dan Stozaf0087992014-10-20 15:46:09 -07001928 mat4 oldMatrix = engine.setupColorTransform(colorMatrix);
Mathias Agopianff2ed702013-09-01 21:36:12 -07001929 doComposeSurfaces(hw, dirtyRegion);
Dan Stozaf0087992014-10-20 15:46:09 -07001930 engine.setupColorTransform(oldMatrix);
Mathias Agopianff2ed702013-09-01 21:36:12 -07001931 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001932
Mathias Agopian9c6e2972011-09-20 17:21:56 -07001933 // update the swap region and clear the dirty region
Mathias Agopian42977342012-08-05 00:40:46 -07001934 hw->swapRegion.orSelf(dirtyRegion);
Mathias Agopianda27af92012-09-13 18:17:13 -07001935
1936 // swap buffers (presentation)
1937 hw->swapBuffers(getHwComposer());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001938}
1939
Dan Stoza9e56aa02015-11-02 13:00:03 -08001940bool SurfaceFlinger::doComposeSurfaces(
1941 const sp<const DisplayDevice>& displayDevice, const Region& dirty)
Mathias Agopianf384cc32011-09-08 18:31:55 -07001942{
Dan Stoza9e56aa02015-11-02 13:00:03 -08001943 ALOGV("doComposeSurfaces");
Mathias Agopiancd20eb02011-09-22 20:57:04 -07001944
Dan Stoza9e56aa02015-11-02 13:00:03 -08001945 const auto hwcId = displayDevice->getHwcDisplayId();
1946 bool hasClientComposition = mHwc->hasClientComposition(hwcId);
1947 if (hasClientComposition) {
1948 ALOGV("hasClientComposition");
1949
1950 if (!displayDevice->makeCurrent(mEGLDisplay, mEGLContext)) {
Michael Chockc8c71092013-03-04 15:15:46 -08001951 ALOGW("DisplayDevice::makeCurrent failed. Aborting surface composition for display %s",
Dan Stoza9e56aa02015-11-02 13:00:03 -08001952 displayDevice->getDisplayName().string());
Michael Lentine3f121fc2014-10-01 11:17:28 -07001953 eglMakeCurrent(mEGLDisplay, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT);
1954 if(!getDefaultDisplayDevice()->makeCurrent(mEGLDisplay, mEGLContext)) {
1955 ALOGE("DisplayDevice::makeCurrent on default display failed. Aborting.");
1956 }
1957 return false;
Michael Chockc8c71092013-03-04 15:15:46 -08001958 }
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07001959
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07001960 // Never touch the framebuffer if we don't have any framebuffer layers
Dan Stoza9e56aa02015-11-02 13:00:03 -08001961 const bool hasDeviceComposition = mHwc->hasDeviceComposition(hwcId);
1962 if (hasDeviceComposition) {
Mathias Agopianb9494d52012-04-18 02:28:45 -07001963 // when using overlays, we assume a fully transparent framebuffer
1964 // NOTE: we could reduce how much we need to clear, for instance
1965 // remove where there are opaque FB layers. however, on some
Mathias Agopian3f844832013-08-07 21:24:32 -07001966 // GPUs doing a "clean slate" clear might be more efficient.
Mathias Agopianb9494d52012-04-18 02:28:45 -07001967 // We'll revisit later if needed.
Dan Stoza9e56aa02015-11-02 13:00:03 -08001968 mRenderEngine->clearWithColor(0, 0, 0, 0);
Mathias Agopianb9494d52012-04-18 02:28:45 -07001969 } else {
Mathias Agopian766dc492012-10-30 18:08:06 -07001970 // we start with the whole screen area
Dan Stoza9e56aa02015-11-02 13:00:03 -08001971 const Region bounds(displayDevice->getBounds());
Mathias Agopian766dc492012-10-30 18:08:06 -07001972
1973 // we remove the scissor part
1974 // we're left with the letterbox region
1975 // (common case is that letterbox ends-up being empty)
Dan Stoza9e56aa02015-11-02 13:00:03 -08001976 const Region letterbox(bounds.subtract(displayDevice->getScissor()));
Mathias Agopian766dc492012-10-30 18:08:06 -07001977
1978 // compute the area to clear
Dan Stoza9e56aa02015-11-02 13:00:03 -08001979 Region region(displayDevice->undefinedRegion.merge(letterbox));
Mathias Agopian766dc492012-10-30 18:08:06 -07001980
1981 // but limit it to the dirty region
1982 region.andSelf(dirty);
1983
Mathias Agopianb9494d52012-04-18 02:28:45 -07001984 // screen is already cleared here
Mathias Agopian87baae12012-07-31 12:38:26 -07001985 if (!region.isEmpty()) {
Mathias Agopianb9494d52012-04-18 02:28:45 -07001986 // can happen with SurfaceView
Dan Stoza9e56aa02015-11-02 13:00:03 -08001987 drawWormhole(displayDevice, region);
Mathias Agopianb9494d52012-04-18 02:28:45 -07001988 }
Mathias Agopiana2f4e562012-04-15 23:34:59 -07001989 }
Mathias Agopianf45c5102012-10-24 16:29:17 -07001990
Dan Stoza9e56aa02015-11-02 13:00:03 -08001991 if (displayDevice->getDisplayType() != DisplayDevice::DISPLAY_PRIMARY) {
Mathias Agopian766dc492012-10-30 18:08:06 -07001992 // just to be on the safe side, we don't set the
Mathias Agopianf45c5102012-10-24 16:29:17 -07001993 // scissor on the main display. It should never be needed
1994 // anyways (though in theory it could since the API allows it).
Dan Stoza9e56aa02015-11-02 13:00:03 -08001995 const Rect& bounds(displayDevice->getBounds());
1996 const Rect& scissor(displayDevice->getScissor());
Mathias Agopianf45c5102012-10-24 16:29:17 -07001997 if (scissor != bounds) {
1998 // scissor doesn't match the screen's dimensions, so we
1999 // need to clear everything outside of it and enable
2000 // the GL scissor so we don't draw anything where we shouldn't
Mathias Agopian3f844832013-08-07 21:24:32 -07002001
Mathias Agopianf45c5102012-10-24 16:29:17 -07002002 // enable scissor for this frame
Dan Stoza9e56aa02015-11-02 13:00:03 -08002003 const uint32_t height = displayDevice->getHeight();
2004 mRenderEngine->setScissor(scissor.left, height - scissor.bottom,
Mathias Agopian3f844832013-08-07 21:24:32 -07002005 scissor.getWidth(), scissor.getHeight());
Mathias Agopianf45c5102012-10-24 16:29:17 -07002006 }
2007 }
Mathias Agopian85d751c2012-08-29 16:59:24 -07002008 }
Mathias Agopian4b2ba532012-03-29 12:23:51 -07002009
Mathias Agopian85d751c2012-08-29 16:59:24 -07002010 /*
2011 * and then, render the layers targeted at the framebuffer
2012 */
Mathias Agopian4b2ba532012-03-29 12:23:51 -07002013
Dan Stoza9e56aa02015-11-02 13:00:03 -08002014 ALOGV("Rendering client layers");
2015 const Transform& displayTransform = displayDevice->getTransform();
2016 if (hwcId >= 0) {
Mathias Agopian85d751c2012-08-29 16:59:24 -07002017 // we're using h/w composer
Dan Stoza9e56aa02015-11-02 13:00:03 -08002018 bool firstLayer = true;
2019 for (auto& layer : displayDevice->getVisibleLayersSortedByZ()) {
2020 const Region clip(dirty.intersect(
2021 displayTransform.transform(layer->visibleRegion)));
2022 ALOGV("Layer: %s", layer->getName().string());
2023 ALOGV(" Composition type: %s",
2024 to_string(layer->getCompositionType(hwcId)).c_str());
Mathias Agopian85d751c2012-08-29 16:59:24 -07002025 if (!clip.isEmpty()) {
Dan Stoza9e56aa02015-11-02 13:00:03 -08002026 switch (layer->getCompositionType(hwcId)) {
2027 case HWC2::Composition::Cursor:
2028 case HWC2::Composition::Device:
2029 case HWC2::Composition::SolidColor: {
Mathias Agopianac683022013-10-01 15:36:52 -07002030 const Layer::State& state(layer->getDrawingState());
Dan Stoza9e56aa02015-11-02 13:00:03 -08002031 if (layer->getClearClientTarget(hwcId) && !firstLayer &&
2032 layer->isOpaque(state) && (state.alpha == 1.0f)
2033 && hasClientComposition) {
Mathias Agopiancd60f992012-08-16 16:28:27 -07002034 // never clear the very first layer since we're
2035 // guaranteed the FB is already cleared
Dan Stoza9e56aa02015-11-02 13:00:03 -08002036 layer->clearWithOpenGL(displayDevice, clip);
Mathias Agopiancd60f992012-08-16 16:28:27 -07002037 }
Mathias Agopian85d751c2012-08-29 16:59:24 -07002038 break;
Mathias Agopiancd60f992012-08-16 16:28:27 -07002039 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08002040 case HWC2::Composition::Client: {
2041 layer->draw(displayDevice, clip);
Mathias Agopian85d751c2012-08-29 16:59:24 -07002042 break;
2043 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08002044 default:
Mathias Agopianda27af92012-09-13 18:17:13 -07002045 break;
Mathias Agopiancd60f992012-08-16 16:28:27 -07002046 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08002047 } else {
2048 ALOGV(" Skipping for empty clip");
Mathias Agopian85d751c2012-08-29 16:59:24 -07002049 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08002050 firstLayer = false;
Mathias Agopian85d751c2012-08-29 16:59:24 -07002051 }
2052 } else {
2053 // we're not using h/w composer
Dan Stoza9e56aa02015-11-02 13:00:03 -08002054 for (auto& layer : displayDevice->getVisibleLayersSortedByZ()) {
Mathias Agopian85d751c2012-08-29 16:59:24 -07002055 const Region clip(dirty.intersect(
Dan Stoza9e56aa02015-11-02 13:00:03 -08002056 displayTransform.transform(layer->visibleRegion)));
Mathias Agopian85d751c2012-08-29 16:59:24 -07002057 if (!clip.isEmpty()) {
Dan Stoza9e56aa02015-11-02 13:00:03 -08002058 layer->draw(displayDevice, clip);
Jesse Halla6b32db2012-07-19 16:44:38 -07002059 }
Mathias Agopian4b2ba532012-03-29 12:23:51 -07002060 }
2061 }
Mathias Agopianf45c5102012-10-24 16:29:17 -07002062
2063 // disable scissor at the end of the frame
Dan Stoza9e56aa02015-11-02 13:00:03 -08002064 mRenderEngine->disableScissor();
Michael Lentine3f121fc2014-10-01 11:17:28 -07002065 return true;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002066}
2067
Mathias Agopian3f844832013-08-07 21:24:32 -07002068void SurfaceFlinger::drawWormhole(const sp<const DisplayDevice>& hw, const Region& region) const {
Mathias Agopian55801e42012-08-27 18:54:24 -07002069 const int32_t height = hw->getHeight();
Mathias Agopian3f844832013-08-07 21:24:32 -07002070 RenderEngine& engine(getRenderEngine());
2071 engine.fillRegionWithColor(region, height, 0, 0, 0, 0);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002072}
2073
Dan Stoza7d89d062015-04-30 13:29:25 -07002074status_t SurfaceFlinger::addClientLayer(const sp<Client>& client,
Mathias Agopianac9fa422013-02-11 16:40:36 -08002075 const sp<IBinder>& handle,
Mathias Agopian67106042013-03-14 19:18:13 -07002076 const sp<IGraphicBufferProducer>& gbc,
Mathias Agopian13127d82013-03-05 17:47:11 -08002077 const sp<Layer>& lbc)
Mathias Agopian96f08192010-06-02 23:28:45 -07002078{
Dan Stoza7d89d062015-04-30 13:29:25 -07002079 // add this layer to the current state list
2080 {
2081 Mutex::Autolock _l(mStateLock);
2082 if (mCurrentState.layersSortedByZ.size() >= MAX_LAYERS) {
2083 return NO_MEMORY;
2084 }
2085 mCurrentState.layersSortedByZ.add(lbc);
2086 mGraphicBufferProducerList.add(IInterface::asBinder(gbc));
2087 }
2088
Mathias Agopian96f08192010-06-02 23:28:45 -07002089 // attach this layer to the client
Mathias Agopianac9fa422013-02-11 16:40:36 -08002090 client->attachLayer(handle, lbc);
Mathias Agopian4f113742011-05-03 16:21:41 -07002091
Dan Stoza7d89d062015-04-30 13:29:25 -07002092 return NO_ERROR;
Mathias Agopian96f08192010-06-02 23:28:45 -07002093}
2094
Mathias Agopian3f844832013-08-07 21:24:32 -07002095status_t SurfaceFlinger::removeLayer(const sp<Layer>& layer) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002096 Mutex::Autolock _l(mStateLock);
Mathias Agopian13127d82013-03-05 17:47:11 -08002097 ssize_t index = mCurrentState.layersSortedByZ.remove(layer);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002098 if (index >= 0) {
Mathias Agopian67106042013-03-14 19:18:13 -07002099 mLayersPendingRemoval.push(layer);
Mathias Agopian076b1cc2009-04-10 14:24:30 -07002100 mLayersRemoved = true;
Mathias Agopian67106042013-03-14 19:18:13 -07002101 setTransactionFlags(eTransactionNeeded);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002102 return NO_ERROR;
2103 }
Mathias Agopian3d579642009-06-04 18:46:21 -07002104 return status_t(index);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002105}
2106
Dan Stozac7014012014-02-14 15:03:43 -08002107uint32_t SurfaceFlinger::peekTransactionFlags(uint32_t /* flags */) {
Mathias Agopiandea20b12011-05-03 17:04:02 -07002108 return android_atomic_release_load(&mTransactionFlags);
2109}
2110
Mathias Agopian3f844832013-08-07 21:24:32 -07002111uint32_t SurfaceFlinger::getTransactionFlags(uint32_t flags) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002112 return android_atomic_and(~flags, &mTransactionFlags) & flags;
2113}
2114
Mathias Agopian3f844832013-08-07 21:24:32 -07002115uint32_t SurfaceFlinger::setTransactionFlags(uint32_t flags) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002116 uint32_t old = android_atomic_or(flags, &mTransactionFlags);
2117 if ((old & flags)==0) { // wake the server up
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08002118 signalTransaction();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002119 }
2120 return old;
2121}
2122
Mathias Agopian8b33f032012-07-24 20:43:54 -07002123void SurfaceFlinger::setTransactionState(
2124 const Vector<ComposerState>& state,
2125 const Vector<DisplayState>& displays,
2126 uint32_t flags)
2127{
Jamie Gennis7c41bf72012-10-17 09:29:47 -07002128 ATRACE_CALL();
Mathias Agopian698c0872011-06-28 19:09:31 -07002129 Mutex::Autolock _l(mStateLock);
Jamie Gennis28378392011-10-12 17:39:00 -07002130 uint32_t transactionFlags = 0;
Mathias Agopiane57f2922012-08-09 16:29:12 -07002131
Jamie Gennis2d5e2302012-10-15 18:24:43 -07002132 if (flags & eAnimation) {
2133 // For window updates that are part of an animation we must wait for
2134 // previous animation "frames" to be handled.
2135 while (mAnimTransactionPending) {
Jamie Gennis7c41bf72012-10-17 09:29:47 -07002136 status_t err = mTransactionCV.waitRelative(mStateLock, s2ns(5));
Jamie Gennis2d5e2302012-10-15 18:24:43 -07002137 if (CC_UNLIKELY(err != NO_ERROR)) {
2138 // just in case something goes wrong in SF, return to the
Jamie Gennis7c41bf72012-10-17 09:29:47 -07002139 // caller after a few seconds.
2140 ALOGW_IF(err == TIMED_OUT, "setTransactionState timed out "
2141 "waiting for previous animation frame");
Jamie Gennis2d5e2302012-10-15 18:24:43 -07002142 mAnimTransactionPending = false;
2143 break;
2144 }
2145 }
2146 }
2147
Mathias Agopiane57f2922012-08-09 16:29:12 -07002148 size_t count = displays.size();
2149 for (size_t i=0 ; i<count ; i++) {
2150 const DisplayState& s(displays[i]);
2151 transactionFlags |= setDisplayStateLocked(s);
Jamie Gennisb8d69a52011-10-10 15:48:06 -07002152 }
2153
Mathias Agopiane57f2922012-08-09 16:29:12 -07002154 count = state.size();
Mathias Agopian698c0872011-06-28 19:09:31 -07002155 for (size_t i=0 ; i<count ; i++) {
2156 const ComposerState& s(state[i]);
Mathias Agopiand17e3b52012-10-22 14:27:45 -07002157 // Here we need to check that the interface we're given is indeed
2158 // one of our own. A malicious client could give us a NULL
2159 // IInterface, or one of its own or even one of our own but a
2160 // different type. All these situations would cause us to crash.
2161 //
2162 // NOTE: it would be better to use RTTI as we could directly check
2163 // that we have a Client*. however, RTTI is disabled in Android.
2164 if (s.client != NULL) {
Marco Nelissen097ca272014-11-14 08:01:01 -08002165 sp<IBinder> binder = IInterface::asBinder(s.client);
Mathias Agopiand17e3b52012-10-22 14:27:45 -07002166 if (binder != NULL) {
2167 String16 desc(binder->getInterfaceDescriptor());
2168 if (desc == ISurfaceComposerClient::descriptor) {
2169 sp<Client> client( static_cast<Client *>(s.client.get()) );
2170 transactionFlags |= setClientStateLocked(client, s.state);
2171 }
2172 }
2173 }
Mathias Agopian698c0872011-06-28 19:09:31 -07002174 }
Mathias Agopian698c0872011-06-28 19:09:31 -07002175
Robert Carr2a7dbb42016-05-24 11:41:28 -07002176 // If a synchronous transaction is explicitly requested without any changes,
2177 // force a transaction anyway. This can be used as a flush mechanism for
2178 // previous async transactions.
2179 if (transactionFlags == 0 && (flags & eSynchronous)) {
2180 transactionFlags = eTransactionNeeded;
2181 }
2182
Mathias Agopian386aa982011-11-07 21:58:03 -08002183 if (transactionFlags) {
2184 // this triggers the transaction
2185 setTransactionFlags(transactionFlags);
2186
2187 // if this is a synchronous transaction, wait for it to take effect
2188 // before returning.
2189 if (flags & eSynchronous) {
Jamie Gennis2d5e2302012-10-15 18:24:43 -07002190 mTransactionPending = true;
Mathias Agopian386aa982011-11-07 21:58:03 -08002191 }
Jamie Gennis2d5e2302012-10-15 18:24:43 -07002192 if (flags & eAnimation) {
2193 mAnimTransactionPending = true;
2194 }
2195 while (mTransactionPending) {
Mathias Agopian386aa982011-11-07 21:58:03 -08002196 status_t err = mTransactionCV.waitRelative(mStateLock, s2ns(5));
2197 if (CC_UNLIKELY(err != NO_ERROR)) {
2198 // just in case something goes wrong in SF, return to the
2199 // called after a few seconds.
Jamie Gennis2d5e2302012-10-15 18:24:43 -07002200 ALOGW_IF(err == TIMED_OUT, "setTransactionState timed out!");
2201 mTransactionPending = false;
Mathias Agopian386aa982011-11-07 21:58:03 -08002202 break;
2203 }
Mathias Agopiancbb288b2009-09-07 16:32:45 -07002204 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002205 }
2206}
2207
Mathias Agopiane57f2922012-08-09 16:29:12 -07002208uint32_t SurfaceFlinger::setDisplayStateLocked(const DisplayState& s)
2209{
Jesse Hall9a143922012-10-04 16:29:19 -07002210 ssize_t dpyIdx = mCurrentState.displays.indexOfKey(s.token);
2211 if (dpyIdx < 0)
2212 return 0;
2213
Mathias Agopiane57f2922012-08-09 16:29:12 -07002214 uint32_t flags = 0;
Jesse Hall9a143922012-10-04 16:29:19 -07002215 DisplayDeviceState& disp(mCurrentState.displays.editValueAt(dpyIdx));
Mathias Agopian3ee454a2012-08-27 16:28:24 -07002216 if (disp.isValid()) {
Mathias Agopiane57f2922012-08-09 16:29:12 -07002217 const uint32_t what = s.what;
2218 if (what & DisplayState::eSurfaceChanged) {
Marco Nelissen097ca272014-11-14 08:01:01 -08002219 if (IInterface::asBinder(disp.surface) != IInterface::asBinder(s.surface)) {
Mathias Agopiane57f2922012-08-09 16:29:12 -07002220 disp.surface = s.surface;
2221 flags |= eDisplayTransactionNeeded;
2222 }
2223 }
2224 if (what & DisplayState::eLayerStackChanged) {
2225 if (disp.layerStack != s.layerStack) {
2226 disp.layerStack = s.layerStack;
2227 flags |= eDisplayTransactionNeeded;
2228 }
2229 }
Mathias Agopian00e8c7a2012-09-04 19:30:46 -07002230 if (what & DisplayState::eDisplayProjectionChanged) {
Mathias Agopiane57f2922012-08-09 16:29:12 -07002231 if (disp.orientation != s.orientation) {
2232 disp.orientation = s.orientation;
2233 flags |= eDisplayTransactionNeeded;
2234 }
2235 if (disp.frame != s.frame) {
2236 disp.frame = s.frame;
2237 flags |= eDisplayTransactionNeeded;
2238 }
2239 if (disp.viewport != s.viewport) {
2240 disp.viewport = s.viewport;
2241 flags |= eDisplayTransactionNeeded;
2242 }
2243 }
Michael Lentine47e45402014-07-18 15:34:25 -07002244 if (what & DisplayState::eDisplaySizeChanged) {
2245 if (disp.width != s.width) {
2246 disp.width = s.width;
2247 flags |= eDisplayTransactionNeeded;
2248 }
2249 if (disp.height != s.height) {
2250 disp.height = s.height;
2251 flags |= eDisplayTransactionNeeded;
2252 }
2253 }
Mathias Agopiane57f2922012-08-09 16:29:12 -07002254 }
2255 return flags;
2256}
2257
2258uint32_t SurfaceFlinger::setClientStateLocked(
2259 const sp<Client>& client,
2260 const layer_state_t& s)
2261{
2262 uint32_t flags = 0;
Mathias Agopian13127d82013-03-05 17:47:11 -08002263 sp<Layer> layer(client->getLayerUser(s.surface));
Mathias Agopiane57f2922012-08-09 16:29:12 -07002264 if (layer != 0) {
2265 const uint32_t what = s.what;
Robert Carr99e27f02016-06-16 15:18:02 -07002266 bool geometryAppliesWithResize =
2267 what & layer_state_t::eGeometryAppliesWithResize;
Mathias Agopiane57f2922012-08-09 16:29:12 -07002268 if (what & layer_state_t::ePositionChanged) {
Robert Carr99e27f02016-06-16 15:18:02 -07002269 if (layer->setPosition(s.x, s.y, !geometryAppliesWithResize)) {
Mathias Agopiane57f2922012-08-09 16:29:12 -07002270 flags |= eTraversalNeeded;
Robert Carr82364e32016-05-15 11:27:47 -07002271 }
Mathias Agopiane57f2922012-08-09 16:29:12 -07002272 }
2273 if (what & layer_state_t::eLayerChanged) {
2274 // NOTE: index needs to be calculated before we update the state
2275 ssize_t idx = mCurrentState.layersSortedByZ.indexOf(layer);
Pablo Ceballos47db6eb2015-12-08 13:53:59 -08002276 if (layer->setLayer(s.z) && idx >= 0) {
Mathias Agopiane57f2922012-08-09 16:29:12 -07002277 mCurrentState.layersSortedByZ.removeAt(idx);
2278 mCurrentState.layersSortedByZ.add(layer);
2279 // we need traversal (state changed)
2280 // AND transaction (list changed)
2281 flags |= eTransactionNeeded|eTraversalNeeded;
2282 }
2283 }
2284 if (what & layer_state_t::eSizeChanged) {
2285 if (layer->setSize(s.w, s.h)) {
2286 flags |= eTraversalNeeded;
2287 }
2288 }
2289 if (what & layer_state_t::eAlphaChanged) {
Dan Stoza9e56aa02015-11-02 13:00:03 -08002290 if (layer->setAlpha(s.alpha))
Mathias Agopiane57f2922012-08-09 16:29:12 -07002291 flags |= eTraversalNeeded;
2292 }
2293 if (what & layer_state_t::eMatrixChanged) {
2294 if (layer->setMatrix(s.matrix))
2295 flags |= eTraversalNeeded;
2296 }
2297 if (what & layer_state_t::eTransparentRegionChanged) {
2298 if (layer->setTransparentRegionHint(s.transparentRegion))
2299 flags |= eTraversalNeeded;
2300 }
Dan Stoza23116082015-06-18 14:58:39 -07002301 if (what & layer_state_t::eFlagsChanged) {
Mathias Agopiane57f2922012-08-09 16:29:12 -07002302 if (layer->setFlags(s.flags, s.mask))
2303 flags |= eTraversalNeeded;
2304 }
2305 if (what & layer_state_t::eCropChanged) {
Robert Carr99e27f02016-06-16 15:18:02 -07002306 if (layer->setCrop(s.crop, !geometryAppliesWithResize))
Mathias Agopiane57f2922012-08-09 16:29:12 -07002307 flags |= eTraversalNeeded;
2308 }
Pablo Ceballosacbe6782016-03-04 17:54:21 +00002309 if (what & layer_state_t::eFinalCropChanged) {
2310 if (layer->setFinalCrop(s.finalCrop))
2311 flags |= eTraversalNeeded;
2312 }
Mathias Agopiane57f2922012-08-09 16:29:12 -07002313 if (what & layer_state_t::eLayerStackChanged) {
2314 // NOTE: index needs to be calculated before we update the state
2315 ssize_t idx = mCurrentState.layersSortedByZ.indexOf(layer);
Pablo Ceballos47db6eb2015-12-08 13:53:59 -08002316 if (layer->setLayerStack(s.layerStack) && idx >= 0) {
Mathias Agopiane57f2922012-08-09 16:29:12 -07002317 mCurrentState.layersSortedByZ.removeAt(idx);
2318 mCurrentState.layersSortedByZ.add(layer);
2319 // we need traversal (state changed)
2320 // AND transaction (list changed)
2321 flags |= eTransactionNeeded|eTraversalNeeded;
2322 }
2323 }
Dan Stoza7dde5992015-05-22 09:51:44 -07002324 if (what & layer_state_t::eDeferTransaction) {
2325 layer->deferTransactionUntil(s.handle, s.frameNumber);
2326 // We don't trigger a traversal here because if no other state is
2327 // changed, we don't want this to cause any more work
2328 }
Robert Carrc3574f72016-03-24 12:19:32 -07002329 if (what & layer_state_t::eOverrideScalingModeChanged) {
2330 layer->setOverrideScalingMode(s.overrideScalingMode);
2331 // We don't trigger a traversal here because if no other state is
2332 // changed, we don't want this to cause any more work
2333 }
Mathias Agopiane57f2922012-08-09 16:29:12 -07002334 }
2335 return flags;
2336}
2337
Mathias Agopian4d9b8222013-03-12 17:11:48 -07002338status_t SurfaceFlinger::createLayer(
Mathias Agopian0ef4e152011-04-20 14:19:32 -07002339 const String8& name,
2340 const sp<Client>& client,
Mathias Agopian4d9b8222013-03-12 17:11:48 -07002341 uint32_t w, uint32_t h, PixelFormat format, uint32_t flags,
2342 sp<IBinder>* handle, sp<IGraphicBufferProducer>* gbp)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002343{
Mathias Agopian4d9b8222013-03-12 17:11:48 -07002344 //ALOGD("createLayer for (%d x %d), name=%s", w, h, name.string());
Mathias Agopian6e2d6482009-07-09 18:16:43 -07002345 if (int32_t(w|h) < 0) {
Mathias Agopian921e6ac2012-07-23 23:11:29 -07002346 ALOGE("createLayer() failed, w or h is negative (w=%d, h=%d)",
Mathias Agopian6e2d6482009-07-09 18:16:43 -07002347 int(w), int(h));
Mathias Agopian4d9b8222013-03-12 17:11:48 -07002348 return BAD_VALUE;
Mathias Agopian6e2d6482009-07-09 18:16:43 -07002349 }
Andreas Huber8b42e8a2010-08-16 08:49:37 -07002350
Mathias Agopian4d9b8222013-03-12 17:11:48 -07002351 status_t result = NO_ERROR;
2352
2353 sp<Layer> layer;
2354
Mathias Agopian3165cc22012-08-08 19:42:09 -07002355 switch (flags & ISurfaceComposerClient::eFXSurfaceMask) {
2356 case ISurfaceComposerClient::eFXSurfaceNormal:
Mathias Agopian4d9b8222013-03-12 17:11:48 -07002357 result = createNormalLayer(client,
2358 name, w, h, flags, format,
2359 handle, gbp, &layer);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002360 break;
Mathias Agopian3165cc22012-08-08 19:42:09 -07002361 case ISurfaceComposerClient::eFXSurfaceDim:
Mathias Agopian4d9b8222013-03-12 17:11:48 -07002362 result = createDimLayer(client,
2363 name, w, h, flags,
2364 handle, gbp, &layer);
2365 break;
2366 default:
2367 result = BAD_VALUE;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002368 break;
2369 }
2370
Dan Stoza7d89d062015-04-30 13:29:25 -07002371 if (result != NO_ERROR) {
2372 return result;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002373 }
Dan Stoza7d89d062015-04-30 13:29:25 -07002374
2375 result = addClientLayer(client, *handle, *gbp, layer);
2376 if (result != NO_ERROR) {
2377 return result;
2378 }
2379
2380 setTransactionFlags(eTransactionNeeded);
Mathias Agopian4d9b8222013-03-12 17:11:48 -07002381 return result;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002382}
2383
Mathias Agopian4d9b8222013-03-12 17:11:48 -07002384status_t SurfaceFlinger::createNormalLayer(const sp<Client>& client,
2385 const String8& name, uint32_t w, uint32_t h, uint32_t flags, PixelFormat& format,
2386 sp<IBinder>* handle, sp<IGraphicBufferProducer>* gbp, sp<Layer>* outLayer)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002387{
2388 // initialize the surfaces
Mathias Agopian92a979a2012-08-02 18:32:23 -07002389 switch (format) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002390 case PIXEL_FORMAT_TRANSPARENT:
2391 case PIXEL_FORMAT_TRANSLUCENT:
2392 format = PIXEL_FORMAT_RGBA_8888;
2393 break;
2394 case PIXEL_FORMAT_OPAQUE:
Mathias Agopian8f105402010-04-05 18:01:24 -07002395 format = PIXEL_FORMAT_RGBX_8888;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002396 break;
2397 }
2398
Mathias Agopian4d9b8222013-03-12 17:11:48 -07002399 *outLayer = new Layer(this, client, name, w, h, flags);
2400 status_t err = (*outLayer)->setBuffers(w, h, format, flags);
2401 if (err == NO_ERROR) {
2402 *handle = (*outLayer)->getHandle();
Dan Stozab9b08832014-03-13 11:55:57 -07002403 *gbp = (*outLayer)->getProducer();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002404 }
Mathias Agopian4d9b8222013-03-12 17:11:48 -07002405
2406 ALOGE_IF(err, "createNormalLayer() failed (%s)", strerror(-err));
2407 return err;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002408}
2409
Mathias Agopian4d9b8222013-03-12 17:11:48 -07002410status_t SurfaceFlinger::createDimLayer(const sp<Client>& client,
2411 const String8& name, uint32_t w, uint32_t h, uint32_t flags,
2412 sp<IBinder>* handle, sp<IGraphicBufferProducer>* gbp, sp<Layer>* outLayer)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002413{
Mathias Agopian4d9b8222013-03-12 17:11:48 -07002414 *outLayer = new LayerDim(this, client, name, w, h, flags);
2415 *handle = (*outLayer)->getHandle();
Dan Stozab9b08832014-03-13 11:55:57 -07002416 *gbp = (*outLayer)->getProducer();
Mathias Agopian4d9b8222013-03-12 17:11:48 -07002417 return NO_ERROR;
Mathias Agopian118d0242011-10-13 16:02:48 -07002418}
2419
Mathias Agopianac9fa422013-02-11 16:40:36 -08002420status_t SurfaceFlinger::onLayerRemoved(const sp<Client>& client, const sp<IBinder>& handle)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002421{
Mathias Agopian67106042013-03-14 19:18:13 -07002422 // called by the window manager when it wants to remove a Layer
2423 status_t err = NO_ERROR;
2424 sp<Layer> l(client->getLayerUser(handle));
2425 if (l != NULL) {
2426 err = removeLayer(l);
2427 ALOGE_IF(err<0 && err != NAME_NOT_FOUND,
2428 "error removing layer=%p (%s)", l.get(), strerror(-err));
Mathias Agopian9a112062009-04-17 19:36:26 -07002429 }
2430 return err;
2431}
2432
Mathias Agopian13127d82013-03-05 17:47:11 -08002433status_t SurfaceFlinger::onLayerDestroyed(const wp<Layer>& layer)
Mathias Agopian9a112062009-04-17 19:36:26 -07002434{
Mathias Agopian67106042013-03-14 19:18:13 -07002435 // called by ~LayerCleaner() when all references to the IBinder (handle)
2436 // are gone
Mathias Agopianca4d3602011-05-19 15:38:14 -07002437 status_t err = NO_ERROR;
Mathias Agopian13127d82013-03-05 17:47:11 -08002438 sp<Layer> l(layer.promote());
Mathias Agopianca4d3602011-05-19 15:38:14 -07002439 if (l != NULL) {
Mathias Agopian67106042013-03-14 19:18:13 -07002440 err = removeLayer(l);
Steve Blocke6f43dd2012-01-06 19:20:56 +00002441 ALOGE_IF(err<0 && err != NAME_NOT_FOUND,
Mathias Agopianca4d3602011-05-19 15:38:14 -07002442 "error removing layer=%p (%s)", l.get(), strerror(-err));
2443 }
2444 return err;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002445}
2446
Mathias Agopianb60314a2012-04-10 22:09:54 -07002447// ---------------------------------------------------------------------------
2448
Andy McFadden13a082e2012-08-24 10:16:42 -07002449void SurfaceFlinger::onInitializeDisplays() {
Jesse Hall01e29052013-02-19 16:13:35 -08002450 // reset screen orientation and use primary layer stack
Andy McFadden13a082e2012-08-24 10:16:42 -07002451 Vector<ComposerState> state;
2452 Vector<DisplayState> displays;
2453 DisplayState d;
Jesse Hall01e29052013-02-19 16:13:35 -08002454 d.what = DisplayState::eDisplayProjectionChanged |
2455 DisplayState::eLayerStackChanged;
Jesse Hall692c7232012-11-08 15:41:56 -08002456 d.token = mBuiltinDisplays[DisplayDevice::DISPLAY_PRIMARY];
Jesse Hall01e29052013-02-19 16:13:35 -08002457 d.layerStack = 0;
Andy McFadden13a082e2012-08-24 10:16:42 -07002458 d.orientation = DisplayState::eOrientationDefault;
Jeff Brown4c05dd12012-09-09 00:07:17 -07002459 d.frame.makeInvalid();
2460 d.viewport.makeInvalid();
Michael Lentine47e45402014-07-18 15:34:25 -07002461 d.width = 0;
2462 d.height = 0;
Andy McFadden13a082e2012-08-24 10:16:42 -07002463 displays.add(d);
2464 setTransactionState(state, displays, 0);
Prashant Malani2c9b11f2014-05-25 01:36:31 -07002465 setPowerModeInternal(getDisplayDevice(d.token), HWC_POWER_MODE_NORMAL);
Jamie Gennis6547ff42013-07-16 20:12:42 -07002466
Dan Stoza9e56aa02015-11-02 13:00:03 -08002467 const auto& activeConfig = mHwc->getActiveConfig(HWC_DISPLAY_PRIMARY);
2468 const nsecs_t period = activeConfig->getVsyncPeriod();
Jamie Gennis6547ff42013-07-16 20:12:42 -07002469 mAnimFrameTracker.setDisplayRefreshPeriod(period);
Andy McFadden13a082e2012-08-24 10:16:42 -07002470}
2471
2472void SurfaceFlinger::initializeDisplays() {
2473 class MessageScreenInitialized : public MessageBase {
2474 SurfaceFlinger* flinger;
2475 public:
2476 MessageScreenInitialized(SurfaceFlinger* flinger) : flinger(flinger) { }
2477 virtual bool handler() {
2478 flinger->onInitializeDisplays();
2479 return true;
2480 }
2481 };
2482 sp<MessageBase> msg = new MessageScreenInitialized(this);
2483 postMessageAsync(msg); // we may be called from main thread, use async message
2484}
2485
Prashant Malani2c9b11f2014-05-25 01:36:31 -07002486void SurfaceFlinger::setPowerModeInternal(const sp<DisplayDevice>& hw,
2487 int mode) {
2488 ALOGD("Set power mode=%d, type=%d flinger=%p", mode, hw->getDisplayType(),
2489 this);
2490 int32_t type = hw->getDisplayType();
2491 int currentMode = hw->getPowerMode();
Andy McFadden13a082e2012-08-24 10:16:42 -07002492
Prashant Malani2c9b11f2014-05-25 01:36:31 -07002493 if (mode == currentMode) {
2494 ALOGD("Screen type=%d is already mode=%d", hw->getDisplayType(), mode);
Andy McFaddenc01a79d2012-09-27 16:02:06 -07002495 return;
2496 }
2497
Prashant Malani2c9b11f2014-05-25 01:36:31 -07002498 hw->setPowerMode(mode);
2499 if (type >= DisplayDevice::NUM_BUILTIN_DISPLAY_TYPES) {
2500 ALOGW("Trying to set power mode for virtual display");
2501 return;
2502 }
Andy McFaddenc01a79d2012-09-27 16:02:06 -07002503
Prashant Malani2c9b11f2014-05-25 01:36:31 -07002504 if (currentMode == HWC_POWER_MODE_OFF) {
2505 getHwComposer().setPowerMode(type, mode);
Andy McFaddenc01a79d2012-09-27 16:02:06 -07002506 if (type == DisplayDevice::DISPLAY_PRIMARY) {
2507 // FIXME: eventthread only knows about the main display right now
2508 mEventThread->onScreenAcquired();
Jesse Hall948fe0c2013-10-14 12:56:09 -07002509 resyncToHardwareVsync(true);
Andy McFaddenc01a79d2012-09-27 16:02:06 -07002510 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002511
Prashant Malani2c9b11f2014-05-25 01:36:31 -07002512 mVisibleRegionsDirty = true;
Dan Stozab90cf072015-03-05 11:05:59 -08002513 mHasPoweredOff = true;
Prashant Malani2c9b11f2014-05-25 01:36:31 -07002514 repaintEverything();
2515 } else if (mode == HWC_POWER_MODE_OFF) {
Andy McFaddenc01a79d2012-09-27 16:02:06 -07002516 if (type == DisplayDevice::DISPLAY_PRIMARY) {
Jesse Hall948fe0c2013-10-14 12:56:09 -07002517 disableHardwareVsync(true); // also cancels any in-progress resync
2518
Mathias Agopiancde87a32012-09-13 14:09:01 -07002519 // FIXME: eventthread only knows about the main display right now
2520 mEventThread->onScreenReleased();
2521 }
Andy McFaddenc01a79d2012-09-27 16:02:06 -07002522
Prashant Malani2c9b11f2014-05-25 01:36:31 -07002523 getHwComposer().setPowerMode(type, mode);
2524 mVisibleRegionsDirty = true;
2525 // from this point on, SF will stop drawing on this display
2526 } else {
2527 getHwComposer().setPowerMode(type, mode);
Andy McFaddenc01a79d2012-09-27 16:02:06 -07002528 }
Andy McFaddenc01a79d2012-09-27 16:02:06 -07002529}
2530
Prashant Malani2c9b11f2014-05-25 01:36:31 -07002531void SurfaceFlinger::setPowerMode(const sp<IBinder>& display, int mode) {
2532 class MessageSetPowerMode: public MessageBase {
Mathias Agopiandb9b41f2012-10-15 16:51:41 -07002533 SurfaceFlinger& mFlinger;
2534 sp<IBinder> mDisplay;
Prashant Malani2c9b11f2014-05-25 01:36:31 -07002535 int mMode;
Andy McFaddenc01a79d2012-09-27 16:02:06 -07002536 public:
Prashant Malani2c9b11f2014-05-25 01:36:31 -07002537 MessageSetPowerMode(SurfaceFlinger& flinger,
2538 const sp<IBinder>& disp, int mode) : mFlinger(flinger),
2539 mDisplay(disp) { mMode = mode; }
Andy McFaddenc01a79d2012-09-27 16:02:06 -07002540 virtual bool handler() {
Prashant Malani2c9b11f2014-05-25 01:36:31 -07002541 sp<DisplayDevice> hw(mFlinger.getDisplayDevice(mDisplay));
Mathias Agopiandb9b41f2012-10-15 16:51:41 -07002542 if (hw == NULL) {
Prashant Malani2c9b11f2014-05-25 01:36:31 -07002543 ALOGE("Attempt to set power mode = %d for null display %p",
Michael Lentine7306c672014-07-30 13:00:37 -07002544 mMode, mDisplay.get());
Jesse Hall9e663de2013-08-16 14:28:37 -07002545 } else if (hw->getDisplayType() >= DisplayDevice::DISPLAY_VIRTUAL) {
Prashant Malani2c9b11f2014-05-25 01:36:31 -07002546 ALOGW("Attempt to set power mode = %d for virtual display",
2547 mMode);
Mathias Agopiandb9b41f2012-10-15 16:51:41 -07002548 } else {
Prashant Malani2c9b11f2014-05-25 01:36:31 -07002549 mFlinger.setPowerModeInternal(hw, mMode);
Mathias Agopiandb9b41f2012-10-15 16:51:41 -07002550 }
Andy McFaddenc01a79d2012-09-27 16:02:06 -07002551 return true;
2552 }
2553 };
Prashant Malani2c9b11f2014-05-25 01:36:31 -07002554 sp<MessageBase> msg = new MessageSetPowerMode(*this, display, mode);
Mathias Agopiandb9b41f2012-10-15 16:51:41 -07002555 postMessageSync(msg);
Mathias Agopianb60314a2012-04-10 22:09:54 -07002556}
2557
2558// ---------------------------------------------------------------------------
2559
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002560status_t SurfaceFlinger::dump(int fd, const Vector<String16>& args)
2561{
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002562 String8 result;
Mathias Agopian99b49842011-06-27 16:05:52 -07002563
Mathias Agopianbd115332013-04-18 16:41:04 -07002564 IPCThreadState* ipc = IPCThreadState::self();
2565 const int pid = ipc->getCallingPid();
2566 const int uid = ipc->getCallingUid();
2567 if ((uid != AID_SHELL) &&
2568 !PermissionCache::checkPermission(sDump, pid, uid)) {
Mathias Agopian74d211a2013-04-22 16:55:35 +02002569 result.appendFormat("Permission Denial: "
Mathias Agopianbd115332013-04-18 16:41:04 -07002570 "can't dump SurfaceFlinger from pid=%d, uid=%d\n", pid, uid);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002571 } else {
Jesse Hallfcd15b42014-12-23 13:57:23 -08002572 // Try to get the main lock, but give up after one second
Mathias Agopian9795c422009-08-26 16:36:26 -07002573 // (this would indicate SF is stuck, but we want to be able to
2574 // print something in dumpsys).
Jesse Hallfcd15b42014-12-23 13:57:23 -08002575 status_t err = mStateLock.timedLock(s2ns(1));
2576 bool locked = (err == NO_ERROR);
Mathias Agopian9795c422009-08-26 16:36:26 -07002577 if (!locked) {
Jesse Hallfcd15b42014-12-23 13:57:23 -08002578 result.appendFormat(
2579 "SurfaceFlinger appears to be unresponsive (%s [%d]), "
2580 "dumping anyways (no locks held)\n", strerror(-err), err);
Mathias Agopian9795c422009-08-26 16:36:26 -07002581 }
2582
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002583 bool dumpAll = true;
2584 size_t index = 0;
Mathias Agopian25e66fc2012-01-28 22:31:55 -08002585 size_t numArgs = args.size();
2586 if (numArgs) {
Mathias Agopian25e66fc2012-01-28 22:31:55 -08002587 if ((index < numArgs) &&
2588 (args[index] == String16("--list"))) {
2589 index++;
Mathias Agopian74d211a2013-04-22 16:55:35 +02002590 listLayersLocked(args, index, result);
Mathias Agopian35aadd62012-03-08 22:01:51 -08002591 dumpAll = false;
Mathias Agopian25e66fc2012-01-28 22:31:55 -08002592 }
2593
2594 if ((index < numArgs) &&
2595 (args[index] == String16("--latency"))) {
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002596 index++;
Mathias Agopian74d211a2013-04-22 16:55:35 +02002597 dumpStatsLocked(args, index, result);
Mathias Agopian35aadd62012-03-08 22:01:51 -08002598 dumpAll = false;
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002599 }
Mathias Agopian25e66fc2012-01-28 22:31:55 -08002600
2601 if ((index < numArgs) &&
2602 (args[index] == String16("--latency-clear"))) {
2603 index++;
Mathias Agopian74d211a2013-04-22 16:55:35 +02002604 clearStatsLocked(args, index, result);
Mathias Agopian35aadd62012-03-08 22:01:51 -08002605 dumpAll = false;
Mathias Agopian25e66fc2012-01-28 22:31:55 -08002606 }
Andy McFaddenc751e922014-05-08 14:53:26 -07002607
2608 if ((index < numArgs) &&
2609 (args[index] == String16("--dispsync"))) {
2610 index++;
2611 mPrimaryDispSync.dump(result);
2612 dumpAll = false;
2613 }
Dan Stozab90cf072015-03-05 11:05:59 -08002614
2615 if ((index < numArgs) &&
2616 (args[index] == String16("--static-screen"))) {
2617 index++;
2618 dumpStaticScreenStats(result);
2619 dumpAll = false;
2620 }
Pablo Ceballos40845df2016-01-25 17:41:15 -08002621
2622 if ((index < numArgs) &&
2623 (args[index] == String16("--fences"))) {
2624 index++;
2625 mFenceTracker.dump(&result);
2626 dumpAll = false;
2627 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002628 }
Mathias Agopian1b5e1022010-04-20 17:55:49 -07002629
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002630 if (dumpAll) {
Mathias Agopian74d211a2013-04-22 16:55:35 +02002631 dumpAllLocked(args, index, result);
Mathias Agopian48b888a2011-01-19 16:15:53 -08002632 }
2633
Mathias Agopian9795c422009-08-26 16:36:26 -07002634 if (locked) {
2635 mStateLock.unlock();
2636 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002637 }
2638 write(fd, result.string(), result.size());
2639 return NO_ERROR;
2640}
2641
Dan Stozac7014012014-02-14 15:03:43 -08002642void SurfaceFlinger::listLayersLocked(const Vector<String16>& /* args */,
2643 size_t& /* index */, String8& result) const
Mathias Agopian25e66fc2012-01-28 22:31:55 -08002644{
2645 const LayerVector& currentLayers = mCurrentState.layersSortedByZ;
2646 const size_t count = currentLayers.size();
2647 for (size_t i=0 ; i<count ; i++) {
Mathias Agopian13127d82013-03-05 17:47:11 -08002648 const sp<Layer>& layer(currentLayers[i]);
Mathias Agopian74d211a2013-04-22 16:55:35 +02002649 result.appendFormat("%s\n", layer->getName().string());
Mathias Agopian25e66fc2012-01-28 22:31:55 -08002650 }
2651}
2652
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002653void SurfaceFlinger::dumpStatsLocked(const Vector<String16>& args, size_t& index,
Mathias Agopian74d211a2013-04-22 16:55:35 +02002654 String8& result) const
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002655{
2656 String8 name;
2657 if (index < args.size()) {
2658 name = String8(args[index]);
2659 index++;
2660 }
2661
Dan Stoza9e56aa02015-11-02 13:00:03 -08002662 const auto& activeConfig = mHwc->getActiveConfig(HWC_DISPLAY_PRIMARY);
2663 const nsecs_t period = activeConfig->getVsyncPeriod();
Greg Hackmann86efcc02014-03-07 12:44:02 -08002664 result.appendFormat("%" PRId64 "\n", period);
Jamie Gennis4b0eba92013-02-05 13:30:24 -08002665
2666 if (name.isEmpty()) {
Svetoslavd85084b2014-03-20 10:28:31 -07002667 mAnimFrameTracker.dumpStats(result);
Jamie Gennis4b0eba92013-02-05 13:30:24 -08002668 } else {
2669 const LayerVector& currentLayers = mCurrentState.layersSortedByZ;
2670 const size_t count = currentLayers.size();
2671 for (size_t i=0 ; i<count ; i++) {
Mathias Agopian13127d82013-03-05 17:47:11 -08002672 const sp<Layer>& layer(currentLayers[i]);
Jamie Gennis4b0eba92013-02-05 13:30:24 -08002673 if (name == layer->getName()) {
Svetoslavd85084b2014-03-20 10:28:31 -07002674 layer->dumpFrameStats(result);
Jamie Gennis4b0eba92013-02-05 13:30:24 -08002675 }
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002676 }
2677 }
2678}
2679
Mathias Agopian25e66fc2012-01-28 22:31:55 -08002680void SurfaceFlinger::clearStatsLocked(const Vector<String16>& args, size_t& index,
Dan Stozac7014012014-02-14 15:03:43 -08002681 String8& /* result */)
Mathias Agopian25e66fc2012-01-28 22:31:55 -08002682{
2683 String8 name;
2684 if (index < args.size()) {
2685 name = String8(args[index]);
2686 index++;
2687 }
2688
2689 const LayerVector& currentLayers = mCurrentState.layersSortedByZ;
2690 const size_t count = currentLayers.size();
2691 for (size_t i=0 ; i<count ; i++) {
Mathias Agopian13127d82013-03-05 17:47:11 -08002692 const sp<Layer>& layer(currentLayers[i]);
Mathias Agopian25e66fc2012-01-28 22:31:55 -08002693 if (name.isEmpty() || (name == layer->getName())) {
Svetoslavd85084b2014-03-20 10:28:31 -07002694 layer->clearFrameStats();
Mathias Agopian25e66fc2012-01-28 22:31:55 -08002695 }
2696 }
Jamie Gennis4b0eba92013-02-05 13:30:24 -08002697
Svetoslavd85084b2014-03-20 10:28:31 -07002698 mAnimFrameTracker.clearStats();
Mathias Agopian25e66fc2012-01-28 22:31:55 -08002699}
2700
Jamie Gennis6547ff42013-07-16 20:12:42 -07002701// This should only be called from the main thread. Otherwise it would need
2702// the lock and should use mCurrentState rather than mDrawingState.
2703void SurfaceFlinger::logFrameStats() {
2704 const LayerVector& drawingLayers = mDrawingState.layersSortedByZ;
2705 const size_t count = drawingLayers.size();
2706 for (size_t i=0 ; i<count ; i++) {
2707 const sp<Layer>& layer(drawingLayers[i]);
2708 layer->logFrameStats();
2709 }
2710
2711 mAnimFrameTracker.logAndResetStats(String8("<win-anim>"));
2712}
2713
Andy McFadden4803b742012-09-24 19:07:20 -07002714/*static*/ void SurfaceFlinger::appendSfConfigString(String8& result)
2715{
2716 static const char* config =
2717 " [sf"
Andy McFadden4803b742012-09-24 19:07:20 -07002718#ifdef HAS_CONTEXT_PRIORITY
2719 " HAS_CONTEXT_PRIORITY"
2720#endif
2721#ifdef NEVER_DEFAULT_TO_ASYNC_MODE
2722 " NEVER_DEFAULT_TO_ASYNC_MODE"
2723#endif
2724#ifdef TARGET_DISABLE_TRIPLE_BUFFERING
2725 " TARGET_DISABLE_TRIPLE_BUFFERING"
2726#endif
2727 "]";
2728 result.append(config);
2729}
2730
Dan Stozab90cf072015-03-05 11:05:59 -08002731void SurfaceFlinger::dumpStaticScreenStats(String8& result) const
2732{
2733 result.appendFormat("Static screen stats:\n");
2734 for (size_t b = 0; b < NUM_BUCKETS - 1; ++b) {
2735 float bucketTimeSec = mFrameBuckets[b] / 1e9;
2736 float percent = 100.0f *
2737 static_cast<float>(mFrameBuckets[b]) / mTotalTime;
2738 result.appendFormat(" < %zd frames: %.3f s (%.1f%%)\n",
2739 b + 1, bucketTimeSec, percent);
2740 }
2741 float bucketTimeSec = mFrameBuckets[NUM_BUCKETS - 1] / 1e9;
2742 float percent = 100.0f *
2743 static_cast<float>(mFrameBuckets[NUM_BUCKETS - 1]) / mTotalTime;
2744 result.appendFormat(" %zd+ frames: %.3f s (%.1f%%)\n",
2745 NUM_BUCKETS - 1, bucketTimeSec, percent);
2746}
2747
Dan Stozae77c7662016-05-13 11:37:28 -07002748void SurfaceFlinger::recordBufferingStats(const char* layerName,
2749 std::vector<OccupancyTracker::Segment>&& history) {
2750 Mutex::Autolock lock(mBufferingStatsMutex);
2751 auto& stats = mBufferingStats[layerName];
2752 for (const auto& segment : history) {
2753 if (!segment.usedThirdBuffer) {
2754 stats.twoBufferTime += segment.totalTime;
2755 }
2756 if (segment.occupancyAverage < 1.0f) {
2757 stats.doubleBufferedTime += segment.totalTime;
2758 } else if (segment.occupancyAverage < 2.0f) {
2759 stats.tripleBufferedTime += segment.totalTime;
2760 }
2761 ++stats.numSegments;
2762 stats.totalTime += segment.totalTime;
2763 }
2764}
2765
2766void SurfaceFlinger::dumpBufferingStats(String8& result) const {
2767 result.append("Buffering stats:\n");
2768 result.append(" [Layer name] <Active time> <Two buffer> "
2769 "<Double buffered> <Triple buffered>\n");
2770 Mutex::Autolock lock(mBufferingStatsMutex);
2771 typedef std::tuple<std::string, float, float, float> BufferTuple;
2772 std::map<float, BufferTuple, std::greater<float>> sorted;
2773 for (const auto& statsPair : mBufferingStats) {
2774 const char* name = statsPair.first.c_str();
2775 const BufferingStats& stats = statsPair.second;
2776 if (stats.numSegments == 0) {
2777 continue;
2778 }
2779 float activeTime = ns2ms(stats.totalTime) / 1000.0f;
2780 float twoBufferRatio = static_cast<float>(stats.twoBufferTime) /
2781 stats.totalTime;
2782 float doubleBufferRatio = static_cast<float>(
2783 stats.doubleBufferedTime) / stats.totalTime;
2784 float tripleBufferRatio = static_cast<float>(
2785 stats.tripleBufferedTime) / stats.totalTime;
2786 sorted.insert({activeTime, {name, twoBufferRatio,
2787 doubleBufferRatio, tripleBufferRatio}});
2788 }
2789 for (const auto& sortedPair : sorted) {
2790 float activeTime = sortedPair.first;
2791 const BufferTuple& values = sortedPair.second;
2792 result.appendFormat(" [%s] %.2f %.3f %.3f %.3f\n",
2793 std::get<0>(values).c_str(), activeTime,
2794 std::get<1>(values), std::get<2>(values),
2795 std::get<3>(values));
2796 }
2797 result.append("\n");
2798}
2799
2800
Mathias Agopian74d211a2013-04-22 16:55:35 +02002801void SurfaceFlinger::dumpAllLocked(const Vector<String16>& args, size_t& index,
2802 String8& result) const
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002803{
Mathias Agopian3e25fd82013-04-22 17:52:16 +02002804 bool colorize = false;
2805 if (index < args.size()
2806 && (args[index] == String16("--color"))) {
2807 colorize = true;
2808 index++;
2809 }
2810
2811 Colorizer colorizer(colorize);
2812
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002813 // figure out if we're stuck somewhere
2814 const nsecs_t now = systemTime();
2815 const nsecs_t inSwapBuffers(mDebugInSwapBuffers);
2816 const nsecs_t inTransaction(mDebugInTransaction);
2817 nsecs_t inSwapBuffersDuration = (inSwapBuffers) ? now-inSwapBuffers : 0;
2818 nsecs_t inTransactionDuration = (inTransaction) ? now-inTransaction : 0;
2819
2820 /*
Andy McFadden4803b742012-09-24 19:07:20 -07002821 * Dump library configuration.
2822 */
Mathias Agopian3e25fd82013-04-22 17:52:16 +02002823
2824 colorizer.bold(result);
Andy McFadden4803b742012-09-24 19:07:20 -07002825 result.append("Build configuration:");
Mathias Agopian3e25fd82013-04-22 17:52:16 +02002826 colorizer.reset(result);
Andy McFadden4803b742012-09-24 19:07:20 -07002827 appendSfConfigString(result);
2828 appendUiConfigString(result);
2829 appendGuiConfigString(result);
2830 result.append("\n");
2831
Mathias Agopian3e25fd82013-04-22 17:52:16 +02002832 colorizer.bold(result);
Mathias Agopianca088332013-03-28 17:44:13 -07002833 result.append("Sync configuration: ");
Mathias Agopian3e25fd82013-04-22 17:52:16 +02002834 colorizer.reset(result);
Mathias Agopianca088332013-03-28 17:44:13 -07002835 result.append(SyncFeatures::getInstance().toString());
2836 result.append("\n");
2837
Dan Stoza9e56aa02015-11-02 13:00:03 -08002838 const auto& activeConfig = mHwc->getActiveConfig(HWC_DISPLAY_PRIMARY);
2839
Andy McFadden41d67d72014-04-25 16:58:34 -07002840 colorizer.bold(result);
2841 result.append("DispSync configuration: ");
2842 colorizer.reset(result);
Jesse Hall24cd98e2014-07-13 14:37:16 -07002843 result.appendFormat("app phase %" PRId64 " ns, sf phase %" PRId64 " ns, "
2844 "present offset %d ns (refresh %" PRId64 " ns)",
Dan Stoza9e56aa02015-11-02 13:00:03 -08002845 vsyncPhaseOffsetNs, sfVsyncPhaseOffsetNs,
2846 PRESENT_TIME_OFFSET_FROM_VSYNC_NS, activeConfig->getVsyncPeriod());
Andy McFadden41d67d72014-04-25 16:58:34 -07002847 result.append("\n");
2848
Dan Stozab90cf072015-03-05 11:05:59 -08002849 // Dump static screen stats
2850 result.append("\n");
2851 dumpStaticScreenStats(result);
2852 result.append("\n");
2853
Dan Stozae77c7662016-05-13 11:37:28 -07002854 dumpBufferingStats(result);
2855
Andy McFadden4803b742012-09-24 19:07:20 -07002856 /*
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002857 * Dump the visible layer list
2858 */
2859 const LayerVector& currentLayers = mCurrentState.layersSortedByZ;
2860 const size_t count = currentLayers.size();
Mathias Agopian3e25fd82013-04-22 17:52:16 +02002861 colorizer.bold(result);
Greg Hackmann86efcc02014-03-07 12:44:02 -08002862 result.appendFormat("Visible layers (count = %zu)\n", count);
Mathias Agopian3e25fd82013-04-22 17:52:16 +02002863 colorizer.reset(result);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002864 for (size_t i=0 ; i<count ; i++) {
Mathias Agopian13127d82013-03-05 17:47:11 -08002865 const sp<Layer>& layer(currentLayers[i]);
Mathias Agopian3e25fd82013-04-22 17:52:16 +02002866 layer->dump(result, colorizer);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002867 }
2868
2869 /*
Mathias Agopian5f20e2d2012-08-10 18:50:38 -07002870 * Dump Display state
2871 */
2872
Mathias Agopian3e25fd82013-04-22 17:52:16 +02002873 colorizer.bold(result);
Greg Hackmann86efcc02014-03-07 12:44:02 -08002874 result.appendFormat("Displays (%zu entries)\n", mDisplays.size());
Mathias Agopian3e25fd82013-04-22 17:52:16 +02002875 colorizer.reset(result);
Mathias Agopian5f20e2d2012-08-10 18:50:38 -07002876 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
2877 const sp<const DisplayDevice>& hw(mDisplays[dpy]);
Mathias Agopian74d211a2013-04-22 16:55:35 +02002878 hw->dump(result);
Mathias Agopian5f20e2d2012-08-10 18:50:38 -07002879 }
2880
2881 /*
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002882 * Dump SurfaceFlinger global state
2883 */
2884
Mathias Agopian3e25fd82013-04-22 17:52:16 +02002885 colorizer.bold(result);
Mathias Agopian74d211a2013-04-22 16:55:35 +02002886 result.append("SurfaceFlinger global state:\n");
Mathias Agopian3e25fd82013-04-22 17:52:16 +02002887 colorizer.reset(result);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002888
Mathias Agopian888c8222012-08-04 21:10:38 -07002889 HWComposer& hwc(getHwComposer());
Mathias Agopian42977342012-08-05 00:40:46 -07002890 sp<const DisplayDevice> hw(getDefaultDisplayDevice());
Mathias Agopianca088332013-03-28 17:44:13 -07002891
Mathias Agopian3e25fd82013-04-22 17:52:16 +02002892 colorizer.bold(result);
2893 result.appendFormat("EGL implementation : %s\n",
2894 eglQueryStringImplementationANDROID(mEGLDisplay, EGL_VERSION));
2895 colorizer.reset(result);
2896 result.appendFormat("%s\n",
Mathias Agopianca088332013-03-28 17:44:13 -07002897 eglQueryStringImplementationANDROID(mEGLDisplay, EGL_EXTENSIONS));
Mathias Agopianca088332013-03-28 17:44:13 -07002898
Mathias Agopian875d8e12013-06-07 15:35:48 -07002899 mRenderEngine->dump(result);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002900
Mathias Agopian42977342012-08-05 00:40:46 -07002901 hw->undefinedRegion.dump(result, "undefinedRegion");
Prashant Malani2c9b11f2014-05-25 01:36:31 -07002902 result.appendFormat(" orientation=%d, isDisplayOn=%d\n",
2903 hw->getOrientation(), hw->isDisplayOn());
Mathias Agopian74d211a2013-04-22 16:55:35 +02002904 result.appendFormat(
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002905 " last eglSwapBuffers() time: %f us\n"
2906 " last transaction time : %f us\n"
Mathias Agopianc95dbdc2012-02-05 00:19:27 -08002907 " transaction-flags : %08x\n"
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002908 " refresh-rate : %f fps\n"
2909 " x-dpi : %f\n"
Mathias Agopianed985572013-03-22 00:24:39 -07002910 " y-dpi : %f\n"
Mathias Agopianed985572013-03-22 00:24:39 -07002911 " gpu_to_cpu_unsupported : %d\n"
2912 ,
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002913 mLastSwapBufferTime/1000.0,
2914 mLastTransactionTime/1000.0,
Mathias Agopianc95dbdc2012-02-05 00:19:27 -08002915 mTransactionFlags,
Dan Stoza9e56aa02015-11-02 13:00:03 -08002916 1e9 / activeConfig->getVsyncPeriod(),
2917 activeConfig->getDpiX(),
2918 activeConfig->getDpiY(),
Mathias Agopianed985572013-03-22 00:24:39 -07002919 !mGpuToCpuSupported);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002920
Mathias Agopian74d211a2013-04-22 16:55:35 +02002921 result.appendFormat(" eglSwapBuffers time: %f us\n",
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002922 inSwapBuffersDuration/1000.0);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002923
Mathias Agopian74d211a2013-04-22 16:55:35 +02002924 result.appendFormat(" transaction time: %f us\n",
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002925 inTransactionDuration/1000.0);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002926
2927 /*
2928 * VSYNC state
2929 */
Mathias Agopian74d211a2013-04-22 16:55:35 +02002930 mEventThread->dump(result);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002931
2932 /*
2933 * Dump HWComposer state
2934 */
Mathias Agopian3e25fd82013-04-22 17:52:16 +02002935 colorizer.bold(result);
Mathias Agopian74d211a2013-04-22 16:55:35 +02002936 result.append("h/w composer state:\n");
Mathias Agopian3e25fd82013-04-22 17:52:16 +02002937 colorizer.reset(result);
Dan Stoza9e56aa02015-11-02 13:00:03 -08002938 bool hwcDisabled = mDebugDisableHWC || mDebugRegion || mDaltonize ||
2939 mHasColorMatrix;
2940 result.appendFormat(" h/w composer %s\n",
2941 hwcDisabled ? "disabled" : "enabled");
Mathias Agopian74d211a2013-04-22 16:55:35 +02002942 hwc.dump(result);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002943
2944 /*
2945 * Dump gralloc state
2946 */
2947 const GraphicBufferAllocator& alloc(GraphicBufferAllocator::get());
2948 alloc.dump(result);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002949}
2950
Mathias Agopian13127d82013-03-05 17:47:11 -08002951const Vector< sp<Layer> >&
Jesse Hall48bc05b2013-03-21 14:06:52 -07002952SurfaceFlinger::getLayerSortedByZForHwcDisplay(int id) {
Mathias Agopiandb9b41f2012-10-15 16:51:41 -07002953 // Note: mStateLock is held here
Jesse Hall48bc05b2013-03-21 14:06:52 -07002954 wp<IBinder> dpy;
2955 for (size_t i=0 ; i<mDisplays.size() ; i++) {
2956 if (mDisplays.valueAt(i)->getHwcDisplayId() == id) {
2957 dpy = mDisplays.keyAt(i);
2958 break;
2959 }
2960 }
2961 if (dpy == NULL) {
2962 ALOGE("getLayerSortedByZForHwcDisplay: invalid hwc display id %d", id);
2963 // Just use the primary display so we have something to return
2964 dpy = getBuiltInDisplay(DisplayDevice::DISPLAY_PRIMARY);
2965 }
2966 return getDisplayDevice(dpy)->getVisibleLayersSortedByZ();
Mathias Agopiancb558572012-10-04 15:58:54 -07002967}
2968
Keun young Park63f165f2012-08-31 10:53:36 -07002969bool SurfaceFlinger::startDdmConnection()
2970{
2971 void* libddmconnection_dso =
2972 dlopen("libsurfaceflinger_ddmconnection.so", RTLD_NOW);
2973 if (!libddmconnection_dso) {
2974 return false;
2975 }
2976 void (*DdmConnection_start)(const char* name);
2977 DdmConnection_start =
Jesse Hall24cd98e2014-07-13 14:37:16 -07002978 (decltype(DdmConnection_start))dlsym(libddmconnection_dso, "DdmConnection_start");
Keun young Park63f165f2012-08-31 10:53:36 -07002979 if (!DdmConnection_start) {
2980 dlclose(libddmconnection_dso);
2981 return false;
2982 }
2983 (*DdmConnection_start)(getServiceName());
2984 return true;
2985}
2986
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002987status_t SurfaceFlinger::onTransact(
2988 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
2989{
2990 switch (code) {
2991 case CREATE_CONNECTION:
Mathias Agopian041a0752013-03-15 18:31:56 -07002992 case CREATE_DISPLAY:
Mathias Agopian698c0872011-06-28 19:09:31 -07002993 case SET_TRANSACTION_STATE:
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002994 case BOOT_FINISHED:
Svetoslavd85084b2014-03-20 10:28:31 -07002995 case CLEAR_ANIMATION_FRAME_STATS:
2996 case GET_ANIMATION_FRAME_STATS:
Prashant Malani2c9b11f2014-05-25 01:36:31 -07002997 case SET_POWER_MODE:
Dan Stozac4f471e2016-03-24 09:31:08 -07002998 case GET_HDR_CAPABILITIES:
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002999 {
3000 // codes that require permission check
3001 IPCThreadState* ipc = IPCThreadState::self();
3002 const int pid = ipc->getCallingPid();
Mathias Agopiana1ecca92009-05-21 19:21:59 -07003003 const int uid = ipc->getCallingUid();
Jeff Brown3bfe51d2015-04-10 20:20:13 -07003004 if ((uid != AID_GRAPHICS && uid != AID_SYSTEM) &&
Mathias Agopian99b49842011-06-27 16:05:52 -07003005 !PermissionCache::checkPermission(sAccessSurfaceFlinger, pid, uid)) {
Steve Blocke6f43dd2012-01-06 19:20:56 +00003006 ALOGE("Permission Denial: "
Mathias Agopian375f5632009-06-15 18:24:59 -07003007 "can't access SurfaceFlinger pid=%d, uid=%d", pid, uid);
3008 return PERMISSION_DENIED;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003009 }
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07003010 break;
3011 }
3012 case CAPTURE_SCREEN:
3013 {
3014 // codes that require permission check
3015 IPCThreadState* ipc = IPCThreadState::self();
3016 const int pid = ipc->getCallingPid();
3017 const int uid = ipc->getCallingUid();
Mathias Agopian99b49842011-06-27 16:05:52 -07003018 if ((uid != AID_GRAPHICS) &&
3019 !PermissionCache::checkPermission(sReadFramebuffer, pid, uid)) {
Steve Blocke6f43dd2012-01-06 19:20:56 +00003020 ALOGE("Permission Denial: "
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07003021 "can't read framebuffer pid=%d, uid=%d", pid, uid);
3022 return PERMISSION_DENIED;
3023 }
3024 break;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003025 }
3026 }
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07003027
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003028 status_t err = BnSurfaceComposer::onTransact(code, data, reply, flags);
3029 if (err == UNKNOWN_TRANSACTION || err == PERMISSION_DENIED) {
Mathias Agopianb8a55602009-06-26 19:06:36 -07003030 CHECK_INTERFACE(ISurfaceComposer, data, reply);
Glenn Kasten99ed2242011-12-15 09:51:17 -08003031 if (CC_UNLIKELY(!PermissionCache::checkCallingPermission(sHardwareTest))) {
Mathias Agopian375f5632009-06-15 18:24:59 -07003032 IPCThreadState* ipc = IPCThreadState::self();
3033 const int pid = ipc->getCallingPid();
3034 const int uid = ipc->getCallingUid();
Steve Blocke6f43dd2012-01-06 19:20:56 +00003035 ALOGE("Permission Denial: "
Mathias Agopian375f5632009-06-15 18:24:59 -07003036 "can't access SurfaceFlinger pid=%d, uid=%d", pid, uid);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003037 return PERMISSION_DENIED;
3038 }
3039 int n;
3040 switch (code) {
Mathias Agopian01b76682009-04-16 20:04:08 -07003041 case 1000: // SHOW_CPU, NOT SUPPORTED ANYMORE
Mathias Agopian35b48d12010-09-13 22:57:58 -07003042 case 1001: // SHOW_FPS, NOT SUPPORTED ANYMORE
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003043 return NO_ERROR;
3044 case 1002: // SHOW_UPDATES
3045 n = data.readInt32();
3046 mDebugRegion = n ? n : (mDebugRegion ? 0 : 1);
Mathias Agopian53331da2011-08-22 21:44:41 -07003047 invalidateHwcGeometry();
3048 repaintEverything();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003049 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003050 case 1004:{ // repaint everything
Mathias Agopian53331da2011-08-22 21:44:41 -07003051 repaintEverything();
Mathias Agopiancbb288b2009-09-07 16:32:45 -07003052 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003053 }
Mathias Agopiancbb288b2009-09-07 16:32:45 -07003054 case 1005:{ // force transaction
Mathias Agopiane57f2922012-08-09 16:29:12 -07003055 setTransactionFlags(
3056 eTransactionNeeded|
3057 eDisplayTransactionNeeded|
3058 eTraversalNeeded);
Mathias Agopiancbb288b2009-09-07 16:32:45 -07003059 return NO_ERROR;
3060 }
Mathias Agopian4d143ee2012-02-23 20:05:39 -08003061 case 1006:{ // send empty update
3062 signalRefresh();
3063 return NO_ERROR;
3064 }
Mathias Agopian53331da2011-08-22 21:44:41 -07003065 case 1008: // toggle use of hw composer
3066 n = data.readInt32();
3067 mDebugDisableHWC = n ? 1 : 0;
3068 invalidateHwcGeometry();
3069 repaintEverything();
3070 return NO_ERROR;
Mathias Agopiana4583642011-08-23 18:03:18 -07003071 case 1009: // toggle use of transform hint
3072 n = data.readInt32();
3073 mDebugDisableTransformHint = n ? 1 : 0;
3074 invalidateHwcGeometry();
3075 repaintEverything();
3076 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003077 case 1010: // interrogate.
Mathias Agopian01b76682009-04-16 20:04:08 -07003078 reply->writeInt32(0);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003079 reply->writeInt32(0);
3080 reply->writeInt32(mDebugRegion);
Mathias Agopianb9494d52012-04-18 02:28:45 -07003081 reply->writeInt32(0);
Dianne Hackborn12839be2012-02-06 21:21:05 -08003082 reply->writeInt32(mDebugDisableHWC);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003083 return NO_ERROR;
3084 case 1013: {
3085 Mutex::Autolock _l(mStateLock);
Mathias Agopian42977342012-08-05 00:40:46 -07003086 sp<const DisplayDevice> hw(getDefaultDisplayDevice());
3087 reply->writeInt32(hw->getPageFlipCount());
Mathias Agopianff2ed702013-09-01 21:36:12 -07003088 return NO_ERROR;
3089 }
3090 case 1014: {
3091 // daltonize
3092 n = data.readInt32();
3093 switch (n % 10) {
3094 case 1: mDaltonizer.setType(Daltonizer::protanomaly); break;
3095 case 2: mDaltonizer.setType(Daltonizer::deuteranomaly); break;
3096 case 3: mDaltonizer.setType(Daltonizer::tritanomaly); break;
3097 }
3098 if (n >= 10) {
3099 mDaltonizer.setMode(Daltonizer::correction);
3100 } else {
3101 mDaltonizer.setMode(Daltonizer::simulation);
3102 }
3103 mDaltonize = n > 0;
3104 invalidateHwcGeometry();
3105 repaintEverything();
Alan Viverette9c5a3332013-09-12 20:04:35 -07003106 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003107 }
Alan Viverette9c5a3332013-09-12 20:04:35 -07003108 case 1015: {
3109 // apply a color matrix
3110 n = data.readInt32();
3111 mHasColorMatrix = n ? 1 : 0;
3112 if (n) {
3113 // color matrix is sent as mat3 matrix followed by vec3
3114 // offset, then packed into a mat4 where the last row is
3115 // the offset and extra values are 0
Alan Viverette794c5ba2013-10-03 16:40:52 -07003116 for (size_t i = 0 ; i < 4; i++) {
3117 for (size_t j = 0; j < 4; j++) {
3118 mColorMatrix[i][j] = data.readFloat();
3119 }
Alan Viverette9c5a3332013-09-12 20:04:35 -07003120 }
Alan Viverette9c5a3332013-09-12 20:04:35 -07003121 } else {
3122 mColorMatrix = mat4();
3123 }
3124 invalidateHwcGeometry();
3125 repaintEverything();
3126 return NO_ERROR;
3127 }
Ruchi Kandoif52b3c82014-04-24 16:42:35 -07003128 // This is an experimental interface
3129 // Needs to be shifted to proper binder interface when we productize
3130 case 1016: {
Andy McFadden645b1f72014-06-10 14:43:32 -07003131 n = data.readInt32();
3132 mPrimaryDispSync.setRefreshSkipCount(n);
Ruchi Kandoif52b3c82014-04-24 16:42:35 -07003133 return NO_ERROR;
3134 }
Dan Stozaee44edd2015-03-23 15:50:23 -07003135 case 1017: {
3136 n = data.readInt32();
3137 mForceFullDamage = static_cast<bool>(n);
3138 return NO_ERROR;
3139 }
Dan Stozadb4ac3c2015-04-14 11:34:01 -07003140 case 1018: { // Modify Choreographer's phase offset
3141 n = data.readInt32();
3142 mEventThread->setPhaseOffset(static_cast<nsecs_t>(n));
3143 return NO_ERROR;
3144 }
3145 case 1019: { // Modify SurfaceFlinger's phase offset
3146 n = data.readInt32();
3147 mSFEventThread->setPhaseOffset(static_cast<nsecs_t>(n));
3148 return NO_ERROR;
3149 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003150 }
3151 }
3152 return err;
3153}
3154
Mathias Agopian53331da2011-08-22 21:44:41 -07003155void SurfaceFlinger::repaintEverything() {
Mathias Agopian87baae12012-07-31 12:38:26 -07003156 android_atomic_or(1, &mRepaintEverything);
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08003157 signalTransaction();
Mathias Agopian53331da2011-08-22 21:44:41 -07003158}
3159
Mathias Agopian59119e62010-10-11 12:37:43 -07003160// ---------------------------------------------------------------------------
Mathias Agopian2a9fc492013-03-01 13:42:57 -08003161// Capture screen into an IGraphiBufferProducer
Mathias Agopian9daa5c92010-10-12 16:05:48 -07003162// ---------------------------------------------------------------------------
3163
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07003164/* The code below is here to handle b/8734824
3165 *
3166 * We create a IGraphicBufferProducer wrapper that forwards all calls
Jesse Hallb154c422014-07-13 12:47:02 -07003167 * from the surfaceflinger thread to the calling binder thread, where they
3168 * are executed. This allows the calling thread in the calling process to be
3169 * reused and not depend on having "enough" binder threads to handle the
3170 * requests.
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07003171 */
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07003172class GraphicProducerWrapper : public BBinder, public MessageHandler {
Jesse Hallb154c422014-07-13 12:47:02 -07003173 /* Parts of GraphicProducerWrapper are run on two different threads,
3174 * communicating by sending messages via Looper but also by shared member
3175 * data. Coherence maintenance is subtle and in places implicit (ugh).
3176 *
3177 * Don't rely on Looper's sendMessage/handleMessage providing
3178 * release/acquire semantics for any data not actually in the Message.
3179 * Data going from surfaceflinger to binder threads needs to be
3180 * synchronized explicitly.
3181 *
3182 * Barrier open/wait do provide release/acquire semantics. This provides
3183 * implicit synchronization for data coming back from binder to
3184 * surfaceflinger threads.
3185 */
3186
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07003187 sp<IGraphicBufferProducer> impl;
3188 sp<Looper> looper;
3189 status_t result;
3190 bool exitPending;
3191 bool exitRequested;
Jesse Hallb154c422014-07-13 12:47:02 -07003192 Barrier barrier;
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07003193 uint32_t code;
3194 Parcel const* data;
3195 Parcel* reply;
3196
3197 enum {
3198 MSG_API_CALL,
3199 MSG_EXIT
3200 };
3201
3202 /*
Jesse Hallb154c422014-07-13 12:47:02 -07003203 * Called on surfaceflinger thread. This is called by our "fake"
3204 * BpGraphicBufferProducer. We package the data and reply Parcel and
3205 * forward them to the binder thread.
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07003206 */
3207 virtual status_t transact(uint32_t code,
Dan Stozac7014012014-02-14 15:03:43 -08003208 const Parcel& data, Parcel* reply, uint32_t /* flags */) {
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07003209 this->code = code;
3210 this->data = &data;
3211 this->reply = reply;
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07003212 if (exitPending) {
Jesse Hallb154c422014-07-13 12:47:02 -07003213 // if we've exited, we run the message synchronously right here.
3214 // note (JH): as far as I can tell from looking at the code, this
3215 // never actually happens. if it does, i'm not sure if it happens
3216 // on the surfaceflinger or binder thread.
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07003217 handleMessage(Message(MSG_API_CALL));
3218 } else {
3219 barrier.close();
Jesse Hallb154c422014-07-13 12:47:02 -07003220 // Prevent stores to this->{code, data, reply} from being
3221 // reordered later than the construction of Message.
3222 atomic_thread_fence(memory_order_release);
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07003223 looper->sendMessage(this, Message(MSG_API_CALL));
3224 barrier.wait();
3225 }
bdeng3Xc2633ce2014-03-20 09:15:34 +08003226 return result;
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07003227 }
3228
3229 /*
Jesse Hallb154c422014-07-13 12:47:02 -07003230 * here we run on the binder thread. All we've got to do is
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07003231 * call the real BpGraphicBufferProducer.
3232 */
3233 virtual void handleMessage(const Message& message) {
Jesse Hallb154c422014-07-13 12:47:02 -07003234 int what = message.what;
3235 // Prevent reads below from happening before the read from Message
3236 atomic_thread_fence(memory_order_acquire);
3237 if (what == MSG_API_CALL) {
Marco Nelissen097ca272014-11-14 08:01:01 -08003238 result = IInterface::asBinder(impl)->transact(code, data[0], reply);
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07003239 barrier.open();
Jesse Hallb154c422014-07-13 12:47:02 -07003240 } else if (what == MSG_EXIT) {
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07003241 exitRequested = true;
3242 }
3243 }
3244
3245public:
Jesse Hallb154c422014-07-13 12:47:02 -07003246 GraphicProducerWrapper(const sp<IGraphicBufferProducer>& impl)
3247 : impl(impl),
3248 looper(new Looper(true)),
Pablo Ceballos53390e12015-08-04 11:25:59 -07003249 result(NO_ERROR),
Jesse Hallb154c422014-07-13 12:47:02 -07003250 exitPending(false),
Pablo Ceballos53390e12015-08-04 11:25:59 -07003251 exitRequested(false),
3252 code(0),
3253 data(NULL),
3254 reply(NULL)
Jesse Hallb154c422014-07-13 12:47:02 -07003255 {}
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07003256
Jesse Hallb154c422014-07-13 12:47:02 -07003257 // Binder thread
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07003258 status_t waitForResponse() {
3259 do {
3260 looper->pollOnce(-1);
3261 } while (!exitRequested);
3262 return result;
3263 }
3264
Jesse Hallb154c422014-07-13 12:47:02 -07003265 // Client thread
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07003266 void exit(status_t result) {
Mike J. Chenaaff4ef2013-07-30 10:19:24 -07003267 this->result = result;
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07003268 exitPending = true;
Jesse Hallb154c422014-07-13 12:47:02 -07003269 // Ensure this->result is visible to the binder thread before it
3270 // handles the message.
3271 atomic_thread_fence(memory_order_release);
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07003272 looper->sendMessage(this, Message(MSG_EXIT));
3273 }
3274};
3275
3276
Mathias Agopian2a9fc492013-03-01 13:42:57 -08003277status_t SurfaceFlinger::captureScreen(const sp<IBinder>& display,
3278 const sp<IGraphicBufferProducer>& producer,
Dan Stozac1879002014-05-22 15:59:05 -07003279 Rect sourceCrop, uint32_t reqWidth, uint32_t reqHeight,
Dan Stozac7014012014-02-14 15:03:43 -08003280 uint32_t minLayerZ, uint32_t maxLayerZ,
Riley Andrewsc3ebe662014-09-04 16:20:31 -07003281 bool useIdentityTransform, ISurfaceComposer::Rotation rotation) {
Mathias Agopian2a9fc492013-03-01 13:42:57 -08003282
3283 if (CC_UNLIKELY(display == 0))
3284 return BAD_VALUE;
3285
3286 if (CC_UNLIKELY(producer == 0))
3287 return BAD_VALUE;
3288
Mathias Agopian5ff5a842013-08-13 15:55:43 -07003289 // if we have secure windows on this display, never allow the screen capture
3290 // unless the producer interface is local (i.e.: we can take a screenshot for
3291 // ourselves).
Pablo Ceballosb5b35632016-02-23 11:18:51 -08003292 bool isLocalScreenshot = IInterface::asBinder(producer)->localBinder();
Mathias Agopian5ff5a842013-08-13 15:55:43 -07003293
Riley Andrewsc3ebe662014-09-04 16:20:31 -07003294 // Convert to surfaceflinger's internal rotation type.
3295 Transform::orientation_flags rotationFlags;
3296 switch (rotation) {
3297 case ISurfaceComposer::eRotateNone:
3298 rotationFlags = Transform::ROT_0;
3299 break;
3300 case ISurfaceComposer::eRotate90:
3301 rotationFlags = Transform::ROT_90;
3302 break;
3303 case ISurfaceComposer::eRotate180:
3304 rotationFlags = Transform::ROT_180;
3305 break;
3306 case ISurfaceComposer::eRotate270:
3307 rotationFlags = Transform::ROT_270;
3308 break;
3309 default:
3310 rotationFlags = Transform::ROT_0;
3311 ALOGE("Invalid rotation passed to captureScreen(): %d\n", rotation);
3312 break;
3313 }
3314
Mathias Agopian2a9fc492013-03-01 13:42:57 -08003315 class MessageCaptureScreen : public MessageBase {
3316 SurfaceFlinger* flinger;
3317 sp<IBinder> display;
3318 sp<IGraphicBufferProducer> producer;
Dan Stozac1879002014-05-22 15:59:05 -07003319 Rect sourceCrop;
Mathias Agopian2a9fc492013-03-01 13:42:57 -08003320 uint32_t reqWidth, reqHeight;
3321 uint32_t minLayerZ,maxLayerZ;
Dan Stozac7014012014-02-14 15:03:43 -08003322 bool useIdentityTransform;
Riley Andrewsc3ebe662014-09-04 16:20:31 -07003323 Transform::orientation_flags rotation;
Mathias Agopian2a9fc492013-03-01 13:42:57 -08003324 status_t result;
Pablo Ceballosb5b35632016-02-23 11:18:51 -08003325 bool isLocalScreenshot;
Mathias Agopian2a9fc492013-03-01 13:42:57 -08003326 public:
3327 MessageCaptureScreen(SurfaceFlinger* flinger,
3328 const sp<IBinder>& display,
3329 const sp<IGraphicBufferProducer>& producer,
Dan Stozac1879002014-05-22 15:59:05 -07003330 Rect sourceCrop, uint32_t reqWidth, uint32_t reqHeight,
Dan Stozac7014012014-02-14 15:03:43 -08003331 uint32_t minLayerZ, uint32_t maxLayerZ,
Pablo Ceballosb5b35632016-02-23 11:18:51 -08003332 bool useIdentityTransform,
3333 Transform::orientation_flags rotation,
3334 bool isLocalScreenshot)
Mathias Agopian2a9fc492013-03-01 13:42:57 -08003335 : flinger(flinger), display(display), producer(producer),
Dan Stozac1879002014-05-22 15:59:05 -07003336 sourceCrop(sourceCrop), reqWidth(reqWidth), reqHeight(reqHeight),
Mathias Agopian2a9fc492013-03-01 13:42:57 -08003337 minLayerZ(minLayerZ), maxLayerZ(maxLayerZ),
Dan Stozac7014012014-02-14 15:03:43 -08003338 useIdentityTransform(useIdentityTransform),
Pablo Ceballosb5b35632016-02-23 11:18:51 -08003339 rotation(rotation), result(PERMISSION_DENIED),
3340 isLocalScreenshot(isLocalScreenshot)
Mathias Agopian2a9fc492013-03-01 13:42:57 -08003341 {
3342 }
3343 status_t getResult() const {
3344 return result;
3345 }
3346 virtual bool handler() {
3347 Mutex::Autolock _l(flinger->mStateLock);
3348 sp<const DisplayDevice> hw(flinger->getDisplayDevice(display));
Dan Stozac7014012014-02-14 15:03:43 -08003349 result = flinger->captureScreenImplLocked(hw, producer,
Dan Stozac1879002014-05-22 15:59:05 -07003350 sourceCrop, reqWidth, reqHeight, minLayerZ, maxLayerZ,
Pablo Ceballosb5b35632016-02-23 11:18:51 -08003351 useIdentityTransform, rotation, isLocalScreenshot);
Marco Nelissen097ca272014-11-14 08:01:01 -08003352 static_cast<GraphicProducerWrapper*>(IInterface::asBinder(producer).get())->exit(result);
Mathias Agopian2a9fc492013-03-01 13:42:57 -08003353 return true;
3354 }
3355 };
3356
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07003357 // this creates a "fake" BBinder which will serve as a "fake" remote
3358 // binder to receive the marshaled calls and forward them to the
3359 // real remote (a BpGraphicBufferProducer)
3360 sp<GraphicProducerWrapper> wrapper = new GraphicProducerWrapper(producer);
3361
3362 // the asInterface() call below creates our "fake" BpGraphicBufferProducer
3363 // which does the marshaling work forwards to our "fake remote" above.
Mathias Agopian2a9fc492013-03-01 13:42:57 -08003364 sp<MessageBase> msg = new MessageCaptureScreen(this,
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07003365 display, IGraphicBufferProducer::asInterface( wrapper ),
Dan Stozac1879002014-05-22 15:59:05 -07003366 sourceCrop, reqWidth, reqHeight, minLayerZ, maxLayerZ,
Pablo Ceballosb5b35632016-02-23 11:18:51 -08003367 useIdentityTransform, rotationFlags, isLocalScreenshot);
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07003368
3369 status_t res = postMessageAsync(msg);
Mathias Agopian2a9fc492013-03-01 13:42:57 -08003370 if (res == NO_ERROR) {
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07003371 res = wrapper->waitForResponse();
Mathias Agopian2a9fc492013-03-01 13:42:57 -08003372 }
3373 return res;
3374}
3375
Mathias Agopian180f10d2013-04-10 22:55:41 -07003376
3377void SurfaceFlinger::renderScreenImplLocked(
3378 const sp<const DisplayDevice>& hw,
Dan Stozac1879002014-05-22 15:59:05 -07003379 Rect sourceCrop, uint32_t reqWidth, uint32_t reqHeight,
Mathias Agopian180f10d2013-04-10 22:55:41 -07003380 uint32_t minLayerZ, uint32_t maxLayerZ,
Riley Andrewsc3ebe662014-09-04 16:20:31 -07003381 bool yswap, bool useIdentityTransform, Transform::orientation_flags rotation)
Mathias Agopian180f10d2013-04-10 22:55:41 -07003382{
3383 ATRACE_CALL();
Mathias Agopian3f844832013-08-07 21:24:32 -07003384 RenderEngine& engine(getRenderEngine());
Mathias Agopian180f10d2013-04-10 22:55:41 -07003385
3386 // get screen geometry
Andreas Gampe89fd4f72014-11-13 14:18:56 -08003387 const int32_t hw_w = hw->getWidth();
3388 const int32_t hw_h = hw->getHeight();
3389 const bool filtering = static_cast<int32_t>(reqWidth) != hw_w ||
Christopher Ferris0e749792015-03-23 14:32:15 -07003390 static_cast<int32_t>(reqHeight) != hw_h;
Mathias Agopian180f10d2013-04-10 22:55:41 -07003391
Dan Stozac1879002014-05-22 15:59:05 -07003392 // if a default or invalid sourceCrop is passed in, set reasonable values
3393 if (sourceCrop.width() == 0 || sourceCrop.height() == 0 ||
3394 !sourceCrop.isValid()) {
3395 sourceCrop.setLeftTop(Point(0, 0));
3396 sourceCrop.setRightBottom(Point(hw_w, hw_h));
3397 }
3398
3399 // ensure that sourceCrop is inside screen
3400 if (sourceCrop.left < 0) {
3401 ALOGE("Invalid crop rect: l = %d (< 0)", sourceCrop.left);
3402 }
Dan Stozabe31f442014-06-11 11:20:54 -07003403 if (sourceCrop.right > hw_w) {
3404 ALOGE("Invalid crop rect: r = %d (> %d)", sourceCrop.right, hw_w);
Dan Stozac1879002014-05-22 15:59:05 -07003405 }
3406 if (sourceCrop.top < 0) {
3407 ALOGE("Invalid crop rect: t = %d (< 0)", sourceCrop.top);
3408 }
Dan Stozabe31f442014-06-11 11:20:54 -07003409 if (sourceCrop.bottom > hw_h) {
3410 ALOGE("Invalid crop rect: b = %d (> %d)", sourceCrop.bottom, hw_h);
Dan Stozac1879002014-05-22 15:59:05 -07003411 }
3412
Mathias Agopian180f10d2013-04-10 22:55:41 -07003413 // make sure to clear all GL error flags
Mathias Agopian3f844832013-08-07 21:24:32 -07003414 engine.checkErrors();
Mathias Agopian180f10d2013-04-10 22:55:41 -07003415
3416 // set-up our viewport
Riley Andrewsc3ebe662014-09-04 16:20:31 -07003417 engine.setViewportAndProjection(
3418 reqWidth, reqHeight, sourceCrop, hw_h, yswap, rotation);
Mathias Agopian3f844832013-08-07 21:24:32 -07003419 engine.disableTexturing();
Mathias Agopian180f10d2013-04-10 22:55:41 -07003420
3421 // redraw the screen entirely...
Mathias Agopian3f844832013-08-07 21:24:32 -07003422 engine.clearWithColor(0, 0, 0, 1);
Mathias Agopian180f10d2013-04-10 22:55:41 -07003423
3424 const LayerVector& layers( mDrawingState.layersSortedByZ );
3425 const size_t count = layers.size();
3426 for (size_t i=0 ; i<count ; ++i) {
3427 const sp<Layer>& layer(layers[i]);
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07003428 const Layer::State& state(layer->getDrawingState());
Mathias Agopian180f10d2013-04-10 22:55:41 -07003429 if (state.layerStack == hw->getLayerStack()) {
3430 if (state.z >= minLayerZ && state.z <= maxLayerZ) {
3431 if (layer->isVisible()) {
3432 if (filtering) layer->setFiltering(true);
Dan Stozac7014012014-02-14 15:03:43 -08003433 layer->draw(hw, useIdentityTransform);
Mathias Agopian180f10d2013-04-10 22:55:41 -07003434 if (filtering) layer->setFiltering(false);
3435 }
3436 }
3437 }
3438 }
3439
Mathias Agopian931bda12013-08-28 18:11:46 -07003440 hw->setViewportAndProjection();
Mathias Agopian180f10d2013-04-10 22:55:41 -07003441}
3442
3443
Mathias Agopian2a9fc492013-03-01 13:42:57 -08003444status_t SurfaceFlinger::captureScreenImplLocked(
3445 const sp<const DisplayDevice>& hw,
3446 const sp<IGraphicBufferProducer>& producer,
Dan Stozac1879002014-05-22 15:59:05 -07003447 Rect sourceCrop, uint32_t reqWidth, uint32_t reqHeight,
Dan Stozac7014012014-02-14 15:03:43 -08003448 uint32_t minLayerZ, uint32_t maxLayerZ,
Pablo Ceballosb5b35632016-02-23 11:18:51 -08003449 bool useIdentityTransform, Transform::orientation_flags rotation,
3450 bool isLocalScreenshot)
Mathias Agopian2a9fc492013-03-01 13:42:57 -08003451{
3452 ATRACE_CALL();
3453
Mathias Agopian180f10d2013-04-10 22:55:41 -07003454 // get screen geometry
Dan Stoza35024162015-06-09 16:44:40 -07003455 uint32_t hw_w = hw->getWidth();
3456 uint32_t hw_h = hw->getHeight();
3457
3458 if (rotation & Transform::ROT_90) {
3459 std::swap(hw_w, hw_h);
3460 }
Mathias Agopian2a9fc492013-03-01 13:42:57 -08003461
Mathias Agopian180f10d2013-04-10 22:55:41 -07003462 if ((reqWidth > hw_w) || (reqHeight > hw_h)) {
3463 ALOGE("size mismatch (%d, %d) > (%d, %d)",
3464 reqWidth, reqHeight, hw_w, hw_h);
3465 return BAD_VALUE;
3466 }
Mathias Agopianc1d1b0d2011-01-16 14:05:02 -08003467
Mathias Agopian180f10d2013-04-10 22:55:41 -07003468 reqWidth = (!reqWidth) ? hw_w : reqWidth;
3469 reqHeight = (!reqHeight) ? hw_h : reqHeight;
3470
Pablo Ceballosb5b35632016-02-23 11:18:51 -08003471 bool secureLayerIsVisible = false;
3472 const LayerVector& layers(mDrawingState.layersSortedByZ);
3473 const size_t count = layers.size();
3474 for (size_t i = 0 ; i < count ; ++i) {
3475 const sp<Layer>& layer(layers[i]);
3476 const Layer::State& state(layer->getDrawingState());
3477 if (state.layerStack == hw->getLayerStack() && state.z >= minLayerZ &&
3478 state.z <= maxLayerZ && layer->isVisible() &&
3479 layer->isSecure()) {
3480 secureLayerIsVisible = true;
3481 }
3482 }
3483
3484 if (!isLocalScreenshot && secureLayerIsVisible) {
3485 ALOGW("FB is protected: PERMISSION_DENIED");
3486 return PERMISSION_DENIED;
3487 }
3488
Mathias Agopian0aea53f2013-04-24 19:03:08 +02003489 // create a surface (because we're a producer, and we need to
3490 // dequeue/queue a buffer)
Jesse Hall83cafff2013-09-16 15:24:53 -07003491 sp<Surface> sur = new Surface(producer, false);
Mathias Agopian0aea53f2013-04-24 19:03:08 +02003492 ANativeWindow* window = sur.get();
Mathias Agopian180f10d2013-04-10 22:55:41 -07003493
Michael Lentine5a16a622015-05-21 13:48:24 -07003494 status_t result = native_window_api_connect(window, NATIVE_WINDOW_API_EGL);
3495 if (result == NO_ERROR) {
Mathias Agopian3ca76f42013-08-06 16:07:33 -07003496 uint32_t usage = GRALLOC_USAGE_SW_READ_OFTEN | GRALLOC_USAGE_SW_WRITE_OFTEN |
3497 GRALLOC_USAGE_HW_RENDER | GRALLOC_USAGE_HW_TEXTURE;
Mathias Agopian180f10d2013-04-10 22:55:41 -07003498
Mathias Agopian0aea53f2013-04-24 19:03:08 +02003499 int err = 0;
3500 err = native_window_set_buffers_dimensions(window, reqWidth, reqHeight);
Mathias Agopian4ceff3d2013-08-21 15:23:15 -07003501 err |= native_window_set_scaling_mode(window, NATIVE_WINDOW_SCALING_MODE_SCALE_TO_WINDOW);
Mathias Agopian0aea53f2013-04-24 19:03:08 +02003502 err |= native_window_set_buffers_format(window, HAL_PIXEL_FORMAT_RGBA_8888);
3503 err |= native_window_set_usage(window, usage);
Mathias Agopian180f10d2013-04-10 22:55:41 -07003504
Mathias Agopian0aea53f2013-04-24 19:03:08 +02003505 if (err == NO_ERROR) {
3506 ANativeWindowBuffer* buffer;
3507 /* TODO: Once we have the sync framework everywhere this can use
3508 * server-side waits on the fence that dequeueBuffer returns.
3509 */
3510 result = native_window_dequeue_buffer_and_wait(window, &buffer);
3511 if (result == NO_ERROR) {
Riley Andrews86639902014-08-15 12:27:24 -07003512 int syncFd = -1;
Mathias Agopian0aea53f2013-04-24 19:03:08 +02003513 // create an EGLImage from the buffer so we can later
3514 // turn it into a texture
3515 EGLImageKHR image = eglCreateImageKHR(mEGLDisplay, EGL_NO_CONTEXT,
3516 EGL_NATIVE_BUFFER_ANDROID, buffer, NULL);
3517 if (image != EGL_NO_IMAGE_KHR) {
Mathias Agopian3f844832013-08-07 21:24:32 -07003518 // this binds the given EGLImage as a framebuffer for the
3519 // duration of this scope.
3520 RenderEngine::BindImageAsFramebuffer imageBond(getRenderEngine(), image);
3521 if (imageBond.getStatus() == NO_ERROR) {
Mathias Agopian0aea53f2013-04-24 19:03:08 +02003522 // this will in fact render into our dequeued buffer
3523 // via an FBO, which means we didn't have to create
3524 // an EGLSurface and therefore we're not
3525 // dependent on the context's EGLConfig.
Riley Andrewsc3ebe662014-09-04 16:20:31 -07003526 renderScreenImplLocked(
3527 hw, sourceCrop, reqWidth, reqHeight, minLayerZ, maxLayerZ, true,
3528 useIdentityTransform, rotation);
Mathias Agopiand5556842013-09-19 17:08:37 -07003529
Riley Andrews86639902014-08-15 12:27:24 -07003530 // Attempt to create a sync khr object that can produce a sync point. If that
3531 // isn't available, create a non-dupable sync object in the fallback path and
3532 // wait on it directly.
3533 EGLSyncKHR sync;
3534 if (!DEBUG_SCREENSHOTS) {
3535 sync = eglCreateSyncKHR(mEGLDisplay, EGL_SYNC_NATIVE_FENCE_ANDROID, NULL);
Riley Andrews9707f4d2014-10-23 16:17:04 -07003536 // native fence fd will not be populated until flush() is done.
3537 getRenderEngine().flush();
Andy McFadden2d8d1202013-10-09 16:38:02 -07003538 } else {
Riley Andrews86639902014-08-15 12:27:24 -07003539 sync = EGL_NO_SYNC_KHR;
Andy McFadden2d8d1202013-10-09 16:38:02 -07003540 }
Riley Andrews86639902014-08-15 12:27:24 -07003541 if (sync != EGL_NO_SYNC_KHR) {
3542 // get the sync fd
3543 syncFd = eglDupNativeFenceFDANDROID(mEGLDisplay, sync);
3544 if (syncFd == EGL_NO_NATIVE_FENCE_FD_ANDROID) {
3545 ALOGW("captureScreen: failed to dup sync khr object");
3546 syncFd = -1;
3547 }
3548 eglDestroySyncKHR(mEGLDisplay, sync);
3549 } else {
3550 // fallback path
3551 sync = eglCreateSyncKHR(mEGLDisplay, EGL_SYNC_FENCE_KHR, NULL);
3552 if (sync != EGL_NO_SYNC_KHR) {
3553 EGLint result = eglClientWaitSyncKHR(mEGLDisplay, sync,
3554 EGL_SYNC_FLUSH_COMMANDS_BIT_KHR, 2000000000 /*2 sec*/);
3555 EGLint eglErr = eglGetError();
3556 if (result == EGL_TIMEOUT_EXPIRED_KHR) {
3557 ALOGW("captureScreen: fence wait timed out");
3558 } else {
3559 ALOGW_IF(eglErr != EGL_SUCCESS,
3560 "captureScreen: error waiting on EGL fence: %#x", eglErr);
3561 }
3562 eglDestroySyncKHR(mEGLDisplay, sync);
3563 } else {
3564 ALOGW("captureScreen: error creating EGL fence: %#x", eglGetError());
3565 }
3566 }
Mathias Agopiand5556842013-09-19 17:08:37 -07003567 if (DEBUG_SCREENSHOTS) {
3568 uint32_t* pixels = new uint32_t[reqWidth*reqHeight];
3569 getRenderEngine().readPixels(0, 0, reqWidth, reqHeight, pixels);
3570 checkScreenshot(reqWidth, reqHeight, reqWidth, pixels,
3571 hw, minLayerZ, maxLayerZ);
3572 delete [] pixels;
3573 }
3574
Mathias Agopian0aea53f2013-04-24 19:03:08 +02003575 } else {
3576 ALOGE("got GL_FRAMEBUFFER_COMPLETE_OES error while taking screenshot");
3577 result = INVALID_OPERATION;
Prathmesh Prabhuf3209b02016-03-09 16:54:45 -08003578 window->cancelBuffer(window, buffer, syncFd);
3579 buffer = NULL;
Mathias Agopian0aea53f2013-04-24 19:03:08 +02003580 }
Mathias Agopian0aea53f2013-04-24 19:03:08 +02003581 // destroy our image
3582 eglDestroyImageKHR(mEGLDisplay, image);
3583 } else {
3584 result = BAD_VALUE;
3585 }
Prathmesh Prabhuf3209b02016-03-09 16:54:45 -08003586 if (buffer) {
3587 // queueBuffer takes ownership of syncFd
3588 result = window->queueBuffer(window, buffer, syncFd);
3589 }
Mathias Agopian0aea53f2013-04-24 19:03:08 +02003590 }
3591 } else {
3592 result = BAD_VALUE;
3593 }
3594 native_window_api_disconnect(window, NATIVE_WINDOW_API_EGL);
3595 }
Mathias Agopian180f10d2013-04-10 22:55:41 -07003596
Mathias Agopian74c40c02010-09-29 13:02:36 -07003597 return result;
3598}
3599
Mathias Agopiand5556842013-09-19 17:08:37 -07003600void SurfaceFlinger::checkScreenshot(size_t w, size_t s, size_t h, void const* vaddr,
3601 const sp<const DisplayDevice>& hw, uint32_t minLayerZ, uint32_t maxLayerZ) {
Mathias Agopianfee2b462013-07-03 12:34:01 -07003602 if (DEBUG_SCREENSHOTS) {
Mathias Agopiand5556842013-09-19 17:08:37 -07003603 for (size_t y=0 ; y<h ; y++) {
3604 uint32_t const * p = (uint32_t const *)vaddr + y*s;
3605 for (size_t x=0 ; x<w ; x++) {
Mathias Agopianfee2b462013-07-03 12:34:01 -07003606 if (p[x] != 0xFF000000) return;
3607 }
3608 }
3609 ALOGE("*** we just took a black screenshot ***\n"
3610 "requested minz=%d, maxz=%d, layerStack=%d",
3611 minLayerZ, maxLayerZ, hw->getLayerStack());
3612 const LayerVector& layers( mDrawingState.layersSortedByZ );
3613 const size_t count = layers.size();
3614 for (size_t i=0 ; i<count ; ++i) {
3615 const sp<Layer>& layer(layers[i]);
3616 const Layer::State& state(layer->getDrawingState());
3617 const bool visible = (state.layerStack == hw->getLayerStack())
3618 && (state.z >= minLayerZ && state.z <= maxLayerZ)
3619 && (layer->isVisible());
Dan Stoza9e56aa02015-11-02 13:00:03 -08003620 ALOGE("%c index=%zu, name=%s, layerStack=%d, z=%d, visible=%d, flags=%x, alpha=%.3f",
Mathias Agopianfee2b462013-07-03 12:34:01 -07003621 visible ? '+' : '-',
3622 i, layer->getName().string(), state.layerStack, state.z,
3623 layer->isVisible(), state.flags, state.alpha);
3624 }
3625 }
3626}
3627
Pablo Ceballosce796e72016-02-04 19:10:51 -08003628bool SurfaceFlinger::getFrameTimestamps(const Layer& layer,
3629 uint64_t frameNumber, FrameTimestamps* outTimestamps) {
3630 return mFenceTracker.getFrameTimestamps(layer, frameNumber, outTimestamps);
3631}
3632
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07003633// ---------------------------------------------------------------------------
3634
Mathias Agopian921e6ac2012-07-23 23:11:29 -07003635SurfaceFlinger::LayerVector::LayerVector() {
3636}
3637
3638SurfaceFlinger::LayerVector::LayerVector(const LayerVector& rhs)
Mathias Agopian13127d82013-03-05 17:47:11 -08003639 : SortedVector<sp<Layer> >(rhs) {
Mathias Agopian921e6ac2012-07-23 23:11:29 -07003640}
3641
3642int SurfaceFlinger::LayerVector::do_compare(const void* lhs,
3643 const void* rhs) const
Mathias Agopianb7e930d2010-06-01 15:12:58 -07003644{
Mathias Agopianbe246f82012-07-31 22:59:38 -07003645 // sort layers per layer-stack, then by z-order and finally by sequence
Mathias Agopian13127d82013-03-05 17:47:11 -08003646 const sp<Layer>& l(*reinterpret_cast<const sp<Layer>*>(lhs));
3647 const sp<Layer>& r(*reinterpret_cast<const sp<Layer>*>(rhs));
Mathias Agopianbe246f82012-07-31 22:59:38 -07003648
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07003649 uint32_t ls = l->getCurrentState().layerStack;
3650 uint32_t rs = r->getCurrentState().layerStack;
Mathias Agopianbe246f82012-07-31 22:59:38 -07003651 if (ls != rs)
3652 return ls - rs;
3653
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07003654 uint32_t lz = l->getCurrentState().z;
3655 uint32_t rz = r->getCurrentState().z;
Mathias Agopianbe246f82012-07-31 22:59:38 -07003656 if (lz != rz)
3657 return lz - rz;
3658
3659 return l->sequence - r->sequence;
Mathias Agopian921e6ac2012-07-23 23:11:29 -07003660}
3661
3662// ---------------------------------------------------------------------------
3663
Mathias Agopian3ee454a2012-08-27 16:28:24 -07003664SurfaceFlinger::DisplayDeviceState::DisplayDeviceState()
Pablo Ceballos53390e12015-08-04 11:25:59 -07003665 : type(DisplayDevice::DISPLAY_ID_INVALID),
3666 layerStack(DisplayDevice::NO_LAYER_STACK),
3667 orientation(0),
3668 width(0),
3669 height(0),
3670 isSecure(false) {
Mathias Agopiane57f2922012-08-09 16:29:12 -07003671}
3672
Pablo Ceballos53390e12015-08-04 11:25:59 -07003673SurfaceFlinger::DisplayDeviceState::DisplayDeviceState(
3674 DisplayDevice::DisplayType type, bool isSecure)
3675 : type(type),
3676 layerStack(DisplayDevice::NO_LAYER_STACK),
3677 orientation(0),
3678 width(0),
3679 height(0),
3680 isSecure(isSecure) {
Mathias Agopianda8d0a52012-09-04 15:05:38 -07003681 viewport.makeInvalid();
3682 frame.makeInvalid();
Mathias Agopianb7e930d2010-06-01 15:12:58 -07003683}
3684
3685// ---------------------------------------------------------------------------
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003686
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003687}; // namespace android
Mathias Agopian3f844832013-08-07 21:24:32 -07003688
3689
3690#if defined(__gl_h_)
3691#error "don't include gl/gl.h in this file"
3692#endif
3693
3694#if defined(__gl2_h_)
3695#error "don't include gl2/gl2.h in this file"
3696#endif