nouveau_gem.c 23.3 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
/*
 * 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.
 *
 */

27
#include "nouveau_drm.h"
28
#include "nouveau_dma.h"
29
#include "nouveau_fence.h"
30
#include "nouveau_abi16.h"
31

32 33
#include "nouveau_ttm.h"
#include "nouveau_gem.h"
34 35 36 37

void
nouveau_gem_object_del(struct drm_gem_object *gem)
{
38
	struct nouveau_bo *nvbo = nouveau_gem_object(gem);
39
	struct nouveau_drm *drm = nouveau_bdev(nvbo->bo.bdev);
40
	struct ttm_buffer_object *bo = &nvbo->bo;
41 42 43 44 45 46
	struct device *dev = drm->dev->dev;
	int ret;

	ret = pm_runtime_get_sync(dev);
	if (WARN_ON(ret < 0 && ret != -EACCES))
		return;
47

D
Dave Airlie 已提交
48 49 50
	if (gem->import_attach)
		drm_prime_gem_destroy(gem, nvbo->bo.sg);

51
	drm_gem_object_release(gem);
52 53 54 55

	/* reset filp so nouveau_bo_del_ttm() can test for it */
	gem->filp = NULL;
	ttm_bo_unref(&bo);
56 57 58

	pm_runtime_mark_last_busy(dev);
	pm_runtime_put_autosuspend(dev);
59 60
}

