nouveau_gem.c 21.2 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
/*
 * Copyright (C) 2008 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.
 *
 */
D
Dave Airlie 已提交
26
#include <linux/dma-buf.h>
27 28 29 30
#include "drmP.h"
#include "drm.h"

#include "nouveau_drv.h"
31
#include <nouveau_drm.h>
32
#include "nouveau_dma.h"
33
#include "nouveau_fence.h"
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57

#define nouveau_gem_pushbuf_sync(chan) 0

int
nouveau_gem_object_new(struct drm_gem_object *gem)
{
	return 0;
}

void
nouveau_gem_object_del(struct drm_gem_object *gem)
{
	struct nouveau_bo *nvbo = gem->driver_private;
	struct ttm_buffer_object *bo = &nvbo->bo;

	if (!nvbo)
		return;
	nvbo->gem = NULL;

	if (unlikely(nvbo->pin_refcnt)) {
		nvbo->pin_refcnt = 1;
		nouveau_bo_unpin(nvbo);
	}

D
Dave Airlie 已提交
58 59 60
	if (gem->import_attach)
		drm_prime_gem_destroy(gem, nvbo->bo.sg);

61
	ttm_bo_unref(&bo);
62 63 64

	drm_gem_object_release(gem);
	kfree(gem);
65 66
}

67 68 69 70
int
nouveau_gem_object_open(struct drm_gem_object *gem, struct drm_file *file_priv)
{
	struct nouveau_fpriv *fpriv = nouveau_fpriv(file_priv);
71 72 73
	struct nouveau_bo *nvbo = nouveau_gem_object(gem);
	struct nouveau_vma *vma;
	int ret;
74 75 76 77

	if (!fpriv->vm)
		return 0;

78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
	ret = ttm_bo_reserve(&nvbo->bo, false, false, false, 0);
	if (ret)
		return ret;

	vma = nouveau_bo_vma_find(nvbo, fpriv->vm);
	if (!vma) {
		vma = kzalloc(sizeof(*vma), GFP_KERNEL);
		if (!vma) {
			ret = -ENOMEM;
			goto out;
		}

		ret = nouveau_bo_vma_add(nvbo, fpriv->vm, vma);
		if (ret) {
			kfree(vma);
			goto out;
		}
	} else {
		vma->refcount++;
	}

out:
	ttm_bo_unreserve(&nvbo->bo);
	return ret;
102 103 104 105 106 107
}

void
nouveau_gem_object_close(struct drm_gem_object *gem, struct drm_file *file_priv)
{
	struct nouveau_fpriv *fpriv = nouveau_fpriv(file_priv);
108 109 110
	struct nouveau_bo *nvbo = nouveau_gem_object(gem);
	struct nouveau_vma *vma;
	int ret;
111 112 113

	if (!fpriv->vm)
		return;
114 115 116 117 118 119 120

	ret = ttm_bo_reserve(&nvbo->bo, false, false, false, 0);
	if (ret)
		return;

	vma = nouveau_bo_vma_find(nvbo, fpriv->vm);
	if (vma) {
121
		if (--vma->refcount == 0) {
122
			nouveau_bo_vma_del(nvbo, vma);
123 124
			kfree(vma);
		}
125 126
	}
	ttm_bo_unreserve(&nvbo->bo);
127 128
}

129
int
130 131 132
nouveau_gem_new(struct drm_device *dev, int size, int align, uint32_t domain,
		uint32_t tile_mode, uint32_t tile_flags,
		struct nouveau_bo **pnvbo)
