nouveau_fence.c 14.0 KB
Newer Older
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 27 28 29 30
/*
 * Copyright (C) 2007 Ben Skeggs.
 * All Rights Reserved.
 *
 * Permission is hereby granted, free of charge, to any person obtaining
 * a copy of this software and associated documentation files (the
 * "Software"), to deal in the Software without restriction, including
 * without limitation the rights to use, copy, modify, merge, publish,
 * distribute, sublicense, and/or sell copies of the Software, and to
 * permit persons to whom the Software is furnished to do so, subject to
 * the following conditions:
 *
 * The above copyright notice and this permission notice (including the
 * next paragraph) shall be included in all copies or substantial
 * portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
 * IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE
 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 *
 */

#include "drmP.h"
#include "drm.h"

#include "nouveau_drv.h"
31
#include "nouveau_ramht.h"
32 33
#include "nouveau_dma.h"

34
#define USE_REFCNT(dev) (nouveau_private(dev)->chipset >= 0x10)
B
Ben Skeggs 已提交
35 36
#define USE_SEMA(dev) (nouveau_private(dev)->chipset >= 0x17 && \
		       nouveau_private(dev)->card_type < NV_C0)
37 38 39 40 41 42 43 44

struct nouveau_fence {
	struct nouveau_channel *channel;
	struct kref refcount;
	struct list_head entry;

	uint32_t sequence;
	bool signalled;
45 46 47

	void (*work)(void *priv, bool signalled);
	void *priv;
48 49
};

50 51 52 53 54 55
struct nouveau_semaphore {
	struct kref ref;
	struct drm_device *dev;
	struct drm_mm_node *mem;
};

56 57 58 59 60 61 62 63 64 65 66 67
static inline struct nouveau_fence *
nouveau_fence(void *sync_obj)
{
	return (struct nouveau_fence *)sync_obj;
}

static void
nouveau_fence_del(struct kref *ref)
{
	struct nouveau_fence *fence =
		container_of(ref, struct nouveau_fence, refcount);

68
	nouveau_channel_ref(NULL, &fence->channel);
69 70 71 72 73 74
	kfree(fence);
}

void
nouveau_fence_update(struct nouveau_channel *chan)
{
75 76
	struct drm_device *dev = chan->dev;
	struct nouveau_fence *tmp, *fence;
77 78
	uint32_t sequence;

79 80
	spin_lock(&chan->fence.lock);

81 82 83 84 85 86 87 88 89 90 91
	/* Fetch the last sequence if the channel is still up and running */
	if (likely(!list_empty(&chan->fence.pending))) {
		if (USE_REFCNT(dev))
			sequence = nvchan_rd32(chan, 0x48);
		else
			sequence = atomic_read(&chan->fence.last_sequence_irq);

		if (chan->fence.sequence_ack == sequence)
			goto out;
		chan->fence.sequence_ack = sequence;
	}
92

93
	list_for_each_entry_safe(fence, tmp, &chan->fence.pending, entry) {
94 95 96
		sequence = fence->sequence;
		fence->signalled = true;
		list_del(&fence->entry);
97 98 99 100

		if (unlikely(fence->work))
			fence->work(fence->priv, true);

101 102 103 104 105
		kref_put(&fence->refcount, nouveau_fence_del);

		if (sequence == chan->fence.sequence_ack)
			break;
	}
106
out:
107
	spin_unlock(&chan->fence.lock);
108 109 110 111 112 113 114 115 116 117 118 119 120
}

int
nouveau_fence_new(struct nouveau_channel *chan, struct nouveau_fence **pfence,
		  bool emit)
{
	struct nouveau_fence *fence;
	int ret = 0;

	fence = kzalloc(sizeof(*fence), GFP_KERNEL);
	if (!fence)
		return -ENOMEM;
	kref_init(&fence->refcount);
121
	nouveau_channel_ref(chan, &fence->channel);
122 123 124 125 126

	if (emit)
		ret = nouveau_fence_emit(fence);

	if (ret)
127
		nouveau_fence_unref(&fence);
128 129 130 131 132 133 134
	*pfence = fence;
	return ret;
}