61 62 63
int
nouveau_gem_object_open(struct drm_gem_object *gem, struct drm_file *file_priv)
{
64
	struct nouveau_cli *cli = nouveau_cli(file_priv);
65
	struct nouveau_bo *nvbo = nouveau_gem_object(gem);
66
	struct nouveau_drm *drm = nouveau_bdev(nvbo->bo.bdev);
67
	struct nvkm_vma *vma;
68
	struct device *dev = drm->dev->dev;
69
	int ret;
70

71
	if (!cli->vm)
72 73
		return 0;

74
	ret = ttm_bo_reserve(&nvbo->bo, false, false, false, NULL);
75 76 77
	if (ret)
		return ret;

78
	vma = nouveau_bo_vma_find(nvbo, cli->vm);
79 80 81 82 83 84 85
	if (!vma) {
		vma = kzalloc(sizeof(*vma), GFP_KERNEL);
		if (!vma) {
			ret = -ENOMEM;
			goto out;
		}

86
		ret = pm_runtime_get_sync(dev);
S
Sudip Mukherjee 已提交
87 88
		if (ret < 0 && ret != -EACCES) {
			kfree(vma);
89
			goto out;
S
Sudip Mukherjee 已提交
90
		}
91

92
		ret = nouveau_bo_vma_add(nvbo, cli->vm, vma);
93
		if (ret)
94
			kfree(vma);
95 96 97

		pm_runtime_mark_last_busy(dev);
		pm_runtime_put_autosuspend(dev);
98 99 100 101 102 103 104
	} else {
		vma->refcount++;
	}

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

107 108 109
static void
nouveau_gem_object_delete(void *data)
{
110 111 112
	struct nvkm_vma *vma = data;
	nvkm_vm_unmap(vma);
	nvkm_vm_put(vma);
113 114 115 116
	kfree(vma);
}

static void
117
nouveau_gem_object_unmap(struct nouveau_bo *nvbo, struct nvkm_vma *vma)
118 119
{
	const bool mapped = nvbo->bo.mem.mem_type != TTM_PL_SYSTEM;
120 121
	struct reservation_object *resv = nvbo->bo.resv;
	struct reservation_object_list *fobj;
122
	struct fence *fence = NULL;
123

124 125
	fobj = reservation_object_get_list(resv);

126 127
	list_del(&vma->head);

128 129 130 131 132 133
	if (fobj && fobj->shared_count > 1)
		ttm_bo_wait(&nvbo->bo, true, false, false);
	else if (fobj && fobj->shared_count == 1)
		fence = rcu_dereference_protected(fobj->shared[0],
						reservation_object_held(resv));
	else
134
		fence = reservation_object_get_excl(nvbo->bo.resv);
135

136
	if (fence && mapped) {
137 138 139
		nouveau_fence_work(fence, nouveau_gem_object_delete, vma);
	} else {
		if (mapped)
140 141
			nvkm_vm_unmap(vma);
		nvkm_vm_put(vma);
142 143 144 145
		kfree(vma);
	}
}

146 147 148
void
nouveau_gem_object_close(struct drm_gem_object *gem, struct drm_file *file_priv)
{
149
	struct nouveau_cli *cli = nouveau_cli(file_priv);
150
	struct nouveau_bo *nvbo = nouveau_gem_object(gem);
151 152
	struct nouveau_drm *drm = nouveau_bdev(nvbo->bo.bdev);
	struct device *dev = drm->dev->dev;
153
	struct nvkm_vma *vma;
154
	int ret;
155

156
	if (!cli->vm)
157
		return;
158

159
	ret = ttm_bo_reserve(&nvbo->bo, false, false, false, NULL);
160 161 162
	if (ret)
		return;

163
	vma = nouveau_bo_vma_find(nvbo, cli->vm);
164
	if (vma) {
165 166 167 168 169 170 171 172
		if (--vma->refcount == 0) {
			ret = pm_runtime_get_sync(dev);
			if (!WARN_ON(ret < 0 && ret != -EACCES)) {
				nouveau_gem_object_unmap(nvbo, vma);
				pm_runtime_mark_last_busy(dev);
				pm_runtime_put_autosuspend(dev);
			}
		}
173 174
	}
	ttm_bo_unreserve(&nvbo->bo);
175 176
}

177
int
178 179 180
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)
181
{
182
	struct nouveau_drm *drm = nouveau_drm(dev);
183
	struct nouveau_bo *nvbo;
184
	u32 flags = 0;
185 186
	int ret;

187 188 189 190 191 192 193
	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;

194 195 196
	if (domain & NOUVEAU_GEM_DOMAIN_COHERENT)
		flags |= TTM_PL_FLAG_UNCACHED;

197
	ret = nouveau_bo_new(dev, size, align, flags, tile_mode,
198
			     tile_flags, NULL, NULL, pnvbo);
199 200 201 202
	if (ret)
		return ret;
	nvbo = *pnvbo;

203 204 205 206 207 208
	/* 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;
209
	if (drm->device.info.family >= NV_DEVICE_INFO_V0_TESLA)
210 211
		nvbo->valid_domains &= domain;

212 213 214 215
	/* Initialize the embedded gem-object. We return a single gem-reference
	 * to the caller, instead of a normal nouveau_bo ttm reference. */
	ret = drm_gem_object_init(dev, &nvbo->gem, nvbo->bo.mem.size);
	if (ret) {
216 217 218 219
		nouveau_bo_ref(NULL, pnvbo);
		return -ENOMEM;
	}

220
	nvbo->bo.persistent_swap_storage = nvbo->gem.filp;
221 222 223 224
	return 0;
}

static int
225 226
nouveau_gem_info(struct drm_file *file_priv, struct drm_gem_object *gem,
		 struct drm_nouveau_gem_info *rep)