133
{
134
	struct drm_nouveau_private *dev_priv = dev->dev_private;
135
	struct nouveau_bo *nvbo;
136
	u32 flags = 0;
137 138
	int ret;

139 140 141 142 143 144 145
	if (domain & NOUVEAU_GEM_DOMAIN_VRAM)
		flags |= TTM_PL_FLAG_VRAM;
	if (domain & NOUVEAU_GEM_DOMAIN_GART)
		flags |= TTM_PL_FLAG_TT;
	if (!flags || domain & NOUVEAU_GEM_DOMAIN_CPU)
		flags |= TTM_PL_FLAG_SYSTEM;

146
	ret = nouveau_bo_new(dev, size, align, flags, tile_mode,
D
Dave Airlie 已提交
147
			     tile_flags, NULL, pnvbo);
148 149 150 151
	if (ret)
		return ret;
	nvbo = *pnvbo;

152 153 154 155 156 157 158 159 160
	/* we restrict allowed domains on nv50+ to only the types
	 * that were requested at creation time.  not possibly on
	 * earlier chips without busting the ABI.
	 */
	nvbo->valid_domains = NOUVEAU_GEM_DOMAIN_VRAM |
			      NOUVEAU_GEM_DOMAIN_GART;
	if (dev_priv->card_type >= NV_50)
		nvbo->valid_domains &= domain;

161 162 163 164 165 166
	nvbo->gem = drm_gem_object_alloc(dev, nvbo->bo.mem.size);
	if (!nvbo->gem) {
		nouveau_bo_ref(NULL, pnvbo);
		return -ENOMEM;
	}

J
Jan Engelhardt 已提交
167
	nvbo->bo.persistent_swap_storage = nvbo->gem->filp;
168 169 170 171 172
	nvbo->gem->driver_private = nvbo;
	return 0;
}

static int
173 174
nouveau_gem_info(struct drm_file *file_priv, struct drm_gem_object *gem,
		 struct drm_nouveau_gem_info *rep)
175
{
176
	struct nouveau_fpriv *fpriv = nouveau_fpriv(file_priv);
177
	struct nouveau_bo *nvbo = nouveau_gem_object(gem);
178
	struct nouveau_vma *vma;
179 180 181 182 183 184

	if (nvbo->bo.mem.mem_type == TTM_PL_TT)
		rep->domain = NOUVEAU_GEM_DOMAIN_GART;
	else
		rep->domain = NOUVEAU_GEM_DOMAIN_VRAM;

185 186 187 188 189 190 191 192 193
	rep->offset = nvbo->bo.offset;
	if (fpriv->vm) {
		vma = nouveau_bo_vma_find(nvbo, fpriv->vm);
		if (!vma)
			return -EINVAL;

		rep->offset = vma->offset;
	}

194
	rep->size = nvbo->bo.mem.num_pages << PAGE_SHIFT;
195
	rep->map_handle = nvbo->bo.addr_space_offset;
196 197 198 199 200 201 202 203 204 205 206 207 208 209
	rep->tile_mode = nvbo->tile_mode;
	rep->tile_flags = nvbo->tile_flags;
	return 0;
}

int
nouveau_gem_ioctl_new(struct drm_device *dev, void *data,
		      struct drm_file *file_priv)
{
	struct drm_nouveau_private *dev_priv = dev->dev_private;
	struct drm_nouveau_gem_new *req = data;
	struct nouveau_bo *nvbo = NULL;
	int ret = 0;

210
	dev_priv->ttm.bdev.dev_mapping = dev->dev_mapping;
211

212
	if (!nvfb_flags_valid(dev, req->info.tile_flags)) {
213
		NV_ERROR(dev, "bad page flags: 0x%08x\n", req->info.tile_flags);
214
		return -EINVAL;
215
	}
216

217
	ret = nouveau_gem_new(dev, req->info.size, req->align,
218 219
			      req->info.domain, req->info.tile_mode,
			      req->info.tile_flags, &nvbo);
220 221 222 223
	if (ret)
		return ret;

	ret = drm_gem_handle_create(file_priv, nvbo->gem, &req->info.handle);
224 225 226 227 228 229
	if (ret == 0) {
		ret = nouveau_gem_info(file_priv, nvbo->gem, &req->info);
		if (ret)
			drm_gem_handle_delete(file_priv, req->info.handle);
	}

230 231
	/* drop reference from allocate - handle holds it now */
	drm_gem_object_unreference_unlocked(nvbo->gem);
232 233 234 235 236 237 238 239 240
	return ret;
}