struct nouveau_channel *
nouveau_fence_channel(struct nouveau_fence *fence)
{
135
	return fence ? nouveau_channel_get_unlocked(fence->channel) : NULL;
136 137 138 139 140 141
}

int
nouveau_fence_emit(struct nouveau_fence *fence)
{
	struct nouveau_channel *chan = fence->channel;
142
	struct drm_device *dev = chan->dev;
B
Ben Skeggs 已提交
143
	struct drm_nouveau_private *dev_priv = dev->dev_private;
144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
	int ret;

	ret = RING_SPACE(chan, 2);
	if (ret)
		return ret;

	if (unlikely(chan->fence.sequence == chan->fence.sequence_ack - 1)) {
		nouveau_fence_update(chan);

		BUG_ON(chan->fence.sequence ==
		       chan->fence.sequence_ack - 1);
	}

	fence->sequence = ++chan->fence.sequence;

	kref_get(&fence->refcount);
160
	spin_lock(&chan->fence.lock);
161
	list_add_tail(&fence->entry, &chan->fence.pending);
162
	spin_unlock(&chan->fence.lock);
163

B
Ben Skeggs 已提交
164 165 166 167
	if (USE_REFCNT(dev)) {
		if (dev_priv->card_type < NV_C0)
			BEGIN_RING(chan, NvSubSw, 0x0050, 1);
		else
168
			BEGIN_NVC0(chan, 2, NvSubM2MF, 0x0050, 1);
B
Ben Skeggs 已提交
169 170 171 172
	} else {
		BEGIN_RING(chan, NvSubSw, 0x0150, 1);
	}
	OUT_RING (chan, fence->sequence);
173 174 175 176 177
	FIRE_RING(chan);

	return 0;
}

178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196
void
nouveau_fence_work(struct nouveau_fence *fence,
		   void (*work)(void *priv, bool signalled),
		   void *priv)
{
	BUG_ON(fence->work);

	spin_lock(&fence->channel->fence.lock);

	if (fence->signalled) {
		work(priv, true);
	} else {
		fence->work = work;
		fence->priv = priv;
	}

	spin_unlock(&fence->channel->fence.lock);
}

197
void
198
__nouveau_fence_unref(void **sync_obj)
199 200 201 202 203 204 205 206 207
{
	struct nouveau_fence *fence = nouveau_fence(*sync_obj);

	if (fence)
		kref_put(&fence->refcount, nouveau_fence_del);
	*sync_obj = NULL;
}

void *
208
__nouveau_fence_ref(void *sync_obj)
209 210 211 212 213 214 215 216
{
	struct nouveau_fence *fence = nouveau_fence(sync_obj);

	kref_get(&fence->refcount);
	return sync_obj;
}

bool
217
__nouveau_fence_signalled(void *sync_obj, void *sync_arg)
218 219 220 221 222 223 224 225 226 227 228 229
{
	struct nouveau_fence *fence = nouveau_fence(sync_obj);
	struct nouveau_channel *chan = fence->channel;

	if (fence->signalled)
		return true;

	nouveau_fence_update(chan);
	return fence->signalled;
}

int
230
__nouveau_fence_wait(void *sync_obj, void *sync_arg, bool lazy, bool intr)
231 232
{
	unsigned long timeout = jiffies + (3 * DRM_HZ);
233
	unsigned long sleep_time = jiffies + 1;
234 235 236
	int ret = 0;

	while (1) {
237
		if (__nouveau_fence_signalled(sync_obj, sync_arg))
238 239 240 241 242 243 244
			break;

		if (time_after_eq(jiffies, timeout)) {
			ret = -EBUSY;
			break;
		}

245 246
		__set_current_state(intr ? TASK_INTERRUPTIBLE
			: TASK_UNINTERRUPTIBLE);
247
		if (lazy && time_after_eq(jiffies, sleep_time))
248 249 250
			schedule_timeout(1);

		if (intr && signal_pending(current)) {
B
Ben Skeggs 已提交
251
			ret = -ERESTARTSYS;
252 253 254 255 256 257 258 259 260
			break;
		}
	}

	__set_current_state(TASK_RUNNING);

	return ret;
}