227
{
228
	struct nouveau_cli *cli = nouveau_cli(file_priv);
229
	struct nouveau_bo *nvbo = nouveau_gem_object(gem);
230
	struct nvkm_vma *vma;
231

232 233 234
	if (is_power_of_2(nvbo->valid_domains))
		rep->domain = nvbo->valid_domains;
	else if (nvbo->bo.mem.mem_type == TTM_PL_TT)
235 236 237
		rep->domain = NOUVEAU_GEM_DOMAIN_GART;
	else
		rep->domain = NOUVEAU_GEM_DOMAIN_VRAM;
238
	rep->offset = nvbo->bo.offset;
239 240
	if (cli->vm) {
		vma = nouveau_bo_vma_find(nvbo, cli->vm);
241 242 243 244 245 246
		if (!vma)
			return -EINVAL;

		rep->offset = vma->offset;
	}

247
	rep->size = nvbo->bo.mem.num_pages << PAGE_SHIFT;
248
	rep->map_handle = drm_vma_node_offset_addr(&nvbo->bo.vma_node);
249 250 251 252 253 254 255 256 257
	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)
{
258
	struct nouveau_drm *drm = nouveau_drm(dev);
259
	struct nouveau_cli *cli = nouveau_cli(file_priv);
B
Ben Skeggs 已提交
260
	struct nvkm_fb *fb = nvxx_fb(&drm->device);
261 262 263 264
	struct drm_nouveau_gem_new *req = data;
	struct nouveau_bo *nvbo = NULL;
	int ret = 0;

265
	if (!nvkm_fb_memtype_valid(fb, req->info.tile_flags)) {
B
Ben Skeggs 已提交
266
		NV_PRINTK(err, cli, "bad page flags: 0x%08x\n", req->info.tile_flags);
267
		return -EINVAL;
268
	}
269

270
	ret = nouveau_gem_new(dev, req->info.size, req->align,
271 272
			      req->info.domain, req->info.tile_mode,
			      req->info.tile_flags, &nvbo);
273 274 275
	if (ret)
		return ret;

276
	ret = drm_gem_handle_create(file_priv, &nvbo->gem, &req->info.handle);
277
	if (ret == 0) {
278
		ret = nouveau_gem_info(file_priv, &nvbo->gem, &req->info);
279 280 281 282
		if (ret)
			drm_gem_handle_delete(file_priv, req->info.handle);
	}

283
	/* drop reference from allocate - handle holds it now */
284
	drm_gem_object_unreference_unlocked(&nvbo->gem);
285 286 287 288 289 290 291
	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)
{
292
	struct nouveau_bo *nvbo = nouveau_gem_object(gem);
293
	struct ttm_buffer_object *bo = &nvbo->bo;
294
	uint32_t domains = valid_domains & nvbo->valid_domains &
295 296
		(write_domains ? write_domains : read_domains);
	uint32_t pref_flags = 0, valid_flags = 0;
297

298
	if (!domains)
299 300
		return -EINVAL;

301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321
	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);
322 323 324 325 326

	return 0;
}

struct validate_op {
327
	struct list_head list;
328
	struct ww_acquire_ctx ticket;
329 330 331
};

static void
332 333
validate_fini_no_ticket(struct validate_op *op, struct nouveau_fence *fence,
			struct drm_nouveau_gem_pushbuf_bo *pbbo)
334 335
{
	struct nouveau_bo *nvbo;
336
	struct drm_nouveau_gem_pushbuf_bo *b;
337

338 339
	while (!list_empty(&op->list)) {
		nvbo = list_entry(op->list.next, struct nouveau_bo, entry);
340
		b = &pbbo[nvbo->pbbo_index];
341

342
		if (likely(fence))
343
			nouveau_bo_fence(nvbo, fence, !!b->write_domains);
344

345 346 347 348 349
		if (unlikely(nvbo->validate_mapped)) {
			ttm_bo_kunmap(&nvbo->kmap);
			nvbo->validate_mapped = false;
		}

350 351
		list_del(&nvbo->entry);
		nvbo->reserved_by = NULL;
352
		ttm_bo_unreserve_ticket(&nvbo->bo, &op->ticket);
353
		drm_gem_object_unreference_unlocked(&nvbo->gem);
354 355 356
	}
}

357
static void
358 359
validate_fini(struct validate_op *op, struct nouveau_fence *fence,
	      struct drm_nouveau_gem_pushbuf_bo *pbbo)
