Merge branch 'drm-intel-fixes' of git://people.freedesktop.org/~danvet/drm-intel...
[deliverable/linux.git] / drivers / gpu / drm / ttm / ttm_bo.c
CommitLineData
ba4e7d97
TH
1/**************************************************************************
2 *
3 * Copyright (c) 2006-2009 VMware, Inc., Palo Alto, CA., USA
4 * All Rights Reserved.
5 *
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:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
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.
25 *
26 **************************************************************************/
27/*
28 * Authors: Thomas Hellstrom <thellstrom-at-vmware-dot-com>
29 */
30
25d0479a
JP
31#define pr_fmt(fmt) "[TTM] " fmt
32
760285e7
DH
33#include <drm/ttm/ttm_module.h>
34#include <drm/ttm/ttm_bo_driver.h>
35#include <drm/ttm/ttm_placement.h>
ba4e7d97
TH
36#include <linux/jiffies.h>
37#include <linux/slab.h>
38#include <linux/sched.h>
39#include <linux/mm.h>
40#include <linux/file.h>
41#include <linux/module.h>
60063497 42#include <linux/atomic.h>
ba4e7d97
TH
43
44#define TTM_ASSERT_LOCKED(param)
45#define TTM_DEBUG(fmt, arg...)
46#define TTM_BO_HASH_ORDER 13
47
48static int ttm_bo_setup_vm(struct ttm_buffer_object *bo);
ba4e7d97 49static int ttm_bo_swapout(struct ttm_mem_shrink *shrink);
a987fcaa
TH
50static void ttm_bo_global_kobj_release(struct kobject *kobj);
51
52static struct attribute ttm_bo_count = {
53 .name = "bo_count",
54 .mode = S_IRUGO
55};
56
fb53f862
JG
57static inline int ttm_mem_type_from_flags(uint32_t flags, uint32_t *mem_type)
58{
59 int i;
60
61 for (i = 0; i <= TTM_PL_PRIV5; i++)
62 if (flags & (1 << i)) {
63 *mem_type = i;
64 return 0;
65 }
66 return -EINVAL;
67}
68
5012f506 69static void ttm_mem_type_debug(struct ttm_bo_device *bdev, int mem_type)
fb53f862 70{
5012f506
JG
71 struct ttm_mem_type_manager *man = &bdev->man[mem_type];
72
25d0479a
JP
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);
d961db75
BS
80 if (mem_type != TTM_PL_SYSTEM)
81 (*man->func->debug)(man, TTM_PFX);
fb53f862
JG
82}
83
84static void ttm_bo_mem_space_debug(struct ttm_buffer_object *bo,
85 struct ttm_placement *placement)
86{
fb53f862
JG
87 int i, ret, mem_type;
88
25d0479a
JP
89 pr_err("No space for %p (%lu pages, %luK, %luM)\n",
90 bo, bo->mem.num_pages, bo->mem.size >> 10,
91 bo->mem.size >> 20);
fb53f862
JG
92 for (i = 0; i < placement->num_placement; i++) {
93 ret = ttm_mem_type_from_flags(placement->placement[i],
94 &mem_type);
95 if (ret)
96 return;
25d0479a
JP
97 pr_err(" placement[%d]=0x%08X (%d)\n",
98 i, placement->placement[i], mem_type);
5012f506 99 ttm_mem_type_debug(bo->bdev, mem_type);
fb53f862
JG
100 }
101}
102
a987fcaa
TH
103static ssize_t ttm_bo_global_show(struct kobject *kobj,
104 struct attribute *attr,
105 char *buffer)
106{
107 struct ttm_bo_global *glob =
108 container_of(kobj, struct ttm_bo_global, kobj);
109
110 return snprintf(buffer, PAGE_SIZE, "%lu\n",
111 (unsigned long) atomic_read(&glob->bo_count));
112}
113
114static struct attribute *ttm_bo_global_attrs[] = {
115 &ttm_bo_count,
116 NULL
117};
118
52cf25d0 119static const struct sysfs_ops ttm_bo_global_ops = {
a987fcaa
TH
120 .show = &ttm_bo_global_show
121};
122
123static 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
127};
128
ba4e7d97
TH
129
130static inline uint32_t ttm_bo_type_flags(unsigned type)
131{
132 return 1 << (type);
133}
134
135static void ttm_bo_release_list(struct kref *list_kref)
136{
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;
57de4ba9 140 size_t acc_size = bo->acc_size;
ba4e7d97
TH
141
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));
149
150 if (bo->ttm)
151 ttm_tt_destroy(bo->ttm);
a987fcaa 152 atomic_dec(&bo->glob->bo_count);
ba4e7d97
TH
153 if (bo->destroy)
154 bo->destroy(bo);
155 else {
ba4e7d97
TH
156 kfree(bo);
157 }
57de4ba9 158 ttm_mem_global_free(bdev->glob->mem_glob, acc_size);
ba4e7d97
TH
159}
160
161int ttm_bo_wait_unreserved(struct ttm_buffer_object *bo, bool interruptible)
162{
ba4e7d97 163 if (interruptible) {
965d3807 164 return wait_event_interruptible(bo->event_queue,
a9dbfff1 165 !ttm_bo_is_reserved(bo));
ba4e7d97 166 } else {
a9dbfff1 167 wait_event(bo->event_queue, !ttm_bo_is_reserved(bo));
965d3807 168 return 0;
ba4e7d97 169 }
ba4e7d97 170}
d1ede145 171EXPORT_SYMBOL(ttm_bo_wait_unreserved);
ba4e7d97 172
d6ea8886 173void ttm_bo_add_to_lru(struct ttm_buffer_object *bo)
ba4e7d97
TH
174{
175 struct ttm_bo_device *bdev = bo->bdev;
176 struct ttm_mem_type_manager *man;
177
a9dbfff1 178 BUG_ON(!ttm_bo_is_reserved(bo));
ba4e7d97
TH
179
180 if (!(bo->mem.placement & TTM_PL_FLAG_NO_EVICT)) {
181
182 BUG_ON(!list_empty(&bo->lru));
183
184 man = &bdev->man[bo->mem.mem_type];
185 list_add_tail(&bo->lru, &man->lru);
186 kref_get(&bo->list_kref);
187
188 if (bo->ttm != NULL) {
a987fcaa 189 list_add_tail(&bo->swap, &bo->glob->swap_lru);
ba4e7d97
TH
190 kref_get(&bo->list_kref);
191 }
192 }
193}
194
d6ea8886 195int ttm_bo_del_from_lru(struct ttm_buffer_object *bo)
ba4e7d97
TH
196{
197 int put_count = 0;
198
199 if (!list_empty(&bo->swap)) {
200 list_del_init(&bo->swap);
201 ++put_count;
202 }
203 if (!list_empty(&bo->lru)) {
204 list_del_init(&bo->lru);
205 ++put_count;
206 }
207
208 /*
209 * TODO: Add a driver hook to delete from
210 * driver-specific LRU's here.
211 */
212
213 return put_count;
214}
215
216int ttm_bo_reserve_locked(struct ttm_buffer_object *bo,
217 bool interruptible,
218 bool no_wait, bool use_sequence, uint32_t sequence)
219{
a987fcaa 220 struct ttm_bo_global *glob = bo->glob;
ba4e7d97
TH
221 int ret;
222
6c1e963c 223 while (unlikely(atomic_read(&bo->reserved) != 0)) {
95ccb0f3
TH
224 /**
225 * Deadlock avoidance for multi-bo reserving.
226 */
96726fe5
TH
227 if (use_sequence && bo->seq_valid) {
228 /**
229 * We've already reserved this one.
230 */
231 if (unlikely(sequence == bo->val_seq))
232 return -EDEADLK;
233 /**
234 * Already reserved by a thread that will not back
235 * off for us. We need to back off.
236 */
237 if (unlikely(sequence - bo->val_seq < (1 << 31)))
238 return -EAGAIN;
ba4e7d97
TH
239 }
240
241 if (no_wait)
242 return -EBUSY;
243
a987fcaa 244 spin_unlock(&glob->lru_lock);
ba4e7d97 245 ret = ttm_bo_wait_unreserved(bo, interruptible);
a987fcaa 246 spin_lock(&glob->lru_lock);
ba4e7d97
TH
247
248 if (unlikely(ret))
249 return ret;
250 }
251
6c1e963c 252 atomic_set(&bo->reserved, 1);
ba4e7d97 253 if (use_sequence) {
95ccb0f3
TH
254 /**
255 * Wake up waiters that may need to recheck for deadlock,
256 * if we decreased the sequence number.
257 */
258 if (unlikely((bo->val_seq - sequence < (1 << 31))
259 || !bo->seq_valid))
260 wake_up_all(&bo->event_queue);
261
ba4e7d97
TH
262 bo->val_seq = sequence;
263 bo->seq_valid = true;
264 } else {
265 bo->seq_valid = false;
266 }
267
268 return 0;
269}
270EXPORT_SYMBOL(ttm_bo_reserve);
271
272static void ttm_bo_ref_bug(struct kref *list_kref)
273{
274 BUG();
275}
276
d6ea8886
DA
277void ttm_bo_list_ref_sub(struct ttm_buffer_object *bo, int count,
278 bool never_free)
279{
2357cbe5
TH
280 kref_sub(&bo->list_kref, count,
281 (never_free) ? ttm_bo_ref_bug : ttm_bo_release_list);
d6ea8886
DA
282}
283
ba4e7d97
TH
284int ttm_bo_reserve(struct ttm_buffer_object *bo,
285 bool interruptible,
286 bool no_wait, bool use_sequence, uint32_t sequence)
287{
a987fcaa 288 struct ttm_bo_global *glob = bo->glob;
ba4e7d97
TH
289 int put_count = 0;
290 int ret;
291
a987fcaa 292 spin_lock(&glob->lru_lock);
ba4e7d97
TH
293 ret = ttm_bo_reserve_locked(bo, interruptible, no_wait, use_sequence,
294 sequence);
295 if (likely(ret == 0))
296 put_count = ttm_bo_del_from_lru(bo);
a987fcaa 297 spin_unlock(&glob->lru_lock);
ba4e7d97 298
d6ea8886 299 ttm_bo_list_ref_sub(bo, put_count, true);
ba4e7d97
TH
300
301 return ret;
302}
303
95762c2b
TH
304void ttm_bo_unreserve_locked(struct ttm_buffer_object *bo)
305{
306 ttm_bo_add_to_lru(bo);
307 atomic_set(&bo->reserved, 0);
308 wake_up_all(&bo->event_queue);
309}
310
ba4e7d97
TH
311void ttm_bo_unreserve(struct ttm_buffer_object *bo)
312{
a987fcaa 313 struct ttm_bo_global *glob = bo->glob;
ba4e7d97 314
a987fcaa 315 spin_lock(&glob->lru_lock);
95762c2b 316 ttm_bo_unreserve_locked(bo);
a987fcaa 317 spin_unlock(&glob->lru_lock);
ba4e7d97
TH
318}
319EXPORT_SYMBOL(ttm_bo_unreserve);
320
321/*
322 * Call bo->mutex locked.
323 */
ba4e7d97
TH
324static int ttm_bo_add_ttm(struct ttm_buffer_object *bo, bool zero_alloc)
325{
326 struct ttm_bo_device *bdev = bo->bdev;
a987fcaa 327 struct ttm_bo_global *glob = bo->glob;
ba4e7d97
TH
328 int ret = 0;
329 uint32_t page_flags = 0;
330
331 TTM_ASSERT_LOCKED(&bo->mutex);
332 bo->ttm = NULL;
333
ad49f501
DA
334 if (bdev->need_dma32)
335 page_flags |= TTM_PAGE_FLAG_DMA32;
336
ba4e7d97
TH
337 switch (bo->type) {
338 case ttm_bo_type_device:
339 if (zero_alloc)
340 page_flags |= TTM_PAGE_FLAG_ZERO_ALLOC;
341 case ttm_bo_type_kernel:
649bf3ca
JG
342 bo->ttm = bdev->driver->ttm_tt_create(bdev, bo->num_pages << PAGE_SHIFT,
343 page_flags, glob->dummy_read_page);
ba4e7d97
TH
344 if (unlikely(bo->ttm == NULL))
345 ret = -ENOMEM;
346 break;
129b78bf
DA
347 case ttm_bo_type_sg:
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)) {
352 ret = -ENOMEM;
353 break;
354 }
355 bo->ttm->sg = bo->sg;
356 break;
ba4e7d97 357 default:
25d0479a 358 pr_err("Illegal buffer object type\n");
ba4e7d97
TH
359 ret = -EINVAL;
360 break;
361 }
362
363 return ret;
364}
365
366static int ttm_bo_handle_move_mem(struct ttm_buffer_object *bo,
367 struct ttm_mem_reg *mem,
9d87fa21 368 bool evict, bool interruptible,
97a875cb 369 bool no_wait_gpu)
ba4e7d97
TH
370{
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];
376 int ret = 0;
377
378 if (old_is_pci || new_is_pci ||
eba67093
TH
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))
382 goto out_err;
383 ttm_bo_unmap_virtual_locked(bo);
384 ttm_mem_io_unlock(old_man);
385 }
ba4e7d97
TH
386
387 /*
388 * Create and bind a ttm if required.
389 */
390
8d3bb236
BS
391 if (!(new_man->flags & TTM_MEMTYPE_FLAG_FIXED)) {
392 if (bo->ttm == NULL) {
ff02b13f
BS
393 bool zero = !(old_man->flags & TTM_MEMTYPE_FLAG_FIXED);
394 ret = ttm_bo_add_ttm(bo, zero);
8d3bb236
BS
395 if (ret)
396 goto out_err;
397 }
ba4e7d97
TH
398
399 ret = ttm_tt_set_placement_caching(bo->ttm, mem->placement);
400 if (ret)
87ef9209 401 goto out_err;
ba4e7d97
TH
402
403 if (mem->mem_type != TTM_PL_SYSTEM) {
404 ret = ttm_tt_bind(bo->ttm, mem);
405 if (ret)
406 goto out_err;
407 }
408
409 if (bo->mem.mem_type == TTM_PL_SYSTEM) {
82ef594e
BS
410 if (bdev->driver->move_notify)
411 bdev->driver->move_notify(bo, mem);
ca262a99 412 bo->mem = *mem;
ba4e7d97 413 mem->mm_node = NULL;
ba4e7d97
TH
414 goto moved;
415 }
ba4e7d97
TH
416 }
417
9f1feed2
BS
418 if (bdev->driver->move_notify)
419 bdev->driver->move_notify(bo, mem);
420
ba4e7d97
TH
421 if (!(old_man->flags & TTM_MEMTYPE_FLAG_FIXED) &&
422 !(new_man->flags & TTM_MEMTYPE_FLAG_FIXED))
97a875cb 423 ret = ttm_bo_move_ttm(bo, evict, no_wait_gpu, mem);
ba4e7d97
TH
424 else if (bdev->driver->move)
425 ret = bdev->driver->move(bo, evict, interruptible,
97a875cb 426 no_wait_gpu, mem);
ba4e7d97 427 else
97a875cb 428 ret = ttm_bo_move_memcpy(bo, evict, no_wait_gpu, mem);
ba4e7d97 429
9f1feed2
BS
430 if (ret) {
431 if (bdev->driver->move_notify) {
432 struct ttm_mem_reg tmp_mem = *mem;
433 *mem = bo->mem;
434 bo->mem = tmp_mem;
435 bdev->driver->move_notify(bo, mem);
436 bo->mem = *mem;
437 }
ba4e7d97 438
9f1feed2
BS
439 goto out_err;
440 }
dc97b340 441
ba4e7d97
TH
442moved:
443 if (bo->evicted) {
444 ret = bdev->driver->invalidate_caches(bdev, bo->mem.placement);
445 if (ret)
25d0479a 446 pr_err("Can not flush read caches\n");
ba4e7d97
TH
447 bo->evicted = false;
448 }
449
450 if (bo->mem.mm_node) {
d961db75 451 bo->offset = (bo->mem.start << PAGE_SHIFT) +
ba4e7d97
TH
452 bdev->man[bo->mem.mem_type].gpu_offset;
453 bo->cur_placement = bo->mem.placement;
354fb52c
TH
454 } else
455 bo->offset = 0;
ba4e7d97
TH
456
457 return 0;
458
459out_err:
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);
464 bo->ttm = NULL;
465 }
466
467 return ret;
468}
469
1df6a2eb 470/**
40d857bb 471 * Call bo::reserved.
1df6a2eb 472 * Will release GPU memory type usage on destruction.
40d857bb
TH
473 * This is the place to put in driver specific hooks to release
474 * driver private resources.
475 * Will release the bo::reserved lock.
1df6a2eb
TH
476 */
477
478static void ttm_bo_cleanup_memtype_use(struct ttm_buffer_object *bo)
479{
dc97b340
JG
480 if (bo->bdev->driver->move_notify)
481 bo->bdev->driver->move_notify(bo, NULL);
482
1df6a2eb 483 if (bo->ttm) {
1df6a2eb
TH
484 ttm_tt_unbind(bo->ttm);
485 ttm_tt_destroy(bo->ttm);
486 bo->ttm = NULL;
1df6a2eb 487 }
40d857bb 488 ttm_bo_mem_put(bo, &bo->mem);
1df6a2eb
TH
489
490 atomic_set(&bo->reserved, 0);
85b144f8 491 wake_up_all(&bo->event_queue);
06fba6d4
TH
492
493 /*
85b144f8
ML
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.
497 *
498 * This function only needs protection against the final kref_put.
06fba6d4 499 */
85b144f8 500 smp_mb__before_atomic_dec();
1df6a2eb
TH
501}
502
e1efc9b6 503static void ttm_bo_cleanup_refs_or_queue(struct ttm_buffer_object *bo)
ba4e7d97
TH
504{
505 struct ttm_bo_device *bdev = bo->bdev;
a987fcaa 506 struct ttm_bo_global *glob = bo->glob;
4154f051 507 struct ttm_bo_driver *driver = bdev->driver;
aa123268 508 void *sync_obj = NULL;
e1efc9b6 509 int put_count;
ba4e7d97
TH
510 int ret;
511
4154f051
ML
512 spin_lock(&glob->lru_lock);
513 ret = ttm_bo_reserve_locked(bo, false, true, false, 0);
514
702adba2 515 spin_lock(&bdev->fence_lock);
1717c0e2 516 (void) ttm_bo_wait(bo, false, false, true);
4154f051 517 if (!ret && !bo->sync_obj) {
702adba2 518 spin_unlock(&bdev->fence_lock);
1df6a2eb 519 put_count = ttm_bo_del_from_lru(bo);
ba4e7d97 520
40d857bb 521 spin_unlock(&glob->lru_lock);
1df6a2eb 522 ttm_bo_cleanup_memtype_use(bo);
ba4e7d97 523
d6ea8886 524 ttm_bo_list_ref_sub(bo, put_count, true);
ba4e7d97 525
e1efc9b6 526 return;
ba4e7d97 527 }
aa123268
TH
528 if (bo->sync_obj)
529 sync_obj = driver->sync_obj_ref(bo->sync_obj);
4154f051
ML
530 spin_unlock(&bdev->fence_lock);
531
532 if (!ret) {
533 atomic_set(&bo->reserved, 0);
534 wake_up_all(&bo->event_queue);
535 }
e1efc9b6
TH
536
537 kref_get(&bo->list_kref);
538 list_add_tail(&bo->ddestroy, &bdev->ddestroy);
539 spin_unlock(&glob->lru_lock);
e1efc9b6 540
aa123268 541 if (sync_obj) {
dedfdffd 542 driver->sync_obj_flush(sync_obj);
aa123268
TH
543 driver->sync_obj_unref(&sync_obj);
544 }
e1efc9b6
TH
545 schedule_delayed_work(&bdev->wq,
546 ((HZ / 100) < 1) ? 1 : HZ / 100);
547}
548
549/**
85b144f8 550 * function ttm_bo_cleanup_refs_and_unlock
e1efc9b6
TH
551 * If bo idle, remove from delayed- and lru lists, and unref.
552 * If not idle, do nothing.
553 *
85b144f8
ML
554 * Must be called with lru_lock and reservation held, this function
555 * will drop both before returning.
556 *
e1efc9b6 557 * @interruptible Any sleeps should occur interruptibly.
e1efc9b6
TH
558 * @no_wait_gpu Never wait for gpu. Return -EBUSY instead.
559 */
560
85b144f8
ML
561static int ttm_bo_cleanup_refs_and_unlock(struct ttm_buffer_object *bo,
562 bool interruptible,
563 bool no_wait_gpu)
e1efc9b6 564{
702adba2 565 struct ttm_bo_device *bdev = bo->bdev;
85b144f8 566 struct ttm_bo_driver *driver = bdev->driver;
e1efc9b6
TH
567 struct ttm_bo_global *glob = bo->glob;
568 int put_count;
85b144f8 569 int ret;
e1efc9b6 570
702adba2 571 spin_lock(&bdev->fence_lock);
85b144f8 572 ret = ttm_bo_wait(bo, false, false, true);
e1efc9b6 573
85b144f8
ML
574 if (ret && !no_wait_gpu) {
575 void *sync_obj;
e1efc9b6 576
85b144f8
ML
577 /*
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.
581 */
582 sync_obj = driver->sync_obj_ref(&bo->sync_obj);
583 spin_unlock(&bdev->fence_lock);
26cc40a8 584
85b144f8
ML
585 atomic_set(&bo->reserved, 0);
586 wake_up_all(&bo->event_queue);
26cc40a8 587 spin_unlock(&glob->lru_lock);
26cc40a8 588
85b144f8
ML
589 ret = driver->sync_obj_wait(sync_obj, false, interruptible);
590 driver->sync_obj_unref(&sync_obj);
591 if (ret)
b8e902f2
TH
592 return ret;
593
85b144f8
ML
594 /*
595 * remove sync_obj with ttm_bo_wait, the wait should be
596 * finished, and no new wait object should have been added.
597 */
598 spin_lock(&bdev->fence_lock);
599 ret = ttm_bo_wait(bo, false, false, true);
600 WARN_ON(ret);
601 spin_unlock(&bdev->fence_lock);
602 if (ret)
603 return ret;
ba4e7d97 604
85b144f8
ML
605 spin_lock(&glob->lru_lock);
606 ret = ttm_bo_reserve_locked(bo, false, true, false, 0);
b8e902f2 607
85b144f8
ML
608 /*
609 * We raced, and lost, someone else holds the reservation now,
610 * and is probably busy in ttm_bo_cleanup_memtype_use.
611 *
612 * Even if it's not the case, because we finished waiting any
613 * delayed destruction would succeed, so just return success
614 * here.
615 */
616 if (ret) {
617 spin_unlock(&glob->lru_lock);
618 return 0;
619 }
620 } else
621 spin_unlock(&bdev->fence_lock);
ba4e7d97 622
85b144f8 623 if (ret || unlikely(list_empty(&bo->ddestroy))) {
e1efc9b6
TH
624 atomic_set(&bo->reserved, 0);
625 wake_up_all(&bo->event_queue);
a987fcaa 626 spin_unlock(&glob->lru_lock);
85b144f8 627 return ret;
ba4e7d97
TH
628 }
629
e1efc9b6
TH
630 put_count = ttm_bo_del_from_lru(bo);
631 list_del_init(&bo->ddestroy);
632 ++put_count;
633
634 spin_unlock(&glob->lru_lock);
635 ttm_bo_cleanup_memtype_use(bo);
636
d6ea8886 637 ttm_bo_list_ref_sub(bo, put_count, true);
e1efc9b6
TH
638
639 return 0;
ba4e7d97
TH
640}
641
642/**
643 * Traverse the delayed list, and call ttm_bo_cleanup_refs on all
644 * encountered buffers.
645 */
646
647static int ttm_bo_delayed_delete(struct ttm_bo_device *bdev, bool remove_all)
648{
a987fcaa 649 struct ttm_bo_global *glob = bdev->glob;
1a961ce0
LB
650 struct ttm_buffer_object *entry = NULL;
651 int ret = 0;
ba4e7d97 652
a987fcaa 653 spin_lock(&glob->lru_lock);
1a961ce0
LB
654 if (list_empty(&bdev->ddestroy))
655 goto out_unlock;
656
657 entry = list_first_entry(&bdev->ddestroy,
658 struct ttm_buffer_object, ddestroy);
659 kref_get(&entry->list_kref);
660
661 for (;;) {
662 struct ttm_buffer_object *nentry = NULL;
663
664 if (entry->ddestroy.next != &bdev->ddestroy) {
665 nentry = list_first_entry(&entry->ddestroy,
666 struct ttm_buffer_object, ddestroy);
ba4e7d97
TH
667 kref_get(&nentry->list_kref);
668 }
ba4e7d97 669
85b144f8
ML
670 ret = ttm_bo_reserve_locked(entry, false, !remove_all, false, 0);
671 if (!ret)
672 ret = ttm_bo_cleanup_refs_and_unlock(entry, false,
673 !remove_all);
674 else
675 spin_unlock(&glob->lru_lock);
676
ba4e7d97 677 kref_put(&entry->list_kref, ttm_bo_release_list);
1a961ce0
LB
678 entry = nentry;
679
680 if (ret || !entry)
681 goto out;
ba4e7d97 682
a987fcaa 683 spin_lock(&glob->lru_lock);
1a961ce0 684 if (list_empty(&entry->ddestroy))
ba4e7d97
TH
685 break;
686 }
ba4e7d97 687
1a961ce0
LB
688out_unlock:
689 spin_unlock(&glob->lru_lock);
690out:
691 if (entry)
692 kref_put(&entry->list_kref, ttm_bo_release_list);
ba4e7d97
TH
693 return ret;
694}
695
696static void ttm_bo_delayed_workqueue(struct work_struct *work)
697{
698 struct ttm_bo_device *bdev =
699 container_of(work, struct ttm_bo_device, wq.work);
700
701 if (ttm_bo_delayed_delete(bdev, false)) {
702 schedule_delayed_work(&bdev->wq,
703 ((HZ / 100) < 1) ? 1 : HZ / 100);
704 }
705}
706
707static void ttm_bo_release(struct kref *kref)
708{
709 struct ttm_buffer_object *bo =
710 container_of(kref, struct ttm_buffer_object, kref);
711 struct ttm_bo_device *bdev = bo->bdev;
eba67093 712 struct ttm_mem_type_manager *man = &bdev->man[bo->mem.mem_type];
ba4e7d97 713
82fe50bc 714 write_lock(&bdev->vm_lock);
ba4e7d97
TH
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);
718 bo->vm_node = NULL;
719 }
720 write_unlock(&bdev->vm_lock);
eba67093
TH
721 ttm_mem_io_lock(man, false);
722 ttm_mem_io_free_vm(bo);
723 ttm_mem_io_unlock(man);
e1efc9b6 724 ttm_bo_cleanup_refs_or_queue(bo);
ba4e7d97 725 kref_put(&bo->list_kref, ttm_bo_release_list);
ba4e7d97
TH
726}
727
728void ttm_bo_unref(struct ttm_buffer_object **p_bo)
729{
730 struct ttm_buffer_object *bo = *p_bo;
ba4e7d97
TH
731
732 *p_bo = NULL;
ba4e7d97 733 kref_put(&bo->kref, ttm_bo_release);
ba4e7d97
TH
734}
735EXPORT_SYMBOL(ttm_bo_unref);
736
7c5ee536
MG
737int ttm_bo_lock_delayed_workqueue(struct ttm_bo_device *bdev)
738{
739 return cancel_delayed_work_sync(&bdev->wq);
740}
741EXPORT_SYMBOL(ttm_bo_lock_delayed_workqueue);
742
743void ttm_bo_unlock_delayed_workqueue(struct ttm_bo_device *bdev, int resched)
744{
745 if (resched)
746 schedule_delayed_work(&bdev->wq,
747 ((HZ / 100) < 1) ? 1 : HZ / 100);
748}
749EXPORT_SYMBOL(ttm_bo_unlock_delayed_workqueue);
750
ca262a99 751static int ttm_bo_evict(struct ttm_buffer_object *bo, bool interruptible,
97a875cb 752 bool no_wait_gpu)
ba4e7d97 753{
ba4e7d97
TH
754 struct ttm_bo_device *bdev = bo->bdev;
755 struct ttm_mem_reg evict_mem;
ca262a99
JG
756 struct ttm_placement placement;
757 int ret = 0;
ba4e7d97 758
702adba2 759 spin_lock(&bdev->fence_lock);
1717c0e2 760 ret = ttm_bo_wait(bo, false, interruptible, no_wait_gpu);
702adba2 761 spin_unlock(&bdev->fence_lock);
ba4e7d97 762
78ecf091 763 if (unlikely(ret != 0)) {
98ffc415 764 if (ret != -ERESTARTSYS) {
25d0479a 765 pr_err("Failed to expire sync object before buffer eviction\n");
78ecf091 766 }
ba4e7d97
TH
767 goto out;
768 }
769
a9dbfff1 770 BUG_ON(!ttm_bo_is_reserved(bo));
ba4e7d97
TH
771
772 evict_mem = bo->mem;
773 evict_mem.mm_node = NULL;
eba67093
TH
774 evict_mem.bus.io_reserved_vm = false;
775 evict_mem.bus.io_reserved_count = 0;
ba4e7d97 776
7cb7d1d7
JG
777 placement.fpfn = 0;
778 placement.lpfn = 0;
779 placement.num_placement = 0;
780 placement.num_busy_placement = 0;
ca262a99
JG
781 bdev->driver->evict_flags(bo, &placement);
782 ret = ttm_bo_mem_space(bo, &placement, &evict_mem, interruptible,
97a875cb 783 no_wait_gpu);
ba4e7d97 784 if (ret) {
fb53f862 785 if (ret != -ERESTARTSYS) {
25d0479a
JP
786 pr_err("Failed to find memory space for buffer 0x%p eviction\n",
787 bo);
fb53f862
JG
788 ttm_bo_mem_space_debug(bo, &placement);
789 }
ba4e7d97
TH
790 goto out;
791 }
792
793 ret = ttm_bo_handle_move_mem(bo, &evict_mem, true, interruptible,
97a875cb 794 no_wait_gpu);
ba4e7d97 795 if (ret) {
98ffc415 796 if (ret != -ERESTARTSYS)
25d0479a 797 pr_err("Buffer eviction failed\n");
42311ff9 798 ttm_bo_mem_put(bo, &evict_mem);
ba4e7d97
TH
799 goto out;
800 }
ca262a99
JG
801 bo->evicted = true;
802out:
803 return ret;
804}
805
806static int ttm_mem_evict_first(struct ttm_bo_device *bdev,
807 uint32_t mem_type,
97a875cb 808 bool interruptible,
9d87fa21 809 bool no_wait_gpu)
ca262a99
JG
810{
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;
e7ab2019 814 int ret = -EBUSY, put_count;
ba4e7d97 815
a987fcaa 816 spin_lock(&glob->lru_lock);
e7ab2019
ML
817 list_for_each_entry(bo, &man->lru, lru) {
818 ret = ttm_bo_reserve_locked(bo, false, true, false, 0);
819 if (!ret)
820 break;
821 }
822
823 if (ret) {
9c51ba1d 824 spin_unlock(&glob->lru_lock);
e7ab2019 825 return ret;
9c51ba1d
TH
826 }
827
ca262a99 828 kref_get(&bo->list_kref);
9c51ba1d 829
e1efc9b6 830 if (!list_empty(&bo->ddestroy)) {
e7ab2019
ML
831 ret = ttm_bo_cleanup_refs_and_unlock(bo, interruptible,
832 no_wait_gpu);
e1efc9b6 833 kref_put(&bo->list_kref, ttm_bo_release_list);
b8e902f2 834 return ret;
e1efc9b6
TH
835 }
836
9c51ba1d 837 put_count = ttm_bo_del_from_lru(bo);
a987fcaa 838 spin_unlock(&glob->lru_lock);
9c51ba1d
TH
839
840 BUG_ON(ret != 0);
841
d6ea8886 842 ttm_bo_list_ref_sub(bo, put_count, true);
9c51ba1d 843
97a875cb 844 ret = ttm_bo_evict(bo, interruptible, no_wait_gpu);
ca262a99 845 ttm_bo_unreserve(bo);
9c51ba1d 846
ca262a99 847 kref_put(&bo->list_kref, ttm_bo_release_list);
ba4e7d97
TH
848 return ret;
849}
850
42311ff9
BS
851void ttm_bo_mem_put(struct ttm_buffer_object *bo, struct ttm_mem_reg *mem)
852{
d961db75 853 struct ttm_mem_type_manager *man = &bo->bdev->man[mem->mem_type];
42311ff9 854
d961db75
BS
855 if (mem->mm_node)
856 (*man->func->put_node)(man, mem);
42311ff9
BS
857}
858EXPORT_SYMBOL(ttm_bo_mem_put);
859
ba4e7d97
TH
860/**
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.
863 */
ca262a99
JG
864static int ttm_bo_mem_force_space(struct ttm_buffer_object *bo,
865 uint32_t mem_type,
866 struct ttm_placement *placement,
867 struct ttm_mem_reg *mem,
9d87fa21 868 bool interruptible,
9d87fa21 869 bool no_wait_gpu)
ba4e7d97 870{
ca262a99 871 struct ttm_bo_device *bdev = bo->bdev;
ba4e7d97 872 struct ttm_mem_type_manager *man = &bdev->man[mem_type];
ba4e7d97
TH
873 int ret;
874
ba4e7d97 875 do {
d961db75 876 ret = (*man->func->get_node)(man, bo, placement, mem);
ca262a99
JG
877 if (unlikely(ret != 0))
878 return ret;
d961db75 879 if (mem->mm_node)
ba4e7d97 880 break;
97a875cb
ML
881 ret = ttm_mem_evict_first(bdev, mem_type,
882 interruptible, no_wait_gpu);
ba4e7d97
TH
883 if (unlikely(ret != 0))
884 return ret;
ba4e7d97 885 } while (1);
d961db75 886 if (mem->mm_node == NULL)
ba4e7d97 887 return -ENOMEM;
ba4e7d97
TH
888 mem->mem_type = mem_type;
889 return 0;
890}
891
ae3e8122
TH
892static uint32_t ttm_bo_select_caching(struct ttm_mem_type_manager *man,
893 uint32_t cur_placement,
894 uint32_t proposed_placement)
895{
896 uint32_t caching = proposed_placement & TTM_PL_MASK_CACHING;
897 uint32_t result = proposed_placement & ~TTM_PL_MASK_CACHING;
898
899 /**
900 * Keep current caching if possible.
901 */
902
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;
913
914 return result;
915}
916
ba4e7d97 917static bool ttm_bo_mt_compatible(struct ttm_mem_type_manager *man,
ba4e7d97 918 uint32_t mem_type,
ae3e8122
TH
919 uint32_t proposed_placement,
920 uint32_t *masked_placement)
ba4e7d97
TH
921{
922 uint32_t cur_flags = ttm_bo_type_flags(mem_type);
923
ae3e8122 924 if ((cur_flags & proposed_placement & TTM_PL_MASK_MEM) == 0)
ba4e7d97
TH
925 return false;
926
ae3e8122 927 if ((proposed_placement & man->available_caching) == 0)
ba4e7d97 928 return false;
ba4e7d97 929
ae3e8122
TH
930 cur_flags |= (proposed_placement & man->available_caching);
931
932 *masked_placement = cur_flags;
ba4e7d97
TH
933 return true;
934}
935
936/**
937 * Creates space for memory region @mem according to its type.
938 *
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
942 * space.
943 */
944int ttm_bo_mem_space(struct ttm_buffer_object *bo,
ca262a99
JG
945 struct ttm_placement *placement,
946 struct ttm_mem_reg *mem,
97a875cb 947 bool interruptible,
9d87fa21 948 bool no_wait_gpu)
ba4e7d97
TH
949{
950 struct ttm_bo_device *bdev = bo->bdev;
951 struct ttm_mem_type_manager *man;
ba4e7d97
TH
952 uint32_t mem_type = TTM_PL_SYSTEM;
953 uint32_t cur_flags = 0;
954 bool type_found = false;
955 bool type_ok = false;
98ffc415 956 bool has_erestartsys = false;
ca262a99 957 int i, ret;
ba4e7d97
TH
958
959 mem->mm_node = NULL;
b6637526 960 for (i = 0; i < placement->num_placement; ++i) {
ca262a99
JG
961 ret = ttm_mem_type_from_flags(placement->placement[i],
962 &mem_type);
963 if (ret)
964 return ret;
ba4e7d97
TH
965 man = &bdev->man[mem_type];
966
967 type_ok = ttm_bo_mt_compatible(man,
ca262a99
JG
968 mem_type,
969 placement->placement[i],
970 &cur_flags);
ba4e7d97
TH
971
972 if (!type_ok)
973 continue;
974
ae3e8122
TH
975 cur_flags = ttm_bo_select_caching(man, bo->mem.placement,
976 cur_flags);
ca262a99
JG
977 /*
978 * Use the access and other non-mapping-related flag bits from
979 * the memory placement flags to the current flags
980 */
981 ttm_flag_masked(&cur_flags, placement->placement[i],
982 ~TTM_PL_MASK_MEMTYPE);
ae3e8122 983
ba4e7d97
TH
984 if (mem_type == TTM_PL_SYSTEM)
985 break;
986
987 if (man->has_type && man->use_type) {
988 type_found = true;
d961db75 989 ret = (*man->func->get_node)(man, bo, placement, mem);
ca262a99
JG
990 if (unlikely(ret))
991 return ret;
ba4e7d97 992 }
d961db75 993 if (mem->mm_node)
ba4e7d97
TH
994 break;
995 }
996
d961db75 997 if ((type_ok && (mem_type == TTM_PL_SYSTEM)) || mem->mm_node) {
ba4e7d97
TH
998 mem->mem_type = mem_type;
999 mem->placement = cur_flags;
1000 return 0;
1001 }
1002
1003 if (!type_found)
1004 return -EINVAL;
1005
b6637526
DA
1006 for (i = 0; i < placement->num_busy_placement; ++i) {
1007 ret = ttm_mem_type_from_flags(placement->busy_placement[i],
ca262a99
JG
1008 &mem_type);
1009 if (ret)
1010 return ret;
ba4e7d97 1011 man = &bdev->man[mem_type];
ba4e7d97
TH
1012 if (!man->has_type)
1013 continue;
ba4e7d97 1014 if (!ttm_bo_mt_compatible(man,
ca262a99 1015 mem_type,
b6637526 1016 placement->busy_placement[i],
ca262a99 1017 &cur_flags))
ba4e7d97
TH
1018 continue;
1019
ae3e8122
TH
1020 cur_flags = ttm_bo_select_caching(man, bo->mem.placement,
1021 cur_flags);
ca262a99
JG
1022 /*
1023 * Use the access and other non-mapping-related flag bits from
1024 * the memory placement flags to the current flags
1025 */
b6637526 1026 ttm_flag_masked(&cur_flags, placement->busy_placement[i],
ca262a99 1027 ~TTM_PL_MASK_MEMTYPE);
ae3e8122 1028
0eaddb28
TH
1029
1030 if (mem_type == TTM_PL_SYSTEM) {
1031 mem->mem_type = mem_type;
1032 mem->placement = cur_flags;
1033 mem->mm_node = NULL;
1034 return 0;
1035 }
1036
ca262a99 1037 ret = ttm_bo_mem_force_space(bo, mem_type, placement, mem,
97a875cb 1038 interruptible, no_wait_gpu);
ba4e7d97
TH
1039 if (ret == 0 && mem->mm_node) {
1040 mem->placement = cur_flags;
1041 return 0;
1042 }
98ffc415
TH
1043 if (ret == -ERESTARTSYS)
1044 has_erestartsys = true;
ba4e7d97 1045 }
98ffc415 1046 ret = (has_erestartsys) ? -ERESTARTSYS : -ENOMEM;
ba4e7d97
TH
1047 return ret;
1048}
1049EXPORT_SYMBOL(ttm_bo_mem_space);
1050
ba4e7d97 1051int ttm_bo_move_buffer(struct ttm_buffer_object *bo,
ca262a99 1052 struct ttm_placement *placement,
97a875cb 1053 bool interruptible,
9d87fa21 1054 bool no_wait_gpu)
ba4e7d97 1055{
ba4e7d97
TH
1056 int ret = 0;
1057 struct ttm_mem_reg mem;
702adba2 1058 struct ttm_bo_device *bdev = bo->bdev;
ba4e7d97 1059
a9dbfff1 1060 BUG_ON(!ttm_bo_is_reserved(bo));
ba4e7d97
TH
1061
1062 /*
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.
1066 */
702adba2 1067 spin_lock(&bdev->fence_lock);
1717c0e2 1068 ret = ttm_bo_wait(bo, false, interruptible, no_wait_gpu);
702adba2 1069 spin_unlock(&bdev->fence_lock);
ba4e7d97
TH
1070 if (ret)
1071 return ret;
ba4e7d97
TH
1072 mem.num_pages = bo->num_pages;
1073 mem.size = mem.num_pages << PAGE_SHIFT;
1074 mem.page_alignment = bo->mem.page_alignment;
eba67093
TH
1075 mem.bus.io_reserved_vm = false;
1076 mem.bus.io_reserved_count = 0;
ba4e7d97
TH
1077 /*
1078 * Determine where to move the buffer.
1079 */
97a875cb
ML
1080 ret = ttm_bo_mem_space(bo, placement, &mem,
1081 interruptible, no_wait_gpu);
ba4e7d97
TH
1082 if (ret)
1083 goto out_unlock;
97a875cb
ML
1084 ret = ttm_bo_handle_move_mem(bo, &mem, false,
1085 interruptible, no_wait_gpu);
ba4e7d97 1086out_unlock:
d961db75
BS
1087 if (ret && mem.mm_node)
1088 ttm_bo_mem_put(bo, &mem);
ba4e7d97
TH
1089 return ret;
1090}
1091
ca262a99 1092static int ttm_bo_mem_compat(struct ttm_placement *placement,
ba4e7d97
TH
1093 struct ttm_mem_reg *mem)
1094{
ca262a99 1095 int i;
e22238ea 1096
d961db75
BS
1097 if (mem->mm_node && placement->lpfn != 0 &&
1098 (mem->start < placement->fpfn ||
1099 mem->start + mem->num_pages > placement->lpfn))
e22238ea 1100 return -1;
ca262a99
JG
1101
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 &
1106 TTM_PL_MASK_MEM))
1107 return i;
1108 }
1109 return -1;
ba4e7d97
TH
1110}
1111
09855acb
JG
1112int ttm_bo_validate(struct ttm_buffer_object *bo,
1113 struct ttm_placement *placement,
97a875cb 1114 bool interruptible,
9d87fa21 1115 bool no_wait_gpu)
ba4e7d97
TH
1116{
1117 int ret;
1118
a9dbfff1 1119 BUG_ON(!ttm_bo_is_reserved(bo));
ca262a99
JG
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)
1124 return -EINVAL;
ba4e7d97
TH
1125 /*
1126 * Check whether we need to move buffer.
1127 */
ca262a99
JG
1128 ret = ttm_bo_mem_compat(placement, &bo->mem);
1129 if (ret < 0) {
97a875cb
ML
1130 ret = ttm_bo_move_buffer(bo, placement, interruptible,
1131 no_wait_gpu);
ca262a99 1132 if (ret)
ba4e7d97 1133 return ret;
ca262a99
JG
1134 } else {
1135 /*
1136 * Use the access and other non-mapping-related flag bits from
1137 * the compatible memory placement flags to the active flags
1138 */
1139 ttm_flag_masked(&bo->mem.placement, placement->placement[ret],
1140 ~TTM_PL_MASK_MEMTYPE);
ba4e7d97 1141 }
ba4e7d97
TH
1142 /*
1143 * We might need to add a TTM.
1144 */
ba4e7d97
TH
1145 if (bo->mem.mem_type == TTM_PL_SYSTEM && bo->ttm == NULL) {
1146 ret = ttm_bo_add_ttm(bo, true);
1147 if (ret)
1148 return ret;
1149 }
ba4e7d97
TH
1150 return 0;
1151}
09855acb 1152EXPORT_SYMBOL(ttm_bo_validate);
ba4e7d97 1153
09855acb
JG
1154int ttm_bo_check_placement(struct ttm_buffer_object *bo,
1155 struct ttm_placement *placement)
ba4e7d97 1156{
29e190e0
TH
1157 BUG_ON((placement->fpfn || placement->lpfn) &&
1158 (bo->mem.num_pages > (placement->lpfn - placement->fpfn)));
ba4e7d97 1159
ba4e7d97
TH
1160 return 0;
1161}
1162
09855acb
JG
1163int ttm_bo_init(struct ttm_bo_device *bdev,
1164 struct ttm_buffer_object *bo,
1165 unsigned long size,
1166 enum ttm_bo_type type,
1167 struct ttm_placement *placement,
1168 uint32_t page_alignment,
09855acb 1169 bool interruptible,
5df23979 1170 struct file *persistent_swap_storage,
09855acb 1171 size_t acc_size,
129b78bf 1172 struct sg_table *sg,
09855acb 1173 void (*destroy) (struct ttm_buffer_object *))
ba4e7d97 1174{
09855acb 1175 int ret = 0;
ba4e7d97 1176 unsigned long num_pages;
57de4ba9
JG
1177 struct ttm_mem_global *mem_glob = bdev->glob->mem_glob;
1178
1179 ret = ttm_mem_global_alloc(mem_glob, acc_size, false, false);
1180 if (ret) {
25d0479a 1181 pr_err("Out of kernel memory\n");
57de4ba9
JG
1182 if (destroy)
1183 (*destroy)(bo);
1184 else
1185 kfree(bo);
1186 return -ENOMEM;
1187 }
ba4e7d97 1188
ba4e7d97
TH
1189 num_pages = (size + PAGE_SIZE - 1) >> PAGE_SHIFT;
1190 if (num_pages == 0) {
25d0479a 1191 pr_err("Illegal buffer object size\n");
7dfbbdcf
TH
1192 if (destroy)
1193 (*destroy)(bo);
1194 else
1195 kfree(bo);
a393c730 1196 ttm_mem_global_free(mem_glob, acc_size);
ba4e7d97
TH
1197 return -EINVAL;
1198 }
1199 bo->destroy = destroy;
1200
ba4e7d97
TH
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);
eba67093 1209 INIT_LIST_HEAD(&bo->io_reserve_lru);
ba4e7d97 1210 bo->bdev = bdev;
a987fcaa 1211 bo->glob = bdev->glob;
ba4e7d97
TH
1212 bo->type = type;
1213 bo->num_pages = num_pages;
eb6d2c39 1214 bo->mem.size = num_pages << PAGE_SHIFT;
ba4e7d97
TH
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;
eba67093
TH
1219 bo->mem.bus.io_reserved_vm = false;
1220 bo->mem.bus.io_reserved_count = 0;
ba4e7d97
TH
1221 bo->priv_flags = 0;
1222 bo->mem.placement = (TTM_PL_FLAG_SYSTEM | TTM_PL_FLAG_CACHED);
1223 bo->seq_valid = false;
5df23979 1224 bo->persistent_swap_storage = persistent_swap_storage;
ba4e7d97 1225 bo->acc_size = acc_size;
129b78bf 1226 bo->sg = sg;
a987fcaa 1227 atomic_inc(&bo->glob->bo_count);
ba4e7d97 1228
09855acb 1229 ret = ttm_bo_check_placement(bo, placement);
ba4e7d97
TH
1230 if (unlikely(ret != 0))
1231 goto out_err;
1232
ba4e7d97
TH
1233 /*
1234 * For ttm_bo_type_device buffers, allocate
1235 * address space from the device.
1236 */
129b78bf
DA
1237 if (bo->type == ttm_bo_type_device ||
1238 bo->type == ttm_bo_type_sg) {
ba4e7d97
TH
1239 ret = ttm_bo_setup_vm(bo);
1240 if (ret)
1241 goto out_err;
1242 }
1243
97a875cb 1244 ret = ttm_bo_validate(bo, placement, interruptible, false);
ba4e7d97
TH
1245 if (ret)
1246 goto out_err;
1247
1248 ttm_bo_unreserve(bo);
1249 return 0;
1250
1251out_err:
1252 ttm_bo_unreserve(bo);
1253 ttm_bo_unref(&bo);
1254
1255 return ret;
1256}
09855acb 1257EXPORT_SYMBOL(ttm_bo_init);
ba4e7d97 1258
57de4ba9
JG
1259size_t ttm_bo_acc_size(struct ttm_bo_device *bdev,
1260 unsigned long bo_size,
1261 unsigned struct_size)
ba4e7d97 1262{
57de4ba9
JG
1263 unsigned npages = (PAGE_ALIGN(bo_size)) >> PAGE_SHIFT;
1264 size_t size = 0;
ba4e7d97 1265
57de4ba9
JG
1266 size += ttm_round_pot(struct_size);
1267 size += PAGE_ALIGN(npages * sizeof(void *));
1268 size += ttm_round_pot(sizeof(struct ttm_tt));
1269 return size;
ba4e7d97 1270}
57de4ba9
JG
1271EXPORT_SYMBOL(ttm_bo_acc_size);
1272
1273size_t ttm_bo_dma_acc_size(struct ttm_bo_device *bdev,
1274 unsigned long bo_size,
1275 unsigned struct_size)
1276{
1277 unsigned npages = (PAGE_ALIGN(bo_size)) >> PAGE_SHIFT;
1278 size_t size = 0;
1279
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));
1284 return size;
1285}
1286EXPORT_SYMBOL(ttm_bo_dma_acc_size);
ba4e7d97 1287
09855acb
JG
1288int ttm_bo_create(struct ttm_bo_device *bdev,
1289 unsigned long size,
1290 enum ttm_bo_type type,
1291 struct ttm_placement *placement,
1292 uint32_t page_alignment,
09855acb 1293 bool interruptible,
5df23979 1294 struct file *persistent_swap_storage,
09855acb 1295 struct ttm_buffer_object **p_bo)
ba4e7d97
TH
1296{
1297 struct ttm_buffer_object *bo;
57de4ba9 1298 size_t acc_size;
ca262a99 1299 int ret;
ba4e7d97 1300
ba4e7d97 1301 bo = kzalloc(sizeof(*bo), GFP_KERNEL);
a393c730 1302 if (unlikely(bo == NULL))
ba4e7d97 1303 return -ENOMEM;
ba4e7d97 1304
a393c730 1305 acc_size = ttm_bo_acc_size(bdev, size, sizeof(struct ttm_buffer_object));
09855acb 1306 ret = ttm_bo_init(bdev, bo, size, type, placement, page_alignment,
0b91c4a1
MS
1307 interruptible, persistent_swap_storage, acc_size,
1308 NULL, NULL);
ba4e7d97
TH
1309 if (likely(ret == 0))
1310 *p_bo = bo;
1311
1312 return ret;
1313}
4d798937 1314EXPORT_SYMBOL(ttm_bo_create);
ba4e7d97 1315
ba4e7d97 1316static int ttm_bo_force_list_clean(struct ttm_bo_device *bdev,
ca262a99 1317 unsigned mem_type, bool allow_errors)
ba4e7d97 1318{
ca262a99 1319 struct ttm_mem_type_manager *man = &bdev->man[mem_type];
a987fcaa 1320 struct ttm_bo_global *glob = bdev->glob;
ba4e7d97 1321 int ret;
ba4e7d97
TH
1322
1323 /*
1324 * Can't use standard list traversal since we're unlocking.
1325 */
1326
a987fcaa 1327 spin_lock(&glob->lru_lock);
ca262a99 1328 while (!list_empty(&man->lru)) {
a987fcaa 1329 spin_unlock(&glob->lru_lock);
97a875cb 1330 ret = ttm_mem_evict_first(bdev, mem_type, false, false);
ca262a99
JG
1331 if (ret) {
1332 if (allow_errors) {
1333 return ret;
1334 } else {
25d0479a 1335 pr_err("Cleanup eviction failed\n");
ca262a99
JG
1336 }
1337 }
a987fcaa 1338 spin_lock(&glob->lru_lock);
ba4e7d97 1339 }
a987fcaa 1340 spin_unlock(&glob->lru_lock);
ba4e7d97
TH
1341 return 0;
1342}
1343
1344int ttm_bo_clean_mm(struct ttm_bo_device *bdev, unsigned mem_type)
1345{
c96e7c7a 1346 struct ttm_mem_type_manager *man;
ba4e7d97
TH
1347 int ret = -EINVAL;
1348
1349 if (mem_type >= TTM_NUM_MEM_TYPES) {
25d0479a 1350 pr_err("Illegal memory type %d\n", mem_type);
ba4e7d97
TH
1351 return ret;
1352 }
c96e7c7a 1353 man = &bdev->man[mem_type];
ba4e7d97
TH
1354
1355 if (!man->has_type) {
25d0479a
JP
1356 pr_err("Trying to take down uninitialized memory manager type %u\n",
1357 mem_type);
ba4e7d97
TH
1358 return ret;
1359 }
1360
1361 man->use_type = false;
1362 man->has_type = false;
1363
1364 ret = 0;
1365 if (mem_type > 0) {
ca262a99 1366 ttm_bo_force_list_clean(bdev, mem_type, false);
ba4e7d97 1367
d961db75 1368 ret = (*man->func->takedown)(man);
ba4e7d97
TH
1369 }
1370
1371 return ret;
1372}
1373EXPORT_SYMBOL(ttm_bo_clean_mm);
1374
1375int ttm_bo_evict_mm(struct ttm_bo_device *bdev, unsigned mem_type)
1376{
1377 struct ttm_mem_type_manager *man = &bdev->man[mem_type];
1378
1379 if (mem_type == 0 || mem_type >= TTM_NUM_MEM_TYPES) {
25d0479a 1380 pr_err("Illegal memory manager memory type %u\n", mem_type);
ba4e7d97
TH
1381 return -EINVAL;
1382 }
1383
1384 if (!man->has_type) {
25d0479a 1385 pr_err("Memory type %u has not been initialized\n", mem_type);
ba4e7d97
TH
1386 return 0;
1387 }
1388
ca262a99 1389 return ttm_bo_force_list_clean(bdev, mem_type, true);
ba4e7d97
TH
1390}
1391EXPORT_SYMBOL(ttm_bo_evict_mm);
1392
1393int ttm_bo_init_mm(struct ttm_bo_device *bdev, unsigned type,
ca262a99 1394 unsigned long p_size)
ba4e7d97
TH
1395{
1396 int ret = -EINVAL;
1397 struct ttm_mem_type_manager *man;
1398
dbc4a5b8 1399 BUG_ON(type >= TTM_NUM_MEM_TYPES);
ba4e7d97 1400 man = &bdev->man[type];
dbc4a5b8 1401 BUG_ON(man->has_type);
eba67093
TH
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);
ba4e7d97
TH
1406
1407 ret = bdev->driver->init_mem_type(bdev, type, man);
1408 if (ret)
1409 return ret;
d961db75 1410 man->bdev = bdev;
ba4e7d97
TH
1411
1412 ret = 0;
1413 if (type != TTM_PL_SYSTEM) {
d961db75 1414 ret = (*man->func->init)(man, p_size);
ba4e7d97
TH
1415 if (ret)
1416 return ret;
1417 }
1418 man->has_type = true;
1419 man->use_type = true;
1420 man->size = p_size;
1421
1422 INIT_LIST_HEAD(&man->lru);
1423
1424 return 0;
1425}
1426EXPORT_SYMBOL(ttm_bo_init_mm);
1427
a987fcaa
TH
1428static void ttm_bo_global_kobj_release(struct kobject *kobj)
1429{
1430 struct ttm_bo_global *glob =
1431 container_of(kobj, struct ttm_bo_global, kobj);
1432
a987fcaa
TH
1433 ttm_mem_unregister_shrink(glob->mem_glob, &glob->shrink);
1434 __free_page(glob->dummy_read_page);
1435 kfree(glob);
1436}
1437
ba4420c2 1438void ttm_bo_global_release(struct drm_global_reference *ref)
a987fcaa
TH
1439{
1440 struct ttm_bo_global *glob = ref->object;
1441
1442 kobject_del(&glob->kobj);
1443 kobject_put(&glob->kobj);
1444}
1445EXPORT_SYMBOL(ttm_bo_global_release);
1446
ba4420c2 1447int ttm_bo_global_init(struct drm_global_reference *ref)
a987fcaa
TH
1448{
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;
1452 int ret;
1453
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);
1458
1459 if (unlikely(glob->dummy_read_page == NULL)) {
1460 ret = -ENOMEM;
1461 goto out_no_drp;
1462 }
1463
1464 INIT_LIST_HEAD(&glob->swap_lru);
1465 INIT_LIST_HEAD(&glob->device_list);
1466
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)) {
25d0479a 1470 pr_err("Could not register buffer object swapout\n");
a987fcaa
TH
1471 goto out_no_shrink;
1472 }
1473
a987fcaa
TH
1474 atomic_set(&glob->bo_count, 0);
1475
b642ed06
RD
1476 ret = kobject_init_and_add(
1477 &glob->kobj, &ttm_bo_glob_kobj_type, ttm_get_kobj(), "buffer_objects");
a987fcaa
TH
1478 if (unlikely(ret != 0))
1479 kobject_put(&glob->kobj);
1480 return ret;
1481out_no_shrink:
1482 __free_page(glob->dummy_read_page);
1483out_no_drp:
1484 kfree(glob);
1485 return ret;
1486}
1487EXPORT_SYMBOL(ttm_bo_global_init);
1488
1489
ba4e7d97
TH
1490int ttm_bo_device_release(struct ttm_bo_device *bdev)
1491{
1492 int ret = 0;
1493 unsigned i = TTM_NUM_MEM_TYPES;
1494 struct ttm_mem_type_manager *man;
a987fcaa 1495 struct ttm_bo_global *glob = bdev->glob;
ba4e7d97
TH
1496
1497 while (i--) {
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)) {
1502 ret = -EBUSY;
25d0479a
JP
1503 pr_err("DRM memory manager type %d is not clean\n",
1504 i);
ba4e7d97
TH
1505 }
1506 man->has_type = false;
1507 }
1508 }
1509
a987fcaa
TH
1510 mutex_lock(&glob->device_list_mutex);
1511 list_del(&bdev->device_list);
1512 mutex_unlock(&glob->device_list_mutex);
1513
f094cfc6 1514 cancel_delayed_work_sync(&bdev->wq);
ba4e7d97
TH
1515
1516 while (ttm_bo_delayed_delete(bdev, true))
1517 ;
1518
a987fcaa 1519 spin_lock(&glob->lru_lock);
ba4e7d97
TH
1520 if (list_empty(&bdev->ddestroy))
1521 TTM_DEBUG("Delayed destroy list was clean\n");
1522
1523 if (list_empty(&bdev->man[0].lru))
1524 TTM_DEBUG("Swap list was clean\n");
a987fcaa 1525 spin_unlock(&glob->lru_lock);
ba4e7d97 1526
ba4e7d97
TH
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);
1531
ba4e7d97
TH
1532 return ret;
1533}
1534EXPORT_SYMBOL(ttm_bo_device_release);
1535
ba4e7d97 1536int ttm_bo_device_init(struct ttm_bo_device *bdev,
a987fcaa
TH
1537 struct ttm_bo_global *glob,
1538 struct ttm_bo_driver *driver,
51c8b407 1539 uint64_t file_page_offset,
ad49f501 1540 bool need_dma32)
ba4e7d97
TH
1541{
1542 int ret = -EINVAL;
1543
ba4e7d97 1544 rwlock_init(&bdev->vm_lock);
ba4e7d97 1545 bdev->driver = driver;
ba4e7d97
TH
1546
1547 memset(bdev->man, 0, sizeof(bdev->man));
1548
ba4e7d97
TH
1549 /*
1550 * Initialize the system memory buffer type.
1551 * Other types need to be driver / IOCTL initialized.
1552 */
ca262a99 1553 ret = ttm_bo_init_mm(bdev, TTM_PL_SYSTEM, 0);
ba4e7d97 1554 if (unlikely(ret != 0))
a987fcaa 1555 goto out_no_sys;
ba4e7d97
TH
1556
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))
a987fcaa 1560 goto out_no_addr_mm;
ba4e7d97
TH
1561
1562 INIT_DELAYED_WORK(&bdev->wq, ttm_bo_delayed_workqueue);
ba4e7d97 1563 INIT_LIST_HEAD(&bdev->ddestroy);
ba4e7d97 1564 bdev->dev_mapping = NULL;
a987fcaa 1565 bdev->glob = glob;
ad49f501 1566 bdev->need_dma32 = need_dma32;
65705962 1567 bdev->val_seq = 0;
702adba2 1568 spin_lock_init(&bdev->fence_lock);
a987fcaa
TH
1569 mutex_lock(&glob->device_list_mutex);
1570 list_add_tail(&bdev->device_list, &glob->device_list);
1571 mutex_unlock(&glob->device_list_mutex);
ba4e7d97
TH
1572
1573 return 0;
a987fcaa 1574out_no_addr_mm:
ba4e7d97 1575 ttm_bo_clean_mm(bdev, 0);
a987fcaa 1576out_no_sys:
ba4e7d97
TH
1577 return ret;
1578}
1579EXPORT_SYMBOL(ttm_bo_device_init);
1580
1581/*
1582 * buffer object vm functions.
1583 */
1584
1585bool ttm_mem_reg_is_pci(struct ttm_bo_device *bdev, struct ttm_mem_reg *mem)
1586{
1587 struct ttm_mem_type_manager *man = &bdev->man[mem->mem_type];
1588
1589 if (!(man->flags & TTM_MEMTYPE_FLAG_FIXED)) {
1590 if (mem->mem_type == TTM_PL_SYSTEM)
1591 return false;
1592
1593 if (man->flags & TTM_MEMTYPE_FLAG_CMA)
1594 return false;
1595
1596 if (mem->placement & TTM_PL_FLAG_CACHED)
1597 return false;
1598 }
1599 return true;
1600}
1601
eba67093 1602void ttm_bo_unmap_virtual_locked(struct ttm_buffer_object *bo)
ba4e7d97
TH
1603{
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;
1607
1608 if (!bdev->dev_mapping)
1609 return;
ba4e7d97 1610 unmap_mapping_range(bdev->dev_mapping, offset, holelen, 1);
eba67093 1611 ttm_mem_io_free_vm(bo);
ba4e7d97 1612}
eba67093
TH
1613
1614void ttm_bo_unmap_virtual(struct ttm_buffer_object *bo)
1615{
1616 struct ttm_bo_device *bdev = bo->bdev;
1617 struct ttm_mem_type_manager *man = &bdev->man[bo->mem.mem_type];
1618
1619 ttm_mem_io_lock(man, false);
1620 ttm_bo_unmap_virtual_locked(bo);
1621 ttm_mem_io_unlock(man);
ba4e7d97 1622}
eba67093
TH
1623
1624
e024e110 1625EXPORT_SYMBOL(ttm_bo_unmap_virtual);
ba4e7d97
TH
1626
1627static void ttm_bo_vm_insert_rb(struct ttm_buffer_object *bo)
1628{
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;
1635
1636 while (*cur) {
1637 parent = *cur;
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;
1644 else
1645 BUG();
1646 }
1647
1648 rb_link_node(&bo->vm_rb, parent, cur);
1649 rb_insert_color(&bo->vm_rb, &bdev->addr_space_rb);
1650}
1651
1652/**
1653 * ttm_bo_setup_vm:
1654 *
1655 * @bo: the buffer to allocate address space for
1656 *
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.
1661 */
1662
1663static int ttm_bo_setup_vm(struct ttm_buffer_object *bo)
1664{
1665 struct ttm_bo_device *bdev = bo->bdev;
1666 int ret;
1667
1668retry_pre_get:
1669 ret = drm_mm_pre_get(&bdev->addr_space_mm);
1670 if (unlikely(ret != 0))
1671 return ret;
1672
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);
1676
1677 if (unlikely(bo->vm_node == NULL)) {
1678 ret = -ENOMEM;
1679 goto out_unlock;
1680 }
1681
1682 bo->vm_node = drm_mm_get_block_atomic(bo->vm_node,
1683 bo->mem.num_pages, 0);
1684
1685 if (unlikely(bo->vm_node == NULL)) {
1686 write_unlock(&bdev->vm_lock);
1687 goto retry_pre_get;
1688 }
1689
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;
1693
1694 return 0;
1695out_unlock:
1696 write_unlock(&bdev->vm_lock);
1697 return ret;
1698}
1699
1700int ttm_bo_wait(struct ttm_buffer_object *bo,
1717c0e2 1701 bool lazy, bool interruptible, bool no_wait)
ba4e7d97
TH
1702{
1703 struct ttm_bo_driver *driver = bo->bdev->driver;
702adba2 1704 struct ttm_bo_device *bdev = bo->bdev;
ba4e7d97 1705 void *sync_obj;
ba4e7d97
TH
1706 int ret = 0;
1707
1717c0e2 1708 if (likely(bo->sync_obj == NULL))
ba4e7d97
TH
1709 return 0;
1710
1717c0e2 1711 while (bo->sync_obj) {
ba4e7d97 1712
dedfdffd 1713 if (driver->sync_obj_signaled(bo->sync_obj)) {
1717c0e2
DA
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);
ba4e7d97
TH
1720 continue;
1721 }
1722
1723 if (no_wait)
1724 return -EBUSY;
1725
1717c0e2 1726 sync_obj = driver->sync_obj_ref(bo->sync_obj);
702adba2 1727 spin_unlock(&bdev->fence_lock);
dedfdffd 1728 ret = driver->sync_obj_wait(sync_obj,
ba4e7d97
TH
1729 lazy, interruptible);
1730 if (unlikely(ret != 0)) {
1731 driver->sync_obj_unref(&sync_obj);
702adba2 1732 spin_lock(&bdev->fence_lock);
ba4e7d97
TH
1733 return ret;
1734 }
702adba2 1735 spin_lock(&bdev->fence_lock);
5fb4ef0e 1736 if (likely(bo->sync_obj == sync_obj)) {
1717c0e2
DA
1737 void *tmp_obj = bo->sync_obj;
1738 bo->sync_obj = NULL;
1739 clear_bit(TTM_BO_PRIV_FLAG_MOVING,
1740 &bo->priv_flags);
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);
fee280d3 1745 } else {
702adba2 1746 spin_unlock(&bdev->fence_lock);
fee280d3 1747 driver->sync_obj_unref(&sync_obj);
702adba2 1748 spin_lock(&bdev->fence_lock);
ba4e7d97
TH
1749 }
1750 }
1751 return 0;
1752}
1753EXPORT_SYMBOL(ttm_bo_wait);
1754
ba4e7d97
TH
1755int ttm_bo_synccpu_write_grab(struct ttm_buffer_object *bo, bool no_wait)
1756{
702adba2 1757 struct ttm_bo_device *bdev = bo->bdev;
ba4e7d97
TH
1758 int ret = 0;
1759
1760 /*
8cfe92d6 1761 * Using ttm_bo_reserve makes sure the lru lists are updated.
ba4e7d97
TH
1762 */
1763
1764 ret = ttm_bo_reserve(bo, true, no_wait, false, 0);
1765 if (unlikely(ret != 0))
1766 return ret;
702adba2 1767 spin_lock(&bdev->fence_lock);
1717c0e2 1768 ret = ttm_bo_wait(bo, false, true, no_wait);
702adba2 1769 spin_unlock(&bdev->fence_lock);
ba4e7d97
TH
1770 if (likely(ret == 0))
1771 atomic_inc(&bo->cpu_writers);
1772 ttm_bo_unreserve(bo);
1773 return ret;
1774}
d1ede145 1775EXPORT_SYMBOL(ttm_bo_synccpu_write_grab);
ba4e7d97
TH
1776
1777void ttm_bo_synccpu_write_release(struct ttm_buffer_object *bo)
1778{
654aa792 1779 atomic_dec(&bo->cpu_writers);
ba4e7d97 1780}
d1ede145 1781EXPORT_SYMBOL(ttm_bo_synccpu_write_release);
ba4e7d97
TH
1782
1783/**
1784 * A buffer object shrink method that tries to swap out the first
1785 * buffer object on the bo_global::swap_lru list.
1786 */
1787
1788static int ttm_bo_swapout(struct ttm_mem_shrink *shrink)
1789{
a987fcaa
TH
1790 struct ttm_bo_global *glob =
1791 container_of(shrink, struct ttm_bo_global, shrink);
ba4e7d97
TH
1792 struct ttm_buffer_object *bo;
1793 int ret = -EBUSY;
1794 int put_count;
1795 uint32_t swap_placement = (TTM_PL_FLAG_CACHED | TTM_PL_FLAG_SYSTEM);
1796
a987fcaa 1797 spin_lock(&glob->lru_lock);
2b7b3ad2
ML
1798 list_for_each_entry(bo, &glob->swap_lru, swap) {
1799 ret = ttm_bo_reserve_locked(bo, false, true, false, 0);
1800 if (!ret)
1801 break;
1802 }
85b144f8 1803
2b7b3ad2
ML
1804 if (ret) {
1805 spin_unlock(&glob->lru_lock);
1806 return ret;
1807 }
e1efc9b6 1808
2b7b3ad2 1809 kref_get(&bo->list_kref);
ba4e7d97 1810
2b7b3ad2
ML
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);
1814 return ret;
ba4e7d97
TH
1815 }
1816
ba4e7d97 1817 put_count = ttm_bo_del_from_lru(bo);
a987fcaa 1818 spin_unlock(&glob->lru_lock);
ba4e7d97 1819
d6ea8886 1820 ttm_bo_list_ref_sub(bo, put_count, true);
ba4e7d97
TH
1821
1822 /**
1823 * Wait for GPU, then move to system cached.
1824 */
1825
702adba2 1826 spin_lock(&bo->bdev->fence_lock);
1717c0e2 1827 ret = ttm_bo_wait(bo, false, false, false);
702adba2 1828 spin_unlock(&bo->bdev->fence_lock);
ba4e7d97
TH
1829
1830 if (unlikely(ret != 0))
1831 goto out;
1832
1833 if ((bo->mem.placement & swap_placement) != swap_placement) {
1834 struct ttm_mem_reg evict_mem;
1835
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;
1840
1841 ret = ttm_bo_handle_move_mem(bo, &evict_mem, true,
97a875cb 1842 false, false);
ba4e7d97
TH
1843 if (unlikely(ret != 0))
1844 goto out;
1845 }
1846
1847 ttm_bo_unmap_virtual(bo);
1848
1849 /**
1850 * Swap out. Buffer will be swapped in again as soon as
1851 * anyone tries to access a ttm page.
1852 */
1853
3f09ea4e
TH
1854 if (bo->bdev->driver->swap_notify)
1855 bo->bdev->driver->swap_notify(bo);
1856
5df23979 1857 ret = ttm_tt_swapout(bo->ttm, bo->persistent_swap_storage);
ba4e7d97
TH
1858out:
1859
1860 /**
1861 *
1862 * Unreserve without putting on LRU to avoid swapping out an
1863 * already swapped buffer.
1864 */
1865
1866 atomic_set(&bo->reserved, 0);
1867 wake_up_all(&bo->event_queue);
1868 kref_put(&bo->list_kref, ttm_bo_release_list);
1869 return ret;
1870}
1871
1872void ttm_bo_swapout_all(struct ttm_bo_device *bdev)
1873{
a987fcaa 1874 while (ttm_bo_swapout(&bdev->glob->shrink) == 0)
ba4e7d97
TH
1875 ;
1876}
e99e1e78 1877EXPORT_SYMBOL(ttm_bo_swapout_all);
This page took 0.317851 seconds and 5 git commands to generate.