static int
nouveau_gem_set_domain(struct drm_gem_object *gem, uint32_t read_domains,
		       uint32_t write_domains, uint32_t valid_domains)
{
	struct nouveau_bo *nvbo = gem->driver_private;
	struct ttm_buffer_object *bo = &nvbo->bo;
241
	uint32_t domains = valid_domains & nvbo->valid_domains &
242 243
		(write_domains ? write_domains : read_domains);
	uint32_t pref_flags = 0, valid_flags = 0;
244

245
	if (!domains)
246 247
		return -EINVAL;

248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268
	if (valid_domains & NOUVEAU_GEM_DOMAIN_VRAM)
		valid_flags |= TTM_PL_FLAG_VRAM;

	if (valid_domains & NOUVEAU_GEM_DOMAIN_GART)
		valid_flags |= TTM_PL_FLAG_TT;

	if ((domains & NOUVEAU_GEM_DOMAIN_VRAM) &&
	    bo->mem.mem_type == TTM_PL_VRAM)
		pref_flags |= TTM_PL_FLAG_VRAM;

	else if ((domains & NOUVEAU_GEM_DOMAIN_GART) &&
		 bo->mem.mem_type == TTM_PL_TT)
		pref_flags |= TTM_PL_FLAG_TT;

	else if (domains & NOUVEAU_GEM_DOMAIN_VRAM)
		pref_flags |= TTM_PL_FLAG_VRAM;

	else
		pref_flags |= TTM_PL_FLAG_TT;

	nouveau_bo_placement_set(nvbo, pref_flags, valid_flags);
269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286

	return 0;
}

struct validate_op {
	struct list_head vram_list;
	struct list_head gart_list;
	struct list_head both_list;
};

static void
validate_fini_list(struct list_head *list, struct nouveau_fence *fence)
{
	struct list_head *entry, *tmp;
	struct nouveau_bo *nvbo;

	list_for_each_safe(entry, tmp, list) {
		nvbo = list_entry(entry, struct nouveau_bo, entry);
287 288

		nouveau_bo_fence(nvbo, fence);
289

290 291 292 293 294
		if (unlikely(nvbo->validate_mapped)) {
			ttm_bo_kunmap(&nvbo->kmap);
			nvbo->validate_mapped = false;
		}

295 296 297
		list_del(&nvbo->entry);
		nvbo->reserved_by = NULL;
		ttm_bo_unreserve(&nvbo->bo);
298
		drm_gem_object_unreference_unlocked(nvbo->gem);
299 300 301 302
	}
}

static void
303
validate_fini(struct validate_op *op, struct nouveau_fence* fence)
304
{
305 306 307
	validate_fini_list(&op->vram_list, fence);
	validate_fini_list(&op->gart_list, fence);
	validate_fini_list(&op->both_list, fence);
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
}