360
{
361
	validate_fini_no_ticket(op, fence, pbbo);
362
	ww_acquire_fini(&op->ticket);
363 364 365 366 367 368 369
}

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)
{
370
	struct nouveau_cli *cli = nouveau_cli(file_priv);
371
	struct drm_device *dev = chan->drm->dev;
372 373
	int trycnt = 0;
	int ret, i;
374
	struct nouveau_bo *res_bo = NULL;
375 376 377
	LIST_HEAD(gart_list);
	LIST_HEAD(vram_list);
	LIST_HEAD(both_list);
378

379
	ww_acquire_init(&op->ticket, &reservation_ww_class);
380 381
retry:
	if (++trycnt > 100000) {
B
Ben Skeggs 已提交
382
		NV_PRINTK(err, cli, "%s failed and gave up.\n", __func__);
383 384 385 386 387 388 389 390 391 392
		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) {
B
Ben Skeggs 已提交
393
			NV_PRINTK(err, cli, "Unknown handle 0x%08x\n", b->handle);
394 395
			ret = -ENOENT;
			break;
396
		}
397
		nvbo = nouveau_gem_object(gem);
398 399 400 401 402
		if (nvbo == res_bo) {
			res_bo = NULL;
			drm_gem_object_unreference_unlocked(gem);
			continue;
		}
403 404

		if (nvbo->reserved_by && nvbo->reserved_by == file_priv) {
B
Ben Skeggs 已提交
405
			NV_PRINTK(err, cli, "multiple instances of buffer %d on "
406
				      "validation list\n", b->handle);
407
			drm_gem_object_unreference_unlocked(gem);
408 409
			ret = -EINVAL;
			break;
410 411
		}

412
		ret = ttm_bo_reserve(&nvbo->bo, true, false, true, &op->ticket);
413
		if (ret) {
414 415 416
			list_splice_tail_init(&vram_list, &op->list);
			list_splice_tail_init(&gart_list, &op->list);
			list_splice_tail_init(&both_list, &op->list);
417
			validate_fini_no_ticket(op, NULL, NULL);
418
			if (unlikely(ret == -EDEADLK)) {
419
				ret = ttm_bo_reserve_slowpath(&nvbo->bo, true,
420
							      &op->ticket);
421 422 423
				if (!ret)
					res_bo = nvbo;
			}
424 425
			if (unlikely(ret)) {
				if (ret != -ERESTARTSYS)
B
Ben Skeggs 已提交
426
					NV_PRINTK(err, cli, "fail reserve\n");
427
				break;
428
			}
429 430
		}

431
		b->user_priv = (uint64_t)(unsigned long)nvbo;
432 433 434 435
		nvbo->reserved_by = file_priv;
		nvbo->pbbo_index = i;
		if ((b->valid_domains & NOUVEAU_GEM_DOMAIN_VRAM) &&
		    (b->valid_domains & NOUVEAU_GEM_DOMAIN_GART))
436
			list_add_tail(&nvbo->entry, &both_list);
437 438
		else
		if (b->valid_domains & NOUVEAU_GEM_DOMAIN_VRAM)
439
			list_add_tail(&nvbo->entry, &vram_list);
440 441
		else
		if (b->valid_domains & NOUVEAU_GEM_DOMAIN_GART)
442
			list_add_tail(&nvbo->entry, &gart_list);
443
		else {
B
Ben Skeggs 已提交
444
			NV_PRINTK(err, cli, "invalid valid domains: 0x%08x\n",
445
				 b->valid_domains);
446 447 448
			list_add_tail(&nvbo->entry, &both_list);
			ret = -EINVAL;
			break;
449
		}
450 451
		if (nvbo == res_bo)
			goto retry;
452 453
	}

454
	ww_acquire_done(&op->ticket);
455 456 457 458
	list_splice_tail(&vram_list, &op->list);
	list_splice_tail(&gart_list, &op->list);
	list_splice_tail(&both_list, &op->list);
	if (ret)
459
		validate_fini(op, NULL, NULL);
460 461
	return ret;

462 463 464
}

static int
465 466 467
validate_list(struct nouveau_channel *chan, struct nouveau_cli *cli,
	      struct list_head *list, struct drm_nouveau_gem_pushbuf_bo *pbbo,
	      uint64_t user_pbbo_ptr)
