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
/*
 * 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"

30 31 32
#include <linux/ktime.h>
#include <linux/hrtimer.h>

33
#include "nouveau_drv.h"
34
#include "nouveau_ramht.h"
35
#include "nouveau_software.h"
36 37
#include "nouveau_dma.h"

38
#define USE_REFCNT(dev) (nouveau_private(dev)->chipset >= 0x10)
39
#define USE_SEMA(dev) (nouveau_private(dev)->chipset >= 0x17)
40 41 42 43 44 45 46 47

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

	uint32_t sequence;
	bool signalled;
48
	unsigned long timeout;
49 50 51

	void (*work)(void *priv, bool signalled);
	void *priv;
52 53
};

54 55 56 57 58 59
struct nouveau_semaphore {
	struct kref ref;
	struct drm_device *dev;
	struct drm_mm_node *mem;
};

60 61 62 63 64 65 66 67 68 69 70 71
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);

72
	nouveau_channel_ref(NULL, &fence->channel);
73 74 75 76 77 78
	kfree(fence);
}

void
nouveau_fence_update(struct nouveau_channel *chan)
{
79 80
	struct drm_device *dev = chan->dev;
	struct nouveau_fence *tmp, *fence;
81 82
	uint32_t sequence;

83 84
	spin_lock(&chan->fence.lock);

85 86 87 88 89 90 91 92 93 94 95
	/* 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;
	}
96

97
	list_for_each_entry_safe(fence, tmp, &chan->fence.pending, entry) {
98 99 100
		if (fence->sequence > chan->fence.sequence_ack)
			break;

101 102
		fence->signalled = true;
		list_del(&fence->entry);
103
		if (fence->work)
104 105
			fence->work(fence->priv, true);

106 107
		kref_put(&fence->refcount, nouveau_fence_del);
	}
108

109
out:
110
	spin_unlock(&chan->fence.lock);
111 112 113 114 115 116 117 118 119 120 121 122 123
}

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);
124
	nouveau_channel_ref(chan, &fence->channel);
125 126 127 128 129

	if (emit)
		ret = nouveau_fence_emit(fence);

	if (ret)
130
		nouveau_fence_unref(&fence);
131 132 133 134 135 136 137
	*pfence = fence;
	return ret;
}

struct nouveau_channel *
nouveau_fence_channel(struct nouveau_fence *fence)
{
138
	return fence ? nouveau_channel_get_unlocked(fence->channel) : NULL;
139 140 141 142 143 144
}

int
nouveau_fence_emit(struct nouveau_fence *fence)
{
	struct nouveau_channel *chan = fence->channel;
145
	struct drm_device *dev = chan->dev;
B
Ben Skeggs 已提交
146
	struct drm_nouveau_private *dev_priv = dev->dev_private;
147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
	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);
163
	spin_lock(&chan->fence.lock);
164
	list_add_tail(&fence->entry, &chan->fence.pending);
165
	spin_unlock(&chan->fence.lock);
166

B
Ben Skeggs 已提交
167 168
	if (USE_REFCNT(dev)) {
		if (dev_priv->card_type < NV_C0)
169
			BEGIN_NV04(chan, 0, NV10_SUBCHAN_REF_CNT, 1);
B
Ben Skeggs 已提交
170
		else
171
			BEGIN_NVC0(chan, 0, NV10_SUBCHAN_REF_CNT, 1);
B
Ben Skeggs 已提交
172
	} else {
173
		BEGIN_NV04(chan, NvSubSw, 0x0150, 1);
B
Ben Skeggs 已提交
174 175
	}
	OUT_RING (chan, fence->sequence);
176
	FIRE_RING(chan);
177
	fence->timeout = jiffies + 3 * DRM_HZ;
178 179 180 181

	return 0;
}

182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
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);
}

201
void
202
nouveau_fence_unref(struct nouveau_fence **pfence)
203
{
204 205 206
	if (*pfence)
		kref_put(&(*pfence)->refcount, nouveau_fence_del);
	*pfence = NULL;
207 208
}

209 210
struct nouveau_fence *
nouveau_fence_ref(struct nouveau_fence *fence)
211 212
{
	kref_get(&fence->refcount);
213
	return fence;
214 215 216
}

bool
217
nouveau_fence_signalled(struct nouveau_fence *fence)
218 219 220 221 222 223 224 225 226 227 228
{
	struct nouveau_channel *chan = fence->channel;

	if (fence->signalled)
		return true;

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

int
229
nouveau_fence_wait(struct nouveau_fence *fence, bool lazy, bool intr)
230
{
231 232
	unsigned long sleep_time = NSEC_PER_MSEC / 1000;
	ktime_t t;
233 234
	int ret = 0;

235 236
	while (!nouveau_fence_signalled(fence)) {
		if (time_after_eq(jiffies, fence->timeout)) {
237 238 239 240
			ret = -EBUSY;
			break;
		}

241 242
		__set_current_state(intr ? TASK_INTERRUPTIBLE :
					   TASK_UNINTERRUPTIBLE);
243 244 245 246 247 248 249
		if (lazy) {
			t = ktime_set(0, sleep_time);
			schedule_hrtimeout(&t, HRTIMER_MODE_REL);
			sleep_time *= 2;
			if (sleep_time > NSEC_PER_MSEC)
				sleep_time = NSEC_PER_MSEC;
		}
250 251

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

	__set_current_state(TASK_RUNNING);

	return ret;
}

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

	if (!USE_SEMA(dev))
		return NULL;

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

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

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

	if (!sema->mem)
		goto fail;

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

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

static void
302
semaphore_free(struct kref *ref)
303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323
{
	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);

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

static int
328
semaphore_acquire(struct nouveau_channel *chan, struct nouveau_semaphore *sema)
329
{
330 331
	struct drm_nouveau_private *dev_priv = chan->dev->dev_private;
	struct nouveau_fence *fence = NULL;
332
	u64 offset = chan->fence.vma.offset + sema->mem->start;
333 334
	int ret;

335
	if (dev_priv->chipset < 0x84) {
336
		ret = RING_SPACE(chan, 4);
337 338
		if (ret)
			return ret;
339

340
		BEGIN_NV04(chan, 0, NV11_SUBCHAN_DMA_SEMAPHORE, 3);
341
		OUT_RING  (chan, NvSema);
342
		OUT_RING  (chan, offset);
343
		OUT_RING  (chan, 1);
344 345
	} else
	if (dev_priv->chipset < 0xc0) {
346
		ret = RING_SPACE(chan, 7);
347 348 349
		if (ret)
			return ret;

350
		BEGIN_NV04(chan, 0, NV11_SUBCHAN_DMA_SEMAPHORE, 1);
351
		OUT_RING  (chan, chan->vram_handle);
352
		BEGIN_NV04(chan, 0, NV84_SUBCHAN_SEMAPHORE_ADDRESS_HIGH, 4);
353 354
		OUT_RING  (chan, upper_32_bits(offset));
		OUT_RING  (chan, lower_32_bits(offset));
355 356
		OUT_RING  (chan, 1);
		OUT_RING  (chan, 1); /* ACQUIRE_EQ */