static int
validate_init(struct nouveau_channel *chan, struct drm_file *file_priv,
	      struct drm_nouveau_gem_pushbuf_bo *pbbo,
	      int nr_buffers, struct validate_op *op)
{
	struct drm_device *dev = chan->dev;
	struct drm_nouveau_private *dev_priv = dev->dev_private;
	uint32_t sequence;
	int trycnt = 0;
	int ret, i;

	sequence = atomic_add_return(1, &dev_priv->ttm.validate_sequence);
retry:
	if (++trycnt > 100000) {
		NV_ERROR(dev, "%s failed and gave up.\n", __func__);
		return -EINVAL;
	}

	for (i = 0; i < nr_buffers; i++) {
		struct drm_nouveau_gem_pushbuf_bo *b = &pbbo[i];
		struct drm_gem_object *gem;
		struct nouveau_bo *nvbo;

		gem = drm_gem_object_lookup(dev, file_priv, b->handle);
		if (!gem) {
			NV_ERROR(dev, "Unknown handle 0x%08x\n", b->handle);
			validate_fini(op, NULL);
337
			return -ENOENT;
338 339 340 341 342 343
		}
		nvbo = gem->driver_private;

		if (nvbo->reserved_by && nvbo->reserved_by == file_priv) {
			NV_ERROR(dev, "multiple instances of buffer %d on "
				      "validation list\n", b->handle);
344
			drm_gem_object_unreference_unlocked(gem);
345 346 347 348
			validate_fini(op, NULL);
			return -EINVAL;
		}

349
		ret = ttm_bo_reserve(&nvbo->bo, true, false, true, sequence);
350 351
		if (ret) {
			validate_fini(op, NULL);
352 353
			if (unlikely(ret == -EAGAIN))
				ret = ttm_bo_wait_unreserved(&nvbo->bo, true);
354
			drm_gem_object_unreference_unlocked(gem);
355 356 357
			if (unlikely(ret)) {
				if (ret != -ERESTARTSYS)
					NV_ERROR(dev, "fail reserve\n");
358
				return ret;
359
			}
360 361 362
			goto retry;
		}

363
		b->user_priv = (uint64_t)(unsigned long)nvbo;
364 365 366 367 368 369 370 371 372 373 374 375 376 377
		nvbo->reserved_by = file_priv;
		nvbo->pbbo_index = i;
		if ((b->valid_domains & NOUVEAU_GEM_DOMAIN_VRAM) &&
		    (b->valid_domains & NOUVEAU_GEM_DOMAIN_GART))
			list_add_tail(&nvbo->entry, &op->both_list);
		else
		if (b->valid_domains & NOUVEAU_GEM_DOMAIN_VRAM)
			list_add_tail(&nvbo->entry, &op->vram_list);
		else
		if (b->valid_domains & NOUVEAU_GEM_DOMAIN_GART)
			list_add_tail(&nvbo->entry, &op->gart_list);
		else {
			NV_ERROR(dev, "invalid valid domains: 0x%08x\n",
				 b->valid_domains);
378
			list_add_tail(&nvbo->entry, &op->both_list);
379 380 381 382 383 384 385 386
			validate_fini(op, NULL);
			return -EINVAL;
		}
	}

	return 0;
}

387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405
static int
validate_sync(struct nouveau_channel *chan, struct nouveau_bo *nvbo)
{
	struct nouveau_fence *fence = NULL;
	int ret = 0;

	spin_lock(&nvbo->bo.bdev->fence_lock);
	if (nvbo->bo.sync_obj)
		fence = nouveau_fence_ref(nvbo->bo.sync_obj);
	spin_unlock(&nvbo->bo.bdev->fence_lock);

	if (fence) {
		ret = nouveau_fence_sync(fence, chan);
		nouveau_fence_unref(&fence);
	}

	return ret;
}

406 407 408 409
static int
validate_list(struct nouveau_channel *chan, struct list_head *list,
	      struct drm_nouveau_gem_pushbuf_bo *pbbo, uint64_t user_pbbo_ptr)
{
410
	struct drm_nouveau_private *dev_priv = chan->dev->dev_private;
411 412
	struct drm_nouveau_gem_pushbuf_bo __user *upbbo =
				(void __force __user *)(uintptr_t)user_pbbo_ptr;
413
	struct drm_device *dev = chan->dev;
414 415 416 417 418 419
	struct nouveau_bo *nvbo;
	int ret, relocs = 0;

	list_for_each_entry(nvbo, list, entry) {
		struct drm_nouveau_gem_pushbuf_bo *b = &pbbo[nvbo->pbbo_index];

420
		ret = validate_sync(chan, nvbo);
421 422 423
		if (unlikely(ret)) {
			NV_ERROR(dev, "fail pre-validate sync\n");
			return ret;
424 425 426 427 428
		}

		ret = nouveau_gem_set_domain(nvbo->gem, b->read_domains,
					     b->write_domains,
					     b->valid_domains);
429 430
		if (unlikely(ret)) {
			NV_ERROR(dev, "fail set_domain\n");
431
			return ret;
432
		}
433

434
		ret = nouveau_bo_validate(nvbo, true, false, false);
435
		if (unlikely(ret)) {
436 437
			if (ret != -ERESTARTSYS)
				NV_ERROR(dev, "fail ttm_validate\n");
438
			return ret;
439
		}
440

441
		ret = validate_sync(chan, nvbo);
442 443 444 445 446
		if (unlikely(ret)) {
			NV_ERROR(dev, "fail post-validate sync\n");
			return ret;
		}

447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466
		if (dev_priv->card_type < NV_50) {
			if (nvbo->bo.offset == b->presumed.offset &&
			    ((nvbo->bo.mem.mem_type == TTM_PL_VRAM &&
			      b->presumed.domain & NOUVEAU_GEM_DOMAIN_VRAM) ||
			     (nvbo->bo.mem.mem_type == TTM_PL_TT &&
			      b->presumed.domain & NOUVEAU_GEM_DOMAIN_GART)))
				continue;

			if (nvbo->bo.mem.mem_type == TTM_PL_TT)
				b->presumed.domain = NOUVEAU_GEM_DOMAIN_GART;
			else
				b->presumed.domain = NOUVEAU_GEM_DOMAIN_VRAM;
			b->presumed.offset = nvbo->bo.offset;
			b->presumed.valid = 0;
			relocs++;

			if (DRM_COPY_TO_USER(&upbbo[nvbo->pbbo_index].presumed,
					     &b->presumed, sizeof(b->presumed)))
				return -EFAULT;
		}
467 468 469 470 471 472 473 474 475 476 477 478
	}

