blob: f6c81c0ba2b8dc667e60c419ea2f8c0313ff4ad0 [file] [log] [blame]
Ana Krulec98b5b242018-08-10 15:03:23 -07001/*
2 * Copyright 2018 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
17#pragma once
18
Dominik Laskowski98041832019-08-01 18:35:59 -070019#include <atomic>
Dominik Laskowski62eff352021-12-06 09:59:41 -080020#include <cstdint>
Kevin DuBois413287f2019-02-25 08:46:47 -080021#include <functional>
Dominik Laskowski756b7892021-08-04 12:53:59 -070022#include <future>
Ana Krulec98b5b242018-08-10 15:03:23 -070023#include <memory>
Dominik Laskowski98041832019-08-01 18:35:59 -070024#include <mutex>
25#include <optional>
26#include <unordered_map>
Ana Krulec98b5b242018-08-10 15:03:23 -070027
Ady Abrahamdec1a412020-01-24 10:23:50 -080028// TODO(b/129481165): remove the #pragma below and fix conversion issues
29#pragma clang diagnostic push
30#pragma clang diagnostic ignored "-Wconversion"
Marin Shalamanovbed7fd32020-12-21 20:02:20 +010031#pragma clang diagnostic ignored "-Wextra"
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -080032#include <ui/GraphicTypes.h>
Marin Shalamanovbed7fd32020-12-21 20:02:20 +010033#pragma clang diagnostic pop // ignored "-Wconversion -Wextra"
Ana Krulec98b5b242018-08-10 15:03:23 -070034
Dominik Laskowski068173d2021-08-11 17:22:59 -070035#include <scheduler/Features.h>
36
Ana Krulec98b5b242018-08-10 15:03:23 -070037#include "EventThread.h"
Andy Yu2ae6b6b2021-11-18 14:51:06 -080038#include "FrameRateOverrideMappings.h"
Ana Krulec3084c052018-11-21 20:27:17 +010039#include "LayerHistory.h"
Dominik Laskowski756b7892021-08-04 12:53:59 -070040#include "MessageQueue.h"
Ana Krulecf2c006d2019-06-21 15:37:07 -070041#include "OneShotTimer.h"
Ana Krulec8d3e4f32019-03-05 10:40:33 -080042#include "RefreshRateConfigs.h"
Dominik Laskowski068173d2021-08-11 17:22:59 -070043#include "VsyncSchedule.h"
Ana Krulec98b5b242018-08-10 15:03:23 -070044
Dominik Laskowski62eff352021-12-06 09:59:41 -080045namespace android::scheduler {
46
47// Opaque handle to scheduler connection.
48struct ConnectionHandle {
49 using Id = std::uintptr_t;
50 static constexpr Id INVALID_ID = static_cast<Id>(-1);
51
52 Id id = INVALID_ID;
53
54 explicit operator bool() const { return id != INVALID_ID; }
55};
56
57inline bool operator==(ConnectionHandle lhs, ConnectionHandle rhs) {
58 return lhs.id == rhs.id;
59}
60
61} // namespace android::scheduler
62
63namespace std {
64
65template <>
66struct hash<android::scheduler::ConnectionHandle> {
67 size_t operator()(android::scheduler::ConnectionHandle handle) const {
68 return hash<android::scheduler::ConnectionHandle::Id>()(handle.id);
69 }
70};
71
72} // namespace std
73
Ana Krulec98b5b242018-08-10 15:03:23 -070074namespace android {
75
Dominik Laskowski98041832019-08-01 18:35:59 -070076class FenceTime;
Dominik Laskowski6505f792019-09-18 11:10:05 -070077class InjectVSyncSource;
Ana Krulece588e312018-09-18 12:32:24 -070078
Adithya Srinivasan5f683cf2020-09-15 14:21:04 -070079namespace frametimeline {
80class TokenManager;
81} // namespace frametimeline
82
Dominik Laskowski068173d2021-08-11 17:22:59 -070083namespace scheduler {
84
Dominik Laskowski8b01cc02020-07-14 19:02:41 -070085struct ISchedulerCallback {
Dominik Laskowski8da6b0e2021-05-12 15:34:13 -070086 // Indicates frame activity, i.e. whether commit and/or composite is taking place.
87 enum class FrameHint { kNone, kActive };
88
Dominik Laskowski068173d2021-08-11 17:22:59 -070089 using RefreshRate = RefreshRateConfigs::RefreshRate;
90 using DisplayModeEvent = scheduler::DisplayModeEvent;
91
Dominik Laskowskie0e0cde2021-07-30 10:42:05 -070092 virtual void scheduleComposite(FrameHint) = 0;
Dominik Laskowski8b01cc02020-07-14 19:02:41 -070093 virtual void setVsyncEnabled(bool) = 0;
Dominik Laskowski068173d2021-08-11 17:22:59 -070094 virtual void changeRefreshRate(const RefreshRate&, DisplayModeEvent) = 0;
Ady Abrahama09852a2020-02-20 14:23:42 -080095 virtual void kernelTimerChanged(bool expired) = 0;
Ady Abraham62a0be22020-12-08 16:54:10 -080096 virtual void triggerOnFrameRateOverridesChanged() = 0;
Dominik Laskowski8b01cc02020-07-14 19:02:41 -070097
98protected:
99 ~ISchedulerCallback() = default;
Ady Abraham3a77a7b2019-12-02 18:46:59 -0800100};
101
Dominik Laskowski756b7892021-08-04 12:53:59 -0700102class Scheduler : impl::MessageQueue {
103 using Impl = impl::MessageQueue;
104
Ana Krulec98b5b242018-08-10 15:03:23 -0700105public:
Dominik Laskowski068173d2021-08-11 17:22:59 -0700106 Scheduler(ICompositor&, ISchedulerCallback&, FeatureFlags);
Dominik Laskowski83bd7712022-01-07 14:30:53 -0800107 virtual ~Scheduler();
108
109 void startTimers();
110 void setRefreshRateConfigs(std::shared_ptr<RefreshRateConfigs>)
111 EXCLUDES(mRefreshRateConfigsLock);
112
113 void run();
Ana Krulec98b5b242018-08-10 15:03:23 -0700114
Dominik Laskowski068173d2021-08-11 17:22:59 -0700115 void createVsyncSchedule(FeatureFlags);
Dominik Laskowski756b7892021-08-04 12:53:59 -0700116
117 using Impl::initVsync;
118 using Impl::setInjector;
119
120 using Impl::getScheduledFrameTime;
121 using Impl::setDuration;
122
Dominik Laskowski46f3e3b2021-08-10 11:44:24 -0700123 using Impl::scheduleFrame;
Dominik Laskowski756b7892021-08-04 12:53:59 -0700124
125 // Schedule an asynchronous or synchronous task on the main thread.
126 template <typename F, typename T = std::invoke_result_t<F>>
127 [[nodiscard]] std::future<T> schedule(F&& f) {
128 auto [task, future] = makeTask(std::move(f));
129 postMessage(std::move(task));
130 return std::move(future);
131 }
Dominik Laskowski9c93d602021-10-07 19:38:26 -0700132
Adithya Srinivasan5f683cf2020-09-15 14:21:04 -0700133 ConnectionHandle createConnection(const char* connectionName, frametimeline::TokenManager*,
Ady Abraham9c53ee72020-07-22 21:16:18 -0700134 std::chrono::nanoseconds workDuration,
135 std::chrono::nanoseconds readyDuration,
Dominik Laskowski98041832019-08-01 18:35:59 -0700136 impl::EventThread::InterceptVSyncsCallback);
Ana Krulec98b5b242018-08-10 15:03:23 -0700137
Ady Abraham62f216c2020-10-13 19:07:23 -0700138 sp<IDisplayEventConnection> createDisplayEventConnection(
139 ConnectionHandle, ISurfaceComposer::EventRegistrationFlags eventRegistration = {});
Ana Krulece588e312018-09-18 12:32:24 -0700140
Dominik Laskowski98041832019-08-01 18:35:59 -0700141 sp<EventThreadConnection> getEventConnection(ConnectionHandle);
Kevin DuBois413287f2019-02-25 08:46:47 -0800142
Dominik Laskowski98041832019-08-01 18:35:59 -0700143 void onHotplugReceived(ConnectionHandle, PhysicalDisplayId, bool connected);
Dominik Laskowski068173d2021-08-11 17:22:59 -0700144 void onPrimaryDisplayModeChanged(ConnectionHandle, DisplayModePtr) EXCLUDES(mPolicyLock);
Ady Abraham690f4612021-07-01 23:24:03 -0700145 void onNonPrimaryDisplayModeChanged(ConnectionHandle, DisplayModePtr);
Dominik Laskowski98041832019-08-01 18:35:59 -0700146 void onScreenAcquired(ConnectionHandle);
147 void onScreenReleased(ConnectionHandle);
Ana Krulece588e312018-09-18 12:32:24 -0700148
Ady Abraham62a0be22020-12-08 16:54:10 -0800149 void onFrameRateOverridesChanged(ConnectionHandle, PhysicalDisplayId)
Andy Yu2ae6b6b2021-11-18 14:51:06 -0800150 EXCLUDES(mConnectionsLock);
Ady Abraham62f216c2020-10-13 19:07:23 -0700151
Ady Abraham9c53ee72020-07-22 21:16:18 -0700152 // Modifies work duration in the event thread.
153 void setDuration(ConnectionHandle, std::chrono::nanoseconds workDuration,
154 std::chrono::nanoseconds readyDuration);
Ana Krulec98b5b242018-08-10 15:03:23 -0700155
Ady Abrahame90dd522020-12-29 12:08:45 -0800156 DisplayStatInfo getDisplayStatInfo(nsecs_t now);
Ana Krulece588e312018-09-18 12:32:24 -0700157
Dominik Laskowski6505f792019-09-18 11:10:05 -0700158 // Returns injector handle if injection has toggled, or an invalid handle otherwise.
159 ConnectionHandle enableVSyncInjection(bool enable);
Dominik Laskowski6505f792019-09-18 11:10:05 -0700160 // Returns false if injection is disabled.
Ady Abraham9c53ee72020-07-22 21:16:18 -0700161 bool injectVSync(nsecs_t when, nsecs_t expectedVSyncTime, nsecs_t deadlineTimestamp);
Ana Krulece588e312018-09-18 12:32:24 -0700162 void enableHardwareVsync();
163 void disableHardwareVsync(bool makeUnavailable);
Dominik Laskowski98041832019-08-01 18:35:59 -0700164
Alec Mourif8e689c2019-05-20 18:32:22 -0700165 // Resyncs the scheduler to hardware vsync.
166 // If makeAvailable is true, then hardware vsync will be turned on.
167 // Otherwise, if hardware vsync is not already enabled then this method will
168 // no-op.
169 // The period is the vsync period from the current display configuration.
Ana Krulecc2870422019-01-29 19:00:58 -0800170 void resyncToHardwareVsync(bool makeAvailable, nsecs_t period);
Ady Abraham3efa3942021-06-24 19:01:25 -0700171 void resync() EXCLUDES(mRefreshRateConfigsLock);
Ady Abrahame9befd72022-02-24 17:24:44 -0800172 void forceNextResync() { mLastResyncTime = 0; }
Dominik Laskowski98041832019-08-01 18:35:59 -0700173
Ady Abraham8cb21882020-08-26 18:22:05 -0700174 // Passes a vsync sample to VsyncController. periodFlushed will be true if
175 // VsyncController detected that the vsync period changed, and false otherwise.
Ady Abraham5dee2f12020-02-05 17:49:47 -0800176 void addResyncSample(nsecs_t timestamp, std::optional<nsecs_t> hwcVsyncPeriod,
177 bool* periodFlushed);
Dominik Laskowski068173d2021-08-11 17:22:59 -0700178 void addPresentFence(std::shared_ptr<FenceTime>);
Ady Abraham8f1ee7f2019-04-05 10:32:50 -0700179
Dominik Laskowskif7a09ed2019-10-07 13:54:18 -0700180 // Layers are registered on creation, and unregistered when the weak reference expires.
181 void registerLayer(Layer*);
Ady Abraham3efa3942021-06-24 19:01:25 -0700182 void recordLayerHistory(Layer*, nsecs_t presentTime, LayerHistory::LayerUpdateType updateType)
183 EXCLUDES(mRefreshRateConfigsLock);
Marin Shalamanova7fe3042021-01-29 21:02:08 +0100184 void setModeChangePending(bool pending);
Ady Abrahambdda8f02021-04-01 16:06:11 -0700185 void deregisterLayer(Layer*);
Dominik Laskowskif7a09ed2019-10-07 13:54:18 -0700186
Dominik Laskowski49cea512019-11-12 14:13:23 -0800187 // Detects content using layer history, and selects a matching refresh rate.
Ady Abraham3efa3942021-06-24 19:01:25 -0700188 void chooseRefreshRateForContent() EXCLUDES(mRefreshRateConfigsLock);
Ady Abraham97d04232019-03-05 19:48:12 -0800189
Ady Abraham8532d012019-05-08 14:50:56 -0700190 void resetIdleTimer();
191
Dominik Laskowski8da6b0e2021-05-12 15:34:13 -0700192 // Indicates that touch interaction is taking place.
193 void onTouchHint();
Ady Abraham8532d012019-05-08 14:50:56 -0700194
Ady Abraham6fe2c172019-07-12 12:37:57 -0700195 void setDisplayPowerState(bool normal);
196
Dominik Laskowski068173d2021-08-11 17:22:59 -0700197 VSyncDispatch& getVsyncDispatch() { return mVsyncSchedule->getDispatch(); }
Ady Abraham55fa7272020-09-30 19:19:27 -0700198
Ady Abraham0bb6a472020-10-12 10:22:13 -0700199 // Returns true if a given vsync timestamp is considered valid vsync
200 // for a given uid
Andy Yu2ae6b6b2021-11-18 14:51:06 -0800201 bool isVsyncValid(nsecs_t expectedVsyncTimestamp, uid_t uid) const;
Ady Abraham0bb6a472020-10-12 10:22:13 -0700202
Ady Abraham3645e642021-04-20 18:39:00 -0700203 std::chrono::steady_clock::time_point getPreviousVsyncFrom(nsecs_t expectedPresentTime) const;
204
Dominik Laskowski98041832019-08-01 18:35:59 -0700205 void dump(std::string&) const;
206 void dump(ConnectionHandle, std::string&) const;
Ady Abraham8cb21882020-08-26 18:22:05 -0700207 void dumpVsync(std::string&) const;
Ana Krulec0c8cd522018-08-31 12:27:28 -0700208
Ady Abraham2139f732019-11-13 18:56:40 -0800209 // Get the appropriate refresh for current conditions.
Ady Abraham690f4612021-07-01 23:24:03 -0700210 DisplayModePtr getPreferredDisplayMode();
Daniel Solomon0f0ddc12019-08-19 19:31:09 -0700211
Ady Abraham3a77a7b2019-12-02 18:46:59 -0800212 // Notifies the scheduler about a refresh rate timeline change.
Peiyong Line9d809e2020-04-14 13:10:48 -0700213 void onNewVsyncPeriodChangeTimeline(const hal::VsyncPeriodChangeTimeline& timeline);
Ady Abraham3a77a7b2019-12-02 18:46:59 -0800214
Dominik Laskowskie0e0cde2021-07-30 10:42:05 -0700215 // Notifies the scheduler post composition.
216 void onPostComposition(nsecs_t presentTime);
Ady Abraham3a77a7b2019-12-02 18:46:59 -0800217
Ady Abraham8a82ba62020-01-17 12:43:17 -0800218 // Notifies the scheduler when the display size has changed. Called from SF's main thread
Ady Abraham7825c682021-05-17 15:12:14 -0700219 void onActiveDisplayAreaChanged(uint32_t displayArea);
Ady Abraham8a82ba62020-01-17 12:43:17 -0800220
Alec Mouri717bcb62020-02-10 17:07:19 -0800221 size_t getEventThreadConnectionCount(ConnectionHandle handle);
222
Ady Abraham9c53ee72020-07-22 21:16:18 -0700223 std::unique_ptr<VSyncSource> makePrimaryDispSyncSource(const char* name,
224 std::chrono::nanoseconds workDuration,
225 std::chrono::nanoseconds readyDuration,
226 bool traceVsync = true);
227
Ady Abraham62a0be22020-12-08 16:54:10 -0800228 // Stores the preferred refresh rate that an app should run at.
229 // FrameRateOverride.refreshRateHz == 0 means no preference.
Andy Yu2ae6b6b2021-11-18 14:51:06 -0800230 void setPreferredRefreshRateForUid(FrameRateOverride);
231
232 void setGameModeRefreshRateForUid(FrameRateOverride);
233
Alec Mouri7d436ec2021-01-27 20:40:50 -0800234 // Retrieves the overridden refresh rate for a given uid.
Andy Yu2ae6b6b2021-11-18 14:51:06 -0800235 std::optional<Fps> getFrameRateOverride(uid_t uid) const EXCLUDES(mRefreshRateConfigsLock);
Ady Abraham3efa3942021-06-24 19:01:25 -0700236
Ady Abraham3efa3942021-06-24 19:01:25 -0700237 nsecs_t getVsyncPeriodFromRefreshRateConfigs() const EXCLUDES(mRefreshRateConfigsLock) {
238 std::scoped_lock lock(mRefreshRateConfigsLock);
239 return mRefreshRateConfigs->getCurrentRefreshRate().getVsyncPeriod();
240 }
Ady Abraham62a0be22020-12-08 16:54:10 -0800241
Nathaniel Nifong1303d912021-10-06 09:41:24 -0400242 // Returns the framerate of the layer with the given sequence ID
243 float getLayerFramerate(nsecs_t now, int32_t id) const {
244 return mLayerHistory.getLayerFramerate(now, id);
245 }
246
Ana Krulec98b5b242018-08-10 15:03:23 -0700247private:
Ana Krulecafb45842019-02-13 13:33:03 -0800248 friend class TestableScheduler;
249
Dominik Laskowski8da6b0e2021-05-12 15:34:13 -0700250 using FrameHint = ISchedulerCallback::FrameHint;
251
Dominik Laskowskidd252cd2019-07-26 09:10:16 -0700252 enum class ContentDetectionState { Off, On };
253 enum class TimerState { Reset, Expired };
254 enum class TouchState { Inactive, Active };
Ana Krulecfefd6ae2019-02-13 17:53:08 -0800255
Dominik Laskowski6505f792019-09-18 11:10:05 -0700256 // Create a connection on the given EventThread.
Steven Thomas2bbaabe2019-08-28 16:08:35 -0700257 ConnectionHandle createConnection(std::unique_ptr<EventThread>);
Ady Abraham62f216c2020-10-13 19:07:23 -0700258 sp<EventThreadConnection> createConnectionInternal(
259 EventThread*, ISurfaceComposer::EventRegistrationFlags eventRegistration = {});
Dominik Laskowskiccf37d72019-02-01 16:47:58 -0800260
Dominik Laskowski3a80a382019-07-25 11:16:07 -0700261 // Update feature state machine to given state when corresponding timer resets or expires.
Ady Abraham3efa3942021-06-24 19:01:25 -0700262 void kernelIdleTimerCallback(TimerState) EXCLUDES(mRefreshRateConfigsLock);
Dominik Laskowski3a80a382019-07-25 11:16:07 -0700263 void idleTimerCallback(TimerState);
264 void touchTimerCallback(TimerState);
265 void displayPowerTimerCallback(TimerState);
266
Dominik Laskowski98041832019-08-01 18:35:59 -0700267 void setVsyncPeriod(nsecs_t period);
268
Dominik Laskowskia8626ec2021-12-15 18:13:30 -0800269 using GlobalSignals = RefreshRateConfigs::GlobalSignals;
270
Dominik Laskowski0c41ffa2021-12-24 16:45:12 -0800271 struct Policy;
272
273 // Sets the S state of the policy to the T value under mPolicyLock, and chooses a display mode
274 // that fulfills the new policy if the state changed. Returns the signals that were considered.
275 template <typename S, typename T>
276 GlobalSignals applyPolicy(S Policy::*, T&&) EXCLUDES(mPolicyLock);
277
Dominik Laskowskia8626ec2021-12-15 18:13:30 -0800278 // Returns the display mode that fulfills the policy, and the signals that were considered.
279 std::pair<DisplayModePtr, GlobalSignals> chooseDisplayMode() REQUIRES(mPolicyLock);
280
281 bool updateFrameRateOverrides(GlobalSignals, Fps displayRefreshRate) REQUIRES(mPolicyLock);
Ana Krulec7ab56032018-11-02 20:51:06 +0100282
Dominik Laskowski068173d2021-08-11 17:22:59 -0700283 void dispatchCachedReportedMode() REQUIRES(mPolicyLock) EXCLUDES(mRefreshRateConfigsLock);
Ady Abraham62a0be22020-12-08 16:54:10 -0800284
Ady Abraham3efa3942021-06-24 19:01:25 -0700285 impl::EventThread::ThrottleVsyncCallback makeThrottleVsyncCallback() const
286 EXCLUDES(mRefreshRateConfigsLock);
Jorim Jaggic0086af2021-02-12 18:18:11 +0100287 impl::EventThread::GetVsyncPeriodFunction makeGetVsyncPeriodFunction() const;
Ady Abrahamdfd62162020-06-10 16:11:56 -0700288
Dominik Laskowski068173d2021-08-11 17:22:59 -0700289 std::shared_ptr<RefreshRateConfigs> holdRefreshRateConfigs() const
Ady Abraham3efa3942021-06-24 19:01:25 -0700290 EXCLUDES(mRefreshRateConfigsLock) {
291 std::scoped_lock lock(mRefreshRateConfigsLock);
292 return mRefreshRateConfigs;
293 }
294
Dominik Laskowski98041832019-08-01 18:35:59 -0700295 // Stores EventThread associated with a given VSyncSource, and an initial EventThreadConnection.
296 struct Connection {
297 sp<EventThreadConnection> connection;
298 std::unique_ptr<EventThread> thread;
299 };
Ady Abraham09bd3922019-04-08 10:44:56 -0700300
Dominik Laskowski98041832019-08-01 18:35:59 -0700301 ConnectionHandle::Id mNextConnectionHandleId = 0;
Ana Krulec6ddd2612020-09-24 13:06:33 -0700302 mutable std::mutex mConnectionsLock;
303 std::unordered_map<ConnectionHandle, Connection> mConnections GUARDED_BY(mConnectionsLock);
Ana Krulece588e312018-09-18 12:32:24 -0700304
Dominik Laskowski6505f792019-09-18 11:10:05 -0700305 bool mInjectVSyncs = false;
306 InjectVSyncSource* mVSyncInjector = nullptr;
307 ConnectionHandle mInjectorConnectionHandle;
308
Ady Abraham4f960d12021-10-13 16:59:49 -0700309 mutable std::mutex mHWVsyncLock;
Dominik Laskowski98041832019-08-01 18:35:59 -0700310 bool mPrimaryHWVsyncEnabled GUARDED_BY(mHWVsyncLock) = false;
311 bool mHWVsyncAvailable GUARDED_BY(mHWVsyncLock) = false;
312
Steven Thomas2bbaabe2019-08-28 16:08:35 -0700313 std::atomic<nsecs_t> mLastResyncTime = 0;
Ana Krulece588e312018-09-18 12:32:24 -0700314
Dominik Laskowski068173d2021-08-11 17:22:59 -0700315 const FeatureFlags mFeatures;
316 std::optional<VsyncSchedule> mVsyncSchedule;
Ana Krulec7ab56032018-11-02 20:51:06 +0100317
Dominik Laskowski49cea512019-11-12 14:13:23 -0800318 // Used to choose refresh rate if content detection is enabled.
Dominik Laskowski9c93d602021-10-07 19:38:26 -0700319 LayerHistory mLayerHistory;
Ana Krulecfb772822018-11-30 10:44:07 +0100320
Ady Abraham8532d012019-05-08 14:50:56 -0700321 // Timer used to monitor touch events.
Dominik Laskowski068173d2021-08-11 17:22:59 -0700322 std::optional<OneShotTimer> mTouchTimer;
Ady Abraham6fe2c172019-07-12 12:37:57 -0700323 // Timer used to monitor display power mode.
Dominik Laskowski068173d2021-08-11 17:22:59 -0700324 std::optional<OneShotTimer> mDisplayPowerTimer;
Ady Abraham6fe2c172019-07-12 12:37:57 -0700325
Ady Abraham3a77a7b2019-12-02 18:46:59 -0800326 ISchedulerCallback& mSchedulerCallback;
Ana Krulecfefd6ae2019-02-13 17:53:08 -0800327
Dominik Laskowski068173d2021-08-11 17:22:59 -0700328 mutable std::mutex mPolicyLock;
Dominik Laskowskidd252cd2019-07-26 09:10:16 -0700329
Dominik Laskowski0c41ffa2021-12-24 16:45:12 -0800330 struct Policy {
Dominik Laskowski068173d2021-08-11 17:22:59 -0700331 // Policy for choosing the display mode.
332 LayerHistory::Summary contentRequirements;
Dominik Laskowskidd252cd2019-07-26 09:10:16 -0700333 TimerState idleTimer = TimerState::Reset;
334 TouchState touch = TouchState::Inactive;
335 TimerState displayPowerTimer = TimerState::Expired;
Dominik Laskowskidd252cd2019-07-26 09:10:16 -0700336 bool isDisplayPowerStateNormal = true;
Ady Abrahamdfd62162020-06-10 16:11:56 -0700337
Dominik Laskowski068173d2021-08-11 17:22:59 -0700338 // Chosen display mode.
339 DisplayModePtr mode;
340
Marin Shalamanova7fe3042021-01-29 21:02:08 +0100341 struct ModeChangedParams {
Ady Abrahamdfd62162020-06-10 16:11:56 -0700342 ConnectionHandle handle;
Ady Abraham690f4612021-07-01 23:24:03 -0700343 DisplayModePtr mode;
Ady Abrahamdfd62162020-06-10 16:11:56 -0700344 };
345
Dominik Laskowski068173d2021-08-11 17:22:59 -0700346 // Parameters for latest dispatch of mode change event.
Marin Shalamanova7fe3042021-01-29 21:02:08 +0100347 std::optional<ModeChangedParams> cachedModeChangedParams;
Dominik Laskowski068173d2021-08-11 17:22:59 -0700348 } mPolicy GUARDED_BY(mPolicyLock);
Ady Abraham09bd3922019-04-08 10:44:56 -0700349
Ady Abraham3efa3942021-06-24 19:01:25 -0700350 mutable std::mutex mRefreshRateConfigsLock;
Dominik Laskowski068173d2021-08-11 17:22:59 -0700351 std::shared_ptr<RefreshRateConfigs> mRefreshRateConfigs GUARDED_BY(mRefreshRateConfigsLock);
Ady Abraham3a77a7b2019-12-02 18:46:59 -0800352
353 std::mutex mVsyncTimelineLock;
Peiyong Line9d809e2020-04-14 13:10:48 -0700354 std::optional<hal::VsyncPeriodChangeTimeline> mLastVsyncPeriodChangeTimeline
Ady Abraham3a77a7b2019-12-02 18:46:59 -0800355 GUARDED_BY(mVsyncTimelineLock);
356 static constexpr std::chrono::nanoseconds MAX_VSYNC_APPLIED_TIME = 200ms;
Ady Abraham8735eac2020-08-12 16:35:04 -0700357
Andy Yu2ae6b6b2021-11-18 14:51:06 -0800358 FrameRateOverrideMappings mFrameRateOverrideMappings;
Ady Abraham4f960d12021-10-13 16:59:49 -0700359
360 // Keeps track of whether the screen is acquired for debug
361 std::atomic<bool> mScreenAcquired = false;
Ana Krulec98b5b242018-08-10 15:03:23 -0700362};
363
Dominik Laskowski068173d2021-08-11 17:22:59 -0700364} // namespace scheduler
Ana Krulec7ab56032018-11-02 20:51:06 +0100365} // namespace android