nouveau_gem.c 23.9 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_drv.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
#include "nouveau_mem.h"
35
#include "nouveau_vmm.h"
36

37 38
#include <nvif/class.h>

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

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

D
Dave Airlie 已提交
51 52 53
	if (gem->import_attach)
		drm_prime_gem_destroy(gem, nvbo->bo.sg);

54
	ttm_bo_put(&nvbo->bo);
55 56 57

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

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

71
	if (vmm->vmm.object.oclass < NVIF_CLASS_VMM_NV50)
72 73
		return 0;

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

78 79 80
	ret = pm_runtime_get_sync(dev);
	if (ret < 0 && ret != -EACCES)
		goto out;
81

82
	ret = nouveau_vma_new(nvbo, vmm, &vma);
83 84
	pm_runtime_mark_last_busy(dev);
	pm_runtime_put_autosuspend(dev);
85 86 87
out:
	ttm_bo_unreserve(&nvbo->bo);
	return ret;
88 89
}

90 91 92 93 94
struct nouveau_gem_object_unmap {
	struct nouveau_cli_work work;
	struct nouveau_vma *vma;
};

95
static void
96
nouveau_gem_object_delete(struct nouveau_vma *vma)
97
{
98
	nouveau_fence_unref(&vma->fence);
99
	nouveau_vma_del(&vma);
100 101
}

102 103 104 105 106 107 108 109 110
static void
nouveau_gem_object_delete_work(struct nouveau_cli_work *w)
{
	struct nouveau_gem_object_unmap *work =
		container_of(w, typeof(*work), work);
	nouveau_gem_object_delete(work->vma);
	kfree(work);
}

111
static void
112
nouveau_gem_object_unmap(struct nouveau_bo *nvbo, struct nouveau_vma *vma)
113
{
114
	struct dma_fence *fence = vma->fence ? &vma->fence->base : NULL;
115
	struct nouveau_gem_object_unmap *work;
116

117
	list_del_init(&vma->head);
118

119
	if (!fence) {
120 121 122 123 124 125 126 127 128 129 130 131 132
		nouveau_gem_object_delete(vma);
		return;
	}

	if (!(work = kmalloc(sizeof(*work), GFP_KERNEL))) {
		WARN_ON(dma_fence_wait_timeout(fence, false, 2 * HZ) <= 0);
		nouveau_gem_object_delete(vma);
		return;
	}

	work->work.func = nouveau_gem_object_delete_work;
	work->vma = vma;
	nouveau_cli_work_queue(vma->vmm->cli, fence, &work->work);
133 134
}

135 136 137
void
nouveau_gem_object_close(struct drm_gem_object *gem, struct drm_file *file_priv)
{
138
	struct nouveau_cli *cli = nouveau_cli(file_priv);
139
	struct nouveau_bo *nvbo = nouveau_gem_object(gem);
140 141
	struct nouveau_drm *drm = nouveau_bdev(nvbo->bo.bdev);
	struct device *dev = drm->dev->dev;
142
	struct nouveau_vmm *vmm = cli->svm.cli ? &cli->svm : & cli->vmm;
143
	struct nouveau_vma *vma;
144
	int ret;
145

146
	if (vmm->vmm.object.oclass < NVIF_CLASS_VMM_NV50)
147
		return;
148

149
	ret = ttm_bo_reserve(&nvbo->bo, false, false, NULL);
150 151 152
	if (ret)
		return;

153
	vma = nouveau_vma_find(nvbo, vmm);
154
	if (vma) {
155
		if (--vma->refs == 0) {
156 157 158 159 160 161 162
			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);
			}
		}
163 164
	}
	ttm_bo_unreserve(&nvbo->bo);
165 166
}

167
int
B
Ben Skeggs 已提交
168
nouveau_gem_new(struct nouveau_cli *cli, u64 size, int align, uint32_t domain,
169 170
		uint32_t tile_mode, uint32_t tile_flags,
		struct nouveau_bo **pnvbo)
