Naseer Ahmed | ff4f025 | 2012-10-01 13:03:01 -0400 | [diff] [blame] | 1 | /* |
| 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 Ahmed | c7faa70 | 2012-10-04 15:10:30 -0400 | [diff] [blame] | 26 | #include <sys/ioctl.h> |
| 27 | #include <linux/msm_mdp.h> |
Naseer Ahmed | ff4f025 | 2012-10-01 13:03:01 -0400 | [diff] [blame] | 28 | #include <sys/resource.h> |
| 29 | #include <sys/prctl.h> |
| 30 | #include "hwc_utils.h" |
| 31 | #include "string.h" |
| 32 | #include "external.h" |
| 33 | |
| 34 | |
| 35 | namespace qhwc { |
| 36 | |
Iliyan Malchev | 0f9c397 | 2012-10-11 15:16:15 -0700 | [diff] [blame] | 37 | #define HWC_VSYNC_THREAD_NAME "hwcVsyncThread" |
| 38 | |
Naseer Ahmed | ff4f025 | 2012-10-01 13:03:01 -0400 | [diff] [blame] | 39 | static 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 Ahmed | c7faa70 | 2012-10-04 15:10:30 -0400 | [diff] [blame] | 43 | int dpy = HWC_DISPLAY_PRIMARY; |
Naseer Ahmed | ff4f025 | 2012-10-01 13:03:01 -0400 | [diff] [blame] | 44 | |
| 45 | hwc_context_t * ctx = reinterpret_cast<hwc_context_t *>(param); |
| 46 | |
Iliyan Malchev | 0f9c397 | 2012-10-11 15:16:15 -0700 | [diff] [blame] | 47 | char thread_name[64] = HWC_VSYNC_THREAD_NAME; |
Naseer Ahmed | ff4f025 | 2012-10-01 13:03:01 -0400 | [diff] [blame] | 48 | 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 Ahmed | 4014777 | 2012-10-04 19:19:55 -0400 | [diff] [blame] | 52 | const int MAX_DATA = 64; |
| 53 | const int MAX_RETRY_COUNT = 100; |
| 54 | static char vdata[MAX_DATA]; |
Naseer Ahmed | ff4f025 | 2012-10-01 13:03:01 -0400 | [diff] [blame] | 55 | |
| 56 | uint64_t cur_timestamp=0; |
Iliyan Malchev | eac8965 | 2012-10-04 10:38:28 -0700 | [diff] [blame] | 57 | ssize_t len = -1; |
| 58 | int fd_timestamp = -1; |
Naseer Ahmed | c7faa70 | 2012-10-04 15:10:30 -0400 | [diff] [blame] | 59 | int ret = 0; |
Naseer Ahmed | ff4f025 | 2012-10-01 13:03:01 -0400 | [diff] [blame] | 60 | bool fb1_vsync = false; |
Naseer Ahmed | c7faa70 | 2012-10-04 15:10:30 -0400 | [diff] [blame] | 61 | bool enabled = false; |
Naseer Ahmed | ff4f025 | 2012-10-01 13:03:01 -0400 | [diff] [blame] | 62 | |
| 63 | /* Currently read vsync timestamp from drivers |
| 64 | e.g. VSYNC=41800875994 |
| 65 | */ |
| 66 | |
| 67 | do { |
| 68 | pthread_mutex_lock(&ctx->vstate.lock); |
Naseer Ahmed | c7faa70 | 2012-10-04 15:10:30 -0400 | [diff] [blame] | 69 | while (ctx->vstate.enable == false) { |
| 70 | if(enabled) { |
| 71 | int e = 0; |
| 72 | if(ioctl(ctx->dpyAttr[dpy].fd, MSMFB_OVERLAY_VSYNC_CTRL, |
| 73 | &e) < 0) { |
| 74 | ALOGE("%s: vsync control failed. Dpy=%d, enabled=%d : %s", |
| 75 | __FUNCTION__, dpy, enabled, strerror(errno)); |
| 76 | ret = -errno; |
| 77 | } |
| 78 | enabled = false; |
| 79 | } |
Iliyan Malchev | eac8965 | 2012-10-04 10:38:28 -0700 | [diff] [blame] | 80 | pthread_cond_wait(&ctx->vstate.cond, &ctx->vstate.lock); |
Naseer Ahmed | c7faa70 | 2012-10-04 15:10:30 -0400 | [diff] [blame] | 81 | } |
Naseer Ahmed | ff4f025 | 2012-10-01 13:03:01 -0400 | [diff] [blame] | 82 | pthread_mutex_unlock(&ctx->vstate.lock); |
| 83 | |
Naseer Ahmed | c7faa70 | 2012-10-04 15:10:30 -0400 | [diff] [blame] | 84 | if (!enabled) { |
| 85 | int e = 1; |
| 86 | if(ioctl(ctx->dpyAttr[dpy].fd, MSMFB_OVERLAY_VSYNC_CTRL, |
| 87 | &e) < 0) { |
| 88 | ALOGE("%s: vsync control failed. Dpy=%d, enabled=%d : %s", |
| 89 | __FUNCTION__, dpy, enabled, strerror(errno)); |
| 90 | ret = -errno; |
| 91 | } |
| 92 | enabled = true; |
| 93 | } |
| 94 | |
Naseer Ahmed | 4014777 | 2012-10-04 19:19:55 -0400 | [diff] [blame] | 95 | if(fd_timestamp < 0) { |
| 96 | fd_timestamp = open(vsync_timestamp_fb0, O_RDONLY); |
| 97 | if (fd_timestamp < 0) { |
| 98 | ALOGE ("FATAL:%s:not able to open file:%s, %s", __FUNCTION__, |
| 99 | (fb1_vsync) ? vsync_timestamp_fb1 : vsync_timestamp_fb0, |
| 100 | strerror(errno)); |
| 101 | return NULL; |
| 102 | } |
| 103 | } |
| 104 | |
Naseer Ahmed | 4014777 | 2012-10-04 19:19:55 -0400 | [diff] [blame] | 105 | for(int i = 0; i < MAX_RETRY_COUNT; i++) { |
Iliyan Malchev | 0f9c397 | 2012-10-11 15:16:15 -0700 | [diff] [blame] | 106 | len = pread(fd_timestamp, vdata, MAX_DATA, 0); |
| 107 | if(len < 0 && (errno == EAGAIN || errno == EINTR)) { |
Naseer Ahmed | 4014777 | 2012-10-04 19:19:55 -0400 | [diff] [blame] | 108 | ALOGW("%s: vsync read: EAGAIN, retry (%d/%d).", |
| 109 | __FUNCTION__, i, MAX_RETRY_COUNT); |
| 110 | continue; |
| 111 | } else { |
| 112 | break; |
| 113 | } |
| 114 | } |
| 115 | |
Iliyan Malchev | 0f9c397 | 2012-10-11 15:16:15 -0700 | [diff] [blame] | 116 | if (len < 0) { |
Naseer Ahmed | ff4f025 | 2012-10-01 13:03:01 -0400 | [diff] [blame] | 117 | ALOGE ("FATAL:%s:not able to read file:%s, %s", __FUNCTION__, |
| 118 | vsync_timestamp_fb0, strerror(errno)); |
Iliyan Malchev | eac8965 | 2012-10-04 10:38:28 -0700 | [diff] [blame] | 119 | close (fd_timestamp); |
Naseer Ahmed | ff4f025 | 2012-10-01 13:03:01 -0400 | [diff] [blame] | 120 | return NULL; |
| 121 | } |
| 122 | |
Iliyan Malchev | eac8965 | 2012-10-04 10:38:28 -0700 | [diff] [blame] | 123 | // extract timestamp |
| 124 | const char *str = vdata; |
| 125 | if (!strncmp(str, "VSYNC=", strlen("VSYNC="))) { |
Naseer Ahmed | ff4f025 | 2012-10-01 13:03:01 -0400 | [diff] [blame] | 126 | cur_timestamp = strtoull(str + strlen("VSYNC="), NULL, 0); |
Iliyan Malchev | eac8965 | 2012-10-04 10:38:28 -0700 | [diff] [blame] | 127 | } else { |
Saurabh Shah | ae823e7 | 2012-10-05 00:08:11 -0400 | [diff] [blame] | 128 | ALOGE ("FATAL: %s: vsync timestamp not in correct format: [%s]", |
| 129 | __FUNCTION__, |
| 130 | str); |
Iliyan Malchev | eac8965 | 2012-10-04 10:38:28 -0700 | [diff] [blame] | 131 | } |
| 132 | // send timestamp to HAL |
| 133 | ALOGD_IF (VSYNC_DEBUG, "%s: timestamp %llu sent to HWC for %s", |
Naseer Ahmed | ff4f025 | 2012-10-01 13:03:01 -0400 | [diff] [blame] | 134 | __FUNCTION__, cur_timestamp, "fb0"); |
Naseer Ahmed | c7faa70 | 2012-10-04 15:10:30 -0400 | [diff] [blame] | 135 | ctx->proc->vsync(ctx->proc, dpy, cur_timestamp); |
Naseer Ahmed | ff4f025 | 2012-10-01 13:03:01 -0400 | [diff] [blame] | 136 | |
Naseer Ahmed | ff4f025 | 2012-10-01 13:03:01 -0400 | [diff] [blame] | 137 | } while (true); |
Naseer Ahmed | 4014777 | 2012-10-04 19:19:55 -0400 | [diff] [blame] | 138 | if(fd_timestamp >= 0) |
| 139 | close (fd_timestamp); |
Iliyan Malchev | eac8965 | 2012-10-04 10:38:28 -0700 | [diff] [blame] | 140 | |
| 141 | return NULL; |
Naseer Ahmed | ff4f025 | 2012-10-01 13:03:01 -0400 | [diff] [blame] | 142 | } |
| 143 | |
| 144 | void init_vsync_thread(hwc_context_t* ctx) |
| 145 | { |
Iliyan Malchev | 0f9c397 | 2012-10-11 15:16:15 -0700 | [diff] [blame] | 146 | int ret; |
Naseer Ahmed | ff4f025 | 2012-10-01 13:03:01 -0400 | [diff] [blame] | 147 | pthread_t vsync_thread; |
| 148 | ALOGI("Initializing VSYNC Thread"); |
Iliyan Malchev | 0f9c397 | 2012-10-11 15:16:15 -0700 | [diff] [blame] | 149 | ret = pthread_create(&vsync_thread, NULL, vsync_loop, (void*) ctx); |
| 150 | if (ret) { |
| 151 | ALOGE("%s: failed to create %s: %s", __FUNCTION__, |
| 152 | HWC_VSYNC_THREAD_NAME, strerror(ret)); |
| 153 | } |
Naseer Ahmed | ff4f025 | 2012-10-01 13:03:01 -0400 | [diff] [blame] | 154 | } |
| 155 | |
| 156 | }; //namespace |