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
, "%02u-%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
);
118 for (i
= 0; i
< host1x_syncpt_nb_bases(host
); i
++)
119 host1x_hw_syncpt_restore_wait_base(host
, sp_base
+ i
);
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
;
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
);
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
148 u32
host1x_syncpt_load(struct host1x_syncpt
*sp
)
152 val
= host1x_hw_syncpt_load(sp
->host
, sp
);
153 trace_host1x_syncpt_load_min(sp
->id
, 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
);
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
,
194 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq
);
196 struct host1x_waitlist
*waiter
;
197 int err
= 0, check_count
= 0;
203 /* first check cache */
204 if (host1x_syncpt_is_expired(sp
, thresh
)) {
206 *value
= host1x_syncpt_load(sp
);
211 /* try to read from register */
212 val
= host1x_hw_syncpt_load(sp
->host
, sp
);
213 if (host1x_syncpt_is_expired(sp
, thresh
)) {
225 /* allocate a waiter */
226 waiter
= kzalloc(sizeof(*waiter
), GFP_KERNEL
);
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
,
240 /* Caller-specified timeout may be impractically low */
244 /* wait for the syncpoint, or timeout, or signal */
246 long check
= min_t(long, SYNCPT_CHECK_PERIOD
, timeout
);
249 remain
= wait_event_interruptible_timeout(wq
,
250 syncpt_load_min_is_expired(sp
, thresh
),
252 if (remain
> 0 || host1x_syncpt_is_expired(sp
, thresh
)) {
254 *value
= host1x_syncpt_load(sp
);
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
,
274 host1x_debug_dump_syncpts(sp
->host
);
276 if (check_count
== MAX_STUCK_CHECK_COUNT
)
277 host1x_debug_dump(sp
->host
);
283 host1x_intr_put_ref(sp
->host
, sp
->id
, ref
);
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
)
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.
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,
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
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
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
;
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
;
363 syncpt
= devm_kcalloc(host
->dev
, host
->info
->nb_pts
, sizeof(*syncpt
),
368 bases
= devm_kcalloc(host
->dev
, host
->info
->nb_bases
, sizeof(*bases
),
373 for (i
= 0; i
< host
->info
->nb_pts
; i
++) {
375 syncpt
[i
].host
= host
;
378 for (i
= 0; i
< host
->info
->nb_bases
; i
++)
381 host
->syncpt
= syncpt
;
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);
394 struct host1x_syncpt
*host1x_syncpt_request(struct device
*dev
,
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
)
408 host1x_syncpt_base_free(sp
->base
);
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
;
422 for (i
= 0; i
< host
->info
->nb_pts
; i
++, sp
++)
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
)
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
)
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
)
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
)
489 EXPORT_SYMBOL(host1x_syncpt_base_id
);