357 358 359 360 361
	} else {
		ret = RING_SPACE(chan, 5);
		if (ret)
			return ret;

362
		BEGIN_NVC0(chan, 0, NV84_SUBCHAN_SEMAPHORE_ADDRESS_HIGH, 4);
363 364 365 366
		OUT_RING  (chan, upper_32_bits(offset));
		OUT_RING  (chan, lower_32_bits(offset));
		OUT_RING  (chan, 1);
		OUT_RING  (chan, 0x1001); /* ACQUIRE_EQ */
367 368
	}

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

374 375 376 377 378 379 380 381 382 383 384
	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;
385
	u64 offset = chan->fence.vma.offset + sema->mem->start;
386 387 388
	int ret;

	if (dev_priv->chipset < 0x84) {
389
		ret = RING_SPACE(chan, 5);
390 391 392
		if (ret)
			return ret;

393
		BEGIN_NV04(chan, 0, NV11_SUBCHAN_DMA_SEMAPHORE, 2);
394
		OUT_RING  (chan, NvSema);
395
		OUT_RING  (chan, offset);
396
		BEGIN_NV04(chan, 0, NV11_SUBCHAN_SEMAPHORE_RELEASE, 1);
397
		OUT_RING  (chan, 1);
398 399
	} else
	if (dev_priv->chipset < 0xc0) {
400
		ret = RING_SPACE(chan, 7);
401 402 403
		if (ret)
			return ret;

404
		BEGIN_NV04(chan, 0, NV11_SUBCHAN_DMA_SEMAPHORE, 1);
405
		OUT_RING  (chan, chan->vram_handle);
406
		BEGIN_NV04(chan, 0, NV84_SUBCHAN_SEMAPHORE_ADDRESS_HIGH, 4);
407 408
		OUT_RING  (chan, upper_32_bits(offset));
		OUT_RING  (chan, lower_32_bits(offset));
409 410
		OUT_RING  (chan, 1);
		OUT_RING  (chan, 2); /* RELEASE */
411 412 413 414 415
	} else {
		ret = RING_SPACE(chan, 5);
		if (ret)
			return ret;

416
		BEGIN_NVC0(chan, 0, NV84_SUBCHAN_SEMAPHORE_ADDRESS_HIGH, 4);
417 418 419 420
		OUT_RING  (chan, upper_32_bits(offset));
		OUT_RING  (chan, lower_32_bits(offset));
		OUT_RING  (chan, 1);
		OUT_RING  (chan, 0x1002); /* RELEASE */
421 422
	}