261
static struct nouveau_semaphore *
262
semaphore_alloc(struct drm_device *dev)
263 264 265
{
	struct drm_nouveau_private *dev_priv = dev->dev_private;
	struct nouveau_semaphore *sema;
266 267
	int size = (dev_priv->chipset < 0x84) ? 4 : 16;
	int ret, i;
268 269 270 271 272 273 274 275

	if (!USE_SEMA(dev))
		return NULL;

	sema = kmalloc(sizeof(*sema), GFP_KERNEL);
	if (!sema)
		goto fail;

276 277 278 279
	ret = drm_mm_pre_get(&dev_priv->fence.heap);
	if (ret)
		goto fail;

280
	spin_lock(&dev_priv->fence.lock);
281
	sema->mem = drm_mm_search_free(&dev_priv->fence.heap, size, 0, 0);
282
	if (sema->mem)
283
		sema->mem = drm_mm_get_block_atomic(sema->mem, size, 0);
284 285 286 287 288 289 290
	spin_unlock(&dev_priv->fence.lock);

	if (!sema->mem)
		goto fail;

	kref_init(&sema->ref);
	sema->dev = dev;
291 292
	for (i = sema->mem->start; i < sema->mem->start + size; i += 4)
		nouveau_bo_wr32(dev_priv->fence.bo, i / 4, 0);
293 294 295 296 297 298 299 300

	return sema;
fail:
	kfree(sema);
	return NULL;
}

static void
301
semaphore_free(struct kref *ref)
302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322
{
	struct nouveau_semaphore *sema =
		container_of(ref, struct nouveau_semaphore, ref);
	struct drm_nouveau_private *dev_priv = sema->dev->dev_private;

	spin_lock(&dev_priv->fence.lock);
	drm_mm_put_block(sema->mem);
	spin_unlock(&dev_priv->fence.lock);

	kfree(sema);
}

static void
semaphore_work(void *priv, bool signalled)
{
	struct nouveau_semaphore *sema = priv;
	struct drm_nouveau_private *dev_priv = sema->dev->dev_private;

	if (unlikely(!signalled))
		nouveau_bo_wr32(dev_priv->fence.bo, sema->mem->start / 4, 1);

323
	kref_put(&sema->ref, semaphore_free);
324 325 326
}

static int
327
semaphore_acquire(struct nouveau_channel *chan, struct nouveau_semaphore *sema)
328
{
329 330
	struct drm_nouveau_private *dev_priv = chan->dev->dev_private;
	struct nouveau_fence *fence = NULL;
331 332
	int ret;

333 334 335 336
	if (dev_priv->chipset < 0x84) {
		ret = RING_SPACE(chan, 3);
		if (ret)
			return ret;
337

338 339 340 341
		BEGIN_RING(chan, NvSubSw, NV_SW_SEMAPHORE_OFFSET, 2);
		OUT_RING  (chan, sema->mem->start);
		OUT_RING  (chan, 1);
	} else {
342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357
		/*
		 * NV50 tries to be too smart and context-switch
		 * between semaphores instead of doing a "first come,
		 * first served" strategy like previous cards
		 * do.
		 *
		 * That's bad because the ACQUIRE latency can get as
		 * large as the PFIFO context time slice in the
		 * typical DRI2 case where you have several
		 * outstanding semaphores at the same moment.
		 *
		 * If we're going to ACQUIRE, force the card to
		 * context switch before, just in case the matching
		 * RELEASE is already scheduled to be executed in
		 * another channel.
		 */
358 359 360 361 362 363 364 365 366 367 368 369

		ret = RING_SPACE(chan, 7);
		if (ret)
			return ret;

		BEGIN_RING(chan, NvSubSw, 0x0080, 1);
		OUT_RING  (chan, 0);
		BEGIN_RING(chan, NvSubSw, 0x0010, 4);
		OUT_RING  (chan, upper_32_bits(sema->mem->start));
		OUT_RING  (chan, lower_32_bits(sema->mem->start));
		OUT_RING  (chan, 1);
		OUT_RING  (chan, 1); /* ACQUIRE_EQ */
370 371
	}

372 373 374 375
	/* Delay semaphore destruction until its work is done */
	ret = nouveau_fence_new(chan, &fence, true);
	if (ret)
		return ret;
376

377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399
	kref_get(&sema->ref);
	nouveau_fence_work(fence, semaphore_work, sema);
	nouveau_fence_unref(&fence);
	return 0;
}

