i2c-eg20t: change timeout value 50msec to 1000msec
[zen-stable.git] / drivers / gpu / drm / nouveau / nouveau_gem.c
blob7ce3fde4074312948e39c902fb4ca239c8e5a733
1 /*
2 * Copyright (C) 2008 Ben Skeggs.
3 * All Rights Reserved.
5 * Permission is hereby granted, free of charge, to any person obtaining
6 * a copy of this software and associated documentation files (the
7 * "Software"), to deal in the Software without restriction, including
8 * without limitation the rights to use, copy, modify, merge, publish,
9 * distribute, sublicense, and/or sell copies of the Software, and to
10 * permit persons to whom the Software is furnished to do so, subject to
11 * the following conditions:
13 * The above copyright notice and this permission notice (including the
14 * next paragraph) shall be included in all copies or substantial
15 * portions of the Software.
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
20 * IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE
21 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
22 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
23 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26 #include "drmP.h"
27 #include "drm.h"
29 #include "nouveau_drv.h"
30 #include "nouveau_drm.h"
31 #include "nouveau_dma.h"
33 #define nouveau_gem_pushbuf_sync(chan) 0
35 int
36 nouveau_gem_object_new(struct drm_gem_object *gem)
38 return 0;
41 void
42 nouveau_gem_object_del(struct drm_gem_object *gem)
44 struct nouveau_bo *nvbo = gem->driver_private;
45 struct ttm_buffer_object *bo = &nvbo->bo;
47 if (!nvbo)
48 return;
49 nvbo->gem = NULL;
51 if (unlikely(nvbo->pin_refcnt)) {
52 nvbo->pin_refcnt = 1;
53 nouveau_bo_unpin(nvbo);
56 ttm_bo_unref(&bo);
58 drm_gem_object_release(gem);
59 kfree(gem);
62 int
63 nouveau_gem_object_open(struct drm_gem_object *gem, struct drm_file *file_priv)
65 struct nouveau_fpriv *fpriv = nouveau_fpriv(file_priv);
66 struct nouveau_bo *nvbo = nouveau_gem_object(gem);
67 struct nouveau_vma *vma;
68 int ret;
70 if (!fpriv->vm)
71 return 0;
73 ret = ttm_bo_reserve(&nvbo->bo, false, false, false, 0);
74 if (ret)
75 return ret;
77 vma = nouveau_bo_vma_find(nvbo, fpriv->vm);
78 if (!vma) {
79 vma = kzalloc(sizeof(*vma), GFP_KERNEL);
80 if (!vma) {
81 ret = -ENOMEM;
82 goto out;
85 ret = nouveau_bo_vma_add(nvbo, fpriv->vm, vma);
86 if (ret) {
87 kfree(vma);
88 goto out;
90 } else {
91 vma->refcount++;
94 out:
95 ttm_bo_unreserve(&nvbo->bo);
96 return ret;
99 void
100 nouveau_gem_object_close(struct drm_gem_object *gem, struct drm_file *file_priv)
102 struct nouveau_fpriv *fpriv = nouveau_fpriv(file_priv);
103 struct nouveau_bo *nvbo = nouveau_gem_object(gem);
104 struct nouveau_vma *vma;
105 int ret;
107 if (!fpriv->vm)
108 return;
110 ret = ttm_bo_reserve(&nvbo->bo, false, false, false, 0);
111 if (ret)
112 return;
114 vma = nouveau_bo_vma_find(nvbo, fpriv->vm);
115 if (vma) {
116 if (--vma->refcount == 0) {
117 nouveau_bo_vma_del(nvbo, vma);
118 kfree(vma);
121 ttm_bo_unreserve(&nvbo->bo);
125 nouveau_gem_new(struct drm_device *dev, int size, int align, uint32_t domain,
126 uint32_t tile_mode, uint32_t tile_flags,
127 struct nouveau_bo **pnvbo)
129 struct drm_nouveau_private *dev_priv = dev->dev_private;
130 struct nouveau_bo *nvbo;
131 u32 flags = 0;
132 int ret;
134 if (domain & NOUVEAU_GEM_DOMAIN_VRAM)
135 flags |= TTM_PL_FLAG_VRAM;
136 if (domain & NOUVEAU_GEM_DOMAIN_GART)
137 flags |= TTM_PL_FLAG_TT;
138 if (!flags || domain & NOUVEAU_GEM_DOMAIN_CPU)
139 flags |= TTM_PL_FLAG_SYSTEM;
141 ret = nouveau_bo_new(dev, size, align, flags, tile_mode,
142 tile_flags, pnvbo);
143 if (ret)
144 return ret;
145 nvbo = *pnvbo;
147 /* we restrict allowed domains on nv50+ to only the types
148 * that were requested at creation time. not possibly on
149 * earlier chips without busting the ABI.
151 nvbo->valid_domains = NOUVEAU_GEM_DOMAIN_VRAM |
152 NOUVEAU_GEM_DOMAIN_GART;
153 if (dev_priv->card_type >= NV_50)
154 nvbo->valid_domains &= domain;
156 nvbo->gem = drm_gem_object_alloc(dev, nvbo->bo.mem.size);
157 if (!nvbo->gem) {
158 nouveau_bo_ref(NULL, pnvbo);
159 return -ENOMEM;
162 nvbo->bo.persistent_swap_storage = nvbo->gem->filp;
163 nvbo->gem->driver_private = nvbo;
164 return 0;
167 static int
168 nouveau_gem_info(struct drm_file *file_priv, struct drm_gem_object *gem,
169 struct drm_nouveau_gem_info *rep)
171 struct nouveau_fpriv *fpriv = nouveau_fpriv(file_priv);
172 struct nouveau_bo *nvbo = nouveau_gem_object(gem);
173 struct nouveau_vma *vma;
175 if (nvbo->bo.mem.mem_type == TTM_PL_TT)
176 rep->domain = NOUVEAU_GEM_DOMAIN_GART;
177 else
178 rep->domain = NOUVEAU_GEM_DOMAIN_VRAM;
180 rep->offset = nvbo->bo.offset;
181 if (fpriv->vm) {
182 vma = nouveau_bo_vma_find(nvbo, fpriv->vm);
183 if (!vma)
184 return -EINVAL;
186 rep->offset = vma->offset;
189 rep->size = nvbo->bo.mem.num_pages << PAGE_SHIFT;
190 rep->map_handle = nvbo->bo.addr_space_offset;
191 rep->tile_mode = nvbo->tile_mode;
192 rep->tile_flags = nvbo->tile_flags;
193 return 0;
197 nouveau_gem_ioctl_new(struct drm_device *dev, void *data,
198 struct drm_file *file_priv)
200 struct drm_nouveau_private *dev_priv = dev->dev_private;
201 struct drm_nouveau_gem_new *req = data;
202 struct nouveau_bo *nvbo = NULL;
203 int ret = 0;
205 if (unlikely(dev_priv->ttm.bdev.dev_mapping == NULL))
206 dev_priv->ttm.bdev.dev_mapping = dev_priv->dev->dev_mapping;
208 if (!dev_priv->engine.vram.flags_valid(dev, req->info.tile_flags)) {
209 NV_ERROR(dev, "bad page flags: 0x%08x\n", req->info.tile_flags);
210 return -EINVAL;
213 ret = nouveau_gem_new(dev, req->info.size, req->align,
214 req->info.domain, req->info.tile_mode,
215 req->info.tile_flags, &nvbo);
216 if (ret)
217 return ret;
219 ret = drm_gem_handle_create(file_priv, nvbo->gem, &req->info.handle);
220 if (ret == 0) {
221 ret = nouveau_gem_info(file_priv, nvbo->gem, &req->info);
222 if (ret)
223 drm_gem_handle_delete(file_priv, req->info.handle);
226 /* drop reference from allocate - handle holds it now */
227 drm_gem_object_unreference_unlocked(nvbo->gem);
228 return ret;
231 static int
232 nouveau_gem_set_domain(struct drm_gem_object *gem, uint32_t read_domains,
233 uint32_t write_domains, uint32_t valid_domains)
235 struct nouveau_bo *nvbo = gem->driver_private;
236 struct ttm_buffer_object *bo = &nvbo->bo;
237 uint32_t domains = valid_domains & nvbo->valid_domains &
238 (write_domains ? write_domains : read_domains);
239 uint32_t pref_flags = 0, valid_flags = 0;
241 if (!domains)
242 return -EINVAL;
244 if (valid_domains & NOUVEAU_GEM_DOMAIN_VRAM)
245 valid_flags |= TTM_PL_FLAG_VRAM;
247 if (valid_domains & NOUVEAU_GEM_DOMAIN_GART)
248 valid_flags |= TTM_PL_FLAG_TT;
250 if ((domains & NOUVEAU_GEM_DOMAIN_VRAM) &&
251 bo->mem.mem_type == TTM_PL_VRAM)
252 pref_flags |= TTM_PL_FLAG_VRAM;
254 else if ((domains & NOUVEAU_GEM_DOMAIN_GART) &&
255 bo->mem.mem_type == TTM_PL_TT)
256 pref_flags |= TTM_PL_FLAG_TT;
258 else if (domains & NOUVEAU_GEM_DOMAIN_VRAM)
259 pref_flags |= TTM_PL_FLAG_VRAM;
261 else
262 pref_flags |= TTM_PL_FLAG_TT;
264 nouveau_bo_placement_set(nvbo, pref_flags, valid_flags);
266 return 0;
269 struct validate_op {
270 struct list_head vram_list;
271 struct list_head gart_list;
272 struct list_head both_list;
275 static void
276 validate_fini_list(struct list_head *list, struct nouveau_fence *fence)
278 struct list_head *entry, *tmp;
279 struct nouveau_bo *nvbo;
281 list_for_each_safe(entry, tmp, list) {
282 nvbo = list_entry(entry, struct nouveau_bo, entry);
284 nouveau_bo_fence(nvbo, fence);
286 if (unlikely(nvbo->validate_mapped)) {
287 ttm_bo_kunmap(&nvbo->kmap);
288 nvbo->validate_mapped = false;
291 list_del(&nvbo->entry);
292 nvbo->reserved_by = NULL;
293 ttm_bo_unreserve(&nvbo->bo);
294 drm_gem_object_unreference_unlocked(nvbo->gem);
298 static void
299 validate_fini(struct validate_op *op, struct nouveau_fence* fence)
301 validate_fini_list(&op->vram_list, fence);
302 validate_fini_list(&op->gart_list, fence);
303 validate_fini_list(&op->both_list, fence);
306 static int
307 validate_init(struct nouveau_channel *chan, struct drm_file *file_priv,
308 struct drm_nouveau_gem_pushbuf_bo *pbbo,
309 int nr_buffers, struct validate_op *op)
311 struct drm_device *dev = chan->dev;
312 struct drm_nouveau_private *dev_priv = dev->dev_private;
313 uint32_t sequence;
314 int trycnt = 0;
315 int ret, i;
317 sequence = atomic_add_return(1, &dev_priv->ttm.validate_sequence);
318 retry:
319 if (++trycnt > 100000) {
320 NV_ERROR(dev, "%s failed and gave up.\n", __func__);
321 return -EINVAL;
324 for (i = 0; i < nr_buffers; i++) {
325 struct drm_nouveau_gem_pushbuf_bo *b = &pbbo[i];
326 struct drm_gem_object *gem;
327 struct nouveau_bo *nvbo;
329 gem = drm_gem_object_lookup(dev, file_priv, b->handle);
330 if (!gem) {
331 NV_ERROR(dev, "Unknown handle 0x%08x\n", b->handle);
332 validate_fini(op, NULL);
333 return -ENOENT;
335 nvbo = gem->driver_private;
337 if (nvbo->reserved_by && nvbo->reserved_by == file_priv) {
338 NV_ERROR(dev, "multiple instances of buffer %d on "
339 "validation list\n", b->handle);
340 validate_fini(op, NULL);
341 return -EINVAL;
344 ret = ttm_bo_reserve(&nvbo->bo, true, false, true, sequence);
345 if (ret) {
346 validate_fini(op, NULL);
347 if (unlikely(ret == -EAGAIN))
348 ret = ttm_bo_wait_unreserved(&nvbo->bo, true);
349 drm_gem_object_unreference_unlocked(gem);
350 if (unlikely(ret)) {
351 if (ret != -ERESTARTSYS)
352 NV_ERROR(dev, "fail reserve\n");
353 return ret;
355 goto retry;
358 b->user_priv = (uint64_t)(unsigned long)nvbo;
359 nvbo->reserved_by = file_priv;
360 nvbo->pbbo_index = i;
361 if ((b->valid_domains & NOUVEAU_GEM_DOMAIN_VRAM) &&
362 (b->valid_domains & NOUVEAU_GEM_DOMAIN_GART))
363 list_add_tail(&nvbo->entry, &op->both_list);
364 else
365 if (b->valid_domains & NOUVEAU_GEM_DOMAIN_VRAM)
366 list_add_tail(&nvbo->entry, &op->vram_list);
367 else
368 if (b->valid_domains & NOUVEAU_GEM_DOMAIN_GART)
369 list_add_tail(&nvbo->entry, &op->gart_list);
370 else {
371 NV_ERROR(dev, "invalid valid domains: 0x%08x\n",
372 b->valid_domains);
373 list_add_tail(&nvbo->entry, &op->both_list);
374 validate_fini(op, NULL);
375 return -EINVAL;
379 return 0;
382 static int
383 validate_sync(struct nouveau_channel *chan, struct nouveau_bo *nvbo)
385 struct nouveau_fence *fence = NULL;
386 int ret = 0;
388 spin_lock(&nvbo->bo.bdev->fence_lock);
389 if (nvbo->bo.sync_obj)
390 fence = nouveau_fence_ref(nvbo->bo.sync_obj);
391 spin_unlock(&nvbo->bo.bdev->fence_lock);
393 if (fence) {
394 ret = nouveau_fence_sync(fence, chan);
395 nouveau_fence_unref(&fence);
398 return ret;
401 static int
402 validate_list(struct nouveau_channel *chan, struct list_head *list,
403 struct drm_nouveau_gem_pushbuf_bo *pbbo, uint64_t user_pbbo_ptr)
405 struct drm_nouveau_private *dev_priv = chan->dev->dev_private;
406 struct drm_nouveau_gem_pushbuf_bo __user *upbbo =
407 (void __force __user *)(uintptr_t)user_pbbo_ptr;
408 struct drm_device *dev = chan->dev;
409 struct nouveau_bo *nvbo;
410 int ret, relocs = 0;
412 list_for_each_entry(nvbo, list, entry) {
413 struct drm_nouveau_gem_pushbuf_bo *b = &pbbo[nvbo->pbbo_index];
415 ret = validate_sync(chan, nvbo);
416 if (unlikely(ret)) {
417 NV_ERROR(dev, "fail pre-validate sync\n");
418 return ret;
421 ret = nouveau_gem_set_domain(nvbo->gem, b->read_domains,
422 b->write_domains,
423 b->valid_domains);
424 if (unlikely(ret)) {
425 NV_ERROR(dev, "fail set_domain\n");
426 return ret;
429 nvbo->channel = (b->read_domains & (1 << 31)) ? NULL : chan;
430 ret = nouveau_bo_validate(nvbo, true, false, false);
431 nvbo->channel = NULL;
432 if (unlikely(ret)) {
433 if (ret != -ERESTARTSYS)
434 NV_ERROR(dev, "fail ttm_validate\n");
435 return ret;
438 ret = validate_sync(chan, nvbo);
439 if (unlikely(ret)) {
440 NV_ERROR(dev, "fail post-validate sync\n");
441 return ret;
444 if (dev_priv->card_type < NV_50) {
445 if (nvbo->bo.offset == b->presumed.offset &&
446 ((nvbo->bo.mem.mem_type == TTM_PL_VRAM &&
447 b->presumed.domain & NOUVEAU_GEM_DOMAIN_VRAM) ||
448 (nvbo->bo.mem.mem_type == TTM_PL_TT &&
449 b->presumed.domain & NOUVEAU_GEM_DOMAIN_GART)))
450 continue;
452 if (nvbo->bo.mem.mem_type == TTM_PL_TT)
453 b->presumed.domain = NOUVEAU_GEM_DOMAIN_GART;
454 else
455 b->presumed.domain = NOUVEAU_GEM_DOMAIN_VRAM;
456 b->presumed.offset = nvbo->bo.offset;
457 b->presumed.valid = 0;
458 relocs++;
460 if (DRM_COPY_TO_USER(&upbbo[nvbo->pbbo_index].presumed,
461 &b->presumed, sizeof(b->presumed)))
462 return -EFAULT;
466 return relocs;
469 static int
470 nouveau_gem_pushbuf_validate(struct nouveau_channel *chan,
471 struct drm_file *file_priv,
472 struct drm_nouveau_gem_pushbuf_bo *pbbo,
473 uint64_t user_buffers, int nr_buffers,
474 struct validate_op *op, int *apply_relocs)
476 struct drm_device *dev = chan->dev;
477 int ret, relocs = 0;
479 INIT_LIST_HEAD(&op->vram_list);
480 INIT_LIST_HEAD(&op->gart_list);
481 INIT_LIST_HEAD(&op->both_list);
483 if (nr_buffers == 0)
484 return 0;
486 ret = validate_init(chan, file_priv, pbbo, nr_buffers, op);
487 if (unlikely(ret)) {
488 if (ret != -ERESTARTSYS)
489 NV_ERROR(dev, "validate_init\n");
490 return ret;
493 ret = validate_list(chan, &op->vram_list, pbbo, user_buffers);
494 if (unlikely(ret < 0)) {
495 if (ret != -ERESTARTSYS)
496 NV_ERROR(dev, "validate vram_list\n");
497 validate_fini(op, NULL);
498 return ret;
500 relocs += ret;
502 ret = validate_list(chan, &op->gart_list, pbbo, user_buffers);
503 if (unlikely(ret < 0)) {
504 if (ret != -ERESTARTSYS)
505 NV_ERROR(dev, "validate gart_list\n");
506 validate_fini(op, NULL);
507 return ret;
509 relocs += ret;
511 ret = validate_list(chan, &op->both_list, pbbo, user_buffers);
512 if (unlikely(ret < 0)) {
513 if (ret != -ERESTARTSYS)
514 NV_ERROR(dev, "validate both_list\n");
515 validate_fini(op, NULL);
516 return ret;
518 relocs += ret;
520 *apply_relocs = relocs;
521 return 0;
524 static inline void *
525 u_memcpya(uint64_t user, unsigned nmemb, unsigned size)
527 void *mem;
528 void __user *userptr = (void __force __user *)(uintptr_t)user;
530 mem = kmalloc(nmemb * size, GFP_KERNEL);
531 if (!mem)
532 return ERR_PTR(-ENOMEM);
534 if (DRM_COPY_FROM_USER(mem, userptr, nmemb * size)) {
535 kfree(mem);
536 return ERR_PTR(-EFAULT);
539 return mem;
542 static int
543 nouveau_gem_pushbuf_reloc_apply(struct drm_device *dev,
544 struct drm_nouveau_gem_pushbuf *req,
545 struct drm_nouveau_gem_pushbuf_bo *bo)
547 struct drm_nouveau_gem_pushbuf_reloc *reloc = NULL;
548 int ret = 0;
549 unsigned i;
551 reloc = u_memcpya(req->relocs, req->nr_relocs, sizeof(*reloc));
552 if (IS_ERR(reloc))
553 return PTR_ERR(reloc);
555 for (i = 0; i < req->nr_relocs; i++) {
556 struct drm_nouveau_gem_pushbuf_reloc *r = &reloc[i];
557 struct drm_nouveau_gem_pushbuf_bo *b;
558 struct nouveau_bo *nvbo;
559 uint32_t data;
561 if (unlikely(r->bo_index > req->nr_buffers)) {
562 NV_ERROR(dev, "reloc bo index invalid\n");
563 ret = -EINVAL;
564 break;
567 b = &bo[r->bo_index];
568 if (b->presumed.valid)
569 continue;
571 if (unlikely(r->reloc_bo_index > req->nr_buffers)) {
572 NV_ERROR(dev, "reloc container bo index invalid\n");
573 ret = -EINVAL;
574 break;
576 nvbo = (void *)(unsigned long)bo[r->reloc_bo_index].user_priv;
578 if (unlikely(r->reloc_bo_offset + 4 >
579 nvbo->bo.mem.num_pages << PAGE_SHIFT)) {
580 NV_ERROR(dev, "reloc outside of bo\n");
581 ret = -EINVAL;
582 break;
585 if (!nvbo->kmap.virtual) {
586 ret = ttm_bo_kmap(&nvbo->bo, 0, nvbo->bo.mem.num_pages,
587 &nvbo->kmap);
588 if (ret) {
589 NV_ERROR(dev, "failed kmap for reloc\n");
590 break;
592 nvbo->validate_mapped = true;
595 if (r->flags & NOUVEAU_GEM_RELOC_LOW)
596 data = b->presumed.offset + r->data;
597 else
598 if (r->flags & NOUVEAU_GEM_RELOC_HIGH)
599 data = (b->presumed.offset + r->data) >> 32;
600 else
601 data = r->data;
603 if (r->flags & NOUVEAU_GEM_RELOC_OR) {
604 if (b->presumed.domain == NOUVEAU_GEM_DOMAIN_GART)
605 data |= r->tor;
606 else
607 data |= r->vor;
610 spin_lock(&nvbo->bo.bdev->fence_lock);
611 ret = ttm_bo_wait(&nvbo->bo, false, false, false);
612 spin_unlock(&nvbo->bo.bdev->fence_lock);
613 if (ret) {
614 NV_ERROR(dev, "reloc wait_idle failed: %d\n", ret);
615 break;
618 nouveau_bo_wr32(nvbo, r->reloc_bo_offset >> 2, data);
621 kfree(reloc);
622 return ret;
626 nouveau_gem_ioctl_pushbuf(struct drm_device *dev, void *data,
627 struct drm_file *file_priv)
629 struct drm_nouveau_private *dev_priv = dev->dev_private;
630 struct drm_nouveau_gem_pushbuf *req = data;
631 struct drm_nouveau_gem_pushbuf_push *push;
632 struct drm_nouveau_gem_pushbuf_bo *bo;
633 struct nouveau_channel *chan;
634 struct validate_op op;
635 struct nouveau_fence *fence = NULL;
636 int i, j, ret = 0, do_reloc = 0;
638 chan = nouveau_channel_get(file_priv, req->channel);
639 if (IS_ERR(chan))
640 return PTR_ERR(chan);
642 req->vram_available = dev_priv->fb_aper_free;
643 req->gart_available = dev_priv->gart_info.aper_free;
644 if (unlikely(req->nr_push == 0))
645 goto out_next;
647 if (unlikely(req->nr_push > NOUVEAU_GEM_MAX_PUSH)) {
648 NV_ERROR(dev, "pushbuf push count exceeds limit: %d max %d\n",
649 req->nr_push, NOUVEAU_GEM_MAX_PUSH);
650 nouveau_channel_put(&chan);
651 return -EINVAL;
654 if (unlikely(req->nr_buffers > NOUVEAU_GEM_MAX_BUFFERS)) {
655 NV_ERROR(dev, "pushbuf bo count exceeds limit: %d max %d\n",
656 req->nr_buffers, NOUVEAU_GEM_MAX_BUFFERS);
657 nouveau_channel_put(&chan);
658 return -EINVAL;
661 if (unlikely(req->nr_relocs > NOUVEAU_GEM_MAX_RELOCS)) {
662 NV_ERROR(dev, "pushbuf reloc count exceeds limit: %d max %d\n",
663 req->nr_relocs, NOUVEAU_GEM_MAX_RELOCS);
664 nouveau_channel_put(&chan);
665 return -EINVAL;
668 push = u_memcpya(req->push, req->nr_push, sizeof(*push));
669 if (IS_ERR(push)) {
670 nouveau_channel_put(&chan);
671 return PTR_ERR(push);
674 bo = u_memcpya(req->buffers, req->nr_buffers, sizeof(*bo));
675 if (IS_ERR(bo)) {
676 kfree(push);
677 nouveau_channel_put(&chan);
678 return PTR_ERR(bo);
681 /* Mark push buffers as being used on PFIFO, the validation code
682 * will then make sure that if the pushbuf bo moves, that they
683 * happen on the kernel channel, which will in turn cause a sync
684 * to happen before we try and submit the push buffer.
686 for (i = 0; i < req->nr_push; i++) {
687 if (push[i].bo_index >= req->nr_buffers) {
688 NV_ERROR(dev, "push %d buffer not in list\n", i);
689 ret = -EINVAL;
690 goto out_prevalid;
693 bo[push[i].bo_index].read_domains |= (1 << 31);
696 /* Validate buffer list */
697 ret = nouveau_gem_pushbuf_validate(chan, file_priv, bo, req->buffers,
698 req->nr_buffers, &op, &do_reloc);
699 if (ret) {
700 if (ret != -ERESTARTSYS)
701 NV_ERROR(dev, "validate: %d\n", ret);
702 goto out_prevalid;
705 /* Apply any relocations that are required */
706 if (do_reloc) {
707 ret = nouveau_gem_pushbuf_reloc_apply(dev, req, bo);
708 if (ret) {
709 NV_ERROR(dev, "reloc apply: %d\n", ret);
710 goto out;
714 if (chan->dma.ib_max) {
715 ret = nouveau_dma_wait(chan, req->nr_push + 1, 6);
716 if (ret) {
717 NV_INFO(dev, "nv50cal_space: %d\n", ret);
718 goto out;
721 for (i = 0; i < req->nr_push; i++) {
722 struct nouveau_bo *nvbo = (void *)(unsigned long)
723 bo[push[i].bo_index].user_priv;
725 nv50_dma_push(chan, nvbo, push[i].offset,
726 push[i].length);
728 } else
729 if (dev_priv->chipset >= 0x25) {
730 ret = RING_SPACE(chan, req->nr_push * 2);
731 if (ret) {
732 NV_ERROR(dev, "cal_space: %d\n", ret);
733 goto out;
736 for (i = 0; i < req->nr_push; i++) {
737 struct nouveau_bo *nvbo = (void *)(unsigned long)
738 bo[push[i].bo_index].user_priv;
739 struct drm_mm_node *mem = nvbo->bo.mem.mm_node;
741 OUT_RING(chan, ((mem->start << PAGE_SHIFT) +
742 push[i].offset) | 2);
743 OUT_RING(chan, 0);
745 } else {
746 ret = RING_SPACE(chan, req->nr_push * (2 + NOUVEAU_DMA_SKIPS));
747 if (ret) {
748 NV_ERROR(dev, "jmp_space: %d\n", ret);
749 goto out;
752 for (i = 0; i < req->nr_push; i++) {
753 struct nouveau_bo *nvbo = (void *)(unsigned long)
754 bo[push[i].bo_index].user_priv;
755 struct drm_mm_node *mem = nvbo->bo.mem.mm_node;
756 uint32_t cmd;
758 cmd = chan->pushbuf_base + ((chan->dma.cur + 2) << 2);
759 cmd |= 0x20000000;
760 if (unlikely(cmd != req->suffix0)) {
761 if (!nvbo->kmap.virtual) {
762 ret = ttm_bo_kmap(&nvbo->bo, 0,
763 nvbo->bo.mem.
764 num_pages,
765 &nvbo->kmap);
766 if (ret) {
767 WIND_RING(chan);
768 goto out;
770 nvbo->validate_mapped = true;
773 nouveau_bo_wr32(nvbo, (push[i].offset +
774 push[i].length - 8) / 4, cmd);
777 OUT_RING(chan, ((mem->start << PAGE_SHIFT) +
778 push[i].offset) | 0x20000000);
779 OUT_RING(chan, 0);
780 for (j = 0; j < NOUVEAU_DMA_SKIPS; j++)
781 OUT_RING(chan, 0);
785 ret = nouveau_fence_new(chan, &fence, true);
786 if (ret) {
787 NV_ERROR(dev, "error fencing pushbuf: %d\n", ret);
788 WIND_RING(chan);
789 goto out;
792 out:
793 validate_fini(&op, fence);
794 nouveau_fence_unref(&fence);
796 out_prevalid:
797 kfree(bo);
798 kfree(push);
800 out_next:
801 if (chan->dma.ib_max) {
802 req->suffix0 = 0x00000000;
803 req->suffix1 = 0x00000000;
804 } else
805 if (dev_priv->chipset >= 0x25) {
806 req->suffix0 = 0x00020000;
807 req->suffix1 = 0x00000000;
808 } else {
809 req->suffix0 = 0x20000000 |
810 (chan->pushbuf_base + ((chan->dma.cur + 2) << 2));
811 req->suffix1 = 0x00000000;
814 nouveau_channel_put(&chan);
815 return ret;
818 static inline uint32_t
819 domain_to_ttm(struct nouveau_bo *nvbo, uint32_t domain)
821 uint32_t flags = 0;
823 if (domain & NOUVEAU_GEM_DOMAIN_VRAM)
824 flags |= TTM_PL_FLAG_VRAM;
825 if (domain & NOUVEAU_GEM_DOMAIN_GART)
826 flags |= TTM_PL_FLAG_TT;
828 return flags;
832 nouveau_gem_ioctl_cpu_prep(struct drm_device *dev, void *data,
833 struct drm_file *file_priv)
835 struct drm_nouveau_gem_cpu_prep *req = data;
836 struct drm_gem_object *gem;
837 struct nouveau_bo *nvbo;
838 bool no_wait = !!(req->flags & NOUVEAU_GEM_CPU_PREP_NOWAIT);
839 int ret = -EINVAL;
841 gem = drm_gem_object_lookup(dev, file_priv, req->handle);
842 if (!gem)
843 return -ENOENT;
844 nvbo = nouveau_gem_object(gem);
846 spin_lock(&nvbo->bo.bdev->fence_lock);
847 ret = ttm_bo_wait(&nvbo->bo, true, true, no_wait);
848 spin_unlock(&nvbo->bo.bdev->fence_lock);
849 drm_gem_object_unreference_unlocked(gem);
850 return ret;
854 nouveau_gem_ioctl_cpu_fini(struct drm_device *dev, void *data,
855 struct drm_file *file_priv)
857 return 0;
861 nouveau_gem_ioctl_info(struct drm_device *dev, void *data,
862 struct drm_file *file_priv)
864 struct drm_nouveau_gem_info *req = data;
865 struct drm_gem_object *gem;
866 int ret;
868 gem = drm_gem_object_lookup(dev, file_priv, req->handle);
869 if (!gem)
870 return -ENOENT;
872 ret = nouveau_gem_info(file_priv, gem, req);
873 drm_gem_object_unreference_unlocked(gem);
874 return ret;