	return relocs;
}

static int
nouveau_gem_pushbuf_validate(struct nouveau_channel *chan,
			     struct drm_file *file_priv,
			     struct drm_nouveau_gem_pushbuf_bo *pbbo,
			     uint64_t user_buffers, int nr_buffers,
			     struct validate_op *op, int *apply_relocs)
{
479
	struct drm_device *dev = chan->dev;
480 481 482 483 484 485 486 487 488 489
	int ret, relocs = 0;

	INIT_LIST_HEAD(&op->vram_list);
	INIT_LIST_HEAD(&op->gart_list);
	INIT_LIST_HEAD(&op->both_list);

	if (nr_buffers == 0)
		return 0;

	ret = validate_init(chan, file_priv, pbbo, nr_buffers, op);
490
	if (unlikely(ret)) {
491 492
		if (ret != -ERESTARTSYS)
			NV_ERROR(dev, "validate_init\n");
493
		return ret;
494
	}
495 496 497

	ret = validate_list(chan, &op->vram_list, pbbo, user_buffers);
	if (unlikely(ret < 0)) {
498 499
		if (ret != -ERESTARTSYS)
			NV_ERROR(dev, "validate vram_list\n");
500 501 502 503 504 505 506
		validate_fini(op, NULL);
		return ret;
	}
	relocs += ret;

	ret = validate_list(chan, &op->gart_list, pbbo, user_buffers);
	if (unlikely(ret < 0)) {
507 508
		if (ret != -ERESTARTSYS)
			NV_ERROR(dev, "validate gart_list\n");
509 510 511 512 513 514 515
		validate_fini(op, NULL);
		return ret;
	}
	relocs += ret;

	ret = validate_list(chan, &op->both_list, pbbo, user_buffers);
	if (unlikely(ret < 0)) {
516 517
		if (ret != -ERESTARTSYS)
			NV_ERROR(dev, "validate both_list\n");
518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545
		validate_fini(op, NULL);
		return ret;
	}
	relocs += ret;

	*apply_relocs = relocs;
	return 0;
}

static inline void *
u_memcpya(uint64_t user, unsigned nmemb, unsigned size)
{
	void *mem;
	void __user *userptr = (void __force __user *)(uintptr_t)user;

	mem = kmalloc(nmemb * size, GFP_KERNEL);
	if (!mem)
		return ERR_PTR(-ENOMEM);

	if (DRM_COPY_FROM_USER(mem, userptr, nmemb * size)) {
		kfree(mem);
		return ERR_PTR(-EFAULT);
	}

	return mem;
}

static int
546 547 548
nouveau_gem_pushbuf_reloc_apply(struct drm_device *dev,
				struct drm_nouveau_gem_pushbuf *req,
				struct drm_nouveau_gem_pushbuf_bo *bo)