static int
semaphore_release(struct nouveau_channel *chan, struct nouveau_semaphore *sema)
{
	struct drm_nouveau_private *dev_priv = chan->dev->dev_private;
	struct nouveau_fence *fence = NULL;
	int ret;

	if (dev_priv->chipset < 0x84) {
		ret = RING_SPACE(chan, 4);
		if (ret)
			return ret;

		BEGIN_RING(chan, NvSubSw, NV_SW_SEMAPHORE_OFFSET, 1);
		OUT_RING  (chan, sema->mem->start);
		BEGIN_RING(chan, NvSubSw, NV_SW_SEMAPHORE_RELEASE, 1);
		OUT_RING  (chan, 1);
	} else {
400
		/*
401 402 403
		 * Emits release and forces the card to context switch right
		 * afterwards, there may be another channel waiting for the
		 * semaphore
404
		 */
405 406 407 408 409 410 411 412 413 414 415 416

		ret = RING_SPACE(chan, 7);
		if (ret)
			return ret;

		BEGIN_RING(chan, NvSubSw, 0x0010, 4);
		OUT_RING  (chan, upper_32_bits(sema->mem->start));
		OUT_RING  (chan, lower_32_bits(sema->mem->start));
		OUT_RING  (chan, 1);
		OUT_RING  (chan, 2); /* RELEASE */
		BEGIN_RING(chan, NvSubSw, 0x0080, 1);
		OUT_RING  (chan, 0);
417 418
	}

419 420 421 422 423 424 425
	/* Delay semaphore destruction until its work is done */
	ret = nouveau_fence_new(chan, &fence, true);
	if (ret)
		return ret;

	kref_get(&sema->ref);
	nouveau_fence_work(fence, semaphore_work, sema);
426
	nouveau_fence_unref(&fence);
427 428 429
	return 0;
}

430 431 432 433 434
int
nouveau_fence_sync(struct nouveau_fence *fence,
		   struct nouveau_channel *wchan)
{
	struct nouveau_channel *chan = nouveau_fence_channel(fence);
435 436
	struct drm_device *dev = wchan->dev;
	struct nouveau_semaphore *sema;
437
	int ret = 0;
438

439
	if (likely(!chan || chan == wchan ||
440
		   nouveau_fence_signalled(fence)))
441
		goto out;
442

443
	sema = semaphore_alloc(dev);
444 445 446
	if (!sema) {
		/* Early card or broken userspace, fall back to
		 * software sync. */
447
		ret = nouveau_fence_wait(fence, true, false);
448
		goto out;
449 450
	}

451
	/* try to take chan's mutex, if we can't take it right away
452 453 454
	 * we have to fallback to software sync to prevent locking
	 * order issues
	 */
455
	if (!mutex_trylock(&chan->mutex)) {
456
		ret = nouveau_fence_wait(fence, true, false);
457
		goto out_unref;
458 459
	}

460
	/* Make wchan wait until it gets signalled */
461
	ret = semaphore_acquire(wchan, sema);
462
	if (ret)
463
		goto out_unlock;
464

465
	/* Signal the semaphore from chan */
466
	ret = semaphore_release(chan, sema);
467 468

out_unlock:
469
	mutex_unlock(&chan->mutex);
470
out_unref:
471
	kref_put(&sema->ref, semaphore_free);
472 473 474
out:
	if (chan)
		nouveau_channel_put_unlocked(&chan);
475
	return ret;
476 477
}

478
int
479
__nouveau_fence_flush(void *sync_obj, void *sync_arg)
480 481 482 483 484
{
	return 0;
}

