blob: d4afd7889fdb384892242e349f585f0b3515bce7 [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
37static void *vsync_loop(void *param)
38{
39 const char* vsync_timestamp_fb0 = "/sys/class/graphics/fb0/vsync_event";
40 const char* vsync_timestamp_fb1 = "/sys/class/graphics/fb1/vsync_event";
Naseer Ahmedc7faa702012-10-04 15:10:30 -040041 int dpy = HWC_DISPLAY_PRIMARY;
Naseer Ahmedff4f0252012-10-01 13:03:01 -040042
43 hwc_context_t * ctx = reinterpret_cast<hwc_context_t *>(param);
44
45 char thread_name[64] = "hwcVsyncThread";
46 prctl(PR_SET_NAME, (unsigned long) &thread_name, 0, 0, 0);
47 setpriority(PRIO_PROCESS, 0, HAL_PRIORITY_URGENT_DISPLAY +
48 android::PRIORITY_MORE_FAVORABLE);
49
Naseer Ahmed40147772012-10-04 19:19:55 -040050 const int MAX_DATA = 64;
51 const int MAX_RETRY_COUNT = 100;
52 static char vdata[MAX_DATA];
Naseer Ahmedff4f0252012-10-01 13:03:01 -040053
54 uint64_t cur_timestamp=0;
Iliyan Malcheveac89652012-10-04 10:38:28 -070055 ssize_t len = -1;
56 int fd_timestamp = -1;
Naseer Ahmedc7faa702012-10-04 15:10:30 -040057 int ret = 0;
Naseer Ahmedff4f0252012-10-01 13:03:01 -040058 bool fb1_vsync = false;
Naseer Ahmedc7faa702012-10-04 15:10:30 -040059 bool enabled = false;
Naseer Ahmedff4f0252012-10-01 13:03:01 -040060
61 /* Currently read vsync timestamp from drivers
62 e.g. VSYNC=41800875994
63 */
64
65 do {
66 pthread_mutex_lock(&ctx->vstate.lock);
Naseer Ahmedc7faa702012-10-04 15:10:30 -040067 while (ctx->vstate.enable == false) {
68 if(enabled) {
69 int e = 0;
70 if(ioctl(ctx->dpyAttr[dpy].fd, MSMFB_OVERLAY_VSYNC_CTRL,
71 &e) < 0) {
72 ALOGE("%s: vsync control failed. Dpy=%d, enabled=%d : %s",
73 __FUNCTION__, dpy, enabled, strerror(errno));
74 ret = -errno;
75 }
76 enabled = false;
77 }
Iliyan Malcheveac89652012-10-04 10:38:28 -070078 pthread_cond_wait(&ctx->vstate.cond, &ctx->vstate.lock);
Naseer Ahmedc7faa702012-10-04 15:10:30 -040079 }
Naseer Ahmedff4f0252012-10-01 13:03:01 -040080 pthread_mutex_unlock(&ctx->vstate.lock);
81
Naseer Ahmedc7faa702012-10-04 15:10:30 -040082 if (!enabled) {
83 int e = 1;
84 if(ioctl(ctx->dpyAttr[dpy].fd, MSMFB_OVERLAY_VSYNC_CTRL,
85 &e) < 0) {
86 ALOGE("%s: vsync control failed. Dpy=%d, enabled=%d : %s",
87 __FUNCTION__, dpy, enabled, strerror(errno));
88 ret = -errno;
89 }
90 enabled = true;
91 }
92
Naseer Ahmed40147772012-10-04 19:19:55 -040093 if(fd_timestamp < 0) {
94 fd_timestamp = open(vsync_timestamp_fb0, O_RDONLY);
95 if (fd_timestamp < 0) {
96 ALOGE ("FATAL:%s:not able to open file:%s, %s", __FUNCTION__,
97 (fb1_vsync) ? vsync_timestamp_fb1 : vsync_timestamp_fb0,
98 strerror(errno));
99 return NULL;
100 }
101 }
102
Naseer Ahmedff4f0252012-10-01 13:03:01 -0400103 // Open success - read now
Naseer Ahmed40147772012-10-04 19:19:55 -0400104 lseek(fd_timestamp, 0, SEEK_SET);
105 for(int i = 0; i < MAX_RETRY_COUNT; i++) {
106 len = read(fd_timestamp, vdata, MAX_DATA);
107 if(len < 0 && errno == EAGAIN) {
108 ALOGW("%s: vsync read: EAGAIN, retry (%d/%d).",
109 __FUNCTION__, i, MAX_RETRY_COUNT);
110 continue;
111 } else {
112 break;
113 }
114 }
115
Naseer Ahmedff4f0252012-10-01 13:03:01 -0400116 if (len < 0){
117 ALOGE ("FATAL:%s:not able to read file:%s, %s", __FUNCTION__,
118 vsync_timestamp_fb0, strerror(errno));
Iliyan Malcheveac89652012-10-04 10:38:28 -0700119 close (fd_timestamp);
Naseer Ahmedff4f0252012-10-01 13:03:01 -0400120 return NULL;
121 }
122
Iliyan Malcheveac89652012-10-04 10:38:28 -0700123 // extract timestamp
124 const char *str = vdata;
125 if (!strncmp(str, "VSYNC=", strlen("VSYNC="))) {
Naseer Ahmedff4f0252012-10-01 13:03:01 -0400126 cur_timestamp = strtoull(str + strlen("VSYNC="), NULL, 0);
Iliyan Malcheveac89652012-10-04 10:38:28 -0700127 } else {
Saurabh Shahae823e72012-10-05 00:08:11 -0400128 ALOGE ("FATAL: %s: vsync timestamp not in correct format: [%s]",
129 __FUNCTION__,
130 str);
Iliyan Malcheveac89652012-10-04 10:38:28 -0700131 }
132 // send timestamp to HAL
133 ALOGD_IF (VSYNC_DEBUG, "%s: timestamp %llu sent to HWC for %s",
Naseer Ahmedff4f0252012-10-01 13:03:01 -0400134 __FUNCTION__, cur_timestamp, "fb0");
Naseer Ahmedc7faa702012-10-04 15:10:30 -0400135 ctx->proc->vsync(ctx->proc, dpy, cur_timestamp);
Naseer Ahmedff4f0252012-10-01 13:03:01 -0400136
Naseer Ahmedff4f0252012-10-01 13:03:01 -0400137 } while (true);
Naseer Ahmed40147772012-10-04 19:19:55 -0400138 if(fd_timestamp >= 0)
139 close (fd_timestamp);
Iliyan Malcheveac89652012-10-04 10:38:28 -0700140
141 return NULL;
Naseer Ahmedff4f0252012-10-01 13:03:01 -0400142}
143
144void init_vsync_thread(hwc_context_t* ctx)
145{
146 pthread_t vsync_thread;
147 ALOGI("Initializing VSYNC Thread");
148 pthread_create(&vsync_thread, NULL, vsync_loop, (void*) ctx);
149}
150
151}; //namespace