blob: 95589328ad52a27a7ba345f097a5740cca67d34f [file] [log] [blame]
Terje Bergstrom75471682013-03-22 16:34:01 +02001/*
2 * Tegra host1x Syncpoints
3 *
4 * Copyright (c) 2010-2013, NVIDIA Corporation.
5 *
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
64 for (i = 0; i < host->info->nb_pts && sp->name; i++, sp++)
65 ;
Arto Merilainenedeabfc2013-05-29 13:26:06 +030066
67 if (i >= host->info->nb_pts)
Terje Bergstrom75471682013-03-22 16:34:01 +020068 return NULL;
69
Arto Merilainenf5a954f2013-10-14 15:21:53 +030070 if (flags & HOST1X_SYNCPT_HAS_BASE) {
71 sp->base = host1x_syncpt_base_request(host);
72 if (!sp->base)
73 return NULL;
74 }
75
Thierry Reding5c0d8d32016-06-23 11:19:00 +020076 name = kasprintf(GFP_KERNEL, "%02u-%s", sp->id,
Terje Bergstrom75471682013-03-22 16:34:01 +020077 dev ? dev_name(dev) : NULL);
78 if (!name)
79 return NULL;
80
81 sp->dev = dev;
82 sp->name = name;
Arto Merilainen8736fe82013-10-14 15:21:52 +030083
84 if (flags & HOST1X_SYNCPT_CLIENT_MANAGED)
85 sp->client_managed = true;
86 else
87 sp->client_managed = false;
Terje Bergstrom75471682013-03-22 16:34:01 +020088
89 return sp;
90}
91
92u32 host1x_syncpt_id(struct host1x_syncpt *sp)
93{
94 return sp->id;
95}
Thierry Redingfae798a2013-11-08 11:41:42 +010096EXPORT_SYMBOL(host1x_syncpt_id);
Terje Bergstrom75471682013-03-22 16:34:01 +020097
98/*
99 * Updates the value sent to hardware.
100 */
101u32 host1x_syncpt_incr_max(struct host1x_syncpt *sp, u32 incrs)
102{
103 return (u32)atomic_add_return(incrs, &sp->max_val);
104}
Bryan Wu64400c32014-02-19 14:48:36 -0800105EXPORT_SYMBOL(host1x_syncpt_incr_max);
Terje Bergstrom75471682013-03-22 16:34:01 +0200106
107 /*
108 * Write cached syncpoint and waitbase values to hardware.
109 */
110void host1x_syncpt_restore(struct host1x *host)
111{
112 struct host1x_syncpt *sp_base = host->syncpt;
Thierry Reding14c95fc2016-06-22 16:44:07 +0200113 unsigned int i;
Terje Bergstrom75471682013-03-22 16:34:01 +0200114
115 for (i = 0; i < host1x_syncpt_nb_pts(host); i++)
116 host1x_hw_syncpt_restore(host, sp_base + i);
Thierry Reding0b8070d12016-06-23 11:35:50 +0200117
Terje Bergstrom75471682013-03-22 16:34:01 +0200118 for (i = 0; i < host1x_syncpt_nb_bases(host); i++)
119 host1x_hw_syncpt_restore_wait_base(host, sp_base + i);
Thierry Reding0b8070d12016-06-23 11:35:50 +0200120
Terje Bergstrom75471682013-03-22 16:34:01 +0200121 wmb();
122}
123
124/*
125 * Update the cached syncpoint and waitbase values by reading them
126 * from the registers.
127 */
128void host1x_syncpt_save(struct host1x *host)
129{
130 struct host1x_syncpt *sp_base = host->syncpt;
Thierry Reding14c95fc2016-06-22 16:44:07 +0200131 unsigned int i;
Terje Bergstrom75471682013-03-22 16:34:01 +0200132
133 for (i = 0; i < host1x_syncpt_nb_pts(host); i++) {
134 if (host1x_syncpt_client_managed(sp_base + i))
135 host1x_hw_syncpt_load(host, sp_base + i);
136 else
137 WARN_ON(!host1x_syncpt_idle(sp_base + i));
138 }
139
140 for (i = 0; i < host1x_syncpt_nb_bases(host); i++)
141 host1x_hw_syncpt_load_wait_base(host, sp_base + i);
142}
143
144/*
145 * Updates the cached syncpoint value by reading a new value from the hardware
146 * register
147 */
148u32 host1x_syncpt_load(struct host1x_syncpt *sp)
149{
150 u32 val;
Thierry Reding6df633d2016-06-23 11:33:31 +0200151
Terje Bergstrom75471682013-03-22 16:34:01 +0200152 val = host1x_hw_syncpt_load(sp->host, sp);
153 trace_host1x_syncpt_load_min(sp->id, val);
154
155 return val;
156}
157
158/*
159 * Get the current syncpoint base
160 */
161u32 host1x_syncpt_load_wait_base(struct host1x_syncpt *sp)
162{
Terje Bergstrom75471682013-03-22 16:34:01 +0200163 host1x_hw_syncpt_load_wait_base(sp->host, sp);
Thierry Reding4b92e292016-06-23 11:39:11 +0200164
165 return sp->base_val;
Terje Bergstrom75471682013-03-22 16:34:01 +0200166}
167
168/*
Terje Bergstrom75471682013-03-22 16:34:01 +0200169 * Increment syncpoint value from cpu, updating cache
170 */
Arto Merilainenebae30b2013-05-29 13:26:08 +0300171int host1x_syncpt_incr(struct host1x_syncpt *sp)
Terje Bergstrom75471682013-03-22 16:34:01 +0200172{
Arto Merilainenebae30b2013-05-29 13:26:08 +0300173 return host1x_hw_syncpt_cpu_incr(sp->host, sp);
Terje Bergstrom75471682013-03-22 16:34:01 +0200174}
Thierry Redingfae798a2013-11-08 11:41:42 +0100175EXPORT_SYMBOL(host1x_syncpt_incr);
Terje Bergstrom75471682013-03-22 16:34:01 +0200176
Terje Bergstrom7ede0b02013-03-22 16:34:02 +0200177/*
178 * Updated sync point form hardware, and returns true if syncpoint is expired,
179 * false if we may need to wait
180 */
181static bool syncpt_load_min_is_expired(struct host1x_syncpt *sp, u32 thresh)
182{
183 host1x_hw_syncpt_load(sp->host, sp);
Thierry Reding0b8070d12016-06-23 11:35:50 +0200184
Terje Bergstrom7ede0b02013-03-22 16:34:02 +0200185 return host1x_syncpt_is_expired(sp, thresh);
186}
187
188/*
189 * Main entrypoint for syncpoint value waits.
190 */
191int host1x_syncpt_wait(struct host1x_syncpt *sp, u32 thresh, long timeout,
Thierry Reding0b8070d12016-06-23 11:35:50 +0200192 u32 *value)
Terje Bergstrom7ede0b02013-03-22 16:34:02 +0200193{
194 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq);
195 void *ref;
196 struct host1x_waitlist *waiter;
197 int err = 0, check_count = 0;
198 u32 val;
199
200 if (value)
201 *value = 0;
202
203 /* first check cache */
204 if (host1x_syncpt_is_expired(sp, thresh)) {
205 if (value)
206 *value = host1x_syncpt_load(sp);
Thierry Reding0b8070d12016-06-23 11:35:50 +0200207
Terje Bergstrom7ede0b02013-03-22 16:34:02 +0200208 return 0;
209 }
210
211 /* try to read from register */
212 val = host1x_hw_syncpt_load(sp->host, sp);
213 if (host1x_syncpt_is_expired(sp, thresh)) {
214 if (value)
215 *value = val;
Thierry Reding0b8070d12016-06-23 11:35:50 +0200216
Terje Bergstrom7ede0b02013-03-22 16:34:02 +0200217 goto done;
218 }
219
220 if (!timeout) {
221 err = -EAGAIN;
222 goto done;
223 }
224
225 /* allocate a waiter */
226 waiter = kzalloc(sizeof(*waiter), GFP_KERNEL);
227 if (!waiter) {
228 err = -ENOMEM;
229 goto done;
230 }
231
232 /* schedule a wakeup when the syncpoint value is reached */
233 err = host1x_intr_add_action(sp->host, sp->id, thresh,
234 HOST1X_INTR_ACTION_WAKEUP_INTERRUPTIBLE,
235 &wq, waiter, &ref);
236 if (err)
237 goto done;
238
239 err = -EAGAIN;
240 /* Caller-specified timeout may be impractically low */
241 if (timeout < 0)
242 timeout = LONG_MAX;
243
244 /* wait for the syncpoint, or timeout, or signal */
245 while (timeout) {
246 long check = min_t(long, SYNCPT_CHECK_PERIOD, timeout);
Thierry Reding0b8070d12016-06-23 11:35:50 +0200247 int remain;
248
249 remain = wait_event_interruptible_timeout(wq,
Terje Bergstrom7ede0b02013-03-22 16:34:02 +0200250 syncpt_load_min_is_expired(sp, thresh),
251 check);
252 if (remain > 0 || host1x_syncpt_is_expired(sp, thresh)) {
253 if (value)
254 *value = host1x_syncpt_load(sp);
Thierry Reding0b8070d12016-06-23 11:35:50 +0200255
Terje Bergstrom7ede0b02013-03-22 16:34:02 +0200256 err = 0;
Thierry Reding0b8070d12016-06-23 11:35:50 +0200257
Terje Bergstrom7ede0b02013-03-22 16:34:02 +0200258 break;
259 }
Thierry Reding0b8070d12016-06-23 11:35:50 +0200260
Terje Bergstrom7ede0b02013-03-22 16:34:02 +0200261 if (remain < 0) {
262 err = remain;
263 break;
264 }
Thierry Reding0b8070d12016-06-23 11:35:50 +0200265
Terje Bergstrom7ede0b02013-03-22 16:34:02 +0200266 timeout -= check;
Thierry Reding0b8070d12016-06-23 11:35:50 +0200267
Terje Bergstrom7ede0b02013-03-22 16:34:02 +0200268 if (timeout && check_count <= MAX_STUCK_CHECK_COUNT) {
269 dev_warn(sp->host->dev,
Thierry Reding5c0d8d32016-06-23 11:19:00 +0200270 "%s: syncpoint id %u (%s) stuck waiting %d, timeout=%ld\n",
Terje Bergstrom7ede0b02013-03-22 16:34:02 +0200271 current->comm, sp->id, sp->name,
272 thresh, timeout);
Terje Bergstrom62364512013-03-22 16:34:04 +0200273
274 host1x_debug_dump_syncpts(sp->host);
Thierry Reding0b8070d12016-06-23 11:35:50 +0200275
Terje Bergstrom62364512013-03-22 16:34:04 +0200276 if (check_count == MAX_STUCK_CHECK_COUNT)
277 host1x_debug_dump(sp->host);
Thierry Reding0b8070d12016-06-23 11:35:50 +0200278
Terje Bergstrom7ede0b02013-03-22 16:34:02 +0200279 check_count++;
280 }
281 }
Thierry Reding0b8070d12016-06-23 11:35:50 +0200282
Terje Bergstrom7ede0b02013-03-22 16:34:02 +0200283 host1x_intr_put_ref(sp->host, sp->id, ref);
284
285done:
286 return err;
287}
288EXPORT_SYMBOL(host1x_syncpt_wait);
289
290/*
291 * Returns true if syncpoint is expired, false if we may need to wait
292 */
293bool host1x_syncpt_is_expired(struct host1x_syncpt *sp, u32 thresh)
294{
295 u32 current_val;
296 u32 future_val;
Thierry Reding6df633d2016-06-23 11:33:31 +0200297
Terje Bergstrom7ede0b02013-03-22 16:34:02 +0200298 smp_rmb();
Thierry Reding0b8070d12016-06-23 11:35:50 +0200299
Terje Bergstrom7ede0b02013-03-22 16:34:02 +0200300 current_val = (u32)atomic_read(&sp->min_val);
301 future_val = (u32)atomic_read(&sp->max_val);
302
303 /* Note the use of unsigned arithmetic here (mod 1<<32).
304 *
305 * c = current_val = min_val = the current value of the syncpoint.
306 * t = thresh = the value we are checking
307 * f = future_val = max_val = the value c will reach when all
308 * outstanding increments have completed.
309 *
310 * Note that c always chases f until it reaches f.
311 *
312 * Dtf = (f - t)
313 * Dtc = (c - t)
314 *
315 * Consider all cases:
316 *
317 * A) .....c..t..f..... Dtf < Dtc need to wait
318 * B) .....c.....f..t.. Dtf > Dtc expired
319 * C) ..t..c.....f..... Dtf > Dtc expired (Dct very large)
320 *
321 * Any case where f==c: always expired (for any t). Dtf == Dcf
322 * Any case where t==c: always expired (for any f). Dtf >= Dtc (because Dtc==0)
323 * Any case where t==f!=c: always wait. Dtf < Dtc (because Dtf==0,
324 * Dtc!=0)
325 *
326 * Other cases:
327 *
328 * A) .....t..f..c..... Dtf < Dtc need to wait
329 * A) .....f..c..t..... Dtf < Dtc need to wait
330 * A) .....f..t..c..... Dtf > Dtc expired
331 *
332 * So:
333 * Dtf >= Dtc implies EXPIRED (return true)
334 * Dtf < Dtc implies WAIT (return false)
335 *
336 * Note: If t is expired then we *cannot* wait on it. We would wait
337 * forever (hang the system).
338 *
339 * Note: do NOT get clever and remove the -thresh from both sides. It
340 * is NOT the same.
341 *
342 * If future valueis zero, we have a client managed sync point. In that
343 * case we do a direct comparison.
344 */
345 if (!host1x_syncpt_client_managed(sp))
346 return future_val - thresh >= current_val - thresh;
347 else
348 return (s32)(current_val - thresh) >= 0;
349}
350
Terje Bergstrom65793242013-03-22 16:34:03 +0200351/* remove a wait pointed to by patch_addr */
352int host1x_syncpt_patch_wait(struct host1x_syncpt *sp, void *patch_addr)
353{
354 return host1x_hw_syncpt_patch_wait(sp->host, sp, patch_addr);
355}
356
Terje Bergstrom75471682013-03-22 16:34:01 +0200357int host1x_syncpt_init(struct host1x *host)
358{
Arto Merilainenf5a954f2013-10-14 15:21:53 +0300359 struct host1x_syncpt_base *bases;
Terje Bergstrom75471682013-03-22 16:34:01 +0200360 struct host1x_syncpt *syncpt;
Thierry Reding14c95fc2016-06-22 16:44:07 +0200361 unsigned int i;
Terje Bergstrom75471682013-03-22 16:34:01 +0200362
Thierry Redingb47a0492016-06-23 11:24:59 +0200363 syncpt = devm_kcalloc(host->dev, host->info->nb_pts, sizeof(*syncpt),
Arto Merilainenf5a954f2013-10-14 15:21:53 +0300364 GFP_KERNEL);
Terje Bergstrom75471682013-03-22 16:34:01 +0200365 if (!syncpt)
366 return -ENOMEM;
367
Thierry Redingb47a0492016-06-23 11:24:59 +0200368 bases = devm_kcalloc(host->dev, host->info->nb_bases, sizeof(*bases),
Arto Merilainenf5a954f2013-10-14 15:21:53 +0300369 GFP_KERNEL);
370 if (!bases)
371 return -ENOMEM;
372
373 for (i = 0; i < host->info->nb_pts; i++) {
Terje Bergstrom75471682013-03-22 16:34:01 +0200374 syncpt[i].id = i;
375 syncpt[i].host = host;
376 }
377
Arto Merilainenf5a954f2013-10-14 15:21:53 +0300378 for (i = 0; i < host->info->nb_bases; i++)
379 bases[i].id = i;
380
Terje Bergstrom75471682013-03-22 16:34:01 +0200381 host->syncpt = syncpt;
Arto Merilainenf5a954f2013-10-14 15:21:53 +0300382 host->bases = bases;
Terje Bergstrom75471682013-03-22 16:34:01 +0200383
384 host1x_syncpt_restore(host);
385
Terje Bergstrom65793242013-03-22 16:34:03 +0200386 /* Allocate sync point to use for clearing waits for expired fences */
Arto Merilainen8736fe82013-10-14 15:21:52 +0300387 host->nop_sp = host1x_syncpt_alloc(host, NULL, 0);
Terje Bergstrom65793242013-03-22 16:34:03 +0200388 if (!host->nop_sp)
389 return -ENOMEM;
390
Terje Bergstrom75471682013-03-22 16:34:01 +0200391 return 0;
392}
393
394struct host1x_syncpt *host1x_syncpt_request(struct device *dev,
Arto Merilainen8736fe82013-10-14 15:21:52 +0300395 unsigned long flags)
Terje Bergstrom75471682013-03-22 16:34:01 +0200396{
397 struct host1x *host = dev_get_drvdata(dev->parent);
Thierry Reding0b8070d12016-06-23 11:35:50 +0200398
Arto Merilainen8736fe82013-10-14 15:21:52 +0300399 return host1x_syncpt_alloc(host, dev, flags);
Terje Bergstrom75471682013-03-22 16:34:01 +0200400}
Thierry Redingfae798a2013-11-08 11:41:42 +0100401EXPORT_SYMBOL(host1x_syncpt_request);
Terje Bergstrom75471682013-03-22 16:34:01 +0200402
403void host1x_syncpt_free(struct host1x_syncpt *sp)
404{
405 if (!sp)
406 return;
407
Arto Merilainenf5a954f2013-10-14 15:21:53 +0300408 host1x_syncpt_base_free(sp->base);
Terje Bergstrom75471682013-03-22 16:34:01 +0200409 kfree(sp->name);
Arto Merilainenf5a954f2013-10-14 15:21:53 +0300410 sp->base = NULL;
Terje Bergstrom75471682013-03-22 16:34:01 +0200411 sp->dev = NULL;
412 sp->name = NULL;
Arto Merilainenece66892013-05-29 13:26:07 +0300413 sp->client_managed = false;
Terje Bergstrom75471682013-03-22 16:34:01 +0200414}
Thierry Redingfae798a2013-11-08 11:41:42 +0100415EXPORT_SYMBOL(host1x_syncpt_free);
Terje Bergstrom75471682013-03-22 16:34:01 +0200416
417void host1x_syncpt_deinit(struct host1x *host)
418{
Terje Bergstrom75471682013-03-22 16:34:01 +0200419 struct host1x_syncpt *sp = host->syncpt;
Thierry Reding14c95fc2016-06-22 16:44:07 +0200420 unsigned int i;
421
Terje Bergstrom75471682013-03-22 16:34:01 +0200422 for (i = 0; i < host->info->nb_pts; i++, sp++)
423 kfree(sp->name);
424}
425
Thierry Reding35d747a2013-09-24 16:30:32 +0200426/*
427 * Read max. It indicates how many operations there are in queue, either in
428 * channel or in a software thread.
Thierry Reding6df633d2016-06-23 11:33:31 +0200429 */
Thierry Reding35d747a2013-09-24 16:30:32 +0200430u32 host1x_syncpt_read_max(struct host1x_syncpt *sp)
431{
432 smp_rmb();
Thierry Reding0b8070d12016-06-23 11:35:50 +0200433
Thierry Reding35d747a2013-09-24 16:30:32 +0200434 return (u32)atomic_read(&sp->max_val);
435}
Thierry Redingfae798a2013-11-08 11:41:42 +0100436EXPORT_SYMBOL(host1x_syncpt_read_max);
Thierry Reding35d747a2013-09-24 16:30:32 +0200437
438/*
439 * Read min, which is a shadow of the current sync point value in hardware.
440 */
441u32 host1x_syncpt_read_min(struct host1x_syncpt *sp)
442{
443 smp_rmb();
Thierry Reding0b8070d12016-06-23 11:35:50 +0200444
Thierry Reding35d747a2013-09-24 16:30:32 +0200445 return (u32)atomic_read(&sp->min_val);
446}
Thierry Redingfae798a2013-11-08 11:41:42 +0100447EXPORT_SYMBOL(host1x_syncpt_read_min);
Thierry Reding35d747a2013-09-24 16:30:32 +0200448
Thierry Redingb4a201442015-01-28 14:29:02 +0100449u32 host1x_syncpt_read(struct host1x_syncpt *sp)
450{
451 return host1x_syncpt_load(sp);
452}
453EXPORT_SYMBOL(host1x_syncpt_read);
454
Thierry Reding14c95fc2016-06-22 16:44:07 +0200455unsigned int host1x_syncpt_nb_pts(struct host1x *host)
Terje Bergstrom75471682013-03-22 16:34:01 +0200456{
457 return host->info->nb_pts;
458}
459
Thierry Reding14c95fc2016-06-22 16:44:07 +0200460unsigned int host1x_syncpt_nb_bases(struct host1x *host)
Terje Bergstrom75471682013-03-22 16:34:01 +0200461{
462 return host->info->nb_bases;
463}
464
Thierry Reding14c95fc2016-06-22 16:44:07 +0200465unsigned int host1x_syncpt_nb_mlocks(struct host1x *host)
Terje Bergstrom75471682013-03-22 16:34:01 +0200466{
467 return host->info->nb_mlocks;
468}
469
Thierry Reding5c0d8d32016-06-23 11:19:00 +0200470struct host1x_syncpt *host1x_syncpt_get(struct host1x *host, unsigned int id)
Terje Bergstrom75471682013-03-22 16:34:01 +0200471{
472 if (host->info->nb_pts < id)
473 return NULL;
Thierry Reding0b8070d12016-06-23 11:35:50 +0200474
Terje Bergstrom75471682013-03-22 16:34:01 +0200475 return host->syncpt + id;
476}
Thierry Redingfae798a2013-11-08 11:41:42 +0100477EXPORT_SYMBOL(host1x_syncpt_get);
Arto Merilainenf5a954f2013-10-14 15:21:53 +0300478
479struct host1x_syncpt_base *host1x_syncpt_get_base(struct host1x_syncpt *sp)
480{
481 return sp ? sp->base : NULL;
482}
Thierry Redingfae798a2013-11-08 11:41:42 +0100483EXPORT_SYMBOL(host1x_syncpt_get_base);
Arto Merilainenf5a954f2013-10-14 15:21:53 +0300484
485u32 host1x_syncpt_base_id(struct host1x_syncpt_base *base)
486{
487 return base->id;
488}
Thierry Redingfae798a2013-11-08 11:41:42 +0100489EXPORT_SYMBOL(host1x_syncpt_base_id);