r8152: fix tx packets accounting
[linux/fpc-iii.git] / drivers / gpu / host1x / syncpt.c
blob95589328ad52a27a7ba345f097a5740cca67d34f
1 /*
2 * Tegra host1x Syncpoints
4 * Copyright (c) 2010-2013, NVIDIA Corporation.
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.
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.
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/>.
19 #include <linux/module.h>
20 #include <linux/device.h>
21 #include <linux/slab.h>
23 #include <trace/events/host1x.h>
25 #include "syncpt.h"
26 #include "dev.h"
27 #include "intr.h"
28 #include "debug.h"
30 #define SYNCPT_CHECK_PERIOD (2 * HZ)
31 #define MAX_STUCK_CHECK_COUNT 15
33 static struct host1x_syncpt_base *
34 host1x_syncpt_base_request(struct host1x *host)
36 struct host1x_syncpt_base *bases = host->bases;
37 unsigned int i;
39 for (i = 0; i < host->info->nb_bases; i++)
40 if (!bases[i].requested)
41 break;
43 if (i >= host->info->nb_bases)
44 return NULL;
46 bases[i].requested = true;
47 return &bases[i];
50 static void host1x_syncpt_base_free(struct host1x_syncpt_base *base)
52 if (base)
53 base->requested = false;
56 static struct host1x_syncpt *host1x_syncpt_alloc(struct host1x *host,
57 struct device *dev,
58 unsigned long flags)
60 int i;
61 struct host1x_syncpt *sp = host->syncpt;
62 char *name;
64 for (i = 0; i < host->info->nb_pts && sp->name; i++, sp++)
67 if (i >= host->info->nb_pts)
68 return NULL;
70 if (flags & HOST1X_SYNCPT_HAS_BASE) {
71 sp->base = host1x_syncpt_base_request(host);
72 if (!sp->base)
73 return NULL;
76 name = kasprintf(GFP_KERNEL, "%02u-%s", sp->id,
77 dev ? dev_name(dev) : NULL);
78 if (!name)
79 return NULL;
81 sp->dev = dev;
82 sp->name = name;
84 if (flags & HOST1X_SYNCPT_CLIENT_MANAGED)
85 sp->client_managed = true;
86 else
87 sp->client_managed = false;
89 return sp;
92 u32 host1x_syncpt_id(struct host1x_syncpt *sp)
94 return sp->id;
96 EXPORT_SYMBOL(host1x_syncpt_id);
99 * Updates the value sent to hardware.
101 u32 host1x_syncpt_incr_max(struct host1x_syncpt *sp, u32 incrs)
103 return (u32)atomic_add_return(incrs, &sp->max_val);
105 EXPORT_SYMBOL(host1x_syncpt_incr_max);
108 * Write cached syncpoint and waitbase values to hardware.
110 void host1x_syncpt_restore(struct host1x *host)
112 struct host1x_syncpt *sp_base = host->syncpt;
113 unsigned int i;
115 for (i = 0; i < host1x_syncpt_nb_pts(host); i++)
116 host1x_hw_syncpt_restore(host, sp_base + i);
118 for (i = 0; i < host1x_syncpt_nb_bases(host); i++)
119 host1x_hw_syncpt_restore_wait_base(host, sp_base + i);
121 wmb();
125 * Update the cached syncpoint and waitbase values by reading them
126 * from the registers.
128 void host1x_syncpt_save(struct host1x *host)
130 struct host1x_syncpt *sp_base = host->syncpt;
131 unsigned int i;
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));
140 for (i = 0; i < host1x_syncpt_nb_bases(host); i++)
141 host1x_hw_syncpt_load_wait_base(host, sp_base + i);
145 * Updates the cached syncpoint value by reading a new value from the hardware
146 * register
148 u32 host1x_syncpt_load(struct host1x_syncpt *sp)
150 u32 val;
152 val = host1x_hw_syncpt_load(sp->host, sp);
153 trace_host1x_syncpt_load_min(sp->id, val);
155 return val;
159 * Get the current syncpoint base
161 u32 host1x_syncpt_load_wait_base(struct host1x_syncpt *sp)
163 host1x_hw_syncpt_load_wait_base(sp->host, sp);
165 return sp->base_val;
169 * Increment syncpoint value from cpu, updating cache
171 int host1x_syncpt_incr(struct host1x_syncpt *sp)
173 return host1x_hw_syncpt_cpu_incr(sp->host, sp);
175 EXPORT_SYMBOL(host1x_syncpt_incr);
178 * Updated sync point form hardware, and returns true if syncpoint is expired,
179 * false if we may need to wait
181 static bool syncpt_load_min_is_expired(struct host1x_syncpt *sp, u32 thresh)
183 host1x_hw_syncpt_load(sp->host, sp);
185 return host1x_syncpt_is_expired(sp, thresh);
189 * Main entrypoint for syncpoint value waits.
191 int host1x_syncpt_wait(struct host1x_syncpt *sp, u32 thresh, long timeout,
192 u32 *value)
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;
200 if (value)
201 *value = 0;
203 /* first check cache */
204 if (host1x_syncpt_is_expired(sp, thresh)) {
205 if (value)
206 *value = host1x_syncpt_load(sp);
208 return 0;
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;
217 goto done;
220 if (!timeout) {
221 err = -EAGAIN;
222 goto done;
225 /* allocate a waiter */
226 waiter = kzalloc(sizeof(*waiter), GFP_KERNEL);
227 if (!waiter) {
228 err = -ENOMEM;
229 goto done;
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;
239 err = -EAGAIN;
240 /* Caller-specified timeout may be impractically low */
241 if (timeout < 0)
242 timeout = LONG_MAX;
244 /* wait for the syncpoint, or timeout, or signal */
245 while (timeout) {
246 long check = min_t(long, SYNCPT_CHECK_PERIOD, timeout);
247 int remain;
249 remain = wait_event_interruptible_timeout(wq,
250 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);
256 err = 0;
258 break;
261 if (remain < 0) {
262 err = remain;
263 break;
266 timeout -= check;
268 if (timeout && check_count <= MAX_STUCK_CHECK_COUNT) {
269 dev_warn(sp->host->dev,
270 "%s: syncpoint id %u (%s) stuck waiting %d, timeout=%ld\n",
271 current->comm, sp->id, sp->name,
272 thresh, timeout);
274 host1x_debug_dump_syncpts(sp->host);
276 if (check_count == MAX_STUCK_CHECK_COUNT)
277 host1x_debug_dump(sp->host);
279 check_count++;
283 host1x_intr_put_ref(sp->host, sp->id, ref);
285 done:
286 return err;
288 EXPORT_SYMBOL(host1x_syncpt_wait);
291 * Returns true if syncpoint is expired, false if we may need to wait
293 bool host1x_syncpt_is_expired(struct host1x_syncpt *sp, u32 thresh)
295 u32 current_val;
296 u32 future_val;
298 smp_rmb();
300 current_val = (u32)atomic_read(&sp->min_val);
301 future_val = (u32)atomic_read(&sp->max_val);
303 /* Note the use of unsigned arithmetic here (mod 1<<32).
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.
310 * Note that c always chases f until it reaches f.
312 * Dtf = (f - t)
313 * Dtc = (c - t)
315 * Consider all cases:
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)
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)
326 * Other cases:
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
332 * So:
333 * Dtf >= Dtc implies EXPIRED (return true)
334 * Dtf < Dtc implies WAIT (return false)
336 * Note: If t is expired then we *cannot* wait on it. We would wait
337 * forever (hang the system).
339 * Note: do NOT get clever and remove the -thresh from both sides. It
340 * is NOT the same.
342 * If future valueis zero, we have a client managed sync point. In that
343 * case we do a direct comparison.
345 if (!host1x_syncpt_client_managed(sp))
346 return future_val - thresh >= current_val - thresh;
347 else
348 return (s32)(current_val - thresh) >= 0;
351 /* remove a wait pointed to by patch_addr */
352 int host1x_syncpt_patch_wait(struct host1x_syncpt *sp, void *patch_addr)
354 return host1x_hw_syncpt_patch_wait(sp->host, sp, patch_addr);
357 int host1x_syncpt_init(struct host1x *host)
359 struct host1x_syncpt_base *bases;
360 struct host1x_syncpt *syncpt;
361 unsigned int i;
363 syncpt = devm_kcalloc(host->dev, host->info->nb_pts, sizeof(*syncpt),
364 GFP_KERNEL);
365 if (!syncpt)
366 return -ENOMEM;
368 bases = devm_kcalloc(host->dev, host->info->nb_bases, sizeof(*bases),
369 GFP_KERNEL);
370 if (!bases)
371 return -ENOMEM;
373 for (i = 0; i < host->info->nb_pts; i++) {
374 syncpt[i].id = i;
375 syncpt[i].host = host;
378 for (i = 0; i < host->info->nb_bases; i++)
379 bases[i].id = i;
381 host->syncpt = syncpt;
382 host->bases = bases;
384 host1x_syncpt_restore(host);
386 /* Allocate sync point to use for clearing waits for expired fences */
387 host->nop_sp = host1x_syncpt_alloc(host, NULL, 0);
388 if (!host->nop_sp)
389 return -ENOMEM;
391 return 0;
394 struct host1x_syncpt *host1x_syncpt_request(struct device *dev,
395 unsigned long flags)
397 struct host1x *host = dev_get_drvdata(dev->parent);
399 return host1x_syncpt_alloc(host, dev, flags);
401 EXPORT_SYMBOL(host1x_syncpt_request);
403 void host1x_syncpt_free(struct host1x_syncpt *sp)
405 if (!sp)
406 return;
408 host1x_syncpt_base_free(sp->base);
409 kfree(sp->name);
410 sp->base = NULL;
411 sp->dev = NULL;
412 sp->name = NULL;
413 sp->client_managed = false;
415 EXPORT_SYMBOL(host1x_syncpt_free);
417 void host1x_syncpt_deinit(struct host1x *host)
419 struct host1x_syncpt *sp = host->syncpt;
420 unsigned int i;
422 for (i = 0; i < host->info->nb_pts; i++, sp++)
423 kfree(sp->name);
427 * Read max. It indicates how many operations there are in queue, either in
428 * channel or in a software thread.
430 u32 host1x_syncpt_read_max(struct host1x_syncpt *sp)
432 smp_rmb();
434 return (u32)atomic_read(&sp->max_val);
436 EXPORT_SYMBOL(host1x_syncpt_read_max);
439 * Read min, which is a shadow of the current sync point value in hardware.
441 u32 host1x_syncpt_read_min(struct host1x_syncpt *sp)
443 smp_rmb();
445 return (u32)atomic_read(&sp->min_val);
447 EXPORT_SYMBOL(host1x_syncpt_read_min);
449 u32 host1x_syncpt_read(struct host1x_syncpt *sp)
451 return host1x_syncpt_load(sp);
453 EXPORT_SYMBOL(host1x_syncpt_read);
455 unsigned int host1x_syncpt_nb_pts(struct host1x *host)
457 return host->info->nb_pts;
460 unsigned int host1x_syncpt_nb_bases(struct host1x *host)
462 return host->info->nb_bases;
465 unsigned int host1x_syncpt_nb_mlocks(struct host1x *host)
467 return host->info->nb_mlocks;
470 struct host1x_syncpt *host1x_syncpt_get(struct host1x *host, unsigned int id)
472 if (host->info->nb_pts < id)
473 return NULL;
475 return host->syncpt + id;
477 EXPORT_SYMBOL(host1x_syncpt_get);
479 struct host1x_syncpt_base *host1x_syncpt_get_base(struct host1x_syncpt *sp)
481 return sp ? sp->base : NULL;
483 EXPORT_SYMBOL(host1x_syncpt_get_base);
485 u32 host1x_syncpt_base_id(struct host1x_syncpt_base *base)
487 return base->id;
489 EXPORT_SYMBOL(host1x_syncpt_base_id);