blob: 434e685b37c3bcabedfd879be85de539a0781398 [file] [log] [blame]
John Stultz16100f62017-05-03 11:12:18 -07001/*
2 * Copyright (C) 2014 ARM Limited. All rights reserved.
3 *
4 * Copyright (C) 2008 The Android Open Source Project
5 *
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * You may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 */
18
19#include "gralloc_priv.h"
20#include "gralloc_vsync.h"
21#include "gralloc_vsync_report.h"
22#include <sys/ioctl.h>
23#include <errno.h>
24
John Stultz18814f62018-02-22 16:02:49 -080025#define FBIO_WAITFORVSYNC _IOW('F', 0x20, __u32)
26#define S3CFB_SET_VSYNC_INT _IOW('F', 206, unsigned int)
John Stultz16100f62017-05-03 11:12:18 -070027
28int gralloc_vsync_enable(framebuffer_device_t *dev)
29{
John Stultz18814f62018-02-22 16:02:49 -080030 private_module_t *m = reinterpret_cast<private_module_t *>(dev->common.module);
John Stultz16100f62017-05-03 11:12:18 -070031 int interrupt = 1;
John Stultz18814f62018-02-22 16:02:49 -080032
33 if (ioctl(m->framebuffer->fd, S3CFB_SET_VSYNC_INT, &interrupt) < 0)
34 {
35 return -errno;
36 }
37
John Stultz16100f62017-05-03 11:12:18 -070038 return 0;
39}
40
41int gralloc_vsync_disable(framebuffer_device_t *dev)
42{
John Stultz18814f62018-02-22 16:02:49 -080043 private_module_t *m = reinterpret_cast<private_module_t *>(dev->common.module);
John Stultz16100f62017-05-03 11:12:18 -070044 int interrupt = 0;
John Stultz18814f62018-02-22 16:02:49 -080045
46 if (ioctl(m->framebuffer->fd, S3CFB_SET_VSYNC_INT, &interrupt) < 0)
47 {
48 return -errno;
49 }
50
John Stultz16100f62017-05-03 11:12:18 -070051 return 0;
52}
53
54int gralloc_wait_for_vsync(framebuffer_device_t *dev)
55{
John Stultz18814f62018-02-22 16:02:49 -080056 private_module_t *m = reinterpret_cast<private_module_t *>(dev->common.module);
57
58 if (m->swapInterval)
John Stultz16100f62017-05-03 11:12:18 -070059 {
60 int crtc = 0;
61 gralloc_mali_vsync_report(MALI_VSYNC_EVENT_BEGIN_WAIT);
John Stultz18814f62018-02-22 16:02:49 -080062
63 if (ioctl(m->framebuffer->fd, FBIO_WAITFORVSYNC, &crtc) < 0)
John Stultz16100f62017-05-03 11:12:18 -070064 {
65 gralloc_mali_vsync_report(MALI_VSYNC_EVENT_END_WAIT);
66 return -errno;
67 }
John Stultz18814f62018-02-22 16:02:49 -080068
John Stultz16100f62017-05-03 11:12:18 -070069 gralloc_mali_vsync_report(MALI_VSYNC_EVENT_END_WAIT);
70 }
John Stultz18814f62018-02-22 16:02:49 -080071
John Stultz16100f62017-05-03 11:12:18 -070072 return 0;
73}