468
{
469
	struct nouveau_drm *drm = chan->drm;
470 471 472 473 474 475 476 477
	struct drm_nouveau_gem_pushbuf_bo __user *upbbo =
				(void __force __user *)(uintptr_t)user_pbbo_ptr;
	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];

478
		ret = nouveau_gem_set_domain(&nvbo->gem, b->read_domains,
479 480
					     b->write_domains,
					     b->valid_domains);
481
		if (unlikely(ret)) {
B
Ben Skeggs 已提交
482
			NV_PRINTK(err, cli, "fail set_domain\n");
483
			return ret;
484
		}
485

486
		ret = nouveau_bo_validate(nvbo, true, false);
487
		if (unlikely(ret)) {
488
			if (ret != -ERESTARTSYS)
B
Ben Skeggs 已提交
489
				NV_PRINTK(err, cli, "fail ttm_validate\n");
490
			return ret;
491
		}
492

493
		ret = nouveau_fence_sync(nvbo, chan, !!b->write_domains, true);
494
		if (unlikely(ret)) {
495
			if (ret != -ERESTARTSYS)
B
Ben Skeggs 已提交
496
				NV_PRINTK(err, cli, "fail post-validate sync\n");
497 498 499
			return ret;
		}

500
		if (drm->device.info.family < NV_DEVICE_INFO_V0_TESLA) {
501 502 503 504 505 506 507 508 509 510 511 512 513 514 515
			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++;

D
Daniel Vetter 已提交
516
			if (copy_to_user(&upbbo[nvbo->pbbo_index].presumed,
517 518 519
					     &b->presumed, sizeof(b->presumed)))
				return -EFAULT;
		}
520 521 522 523 524 525 526 527 528 529 530 531
	}

	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)
{
532
	struct nouveau_cli *cli = nouveau_cli(file_priv);
533
	int ret;
534

535
	INIT_LIST_HEAD(&op->list);
536 537 538 539 540

	if (nr_buffers == 0)
		return 0;

	ret = validate_init(chan, file_priv, pbbo, nr_buffers, op);
541
	if (unlikely(ret)) {
542
		if (ret != -ERESTARTSYS)
B
Ben Skeggs 已提交
543
			NV_PRINTK(err, cli, "validate_init\n");
544
		return ret;
545
	}
546

547
	ret = validate_list(chan, cli, &op->list, pbbo, user_buffers);
548
	if (unlikely(ret < 0)) {
549
		if (ret != -ERESTARTSYS)
B
Ben Skeggs 已提交
550
			NV_PRINTK(err, cli, "validating bo list\n");
551
		validate_fini(op, NULL, NULL);
552 553
		return ret;
	}
554
	*apply_relocs = ret;
555 556 557
	return 0;
}

558 559 560
static inline void
u_free(void *addr)
{
561
	kvfree(addr);
562 563
}

564 565 566 567 568 569
static inline void *
u_memcpya(uint64_t user, unsigned nmemb, unsigned size)
{
	void *mem;
	void __user *userptr = (void __force __user *)(uintptr_t)user;

570 571 572 573 574
	size *= nmemb;

	mem = kmalloc(size, GFP_KERNEL | __GFP_NOWARN);
	if (!mem)
		mem = vmalloc(size);
575 576 577
	if (!mem)
		return ERR_PTR(-ENOMEM);

D
Daniel Vetter 已提交
578
	if (copy_from_user(mem, userptr, size)) {
579
		u_free(mem);
580 581 582 583 584 585 586
		return ERR_PTR(-EFAULT);
	}

	return mem;
}

static int
587
nouveau_gem_pushbuf_reloc_apply(struct nouveau_cli *cli,
588 589
				struct drm_nouveau_gem_pushbuf *req,
				struct drm_nouveau_gem_pushbuf_bo *bo)