int
485
nouveau_fence_channel_init(struct nouveau_channel *chan)
486
{
487 488
	struct drm_device *dev = chan->dev;
	struct drm_nouveau_private *dev_priv = dev->dev_private;
489 490 491 492
	struct nouveau_gpuobj *obj = NULL;
	int ret;

	/* Create an NV_SW object for various sync purposes */
493
	ret = nouveau_gpuobj_gr_new(chan, NvSw, NV_SW);
494 495 496
	if (ret)
		return ret;

B
Ben Skeggs 已提交
497 498 499 500 501 502 503 504
	/* we leave subchannel empty for nvc0 */
	if (dev_priv->card_type < NV_C0) {
		ret = RING_SPACE(chan, 2);
		if (ret)
			return ret;
		BEGIN_RING(chan, NvSubSw, 0, 1);
		OUT_RING(chan, NvSw);
	}
505

506 507
	/* Create a DMA object for the shared cross-channel sync area. */
	if (USE_SEMA(dev)) {
508
		struct ttm_mem_reg *mem = &dev_priv->fence.bo->bo.mem;
509 510 511

		ret = nouveau_gpuobj_dma_new(chan, NV_CLASS_DMA_IN_MEMORY,
					     mem->start << PAGE_SHIFT,
512
					     mem->size, NV_MEM_ACCESS_RW,
513
					     NV_MEM_TARGET_VRAM, &obj);
514 515 516 517 518 519 520 521 522 523 524 525 526 527 528
		if (ret)
			return ret;

		ret = nouveau_ramht_insert(chan, NvSema, obj);
		nouveau_gpuobj_ref(NULL, &obj);
		if (ret)
			return ret;

		ret = RING_SPACE(chan, 2);
		if (ret)
			return ret;
		BEGIN_RING(chan, NvSubSw, NV_SW_DMA_SEMAPHORE, 1);
		OUT_RING(chan, NvSema);
	}

529 530
	FIRE_RING(chan);

531 532
	INIT_LIST_HEAD(&chan->fence.pending);
	spin_lock_init(&chan->fence.lock);
533
	atomic_set(&chan->fence.last_sequence_irq, 0);
534

535 536 537 538
	return 0;
}

void
539
nouveau_fence_channel_fini(struct nouveau_channel *chan)
540
{
541
	struct nouveau_fence *tmp, *fence;
542

543 544
	spin_lock(&chan->fence.lock);

545
	list_for_each_entry_safe(fence, tmp, &chan->fence.pending, entry) {
546 547
		fence->signalled = true;
		list_del(&fence->entry);
548 549 550 551

		if (unlikely(fence->work))
			fence->work(fence->priv, false);

552 553
		kref_put(&fence->refcount, nouveau_fence_del);
	}
554 555

	spin_unlock(&chan->fence.lock);
556 557
}

558 559 560 561
int
nouveau_fence_init(struct drm_device *dev)
{
	struct drm_nouveau_private *dev_priv = dev->dev_private;
562
	int size = (dev_priv->chipset < 0x84) ? 4096 : 16384;
563 564 565 566
	int ret;

	/* Create a shared VRAM heap for cross-channel sync. */
	if (USE_SEMA(dev)) {
567
		ret = nouveau_bo_new(dev, NULL, size, 0, TTM_PL_FLAG_VRAM,
568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606
				     0, 0, false, true, &dev_priv->fence.bo);
		if (ret)
			return ret;

		ret = nouveau_bo_pin(dev_priv->fence.bo, TTM_PL_FLAG_VRAM);
		if (ret)
			goto fail;

		ret = nouveau_bo_map(dev_priv->fence.bo);
		if (ret)
			goto fail;

		ret = drm_mm_init(&dev_priv->fence.heap, 0,
				  dev_priv->fence.bo->bo.mem.size);
		if (ret)
			goto fail;

		spin_lock_init(&dev_priv->fence.lock);
	}

	return 0;
fail:
	nouveau_bo_unmap(dev_priv->fence.bo);
	nouveau_bo_ref(NULL, &dev_priv->fence.bo);
	return ret;
}

void
nouveau_fence_fini(struct drm_device *dev)
{
	struct drm_nouveau_private *dev_priv = dev->dev_private;

	if (USE_SEMA(dev)) {
		drm_mm_takedown(&dev_priv->fence.heap);
		nouveau_bo_unmap(dev_priv->fence.bo);
		nouveau_bo_unpin(dev_priv->fence.bo);
		nouveau_bo_ref(NULL, &dev_priv->fence.bo);
	}
}