549 550
{
	struct drm_nouveau_gem_pushbuf_reloc *reloc = NULL;
551 552
	int ret = 0;
	unsigned i;
553

554
	reloc = u_memcpya(req->relocs, req->nr_relocs, sizeof(*reloc));
555 556 557
	if (IS_ERR(reloc))
		return PTR_ERR(reloc);

558
	for (i = 0; i < req->nr_relocs; i++) {
559 560
		struct drm_nouveau_gem_pushbuf_reloc *r = &reloc[i];
		struct drm_nouveau_gem_pushbuf_bo *b;
561
		struct nouveau_bo *nvbo;
562 563
		uint32_t data;

564 565
		if (unlikely(r->bo_index > req->nr_buffers)) {
			NV_ERROR(dev, "reloc bo index invalid\n");
566 567 568 569 570
			ret = -EINVAL;
			break;
		}

		b = &bo[r->bo_index];
571
		if (b->presumed.valid)
572 573
			continue;

574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597
		if (unlikely(r->reloc_bo_index > req->nr_buffers)) {
			NV_ERROR(dev, "reloc container bo index invalid\n");
			ret = -EINVAL;
			break;
		}
		nvbo = (void *)(unsigned long)bo[r->reloc_bo_index].user_priv;

		if (unlikely(r->reloc_bo_offset + 4 >
			     nvbo->bo.mem.num_pages << PAGE_SHIFT)) {
			NV_ERROR(dev, "reloc outside of bo\n");
			ret = -EINVAL;
			break;
		}

		if (!nvbo->kmap.virtual) {
			ret = ttm_bo_kmap(&nvbo->bo, 0, nvbo->bo.mem.num_pages,
					  &nvbo->kmap);
			if (ret) {
				NV_ERROR(dev, "failed kmap for reloc\n");
				break;
			}
			nvbo->validate_mapped = true;
		}

598
		if (r->flags & NOUVEAU_GEM_RELOC_LOW)
599
			data = b->presumed.offset + r->data;
600 601
		else
		if (r->flags & NOUVEAU_GEM_RELOC_HIGH)
602
			data = (b->presumed.offset + r->data) >> 32;
603 604 605 606
		else
			data = r->data;

		if (r->flags & NOUVEAU_GEM_RELOC_OR) {
607
			if (b->presumed.domain == NOUVEAU_GEM_DOMAIN_GART)
608 609 610 611 612
				data |= r->tor;
			else
				data |= r->vor;
		}

613
		spin_lock(&nvbo->bo.bdev->fence_lock);
614
		ret = ttm_bo_wait(&nvbo->bo, false, false, false);
615
		spin_unlock(&nvbo->bo.bdev->fence_lock);
616 617 618 619 620 621
		if (ret) {
			NV_ERROR(dev, "reloc wait_idle failed: %d\n", ret);
			break;
		}

		nouveau_bo_wr32(nvbo, r->reloc_bo_offset >> 2, data);
622 623 624 625 626 627 628 629 630 631
	}

	kfree(reloc);
	return ret;
}