171
{
172
	struct nouveau_drm *drm = cli->drm;
173
	struct nouveau_bo *nvbo;
174
	u32 flags = 0;
175 176
	int ret;

177 178 179 180 181 182 183
	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;

184 185 186
	if (domain & NOUVEAU_GEM_DOMAIN_COHERENT)
		flags |= TTM_PL_FLAG_UNCACHED;

187 188
	nvbo = nouveau_bo_alloc(cli, &size, &align, flags, tile_mode,
				tile_flags);
189 190 191 192 193 194 195 196
	if (IS_ERR(nvbo))
		return PTR_ERR(nvbo);

	/* 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(drm->dev, &nvbo->bo.base, size);
	if (ret) {
		nouveau_bo_ref(NULL, &nvbo);
197
		return ret;
198 199 200 201 202 203 204
	}

	ret = nouveau_bo_init(nvbo, size, align, flags, NULL, NULL);
	if (ret) {
		nouveau_bo_ref(NULL, &nvbo);
		return ret;
	}
205

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

215
	nvbo->bo.persistent_swap_storage = nvbo->bo.base.filp;
216
	*pnvbo = nvbo;
217 218 219 220
	return 0;
}

static int
221 222
nouveau_gem_info(struct drm_file *file_priv, struct drm_gem_object *gem,
		 struct drm_nouveau_gem_info *rep)
223
{
224
	struct nouveau_cli *cli = nouveau_cli(file_priv);
225
	struct nouveau_bo *nvbo = nouveau_gem_object(gem);
226
	struct nouveau_vmm *vmm = cli->svm.cli ? &cli->svm : &cli->vmm;
227
	struct nouveau_vma *vma;
228

229 230 231
	if (is_power_of_2(nvbo->valid_domains))
		rep->domain = nvbo->valid_domains;
	else if (nvbo->bo.mem.mem_type == TTM_PL_TT)
232 233 234
		rep->domain = NOUVEAU_GEM_DOMAIN_GART;
	else
		rep->domain = NOUVEAU_GEM_DOMAIN_VRAM;
235
	rep->offset = nvbo->bo.offset;
236 237
	if (vmm->vmm.object.oclass >= NVIF_CLASS_VMM_NV50) {
		vma = nouveau_vma_find(nvbo, vmm);
238 239 240
		if (!vma)
			return -EINVAL;

241
		rep->offset = vma->addr;
242 243
	}

244
	rep->size = nvbo->bo.mem.num_pages << PAGE_SHIFT;
G
Gerd Hoffmann 已提交
245
	rep->map_handle = drm_vma_node_offset_addr(&nvbo->bo.base.vma_node);
246 247 248 249 250 251 252 253 254
	rep->tile_mode = nvbo->mode;
	rep->tile_flags = nvbo->contig ? 0 : NOUVEAU_GEM_TILE_NONCONTIG;
	if (cli->device.info.family >= NV_DEVICE_INFO_V0_FERMI)
		rep->tile_flags |= nvbo->kind << 8;
	else
	if (cli->device.info.family >= NV_DEVICE_INFO_V0_TESLA)
		rep->tile_flags |= nvbo->kind << 8 | nvbo->comp << 16;
	else
		rep->tile_flags |= nvbo->zeta;
255 256 257 258 259 260 261
	return 0;
}

int
nouveau_gem_ioctl_new(struct drm_device *dev, void *data,
		      struct drm_file *file_priv)
{
262
	struct nouveau_cli *cli = nouveau_cli(file_priv);
263 264 265 266
	struct drm_nouveau_gem_new *req = data;
	struct nouveau_bo *nvbo = NULL;
	int ret = 0;

267
	ret = nouveau_gem_new(cli, req->info.size, req->align,
268 269
			      req->info.domain, req->info.tile_mode,
			      req->info.tile_flags, &nvbo);
270 271 272
	if (ret)
		return ret;

273 274
	ret = drm_gem_handle_create(file_priv, &nvbo->bo.base,
				    &req->info.handle);
275
	if (ret == 0) {
276
		ret = nouveau_gem_info(file_priv, &nvbo->bo.base, &req->info);
277 278 279 280
		if (ret)
			drm_gem_handle_delete(file_priv, req->info.handle);
	}

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

296
	if (!domains)
297 298
		return -EINVAL;

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

	return 0;
}

struct validate_op {
325
	struct list_head list;
326
	struct ww_acquire_ctx ticket;
327 328 329
};

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

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

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

344 345 346
			if (chan->vmm->vmm.object.oclass >= NVIF_CLASS_VMM_NV50) {
				struct nouveau_vma *vma =
					(void *)(unsigned long)b->user_priv;
347 348 349 350 351 352
				nouveau_fence_unref(&vma->fence);
				dma_fence_get(&fence->base);
				vma->fence = fence;
			}
		}

353 354 355 356 357
		if (unlikely(nvbo->validate_mapped)) {
			ttm_bo_kunmap(&nvbo->kmap);
			nvbo->validate_mapped = false;
		}

358 359
		list_del(&nvbo->entry);
		nvbo->reserved_by = NULL;
360
		ttm_bo_unreserve(&nvbo->bo);
361
		drm_gem_object_put_unlocked(&nvbo->bo.base);
362 363 364
	}
}

365
static void
366 367
validate_fini(struct validate_op *op, struct nouveau_channel *chan,
	      struct nouveau_fence *fence,
368
	      struct drm_nouveau_gem_pushbuf_bo *pbbo)
369
{
370
	validate_fini_no_ticket(op, chan, fence, pbbo);
371
	ww_acquire_fini(&op->ticket);
372 373 374 375 376 377 378
}

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)
{
379
	struct nouveau_cli *cli = nouveau_cli(file_priv);
380
	int trycnt = 0;
381
	int ret = -EINVAL, i;
382
	struct nouveau_bo *res_bo = NULL;
383 384 385
	LIST_HEAD(gart_list);
	LIST_HEAD(vram_list);
	LIST_HEAD(both_list);
386

387
	ww_acquire_init(&op->ticket, &reservation_ww_class);
388 389
retry:
	if (++trycnt > 100000) {
B
Ben Skeggs 已提交
390
		NV_PRINTK(err, cli, "%s failed and gave up.\n", __func__);
391 392 393 394 395 396 397 398
		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;

399
		gem = drm_gem_object_lookup(file_priv, b->handle);
400
		if (!gem) {
B
Ben Skeggs 已提交
401
			NV_PRINTK(err, cli, "Unknown handle 0x%08x\n", b->handle);
402 403
			ret = -ENOENT;
			break;
404
		}
405
		nvbo = nouveau_gem_object(gem);
406 407
		if (nvbo == res_bo) {
			res_bo = NULL;
408
			drm_gem_object_put_unlocked(gem);
409 410
			continue;
		}
411 412

		if (nvbo->reserved_by && nvbo->reserved_by == file_priv) {
B
Ben Skeggs 已提交
413
			NV_PRINTK(err, cli, "multiple instances of buffer %d on "
414
				      "validation list\n", b->handle);
415
			drm_gem_object_put_unlocked(gem);
416 417
			ret = -EINVAL;
			break;
418 419
		}

420
		ret = ttm_bo_reserve(&nvbo->bo, true, false, &op->ticket);
421
		if (ret) {
422 423 424
			list_splice_tail_init(&vram_list, &op->list);
			list_splice_tail_init(&gart_list, &op->list);
			list_splice_tail_init(&both_list, &op->list);
425
			validate_fini_no_ticket(op, chan, NULL, NULL);
426
			if (unlikely(ret == -EDEADLK)) {
427
				ret = ttm_bo_reserve_slowpath(&nvbo->bo, true,
428
							      &op->ticket);
429 430 431
				if (!ret)
					res_bo = nvbo;
			}
432 433
			if (unlikely(ret)) {
				if (ret != -ERESTARTSYS)
B
Ben Skeggs 已提交
434
					NV_PRINTK(err, cli, "fail reserve\n");
435
				break;
436
			}
437 438
		}

439 440
		if (chan->vmm->vmm.object.oclass >= NVIF_CLASS_VMM_NV50) {
			struct nouveau_vmm *vmm = chan->vmm;
441 442 443 444 445 446 447 448 449 450 451 452
			struct nouveau_vma *vma = nouveau_vma_find(nvbo, vmm);
			if (!vma) {
				NV_PRINTK(err, cli, "vma not found!\n");
				ret = -EINVAL;
				break;
			}

			b->user_priv = (uint64_t)(unsigned long)vma;
		} else {
			b->user_priv = (uint64_t)(unsigned long)nvbo;
		}

453 454 455 456
		nvbo->reserved_by = file_priv;
		nvbo->pbbo_index = i;
		if ((b->valid_domains & NOUVEAU_GEM_DOMAIN_VRAM) &&
		    (b->valid_domains & NOUVEAU_GEM_DOMAIN_GART))
457
			list_add_tail(&nvbo->entry, &both_list);
458 459
		else
		if (b->valid_domains & NOUVEAU_GEM_DOMAIN_VRAM)
460
			list_add_tail(&nvbo->entry, &vram_list);
461 462
		else
		if (b->valid_domains & NOUVEAU_GEM_DOMAIN_GART)
463
			list_add_tail(&nvbo->entry, &gart_list);
464
		else {
B
Ben Skeggs 已提交
465
			NV_PRINTK(err, cli, "invalid valid domains: 0x%08x\n",
466
				 b->valid_domains);
467 468 469
			list_add_tail(&nvbo->entry, &both_list);
			ret = -EINVAL;
			break;
470
		}
471 472
		if (nvbo == res_bo)
			goto retry;
473 474
	}

475
	ww_acquire_done(&op->ticket);
476 477 478 479
	list_splice_tail(&vram_list, &op->list);
	list_splice_tail(&gart_list, &op->list);
	list_splice_tail(&both_list, &op->list);
	if (ret)
480
		validate_fini(op, chan, NULL, NULL);
481 482
	return ret;

483 484 485
}

static int
486 487 488
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)
489
{
490
	struct nouveau_drm *drm = chan->drm;
491 492 493 494 495 496 497 498
	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];

499
		ret = nouveau_gem_set_domain(&nvbo->bo.base, b->read_domains,
500 501
					     b->write_domains,
					     b->valid_domains);
502
		if (unlikely(ret)) {
B
Ben Skeggs 已提交
503
			NV_PRINTK(err, cli, "fail set_domain\n");
504
			return ret;
505
		}
506

507
		ret = nouveau_bo_validate(nvbo, true, false);
508
		if (unlikely(ret)) {
509
			if (ret != -ERESTARTSYS)
B
Ben Skeggs 已提交
510
				NV_PRINTK(err, cli, "fail ttm_validate\n");
511
			return ret;
512
		}
513

514
		ret = nouveau_fence_sync(nvbo, chan, !!b->write_domains, true);
515
		if (unlikely(ret)) {
516
			if (ret != -ERESTARTSYS)
B
Ben Skeggs 已提交
517
				NV_PRINTK(err, cli, "fail post-validate sync\n");
518 519 520
			return ret;
		}

521
		if (drm->client.device.info.family < NV_DEVICE_INFO_V0_TESLA) {
522 523 524 525 526 527 528 529 530 531 532 533 534 535 536
			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 已提交
537
			if (copy_to_user(&upbbo[nvbo->pbbo_index].presumed,
538 539 540
					     &b->presumed, sizeof(b->presumed)))
				return -EFAULT;
		}
541 542 543 544 545 546 547 548 549 550 551 552
	}

	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)
{
553
	struct nouveau_cli *cli = nouveau_cli(file_priv);
554
	int ret;
555

556
	INIT_LIST_HEAD(&op->list);
557 558 559 560 561

	if (nr_buffers == 0)
		return 0;

	ret = validate_init(chan, file_priv, pbbo, nr_buffers, op);
562
	if (unlikely(ret)) {
563
		if (ret != -ERESTARTSYS)
B
Ben Skeggs 已提交
564
			NV_PRINTK(err, cli, "validate_init\n");
565
		return ret;
566
	}
567

568
	ret = validate_list(chan, cli, &op->list, pbbo, user_buffers);
569
	if (unlikely(ret < 0)) {
570
		if (ret != -ERESTARTSYS)
B
Ben Skeggs 已提交
571
			NV_PRINTK(err, cli, "validating bo list\n");
572
		validate_fini(op, chan, NULL, NULL);
573 574
		return ret;
	}
575
	*apply_relocs = ret;
576 577 578
	return 0;
}

579 580 581
static inline void
u_free(void *addr)
{
582
	kvfree(addr);
583 584
}

585 586 587 588 589 590
static inline void *
u_memcpya(uint64_t user, unsigned nmemb, unsigned size)
{
	void *mem;
	void __user *userptr = (void __force __user *)(uintptr_t)user;

591 592
	size *= nmemb;

593
	mem = kvmalloc(size, GFP_KERNEL);
594 595 596
	if (!mem)
		return ERR_PTR(-ENOMEM);

D
Daniel Vetter 已提交
597
	if (copy_from_user(mem, userptr, size)) {
598
		u_free(mem);
599 600 601 602 603 604 605
		return ERR_PTR(-EFAULT);
	}

	return mem;
}

static int
606
nouveau_gem_pushbuf_reloc_apply(struct nouveau_cli *cli,
607 608
				struct drm_nouveau_gem_pushbuf *req,
				struct drm_nouveau_gem_pushbuf_bo *bo)
609 610
{
	struct drm_nouveau_gem_pushbuf_reloc *reloc = NULL;
611 612
	int ret = 0;
	unsigned i;
613

614
	reloc = u_memcpya(req->relocs, req->nr_relocs, sizeof(*reloc));
615 616 617
	if (IS_ERR(reloc))
		return PTR_ERR(reloc);

618
	for (i = 0; i < req->nr_relocs; i++) {
619 620
		struct drm_nouveau_gem_pushbuf_reloc *r = &reloc[i];
		struct drm_nouveau_gem_pushbuf_bo *b;
621
		struct nouveau_bo *nvbo;
622 623
		uint32_t data;

624
		if (unlikely(r->bo_index >= req->nr_buffers)) {
B
Ben Skeggs 已提交
625
			NV_PRINTK(err, cli, "reloc bo index invalid\n");
626 627 628 629 630
			ret = -EINVAL;
			break;
		}

		b = &bo[r->bo_index];
631
		if (b->presumed.valid)
632 633
			continue;

634
		if (unlikely(r->reloc_bo_index >= req->nr_buffers)) {
B
Ben Skeggs 已提交
635
			NV_PRINTK(err, cli, "reloc container bo index invalid\n");
636 637 638 639 640 641 642
			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 已提交
643
			NV_PRINTK(err, cli, "reloc outside of bo\n");
644 645 646 647 648 649 650 651
			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 已提交
652
				NV_PRINTK(err, cli, "failed kmap for reloc\n");
653 654 655 656 657
				break;
			}
			nvbo->validate_mapped = true;
		}

658
		if (r->flags & NOUVEAU_GEM_RELOC_LOW)
659
			data = b->presumed.offset + r->data;
660 661
		else
		if (r->flags & NOUVEAU_GEM_RELOC_HIGH)
662
			data = (b->presumed.offset + r->data) >> 32;
663 664 665 666
		else
			data = r->data;

		if (r->flags & NOUVEAU_GEM_RELOC_OR) {
667
			if (b->presumed.domain == NOUVEAU_GEM_DOMAIN_GART)
668 669 670 671 672
				data |= r->tor;
			else
				data |= r->vor;
		}

673
		ret = ttm_bo_wait(&nvbo->bo, false, false);
674
		if (ret) {
B
Ben Skeggs 已提交
675
			NV_PRINTK(err, cli, "reloc wait_idle failed: %d\n", ret);
676 677 678 679
			break;
		}

		nouveau_bo_wr32(nvbo, r->reloc_bo_offset >> 2, data);
680 681
	}

682
	u_free(reloc);
683 684 685 686 687 688 689
	return ret;
}

int
nouveau_gem_ioctl_pushbuf(struct drm_device *dev, void *data,
			  struct drm_file *file_priv)
{
690
	struct nouveau_abi16 *abi16 = nouveau_abi16_get(file_priv);
691
	struct nouveau_cli *cli = nouveau_cli(file_priv);
692 693
	struct nouveau_abi16_chan *temp;
	struct nouveau_drm *drm = nouveau_drm(dev);
694
	struct drm_nouveau_gem_pushbuf *req = data;
695 696
	struct drm_nouveau_gem_pushbuf_push *push;
	struct drm_nouveau_gem_pushbuf_bo *bo;
697
	struct nouveau_channel *chan = NULL;
698
	struct validate_op op;
699
	struct nouveau_fence *fence = NULL;
700
	int i, j, ret = 0, do_reloc = 0;
701

702 703
	if (unlikely(!abi16))
		return -ENOMEM;
704

705
	list_for_each_entry(temp, &abi16->channels, head) {
706
		if (temp->chan->chid == req->channel) {
707 708 709 710
			chan = temp->chan;
			break;
		}
	}
711

712 713 714 715 716
	if (!chan)
		return nouveau_abi16_put(abi16, -ENOENT);

	req->vram_available = drm->gem.vram_available;
	req->gart_available = drm->gem.gart_available;
717 718
	if (unlikely(req->nr_push == 0))
		goto out_next;
719

720
	if (unlikely(req->nr_push > NOUVEAU_GEM_MAX_PUSH)) {
B
Ben Skeggs 已提交
721
		NV_PRINTK(err, cli, "pushbuf push count exceeds limit: %d max %d\n",
722
			 req->nr_push, NOUVEAU_GEM_MAX_PUSH);
723
		return nouveau_abi16_put(abi16, -EINVAL);
724 725
	}

726
	if (unlikely(req->nr_buffers > NOUVEAU_GEM_MAX_BUFFERS)) {
B
Ben Skeggs 已提交
727
		NV_PRINTK(err, cli, "pushbuf bo count exceeds limit: %d max %d\n",
728
			 req->nr_buffers, NOUVEAU_GEM_MAX_BUFFERS);
729
		return nouveau_abi16_put(abi16, -EINVAL);
730 731
	}

732
	if (unlikely(req->nr_relocs > NOUVEAU_GEM_MAX_RELOCS)) {
B
Ben Skeggs 已提交
733
		NV_PRINTK(err, cli, "pushbuf reloc count exceeds limit: %d max %d\n",
734
			 req->nr_relocs, NOUVEAU_GEM_MAX_RELOCS);
735
		return nouveau_abi16_put(abi16, -EINVAL);
736 737
	}

738
	push = u_memcpya(req->push, req->nr_push, sizeof(*push));
739 740
	if (IS_ERR(push))
		return nouveau_abi16_put(abi16, PTR_ERR(push));
741

742
	bo = u_memcpya(req->buffers, req->nr_buffers, sizeof(*bo));
743
	if (IS_ERR(bo)) {
744
		u_free(push);
745
		return nouveau_abi16_put(abi16, PTR_ERR(bo));
746
	}
747

748
	/* Ensure all push buffers are on validate list */
749 750
	for (i = 0; i < req->nr_push; i++) {
		if (push[i].bo_index >= req->nr_buffers) {
B
Ben Skeggs 已提交
751
			NV_PRINTK(err, cli, "push %d buffer not in list\n", i);
752
			ret = -EINVAL;
753
			goto out_prevalid;
754 755 756
		}
	}

757 758 759 760
	/* Validate buffer list */
	ret = nouveau_gem_pushbuf_validate(chan, file_priv, bo, req->buffers,
					   req->nr_buffers, &op, &do_reloc);
	if (ret) {
761
		if (ret != -ERESTARTSYS)
B
Ben Skeggs 已提交
762
			NV_PRINTK(err, cli, "validate: %d\n", ret);
763
		goto out_prevalid;
764 765 766 767
	}

	/* Apply any relocations that are required */
	if (do_reloc) {
768
		ret = nouveau_gem_pushbuf_reloc_apply(cli, req, bo);
769
		if (ret) {
B
Ben Skeggs 已提交
770
			NV_PRINTK(err, cli, "reloc apply: %d\n", ret);
771 772 773 774
			goto out;
		}
	}

775
	if (chan->dma.ib_max) {
776
		ret = nouveau_dma_wait(chan, req->nr_push + 1, 16);
777
		if (ret) {
B
Ben Skeggs 已提交
778
			NV_PRINTK(err, cli, "nv50cal_space: %d\n", ret);
779 780 781
			goto out;
		}

782
		for (i = 0; i < req->nr_push; i++) {
783
			struct nouveau_vma *vma = (void *)(unsigned long)
784 785
				bo[push[i].bo_index].user_priv;

786
			nv50_dma_push(chan, vma->addr + push[i].offset,
787 788
				      push[i].length);
		}
789
	} else
790
	if (drm->client.device.info.chipset >= 0x25) {
791
		ret = RING_SPACE(chan, req->nr_push * 2);
792
		if (ret) {
B
Ben Skeggs 已提交
793
			NV_PRINTK(err, cli, "cal_space: %d\n", ret);
794 795
			goto out;
		}
796 797 798 799 800

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

801
			OUT_RING(chan, (nvbo->bo.offset + push[i].offset) | 2);
802 803
			OUT_RING(chan, 0);
		}
804
	} else {
805
		ret = RING_SPACE(chan, req->nr_push * (2 + NOUVEAU_DMA_SKIPS));
806
		if (ret) {
B
Ben Skeggs 已提交
807
			NV_PRINTK(err, cli, "jmp_space: %d\n", ret);
808 809 810
			goto out;
		}

811 812 813 814 815
		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;

816
			cmd = chan->push.addr + ((chan->dma.cur + 2) << 2);
817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834
			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);
			}

