syncpt.c 10.8 KB
Newer Older
T
Terje Bergstrom 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
/*
 * Tegra host1x Syncpoints
 *
 * Copyright (c) 2010-2013, NVIDIA Corporation.
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms and conditions of the GNU General Public License,
 * version 2, as published by the Free Software Foundation.
 *
 * This program is distributed in the hope it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#include <linux/module.h>
#include <linux/device.h>
#include <linux/slab.h>

#include <trace/events/host1x.h>

#include "syncpt.h"
#include "dev.h"
27
#include "intr.h"
T
Terje Bergstrom 已提交
28
#include "debug.h"
29 30 31

#define SYNCPT_CHECK_PERIOD (2 * HZ)
#define MAX_STUCK_CHECK_COUNT 15
T
Terje Bergstrom 已提交
32

33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
static struct host1x_syncpt_base *
host1x_syncpt_base_request(struct host1x *host)
{
	struct host1x_syncpt_base *bases = host->bases;
	unsigned int i;

	for (i = 0; i < host->info->nb_bases; i++)
		if (!bases[i].requested)
			break;

	if (i >= host->info->nb_bases)
		return NULL;

	bases[i].requested = true;
	return &bases[i];
}

static void host1x_syncpt_base_free(struct host1x_syncpt_base *base)
{
	if (base)
		base->requested = false;
}

56 57 58
static struct host1x_syncpt *host1x_syncpt_alloc(struct host1x *host,
						 struct device *dev,
						 unsigned long flags)
T
Terje Bergstrom 已提交
59 60 61 62 63 64 65
{
	int i;
	struct host1x_syncpt *sp = host->syncpt;
	char *name;

	for (i = 0; i < host->info->nb_pts && sp->name; i++, sp++)
		;
66 67

	if (i >= host->info->nb_pts)
T
Terje Bergstrom 已提交
68 69
		return NULL;

70 71 72 73 74 75
	if (flags & HOST1X_SYNCPT_HAS_BASE) {
		sp->base = host1x_syncpt_base_request(host);
		if (!sp->base)
			return NULL;
	}

76
	name = kasprintf(GFP_KERNEL, "%02u-%s", sp->id,
T
Terje Bergstrom 已提交
77 78 79 80 81 82
			dev ? dev_name(dev) : NULL);
	if (!name)
		return NULL;

	sp->dev = dev;
	sp->name = name;
83 84 85 86 87

	if (flags & HOST1X_SYNCPT_CLIENT_MANAGED)
		sp->client_managed = true;
	else
		sp->client_managed = false;
T
Terje Bergstrom 已提交
88 89 90 91 92 93 94 95

	return sp;
}

u32 host1x_syncpt_id(struct host1x_syncpt *sp)
{
	return sp->id;
}
T
Thierry Reding 已提交
96
EXPORT_SYMBOL(host1x_syncpt_id);
T
Terje Bergstrom 已提交
97 98 99 100 101 102 103 104

/*
 * Updates the value sent to hardware.
 */
u32 host1x_syncpt_incr_max(struct host1x_syncpt *sp, u32 incrs)
{
	return (u32)atomic_add_return(incrs, &sp->max_val);
}
105
EXPORT_SYMBOL(host1x_syncpt_incr_max);
T
Terje Bergstrom 已提交
106 107 108 109 110 111 112

 /*
 * Write cached syncpoint and waitbase values to hardware.
 */
void host1x_syncpt_restore(struct host1x *host)
{
	struct host1x_syncpt *sp_base = host->syncpt;
113
	unsigned int i;
T
Terje Bergstrom 已提交
114 115 116

	for (i = 0; i < host1x_syncpt_nb_pts(host); i++)
		host1x_hw_syncpt_restore(host, sp_base + i);
117

T
Terje Bergstrom 已提交
118 119
	for (i = 0; i < host1x_syncpt_nb_bases(host); i++)
		host1x_hw_syncpt_restore_wait_base(host, sp_base + i);
120

T
Terje Bergstrom 已提交
121 122 123 124 125 126 127 128 129 130
	wmb();
}

/*
 * Update the cached syncpoint and waitbase values by reading them
 * from the registers.
  */
