1 /**************************************************************************
3 * Copyright (c) 2006-2009 VMware, Inc., Palo Alto, CA., USA
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
21 * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
22 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
23 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
24 * USE OR OTHER DEALINGS IN THE SOFTWARE.
26 **************************************************************************/
28 * Authors: Thomas Hellstrom <thellstrom-at-vmware-dot-com>
31 #define pr_fmt(fmt) "[TTM] " fmt
33 #include <drm/ttm/ttm_module.h>
34 #include <drm/ttm/ttm_bo_driver.h>
35 #include <drm/ttm/ttm_placement.h>
36 #include <linux/jiffies.h>
37 #include <linux/slab.h>
38 #include <linux/sched.h>
40 #include <linux/file.h>
41 #include <linux/module.h>
42 #include <linux/atomic.h>
44 #define TTM_ASSERT_LOCKED(param)
45 #define TTM_DEBUG(fmt, arg...)
46 #define TTM_BO_HASH_ORDER 13
48 static int ttm_bo_setup_vm(struct ttm_buffer_object *bo);
49 static int ttm_bo_swapout(struct ttm_mem_shrink *shrink);
50 static void ttm_bo_global_kobj_release(struct kobject *kobj);
52 static struct attribute ttm_bo_count = {
57 static inline int ttm_mem_type_from_flags(uint32_t flags, uint32_t *mem_type)
61 for (i = 0; i <= TTM_PL_PRIV5; i++)
62 if (flags & (1 << i)) {
69 static void ttm_mem_type_debug(struct ttm_bo_device *bdev, int mem_type)
71 struct ttm_mem_type_manager *man = &bdev->man[mem_type];
73 pr_err(" has_type: %d\n", man->has_type);
74 pr_err(" use_type: %d\n", man->use_type);
75 pr_err(" flags: 0x%08X\n", man->flags);
76 pr_err(" gpu_offset: 0x%08lX\n", man->gpu_offset);
77 pr_err(" size: %llu\n", man->size);
78 pr_err(" available_caching: 0x%08X\n", man->available_caching);
79 pr_err(" default_caching: 0x%08X\n", man->default_caching);
80 if (mem_type != TTM_PL_SYSTEM)
81 (*man->func->debug)(man, TTM_PFX);
84 static void ttm_bo_mem_space_debug(struct ttm_buffer_object *bo,
85 struct ttm_placement *placement)
89 pr_err("No space for %p (%lu pages, %luK, %luM)\n",
90 bo, bo->mem.num_pages, bo->mem.size >> 10,
92 for (i = 0; i < placement->num_placement; i++) {
93 ret = ttm_mem_type_from_flags(placement->placement[i],
97 pr_err(" placement[%d]=0x%08X (%d)\n",
98 i, placement->placement[i], mem_type);
99 ttm_mem_type_debug(bo->bdev, mem_type);
103 static ssize_t ttm_bo_global_show(struct kobject *kobj,
104 struct attribute *attr,
107 struct ttm_bo_global *glob =
108 container_of(kobj, struct ttm_bo_global, kobj);
110 return snprintf(buffer, PAGE_SIZE, "%lu\n",
111 (unsigned long) atomic_read(&glob->bo_count));
114 static struct attribute *ttm_bo_global_attrs[] = {
119 static const struct sysfs_ops ttm_bo_global_ops = {
120 .show = &ttm_bo_global_show
123 static struct kobj_type ttm_bo_glob_kobj_type = {
124 .release = &ttm_bo_global_kobj_release,
125 .sysfs_ops = &ttm_bo_global_ops,
126 .default_attrs = ttm_bo_global_attrs
130 static inline uint32_t ttm_bo_type_flags(unsigned type)
135 static void ttm_bo_release_list(struct kref *list_kref)
137 struct ttm_buffer_object *bo =
138 container_of(list_kref, struct ttm_buffer_object, list_kref);
139 struct ttm_bo_device *bdev = bo->bdev;
140 size_t acc_size = bo->acc_size;
142 BUG_ON(atomic_read(&bo->list_kref.refcount));
143 BUG_ON(atomic_read(&bo->kref.refcount));
144 BUG_ON(atomic_read(&bo->cpu_writers));
145 BUG_ON(bo->sync_obj != NULL);
146 BUG_ON(bo->mem.mm_node != NULL);
147 BUG_ON(!list_empty(&bo->lru));
148 BUG_ON(!list_empty(&bo->ddestroy));
151 ttm_tt_destroy(bo->ttm);
152 atomic_dec(&bo->glob->bo_count);
158 ttm_mem_global_free(bdev->glob->mem_glob, acc_size);
161 int ttm_bo_wait_unreserved(struct ttm_buffer_object *bo, bool interruptible)
164 return wait_event_interruptible(bo->event_queue,
165 !ttm_bo_is_reserved(bo));
167 wait_event(bo->event_queue, !ttm_bo_is_reserved(bo));
171 EXPORT_SYMBOL(ttm_bo_wait_unreserved);
173 void ttm_bo_add_to_lru(struct ttm_buffer_object *bo)
175 struct ttm_bo_device *bdev = bo->bdev;
176 struct ttm_mem_type_manager *man;
178 BUG_ON(!ttm_bo_is_reserved(bo));
180 if (!(bo->mem.placement & TTM_PL_FLAG_NO_EVICT)) {
182 BUG_ON(!list_empty(&bo->lru));
184 man = &bdev->man[bo->mem.mem_type];
185 list_add_tail(&bo->lru, &man->lru);
186 kref_get(&bo->list_kref);
188 if (bo->ttm != NULL) {
189 list_add_tail(&bo->swap, &bo->glob->swap_lru);
190 kref_get(&bo->list_kref);
195 int ttm_bo_del_from_lru(struct ttm_buffer_object *bo)
199 if (!list_empty(&bo->swap)) {
200 list_del_init(&bo->swap);
203 if (!list_empty(&bo->lru)) {
204 list_del_init(&bo->lru);
209 * TODO: Add a driver hook to delete from
210 * driver-specific LRU's here.
216 int ttm_bo_reserve_locked(struct ttm_buffer_object *bo,
218 bool no_wait, bool use_sequence, uint32_t sequence)
220 struct ttm_bo_global *glob = bo->glob;
223 while (unlikely(atomic_read(&bo->reserved) != 0)) {
225 * Deadlock avoidance for multi-bo reserving.
227 if (use_sequence && bo->seq_valid) {
229 * We've already reserved this one.
231 if (unlikely(sequence == bo->val_seq))
234 * Already reserved by a thread that will not back
235 * off for us. We need to back off.
237 if (unlikely(sequence - bo->val_seq < (1 << 31)))
244 spin_unlock(&glob->lru_lock);
245 ret = ttm_bo_wait_unreserved(bo, interruptible);
246 spin_lock(&glob->lru_lock);
252 atomic_set(&bo->reserved, 1);
255 * Wake up waiters that may need to recheck for deadlock,
256 * if we decreased the sequence number.
258 if (unlikely((bo->val_seq - sequence < (1 << 31))
260 wake_up_all(&bo->event_queue);
262 bo->val_seq = sequence;
263 bo->seq_valid = true;
265 bo->seq_valid = false;
270 EXPORT_SYMBOL(ttm_bo_reserve);
272 static void ttm_bo_ref_bug(struct kref *list_kref)
277 void ttm_bo_list_ref_sub(struct ttm_buffer_object *bo, int count,
280 kref_sub(&bo->list_kref, count,
281 (never_free) ? ttm_bo_ref_bug : ttm_bo_release_list);
284 int ttm_bo_reserve(struct ttm_buffer_object *bo,
286 bool no_wait, bool use_sequence, uint32_t sequence)
288 struct ttm_bo_global *glob = bo->glob;
292 spin_lock(&glob->lru_lock);
293 ret = ttm_bo_reserve_locked(bo, interruptible, no_wait, use_sequence,
295 if (likely(ret == 0))
296 put_count = ttm_bo_del_from_lru(bo);
297 spin_unlock(&glob->lru_lock);
299 ttm_bo_list_ref_sub(bo, put_count, true);
304 void ttm_bo_unreserve_locked(struct ttm_buffer_object *bo)
306 ttm_bo_add_to_lru(bo);
307 atomic_set(&bo->reserved, 0);
308 wake_up_all(&bo->event_queue);
311 void ttm_bo_unreserve(struct ttm_buffer_object *bo)
313 struct ttm_bo_global *glob = bo->glob;
315 spin_lock(&glob->lru_lock);
316 ttm_bo_unreserve_locked(bo);
317 spin_unlock(&glob->lru_lock);
319 EXPORT_SYMBOL(ttm_bo_unreserve);
322 * Call bo->mutex locked.
324 static int ttm_bo_add_ttm(struct ttm_buffer_object *bo, bool zero_alloc)
326 struct ttm_bo_device *bdev = bo->bdev;
327 struct ttm_bo_global *glob = bo->glob;
329 uint32_t page_flags = 0;
331 TTM_ASSERT_LOCKED(&bo->mutex);
334 if (bdev->need_dma32)
335 page_flags |= TTM_PAGE_FLAG_DMA32;
338 case ttm_bo_type_device:
340 page_flags |= TTM_PAGE_FLAG_ZERO_ALLOC;
341 case ttm_bo_type_kernel:
342 bo->ttm = bdev->driver->ttm_tt_create(bdev, bo->num_pages << PAGE_SHIFT,
343 page_flags, glob->dummy_read_page);
344 if (unlikely(bo->ttm == NULL))
348 bo->ttm = bdev->driver->ttm_tt_create(bdev, bo->num_pages << PAGE_SHIFT,
349 page_flags | TTM_PAGE_FLAG_SG,
350 glob->dummy_read_page);
351 if (unlikely(bo->ttm == NULL)) {
355 bo->ttm->sg = bo->sg;
358 pr_err("Illegal buffer object type\n");
366 static int ttm_bo_handle_move_mem(struct ttm_buffer_object *bo,
367 struct ttm_mem_reg *mem,
368 bool evict, bool interruptible,
371 struct ttm_bo_device *bdev = bo->bdev;
372 bool old_is_pci = ttm_mem_reg_is_pci(bdev, &bo->mem);
373 bool new_is_pci = ttm_mem_reg_is_pci(bdev, mem);
374 struct ttm_mem_type_manager *old_man = &bdev->man[bo->mem.mem_type];
375 struct ttm_mem_type_manager *new_man = &bdev->man[mem->mem_type];
378 if (old_is_pci || new_is_pci ||
379 ((mem->placement & bo->mem.placement & TTM_PL_MASK_CACHING) == 0)) {
380 ret = ttm_mem_io_lock(old_man, true);
381 if (unlikely(ret != 0))
383 ttm_bo_unmap_virtual_locked(bo);
384 ttm_mem_io_unlock(old_man);
388 * Create and bind a ttm if required.
391 if (!(new_man->flags & TTM_MEMTYPE_FLAG_FIXED)) {
392 if (bo->ttm == NULL) {
393 bool zero = !(old_man->flags & TTM_MEMTYPE_FLAG_FIXED);
394 ret = ttm_bo_add_ttm(bo, zero);
399 ret = ttm_tt_set_placement_caching(bo->ttm, mem->placement);
403 if (mem->mem_type != TTM_PL_SYSTEM) {
404 ret = ttm_tt_bind(bo->ttm, mem);
409 if (bo->mem.mem_type == TTM_PL_SYSTEM) {
410 if (bdev->driver->move_notify)
411 bdev->driver->move_notify(bo, mem);
418 if (bdev->driver->move_notify)
419 bdev->driver->move_notify(bo, mem);
421 if (!(old_man->flags & TTM_MEMTYPE_FLAG_FIXED) &&
422 !(new_man->flags & TTM_MEMTYPE_FLAG_FIXED))
423 ret = ttm_bo_move_ttm(bo, evict, no_wait_gpu, mem);
424 else if (bdev->driver->move)
425 ret = bdev->driver->move(bo, evict, interruptible,
428 ret = ttm_bo_move_memcpy(bo, evict, no_wait_gpu, mem);
431 if (bdev->driver->move_notify) {
432 struct ttm_mem_reg tmp_mem = *mem;
435 bdev->driver->move_notify(bo, mem);
444 ret = bdev->driver->invalidate_caches(bdev, bo->mem.placement);
446 pr_err("Can not flush read caches\n");
450 if (bo->mem.mm_node) {
451 bo->offset = (bo->mem.start << PAGE_SHIFT) +
452 bdev->man[bo->mem.mem_type].gpu_offset;
453 bo->cur_placement = bo->mem.placement;
460 new_man = &bdev->man[bo->mem.mem_type];
461 if ((new_man->flags & TTM_MEMTYPE_FLAG_FIXED) && bo->ttm) {
462 ttm_tt_unbind(bo->ttm);
463 ttm_tt_destroy(bo->ttm);
472 * Will release GPU memory type usage on destruction.
473 * This is the place to put in driver specific hooks to release
474 * driver private resources.
475 * Will release the bo::reserved lock.
478 static void ttm_bo_cleanup_memtype_use(struct ttm_buffer_object *bo)
480 if (bo->bdev->driver->move_notify)
481 bo->bdev->driver->move_notify(bo, NULL);
484 ttm_tt_unbind(bo->ttm);
485 ttm_tt_destroy(bo->ttm);
488 ttm_bo_mem_put(bo, &bo->mem);
490 atomic_set(&bo->reserved, 0);
491 wake_up_all(&bo->event_queue);
494 * Since the final reference to this bo may not be dropped by
495 * the current task we have to put a memory barrier here to make
496 * sure the changes done in this function are always visible.
498 * This function only needs protection against the final kref_put.
500 smp_mb__before_atomic_dec();
503 static void ttm_bo_cleanup_refs_or_queue(struct ttm_buffer_object *bo)
505 struct ttm_bo_device *bdev = bo->bdev;
506 struct ttm_bo_global *glob = bo->glob;
507 struct ttm_bo_driver *driver = bdev->driver;
508 void *sync_obj = NULL;
512 spin_lock(&glob->lru_lock);
513 ret = ttm_bo_reserve_locked(bo, false, true, false, 0);
515 spin_lock(&bdev->fence_lock);
516 (void) ttm_bo_wait(bo, false, false, true);
517 if (!ret && !bo->sync_obj) {
518 spin_unlock(&bdev->fence_lock);
519 put_count = ttm_bo_del_from_lru(bo);
521 spin_unlock(&glob->lru_lock);
522 ttm_bo_cleanup_memtype_use(bo);
524 ttm_bo_list_ref_sub(bo, put_count, true);
529 sync_obj = driver->sync_obj_ref(bo->sync_obj);
530 spin_unlock(&bdev->fence_lock);
533 atomic_set(&bo->reserved, 0);
534 wake_up_all(&bo->event_queue);
537 kref_get(&bo->list_kref);
538 list_add_tail(&bo->ddestroy, &bdev->ddestroy);
539 spin_unlock(&glob->lru_lock);
542 driver->sync_obj_flush(sync_obj);
543 driver->sync_obj_unref(&sync_obj);
545 schedule_delayed_work(&bdev->wq,
546 ((HZ / 100) < 1) ? 1 : HZ / 100);
550 * function ttm_bo_cleanup_refs_and_unlock
551 * If bo idle, remove from delayed- and lru lists, and unref.
552 * If not idle, do nothing.
554 * Must be called with lru_lock and reservation held, this function
555 * will drop both before returning.
557 * @interruptible Any sleeps should occur interruptibly.
558 * @no_wait_gpu Never wait for gpu. Return -EBUSY instead.
561 static int ttm_bo_cleanup_refs_and_unlock(struct ttm_buffer_object *bo,
565 struct ttm_bo_device *bdev = bo->bdev;
566 struct ttm_bo_driver *driver = bdev->driver;
567 struct ttm_bo_global *glob = bo->glob;
571 spin_lock(&bdev->fence_lock);
572 ret = ttm_bo_wait(bo, false, false, true);
574 if (ret && !no_wait_gpu) {
578 * Take a reference to the fence and unreserve,
579 * at this point the buffer should be dead, so
580 * no new sync objects can be attached.
582 sync_obj = driver->sync_obj_ref(&bo->sync_obj);
583 spin_unlock(&bdev->fence_lock);
585 atomic_set(&bo->reserved, 0);
586 wake_up_all(&bo->event_queue);
587 spin_unlock(&glob->lru_lock);
589 ret = driver->sync_obj_wait(sync_obj, false, interruptible);
590 driver->sync_obj_unref(&sync_obj);
595 * remove sync_obj with ttm_bo_wait, the wait should be
596 * finished, and no new wait object should have been added.
598 spin_lock(&bdev->fence_lock);
599 ret = ttm_bo_wait(bo, false, false, true);
601 spin_unlock(&bdev->fence_lock);
605 spin_lock(&glob->lru_lock);
606 ret = ttm_bo_reserve_locked(bo, false, true, false, 0);
609 * We raced, and lost, someone else holds the reservation now,
610 * and is probably busy in ttm_bo_cleanup_memtype_use.
612 * Even if it's not the case, because we finished waiting any
613 * delayed destruction would succeed, so just return success
617 spin_unlock(&glob->lru_lock);
621 spin_unlock(&bdev->fence_lock);
623 if (ret || unlikely(list_empty(&bo->ddestroy))) {
624 atomic_set(&bo->reserved, 0);
625 wake_up_all(&bo->event_queue);
626 spin_unlock(&glob->lru_lock);
630 put_count = ttm_bo_del_from_lru(bo);
631 list_del_init(&bo->ddestroy);
634 spin_unlock(&glob->lru_lock);
635 ttm_bo_cleanup_memtype_use(bo);
637 ttm_bo_list_ref_sub(bo, put_count, true);
643 * Traverse the delayed list, and call ttm_bo_cleanup_refs on all
644 * encountered buffers.
647 static int ttm_bo_delayed_delete(struct ttm_bo_device *bdev, bool remove_all)
649 struct ttm_bo_global *glob = bdev->glob;
650 struct ttm_buffer_object *entry = NULL;
653 spin_lock(&glob->lru_lock);
654 if (list_empty(&bdev->ddestroy))
657 entry = list_first_entry(&bdev->ddestroy,
658 struct ttm_buffer_object, ddestroy);
659 kref_get(&entry->list_kref);
662 struct ttm_buffer_object *nentry = NULL;
664 if (entry->ddestroy.next != &bdev->ddestroy) {
665 nentry = list_first_entry(&entry->ddestroy,
666 struct ttm_buffer_object, ddestroy);
667 kref_get(&nentry->list_kref);
670 ret = ttm_bo_reserve_locked(entry, false, !remove_all, false, 0);
672 ret = ttm_bo_cleanup_refs_and_unlock(entry, false,
675 spin_unlock(&glob->lru_lock);
677 kref_put(&entry->list_kref, ttm_bo_release_list);
683 spin_lock(&glob->lru_lock);
684 if (list_empty(&entry->ddestroy))
689 spin_unlock(&glob->lru_lock);
692 kref_put(&entry->list_kref, ttm_bo_release_list);
696 static void ttm_bo_delayed_workqueue(struct work_struct *work)
698 struct ttm_bo_device *bdev =
699 container_of(work, struct ttm_bo_device, wq.work);
701 if (ttm_bo_delayed_delete(bdev, false)) {
702 schedule_delayed_work(&bdev->wq,
703 ((HZ / 100) < 1) ? 1 : HZ / 100);
707 static void ttm_bo_release(struct kref *kref)
709 struct ttm_buffer_object *bo =
710 container_of(kref, struct ttm_buffer_object, kref);
711 struct ttm_bo_device *bdev = bo->bdev;
712 struct ttm_mem_type_manager *man = &bdev->man[bo->mem.mem_type];
714 write_lock(&bdev->vm_lock);
715 if (likely(bo->vm_node != NULL)) {
716 rb_erase(&bo->vm_rb, &bdev->addr_space_rb);
717 drm_mm_put_block(bo->vm_node);
720 write_unlock(&bdev->vm_lock);
721 ttm_mem_io_lock(man, false);
722 ttm_mem_io_free_vm(bo);
723 ttm_mem_io_unlock(man);
724 ttm_bo_cleanup_refs_or_queue(bo);
725 kref_put(&bo->list_kref, ttm_bo_release_list);
728 void ttm_bo_unref(struct ttm_buffer_object **p_bo)
730 struct ttm_buffer_object *bo = *p_bo;
733 kref_put(&bo->kref, ttm_bo_release);
735 EXPORT_SYMBOL(ttm_bo_unref);
737 int ttm_bo_lock_delayed_workqueue(struct ttm_bo_device *bdev)
739 return cancel_delayed_work_sync(&bdev->wq);
741 EXPORT_SYMBOL(ttm_bo_lock_delayed_workqueue);
743 void ttm_bo_unlock_delayed_workqueue(struct ttm_bo_device *bdev, int resched)
746 schedule_delayed_work(&bdev->wq,
747 ((HZ / 100) < 1) ? 1 : HZ / 100);
749 EXPORT_SYMBOL(ttm_bo_unlock_delayed_workqueue);
751 static int ttm_bo_evict(struct ttm_buffer_object *bo, bool interruptible,
754 struct ttm_bo_device *bdev = bo->bdev;
755 struct ttm_mem_reg evict_mem;
756 struct ttm_placement placement;
759 spin_lock(&bdev->fence_lock);
760 ret = ttm_bo_wait(bo, false, interruptible, no_wait_gpu);
761 spin_unlock(&bdev->fence_lock);
763 if (unlikely(ret != 0)) {
764 if (ret != -ERESTARTSYS) {
765 pr_err("Failed to expire sync object before buffer eviction\n");
770 BUG_ON(!ttm_bo_is_reserved(bo));
773 evict_mem.mm_node = NULL;
774 evict_mem.bus.io_reserved_vm = false;
775 evict_mem.bus.io_reserved_count = 0;
779 placement.num_placement = 0;
780 placement.num_busy_placement = 0;
781 bdev->driver->evict_flags(bo, &placement);
782 ret = ttm_bo_mem_space(bo, &placement, &evict_mem, interruptible,
785 if (ret != -ERESTARTSYS) {
786 pr_err("Failed to find memory space for buffer 0x%p eviction\n",
788 ttm_bo_mem_space_debug(bo, &placement);
793 ret = ttm_bo_handle_move_mem(bo, &evict_mem, true, interruptible,
796 if (ret != -ERESTARTSYS)
797 pr_err("Buffer eviction failed\n");
798 ttm_bo_mem_put(bo, &evict_mem);
806 static int ttm_mem_evict_first(struct ttm_bo_device *bdev,
811 struct ttm_bo_global *glob = bdev->glob;
812 struct ttm_mem_type_manager *man = &bdev->man[mem_type];
813 struct ttm_buffer_object *bo;
814 int ret = -EBUSY, put_count;
816 spin_lock(&glob->lru_lock);
817 list_for_each_entry(bo, &man->lru, lru) {
818 ret = ttm_bo_reserve_locked(bo, false, true, false, 0);
824 spin_unlock(&glob->lru_lock);
828 kref_get(&bo->list_kref);
830 if (!list_empty(&bo->ddestroy)) {
831 ret = ttm_bo_cleanup_refs_and_unlock(bo, interruptible,
833 kref_put(&bo->list_kref, ttm_bo_release_list);
837 put_count = ttm_bo_del_from_lru(bo);
838 spin_unlock(&glob->lru_lock);
842 ttm_bo_list_ref_sub(bo, put_count, true);
844 ret = ttm_bo_evict(bo, interruptible, no_wait_gpu);
845 ttm_bo_unreserve(bo);
847 kref_put(&bo->list_kref, ttm_bo_release_list);
851 void ttm_bo_mem_put(struct ttm_buffer_object *bo, struct ttm_mem_reg *mem)
853 struct ttm_mem_type_manager *man = &bo->bdev->man[mem->mem_type];
856 (*man->func->put_node)(man, mem);
858 EXPORT_SYMBOL(ttm_bo_mem_put);
861 * Repeatedly evict memory from the LRU for @mem_type until we create enough
862 * space, or we've evicted everything and there isn't enough space.
864 static int ttm_bo_mem_force_space(struct ttm_buffer_object *bo,
866 struct ttm_placement *placement,
867 struct ttm_mem_reg *mem,
871 struct ttm_bo_device *bdev = bo->bdev;
872 struct ttm_mem_type_manager *man = &bdev->man[mem_type];
876 ret = (*man->func->get_node)(man, bo, placement, mem);
877 if (unlikely(ret != 0))
881 ret = ttm_mem_evict_first(bdev, mem_type,
882 interruptible, no_wait_gpu);
883 if (unlikely(ret != 0))
886 if (mem->mm_node == NULL)
888 mem->mem_type = mem_type;
892 static uint32_t ttm_bo_select_caching(struct ttm_mem_type_manager *man,
893 uint32_t cur_placement,
894 uint32_t proposed_placement)
896 uint32_t caching = proposed_placement & TTM_PL_MASK_CACHING;
897 uint32_t result = proposed_placement & ~TTM_PL_MASK_CACHING;
900 * Keep current caching if possible.
903 if ((cur_placement & caching) != 0)
904 result |= (cur_placement & caching);
905 else if ((man->default_caching & caching) != 0)
906 result |= man->default_caching;
907 else if ((TTM_PL_FLAG_CACHED & caching) != 0)
908 result |= TTM_PL_FLAG_CACHED;
909 else if ((TTM_PL_FLAG_WC & caching) != 0)
910 result |= TTM_PL_FLAG_WC;
911 else if ((TTM_PL_FLAG_UNCACHED & caching) != 0)
912 result |= TTM_PL_FLAG_UNCACHED;
917 static bool ttm_bo_mt_compatible(struct ttm_mem_type_manager *man,
919 uint32_t proposed_placement,
920 uint32_t *masked_placement)
922 uint32_t cur_flags = ttm_bo_type_flags(mem_type);
924 if ((cur_flags & proposed_placement & TTM_PL_MASK_MEM) == 0)
927 if ((proposed_placement & man->available_caching) == 0)
930 cur_flags |= (proposed_placement & man->available_caching);
932 *masked_placement = cur_flags;
937 * Creates space for memory region @mem according to its type.
939 * This function first searches for free space in compatible memory types in
940 * the priority order defined by the driver. If free space isn't found, then
941 * ttm_bo_mem_force_space is attempted in priority order to evict and find
944 int ttm_bo_mem_space(struct ttm_buffer_object *bo,
945 struct ttm_placement *placement,
946 struct ttm_mem_reg *mem,
950 struct ttm_bo_device *bdev = bo->bdev;
951 struct ttm_mem_type_manager *man;
952 uint32_t mem_type = TTM_PL_SYSTEM;
953 uint32_t cur_flags = 0;
954 bool type_found = false;
955 bool type_ok = false;
956 bool has_erestartsys = false;
960 for (i = 0; i < placement->num_placement; ++i) {
961 ret = ttm_mem_type_from_flags(placement->placement[i],
965 man = &bdev->man[mem_type];
967 type_ok = ttm_bo_mt_compatible(man,
969 placement->placement[i],
975 cur_flags = ttm_bo_select_caching(man, bo->mem.placement,
978 * Use the access and other non-mapping-related flag bits from
979 * the memory placement flags to the current flags
981 ttm_flag_masked(&cur_flags, placement->placement[i],
982 ~TTM_PL_MASK_MEMTYPE);
984 if (mem_type == TTM_PL_SYSTEM)
987 if (man->has_type && man->use_type) {
989 ret = (*man->func->get_node)(man, bo, placement, mem);
997 if ((type_ok && (mem_type == TTM_PL_SYSTEM)) || mem->mm_node) {
998 mem->mem_type = mem_type;
999 mem->placement = cur_flags;
1006 for (i = 0; i < placement->num_busy_placement; ++i) {
1007 ret = ttm_mem_type_from_flags(placement->busy_placement[i],
1011 man = &bdev->man[mem_type];
1014 if (!ttm_bo_mt_compatible(man,
1016 placement->busy_placement[i],
1020 cur_flags = ttm_bo_select_caching(man, bo->mem.placement,
1023 * Use the access and other non-mapping-related flag bits from
1024 * the memory placement flags to the current flags
1026 ttm_flag_masked(&cur_flags, placement->busy_placement[i],
1027 ~TTM_PL_MASK_MEMTYPE);
1030 if (mem_type == TTM_PL_SYSTEM) {
1031 mem->mem_type = mem_type;
1032 mem->placement = cur_flags;
1033 mem->mm_node = NULL;
1037 ret = ttm_bo_mem_force_space(bo, mem_type, placement, mem,
1038 interruptible, no_wait_gpu);
1039 if (ret == 0 && mem->mm_node) {
1040 mem->placement = cur_flags;
1043 if (ret == -ERESTARTSYS)
1044 has_erestartsys = true;
1046 ret = (has_erestartsys) ? -ERESTARTSYS : -ENOMEM;
1049 EXPORT_SYMBOL(ttm_bo_mem_space);
1051 int ttm_bo_move_buffer(struct ttm_buffer_object *bo,
1052 struct ttm_placement *placement,
1057 struct ttm_mem_reg mem;
1058 struct ttm_bo_device *bdev = bo->bdev;
1060 BUG_ON(!ttm_bo_is_reserved(bo));
1063 * FIXME: It's possible to pipeline buffer moves.
1064 * Have the driver move function wait for idle when necessary,
1065 * instead of doing it here.
1067 spin_lock(&bdev->fence_lock);
1068 ret = ttm_bo_wait(bo, false, interruptible, no_wait_gpu);
1069 spin_unlock(&bdev->fence_lock);
1072 mem.num_pages = bo->num_pages;
1073 mem.size = mem.num_pages << PAGE_SHIFT;
1074 mem.page_alignment = bo->mem.page_alignment;
1075 mem.bus.io_reserved_vm = false;
1076 mem.bus.io_reserved_count = 0;
1078 * Determine where to move the buffer.
1080 ret = ttm_bo_mem_space(bo, placement, &mem,
1081 interruptible, no_wait_gpu);
1084 ret = ttm_bo_handle_move_mem(bo, &mem, false,
1085 interruptible, no_wait_gpu);
1087 if (ret && mem.mm_node)
1088 ttm_bo_mem_put(bo, &mem);
1092 static int ttm_bo_mem_compat(struct ttm_placement *placement,
1093 struct ttm_mem_reg *mem)
1097 if (mem->mm_node && placement->lpfn != 0 &&
1098 (mem->start < placement->fpfn ||
1099 mem->start + mem->num_pages > placement->lpfn))
1102 for (i = 0; i < placement->num_placement; i++) {
1103 if ((placement->placement[i] & mem->placement &
1104 TTM_PL_MASK_CACHING) &&
1105 (placement->placement[i] & mem->placement &
1112 int ttm_bo_validate(struct ttm_buffer_object *bo,
1113 struct ttm_placement *placement,
1119 BUG_ON(!ttm_bo_is_reserved(bo));
1120 /* Check that range is valid */
1121 if (placement->lpfn || placement->fpfn)
1122 if (placement->fpfn > placement->lpfn ||
1123 (placement->lpfn - placement->fpfn) < bo->num_pages)
1126 * Check whether we need to move buffer.
1128 ret = ttm_bo_mem_compat(placement, &bo->mem);
1130 ret = ttm_bo_move_buffer(bo, placement, interruptible,
1136 * Use the access and other non-mapping-related flag bits from
1137 * the compatible memory placement flags to the active flags
1139 ttm_flag_masked(&bo->mem.placement, placement->placement[ret],
1140 ~TTM_PL_MASK_MEMTYPE);
1143 * We might need to add a TTM.
1145 if (bo->mem.mem_type == TTM_PL_SYSTEM && bo->ttm == NULL) {
1146 ret = ttm_bo_add_ttm(bo, true);
1152 EXPORT_SYMBOL(ttm_bo_validate);
1154 int ttm_bo_check_placement(struct ttm_buffer_object *bo,
1155 struct ttm_placement *placement)
1157 BUG_ON((placement->fpfn || placement->lpfn) &&
1158 (bo->mem.num_pages > (placement->lpfn - placement->fpfn)));
1163 int ttm_bo_init(struct ttm_bo_device *bdev,
1164 struct ttm_buffer_object *bo,
1166 enum ttm_bo_type type,
1167 struct ttm_placement *placement,
1168 uint32_t page_alignment,
1170 struct file *persistent_swap_storage,
1172 struct sg_table *sg,
1173 void (*destroy) (struct ttm_buffer_object *))
1176 unsigned long num_pages;
1177 struct ttm_mem_global *mem_glob = bdev->glob->mem_glob;
1179 ret = ttm_mem_global_alloc(mem_glob, acc_size, false, false);
1181 pr_err("Out of kernel memory\n");
1189 num_pages = (size + PAGE_SIZE - 1) >> PAGE_SHIFT;
1190 if (num_pages == 0) {
1191 pr_err("Illegal buffer object size\n");
1196 ttm_mem_global_free(mem_glob, acc_size);
1199 bo->destroy = destroy;
1201 kref_init(&bo->kref);
1202 kref_init(&bo->list_kref);
1203 atomic_set(&bo->cpu_writers, 0);
1204 atomic_set(&bo->reserved, 1);
1205 init_waitqueue_head(&bo->event_queue);
1206 INIT_LIST_HEAD(&bo->lru);
1207 INIT_LIST_HEAD(&bo->ddestroy);
1208 INIT_LIST_HEAD(&bo->swap);
1209 INIT_LIST_HEAD(&bo->io_reserve_lru);
1211 bo->glob = bdev->glob;
1213 bo->num_pages = num_pages;
1214 bo->mem.size = num_pages << PAGE_SHIFT;
1215 bo->mem.mem_type = TTM_PL_SYSTEM;
1216 bo->mem.num_pages = bo->num_pages;
1217 bo->mem.mm_node = NULL;
1218 bo->mem.page_alignment = page_alignment;
1219 bo->mem.bus.io_reserved_vm = false;
1220 bo->mem.bus.io_reserved_count = 0;
1222 bo->mem.placement = (TTM_PL_FLAG_SYSTEM | TTM_PL_FLAG_CACHED);
1223 bo->seq_valid = false;
1224 bo->persistent_swap_storage = persistent_swap_storage;
1225 bo->acc_size = acc_size;
1227 atomic_inc(&bo->glob->bo_count);
1229 ret = ttm_bo_check_placement(bo, placement);
1230 if (unlikely(ret != 0))
1234 * For ttm_bo_type_device buffers, allocate
1235 * address space from the device.
1237 if (bo->type == ttm_bo_type_device ||
1238 bo->type == ttm_bo_type_sg) {
1239 ret = ttm_bo_setup_vm(bo);
1244 ret = ttm_bo_validate(bo, placement, interruptible, false);
1248 ttm_bo_unreserve(bo);
1252 ttm_bo_unreserve(bo);
1257 EXPORT_SYMBOL(ttm_bo_init);
1259 size_t ttm_bo_acc_size(struct ttm_bo_device *bdev,
1260 unsigned long bo_size,
1261 unsigned struct_size)
1263 unsigned npages = (PAGE_ALIGN(bo_size)) >> PAGE_SHIFT;
1266 size += ttm_round_pot(struct_size);
1267 size += PAGE_ALIGN(npages * sizeof(void *));
1268 size += ttm_round_pot(sizeof(struct ttm_tt));
1271 EXPORT_SYMBOL(ttm_bo_acc_size);
1273 size_t ttm_bo_dma_acc_size(struct ttm_bo_device *bdev,
1274 unsigned long bo_size,
1275 unsigned struct_size)
1277 unsigned npages = (PAGE_ALIGN(bo_size)) >> PAGE_SHIFT;
1280 size += ttm_round_pot(struct_size);
1281 size += PAGE_ALIGN(npages * sizeof(void *));
1282 size += PAGE_ALIGN(npages * sizeof(dma_addr_t));
1283 size += ttm_round_pot(sizeof(struct ttm_dma_tt));
1286 EXPORT_SYMBOL(ttm_bo_dma_acc_size);
1288 int ttm_bo_create(struct ttm_bo_device *bdev,
1290 enum ttm_bo_type type,
1291 struct ttm_placement *placement,
1292 uint32_t page_alignment,
1294 struct file *persistent_swap_storage,
1295 struct ttm_buffer_object **p_bo)
1297 struct ttm_buffer_object *bo;
1301 bo = kzalloc(sizeof(*bo), GFP_KERNEL);
1302 if (unlikely(bo == NULL))
1305 acc_size = ttm_bo_acc_size(bdev, size, sizeof(struct ttm_buffer_object));
1306 ret = ttm_bo_init(bdev, bo, size, type, placement, page_alignment,
1307 interruptible, persistent_swap_storage, acc_size,
1309 if (likely(ret == 0))
1314 EXPORT_SYMBOL(ttm_bo_create);
1316 static int ttm_bo_force_list_clean(struct ttm_bo_device *bdev,
1317 unsigned mem_type, bool allow_errors)
1319 struct ttm_mem_type_manager *man = &bdev->man[mem_type];
1320 struct ttm_bo_global *glob = bdev->glob;
1324 * Can't use standard list traversal since we're unlocking.
1327 spin_lock(&glob->lru_lock);
1328 while (!list_empty(&man->lru)) {
1329 spin_unlock(&glob->lru_lock);
1330 ret = ttm_mem_evict_first(bdev, mem_type, false, false);
1335 pr_err("Cleanup eviction failed\n");
1338 spin_lock(&glob->lru_lock);
1340 spin_unlock(&glob->lru_lock);
1344 int ttm_bo_clean_mm(struct ttm_bo_device *bdev, unsigned mem_type)
1346 struct ttm_mem_type_manager *man;
1349 if (mem_type >= TTM_NUM_MEM_TYPES) {
1350 pr_err("Illegal memory type %d\n", mem_type);
1353 man = &bdev->man[mem_type];
1355 if (!man->has_type) {
1356 pr_err("Trying to take down uninitialized memory manager type %u\n",
1361 man->use_type = false;
1362 man->has_type = false;
1366 ttm_bo_force_list_clean(bdev, mem_type, false);
1368 ret = (*man->func->takedown)(man);
1373 EXPORT_SYMBOL(ttm_bo_clean_mm);
1375 int ttm_bo_evict_mm(struct ttm_bo_device *bdev, unsigned mem_type)
1377 struct ttm_mem_type_manager *man = &bdev->man[mem_type];
1379 if (mem_type == 0 || mem_type >= TTM_NUM_MEM_TYPES) {
1380 pr_err("Illegal memory manager memory type %u\n", mem_type);
1384 if (!man->has_type) {
1385 pr_err("Memory type %u has not been initialized\n", mem_type);
1389 return ttm_bo_force_list_clean(bdev, mem_type, true);
1391 EXPORT_SYMBOL(ttm_bo_evict_mm);
1393 int ttm_bo_init_mm(struct ttm_bo_device *bdev, unsigned type,
1394 unsigned long p_size)
1397 struct ttm_mem_type_manager *man;
1399 BUG_ON(type >= TTM_NUM_MEM_TYPES);
1400 man = &bdev->man[type];
1401 BUG_ON(man->has_type);
1402 man->io_reserve_fastpath = true;
1403 man->use_io_reserve_lru = false;
1404 mutex_init(&man->io_reserve_mutex);
1405 INIT_LIST_HEAD(&man->io_reserve_lru);
1407 ret = bdev->driver->init_mem_type(bdev, type, man);
1413 if (type != TTM_PL_SYSTEM) {
1414 ret = (*man->func->init)(man, p_size);
1418 man->has_type = true;
1419 man->use_type = true;
1422 INIT_LIST_HEAD(&man->lru);
1426 EXPORT_SYMBOL(ttm_bo_init_mm);
1428 static void ttm_bo_global_kobj_release(struct kobject *kobj)
1430 struct ttm_bo_global *glob =
1431 container_of(kobj, struct ttm_bo_global, kobj);
1433 ttm_mem_unregister_shrink(glob->mem_glob, &glob->shrink);
1434 __free_page(glob->dummy_read_page);
1438 void ttm_bo_global_release(struct drm_global_reference *ref)
1440 struct ttm_bo_global *glob = ref->object;
1442 kobject_del(&glob->kobj);
1443 kobject_put(&glob->kobj);
1445 EXPORT_SYMBOL(ttm_bo_global_release);
1447 int ttm_bo_global_init(struct drm_global_reference *ref)
1449 struct ttm_bo_global_ref *bo_ref =
1450 container_of(ref, struct ttm_bo_global_ref, ref);
1451 struct ttm_bo_global *glob = ref->object;
1454 mutex_init(&glob->device_list_mutex);
1455 spin_lock_init(&glob->lru_lock);
1456 glob->mem_glob = bo_ref->mem_glob;
1457 glob->dummy_read_page = alloc_page(__GFP_ZERO | GFP_DMA32);
1459 if (unlikely(glob->dummy_read_page == NULL)) {
1464 INIT_LIST_HEAD(&glob->swap_lru);
1465 INIT_LIST_HEAD(&glob->device_list);
1467 ttm_mem_init_shrink(&glob->shrink, ttm_bo_swapout);
1468 ret = ttm_mem_register_shrink(glob->mem_glob, &glob->shrink);
1469 if (unlikely(ret != 0)) {
1470 pr_err("Could not register buffer object swapout\n");
1474 atomic_set(&glob->bo_count, 0);
1476 ret = kobject_init_and_add(
1477 &glob->kobj, &ttm_bo_glob_kobj_type, ttm_get_kobj(), "buffer_objects");
1478 if (unlikely(ret != 0))
1479 kobject_put(&glob->kobj);
1482 __free_page(glob->dummy_read_page);
1487 EXPORT_SYMBOL(ttm_bo_global_init);
1490 int ttm_bo_device_release(struct ttm_bo_device *bdev)
1493 unsigned i = TTM_NUM_MEM_TYPES;
1494 struct ttm_mem_type_manager *man;
1495 struct ttm_bo_global *glob = bdev->glob;
1498 man = &bdev->man[i];
1499 if (man->has_type) {
1500 man->use_type = false;
1501 if ((i != TTM_PL_SYSTEM) && ttm_bo_clean_mm(bdev, i)) {
1503 pr_err("DRM memory manager type %d is not clean\n",
1506 man->has_type = false;
1510 mutex_lock(&glob->device_list_mutex);
1511 list_del(&bdev->device_list);
1512 mutex_unlock(&glob->device_list_mutex);
1514 cancel_delayed_work_sync(&bdev->wq);
1516 while (ttm_bo_delayed_delete(bdev, true))
1519 spin_lock(&glob->lru_lock);
1520 if (list_empty(&bdev->ddestroy))
1521 TTM_DEBUG("Delayed destroy list was clean\n");
1523 if (list_empty(&bdev->man[0].lru))
1524 TTM_DEBUG("Swap list was clean\n");
1525 spin_unlock(&glob->lru_lock);
1527 BUG_ON(!drm_mm_clean(&bdev->addr_space_mm));
1528 write_lock(&bdev->vm_lock);
1529 drm_mm_takedown(&bdev->addr_space_mm);
1530 write_unlock(&bdev->vm_lock);
1534 EXPORT_SYMBOL(ttm_bo_device_release);
1536 int ttm_bo_device_init(struct ttm_bo_device *bdev,
1537 struct ttm_bo_global *glob,
1538 struct ttm_bo_driver *driver,
1539 uint64_t file_page_offset,
1544 rwlock_init(&bdev->vm_lock);
1545 bdev->driver = driver;
1547 memset(bdev->man, 0, sizeof(bdev->man));
1550 * Initialize the system memory buffer type.
1551 * Other types need to be driver / IOCTL initialized.
1553 ret = ttm_bo_init_mm(bdev, TTM_PL_SYSTEM, 0);
1554 if (unlikely(ret != 0))
1557 bdev->addr_space_rb = RB_ROOT;
1558 ret = drm_mm_init(&bdev->addr_space_mm, file_page_offset, 0x10000000);
1559 if (unlikely(ret != 0))
1560 goto out_no_addr_mm;
1562 INIT_DELAYED_WORK(&bdev->wq, ttm_bo_delayed_workqueue);
1563 INIT_LIST_HEAD(&bdev->ddestroy);
1564 bdev->dev_mapping = NULL;
1566 bdev->need_dma32 = need_dma32;
1568 spin_lock_init(&bdev->fence_lock);
1569 mutex_lock(&glob->device_list_mutex);
1570 list_add_tail(&bdev->device_list, &glob->device_list);
1571 mutex_unlock(&glob->device_list_mutex);
1575 ttm_bo_clean_mm(bdev, 0);
1579 EXPORT_SYMBOL(ttm_bo_device_init);
1582 * buffer object vm functions.
1585 bool ttm_mem_reg_is_pci(struct ttm_bo_device *bdev, struct ttm_mem_reg *mem)
1587 struct ttm_mem_type_manager *man = &bdev->man[mem->mem_type];
1589 if (!(man->flags & TTM_MEMTYPE_FLAG_FIXED)) {
1590 if (mem->mem_type == TTM_PL_SYSTEM)
1593 if (man->flags & TTM_MEMTYPE_FLAG_CMA)
1596 if (mem->placement & TTM_PL_FLAG_CACHED)
1602 void ttm_bo_unmap_virtual_locked(struct ttm_buffer_object *bo)
1604 struct ttm_bo_device *bdev = bo->bdev;
1605 loff_t offset = (loff_t) bo->addr_space_offset;
1606 loff_t holelen = ((loff_t) bo->mem.num_pages) << PAGE_SHIFT;
1608 if (!bdev->dev_mapping)
1610 unmap_mapping_range(bdev->dev_mapping, offset, holelen, 1);
1611 ttm_mem_io_free_vm(bo);
1614 void ttm_bo_unmap_virtual(struct ttm_buffer_object *bo)
1616 struct ttm_bo_device *bdev = bo->bdev;
1617 struct ttm_mem_type_manager *man = &bdev->man[bo->mem.mem_type];
1619 ttm_mem_io_lock(man, false);
1620 ttm_bo_unmap_virtual_locked(bo);
1621 ttm_mem_io_unlock(man);
1625 EXPORT_SYMBOL(ttm_bo_unmap_virtual);
1627 static void ttm_bo_vm_insert_rb(struct ttm_buffer_object *bo)
1629 struct ttm_bo_device *bdev = bo->bdev;
1630 struct rb_node **cur = &bdev->addr_space_rb.rb_node;
1631 struct rb_node *parent = NULL;
1632 struct ttm_buffer_object *cur_bo;
1633 unsigned long offset = bo->vm_node->start;
1634 unsigned long cur_offset;
1638 cur_bo = rb_entry(parent, struct ttm_buffer_object, vm_rb);
1639 cur_offset = cur_bo->vm_node->start;
1640 if (offset < cur_offset)
1641 cur = &parent->rb_left;
1642 else if (offset > cur_offset)
1643 cur = &parent->rb_right;
1648 rb_link_node(&bo->vm_rb, parent, cur);
1649 rb_insert_color(&bo->vm_rb, &bdev->addr_space_rb);
1655 * @bo: the buffer to allocate address space for
1657 * Allocate address space in the drm device so that applications
1658 * can mmap the buffer and access the contents. This only
1659 * applies to ttm_bo_type_device objects as others are not
1660 * placed in the drm device address space.
1663 static int ttm_bo_setup_vm(struct ttm_buffer_object *bo)
1665 struct ttm_bo_device *bdev = bo->bdev;
1669 ret = drm_mm_pre_get(&bdev->addr_space_mm);
1670 if (unlikely(ret != 0))
1673 write_lock(&bdev->vm_lock);
1674 bo->vm_node = drm_mm_search_free(&bdev->addr_space_mm,
1675 bo->mem.num_pages, 0, 0);
1677 if (unlikely(bo->vm_node == NULL)) {
1682 bo->vm_node = drm_mm_get_block_atomic(bo->vm_node,
1683 bo->mem.num_pages, 0);
1685 if (unlikely(bo->vm_node == NULL)) {
1686 write_unlock(&bdev->vm_lock);
1690 ttm_bo_vm_insert_rb(bo);
1691 write_unlock(&bdev->vm_lock);
1692 bo->addr_space_offset = ((uint64_t) bo->vm_node->start) << PAGE_SHIFT;
1696 write_unlock(&bdev->vm_lock);
1700 int ttm_bo_wait(struct ttm_buffer_object *bo,
1701 bool lazy, bool interruptible, bool no_wait)
1703 struct ttm_bo_driver *driver = bo->bdev->driver;
1704 struct ttm_bo_device *bdev = bo->bdev;
1708 if (likely(bo->sync_obj == NULL))
1711 while (bo->sync_obj) {
1713 if (driver->sync_obj_signaled(bo->sync_obj)) {
1714 void *tmp_obj = bo->sync_obj;
1715 bo->sync_obj = NULL;
1716 clear_bit(TTM_BO_PRIV_FLAG_MOVING, &bo->priv_flags);
1717 spin_unlock(&bdev->fence_lock);
1718 driver->sync_obj_unref(&tmp_obj);
1719 spin_lock(&bdev->fence_lock);
1726 sync_obj = driver->sync_obj_ref(bo->sync_obj);
1727 spin_unlock(&bdev->fence_lock);
1728 ret = driver->sync_obj_wait(sync_obj,
1729 lazy, interruptible);
1730 if (unlikely(ret != 0)) {
1731 driver->sync_obj_unref(&sync_obj);
1732 spin_lock(&bdev->fence_lock);
1735 spin_lock(&bdev->fence_lock);
1736 if (likely(bo->sync_obj == sync_obj)) {
1737 void *tmp_obj = bo->sync_obj;
1738 bo->sync_obj = NULL;
1739 clear_bit(TTM_BO_PRIV_FLAG_MOVING,
1741 spin_unlock(&bdev->fence_lock);
1742 driver->sync_obj_unref(&sync_obj);
1743 driver->sync_obj_unref(&tmp_obj);
1744 spin_lock(&bdev->fence_lock);
1746 spin_unlock(&bdev->fence_lock);
1747 driver->sync_obj_unref(&sync_obj);
1748 spin_lock(&bdev->fence_lock);
1753 EXPORT_SYMBOL(ttm_bo_wait);
1755 int ttm_bo_synccpu_write_grab(struct ttm_buffer_object *bo, bool no_wait)
1757 struct ttm_bo_device *bdev = bo->bdev;
1761 * Using ttm_bo_reserve makes sure the lru lists are updated.
1764 ret = ttm_bo_reserve(bo, true, no_wait, false, 0);
1765 if (unlikely(ret != 0))
1767 spin_lock(&bdev->fence_lock);
1768 ret = ttm_bo_wait(bo, false, true, no_wait);
1769 spin_unlock(&bdev->fence_lock);
1770 if (likely(ret == 0))
1771 atomic_inc(&bo->cpu_writers);
1772 ttm_bo_unreserve(bo);
1775 EXPORT_SYMBOL(ttm_bo_synccpu_write_grab);
1777 void ttm_bo_synccpu_write_release(struct ttm_buffer_object *bo)
1779 atomic_dec(&bo->cpu_writers);
1781 EXPORT_SYMBOL(ttm_bo_synccpu_write_release);
1784 * A buffer object shrink method that tries to swap out the first
1785 * buffer object on the bo_global::swap_lru list.
1788 static int ttm_bo_swapout(struct ttm_mem_shrink *shrink)
1790 struct ttm_bo_global *glob =
1791 container_of(shrink, struct ttm_bo_global, shrink);
1792 struct ttm_buffer_object *bo;
1795 uint32_t swap_placement = (TTM_PL_FLAG_CACHED | TTM_PL_FLAG_SYSTEM);
1797 spin_lock(&glob->lru_lock);
1798 list_for_each_entry(bo, &glob->swap_lru, swap) {
1799 ret = ttm_bo_reserve_locked(bo, false, true, false, 0);
1805 spin_unlock(&glob->lru_lock);
1809 kref_get(&bo->list_kref);
1811 if (!list_empty(&bo->ddestroy)) {
1812 ret = ttm_bo_cleanup_refs_and_unlock(bo, false, false);
1813 kref_put(&bo->list_kref, ttm_bo_release_list);
1817 put_count = ttm_bo_del_from_lru(bo);
1818 spin_unlock(&glob->lru_lock);
1820 ttm_bo_list_ref_sub(bo, put_count, true);
1823 * Wait for GPU, then move to system cached.
1826 spin_lock(&bo->bdev->fence_lock);
1827 ret = ttm_bo_wait(bo, false, false, false);
1828 spin_unlock(&bo->bdev->fence_lock);
1830 if (unlikely(ret != 0))
1833 if ((bo->mem.placement & swap_placement) != swap_placement) {
1834 struct ttm_mem_reg evict_mem;
1836 evict_mem = bo->mem;
1837 evict_mem.mm_node = NULL;
1838 evict_mem.placement = TTM_PL_FLAG_SYSTEM | TTM_PL_FLAG_CACHED;
1839 evict_mem.mem_type = TTM_PL_SYSTEM;
1841 ret = ttm_bo_handle_move_mem(bo, &evict_mem, true,
1843 if (unlikely(ret != 0))
1847 ttm_bo_unmap_virtual(bo);
1850 * Swap out. Buffer will be swapped in again as soon as
1851 * anyone tries to access a ttm page.
1854 if (bo->bdev->driver->swap_notify)
1855 bo->bdev->driver->swap_notify(bo);
1857 ret = ttm_tt_swapout(bo->ttm, bo->persistent_swap_storage);
1862 * Unreserve without putting on LRU to avoid swapping out an
1863 * already swapped buffer.
1866 atomic_set(&bo->reserved, 0);
1867 wake_up_all(&bo->event_queue);
1868 kref_put(&bo->list_kref, ttm_bo_release_list);
1872 void ttm_bo_swapout_all(struct ttm_bo_device *bdev)
1874 while (ttm_bo_swapout(&bdev->glob->shrink) == 0)
1877 EXPORT_SYMBOL(ttm_bo_swapout_all);