835 836
			OUT_RING(chan, 0x20000000 |
				      (nvbo->bo.offset + push[i].offset));
837
			OUT_RING(chan, 0);
838 839 840
			for (j = 0; j < NOUVEAU_DMA_SKIPS; j++)
				OUT_RING(chan, 0);
		}
841 842
	}

843
	ret = nouveau_fence_new(chan, false, &fence);
844
	if (ret) {
B
Ben Skeggs 已提交
845
		NV_PRINTK(err, cli, "error fencing pushbuf: %d\n", ret);
846 847 848 849 850
		WIND_RING(chan);
		goto out;
	}

out:
851
	validate_fini(&op, chan, fence, bo);
852
	nouveau_fence_unref(&fence);
853 854

out_prevalid:
855 856
	u_free(bo);
	u_free(push);
857 858

out_next:
859 860 861 862
	if (chan->dma.ib_max) {
		req->suffix0 = 0x00000000;
		req->suffix1 = 0x00000000;
	} else
863
	if (drm->client.device.info.chipset >= 0x25) {
864 865 866 867
		req->suffix0 = 0x00020000;
		req->suffix1 = 0x00000000;
	} else {
		req->suffix0 = 0x20000000 |
868
			      (chan->push.addr + ((chan->dma.cur + 2) << 2));
869 870 871
		req->suffix1 = 0x00000000;
	}