423 424 425 426 427 428 429
	/* 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);
430
	nouveau_fence_unref(&fence);
431 432 433
	return 0;
}

434 435 436 437 438
int
nouveau_fence_sync(struct nouveau_fence *fence,
		   struct nouveau_channel *wchan)
{
	struct nouveau_channel *chan = nouveau_fence_channel(fence);
439 440
	struct drm_device *dev = wchan->dev;
	struct nouveau_semaphore *sema;
441
	int ret = 0;
442

443
	if (likely(!chan || chan == wchan ||
444
		   nouveau_fence_signalled(fence)))
445
		goto out;
446

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

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

464
	/* Make wchan wait until it gets signalled */
465
	ret = semaphore_acquire(wchan, sema);
466
	if (ret)
467
		goto out_unlock;
468

469
	/* Signal the semaphore from chan */
470
	ret = semaphore_release(chan, sema);
471 472

out_unlock:
473
	mutex_unlock(&chan->mutex);
474
out_unref:
475
	kref_put(&sema->ref, semaphore_free);
476 477 478
out:
	if (chan)
		nouveau_channel_put_unlocked(&chan);
479
	return ret;
480 481
}

482
int
483
__nouveau_fence_flush(void *sync_obj, void *sync_arg)
484 485 486 487 488
{
	return 0;
}

int
489
nouveau_fence_channel_init(struct nouveau_channel *chan)
490
{
491 492
	struct drm_device *dev = chan->dev;
	struct drm_nouveau_private *dev_priv = dev->dev_private;
493 494 495
	struct nouveau_gpuobj *obj = NULL;
	int ret;

496 497 498 499
	if (dev_priv->card_type < NV_C0) {
		ret = RING_SPACE(chan, 2);
		if (ret)
			return ret;
500

501
		BEGIN_NV04(chan, NvSubSw, NV01_SUBCHAN_OBJECT, 1);
502 503 504
		OUT_RING  (chan, NvSw);
		FIRE_RING (chan);
	}
505

506
	/* Setup area of memory shared between all channels for x-chan sync */
507
	if (USE_SEMA(dev) && dev_priv->chipset < 0x84) {
508
		struct ttm_mem_reg *mem = &dev_priv->fence.bo->bo.mem;
509

510
		ret = nouveau_gpuobj_dma_new(chan, NV_CLASS_DMA_FROM_MEMORY,
511
					     mem->start << PAGE_SHIFT,
512
					     mem->size, NV_MEM_ACCESS_RW,
513
					     NV_MEM_TARGET_VRAM, &obj);
514 515 516 517 518 519 520
		if (ret)
			return ret;

		ret = nouveau_ramht_insert(chan, NvSema, obj);
		nouveau_gpuobj_ref(NULL, &obj);
		if (ret)
			return ret;
521 522
	} else
	if (USE_SEMA(dev)) {
523 524 525 526 527
		/* map fence bo into channel's vm */
		ret = nouveau_bo_vma_add(dev_priv->fence.bo, chan->vm,
					 &chan->fence.vma);
		if (ret)
			return ret;
528 529
	}

530
	atomic_set(&chan->fence.last_sequence_irq, 0);
531 532 533 534
	return 0;
}

void
535
nouveau_fence_channel_fini(struct nouveau_channel *chan)
536
{
537
	struct drm_nouveau_private *dev_priv = chan->dev->dev_private;
538
	struct nouveau_fence *tmp, *fence;
539

540
	spin_lock(&chan->fence.lock);
541
	list_for_each_entry_safe(fence, tmp, &chan->fence.pending, entry) {
542 543
		fence->signalled = true;
		list_del(&fence->entry);
544 545 546 547

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

548 549
		kref_put(&fence->refcount, nouveau_fence_del);
	}
550
	spin_unlock(&chan->fence.lock);
551 552

	nouveau_bo_vma_del(dev_priv->fence.bo, &chan->fence.vma);
553 554
}

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

	/* Create a shared VRAM heap for cross-channel sync. */
	if (USE_SEMA(dev)) {
564
		ret = nouveau_bo_new(dev, size, 0, TTM_PL_FLAG_VRAM,
D
Dave Airlie 已提交
565
				     0, 0, NULL, &dev_priv->fence.bo);
566 567 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
		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);
	}
}