void host1x_syncpt_save(struct host1x *host)
{
	struct host1x_syncpt *sp_base = host->syncpt;
131
	unsigned int i;
T
Terje Bergstrom 已提交
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150

	for (i = 0; i < host1x_syncpt_nb_pts(host); i++) {
		if (host1x_syncpt_client_managed(sp_base + i))
			host1x_hw_syncpt_load(host, sp_base + i);
		else
			WARN_ON(!host1x_syncpt_idle(sp_base + i));
	}

	for (i = 0; i < host1x_syncpt_nb_bases(host); i++)
		host1x_hw_syncpt_load_wait_base(host, sp_base + i);
}

/*
 * Updates the cached syncpoint value by reading a new value from the hardware
 * register
 */
u32 host1x_syncpt_load(struct host1x_syncpt *sp)
{
	u32 val;
151

T
Terje Bergstrom 已提交
152 153 154 155 156 157 158 159 160 161 162 163
	val = host1x_hw_syncpt_load(sp->host, sp);
	trace_host1x_syncpt_load_min(sp->id, val);

	return val;
}

/*
 * Get the current syncpoint base
 */
u32 host1x_syncpt_load_wait_base(struct host1x_syncpt *sp)
{
	host1x_hw_syncpt_load_wait_base(sp->host, sp);
164 165

	return sp->base_val;
T
Terje Bergstrom 已提交
166 167 168 169 170
}

/*
 * Increment syncpoint value from cpu, updating cache
 */
171
int host1x_syncpt_incr(struct host1x_syncpt *sp)
T
Terje Bergstrom 已提交
172
{
173
	return host1x_hw_syncpt_cpu_incr(sp->host, sp);
T
Terje Bergstrom 已提交
174
}
T
Thierry Reding 已提交
175
EXPORT_SYMBOL(host1x_syncpt_incr);
T
Terje Bergstrom 已提交
176

177 178 179 180 181 182 183
/*
 * Updated sync point form hardware, and returns true if syncpoint is expired,
 * false if we may need to wait
 */
static bool syncpt_load_min_is_expired(struct host1x_syncpt *sp, u32 thresh)
{
	host1x_hw_syncpt_load(sp->host, sp);
184

185 186 187 188 189 190 191
	return host1x_syncpt_is_expired(sp, thresh);
}

/*
 * Main entrypoint for syncpoint value waits.
 */
int host1x_syncpt_wait(struct host1x_syncpt *sp, u32 thresh, long timeout,
192
		       u32 *value)
193 194 195 196 197 198 199 200 201 202 203 204 205 206
{
	DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq);
	void *ref;
	struct host1x_waitlist *waiter;
	int err = 0, check_count = 0;
	u32 val;

	if (value)
		*value = 0;

	/* first check cache */
	if (host1x_syncpt_is_expired(sp, thresh)) {
		if (value)
			*value = host1x_syncpt_load(sp);
207

208 209 210 211 212 213 214 215
		return 0;
	}

	/* try to read from register */
	val = host1x_hw_syncpt_load(sp->host, sp);
	if (host1x_syncpt_is_expired(sp, thresh)) {
		if (value)
			*value = val;
216

217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246
		goto done;
	}

	if (!timeout) {
		err = -EAGAIN;
		goto done;
	}

	/* allocate a waiter */
	waiter = kzalloc(sizeof(*waiter), GFP_KERNEL);
	if (!waiter) {
		err = -ENOMEM;
		goto done;
	}

	/* schedule a wakeup when the syncpoint value is reached */
	err = host1x_intr_add_action(sp->host, sp->id, thresh,
				     HOST1X_INTR_ACTION_WAKEUP_INTERRUPTIBLE,
				     &wq, waiter, &ref);
	if (err)
		goto done;

	err = -EAGAIN;
	/* Caller-specified timeout may be impractically low */
	if (timeout < 0)
		timeout = LONG_MAX;

	/* wait for the syncpoint, or timeout, or signal */
	while (timeout) {
		long check = min_t(long, SYNCPT_CHECK_PERIOD, timeout);
247 248 249
		int remain;

		remain = wait_event_interruptible_timeout(wq,
250 251 252 253 254
				syncpt_load_min_is_expired(sp, thresh),
				check);
		if (remain > 0 || host1x_syncpt_is_expired(sp, thresh)) {
			if (value)
				*value = host1x_syncpt_load(sp);
255

256
			err = 0;
257

258 259
			break;
		}
260

261 262 263 264
		if (remain < 0) {
			err = remain;
			break;
		}
265

266
		timeout -= check;
267

268 269
		if (timeout && check_count <= MAX_STUCK_CHECK_COUNT) {
			dev_warn(sp->host->dev,
270
				"%s: syncpoint id %u (%s) stuck waiting %d, timeout=%ld\n",
271 272
				 current->comm, sp->id, sp->name,
				 thresh, timeout);
T
Terje Bergstrom 已提交
273 274

			host1x_debug_dump_syncpts(sp->host);
275

T
Terje Bergstrom 已提交
276 277
			if (check_count == MAX_STUCK_CHECK_COUNT)
				host1x_debug_dump(sp->host);
278

279 280 281
			check_count++;
		}
	}
