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 #include "ttm/ttm_module.h"
32 #include "ttm/ttm_bo_driver.h"
33 #include "ttm/ttm_placement.h"
34 #include <linux/jiffies.h>
35 #include <linux/slab.h>
36 #include <linux/sched.h>
38 #include <linux/file.h>
39 #include <linux/module.h>
40 #include <asm/atomic.h>
42 #define TTM_ASSERT_LOCKED(param)
43 #define TTM_DEBUG(fmt, arg...)
44 #define TTM_BO_HASH_ORDER 13
46 static int ttm_bo_setup_vm(struct ttm_buffer_object
*bo
);
47 static int ttm_bo_swapout(struct ttm_mem_shrink
*shrink
);
48 static void ttm_bo_global_kobj_release(struct kobject
*kobj
);
50 static struct attribute ttm_bo_count
= {
55 static inline int ttm_mem_type_from_flags(uint32_t flags
, uint32_t *mem_type
)
59 for (i
= 0; i
<= TTM_PL_PRIV5
; i
++)
60 if (flags
& (1 << i
)) {
67 static void ttm_mem_type_debug(struct ttm_bo_device
*bdev
, int mem_type
)
69 struct ttm_mem_type_manager
*man
= &bdev
->man
[mem_type
];
71 printk(KERN_ERR TTM_PFX
" has_type: %d\n", man
->has_type
);
72 printk(KERN_ERR TTM_PFX
" use_type: %d\n", man
->use_type
);
73 printk(KERN_ERR TTM_PFX
" flags: 0x%08X\n", man
->flags
);
74 printk(KERN_ERR TTM_PFX
" gpu_offset: 0x%08lX\n", man
->gpu_offset
);
75 printk(KERN_ERR TTM_PFX
" size: %llu\n", man
->size
);
76 printk(KERN_ERR TTM_PFX
" available_caching: 0x%08X\n",
77 man
->available_caching
);
78 printk(KERN_ERR TTM_PFX
" default_caching: 0x%08X\n",
79 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 printk(KERN_ERR TTM_PFX
"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 printk(KERN_ERR TTM_PFX
" 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
;
141 BUG_ON(atomic_read(&bo
->list_kref
.refcount
));
142 BUG_ON(atomic_read(&bo
->kref
.refcount
));
143 BUG_ON(atomic_read(&bo
->cpu_writers
));
144 BUG_ON(bo
->sync_obj
!= NULL
);
145 BUG_ON(bo
->mem
.mm_node
!= NULL
);
146 BUG_ON(!list_empty(&bo
->lru
));
147 BUG_ON(!list_empty(&bo
->ddestroy
));
150 ttm_tt_destroy(bo
->ttm
);
151 atomic_dec(&bo
->glob
->bo_count
);
155 ttm_mem_global_free(bdev
->glob
->mem_glob
, bo
->acc_size
);
160 int ttm_bo_wait_unreserved(struct ttm_buffer_object
*bo
, bool interruptible
)
163 return wait_event_interruptible(bo
->event_queue
,
164 atomic_read(&bo
->reserved
) == 0);
166 wait_event(bo
->event_queue
, atomic_read(&bo
->reserved
) == 0);
170 EXPORT_SYMBOL(ttm_bo_wait_unreserved
);
172 void ttm_bo_add_to_lru(struct ttm_buffer_object
*bo
)
174 struct ttm_bo_device
*bdev
= bo
->bdev
;
175 struct ttm_mem_type_manager
*man
;
177 BUG_ON(!atomic_read(&bo
->reserved
));
179 if (!(bo
->mem
.placement
& TTM_PL_FLAG_NO_EVICT
)) {
181 BUG_ON(!list_empty(&bo
->lru
));
183 man
= &bdev
->man
[bo
->mem
.mem_type
];
184 list_add_tail(&bo
->lru
, &man
->lru
);
185 kref_get(&bo
->list_kref
);
187 if (bo
->ttm
!= NULL
) {
188 list_add_tail(&bo
->swap
, &bo
->glob
->swap_lru
);
189 kref_get(&bo
->list_kref
);
194 int ttm_bo_del_from_lru(struct ttm_buffer_object
*bo
)
198 if (!list_empty(&bo
->swap
)) {
199 list_del_init(&bo
->swap
);
202 if (!list_empty(&bo
->lru
)) {
203 list_del_init(&bo
->lru
);
208 * TODO: Add a driver hook to delete from
209 * driver-specific LRU's here.
215 int ttm_bo_reserve_locked(struct ttm_buffer_object
*bo
,
217 bool no_wait
, bool use_sequence
, uint32_t sequence
)
219 struct ttm_bo_global
*glob
= bo
->glob
;
222 while (unlikely(atomic_cmpxchg(&bo
->reserved
, 0, 1) != 0)) {
224 * Deadlock avoidance for multi-bo reserving.
226 if (use_sequence
&& bo
->seq_valid
) {
228 * We've already reserved this one.
230 if (unlikely(sequence
== bo
->val_seq
))
233 * Already reserved by a thread that will not back
234 * off for us. We need to back off.
236 if (unlikely(sequence
- bo
->val_seq
< (1 << 31)))
243 spin_unlock(&glob
->lru_lock
);
244 ret
= ttm_bo_wait_unreserved(bo
, interruptible
);
245 spin_lock(&glob
->lru_lock
);
253 * Wake up waiters that may need to recheck for deadlock,
254 * if we decreased the sequence number.
256 if (unlikely((bo
->val_seq
- sequence
< (1 << 31))
258 wake_up_all(&bo
->event_queue
);
260 bo
->val_seq
= sequence
;
261 bo
->seq_valid
= true;
263 bo
->seq_valid
= false;
268 EXPORT_SYMBOL(ttm_bo_reserve
);
270 static void ttm_bo_ref_bug(struct kref
*list_kref
)
275 void ttm_bo_list_ref_sub(struct ttm_buffer_object
*bo
, int count
,
278 kref_sub(&bo
->list_kref
, count
,
279 (never_free
) ? ttm_bo_ref_bug
: ttm_bo_release_list
);
282 int ttm_bo_reserve(struct ttm_buffer_object
*bo
,
284 bool no_wait
, bool use_sequence
, uint32_t sequence
)
286 struct ttm_bo_global
*glob
= bo
->glob
;
290 spin_lock(&glob
->lru_lock
);
291 ret
= ttm_bo_reserve_locked(bo
, interruptible
, no_wait
, use_sequence
,
293 if (likely(ret
== 0))
294 put_count
= ttm_bo_del_from_lru(bo
);
295 spin_unlock(&glob
->lru_lock
);
297 ttm_bo_list_ref_sub(bo
, put_count
, true);
302 void ttm_bo_unreserve_locked(struct ttm_buffer_object
*bo
)
304 ttm_bo_add_to_lru(bo
);
305 atomic_set(&bo
->reserved
, 0);
306 wake_up_all(&bo
->event_queue
);
309 void ttm_bo_unreserve(struct ttm_buffer_object
*bo
)
311 struct ttm_bo_global
*glob
= bo
->glob
;
313 spin_lock(&glob
->lru_lock
);
314 ttm_bo_unreserve_locked(bo
);
315 spin_unlock(&glob
->lru_lock
);
317 EXPORT_SYMBOL(ttm_bo_unreserve
);
320 * Call bo->mutex locked.
322 static int ttm_bo_add_ttm(struct ttm_buffer_object
*bo
, bool zero_alloc
)
324 struct ttm_bo_device
*bdev
= bo
->bdev
;
325 struct ttm_bo_global
*glob
= bo
->glob
;
327 uint32_t page_flags
= 0;
329 TTM_ASSERT_LOCKED(&bo
->mutex
);
332 if (bdev
->need_dma32
)
333 page_flags
|= TTM_PAGE_FLAG_DMA32
;
336 case ttm_bo_type_device
:
338 page_flags
|= TTM_PAGE_FLAG_ZERO_ALLOC
;
339 case ttm_bo_type_kernel
:
340 bo
->ttm
= ttm_tt_create(bdev
, bo
->num_pages
<< PAGE_SHIFT
,
341 page_flags
, glob
->dummy_read_page
);
342 if (unlikely(bo
->ttm
== NULL
))
345 case ttm_bo_type_user
:
346 bo
->ttm
= ttm_tt_create(bdev
, bo
->num_pages
<< PAGE_SHIFT
,
347 page_flags
| TTM_PAGE_FLAG_USER
,
348 glob
->dummy_read_page
);
349 if (unlikely(bo
->ttm
== NULL
)) {
354 ret
= ttm_tt_set_user(bo
->ttm
, current
,
355 bo
->buffer_start
, bo
->num_pages
);
356 if (unlikely(ret
!= 0))
357 ttm_tt_destroy(bo
->ttm
);
360 printk(KERN_ERR TTM_PFX
"Illegal buffer object type\n");
368 static int ttm_bo_handle_move_mem(struct ttm_buffer_object
*bo
,
369 struct ttm_mem_reg
*mem
,
370 bool evict
, bool interruptible
,
371 bool no_wait_reserve
, bool no_wait_gpu
)
373 struct ttm_bo_device
*bdev
= bo
->bdev
;
374 bool old_is_pci
= ttm_mem_reg_is_pci(bdev
, &bo
->mem
);
375 bool new_is_pci
= ttm_mem_reg_is_pci(bdev
, mem
);
376 struct ttm_mem_type_manager
*old_man
= &bdev
->man
[bo
->mem
.mem_type
];
377 struct ttm_mem_type_manager
*new_man
= &bdev
->man
[mem
->mem_type
];
380 if (old_is_pci
|| new_is_pci
||
381 ((mem
->placement
& bo
->mem
.placement
& TTM_PL_MASK_CACHING
) == 0)) {
382 ret
= ttm_mem_io_lock(old_man
, true);
383 if (unlikely(ret
!= 0))
385 ttm_bo_unmap_virtual_locked(bo
);
386 ttm_mem_io_unlock(old_man
);
390 * Create and bind a ttm if required.
393 if (!(new_man
->flags
& TTM_MEMTYPE_FLAG_FIXED
) && (bo
->ttm
== NULL
)) {
394 ret
= ttm_bo_add_ttm(bo
, false);
398 ret
= ttm_tt_set_placement_caching(bo
->ttm
, mem
->placement
);
402 if (mem
->mem_type
!= TTM_PL_SYSTEM
) {
403 ret
= ttm_tt_bind(bo
->ttm
, mem
);
408 if (bo
->mem
.mem_type
== TTM_PL_SYSTEM
) {
409 if (bdev
->driver
->move_notify
)
410 bdev
->driver
->move_notify(bo
, mem
);
417 if (bdev
->driver
->move_notify
)
418 bdev
->driver
->move_notify(bo
, mem
);
420 if (!(old_man
->flags
& TTM_MEMTYPE_FLAG_FIXED
) &&
421 !(new_man
->flags
& TTM_MEMTYPE_FLAG_FIXED
))
422 ret
= ttm_bo_move_ttm(bo
, evict
, no_wait_reserve
, no_wait_gpu
, mem
);
423 else if (bdev
->driver
->move
)
424 ret
= bdev
->driver
->move(bo
, evict
, interruptible
,
425 no_wait_reserve
, no_wait_gpu
, mem
);
427 ret
= ttm_bo_move_memcpy(bo
, evict
, no_wait_reserve
, no_wait_gpu
, mem
);
434 ret
= bdev
->driver
->invalidate_caches(bdev
, bo
->mem
.placement
);
436 printk(KERN_ERR TTM_PFX
"Can not flush read caches\n");
440 if (bo
->mem
.mm_node
) {
441 bo
->offset
= (bo
->mem
.start
<< PAGE_SHIFT
) +
442 bdev
->man
[bo
->mem
.mem_type
].gpu_offset
;
443 bo
->cur_placement
= bo
->mem
.placement
;
450 new_man
= &bdev
->man
[bo
->mem
.mem_type
];
451 if ((new_man
->flags
& TTM_MEMTYPE_FLAG_FIXED
) && bo
->ttm
) {
452 ttm_tt_unbind(bo
->ttm
);
453 ttm_tt_destroy(bo
->ttm
);
462 * Will release GPU memory type usage on destruction.
463 * This is the place to put in driver specific hooks to release
464 * driver private resources.
465 * Will release the bo::reserved lock.
468 static void ttm_bo_cleanup_memtype_use(struct ttm_buffer_object
*bo
)
471 ttm_tt_unbind(bo
->ttm
);
472 ttm_tt_destroy(bo
->ttm
);
475 ttm_bo_mem_put(bo
, &bo
->mem
);
477 atomic_set(&bo
->reserved
, 0);
480 * Make processes trying to reserve really pick it up.
482 smp_mb__after_atomic_dec();
483 wake_up_all(&bo
->event_queue
);
486 static void ttm_bo_cleanup_refs_or_queue(struct ttm_buffer_object
*bo
)
488 struct ttm_bo_device
*bdev
= bo
->bdev
;
489 struct ttm_bo_global
*glob
= bo
->glob
;
490 struct ttm_bo_driver
*driver
;
491 void *sync_obj
= NULL
;
496 spin_lock(&bdev
->fence_lock
);
497 (void) ttm_bo_wait(bo
, false, false, true);
500 spin_lock(&glob
->lru_lock
);
503 * Lock inversion between bo:reserve and bdev::fence_lock here,
504 * but that's OK, since we're only trylocking.
507 ret
= ttm_bo_reserve_locked(bo
, false, true, false, 0);
509 if (unlikely(ret
== -EBUSY
))
512 spin_unlock(&bdev
->fence_lock
);
513 put_count
= ttm_bo_del_from_lru(bo
);
515 spin_unlock(&glob
->lru_lock
);
516 ttm_bo_cleanup_memtype_use(bo
);
518 ttm_bo_list_ref_sub(bo
, put_count
, true);
522 spin_lock(&glob
->lru_lock
);
525 driver
= bdev
->driver
;
527 sync_obj
= driver
->sync_obj_ref(bo
->sync_obj
);
528 sync_obj_arg
= bo
->sync_obj_arg
;
530 kref_get(&bo
->list_kref
);
531 list_add_tail(&bo
->ddestroy
, &bdev
->ddestroy
);
532 spin_unlock(&glob
->lru_lock
);
533 spin_unlock(&bdev
->fence_lock
);
536 driver
->sync_obj_flush(sync_obj
, sync_obj_arg
);
537 driver
->sync_obj_unref(&sync_obj
);
539 schedule_delayed_work(&bdev
->wq
,
540 ((HZ
/ 100) < 1) ? 1 : HZ
/ 100);
544 * function ttm_bo_cleanup_refs
545 * If bo idle, remove from delayed- and lru lists, and unref.
546 * If not idle, do nothing.
548 * @interruptible Any sleeps should occur interruptibly.
549 * @no_wait_reserve Never wait for reserve. Return -EBUSY instead.
550 * @no_wait_gpu Never wait for gpu. Return -EBUSY instead.
553 static int ttm_bo_cleanup_refs(struct ttm_buffer_object
*bo
,
555 bool no_wait_reserve
,
558 struct ttm_bo_device
*bdev
= bo
->bdev
;
559 struct ttm_bo_global
*glob
= bo
->glob
;
564 spin_lock(&bdev
->fence_lock
);
565 ret
= ttm_bo_wait(bo
, false, interruptible
, no_wait_gpu
);
566 spin_unlock(&bdev
->fence_lock
);
568 if (unlikely(ret
!= 0))
571 spin_lock(&glob
->lru_lock
);
572 ret
= ttm_bo_reserve_locked(bo
, interruptible
,
573 no_wait_reserve
, false, 0);
575 if (unlikely(ret
!= 0) || list_empty(&bo
->ddestroy
)) {
576 spin_unlock(&glob
->lru_lock
);
581 * We can re-check for sync object without taking
582 * the bo::lock since setting the sync object requires
583 * also bo::reserved. A busy object at this point may
584 * be caused by another thread recently starting an accelerated
588 if (unlikely(bo
->sync_obj
)) {
589 atomic_set(&bo
->reserved
, 0);
590 wake_up_all(&bo
->event_queue
);
591 spin_unlock(&glob
->lru_lock
);
595 put_count
= ttm_bo_del_from_lru(bo
);
596 list_del_init(&bo
->ddestroy
);
599 spin_unlock(&glob
->lru_lock
);
600 ttm_bo_cleanup_memtype_use(bo
);
602 ttm_bo_list_ref_sub(bo
, put_count
, true);
608 * Traverse the delayed list, and call ttm_bo_cleanup_refs on all
609 * encountered buffers.
612 static int ttm_bo_delayed_delete(struct ttm_bo_device
*bdev
, bool remove_all
)
614 struct ttm_bo_global
*glob
= bdev
->glob
;
615 struct ttm_buffer_object
*entry
= NULL
;
618 spin_lock(&glob
->lru_lock
);
619 if (list_empty(&bdev
->ddestroy
))
622 entry
= list_first_entry(&bdev
->ddestroy
,
623 struct ttm_buffer_object
, ddestroy
);
624 kref_get(&entry
->list_kref
);
627 struct ttm_buffer_object
*nentry
= NULL
;
629 if (entry
->ddestroy
.next
!= &bdev
->ddestroy
) {
630 nentry
= list_first_entry(&entry
->ddestroy
,
631 struct ttm_buffer_object
, ddestroy
);
632 kref_get(&nentry
->list_kref
);
635 spin_unlock(&glob
->lru_lock
);
636 ret
= ttm_bo_cleanup_refs(entry
, false, !remove_all
,
638 kref_put(&entry
->list_kref
, ttm_bo_release_list
);
644 spin_lock(&glob
->lru_lock
);
645 if (list_empty(&entry
->ddestroy
))
650 spin_unlock(&glob
->lru_lock
);
653 kref_put(&entry
->list_kref
, ttm_bo_release_list
);
657 static void ttm_bo_delayed_workqueue(struct work_struct
*work
)
659 struct ttm_bo_device
*bdev
=
660 container_of(work
, struct ttm_bo_device
, wq
.work
);
662 if (ttm_bo_delayed_delete(bdev
, false)) {
663 schedule_delayed_work(&bdev
->wq
,
664 ((HZ
/ 100) < 1) ? 1 : HZ
/ 100);
668 static void ttm_bo_release(struct kref
*kref
)
670 struct ttm_buffer_object
*bo
=
671 container_of(kref
, struct ttm_buffer_object
, kref
);
672 struct ttm_bo_device
*bdev
= bo
->bdev
;
673 struct ttm_mem_type_manager
*man
= &bdev
->man
[bo
->mem
.mem_type
];
675 if (likely(bo
->vm_node
!= NULL
)) {
676 rb_erase(&bo
->vm_rb
, &bdev
->addr_space_rb
);
677 drm_mm_put_block(bo
->vm_node
);
680 write_unlock(&bdev
->vm_lock
);
681 ttm_mem_io_lock(man
, false);
682 ttm_mem_io_free_vm(bo
);
683 ttm_mem_io_unlock(man
);
684 ttm_bo_cleanup_refs_or_queue(bo
);
685 kref_put(&bo
->list_kref
, ttm_bo_release_list
);
686 write_lock(&bdev
->vm_lock
);
689 void ttm_bo_unref(struct ttm_buffer_object
**p_bo
)
691 struct ttm_buffer_object
*bo
= *p_bo
;
692 struct ttm_bo_device
*bdev
= bo
->bdev
;
695 write_lock(&bdev
->vm_lock
);
696 kref_put(&bo
->kref
, ttm_bo_release
);
697 write_unlock(&bdev
->vm_lock
);
699 EXPORT_SYMBOL(ttm_bo_unref
);
701 int ttm_bo_lock_delayed_workqueue(struct ttm_bo_device
*bdev
)
703 return cancel_delayed_work_sync(&bdev
->wq
);
705 EXPORT_SYMBOL(ttm_bo_lock_delayed_workqueue
);
707 void ttm_bo_unlock_delayed_workqueue(struct ttm_bo_device
*bdev
, int resched
)
710 schedule_delayed_work(&bdev
->wq
,
711 ((HZ
/ 100) < 1) ? 1 : HZ
/ 100);
713 EXPORT_SYMBOL(ttm_bo_unlock_delayed_workqueue
);
715 static int ttm_bo_evict(struct ttm_buffer_object
*bo
, bool interruptible
,
716 bool no_wait_reserve
, bool no_wait_gpu
)
718 struct ttm_bo_device
*bdev
= bo
->bdev
;
719 struct ttm_mem_reg evict_mem
;
720 struct ttm_placement placement
;
723 spin_lock(&bdev
->fence_lock
);
724 ret
= ttm_bo_wait(bo
, false, interruptible
, no_wait_gpu
);
725 spin_unlock(&bdev
->fence_lock
);
727 if (unlikely(ret
!= 0)) {
728 if (ret
!= -ERESTARTSYS
) {
729 printk(KERN_ERR TTM_PFX
730 "Failed to expire sync object before "
731 "buffer eviction.\n");
736 BUG_ON(!atomic_read(&bo
->reserved
));
739 evict_mem
.mm_node
= NULL
;
740 evict_mem
.bus
.io_reserved_vm
= false;
741 evict_mem
.bus
.io_reserved_count
= 0;
745 placement
.num_placement
= 0;
746 placement
.num_busy_placement
= 0;
747 bdev
->driver
->evict_flags(bo
, &placement
);
748 ret
= ttm_bo_mem_space(bo
, &placement
, &evict_mem
, interruptible
,
749 no_wait_reserve
, no_wait_gpu
);
751 if (ret
!= -ERESTARTSYS
) {
752 printk(KERN_ERR TTM_PFX
753 "Failed to find memory space for "
754 "buffer 0x%p eviction.\n", bo
);
755 ttm_bo_mem_space_debug(bo
, &placement
);
760 ret
= ttm_bo_handle_move_mem(bo
, &evict_mem
, true, interruptible
,
761 no_wait_reserve
, no_wait_gpu
);
763 if (ret
!= -ERESTARTSYS
)
764 printk(KERN_ERR TTM_PFX
"Buffer eviction failed\n");
765 ttm_bo_mem_put(bo
, &evict_mem
);
773 static int ttm_mem_evict_first(struct ttm_bo_device
*bdev
,
775 bool interruptible
, bool no_wait_reserve
,
778 struct ttm_bo_global
*glob
= bdev
->glob
;
779 struct ttm_mem_type_manager
*man
= &bdev
->man
[mem_type
];
780 struct ttm_buffer_object
*bo
;
781 int ret
, put_count
= 0;
784 spin_lock(&glob
->lru_lock
);
785 if (list_empty(&man
->lru
)) {
786 spin_unlock(&glob
->lru_lock
);
790 bo
= list_first_entry(&man
->lru
, struct ttm_buffer_object
, lru
);
791 kref_get(&bo
->list_kref
);
793 if (!list_empty(&bo
->ddestroy
)) {
794 spin_unlock(&glob
->lru_lock
);
795 ret
= ttm_bo_cleanup_refs(bo
, interruptible
,
796 no_wait_reserve
, no_wait_gpu
);
797 kref_put(&bo
->list_kref
, ttm_bo_release_list
);
799 if (likely(ret
== 0 || ret
== -ERESTARTSYS
))
805 ret
= ttm_bo_reserve_locked(bo
, false, no_wait_reserve
, false, 0);
807 if (unlikely(ret
== -EBUSY
)) {
808 spin_unlock(&glob
->lru_lock
);
809 if (likely(!no_wait_gpu
))
810 ret
= ttm_bo_wait_unreserved(bo
, interruptible
);
812 kref_put(&bo
->list_kref
, ttm_bo_release_list
);
815 * We *need* to retry after releasing the lru lock.
818 if (unlikely(ret
!= 0))
823 put_count
= ttm_bo_del_from_lru(bo
);
824 spin_unlock(&glob
->lru_lock
);
828 ttm_bo_list_ref_sub(bo
, put_count
, true);
830 ret
= ttm_bo_evict(bo
, interruptible
, no_wait_reserve
, no_wait_gpu
);
831 ttm_bo_unreserve(bo
);
833 kref_put(&bo
->list_kref
, ttm_bo_release_list
);
837 void ttm_bo_mem_put(struct ttm_buffer_object
*bo
, struct ttm_mem_reg
*mem
)
839 struct ttm_mem_type_manager
*man
= &bo
->bdev
->man
[mem
->mem_type
];
842 (*man
->func
->put_node
)(man
, mem
);
844 EXPORT_SYMBOL(ttm_bo_mem_put
);
847 * Repeatedly evict memory from the LRU for @mem_type until we create enough
848 * space, or we've evicted everything and there isn't enough space.
850 static int ttm_bo_mem_force_space(struct ttm_buffer_object
*bo
,
852 struct ttm_placement
*placement
,
853 struct ttm_mem_reg
*mem
,
855 bool no_wait_reserve
,
858 struct ttm_bo_device
*bdev
= bo
->bdev
;
859 struct ttm_mem_type_manager
*man
= &bdev
->man
[mem_type
];
863 ret
= (*man
->func
->get_node
)(man
, bo
, placement
, mem
);
864 if (unlikely(ret
!= 0))
868 ret
= ttm_mem_evict_first(bdev
, mem_type
, interruptible
,
869 no_wait_reserve
, no_wait_gpu
);
870 if (unlikely(ret
!= 0))
873 if (mem
->mm_node
== NULL
)
875 mem
->mem_type
= mem_type
;
879 static uint32_t ttm_bo_select_caching(struct ttm_mem_type_manager
*man
,
880 uint32_t cur_placement
,
881 uint32_t proposed_placement
)
883 uint32_t caching
= proposed_placement
& TTM_PL_MASK_CACHING
;
884 uint32_t result
= proposed_placement
& ~TTM_PL_MASK_CACHING
;
887 * Keep current caching if possible.
890 if ((cur_placement
& caching
) != 0)
891 result
|= (cur_placement
& caching
);
892 else if ((man
->default_caching
& caching
) != 0)
893 result
|= man
->default_caching
;
894 else if ((TTM_PL_FLAG_CACHED
& caching
) != 0)
895 result
|= TTM_PL_FLAG_CACHED
;
896 else if ((TTM_PL_FLAG_WC
& caching
) != 0)
897 result
|= TTM_PL_FLAG_WC
;
898 else if ((TTM_PL_FLAG_UNCACHED
& caching
) != 0)
899 result
|= TTM_PL_FLAG_UNCACHED
;
904 static bool ttm_bo_mt_compatible(struct ttm_mem_type_manager
*man
,
907 uint32_t proposed_placement
,
908 uint32_t *masked_placement
)
910 uint32_t cur_flags
= ttm_bo_type_flags(mem_type
);
912 if ((man
->flags
& TTM_MEMTYPE_FLAG_FIXED
) && disallow_fixed
)
915 if ((cur_flags
& proposed_placement
& TTM_PL_MASK_MEM
) == 0)
918 if ((proposed_placement
& man
->available_caching
) == 0)
921 cur_flags
|= (proposed_placement
& man
->available_caching
);
923 *masked_placement
= cur_flags
;
928 * Creates space for memory region @mem according to its type.
930 * This function first searches for free space in compatible memory types in
931 * the priority order defined by the driver. If free space isn't found, then
932 * ttm_bo_mem_force_space is attempted in priority order to evict and find
935 int ttm_bo_mem_space(struct ttm_buffer_object
*bo
,
936 struct ttm_placement
*placement
,
937 struct ttm_mem_reg
*mem
,
938 bool interruptible
, bool no_wait_reserve
,
941 struct ttm_bo_device
*bdev
= bo
->bdev
;
942 struct ttm_mem_type_manager
*man
;
943 uint32_t mem_type
= TTM_PL_SYSTEM
;
944 uint32_t cur_flags
= 0;
945 bool type_found
= false;
946 bool type_ok
= false;
947 bool has_erestartsys
= false;
951 for (i
= 0; i
< placement
->num_placement
; ++i
) {
952 ret
= ttm_mem_type_from_flags(placement
->placement
[i
],
956 man
= &bdev
->man
[mem_type
];
958 type_ok
= ttm_bo_mt_compatible(man
,
959 bo
->type
== ttm_bo_type_user
,
961 placement
->placement
[i
],
967 cur_flags
= ttm_bo_select_caching(man
, bo
->mem
.placement
,
970 * Use the access and other non-mapping-related flag bits from
971 * the memory placement flags to the current flags
973 ttm_flag_masked(&cur_flags
, placement
->placement
[i
],
974 ~TTM_PL_MASK_MEMTYPE
);
976 if (mem_type
== TTM_PL_SYSTEM
)
979 if (man
->has_type
&& man
->use_type
) {
981 ret
= (*man
->func
->get_node
)(man
, bo
, placement
, mem
);
989 if ((type_ok
&& (mem_type
== TTM_PL_SYSTEM
)) || mem
->mm_node
) {
990 mem
->mem_type
= mem_type
;
991 mem
->placement
= cur_flags
;
998 for (i
= 0; i
< placement
->num_busy_placement
; ++i
) {
999 ret
= ttm_mem_type_from_flags(placement
->busy_placement
[i
],
1003 man
= &bdev
->man
[mem_type
];
1006 if (!ttm_bo_mt_compatible(man
,
1007 bo
->type
== ttm_bo_type_user
,
1009 placement
->busy_placement
[i
],
1013 cur_flags
= ttm_bo_select_caching(man
, bo
->mem
.placement
,
1016 * Use the access and other non-mapping-related flag bits from
1017 * the memory placement flags to the current flags
1019 ttm_flag_masked(&cur_flags
, placement
->busy_placement
[i
],
1020 ~TTM_PL_MASK_MEMTYPE
);
1023 if (mem_type
== TTM_PL_SYSTEM
) {
1024 mem
->mem_type
= mem_type
;
1025 mem
->placement
= cur_flags
;
1026 mem
->mm_node
= NULL
;
1030 ret
= ttm_bo_mem_force_space(bo
, mem_type
, placement
, mem
,
1031 interruptible
, no_wait_reserve
, no_wait_gpu
);
1032 if (ret
== 0 && mem
->mm_node
) {
1033 mem
->placement
= cur_flags
;
1036 if (ret
== -ERESTARTSYS
)
1037 has_erestartsys
= true;
1039 ret
= (has_erestartsys
) ? -ERESTARTSYS
: -ENOMEM
;
1042 EXPORT_SYMBOL(ttm_bo_mem_space
);
1044 int ttm_bo_wait_cpu(struct ttm_buffer_object
*bo
, bool no_wait
)
1046 if ((atomic_read(&bo
->cpu_writers
) > 0) && no_wait
)
1049 return wait_event_interruptible(bo
->event_queue
,
1050 atomic_read(&bo
->cpu_writers
) == 0);
1052 EXPORT_SYMBOL(ttm_bo_wait_cpu
);
1054 int ttm_bo_move_buffer(struct ttm_buffer_object
*bo
,
1055 struct ttm_placement
*placement
,
1056 bool interruptible
, bool no_wait_reserve
,
1060 struct ttm_mem_reg mem
;
1061 struct ttm_bo_device
*bdev
= bo
->bdev
;
1063 BUG_ON(!atomic_read(&bo
->reserved
));
1066 * FIXME: It's possible to pipeline buffer moves.
1067 * Have the driver move function wait for idle when necessary,
1068 * instead of doing it here.
1070 spin_lock(&bdev
->fence_lock
);
1071 ret
= ttm_bo_wait(bo
, false, interruptible
, no_wait_gpu
);
1072 spin_unlock(&bdev
->fence_lock
);
1075 mem
.num_pages
= bo
->num_pages
;
1076 mem
.size
= mem
.num_pages
<< PAGE_SHIFT
;
1077 mem
.page_alignment
= bo
->mem
.page_alignment
;
1078 mem
.bus
.io_reserved_vm
= false;
1079 mem
.bus
.io_reserved_count
= 0;
1081 * Determine where to move the buffer.
1083 ret
= ttm_bo_mem_space(bo
, placement
, &mem
, interruptible
, no_wait_reserve
, no_wait_gpu
);
1086 ret
= ttm_bo_handle_move_mem(bo
, &mem
, false, interruptible
, no_wait_reserve
, no_wait_gpu
);
1088 if (ret
&& mem
.mm_node
)
1089 ttm_bo_mem_put(bo
, &mem
);
1093 static int ttm_bo_mem_compat(struct ttm_placement
*placement
,
1094 struct ttm_mem_reg
*mem
)
1098 if (mem
->mm_node
&& placement
->lpfn
!= 0 &&
1099 (mem
->start
< placement
->fpfn
||
1100 mem
->start
+ mem
->num_pages
> placement
->lpfn
))
1103 for (i
= 0; i
< placement
->num_placement
; i
++) {
1104 if ((placement
->placement
[i
] & mem
->placement
&
1105 TTM_PL_MASK_CACHING
) &&
1106 (placement
->placement
[i
] & mem
->placement
&
1113 int ttm_bo_validate(struct ttm_buffer_object
*bo
,
1114 struct ttm_placement
*placement
,
1115 bool interruptible
, bool no_wait_reserve
,
1120 BUG_ON(!atomic_read(&bo
->reserved
));
1121 /* Check that range is valid */
1122 if (placement
->lpfn
|| placement
->fpfn
)
1123 if (placement
->fpfn
> placement
->lpfn
||
1124 (placement
->lpfn
- placement
->fpfn
) < bo
->num_pages
)
1127 * Check whether we need to move buffer.
1129 ret
= ttm_bo_mem_compat(placement
, &bo
->mem
);
1131 ret
= ttm_bo_move_buffer(bo
, placement
, interruptible
, no_wait_reserve
, no_wait_gpu
);
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
,
1169 unsigned long buffer_start
,
1171 struct file
*persistent_swap_storage
,
1173 void (*destroy
) (struct ttm_buffer_object
*))
1176 unsigned long num_pages
;
1178 size
+= buffer_start
& ~PAGE_MASK
;
1179 num_pages
= (size
+ PAGE_SIZE
- 1) >> PAGE_SHIFT
;
1180 if (num_pages
== 0) {
1181 printk(KERN_ERR TTM_PFX
"Illegal buffer object size.\n");
1188 bo
->destroy
= destroy
;
1190 kref_init(&bo
->kref
);
1191 kref_init(&bo
->list_kref
);
1192 atomic_set(&bo
->cpu_writers
, 0);
1193 atomic_set(&bo
->reserved
, 1);
1194 init_waitqueue_head(&bo
->event_queue
);
1195 INIT_LIST_HEAD(&bo
->lru
);
1196 INIT_LIST_HEAD(&bo
->ddestroy
);
1197 INIT_LIST_HEAD(&bo
->swap
);
1198 INIT_LIST_HEAD(&bo
->io_reserve_lru
);
1200 bo
->glob
= bdev
->glob
;
1202 bo
->num_pages
= num_pages
;
1203 bo
->mem
.size
= num_pages
<< PAGE_SHIFT
;
1204 bo
->mem
.mem_type
= TTM_PL_SYSTEM
;
1205 bo
->mem
.num_pages
= bo
->num_pages
;
1206 bo
->mem
.mm_node
= NULL
;
1207 bo
->mem
.page_alignment
= page_alignment
;
1208 bo
->mem
.bus
.io_reserved_vm
= false;
1209 bo
->mem
.bus
.io_reserved_count
= 0;
1210 bo
->buffer_start
= buffer_start
& PAGE_MASK
;
1212 bo
->mem
.placement
= (TTM_PL_FLAG_SYSTEM
| TTM_PL_FLAG_CACHED
);
1213 bo
->seq_valid
= false;
1214 bo
->persistent_swap_storage
= persistent_swap_storage
;
1215 bo
->acc_size
= acc_size
;
1216 atomic_inc(&bo
->glob
->bo_count
);
1218 ret
= ttm_bo_check_placement(bo
, placement
);
1219 if (unlikely(ret
!= 0))
1223 * For ttm_bo_type_device buffers, allocate
1224 * address space from the device.
1226 if (bo
->type
== ttm_bo_type_device
) {
1227 ret
= ttm_bo_setup_vm(bo
);
1232 ret
= ttm_bo_validate(bo
, placement
, interruptible
, false, false);
1236 ttm_bo_unreserve(bo
);
1240 ttm_bo_unreserve(bo
);
1245 EXPORT_SYMBOL(ttm_bo_init
);
1247 static inline size_t ttm_bo_size(struct ttm_bo_global
*glob
,
1248 unsigned long num_pages
)
1250 size_t page_array_size
= (num_pages
* sizeof(void *) + PAGE_SIZE
- 1) &
1253 return glob
->ttm_bo_size
+ 2 * page_array_size
;
1256 int ttm_bo_create(struct ttm_bo_device
*bdev
,
1258 enum ttm_bo_type type
,
1259 struct ttm_placement
*placement
,
1260 uint32_t page_alignment
,
1261 unsigned long buffer_start
,
1263 struct file
*persistent_swap_storage
,
1264 struct ttm_buffer_object
**p_bo
)
1266 struct ttm_buffer_object
*bo
;
1267 struct ttm_mem_global
*mem_glob
= bdev
->glob
->mem_glob
;
1271 ttm_bo_size(bdev
->glob
, (size
+ PAGE_SIZE
- 1) >> PAGE_SHIFT
);
1272 ret
= ttm_mem_global_alloc(mem_glob
, acc_size
, false, false);
1273 if (unlikely(ret
!= 0))
1276 bo
= kzalloc(sizeof(*bo
), GFP_KERNEL
);
1278 if (unlikely(bo
== NULL
)) {
1279 ttm_mem_global_free(mem_glob
, acc_size
);
1283 ret
= ttm_bo_init(bdev
, bo
, size
, type
, placement
, page_alignment
,
1284 buffer_start
, interruptible
,
1285 persistent_swap_storage
, acc_size
, NULL
);
1286 if (likely(ret
== 0))
1292 static int ttm_bo_force_list_clean(struct ttm_bo_device
*bdev
,
1293 unsigned mem_type
, bool allow_errors
)
1295 struct ttm_mem_type_manager
*man
= &bdev
->man
[mem_type
];
1296 struct ttm_bo_global
*glob
= bdev
->glob
;
1300 * Can't use standard list traversal since we're unlocking.
1303 spin_lock(&glob
->lru_lock
);
1304 while (!list_empty(&man
->lru
)) {
1305 spin_unlock(&glob
->lru_lock
);
1306 ret
= ttm_mem_evict_first(bdev
, mem_type
, false, false, false);
1311 printk(KERN_ERR TTM_PFX
1312 "Cleanup eviction failed\n");
1315 spin_lock(&glob
->lru_lock
);
1317 spin_unlock(&glob
->lru_lock
);
1321 int ttm_bo_clean_mm(struct ttm_bo_device
*bdev
, unsigned mem_type
)
1323 struct ttm_mem_type_manager
*man
;
1326 if (mem_type
>= TTM_NUM_MEM_TYPES
) {
1327 printk(KERN_ERR TTM_PFX
"Illegal memory type %d\n", mem_type
);
1330 man
= &bdev
->man
[mem_type
];
1332 if (!man
->has_type
) {
1333 printk(KERN_ERR TTM_PFX
"Trying to take down uninitialized "
1334 "memory manager type %u\n", mem_type
);
1338 man
->use_type
= false;
1339 man
->has_type
= false;
1343 ttm_bo_force_list_clean(bdev
, mem_type
, false);
1345 ret
= (*man
->func
->takedown
)(man
);
1350 EXPORT_SYMBOL(ttm_bo_clean_mm
);
1352 int ttm_bo_evict_mm(struct ttm_bo_device
*bdev
, unsigned mem_type
)
1354 struct ttm_mem_type_manager
*man
= &bdev
->man
[mem_type
];
1356 if (mem_type
== 0 || mem_type
>= TTM_NUM_MEM_TYPES
) {
1357 printk(KERN_ERR TTM_PFX
1358 "Illegal memory manager memory type %u.\n",
1363 if (!man
->has_type
) {
1364 printk(KERN_ERR TTM_PFX
1365 "Memory type %u has not been initialized.\n",
1370 return ttm_bo_force_list_clean(bdev
, mem_type
, true);
1372 EXPORT_SYMBOL(ttm_bo_evict_mm
);
1374 int ttm_bo_init_mm(struct ttm_bo_device
*bdev
, unsigned type
,
1375 unsigned long p_size
)
1378 struct ttm_mem_type_manager
*man
;
1380 BUG_ON(type
>= TTM_NUM_MEM_TYPES
);
1381 man
= &bdev
->man
[type
];
1382 BUG_ON(man
->has_type
);
1383 man
->io_reserve_fastpath
= true;
1384 man
->use_io_reserve_lru
= false;
1385 mutex_init(&man
->io_reserve_mutex
);
1386 INIT_LIST_HEAD(&man
->io_reserve_lru
);
1388 ret
= bdev
->driver
->init_mem_type(bdev
, type
, man
);
1394 if (type
!= TTM_PL_SYSTEM
) {
1395 ret
= (*man
->func
->init
)(man
, p_size
);
1399 man
->has_type
= true;
1400 man
->use_type
= true;
1403 INIT_LIST_HEAD(&man
->lru
);
1407 EXPORT_SYMBOL(ttm_bo_init_mm
);
1409 static void ttm_bo_global_kobj_release(struct kobject
*kobj
)
1411 struct ttm_bo_global
*glob
=
1412 container_of(kobj
, struct ttm_bo_global
, kobj
);
1414 ttm_mem_unregister_shrink(glob
->mem_glob
, &glob
->shrink
);
1415 __free_page(glob
->dummy_read_page
);
1419 void ttm_bo_global_release(struct drm_global_reference
*ref
)
1421 struct ttm_bo_global
*glob
= ref
->object
;
1423 kobject_del(&glob
->kobj
);
1424 kobject_put(&glob
->kobj
);
1426 EXPORT_SYMBOL(ttm_bo_global_release
);
1428 int ttm_bo_global_init(struct drm_global_reference
*ref
)
1430 struct ttm_bo_global_ref
*bo_ref
=
1431 container_of(ref
, struct ttm_bo_global_ref
, ref
);
1432 struct ttm_bo_global
*glob
= ref
->object
;
1435 mutex_init(&glob
->device_list_mutex
);
1436 spin_lock_init(&glob
->lru_lock
);
1437 glob
->mem_glob
= bo_ref
->mem_glob
;
1438 glob
->dummy_read_page
= alloc_page(__GFP_ZERO
| GFP_DMA32
);
1440 if (unlikely(glob
->dummy_read_page
== NULL
)) {
1445 INIT_LIST_HEAD(&glob
->swap_lru
);
1446 INIT_LIST_HEAD(&glob
->device_list
);
1448 ttm_mem_init_shrink(&glob
->shrink
, ttm_bo_swapout
);
1449 ret
= ttm_mem_register_shrink(glob
->mem_glob
, &glob
->shrink
);
1450 if (unlikely(ret
!= 0)) {
1451 printk(KERN_ERR TTM_PFX
1452 "Could not register buffer object swapout.\n");
1456 glob
->ttm_bo_extra_size
=
1457 ttm_round_pot(sizeof(struct ttm_tt
)) +
1458 ttm_round_pot(sizeof(struct ttm_backend
));
1460 glob
->ttm_bo_size
= glob
->ttm_bo_extra_size
+
1461 ttm_round_pot(sizeof(struct ttm_buffer_object
));
1463 atomic_set(&glob
->bo_count
, 0);
1465 ret
= kobject_init_and_add(
1466 &glob
->kobj
, &ttm_bo_glob_kobj_type
, ttm_get_kobj(), "buffer_objects");
1467 if (unlikely(ret
!= 0))
1468 kobject_put(&glob
->kobj
);
1471 __free_page(glob
->dummy_read_page
);
1476 EXPORT_SYMBOL(ttm_bo_global_init
);
1479 int ttm_bo_device_release(struct ttm_bo_device
*bdev
)
1482 unsigned i
= TTM_NUM_MEM_TYPES
;
1483 struct ttm_mem_type_manager
*man
;
1484 struct ttm_bo_global
*glob
= bdev
->glob
;
1487 man
= &bdev
->man
[i
];
1488 if (man
->has_type
) {
1489 man
->use_type
= false;
1490 if ((i
!= TTM_PL_SYSTEM
) && ttm_bo_clean_mm(bdev
, i
)) {
1492 printk(KERN_ERR TTM_PFX
1493 "DRM memory manager type %d "
1494 "is not clean.\n", i
);
1496 man
->has_type
= false;
1500 mutex_lock(&glob
->device_list_mutex
);
1501 list_del(&bdev
->device_list
);
1502 mutex_unlock(&glob
->device_list_mutex
);
1504 cancel_delayed_work_sync(&bdev
->wq
);
1506 while (ttm_bo_delayed_delete(bdev
, true))
1509 spin_lock(&glob
->lru_lock
);
1510 if (list_empty(&bdev
->ddestroy
))
1511 TTM_DEBUG("Delayed destroy list was clean\n");
1513 if (list_empty(&bdev
->man
[0].lru
))
1514 TTM_DEBUG("Swap list was clean\n");
1515 spin_unlock(&glob
->lru_lock
);
1517 BUG_ON(!drm_mm_clean(&bdev
->addr_space_mm
));
1518 write_lock(&bdev
->vm_lock
);
1519 drm_mm_takedown(&bdev
->addr_space_mm
);
1520 write_unlock(&bdev
->vm_lock
);
1524 EXPORT_SYMBOL(ttm_bo_device_release
);
1526 int ttm_bo_device_init(struct ttm_bo_device
*bdev
,
1527 struct ttm_bo_global
*glob
,
1528 struct ttm_bo_driver
*driver
,
1529 uint64_t file_page_offset
,
1534 rwlock_init(&bdev
->vm_lock
);
1535 bdev
->driver
= driver
;
1537 memset(bdev
->man
, 0, sizeof(bdev
->man
));
1540 * Initialize the system memory buffer type.
1541 * Other types need to be driver / IOCTL initialized.
1543 ret
= ttm_bo_init_mm(bdev
, TTM_PL_SYSTEM
, 0);
1544 if (unlikely(ret
!= 0))
1547 bdev
->addr_space_rb
= RB_ROOT
;
1548 ret
= drm_mm_init(&bdev
->addr_space_mm
, file_page_offset
, 0x10000000);
1549 if (unlikely(ret
!= 0))
1550 goto out_no_addr_mm
;
1552 INIT_DELAYED_WORK(&bdev
->wq
, ttm_bo_delayed_workqueue
);
1553 bdev
->nice_mode
= true;
1554 INIT_LIST_HEAD(&bdev
->ddestroy
);
1555 bdev
->dev_mapping
= NULL
;
1557 bdev
->need_dma32
= need_dma32
;
1559 spin_lock_init(&bdev
->fence_lock
);
1560 mutex_lock(&glob
->device_list_mutex
);
1561 list_add_tail(&bdev
->device_list
, &glob
->device_list
);
1562 mutex_unlock(&glob
->device_list_mutex
);
1566 ttm_bo_clean_mm(bdev
, 0);
1570 EXPORT_SYMBOL(ttm_bo_device_init
);
1573 * buffer object vm functions.
1576 bool ttm_mem_reg_is_pci(struct ttm_bo_device
*bdev
, struct ttm_mem_reg
*mem
)
1578 struct ttm_mem_type_manager
*man
= &bdev
->man
[mem
->mem_type
];
1580 if (!(man
->flags
& TTM_MEMTYPE_FLAG_FIXED
)) {
1581 if (mem
->mem_type
== TTM_PL_SYSTEM
)
1584 if (man
->flags
& TTM_MEMTYPE_FLAG_CMA
)
1587 if (mem
->placement
& TTM_PL_FLAG_CACHED
)
1593 void ttm_bo_unmap_virtual_locked(struct ttm_buffer_object
*bo
)
1595 struct ttm_bo_device
*bdev
= bo
->bdev
;
1596 loff_t offset
= (loff_t
) bo
->addr_space_offset
;
1597 loff_t holelen
= ((loff_t
) bo
->mem
.num_pages
) << PAGE_SHIFT
;
1599 if (!bdev
->dev_mapping
)
1601 unmap_mapping_range(bdev
->dev_mapping
, offset
, holelen
, 1);
1602 ttm_mem_io_free_vm(bo
);
1605 void ttm_bo_unmap_virtual(struct ttm_buffer_object
*bo
)
1607 struct ttm_bo_device
*bdev
= bo
->bdev
;
1608 struct ttm_mem_type_manager
*man
= &bdev
->man
[bo
->mem
.mem_type
];
1610 ttm_mem_io_lock(man
, false);
1611 ttm_bo_unmap_virtual_locked(bo
);
1612 ttm_mem_io_unlock(man
);
1616 EXPORT_SYMBOL(ttm_bo_unmap_virtual
);
1618 static void ttm_bo_vm_insert_rb(struct ttm_buffer_object
*bo
)
1620 struct ttm_bo_device
*bdev
= bo
->bdev
;
1621 struct rb_node
**cur
= &bdev
->addr_space_rb
.rb_node
;
1622 struct rb_node
*parent
= NULL
;
1623 struct ttm_buffer_object
*cur_bo
;
1624 unsigned long offset
= bo
->vm_node
->start
;
1625 unsigned long cur_offset
;
1629 cur_bo
= rb_entry(parent
, struct ttm_buffer_object
, vm_rb
);
1630 cur_offset
= cur_bo
->vm_node
->start
;
1631 if (offset
< cur_offset
)
1632 cur
= &parent
->rb_left
;
1633 else if (offset
> cur_offset
)
1634 cur
= &parent
->rb_right
;
1639 rb_link_node(&bo
->vm_rb
, parent
, cur
);
1640 rb_insert_color(&bo
->vm_rb
, &bdev
->addr_space_rb
);
1646 * @bo: the buffer to allocate address space for
1648 * Allocate address space in the drm device so that applications
1649 * can mmap the buffer and access the contents. This only
1650 * applies to ttm_bo_type_device objects as others are not
1651 * placed in the drm device address space.
1654 static int ttm_bo_setup_vm(struct ttm_buffer_object
*bo
)
1656 struct ttm_bo_device
*bdev
= bo
->bdev
;
1660 ret
= drm_mm_pre_get(&bdev
->addr_space_mm
);
1661 if (unlikely(ret
!= 0))
1664 write_lock(&bdev
->vm_lock
);
1665 bo
->vm_node
= drm_mm_search_free(&bdev
->addr_space_mm
,
1666 bo
->mem
.num_pages
, 0, 0);
1668 if (unlikely(bo
->vm_node
== NULL
)) {
1673 bo
->vm_node
= drm_mm_get_block_atomic(bo
->vm_node
,
1674 bo
->mem
.num_pages
, 0);
1676 if (unlikely(bo
->vm_node
== NULL
)) {
1677 write_unlock(&bdev
->vm_lock
);
1681 ttm_bo_vm_insert_rb(bo
);
1682 write_unlock(&bdev
->vm_lock
);
1683 bo
->addr_space_offset
= ((uint64_t) bo
->vm_node
->start
) << PAGE_SHIFT
;
1687 write_unlock(&bdev
->vm_lock
);
1691 int ttm_bo_wait(struct ttm_buffer_object
*bo
,
1692 bool lazy
, bool interruptible
, bool no_wait
)
1694 struct ttm_bo_driver
*driver
= bo
->bdev
->driver
;
1695 struct ttm_bo_device
*bdev
= bo
->bdev
;
1700 if (likely(bo
->sync_obj
== NULL
))
1703 while (bo
->sync_obj
) {
1705 if (driver
->sync_obj_signaled(bo
->sync_obj
, bo
->sync_obj_arg
)) {
1706 void *tmp_obj
= bo
->sync_obj
;
1707 bo
->sync_obj
= NULL
;
1708 clear_bit(TTM_BO_PRIV_FLAG_MOVING
, &bo
->priv_flags
);
1709 spin_unlock(&bdev
->fence_lock
);
1710 driver
->sync_obj_unref(&tmp_obj
);
1711 spin_lock(&bdev
->fence_lock
);
1718 sync_obj
= driver
->sync_obj_ref(bo
->sync_obj
);
1719 sync_obj_arg
= bo
->sync_obj_arg
;
1720 spin_unlock(&bdev
->fence_lock
);
1721 ret
= driver
->sync_obj_wait(sync_obj
, sync_obj_arg
,
1722 lazy
, interruptible
);
1723 if (unlikely(ret
!= 0)) {
1724 driver
->sync_obj_unref(&sync_obj
);
1725 spin_lock(&bdev
->fence_lock
);
1728 spin_lock(&bdev
->fence_lock
);
1729 if (likely(bo
->sync_obj
== sync_obj
&&
1730 bo
->sync_obj_arg
== sync_obj_arg
)) {
1731 void *tmp_obj
= bo
->sync_obj
;
1732 bo
->sync_obj
= NULL
;
1733 clear_bit(TTM_BO_PRIV_FLAG_MOVING
,
1735 spin_unlock(&bdev
->fence_lock
);
1736 driver
->sync_obj_unref(&sync_obj
);
1737 driver
->sync_obj_unref(&tmp_obj
);
1738 spin_lock(&bdev
->fence_lock
);
1740 spin_unlock(&bdev
->fence_lock
);
1741 driver
->sync_obj_unref(&sync_obj
);
1742 spin_lock(&bdev
->fence_lock
);
1747 EXPORT_SYMBOL(ttm_bo_wait
);
1749 int ttm_bo_synccpu_write_grab(struct ttm_buffer_object
*bo
, bool no_wait
)
1751 struct ttm_bo_device
*bdev
= bo
->bdev
;
1755 * Using ttm_bo_reserve makes sure the lru lists are updated.
1758 ret
= ttm_bo_reserve(bo
, true, no_wait
, false, 0);
1759 if (unlikely(ret
!= 0))
1761 spin_lock(&bdev
->fence_lock
);
1762 ret
= ttm_bo_wait(bo
, false, true, no_wait
);
1763 spin_unlock(&bdev
->fence_lock
);
1764 if (likely(ret
== 0))
1765 atomic_inc(&bo
->cpu_writers
);
1766 ttm_bo_unreserve(bo
);
1769 EXPORT_SYMBOL(ttm_bo_synccpu_write_grab
);
1771 void ttm_bo_synccpu_write_release(struct ttm_buffer_object
*bo
)
1773 if (atomic_dec_and_test(&bo
->cpu_writers
))
1774 wake_up_all(&bo
->event_queue
);
1776 EXPORT_SYMBOL(ttm_bo_synccpu_write_release
);
1779 * A buffer object shrink method that tries to swap out the first
1780 * buffer object on the bo_global::swap_lru list.
1783 static int ttm_bo_swapout(struct ttm_mem_shrink
*shrink
)
1785 struct ttm_bo_global
*glob
=
1786 container_of(shrink
, struct ttm_bo_global
, shrink
);
1787 struct ttm_buffer_object
*bo
;
1790 uint32_t swap_placement
= (TTM_PL_FLAG_CACHED
| TTM_PL_FLAG_SYSTEM
);
1792 spin_lock(&glob
->lru_lock
);
1793 while (ret
== -EBUSY
) {
1794 if (unlikely(list_empty(&glob
->swap_lru
))) {
1795 spin_unlock(&glob
->lru_lock
);
1799 bo
= list_first_entry(&glob
->swap_lru
,
1800 struct ttm_buffer_object
, swap
);
1801 kref_get(&bo
->list_kref
);
1803 if (!list_empty(&bo
->ddestroy
)) {
1804 spin_unlock(&glob
->lru_lock
);
1805 (void) ttm_bo_cleanup_refs(bo
, false, false, false);
1806 kref_put(&bo
->list_kref
, ttm_bo_release_list
);
1811 * Reserve buffer. Since we unlock while sleeping, we need
1812 * to re-check that nobody removed us from the swap-list while
1816 ret
= ttm_bo_reserve_locked(bo
, false, true, false, 0);
1817 if (unlikely(ret
== -EBUSY
)) {
1818 spin_unlock(&glob
->lru_lock
);
1819 ttm_bo_wait_unreserved(bo
, false);
1820 kref_put(&bo
->list_kref
, ttm_bo_release_list
);
1821 spin_lock(&glob
->lru_lock
);
1826 put_count
= ttm_bo_del_from_lru(bo
);
1827 spin_unlock(&glob
->lru_lock
);
1829 ttm_bo_list_ref_sub(bo
, put_count
, true);
1832 * Wait for GPU, then move to system cached.
1835 spin_lock(&bo
->bdev
->fence_lock
);
1836 ret
= ttm_bo_wait(bo
, false, false, false);
1837 spin_unlock(&bo
->bdev
->fence_lock
);
1839 if (unlikely(ret
!= 0))
1842 if ((bo
->mem
.placement
& swap_placement
) != swap_placement
) {
1843 struct ttm_mem_reg evict_mem
;
1845 evict_mem
= bo
->mem
;
1846 evict_mem
.mm_node
= NULL
;
1847 evict_mem
.placement
= TTM_PL_FLAG_SYSTEM
| TTM_PL_FLAG_CACHED
;
1848 evict_mem
.mem_type
= TTM_PL_SYSTEM
;
1850 ret
= ttm_bo_handle_move_mem(bo
, &evict_mem
, true,
1851 false, false, false);
1852 if (unlikely(ret
!= 0))
1856 ttm_bo_unmap_virtual(bo
);
1859 * Swap out. Buffer will be swapped in again as soon as
1860 * anyone tries to access a ttm page.
1863 if (bo
->bdev
->driver
->swap_notify
)
1864 bo
->bdev
->driver
->swap_notify(bo
);
1866 ret
= ttm_tt_swapout(bo
->ttm
, bo
->persistent_swap_storage
);
1871 * Unreserve without putting on LRU to avoid swapping out an
1872 * already swapped buffer.
1875 atomic_set(&bo
->reserved
, 0);
1876 wake_up_all(&bo
->event_queue
);
1877 kref_put(&bo
->list_kref
, ttm_bo_release_list
);
1881 void ttm_bo_swapout_all(struct ttm_bo_device
*bdev
)
1883 while (ttm_bo_swapout(&bdev
->glob
->shrink
) == 0)
1886 EXPORT_SYMBOL(ttm_bo_swapout_all
);