blob: 76f2854520fe0d6ac56dabca19c8c94c4b570a90 [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:
Roman Stratiienkoe2f2c922021-02-13 10:57:47 +020034 virtual ~VsyncCallback() = default;
Sean Paula5df1de2016-02-10 10:00:08 -080035 virtual void Callback(int display, int64_t timestamp) = 0;
36};
37
Sean Paul4057be32015-05-13 06:23:09 -070038class VSyncWorker : public Worker {
39 public:
40 VSyncWorker();
Roman Stratiienkoe2f2c922021-02-13 10:57:47 +020041 ~VSyncWorker() override = default;
Sean Paul4057be32015-05-13 06:23:09 -070042
Alexandru Gheorghe0f5abd72018-05-01 14:37:10 +010043 int Init(DrmDevice *drm, int display);
Adrian Salidofa37f672017-02-16 10:29:46 -080044 void RegisterCallback(std::shared_ptr<VsyncCallback> callback);
Roman Stratiienko23701092020-09-26 02:08:41 +030045 void RegisterClientCallback(hwc2_callback_data_t data,
46 hwc2_function_pointer_t hook);
Sean Paul4057be32015-05-13 06:23:09 -070047
Adrian Salidofa37f672017-02-16 10:29:46 -080048 void VSyncControl(bool enabled);
Sean Paul4057be32015-05-13 06:23:09 -070049
50 protected:
Haixia Shi479412c2015-10-27 10:40:48 -070051 void Routine() override;
Sean Paul4057be32015-05-13 06:23:09 -070052
53 private:
Roman Stratiienkoe2f2c922021-02-13 10:57:47 +020054 int64_t GetPhasedVSync(int64_t frame_ns, int64_t current) const;
Sean Paul4057be32015-05-13 06:23:09 -070055 int SyntheticWaitVBlank(int64_t *timestamp);
56
Alexandru Gheorghe0f5abd72018-05-01 14:37:10 +010057 DrmDevice *drm_;
Sean Paula5df1de2016-02-10 10:00:08 -080058
59 // shared_ptr since we need to use this outside of the thread lock (to
60 // actually call the hook) and we don't want the memory freed until we're
61 // done
62 std::shared_ptr<VsyncCallback> callback_ = NULL;
Sean Paul4057be32015-05-13 06:23:09 -070063
64 int display_;
Roman Kovalivskyi521a4c82020-01-03 20:26:45 +020065 std::atomic_bool enabled_;
Sean Paul4057be32015-05-13 06:23:09 -070066 int64_t last_timestamp_;
Roman Stratiienko23701092020-09-26 02:08:41 +030067
68 hwc2_callback_data_t vsync_callback_data_ = NULL;
69 HWC2_PFN_VSYNC vsync_callback_hook_ = NULL;
Sean Paul4057be32015-05-13 06:23:09 -070070};
Sean Paulf72cccd2018-08-27 13:59:08 -040071} // namespace android
Sean Paul4057be32015-05-13 06:23:09 -070072
73#endif