blob: 7454b51abe899f7fc10dfda1a369924312f188a3 [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#ifndef ANDROID_EVENT_WORKER_H_
18#define ANDROID_EVENT_WORKER_H_
19
Sean Paul4057be32015-05-13 06:23:09 -070020#include <hardware/hardware.h>
21#include <hardware/hwcomposer.h>
Roman Stratiienko23701092020-09-26 02:08:41 +030022#include <hardware/hwcomposer2.h>
Roman Stratiienkoaa3cd542020-08-29 11:26:16 +030023#include <stdint.h>
24
25#include <map>
26
Roman Stratiienko13cc3662020-08-29 21:35:39 +030027#include "DrmDevice.h"
28#include "utils/Worker.h"
Sean Paul4057be32015-05-13 06:23:09 -070029
30namespace android {
31
Sean Paula5df1de2016-02-10 10:00:08 -080032class VsyncCallback {
33 public:
34 virtual ~VsyncCallback() {
35 }
36 virtual void Callback(int display, int64_t timestamp) = 0;
37};
38
Sean Paul4057be32015-05-13 06:23:09 -070039class VSyncWorker : public Worker {
40 public:
41 VSyncWorker();
Haixia Shi479412c2015-10-27 10:40:48 -070042 ~VSyncWorker() override;
Sean Paul4057be32015-05-13 06:23:09 -070043
Alexandru Gheorghe0f5abd72018-05-01 14:37:10 +010044 int Init(DrmDevice *drm, int display);
Adrian Salidofa37f672017-02-16 10:29:46 -080045 void RegisterCallback(std::shared_ptr<VsyncCallback> callback);
Roman Stratiienko23701092020-09-26 02:08:41 +030046 void RegisterClientCallback(hwc2_callback_data_t data,
47 hwc2_function_pointer_t hook);
Sean Paul4057be32015-05-13 06:23:09 -070048
Adrian Salidofa37f672017-02-16 10:29:46 -080049 void VSyncControl(bool enabled);
Sean Paul4057be32015-05-13 06:23:09 -070050
51 protected:
Haixia Shi479412c2015-10-27 10:40:48 -070052 void Routine() override;
Sean Paul4057be32015-05-13 06:23:09 -070053
54 private:
55 int64_t GetPhasedVSync(int64_t frame_ns, int64_t current);
56 int SyntheticWaitVBlank(int64_t *timestamp);
57
Alexandru Gheorghe0f5abd72018-05-01 14:37:10 +010058 DrmDevice *drm_;
Sean Paula5df1de2016-02-10 10:00:08 -080059
60 // shared_ptr since we need to use this outside of the thread lock (to
61 // actually call the hook) and we don't want the memory freed until we're
62 // done
63 std::shared_ptr<VsyncCallback> callback_ = NULL;
Sean Paul4057be32015-05-13 06:23:09 -070064
65 int display_;
Roman Kovalivskyi521a4c82020-01-03 20:26:45 +020066 std::atomic_bool enabled_;
Sean Paul4057be32015-05-13 06:23:09 -070067 int64_t last_timestamp_;
Roman Stratiienko23701092020-09-26 02:08:41 +030068
69 hwc2_callback_data_t vsync_callback_data_ = NULL;
70 HWC2_PFN_VSYNC vsync_callback_hook_ = NULL;
Sean Paul4057be32015-05-13 06:23:09 -070071};
Sean Paulf72cccd2018-08-27 13:59:08 -040072} // namespace android
Sean Paul4057be32015-05-13 06:23:09 -070073
74#endif