282

283 284 285 286 287 288 289 290 291 292 293 294 295 296
	host1x_intr_put_ref(sp->host, sp->id, ref);

done:
	return err;
}
EXPORT_SYMBOL(host1x_syncpt_wait);

/*
 * Returns true if syncpoint is expired, false if we may need to wait
 */
bool host1x_syncpt_is_expired(struct host1x_syncpt *sp, u32 thresh)
{
	u32 current_val;
	u32 future_val;
297

298
	smp_rmb();
299

300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350
	current_val = (u32)atomic_read(&sp->min_val);
	future_val = (u32)atomic_read(&sp->max_val);

	/* Note the use of unsigned arithmetic here (mod 1<<32).
	 *
	 * c = current_val = min_val	= the current value of the syncpoint.
	 * t = thresh			= the value we are checking
	 * f = future_val  = max_val	= the value c will reach when all
	 *				  outstanding increments have completed.
	 *
	 * Note that c always chases f until it reaches f.
	 *
	 * Dtf = (f - t)
	 * Dtc = (c - t)
	 *
	 *  Consider all cases:
	 *
	 *	A) .....c..t..f.....	Dtf < Dtc	need to wait
	 *	B) .....c.....f..t..	Dtf > Dtc	expired
	 *	C) ..t..c.....f.....	Dtf > Dtc	expired	   (Dct very large)
	 *
	 *  Any case where f==c: always expired (for any t).	Dtf == Dcf
	 *  Any case where t==c: always expired (for any f).	Dtf >= Dtc (because Dtc==0)
	 *  Any case where t==f!=c: always wait.		Dtf <  Dtc (because Dtf==0,
	 *							Dtc!=0)
	 *
	 *  Other cases:
	 *
	 *	A) .....t..f..c.....	Dtf < Dtc	need to wait
	 *	A) .....f..c..t.....	Dtf < Dtc	need to wait
	 *	A) .....f..t..c.....	Dtf > Dtc	expired
	 *
	 *   So:
	 *	   Dtf >= Dtc implies EXPIRED	(return true)
	 *	   Dtf <  Dtc implies WAIT	(return false)
	 *
	 * Note: If t is expired then we *cannot* wait on it. We would wait
	 * forever (hang the system).
	 *
	 * Note: do NOT get clever and remove the -thresh from both sides. It
	 * is NOT the same.
	 *
	 * If future valueis zero, we have a client managed sync point. In that
	 * case we do a direct comparison.
	 */
	if (!host1x_syncpt_client_managed(sp))
		return future_val - thresh >= current_val - thresh;
	else
		return (s32)(current_val - thresh) >= 0;
}

351 352 353 354 355 356
/* remove a wait pointed to by patch_addr */
int host1x_syncpt_patch_wait(struct host1x_syncpt *sp, void *patch_addr)
{
	return host1x_hw_syncpt_patch_wait(sp->host, sp, patch_addr);
}

T
Terje Bergstrom 已提交
357 358
int host1x_syncpt_init(struct host1x *host)
{
359
	struct host1x_syncpt_base *bases;
T
Terje Bergstrom 已提交
360
	struct host1x_syncpt *syncpt;
361
	unsigned int i;
T
Terje Bergstrom 已提交
362

363
	syncpt = devm_kcalloc(host->dev, host->info->nb_pts, sizeof(*syncpt),
364
			      GFP_KERNEL);
T
Terje Bergstrom 已提交
365 366 367
	if (!syncpt)
		return -ENOMEM;

368
	bases = devm_kcalloc(host->dev, host->info->nb_bases, sizeof(*bases),
369 370 371 372 373
			     GFP_KERNEL);
	if (!bases)
		return -ENOMEM;

	for (i = 0; i < host->info->nb_pts; i++) {
T
Terje Bergstrom 已提交
374 375 376 377
		syncpt[i].id = i;
		syncpt[i].host = host;
	}

378 379 380
	for (i = 0; i < host->info->nb_bases; i++)
		bases[i].id = i;

T
Terje Bergstrom 已提交
381
	host->syncpt = syncpt;
382
	host->bases = bases;
T
Terje Bergstrom 已提交
383 384 385

	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 389 390
	if (!host->nop_sp)
		return -ENOMEM;

T
Terje Bergstrom 已提交
391 392 393 394
	return 0;
}

