blob: d461a8b5be8a369191c64bd62e256777ad5dc2d2 [file] [log] [blame]
Naseer Ahmedff4f0252012-10-01 13:03:01 -04001/*
2 * Copyright (C) 2010 The Android Open Source Project
3 * Copyright (C) 2012, Code Aurora Forum. All rights reserved.
4 *
5 * Not a Contribution, Apache license notifications and license are
6 * retained for attribution purposes only.
7
8 * Licensed under the Apache License, Version 2.0 (the "License");
9 * you may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * http://www.apache.org/licenses/LICENSE-2.0
13 *
14 * Unless required by applicable law or agreed to in writing, software
15 * distributed under the License is distributed on an "AS IS" BASIS,
16 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 * See the License for the specific language governing permissions and
18 * limitations under the License.
19 */
20
21// WARNING : Excessive logging, if VSYNC_DEBUG enabled
22#define VSYNC_DEBUG 0
23
24#include <utils/Log.h>
25#include <fcntl.h>
Naseer Ahmedc7faa702012-10-04 15:10:30 -040026#include <sys/ioctl.h>
27#include <linux/msm_mdp.h>
Naseer Ahmedff4f0252012-10-01 13:03:01 -040028#include <sys/resource.h>
29#include <sys/prctl.h>
30#include "hwc_utils.h"
31#include "string.h"
32#include "external.h"
33
34
35namespace qhwc {
36
Iliyan Malchev0f9c3972012-10-11 15:16:15 -070037#define HWC_VSYNC_THREAD_NAME "hwcVsyncThread"
38
Naseer Ahmedff4f0252012-10-01 13:03:01 -040039static void *vsync_loop(void *param)
40{
41 const char* vsync_timestamp_fb0 = "/sys/class/graphics/fb0/vsync_event";
42 const char* vsync_timestamp_fb1 = "/sys/class/graphics/fb1/vsync_event";
Naseer Ahmedc7faa702012-10-04 15:10:30 -040043 int dpy = HWC_DISPLAY_PRIMARY;
Naseer Ahmedff4f0252012-10-01 13:03:01 -040044
45 hwc_context_t * ctx = reinterpret_cast<hwc_context_t *>(param);
46
Iliyan Malchev0f9c3972012-10-11 15:16:15 -070047 char thread_name[64] = HWC_VSYNC_THREAD_NAME;
Naseer Ahmedff4f0252012-10-01 13:03:01 -040048 prctl(PR_SET_NAME, (unsigned long) &thread_name, 0, 0, 0);
49 setpriority(PRIO_PROCESS, 0, HAL_PRIORITY_URGENT_DISPLAY +
50 android::PRIORITY_MORE_FAVORABLE);
51
Naseer Ahmed40147772012-10-04 19:19:55 -040052 const int MAX_DATA = 64;
53 const int MAX_RETRY_COUNT = 100;
54 static char vdata[MAX_DATA];
Naseer Ahmedff4f0252012-10-01 13:03:01 -040055
56 uint64_t cur_timestamp=0;
Iliyan Malcheveac89652012-10-04 10:38:28 -070057 ssize_t len = -1;
58 int fd_timestamp = -1;
Naseer Ahmedc7faa702012-10-04 15:10:30 -040059 int ret = 0;
Naseer Ahmedff4f0252012-10-01 13:03:01 -040060 bool fb1_vsync = false;
Naseer Ahmedc7faa702012-10-04 15:10:30 -040061 bool enabled = false;
Naseer Ahmedff4f0252012-10-01 13:03:01 -040062
63 /* Currently read vsync timestamp from drivers
64 e.g. VSYNC=41800875994
65 */
Naseer Ahmed08212c02012-10-17 13:51:56 -040066 fd_timestamp = open(vsync_timestamp_fb0, O_RDONLY);
67 if (fd_timestamp < 0) {
68 ALOGE ("FATAL:%s:not able to open file:%s, %s", __FUNCTION__,
69 (fb1_vsync) ? vsync_timestamp_fb1 : vsync_timestamp_fb0,
70 strerror(errno));
71 return NULL;
72 }
Naseer Ahmedff4f0252012-10-01 13:03:01 -040073
74 do {
75 pthread_mutex_lock(&ctx->vstate.lock);
Naseer Ahmedc7faa702012-10-04 15:10:30 -040076 while (ctx->vstate.enable == false) {
77 if(enabled) {
78 int e = 0;
79 if(ioctl(ctx->dpyAttr[dpy].fd, MSMFB_OVERLAY_VSYNC_CTRL,
80 &e) < 0) {
81 ALOGE("%s: vsync control failed. Dpy=%d, enabled=%d : %s",
82 __FUNCTION__, dpy, enabled, strerror(errno));
83 ret = -errno;
84 }
85 enabled = false;
86 }
Iliyan Malcheveac89652012-10-04 10:38:28 -070087 pthread_cond_wait(&ctx->vstate.cond, &ctx->vstate.lock);
Naseer Ahmedc7faa702012-10-04 15:10:30 -040088 }
Naseer Ahmedff4f0252012-10-01 13:03:01 -040089 pthread_mutex_unlock(&ctx->vstate.lock);
90
Naseer Ahmedc7faa702012-10-04 15:10:30 -040091 if (!enabled) {
92 int e = 1;
93 if(ioctl(ctx->dpyAttr[dpy].fd, MSMFB_OVERLAY_VSYNC_CTRL,
94 &e) < 0) {
95 ALOGE("%s: vsync control failed. Dpy=%d, enabled=%d : %s",
96 __FUNCTION__, dpy, enabled, strerror(errno));
97 ret = -errno;
98 }
99 enabled = true;
100 }
101
Naseer Ahmed40147772012-10-04 19:19:55 -0400102 for(int i = 0; i < MAX_RETRY_COUNT; i++) {
Iliyan Malchev0f9c3972012-10-11 15:16:15 -0700103 len = pread(fd_timestamp, vdata, MAX_DATA, 0);
104 if(len < 0 && (errno == EAGAIN || errno == EINTR)) {
Naseer Ahmed40147772012-10-04 19:19:55 -0400105 ALOGW("%s: vsync read: EAGAIN, retry (%d/%d).",
106 __FUNCTION__, i, MAX_RETRY_COUNT);
107 continue;
108 } else {
109 break;
110 }
111 }
112
Iliyan Malchev0f9c3972012-10-11 15:16:15 -0700113 if (len < 0) {
Naseer Ahmedff4f0252012-10-01 13:03:01 -0400114 ALOGE ("FATAL:%s:not able to read file:%s, %s", __FUNCTION__,
115 vsync_timestamp_fb0, strerror(errno));
Iliyan Malcheveac89652012-10-04 10:38:28 -0700116 close (fd_timestamp);
Naseer Ahmedff4f0252012-10-01 13:03:01 -0400117 return NULL;
118 }
119
Iliyan Malcheveac89652012-10-04 10:38:28 -0700120 // extract timestamp
121 const char *str = vdata;
122 if (!strncmp(str, "VSYNC=", strlen("VSYNC="))) {
Naseer Ahmedff4f0252012-10-01 13:03:01 -0400123 cur_timestamp = strtoull(str + strlen("VSYNC="), NULL, 0);
Iliyan Malcheveac89652012-10-04 10:38:28 -0700124 } else {
Saurabh Shahae823e72012-10-05 00:08:11 -0400125 ALOGE ("FATAL: %s: vsync timestamp not in correct format: [%s]",
126 __FUNCTION__,
127 str);
Iliyan Malcheveac89652012-10-04 10:38:28 -0700128 }
129 // send timestamp to HAL
130 ALOGD_IF (VSYNC_DEBUG, "%s: timestamp %llu sent to HWC for %s",
Naseer Ahmedff4f0252012-10-01 13:03:01 -0400131 __FUNCTION__, cur_timestamp, "fb0");
Naseer Ahmedc7faa702012-10-04 15:10:30 -0400132 ctx->proc->vsync(ctx->proc, dpy, cur_timestamp);
Naseer Ahmedff4f0252012-10-01 13:03:01 -0400133
Naseer Ahmedff4f0252012-10-01 13:03:01 -0400134 } while (true);
Naseer Ahmed40147772012-10-04 19:19:55 -0400135 if(fd_timestamp >= 0)
136 close (fd_timestamp);
Iliyan Malcheveac89652012-10-04 10:38:28 -0700137
138 return NULL;
Naseer Ahmedff4f0252012-10-01 13:03:01 -0400139}
140
141void init_vsync_thread(hwc_context_t* ctx)
142{
Iliyan Malchev0f9c3972012-10-11 15:16:15 -0700143 int ret;
Naseer Ahmedff4f0252012-10-01 13:03:01 -0400144 pthread_t vsync_thread;
145 ALOGI("Initializing VSYNC Thread");
Iliyan Malchev0f9c3972012-10-11 15:16:15 -0700146 ret = pthread_create(&vsync_thread, NULL, vsync_loop, (void*) ctx);
147 if (ret) {
148 ALOGE("%s: failed to create %s: %s", __FUNCTION__,
149 HWC_VSYNC_THREAD_NAME, strerror(ret));
150 }
Naseer Ahmedff4f0252012-10-01 13:03:01 -0400151}
152
153}; //namespace