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
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>
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
;
39 for (i
= 0; i
< host
->info
->nb_bases
; i
++)
40 if (!bases
[i
].requested
)
43 if (i
>= host
->info
->nb_bases
)
46 bases
[i
].requested
= true;
50 static void host1x_syncpt_base_free(struct host1x_syncpt_base
*base
)
53 base
->requested
= false;
56 static struct host1x_syncpt
*host1x_syncpt_alloc(struct host1x
*host
,
61 struct host1x_syncpt
*sp
= host
->syncpt
;
64 for (i
= 0; i
< host
->info
->nb_pts
&& sp
->name
; i
++, sp
++)
67 if (i
>= host
->info
->nb_pts
)
70 if (flags
& HOST1X_SYNCPT_HAS_BASE
) {
71 sp
->base
= host1x_syncpt_base_request(host
);
76 name
= kasprintf(GFP_KERNEL
, "%02d-%s", sp
->id
,
77 dev
? dev_name(dev
) : NULL
);
84 if (flags
& HOST1X_SYNCPT_CLIENT_MANAGED
)
85 sp
->client_managed
= true;
87 sp
->client_managed
= false;
92 u32
host1x_syncpt_id(struct host1x_syncpt
*sp
)
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
;
115 for (i
= 0; i
< host1x_syncpt_nb_pts(host
); i
++)
116 host1x_hw_syncpt_restore(host
, sp_base
+ i
);
117 for (i
= 0; i
< host1x_syncpt_nb_bases(host
); i
++)
118 host1x_hw_syncpt_restore_wait_base(host
, sp_base
+ i
);
123 * Update the cached syncpoint and waitbase values by reading them
124 * from the registers.
126 void host1x_syncpt_save(struct host1x
*host
)
128 struct host1x_syncpt
*sp_base
= host
->syncpt
;
131 for (i
= 0; i
< host1x_syncpt_nb_pts(host
); i
++) {
132 if (host1x_syncpt_client_managed(sp_base
+ i
))
133 host1x_hw_syncpt_load(host
, sp_base
+ i
);
135 WARN_ON(!host1x_syncpt_idle(sp_base
+ i
));
138 for (i
= 0; i
< host1x_syncpt_nb_bases(host
); i
++)
139 host1x_hw_syncpt_load_wait_base(host
, sp_base
+ i
);
143 * Updates the cached syncpoint value by reading a new value from the hardware
146 u32
host1x_syncpt_load(struct host1x_syncpt
*sp
)
149 val
= host1x_hw_syncpt_load(sp
->host
, sp
);
150 trace_host1x_syncpt_load_min(sp
->id
, val
);
156 * Get the current syncpoint base
158 u32
host1x_syncpt_load_wait_base(struct host1x_syncpt
*sp
)
161 host1x_hw_syncpt_load_wait_base(sp
->host
, sp
);
167 * Increment syncpoint value from cpu, updating cache
169 int host1x_syncpt_incr(struct host1x_syncpt
*sp
)
171 return host1x_hw_syncpt_cpu_incr(sp
->host
, sp
);
173 EXPORT_SYMBOL(host1x_syncpt_incr
);
176 * Updated sync point form hardware, and returns true if syncpoint is expired,
177 * false if we may need to wait
179 static bool syncpt_load_min_is_expired(struct host1x_syncpt
*sp
, u32 thresh
)
181 host1x_hw_syncpt_load(sp
->host
, sp
);
182 return host1x_syncpt_is_expired(sp
, thresh
);
186 * Main entrypoint for syncpoint value waits.
188 int host1x_syncpt_wait(struct host1x_syncpt
*sp
, u32 thresh
, long timeout
,
191 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq
);
193 struct host1x_waitlist
*waiter
;
194 int err
= 0, check_count
= 0;
200 /* first check cache */
201 if (host1x_syncpt_is_expired(sp
, thresh
)) {
203 *value
= host1x_syncpt_load(sp
);
207 /* try to read from register */
208 val
= host1x_hw_syncpt_load(sp
->host
, sp
);
209 if (host1x_syncpt_is_expired(sp
, thresh
)) {
220 /* allocate a waiter */
221 waiter
= kzalloc(sizeof(*waiter
), GFP_KERNEL
);
227 /* schedule a wakeup when the syncpoint value is reached */
228 err
= host1x_intr_add_action(sp
->host
, sp
->id
, thresh
,
229 HOST1X_INTR_ACTION_WAKEUP_INTERRUPTIBLE
,
235 /* Caller-specified timeout may be impractically low */
239 /* wait for the syncpoint, or timeout, or signal */
241 long check
= min_t(long, SYNCPT_CHECK_PERIOD
, timeout
);
242 int remain
= wait_event_interruptible_timeout(wq
,
243 syncpt_load_min_is_expired(sp
, thresh
),
245 if (remain
> 0 || host1x_syncpt_is_expired(sp
, thresh
)) {
247 *value
= host1x_syncpt_load(sp
);
256 if (timeout
&& check_count
<= MAX_STUCK_CHECK_COUNT
) {
257 dev_warn(sp
->host
->dev
,
258 "%s: syncpoint id %d (%s) stuck waiting %d, timeout=%ld\n",
259 current
->comm
, sp
->id
, sp
->name
,
262 host1x_debug_dump_syncpts(sp
->host
);
263 if (check_count
== MAX_STUCK_CHECK_COUNT
)
264 host1x_debug_dump(sp
->host
);
268 host1x_intr_put_ref(sp
->host
, sp
->id
, ref
);
273 EXPORT_SYMBOL(host1x_syncpt_wait
);
276 * Returns true if syncpoint is expired, false if we may need to wait
278 bool host1x_syncpt_is_expired(struct host1x_syncpt
*sp
, u32 thresh
)
283 current_val
= (u32
)atomic_read(&sp
->min_val
);
284 future_val
= (u32
)atomic_read(&sp
->max_val
);
286 /* Note the use of unsigned arithmetic here (mod 1<<32).
288 * c = current_val = min_val = the current value of the syncpoint.
289 * t = thresh = the value we are checking
290 * f = future_val = max_val = the value c will reach when all
291 * outstanding increments have completed.
293 * Note that c always chases f until it reaches f.
298 * Consider all cases:
300 * A) .....c..t..f..... Dtf < Dtc need to wait
301 * B) .....c.....f..t.. Dtf > Dtc expired
302 * C) ..t..c.....f..... Dtf > Dtc expired (Dct very large)
304 * Any case where f==c: always expired (for any t). Dtf == Dcf
305 * Any case where t==c: always expired (for any f). Dtf >= Dtc (because Dtc==0)
306 * Any case where t==f!=c: always wait. Dtf < Dtc (because Dtf==0,
311 * A) .....t..f..c..... Dtf < Dtc need to wait
312 * A) .....f..c..t..... Dtf < Dtc need to wait
313 * A) .....f..t..c..... Dtf > Dtc expired
316 * Dtf >= Dtc implies EXPIRED (return true)
317 * Dtf < Dtc implies WAIT (return false)
319 * Note: If t is expired then we *cannot* wait on it. We would wait
320 * forever (hang the system).
322 * Note: do NOT get clever and remove the -thresh from both sides. It
325 * If future valueis zero, we have a client managed sync point. In that
326 * case we do a direct comparison.
328 if (!host1x_syncpt_client_managed(sp
))
329 return future_val
- thresh
>= current_val
- thresh
;
331 return (s32
)(current_val
- thresh
) >= 0;
334 /* remove a wait pointed to by patch_addr */
335 int host1x_syncpt_patch_wait(struct host1x_syncpt
*sp
, void *patch_addr
)
337 return host1x_hw_syncpt_patch_wait(sp
->host
, sp
, patch_addr
);
340 int host1x_syncpt_init(struct host1x
*host
)
342 struct host1x_syncpt_base
*bases
;
343 struct host1x_syncpt
*syncpt
;
346 syncpt
= devm_kzalloc(host
->dev
, sizeof(*syncpt
) * host
->info
->nb_pts
,
351 bases
= devm_kzalloc(host
->dev
, sizeof(*bases
) * host
->info
->nb_bases
,
356 for (i
= 0; i
< host
->info
->nb_pts
; i
++) {
358 syncpt
[i
].host
= host
;
361 for (i
= 0; i
< host
->info
->nb_bases
; i
++)
364 host
->syncpt
= syncpt
;
367 host1x_syncpt_restore(host
);
369 /* Allocate sync point to use for clearing waits for expired fences */
370 host
->nop_sp
= host1x_syncpt_alloc(host
, NULL
, 0);
377 struct host1x_syncpt
*host1x_syncpt_request(struct device
*dev
,
380 struct host1x
*host
= dev_get_drvdata(dev
->parent
);
381 return host1x_syncpt_alloc(host
, dev
, flags
);
383 EXPORT_SYMBOL(host1x_syncpt_request
);
385 void host1x_syncpt_free(struct host1x_syncpt
*sp
)
390 host1x_syncpt_base_free(sp
->base
);
395 sp
->client_managed
= false;
397 EXPORT_SYMBOL(host1x_syncpt_free
);
399 void host1x_syncpt_deinit(struct host1x
*host
)
402 struct host1x_syncpt
*sp
= host
->syncpt
;
403 for (i
= 0; i
< host
->info
->nb_pts
; i
++, sp
++)
408 * Read max. It indicates how many operations there are in queue, either in
409 * channel or in a software thread.
411 u32
host1x_syncpt_read_max(struct host1x_syncpt
*sp
)
414 return (u32
)atomic_read(&sp
->max_val
);
416 EXPORT_SYMBOL(host1x_syncpt_read_max
);
419 * Read min, which is a shadow of the current sync point value in hardware.
421 u32
host1x_syncpt_read_min(struct host1x_syncpt
*sp
)
424 return (u32
)atomic_read(&sp
->min_val
);
426 EXPORT_SYMBOL(host1x_syncpt_read_min
);
428 u32
host1x_syncpt_read(struct host1x_syncpt
*sp
)
430 return host1x_syncpt_load(sp
);
432 EXPORT_SYMBOL(host1x_syncpt_read
);
434 int host1x_syncpt_nb_pts(struct host1x
*host
)
436 return host
->info
->nb_pts
;
439 int host1x_syncpt_nb_bases(struct host1x
*host
)
441 return host
->info
->nb_bases
;
444 int host1x_syncpt_nb_mlocks(struct host1x
*host
)
446 return host
->info
->nb_mlocks
;
449 struct host1x_syncpt
*host1x_syncpt_get(struct host1x
*host
, u32 id
)
451 if (host
->info
->nb_pts
< id
)
453 return host
->syncpt
+ id
;
455 EXPORT_SYMBOL(host1x_syncpt_get
);
457 struct host1x_syncpt_base
*host1x_syncpt_get_base(struct host1x_syncpt
*sp
)
459 return sp
? sp
->base
: NULL
;
461 EXPORT_SYMBOL(host1x_syncpt_get_base
);
463 u32
host1x_syncpt_base_id(struct host1x_syncpt_base
*base
)
467 EXPORT_SYMBOL(host1x_syncpt_base_id
);