590 591
{
	struct drm_nouveau_gem_pushbuf_reloc *reloc = NULL;
592 593
	int ret = 0;
	unsigned i;
594

595
	reloc = u_memcpya(req->relocs, req->nr_relocs, sizeof(*reloc));
596 597 598
	if (IS_ERR(reloc))
		return PTR_ERR(reloc);

599
	for (i = 0; i < req->nr_relocs; i++) {
600 601
		struct drm_nouveau_gem_pushbuf_reloc *r = &reloc[i];
		struct drm_nouveau_gem_pushbuf_bo *b;
602
		struct nouveau_bo *nvbo;
603 604
		uint32_t data;

605
		if (unlikely(r->bo_index > req->nr_buffers)) {
B
Ben Skeggs 已提交
606
			NV_PRINTK(err, cli, "reloc bo index invalid\n");
607 608 609 610 611
			ret = -EINVAL;
			break;
		}

		b = &bo[r->bo_index];
612
		if (b->presumed.valid)
613 614
			continue;

615
		if (unlikely(r->reloc_bo_index > req->nr_buffers)) {
B
Ben Skeggs 已提交
616
			NV_PRINTK(err, cli, "reloc container bo index invalid\n");
617 618 619 620 621 622 623
			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)) {
B
Ben Skeggs 已提交
624
			NV_PRINTK(err, cli, "reloc outside of bo\n");
625 626 627 628 629 630 631 632
			ret = -EINVAL;
			break;
		}

		if (!nvbo->kmap.virtual) {
			ret = ttm_bo_kmap(&nvbo->bo, 0, nvbo->bo.mem.num_pages,
					  &nvbo->kmap);
			if (ret) {
B
Ben Skeggs 已提交
633
				NV_PRINTK(err, cli, "failed kmap for reloc\n");
634 635 636 637 638
				break;
			}
			nvbo->validate_mapped = true;
		}

639
		if (r->flags & NOUVEAU_GEM_RELOC_LOW)
640
			data = b->presumed.offset + r->data;
641 642
		else
		if (r->flags & NOUVEAU_GEM_RELOC_HIGH)
643
			data = (b->presumed.offset + r->data) >> 32;
644 645 646 647
		else
			data = r->data;

		if (r->flags & NOUVEAU_GEM_RELOC_OR) {
648
			if (b->presumed.domain == NOUVEAU_GEM_DOMAIN_GART)
649 650 651 652 653
				data |= r->tor;
			else
				data |= r->vor;
		}

654
		ret = ttm_bo_wait(&nvbo->bo, true, false, false);
655
		if (ret) {
B
Ben Skeggs 已提交
656
			NV_PRINTK(err, cli, "reloc wait_idle failed: %d\n", ret);
657 658 659 660
			break;
		}

		nouveau_bo_wr32(nvbo, r->reloc_bo_offset >> 2, data);
661 662
	}

663
	u_free(reloc);
664 665 666 667 668 669 670
	return ret;
}

int
nouveau_gem_ioctl_pushbuf(struct drm_device *dev, void *data,
			  struct drm_file *file_priv)
{
671
	struct nouveau_abi16 *abi16 = nouveau_abi16_get(file_priv, dev);
672
	struct nouveau_cli *cli = nouveau_cli(file_priv);
673 674
	struct nouveau_abi16_chan *temp;
	struct nouveau_drm *drm = nouveau_drm(dev);
675
	struct drm_nouveau_gem_pushbuf *req = data;
676 677
	struct drm_nouveau_gem_pushbuf_push *push;
	struct drm_nouveau_gem_pushbuf_bo *bo;
678
	struct nouveau_channel *chan = NULL;
679
	struct validate_op op;
680
	struct nouveau_fence *fence = NULL;
681
	int i, j, ret = 0, do_reloc = 0;
682

683 684
	if (unlikely(!abi16))
		return -ENOMEM;
685

686
	list_for_each_entry(temp, &abi16->channels, head) {
687
		if (temp->chan->chid == req->channel) {
688 689 690 691
			chan = temp->chan;
			break;
		}
	}
692

693 694 695 696 697
	if (!chan)
		return nouveau_abi16_put(abi16, -ENOENT);

