blob: 10d48e320783001b774cb772ecf48ebf58305aa3 [file] [log] [blame]
Sean Paul4057be32015-05-13 06:23:09 -07001/*
2 * Copyright (C) 2015 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#define LOG_TAG "hwc-vsync-worker"
18
Roman Stratiienko13cc3662020-08-29 21:35:39 +030019#include "VSyncWorker.h"
Sean Paul4057be32015-05-13 06:23:09 -070020
Sean Paul4057be32015-05-13 06:23:09 -070021#include <xf86drm.h>
22#include <xf86drmMode.h>
23
Roman Stratiienkoe2f2c922021-02-13 10:57:47 +020024#include <cstdlib>
Roman Stratiienkod21071f2021-03-09 21:56:50 +020025#include <cstring>
Roman Stratiienkoe2f2c922021-02-13 10:57:47 +020026#include <ctime>
27
Roman Stratiienkod2cc7382022-12-28 18:51:59 +020028#include "drm/ResourceManager.h"
Roman Stratiienkod518a052021-02-25 19:15:14 +020029#include "utils/log.h"
30
Sean Paul4057be32015-05-13 06:23:09 -070031namespace android {
32
Roman Stratiienko63762a92023-09-18 22:33:45 +030033auto VSyncWorker::CreateInstance(std::shared_ptr<DrmDisplayPipeline> &pipe,
Roman Stratiienkod2cc7382022-12-28 18:51:59 +020034 VSyncWorkerCallbacks &callbacks)
35 -> std::shared_ptr<VSyncWorker> {
36 auto vsw = std::shared_ptr<VSyncWorker>(new VSyncWorker());
Sean Paul4057be32015-05-13 06:23:09 -070037
Roman Stratiienkod2cc7382022-12-28 18:51:59 +020038 vsw->callbacks_ = callbacks;
Sean Paul4057be32015-05-13 06:23:09 -070039
Roman Stratiienko63762a92023-09-18 22:33:45 +030040 if (pipe) {
Roman Stratiienkod2cc7382022-12-28 18:51:59 +020041 vsw->high_crtc_ = pipe->crtc->Get()->GetIndexInResArray()
42 << DRM_VBLANK_HIGH_CRTC_SHIFT;
Roman Stratiienko76892782023-01-16 17:15:53 +020043 vsw->drm_fd_ = pipe->device->GetFd();
Roman Stratiienkod2cc7382022-12-28 18:51:59 +020044 }
45
46 std::thread(&VSyncWorker::ThreadFn, vsw.get(), vsw).detach();
47
48 return vsw;
Sean Paul4057be32015-05-13 06:23:09 -070049}
50
Adrian Salidofa37f672017-02-16 10:29:46 -080051void VSyncWorker::VSyncControl(bool enabled) {
Roman Stratiienkod2cc7382022-12-28 18:51:59 +020052 {
53 const std::lock_guard<std::mutex> lock(mutex_);
54 enabled_ = enabled;
55 last_timestamp_ = -1;
56 }
Sean Paul4057be32015-05-13 06:23:09 -070057
Roman Stratiienkod2cc7382022-12-28 18:51:59 +020058 cv_.notify_all();
59}
60
61void VSyncWorker::StopThread() {
62 {
63 const std::lock_guard<std::mutex> lock(mutex_);
64 thread_exit_ = true;
65 enabled_ = false;
66 callbacks_ = {};
67 }
68
69 cv_.notify_all();
Sean Paul4057be32015-05-13 06:23:09 -070070}
71
72/*
73 * Returns the timestamp of the next vsync in phase with last_timestamp_.
74 * For example:
75 * last_timestamp_ = 137
76 * frame_ns = 50
77 * current = 683
78 *
79 * ret = (50 * ((683 - 137)/50 + 1)) + 137
80 * ret = 687
81 *
82 * Thus, we must sleep until timestamp 687 to maintain phase with the last
83 * timestamp.
84 */
Roman Stratiienkoe2f2c922021-02-13 10:57:47 +020085int64_t VSyncWorker::GetPhasedVSync(int64_t frame_ns, int64_t current) const {
Sean Paul4057be32015-05-13 06:23:09 -070086 if (last_timestamp_ < 0)
87 return current + frame_ns;
88
89 return frame_ns * ((current - last_timestamp_) / frame_ns + 1) +
90 last_timestamp_;
91}
92
Roman Stratiienko780f7da2022-01-10 16:04:15 +020093static const int64_t kOneSecondNs = 1LL * 1000 * 1000 * 1000;
Sean Paul4057be32015-05-13 06:23:09 -070094
95int VSyncWorker::SyntheticWaitVBlank(int64_t *timestamp) {
Roman Stratiienkod2cc7382022-12-28 18:51:59 +020096 auto time_now = ResourceManager::GetTimeMonotonicNs();
97
98 // Default to 60Hz refresh rate
99 constexpr uint32_t kDefaultVSPeriodNs = 16666666;
100 auto period_ns = kDefaultVSPeriodNs;
101 if (callbacks_.get_vperiod_ns && callbacks_.get_vperiod_ns() != 0)
102 period_ns = callbacks_.get_vperiod_ns();
103
104 auto phased_timestamp = GetPhasedVSync(period_ns, time_now);
Roman Stratiienkob3b5c1e2021-02-15 13:44:19 +0200105 struct timespec vsync {};
Roman Stratiienkod2cc7382022-12-28 18:51:59 +0200106 vsync.tv_sec = int(phased_timestamp / kOneSecondNs);
Roman Stratiienkoe2f2c922021-02-13 10:57:47 +0200107 vsync.tv_nsec = int(phased_timestamp - (vsync.tv_sec * kOneSecondNs));
Roman Stratiienkod2cc7382022-12-28 18:51:59 +0200108
109 int ret = 0;
Sean Paul4057be32015-05-13 06:23:09 -0700110 do {
Roman Stratiienkoe2f2c922021-02-13 10:57:47 +0200111 ret = clock_nanosleep(CLOCK_MONOTONIC, TIMER_ABSTIME, &vsync, nullptr);
Keith Mok554743d2021-11-17 01:09:44 +0000112 } while (ret == EINTR);
Roman Stratiienkod2cc7382022-12-28 18:51:59 +0200113 if (ret != 0)
Sean Paul4057be32015-05-13 06:23:09 -0700114 return ret;
115
Roman Stratiienkod2cc7382022-12-28 18:51:59 +0200116 *timestamp = phased_timestamp;
Sean Paul4057be32015-05-13 06:23:09 -0700117 return 0;
118}
119
Roman Stratiienkod2cc7382022-12-28 18:51:59 +0200120void VSyncWorker::ThreadFn(const std::shared_ptr<VSyncWorker> &vsw) {
Roman Stratiienkob3b5c1e2021-02-15 13:44:19 +0200121 int ret = 0;
Sean Paul4057be32015-05-13 06:23:09 -0700122
Roman Stratiienkod2cc7382022-12-28 18:51:59 +0200123 for (;;) {
124 {
125 std::unique_lock<std::mutex> lock(vsw->mutex_);
126 if (thread_exit_)
127 break;
128
129 if (!enabled_)
130 vsw->cv_.wait(lock);
131
132 if (!enabled_)
133 continue;
Sean Paul4057be32015-05-13 06:23:09 -0700134 }
Roman Stratiienkod2cc7382022-12-28 18:51:59 +0200135
136 ret = -EAGAIN;
137 int64_t timestamp = 0;
138 drmVBlank vblank{};
139
140 if (drm_fd_) {
141 vblank.request.type = (drmVBlankSeqType)(DRM_VBLANK_RELATIVE |
142 (high_crtc_ &
143 DRM_VBLANK_HIGH_CRTC_MASK));
144 vblank.request.sequence = 1;
145
Roman Stratiienko76892782023-01-16 17:15:53 +0200146 ret = drmWaitVBlank(*drm_fd_, &vblank);
Roman Stratiienkod2cc7382022-12-28 18:51:59 +0200147 if (ret == -EINTR)
148 continue;
149 }
150
151 if (ret != 0) {
152 ret = SyntheticWaitVBlank(&timestamp);
153 if (ret != 0)
154 continue;
155 } else {
156 constexpr int kUsToNsMul = 1000;
157 timestamp = (int64_t)vblank.reply.tval_sec * kOneSecondNs +
158 (int64_t)vblank.reply.tval_usec * kUsToNsMul;
159 }
160
161 decltype(callbacks_.out_event) callback;
162
163 {
164 const std::lock_guard<std::mutex> lock(mutex_);
165 if (!enabled_)
166 continue;
167 callback = callbacks_.out_event;
168 }
169
170 if (callback)
171 callback(timestamp);
172
173 last_timestamp_ = timestamp;
Sean Paul4057be32015-05-13 06:23:09 -0700174 }
175
Roman Stratiienkod2cc7382022-12-28 18:51:59 +0200176 ALOGI("VSyncWorker thread exit");
Sean Paul4057be32015-05-13 06:23:09 -0700177}
Sean Paulf72cccd2018-08-27 13:59:08 -0400178} // namespace android