blob: 464ee86c8702bec7c669fbb5680874b794339df9 [file] [log] [blame]
Jamie Gennisf25e1832012-06-13 16:31:43 -07001/*
2 * Copyright (C) 2012 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#define LOG_TAG "Fence"
18#define ATRACE_TAG ATRACE_TAG_GRAPHICS
19//#define LOG_NDEBUG 0
20
Jamie Gennis82dbc742012-11-08 19:23:28 -080021 // This is needed for stdint.h to define INT64_MAX in C++
22 #define __STDC_LIMIT_MACROS
23
Jamie Gennisf25e1832012-06-13 16:31:43 -070024#include <sync/sync.h>
25#include <ui/Fence.h>
26#include <unistd.h>
27#include <utils/Log.h>
28#include <utils/Trace.h>
29
30namespace android {
31
Jamie Gennis1df8c342012-12-20 14:05:45 -080032const sp<Fence> Fence::NO_FENCE = sp<Fence>(new Fence);
Jesse Hallef194142012-06-14 14:45:17 -070033
Jamie Gennisf25e1832012-06-13 16:31:43 -070034Fence::Fence() :
35 mFenceFd(-1) {
36}
37
38Fence::Fence(int fenceFd) :
39 mFenceFd(fenceFd) {
40}
41
42Fence::~Fence() {
43 if (mFenceFd != -1) {
44 close(mFenceFd);
45 }
46}
47
Mathias Agopianb5c9dcd2012-10-09 14:38:19 -070048status_t Fence::wait(unsigned int timeout) {
Jamie Gennisf25e1832012-06-13 16:31:43 -070049 ATRACE_CALL();
50 if (mFenceFd == -1) {
51 return NO_ERROR;
52 }
Mathias Agopianb5c9dcd2012-10-09 14:38:19 -070053 int err = sync_wait(mFenceFd, timeout);
54 return err < 0 ? -errno : status_t(NO_ERROR);
Jamie Gennisf25e1832012-06-13 16:31:43 -070055}
56
Mathias Agopianea74d3b2013-05-16 18:03:22 -070057status_t Fence::waitForever(const char* logname) {
Jesse Hallba607d52012-10-01 14:05:20 -070058 ATRACE_CALL();
59 if (mFenceFd == -1) {
60 return NO_ERROR;
61 }
Mathias Agopianea74d3b2013-05-16 18:03:22 -070062 unsigned int warningTimeout = 3000;
Jesse Hallba607d52012-10-01 14:05:20 -070063 int err = sync_wait(mFenceFd, warningTimeout);
Mathias Agopianb5c9dcd2012-10-09 14:38:19 -070064 if (err < 0 && errno == ETIME) {
Jesse Hallba607d52012-10-01 14:05:20 -070065 ALOGE("%s: fence %d didn't signal in %u ms", logname, mFenceFd,
66 warningTimeout);
67 err = sync_wait(mFenceFd, TIMEOUT_NEVER);
68 }
Mathias Agopianb5c9dcd2012-10-09 14:38:19 -070069 return err < 0 ? -errno : status_t(NO_ERROR);
Jesse Hallba607d52012-10-01 14:05:20 -070070}
71
Jamie Gennisf25e1832012-06-13 16:31:43 -070072sp<Fence> Fence::merge(const String8& name, const sp<Fence>& f1,
73 const sp<Fence>& f2) {
74 ATRACE_CALL();
Jamie Gennis1df8c342012-12-20 14:05:45 -080075 int result;
76 // Merge the two fences. In the case where one of the fences is not a
77 // valid fence (e.g. NO_FENCE) we merge the one valid fence with itself so
78 // that a new fence with the given name is created.
79 if (f1->isValid() && f2->isValid()) {
80 result = sync_merge(name.string(), f1->mFenceFd, f2->mFenceFd);
81 } else if (f1->isValid()) {
82 result = sync_merge(name.string(), f1->mFenceFd, f1->mFenceFd);
83 } else if (f2->isValid()) {
84 result = sync_merge(name.string(), f2->mFenceFd, f2->mFenceFd);
85 } else {
86 return NO_FENCE;
87 }
Jamie Gennisf25e1832012-06-13 16:31:43 -070088 if (result == -1) {
Mathias Agopiand83d67b2012-07-30 15:10:35 -070089 status_t err = -errno;
90 ALOGE("merge: sync_merge(\"%s\", %d, %d) returned an error: %s (%d)",
91 name.string(), f1->mFenceFd, f2->mFenceFd,
92 strerror(-err), err);
Jesse Hallef194142012-06-14 14:45:17 -070093 return NO_FENCE;
Jamie Gennisf25e1832012-06-13 16:31:43 -070094 }
95 return sp<Fence>(new Fence(result));
96}
97
Jesse Hallf9783af2012-06-25 13:54:23 -070098int Fence::dup() const {
99 return ::dup(mFenceFd);
100}
101
Jamie Gennis82dbc742012-11-08 19:23:28 -0800102nsecs_t Fence::getSignalTime() const {
103 if (mFenceFd == -1) {
104 return -1;
105 }
106
107 struct sync_fence_info_data* finfo = sync_fence_info(mFenceFd);
108 if (finfo == NULL) {
109 ALOGE("sync_fence_info returned NULL for fd %d", mFenceFd);
110 return -1;
111 }
112 if (finfo->status != 1) {
Jesse Hall7c36cd22013-01-14 15:59:32 -0800113 sync_fence_info_free(finfo);
Jamie Gennis82dbc742012-11-08 19:23:28 -0800114 return INT64_MAX;
115 }
116
117 struct sync_pt_info* pinfo = NULL;
118 uint64_t timestamp = 0;
119 while ((pinfo = sync_pt_info(finfo, pinfo)) != NULL) {
120 if (pinfo->timestamp_ns > timestamp) {
121 timestamp = pinfo->timestamp_ns;
122 }
123 }
124 sync_fence_info_free(finfo);
125
126 return nsecs_t(timestamp);
127}
128
Jamie Gennisf25e1832012-06-13 16:31:43 -0700129size_t Fence::getFlattenedSize() const {
130 return 0;
131}
132
133size_t Fence::getFdCount() const {
Jamie Gennis1df8c342012-12-20 14:05:45 -0800134 return isValid() ? 1 : 0;
Jamie Gennisf25e1832012-06-13 16:31:43 -0700135}
136
137status_t Fence::flatten(void* buffer, size_t size, int fds[],
138 size_t count) const {
Jamie Gennis1df8c342012-12-20 14:05:45 -0800139 if (size != getFlattenedSize() || count != getFdCount()) {
Jamie Gennisf25e1832012-06-13 16:31:43 -0700140 return BAD_VALUE;
141 }
142
Jamie Gennis1df8c342012-12-20 14:05:45 -0800143 if (isValid()) {
144 fds[0] = mFenceFd;
145 }
Jamie Gennisf25e1832012-06-13 16:31:43 -0700146 return NO_ERROR;
147}
148
149status_t Fence::unflatten(void const* buffer, size_t size, int fds[],
150 size_t count) {
Jamie Gennis1df8c342012-12-20 14:05:45 -0800151 if (size != 0 || (count != 0 && count != 1)) {
Jamie Gennisf25e1832012-06-13 16:31:43 -0700152 return BAD_VALUE;
153 }
154 if (mFenceFd != -1) {
155 // Don't unflatten if we already have a valid fd.
156 return INVALID_OPERATION;
157 }
158
Jamie Gennis1df8c342012-12-20 14:05:45 -0800159 if (count == 1) {
160 mFenceFd = fds[0];
161 }
162
Jamie Gennisf25e1832012-06-13 16:31:43 -0700163 return NO_ERROR;
164}
165
166} // namespace android