	req->vram_available = drm->gem.vram_available;
	req->gart_available = drm->gem.gart_available;
698 699
	if (unlikely(req->nr_push == 0))
		goto out_next;
700

701
	if (unlikely(req->nr_push > NOUVEAU_GEM_MAX_PUSH)) {
B
Ben Skeggs 已提交
702
		NV_PRINTK(err, cli, "pushbuf push count exceeds limit: %d max %d\n",
703
			 req->nr_push, NOUVEAU_GEM_MAX_PUSH);
704
		return nouveau_abi16_put(abi16, -EINVAL);
705 706
	}

707
	if (unlikely(req->nr_buffers > NOUVEAU_GEM_MAX_BUFFERS)) {
B
Ben Skeggs 已提交
708
		NV_PRINTK(err, cli, "pushbuf bo count exceeds limit: %d max %d\n",
709
			 req->nr_buffers, NOUVEAU_GEM_MAX_BUFFERS);
710
		return nouveau_abi16_put(abi16, -EINVAL);
711 712
	}

713
	if (unlikely(req->nr_relocs > NOUVEAU_GEM_MAX_RELOCS)) {
B
Ben Skeggs 已提交
714
		NV_PRINTK(err, cli, "pushbuf reloc count exceeds limit: %d max %d\n",
715
			 req->nr_relocs, NOUVEAU_GEM_MAX_RELOCS);
716
		return nouveau_abi16_put(abi16, -EINVAL);
717 718
	}

719
	push = u_memcpya(req->push, req->nr_push, sizeof(*push));
720 721
	if (IS_ERR(push))
		return nouveau_abi16_put(abi16, PTR_ERR(push));
722

723
	bo = u_memcpya(req->buffers, req->nr_buffers, sizeof(*bo));
724
	if (IS_ERR(bo)) {
725
		u_free(push);
726
		return nouveau_abi16_put(abi16, PTR_ERR(bo));
727
	}
728

729
	/* Ensure all push buffers are on validate list */
730 731
	for (i = 0; i < req->nr_push; i++) {
		if (push[i].bo_index >= req->nr_buffers) {
B
Ben Skeggs 已提交
732
			NV_PRINTK(err, cli, "push %d buffer not in list\n", i);
733
			ret = -EINVAL;
734
			goto out_prevalid;
735 736 737
		}
	}

738 739 740 741
	/* Validate buffer list */
	ret = nouveau_gem_pushbuf_validate(chan, file_priv, bo, req->buffers,
					   req->nr_buffers, &op, &do_reloc);
	if (ret) {
742
		if (ret != -ERESTARTSYS)
B
Ben Skeggs 已提交
743
			NV_PRINTK(err, cli, "validate: %d\n", ret);
744
		goto out_prevalid;
745 746 747 748
	}

	/* Apply any relocations that are required */
	if (do_reloc) {
749
		ret = nouveau_gem_pushbuf_reloc_apply(cli, req, bo);
750
		if (ret) {
B
Ben Skeggs 已提交
751
			NV_PRINTK(err, cli, "reloc apply: %d\n", ret);
752 753 754 755
			goto out;
		}
	}

756
	if (chan->dma.ib_max) {
757
		ret = nouveau_dma_wait(chan, req->nr_push + 1, 16);
758
		if (ret) {
B
Ben Skeggs 已提交
759
			NV_PRINTK(err, cli, "nv50cal_space: %d\n", ret);
760 761 762
			goto out;
		}

763 764 765 766 767 768 769
		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);
		}
770
	} else
771
	if (drm->device.info.chipset >= 0x25) {
772
		ret = RING_SPACE(chan, req->nr_push * 2);
773
		if (ret) {
B
Ben Skeggs 已提交
774
			NV_PRINTK(err, cli, "cal_space: %d\n", ret);
775 776
			goto out;
		}
777 778 779 780 781

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

782
			OUT_RING(chan, (nvbo->bo.offset + push[i].offset) | 2);
783 784
			OUT_RING(chan, 0);
		}
