blob: 25c11a85050baf3df430336d87a87dd1af2ef894 [file] [log] [blame]
Terje Bergstrom75471682013-03-22 16:34:01 +02001/*
2 * Tegra host1x Syncpoints
3 *
Arto Merilainend4b57812016-11-08 19:51:33 +02004 * Copyright (c) 2010-2015, NVIDIA Corporation.
Terje Bergstrom75471682013-03-22 16:34:01 +02005 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms and conditions of the GNU General Public License,
8 * version 2, as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */
18
19#include <linux/module.h>
20#include <linux/device.h>
21#include <linux/slab.h>
22
23#include <trace/events/host1x.h>
24
25#include "syncpt.h"
26#include "dev.h"
Terje Bergstrom7ede0b02013-03-22 16:34:02 +020027#include "intr.h"
Terje Bergstrom62364512013-03-22 16:34:04 +020028#include "debug.h"
Terje Bergstrom7ede0b02013-03-22 16:34:02 +020029
30#define SYNCPT_CHECK_PERIOD (2 * HZ)
31#define MAX_STUCK_CHECK_COUNT 15
Terje Bergstrom75471682013-03-22 16:34:01 +020032
Arto Merilainenf5a954f2013-10-14 15:21:53 +030033static struct host1x_syncpt_base *
34host1x_syncpt_base_request(struct host1x *host)
35{
36 struct host1x_syncpt_base *bases = host->bases;
37 unsigned int i;
38
39 for (i = 0; i < host->info->nb_bases; i++)
40 if (!bases[i].requested)
41 break;
42
43 if (i >= host->info->nb_bases)
44 return NULL;
45
46 bases[i].requested = true;
47 return &bases[i];
48}
49
50static void host1x_syncpt_base_free(struct host1x_syncpt_base *base)
51{
52 if (base)
53 base->requested = false;
54}
55
Arto Merilainen8736fe82013-10-14 15:21:52 +030056static struct host1x_syncpt *host1x_syncpt_alloc(struct host1x *host,
57 struct device *dev,
58 unsigned long flags)
Terje Bergstrom75471682013-03-22 16:34:01 +020059{
60 int i;
61 struct host1x_syncpt *sp = host->syncpt;
62 char *name;
63
Arto Merilainend4b57812016-11-08 19:51:33 +020064 mutex_lock(&host->syncpt_mutex);
65
Terje Bergstrom75471682013-03-22 16:34:01 +020066 for (i = 0; i < host->info->nb_pts && sp->name; i++, sp++)
67 ;
Arto Merilainenedeabfc2013-05-29 13:26:06 +030068
69 if (i >= host->info->nb_pts)
Arto Merilainend4b57812016-11-08 19:51:33 +020070 goto unlock;
Terje Bergstrom75471682013-03-22 16:34:01 +020071
Arto Merilainenf5a954f2013-10-14 15:21:53 +030072 if (flags & HOST1X_SYNCPT_HAS_BASE) {
73 sp->base = host1x_syncpt_base_request(host);
74 if (!sp->base)
Arto Merilainend4b57812016-11-08 19:51:33 +020075 goto unlock;
Arto Merilainenf5a954f2013-10-14 15:21:53 +030076 }
77
Thierry Reding5c0d8d32016-06-23 11:19:00 +020078 name = kasprintf(GFP_KERNEL, "%02u-%s", sp->id,
Terje Bergstrom75471682013-03-22 16:34:01 +020079 dev ? dev_name(dev) : NULL);
80 if (!name)
Arto Merilainend4b57812016-11-08 19:51:33 +020081 goto free_base;
Terje Bergstrom75471682013-03-22 16:34:01 +020082
83 sp->dev = dev;
84 sp->name = name;
Arto Merilainen8736fe82013-10-14 15:21:52 +030085
86 if (flags & HOST1X_SYNCPT_CLIENT_MANAGED)
87 sp->client_managed = true;
88 else
89 sp->client_managed = false;
Terje Bergstrom75471682013-03-22 16:34:01 +020090
Arto Merilainend4b57812016-11-08 19:51:33 +020091 mutex_unlock(&host->syncpt_mutex);
Terje Bergstrom75471682013-03-22 16:34:01 +020092 return sp;
Arto Merilainend4b57812016-11-08 19:51:33 +020093
94free_base:
95 host1x_syncpt_base_free(sp->base);
96 sp->base = NULL;
97unlock:
98 mutex_unlock(&host->syncpt_mutex);
99 return NULL;
Terje Bergstrom75471682013-03-22 16:34:01 +0200100}
101
102u32 host1x_syncpt_id(struct host1x_syncpt *sp)
103{
104 return sp->id;
105}
Thierry Redingfae798a2013-11-08 11:41:42 +0100106EXPORT_SYMBOL(host1x_syncpt_id);
Terje Bergstrom75471682013-03-22 16:34:01 +0200107
108/*
109 * Updates the value sent to hardware.
110 */
111u32 host1x_syncpt_incr_max(struct host1x_syncpt *sp, u32 incrs)
112{
113 return (u32)atomic_add_return(incrs, &sp->max_val);
114}
Bryan Wu64400c32014-02-19 14:48:36 -0800115EXPORT_SYMBOL(host1x_syncpt_incr_max);
Terje Bergstrom75471682013-03-22 16:34:01 +0200116
117 /*
118 * Write cached syncpoint and waitbase values to hardware.
119 */
120void host1x_syncpt_restore(struct host1x *host)
121{
122 struct host1x_syncpt *sp_base = host->syncpt;
Thierry Reding14c95fc2016-06-22 16:44:07 +0200123 unsigned int i;
Terje Bergstrom75471682013-03-22 16:34:01 +0200124
125 for (i = 0; i < host1x_syncpt_nb_pts(host); i++)
126 host1x_hw_syncpt_restore(host, sp_base + i);
Thierry Reding0b8070d12016-06-23 11:35:50 +0200127
Terje Bergstrom75471682013-03-22 16:34:01 +0200128 for (i = 0; i < host1x_syncpt_nb_bases(host); i++)
129 host1x_hw_syncpt_restore_wait_base(host, sp_base + i);
Thierry Reding0b8070d12016-06-23 11:35:50 +0200130
Terje Bergstrom75471682013-03-22 16:34:01 +0200131 wmb();
132}
133
134/*
135 * Update the cached syncpoint and waitbase values by reading them
136 * from the registers.
137 */
138void host1x_syncpt_save(struct host1x *host)
139{
140 struct host1x_syncpt *sp_base = host->syncpt;
Thierry Reding14c95fc2016-06-22 16:44:07 +0200141 unsigned int i;
Terje Bergstrom75471682013-03-22 16:34:01 +0200142
143 for (i = 0; i < host1x_syncpt_nb_pts(host); i++) {
144 if (host1x_syncpt_client_managed(sp_base + i))
145 host1x_hw_syncpt_load(host, sp_base + i);
146 else
147 WARN_ON(!host1x_syncpt_idle(sp_base + i));
148 }
149
150 for (i = 0; i < host1x_syncpt_nb_bases(host); i++)
151 host1x_hw_syncpt_load_wait_base(host, sp_base + i);
152}
153
154/*
155 * Updates the cached syncpoint value by reading a new value from the hardware
156 * register
157 */
158u32 host1x_syncpt_load(struct host1x_syncpt *sp)
159{
160 u32 val;
Thierry Reding6df633d2016-06-23 11:33:31 +0200161
Terje Bergstrom75471682013-03-22 16:34:01 +0200162 val = host1x_hw_syncpt_load(sp->host, sp);
163 trace_host1x_syncpt_load_min(sp->id, val);
164
165 return val;
166}
167
168/*
169 * Get the current syncpoint base
170 */
171u32 host1x_syncpt_load_wait_base(struct host1x_syncpt *sp)
172{
Terje Bergstrom75471682013-03-22 16:34:01 +0200173 host1x_hw_syncpt_load_wait_base(sp->host, sp);
Thierry Reding4b92e292016-06-23 11:39:11 +0200174
175 return sp->base_val;
Terje Bergstrom75471682013-03-22 16:34:01 +0200176}
177
178/*
Terje Bergstrom75471682013-03-22 16:34:01 +0200179 * Increment syncpoint value from cpu, updating cache
180 */
Arto Merilainenebae30b2013-05-29 13:26:08 +0300181int host1x_syncpt_incr(struct host1x_syncpt *sp)
Terje Bergstrom75471682013-03-22 16:34:01 +0200182{
Arto Merilainenebae30b2013-05-29 13:26:08 +0300183 return host1x_hw_syncpt_cpu_incr(sp->host, sp);
Terje Bergstrom75471682013-03-22 16:34:01 +0200184}
Thierry Redingfae798a2013-11-08 11:41:42 +0100185EXPORT_SYMBOL(host1x_syncpt_incr);
Terje Bergstrom75471682013-03-22 16:34:01 +0200186
Terje Bergstrom7ede0b02013-03-22 16:34:02 +0200187/*
188 * Updated sync point form hardware, and returns true if syncpoint is expired,
189 * false if we may need to wait
190 */
191static bool syncpt_load_min_is_expired(struct host1x_syncpt *sp, u32 thresh)
192{
193 host1x_hw_syncpt_load(sp->host, sp);
Thierry Reding0b8070d12016-06-23 11:35:50 +0200194
Terje Bergstrom7ede0b02013-03-22 16:34:02 +0200195 return host1x_syncpt_is_expired(sp, thresh);
196}
197
198/*
199 * Main entrypoint for syncpoint value waits.
200 */
201int host1x_syncpt_wait(struct host1x_syncpt *sp, u32 thresh, long timeout,
Thierry Reding0b8070d12016-06-23 11:35:50 +0200202 u32 *value)
Terje Bergstrom7ede0b02013-03-22 16:34:02 +0200203{
204 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq);
205 void *ref;
206 struct host1x_waitlist *waiter;
207 int err = 0, check_count = 0;
208 u32 val;
209
210 if (value)
211 *value = 0;
212
213 /* first check cache */
214 if (host1x_syncpt_is_expired(sp, thresh)) {
215 if (value)
216 *value = host1x_syncpt_load(sp);
Thierry Reding0b8070d12016-06-23 11:35:50 +0200217
Terje Bergstrom7ede0b02013-03-22 16:34:02 +0200218 return 0;
219 }
220
221 /* try to read from register */
222 val = host1x_hw_syncpt_load(sp->host, sp);
223 if (host1x_syncpt_is_expired(sp, thresh)) {
224 if (value)
225 *value = val;
Thierry Reding0b8070d12016-06-23 11:35:50 +0200226
Terje Bergstrom7ede0b02013-03-22 16:34:02 +0200227 goto done;
228 }
229
230 if (!timeout) {
231 err = -EAGAIN;
232 goto done;
233 }
234
235 /* allocate a waiter */
236 waiter = kzalloc(sizeof(*waiter), GFP_KERNEL);
237 if (!waiter) {
238 err = -ENOMEM;
239 goto done;
240 }
241
242 /* schedule a wakeup when the syncpoint value is reached */
243 err = host1x_intr_add_action(sp->host, sp->id, thresh,
244 HOST1X_INTR_ACTION_WAKEUP_INTERRUPTIBLE,
245 &wq, waiter, &ref);
246 if (err)
247 goto done;
248
249 err = -EAGAIN;
250 /* Caller-specified timeout may be impractically low */
251 if (timeout < 0)
252 timeout = LONG_MAX;
253
254 /* wait for the syncpoint, or timeout, or signal */
255 while (timeout) {
256 long check = min_t(long, SYNCPT_CHECK_PERIOD, timeout);
Thierry Reding0b8070d12016-06-23 11:35:50 +0200257 int remain;
258
259 remain = wait_event_interruptible_timeout(wq,
Terje Bergstrom7ede0b02013-03-22 16:34:02 +0200260 syncpt_load_min_is_expired(sp, thresh),
261 check);
262 if (remain > 0 || host1x_syncpt_is_expired(sp, thresh)) {
263 if (value)
264 *value = host1x_syncpt_load(sp);
Thierry Reding0b8070d12016-06-23 11:35:50 +0200265
Terje Bergstrom7ede0b02013-03-22 16:34:02 +0200266 err = 0;
Thierry Reding0b8070d12016-06-23 11:35:50 +0200267
Terje Bergstrom7ede0b02013-03-22 16:34:02 +0200268 break;
269 }
Thierry Reding0b8070d12016-06-23 11:35:50 +0200270
Terje Bergstrom7ede0b02013-03-22 16:34:02 +0200271 if (remain < 0) {
272 err = remain;
273 break;
274 }
Thierry Reding0b8070d12016-06-23 11:35:50 +0200275
Terje Bergstrom7ede0b02013-03-22 16:34:02 +0200276 timeout -= check;
Thierry Reding0b8070d12016-06-23 11:35:50 +0200277
Terje Bergstrom7ede0b02013-03-22 16:34:02 +0200278 if (timeout && check_count <= MAX_STUCK_CHECK_COUNT) {
279 dev_warn(sp->host->dev,
Thierry Reding5c0d8d32016-06-23 11:19:00 +0200280 "%s: syncpoint id %u (%s) stuck waiting %d, timeout=%ld\n",
Terje Bergstrom7ede0b02013-03-22 16:34:02 +0200281 current->comm, sp->id, sp->name,
282 thresh, timeout);
Terje Bergstrom62364512013-03-22 16:34:04 +0200283
284 host1x_debug_dump_syncpts(sp->host);
Thierry Reding0b8070d12016-06-23 11:35:50 +0200285
Terje Bergstrom62364512013-03-22 16:34:04 +0200286 if (check_count == MAX_STUCK_CHECK_COUNT)
287 host1x_debug_dump(sp->host);
Thierry Reding0b8070d12016-06-23 11:35:50 +0200288
Terje Bergstrom7ede0b02013-03-22 16:34:02 +0200289 check_count++;
290 }
291 }
Thierry Reding0b8070d12016-06-23 11:35:50 +0200292
Terje Bergstrom7ede0b02013-03-22 16:34:02 +0200293 host1x_intr_put_ref(sp->host, sp->id, ref);
294
295done:
296 return err;
297}
298EXPORT_SYMBOL(host1x_syncpt_wait);
299
300/*
301 * Returns true if syncpoint is expired, false if we may need to wait
302 */
303bool host1x_syncpt_is_expired(struct host1x_syncpt *sp, u32 thresh)
304{
305 u32 current_val;
306 u32 future_val;
Thierry Reding6df633d2016-06-23 11:33:31 +0200307
Terje Bergstrom7ede0b02013-03-22 16:34:02 +0200308 smp_rmb();
Thierry Reding0b8070d12016-06-23 11:35:50 +0200309
Terje Bergstrom7ede0b02013-03-22 16:34:02 +0200310 current_val = (u32)atomic_read(&sp->min_val);
311 future_val = (u32)atomic_read(&sp->max_val);
312
313 /* Note the use of unsigned arithmetic here (mod 1<<32).
314 *
315 * c = current_val = min_val = the current value of the syncpoint.
316 * t = thresh = the value we are checking
317 * f = future_val = max_val = the value c will reach when all
318 * outstanding increments have completed.
319 *
320 * Note that c always chases f until it reaches f.
321 *
322 * Dtf = (f - t)
323 * Dtc = (c - t)
324 *
325 * Consider all cases:
326 *
327 * A) .....c..t..f..... Dtf < Dtc need to wait
328 * B) .....c.....f..t.. Dtf > Dtc expired
329 * C) ..t..c.....f..... Dtf > Dtc expired (Dct very large)
330 *
331 * Any case where f==c: always expired (for any t). Dtf == Dcf
332 * Any case where t==c: always expired (for any f). Dtf >= Dtc (because Dtc==0)
333 * Any case where t==f!=c: always wait. Dtf < Dtc (because Dtf==0,
334 * Dtc!=0)
335 *
336 * Other cases:
337 *
338 * A) .....t..f..c..... Dtf < Dtc need to wait
339 * A) .....f..c..t..... Dtf < Dtc need to wait
340 * A) .....f..t..c..... Dtf > Dtc expired
341 *
342 * So:
343 * Dtf >= Dtc implies EXPIRED (return true)
344 * Dtf < Dtc implies WAIT (return false)
345 *
346 * Note: If t is expired then we *cannot* wait on it. We would wait
347 * forever (hang the system).
348 *
349 * Note: do NOT get clever and remove the -thresh from both sides. It
350 * is NOT the same.
351 *
352 * If future valueis zero, we have a client managed sync point. In that
353 * case we do a direct comparison.
354 */
355 if (!host1x_syncpt_client_managed(sp))
356 return future_val - thresh >= current_val - thresh;
357 else
358 return (s32)(current_val - thresh) >= 0;
359}
360
Terje Bergstrom65793242013-03-22 16:34:03 +0200361/* remove a wait pointed to by patch_addr */
362int host1x_syncpt_patch_wait(struct host1x_syncpt *sp, void *patch_addr)
363{
364 return host1x_hw_syncpt_patch_wait(sp->host, sp, patch_addr);
365}
366
Terje Bergstrom75471682013-03-22 16:34:01 +0200367int host1x_syncpt_init(struct host1x *host)
368{
Arto Merilainenf5a954f2013-10-14 15:21:53 +0300369 struct host1x_syncpt_base *bases;
Terje Bergstrom75471682013-03-22 16:34:01 +0200370 struct host1x_syncpt *syncpt;
Thierry Reding14c95fc2016-06-22 16:44:07 +0200371 unsigned int i;
Terje Bergstrom75471682013-03-22 16:34:01 +0200372
Thierry Redingb47a0492016-06-23 11:24:59 +0200373 syncpt = devm_kcalloc(host->dev, host->info->nb_pts, sizeof(*syncpt),
Arto Merilainenf5a954f2013-10-14 15:21:53 +0300374 GFP_KERNEL);
Terje Bergstrom75471682013-03-22 16:34:01 +0200375 if (!syncpt)
376 return -ENOMEM;
377
Thierry Redingb47a0492016-06-23 11:24:59 +0200378 bases = devm_kcalloc(host->dev, host->info->nb_bases, sizeof(*bases),
Arto Merilainenf5a954f2013-10-14 15:21:53 +0300379 GFP_KERNEL);
380 if (!bases)
381 return -ENOMEM;
382
383 for (i = 0; i < host->info->nb_pts; i++) {
Terje Bergstrom75471682013-03-22 16:34:01 +0200384 syncpt[i].id = i;
385 syncpt[i].host = host;
386 }
387
Arto Merilainenf5a954f2013-10-14 15:21:53 +0300388 for (i = 0; i < host->info->nb_bases; i++)
389 bases[i].id = i;
390
Arto Merilainend4b57812016-11-08 19:51:33 +0200391 mutex_init(&host->syncpt_mutex);
Terje Bergstrom75471682013-03-22 16:34:01 +0200392 host->syncpt = syncpt;
Arto Merilainenf5a954f2013-10-14 15:21:53 +0300393 host->bases = bases;
Terje Bergstrom75471682013-03-22 16:34:01 +0200394
395 host1x_syncpt_restore(host);
396
Terje Bergstrom65793242013-03-22 16:34:03 +0200397 /* Allocate sync point to use for clearing waits for expired fences */
Arto Merilainen8736fe82013-10-14 15:21:52 +0300398 host->nop_sp = host1x_syncpt_alloc(host, NULL, 0);
Terje Bergstrom65793242013-03-22 16:34:03 +0200399 if (!host->nop_sp)
400 return -ENOMEM;
401
Terje Bergstrom75471682013-03-22 16:34:01 +0200402 return 0;
403}
404
405struct host1x_syncpt *host1x_syncpt_request(struct device *dev,
Arto Merilainen8736fe82013-10-14 15:21:52 +0300406 unsigned long flags)
Terje Bergstrom75471682013-03-22 16:34:01 +0200407{
408 struct host1x *host = dev_get_drvdata(dev->parent);
Thierry Reding0b8070d12016-06-23 11:35:50 +0200409
Arto Merilainen8736fe82013-10-14 15:21:52 +0300410 return host1x_syncpt_alloc(host, dev, flags);
Terje Bergstrom75471682013-03-22 16:34:01 +0200411}
Thierry Redingfae798a2013-11-08 11:41:42 +0100412EXPORT_SYMBOL(host1x_syncpt_request);
Terje Bergstrom75471682013-03-22 16:34:01 +0200413
414void host1x_syncpt_free(struct host1x_syncpt *sp)
415{
416 if (!sp)
417 return;
418
Arto Merilainend4b57812016-11-08 19:51:33 +0200419 mutex_lock(&sp->host->syncpt_mutex);
420
Arto Merilainenf5a954f2013-10-14 15:21:53 +0300421 host1x_syncpt_base_free(sp->base);
Terje Bergstrom75471682013-03-22 16:34:01 +0200422 kfree(sp->name);
Arto Merilainenf5a954f2013-10-14 15:21:53 +0300423 sp->base = NULL;
Terje Bergstrom75471682013-03-22 16:34:01 +0200424 sp->dev = NULL;
425 sp->name = NULL;
Arto Merilainenece66892013-05-29 13:26:07 +0300426 sp->client_managed = false;
Arto Merilainend4b57812016-11-08 19:51:33 +0200427
428 mutex_unlock(&sp->host->syncpt_mutex);
Terje Bergstrom75471682013-03-22 16:34:01 +0200429}
Thierry Redingfae798a2013-11-08 11:41:42 +0100430EXPORT_SYMBOL(host1x_syncpt_free);
Terje Bergstrom75471682013-03-22 16:34:01 +0200431
432void host1x_syncpt_deinit(struct host1x *host)
433{
Terje Bergstrom75471682013-03-22 16:34:01 +0200434 struct host1x_syncpt *sp = host->syncpt;
Thierry Reding14c95fc2016-06-22 16:44:07 +0200435 unsigned int i;
436
Terje Bergstrom75471682013-03-22 16:34:01 +0200437 for (i = 0; i < host->info->nb_pts; i++, sp++)
438 kfree(sp->name);
439}
440
Thierry Reding35d747a2013-09-24 16:30:32 +0200441/*
442 * Read max. It indicates how many operations there are in queue, either in
443 * channel or in a software thread.
Thierry Reding6df633d2016-06-23 11:33:31 +0200444 */
Thierry Reding35d747a2013-09-24 16:30:32 +0200445u32 host1x_syncpt_read_max(struct host1x_syncpt *sp)
446{
447 smp_rmb();
Thierry Reding0b8070d12016-06-23 11:35:50 +0200448
Thierry Reding35d747a2013-09-24 16:30:32 +0200449 return (u32)atomic_read(&sp->max_val);
450}
Thierry Redingfae798a2013-11-08 11:41:42 +0100451EXPORT_SYMBOL(host1x_syncpt_read_max);
Thierry Reding35d747a2013-09-24 16:30:32 +0200452
453/*
454 * Read min, which is a shadow of the current sync point value in hardware.
455 */
456u32 host1x_syncpt_read_min(struct host1x_syncpt *sp)
457{
458 smp_rmb();
Thierry Reding0b8070d12016-06-23 11:35:50 +0200459
Thierry Reding35d747a2013-09-24 16:30:32 +0200460 return (u32)atomic_read(&sp->min_val);
461}
Thierry Redingfae798a2013-11-08 11:41:42 +0100462EXPORT_SYMBOL(host1x_syncpt_read_min);
Thierry Reding35d747a2013-09-24 16:30:32 +0200463
Thierry Redingb4a201442015-01-28 14:29:02 +0100464u32 host1x_syncpt_read(struct host1x_syncpt *sp)
465{
466 return host1x_syncpt_load(sp);
467}
468EXPORT_SYMBOL(host1x_syncpt_read);
469
Thierry Reding14c95fc2016-06-22 16:44:07 +0200470unsigned int host1x_syncpt_nb_pts(struct host1x *host)
Terje Bergstrom75471682013-03-22 16:34:01 +0200471{
472 return host->info->nb_pts;
473}
474
Thierry Reding14c95fc2016-06-22 16:44:07 +0200475unsigned int host1x_syncpt_nb_bases(struct host1x *host)
Terje Bergstrom75471682013-03-22 16:34:01 +0200476{
477 return host->info->nb_bases;
478}
479
Thierry Reding14c95fc2016-06-22 16:44:07 +0200480unsigned int host1x_syncpt_nb_mlocks(struct host1x *host)
Terje Bergstrom75471682013-03-22 16:34:01 +0200481{
482 return host->info->nb_mlocks;
483}
484
Thierry Reding5c0d8d32016-06-23 11:19:00 +0200485struct host1x_syncpt *host1x_syncpt_get(struct host1x *host, unsigned int id)
Terje Bergstrom75471682013-03-22 16:34:01 +0200486{
487 if (host->info->nb_pts < id)
488 return NULL;
Thierry Reding0b8070d12016-06-23 11:35:50 +0200489
Terje Bergstrom75471682013-03-22 16:34:01 +0200490 return host->syncpt + id;
491}
Thierry Redingfae798a2013-11-08 11:41:42 +0100492EXPORT_SYMBOL(host1x_syncpt_get);
Arto Merilainenf5a954f2013-10-14 15:21:53 +0300493
494struct host1x_syncpt_base *host1x_syncpt_get_base(struct host1x_syncpt *sp)
495{
496 return sp ? sp->base : NULL;
497}
Thierry Redingfae798a2013-11-08 11:41:42 +0100498EXPORT_SYMBOL(host1x_syncpt_get_base);
Arto Merilainenf5a954f2013-10-14 15:21:53 +0300499
500u32 host1x_syncpt_base_id(struct host1x_syncpt_base *base)
501{
502 return base->id;
503}
Thierry Redingfae798a2013-11-08 11:41:42 +0100504EXPORT_SYMBOL(host1x_syncpt_base_id);