blob: 974a261278cd723a87c4db0748a8ab990963d527 [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>
Romain Guy0147a172017-06-01 13:53:56 -070022#include <algorithm>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080023#include <errno.h>
24#include <math.h>
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -070025#include <mutex>
Keun young Park63f165f2012-08-31 10:53:36 -070026#include <dlfcn.h>
Greg Hackmann86efcc02014-03-07 12:44:02 -080027#include <inttypes.h>
Jesse Hallb154c422014-07-13 12:47:02 -070028#include <stdatomic.h>
Dan Stoza2b6d38e2017-06-01 16:40:30 -070029#include <optional>
Mathias Agopian921e6ac2012-07-23 23:11:29 -070030
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080031#include <cutils/properties.h>
Mark Salyzyn7823e122016-09-29 08:08:05 -070032#include <log/log.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080033
Mathias Agopianc5b2c0b2009-05-19 19:08:10 -070034#include <binder/IPCThreadState.h>
35#include <binder/IServiceManager.h>
Mathias Agopian99b49842011-06-27 16:05:52 -070036#include <binder/PermissionCache.h>
Mathias Agopian7303c6b2009-07-02 18:11:53 -070037
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -080038#include <dvr/vr_flinger.h>
39
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -060040#include <ui/DebugUtils.h>
Mathias Agopianc666cae2012-07-25 18:56:13 -070041#include <ui/DisplayInfo.h>
Lajos Molnar67d8bd62014-09-11 14:58:45 -070042#include <ui/DisplayStatInfo.h>
Mathias Agopianc666cae2012-07-25 18:56:13 -070043
Jamie Gennis1a4d8832012-08-02 20:11:05 -070044#include <gui/BufferQueue.h>
Andy McFadden4803b742012-09-24 19:07:20 -070045#include <gui/GuiConfig.h>
Jamie Gennis1a4d8832012-08-02 20:11:05 -070046#include <gui/IDisplayEventConnection.h>
Kalle Raitaa099a242017-01-11 11:17:29 -080047#include <gui/LayerDebugInfo.h>
Mathias Agopiane3c697f2013-02-14 17:11:02 -080048#include <gui/Surface.h>
Mathias Agopian921e6ac2012-07-23 23:11:29 -070049
50#include <ui/GraphicBufferAllocator.h>
51#include <ui/PixelFormat.h>
Andy McFadden4803b742012-09-24 19:07:20 -070052#include <ui/UiConfig.h>
Mathias Agopiand0566bc2011-11-17 17:49:17 -080053
Mathias Agopiancde87a32012-09-13 14:09:01 -070054#include <utils/misc.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080055#include <utils/String8.h>
56#include <utils/String16.h>
57#include <utils/StopWatch.h>
Yusuke Sato0a688f52015-07-30 23:05:39 -070058#include <utils/Timers.h>
Jamie Gennis1c8e95c2012-02-23 19:27:23 -080059#include <utils/Trace.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080060
Mathias Agopian921e6ac2012-07-23 23:11:29 -070061#include <private/android_filesystem_config.h>
Mathias Agopianca088332013-03-28 17:44:13 -070062#include <private/gui/SyncFeatures.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080063
Mathias Agopian3e25fd82013-04-22 17:52:16 +020064#include "Client.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080065#include "clz.h"
Mathias Agopian3e25fd82013-04-22 17:52:16 +020066#include "Colorizer.h"
Mathias Agopian90ac7992012-02-25 18:48:35 -080067#include "DdmConnection.h"
Mathias Agopian0f2f5ff2012-07-31 23:09:07 -070068#include "DisplayDevice.h"
Jamie Gennisfaf77cc2013-07-30 15:10:32 -070069#include "DispSync.h"
Jamie Gennisd1700752013-10-14 12:22:52 -070070#include "EventControlThread.h"
Mathias Agopiand0566bc2011-11-17 17:49:17 -080071#include "EventThread.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080072#include "Layer.h"
David Sodman0c69cad2017-08-21 12:12:51 -070073#include "BufferLayer.h"
Robert Carr1f0a16a2016-10-24 16:27:39 -070074#include "LayerVector.h"
chaviw13fdc492017-06-27 12:40:18 -070075#include "ColorLayer.h"
Robert Carr1db73f62016-12-21 12:58:51 -080076#include "MonitoredProducer.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080077#include "SurfaceFlinger.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080078
Steven Thomasb02664d2017-07-26 18:48:28 -070079#include "DisplayHardware/ComposerHal.h"
Mathias Agopiana4912602012-07-12 14:25:33 -070080#include "DisplayHardware/FramebufferSurface.h"
Mathias Agopiana350ff92010-08-10 17:14:02 -070081#include "DisplayHardware/HWComposer.h"
Jesse Hall99c7dbb2013-03-14 14:29:29 -070082#include "DisplayHardware/VirtualDisplaySurface.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080083
Mathias Agopianff2ed702013-09-01 21:36:12 -070084#include "Effects/Daltonizer.h"
85
Mathias Agopian875d8e12013-06-07 15:35:48 -070086#include "RenderEngine/RenderEngine.h"
Mathias Agopianff2ed702013-09-01 21:36:12 -070087#include <cutils/compiler.h>
Mathias Agopian875d8e12013-06-07 15:35:48 -070088
Jiyong Park4b20c2e2017-01-14 19:45:11 +090089#include <android/hardware/configstore/1.0/ISurfaceFlingerConfigs.h>
Jaesoo Lee43518572017-01-23 19:03:16 +090090#include <configstore/Utils.h>
Jiyong Park4b20c2e2017-01-14 19:45:11 +090091
chaviw1d044282017-09-27 12:19:28 -070092#include <layerproto/LayerProtoParser.h>
93
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080094#define DISPLAY_COUNT 1
95
Mathias Agopianfee2b462013-07-03 12:34:01 -070096/*
97 * DEBUG_SCREENSHOTS: set to true to check that screenshots are not all
98 * black pixels.
99 */
100#define DEBUG_SCREENSHOTS false
101
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800102namespace android {
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700103
Jaesoo Lee43518572017-01-23 19:03:16 +0900104using namespace android::hardware::configstore;
Jiyong Park4b20c2e2017-01-14 19:45:11 +0900105using namespace android::hardware::configstore::V1_0;
106
Steven Thomasb02664d2017-07-26 18:48:28 -0700107namespace {
108class ConditionalLock {
109public:
110 ConditionalLock(Mutex& mutex, bool lock) : mMutex(mutex), mLocked(lock) {
111 if (lock) {
112 mMutex.lock();
113 }
114 }
115 ~ConditionalLock() { if (mLocked) mMutex.unlock(); }
116private:
117 Mutex& mMutex;
118 bool mLocked;
119};
120} // namespace anonymous
121
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800122// ---------------------------------------------------------------------------
123
Mathias Agopian99b49842011-06-27 16:05:52 -0700124const String16 sHardwareTest("android.permission.HARDWARE_TEST");
125const String16 sAccessSurfaceFlinger("android.permission.ACCESS_SURFACE_FLINGER");
126const String16 sReadFramebuffer("android.permission.READ_FRAME_BUFFER");
127const String16 sDump("android.permission.DUMP");
128
129// ---------------------------------------------------------------------------
Fabien Sanglard0cc19382017-03-06 11:54:40 -0800130int64_t SurfaceFlinger::vsyncPhaseOffsetNs;
131int64_t SurfaceFlinger::sfVsyncPhaseOffsetNs;
Fabien Sanglardc45a7d92017-03-14 13:24:22 -0700132int64_t SurfaceFlinger::dispSyncPresentTimeOffset;
Fabien Sanglarda34ed632017-03-14 11:43:52 -0700133bool SurfaceFlinger::useHwcForRgbToYuv;
Fabien Sanglardc8e387e2017-03-10 10:30:28 -0800134uint64_t SurfaceFlinger::maxVirtualDisplaySize;
Fabien Sanglardcbf153b2017-03-10 17:57:12 -0800135bool SurfaceFlinger::hasSyncFramework;
Steven Thomas050b2c82017-03-06 11:45:16 -0800136bool SurfaceFlinger::useVrFlinger;
Fabien Sanglard1971b632017-03-10 14:50:03 -0800137int64_t SurfaceFlinger::maxFrameBufferAcquiredBuffers;
Lloyd Piquec5208312018-01-08 17:59:02 -0800138// TODO(courtneygo): Rename hasWideColorDisplay to clarify its actual meaning.
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -0600139bool SurfaceFlinger::hasWideColorDisplay;
Mathias Agopian99b49842011-06-27 16:05:52 -0700140
Kalle Raitaa099a242017-01-11 11:17:29 -0800141
142std::string getHwcServiceName() {
143 char value[PROPERTY_VALUE_MAX] = {};
144 property_get("debug.sf.hwc_service_name", value, "default");
145 ALOGI("Using HWComposer service: '%s'", value);
146 return std::string(value);
147}
148
149bool useTrebleTestingOverride() {
150 char value[PROPERTY_VALUE_MAX] = {};
151 property_get("debug.sf.treble_testing_override", value, "false");
152 ALOGI("Treble testing override: '%s'", value);
153 return std::string(value) == "true";
154}
155
David Sodmanbc815282017-11-05 18:57:52 -0800156SurfaceFlingerBE::SurfaceFlingerBE()
157 : mHwcServiceName(getHwcServiceName()),
158 mRenderEngine(nullptr),
David Sodman4a36e932017-11-07 14:29:47 -0800159 mFrameBuckets(),
160 mTotalTime(0),
161 mLastSwapTime(0),
David Sodmanbc815282017-11-05 18:57:52 -0800162 mComposerSequenceId(0) {
163}
164
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800165SurfaceFlinger::SurfaceFlinger()
Mathias Agopian4f4f0942013-08-19 17:26:18 -0700166 : BnSurfaceComposer(),
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800167 mTransactionFlags(0),
Jamie Gennis2d5e2302012-10-15 18:24:43 -0700168 mTransactionPending(false),
169 mAnimTransactionPending(false),
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700170 mLayersRemoved(false),
Robert Carr1f0a16a2016-10-24 16:27:39 -0700171 mLayersAdded(false),
Mathias Agopian52bbb1a2012-07-31 19:01:53 -0700172 mRepaintEverything(0),
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800173 mBootTime(systemTime()),
Dan Stoza9e56aa02015-11-02 13:00:03 -0800174 mBuiltinDisplays(),
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800175 mVisibleRegionsDirty(false),
Dan Stoza9e56aa02015-11-02 13:00:03 -0800176 mGeometryInvalid(false),
Jamie Gennis4b0eba92013-02-05 13:30:24 -0800177 mAnimCompositionPending(false),
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800178 mDebugRegion(0),
Mathias Agopian8afb7e32011-08-15 20:44:40 -0700179 mDebugDDMS(0),
Mathias Agopian73d3ba92010-09-22 18:58:01 -0700180 mDebugDisableHWC(0),
Mathias Agopiana4583642011-08-23 18:03:18 -0700181 mDebugDisableTransformHint(0),
Mathias Agopian9795c422009-08-26 16:36:26 -0700182 mDebugInSwapBuffers(0),
183 mLastSwapBufferTime(0),
184 mDebugInTransaction(0),
185 mLastTransactionTime(0),
Mathias Agopianff2ed702013-09-01 21:36:12 -0700186 mBootFinished(false),
Dan Stozaee44edd2015-03-23 15:50:23 -0700187 mForceFullDamage(false),
Robert Carr0d480722017-01-10 16:42:54 -0800188 mInterceptor(this),
Tim Murray4a4e4a22016-04-19 16:29:23 +0000189 mPrimaryDispSync("PrimaryDispSync"),
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700190 mPrimaryHWVsyncEnabled(false),
Jesse Hall948fe0c2013-10-14 12:56:09 -0700191 mHWVsyncAvailable(false),
Romain Guya9638732017-06-01 12:05:21 -0700192 mHasColorMatrix(false),
Dan Stozab90cf072015-03-05 11:05:59 -0800193 mHasPoweredOff(false),
Steven Thomas050b2c82017-03-06 11:45:16 -0800194 mNumLayers(0),
Steven Thomasb02664d2017-07-26 18:48:28 -0700195 mVrFlingerRequestsDisplay(false),
David Sodman105b7dc2017-11-04 20:28:14 -0700196 mMainThreadId(std::this_thread::get_id())
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800197{
Fabien Sanglardcbf153b2017-03-10 17:57:12 -0800198 ALOGI("SurfaceFlinger is starting");
Fabien Sanglard0cc19382017-03-06 11:54:40 -0800199
200 vsyncPhaseOffsetNs = getInt64< ISurfaceFlingerConfigs,
201 &ISurfaceFlingerConfigs::vsyncEventPhaseOffsetNs>(1000000);
202
203 sfVsyncPhaseOffsetNs = getInt64< ISurfaceFlingerConfigs,
204 &ISurfaceFlingerConfigs::vsyncSfEventPhaseOffsetNs>(1000000);
205
Fabien Sanglardcbf153b2017-03-10 17:57:12 -0800206 hasSyncFramework = getBool< ISurfaceFlingerConfigs,
207 &ISurfaceFlingerConfigs::hasSyncFramework>(true);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800208
Fabien Sanglardc45a7d92017-03-14 13:24:22 -0700209 dispSyncPresentTimeOffset = getInt64< ISurfaceFlingerConfigs,
210 &ISurfaceFlingerConfigs::presentTimeOffsetFromVSyncNs>(0);
211
Fabien Sanglarda34ed632017-03-14 11:43:52 -0700212 useHwcForRgbToYuv = getBool< ISurfaceFlingerConfigs,
213 &ISurfaceFlingerConfigs::useHwcForRGBtoYUV>(false);
214
Fabien Sanglardc8e387e2017-03-10 10:30:28 -0800215 maxVirtualDisplaySize = getUInt64<ISurfaceFlingerConfigs,
216 &ISurfaceFlingerConfigs::maxVirtualDisplaySize>(0);
217
Steven Thomas050b2c82017-03-06 11:45:16 -0800218 // Vr flinger is only enabled on Daydream ready devices.
219 useVrFlinger = getBool< ISurfaceFlingerConfigs,
220 &ISurfaceFlingerConfigs::useVrFlinger>(false);
221
Fabien Sanglard1971b632017-03-10 14:50:03 -0800222 maxFrameBufferAcquiredBuffers = getInt64< ISurfaceFlingerConfigs,
223 &ISurfaceFlingerConfigs::maxFrameBufferAcquiredBuffers>(2);
224
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -0600225 hasWideColorDisplay =
226 getBool<ISurfaceFlingerConfigs, &ISurfaceFlingerConfigs::hasWideColorDisplay>(false);
227
David Sodman99974d22017-11-28 12:04:33 -0800228 mPrimaryDispSync.init(SurfaceFlinger::hasSyncFramework, SurfaceFlinger::dispSyncPresentTimeOffset);
Saurabh Shahf4174532017-07-13 10:45:07 -0700229
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800230 // debugging stuff...
231 char value[PROPERTY_VALUE_MAX];
Mathias Agopian8afb7e32011-08-15 20:44:40 -0700232
Mathias Agopianb4b17302013-03-20 18:36:41 -0700233 property_get("ro.bq.gpu_to_cpu_unsupported", value, "0");
Mathias Agopian50210b92013-03-21 21:13:21 -0700234 mGpuToCpuSupported = !atoi(value);
Mathias Agopianb4b17302013-03-20 18:36:41 -0700235
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800236 property_get("debug.sf.showupdates", value, "0");
237 mDebugRegion = atoi(value);
Mathias Agopian8afb7e32011-08-15 20:44:40 -0700238
Mathias Agopian8afb7e32011-08-15 20:44:40 -0700239 property_get("debug.sf.ddms", value, "0");
240 mDebugDDMS = atoi(value);
241 if (mDebugDDMS) {
Keun young Park63f165f2012-08-31 10:53:36 -0700242 if (!startDdmConnection()) {
243 // start failed, and DDMS debugging not enabled
244 mDebugDDMS = 0;
245 }
Mathias Agopian8afb7e32011-08-15 20:44:40 -0700246 }
Mathias Agopianc1d359d2012-08-04 20:09:03 -0700247 ALOGI_IF(mDebugRegion, "showupdates enabled");
248 ALOGI_IF(mDebugDDMS, "DDMS debugging enabled");
Dan Stozac5da2712016-07-20 15:38:12 -0700249
250 property_get("debug.sf.disable_backpressure", value, "0");
251 mPropagateBackpressure = !atoi(value);
252 ALOGI_IF(!mPropagateBackpressure, "Disabling backpressure propagation");
Dan Stoza8cf150a2016-08-02 10:27:31 -0700253
Fabien Sanglard642b23d2017-02-09 12:29:39 -0800254 property_get("debug.sf.enable_hwc_vds", value, "0");
255 mUseHwcVirtualDisplays = atoi(value);
256 ALOGI_IF(!mUseHwcVirtualDisplays, "Enabling HWC virtual displays");
Fabien Sanglard63a5fcd2016-12-29 15:13:07 -0800257
Fabien Sanglardc65dafa2017-02-07 14:06:39 -0800258 property_get("ro.sf.disable_triple_buffer", value, "1");
259 mLayerTripleBufferingDisabled = atoi(value);
Fabien Sanglard63a5fcd2016-12-29 15:13:07 -0800260 ALOGI_IF(mLayerTripleBufferingDisabled, "Disabling Triple Buffering");
Romain Guy3054f002017-06-05 18:38:53 -0700261
Romain Guy11d63f42017-07-20 12:47:14 -0700262 // We should be reading 'persist.sys.sf.color_saturation' here
263 // but since /data may be encrypted, we need to wait until after vold
264 // comes online to attempt to read the property. The property is
265 // instead read after the boot animation
Kalle Raitaa099a242017-01-11 11:17:29 -0800266
267 if (useTrebleTestingOverride()) {
268 // Without the override SurfaceFlinger cannot connect to HIDL
269 // services that are not listed in the manifests. Considered
270 // deriving the setting from the set service name, but it
271 // would be brittle if the name that's not 'default' is used
272 // for production purposes later on.
273 setenv("TREBLE_TESTING_OVERRIDE", "true", true);
274 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800275}
276
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800277void SurfaceFlinger::onFirstRef()
278{
279 mEventQueue.init(this);
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800280}
281
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800282SurfaceFlinger::~SurfaceFlinger()
283{
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800284}
285
Dan Stozac7014012014-02-14 15:03:43 -0800286void SurfaceFlinger::binderDied(const wp<IBinder>& /* who */)
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800287{
288 // the window manager died on us. prepare its eulogy.
289
Andy McFadden13a082e2012-08-24 10:16:42 -0700290 // restore initial conditions (default device unblank, etc)
291 initializeDisplays();
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800292
293 // restart the boot-animation
Mathias Agopiana67e4182012-06-19 17:26:12 -0700294 startBootAnim();
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800295}
296
Robert Carr1db73f62016-12-21 12:58:51 -0800297static sp<ISurfaceComposerClient> initClient(const sp<Client>& client) {
Mathias Agopian96f08192010-06-02 23:28:45 -0700298 status_t err = client->initCheck();
299 if (err == NO_ERROR) {
Robert Carr1db73f62016-12-21 12:58:51 -0800300 return client;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800301 }
Robert Carr1db73f62016-12-21 12:58:51 -0800302 return nullptr;
303}
304
305sp<ISurfaceComposerClient> SurfaceFlinger::createConnection() {
306 return initClient(new Client(this));
307}
308
309sp<ISurfaceComposerClient> SurfaceFlinger::createScopedConnection(
310 const sp<IGraphicBufferProducer>& gbp) {
311 if (authenticateSurfaceTexture(gbp) == false) {
312 return nullptr;
313 }
314 const auto& layer = (static_cast<MonitoredProducer*>(gbp.get()))->getLayer();
315 if (layer == nullptr) {
316 return nullptr;
317 }
318
319 return initClient(new Client(this, layer));
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800320}
321
Jamie Gennisdd3cb842012-10-19 18:19:11 -0700322sp<IBinder> SurfaceFlinger::createDisplay(const String8& displayName,
323 bool secure)
Mathias Agopiane57f2922012-08-09 16:29:12 -0700324{
325 class DisplayToken : public BBinder {
326 sp<SurfaceFlinger> flinger;
327 virtual ~DisplayToken() {
328 // no more references, this display must be terminated
329 Mutex::Autolock _l(flinger->mStateLock);
330 flinger->mCurrentState.displays.removeItem(this);
331 flinger->setTransactionFlags(eDisplayTransactionNeeded);
332 }
333 public:
Chih-Hung Hsiehc4067912016-05-03 14:03:27 -0700334 explicit DisplayToken(const sp<SurfaceFlinger>& flinger)
Mathias Agopiane57f2922012-08-09 16:29:12 -0700335 : flinger(flinger) {
336 }
337 };
338
339 sp<BBinder> token = new DisplayToken(this);
340
341 Mutex::Autolock _l(mStateLock);
Pablo Ceballos53390e12015-08-04 11:25:59 -0700342 DisplayDeviceState info(DisplayDevice::DISPLAY_VIRTUAL, secure);
Andy McFadden8dfa92f2012-09-17 18:27:17 -0700343 info.displayName = displayName;
Mathias Agopiane57f2922012-08-09 16:29:12 -0700344 mCurrentState.displays.add(token, info);
Irvelffc9efc2016-07-27 15:16:37 -0700345 mInterceptor.saveDisplayCreation(info);
Mathias Agopiane57f2922012-08-09 16:29:12 -0700346 return token;
347}
348
Jesse Hall6c913be2013-08-08 12:15:49 -0700349void SurfaceFlinger::destroyDisplay(const sp<IBinder>& display) {
350 Mutex::Autolock _l(mStateLock);
351
352 ssize_t idx = mCurrentState.displays.indexOfKey(display);
353 if (idx < 0) {
354 ALOGW("destroyDisplay: invalid display token");
355 return;
356 }
357
358 const DisplayDeviceState& info(mCurrentState.displays.valueAt(idx));
359 if (!info.isVirtualDisplay()) {
360 ALOGE("destroyDisplay called for non-virtual display");
361 return;
362 }
Irvelffc9efc2016-07-27 15:16:37 -0700363 mInterceptor.saveDisplayDeletion(info.displayId);
Jesse Hall6c913be2013-08-08 12:15:49 -0700364 mCurrentState.displays.removeItemsAt(idx);
365 setTransactionFlags(eDisplayTransactionNeeded);
366}
367
Mathias Agopiane57f2922012-08-09 16:29:12 -0700368sp<IBinder> SurfaceFlinger::getBuiltInDisplay(int32_t id) {
Jesse Hall9e663de2013-08-16 14:28:37 -0700369 if (uint32_t(id) >= DisplayDevice::NUM_BUILTIN_DISPLAY_TYPES) {
Mathias Agopiane57f2922012-08-09 16:29:12 -0700370 ALOGE("getDefaultDisplay: id=%d is not a valid default display id", id);
Peiyong Lin566a3b42018-01-09 18:22:43 -0800371 return nullptr;
Mathias Agopiane57f2922012-08-09 16:29:12 -0700372 }
Jesse Hall692c7232012-11-08 15:41:56 -0800373 return mBuiltinDisplays[id];
Mathias Agopiane57f2922012-08-09 16:29:12 -0700374}
375
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800376void SurfaceFlinger::bootFinished()
377{
Wei Wangf9b05ee2017-07-19 20:59:39 -0700378 if (mStartPropertySetThread->join() != NO_ERROR) {
379 ALOGE("Join StartPropertySetThread failed!");
Wei Wangb254fa32017-01-31 17:43:23 -0800380 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800381 const nsecs_t now = systemTime();
382 const nsecs_t duration = now - mBootTime;
Steve Blocka19954a2012-01-04 20:05:49 +0000383 ALOGI("Boot is finished (%ld ms)", long(ns2ms(duration)) );
Mathias Agopian1f339ff2011-07-01 17:08:43 -0700384
385 // wait patiently for the window manager death
386 const String16 name("window");
387 sp<IBinder> window(defaultServiceManager()->getService(name));
388 if (window != 0) {
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700389 window->linkToDeath(static_cast<IBinder::DeathRecipient*>(this));
Mathias Agopian1f339ff2011-07-01 17:08:43 -0700390 }
391
Steven Thomas050b2c82017-03-06 11:45:16 -0800392 if (mVrFlinger) {
393 mVrFlinger->OnBootFinished();
394 }
395
Mathias Agopian1f339ff2011-07-01 17:08:43 -0700396 // stop boot animation
Mathias Agopiana67e4182012-06-19 17:26:12 -0700397 // formerly we would just kill the process, but we now ask it to exit so it
398 // can choose where to stop the animation.
399 property_set("service.bootanim.exit", "1");
Yusuke Sato0a688f52015-07-30 23:05:39 -0700400
401 const int LOGTAG_SF_STOP_BOOTANIM = 60110;
402 LOG_EVENT_LONG(LOGTAG_SF_STOP_BOOTANIM,
403 ns2ms(systemTime(SYSTEM_TIME_MONOTONIC)));
Romain Guy11d63f42017-07-20 12:47:14 -0700404
Thierry Strudel2924d012017-08-14 15:19:37 -0700405 sp<LambdaMessage> readProperties = new LambdaMessage([&]() {
Romain Guy11d63f42017-07-20 12:47:14 -0700406 readPersistentProperties();
407 });
Thierry Strudel2924d012017-08-14 15:19:37 -0700408 postMessageAsync(readProperties);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800409}
410
Mathias Agopian3f844832013-08-07 21:24:32 -0700411void SurfaceFlinger::deleteTextureAsync(uint32_t texture) {
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700412 class MessageDestroyGLTexture : public MessageBase {
Mathias Agopian3f844832013-08-07 21:24:32 -0700413 RenderEngine& engine;
414 uint32_t texture;
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700415 public:
Mathias Agopian3f844832013-08-07 21:24:32 -0700416 MessageDestroyGLTexture(RenderEngine& engine, uint32_t texture)
417 : engine(engine), texture(texture) {
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700418 }
419 virtual bool handler() {
Mathias Agopian3f844832013-08-07 21:24:32 -0700420 engine.deleteTextures(1, &texture);
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700421 return true;
422 }
423 };
Mathias Agopian3f844832013-08-07 21:24:32 -0700424 postMessageAsync(new MessageDestroyGLTexture(getRenderEngine(), texture));
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700425}
426
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700427class DispSyncSource : public VSyncSource, private DispSync::Callback {
428public:
Andy McFadden5167ec62014-05-22 13:08:43 -0700429 DispSyncSource(DispSync* dispSync, nsecs_t phaseOffset, bool traceVsync,
Tim Murray4a4e4a22016-04-19 16:29:23 +0000430 const char* name) :
431 mName(name),
Jamie Gennis0a645cc2013-10-14 20:52:46 -0700432 mValue(0),
Jamie Gennis0a645cc2013-10-14 20:52:46 -0700433 mTraceVsync(traceVsync),
Tim Murray4a4e4a22016-04-19 16:29:23 +0000434 mVsyncOnLabel(String8::format("VsyncOn-%s", name)),
435 mVsyncEventLabel(String8::format("VSYNC-%s", name)),
Dan Stozadb4ac3c2015-04-14 11:34:01 -0700436 mDispSync(dispSync),
437 mCallbackMutex(),
438 mCallback(),
439 mVsyncMutex(),
440 mPhaseOffset(phaseOffset),
441 mEnabled(false) {}
Mathias Agopiana4912602012-07-12 14:25:33 -0700442
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700443 virtual ~DispSyncSource() {}
444
445 virtual void setVSyncEnabled(bool enable) {
Dan Stozadb4ac3c2015-04-14 11:34:01 -0700446 Mutex::Autolock lock(mVsyncMutex);
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700447 if (enable) {
Tim Murray4a4e4a22016-04-19 16:29:23 +0000448 status_t err = mDispSync->addEventListener(mName, mPhaseOffset,
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700449 static_cast<DispSync::Callback*>(this));
450 if (err != NO_ERROR) {
451 ALOGE("error registering vsync callback: %s (%d)",
452 strerror(-err), err);
453 }
Andy McFadden5167ec62014-05-22 13:08:43 -0700454 //ATRACE_INT(mVsyncOnLabel.string(), 1);
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700455 } else {
456 status_t err = mDispSync->removeEventListener(
457 static_cast<DispSync::Callback*>(this));
458 if (err != NO_ERROR) {
459 ALOGE("error unregistering vsync callback: %s (%d)",
460 strerror(-err), err);
461 }
Andy McFadden5167ec62014-05-22 13:08:43 -0700462 //ATRACE_INT(mVsyncOnLabel.string(), 0);
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700463 }
Dan Stozadb4ac3c2015-04-14 11:34:01 -0700464 mEnabled = enable;
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700465 }
466
467 virtual void setCallback(const sp<VSyncSource::Callback>& callback) {
Dan Stozadb4ac3c2015-04-14 11:34:01 -0700468 Mutex::Autolock lock(mCallbackMutex);
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700469 mCallback = callback;
470 }
471
Dan Stozadb4ac3c2015-04-14 11:34:01 -0700472 virtual void setPhaseOffset(nsecs_t phaseOffset) {
473 Mutex::Autolock lock(mVsyncMutex);
474
475 // Normalize phaseOffset to [0, period)
476 auto period = mDispSync->getPeriod();
477 phaseOffset %= period;
478 if (phaseOffset < 0) {
479 // If we're here, then phaseOffset is in (-period, 0). After this
480 // operation, it will be in (0, period)
481 phaseOffset += period;
482 }
483 mPhaseOffset = phaseOffset;
484
485 // If we're not enabled, we don't need to mess with the listeners
486 if (!mEnabled) {
487 return;
488 }
489
490 // Remove the listener with the old offset
491 status_t err = mDispSync->removeEventListener(
492 static_cast<DispSync::Callback*>(this));
493 if (err != NO_ERROR) {
494 ALOGE("error unregistering vsync callback: %s (%d)",
495 strerror(-err), err);
496 }
497
498 // Add a listener with the new offset
Tim Murray4a4e4a22016-04-19 16:29:23 +0000499 err = mDispSync->addEventListener(mName, mPhaseOffset,
Dan Stozadb4ac3c2015-04-14 11:34:01 -0700500 static_cast<DispSync::Callback*>(this));
501 if (err != NO_ERROR) {
502 ALOGE("error registering vsync callback: %s (%d)",
503 strerror(-err), err);
504 }
505 }
506
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700507private:
508 virtual void onDispSyncEvent(nsecs_t when) {
509 sp<VSyncSource::Callback> callback;
510 {
Dan Stozadb4ac3c2015-04-14 11:34:01 -0700511 Mutex::Autolock lock(mCallbackMutex);
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700512 callback = mCallback;
513
Jamie Gennis0a645cc2013-10-14 20:52:46 -0700514 if (mTraceVsync) {
515 mValue = (mValue + 1) % 2;
Andy McFadden5167ec62014-05-22 13:08:43 -0700516 ATRACE_INT(mVsyncEventLabel.string(), mValue);
Jamie Gennis0a645cc2013-10-14 20:52:46 -0700517 }
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700518 }
519
Peiyong Lin566a3b42018-01-09 18:22:43 -0800520 if (callback != nullptr) {
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700521 callback->onVSyncEvent(when);
522 }
523 }
524
Tim Murray4a4e4a22016-04-19 16:29:23 +0000525 const char* const mName;
526
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700527 int mValue;
528
Jamie Gennis0a645cc2013-10-14 20:52:46 -0700529 const bool mTraceVsync;
Andy McFadden5167ec62014-05-22 13:08:43 -0700530 const String8 mVsyncOnLabel;
531 const String8 mVsyncEventLabel;
Jamie Gennis0a645cc2013-10-14 20:52:46 -0700532
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700533 DispSync* mDispSync;
Dan Stozadb4ac3c2015-04-14 11:34:01 -0700534
535 Mutex mCallbackMutex; // Protects the following
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700536 sp<VSyncSource::Callback> mCallback;
Dan Stozadb4ac3c2015-04-14 11:34:01 -0700537
538 Mutex mVsyncMutex; // Protects the following
539 nsecs_t mPhaseOffset;
540 bool mEnabled;
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700541};
542
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -0700543class InjectVSyncSource : public VSyncSource {
544public:
545 InjectVSyncSource() {}
546
547 virtual ~InjectVSyncSource() {}
548
549 virtual void setCallback(const sp<VSyncSource::Callback>& callback) {
550 std::lock_guard<std::mutex> lock(mCallbackMutex);
551 mCallback = callback;
552 }
553
554 virtual void onInjectSyncEvent(nsecs_t when) {
555 std::lock_guard<std::mutex> lock(mCallbackMutex);
Chia-I Wu90f669f2017-10-05 14:24:41 -0700556 if (mCallback) {
557 mCallback->onVSyncEvent(when);
558 }
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -0700559 }
560
561 virtual void setVSyncEnabled(bool) {}
562 virtual void setPhaseOffset(nsecs_t) {}
563
564private:
565 std::mutex mCallbackMutex; // Protects the following
566 sp<VSyncSource::Callback> mCallback;
567};
568
Wei Wangf9b05ee2017-07-19 20:59:39 -0700569// Do not call property_set on main thread which will be blocked by init
570// Use StartPropertySetThread instead.
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700571void SurfaceFlinger::init() {
Mathias Agopiana4912602012-07-12 14:25:33 -0700572 ALOGI( "SurfaceFlinger's main thread ready to run. "
573 "Initializing graphics H/W...");
574
Thierry Strudel2924d012017-08-14 15:19:37 -0700575 ALOGI("Phase offest NS: %" PRId64 "", vsyncPhaseOffsetNs);
Jiyong Park4b20c2e2017-01-14 19:45:11 +0900576
Steven Thomasb02664d2017-07-26 18:48:28 -0700577 Mutex::Autolock _l(mStateLock);
Dan Stoza9e56aa02015-11-02 13:00:03 -0800578
Steven Thomasb02664d2017-07-26 18:48:28 -0700579 // start the EventThread
David Sodman99974d22017-11-28 12:04:33 -0800580 sp<VSyncSource> vsyncSrc =
581 new DispSyncSource(&mPrimaryDispSync, SurfaceFlinger::vsyncPhaseOffsetNs, true, "app");
Steven Thomasb02664d2017-07-26 18:48:28 -0700582 mEventThread = new EventThread(vsyncSrc, *this, false);
David Sodman99974d22017-11-28 12:04:33 -0800583 sp<VSyncSource> sfVsyncSrc =
584 new DispSyncSource(&mPrimaryDispSync, SurfaceFlinger::sfVsyncPhaseOffsetNs, true, "sf");
Steven Thomasb02664d2017-07-26 18:48:28 -0700585 mSFEventThread = new EventThread(sfVsyncSrc, *this, true);
586 mEventQueue.setEventThread(mSFEventThread);
Dan Stoza9e56aa02015-11-02 13:00:03 -0800587
Steven Thomasb02664d2017-07-26 18:48:28 -0700588 // set EventThread and SFEventThread to SCHED_FIFO to minimize jitter
589 struct sched_param param = {0};
590 param.sched_priority = 2;
591 if (sched_setscheduler(mSFEventThread->getTid(), SCHED_FIFO, &param) != 0) {
592 ALOGE("Couldn't set SCHED_FIFO for SFEventThread");
593 }
594 if (sched_setscheduler(mEventThread->getTid(), SCHED_FIFO, &param) != 0) {
595 ALOGE("Couldn't set SCHED_FIFO for EventThread");
Dan Stoza9e56aa02015-11-02 13:00:03 -0800596 }
597
Steven Thomasb02664d2017-07-26 18:48:28 -0700598 // Get a RenderEngine for the given display / config (can't fail)
David Sodmanbc815282017-11-05 18:57:52 -0800599 getBE().mRenderEngine = RenderEngine::create(HAL_PIXEL_FORMAT_RGBA_8888,
Steven Thomasb02664d2017-07-26 18:48:28 -0700600 hasWideColorDisplay ? RenderEngine::WIDE_COLOR_SUPPORT : 0);
David Sodmanbc815282017-11-05 18:57:52 -0800601 LOG_ALWAYS_FATAL_IF(getBE().mRenderEngine == nullptr, "couldn't create RenderEngine");
Steven Thomasb02664d2017-07-26 18:48:28 -0700602
603 LOG_ALWAYS_FATAL_IF(mVrFlingerRequestsDisplay,
604 "Starting with vr flinger active is not currently supported.");
David Sodmanbc815282017-11-05 18:57:52 -0800605 getBE().mHwc.reset(new HWComposer(getBE().mHwcServiceName));
David Sodman105b7dc2017-11-04 20:28:14 -0700606 getBE().mHwc->registerCallback(this, getBE().mComposerSequenceId);
Lloyd Piqueba04e622017-12-14 17:11:26 -0800607 // Process any initial hotplug and resulting display changes.
608 processDisplayHotplugEventsLocked();
609 LOG_ALWAYS_FATAL_IF(!getBE().mHwc->isConnected(HWC_DISPLAY_PRIMARY),
610 "Registered composer callback but didn't create the default primary display");
Jesse Hall692c7232012-11-08 15:41:56 -0800611
Lloyd Piquefcd86612017-12-14 17:15:36 -0800612 // make the default display GLContext current so that we can create textures
613 // when creating Layers (which may happens before we render something)
614 getDefaultDisplayDeviceLocked()->makeCurrent();
615
Steven Thomas050b2c82017-03-06 11:45:16 -0800616 if (useVrFlinger) {
617 auto vrFlingerRequestDisplayCallback = [this] (bool requestDisplay) {
Steven Thomasbe6cbae2017-09-28 15:30:23 -0700618 // This callback is called from the vr flinger dispatch thread. We
619 // need to call signalTransaction(), which requires holding
620 // mStateLock when we're not on the main thread. Acquiring
621 // mStateLock from the vr flinger dispatch thread might trigger a
622 // deadlock in surface flinger (see b/66916578), so post a message
623 // to be handled on the main thread instead.
624 sp<LambdaMessage> message = new LambdaMessage([=]() {
625 ALOGI("VR request display mode: requestDisplay=%d", requestDisplay);
626 mVrFlingerRequestsDisplay = requestDisplay;
627 signalTransaction();
628 });
629 postMessageAsync(message);
Steven Thomas050b2c82017-03-06 11:45:16 -0800630 };
David Sodman105b7dc2017-11-04 20:28:14 -0700631 mVrFlinger = dvr::VrFlinger::Create(getBE().mHwc->getComposer(),
632 getBE().mHwc->getHwcDisplayId(HWC_DISPLAY_PRIMARY).value_or(0),
Steven Thomas6e8f7062017-11-22 14:15:29 -0800633 vrFlingerRequestDisplayCallback);
Steven Thomas050b2c82017-03-06 11:45:16 -0800634 if (!mVrFlinger) {
635 ALOGE("Failed to start vrflinger");
636 }
637 }
638
Jamie Gennisd1700752013-10-14 12:22:52 -0700639 mEventControlThread = new EventControlThread(this);
640 mEventControlThread->run("EventControl", PRIORITY_URGENT_DISPLAY);
641
Mathias Agopian92a979a2012-08-02 18:32:23 -0700642 // initialize our drawing state
643 mDrawingState = mCurrentState;
Mathias Agopian86303202012-07-24 22:46:10 -0700644
Andy McFadden13a082e2012-08-24 10:16:42 -0700645 // set initial conditions (e.g. unblank default device)
646 initializeDisplays();
647
David Sodmanbc815282017-11-05 18:57:52 -0800648 getBE().mRenderEngine->primeCache();
Dan Stoza4e637772016-07-28 13:31:51 -0700649
Wei Wangf9b05ee2017-07-19 20:59:39 -0700650 // Inform native graphics APIs whether the present timestamp is supported:
651 if (getHwComposer().hasCapability(
652 HWC2::Capability::PresentFenceIsNotReliable)) {
653 mStartPropertySetThread = new StartPropertySetThread(false);
654 } else {
655 mStartPropertySetThread = new StartPropertySetThread(true);
656 }
657
658 if (mStartPropertySetThread->Start() != NO_ERROR) {
659 ALOGE("Run StartPropertySetThread failed!");
Wei Wangb254fa32017-01-31 17:43:23 -0800660 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800661
Dan Stoza9e56aa02015-11-02 13:00:03 -0800662 ALOGV("Done initializing");
Mathias Agopian3ee454a2012-08-27 16:28:24 -0700663}
664
Romain Guy11d63f42017-07-20 12:47:14 -0700665void SurfaceFlinger::readPersistentProperties() {
666 char value[PROPERTY_VALUE_MAX];
667
668 property_get("persist.sys.sf.color_saturation", value, "1.0");
669 mSaturation = atof(value);
670 ALOGV("Saturation is set to %.2f", mSaturation);
Romain Guy54f154a2017-10-24 21:40:32 +0100671
672 property_get("persist.sys.sf.native_mode", value, "0");
673 mForceNativeColorMode = atoi(value) == 1;
674 if (mForceNativeColorMode) {
675 ALOGV("Forcing native color mode");
676 }
Romain Guy11d63f42017-07-20 12:47:14 -0700677}
678
Mathias Agopiana67e4182012-06-19 17:26:12 -0700679void SurfaceFlinger::startBootAnim() {
Wei Wangb254fa32017-01-31 17:43:23 -0800680 // Start boot animation service by setting a property mailbox
681 // if property setting thread is already running, Start() will be just a NOP
Wei Wangf9b05ee2017-07-19 20:59:39 -0700682 mStartPropertySetThread->Start();
Wei Wangb254fa32017-01-31 17:43:23 -0800683 // Wait until property was set
Wei Wangf9b05ee2017-07-19 20:59:39 -0700684 if (mStartPropertySetThread->join() != NO_ERROR) {
685 ALOGE("Join StartPropertySetThread failed!");
Wei Wangb254fa32017-01-31 17:43:23 -0800686 }
Mathias Agopiana67e4182012-06-19 17:26:12 -0700687}
688
Mathias Agopian875d8e12013-06-07 15:35:48 -0700689size_t SurfaceFlinger::getMaxTextureSize() const {
David Sodmanbc815282017-11-05 18:57:52 -0800690 return getBE().mRenderEngine->getMaxTextureSize();
Mathias Agopiana4912602012-07-12 14:25:33 -0700691}
692
Mathias Agopian875d8e12013-06-07 15:35:48 -0700693size_t SurfaceFlinger::getMaxViewportDims() const {
David Sodmanbc815282017-11-05 18:57:52 -0800694 return getBE().mRenderEngine->getMaxViewportDims();
Mathias Agopiana4912602012-07-12 14:25:33 -0700695}
696
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800697// ----------------------------------------------------------------------------
Mathias Agopiand0566bc2011-11-17 17:49:17 -0800698
Jamie Gennis582270d2011-08-17 18:19:00 -0700699bool SurfaceFlinger::authenticateSurfaceTexture(
Andy McFadden2adaf042012-12-18 09:49:45 -0800700 const sp<IGraphicBufferProducer>& bufferProducer) const {
Jamie Gennis134f0422011-03-08 12:18:54 -0800701 Mutex::Autolock _l(mStateLock);
Robert Carr0d480722017-01-10 16:42:54 -0800702 return authenticateSurfaceTextureLocked(bufferProducer);
703}
704
705bool SurfaceFlinger::authenticateSurfaceTextureLocked(
706 const sp<IGraphicBufferProducer>& bufferProducer) const {
Marco Nelissen097ca272014-11-14 08:01:01 -0800707 sp<IBinder> surfaceTextureBinder(IInterface::asBinder(bufferProducer));
Mathias Agopian67106042013-03-14 19:18:13 -0700708 return mGraphicBufferProducerList.indexOf(surfaceTextureBinder) >= 0;
Jamie Gennis134f0422011-03-08 12:18:54 -0800709}
710
Brian Anderson6b376712017-04-04 10:51:39 -0700711status_t SurfaceFlinger::getSupportedFrameTimestamps(
712 std::vector<FrameEvent>* outSupported) const {
713 *outSupported = {
714 FrameEvent::REQUESTED_PRESENT,
715 FrameEvent::ACQUIRE,
716 FrameEvent::LATCH,
717 FrameEvent::FIRST_REFRESH_START,
718 FrameEvent::LAST_REFRESH_START,
719 FrameEvent::GPU_COMPOSITION_DONE,
720 FrameEvent::DEQUEUE_READY,
721 FrameEvent::RELEASE,
722 };
Steven Thomas6d8110b2017-08-31 18:24:21 -0700723 ConditionalLock _l(mStateLock,
724 std::this_thread::get_id() != mMainThreadId);
Brian Anderson6b376712017-04-04 10:51:39 -0700725 if (!getHwComposer().hasCapability(
726 HWC2::Capability::PresentFenceIsNotReliable)) {
727 outSupported->push_back(FrameEvent::DISPLAY_PRESENT);
728 }
729 return NO_ERROR;
730}
731
Dan Stoza7f7da322014-05-02 15:26:25 -0700732status_t SurfaceFlinger::getDisplayConfigs(const sp<IBinder>& display,
733 Vector<DisplayInfo>* configs) {
Peiyong Lin566a3b42018-01-09 18:22:43 -0800734 if (configs == nullptr || display.get() == nullptr) {
Dan Stoza7f7da322014-05-02 15:26:25 -0700735 return BAD_VALUE;
736 }
737
Naseer Ahmed7aa0c472014-11-03 14:49:23 -0500738 if (!display.get())
739 return NAME_NOT_FOUND;
740
Jesse Hall692c7232012-11-08 15:41:56 -0800741 int32_t type = NAME_NOT_FOUND;
Jesse Hall9e663de2013-08-16 14:28:37 -0700742 for (int i=0 ; i<DisplayDevice::NUM_BUILTIN_DISPLAY_TYPES ; i++) {
Jesse Hall692c7232012-11-08 15:41:56 -0800743 if (display == mBuiltinDisplays[i]) {
Mathias Agopian1604f772012-09-18 21:54:42 -0700744 type = i;
745 break;
746 }
747 }
748
749 if (type < 0) {
750 return type;
Mathias Agopianc666cae2012-07-25 18:56:13 -0700751 }
Mathias Agopian8b736f12012-08-13 17:54:26 -0700752
Mathias Agopian8b736f12012-08-13 17:54:26 -0700753 // TODO: Not sure if display density should handled by SF any longer
754 class Density {
755 static int getDensityFromProperty(char const* propName) {
756 char property[PROPERTY_VALUE_MAX];
757 int density = 0;
Peiyong Lin566a3b42018-01-09 18:22:43 -0800758 if (property_get(propName, property, nullptr) > 0) {
Mathias Agopian8b736f12012-08-13 17:54:26 -0700759 density = atoi(property);
760 }
761 return density;
762 }
763 public:
764 static int getEmuDensity() {
765 return getDensityFromProperty("qemu.sf.lcd_density"); }
766 static int getBuildDensity() {
767 return getDensityFromProperty("ro.sf.lcd_density"); }
768 };
Mathias Agopian1604f772012-09-18 21:54:42 -0700769
Dan Stoza7f7da322014-05-02 15:26:25 -0700770 configs->clear();
Mathias Agopian1604f772012-09-18 21:54:42 -0700771
Steven Thomas6d8110b2017-08-31 18:24:21 -0700772 ConditionalLock _l(mStateLock,
773 std::this_thread::get_id() != mMainThreadId);
Dan Stoza9e56aa02015-11-02 13:00:03 -0800774 for (const auto& hwConfig : getHwComposer().getConfigs(type)) {
Dan Stoza7f7da322014-05-02 15:26:25 -0700775 DisplayInfo info = DisplayInfo();
776
Dan Stoza9e56aa02015-11-02 13:00:03 -0800777 float xdpi = hwConfig->getDpiX();
778 float ydpi = hwConfig->getDpiY();
Dan Stoza7f7da322014-05-02 15:26:25 -0700779
780 if (type == DisplayDevice::DISPLAY_PRIMARY) {
781 // The density of the device is provided by a build property
782 float density = Density::getBuildDensity() / 160.0f;
783 if (density == 0) {
784 // the build doesn't provide a density -- this is wrong!
785 // use xdpi instead
786 ALOGE("ro.sf.lcd_density must be defined as a build property");
787 density = xdpi / 160.0f;
788 }
789 if (Density::getEmuDensity()) {
790 // if "qemu.sf.lcd_density" is specified, it overrides everything
791 xdpi = ydpi = density = Density::getEmuDensity();
792 density /= 160.0f;
793 }
794 info.density = density;
795
796 // TODO: this needs to go away (currently needed only by webkit)
Steven Thomas6d8110b2017-08-31 18:24:21 -0700797 sp<const DisplayDevice> hw(getDefaultDisplayDeviceLocked());
Lloyd Pique2ae2b3b2017-12-14 17:18:17 -0800798 info.orientation = hw ? hw->getOrientation() : 0;
Dan Stoza7f7da322014-05-02 15:26:25 -0700799 } else {
800 // TODO: where should this value come from?
801 static const int TV_DENSITY = 213;
802 info.density = TV_DENSITY / 160.0f;
803 info.orientation = 0;
804 }
805
Dan Stoza9e56aa02015-11-02 13:00:03 -0800806 info.w = hwConfig->getWidth();
807 info.h = hwConfig->getHeight();
Dan Stoza7f7da322014-05-02 15:26:25 -0700808 info.xdpi = xdpi;
809 info.ydpi = ydpi;
Dan Stoza9e56aa02015-11-02 13:00:03 -0800810 info.fps = 1e9 / hwConfig->getVsyncPeriod();
Jiyong Park4b20c2e2017-01-14 19:45:11 +0900811 info.appVsyncOffset = vsyncPhaseOffsetNs;
Dan Stoza9e56aa02015-11-02 13:00:03 -0800812
Andy McFadden91b2ca82014-06-13 14:04:23 -0700813 // This is how far in advance a buffer must be queued for
814 // presentation at a given time. If you want a buffer to appear
815 // on the screen at time N, you must submit the buffer before
816 // (N - presentationDeadline).
817 //
818 // Normally it's one full refresh period (to give SF a chance to
819 // latch the buffer), but this can be reduced by configuring a
820 // DispSync offset. Any additional delays introduced by the hardware
821 // composer or panel must be accounted for here.
822 //
823 // We add an additional 1ms to allow for processing time and
824 // differences between the ideal and actual refresh rate.
Dan Stoza9e56aa02015-11-02 13:00:03 -0800825 info.presentationDeadline = hwConfig->getVsyncPeriod() -
Fabien Sanglard0cc19382017-03-06 11:54:40 -0800826 sfVsyncPhaseOffsetNs + 1000000;
Dan Stoza7f7da322014-05-02 15:26:25 -0700827
828 // All non-virtual displays are currently considered secure.
829 info.secure = true;
830
Michael Wright28f24d02016-07-12 13:30:53 -0700831 configs->push_back(info);
Mathias Agopian8b736f12012-08-13 17:54:26 -0700832 }
833
Dan Stoza7f7da322014-05-02 15:26:25 -0700834 return NO_ERROR;
835}
Jamie Gennisdd3cb842012-10-19 18:19:11 -0700836
Andreas Gampe89fd4f72014-11-13 14:18:56 -0800837status_t SurfaceFlinger::getDisplayStats(const sp<IBinder>& /* display */,
Lajos Molnar67d8bd62014-09-11 14:58:45 -0700838 DisplayStatInfo* stats) {
Peiyong Lin566a3b42018-01-09 18:22:43 -0800839 if (stats == nullptr) {
Lajos Molnar67d8bd62014-09-11 14:58:45 -0700840 return BAD_VALUE;
841 }
842
843 // FIXME for now we always return stats for the primary display
844 memset(stats, 0, sizeof(*stats));
845 stats->vsyncTime = mPrimaryDispSync.computeNextRefresh(0);
846 stats->vsyncPeriod = mPrimaryDispSync.getPeriod();
847 return NO_ERROR;
848}
849
Michael Lentine6c9e34a2014-07-14 13:48:55 -0700850int SurfaceFlinger::getActiveConfig(const sp<IBinder>& display) {
Peiyong Lin566a3b42018-01-09 18:22:43 -0800851 if (display == nullptr) {
852 ALOGE("%s : display is nullptr", __func__);
Jinguang Dong9f8b9ae2016-11-29 13:55:57 +0800853 return BAD_VALUE;
854 }
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -0700855
856 sp<const DisplayDevice> device(getDisplayDevice(display));
Peiyong Lin566a3b42018-01-09 18:22:43 -0800857 if (device != nullptr) {
Dan Stoza24a42e92015-03-09 10:04:11 -0700858 return device->getActiveConfig();
859 }
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -0700860
Dan Stoza24a42e92015-03-09 10:04:11 -0700861 return BAD_VALUE;
Dan Stoza7f7da322014-05-02 15:26:25 -0700862}
Jamie Gennisdd3cb842012-10-19 18:19:11 -0700863
Michael Lentine6c9e34a2014-07-14 13:48:55 -0700864void SurfaceFlinger::setActiveConfigInternal(const sp<DisplayDevice>& hw, int mode) {
865 ALOGD("Set active config mode=%d, type=%d flinger=%p", mode, hw->getDisplayType(),
866 this);
867 int32_t type = hw->getDisplayType();
868 int currentMode = hw->getActiveConfig();
869
870 if (mode == currentMode) {
871 ALOGD("Screen type=%d is already mode=%d", hw->getDisplayType(), mode);
872 return;
873 }
874
875 if (type >= DisplayDevice::NUM_BUILTIN_DISPLAY_TYPES) {
876 ALOGW("Trying to set config for virtual display");
877 return;
878 }
879
880 hw->setActiveConfig(mode);
881 getHwComposer().setActiveConfig(type, mode);
882}
883
884status_t SurfaceFlinger::setActiveConfig(const sp<IBinder>& display, int mode) {
885 class MessageSetActiveConfig: public MessageBase {
886 SurfaceFlinger& mFlinger;
887 sp<IBinder> mDisplay;
888 int mMode;
889 public:
890 MessageSetActiveConfig(SurfaceFlinger& flinger, const sp<IBinder>& disp,
891 int mode) :
892 mFlinger(flinger), mDisplay(disp) { mMode = mode; }
893 virtual bool handler() {
Michael Lentine7306c672014-07-30 13:00:37 -0700894 Vector<DisplayInfo> configs;
895 mFlinger.getDisplayConfigs(mDisplay, &configs);
Jesse Hall78442112014-08-07 22:43:06 -0700896 if (mMode < 0 || mMode >= static_cast<int>(configs.size())) {
Michael Lentine9ae79d82014-07-30 16:42:12 -0700897 ALOGE("Attempt to set active config = %d for display with %zu configs",
Michael Lentine7306c672014-07-30 13:00:37 -0700898 mMode, configs.size());
Michael Wright28f24d02016-07-12 13:30:53 -0700899 return true;
Michael Lentine7306c672014-07-30 13:00:37 -0700900 }
Michael Lentine6c9e34a2014-07-14 13:48:55 -0700901 sp<DisplayDevice> hw(mFlinger.getDisplayDevice(mDisplay));
Peiyong Lin566a3b42018-01-09 18:22:43 -0800902 if (hw == nullptr) {
Michael Lentine6c9e34a2014-07-14 13:48:55 -0700903 ALOGE("Attempt to set active config = %d for null display %p",
Michael Lentine7306c672014-07-30 13:00:37 -0700904 mMode, mDisplay.get());
Michael Lentine6c9e34a2014-07-14 13:48:55 -0700905 } else if (hw->getDisplayType() >= DisplayDevice::DISPLAY_VIRTUAL) {
906 ALOGW("Attempt to set active config = %d for virtual display",
907 mMode);
908 } else {
909 mFlinger.setActiveConfigInternal(hw, mMode);
910 }
911 return true;
912 }
913 };
914 sp<MessageBase> msg = new MessageSetActiveConfig(*this, display, mode);
915 postMessageSync(msg);
Mathias Agopian888c8222012-08-04 21:10:38 -0700916 return NO_ERROR;
Mathias Agopianc666cae2012-07-25 18:56:13 -0700917}
Michael Wright28f24d02016-07-12 13:30:53 -0700918status_t SurfaceFlinger::getDisplayColorModes(const sp<IBinder>& display,
919 Vector<android_color_mode_t>* outColorModes) {
920 if ((outColorModes == nullptr) || (display.get() == nullptr)) {
921 return BAD_VALUE;
922 }
923
924 if (!display.get()) {
925 return NAME_NOT_FOUND;
926 }
927
928 int32_t type = NAME_NOT_FOUND;
929 for (int i=0 ; i<DisplayDevice::NUM_BUILTIN_DISPLAY_TYPES ; i++) {
930 if (display == mBuiltinDisplays[i]) {
931 type = i;
932 break;
933 }
934 }
935
936 if (type < 0) {
937 return type;
938 }
939
Steven Thomas6d8110b2017-08-31 18:24:21 -0700940 std::vector<android_color_mode_t> modes;
941 {
942 ConditionalLock _l(mStateLock,
943 std::this_thread::get_id() != mMainThreadId);
944 modes = getHwComposer().getColorModes(type);
945 }
Michael Wright28f24d02016-07-12 13:30:53 -0700946 outColorModes->clear();
947 std::copy(modes.cbegin(), modes.cend(), std::back_inserter(*outColorModes));
948
949 return NO_ERROR;
950}
951
952android_color_mode_t SurfaceFlinger::getActiveColorMode(const sp<IBinder>& display) {
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -0700953 sp<const DisplayDevice> device(getDisplayDevice(display));
Michael Wright28f24d02016-07-12 13:30:53 -0700954 if (device != nullptr) {
955 return device->getActiveColorMode();
956 }
957 return static_cast<android_color_mode_t>(BAD_VALUE);
958}
959
960void SurfaceFlinger::setActiveColorModeInternal(const sp<DisplayDevice>& hw,
961 android_color_mode_t mode) {
Michael Wright28f24d02016-07-12 13:30:53 -0700962 int32_t type = hw->getDisplayType();
963 android_color_mode_t currentMode = hw->getActiveColorMode();
964
965 if (mode == currentMode) {
Michael Wright28f24d02016-07-12 13:30:53 -0700966 return;
967 }
968
969 if (type >= DisplayDevice::NUM_BUILTIN_DISPLAY_TYPES) {
970 ALOGW("Trying to set config for virtual display");
971 return;
972 }
973
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -0600974 ALOGD("Set active color mode: %s (%d), type=%d", decodeColorMode(mode).c_str(), mode,
975 hw->getDisplayType());
976
Michael Wright28f24d02016-07-12 13:30:53 -0700977 hw->setActiveColorMode(mode);
978 getHwComposer().setActiveColorMode(type, mode);
979}
980
981
982status_t SurfaceFlinger::setActiveColorMode(const sp<IBinder>& display,
983 android_color_mode_t colorMode) {
984 class MessageSetActiveColorMode: public MessageBase {
985 SurfaceFlinger& mFlinger;
986 sp<IBinder> mDisplay;
987 android_color_mode_t mMode;
988 public:
989 MessageSetActiveColorMode(SurfaceFlinger& flinger, const sp<IBinder>& disp,
990 android_color_mode_t mode) :
991 mFlinger(flinger), mDisplay(disp) { mMode = mode; }
992 virtual bool handler() {
993 Vector<android_color_mode_t> modes;
994 mFlinger.getDisplayColorModes(mDisplay, &modes);
995 bool exists = std::find(std::begin(modes), std::end(modes), mMode) != std::end(modes);
996 if (mMode < 0 || !exists) {
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -0600997 ALOGE("Attempt to set invalid active color mode %s (%d) for display %p",
998 decodeColorMode(mMode).c_str(), mMode, mDisplay.get());
Michael Wright28f24d02016-07-12 13:30:53 -0700999 return true;
1000 }
1001 sp<DisplayDevice> hw(mFlinger.getDisplayDevice(mDisplay));
1002 if (hw == nullptr) {
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -06001003 ALOGE("Attempt to set active color mode %s (%d) for null display %p",
1004 decodeColorMode(mMode).c_str(), mMode, mDisplay.get());
Michael Wright28f24d02016-07-12 13:30:53 -07001005 } else if (hw->getDisplayType() >= DisplayDevice::DISPLAY_VIRTUAL) {
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -06001006 ALOGW("Attempt to set active color mode %s %d for virtual display",
1007 decodeColorMode(mMode).c_str(), mMode);
Michael Wright28f24d02016-07-12 13:30:53 -07001008 } else {
1009 mFlinger.setActiveColorModeInternal(hw, mMode);
1010 }
1011 return true;
1012 }
1013 };
1014 sp<MessageBase> msg = new MessageSetActiveColorMode(*this, display, colorMode);
1015 postMessageSync(msg);
1016 return NO_ERROR;
1017}
Mathias Agopianc666cae2012-07-25 18:56:13 -07001018
Svetoslavd85084b2014-03-20 10:28:31 -07001019status_t SurfaceFlinger::clearAnimationFrameStats() {
1020 Mutex::Autolock _l(mStateLock);
1021 mAnimFrameTracker.clearStats();
1022 return NO_ERROR;
1023}
1024
1025status_t SurfaceFlinger::getAnimationFrameStats(FrameStats* outStats) const {
1026 Mutex::Autolock _l(mStateLock);
1027 mAnimFrameTracker.getStats(outStats);
1028 return NO_ERROR;
1029}
1030
Dan Stozac4f471e2016-03-24 09:31:08 -07001031status_t SurfaceFlinger::getHdrCapabilities(const sp<IBinder>& display,
1032 HdrCapabilities* outCapabilities) const {
1033 Mutex::Autolock _l(mStateLock);
1034
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001035 sp<const DisplayDevice> displayDevice(getDisplayDeviceLocked(display));
Dan Stozac4f471e2016-03-24 09:31:08 -07001036 if (displayDevice == nullptr) {
1037 ALOGE("getHdrCapabilities: Invalid display %p", displayDevice.get());
1038 return BAD_VALUE;
1039 }
1040
1041 std::unique_ptr<HdrCapabilities> capabilities =
David Sodman105b7dc2017-11-04 20:28:14 -07001042 getBE().mHwc->getHdrCapabilities(displayDevice->getHwcDisplayId());
Dan Stozac4f471e2016-03-24 09:31:08 -07001043 if (capabilities) {
Chia-I Wu5c6e4632018-01-11 08:54:38 -08001044 if (displayDevice->getWideColorSupport() && !displayDevice->getHdrSupport()) {
1045 // insert HDR10 as we will force client composition for HDR10
1046 // layers
1047 std::vector<int32_t> types = capabilities->getSupportedHdrTypes();
1048 types.push_back(HAL_HDR_HDR10);
1049
1050 *outCapabilities = HdrCapabilities(types,
1051 capabilities->getDesiredMaxLuminance(),
1052 capabilities->getDesiredMaxAverageLuminance(),
1053 capabilities->getDesiredMinLuminance());
1054 } else {
1055 *outCapabilities = std::move(*capabilities);
1056 }
Dan Stozac4f471e2016-03-24 09:31:08 -07001057 } else {
1058 return BAD_VALUE;
1059 }
1060
1061 return NO_ERROR;
1062}
1063
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -07001064status_t SurfaceFlinger::enableVSyncInjections(bool enable) {
Chia-I Wu90f669f2017-10-05 14:24:41 -07001065 sp<LambdaMessage> enableVSyncInjections = new LambdaMessage([&]() {
1066 Mutex::Autolock _l(mStateLock);
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -07001067
Chia-I Wu90f669f2017-10-05 14:24:41 -07001068 if (mInjectVSyncs == enable) {
1069 return;
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -07001070 }
Chia-I Wu90f669f2017-10-05 14:24:41 -07001071
1072 if (enable) {
1073 ALOGV("VSync Injections enabled");
1074 if (mVSyncInjector.get() == nullptr) {
1075 mVSyncInjector = new InjectVSyncSource();
1076 mInjectorEventThread = new EventThread(mVSyncInjector, *this, false);
1077 }
1078 mEventQueue.setEventThread(mInjectorEventThread);
1079 } else {
1080 ALOGV("VSync Injections disabled");
1081 mEventQueue.setEventThread(mSFEventThread);
1082 }
1083
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -07001084 mInjectVSyncs = enable;
Chia-I Wu90f669f2017-10-05 14:24:41 -07001085 });
1086 postMessageSync(enableVSyncInjections);
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -07001087 return NO_ERROR;
1088}
1089
1090status_t SurfaceFlinger::injectVSync(nsecs_t when) {
Chia-I Wu90f669f2017-10-05 14:24:41 -07001091 Mutex::Autolock _l(mStateLock);
1092
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -07001093 if (!mInjectVSyncs) {
1094 ALOGE("VSync Injections not enabled");
1095 return BAD_VALUE;
1096 }
1097 if (mInjectVSyncs && mInjectorEventThread.get() != nullptr) {
1098 ALOGV("Injecting VSync inside SurfaceFlinger");
1099 mVSyncInjector->onInjectSyncEvent(when);
1100 }
1101 return NO_ERROR;
1102}
1103
Kalle Raitaa099a242017-01-11 11:17:29 -08001104status_t SurfaceFlinger::getLayerDebugInfo(std::vector<LayerDebugInfo>* outLayers) const {
1105 IPCThreadState* ipc = IPCThreadState::self();
1106 const int pid = ipc->getCallingPid();
1107 const int uid = ipc->getCallingUid();
1108 if ((uid != AID_SHELL) &&
1109 !PermissionCache::checkPermission(sDump, pid, uid)) {
1110 ALOGE("Layer debug info permission denied for pid=%d, uid=%d", pid, uid);
1111 return PERMISSION_DENIED;
1112 }
1113
1114 // Try to acquire a lock for 1s, fail gracefully
1115 const status_t err = mStateLock.timedLock(s2ns(1));
1116 const bool locked = (err == NO_ERROR);
1117 if (!locked) {
1118 ALOGE("LayerDebugInfo: SurfaceFlinger unresponsive (%s [%d]) - exit", strerror(-err), err);
1119 return TIMED_OUT;
1120 }
1121
1122 outLayers->clear();
1123 mCurrentState.traverseInZOrder([&](Layer* layer) {
1124 outLayers->push_back(layer->getLayerDebugInfo());
1125 });
1126
1127 mStateLock.unlock();
1128 return NO_ERROR;
1129}
1130
Mathias Agopiand0566bc2011-11-17 17:49:17 -08001131// ----------------------------------------------------------------------------
1132
Jorim Jaggib1e2f8d2017-06-08 15:43:59 -07001133sp<IDisplayEventConnection> SurfaceFlinger::createDisplayEventConnection(
1134 ISurfaceComposer::VsyncSource vsyncSource) {
1135 if (vsyncSource == eVsyncSourceSurfaceFlinger) {
1136 return mSFEventThread->createEventConnection();
1137 } else {
1138 return mEventThread->createEventConnection();
1139 }
Mathias Agopianbb641242010-05-18 17:06:55 -07001140}
1141
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001142// ----------------------------------------------------------------------------
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001143
1144void SurfaceFlinger::waitForEvent() {
1145 mEventQueue.waitMessage();
1146}
1147
1148void SurfaceFlinger::signalTransaction() {
1149 mEventQueue.invalidate();
1150}
1151
1152void SurfaceFlinger::signalLayerUpdate() {
1153 mEventQueue.invalidate();
1154}
1155
1156void SurfaceFlinger::signalRefresh() {
Dan Stoza2b6d38e2017-06-01 16:40:30 -07001157 mRefreshPending = true;
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001158 mEventQueue.refresh();
1159}
1160
1161status_t SurfaceFlinger::postMessageAsync(const sp<MessageBase>& msg,
Dan Stozac7014012014-02-14 15:03:43 -08001162 nsecs_t reltime, uint32_t /* flags */) {
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001163 return mEventQueue.postMessage(msg, reltime);
1164}
1165
1166status_t SurfaceFlinger::postMessageSync(const sp<MessageBase>& msg,
Dan Stozac7014012014-02-14 15:03:43 -08001167 nsecs_t reltime, uint32_t /* flags */) {
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001168 status_t res = mEventQueue.postMessage(msg, reltime);
1169 if (res == NO_ERROR) {
1170 msg->wait();
1171 }
1172 return res;
1173}
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001174
Mathias Agopian4f4f0942013-08-19 17:26:18 -07001175void SurfaceFlinger::run() {
Mathias Agopian4f4f0942013-08-19 17:26:18 -07001176 do {
1177 waitForEvent();
1178 } while (true);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001179}
1180
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001181void SurfaceFlinger::enableHardwareVsync() {
1182 Mutex::Autolock _l(mHWVsyncLock);
Jesse Hall948fe0c2013-10-14 12:56:09 -07001183 if (!mPrimaryHWVsyncEnabled && mHWVsyncAvailable) {
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001184 mPrimaryDispSync.beginResync();
Jamie Gennisd1700752013-10-14 12:22:52 -07001185 //eventControl(HWC_DISPLAY_PRIMARY, SurfaceFlinger::EVENT_VSYNC, true);
1186 mEventControlThread->setVsyncEnabled(true);
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001187 mPrimaryHWVsyncEnabled = true;
Andy McFadden43601a22012-09-11 15:15:13 -07001188 }
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001189}
1190
Jesse Hall948fe0c2013-10-14 12:56:09 -07001191void SurfaceFlinger::resyncToHardwareVsync(bool makeAvailable) {
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001192 Mutex::Autolock _l(mHWVsyncLock);
1193
Jesse Hall948fe0c2013-10-14 12:56:09 -07001194 if (makeAvailable) {
1195 mHWVsyncAvailable = true;
1196 } else if (!mHWVsyncAvailable) {
Dan Stoza0a3c4d62016-04-19 11:56:20 -07001197 // Hardware vsync is not currently available, so abort the resync
1198 // attempt for now
Jesse Hall948fe0c2013-10-14 12:56:09 -07001199 return;
1200 }
1201
David Sodman105b7dc2017-11-04 20:28:14 -07001202 const auto& activeConfig = getBE().mHwc->getActiveConfig(HWC_DISPLAY_PRIMARY);
Dan Stoza9e56aa02015-11-02 13:00:03 -08001203 const nsecs_t period = activeConfig->getVsyncPeriod();
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001204
1205 mPrimaryDispSync.reset();
1206 mPrimaryDispSync.setPeriod(period);
1207
1208 if (!mPrimaryHWVsyncEnabled) {
1209 mPrimaryDispSync.beginResync();
Jamie Gennisd1700752013-10-14 12:22:52 -07001210 //eventControl(HWC_DISPLAY_PRIMARY, SurfaceFlinger::EVENT_VSYNC, true);
1211 mEventControlThread->setVsyncEnabled(true);
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001212 mPrimaryHWVsyncEnabled = true;
1213 }
1214}
1215
Jesse Hall948fe0c2013-10-14 12:56:09 -07001216void SurfaceFlinger::disableHardwareVsync(bool makeUnavailable) {
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001217 Mutex::Autolock _l(mHWVsyncLock);
1218 if (mPrimaryHWVsyncEnabled) {
Jamie Gennisd1700752013-10-14 12:22:52 -07001219 //eventControl(HWC_DISPLAY_PRIMARY, SurfaceFlinger::EVENT_VSYNC, false);
1220 mEventControlThread->setVsyncEnabled(false);
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001221 mPrimaryDispSync.endResync();
1222 mPrimaryHWVsyncEnabled = false;
1223 }
Jesse Hall948fe0c2013-10-14 12:56:09 -07001224 if (makeUnavailable) {
1225 mHWVsyncAvailable = false;
1226 }
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001227}
1228
Tim Murray4a4e4a22016-04-19 16:29:23 +00001229void SurfaceFlinger::resyncWithRateLimit() {
1230 static constexpr nsecs_t kIgnoreDelay = ms2ns(500);
Dan Stoza57164302017-05-08 14:03:54 -07001231
1232 // No explicit locking is needed here since EventThread holds a lock while calling this method
1233 static nsecs_t sLastResyncAttempted = 0;
1234 const nsecs_t now = systemTime();
1235 if (now - sLastResyncAttempted > kIgnoreDelay) {
Dan Stoza0a3c4d62016-04-19 11:56:20 -07001236 resyncToHardwareVsync(false);
Tim Murray4a4e4a22016-04-19 16:29:23 +00001237 }
Dan Stoza57164302017-05-08 14:03:54 -07001238 sLastResyncAttempted = now;
Tim Murray4a4e4a22016-04-19 16:29:23 +00001239}
1240
Steven Thomasb02664d2017-07-26 18:48:28 -07001241void SurfaceFlinger::onVsyncReceived(int32_t sequenceId,
1242 hwc2_display_t displayId, int64_t timestamp) {
Steven Thomas3cfac282017-02-06 12:29:30 -08001243 Mutex::Autolock lock(mStateLock);
Steven Thomasb02664d2017-07-26 18:48:28 -07001244 // Ignore any vsyncs from a previous hardware composer.
David Sodman105b7dc2017-11-04 20:28:14 -07001245 if (sequenceId != getBE().mComposerSequenceId) {
Steven Thomasb02664d2017-07-26 18:48:28 -07001246 return;
1247 }
1248
1249 int32_t type;
David Sodman105b7dc2017-11-04 20:28:14 -07001250 if (!getBE().mHwc->onVsync(displayId, timestamp, &type)) {
Steven Thomas3cfac282017-02-06 12:29:30 -08001251 return;
1252 }
1253
Jamie Gennisd1700752013-10-14 12:22:52 -07001254 bool needsHwVsync = false;
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001255
Jamie Gennisd1700752013-10-14 12:22:52 -07001256 { // Scope for the lock
1257 Mutex::Autolock _l(mHWVsyncLock);
Steven Thomasb02664d2017-07-26 18:48:28 -07001258 if (type == DisplayDevice::DISPLAY_PRIMARY && mPrimaryHWVsyncEnabled) {
Jamie Gennisd1700752013-10-14 12:22:52 -07001259 needsHwVsync = mPrimaryDispSync.addResyncSample(timestamp);
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001260 }
Mathias Agopian148994e2012-09-19 17:31:36 -07001261 }
Jamie Gennisd1700752013-10-14 12:22:52 -07001262
1263 if (needsHwVsync) {
1264 enableHardwareVsync();
1265 } else {
1266 disableHardwareVsync(false);
1267 }
Mathias Agopian148994e2012-09-19 17:31:36 -07001268}
1269
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001270void SurfaceFlinger::getCompositorTiming(CompositorTiming* compositorTiming) {
David Sodman99974d22017-11-28 12:04:33 -08001271 std::lock_guard<std::mutex> lock(getBE().mCompositorTimingLock);
1272 *compositorTiming = getBE().mCompositorTiming;
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001273}
1274
Lloyd Pique715a2c12017-12-14 17:18:08 -08001275void SurfaceFlinger::onHotplugReceived(int32_t sequenceId, hwc2_display_t display,
1276 HWC2::Connection connection) {
1277 ALOGV("onHotplugReceived(%d, %" PRIu64 ", %s)", sequenceId, display,
1278 connection == HWC2::Connection::Connected ? "connected" : "disconnected");
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001279
Lloyd Piqueba04e622017-12-14 17:11:26 -08001280 // Ignore events that do not have the right sequenceId.
1281 if (sequenceId != getBE().mComposerSequenceId) {
1282 return;
1283 }
1284
Steven Thomasb02664d2017-07-26 18:48:28 -07001285 // Only lock if we're not on the main thread. This function is normally
1286 // called on a hwbinder thread, but for the primary display it's called on
1287 // the main thread with the state lock already held, so don't attempt to
1288 // acquire it here.
Lloyd Piqueba04e622017-12-14 17:11:26 -08001289 ConditionalLock lock(mStateLock, std::this_thread::get_id() != mMainThreadId);
Steven Thomasb02664d2017-07-26 18:48:28 -07001290
Lloyd Pique715a2c12017-12-14 17:18:08 -08001291 mPendingHotplugEvents.emplace_back(HotplugEvent{display, connection});
Mathias Agopian9e2463e2012-09-21 18:26:16 -07001292
Lloyd Piqueba04e622017-12-14 17:11:26 -08001293 setTransactionFlags(eDisplayTransactionNeeded);
Mathias Agopian86303202012-07-24 22:46:10 -07001294}
1295
Steven Thomasb02664d2017-07-26 18:48:28 -07001296void SurfaceFlinger::onRefreshReceived(int sequenceId,
1297 hwc2_display_t /*display*/) {
Steven Thomas3cfac282017-02-06 12:29:30 -08001298 Mutex::Autolock lock(mStateLock);
David Sodman105b7dc2017-11-04 20:28:14 -07001299 if (sequenceId != getBE().mComposerSequenceId) {
Steven Thomasb02664d2017-07-26 18:48:28 -07001300 return;
Steven Thomas3cfac282017-02-06 12:29:30 -08001301 }
Steven Thomas6d8110b2017-08-31 18:24:21 -07001302 repaintEverythingLocked();
Steven Thomas3cfac282017-02-06 12:29:30 -08001303}
1304
Dan Stoza9e56aa02015-11-02 13:00:03 -08001305void SurfaceFlinger::setVsyncEnabled(int disp, int enabled) {
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001306 ATRACE_CALL();
Steven Thomasb02664d2017-07-26 18:48:28 -07001307 Mutex::Autolock lock(mStateLock);
Dan Stoza9e56aa02015-11-02 13:00:03 -08001308 getHwComposer().setVsyncEnabled(disp,
1309 enabled ? HWC2::Vsync::Enable : HWC2::Vsync::Disable);
Mathias Agopian86303202012-07-24 22:46:10 -07001310}
1311
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001312// Note: it is assumed the caller holds |mStateLock| when this is called
Steven Thomasb02664d2017-07-26 18:48:28 -07001313void SurfaceFlinger::resetDisplayState() {
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001314 disableHardwareVsync(true);
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001315 // Clear the drawing state so that the logic inside of
1316 // handleTransactionLocked will fire. It will determine the delta between
1317 // mCurrentState and mDrawingState and re-apply all changes when we make the
1318 // transition.
1319 mDrawingState.displays.clear();
Chia-I Wu7f402902017-11-09 12:51:10 -08001320 getRenderEngine().resetCurrentSurface();
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001321 mDisplays.clear();
1322}
1323
Steven Thomas050b2c82017-03-06 11:45:16 -08001324void SurfaceFlinger::updateVrFlinger() {
1325 if (!mVrFlinger)
1326 return;
1327 bool vrFlingerRequestsDisplay = mVrFlingerRequestsDisplay;
David Sodman105b7dc2017-11-04 20:28:14 -07001328 if (vrFlingerRequestsDisplay == getBE().mHwc->isUsingVrComposer()) {
Mark Urbanus209beca2017-02-23 11:16:04 -08001329 return;
1330 }
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001331
David Sodman105b7dc2017-11-04 20:28:14 -07001332 if (vrFlingerRequestsDisplay && !getBE().mHwc->getComposer()->isRemote()) {
Steven Thomasb02664d2017-07-26 18:48:28 -07001333 ALOGE("Vr flinger is only supported for remote hardware composer"
1334 " service connections. Ignoring request to transition to vr"
1335 " flinger.");
1336 mVrFlingerRequestsDisplay = false;
1337 return;
Mark Urbanus209beca2017-02-23 11:16:04 -08001338 }
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001339
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001340 Mutex::Autolock _l(mStateLock);
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001341
Steven Thomasb02664d2017-07-26 18:48:28 -07001342 int currentDisplayPowerMode = getDisplayDeviceLocked(
1343 mBuiltinDisplays[DisplayDevice::DISPLAY_PRIMARY])->getPowerMode();
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001344
Steven Thomasb02664d2017-07-26 18:48:28 -07001345 if (!vrFlingerRequestsDisplay) {
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001346 mVrFlinger->SeizeDisplayOwnership();
Steven Thomasb02664d2017-07-26 18:48:28 -07001347 }
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001348
Steven Thomasb02664d2017-07-26 18:48:28 -07001349 resetDisplayState();
David Sodman105b7dc2017-11-04 20:28:14 -07001350 getBE().mHwc.reset(); // Delete the current instance before creating the new one
David Sodmanbc815282017-11-05 18:57:52 -08001351 getBE().mHwc.reset(new HWComposer(vrFlingerRequestsDisplay ? "vr" : getBE().mHwcServiceName));
David Sodman105b7dc2017-11-04 20:28:14 -07001352 getBE().mHwc->registerCallback(this, ++getBE().mComposerSequenceId);
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001353
David Sodman105b7dc2017-11-04 20:28:14 -07001354 LOG_ALWAYS_FATAL_IF(!getBE().mHwc->getComposer()->isRemote(),
1355 "Switched to non-remote hardware composer");
Steven Thomasb02664d2017-07-26 18:48:28 -07001356
1357 if (vrFlingerRequestsDisplay) {
1358 mVrFlinger->GrantDisplayOwnership();
1359 } else {
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001360 enableHardwareVsync();
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001361 }
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001362
1363 mVisibleRegionsDirty = true;
1364 invalidateHwcGeometry();
1365
Alex Sakhartchouk096cb992017-06-05 10:37:57 -04001366 // Re-enable default display.
Steven Thomasb02664d2017-07-26 18:48:28 -07001367 sp<DisplayDevice> hw(getDisplayDeviceLocked(
1368 mBuiltinDisplays[DisplayDevice::DISPLAY_PRIMARY]));
1369 setPowerModeInternal(hw, currentDisplayPowerMode, /*stateLockHeld*/ true);
Alex Sakhartchouk096cb992017-06-05 10:37:57 -04001370
Steven Thomasb02664d2017-07-26 18:48:28 -07001371 // Reset the timing values to account for the period of the swapped in HWC
David Sodman105b7dc2017-11-04 20:28:14 -07001372 const auto& activeConfig = getBE().mHwc->getActiveConfig(HWC_DISPLAY_PRIMARY);
Steven Thomasb02664d2017-07-26 18:48:28 -07001373 const nsecs_t period = activeConfig->getVsyncPeriod();
1374 mAnimFrameTracker.setDisplayRefreshPeriod(period);
Alex Sakhartchouk096cb992017-06-05 10:37:57 -04001375
Steven Thomasb02664d2017-07-26 18:48:28 -07001376 // Use phase of 0 since phase is not known.
1377 // Use latency of 0, which will snap to the ideal latency.
1378 setCompositorTimingSnapped(0, period, 0);
Stephen Kiazyk82386cd2017-04-14 13:43:29 -07001379
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001380 android_atomic_or(1, &mRepaintEverything);
1381 setTransactionFlags(eDisplayTransactionNeeded);
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001382}
1383
Mathias Agopian4fec8732012-06-29 14:12:52 -07001384void SurfaceFlinger::onMessageReceived(int32_t what) {
Jamie Gennis1c8e95c2012-02-23 19:27:23 -08001385 ATRACE_CALL();
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001386 switch (what) {
Dan Stoza6b9454d2014-11-07 16:00:59 -08001387 case MessageQueue::INVALIDATE: {
Dan Stoza50182882016-07-08 12:02:20 -07001388 bool frameMissed = !mHadClientComposition &&
1389 mPreviousPresentFence != Fence::NO_FENCE &&
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001390 (mPreviousPresentFence->getSignalTime() ==
1391 Fence::SIGNAL_TIME_PENDING);
Dan Stoza50182882016-07-08 12:02:20 -07001392 ATRACE_INT("FrameMissed", static_cast<int>(frameMissed));
Dan Stozac5da2712016-07-20 15:38:12 -07001393 if (mPropagateBackpressure && frameMissed) {
Dan Stoza50182882016-07-08 12:02:20 -07001394 signalLayerUpdate();
1395 break;
1396 }
1397
Steven Thomas050b2c82017-03-06 11:45:16 -08001398 // Now that we're going to make it to the handleMessageTransaction()
1399 // call below it's safe to call updateVrFlinger(), which will
1400 // potentially trigger a display handoff.
1401 updateVrFlinger();
1402
Dan Stoza6b9454d2014-11-07 16:00:59 -08001403 bool refreshNeeded = handleMessageTransaction();
1404 refreshNeeded |= handleMessageInvalidate();
Dan Stoza58784442014-12-02 16:58:17 -08001405 refreshNeeded |= mRepaintEverything;
Dan Stoza6b9454d2014-11-07 16:00:59 -08001406 if (refreshNeeded) {
Dan Stoza58784442014-12-02 16:58:17 -08001407 // Signal a refresh if a transaction modified the window state,
1408 // a new buffer was latched, or if HWC has requested a full
1409 // repaint
Dan Stoza6b9454d2014-11-07 16:00:59 -08001410 signalRefresh();
1411 }
1412 break;
1413 }
1414 case MessageQueue::REFRESH: {
1415 handleMessageRefresh();
1416 break;
1417 }
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001418 }
1419}
1420
Dan Stoza6b9454d2014-11-07 16:00:59 -08001421bool SurfaceFlinger::handleMessageTransaction() {
Fabien Sanglardc8251eb2016-12-07 13:59:48 -08001422 uint32_t transactionFlags = peekTransactionFlags();
Mathias Agopian4fec8732012-06-29 14:12:52 -07001423 if (transactionFlags) {
Mathias Agopian87baae12012-07-31 12:38:26 -07001424 handleTransaction(transactionFlags);
Dan Stoza6b9454d2014-11-07 16:00:59 -08001425 return true;
Mathias Agopian4fec8732012-06-29 14:12:52 -07001426 }
Dan Stoza6b9454d2014-11-07 16:00:59 -08001427 return false;
Mathias Agopian4fec8732012-06-29 14:12:52 -07001428}
1429
Dan Stoza6b9454d2014-11-07 16:00:59 -08001430bool SurfaceFlinger::handleMessageInvalidate() {
Mathias Agopiancd60f992012-08-16 16:28:27 -07001431 ATRACE_CALL();
Dan Stoza6b9454d2014-11-07 16:00:59 -08001432 return handlePageFlip();
Mathias Agopian4fec8732012-06-29 14:12:52 -07001433}
1434
1435void SurfaceFlinger::handleMessageRefresh() {
Mathias Agopiancd60f992012-08-16 16:28:27 -07001436 ATRACE_CALL();
Dan Stoza14cd37c2015-07-09 12:43:33 -07001437
Dan Stoza2b6d38e2017-06-01 16:40:30 -07001438 mRefreshPending = false;
1439
Pablo Ceballos40845df2016-01-25 17:41:15 -08001440 nsecs_t refreshStartTime = systemTime(SYSTEM_TIME_MONOTONIC);
Dan Stoza14cd37c2015-07-09 12:43:33 -07001441
Brian Andersond6927fb2016-07-23 23:37:30 -07001442 preComposition(refreshStartTime);
Dan Stoza05dacfb2016-07-01 13:33:38 -07001443 rebuildLayerStacks();
1444 setUpHWComposer();
1445 doDebugFlashRegions();
Adrian Roos1e1a1282017-11-01 19:05:31 +01001446 doTracing("handleRefresh");
Dan Stoza05dacfb2016-07-01 13:33:38 -07001447 doComposition();
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001448 postComposition(refreshStartTime);
Dan Stoza05dacfb2016-07-01 13:33:38 -07001449
David Sodman105b7dc2017-11-04 20:28:14 -07001450 mPreviousPresentFence = getBE().mHwc->getPresentFence(HWC_DISPLAY_PRIMARY);
Dan Stozabfbffeb2016-07-21 14:49:33 -07001451
1452 mHadClientComposition = false;
1453 for (size_t displayId = 0; displayId < mDisplays.size(); ++displayId) {
1454 const sp<DisplayDevice>& displayDevice = mDisplays[displayId];
1455 mHadClientComposition = mHadClientComposition ||
David Sodman105b7dc2017-11-04 20:28:14 -07001456 getBE().mHwc->hasClientComposition(displayDevice->getHwcDisplayId());
Dan Stozabfbffeb2016-07-21 14:49:33 -07001457 }
Dan Stoza14cd37c2015-07-09 12:43:33 -07001458
Dan Stoza9e56aa02015-11-02 13:00:03 -08001459 mLayersWithQueuedFrames.clear();
Mathias Agopiancd60f992012-08-16 16:28:27 -07001460}
Mathias Agopian4fec8732012-06-29 14:12:52 -07001461
Mathias Agopiancd60f992012-08-16 16:28:27 -07001462void SurfaceFlinger::doDebugFlashRegions()
1463{
1464 // is debugging enabled
1465 if (CC_LIKELY(!mDebugRegion))
1466 return;
1467
1468 const bool repaintEverything = mRepaintEverything;
1469 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
1470 const sp<DisplayDevice>& hw(mDisplays[dpy]);
Prashant Malani2c9b11f2014-05-25 01:36:31 -07001471 if (hw->isDisplayOn()) {
Mathias Agopiancd60f992012-08-16 16:28:27 -07001472 // transform the dirty region into this screen's coordinate space
1473 const Region dirtyRegion(hw->getDirtyRegion(repaintEverything));
1474 if (!dirtyRegion.isEmpty()) {
1475 // redraw the whole screen
Chia-I Wub02087d2017-11-09 10:19:54 -08001476 doComposeSurfaces(hw);
Mathias Agopiancd60f992012-08-16 16:28:27 -07001477
1478 // and draw the dirty region
Mathias Agopiancd60f992012-08-16 16:28:27 -07001479 const int32_t height = hw->getHeight();
Mathias Agopian3f844832013-08-07 21:24:32 -07001480 RenderEngine& engine(getRenderEngine());
1481 engine.fillRegionWithColor(dirtyRegion, height, 1, 0, 1, 1);
1482
Mathias Agopianda27af92012-09-13 18:17:13 -07001483 hw->swapBuffers(getHwComposer());
Mathias Agopiancd60f992012-08-16 16:28:27 -07001484 }
1485 }
1486 }
1487
1488 postFramebuffer();
1489
1490 if (mDebugRegion > 1) {
1491 usleep(mDebugRegion * 1000);
1492 }
Mathias Agopianbb53b0e2012-09-24 21:27:29 -07001493
Dan Stoza9e56aa02015-11-02 13:00:03 -08001494 for (size_t displayId = 0; displayId < mDisplays.size(); ++displayId) {
Dan Stoza7bdf55a2016-06-17 11:29:01 -07001495 auto& displayDevice = mDisplays[displayId];
1496 if (!displayDevice->isDisplayOn()) {
1497 continue;
1498 }
1499
David Sodman105b7dc2017-11-04 20:28:14 -07001500 status_t result = displayDevice->prepareFrame(*getBE().mHwc);
1501 ALOGE_IF(result != NO_ERROR,
1502 "prepareFrame for display %zd failed:"
1503 " %d (%s)",
1504 displayId, result, strerror(-result));
Mathias Agopianbb53b0e2012-09-24 21:27:29 -07001505 }
Mathias Agopiancd60f992012-08-16 16:28:27 -07001506}
1507
Adrian Roos1e1a1282017-11-01 19:05:31 +01001508void SurfaceFlinger::doTracing(const char* where) {
1509 ATRACE_CALL();
1510 ATRACE_NAME(where);
1511 if (CC_UNLIKELY(mTracing.isEnabled())) {
Jorim Jaggi8e0af362017-11-14 16:28:28 +01001512 mTracing.traceLayers(where, dumpProtoInfo(LayerVector::StateSet::Drawing));
Adrian Roos1e1a1282017-11-01 19:05:31 +01001513 }
1514}
1515
Brian Andersond6927fb2016-07-23 23:37:30 -07001516void SurfaceFlinger::preComposition(nsecs_t refreshStartTime)
Mathias Agopiancd60f992012-08-16 16:28:27 -07001517{
Dan Stoza9e56aa02015-11-02 13:00:03 -08001518 ATRACE_CALL();
1519 ALOGV("preComposition");
1520
Mathias Agopiancd60f992012-08-16 16:28:27 -07001521 bool needExtraInvalidate = false;
Robert Carr2047fae2016-11-28 14:09:09 -08001522 mDrawingState.traverseInZOrder([&](Layer* layer) {
1523 if (layer->onPreComposition(refreshStartTime)) {
Mathias Agopiancd60f992012-08-16 16:28:27 -07001524 needExtraInvalidate = true;
1525 }
Robert Carr2047fae2016-11-28 14:09:09 -08001526 });
1527
Mathias Agopiancd60f992012-08-16 16:28:27 -07001528 if (needExtraInvalidate) {
1529 signalLayerUpdate();
1530 }
1531}
1532
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001533void SurfaceFlinger::updateCompositorTiming(
1534 nsecs_t vsyncPhase, nsecs_t vsyncInterval, nsecs_t compositeTime,
1535 std::shared_ptr<FenceTime>& presentFenceTime) {
1536 // Update queue of past composite+present times and determine the
1537 // most recently known composite to present latency.
David Sodman99974d22017-11-28 12:04:33 -08001538 getBE().mCompositePresentTimes.push({compositeTime, presentFenceTime});
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001539 nsecs_t compositeToPresentLatency = -1;
David Sodman99974d22017-11-28 12:04:33 -08001540 while (!getBE().mCompositePresentTimes.empty()) {
1541 SurfaceFlingerBE::CompositePresentTime& cpt = getBE().mCompositePresentTimes.front();
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001542 // Cached values should have been updated before calling this method,
1543 // which helps avoid duplicate syscalls.
1544 nsecs_t displayTime = cpt.display->getCachedSignalTime();
1545 if (displayTime == Fence::SIGNAL_TIME_PENDING) {
1546 break;
1547 }
1548 compositeToPresentLatency = displayTime - cpt.composite;
David Sodman99974d22017-11-28 12:04:33 -08001549 getBE().mCompositePresentTimes.pop();
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001550 }
1551
1552 // Don't let mCompositePresentTimes grow unbounded, just in case.
David Sodman99974d22017-11-28 12:04:33 -08001553 while (getBE().mCompositePresentTimes.size() > 16) {
1554 getBE().mCompositePresentTimes.pop();
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001555 }
1556
Brian Andersond0010582017-03-07 13:20:31 -08001557 setCompositorTimingSnapped(
1558 vsyncPhase, vsyncInterval, compositeToPresentLatency);
1559}
1560
1561void SurfaceFlinger::setCompositorTimingSnapped(nsecs_t vsyncPhase,
1562 nsecs_t vsyncInterval, nsecs_t compositeToPresentLatency) {
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001563 // Integer division and modulo round toward 0 not -inf, so we need to
1564 // treat negative and positive offsets differently.
Brian Andersond0010582017-03-07 13:20:31 -08001565 nsecs_t idealLatency = (sfVsyncPhaseOffsetNs > 0) ?
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001566 (vsyncInterval - (sfVsyncPhaseOffsetNs % vsyncInterval)) :
1567 ((-sfVsyncPhaseOffsetNs) % vsyncInterval);
1568
Brian Andersond0010582017-03-07 13:20:31 -08001569 // Just in case sfVsyncPhaseOffsetNs == -vsyncInterval.
1570 if (idealLatency <= 0) {
1571 idealLatency = vsyncInterval;
1572 }
1573
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001574 // Snap the latency to a value that removes scheduling jitter from the
1575 // composition and present times, which often have >1ms of jitter.
1576 // Reducing jitter is important if an app attempts to extrapolate
1577 // something (such as user input) to an accurate diasplay time.
1578 // Snapping also allows an app to precisely calculate sfVsyncPhaseOffsetNs
1579 // with (presentLatency % interval).
Brian Andersond0010582017-03-07 13:20:31 -08001580 nsecs_t bias = vsyncInterval / 2;
1581 int64_t extraVsyncs =
1582 (compositeToPresentLatency - idealLatency + bias) / vsyncInterval;
1583 nsecs_t snappedCompositeToPresentLatency = (extraVsyncs > 0) ?
1584 idealLatency + (extraVsyncs * vsyncInterval) : idealLatency;
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001585
David Sodman99974d22017-11-28 12:04:33 -08001586 std::lock_guard<std::mutex> lock(getBE().mCompositorTimingLock);
1587 getBE().mCompositorTiming.deadline = vsyncPhase - idealLatency;
1588 getBE().mCompositorTiming.interval = vsyncInterval;
1589 getBE().mCompositorTiming.presentLatency = snappedCompositeToPresentLatency;
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001590}
1591
1592void SurfaceFlinger::postComposition(nsecs_t refreshStartTime)
Mathias Agopiancd60f992012-08-16 16:28:27 -07001593{
Dan Stoza9e56aa02015-11-02 13:00:03 -08001594 ATRACE_CALL();
1595 ALOGV("postComposition");
1596
Brian Anderson3546a3f2016-07-14 11:51:14 -07001597 // Release any buffers which were replaced this frame
Brian Andersonf6386862016-10-31 16:34:13 -07001598 nsecs_t dequeueReadyTime = systemTime();
Brian Anderson3546a3f2016-07-14 11:51:14 -07001599 for (auto& layer : mLayersWithQueuedFrames) {
Brian Andersonf6386862016-10-31 16:34:13 -07001600 layer->releasePendingBuffer(dequeueReadyTime);
Brian Anderson3546a3f2016-07-14 11:51:14 -07001601 }
1602
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001603 // |mStateLock| not needed as we are on the main thread
1604 const sp<const DisplayDevice> hw(getDefaultDisplayDeviceLocked());
Brian Anderson3d4039d2016-09-23 16:31:30 -07001605
David Sodman73beded2017-11-15 11:56:06 -08001606 getBE().mGlCompositionDoneTimeline.updateSignalTimes();
Brian Anderson3d4039d2016-09-23 16:31:30 -07001607 std::shared_ptr<FenceTime> glCompositionDoneFenceTime;
Lloyd Pique2ae2b3b2017-12-14 17:18:17 -08001608 if (hw && getBE().mHwc->hasClientComposition(HWC_DISPLAY_PRIMARY)) {
Brian Anderson3d4039d2016-09-23 16:31:30 -07001609 glCompositionDoneFenceTime =
1610 std::make_shared<FenceTime>(hw->getClientTargetAcquireFence());
David Sodman73beded2017-11-15 11:56:06 -08001611 getBE().mGlCompositionDoneTimeline.push(glCompositionDoneFenceTime);
Brian Anderson3d4039d2016-09-23 16:31:30 -07001612 } else {
1613 glCompositionDoneFenceTime = FenceTime::NO_FENCE;
1614 }
Brian Anderson3d4039d2016-09-23 16:31:30 -07001615
David Sodman73beded2017-11-15 11:56:06 -08001616 getBE().mDisplayTimeline.updateSignalTimes();
David Sodman105b7dc2017-11-04 20:28:14 -07001617 sp<Fence> presentFence = getBE().mHwc->getPresentFence(HWC_DISPLAY_PRIMARY);
Brian Anderson4e606e32017-03-16 15:34:57 -07001618 auto presentFenceTime = std::make_shared<FenceTime>(presentFence);
David Sodman73beded2017-11-15 11:56:06 -08001619 getBE().mDisplayTimeline.push(presentFenceTime);
Brian Anderson3d4039d2016-09-23 16:31:30 -07001620
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001621 nsecs_t vsyncPhase = mPrimaryDispSync.computeNextRefresh(0);
1622 nsecs_t vsyncInterval = mPrimaryDispSync.getPeriod();
1623
1624 // We use the refreshStartTime which might be sampled a little later than
1625 // when we started doing work for this frame, but that should be okay
1626 // since updateCompositorTiming has snapping logic.
1627 updateCompositorTiming(
Brian Anderson4e606e32017-03-16 15:34:57 -07001628 vsyncPhase, vsyncInterval, refreshStartTime, presentFenceTime);
Brian Andersond0010582017-03-07 13:20:31 -08001629 CompositorTiming compositorTiming;
1630 {
David Sodman99974d22017-11-28 12:04:33 -08001631 std::lock_guard<std::mutex> lock(getBE().mCompositorTimingLock);
1632 compositorTiming = getBE().mCompositorTiming;
Brian Andersond0010582017-03-07 13:20:31 -08001633 }
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001634
Robert Carr2047fae2016-11-28 14:09:09 -08001635 mDrawingState.traverseInZOrder([&](Layer* layer) {
1636 bool frameLatched = layer->onPostComposition(glCompositionDoneFenceTime,
Brian Anderson4e606e32017-03-16 15:34:57 -07001637 presentFenceTime, compositorTiming);
Dan Stozae77c7662016-05-13 11:37:28 -07001638 if (frameLatched) {
Robert Carr2047fae2016-11-28 14:09:09 -08001639 recordBufferingStats(layer->getName().string(),
1640 layer->getOccupancyHistory(false));
Dan Stozae77c7662016-05-13 11:37:28 -07001641 }
Robert Carr2047fae2016-11-28 14:09:09 -08001642 });
Jamie Gennis4b0eba92013-02-05 13:30:24 -08001643
Brian Andersonfbc80ae2017-05-26 16:23:54 -07001644 if (presentFenceTime->isValid()) {
1645 if (mPrimaryDispSync.addPresentFence(presentFenceTime)) {
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001646 enableHardwareVsync();
1647 } else {
Jesse Hall948fe0c2013-10-14 12:56:09 -07001648 disableHardwareVsync(false);
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001649 }
1650 }
1651
Fabien Sanglardcbf153b2017-03-10 17:57:12 -08001652 if (!hasSyncFramework) {
Lloyd Pique2ae2b3b2017-12-14 17:18:17 -08001653 if (getBE().mHwc->isConnected(HWC_DISPLAY_PRIMARY) && hw->isDisplayOn()) {
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001654 enableHardwareVsync();
1655 }
1656 }
1657
Jamie Gennis4b0eba92013-02-05 13:30:24 -08001658 if (mAnimCompositionPending) {
1659 mAnimCompositionPending = false;
1660
Brian Anderson4e606e32017-03-16 15:34:57 -07001661 if (presentFenceTime->isValid()) {
Brian Anderson3d4039d2016-09-23 16:31:30 -07001662 mAnimFrameTracker.setActualPresentFence(
Brian Anderson4e606e32017-03-16 15:34:57 -07001663 std::move(presentFenceTime));
Lloyd Pique2ae2b3b2017-12-14 17:18:17 -08001664 } else if (getBE().mHwc->isConnected(HWC_DISPLAY_PRIMARY)) {
Jamie Gennis4b0eba92013-02-05 13:30:24 -08001665 // The HWC doesn't support present fences, so use the refresh
1666 // timestamp instead.
Dan Stoza9e56aa02015-11-02 13:00:03 -08001667 nsecs_t presentTime =
David Sodman105b7dc2017-11-04 20:28:14 -07001668 getBE().mHwc->getRefreshTimestamp(HWC_DISPLAY_PRIMARY);
Jamie Gennis4b0eba92013-02-05 13:30:24 -08001669 mAnimFrameTracker.setActualPresentTime(presentTime);
1670 }
1671 mAnimFrameTracker.advanceFrame();
1672 }
Dan Stozab90cf072015-03-05 11:05:59 -08001673
Lloyd Pique2ae2b3b2017-12-14 17:18:17 -08001674 if (getBE().mHwc->isConnected(HWC_DISPLAY_PRIMARY) &&
1675 hw->getPowerMode() == HWC_POWER_MODE_OFF) {
Dan Stozab90cf072015-03-05 11:05:59 -08001676 return;
1677 }
1678
1679 nsecs_t currentTime = systemTime();
1680 if (mHasPoweredOff) {
1681 mHasPoweredOff = false;
1682 } else {
David Sodman4a36e932017-11-07 14:29:47 -08001683 nsecs_t elapsedTime = currentTime - getBE().mLastSwapTime;
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001684 size_t numPeriods = static_cast<size_t>(elapsedTime / vsyncInterval);
David Sodman4a36e932017-11-07 14:29:47 -08001685 if (numPeriods < SurfaceFlingerBE::NUM_BUCKETS - 1) {
1686 getBE().mFrameBuckets[numPeriods] += elapsedTime;
Dan Stozab90cf072015-03-05 11:05:59 -08001687 } else {
David Sodman4a36e932017-11-07 14:29:47 -08001688 getBE().mFrameBuckets[SurfaceFlingerBE::NUM_BUCKETS - 1] += elapsedTime;
Dan Stozab90cf072015-03-05 11:05:59 -08001689 }
David Sodman4a36e932017-11-07 14:29:47 -08001690 getBE().mTotalTime += elapsedTime;
Dan Stozab90cf072015-03-05 11:05:59 -08001691 }
David Sodman4a36e932017-11-07 14:29:47 -08001692 getBE().mLastSwapTime = currentTime;
Mathias Agopiancd60f992012-08-16 16:28:27 -07001693}
1694
1695void SurfaceFlinger::rebuildLayerStacks() {
Dan Stoza9e56aa02015-11-02 13:00:03 -08001696 ATRACE_CALL();
1697 ALOGV("rebuildLayerStacks");
1698
Mathias Agopiancd60f992012-08-16 16:28:27 -07001699 // rebuild the visible layer list per screen
Jeff Sharkey76488112017-02-27 14:15:18 -07001700 if (CC_UNLIKELY(mVisibleRegionsDirty)) {
Siarhei Vishniakoufc2589e2017-09-21 15:35:13 -07001701 ATRACE_NAME("rebuildLayerStacks VR Dirty");
Jeff Sharkey76488112017-02-27 14:15:18 -07001702 mVisibleRegionsDirty = false;
1703 invalidateHwcGeometry();
Fabien Sanglard3beb7112017-02-24 17:33:52 -08001704
Jeff Sharkey76488112017-02-27 14:15:18 -07001705 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
1706 Region opaqueRegion;
1707 Region dirtyRegion;
1708 Vector<sp<Layer>> layersSortedByZ;
Chia-I Wu83806892017-11-16 10:50:20 -08001709 Vector<sp<Layer>> layersNeedingFences;
Jeff Sharkey76488112017-02-27 14:15:18 -07001710 const sp<DisplayDevice>& displayDevice(mDisplays[dpy]);
1711 const Transform& tr(displayDevice->getTransform());
1712 const Rect bounds(displayDevice->getBounds());
1713 if (displayDevice->isDisplayOn()) {
Chia-I Wuab0c3192017-08-01 11:29:00 -07001714 computeVisibleRegions(displayDevice, dirtyRegion, opaqueRegion);
Fabien Sanglard3beb7112017-02-24 17:33:52 -08001715
Jeff Sharkey76488112017-02-27 14:15:18 -07001716 mDrawingState.traverseInZOrder([&](Layer* layer) {
Chia-I Wu83806892017-11-16 10:50:20 -08001717 bool hwcLayerDestroyed = false;
Chia-I Wuab0c3192017-08-01 11:29:00 -07001718 if (layer->belongsToDisplay(displayDevice->getLayerStack(),
1719 displayDevice->isPrimary())) {
Jeff Sharkey76488112017-02-27 14:15:18 -07001720 Region drawRegion(tr.transform(
1721 layer->visibleNonTransparentRegion));
1722 drawRegion.andSelf(bounds);
1723 if (!drawRegion.isEmpty()) {
1724 layersSortedByZ.add(layer);
1725 } else {
1726 // Clear out the HWC layer if this layer was
1727 // previously visible, but no longer is
Chia-I Wu83806892017-11-16 10:50:20 -08001728 hwcLayerDestroyed = layer->destroyHwcLayer(
Steven Thomasb02664d2017-07-26 18:48:28 -07001729 displayDevice->getHwcDisplayId());
Jeff Sharkey76488112017-02-27 14:15:18 -07001730 }
Fabien Sanglard06a76c02017-03-03 11:19:30 -08001731 } else {
Fabien Sanglard82260512017-03-03 14:58:52 -08001732 // WM changes displayDevice->layerStack upon sleep/awake.
1733 // Here we make sure we delete the HWC layers even if
1734 // WM changed their layer stack.
Chia-I Wu83806892017-11-16 10:50:20 -08001735 hwcLayerDestroyed = layer->destroyHwcLayer(
1736 displayDevice->getHwcDisplayId());
1737 }
1738
1739 // If a layer is not going to get a release fence because
1740 // it is invisible, but it is also going to release its
1741 // old buffer, add it to the list of layers needing
1742 // fences.
1743 if (hwcLayerDestroyed) {
1744 auto found = std::find(mLayersWithQueuedFrames.cbegin(),
1745 mLayersWithQueuedFrames.cend(), layer);
1746 if (found != mLayersWithQueuedFrames.cend()) {
1747 layersNeedingFences.add(layer);
1748 }
Fabien Sanglard3beb7112017-02-24 17:33:52 -08001749 }
Jeff Sharkey76488112017-02-27 14:15:18 -07001750 });
1751 }
1752 displayDevice->setVisibleLayersSortedByZ(layersSortedByZ);
Chia-I Wu83806892017-11-16 10:50:20 -08001753 displayDevice->setLayersNeedingFences(layersNeedingFences);
Jeff Sharkey76488112017-02-27 14:15:18 -07001754 displayDevice->undefinedRegion.set(bounds);
1755 displayDevice->undefinedRegion.subtractSelf(
1756 tr.transform(opaqueRegion));
1757 displayDevice->dirtyRegion.orSelf(dirtyRegion);
Fabien Sanglard3beb7112017-02-24 17:33:52 -08001758 }
Fabien Sanglard3beb7112017-02-24 17:33:52 -08001759 }
Mathias Agopiancd60f992012-08-16 16:28:27 -07001760}
Mathias Agopian3b1d2b62012-07-11 13:48:17 -07001761
Romain Guy0147a172017-06-01 13:53:56 -07001762mat4 SurfaceFlinger::computeSaturationMatrix() const {
1763 if (mSaturation == 1.0f) {
1764 return mat4();
1765 }
1766
1767 // Rec.709 luma coefficients
1768 float3 luminance{0.213f, 0.715f, 0.072f};
1769 luminance *= 1.0f - mSaturation;
1770 return mat4(
1771 vec4{luminance.r + mSaturation, luminance.r, luminance.r, 0.0f},
1772 vec4{luminance.g, luminance.g + mSaturation, luminance.g, 0.0f},
1773 vec4{luminance.b, luminance.b, luminance.b + mSaturation, 0.0f},
1774 vec4{0.0f, 0.0f, 0.0f, 1.0f}
1775 );
1776}
1777
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -06001778// pickColorMode translates a given dataspace into the best available color mode.
1779// Currently only support sRGB and Display-P3.
Romain Guy0147a172017-06-01 13:53:56 -07001780android_color_mode SurfaceFlinger::pickColorMode(android_dataspace dataSpace) const {
Romain Guy54f154a2017-10-24 21:40:32 +01001781 if (mForceNativeColorMode) {
1782 return HAL_COLOR_MODE_NATIVE;
1783 }
1784
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -06001785 switch (dataSpace) {
1786 // treat Unknown as regular SRGB buffer, since that's what the rest of the
1787 // system expects.
1788 case HAL_DATASPACE_UNKNOWN:
1789 case HAL_DATASPACE_SRGB:
1790 case HAL_DATASPACE_V0_SRGB:
1791 return HAL_COLOR_MODE_SRGB;
1792 break;
1793
1794 case HAL_DATASPACE_DISPLAY_P3:
1795 return HAL_COLOR_MODE_DISPLAY_P3;
1796 break;
1797
1798 default:
1799 // TODO (courtneygo): Do we want to assert an error here?
1800 ALOGE("No color mode mapping for %s (%#x)", dataspaceDetails(dataSpace).c_str(),
1801 dataSpace);
1802 return HAL_COLOR_MODE_SRGB;
1803 break;
1804 }
1805}
1806
Romain Guy0147a172017-06-01 13:53:56 -07001807android_dataspace SurfaceFlinger::bestTargetDataSpace(
Chia-I Wu5c6e4632018-01-11 08:54:38 -08001808 android_dataspace a, android_dataspace b, bool hasHdr) const {
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -06001809 // Only support sRGB and Display-P3 right now.
1810 if (a == HAL_DATASPACE_DISPLAY_P3 || b == HAL_DATASPACE_DISPLAY_P3) {
1811 return HAL_DATASPACE_DISPLAY_P3;
1812 }
Romain Guy88d37dd2017-05-26 17:57:05 -07001813 if (a == HAL_DATASPACE_V0_SCRGB_LINEAR || b == HAL_DATASPACE_V0_SCRGB_LINEAR) {
1814 return HAL_DATASPACE_DISPLAY_P3;
1815 }
1816 if (a == HAL_DATASPACE_V0_SCRGB || b == HAL_DATASPACE_V0_SCRGB) {
1817 return HAL_DATASPACE_DISPLAY_P3;
1818 }
Chia-I Wu5c6e4632018-01-11 08:54:38 -08001819 if (!hasHdr && (a == HAL_DATASPACE_BT2020_PQ || b == HAL_DATASPACE_BT2020_PQ)) {
1820 return HAL_DATASPACE_DISPLAY_P3;
1821 }
Romain Guy88d37dd2017-05-26 17:57:05 -07001822
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -06001823 return HAL_DATASPACE_V0_SRGB;
1824}
1825
Mathias Agopiancd60f992012-08-16 16:28:27 -07001826void SurfaceFlinger::setUpHWComposer() {
Dan Stoza9e56aa02015-11-02 13:00:03 -08001827 ATRACE_CALL();
1828 ALOGV("setUpHWComposer");
1829
Jesse Hall028dc8f2013-08-20 16:35:32 -07001830 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
Jesse Hallb7a05492014-08-14 15:45:06 -07001831 bool dirty = !mDisplays[dpy]->getDirtyRegion(false).isEmpty();
1832 bool empty = mDisplays[dpy]->getVisibleLayersSortedByZ().size() == 0;
1833 bool wasEmpty = !mDisplays[dpy]->lastCompositionHadVisibleLayers;
1834
1835 // If nothing has changed (!dirty), don't recompose.
1836 // If something changed, but we don't currently have any visible layers,
1837 // and didn't when we last did a composition, then skip it this time.
1838 // The second rule does two things:
1839 // - When all layers are removed from a display, we'll emit one black
1840 // frame, then nothing more until we get new layers.
1841 // - When a display is created with a private layer stack, we won't
1842 // emit any black frames until a layer is added to the layer stack.
1843 bool mustRecompose = dirty && !(empty && wasEmpty);
1844
1845 ALOGV_IF(mDisplays[dpy]->getDisplayType() == DisplayDevice::DISPLAY_VIRTUAL,
1846 "dpy[%zu]: %s composition (%sdirty %sempty %swasEmpty)", dpy,
1847 mustRecompose ? "doing" : "skipping",
1848 dirty ? "+" : "-",
1849 empty ? "+" : "-",
1850 wasEmpty ? "+" : "-");
1851
Dan Stoza71433162014-02-04 16:22:36 -08001852 mDisplays[dpy]->beginFrame(mustRecompose);
Jesse Hallb7a05492014-08-14 15:45:06 -07001853
1854 if (mustRecompose) {
1855 mDisplays[dpy]->lastCompositionHadVisibleLayers = !empty;
1856 }
Jesse Hall028dc8f2013-08-20 16:35:32 -07001857 }
1858
Dan Stoza9e56aa02015-11-02 13:00:03 -08001859 // build the h/w work list
1860 if (CC_UNLIKELY(mGeometryInvalid)) {
1861 mGeometryInvalid = false;
1862 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
1863 sp<const DisplayDevice> displayDevice(mDisplays[dpy]);
1864 const auto hwcId = displayDevice->getHwcDisplayId();
1865 if (hwcId >= 0) {
1866 const Vector<sp<Layer>>& currentLayers(
1867 displayDevice->getVisibleLayersSortedByZ());
Robert Carrae060832016-11-28 10:51:00 -08001868 for (size_t i = 0; i < currentLayers.size(); i++) {
Robert Carr1f0a16a2016-10-24 16:27:39 -07001869 const auto& layer = currentLayers[i];
Dan Stoza9e56aa02015-11-02 13:00:03 -08001870 if (!layer->hasHwcLayer(hwcId)) {
David Sodman105b7dc2017-11-04 20:28:14 -07001871 if (!layer->createHwcLayer(getBE().mHwc.get(), hwcId)) {
Dan Stoza9e56aa02015-11-02 13:00:03 -08001872 layer->forceClientComposition(hwcId);
Dan Stoza9e56aa02015-11-02 13:00:03 -08001873 continue;
Jamie Gennisa4310c82012-09-25 20:26:00 -07001874 }
1875 }
Jamie Gennisa4310c82012-09-25 20:26:00 -07001876
Robert Carrae060832016-11-28 10:51:00 -08001877 layer->setGeometry(displayDevice, i);
Dan Stoza9f26a9c2016-06-22 14:51:09 -07001878 if (mDebugDisableHWC || mDebugRegion) {
Dan Stoza9e56aa02015-11-02 13:00:03 -08001879 layer->forceClientComposition(hwcId);
Riley Andrews03414a12014-07-01 14:22:59 -07001880 }
1881 }
1882 }
1883 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08001884 }
Riley Andrews03414a12014-07-01 14:22:59 -07001885
Dan Stoza9f26a9c2016-06-22 14:51:09 -07001886
Romain Guy0147a172017-06-01 13:53:56 -07001887 mat4 colorMatrix = mColorMatrix * computeSaturationMatrix() * mDaltonizer();
Dan Stoza9f26a9c2016-06-22 14:51:09 -07001888
Dan Stoza9e56aa02015-11-02 13:00:03 -08001889 // Set the per-frame data
1890 for (size_t displayId = 0; displayId < mDisplays.size(); ++displayId) {
1891 auto& displayDevice = mDisplays[displayId];
1892 const auto hwcId = displayDevice->getHwcDisplayId();
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -06001893
Dan Stoza9e56aa02015-11-02 13:00:03 -08001894 if (hwcId < 0) {
1895 continue;
Jesse Hall38efe862013-04-06 23:12:29 -07001896 }
Dan Stoza9f26a9c2016-06-22 14:51:09 -07001897 if (colorMatrix != mPreviousColorMatrix) {
David Sodman105b7dc2017-11-04 20:28:14 -07001898 status_t result = getBE().mHwc->setColorTransform(hwcId, colorMatrix);
Dan Stoza9f26a9c2016-06-22 14:51:09 -07001899 ALOGE_IF(result != NO_ERROR, "Failed to set color transform on "
1900 "display %zd: %d", displayId, result);
1901 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08001902 for (auto& layer : displayDevice->getVisibleLayersSortedByZ()) {
Chia-I Wu5c6e4632018-01-11 08:54:38 -08001903 if (layer->getDataSpace() == HAL_DATASPACE_BT2020_PQ &&
1904 !displayDevice->getHdrSupport()) {
1905 layer->forceClientComposition(hwcId);
1906 }
1907
chaviwc9232ed2017-11-14 15:31:15 -08001908 if (layer->getForceClientComposition(hwcId)) {
1909 ALOGV("[%s] Requesting Client composition", layer->getName().string());
1910 layer->setCompositionType(hwcId, HWC2::Composition::Client);
1911 continue;
1912 }
1913
Dan Stoza9e56aa02015-11-02 13:00:03 -08001914 layer->setPerFrameData(displayDevice);
1915 }
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -06001916
1917 if (hasWideColorDisplay) {
1918 android_color_mode newColorMode;
1919 android_dataspace newDataSpace = HAL_DATASPACE_V0_SRGB;
1920
1921 for (auto& layer : displayDevice->getVisibleLayersSortedByZ()) {
Chia-I Wu5c6e4632018-01-11 08:54:38 -08001922 newDataSpace = bestTargetDataSpace(layer->getDataSpace(), newDataSpace,
1923 displayDevice->getHdrSupport());
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -06001924 ALOGV("layer: %s, dataspace: %s (%#x), newDataSpace: %s (%#x)",
1925 layer->getName().string(), dataspaceDetails(layer->getDataSpace()).c_str(),
1926 layer->getDataSpace(), dataspaceDetails(newDataSpace).c_str(), newDataSpace);
1927 }
1928 newColorMode = pickColorMode(newDataSpace);
1929
Thierry Strudel2924d012017-08-14 15:19:37 -07001930 setActiveColorModeInternal(displayDevice, newColorMode);
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -06001931 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08001932 }
1933
Dan Stoza9f26a9c2016-06-22 14:51:09 -07001934 mPreviousColorMatrix = colorMatrix;
1935
Dan Stoza9e56aa02015-11-02 13:00:03 -08001936 for (size_t displayId = 0; displayId < mDisplays.size(); ++displayId) {
Dan Stoza7bdf55a2016-06-17 11:29:01 -07001937 auto& displayDevice = mDisplays[displayId];
1938 if (!displayDevice->isDisplayOn()) {
1939 continue;
1940 }
1941
David Sodman105b7dc2017-11-04 20:28:14 -07001942 status_t result = displayDevice->prepareFrame(*getBE().mHwc);
Dan Stoza9e56aa02015-11-02 13:00:03 -08001943 ALOGE_IF(result != NO_ERROR, "prepareFrame for display %zd failed:"
1944 " %d (%s)", displayId, result, strerror(-result));
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07001945 }
Mathias Agopiancd60f992012-08-16 16:28:27 -07001946}
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07001947
Mathias Agopiancd60f992012-08-16 16:28:27 -07001948void SurfaceFlinger::doComposition() {
1949 ATRACE_CALL();
Dan Stoza9e56aa02015-11-02 13:00:03 -08001950 ALOGV("doComposition");
1951
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07001952 const bool repaintEverything = android_atomic_and(0, &mRepaintEverything);
Mathias Agopian92a979a2012-08-02 18:32:23 -07001953 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
Mathias Agopian42977342012-08-05 00:40:46 -07001954 const sp<DisplayDevice>& hw(mDisplays[dpy]);
Prashant Malani2c9b11f2014-05-25 01:36:31 -07001955 if (hw->isDisplayOn()) {
Mathias Agopiancd60f992012-08-16 16:28:27 -07001956 // transform the dirty region into this screen's coordinate space
1957 const Region dirtyRegion(hw->getDirtyRegion(repaintEverything));
Mathias Agopian02b95102012-11-05 17:50:57 -08001958
1959 // repaint the framebuffer (if needed)
1960 doDisplayComposition(hw, dirtyRegion);
1961
Mathias Agopiancd60f992012-08-16 16:28:27 -07001962 hw->dirtyRegion.clear();
Chia-I Wub02087d2017-11-09 10:19:54 -08001963 hw->flip();
Mathias Agopian87baae12012-07-31 12:38:26 -07001964 }
Mathias Agopian4fec8732012-06-29 14:12:52 -07001965 }
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07001966 postFramebuffer();
Mathias Agopian4fec8732012-06-29 14:12:52 -07001967}
1968
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001969void SurfaceFlinger::postFramebuffer()
1970{
Mathias Agopian841cde52012-03-01 15:44:37 -08001971 ATRACE_CALL();
Dan Stoza9e56aa02015-11-02 13:00:03 -08001972 ALOGV("postFramebuffer");
Mathias Agopianb048cef2012-02-04 15:44:04 -08001973
Mathias Agopiana44b0412011-10-16 18:46:35 -07001974 const nsecs_t now = systemTime();
1975 mDebugInSwapBuffers = now;
Jesse Hallc5c5a142012-07-02 16:49:28 -07001976
Dan Stoza9e56aa02015-11-02 13:00:03 -08001977 for (size_t displayId = 0; displayId < mDisplays.size(); ++displayId) {
1978 auto& displayDevice = mDisplays[displayId];
Dan Stoza7bdf55a2016-06-17 11:29:01 -07001979 if (!displayDevice->isDisplayOn()) {
1980 continue;
1981 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08001982 const auto hwcId = displayDevice->getHwcDisplayId();
1983 if (hwcId >= 0) {
David Sodman105b7dc2017-11-04 20:28:14 -07001984 getBE().mHwc->presentAndGetReleaseFences(hwcId);
Mathias Agopian2a231842012-09-24 18:12:35 -07001985 }
Dan Stoza2dc3be82016-04-06 14:05:37 -07001986 displayDevice->onSwapBuffersCompleted();
Chia-I Wu7f402902017-11-09 12:51:10 -08001987 displayDevice->makeCurrent();
Dan Stoza9e56aa02015-11-02 13:00:03 -08001988 for (auto& layer : displayDevice->getVisibleLayersSortedByZ()) {
Chia-I Wu7b549592017-11-15 09:14:57 -08001989 // The layer buffer from the previous frame (if any) is released
1990 // by HWC only when the release fence from this frame (if any) is
1991 // signaled. Always get the release fence from HWC first.
1992 auto hwcLayer = layer->getHwcLayer(hwcId);
David Sodman105b7dc2017-11-04 20:28:14 -07001993 sp<Fence> releaseFence = getBE().mHwc->getLayerReleaseFence(hwcId, hwcLayer);
Chia-I Wu7b549592017-11-15 09:14:57 -08001994
1995 // If the layer was client composited in the previous frame, we
1996 // need to merge with the previous client target acquire fence.
1997 // Since we do not track that, always merge with the current
1998 // client target acquire fence when it is available, even though
1999 // this is suboptimal.
Dan Stoza9e56aa02015-11-02 13:00:03 -08002000 if (layer->getCompositionType(hwcId) == HWC2::Composition::Client) {
Chia-I Wu7b549592017-11-15 09:14:57 -08002001 releaseFence = Fence::merge("LayerRelease", releaseFence,
2002 displayDevice->getClientTargetAcquireFence());
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07002003 }
Chia-I Wu7b549592017-11-15 09:14:57 -08002004
Dan Stoza9e56aa02015-11-02 13:00:03 -08002005 layer->onLayerDisplayed(releaseFence);
2006 }
Chia-I Wu83806892017-11-16 10:50:20 -08002007
2008 // We've got a list of layers needing fences, that are disjoint with
2009 // displayDevice->getVisibleLayersSortedByZ. The best we can do is to
2010 // supply them with the present fence.
2011 if (!displayDevice->getLayersNeedingFences().isEmpty()) {
David Sodman105b7dc2017-11-04 20:28:14 -07002012 sp<Fence> presentFence = getBE().mHwc->getPresentFence(hwcId);
Chia-I Wu83806892017-11-16 10:50:20 -08002013 for (auto& layer : displayDevice->getLayersNeedingFences()) {
2014 layer->onLayerDisplayed(presentFence);
2015 }
2016 }
2017
Dan Stoza9e56aa02015-11-02 13:00:03 -08002018 if (hwcId >= 0) {
David Sodman105b7dc2017-11-04 20:28:14 -07002019 getBE().mHwc->clearReleaseFences(hwcId);
Jesse Hallef194142012-06-14 14:45:17 -07002020 }
Jamie Gennise8696a42012-01-15 18:54:57 -08002021 }
2022
Mathias Agopiana44b0412011-10-16 18:46:35 -07002023 mLastSwapBufferTime = systemTime() - now;
2024 mDebugInSwapBuffers = 0;
Jamie Gennis6547ff42013-07-16 20:12:42 -07002025
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07002026 // |mStateLock| not needed as we are on the main thread
Lloyd Pique2ae2b3b2017-12-14 17:18:17 -08002027 if (getBE().mHwc->isConnected(HWC_DISPLAY_PRIMARY)) {
2028 uint32_t flipCount = getDefaultDisplayDeviceLocked()->getPageFlipCount();
2029 if (flipCount % LOG_FRAME_STATS_PERIOD == 0) {
2030 logFrameStats();
2031 }
Jamie Gennis6547ff42013-07-16 20:12:42 -07002032 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002033}
2034
Mathias Agopian87baae12012-07-31 12:38:26 -07002035void SurfaceFlinger::handleTransaction(uint32_t transactionFlags)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002036{
Mathias Agopian841cde52012-03-01 15:44:37 -08002037 ATRACE_CALL();
2038
Mathias Agopian7cc6df52013-06-05 14:30:54 -07002039 // here we keep a copy of the drawing state (that is the state that's
2040 // going to be overwritten by handleTransactionLocked()) outside of
2041 // mStateLock so that the side-effects of the State assignment
2042 // don't happen with mStateLock held (which can cause deadlocks).
2043 State drawingState(mDrawingState);
2044
Mathias Agopianca4d3602011-05-19 15:38:14 -07002045 Mutex::Autolock _l(mStateLock);
2046 const nsecs_t now = systemTime();
2047 mDebugInTransaction = now;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002048
Mathias Agopianca4d3602011-05-19 15:38:14 -07002049 // Here we're guaranteed that some transaction flags are set
2050 // so we can call handleTransactionLocked() unconditionally.
2051 // We call getTransactionFlags(), which will also clear the flags,
2052 // with mStateLock held to guarantee that mCurrentState won't change
2053 // until the transaction is committed.
Mathias Agopian4da75192010-08-10 17:19:56 -07002054
Mathias Agopiane57f2922012-08-09 16:29:12 -07002055 transactionFlags = getTransactionFlags(eTransactionMask);
Mathias Agopian87baae12012-07-31 12:38:26 -07002056 handleTransactionLocked(transactionFlags);
Mathias Agopiandea20b12011-05-03 17:04:02 -07002057
Mathias Agopianca4d3602011-05-19 15:38:14 -07002058 mLastTransactionTime = systemTime() - now;
2059 mDebugInTransaction = 0;
2060 invalidateHwcGeometry();
2061 // here the transaction has been committed
Mathias Agopian3d579642009-06-04 18:46:21 -07002062}
2063
Lloyd Pique715a2c12017-12-14 17:18:08 -08002064DisplayDevice::DisplayType SurfaceFlinger::determineDisplayType(hwc2_display_t display,
2065 HWC2::Connection connection) const {
2066 // Figure out whether the event is for the primary display or an
2067 // external display by matching the Hwc display id against one for a
2068 // connected display. If we did not find a match, we then check what
2069 // displays are not already connected to determine the type. If we don't
2070 // have a connected primary display, we assume the new display is meant to
2071 // be the primary display, and then if we don't have an external display,
2072 // we assume it is that.
2073 const auto primaryDisplayId =
2074 getBE().mHwc->getHwcDisplayId(DisplayDevice::DISPLAY_PRIMARY);
2075 const auto externalDisplayId =
2076 getBE().mHwc->getHwcDisplayId(DisplayDevice::DISPLAY_EXTERNAL);
2077 if (primaryDisplayId && primaryDisplayId == display) {
2078 return DisplayDevice::DISPLAY_PRIMARY;
2079 } else if (externalDisplayId && externalDisplayId == display) {
2080 return DisplayDevice::DISPLAY_EXTERNAL;
2081 } else if (connection == HWC2::Connection::Connected && !primaryDisplayId) {
2082 return DisplayDevice::DISPLAY_PRIMARY;
2083 } else if (connection == HWC2::Connection::Connected && !externalDisplayId) {
2084 return DisplayDevice::DISPLAY_EXTERNAL;
2085 }
2086
2087 return DisplayDevice::DISPLAY_ID_INVALID;
2088}
2089
Lloyd Piqueba04e622017-12-14 17:11:26 -08002090void SurfaceFlinger::processDisplayHotplugEventsLocked() {
2091 for (const auto& event : mPendingHotplugEvents) {
Lloyd Pique715a2c12017-12-14 17:18:08 -08002092 auto displayType = determineDisplayType(event.display, event.connection);
2093 if (displayType == DisplayDevice::DISPLAY_ID_INVALID) {
2094 ALOGW("Unable to determine the display type for display %" PRIu64, event.display);
2095 continue;
2096 }
Lloyd Piqueba04e622017-12-14 17:11:26 -08002097
2098 if (getBE().mHwc->isUsingVrComposer() && displayType == DisplayDevice::DISPLAY_EXTERNAL) {
2099 ALOGE("External displays are not supported by the vr hardware composer.");
2100 continue;
2101 }
2102
Lloyd Pique715a2c12017-12-14 17:18:08 -08002103 getBE().mHwc->onHotplug(event.display, displayType, event.connection);
Lloyd Piqueba04e622017-12-14 17:11:26 -08002104
2105 if (event.connection == HWC2::Connection::Connected) {
Lloyd Piquefcd86612017-12-14 17:15:36 -08002106 ALOGV("Creating built in display %d", displayType);
2107 ALOGW_IF(mBuiltinDisplays[displayType],
2108 "Overwriting display token for display type %d", displayType);
2109 mBuiltinDisplays[displayType] = new BBinder();
2110 // All non-virtual displays are currently considered secure.
2111 DisplayDeviceState info(displayType, true);
2112 info.displayName = displayType == DisplayDevice::DISPLAY_PRIMARY ?
2113 "Built-in Screen" : "External Screen";
2114 mCurrentState.displays.add(mBuiltinDisplays[displayType], info);
2115 mInterceptor.saveDisplayCreation(info);
Lloyd Piqueba04e622017-12-14 17:11:26 -08002116 } else {
Lloyd Piquefcd86612017-12-14 17:15:36 -08002117 ALOGV("Removing built in display %d", displayType);
Lloyd Piqueba04e622017-12-14 17:11:26 -08002118
Lloyd Piquefcd86612017-12-14 17:15:36 -08002119 ssize_t idx = mCurrentState.displays.indexOfKey(mBuiltinDisplays[displayType]);
2120 if (idx >= 0) {
2121 const DisplayDeviceState& info(mCurrentState.displays.valueAt(idx));
2122 mInterceptor.saveDisplayDeletion(info.displayId);
2123 mCurrentState.displays.removeItemsAt(idx);
2124 }
2125 mBuiltinDisplays[displayType].clear();
Lloyd Piqueba04e622017-12-14 17:11:26 -08002126 }
2127
2128 processDisplayChangesLocked();
2129 }
2130
2131 mPendingHotplugEvents.clear();
2132}
2133
Lloyd Pique347200f2017-12-14 17:00:15 -08002134void SurfaceFlinger::processDisplayChangesLocked() {
2135 // here we take advantage of Vector's copy-on-write semantics to
2136 // improve performance by skipping the transaction entirely when
2137 // know that the lists are identical
2138 const KeyedVector<wp<IBinder>, DisplayDeviceState>& curr(mCurrentState.displays);
2139 const KeyedVector<wp<IBinder>, DisplayDeviceState>& draw(mDrawingState.displays);
2140 if (!curr.isIdenticalTo(draw)) {
2141 mVisibleRegionsDirty = true;
2142 const size_t cc = curr.size();
2143 size_t dc = draw.size();
2144
2145 // find the displays that were removed
2146 // (ie: in drawing state but not in current state)
2147 // also handle displays that changed
2148 // (ie: displays that are in both lists)
2149 for (size_t i = 0; i < dc;) {
2150 const ssize_t j = curr.indexOfKey(draw.keyAt(i));
2151 if (j < 0) {
2152 // in drawing state but not in current state
Lloyd Pique2ae2b3b2017-12-14 17:18:17 -08002153 // Call makeCurrent() on the primary display so we can
2154 // be sure that nothing associated with this display
2155 // is current.
2156 const sp<const DisplayDevice> defaultDisplay(getDefaultDisplayDeviceLocked());
2157 if (defaultDisplay != nullptr) defaultDisplay->makeCurrent();
2158 sp<DisplayDevice> hw(getDisplayDeviceLocked(draw.keyAt(i)));
2159 if (hw != nullptr) hw->disconnect(getHwComposer());
2160 if (draw[i].type < DisplayDevice::NUM_BUILTIN_DISPLAY_TYPES)
2161 mEventThread->onHotplugReceived(draw[i].type, false);
2162 mDisplays.removeItem(draw.keyAt(i));
Lloyd Pique347200f2017-12-14 17:00:15 -08002163 } else {
2164 // this display is in both lists. see if something changed.
2165 const DisplayDeviceState& state(curr[j]);
2166 const wp<IBinder>& display(curr.keyAt(j));
2167 const sp<IBinder> state_binder = IInterface::asBinder(state.surface);
2168 const sp<IBinder> draw_binder = IInterface::asBinder(draw[i].surface);
2169 if (state_binder != draw_binder) {
2170 // changing the surface is like destroying and
2171 // recreating the DisplayDevice, so we just remove it
2172 // from the drawing state, so that it get re-added
2173 // below.
2174 sp<DisplayDevice> hw(getDisplayDeviceLocked(display));
2175 if (hw != nullptr) hw->disconnect(getHwComposer());
2176 mDisplays.removeItem(display);
2177 mDrawingState.displays.removeItemsAt(i);
2178 dc--;
2179 // at this point we must loop to the next item
2180 continue;
2181 }
2182
2183 const sp<DisplayDevice> disp(getDisplayDeviceLocked(display));
2184 if (disp != nullptr) {
2185 if (state.layerStack != draw[i].layerStack) {
2186 disp->setLayerStack(state.layerStack);
2187 }
2188 if ((state.orientation != draw[i].orientation) ||
2189 (state.viewport != draw[i].viewport) || (state.frame != draw[i].frame)) {
2190 disp->setProjection(state.orientation, state.viewport, state.frame);
2191 }
2192 if (state.width != draw[i].width || state.height != draw[i].height) {
2193 disp->setDisplaySize(state.width, state.height);
2194 }
2195 }
2196 }
2197 ++i;
2198 }
2199
2200 // find displays that were added
2201 // (ie: in current state but not in drawing state)
2202 for (size_t i = 0; i < cc; i++) {
2203 if (draw.indexOfKey(curr.keyAt(i)) < 0) {
2204 const DisplayDeviceState& state(curr[i]);
2205
2206 sp<DisplaySurface> dispSurface;
2207 sp<IGraphicBufferProducer> producer;
2208 sp<IGraphicBufferProducer> bqProducer;
2209 sp<IGraphicBufferConsumer> bqConsumer;
2210 BufferQueue::createBufferQueue(&bqProducer, &bqConsumer);
2211
2212 int32_t hwcId = -1;
2213 if (state.isVirtualDisplay()) {
2214 // Virtual displays without a surface are dormant:
2215 // they have external state (layer stack, projection,
2216 // etc.) but no internal state (i.e. a DisplayDevice).
2217 if (state.surface != nullptr) {
2218 // Allow VR composer to use virtual displays.
2219 if (mUseHwcVirtualDisplays || getBE().mHwc->isUsingVrComposer()) {
2220 int width = 0;
2221 int status = state.surface->query(NATIVE_WINDOW_WIDTH, &width);
2222 ALOGE_IF(status != NO_ERROR, "Unable to query width (%d)", status);
2223 int height = 0;
2224 status = state.surface->query(NATIVE_WINDOW_HEIGHT, &height);
2225 ALOGE_IF(status != NO_ERROR, "Unable to query height (%d)", status);
2226 int intFormat = 0;
2227 status = state.surface->query(NATIVE_WINDOW_FORMAT, &intFormat);
2228 ALOGE_IF(status != NO_ERROR, "Unable to query format (%d)", status);
2229 auto format = static_cast<android_pixel_format_t>(intFormat);
2230
2231 getBE().mHwc->allocateVirtualDisplay(width, height, &format, &hwcId);
2232 }
2233
2234 // TODO: Plumb requested format back up to consumer
2235
2236 sp<VirtualDisplaySurface> vds =
2237 new VirtualDisplaySurface(*getBE().mHwc, hwcId, state.surface,
2238 bqProducer, bqConsumer,
2239 state.displayName);
2240
2241 dispSurface = vds;
2242 producer = vds;
2243 }
2244 } else {
2245 ALOGE_IF(state.surface != nullptr,
2246 "adding a supported display, but rendering "
2247 "surface is provided (%p), ignoring it",
2248 state.surface.get());
2249
2250 hwcId = state.type;
2251 dispSurface = new FramebufferSurface(*getBE().mHwc, hwcId, bqConsumer);
2252 producer = bqProducer;
2253 }
2254
2255 const wp<IBinder>& display(curr.keyAt(i));
Lloyd Piquefcd86612017-12-14 17:15:36 -08002256
Lloyd Pique347200f2017-12-14 17:00:15 -08002257 if (dispSurface != nullptr) {
Lloyd Piquefcd86612017-12-14 17:15:36 -08002258 bool useWideColorMode = hasWideColorDisplay;
Lloyd Piquec5208312018-01-08 17:59:02 -08002259 if (!mForceNativeColorMode) {
Lloyd Piquefcd86612017-12-14 17:15:36 -08002260 bool hasWideColorModes = false;
2261 std::vector<android_color_mode_t> modes =
2262 getHwComposer().getColorModes(state.type);
2263 for (android_color_mode_t colorMode : modes) {
2264 switch (colorMode) {
2265 case HAL_COLOR_MODE_DISPLAY_P3:
2266 case HAL_COLOR_MODE_ADOBE_RGB:
2267 case HAL_COLOR_MODE_DCI_P3:
2268 hasWideColorModes = true;
2269 break;
2270 default:
2271 break;
2272 }
2273 }
Lloyd Piquec5208312018-01-08 17:59:02 -08002274 useWideColorMode = hasWideColorModes && hasWideColorDisplay;
Lloyd Piquefcd86612017-12-14 17:15:36 -08002275 }
2276
Chia-I Wu5c6e4632018-01-11 08:54:38 -08002277 bool hasHdrSupport = false;
2278 std::unique_ptr<HdrCapabilities> hdrCapabilities =
2279 getHwComposer().getHdrCapabilities(state.type);
2280 if (hdrCapabilities) {
2281 const std::vector<int32_t> types = hdrCapabilities->getSupportedHdrTypes();
2282 auto iter = std::find(types.cbegin(), types.cend(), HAL_HDR_HDR10);
2283 hasHdrSupport = iter != types.cend();
2284 }
2285
Lloyd Pique347200f2017-12-14 17:00:15 -08002286 sp<DisplayDevice> hw =
2287 new DisplayDevice(this, state.type, hwcId, state.isSecure, display,
Chia-I Wu5c6e4632018-01-11 08:54:38 -08002288 dispSurface, producer, useWideColorMode,
2289 hasHdrSupport);
Lloyd Piquefcd86612017-12-14 17:15:36 -08002290
Lloyd Piquec5208312018-01-08 17:59:02 -08002291 android_color_mode defaultColorMode = HAL_COLOR_MODE_NATIVE;
2292 if (useWideColorMode) {
2293 defaultColorMode = HAL_COLOR_MODE_SRGB;
Lloyd Piquefcd86612017-12-14 17:15:36 -08002294 }
Lloyd Piquec5208312018-01-08 17:59:02 -08002295 setActiveColorModeInternal(hw, defaultColorMode);
2296 hw->setCompositionDataSpace(HAL_DATASPACE_UNKNOWN);
Lloyd Pique347200f2017-12-14 17:00:15 -08002297 hw->setLayerStack(state.layerStack);
2298 hw->setProjection(state.orientation, state.viewport, state.frame);
2299 hw->setDisplayName(state.displayName);
Lloyd Piquec5208312018-01-08 17:59:02 -08002300
Lloyd Pique347200f2017-12-14 17:00:15 -08002301 mDisplays.add(display, hw);
2302 if (!state.isVirtualDisplay()) {
2303 mEventThread->onHotplugReceived(state.type, true);
2304 }
2305 }
2306 }
2307 }
2308 }
Lloyd Piqueba04e622017-12-14 17:11:26 -08002309
2310 mDrawingState.displays = mCurrentState.displays;
Lloyd Pique347200f2017-12-14 17:00:15 -08002311}
2312
Mathias Agopian87baae12012-07-31 12:38:26 -07002313void SurfaceFlinger::handleTransactionLocked(uint32_t transactionFlags)
Mathias Agopian3d579642009-06-04 18:46:21 -07002314{
Dan Stoza7dde5992015-05-22 09:51:44 -07002315 // Notify all layers of available frames
Robert Carr2047fae2016-11-28 14:09:09 -08002316 mCurrentState.traverseInZOrder([](Layer* layer) {
2317 layer->notifyAvailableFrames();
2318 });
Dan Stoza7dde5992015-05-22 09:51:44 -07002319
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002320 /*
2321 * Traversal of the children
2322 * (perform the transaction for each of them if needed)
2323 */
2324
Mathias Agopian3559b072012-08-15 13:46:03 -07002325 if (transactionFlags & eTraversalNeeded) {
Robert Carr2047fae2016-11-28 14:09:09 -08002326 mCurrentState.traverseInZOrder([&](Layer* layer) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002327 uint32_t trFlags = layer->getTransactionFlags(eTransactionNeeded);
Robert Carr2047fae2016-11-28 14:09:09 -08002328 if (!trFlags) return;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002329
2330 const uint32_t flags = layer->doTransaction(0);
2331 if (flags & Layer::eVisibleRegion)
2332 mVisibleRegionsDirty = true;
Robert Carr2047fae2016-11-28 14:09:09 -08002333 });
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002334 }
2335
2336 /*
Mathias Agopian3559b072012-08-15 13:46:03 -07002337 * Perform display own transactions if needed
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002338 */
2339
Mathias Agopiane57f2922012-08-09 16:29:12 -07002340 if (transactionFlags & eDisplayTransactionNeeded) {
Lloyd Pique347200f2017-12-14 17:00:15 -08002341 processDisplayChangesLocked();
Lloyd Piqueba04e622017-12-14 17:11:26 -08002342 processDisplayHotplugEventsLocked();
Mathias Agopian3559b072012-08-15 13:46:03 -07002343 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002344
Mathias Agopian84300952012-11-21 16:02:13 -08002345 if (transactionFlags & (eTraversalNeeded|eDisplayTransactionNeeded)) {
2346 // The transform hint might have changed for some layers
2347 // (either because a display has changed, or because a layer
2348 // as changed).
2349 //
2350 // Walk through all the layers in currentLayers,
2351 // and update their transform hint.
2352 //
2353 // If a layer is visible only on a single display, then that
2354 // display is used to calculate the hint, otherwise we use the
2355 // default display.
2356 //
2357 // NOTE: we do this here, rather than in rebuildLayerStacks() so that
2358 // the hint is set before we acquire a buffer from the surface texture.
2359 //
2360 // NOTE: layer transactions have taken place already, so we use their
2361 // drawing state. However, SurfaceFlinger's own transaction has not
2362 // happened yet, so we must use the current state layer list
2363 // (soon to become the drawing state list).
2364 //
2365 sp<const DisplayDevice> disp;
2366 uint32_t currentlayerStack = 0;
Robert Carr2047fae2016-11-28 14:09:09 -08002367 bool first = true;
2368 mCurrentState.traverseInZOrder([&](Layer* layer) {
Mathias Agopian84300952012-11-21 16:02:13 -08002369 // NOTE: we rely on the fact that layers are sorted by
2370 // layerStack first (so we don't have to traverse the list
2371 // of displays for every layer).
Robert Carr1f0a16a2016-10-24 16:27:39 -07002372 uint32_t layerStack = layer->getLayerStack();
Robert Carr2047fae2016-11-28 14:09:09 -08002373 if (first || currentlayerStack != layerStack) {
Mathias Agopian84300952012-11-21 16:02:13 -08002374 currentlayerStack = layerStack;
2375 // figure out if this layerstack is mirrored
2376 // (more than one display) if so, pick the default display,
2377 // if not, pick the only display it's on.
2378 disp.clear();
2379 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
2380 sp<const DisplayDevice> hw(mDisplays[dpy]);
Chia-I Wuab0c3192017-08-01 11:29:00 -07002381 if (layer->belongsToDisplay(hw->getLayerStack(), hw->isPrimary())) {
Peiyong Lin566a3b42018-01-09 18:22:43 -08002382 if (disp == nullptr) {
George Burgess IV406a2852017-08-29 17:57:25 -07002383 disp = std::move(hw);
Mathias Agopian84300952012-11-21 16:02:13 -08002384 } else {
Peiyong Lin566a3b42018-01-09 18:22:43 -08002385 disp = nullptr;
Mathias Agopian84300952012-11-21 16:02:13 -08002386 break;
2387 }
2388 }
2389 }
2390 }
Chet Haase91d25932013-04-11 15:24:55 -07002391
Robert Carr56a0b9a2017-12-04 16:06:13 -08002392 if (transactionFlags & eDisplayTransactionNeeded) {
Peiyong Lin566a3b42018-01-09 18:22:43 -08002393 if (disp == nullptr) {
Robert Carr56a0b9a2017-12-04 16:06:13 -08002394 // NOTE: TEMPORARY FIX ONLY. Real fix should cause layers to
2395 // redraw after transform hint changes. See bug 8508397.
2396
2397 // could be null when this layer is using a layerStack
2398 // that is not visible on any display. Also can occur at
2399 // screen off/on times.
2400 disp = getDefaultDisplayDeviceLocked();
2401 }
2402 layer->updateTransformHint(disp);
Mathias Agopian84300952012-11-21 16:02:13 -08002403 }
Lloyd Pique2ae2b3b2017-12-14 17:18:17 -08002404 if (disp != nullptr) {
2405 layer->updateTransformHint(disp);
2406 }
Robert Carr2047fae2016-11-28 14:09:09 -08002407
2408 first = false;
2409 });
Mathias Agopian84300952012-11-21 16:02:13 -08002410 }
2411
2412
Mathias Agopian3559b072012-08-15 13:46:03 -07002413 /*
2414 * Perform our own transaction if needed
2415 */
Robert Carr1f0a16a2016-10-24 16:27:39 -07002416
2417 if (mLayersAdded) {
2418 mLayersAdded = false;
2419 // Layers have been added.
Mathias Agopian3559b072012-08-15 13:46:03 -07002420 mVisibleRegionsDirty = true;
2421 }
2422
2423 // some layers might have been removed, so
2424 // we need to update the regions they're exposing.
2425 if (mLayersRemoved) {
2426 mLayersRemoved = false;
2427 mVisibleRegionsDirty = true;
Robert Carr2047fae2016-11-28 14:09:09 -08002428 mDrawingState.traverseInZOrder([&](Layer* layer) {
Robert Carr1f0a16a2016-10-24 16:27:39 -07002429 if (mLayersPendingRemoval.indexOf(layer) >= 0) {
Mathias Agopian3559b072012-08-15 13:46:03 -07002430 // this layer is not visible anymore
2431 // TODO: we could traverse the tree from front to back and
2432 // compute the actual visible region
2433 // TODO: we could cache the transformed region
Robert Carr1f0a16a2016-10-24 16:27:39 -07002434 Region visibleReg;
2435 visibleReg.set(layer->computeScreenBounds());
Chia-I Wuab0c3192017-08-01 11:29:00 -07002436 invalidateLayerStack(layer, visibleReg);
Mathias Agopian0aa758d2009-04-22 15:23:34 -07002437 }
Robert Carr2047fae2016-11-28 14:09:09 -08002438 });
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002439 }
2440
2441 commitTransaction();
Riley Andrews03414a12014-07-01 14:22:59 -07002442
2443 updateCursorAsync();
2444}
2445
2446void SurfaceFlinger::updateCursorAsync()
2447{
Dan Stoza9e56aa02015-11-02 13:00:03 -08002448 for (size_t displayId = 0; displayId < mDisplays.size(); ++displayId) {
2449 auto& displayDevice = mDisplays[displayId];
2450 if (displayDevice->getHwcDisplayId() < 0) {
Riley Andrews03414a12014-07-01 14:22:59 -07002451 continue;
2452 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08002453
2454 for (auto& layer : displayDevice->getVisibleLayersSortedByZ()) {
2455 layer->updateCursorPosition(displayDevice);
Riley Andrews03414a12014-07-01 14:22:59 -07002456 }
2457 }
Mathias Agopian4fec8732012-06-29 14:12:52 -07002458}
2459
2460void SurfaceFlinger::commitTransaction()
2461{
Steve Pfetsch598f6d52016-10-25 21:47:58 +00002462 if (!mLayersPendingRemoval.isEmpty()) {
Mathias Agopian4fec8732012-06-29 14:12:52 -07002463 // Notify removed layers now that they can't be drawn from
Robert Carr1f0a16a2016-10-24 16:27:39 -07002464 for (const auto& l : mLayersPendingRemoval) {
2465 recordBufferingStats(l->getName().string(),
2466 l->getOccupancyHistory(true));
2467 l->onRemoved();
Mathias Agopian4fec8732012-06-29 14:12:52 -07002468 }
2469 mLayersPendingRemoval.clear();
2470 }
2471
Jamie Gennis4b0eba92013-02-05 13:30:24 -08002472 // If this transaction is part of a window animation then the next frame
2473 // we composite should be considered an animation as well.
2474 mAnimCompositionPending = mAnimTransactionPending;
2475
Mathias Agopian4fec8732012-06-29 14:12:52 -07002476 mDrawingState = mCurrentState;
Robert Carr1f0a16a2016-10-24 16:27:39 -07002477 mDrawingState.traverseInZOrder([](Layer* layer) {
2478 layer->commitChildList();
2479 });
Jamie Gennis2d5e2302012-10-15 18:24:43 -07002480 mTransactionPending = false;
2481 mAnimTransactionPending = false;
Mathias Agopian4fec8732012-06-29 14:12:52 -07002482 mTransactionCV.broadcast();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002483}
2484
Chia-I Wuab0c3192017-08-01 11:29:00 -07002485void SurfaceFlinger::computeVisibleRegions(const sp<const DisplayDevice>& displayDevice,
Mathias Agopian87baae12012-07-31 12:38:26 -07002486 Region& outDirtyRegion, Region& outOpaqueRegion)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002487{
Mathias Agopian841cde52012-03-01 15:44:37 -08002488 ATRACE_CALL();
Dan Stoza9e56aa02015-11-02 13:00:03 -08002489 ALOGV("computeVisibleRegions");
Mathias Agopian841cde52012-03-01 15:44:37 -08002490
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002491 Region aboveOpaqueLayers;
2492 Region aboveCoveredLayers;
2493 Region dirty;
2494
Mathias Agopian87baae12012-07-31 12:38:26 -07002495 outDirtyRegion.clear();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002496
Robert Carr2047fae2016-11-28 14:09:09 -08002497 mDrawingState.traverseInReverseZOrder([&](Layer* layer) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002498 // start with the whole surface at its current location
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07002499 const Layer::State& s(layer->getDrawingState());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002500
Jesse Hall01e29052013-02-19 16:13:35 -08002501 // only consider the layers on the given layer stack
Chia-I Wuab0c3192017-08-01 11:29:00 -07002502 if (!layer->belongsToDisplay(displayDevice->getLayerStack(), displayDevice->isPrimary()))
Robert Carr2047fae2016-11-28 14:09:09 -08002503 return;
Mathias Agopian87baae12012-07-31 12:38:26 -07002504
Mathias Agopianab028732010-03-16 16:41:46 -07002505 /*
2506 * opaqueRegion: area of a surface that is fully opaque.
2507 */
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002508 Region opaqueRegion;
Mathias Agopianab028732010-03-16 16:41:46 -07002509
2510 /*
2511 * visibleRegion: area of a surface that is visible on screen
2512 * and not fully transparent. This is essentially the layer's
2513 * footprint minus the opaque regions above it.
2514 * Areas covered by a translucent surface are considered visible.
2515 */
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002516 Region visibleRegion;
Mathias Agopianab028732010-03-16 16:41:46 -07002517
2518 /*
2519 * coveredRegion: area of a surface that is covered by all
2520 * visible regions above it (which includes the translucent areas).
2521 */
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002522 Region coveredRegion;
Mathias Agopianab028732010-03-16 16:41:46 -07002523
Jesse Halla8026d22012-09-25 13:25:04 -07002524 /*
2525 * transparentRegion: area of a surface that is hinted to be completely
2526 * transparent. This is only used to tell when the layer has no visible
2527 * non-transparent regions and can be removed from the layer list. It
2528 * does not affect the visibleRegion of this layer or any layers
2529 * beneath it. The hint may not be correct if apps don't respect the
2530 * SurfaceView restrictions (which, sadly, some don't).
2531 */
2532 Region transparentRegion;
2533
Mathias Agopianab028732010-03-16 16:41:46 -07002534
2535 // handle hidden surfaces by setting the visible region to empty
Mathias Agopianda27af92012-09-13 18:17:13 -07002536 if (CC_LIKELY(layer->isVisible())) {
Andy McFadden4125a4f2014-01-29 17:17:11 -08002537 const bool translucent = !layer->isOpaque(s);
Robert Carr1f0a16a2016-10-24 16:27:39 -07002538 Rect bounds(layer->computeScreenBounds());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002539 visibleRegion.set(bounds);
Robert Carr1f0a16a2016-10-24 16:27:39 -07002540 Transform tr = layer->getTransform();
Mathias Agopianab028732010-03-16 16:41:46 -07002541 if (!visibleRegion.isEmpty()) {
2542 // Remove the transparent area from the visible region
2543 if (translucent) {
Dan Stoza22f7fc42016-05-10 16:19:53 -07002544 if (tr.preserveRects()) {
2545 // transform the transparent region
2546 transparentRegion = tr.transform(s.activeTransparentRegion);
Mathias Agopian4fec8732012-06-29 14:12:52 -07002547 } else {
Dan Stoza22f7fc42016-05-10 16:19:53 -07002548 // transformation too complex, can't do the
2549 // transparent region optimization.
2550 transparentRegion.clear();
Mathias Agopian4fec8732012-06-29 14:12:52 -07002551 }
Mathias Agopianab028732010-03-16 16:41:46 -07002552 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002553
Mathias Agopianab028732010-03-16 16:41:46 -07002554 // compute the opaque region
Robert Carr1f0a16a2016-10-24 16:27:39 -07002555 const int32_t layerOrientation = tr.getOrientation();
Jorim Jaggi039bbb82017-09-06 18:12:05 +02002556 if (layer->getAlpha() == 1.0f && !translucent &&
Mathias Agopianab028732010-03-16 16:41:46 -07002557 ((layerOrientation & Transform::ROT_INVALID) == false)) {
2558 // the opaque region is the layer's footprint
2559 opaqueRegion = visibleRegion;
2560 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002561 }
2562 }
2563
Robert Carre5f4f692018-01-12 13:12:28 -08002564 if (visibleRegion.isEmpty()) {
2565 layer->clearVisibilityRegions();
2566 return;
2567 }
2568
Mathias Agopianab028732010-03-16 16:41:46 -07002569 // Clip the covered region to the visible region
2570 coveredRegion = aboveCoveredLayers.intersect(visibleRegion);
2571
2572 // Update aboveCoveredLayers for next (lower) layer
2573 aboveCoveredLayers.orSelf(visibleRegion);
2574
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002575 // subtract the opaque region covered by the layers above us
2576 visibleRegion.subtractSelf(aboveOpaqueLayers);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002577
2578 // compute this layer's dirty region
2579 if (layer->contentDirty) {
2580 // we need to invalidate the whole region
2581 dirty = visibleRegion;
2582 // as well, as the old visible region
Mathias Agopian4fec8732012-06-29 14:12:52 -07002583 dirty.orSelf(layer->visibleRegion);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002584 layer->contentDirty = false;
2585 } else {
Mathias Agopiana8d44f72009-06-28 02:54:16 -07002586 /* compute the exposed region:
Mathias Agopianab028732010-03-16 16:41:46 -07002587 * the exposed region consists of two components:
2588 * 1) what's VISIBLE now and was COVERED before
2589 * 2) what's EXPOSED now less what was EXPOSED before
2590 *
2591 * note that (1) is conservative, we start with the whole
2592 * visible region but only keep what used to be covered by
2593 * something -- which mean it may have been exposed.
2594 *
2595 * (2) handles areas that were not covered by anything but got
2596 * exposed because of a resize.
Mathias Agopiana8d44f72009-06-28 02:54:16 -07002597 */
Mathias Agopianab028732010-03-16 16:41:46 -07002598 const Region newExposed = visibleRegion - coveredRegion;
Mathias Agopian4fec8732012-06-29 14:12:52 -07002599 const Region oldVisibleRegion = layer->visibleRegion;
2600 const Region oldCoveredRegion = layer->coveredRegion;
Mathias Agopianab028732010-03-16 16:41:46 -07002601 const Region oldExposed = oldVisibleRegion - oldCoveredRegion;
2602 dirty = (visibleRegion&oldCoveredRegion) | (newExposed-oldExposed);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002603 }
2604 dirty.subtractSelf(aboveOpaqueLayers);
2605
2606 // accumulate to the screen dirty region
Mathias Agopian87baae12012-07-31 12:38:26 -07002607 outDirtyRegion.orSelf(dirty);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002608
Mathias Agopianab028732010-03-16 16:41:46 -07002609 // Update aboveOpaqueLayers for next (lower) layer
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002610 aboveOpaqueLayers.orSelf(opaqueRegion);
Andreas Huber8b42e8a2010-08-16 08:49:37 -07002611
Jesse Halla8026d22012-09-25 13:25:04 -07002612 // Store the visible region in screen space
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002613 layer->setVisibleRegion(visibleRegion);
2614 layer->setCoveredRegion(coveredRegion);
Jesse Halla8026d22012-09-25 13:25:04 -07002615 layer->setVisibleNonTransparentRegion(
2616 visibleRegion.subtract(transparentRegion));
Robert Carr2047fae2016-11-28 14:09:09 -08002617 });
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002618
Mathias Agopian87baae12012-07-31 12:38:26 -07002619 outOpaqueRegion = aboveOpaqueLayers;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002620}
2621
Chia-I Wuab0c3192017-08-01 11:29:00 -07002622void SurfaceFlinger::invalidateLayerStack(const sp<const Layer>& layer, const Region& dirty) {
Mathias Agopian92a979a2012-08-02 18:32:23 -07002623 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
Mathias Agopian42977342012-08-05 00:40:46 -07002624 const sp<DisplayDevice>& hw(mDisplays[dpy]);
Chia-I Wuab0c3192017-08-01 11:29:00 -07002625 if (layer->belongsToDisplay(hw->getLayerStack(), hw->isPrimary())) {
Mathias Agopian42977342012-08-05 00:40:46 -07002626 hw->dirtyRegion.orSelf(dirty);
Mathias Agopian92a979a2012-08-02 18:32:23 -07002627 }
2628 }
Mathias Agopian87baae12012-07-31 12:38:26 -07002629}
2630
Dan Stoza6b9454d2014-11-07 16:00:59 -08002631bool SurfaceFlinger::handlePageFlip()
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002632{
Dan Stoza9e56aa02015-11-02 13:00:03 -08002633 ALOGV("handlePageFlip");
2634
Brian Andersond6927fb2016-07-23 23:37:30 -07002635 nsecs_t latchTime = systemTime();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002636
Mathias Agopian4fec8732012-06-29 14:12:52 -07002637 bool visibleRegions = false;
Dan Stoza6b9454d2014-11-07 16:00:59 -08002638 bool frameQueued = false;
Mike Stroyan0cd76192017-04-20 12:10:48 -06002639 bool newDataLatched = false;
Eric Penner51c59cd2014-07-28 19:51:58 -07002640
2641 // Store the set of layers that need updates. This set must not change as
2642 // buffers are being latched, as this could result in a deadlock.
2643 // Example: Two producers share the same command stream and:
2644 // 1.) Layer 0 is latched
2645 // 2.) Layer 0 gets a new frame
2646 // 2.) Layer 1 gets a new frame
2647 // 3.) Layer 1 is latched.
2648 // Display is now waiting on Layer 1's frame, which is behind layer 0's
2649 // second frame. But layer 0's second frame could be waiting on display.
Robert Carr2047fae2016-11-28 14:09:09 -08002650 mDrawingState.traverseInZOrder([&](Layer* layer) {
Dan Stoza6b9454d2014-11-07 16:00:59 -08002651 if (layer->hasQueuedFrame()) {
2652 frameQueued = true;
2653 if (layer->shouldPresentNow(mPrimaryDispSync)) {
Robert Carr2047fae2016-11-28 14:09:09 -08002654 mLayersWithQueuedFrames.push_back(layer);
Dan Stozaee44edd2015-03-23 15:50:23 -07002655 } else {
2656 layer->useEmptyDamage();
Dan Stoza6b9454d2014-11-07 16:00:59 -08002657 }
Dan Stozaee44edd2015-03-23 15:50:23 -07002658 } else {
2659 layer->useEmptyDamage();
Dan Stoza6b9454d2014-11-07 16:00:59 -08002660 }
Robert Carr2047fae2016-11-28 14:09:09 -08002661 });
2662
Dan Stoza9e56aa02015-11-02 13:00:03 -08002663 for (auto& layer : mLayersWithQueuedFrames) {
Brian Andersond6927fb2016-07-23 23:37:30 -07002664 const Region dirty(layer->latchBuffer(visibleRegions, latchTime));
Dan Stozaee44edd2015-03-23 15:50:23 -07002665 layer->useSurfaceDamage();
Chia-I Wuab0c3192017-08-01 11:29:00 -07002666 invalidateLayerStack(layer, dirty);
Chia-I Wua36bf922017-06-30 12:51:05 -07002667 if (layer->isBufferLatched()) {
Mike Stroyan0cd76192017-04-20 12:10:48 -06002668 newDataLatched = true;
2669 }
Mathias Agopian4fec8732012-06-29 14:12:52 -07002670 }
Mathias Agopian4da75192010-08-10 17:19:56 -07002671
Mathias Agopian3b1d2b62012-07-11 13:48:17 -07002672 mVisibleRegionsDirty |= visibleRegions;
Dan Stoza6b9454d2014-11-07 16:00:59 -08002673
2674 // If we will need to wake up at some time in the future to deal with a
2675 // queued frame that shouldn't be displayed during this vsync period, wake
2676 // up during the next vsync period to check again.
Chia-I Wua36bf922017-06-30 12:51:05 -07002677 if (frameQueued && (mLayersWithQueuedFrames.empty() || !newDataLatched)) {
Dan Stoza6b9454d2014-11-07 16:00:59 -08002678 signalLayerUpdate();
2679 }
2680
2681 // Only continue with the refresh if there is actually new work to do
Mike Stroyan0cd76192017-04-20 12:10:48 -06002682 return !mLayersWithQueuedFrames.empty() && newDataLatched;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002683}
2684
Mathias Agopianad456f92011-01-13 17:53:01 -08002685void SurfaceFlinger::invalidateHwcGeometry()
2686{
Dan Stoza9e56aa02015-11-02 13:00:03 -08002687 mGeometryInvalid = true;
Mathias Agopianad456f92011-01-13 17:53:01 -08002688}
2689
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08002690
Fabien Sanglard830b8472016-11-30 16:35:58 -08002691void SurfaceFlinger::doDisplayComposition(
2692 const sp<const DisplayDevice>& displayDevice,
Mathias Agopian87baae12012-07-31 12:38:26 -07002693 const Region& inDirtyRegion)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002694{
Dan Stoza71433162014-02-04 16:22:36 -08002695 // We only need to actually compose the display if:
2696 // 1) It is being handled by hardware composer, which may need this to
2697 // keep its virtual display state machine in sync, or
2698 // 2) There is work to be done (the dirty region isn't empty)
Fabien Sanglard830b8472016-11-30 16:35:58 -08002699 bool isHwcDisplay = displayDevice->getHwcDisplayId() >= 0;
Dan Stoza71433162014-02-04 16:22:36 -08002700 if (!isHwcDisplay && inDirtyRegion.isEmpty()) {
Dan Stoza9e56aa02015-11-02 13:00:03 -08002701 ALOGV("Skipping display composition");
Dan Stoza71433162014-02-04 16:22:36 -08002702 return;
2703 }
2704
Dan Stoza9e56aa02015-11-02 13:00:03 -08002705 ALOGV("doDisplayComposition");
Chia-I Wub02087d2017-11-09 10:19:54 -08002706 if (!doComposeSurfaces(displayDevice)) return;
Mathias Agopianda27af92012-09-13 18:17:13 -07002707
2708 // swap buffers (presentation)
Fabien Sanglard830b8472016-11-30 16:35:58 -08002709 displayDevice->swapBuffers(getHwComposer());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002710}
2711
Chia-I Wub02087d2017-11-09 10:19:54 -08002712bool SurfaceFlinger::doComposeSurfaces(const sp<const DisplayDevice>& displayDevice)
Mathias Agopianf384cc32011-09-08 18:31:55 -07002713{
Dan Stoza9e56aa02015-11-02 13:00:03 -08002714 ALOGV("doComposeSurfaces");
Mathias Agopiancd20eb02011-09-22 20:57:04 -07002715
Chia-I Wub02087d2017-11-09 10:19:54 -08002716 const Region bounds(displayDevice->bounds());
chaviwa76b2712017-09-20 12:02:26 -07002717 const DisplayRenderArea renderArea(displayDevice);
Dan Stoza9e56aa02015-11-02 13:00:03 -08002718 const auto hwcId = displayDevice->getHwcDisplayId();
Dan Stoza9f26a9c2016-06-22 14:51:09 -07002719
2720 mat4 oldColorMatrix;
David Sodman105b7dc2017-11-04 20:28:14 -07002721 const bool applyColorMatrix = !getBE().mHwc->hasDeviceComposition(hwcId) &&
2722 !getBE().mHwc->hasCapability(HWC2::Capability::SkipClientColorTransform);
Dan Stoza9f26a9c2016-06-22 14:51:09 -07002723 if (applyColorMatrix) {
2724 mat4 colorMatrix = mColorMatrix * mDaltonizer();
2725 oldColorMatrix = getRenderEngine().setupColorTransform(colorMatrix);
2726 }
2727
David Sodman105b7dc2017-11-04 20:28:14 -07002728 bool hasClientComposition = getBE().mHwc->hasClientComposition(hwcId);
Dan Stoza9e56aa02015-11-02 13:00:03 -08002729 if (hasClientComposition) {
2730 ALOGV("hasClientComposition");
2731
David Sodmanbc815282017-11-05 18:57:52 -08002732 getBE().mRenderEngine->setWideColor(
Romain Guy54f154a2017-10-24 21:40:32 +01002733 displayDevice->getWideColorSupport() && !mForceNativeColorMode);
David Sodmanbc815282017-11-05 18:57:52 -08002734 getBE().mRenderEngine->setColorMode(mForceNativeColorMode ?
Romain Guy54f154a2017-10-24 21:40:32 +01002735 HAL_COLOR_MODE_NATIVE : displayDevice->getActiveColorMode());
Chia-I Wu7f402902017-11-09 12:51:10 -08002736 if (!displayDevice->makeCurrent()) {
Michael Chockc8c71092013-03-04 15:15:46 -08002737 ALOGW("DisplayDevice::makeCurrent failed. Aborting surface composition for display %s",
Dan Stoza9e56aa02015-11-02 13:00:03 -08002738 displayDevice->getDisplayName().string());
Chia-I Wu7f402902017-11-09 12:51:10 -08002739 getRenderEngine().resetCurrentSurface();
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07002740
2741 // |mStateLock| not needed as we are on the main thread
Chia-I Wu7f402902017-11-09 12:51:10 -08002742 if(!getDefaultDisplayDeviceLocked()->makeCurrent()) {
Michael Lentine3f121fc2014-10-01 11:17:28 -07002743 ALOGE("DisplayDevice::makeCurrent on default display failed. Aborting.");
2744 }
2745 return false;
Michael Chockc8c71092013-03-04 15:15:46 -08002746 }
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07002747
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07002748 // Never touch the framebuffer if we don't have any framebuffer layers
David Sodman105b7dc2017-11-04 20:28:14 -07002749 const bool hasDeviceComposition = getBE().mHwc->hasDeviceComposition(hwcId);
Dan Stoza9e56aa02015-11-02 13:00:03 -08002750 if (hasDeviceComposition) {
Mathias Agopianb9494d52012-04-18 02:28:45 -07002751 // when using overlays, we assume a fully transparent framebuffer
2752 // NOTE: we could reduce how much we need to clear, for instance
2753 // remove where there are opaque FB layers. however, on some
Mathias Agopian3f844832013-08-07 21:24:32 -07002754 // GPUs doing a "clean slate" clear might be more efficient.
Mathias Agopianb9494d52012-04-18 02:28:45 -07002755 // We'll revisit later if needed.
David Sodmanbc815282017-11-05 18:57:52 -08002756 getBE().mRenderEngine->clearWithColor(0, 0, 0, 0);
Mathias Agopianb9494d52012-04-18 02:28:45 -07002757 } else {
Chia-I Wub02087d2017-11-09 10:19:54 -08002758 // we start with the whole screen area and remove the scissor part
Mathias Agopian766dc492012-10-30 18:08:06 -07002759 // we're left with the letterbox region
2760 // (common case is that letterbox ends-up being empty)
Dan Stoza9e56aa02015-11-02 13:00:03 -08002761 const Region letterbox(bounds.subtract(displayDevice->getScissor()));
Mathias Agopian766dc492012-10-30 18:08:06 -07002762
2763 // compute the area to clear
Dan Stoza9e56aa02015-11-02 13:00:03 -08002764 Region region(displayDevice->undefinedRegion.merge(letterbox));
Mathias Agopian766dc492012-10-30 18:08:06 -07002765
Mathias Agopianb9494d52012-04-18 02:28:45 -07002766 // screen is already cleared here
Mathias Agopian87baae12012-07-31 12:38:26 -07002767 if (!region.isEmpty()) {
Mathias Agopianb9494d52012-04-18 02:28:45 -07002768 // can happen with SurfaceView
Dan Stoza9e56aa02015-11-02 13:00:03 -08002769 drawWormhole(displayDevice, region);
Mathias Agopianb9494d52012-04-18 02:28:45 -07002770 }
Mathias Agopiana2f4e562012-04-15 23:34:59 -07002771 }
Mathias Agopianf45c5102012-10-24 16:29:17 -07002772
Dan Stoza9e56aa02015-11-02 13:00:03 -08002773 if (displayDevice->getDisplayType() != DisplayDevice::DISPLAY_PRIMARY) {
Mathias Agopian766dc492012-10-30 18:08:06 -07002774 // just to be on the safe side, we don't set the
Mathias Agopianf45c5102012-10-24 16:29:17 -07002775 // scissor on the main display. It should never be needed
2776 // anyways (though in theory it could since the API allows it).
Dan Stoza9e56aa02015-11-02 13:00:03 -08002777 const Rect& bounds(displayDevice->getBounds());
2778 const Rect& scissor(displayDevice->getScissor());
Mathias Agopianf45c5102012-10-24 16:29:17 -07002779 if (scissor != bounds) {
2780 // scissor doesn't match the screen's dimensions, so we
2781 // need to clear everything outside of it and enable
2782 // the GL scissor so we don't draw anything where we shouldn't
Mathias Agopian3f844832013-08-07 21:24:32 -07002783
Mathias Agopianf45c5102012-10-24 16:29:17 -07002784 // enable scissor for this frame
Dan Stoza9e56aa02015-11-02 13:00:03 -08002785 const uint32_t height = displayDevice->getHeight();
David Sodmanbc815282017-11-05 18:57:52 -08002786 getBE().mRenderEngine->setScissor(scissor.left, height - scissor.bottom,
Mathias Agopian3f844832013-08-07 21:24:32 -07002787 scissor.getWidth(), scissor.getHeight());
Mathias Agopianf45c5102012-10-24 16:29:17 -07002788 }
2789 }
Mathias Agopian85d751c2012-08-29 16:59:24 -07002790 }
Mathias Agopian4b2ba532012-03-29 12:23:51 -07002791
Mathias Agopian85d751c2012-08-29 16:59:24 -07002792 /*
2793 * and then, render the layers targeted at the framebuffer
2794 */
Mathias Agopian4b2ba532012-03-29 12:23:51 -07002795
Dan Stoza9e56aa02015-11-02 13:00:03 -08002796 ALOGV("Rendering client layers");
2797 const Transform& displayTransform = displayDevice->getTransform();
2798 if (hwcId >= 0) {
Mathias Agopian85d751c2012-08-29 16:59:24 -07002799 // we're using h/w composer
Dan Stoza9e56aa02015-11-02 13:00:03 -08002800 bool firstLayer = true;
2801 for (auto& layer : displayDevice->getVisibleLayersSortedByZ()) {
Chia-I Wub02087d2017-11-09 10:19:54 -08002802 const Region clip(bounds.intersect(
Dan Stoza9e56aa02015-11-02 13:00:03 -08002803 displayTransform.transform(layer->visibleRegion)));
2804 ALOGV("Layer: %s", layer->getName().string());
2805 ALOGV(" Composition type: %s",
2806 to_string(layer->getCompositionType(hwcId)).c_str());
Mathias Agopian85d751c2012-08-29 16:59:24 -07002807 if (!clip.isEmpty()) {
Dan Stoza9e56aa02015-11-02 13:00:03 -08002808 switch (layer->getCompositionType(hwcId)) {
2809 case HWC2::Composition::Cursor:
2810 case HWC2::Composition::Device:
Gray Huang267ab792017-01-11 13:41:09 +08002811 case HWC2::Composition::Sideband:
Dan Stoza9e56aa02015-11-02 13:00:03 -08002812 case HWC2::Composition::SolidColor: {
Mathias Agopianac683022013-10-01 15:36:52 -07002813 const Layer::State& state(layer->getDrawingState());
Dan Stoza9e56aa02015-11-02 13:00:03 -08002814 if (layer->getClearClientTarget(hwcId) && !firstLayer &&
chaviw13fdc492017-06-27 12:40:18 -07002815 layer->isOpaque(state) && (state.color.a == 1.0f)
Dan Stoza9e56aa02015-11-02 13:00:03 -08002816 && hasClientComposition) {
Mathias Agopiancd60f992012-08-16 16:28:27 -07002817 // never clear the very first layer since we're
2818 // guaranteed the FB is already cleared
chaviwa76b2712017-09-20 12:02:26 -07002819 layer->clearWithOpenGL(renderArea);
Mathias Agopiancd60f992012-08-16 16:28:27 -07002820 }
Mathias Agopian85d751c2012-08-29 16:59:24 -07002821 break;
Mathias Agopiancd60f992012-08-16 16:28:27 -07002822 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08002823 case HWC2::Composition::Client: {
chaviwa76b2712017-09-20 12:02:26 -07002824 layer->draw(renderArea, clip);
Mathias Agopian85d751c2012-08-29 16:59:24 -07002825 break;
2826 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08002827 default:
Mathias Agopianda27af92012-09-13 18:17:13 -07002828 break;
Mathias Agopiancd60f992012-08-16 16:28:27 -07002829 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08002830 } else {
2831 ALOGV(" Skipping for empty clip");
Mathias Agopian85d751c2012-08-29 16:59:24 -07002832 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08002833 firstLayer = false;
Mathias Agopian85d751c2012-08-29 16:59:24 -07002834 }
2835 } else {
2836 // we're not using h/w composer
Dan Stoza9e56aa02015-11-02 13:00:03 -08002837 for (auto& layer : displayDevice->getVisibleLayersSortedByZ()) {
Chia-I Wub02087d2017-11-09 10:19:54 -08002838 const Region clip(bounds.intersect(
Dan Stoza9e56aa02015-11-02 13:00:03 -08002839 displayTransform.transform(layer->visibleRegion)));
Mathias Agopian85d751c2012-08-29 16:59:24 -07002840 if (!clip.isEmpty()) {
chaviwa76b2712017-09-20 12:02:26 -07002841 layer->draw(renderArea, clip);
Jesse Halla6b32db2012-07-19 16:44:38 -07002842 }
Mathias Agopian4b2ba532012-03-29 12:23:51 -07002843 }
2844 }
Mathias Agopianf45c5102012-10-24 16:29:17 -07002845
Dan Stoza9f26a9c2016-06-22 14:51:09 -07002846 if (applyColorMatrix) {
2847 getRenderEngine().setupColorTransform(oldColorMatrix);
2848 }
2849
Mathias Agopianf45c5102012-10-24 16:29:17 -07002850 // disable scissor at the end of the frame
David Sodmanbc815282017-11-05 18:57:52 -08002851 getBE().mRenderEngine->disableScissor();
Michael Lentine3f121fc2014-10-01 11:17:28 -07002852 return true;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002853}
2854
Fabien Sanglard830b8472016-11-30 16:35:58 -08002855void SurfaceFlinger::drawWormhole(const sp<const DisplayDevice>& displayDevice, const Region& region) const {
2856 const int32_t height = displayDevice->getHeight();
Mathias Agopian3f844832013-08-07 21:24:32 -07002857 RenderEngine& engine(getRenderEngine());
2858 engine.fillRegionWithColor(region, height, 0, 0, 0, 0);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002859}
2860
Dan Stoza7d89d062015-04-30 13:29:25 -07002861status_t SurfaceFlinger::addClientLayer(const sp<Client>& client,
Mathias Agopianac9fa422013-02-11 16:40:36 -08002862 const sp<IBinder>& handle,
Mathias Agopian67106042013-03-14 19:18:13 -07002863 const sp<IGraphicBufferProducer>& gbc,
Robert Carr1f0a16a2016-10-24 16:27:39 -07002864 const sp<Layer>& lbc,
2865 const sp<Layer>& parent)
Mathias Agopian96f08192010-06-02 23:28:45 -07002866{
Dan Stoza7d89d062015-04-30 13:29:25 -07002867 // add this layer to the current state list
2868 {
2869 Mutex::Autolock _l(mStateLock);
Robert Carr1f0a16a2016-10-24 16:27:39 -07002870 if (mNumLayers >= MAX_LAYERS) {
Courtney Goeltzenleuchterab702f52017-04-19 15:14:02 -06002871 ALOGE("AddClientLayer failed, mNumLayers (%zu) >= MAX_LAYERS (%zu)", mNumLayers,
2872 MAX_LAYERS);
Dan Stoza7d89d062015-04-30 13:29:25 -07002873 return NO_MEMORY;
2874 }
Robert Carr1f0a16a2016-10-24 16:27:39 -07002875 if (parent == nullptr) {
2876 mCurrentState.layersSortedByZ.add(lbc);
2877 } else {
Robert Carrebd62af2017-11-28 08:49:59 -08002878 if (parent->isPendingRemoval()) {
Chia-I Wu98f1c102017-05-30 14:54:08 -07002879 ALOGE("addClientLayer called with a removed parent");
2880 return NAME_NOT_FOUND;
2881 }
Robert Carr1f0a16a2016-10-24 16:27:39 -07002882 parent->addChild(lbc);
2883 }
Chia-I Wu98f1c102017-05-30 14:54:08 -07002884
Dan Stoza7d89d062015-04-30 13:29:25 -07002885 mGraphicBufferProducerList.add(IInterface::asBinder(gbc));
Robert Carr1f0a16a2016-10-24 16:27:39 -07002886 mLayersAdded = true;
2887 mNumLayers++;
Dan Stoza7d89d062015-04-30 13:29:25 -07002888 }
2889
Mathias Agopian96f08192010-06-02 23:28:45 -07002890 // attach this layer to the client
Mathias Agopianac9fa422013-02-11 16:40:36 -08002891 client->attachLayer(handle, lbc);
Mathias Agopian4f113742011-05-03 16:21:41 -07002892
Dan Stoza7d89d062015-04-30 13:29:25 -07002893 return NO_ERROR;
Mathias Agopian96f08192010-06-02 23:28:45 -07002894}
2895
Chia-I Wu515dc9c2017-06-15 12:53:59 -07002896status_t SurfaceFlinger::removeLayer(const sp<Layer>& layer, bool topLevelOnly) {
Robert Carr7f9b8992017-03-10 11:08:39 -08002897 Mutex::Autolock _l(mStateLock);
2898
chaviw8b3871a2017-11-01 17:41:01 -07002899 if (layer->isPendingRemoval()) {
2900 return NO_ERROR;
2901 }
2902
Robert Carr1f0a16a2016-10-24 16:27:39 -07002903 const auto& p = layer->getParent();
Chia-I Wu515dc9c2017-06-15 12:53:59 -07002904 ssize_t index;
Chia-I Wu98f1c102017-05-30 14:54:08 -07002905 if (p != nullptr) {
Chia-I Wu515dc9c2017-06-15 12:53:59 -07002906 if (topLevelOnly) {
2907 return NO_ERROR;
2908 }
2909
Chia-I Wu98f1c102017-05-30 14:54:08 -07002910 sp<Layer> ancestor = p;
2911 while (ancestor->getParent() != nullptr) {
2912 ancestor = ancestor->getParent();
2913 }
2914 if (mCurrentState.layersSortedByZ.indexOf(ancestor) < 0) {
2915 ALOGE("removeLayer called with a layer whose parent has been removed");
2916 return NAME_NOT_FOUND;
2917 }
Chia-I Wufae51c42017-06-15 12:53:59 -07002918
2919 index = p->removeChild(layer);
Chia-I Wu515dc9c2017-06-15 12:53:59 -07002920 } else {
2921 index = mCurrentState.layersSortedByZ.remove(layer);
Chia-I Wu98f1c102017-05-30 14:54:08 -07002922 }
2923
Robert Carr136e2f62017-02-08 17:54:29 -08002924 // As a matter of normal operation, the LayerCleaner will produce a second
2925 // attempt to remove the surface. The Layer will be kept alive in mDrawingState
2926 // so we will succeed in promoting it, but it's already been removed
2927 // from mCurrentState. As long as we can find it in mDrawingState we have no problem
2928 // otherwise something has gone wrong and we are leaking the layer.
2929 if (index < 0 && mDrawingState.layersSortedByZ.indexOf(layer) < 0) {
Robert Carr1f0a16a2016-10-24 16:27:39 -07002930 ALOGE("Failed to find layer (%s) in layer parent (%s).",
2931 layer->getName().string(),
2932 (p != nullptr) ? p->getName().string() : "no-parent");
2933 return BAD_VALUE;
Robert Carr136e2f62017-02-08 17:54:29 -08002934 } else if (index < 0) {
2935 return NO_ERROR;
Steve Pfetsch598f6d52016-10-25 21:47:58 +00002936 }
Robert Carr1f0a16a2016-10-24 16:27:39 -07002937
Chia-I Wuc6657022017-08-15 11:18:17 -07002938 layer->onRemovedFromCurrentState();
Robert Carr1f0a16a2016-10-24 16:27:39 -07002939 mLayersPendingRemoval.add(layer);
2940 mLayersRemoved = true;
Chia-I Wu98f1c102017-05-30 14:54:08 -07002941 mNumLayers -= 1 + layer->getChildrenCount();
Robert Carr1f0a16a2016-10-24 16:27:39 -07002942 setTransactionFlags(eTransactionNeeded);
2943 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002944}
2945
Fabien Sanglardc8251eb2016-12-07 13:59:48 -08002946uint32_t SurfaceFlinger::peekTransactionFlags() {
Mathias Agopiandea20b12011-05-03 17:04:02 -07002947 return android_atomic_release_load(&mTransactionFlags);
2948}
2949
Mathias Agopian3f844832013-08-07 21:24:32 -07002950uint32_t SurfaceFlinger::getTransactionFlags(uint32_t flags) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002951 return android_atomic_and(~flags, &mTransactionFlags) & flags;
2952}
2953
Mathias Agopian3f844832013-08-07 21:24:32 -07002954uint32_t SurfaceFlinger::setTransactionFlags(uint32_t flags) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002955 uint32_t old = android_atomic_or(flags, &mTransactionFlags);
2956 if ((old & flags)==0) { // wake the server up
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08002957 signalTransaction();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002958 }
2959 return old;
2960}
2961
Mathias Agopian8b33f032012-07-24 20:43:54 -07002962void SurfaceFlinger::setTransactionState(
2963 const Vector<ComposerState>& state,
2964 const Vector<DisplayState>& displays,
2965 uint32_t flags)
2966{
Jamie Gennis7c41bf72012-10-17 09:29:47 -07002967 ATRACE_CALL();
Mathias Agopian698c0872011-06-28 19:09:31 -07002968 Mutex::Autolock _l(mStateLock);
Jamie Gennis28378392011-10-12 17:39:00 -07002969 uint32_t transactionFlags = 0;
Mathias Agopiane57f2922012-08-09 16:29:12 -07002970
Jamie Gennis2d5e2302012-10-15 18:24:43 -07002971 if (flags & eAnimation) {
2972 // For window updates that are part of an animation we must wait for
2973 // previous animation "frames" to be handled.
2974 while (mAnimTransactionPending) {
Jamie Gennis7c41bf72012-10-17 09:29:47 -07002975 status_t err = mTransactionCV.waitRelative(mStateLock, s2ns(5));
Jamie Gennis2d5e2302012-10-15 18:24:43 -07002976 if (CC_UNLIKELY(err != NO_ERROR)) {
2977 // just in case something goes wrong in SF, return to the
Jamie Gennis7c41bf72012-10-17 09:29:47 -07002978 // caller after a few seconds.
2979 ALOGW_IF(err == TIMED_OUT, "setTransactionState timed out "
2980 "waiting for previous animation frame");
Jamie Gennis2d5e2302012-10-15 18:24:43 -07002981 mAnimTransactionPending = false;
2982 break;
2983 }
2984 }
2985 }
2986
Mathias Agopiane57f2922012-08-09 16:29:12 -07002987 size_t count = displays.size();
2988 for (size_t i=0 ; i<count ; i++) {
2989 const DisplayState& s(displays[i]);
2990 transactionFlags |= setDisplayStateLocked(s);
Jamie Gennisb8d69a52011-10-10 15:48:06 -07002991 }
2992
Mathias Agopiane57f2922012-08-09 16:29:12 -07002993 count = state.size();
Mathias Agopian698c0872011-06-28 19:09:31 -07002994 for (size_t i=0 ; i<count ; i++) {
2995 const ComposerState& s(state[i]);
Mathias Agopiand17e3b52012-10-22 14:27:45 -07002996 // Here we need to check that the interface we're given is indeed
Peiyong Lin566a3b42018-01-09 18:22:43 -08002997 // one of our own. A malicious client could give us a nullptr
Mathias Agopiand17e3b52012-10-22 14:27:45 -07002998 // IInterface, or one of its own or even one of our own but a
2999 // different type. All these situations would cause us to crash.
3000 //
3001 // NOTE: it would be better to use RTTI as we could directly check
3002 // that we have a Client*. however, RTTI is disabled in Android.
Peiyong Lin566a3b42018-01-09 18:22:43 -08003003 if (s.client != nullptr) {
Marco Nelissen097ca272014-11-14 08:01:01 -08003004 sp<IBinder> binder = IInterface::asBinder(s.client);
Peiyong Lin566a3b42018-01-09 18:22:43 -08003005 if (binder != nullptr) {
3006 if (binder->queryLocalInterface(ISurfaceComposerClient::descriptor) != nullptr) {
Mathias Agopiand17e3b52012-10-22 14:27:45 -07003007 sp<Client> client( static_cast<Client *>(s.client.get()) );
3008 transactionFlags |= setClientStateLocked(client, s.state);
3009 }
3010 }
3011 }
Mathias Agopian698c0872011-06-28 19:09:31 -07003012 }
Mathias Agopian698c0872011-06-28 19:09:31 -07003013
Jorim Jaggibdcf09c2017-08-08 15:22:08 +02003014 // If a synchronous transaction is explicitly requested without any changes, force a transaction
3015 // anyway. This can be used as a flush mechanism for previous async transactions.
3016 // Empty animation transaction can be used to simulate back-pressure, so also force a
3017 // transaction for empty animation transactions.
3018 if (transactionFlags == 0 &&
3019 ((flags & eSynchronous) || (flags & eAnimation))) {
Robert Carr2a7dbb42016-05-24 11:41:28 -07003020 transactionFlags = eTransactionNeeded;
3021 }
3022
Mathias Agopian386aa982011-11-07 21:58:03 -08003023 if (transactionFlags) {
Irvelffc9efc2016-07-27 15:16:37 -07003024 if (mInterceptor.isEnabled()) {
3025 mInterceptor.saveTransaction(state, mCurrentState.displays, displays, flags);
3026 }
Irvel468051e2016-06-13 16:44:44 -07003027
Mathias Agopian386aa982011-11-07 21:58:03 -08003028 // this triggers the transaction
3029 setTransactionFlags(transactionFlags);
3030
3031 // if this is a synchronous transaction, wait for it to take effect
3032 // before returning.
3033 if (flags & eSynchronous) {
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003034 mTransactionPending = true;
Mathias Agopian386aa982011-11-07 21:58:03 -08003035 }
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003036 if (flags & eAnimation) {
3037 mAnimTransactionPending = true;
3038 }
3039 while (mTransactionPending) {
Mathias Agopian386aa982011-11-07 21:58:03 -08003040 status_t err = mTransactionCV.waitRelative(mStateLock, s2ns(5));
3041 if (CC_UNLIKELY(err != NO_ERROR)) {
3042 // just in case something goes wrong in SF, return to the
3043 // called after a few seconds.
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003044 ALOGW_IF(err == TIMED_OUT, "setTransactionState timed out!");
3045 mTransactionPending = false;
Mathias Agopian386aa982011-11-07 21:58:03 -08003046 break;
3047 }
Mathias Agopiancbb288b2009-09-07 16:32:45 -07003048 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003049 }
3050}
3051
Mathias Agopiane57f2922012-08-09 16:29:12 -07003052uint32_t SurfaceFlinger::setDisplayStateLocked(const DisplayState& s)
3053{
Jesse Hall9a143922012-10-04 16:29:19 -07003054 ssize_t dpyIdx = mCurrentState.displays.indexOfKey(s.token);
3055 if (dpyIdx < 0)
3056 return 0;
3057
Mathias Agopiane57f2922012-08-09 16:29:12 -07003058 uint32_t flags = 0;
Jesse Hall9a143922012-10-04 16:29:19 -07003059 DisplayDeviceState& disp(mCurrentState.displays.editValueAt(dpyIdx));
Mathias Agopian3ee454a2012-08-27 16:28:24 -07003060 if (disp.isValid()) {
Mathias Agopiane57f2922012-08-09 16:29:12 -07003061 const uint32_t what = s.what;
3062 if (what & DisplayState::eSurfaceChanged) {
Marco Nelissen097ca272014-11-14 08:01:01 -08003063 if (IInterface::asBinder(disp.surface) != IInterface::asBinder(s.surface)) {
Mathias Agopiane57f2922012-08-09 16:29:12 -07003064 disp.surface = s.surface;
3065 flags |= eDisplayTransactionNeeded;
3066 }
3067 }
3068 if (what & DisplayState::eLayerStackChanged) {
3069 if (disp.layerStack != s.layerStack) {
3070 disp.layerStack = s.layerStack;
3071 flags |= eDisplayTransactionNeeded;
3072 }
3073 }
Mathias Agopian00e8c7a2012-09-04 19:30:46 -07003074 if (what & DisplayState::eDisplayProjectionChanged) {
Mathias Agopiane57f2922012-08-09 16:29:12 -07003075 if (disp.orientation != s.orientation) {
3076 disp.orientation = s.orientation;
3077 flags |= eDisplayTransactionNeeded;
3078 }
3079 if (disp.frame != s.frame) {
3080 disp.frame = s.frame;
3081 flags |= eDisplayTransactionNeeded;
3082 }
3083 if (disp.viewport != s.viewport) {
3084 disp.viewport = s.viewport;
3085 flags |= eDisplayTransactionNeeded;
3086 }
3087 }
Michael Lentine47e45402014-07-18 15:34:25 -07003088 if (what & DisplayState::eDisplaySizeChanged) {
3089 if (disp.width != s.width) {
3090 disp.width = s.width;
3091 flags |= eDisplayTransactionNeeded;
3092 }
3093 if (disp.height != s.height) {
3094 disp.height = s.height;
3095 flags |= eDisplayTransactionNeeded;
3096 }
3097 }
Mathias Agopiane57f2922012-08-09 16:29:12 -07003098 }
3099 return flags;
3100}
3101
3102uint32_t SurfaceFlinger::setClientStateLocked(
3103 const sp<Client>& client,
3104 const layer_state_t& s)
3105{
Mathias Agopian13127d82013-03-05 17:47:11 -08003106 sp<Layer> layer(client->getLayerUser(s.surface));
chaviw8b3871a2017-11-01 17:41:01 -07003107 if (layer == nullptr) {
3108 return 0;
3109 }
3110
3111 if (layer->isPendingRemoval()) {
3112 ALOGW("Attempting to set client state on removed layer: %s", layer->getName().string());
3113 return 0;
3114 }
3115
3116 uint32_t flags = 0;
3117
3118 const uint32_t what = s.what;
3119 bool geometryAppliesWithResize =
3120 what & layer_state_t::eGeometryAppliesWithResize;
3121 if (what & layer_state_t::ePositionChanged) {
3122 if (layer->setPosition(s.x, s.y, !geometryAppliesWithResize)) {
3123 flags |= eTraversalNeeded;
Mathias Agopiane57f2922012-08-09 16:29:12 -07003124 }
chaviw8b3871a2017-11-01 17:41:01 -07003125 }
3126 if (what & layer_state_t::eLayerChanged) {
3127 // NOTE: index needs to be calculated before we update the state
3128 const auto& p = layer->getParent();
3129 if (p == nullptr) {
chaviw64f7b422017-07-12 10:31:58 -07003130 ssize_t idx = mCurrentState.layersSortedByZ.indexOf(layer);
chaviw8b3871a2017-11-01 17:41:01 -07003131 if (layer->setLayer(s.z) && idx >= 0) {
Mathias Agopiane57f2922012-08-09 16:29:12 -07003132 mCurrentState.layersSortedByZ.removeAt(idx);
3133 mCurrentState.layersSortedByZ.add(layer);
3134 // we need traversal (state changed)
3135 // AND transaction (list changed)
3136 flags |= eTransactionNeeded|eTraversalNeeded;
3137 }
chaviw8b3871a2017-11-01 17:41:01 -07003138 } else {
3139 if (p->setChildLayer(layer, s.z)) {
chaviw06178942017-07-27 10:25:59 -07003140 flags |= eTransactionNeeded|eTraversalNeeded;
3141 }
3142 }
chaviw8b3871a2017-11-01 17:41:01 -07003143 }
3144 if (what & layer_state_t::eRelativeLayerChanged) {
Robert Carr503c7042017-09-27 15:06:08 -07003145 // NOTE: index needs to be calculated before we update the state
3146 const auto& p = layer->getParent();
3147 if (p == nullptr) {
3148 ssize_t idx = mCurrentState.layersSortedByZ.indexOf(layer);
3149 if (layer->setRelativeLayer(s.relativeLayerHandle, s.z) && idx >= 0) {
3150 mCurrentState.layersSortedByZ.removeAt(idx);
3151 mCurrentState.layersSortedByZ.add(layer);
3152 // we need traversal (state changed)
3153 // AND transaction (list changed)
3154 flags |= eTransactionNeeded|eTraversalNeeded;
3155 }
3156 } else {
3157 if (p->setChildRelativeLayer(layer, s.relativeLayerHandle, s.z)) {
3158 flags |= eTransactionNeeded|eTraversalNeeded;
3159 }
chaviw8b3871a2017-11-01 17:41:01 -07003160 }
3161 }
3162 if (what & layer_state_t::eSizeChanged) {
3163 if (layer->setSize(s.w, s.h)) {
3164 flags |= eTraversalNeeded;
3165 }
3166 }
3167 if (what & layer_state_t::eAlphaChanged) {
3168 if (layer->setAlpha(s.alpha))
3169 flags |= eTraversalNeeded;
3170 }
3171 if (what & layer_state_t::eColorChanged) {
3172 if (layer->setColor(s.color))
3173 flags |= eTraversalNeeded;
3174 }
3175 if (what & layer_state_t::eMatrixChanged) {
3176 if (layer->setMatrix(s.matrix))
3177 flags |= eTraversalNeeded;
3178 }
3179 if (what & layer_state_t::eTransparentRegionChanged) {
3180 if (layer->setTransparentRegionHint(s.transparentRegion))
3181 flags |= eTraversalNeeded;
3182 }
3183 if (what & layer_state_t::eFlagsChanged) {
3184 if (layer->setFlags(s.flags, s.mask))
3185 flags |= eTraversalNeeded;
3186 }
3187 if (what & layer_state_t::eCropChanged) {
3188 if (layer->setCrop(s.crop, !geometryAppliesWithResize))
3189 flags |= eTraversalNeeded;
3190 }
3191 if (what & layer_state_t::eFinalCropChanged) {
3192 if (layer->setFinalCrop(s.finalCrop, !geometryAppliesWithResize))
3193 flags |= eTraversalNeeded;
3194 }
3195 if (what & layer_state_t::eLayerStackChanged) {
3196 ssize_t idx = mCurrentState.layersSortedByZ.indexOf(layer);
3197 // We only allow setting layer stacks for top level layers,
3198 // everything else inherits layer stack from its parent.
3199 if (layer->hasParent()) {
3200 ALOGE("Attempt to set layer stack on layer with parent (%s) is invalid",
3201 layer->getName().string());
3202 } else if (idx < 0) {
3203 ALOGE("Attempt to set layer stack on layer without parent (%s) that "
3204 "that also does not appear in the top level layer list. Something"
3205 " has gone wrong.", layer->getName().string());
3206 } else if (layer->setLayerStack(s.layerStack)) {
3207 mCurrentState.layersSortedByZ.removeAt(idx);
3208 mCurrentState.layersSortedByZ.add(layer);
3209 // we need traversal (state changed)
3210 // AND transaction (list changed)
3211 flags |= eTransactionNeeded|eTraversalNeeded;
3212 }
3213 }
3214 if (what & layer_state_t::eDeferTransaction) {
3215 if (s.barrierHandle != nullptr) {
3216 layer->deferTransactionUntil(s.barrierHandle, s.frameNumber);
3217 } else if (s.barrierGbp != nullptr) {
3218 const sp<IGraphicBufferProducer>& gbp = s.barrierGbp;
3219 if (authenticateSurfaceTextureLocked(gbp)) {
3220 const auto& otherLayer =
3221 (static_cast<MonitoredProducer*>(gbp.get()))->getLayer();
3222 layer->deferTransactionUntil(otherLayer, s.frameNumber);
3223 } else {
3224 ALOGE("Attempt to defer transaction to to an"
3225 " unrecognized GraphicBufferProducer");
Robert Carr1db73f62016-12-21 12:58:51 -08003226 }
3227 }
chaviw8b3871a2017-11-01 17:41:01 -07003228 // We don't trigger a traversal here because if no other state is
3229 // changed, we don't want this to cause any more work
3230 }
3231 if (what & layer_state_t::eReparent) {
chaviw8ea97bb2017-11-29 10:05:15 -08003232 bool hadParent = layer->hasParent();
chaviw8b3871a2017-11-01 17:41:01 -07003233 if (layer->reparent(s.parentHandleForChild)) {
chaviw8ea97bb2017-11-29 10:05:15 -08003234 if (!hadParent) {
3235 mCurrentState.layersSortedByZ.remove(layer);
3236 }
chaviw8b3871a2017-11-01 17:41:01 -07003237 flags |= eTransactionNeeded|eTraversalNeeded;
Robert Carr9524cb32017-02-13 11:32:32 -08003238 }
chaviw8b3871a2017-11-01 17:41:01 -07003239 }
3240 if (what & layer_state_t::eReparentChildren) {
3241 if (layer->reparentChildren(s.reparentHandle)) {
3242 flags |= eTransactionNeeded|eTraversalNeeded;
Robert Carrc3574f72016-03-24 12:19:32 -07003243 }
Mathias Agopiane57f2922012-08-09 16:29:12 -07003244 }
chaviw8b3871a2017-11-01 17:41:01 -07003245 if (what & layer_state_t::eDetachChildren) {
3246 layer->detachChildren();
3247 }
3248 if (what & layer_state_t::eOverrideScalingModeChanged) {
3249 layer->setOverrideScalingMode(s.overrideScalingMode);
3250 // We don't trigger a traversal here because if no other state is
3251 // changed, we don't want this to cause any more work
3252 }
Mathias Agopiane57f2922012-08-09 16:29:12 -07003253 return flags;
3254}
3255
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003256status_t SurfaceFlinger::createLayer(
Mathias Agopian0ef4e152011-04-20 14:19:32 -07003257 const String8& name,
3258 const sp<Client>& client,
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003259 uint32_t w, uint32_t h, PixelFormat format, uint32_t flags,
Albert Chaulk479c60c2017-01-27 14:21:34 -05003260 uint32_t windowType, uint32_t ownerUid, sp<IBinder>* handle,
3261 sp<IGraphicBufferProducer>* gbp, sp<Layer>* parent)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003262{
Mathias Agopian6e2d6482009-07-09 18:16:43 -07003263 if (int32_t(w|h) < 0) {
Mathias Agopian921e6ac2012-07-23 23:11:29 -07003264 ALOGE("createLayer() failed, w or h is negative (w=%d, h=%d)",
Mathias Agopian6e2d6482009-07-09 18:16:43 -07003265 int(w), int(h));
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003266 return BAD_VALUE;
Mathias Agopian6e2d6482009-07-09 18:16:43 -07003267 }
Andreas Huber8b42e8a2010-08-16 08:49:37 -07003268
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003269 status_t result = NO_ERROR;
3270
3271 sp<Layer> layer;
3272
Cody Northropbc755282017-03-31 12:00:08 -06003273 String8 uniqueName = getUniqueLayerName(name);
3274
Mathias Agopian3165cc22012-08-08 19:42:09 -07003275 switch (flags & ISurfaceComposerClient::eFXSurfaceMask) {
3276 case ISurfaceComposerClient::eFXSurfaceNormal:
David Sodman0c69cad2017-08-21 12:12:51 -07003277 result = createBufferLayer(client,
Cody Northropbc755282017-03-31 12:00:08 -06003278 uniqueName, w, h, flags, format,
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003279 handle, gbp, &layer);
David Sodman0c69cad2017-08-21 12:12:51 -07003280
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003281 break;
chaviw13fdc492017-06-27 12:40:18 -07003282 case ISurfaceComposerClient::eFXSurfaceColor:
3283 result = createColorLayer(client,
Cody Northropbc755282017-03-31 12:00:08 -06003284 uniqueName, w, h, flags,
David Sodman0c69cad2017-08-21 12:12:51 -07003285 handle, &layer);
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003286 break;
3287 default:
3288 result = BAD_VALUE;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003289 break;
3290 }
3291
Dan Stoza7d89d062015-04-30 13:29:25 -07003292 if (result != NO_ERROR) {
3293 return result;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003294 }
Dan Stoza7d89d062015-04-30 13:29:25 -07003295
Chia-I Wuab0c3192017-08-01 11:29:00 -07003296 // window type is WINDOW_TYPE_DONT_SCREENSHOT from SurfaceControl.java
3297 // TODO b/64227542
3298 if (windowType == 441731) {
3299 windowType = 2024; // TYPE_NAVIGATION_BAR_PANEL
3300 layer->setPrimaryDisplayOnly();
3301 }
3302
Albert Chaulk479c60c2017-01-27 14:21:34 -05003303 layer->setInfo(windowType, ownerUid);
3304
Robert Carr1f0a16a2016-10-24 16:27:39 -07003305 result = addClientLayer(client, *handle, *gbp, layer, *parent);
Dan Stoza7d89d062015-04-30 13:29:25 -07003306 if (result != NO_ERROR) {
3307 return result;
3308 }
Irvelffc9efc2016-07-27 15:16:37 -07003309 mInterceptor.saveSurfaceCreation(layer);
Dan Stoza7d89d062015-04-30 13:29:25 -07003310
3311 setTransactionFlags(eTransactionNeeded);
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003312 return result;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003313}
3314
Cody Northropbc755282017-03-31 12:00:08 -06003315String8 SurfaceFlinger::getUniqueLayerName(const String8& name)
3316{
3317 bool matchFound = true;
3318 uint32_t dupeCounter = 0;
3319
3320 // Tack on our counter whether there is a hit or not, so everyone gets a tag
3321 String8 uniqueName = name + "#" + String8(std::to_string(dupeCounter).c_str());
3322
3323 // Loop over layers until we're sure there is no matching name
3324 while (matchFound) {
3325 matchFound = false;
3326 mDrawingState.traverseInZOrder([&](Layer* layer) {
3327 if (layer->getName() == uniqueName) {
3328 matchFound = true;
3329 uniqueName = name + "#" + String8(std::to_string(++dupeCounter).c_str());
3330 }
3331 });
3332 }
3333
3334 ALOGD_IF(dupeCounter > 0, "duplicate layer name: changing %s to %s", name.c_str(), uniqueName.c_str());
3335
3336 return uniqueName;
3337}
3338
David Sodman0c69cad2017-08-21 12:12:51 -07003339status_t SurfaceFlinger::createBufferLayer(const sp<Client>& client,
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003340 const String8& name, uint32_t w, uint32_t h, uint32_t flags, PixelFormat& format,
3341 sp<IBinder>* handle, sp<IGraphicBufferProducer>* gbp, sp<Layer>* outLayer)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003342{
3343 // initialize the surfaces
Mathias Agopian92a979a2012-08-02 18:32:23 -07003344 switch (format) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003345 case PIXEL_FORMAT_TRANSPARENT:
3346 case PIXEL_FORMAT_TRANSLUCENT:
3347 format = PIXEL_FORMAT_RGBA_8888;
3348 break;
3349 case PIXEL_FORMAT_OPAQUE:
Mathias Agopian8f105402010-04-05 18:01:24 -07003350 format = PIXEL_FORMAT_RGBX_8888;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003351 break;
3352 }
3353
David Sodman0c69cad2017-08-21 12:12:51 -07003354 sp<BufferLayer> layer = new BufferLayer(this, client, name, w, h, flags);
3355 status_t err = layer->setBuffers(w, h, format, flags);
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003356 if (err == NO_ERROR) {
David Sodman0c69cad2017-08-21 12:12:51 -07003357 *handle = layer->getHandle();
3358 *gbp = layer->getProducer();
3359 *outLayer = layer;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003360 }
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003361
David Sodman0c69cad2017-08-21 12:12:51 -07003362 ALOGE_IF(err, "createBufferLayer() failed (%s)", strerror(-err));
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003363 return err;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003364}
3365
chaviw13fdc492017-06-27 12:40:18 -07003366status_t SurfaceFlinger::createColorLayer(const sp<Client>& client,
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003367 const String8& name, uint32_t w, uint32_t h, uint32_t flags,
David Sodman0c69cad2017-08-21 12:12:51 -07003368 sp<IBinder>* handle, sp<Layer>* outLayer)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003369{
chaviw13fdc492017-06-27 12:40:18 -07003370 *outLayer = new ColorLayer(this, client, name, w, h, flags);
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003371 *handle = (*outLayer)->getHandle();
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003372 return NO_ERROR;
Mathias Agopian118d0242011-10-13 16:02:48 -07003373}
3374
Mathias Agopianac9fa422013-02-11 16:40:36 -08003375status_t SurfaceFlinger::onLayerRemoved(const sp<Client>& client, const sp<IBinder>& handle)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003376{
Robert Carr9524cb32017-02-13 11:32:32 -08003377 // called by a client when it wants to remove a Layer
Mathias Agopian67106042013-03-14 19:18:13 -07003378 status_t err = NO_ERROR;
3379 sp<Layer> l(client->getLayerUser(handle));
Peiyong Lin566a3b42018-01-09 18:22:43 -08003380 if (l != nullptr) {
Irvelffc9efc2016-07-27 15:16:37 -07003381 mInterceptor.saveSurfaceDeletion(l);
Mathias Agopian67106042013-03-14 19:18:13 -07003382 err = removeLayer(l);
3383 ALOGE_IF(err<0 && err != NAME_NOT_FOUND,
3384 "error removing layer=%p (%s)", l.get(), strerror(-err));
Mathias Agopian9a112062009-04-17 19:36:26 -07003385 }
3386 return err;
3387}
3388
Mathias Agopian13127d82013-03-05 17:47:11 -08003389status_t SurfaceFlinger::onLayerDestroyed(const wp<Layer>& layer)
Mathias Agopian9a112062009-04-17 19:36:26 -07003390{
Mathias Agopian67106042013-03-14 19:18:13 -07003391 // called by ~LayerCleaner() when all references to the IBinder (handle)
3392 // are gone
Robert Carr9524cb32017-02-13 11:32:32 -08003393 sp<Layer> l = layer.promote();
3394 if (l == nullptr) {
3395 // The layer has already been removed, carry on
3396 return NO_ERROR;
Robert Carr9524cb32017-02-13 11:32:32 -08003397 }
Chia-I Wu515dc9c2017-06-15 12:53:59 -07003398 // If we have a parent, then we can continue to live as long as it does.
3399 return removeLayer(l, true);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003400}
3401
Mathias Agopianb60314a2012-04-10 22:09:54 -07003402// ---------------------------------------------------------------------------
3403
Andy McFadden13a082e2012-08-24 10:16:42 -07003404void SurfaceFlinger::onInitializeDisplays() {
Jesse Hall01e29052013-02-19 16:13:35 -08003405 // reset screen orientation and use primary layer stack
Andy McFadden13a082e2012-08-24 10:16:42 -07003406 Vector<ComposerState> state;
3407 Vector<DisplayState> displays;
3408 DisplayState d;
Jesse Hall01e29052013-02-19 16:13:35 -08003409 d.what = DisplayState::eDisplayProjectionChanged |
3410 DisplayState::eLayerStackChanged;
Jesse Hall692c7232012-11-08 15:41:56 -08003411 d.token = mBuiltinDisplays[DisplayDevice::DISPLAY_PRIMARY];
Jesse Hall01e29052013-02-19 16:13:35 -08003412 d.layerStack = 0;
Andy McFadden13a082e2012-08-24 10:16:42 -07003413 d.orientation = DisplayState::eOrientationDefault;
Jeff Brown4c05dd12012-09-09 00:07:17 -07003414 d.frame.makeInvalid();
3415 d.viewport.makeInvalid();
Michael Lentine47e45402014-07-18 15:34:25 -07003416 d.width = 0;
3417 d.height = 0;
Andy McFadden13a082e2012-08-24 10:16:42 -07003418 displays.add(d);
3419 setTransactionState(state, displays, 0);
Steven Thomasb02664d2017-07-26 18:48:28 -07003420 setPowerModeInternal(getDisplayDevice(d.token), HWC_POWER_MODE_NORMAL,
3421 /*stateLockHeld*/ false);
Jamie Gennis6547ff42013-07-16 20:12:42 -07003422
David Sodman105b7dc2017-11-04 20:28:14 -07003423 const auto& activeConfig = getBE().mHwc->getActiveConfig(HWC_DISPLAY_PRIMARY);
Dan Stoza9e56aa02015-11-02 13:00:03 -08003424 const nsecs_t period = activeConfig->getVsyncPeriod();
Jamie Gennis6547ff42013-07-16 20:12:42 -07003425 mAnimFrameTracker.setDisplayRefreshPeriod(period);
Brian Anderson0a61b0c2016-12-07 14:55:56 -08003426
Brian Andersond0010582017-03-07 13:20:31 -08003427 // Use phase of 0 since phase is not known.
3428 // Use latency of 0, which will snap to the ideal latency.
3429 setCompositorTimingSnapped(0, period, 0);
Andy McFadden13a082e2012-08-24 10:16:42 -07003430}
3431
3432void SurfaceFlinger::initializeDisplays() {
3433 class MessageScreenInitialized : public MessageBase {
3434 SurfaceFlinger* flinger;
3435 public:
Chih-Hung Hsiehc4067912016-05-03 14:03:27 -07003436 explicit MessageScreenInitialized(SurfaceFlinger* flinger) : flinger(flinger) { }
Andy McFadden13a082e2012-08-24 10:16:42 -07003437 virtual bool handler() {
3438 flinger->onInitializeDisplays();
3439 return true;
3440 }
3441 };
3442 sp<MessageBase> msg = new MessageScreenInitialized(this);
3443 postMessageAsync(msg); // we may be called from main thread, use async message
3444}
3445
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003446void SurfaceFlinger::setPowerModeInternal(const sp<DisplayDevice>& hw,
Steven Thomasb02664d2017-07-26 18:48:28 -07003447 int mode, bool stateLockHeld) {
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003448 ALOGD("Set power mode=%d, type=%d flinger=%p", mode, hw->getDisplayType(),
3449 this);
3450 int32_t type = hw->getDisplayType();
3451 int currentMode = hw->getPowerMode();
Andy McFadden13a082e2012-08-24 10:16:42 -07003452
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003453 if (mode == currentMode) {
Andy McFaddenc01a79d2012-09-27 16:02:06 -07003454 return;
3455 }
3456
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003457 hw->setPowerMode(mode);
3458 if (type >= DisplayDevice::NUM_BUILTIN_DISPLAY_TYPES) {
3459 ALOGW("Trying to set power mode for virtual display");
3460 return;
3461 }
Andy McFaddenc01a79d2012-09-27 16:02:06 -07003462
Irvelffc9efc2016-07-27 15:16:37 -07003463 if (mInterceptor.isEnabled()) {
Steven Thomasb02664d2017-07-26 18:48:28 -07003464 ConditionalLock lock(mStateLock, !stateLockHeld);
Irvelffc9efc2016-07-27 15:16:37 -07003465 ssize_t idx = mCurrentState.displays.indexOfKey(hw->getDisplayToken());
3466 if (idx < 0) {
3467 ALOGW("Surface Interceptor SavePowerMode: invalid display token");
3468 return;
3469 }
3470 mInterceptor.savePowerModeUpdate(mCurrentState.displays.valueAt(idx).displayId, mode);
3471 }
3472
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003473 if (currentMode == HWC_POWER_MODE_OFF) {
Tim Murrayf9d4e442016-08-02 15:43:59 -07003474 // Turn on the display
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003475 getHwComposer().setPowerMode(type, mode);
Matthew Bouyack38d49612017-05-12 12:49:32 -07003476 if (type == DisplayDevice::DISPLAY_PRIMARY &&
3477 mode != HWC_POWER_MODE_DOZE_SUSPEND) {
Andy McFaddenc01a79d2012-09-27 16:02:06 -07003478 // FIXME: eventthread only knows about the main display right now
3479 mEventThread->onScreenAcquired();
Jesse Hall948fe0c2013-10-14 12:56:09 -07003480 resyncToHardwareVsync(true);
Andy McFaddenc01a79d2012-09-27 16:02:06 -07003481 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003482
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003483 mVisibleRegionsDirty = true;
Dan Stozab90cf072015-03-05 11:05:59 -08003484 mHasPoweredOff = true;
Steven Thomas6d8110b2017-08-31 18:24:21 -07003485 repaintEverythingLocked();
Tim Murrayf9d4e442016-08-02 15:43:59 -07003486
3487 struct sched_param param = {0};
3488 param.sched_priority = 1;
3489 if (sched_setscheduler(0, SCHED_FIFO, &param) != 0) {
3490 ALOGW("Couldn't set SCHED_FIFO on display on");
3491 }
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003492 } else if (mode == HWC_POWER_MODE_OFF) {
Tim Murrayf9d4e442016-08-02 15:43:59 -07003493 // Turn off the display
3494 struct sched_param param = {0};
3495 if (sched_setscheduler(0, SCHED_OTHER, &param) != 0) {
3496 ALOGW("Couldn't set SCHED_OTHER on display off");
3497 }
3498
Matthew Bouyackcd9b55c2017-06-01 14:37:29 -07003499 if (type == DisplayDevice::DISPLAY_PRIMARY &&
3500 currentMode != HWC_POWER_MODE_DOZE_SUSPEND) {
Jesse Hall948fe0c2013-10-14 12:56:09 -07003501 disableHardwareVsync(true); // also cancels any in-progress resync
3502
Mathias Agopiancde87a32012-09-13 14:09:01 -07003503 // FIXME: eventthread only knows about the main display right now
3504 mEventThread->onScreenReleased();
3505 }
Andy McFaddenc01a79d2012-09-27 16:02:06 -07003506
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003507 getHwComposer().setPowerMode(type, mode);
3508 mVisibleRegionsDirty = true;
3509 // from this point on, SF will stop drawing on this display
Matthew Bouyack38d49612017-05-12 12:49:32 -07003510 } else if (mode == HWC_POWER_MODE_DOZE ||
3511 mode == HWC_POWER_MODE_NORMAL) {
Zheng Zhang8a43fe62017-03-17 11:19:39 +01003512 // Update display while dozing
3513 getHwComposer().setPowerMode(type, mode);
Matthew Bouyackcd9b55c2017-06-01 14:37:29 -07003514 if (type == DisplayDevice::DISPLAY_PRIMARY &&
3515 currentMode == HWC_POWER_MODE_DOZE_SUSPEND) {
Zheng Zhang8a43fe62017-03-17 11:19:39 +01003516 // FIXME: eventthread only knows about the main display right now
3517 mEventThread->onScreenAcquired();
3518 resyncToHardwareVsync(true);
3519 }
3520 } else if (mode == HWC_POWER_MODE_DOZE_SUSPEND) {
3521 // Leave display going to doze
3522 if (type == DisplayDevice::DISPLAY_PRIMARY) {
3523 disableHardwareVsync(true); // also cancels any in-progress resync
3524 // FIXME: eventthread only knows about the main display right now
3525 mEventThread->onScreenReleased();
3526 }
3527 getHwComposer().setPowerMode(type, mode);
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003528 } else {
Matthew Bouyack38d49612017-05-12 12:49:32 -07003529 ALOGE("Attempting to set unknown power mode: %d\n", mode);
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003530 getHwComposer().setPowerMode(type, mode);
Andy McFaddenc01a79d2012-09-27 16:02:06 -07003531 }
Andy McFaddenc01a79d2012-09-27 16:02:06 -07003532}
3533
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003534void SurfaceFlinger::setPowerMode(const sp<IBinder>& display, int mode) {
3535 class MessageSetPowerMode: public MessageBase {
Mathias Agopiandb9b41f2012-10-15 16:51:41 -07003536 SurfaceFlinger& mFlinger;
3537 sp<IBinder> mDisplay;
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003538 int mMode;
Andy McFaddenc01a79d2012-09-27 16:02:06 -07003539 public:
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003540 MessageSetPowerMode(SurfaceFlinger& flinger,
3541 const sp<IBinder>& disp, int mode) : mFlinger(flinger),
3542 mDisplay(disp) { mMode = mode; }
Andy McFaddenc01a79d2012-09-27 16:02:06 -07003543 virtual bool handler() {
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003544 sp<DisplayDevice> hw(mFlinger.getDisplayDevice(mDisplay));
Peiyong Lin566a3b42018-01-09 18:22:43 -08003545 if (hw == nullptr) {
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003546 ALOGE("Attempt to set power mode = %d for null display %p",
Michael Lentine7306c672014-07-30 13:00:37 -07003547 mMode, mDisplay.get());
Jesse Hall9e663de2013-08-16 14:28:37 -07003548 } else if (hw->getDisplayType() >= DisplayDevice::DISPLAY_VIRTUAL) {
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003549 ALOGW("Attempt to set power mode = %d for virtual display",
3550 mMode);
Mathias Agopiandb9b41f2012-10-15 16:51:41 -07003551 } else {
Steven Thomasb02664d2017-07-26 18:48:28 -07003552 mFlinger.setPowerModeInternal(
3553 hw, mMode, /*stateLockHeld*/ false);
Mathias Agopiandb9b41f2012-10-15 16:51:41 -07003554 }
Andy McFaddenc01a79d2012-09-27 16:02:06 -07003555 return true;
3556 }
3557 };
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003558 sp<MessageBase> msg = new MessageSetPowerMode(*this, display, mode);
Mathias Agopiandb9b41f2012-10-15 16:51:41 -07003559 postMessageSync(msg);
Mathias Agopianb60314a2012-04-10 22:09:54 -07003560}
3561
3562// ---------------------------------------------------------------------------
3563
Vishnu Nair6a408532017-10-24 09:11:27 -07003564status_t SurfaceFlinger::doDump(int fd, const Vector<String16>& args, bool asProto) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003565 String8 result;
Mathias Agopian99b49842011-06-27 16:05:52 -07003566
Mathias Agopianbd115332013-04-18 16:41:04 -07003567 IPCThreadState* ipc = IPCThreadState::self();
3568 const int pid = ipc->getCallingPid();
3569 const int uid = ipc->getCallingUid();
Vishnu Nair6a408532017-10-24 09:11:27 -07003570
Mathias Agopianbd115332013-04-18 16:41:04 -07003571 if ((uid != AID_SHELL) &&
3572 !PermissionCache::checkPermission(sDump, pid, uid)) {
Mathias Agopian74d211a2013-04-22 16:55:35 +02003573 result.appendFormat("Permission Denial: "
Mathias Agopianbd115332013-04-18 16:41:04 -07003574 "can't dump SurfaceFlinger from pid=%d, uid=%d\n", pid, uid);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003575 } else {
Jesse Hallfcd15b42014-12-23 13:57:23 -08003576 // Try to get the main lock, but give up after one second
Mathias Agopian9795c422009-08-26 16:36:26 -07003577 // (this would indicate SF is stuck, but we want to be able to
3578 // print something in dumpsys).
Jesse Hallfcd15b42014-12-23 13:57:23 -08003579 status_t err = mStateLock.timedLock(s2ns(1));
3580 bool locked = (err == NO_ERROR);
Mathias Agopian9795c422009-08-26 16:36:26 -07003581 if (!locked) {
Jesse Hallfcd15b42014-12-23 13:57:23 -08003582 result.appendFormat(
3583 "SurfaceFlinger appears to be unresponsive (%s [%d]), "
3584 "dumping anyways (no locks held)\n", strerror(-err), err);
Mathias Agopian9795c422009-08-26 16:36:26 -07003585 }
3586
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003587 bool dumpAll = true;
3588 size_t index = 0;
Mathias Agopian25e66fc2012-01-28 22:31:55 -08003589 size_t numArgs = args.size();
chaviwa3d7bd32017-11-03 09:41:53 -07003590
3591 if (asProto) {
Jorim Jaggi8e0af362017-11-14 16:28:28 +01003592 LayersProto layersProto = dumpProtoInfo(LayerVector::StateSet::Current);
chaviwa3d7bd32017-11-03 09:41:53 -07003593 result.append(layersProto.SerializeAsString().c_str(), layersProto.ByteSize());
3594 dumpAll = false;
3595 }
3596
Mathias Agopian25e66fc2012-01-28 22:31:55 -08003597 if (numArgs) {
Mathias Agopian25e66fc2012-01-28 22:31:55 -08003598 if ((index < numArgs) &&
3599 (args[index] == String16("--list"))) {
3600 index++;
Mathias Agopian74d211a2013-04-22 16:55:35 +02003601 listLayersLocked(args, index, result);
Mathias Agopian35aadd62012-03-08 22:01:51 -08003602 dumpAll = false;
Mathias Agopian25e66fc2012-01-28 22:31:55 -08003603 }
3604
3605 if ((index < numArgs) &&
3606 (args[index] == String16("--latency"))) {
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003607 index++;
Mathias Agopian74d211a2013-04-22 16:55:35 +02003608 dumpStatsLocked(args, index, result);
Mathias Agopian35aadd62012-03-08 22:01:51 -08003609 dumpAll = false;
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003610 }
Mathias Agopian25e66fc2012-01-28 22:31:55 -08003611
3612 if ((index < numArgs) &&
3613 (args[index] == String16("--latency-clear"))) {
3614 index++;
Mathias Agopian74d211a2013-04-22 16:55:35 +02003615 clearStatsLocked(args, index, result);
Mathias Agopian35aadd62012-03-08 22:01:51 -08003616 dumpAll = false;
Mathias Agopian25e66fc2012-01-28 22:31:55 -08003617 }
Andy McFaddenc751e922014-05-08 14:53:26 -07003618
3619 if ((index < numArgs) &&
3620 (args[index] == String16("--dispsync"))) {
3621 index++;
3622 mPrimaryDispSync.dump(result);
3623 dumpAll = false;
3624 }
Dan Stozab90cf072015-03-05 11:05:59 -08003625
3626 if ((index < numArgs) &&
3627 (args[index] == String16("--static-screen"))) {
3628 index++;
3629 dumpStaticScreenStats(result);
3630 dumpAll = false;
3631 }
Pablo Ceballos40845df2016-01-25 17:41:15 -08003632
3633 if ((index < numArgs) &&
Brian Andersond6927fb2016-07-23 23:37:30 -07003634 (args[index] == String16("--frame-events"))) {
Pablo Ceballos40845df2016-01-25 17:41:15 -08003635 index++;
Brian Andersond6927fb2016-07-23 23:37:30 -07003636 dumpFrameEventsLocked(result);
Pablo Ceballos40845df2016-01-25 17:41:15 -08003637 dumpAll = false;
3638 }
Courtney Goeltzenleuchterf3b2de12017-03-27 12:18:12 -06003639
3640 if ((index < numArgs) && (args[index] == String16("--wide-color"))) {
3641 index++;
3642 dumpWideColorInfo(result);
3643 dumpAll = false;
3644 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003645 }
Mathias Agopian1b5e1022010-04-20 17:55:49 -07003646
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003647 if (dumpAll) {
Mathias Agopian74d211a2013-04-22 16:55:35 +02003648 dumpAllLocked(args, index, result);
Mathias Agopian48b888a2011-01-19 16:15:53 -08003649 }
3650
Mathias Agopian9795c422009-08-26 16:36:26 -07003651 if (locked) {
3652 mStateLock.unlock();
3653 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003654 }
3655 write(fd, result.string(), result.size());
3656 return NO_ERROR;
3657}
3658
Dan Stozac7014012014-02-14 15:03:43 -08003659void SurfaceFlinger::listLayersLocked(const Vector<String16>& /* args */,
3660 size_t& /* index */, String8& result) const
Mathias Agopian25e66fc2012-01-28 22:31:55 -08003661{
Robert Carr2047fae2016-11-28 14:09:09 -08003662 mCurrentState.traverseInZOrder([&](Layer* layer) {
Mathias Agopian74d211a2013-04-22 16:55:35 +02003663 result.appendFormat("%s\n", layer->getName().string());
Robert Carr2047fae2016-11-28 14:09:09 -08003664 });
Mathias Agopian25e66fc2012-01-28 22:31:55 -08003665}
3666
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003667void SurfaceFlinger::dumpStatsLocked(const Vector<String16>& args, size_t& index,
Mathias Agopian74d211a2013-04-22 16:55:35 +02003668 String8& result) const
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003669{
3670 String8 name;
3671 if (index < args.size()) {
3672 name = String8(args[index]);
3673 index++;
3674 }
3675
David Sodman105b7dc2017-11-04 20:28:14 -07003676 const auto& activeConfig = getBE().mHwc->getActiveConfig(HWC_DISPLAY_PRIMARY);
Dan Stoza9e56aa02015-11-02 13:00:03 -08003677 const nsecs_t period = activeConfig->getVsyncPeriod();
Greg Hackmann86efcc02014-03-07 12:44:02 -08003678 result.appendFormat("%" PRId64 "\n", period);
Jamie Gennis4b0eba92013-02-05 13:30:24 -08003679
3680 if (name.isEmpty()) {
Svetoslavd85084b2014-03-20 10:28:31 -07003681 mAnimFrameTracker.dumpStats(result);
Jamie Gennis4b0eba92013-02-05 13:30:24 -08003682 } else {
Robert Carr2047fae2016-11-28 14:09:09 -08003683 mCurrentState.traverseInZOrder([&](Layer* layer) {
Jamie Gennis4b0eba92013-02-05 13:30:24 -08003684 if (name == layer->getName()) {
Svetoslavd85084b2014-03-20 10:28:31 -07003685 layer->dumpFrameStats(result);
Jamie Gennis4b0eba92013-02-05 13:30:24 -08003686 }
Robert Carr2047fae2016-11-28 14:09:09 -08003687 });
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003688 }
3689}
3690
Mathias Agopian25e66fc2012-01-28 22:31:55 -08003691void SurfaceFlinger::clearStatsLocked(const Vector<String16>& args, size_t& index,
Dan Stozac7014012014-02-14 15:03:43 -08003692 String8& /* result */)
Mathias Agopian25e66fc2012-01-28 22:31:55 -08003693{
3694 String8 name;
3695 if (index < args.size()) {
3696 name = String8(args[index]);
3697 index++;
3698 }
3699
Robert Carr2047fae2016-11-28 14:09:09 -08003700 mCurrentState.traverseInZOrder([&](Layer* layer) {
Mathias Agopian25e66fc2012-01-28 22:31:55 -08003701 if (name.isEmpty() || (name == layer->getName())) {
Svetoslavd85084b2014-03-20 10:28:31 -07003702 layer->clearFrameStats();
Mathias Agopian25e66fc2012-01-28 22:31:55 -08003703 }
Robert Carr2047fae2016-11-28 14:09:09 -08003704 });
Jamie Gennis4b0eba92013-02-05 13:30:24 -08003705
Svetoslavd85084b2014-03-20 10:28:31 -07003706 mAnimFrameTracker.clearStats();
Mathias Agopian25e66fc2012-01-28 22:31:55 -08003707}
3708
Jamie Gennis6547ff42013-07-16 20:12:42 -07003709// This should only be called from the main thread. Otherwise it would need
3710// the lock and should use mCurrentState rather than mDrawingState.
3711void SurfaceFlinger::logFrameStats() {
Robert Carr2047fae2016-11-28 14:09:09 -08003712 mDrawingState.traverseInZOrder([&](Layer* layer) {
Jamie Gennis6547ff42013-07-16 20:12:42 -07003713 layer->logFrameStats();
Robert Carr2047fae2016-11-28 14:09:09 -08003714 });
Jamie Gennis6547ff42013-07-16 20:12:42 -07003715
3716 mAnimFrameTracker.logAndResetStats(String8("<win-anim>"));
3717}
3718
Fabien Sanglard63a5fcd2016-12-29 15:13:07 -08003719void SurfaceFlinger::appendSfConfigString(String8& result) const
Andy McFadden4803b742012-09-24 19:07:20 -07003720{
Fabien Sanglard63a5fcd2016-12-29 15:13:07 -08003721 result.append(" [sf");
Fabien Sanglardc93afd52017-03-13 13:02:42 -07003722
Fabien Sanglard63a5fcd2016-12-29 15:13:07 -08003723 if (isLayerTripleBufferingDisabled())
3724 result.append(" DISABLE_TRIPLE_BUFFERING");
Fabien Sanglardc45a7d92017-03-14 13:24:22 -07003725
3726 result.appendFormat(" PRESENT_TIME_OFFSET=%" PRId64 , dispSyncPresentTimeOffset);
Fabien Sanglarda34ed632017-03-14 11:43:52 -07003727 result.appendFormat(" FORCE_HWC_FOR_RBG_TO_YUV=%d", useHwcForRgbToYuv);
Fabien Sanglardc8e387e2017-03-10 10:30:28 -08003728 result.appendFormat(" MAX_VIRT_DISPLAY_DIM=%" PRIu64, maxVirtualDisplaySize);
Fabien Sanglardcbf153b2017-03-10 17:57:12 -08003729 result.appendFormat(" RUNNING_WITHOUT_SYNC_FRAMEWORK=%d", !hasSyncFramework);
Fabien Sanglard1971b632017-03-10 14:50:03 -08003730 result.appendFormat(" NUM_FRAMEBUFFER_SURFACE_BUFFERS=%" PRId64,
3731 maxFrameBufferAcquiredBuffers);
Fabien Sanglard63a5fcd2016-12-29 15:13:07 -08003732 result.append("]");
Andy McFadden4803b742012-09-24 19:07:20 -07003733}
3734
Dan Stozab90cf072015-03-05 11:05:59 -08003735void SurfaceFlinger::dumpStaticScreenStats(String8& result) const
3736{
3737 result.appendFormat("Static screen stats:\n");
David Sodman4a36e932017-11-07 14:29:47 -08003738 for (size_t b = 0; b < SurfaceFlingerBE::NUM_BUCKETS - 1; ++b) {
3739 float bucketTimeSec = getBE().mFrameBuckets[b] / 1e9;
Dan Stozab90cf072015-03-05 11:05:59 -08003740 float percent = 100.0f *
David Sodman4a36e932017-11-07 14:29:47 -08003741 static_cast<float>(getBE().mFrameBuckets[b]) / getBE().mTotalTime;
Dan Stozab90cf072015-03-05 11:05:59 -08003742 result.appendFormat(" < %zd frames: %.3f s (%.1f%%)\n",
3743 b + 1, bucketTimeSec, percent);
3744 }
David Sodman4a36e932017-11-07 14:29:47 -08003745 float bucketTimeSec = getBE().mFrameBuckets[SurfaceFlingerBE::NUM_BUCKETS - 1] / 1e9;
Dan Stozab90cf072015-03-05 11:05:59 -08003746 float percent = 100.0f *
David Sodman4a36e932017-11-07 14:29:47 -08003747 static_cast<float>(getBE().mFrameBuckets[SurfaceFlingerBE::NUM_BUCKETS - 1]) / getBE().mTotalTime;
Dan Stozab90cf072015-03-05 11:05:59 -08003748 result.appendFormat(" %zd+ frames: %.3f s (%.1f%%)\n",
David Sodman4a36e932017-11-07 14:29:47 -08003749 SurfaceFlingerBE::NUM_BUCKETS - 1, bucketTimeSec, percent);
Dan Stozab90cf072015-03-05 11:05:59 -08003750}
3751
Dan Stozae77c7662016-05-13 11:37:28 -07003752void SurfaceFlinger::recordBufferingStats(const char* layerName,
3753 std::vector<OccupancyTracker::Segment>&& history) {
David Sodmancbaf0832017-11-07 14:21:36 -08003754 Mutex::Autolock lock(getBE().mBufferingStatsMutex);
3755 auto& stats = getBE().mBufferingStats[layerName];
Dan Stozae77c7662016-05-13 11:37:28 -07003756 for (const auto& segment : history) {
3757 if (!segment.usedThirdBuffer) {
3758 stats.twoBufferTime += segment.totalTime;
3759 }
3760 if (segment.occupancyAverage < 1.0f) {
3761 stats.doubleBufferedTime += segment.totalTime;
3762 } else if (segment.occupancyAverage < 2.0f) {
3763 stats.tripleBufferedTime += segment.totalTime;
3764 }
3765 ++stats.numSegments;
3766 stats.totalTime += segment.totalTime;
3767 }
3768}
3769
Brian Andersond6927fb2016-07-23 23:37:30 -07003770void SurfaceFlinger::dumpFrameEventsLocked(String8& result) {
3771 result.appendFormat("Layer frame timestamps:\n");
3772
3773 const LayerVector& currentLayers = mCurrentState.layersSortedByZ;
3774 const size_t count = currentLayers.size();
3775 for (size_t i=0 ; i<count ; i++) {
3776 currentLayers[i]->dumpFrameEvents(result);
3777 }
3778}
3779
Dan Stozae77c7662016-05-13 11:37:28 -07003780void SurfaceFlinger::dumpBufferingStats(String8& result) const {
3781 result.append("Buffering stats:\n");
3782 result.append(" [Layer name] <Active time> <Two buffer> "
3783 "<Double buffered> <Triple buffered>\n");
David Sodmancbaf0832017-11-07 14:21:36 -08003784 Mutex::Autolock lock(getBE().mBufferingStatsMutex);
Dan Stozae77c7662016-05-13 11:37:28 -07003785 typedef std::tuple<std::string, float, float, float> BufferTuple;
3786 std::map<float, BufferTuple, std::greater<float>> sorted;
David Sodmancbaf0832017-11-07 14:21:36 -08003787 for (const auto& statsPair : getBE().mBufferingStats) {
Dan Stozae77c7662016-05-13 11:37:28 -07003788 const char* name = statsPair.first.c_str();
David Sodmancbaf0832017-11-07 14:21:36 -08003789 const SurfaceFlingerBE::BufferingStats& stats = statsPair.second;
Dan Stozae77c7662016-05-13 11:37:28 -07003790 if (stats.numSegments == 0) {
3791 continue;
3792 }
3793 float activeTime = ns2ms(stats.totalTime) / 1000.0f;
3794 float twoBufferRatio = static_cast<float>(stats.twoBufferTime) /
3795 stats.totalTime;
3796 float doubleBufferRatio = static_cast<float>(
3797 stats.doubleBufferedTime) / stats.totalTime;
3798 float tripleBufferRatio = static_cast<float>(
3799 stats.tripleBufferedTime) / stats.totalTime;
3800 sorted.insert({activeTime, {name, twoBufferRatio,
3801 doubleBufferRatio, tripleBufferRatio}});
3802 }
3803 for (const auto& sortedPair : sorted) {
3804 float activeTime = sortedPair.first;
3805 const BufferTuple& values = sortedPair.second;
3806 result.appendFormat(" [%s] %.2f %.3f %.3f %.3f\n",
3807 std::get<0>(values).c_str(), activeTime,
3808 std::get<1>(values), std::get<2>(values),
3809 std::get<3>(values));
3810 }
3811 result.append("\n");
3812}
3813
Courtney Goeltzenleuchterf3b2de12017-03-27 12:18:12 -06003814void SurfaceFlinger::dumpWideColorInfo(String8& result) const {
3815 result.appendFormat("hasWideColorDisplay: %d\n", hasWideColorDisplay);
Romain Guy54f154a2017-10-24 21:40:32 +01003816 result.appendFormat("forceNativeColorMode: %d\n", mForceNativeColorMode);
Courtney Goeltzenleuchterf3b2de12017-03-27 12:18:12 -06003817
3818 // TODO: print out if wide-color mode is active or not
3819
3820 for (size_t d = 0; d < mDisplays.size(); d++) {
3821 const sp<const DisplayDevice>& displayDevice(mDisplays[d]);
3822 int32_t hwcId = displayDevice->getHwcDisplayId();
3823 if (hwcId == DisplayDevice::DISPLAY_ID_INVALID) {
3824 continue;
3825 }
3826
3827 result.appendFormat("Display %d color modes:\n", hwcId);
3828 std::vector<android_color_mode_t> modes = getHwComposer().getColorModes(hwcId);
3829 for (auto&& mode : modes) {
3830 result.appendFormat(" %s (%d)\n", decodeColorMode(mode).c_str(), mode);
3831 }
3832
3833 android_color_mode_t currentMode = displayDevice->getActiveColorMode();
3834 result.appendFormat(" Current color mode: %s (%d)\n",
3835 decodeColorMode(currentMode).c_str(), currentMode);
3836 }
3837 result.append("\n");
3838}
3839
Jorim Jaggi8e0af362017-11-14 16:28:28 +01003840LayersProto SurfaceFlinger::dumpProtoInfo(LayerVector::StateSet stateSet) const {
chaviw1d044282017-09-27 12:19:28 -07003841 LayersProto layersProto;
Jorim Jaggi8e0af362017-11-14 16:28:28 +01003842 const bool useDrawing = stateSet == LayerVector::StateSet::Drawing;
3843 const State& state = useDrawing ? mDrawingState : mCurrentState;
3844 state.traverseInZOrder([&](Layer* layer) {
chaviw1d044282017-09-27 12:19:28 -07003845 LayerProto* layerProto = layersProto.add_layers();
Jorim Jaggi8e0af362017-11-14 16:28:28 +01003846 layer->writeToProto(layerProto, stateSet);
chaviw1d044282017-09-27 12:19:28 -07003847 });
3848
3849 return layersProto;
3850}
3851
Mathias Agopian74d211a2013-04-22 16:55:35 +02003852void SurfaceFlinger::dumpAllLocked(const Vector<String16>& args, size_t& index,
3853 String8& result) const
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003854{
Mathias Agopian3e25fd82013-04-22 17:52:16 +02003855 bool colorize = false;
3856 if (index < args.size()
3857 && (args[index] == String16("--color"))) {
3858 colorize = true;
3859 index++;
3860 }
3861
3862 Colorizer colorizer(colorize);
3863
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003864 // figure out if we're stuck somewhere
3865 const nsecs_t now = systemTime();
3866 const nsecs_t inSwapBuffers(mDebugInSwapBuffers);
3867 const nsecs_t inTransaction(mDebugInTransaction);
3868 nsecs_t inSwapBuffersDuration = (inSwapBuffers) ? now-inSwapBuffers : 0;
3869 nsecs_t inTransactionDuration = (inTransaction) ? now-inTransaction : 0;
3870
3871 /*
Andy McFadden4803b742012-09-24 19:07:20 -07003872 * Dump library configuration.
3873 */
Mathias Agopian3e25fd82013-04-22 17:52:16 +02003874
3875 colorizer.bold(result);
Andy McFadden4803b742012-09-24 19:07:20 -07003876 result.append("Build configuration:");
Mathias Agopian3e25fd82013-04-22 17:52:16 +02003877 colorizer.reset(result);
Andy McFadden4803b742012-09-24 19:07:20 -07003878 appendSfConfigString(result);
3879 appendUiConfigString(result);
3880 appendGuiConfigString(result);
3881 result.append("\n");
3882
Courtney Goeltzenleuchterf3b2de12017-03-27 12:18:12 -06003883 result.append("\nWide-Color information:\n");
3884 dumpWideColorInfo(result);
3885
Mathias Agopian3e25fd82013-04-22 17:52:16 +02003886 colorizer.bold(result);
Mathias Agopianca088332013-03-28 17:44:13 -07003887 result.append("Sync configuration: ");
Mathias Agopian3e25fd82013-04-22 17:52:16 +02003888 colorizer.reset(result);
Mathias Agopianca088332013-03-28 17:44:13 -07003889 result.append(SyncFeatures::getInstance().toString());
3890 result.append("\n");
3891
David Sodman105b7dc2017-11-04 20:28:14 -07003892 const auto& activeConfig = getBE().mHwc->getActiveConfig(HWC_DISPLAY_PRIMARY);
Dan Stoza9e56aa02015-11-02 13:00:03 -08003893
Andy McFadden41d67d72014-04-25 16:58:34 -07003894 colorizer.bold(result);
3895 result.append("DispSync configuration: ");
3896 colorizer.reset(result);
Jesse Hall24cd98e2014-07-13 14:37:16 -07003897 result.appendFormat("app phase %" PRId64 " ns, sf phase %" PRId64 " ns, "
Fabien Sanglardc45a7d92017-03-14 13:24:22 -07003898 "present offset %" PRId64 " ns (refresh %" PRId64 " ns)",
Dan Stoza9e56aa02015-11-02 13:00:03 -08003899 vsyncPhaseOffsetNs, sfVsyncPhaseOffsetNs,
Fabien Sanglardc45a7d92017-03-14 13:24:22 -07003900 dispSyncPresentTimeOffset, activeConfig->getVsyncPeriod());
Andy McFadden41d67d72014-04-25 16:58:34 -07003901 result.append("\n");
3902
Dan Stozab90cf072015-03-05 11:05:59 -08003903 // Dump static screen stats
3904 result.append("\n");
3905 dumpStaticScreenStats(result);
3906 result.append("\n");
3907
Dan Stozae77c7662016-05-13 11:37:28 -07003908 dumpBufferingStats(result);
3909
Andy McFadden4803b742012-09-24 19:07:20 -07003910 /*
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003911 * Dump the visible layer list
3912 */
Mathias Agopian3e25fd82013-04-22 17:52:16 +02003913 colorizer.bold(result);
Robert Carr1f0a16a2016-10-24 16:27:39 -07003914 result.appendFormat("Visible layers (count = %zu)\n", mNumLayers);
Mathias Agopian3e25fd82013-04-22 17:52:16 +02003915 colorizer.reset(result);
chaviw1d044282017-09-27 12:19:28 -07003916
Jorim Jaggi8e0af362017-11-14 16:28:28 +01003917 LayersProto layersProto = dumpProtoInfo(LayerVector::StateSet::Current);
chaviw1d044282017-09-27 12:19:28 -07003918 auto layerTree = LayerProtoParser::generateLayerTree(layersProto);
3919 result.append(LayerProtoParser::layersToString(layerTree).c_str());
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003920
3921 /*
Mathias Agopian5f20e2d2012-08-10 18:50:38 -07003922 * Dump Display state
3923 */
3924
Mathias Agopian3e25fd82013-04-22 17:52:16 +02003925 colorizer.bold(result);
Greg Hackmann86efcc02014-03-07 12:44:02 -08003926 result.appendFormat("Displays (%zu entries)\n", mDisplays.size());
Mathias Agopian3e25fd82013-04-22 17:52:16 +02003927 colorizer.reset(result);
Mathias Agopian5f20e2d2012-08-10 18:50:38 -07003928 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
3929 const sp<const DisplayDevice>& hw(mDisplays[dpy]);
Mathias Agopian74d211a2013-04-22 16:55:35 +02003930 hw->dump(result);
Mathias Agopian5f20e2d2012-08-10 18:50:38 -07003931 }
3932
3933 /*
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003934 * Dump SurfaceFlinger global state
3935 */
3936
Mathias Agopian3e25fd82013-04-22 17:52:16 +02003937 colorizer.bold(result);
Mathias Agopian74d211a2013-04-22 16:55:35 +02003938 result.append("SurfaceFlinger global state:\n");
Mathias Agopian3e25fd82013-04-22 17:52:16 +02003939 colorizer.reset(result);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003940
Mathias Agopian888c8222012-08-04 21:10:38 -07003941 HWComposer& hwc(getHwComposer());
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07003942 sp<const DisplayDevice> hw(getDefaultDisplayDeviceLocked());
Mathias Agopianca088332013-03-28 17:44:13 -07003943
David Sodmanbc815282017-11-05 18:57:52 -08003944 getBE().mRenderEngine->dump(result);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003945
Lloyd Pique2ae2b3b2017-12-14 17:18:17 -08003946 if (hw) {
3947 hw->undefinedRegion.dump(result, "undefinedRegion");
3948 result.appendFormat(" orientation=%d, isDisplayOn=%d\n",
3949 hw->getOrientation(), hw->isDisplayOn());
3950 }
Mathias Agopian74d211a2013-04-22 16:55:35 +02003951 result.appendFormat(
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003952 " last eglSwapBuffers() time: %f us\n"
3953 " last transaction time : %f us\n"
Mathias Agopianc95dbdc2012-02-05 00:19:27 -08003954 " transaction-flags : %08x\n"
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003955 " refresh-rate : %f fps\n"
3956 " x-dpi : %f\n"
Mathias Agopianed985572013-03-22 00:24:39 -07003957 " y-dpi : %f\n"
Mathias Agopianed985572013-03-22 00:24:39 -07003958 " gpu_to_cpu_unsupported : %d\n"
3959 ,
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003960 mLastSwapBufferTime/1000.0,
3961 mLastTransactionTime/1000.0,
Mathias Agopianc95dbdc2012-02-05 00:19:27 -08003962 mTransactionFlags,
Dan Stoza9e56aa02015-11-02 13:00:03 -08003963 1e9 / activeConfig->getVsyncPeriod(),
3964 activeConfig->getDpiX(),
3965 activeConfig->getDpiY(),
Mathias Agopianed985572013-03-22 00:24:39 -07003966 !mGpuToCpuSupported);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003967
Mathias Agopian74d211a2013-04-22 16:55:35 +02003968 result.appendFormat(" eglSwapBuffers time: %f us\n",
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003969 inSwapBuffersDuration/1000.0);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003970
Mathias Agopian74d211a2013-04-22 16:55:35 +02003971 result.appendFormat(" transaction time: %f us\n",
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003972 inTransactionDuration/1000.0);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003973
3974 /*
3975 * VSYNC state
3976 */
Mathias Agopian74d211a2013-04-22 16:55:35 +02003977 mEventThread->dump(result);
Dan Stozae22aec72016-08-01 13:20:59 -07003978 result.append("\n");
3979
3980 /*
3981 * HWC layer minidump
3982 */
3983 for (size_t d = 0; d < mDisplays.size(); d++) {
3984 const sp<const DisplayDevice>& displayDevice(mDisplays[d]);
3985 int32_t hwcId = displayDevice->getHwcDisplayId();
3986 if (hwcId == DisplayDevice::DISPLAY_ID_INVALID) {
3987 continue;
3988 }
3989
3990 result.appendFormat("Display %d HWC layers:\n", hwcId);
3991 Layer::miniDumpHeader(result);
Robert Carr1f0a16a2016-10-24 16:27:39 -07003992 mCurrentState.traverseInZOrder([&](Layer* layer) {
Dan Stozae22aec72016-08-01 13:20:59 -07003993 layer->miniDump(result, hwcId);
Robert Carr1f0a16a2016-10-24 16:27:39 -07003994 });
Dan Stozae22aec72016-08-01 13:20:59 -07003995 result.append("\n");
3996 }
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003997
3998 /*
3999 * Dump HWComposer state
4000 */
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004001 colorizer.bold(result);
Mathias Agopian74d211a2013-04-22 16:55:35 +02004002 result.append("h/w composer state:\n");
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004003 colorizer.reset(result);
Dan Stoza9f26a9c2016-06-22 14:51:09 -07004004 bool hwcDisabled = mDebugDisableHWC || mDebugRegion;
Dan Stoza9e56aa02015-11-02 13:00:03 -08004005 result.appendFormat(" h/w composer %s\n",
4006 hwcDisabled ? "disabled" : "enabled");
Mathias Agopian74d211a2013-04-22 16:55:35 +02004007 hwc.dump(result);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004008
4009 /*
4010 * Dump gralloc state
4011 */
4012 const GraphicBufferAllocator& alloc(GraphicBufferAllocator::get());
4013 alloc.dump(result);
Karthik Ravi Shankar171155a2017-06-28 15:40:24 -07004014
4015 /*
4016 * Dump VrFlinger state if in use.
4017 */
4018 if (mVrFlingerRequestsDisplay && mVrFlinger) {
4019 result.append("VrFlinger state:\n");
4020 result.append(mVrFlinger->Dump().c_str());
4021 result.append("\n");
4022 }
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004023}
4024
Mathias Agopian13127d82013-03-05 17:47:11 -08004025const Vector< sp<Layer> >&
Jesse Hall48bc05b2013-03-21 14:06:52 -07004026SurfaceFlinger::getLayerSortedByZForHwcDisplay(int id) {
Mathias Agopiandb9b41f2012-10-15 16:51:41 -07004027 // Note: mStateLock is held here
Jesse Hall48bc05b2013-03-21 14:06:52 -07004028 wp<IBinder> dpy;
4029 for (size_t i=0 ; i<mDisplays.size() ; i++) {
4030 if (mDisplays.valueAt(i)->getHwcDisplayId() == id) {
4031 dpy = mDisplays.keyAt(i);
4032 break;
4033 }
4034 }
Peiyong Lin566a3b42018-01-09 18:22:43 -08004035 if (dpy == nullptr) {
Jesse Hall48bc05b2013-03-21 14:06:52 -07004036 ALOGE("getLayerSortedByZForHwcDisplay: invalid hwc display id %d", id);
4037 // Just use the primary display so we have something to return
4038 dpy = getBuiltInDisplay(DisplayDevice::DISPLAY_PRIMARY);
4039 }
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07004040 return getDisplayDeviceLocked(dpy)->getVisibleLayersSortedByZ();
Mathias Agopiancb558572012-10-04 15:58:54 -07004041}
4042
Keun young Park63f165f2012-08-31 10:53:36 -07004043bool SurfaceFlinger::startDdmConnection()
4044{
4045 void* libddmconnection_dso =
4046 dlopen("libsurfaceflinger_ddmconnection.so", RTLD_NOW);
4047 if (!libddmconnection_dso) {
4048 return false;
4049 }
4050 void (*DdmConnection_start)(const char* name);
4051 DdmConnection_start =
Jesse Hall24cd98e2014-07-13 14:37:16 -07004052 (decltype(DdmConnection_start))dlsym(libddmconnection_dso, "DdmConnection_start");
Keun young Park63f165f2012-08-31 10:53:36 -07004053 if (!DdmConnection_start) {
4054 dlclose(libddmconnection_dso);
4055 return false;
4056 }
4057 (*DdmConnection_start)(getServiceName());
4058 return true;
4059}
4060
Fabien Sanglard6e8e98a2016-10-27 20:04:11 -07004061status_t SurfaceFlinger::CheckTransactCodeCredentials(uint32_t code) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004062 switch (code) {
4063 case CREATE_CONNECTION:
Mathias Agopian041a0752013-03-15 18:31:56 -07004064 case CREATE_DISPLAY:
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004065 case BOOT_FINISHED:
Svetoslavd85084b2014-03-20 10:28:31 -07004066 case CLEAR_ANIMATION_FRAME_STATS:
4067 case GET_ANIMATION_FRAME_STATS:
Prashant Malani2c9b11f2014-05-25 01:36:31 -07004068 case SET_POWER_MODE:
Dan Stozac4f471e2016-03-24 09:31:08 -07004069 case GET_HDR_CAPABILITIES:
Chia-I Wu90f669f2017-10-05 14:24:41 -07004070 case ENABLE_VSYNC_INJECTIONS:
4071 case INJECT_VSYNC:
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004072 {
4073 // codes that require permission check
4074 IPCThreadState* ipc = IPCThreadState::self();
4075 const int pid = ipc->getCallingPid();
Mathias Agopiana1ecca92009-05-21 19:21:59 -07004076 const int uid = ipc->getCallingUid();
Jeff Brown3bfe51d2015-04-10 20:20:13 -07004077 if ((uid != AID_GRAPHICS && uid != AID_SYSTEM) &&
Mathias Agopian99b49842011-06-27 16:05:52 -07004078 !PermissionCache::checkPermission(sAccessSurfaceFlinger, pid, uid)) {
Fabien Sanglard6e8e98a2016-10-27 20:04:11 -07004079 ALOGE("Permission Denial: can't access SurfaceFlinger pid=%d, uid=%d", pid, uid);
Mathias Agopian375f5632009-06-15 18:24:59 -07004080 return PERMISSION_DENIED;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004081 }
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07004082 break;
4083 }
Robert Carr1db73f62016-12-21 12:58:51 -08004084 /*
4085 * Calling setTransactionState is safe, because you need to have been
4086 * granted a reference to Client* and Handle* to do anything with it.
4087 *
4088 * Creating a scoped connection is safe, as per discussion in ISurfaceComposer.h
4089 */
4090 case SET_TRANSACTION_STATE:
4091 case CREATE_SCOPED_CONNECTION:
4092 {
4093 return OK;
4094 }
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07004095 case CAPTURE_SCREEN:
4096 {
4097 // codes that require permission check
4098 IPCThreadState* ipc = IPCThreadState::self();
4099 const int pid = ipc->getCallingPid();
4100 const int uid = ipc->getCallingUid();
Mathias Agopian99b49842011-06-27 16:05:52 -07004101 if ((uid != AID_GRAPHICS) &&
4102 !PermissionCache::checkPermission(sReadFramebuffer, pid, uid)) {
Fabien Sanglard6e8e98a2016-10-27 20:04:11 -07004103 ALOGE("Permission Denial: can't read framebuffer pid=%d, uid=%d", pid, uid);
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07004104 return PERMISSION_DENIED;
4105 }
4106 break;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004107 }
chaviwa76b2712017-09-20 12:02:26 -07004108 case CAPTURE_LAYERS: {
4109 IPCThreadState* ipc = IPCThreadState::self();
4110 const int pid = ipc->getCallingPid();
4111 const int uid = ipc->getCallingUid();
4112 if ((uid != AID_GRAPHICS) &&
4113 !PermissionCache::checkPermission(sReadFramebuffer, pid, uid)) {
4114 ALOGE("Permission Denial: can't read framebuffer pid=%d, uid=%d", pid, uid);
4115 return PERMISSION_DENIED;
4116 }
4117 break;
4118 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004119 }
Fabien Sanglard6e8e98a2016-10-27 20:04:11 -07004120 return OK;
4121}
4122
4123status_t SurfaceFlinger::onTransact(
4124 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
4125{
4126 status_t credentialCheck = CheckTransactCodeCredentials(code);
4127 if (credentialCheck != OK) {
4128 return credentialCheck;
4129 }
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07004130
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004131 status_t err = BnSurfaceComposer::onTransact(code, data, reply, flags);
4132 if (err == UNKNOWN_TRANSACTION || err == PERMISSION_DENIED) {
Mathias Agopianb8a55602009-06-26 19:06:36 -07004133 CHECK_INTERFACE(ISurfaceComposer, data, reply);
Romain Guy8c6bbd62017-06-05 13:51:43 -07004134 IPCThreadState* ipc = IPCThreadState::self();
4135 const int uid = ipc->getCallingUid();
4136 if (CC_UNLIKELY(uid != AID_SYSTEM
4137 && !PermissionCache::checkCallingPermission(sHardwareTest))) {
Mathias Agopian375f5632009-06-15 18:24:59 -07004138 const int pid = ipc->getCallingPid();
Steve Blocke6f43dd2012-01-06 19:20:56 +00004139 ALOGE("Permission Denial: "
Mathias Agopian375f5632009-06-15 18:24:59 -07004140 "can't access SurfaceFlinger pid=%d, uid=%d", pid, uid);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004141 return PERMISSION_DENIED;
4142 }
4143 int n;
4144 switch (code) {
Mathias Agopian01b76682009-04-16 20:04:08 -07004145 case 1000: // SHOW_CPU, NOT SUPPORTED ANYMORE
Mathias Agopian35b48d12010-09-13 22:57:58 -07004146 case 1001: // SHOW_FPS, NOT SUPPORTED ANYMORE
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004147 return NO_ERROR;
4148 case 1002: // SHOW_UPDATES
4149 n = data.readInt32();
4150 mDebugRegion = n ? n : (mDebugRegion ? 0 : 1);
Mathias Agopian53331da2011-08-22 21:44:41 -07004151 invalidateHwcGeometry();
4152 repaintEverything();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004153 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004154 case 1004:{ // repaint everything
Mathias Agopian53331da2011-08-22 21:44:41 -07004155 repaintEverything();
Mathias Agopiancbb288b2009-09-07 16:32:45 -07004156 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004157 }
Mathias Agopiancbb288b2009-09-07 16:32:45 -07004158 case 1005:{ // force transaction
Steven Thomas6d8110b2017-08-31 18:24:21 -07004159 Mutex::Autolock _l(mStateLock);
Mathias Agopiane57f2922012-08-09 16:29:12 -07004160 setTransactionFlags(
4161 eTransactionNeeded|
4162 eDisplayTransactionNeeded|
4163 eTraversalNeeded);
Mathias Agopiancbb288b2009-09-07 16:32:45 -07004164 return NO_ERROR;
4165 }
Mathias Agopian4d143ee2012-02-23 20:05:39 -08004166 case 1006:{ // send empty update
4167 signalRefresh();
4168 return NO_ERROR;
4169 }
Mathias Agopian53331da2011-08-22 21:44:41 -07004170 case 1008: // toggle use of hw composer
4171 n = data.readInt32();
4172 mDebugDisableHWC = n ? 1 : 0;
4173 invalidateHwcGeometry();
4174 repaintEverything();
4175 return NO_ERROR;
Mathias Agopiana4583642011-08-23 18:03:18 -07004176 case 1009: // toggle use of transform hint
4177 n = data.readInt32();
4178 mDebugDisableTransformHint = n ? 1 : 0;
4179 invalidateHwcGeometry();
4180 repaintEverything();
4181 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004182 case 1010: // interrogate.
Mathias Agopian01b76682009-04-16 20:04:08 -07004183 reply->writeInt32(0);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004184 reply->writeInt32(0);
4185 reply->writeInt32(mDebugRegion);
Mathias Agopianb9494d52012-04-18 02:28:45 -07004186 reply->writeInt32(0);
Dianne Hackborn12839be2012-02-06 21:21:05 -08004187 reply->writeInt32(mDebugDisableHWC);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004188 return NO_ERROR;
4189 case 1013: {
Tomasz Wasilczyk8722a312017-04-13 19:14:30 +00004190 sp<const DisplayDevice> hw(getDefaultDisplayDevice());
Mathias Agopian42977342012-08-05 00:40:46 -07004191 reply->writeInt32(hw->getPageFlipCount());
Mathias Agopianff2ed702013-09-01 21:36:12 -07004192 return NO_ERROR;
4193 }
4194 case 1014: {
4195 // daltonize
4196 n = data.readInt32();
4197 switch (n % 10) {
Dan Stoza9f26a9c2016-06-22 14:51:09 -07004198 case 1:
4199 mDaltonizer.setType(ColorBlindnessType::Protanomaly);
4200 break;
4201 case 2:
4202 mDaltonizer.setType(ColorBlindnessType::Deuteranomaly);
4203 break;
4204 case 3:
4205 mDaltonizer.setType(ColorBlindnessType::Tritanomaly);
4206 break;
4207 default:
4208 mDaltonizer.setType(ColorBlindnessType::None);
4209 break;
Mathias Agopianff2ed702013-09-01 21:36:12 -07004210 }
4211 if (n >= 10) {
Dan Stoza9f26a9c2016-06-22 14:51:09 -07004212 mDaltonizer.setMode(ColorBlindnessMode::Correction);
Mathias Agopianff2ed702013-09-01 21:36:12 -07004213 } else {
Dan Stoza9f26a9c2016-06-22 14:51:09 -07004214 mDaltonizer.setMode(ColorBlindnessMode::Simulation);
Mathias Agopianff2ed702013-09-01 21:36:12 -07004215 }
Mathias Agopianff2ed702013-09-01 21:36:12 -07004216 invalidateHwcGeometry();
4217 repaintEverything();
Alan Viverette9c5a3332013-09-12 20:04:35 -07004218 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004219 }
Alan Viverette9c5a3332013-09-12 20:04:35 -07004220 case 1015: {
4221 // apply a color matrix
4222 n = data.readInt32();
Alan Viverette9c5a3332013-09-12 20:04:35 -07004223 if (n) {
Romain Guy0147a172017-06-01 13:53:56 -07004224 // color matrix is sent as a column-major mat4 matrix
Alan Viverette794c5ba2013-10-03 16:40:52 -07004225 for (size_t i = 0 ; i < 4; i++) {
Dan Stoza9f26a9c2016-06-22 14:51:09 -07004226 for (size_t j = 0; j < 4; j++) {
4227 mColorMatrix[i][j] = data.readFloat();
4228 }
Alan Viverette9c5a3332013-09-12 20:04:35 -07004229 }
Alan Viverette9c5a3332013-09-12 20:04:35 -07004230 } else {
4231 mColorMatrix = mat4();
4232 }
Romain Guy88d37dd2017-05-26 17:57:05 -07004233
4234 // Check that supplied matrix's last row is {0,0,0,1} so we can avoid
4235 // the division by w in the fragment shader
4236 float4 lastRow(transpose(mColorMatrix)[3]);
4237 if (any(greaterThan(abs(lastRow - float4{0, 0, 0, 1}), float4{1e-4f}))) {
4238 ALOGE("The color transform's last row must be (0, 0, 0, 1)");
4239 }
4240
Alan Viverette9c5a3332013-09-12 20:04:35 -07004241 invalidateHwcGeometry();
4242 repaintEverything();
4243 return NO_ERROR;
4244 }
Ruchi Kandoif52b3c82014-04-24 16:42:35 -07004245 // This is an experimental interface
4246 // Needs to be shifted to proper binder interface when we productize
4247 case 1016: {
Andy McFadden645b1f72014-06-10 14:43:32 -07004248 n = data.readInt32();
4249 mPrimaryDispSync.setRefreshSkipCount(n);
Ruchi Kandoif52b3c82014-04-24 16:42:35 -07004250 return NO_ERROR;
4251 }
Dan Stozaee44edd2015-03-23 15:50:23 -07004252 case 1017: {
4253 n = data.readInt32();
4254 mForceFullDamage = static_cast<bool>(n);
4255 return NO_ERROR;
4256 }
Dan Stozadb4ac3c2015-04-14 11:34:01 -07004257 case 1018: { // Modify Choreographer's phase offset
4258 n = data.readInt32();
4259 mEventThread->setPhaseOffset(static_cast<nsecs_t>(n));
4260 return NO_ERROR;
4261 }
4262 case 1019: { // Modify SurfaceFlinger's phase offset
4263 n = data.readInt32();
4264 mSFEventThread->setPhaseOffset(static_cast<nsecs_t>(n));
4265 return NO_ERROR;
4266 }
Irvel468051e2016-06-13 16:44:44 -07004267 case 1020: { // Layer updates interceptor
4268 n = data.readInt32();
4269 if (n) {
4270 ALOGV("Interceptor enabled");
Irvelffc9efc2016-07-27 15:16:37 -07004271 mInterceptor.enable(mDrawingState.layersSortedByZ, mDrawingState.displays);
Irvel468051e2016-06-13 16:44:44 -07004272 }
4273 else{
4274 ALOGV("Interceptor disabled");
4275 mInterceptor.disable();
4276 }
4277 return NO_ERROR;
4278 }
Dan Stoza8cf150a2016-08-02 10:27:31 -07004279 case 1021: { // Disable HWC virtual displays
4280 n = data.readInt32();
4281 mUseHwcVirtualDisplays = !n;
4282 return NO_ERROR;
4283 }
Romain Guy0147a172017-06-01 13:53:56 -07004284 case 1022: { // Set saturation boost
4285 mSaturation = std::max(0.0f, std::min(data.readFloat(), 2.0f));
4286
4287 invalidateHwcGeometry();
4288 repaintEverything();
4289 return NO_ERROR;
4290 }
Romain Guy54f154a2017-10-24 21:40:32 +01004291 case 1023: { // Set native mode
4292 mForceNativeColorMode = data.readInt32() == 1;
4293
4294 invalidateHwcGeometry();
4295 repaintEverything();
4296 return NO_ERROR;
4297 }
4298 case 1024: { // Is wide color gamut rendering/color management supported?
4299 reply->writeBool(hasWideColorDisplay);
4300 return NO_ERROR;
4301 }
Vishnu Nair87704c92018-01-08 15:32:57 -08004302 case 1025: { // Set layer tracing
Adrian Roos1e1a1282017-11-01 19:05:31 +01004303 n = data.readInt32();
4304 if (n) {
4305 ALOGV("LayerTracing enabled");
4306 mTracing.enable();
4307 doTracing("tracing.enable");
4308 reply->writeInt32(NO_ERROR);
4309 } else {
4310 ALOGV("LayerTracing disabled");
4311 status_t err = mTracing.disable();
4312 reply->writeInt32(err);
4313 }
4314 return NO_ERROR;
4315 }
Vishnu Nair87704c92018-01-08 15:32:57 -08004316 case 1026: { // Get layer tracing status
4317 reply->writeBool(mTracing.isEnabled());
4318 return NO_ERROR;
4319 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004320 }
4321 }
4322 return err;
4323}
4324
Steven Thomas6d8110b2017-08-31 18:24:21 -07004325void SurfaceFlinger::repaintEverythingLocked() {
Mathias Agopian87baae12012-07-31 12:38:26 -07004326 android_atomic_or(1, &mRepaintEverything);
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08004327 signalTransaction();
Mathias Agopian53331da2011-08-22 21:44:41 -07004328}
4329
Steven Thomas6d8110b2017-08-31 18:24:21 -07004330void SurfaceFlinger::repaintEverything() {
4331 ConditionalLock _l(mStateLock,
4332 std::this_thread::get_id() != mMainThreadId);
4333 repaintEverythingLocked();
4334}
4335
Dan Stoza2b6d38e2017-06-01 16:40:30 -07004336// A simple RAII class to disconnect from an ANativeWindow* when it goes out of scope
4337class WindowDisconnector {
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07004338public:
Dan Stoza2b6d38e2017-06-01 16:40:30 -07004339 WindowDisconnector(ANativeWindow* window, int api) : mWindow(window), mApi(api) {}
4340 ~WindowDisconnector() {
4341 native_window_api_disconnect(mWindow, mApi);
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07004342 }
4343
Dan Stoza2b6d38e2017-06-01 16:40:30 -07004344private:
4345 ANativeWindow* mWindow;
4346 const int mApi;
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07004347};
4348
Chavi Weingarten40482ff2017-11-30 01:51:40 +00004349status_t SurfaceFlinger::captureScreen(const sp<IBinder>& display, sp<GraphicBuffer>* outBuffer,
4350 Rect sourceCrop, uint32_t reqWidth, uint32_t reqHeight,
4351 int32_t minLayerZ, int32_t maxLayerZ,
4352 bool useIdentityTransform,
chaviwa76b2712017-09-20 12:02:26 -07004353 ISurfaceComposer::Rotation rotation) {
Dan Stoza2b6d38e2017-06-01 16:40:30 -07004354 ATRACE_CALL();
Mathias Agopian2a9fc492013-03-01 13:42:57 -08004355
chaviwa76b2712017-09-20 12:02:26 -07004356 if (CC_UNLIKELY(display == 0)) return BAD_VALUE;
4357
4358 const sp<const DisplayDevice> device(getDisplayDeviceLocked(display));
4359 DisplayRenderArea renderArea(device, sourceCrop, reqHeight, reqWidth, rotation);
4360
4361 auto traverseLayers = std::bind(std::mem_fn(&SurfaceFlinger::traverseLayersInDisplay), this,
4362 device, minLayerZ, maxLayerZ, std::placeholders::_1);
Chavi Weingarten40482ff2017-11-30 01:51:40 +00004363 return captureScreenCommon(renderArea, traverseLayers, outBuffer, useIdentityTransform);
chaviwa76b2712017-09-20 12:02:26 -07004364}
4365
4366status_t SurfaceFlinger::captureLayers(const sp<IBinder>& layerHandleBinder,
Vishnu Nair87704c92018-01-08 15:32:57 -08004367 sp<GraphicBuffer>* outBuffer, const Rect& sourceCrop,
Chavi Weingarten40482ff2017-11-30 01:51:40 +00004368 float frameScale) {
chaviwa76b2712017-09-20 12:02:26 -07004369 ATRACE_CALL();
4370
4371 class LayerRenderArea : public RenderArea {
4372 public:
chaviw7206d492017-11-10 16:16:12 -08004373 LayerRenderArea(const sp<Layer>& layer, const Rect crop, int32_t reqWidth,
Chavi Weingarten40482ff2017-11-30 01:51:40 +00004374 int32_t reqHeight)
chaviw7206d492017-11-10 16:16:12 -08004375 : RenderArea(reqHeight, reqWidth), mLayer(layer), mCrop(crop) {}
chaviwa76b2712017-09-20 12:02:26 -07004376 const Transform& getTransform() const override {
4377 // Make the top level transform the inverse the transform and it's parent so it sets
4378 // the whole capture back to 0,0
4379 return *new Transform(mLayer->getTransform().inverse());
4380 }
4381 Rect getBounds() const override {
4382 const Layer::State& layerState(mLayer->getDrawingState());
4383 return Rect(layerState.active.w, layerState.active.h);
4384 }
4385 int getHeight() const override { return mLayer->getDrawingState().active.h; }
4386 int getWidth() const override { return mLayer->getDrawingState().active.w; }
4387 bool isSecure() const override { return false; }
4388 bool needsFiltering() const override { return false; }
4389
chaviw7206d492017-11-10 16:16:12 -08004390 Rect getSourceCrop() const override {
4391 if (mCrop.isEmpty()) {
4392 return getBounds();
4393 } else {
4394 return mCrop;
4395 }
4396 }
chaviwa76b2712017-09-20 12:02:26 -07004397 bool getWideColorSupport() const override { return false; }
4398 android_color_mode_t getActiveColorMode() const override { return HAL_COLOR_MODE_NATIVE; }
4399
4400 private:
chaviw7206d492017-11-10 16:16:12 -08004401 const sp<Layer> mLayer;
4402 const Rect mCrop;
chaviwa76b2712017-09-20 12:02:26 -07004403 };
4404
4405 auto layerHandle = reinterpret_cast<Layer::Handle*>(layerHandleBinder.get());
4406 auto parent = layerHandle->owner.promote();
4407
chaviw7206d492017-11-10 16:16:12 -08004408 if (parent == nullptr || parent->isPendingRemoval()) {
4409 ALOGE("captureLayers called with a removed parent");
4410 return NAME_NOT_FOUND;
4411 }
4412
4413 Rect crop(sourceCrop);
4414 if (sourceCrop.width() <= 0) {
4415 crop.left = 0;
4416 crop.right = parent->getCurrentState().active.w;
4417 }
4418
4419 if (sourceCrop.height() <= 0) {
4420 crop.top = 0;
4421 crop.bottom = parent->getCurrentState().active.h;
4422 }
4423
4424 int32_t reqWidth = crop.width() * frameScale;
4425 int32_t reqHeight = crop.height() * frameScale;
4426
4427 LayerRenderArea renderArea(parent, crop, reqWidth, reqHeight);
4428
chaviwa76b2712017-09-20 12:02:26 -07004429 auto traverseLayers = [parent](const LayerVector::Visitor& visitor) {
4430 parent->traverseChildrenInZOrder(LayerVector::StateSet::Drawing, [&](Layer* layer) {
4431 if (!layer->isVisible()) {
4432 return;
4433 }
4434 visitor(layer);
4435 });
4436 };
Chavi Weingarten40482ff2017-11-30 01:51:40 +00004437 return captureScreenCommon(renderArea, traverseLayers, outBuffer, false);
chaviwa76b2712017-09-20 12:02:26 -07004438}
4439
4440status_t SurfaceFlinger::captureScreenCommon(RenderArea& renderArea,
4441 TraverseLayersFunction traverseLayers,
Chavi Weingarten40482ff2017-11-30 01:51:40 +00004442 sp<GraphicBuffer>* outBuffer,
chaviwa76b2712017-09-20 12:02:26 -07004443 bool useIdentityTransform) {
4444 ATRACE_CALL();
Mathias Agopian2a9fc492013-03-01 13:42:57 -08004445
chaviwa76b2712017-09-20 12:02:26 -07004446 renderArea.updateDimensions();
4447
Chavi Weingarten40482ff2017-11-30 01:51:40 +00004448 const uint32_t usage = GRALLOC_USAGE_SW_READ_OFTEN | GRALLOC_USAGE_SW_WRITE_OFTEN |
4449 GRALLOC_USAGE_HW_RENDER | GRALLOC_USAGE_HW_TEXTURE;
4450 *outBuffer = new GraphicBuffer(renderArea.getReqWidth(), renderArea.getReqHeight(),
4451 HAL_PIXEL_FORMAT_RGBA_8888, 1, usage, "screenshot");
Dan Stoza2b6d38e2017-06-01 16:40:30 -07004452
4453 // This mutex protects syncFd and captureResult for communication of the return values from the
4454 // main thread back to this Binder thread
4455 std::mutex captureMutex;
4456 std::condition_variable captureCondition;
4457 std::unique_lock<std::mutex> captureLock(captureMutex);
4458 int syncFd = -1;
4459 std::optional<status_t> captureResult;
4460
Robert Carr03480e22018-01-04 16:02:06 -08004461 const int uid = IPCThreadState::self()->getCallingUid();
4462 const bool forSystem = uid == AID_GRAPHICS || uid == AID_SYSTEM;
4463
Dan Stoza2b6d38e2017-06-01 16:40:30 -07004464 sp<LambdaMessage> message = new LambdaMessage([&]() {
4465 // If there is a refresh pending, bug out early and tell the binder thread to try again
4466 // after the refresh.
4467 if (mRefreshPending) {
4468 ATRACE_NAME("Skipping screenshot for now");
4469 std::unique_lock<std::mutex> captureLock(captureMutex);
4470 captureResult = std::make_optional<status_t>(EAGAIN);
4471 captureCondition.notify_one();
4472 return;
4473 }
4474
4475 status_t result = NO_ERROR;
4476 int fd = -1;
4477 {
4478 Mutex::Autolock _l(mStateLock);
Chavi Weingarten40482ff2017-11-30 01:51:40 +00004479 result = captureScreenImplLocked(renderArea, traverseLayers, (*outBuffer).get(),
Robert Carr03480e22018-01-04 16:02:06 -08004480 useIdentityTransform, forSystem, &fd);
Dan Stoza2b6d38e2017-06-01 16:40:30 -07004481 }
4482
4483 {
4484 std::unique_lock<std::mutex> captureLock(captureMutex);
4485 syncFd = fd;
4486 captureResult = std::make_optional<status_t>(result);
4487 captureCondition.notify_one();
4488 }
4489 });
4490
Chavi Weingarten40482ff2017-11-30 01:51:40 +00004491 status_t result = postMessageAsync(message);
Dan Stoza2b6d38e2017-06-01 16:40:30 -07004492 if (result == NO_ERROR) {
4493 captureCondition.wait(captureLock, [&]() { return captureResult; });
4494 while (*captureResult == EAGAIN) {
4495 captureResult.reset();
4496 result = postMessageAsync(message);
4497 if (result != NO_ERROR) {
4498 return result;
4499 }
4500 captureCondition.wait(captureLock, [&]() { return captureResult; });
4501 }
4502 result = *captureResult;
4503 }
4504
4505 if (result == NO_ERROR) {
Chavi Weingarten40482ff2017-11-30 01:51:40 +00004506 sync_wait(syncFd, -1);
4507 close(syncFd);
Dan Stoza2b6d38e2017-06-01 16:40:30 -07004508 }
Chavi Weingarten40482ff2017-11-30 01:51:40 +00004509
Dan Stoza2b6d38e2017-06-01 16:40:30 -07004510 return result;
Mathias Agopian2a9fc492013-03-01 13:42:57 -08004511}
4512
chaviwa76b2712017-09-20 12:02:26 -07004513void SurfaceFlinger::renderScreenImplLocked(const RenderArea& renderArea,
4514 TraverseLayersFunction traverseLayers, bool yswap,
4515 bool useIdentityTransform) {
Mathias Agopian180f10d2013-04-10 22:55:41 -07004516 ATRACE_CALL();
chaviwa76b2712017-09-20 12:02:26 -07004517
Mathias Agopian3f844832013-08-07 21:24:32 -07004518 RenderEngine& engine(getRenderEngine());
Mathias Agopian180f10d2013-04-10 22:55:41 -07004519
4520 // get screen geometry
chaviwa76b2712017-09-20 12:02:26 -07004521 const auto raWidth = renderArea.getWidth();
4522 const auto raHeight = renderArea.getHeight();
4523
4524 const auto reqWidth = renderArea.getReqWidth();
4525 const auto reqHeight = renderArea.getReqHeight();
4526 Rect sourceCrop = renderArea.getSourceCrop();
4527
4528 const bool filtering = static_cast<int32_t>(reqWidth) != raWidth ||
4529 static_cast<int32_t>(reqHeight) != raHeight;
Mathias Agopian180f10d2013-04-10 22:55:41 -07004530
Dan Stozac1879002014-05-22 15:59:05 -07004531 // if a default or invalid sourceCrop is passed in, set reasonable values
chaviwa76b2712017-09-20 12:02:26 -07004532 if (sourceCrop.width() == 0 || sourceCrop.height() == 0 || !sourceCrop.isValid()) {
Dan Stozac1879002014-05-22 15:59:05 -07004533 sourceCrop.setLeftTop(Point(0, 0));
chaviwa76b2712017-09-20 12:02:26 -07004534 sourceCrop.setRightBottom(Point(raWidth, raHeight));
Dan Stozac1879002014-05-22 15:59:05 -07004535 }
4536
4537 // ensure that sourceCrop is inside screen
4538 if (sourceCrop.left < 0) {
4539 ALOGE("Invalid crop rect: l = %d (< 0)", sourceCrop.left);
4540 }
chaviwa76b2712017-09-20 12:02:26 -07004541 if (sourceCrop.right > raWidth) {
4542 ALOGE("Invalid crop rect: r = %d (> %d)", sourceCrop.right, raWidth);
Dan Stozac1879002014-05-22 15:59:05 -07004543 }
4544 if (sourceCrop.top < 0) {
4545 ALOGE("Invalid crop rect: t = %d (< 0)", sourceCrop.top);
4546 }
chaviwa76b2712017-09-20 12:02:26 -07004547 if (sourceCrop.bottom > raHeight) {
4548 ALOGE("Invalid crop rect: b = %d (> %d)", sourceCrop.bottom, raHeight);
Dan Stozac1879002014-05-22 15:59:05 -07004549 }
4550
chaviwa76b2712017-09-20 12:02:26 -07004551 engine.setWideColor(renderArea.getWideColorSupport() && !mForceNativeColorMode);
Chavi Weingarten40482ff2017-11-30 01:51:40 +00004552 engine.setColorMode(mForceNativeColorMode ? HAL_COLOR_MODE_NATIVE
4553 : renderArea.getActiveColorMode());
Romain Guy88d37dd2017-05-26 17:57:05 -07004554
Mathias Agopian180f10d2013-04-10 22:55:41 -07004555 // make sure to clear all GL error flags
Mathias Agopian3f844832013-08-07 21:24:32 -07004556 engine.checkErrors();
Mathias Agopian180f10d2013-04-10 22:55:41 -07004557
4558 // set-up our viewport
chaviwa76b2712017-09-20 12:02:26 -07004559 engine.setViewportAndProjection(reqWidth, reqHeight, sourceCrop, raHeight, yswap,
4560 renderArea.getRotationFlags());
Mathias Agopian3f844832013-08-07 21:24:32 -07004561 engine.disableTexturing();
Mathias Agopian180f10d2013-04-10 22:55:41 -07004562
4563 // redraw the screen entirely...
Mathias Agopian3f844832013-08-07 21:24:32 -07004564 engine.clearWithColor(0, 0, 0, 1);
Mathias Agopian180f10d2013-04-10 22:55:41 -07004565
chaviwa76b2712017-09-20 12:02:26 -07004566 traverseLayers([&](Layer* layer) {
4567 if (filtering) layer->setFiltering(true);
4568 layer->draw(renderArea, useIdentityTransform);
4569 if (filtering) layer->setFiltering(false);
4570 });
Mathias Agopian180f10d2013-04-10 22:55:41 -07004571}
4572
chaviwa76b2712017-09-20 12:02:26 -07004573status_t SurfaceFlinger::captureScreenImplLocked(const RenderArea& renderArea,
4574 TraverseLayersFunction traverseLayers,
4575 ANativeWindowBuffer* buffer,
Chavi Weingarten40482ff2017-11-30 01:51:40 +00004576 bool useIdentityTransform,
Robert Carr03480e22018-01-04 16:02:06 -08004577 bool forSystem,
chaviwa76b2712017-09-20 12:02:26 -07004578 int* outSyncFd) {
Mathias Agopian2a9fc492013-03-01 13:42:57 -08004579 ATRACE_CALL();
4580
Pablo Ceballosb5b35632016-02-23 11:18:51 -08004581 bool secureLayerIsVisible = false;
chaviwa76b2712017-09-20 12:02:26 -07004582
4583 traverseLayers([&](Layer* layer) {
4584 secureLayerIsVisible = secureLayerIsVisible || (layer->isVisible() && layer->isSecure());
4585 });
Pablo Ceballosb5b35632016-02-23 11:18:51 -08004586
Robert Carr03480e22018-01-04 16:02:06 -08004587 // We allow the system server to take screenshots of secure layers for
4588 // use in situations like the Screen-rotation animation and place
4589 // the impetus on WindowManager to not persist them.
4590 if (secureLayerIsVisible && !forSystem) {
Pablo Ceballosb5b35632016-02-23 11:18:51 -08004591 ALOGW("FB is protected: PERMISSION_DENIED");
4592 return PERMISSION_DENIED;
4593 }
4594
Dan Stozaa9b1aa02017-06-01 14:16:23 -07004595 // this binds the given EGLImage as a framebuffer for the
4596 // duration of this scope.
Chia-I Wueadbaa62017-11-09 11:26:15 -08004597 RenderEngine::BindNativeBufferAsFramebuffer bufferBond(getRenderEngine(), buffer);
4598 if (bufferBond.getStatus() != NO_ERROR) {
4599 ALOGE("got ANWB binding error while taking screenshot");
Dan Stozaabcda352017-06-01 14:37:39 -07004600 return INVALID_OPERATION;
4601 }
Dan Stozaa9b1aa02017-06-01 14:16:23 -07004602
Dan Stozaabcda352017-06-01 14:37:39 -07004603 // this will in fact render into our dequeued buffer
4604 // via an FBO, which means we didn't have to create
4605 // an EGLSurface and therefore we're not
4606 // dependent on the context's EGLConfig.
chaviwa76b2712017-09-20 12:02:26 -07004607 renderScreenImplLocked(renderArea, traverseLayers, true, useIdentityTransform);
Dan Stozaa9b1aa02017-06-01 14:16:23 -07004608
Dan Stozaabcda352017-06-01 14:37:39 -07004609 if (DEBUG_SCREENSHOTS) {
Chia-I Wu767fcf72017-11-30 22:07:38 -08004610 getRenderEngine().finish();
4611 *outSyncFd = -1;
4612
chaviwa76b2712017-09-20 12:02:26 -07004613 const auto reqWidth = renderArea.getReqWidth();
4614 const auto reqHeight = renderArea.getReqHeight();
4615
Dan Stozaabcda352017-06-01 14:37:39 -07004616 uint32_t* pixels = new uint32_t[reqWidth*reqHeight];
4617 getRenderEngine().readPixels(0, 0, reqWidth, reqHeight, pixels);
chaviwa76b2712017-09-20 12:02:26 -07004618 checkScreenshot(reqWidth, reqHeight, reqWidth, pixels, traverseLayers);
Dan Stozaabcda352017-06-01 14:37:39 -07004619 delete [] pixels;
Chia-I Wu767fcf72017-11-30 22:07:38 -08004620 } else {
4621 base::unique_fd syncFd = getRenderEngine().flush();
4622 if (syncFd < 0) {
4623 getRenderEngine().finish();
4624 }
4625 *outSyncFd = syncFd.release();
Dan Stozaabcda352017-06-01 14:37:39 -07004626 }
4627
Dan Stoza2b6d38e2017-06-01 16:40:30 -07004628 return NO_ERROR;
Mathias Agopian74c40c02010-09-29 13:02:36 -07004629}
4630
Mathias Agopiand5556842013-09-19 17:08:37 -07004631void SurfaceFlinger::checkScreenshot(size_t w, size_t s, size_t h, void const* vaddr,
chaviwa76b2712017-09-20 12:02:26 -07004632 TraverseLayersFunction traverseLayers) {
Mathias Agopianfee2b462013-07-03 12:34:01 -07004633 if (DEBUG_SCREENSHOTS) {
chaviwa76b2712017-09-20 12:02:26 -07004634 for (size_t y = 0; y < h; y++) {
4635 uint32_t const* p = (uint32_t const*)vaddr + y * s;
4636 for (size_t x = 0; x < w; x++) {
Mathias Agopianfee2b462013-07-03 12:34:01 -07004637 if (p[x] != 0xFF000000) return;
4638 }
4639 }
chaviwa76b2712017-09-20 12:02:26 -07004640 ALOGE("*** we just took a black screenshot ***");
Robert Carr1f0a16a2016-10-24 16:27:39 -07004641
Robert Carr2047fae2016-11-28 14:09:09 -08004642 size_t i = 0;
chaviwa76b2712017-09-20 12:02:26 -07004643 traverseLayers([&](Layer* layer) {
Mathias Agopianfee2b462013-07-03 12:34:01 -07004644 const Layer::State& state(layer->getDrawingState());
chaviwa76b2712017-09-20 12:02:26 -07004645 ALOGE("%c index=%zu, name=%s, layerStack=%d, z=%d, visible=%d, flags=%x, alpha=%.3f",
4646 layer->isVisible() ? '+' : '-', i, layer->getName().string(),
4647 layer->getLayerStack(), state.z, layer->isVisible(), state.flags,
4648 static_cast<float>(state.color.a));
4649 i++;
4650 });
Mathias Agopianfee2b462013-07-03 12:34:01 -07004651 }
4652}
4653
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07004654// ---------------------------------------------------------------------------
4655
Dan Stoza412903f2017-04-27 13:42:17 -07004656void SurfaceFlinger::State::traverseInZOrder(const LayerVector::Visitor& visitor) const {
4657 layersSortedByZ.traverseInZOrder(stateSet, visitor);
Mathias Agopian921e6ac2012-07-23 23:11:29 -07004658}
4659
Dan Stoza412903f2017-04-27 13:42:17 -07004660void SurfaceFlinger::State::traverseInReverseZOrder(const LayerVector::Visitor& visitor) const {
4661 layersSortedByZ.traverseInReverseZOrder(stateSet, visitor);
Mathias Agopian921e6ac2012-07-23 23:11:29 -07004662}
4663
chaviwa76b2712017-09-20 12:02:26 -07004664void SurfaceFlinger::traverseLayersInDisplay(const sp<const DisplayDevice>& hw, int32_t minLayerZ,
4665 int32_t maxLayerZ,
4666 const LayerVector::Visitor& visitor) {
4667 // We loop through the first level of layers without traversing,
4668 // as we need to interpret min/max layer Z in the top level Z space.
4669 for (const auto& layer : mDrawingState.layersSortedByZ) {
4670 if (!layer->belongsToDisplay(hw->getLayerStack(), false)) {
4671 continue;
4672 }
4673 const Layer::State& state(layer->getDrawingState());
Chia-I Wuec2d9852017-11-21 09:21:01 -08004674 // relative layers are traversed in Layer::traverseInZOrder
4675 if (state.zOrderRelativeOf != nullptr || state.z < minLayerZ || state.z > maxLayerZ) {
chaviwa76b2712017-09-20 12:02:26 -07004676 continue;
4677 }
4678 layer->traverseInZOrder(LayerVector::StateSet::Drawing, [&](Layer* layer) {
Adrian Roos8acf5a02018-01-17 21:28:19 +01004679 if (!layer->belongsToDisplay(hw->getLayerStack(), false)) {
4680 return;
4681 }
chaviwa76b2712017-09-20 12:02:26 -07004682 if (!layer->isVisible()) {
4683 return;
4684 }
4685 visitor(layer);
4686 });
4687 }
4688}
4689
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004690}; // namespace android
Mathias Agopian3f844832013-08-07 21:24:32 -07004691
4692
4693#if defined(__gl_h_)
4694#error "don't include gl/gl.h in this file"
4695#endif
4696
4697#if defined(__gl2_h_)
4698#error "don't include gl2/gl2.h in this file"
Chia-I Wu767fcf72017-11-30 22:07:38 -08004699#endif