785
	} else {
786
		ret = RING_SPACE(chan, req->nr_push * (2 + NOUVEAU_DMA_SKIPS));
787
		if (ret) {
B
Ben Skeggs 已提交
788
			NV_PRINTK(err, cli, "jmp_space: %d\n", ret);
789 790 791
			goto out;
		}

792 793 794 795 796
		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;

797
			cmd = chan->push.vma.offset + ((chan->dma.cur + 2) << 2);
798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815
			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);
			}

816 817
			OUT_RING(chan, 0x20000000 |
				      (nvbo->bo.offset + push[i].offset));
818
			OUT_RING(chan, 0);
819 820 821
			for (j = 0; j < NOUVEAU_DMA_SKIPS; j++)
				OUT_RING(chan, 0);
		}
822 823
	}

824
	ret = nouveau_fence_new(chan, false, &fence);
825
	if (ret) {
B
Ben Skeggs 已提交
826
		NV_PRINTK(err, cli, "error fencing pushbuf: %d\n", ret);
827 828 829 830 831
		WIND_RING(chan);
		goto out;
	}

out:
832
	validate_fini(&op, fence, bo);
833
	nouveau_fence_unref(&fence);
834 835

out_prevalid:
836 837
	u_free(bo);
	u_free(push);
838 839

out_next:
840 841 842 843
	if (chan->dma.ib_max) {
		req->suffix0 = 0x00000000;
		req->suffix1 = 0x00000000;
	} else
844
	if (drm->device.info.chipset >= 0x25) {
845 846 847 848
		req->suffix0 = 0x00020000;
		req->suffix1 = 0x00000000;
	} else {
		req->suffix0 = 0x20000000 |
849
			      (chan->push.vma.offset + ((chan->dma.cur + 2) << 2));
850 851 852
		req->suffix1 = 0x00000000;
	}

853
	return nouveau_abi16_put(abi16, ret);
854 855 856 857 858 859 860 861 862 863
}

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);
864
	bool write = !!(req->flags & NOUVEAU_GEM_CPU_PREP_WRITE);
865
	int ret;
866 867 868

	gem = drm_gem_object_lookup(dev, file_priv, req->handle);
	if (!gem)
869
		return -ENOENT;
870 871
	nvbo = nouveau_gem_object(gem);

872 873 874 875
	if (no_wait)
		ret = reservation_object_test_signaled_rcu(nvbo->bo.resv, write) ? 0 : -EBUSY;
	else {
		long lret;
876

877 878 879 880 881 882 883
		lret = reservation_object_wait_timeout_rcu(nvbo->bo.resv, write, true, 30 * HZ);
		if (!lret)
			ret = -EBUSY;
		else if (lret > 0)
			ret = 0;
		else
			ret = lret;
884
	}
885
	nouveau_bo_sync_for_cpu(nvbo);
886
	drm_gem_object_unreference_unlocked(gem);
887

888 889 890 891 892 893 894
	return ret;
}

int
nouveau_gem_ioctl_cpu_fini(struct drm_device *dev, void *data,
			   struct drm_file *file_priv)
{
895 896 897 898 899 900 901 902 903 904 905
	struct drm_nouveau_gem_cpu_fini *req = data;
	struct drm_gem_object *gem;
	struct nouveau_bo *nvbo;

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

	nouveau_bo_sync_for_device(nvbo);
	drm_gem_object_unreference_unlocked(gem);
B
Ben Skeggs 已提交
906
	return 0;
907 908 909 910 911 912 913 914 915 916 917 918
}

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)
919
		return -ENOENT;
920

921
	ret = nouveau_gem_info(file_priv, gem, req);
922
	drm_gem_object_unreference_unlocked(gem);
923 924 925
	return ret;
}