int
nouveau_gem_ioctl_pushbuf(struct drm_device *dev, void *data,
			  struct drm_file *file_priv)
{
632
	struct drm_nouveau_private *dev_priv = dev->dev_private;
633
	struct drm_nouveau_gem_pushbuf *req = data;
634 635
	struct drm_nouveau_gem_pushbuf_push *push;
	struct drm_nouveau_gem_pushbuf_bo *bo;
636 637
	struct nouveau_channel *chan;
	struct validate_op op;
638
	struct nouveau_fence *fence = NULL;
639
	int i, j, ret = 0, do_reloc = 0;
640

641
	chan = nouveau_channel_get(file_priv, req->channel);
642 643
	if (IS_ERR(chan))
		return PTR_ERR(chan);
644

645 646 647 648
	req->vram_available = dev_priv->fb_aper_free;
	req->gart_available = dev_priv->gart_info.aper_free;
	if (unlikely(req->nr_push == 0))
		goto out_next;
649

650 651 652
	if (unlikely(req->nr_push > NOUVEAU_GEM_MAX_PUSH)) {
		NV_ERROR(dev, "pushbuf push count exceeds limit: %d max %d\n",
			 req->nr_push, NOUVEAU_GEM_MAX_PUSH);
653
		nouveau_channel_put(&chan);
654
		return -EINVAL;
655 656
	}

657 658 659
	if (unlikely(req->nr_buffers > NOUVEAU_GEM_MAX_BUFFERS)) {
		NV_ERROR(dev, "pushbuf bo count exceeds limit: %d max %d\n",
			 req->nr_buffers, NOUVEAU_GEM_MAX_BUFFERS);
660
		nouveau_channel_put(&chan);
661
		return -EINVAL;
662 663
	}

664 665 666
	if (unlikely(req->nr_relocs > NOUVEAU_GEM_MAX_RELOCS)) {
		NV_ERROR(dev, "pushbuf reloc count exceeds limit: %d max %d\n",
			 req->nr_relocs, NOUVEAU_GEM_MAX_RELOCS);
667
		nouveau_channel_put(&chan);
668 669 670
		return -EINVAL;
	}

671
	push = u_memcpya(req->push, req->nr_push, sizeof(*push));
672 673
	if (IS_ERR(push)) {
		nouveau_channel_put(&chan);
674
		return PTR_ERR(push);
675
	}
676

677
	bo = u_memcpya(req->buffers, req->nr_buffers, sizeof(*bo));
678 679
	if (IS_ERR(bo)) {
		kfree(push);
680
		nouveau_channel_put(&chan);
681
		return PTR_ERR(bo);
682
	}
683

684
	/* Ensure all push buffers are on validate list */
685 686 687 688
	for (i = 0; i < req->nr_push; i++) {
		if (push[i].bo_index >= req->nr_buffers) {
			NV_ERROR(dev, "push %d buffer not in list\n", i);
			ret = -EINVAL;
689
			goto out_prevalid;
690 691 692
		}
	}

693 694 695 696
	/* Validate buffer list */
	ret = nouveau_gem_pushbuf_validate(chan, file_priv, bo, req->buffers,
					   req->nr_buffers, &op, &do_reloc);
	if (ret) {
697 698
		if (ret != -ERESTARTSYS)
			NV_ERROR(dev, "validate: %d\n", ret);
699
		goto out_prevalid;
700 701 702 703
	}

	/* Apply any relocations that are required */
	if (do_reloc) {
704
		ret = nouveau_gem_pushbuf_reloc_apply(dev, req, bo);
705 706 707 708 709 710
		if (ret) {
			NV_ERROR(dev, "reloc apply: %d\n", ret);
			goto out;
		}
	}

711
	if (chan->dma.ib_max) {
712
		ret = nouveau_dma_wait(chan, req->nr_push + 1, 16);
713
		if (ret) {
714
			NV_INFO(dev, "nv50cal_space: %d\n", ret);
715 716 717
			goto out;
		}

718 719 720 721 722 723 724
		for (i = 0; i < req->nr_push; i++) {
			struct nouveau_bo *nvbo = (void *)(unsigned long)
				bo[push[i].bo_index].user_priv;

			nv50_dma_push(chan, nvbo, push[i].offset,
				      push[i].length);
		}
725
	} else
726
	if (dev_priv->chipset >= 0x25) {
727
		ret = RING_SPACE(chan, req->nr_push * 2);
728 729 730 731
		if (ret) {
			NV_ERROR(dev, "cal_space: %d\n", ret);
			goto out;
		}
732 733 734 735 736

		for (i = 0; i < req->nr_push; i++) {
			struct nouveau_bo *nvbo = (void *)(unsigned long)
				bo[push[i].bo_index].user_priv;

737
			OUT_RING(chan, (nvbo->bo.offset + push[i].offset) | 2);
738 739
			OUT_RING(chan, 0);
		}
740
	} else {
741
		ret = RING_SPACE(chan, req->nr_push * (2 + NOUVEAU_DMA_SKIPS));
742 743 744 745 746
		if (ret) {
			NV_ERROR(dev, "jmp_space: %d\n", ret);
			goto out;
		}

747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770
		for (i = 0; i < req->nr_push; i++) {
			struct nouveau_bo *nvbo = (void *)(unsigned long)
				bo[push[i].bo_index].user_priv;
			uint32_t cmd;

			cmd = chan->pushbuf_base + ((chan->dma.cur + 2) << 2);
			cmd |= 0x20000000;
			if (unlikely(cmd != req->suffix0)) {
				if (!nvbo->kmap.virtual) {
					ret = ttm_bo_kmap(&nvbo->bo, 0,
							  nvbo->bo.mem.
							  num_pages,
							  &nvbo->kmap);
					if (ret) {
						WIND_RING(chan);
						goto out;
					}
					nvbo->validate_mapped = true;
				}

				nouveau_bo_wr32(nvbo, (push[i].offset +
						push[i].length - 8) / 4, cmd);
			}

771 772
			OUT_RING(chan, 0x20000000 |
				      (nvbo->bo.offset + push[i].offset));
773
			OUT_RING(chan, 0);
774 775 776
			for (j = 0; j < NOUVEAU_DMA_SKIPS; j++)
				OUT_RING(chan, 0);
		}
777 778
	}

779
	ret = nouveau_fence_new(chan, &fence);
780 781 782 783 784 785 786
	if (ret) {
		NV_ERROR(dev, "error fencing pushbuf: %d\n", ret);
		WIND_RING(chan);
		goto out;
	}

out:
787
	validate_fini(&op, fence);
788
	nouveau_fence_unref(&fence);
789 790

out_prevalid:
791
	kfree(bo);
792
	kfree(push);
793 794

out_next:
795 796 797 798
	if (chan->dma.ib_max) {
		req->suffix0 = 0x00000000;
		req->suffix1 = 0x00000000;
	} else
799
	if (dev_priv->chipset >= 0x25) {
800 801 802 803 804 805 806 807
		req->suffix0 = 0x00020000;
		req->suffix1 = 0x00000000;
	} else {
		req->suffix0 = 0x20000000 |
			      (chan->pushbuf_base + ((chan->dma.cur + 2) << 2));
		req->suffix1 = 0x00000000;
	}

808
	nouveau_channel_put(&chan);
809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836
	return ret;
}