struct host1x_syncpt *host1x_syncpt_request(struct device *dev,
395
					    unsigned long flags)
T
Terje Bergstrom 已提交
396 397
{
	struct host1x *host = dev_get_drvdata(dev->parent);
398

399
	return host1x_syncpt_alloc(host, dev, flags);
T
Terje Bergstrom 已提交
400
}
T
Thierry Reding 已提交
401
EXPORT_SYMBOL(host1x_syncpt_request);
T
Terje Bergstrom 已提交
402 403 404 405 406 407

void host1x_syncpt_free(struct host1x_syncpt *sp)
{
	if (!sp)
		return;

408
	host1x_syncpt_base_free(sp->base);
T
Terje Bergstrom 已提交
409
	kfree(sp->name);
410
	sp->base = NULL;
T
Terje Bergstrom 已提交
411 412
	sp->dev = NULL;
	sp->name = NULL;
413
	sp->client_managed = false;
T
Terje Bergstrom 已提交
414
}
T
Thierry Reding 已提交
415
EXPORT_SYMBOL(host1x_syncpt_free);
T
Terje Bergstrom 已提交
416 417 418 419

void host1x_syncpt_deinit(struct host1x *host)
{
	struct host1x_syncpt *sp = host->syncpt;
420 421
	unsigned int i;

T
Terje Bergstrom 已提交
422 423 424 425
	for (i = 0; i < host->info->nb_pts; i++, sp++)
		kfree(sp->name);
}

426 427 428
/*
 * Read max. It indicates how many operations there are in queue, either in
 * channel or in a software thread.
429
 */
430 431 432
u32 host1x_syncpt_read_max(struct host1x_syncpt *sp)
{
	smp_rmb();
433

434 435
	return (u32)atomic_read(&sp->max_val);
}
T
Thierry Reding 已提交
436
EXPORT_SYMBOL(host1x_syncpt_read_max);
437 438 439 440 441 442 443

/*
 * Read min, which is a shadow of the current sync point value in hardware.
 */
u32 host1x_syncpt_read_min(struct host1x_syncpt *sp)
{
	smp_rmb();
444

445 446
	return (u32)atomic_read(&sp->min_val);
}
T
Thierry Reding 已提交
447
EXPORT_SYMBOL(host1x_syncpt_read_min);
448

449 450 451 452 453 454
u32 host1x_syncpt_read(struct host1x_syncpt *sp)
{
	return host1x_syncpt_load(sp);
}
EXPORT_SYMBOL(host1x_syncpt_read);

455
unsigned int host1x_syncpt_nb_pts(struct host1x *host)
T
Terje Bergstrom 已提交
456 457 458 459
{
	return host->info->nb_pts;
}

460
unsigned int host1x_syncpt_nb_bases(struct host1x *host)
T
Terje Bergstrom 已提交
461 462 463 464
{
	return host->info->nb_bases;
}

465
unsigned int host1x_syncpt_nb_mlocks(struct host1x *host)
T
Terje Bergstrom 已提交
466 467 468 469
{
	return host->info->nb_mlocks;
}

470
struct host1x_syncpt *host1x_syncpt_get(struct host1x *host, unsigned int id)
T
Terje Bergstrom 已提交
471 472 473
{
	if (host->info->nb_pts < id)
		return NULL;
474

T
Terje Bergstrom 已提交
475 476
	return host->syncpt + id;
}
T
Thierry Reding 已提交
477
EXPORT_SYMBOL(host1x_syncpt_get);
478 479 480 481 482

struct host1x_syncpt_base *host1x_syncpt_get_base(struct host1x_syncpt *sp)
{
	return sp ? sp->base : NULL;
}
T
Thierry Reding 已提交
483
EXPORT_SYMBOL(host1x_syncpt_get_base);
484 485 486 487 488

u32 host1x_syncpt_base_id(struct host1x_syncpt_base *base)
{
	return base->id;
}
T
Thierry Reding 已提交
489
EXPORT_SYMBOL(host1x_syncpt_base_id);