872
	return nouveau_abi16_put(abi16, ret);
873 874 875 876 877 878 879 880 881 882
}

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);
883
	bool write = !!(req->flags & NOUVEAU_GEM_CPU_PREP_WRITE);
884
	long lret;
885
	int ret;
886

887
	gem = drm_gem_object_lookup(file_priv, req->handle);
888
	if (!gem)
889
		return -ENOENT;
890 891
	nvbo = nouveau_gem_object(gem);

892
	lret = dma_resv_wait_timeout_rcu(nvbo->bo.base.resv, write, true,
893 894 895 896 897 898 899
						   no_wait ? 0 : 30 * HZ);
	if (!lret)
		ret = -EBUSY;
	else if (lret > 0)
		ret = 0;
	else
		ret = lret;
900

901
	nouveau_bo_sync_for_cpu(nvbo);
902
	drm_gem_object_put_unlocked(gem);
903

904 905 906 907 908 909 910
	return ret;
}

int
nouveau_gem_ioctl_cpu_fini(struct drm_device *dev, void *data,
			   struct drm_file *file_priv)
{
911 912 913 914
	struct drm_nouveau_gem_cpu_fini *req = data;
	struct drm_gem_object *gem;
	struct nouveau_bo *nvbo;

915
	gem = drm_gem_object_lookup(file_priv, req->handle);
916 917 918 919 920
	if (!gem)
		return -ENOENT;
	nvbo = nouveau_gem_object(gem);

	nouveau_bo_sync_for_device(nvbo);
921
	drm_gem_object_put_unlocked(gem);
B
Ben Skeggs 已提交
922
	return 0;
923 924 925 926 927 928 929 930 931 932
}

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;

933
	gem = drm_gem_object_lookup(file_priv, req->handle);
934
	if (!gem)
935
		return -ENOENT;
936

937
	ret = nouveau_gem_info(file_priv, gem, req);
938
	drm_gem_object_put_unlocked(gem);
939 940 941
	return ret;
}