static inline uint32_t
domain_to_ttm(struct nouveau_bo *nvbo, uint32_t domain)
{
	uint32_t flags = 0;

	if (domain & NOUVEAU_GEM_DOMAIN_VRAM)
		flags |= TTM_PL_FLAG_VRAM;
	if (domain & NOUVEAU_GEM_DOMAIN_GART)
		flags |= TTM_PL_FLAG_TT;

	return flags;
}

int
nouveau_gem_ioctl_cpu_prep(struct drm_device *dev, void *data,
			   struct drm_file *file_priv)
{
	struct drm_nouveau_gem_cpu_prep *req = data;
	struct drm_gem_object *gem;
	struct nouveau_bo *nvbo;
	bool no_wait = !!(req->flags & NOUVEAU_GEM_CPU_PREP_NOWAIT);
	int ret = -EINVAL;

	gem = drm_gem_object_lookup(dev, file_priv, req->handle);
	if (!gem)
837
		return -ENOENT;
838 839
	nvbo = nouveau_gem_object(gem);

B
Ben Skeggs 已提交
840 841 842
	spin_lock(&nvbo->bo.bdev->fence_lock);
	ret = ttm_bo_wait(&nvbo->bo, true, true, no_wait);
	spin_unlock(&nvbo->bo.bdev->fence_lock);
843
	drm_gem_object_unreference_unlocked(gem);
844 845 846 847 848 849 850
	return ret;
}

int
nouveau_gem_ioctl_cpu_fini(struct drm_device *dev, void *data,
			   struct drm_file *file_priv)
{
B
Ben Skeggs 已提交
851
	return 0;
852 853 854 855 856 857 858 859 860 861 862 863
}

int
nouveau_gem_ioctl_info(struct drm_device *dev, void *data,
		       struct drm_file *file_priv)
{
	struct drm_nouveau_gem_info *req = data;
	struct drm_gem_object *gem;
	int ret;

	gem = drm_gem_object_lookup(dev, file_priv, req->handle);
	if (!gem)
864
		return -ENOENT;
865

866
	ret = nouveau_gem_info(file_priv, gem, req);
867
	drm_gem_object_unreference_unlocked(gem);
868 869 870
	return ret;
}