blob: 4c2299299ab2c2499f61b04df252615639f158fd [file] [log] [blame]
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001/**************************************************************************
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 */
Jerome Glisseca262a9992009-12-08 15:33:32 +010030/* Notes:
31 *
32 * We store bo pointer in drm_mm_node struct so we know which bo own a
33 * specific node. There is no protection on the pointer, thus to make
34 * sure things don't go berserk you have to access this pointer while
35 * holding the global lru lock and make sure anytime you free a node you
36 * reset the pointer to NULL.
37 */
Thomas Hellstromba4e7d92009-06-10 15:20:19 +020038
39#include "ttm/ttm_module.h"
40#include "ttm/ttm_bo_driver.h"
41#include "ttm/ttm_placement.h"
42#include <linux/jiffies.h>
43#include <linux/slab.h>
44#include <linux/sched.h>
45#include <linux/mm.h>
46#include <linux/file.h>
47#include <linux/module.h>
48
49#define TTM_ASSERT_LOCKED(param)
50#define TTM_DEBUG(fmt, arg...)
51#define TTM_BO_HASH_ORDER 13
52
53static int ttm_bo_setup_vm(struct ttm_buffer_object *bo);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +020054static int ttm_bo_swapout(struct ttm_mem_shrink *shrink);
Thomas Hellstroma987fca2009-08-18 16:51:56 +020055static void ttm_bo_global_kobj_release(struct kobject *kobj);
56
57static struct attribute ttm_bo_count = {
58 .name = "bo_count",
59 .mode = S_IRUGO
60};
61
Jerome Glissefb53f862009-12-09 21:55:10 +010062static inline int ttm_mem_type_from_flags(uint32_t flags, uint32_t *mem_type)
63{
64 int i;
65
66 for (i = 0; i <= TTM_PL_PRIV5; i++)
67 if (flags & (1 << i)) {
68 *mem_type = i;
69 return 0;
70 }
71 return -EINVAL;
72}
73
Jerome Glisse5012f502009-12-10 18:07:26 +010074static void ttm_mem_type_debug(struct ttm_bo_device *bdev, int mem_type)
Jerome Glissefb53f862009-12-09 21:55:10 +010075{
Jerome Glisse5012f502009-12-10 18:07:26 +010076 struct ttm_mem_type_manager *man = &bdev->man[mem_type];
77
Jerome Glissefb53f862009-12-09 21:55:10 +010078 printk(KERN_ERR TTM_PFX " has_type: %d\n", man->has_type);
79 printk(KERN_ERR TTM_PFX " use_type: %d\n", man->use_type);
80 printk(KERN_ERR TTM_PFX " flags: 0x%08X\n", man->flags);
81 printk(KERN_ERR TTM_PFX " gpu_offset: 0x%08lX\n", man->gpu_offset);
Jerome Glisseeb6d2c32009-12-10 16:15:52 +010082 printk(KERN_ERR TTM_PFX " size: %llu\n", man->size);
Jerome Glissefb53f862009-12-09 21:55:10 +010083 printk(KERN_ERR TTM_PFX " available_caching: 0x%08X\n",
84 man->available_caching);
85 printk(KERN_ERR TTM_PFX " default_caching: 0x%08X\n",
86 man->default_caching);
Jerome Glisse5012f502009-12-10 18:07:26 +010087 if (mem_type != TTM_PL_SYSTEM) {
88 spin_lock(&bdev->glob->lru_lock);
89 drm_mm_debug_table(&man->manager, TTM_PFX);
90 spin_unlock(&bdev->glob->lru_lock);
91 }
Jerome Glissefb53f862009-12-09 21:55:10 +010092}
93
94static void ttm_bo_mem_space_debug(struct ttm_buffer_object *bo,
95 struct ttm_placement *placement)
96{
Jerome Glissefb53f862009-12-09 21:55:10 +010097 int i, ret, mem_type;
98
Jerome Glisseeb6d2c32009-12-10 16:15:52 +010099 printk(KERN_ERR TTM_PFX "No space for %p (%lu pages, %luK, %luM)\n",
Jerome Glissefb53f862009-12-09 21:55:10 +0100100 bo, bo->mem.num_pages, bo->mem.size >> 10,
101 bo->mem.size >> 20);
102 for (i = 0; i < placement->num_placement; i++) {
103 ret = ttm_mem_type_from_flags(placement->placement[i],
104 &mem_type);
105 if (ret)
106 return;
Jerome Glissefb53f862009-12-09 21:55:10 +0100107 printk(KERN_ERR TTM_PFX " placement[%d]=0x%08X (%d)\n",
108 i, placement->placement[i], mem_type);
Jerome Glisse5012f502009-12-10 18:07:26 +0100109 ttm_mem_type_debug(bo->bdev, mem_type);
Jerome Glissefb53f862009-12-09 21:55:10 +0100110 }
111}
112
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200113static ssize_t ttm_bo_global_show(struct kobject *kobj,
114 struct attribute *attr,
115 char *buffer)
116{
117 struct ttm_bo_global *glob =
118 container_of(kobj, struct ttm_bo_global, kobj);
119
120 return snprintf(buffer, PAGE_SIZE, "%lu\n",
121 (unsigned long) atomic_read(&glob->bo_count));
122}
123
124static struct attribute *ttm_bo_global_attrs[] = {
125 &ttm_bo_count,
126 NULL
127};
128
Emese Revfy52cf25d2010-01-19 02:58:23 +0100129static const struct sysfs_ops ttm_bo_global_ops = {
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200130 .show = &ttm_bo_global_show
131};
132
133static struct kobj_type ttm_bo_glob_kobj_type = {
134 .release = &ttm_bo_global_kobj_release,
135 .sysfs_ops = &ttm_bo_global_ops,
136 .default_attrs = ttm_bo_global_attrs
137};
138
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200139
140static inline uint32_t ttm_bo_type_flags(unsigned type)
141{
142 return 1 << (type);
143}
144
145static void ttm_bo_release_list(struct kref *list_kref)
146{
147 struct ttm_buffer_object *bo =
148 container_of(list_kref, struct ttm_buffer_object, list_kref);
149 struct ttm_bo_device *bdev = bo->bdev;
150
151 BUG_ON(atomic_read(&bo->list_kref.refcount));
152 BUG_ON(atomic_read(&bo->kref.refcount));
153 BUG_ON(atomic_read(&bo->cpu_writers));
154 BUG_ON(bo->sync_obj != NULL);
155 BUG_ON(bo->mem.mm_node != NULL);
156 BUG_ON(!list_empty(&bo->lru));
157 BUG_ON(!list_empty(&bo->ddestroy));
158
159 if (bo->ttm)
160 ttm_tt_destroy(bo->ttm);
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200161 atomic_dec(&bo->glob->bo_count);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200162 if (bo->destroy)
163 bo->destroy(bo);
164 else {
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200165 ttm_mem_global_free(bdev->glob->mem_glob, bo->acc_size);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200166 kfree(bo);
167 }
168}
169
170int ttm_bo_wait_unreserved(struct ttm_buffer_object *bo, bool interruptible)
171{
172
173 if (interruptible) {
174 int ret = 0;
175
176 ret = wait_event_interruptible(bo->event_queue,
177 atomic_read(&bo->reserved) == 0);
178 if (unlikely(ret != 0))
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +0100179 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200180 } else {
181 wait_event(bo->event_queue, atomic_read(&bo->reserved) == 0);
182 }
183 return 0;
184}
Ben Skeggsd1ede142009-12-11 15:13:00 +1000185EXPORT_SYMBOL(ttm_bo_wait_unreserved);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200186
187static void ttm_bo_add_to_lru(struct ttm_buffer_object *bo)
188{
189 struct ttm_bo_device *bdev = bo->bdev;
190 struct ttm_mem_type_manager *man;
191
192 BUG_ON(!atomic_read(&bo->reserved));
193
194 if (!(bo->mem.placement & TTM_PL_FLAG_NO_EVICT)) {
195
196 BUG_ON(!list_empty(&bo->lru));
197
198 man = &bdev->man[bo->mem.mem_type];
199 list_add_tail(&bo->lru, &man->lru);
200 kref_get(&bo->list_kref);
201
202 if (bo->ttm != NULL) {
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200203 list_add_tail(&bo->swap, &bo->glob->swap_lru);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200204 kref_get(&bo->list_kref);
205 }
206 }
207}
208
209/**
210 * Call with the lru_lock held.
211 */
212
213static int ttm_bo_del_from_lru(struct ttm_buffer_object *bo)
214{
215 int put_count = 0;
216
217 if (!list_empty(&bo->swap)) {
218 list_del_init(&bo->swap);
219 ++put_count;
220 }
221 if (!list_empty(&bo->lru)) {
222 list_del_init(&bo->lru);
223 ++put_count;
224 }
225
226 /*
227 * TODO: Add a driver hook to delete from
228 * driver-specific LRU's here.
229 */
230
231 return put_count;
232}
233
234int ttm_bo_reserve_locked(struct ttm_buffer_object *bo,
235 bool interruptible,
236 bool no_wait, bool use_sequence, uint32_t sequence)
237{
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200238 struct ttm_bo_global *glob = bo->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200239 int ret;
240
241 while (unlikely(atomic_cmpxchg(&bo->reserved, 0, 1) != 0)) {
242 if (use_sequence && bo->seq_valid &&
243 (sequence - bo->val_seq < (1 << 31))) {
244 return -EAGAIN;
245 }
246
247 if (no_wait)
248 return -EBUSY;
249
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200250 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200251 ret = ttm_bo_wait_unreserved(bo, interruptible);
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200252 spin_lock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200253
254 if (unlikely(ret))
255 return ret;
256 }
257
258 if (use_sequence) {
259 bo->val_seq = sequence;
260 bo->seq_valid = true;
261 } else {
262 bo->seq_valid = false;
263 }
264
265 return 0;
266}
267EXPORT_SYMBOL(ttm_bo_reserve);
268
269static void ttm_bo_ref_bug(struct kref *list_kref)
270{
271 BUG();
272}
273
274int ttm_bo_reserve(struct ttm_buffer_object *bo,
275 bool interruptible,
276 bool no_wait, bool use_sequence, uint32_t sequence)
277{
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200278 struct ttm_bo_global *glob = bo->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200279 int put_count = 0;
280 int ret;
281
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200282 spin_lock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200283 ret = ttm_bo_reserve_locked(bo, interruptible, no_wait, use_sequence,
284 sequence);
285 if (likely(ret == 0))
286 put_count = ttm_bo_del_from_lru(bo);
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200287 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200288
289 while (put_count--)
290 kref_put(&bo->list_kref, ttm_bo_ref_bug);
291
292 return ret;
293}
294
295void ttm_bo_unreserve(struct ttm_buffer_object *bo)
296{
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200297 struct ttm_bo_global *glob = bo->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200298
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200299 spin_lock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200300 ttm_bo_add_to_lru(bo);
301 atomic_set(&bo->reserved, 0);
302 wake_up_all(&bo->event_queue);
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200303 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200304}
305EXPORT_SYMBOL(ttm_bo_unreserve);
306
307/*
308 * Call bo->mutex locked.
309 */
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200310static int ttm_bo_add_ttm(struct ttm_buffer_object *bo, bool zero_alloc)
311{
312 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200313 struct ttm_bo_global *glob = bo->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200314 int ret = 0;
315 uint32_t page_flags = 0;
316
317 TTM_ASSERT_LOCKED(&bo->mutex);
318 bo->ttm = NULL;
319
Dave Airliead49f502009-07-10 22:36:26 +1000320 if (bdev->need_dma32)
321 page_flags |= TTM_PAGE_FLAG_DMA32;
322
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200323 switch (bo->type) {
324 case ttm_bo_type_device:
325 if (zero_alloc)
326 page_flags |= TTM_PAGE_FLAG_ZERO_ALLOC;
327 case ttm_bo_type_kernel:
328 bo->ttm = ttm_tt_create(bdev, bo->num_pages << PAGE_SHIFT,
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200329 page_flags, glob->dummy_read_page);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200330 if (unlikely(bo->ttm == NULL))
331 ret = -ENOMEM;
332 break;
333 case ttm_bo_type_user:
334 bo->ttm = ttm_tt_create(bdev, bo->num_pages << PAGE_SHIFT,
335 page_flags | TTM_PAGE_FLAG_USER,
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200336 glob->dummy_read_page);
Dave Airlie447aeb92009-12-08 09:25:45 +1000337 if (unlikely(bo->ttm == NULL)) {
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200338 ret = -ENOMEM;
Dave Airlie447aeb92009-12-08 09:25:45 +1000339 break;
340 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200341
342 ret = ttm_tt_set_user(bo->ttm, current,
343 bo->buffer_start, bo->num_pages);
344 if (unlikely(ret != 0))
345 ttm_tt_destroy(bo->ttm);
346 break;
347 default:
348 printk(KERN_ERR TTM_PFX "Illegal buffer object type\n");
349 ret = -EINVAL;
350 break;
351 }
352
353 return ret;
354}
355
356static int ttm_bo_handle_move_mem(struct ttm_buffer_object *bo,
357 struct ttm_mem_reg *mem,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000358 bool evict, bool interruptible,
359 bool no_wait_reserve, bool no_wait_gpu)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200360{
361 struct ttm_bo_device *bdev = bo->bdev;
362 bool old_is_pci = ttm_mem_reg_is_pci(bdev, &bo->mem);
363 bool new_is_pci = ttm_mem_reg_is_pci(bdev, mem);
364 struct ttm_mem_type_manager *old_man = &bdev->man[bo->mem.mem_type];
365 struct ttm_mem_type_manager *new_man = &bdev->man[mem->mem_type];
366 int ret = 0;
367
368 if (old_is_pci || new_is_pci ||
369 ((mem->placement & bo->mem.placement & TTM_PL_MASK_CACHING) == 0))
370 ttm_bo_unmap_virtual(bo);
371
372 /*
373 * Create and bind a ttm if required.
374 */
375
376 if (!(new_man->flags & TTM_MEMTYPE_FLAG_FIXED) && (bo->ttm == NULL)) {
377 ret = ttm_bo_add_ttm(bo, false);
378 if (ret)
379 goto out_err;
380
381 ret = ttm_tt_set_placement_caching(bo->ttm, mem->placement);
382 if (ret)
Thomas Hellstrom87ef9202009-06-17 12:29:57 +0200383 goto out_err;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200384
385 if (mem->mem_type != TTM_PL_SYSTEM) {
386 ret = ttm_tt_bind(bo->ttm, mem);
387 if (ret)
388 goto out_err;
389 }
390
391 if (bo->mem.mem_type == TTM_PL_SYSTEM) {
Jerome Glisseca262a9992009-12-08 15:33:32 +0100392 bo->mem = *mem;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200393 mem->mm_node = NULL;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200394 goto moved;
395 }
396
397 }
398
Dave Airliee024e112009-06-24 09:48:08 +1000399 if (bdev->driver->move_notify)
400 bdev->driver->move_notify(bo, mem);
401
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200402 if (!(old_man->flags & TTM_MEMTYPE_FLAG_FIXED) &&
403 !(new_man->flags & TTM_MEMTYPE_FLAG_FIXED))
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000404 ret = ttm_bo_move_ttm(bo, evict, no_wait_reserve, no_wait_gpu, mem);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200405 else if (bdev->driver->move)
406 ret = bdev->driver->move(bo, evict, interruptible,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000407 no_wait_reserve, no_wait_gpu, mem);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200408 else
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000409 ret = ttm_bo_move_memcpy(bo, evict, no_wait_reserve, no_wait_gpu, mem);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200410
411 if (ret)
412 goto out_err;
413
414moved:
415 if (bo->evicted) {
416 ret = bdev->driver->invalidate_caches(bdev, bo->mem.placement);
417 if (ret)
418 printk(KERN_ERR TTM_PFX "Can not flush read caches\n");
419 bo->evicted = false;
420 }
421
422 if (bo->mem.mm_node) {
423 spin_lock(&bo->lock);
424 bo->offset = (bo->mem.mm_node->start << PAGE_SHIFT) +
425 bdev->man[bo->mem.mem_type].gpu_offset;
426 bo->cur_placement = bo->mem.placement;
427 spin_unlock(&bo->lock);
Thomas Hellstrom354fb522010-01-13 22:28:45 +0100428 } else
429 bo->offset = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200430
431 return 0;
432
433out_err:
434 new_man = &bdev->man[bo->mem.mem_type];
435 if ((new_man->flags & TTM_MEMTYPE_FLAG_FIXED) && bo->ttm) {
436 ttm_tt_unbind(bo->ttm);
437 ttm_tt_destroy(bo->ttm);
438 bo->ttm = NULL;
439 }
440
441 return ret;
442}
443
444/**
445 * If bo idle, remove from delayed- and lru lists, and unref.
446 * If not idle, and already on delayed list, do nothing.
447 * If not idle, and not on delayed list, put on delayed list,
448 * up the list_kref and schedule a delayed list check.
449 */
450
451static int ttm_bo_cleanup_refs(struct ttm_buffer_object *bo, bool remove_all)
452{
453 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200454 struct ttm_bo_global *glob = bo->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200455 struct ttm_bo_driver *driver = bdev->driver;
456 int ret;
457
458 spin_lock(&bo->lock);
459 (void) ttm_bo_wait(bo, false, false, !remove_all);
460
461 if (!bo->sync_obj) {
462 int put_count;
463
464 spin_unlock(&bo->lock);
465
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200466 spin_lock(&glob->lru_lock);
Thomas Hellstromaaa20732009-12-02 18:33:45 +0100467 put_count = ttm_bo_del_from_lru(bo);
468
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200469 ret = ttm_bo_reserve_locked(bo, false, false, false, 0);
470 BUG_ON(ret);
471 if (bo->ttm)
472 ttm_tt_unbind(bo->ttm);
473
474 if (!list_empty(&bo->ddestroy)) {
475 list_del_init(&bo->ddestroy);
Thomas Hellstromaaa20732009-12-02 18:33:45 +0100476 ++put_count;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200477 }
478 if (bo->mem.mm_node) {
Jerome Glisseca262a9992009-12-08 15:33:32 +0100479 bo->mem.mm_node->private = NULL;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200480 drm_mm_put_block(bo->mem.mm_node);
481 bo->mem.mm_node = NULL;
482 }
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200483 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200484
485 atomic_set(&bo->reserved, 0);
486
487 while (put_count--)
Thomas Hellstromaaa20732009-12-02 18:33:45 +0100488 kref_put(&bo->list_kref, ttm_bo_ref_bug);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200489
490 return 0;
491 }
492
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200493 spin_lock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200494 if (list_empty(&bo->ddestroy)) {
495 void *sync_obj = bo->sync_obj;
496 void *sync_obj_arg = bo->sync_obj_arg;
497
498 kref_get(&bo->list_kref);
499 list_add_tail(&bo->ddestroy, &bdev->ddestroy);
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200500 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200501 spin_unlock(&bo->lock);
502
503 if (sync_obj)
504 driver->sync_obj_flush(sync_obj, sync_obj_arg);
505 schedule_delayed_work(&bdev->wq,
506 ((HZ / 100) < 1) ? 1 : HZ / 100);
507 ret = 0;
508
509 } else {
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200510 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200511 spin_unlock(&bo->lock);
512 ret = -EBUSY;
513 }
514
515 return ret;
516}
517
518/**
519 * Traverse the delayed list, and call ttm_bo_cleanup_refs on all
520 * encountered buffers.
521 */
522
523static int ttm_bo_delayed_delete(struct ttm_bo_device *bdev, bool remove_all)
524{
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200525 struct ttm_bo_global *glob = bdev->glob;
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100526 struct ttm_buffer_object *entry = NULL;
527 int ret = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200528
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200529 spin_lock(&glob->lru_lock);
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100530 if (list_empty(&bdev->ddestroy))
531 goto out_unlock;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200532
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100533 entry = list_first_entry(&bdev->ddestroy,
534 struct ttm_buffer_object, ddestroy);
535 kref_get(&entry->list_kref);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200536
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100537 for (;;) {
538 struct ttm_buffer_object *nentry = NULL;
539
540 if (entry->ddestroy.next != &bdev->ddestroy) {
541 nentry = list_first_entry(&entry->ddestroy,
542 struct ttm_buffer_object, ddestroy);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200543 kref_get(&nentry->list_kref);
544 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200545
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200546 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200547 ret = ttm_bo_cleanup_refs(entry, remove_all);
548 kref_put(&entry->list_kref, ttm_bo_release_list);
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100549 entry = nentry;
550
551 if (ret || !entry)
552 goto out;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200553
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200554 spin_lock(&glob->lru_lock);
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100555 if (list_empty(&entry->ddestroy))
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200556 break;
557 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200558
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100559out_unlock:
560 spin_unlock(&glob->lru_lock);
561out:
562 if (entry)
563 kref_put(&entry->list_kref, ttm_bo_release_list);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200564 return ret;
565}
566
567static void ttm_bo_delayed_workqueue(struct work_struct *work)
568{
569 struct ttm_bo_device *bdev =
570 container_of(work, struct ttm_bo_device, wq.work);
571
572 if (ttm_bo_delayed_delete(bdev, false)) {
573 schedule_delayed_work(&bdev->wq,
574 ((HZ / 100) < 1) ? 1 : HZ / 100);
575 }
576}
577
578static void ttm_bo_release(struct kref *kref)
579{
580 struct ttm_buffer_object *bo =
581 container_of(kref, struct ttm_buffer_object, kref);
582 struct ttm_bo_device *bdev = bo->bdev;
583
584 if (likely(bo->vm_node != NULL)) {
585 rb_erase(&bo->vm_rb, &bdev->addr_space_rb);
586 drm_mm_put_block(bo->vm_node);
587 bo->vm_node = NULL;
588 }
589 write_unlock(&bdev->vm_lock);
590 ttm_bo_cleanup_refs(bo, false);
591 kref_put(&bo->list_kref, ttm_bo_release_list);
592 write_lock(&bdev->vm_lock);
593}
594
595void ttm_bo_unref(struct ttm_buffer_object **p_bo)
596{
597 struct ttm_buffer_object *bo = *p_bo;
598 struct ttm_bo_device *bdev = bo->bdev;
599
600 *p_bo = NULL;
601 write_lock(&bdev->vm_lock);
602 kref_put(&bo->kref, ttm_bo_release);
603 write_unlock(&bdev->vm_lock);
604}
605EXPORT_SYMBOL(ttm_bo_unref);
606
Matthew Garrett7c5ee532010-04-26 16:00:09 -0400607int ttm_bo_lock_delayed_workqueue(struct ttm_bo_device *bdev)
608{
609 return cancel_delayed_work_sync(&bdev->wq);
610}
611EXPORT_SYMBOL(ttm_bo_lock_delayed_workqueue);
612
613void ttm_bo_unlock_delayed_workqueue(struct ttm_bo_device *bdev, int resched)
614{
615 if (resched)
616 schedule_delayed_work(&bdev->wq,
617 ((HZ / 100) < 1) ? 1 : HZ / 100);
618}
619EXPORT_SYMBOL(ttm_bo_unlock_delayed_workqueue);
620
Jerome Glisseca262a9992009-12-08 15:33:32 +0100621static int ttm_bo_evict(struct ttm_buffer_object *bo, bool interruptible,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000622 bool no_wait_reserve, bool no_wait_gpu)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200623{
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200624 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200625 struct ttm_bo_global *glob = bo->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200626 struct ttm_mem_reg evict_mem;
Jerome Glisseca262a9992009-12-08 15:33:32 +0100627 struct ttm_placement placement;
628 int ret = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200629
630 spin_lock(&bo->lock);
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000631 ret = ttm_bo_wait(bo, false, interruptible, no_wait_gpu);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200632 spin_unlock(&bo->lock);
633
Thomas Hellstrom78ecf092009-06-17 12:29:55 +0200634 if (unlikely(ret != 0)) {
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +0100635 if (ret != -ERESTARTSYS) {
Thomas Hellstrom78ecf092009-06-17 12:29:55 +0200636 printk(KERN_ERR TTM_PFX
637 "Failed to expire sync object before "
638 "buffer eviction.\n");
639 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200640 goto out;
641 }
642
643 BUG_ON(!atomic_read(&bo->reserved));
644
645 evict_mem = bo->mem;
646 evict_mem.mm_node = NULL;
Jerome Glisse82c5da62010-04-09 14:39:23 +0200647 evict_mem.bus.io_reserved = false;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200648
Jerome Glisse7cb7d1d2009-12-09 22:14:27 +0100649 placement.fpfn = 0;
650 placement.lpfn = 0;
651 placement.num_placement = 0;
652 placement.num_busy_placement = 0;
Jerome Glisseca262a9992009-12-08 15:33:32 +0100653 bdev->driver->evict_flags(bo, &placement);
654 ret = ttm_bo_mem_space(bo, &placement, &evict_mem, interruptible,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000655 no_wait_reserve, no_wait_gpu);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200656 if (ret) {
Jerome Glissefb53f862009-12-09 21:55:10 +0100657 if (ret != -ERESTARTSYS) {
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200658 printk(KERN_ERR TTM_PFX
659 "Failed to find memory space for "
660 "buffer 0x%p eviction.\n", bo);
Jerome Glissefb53f862009-12-09 21:55:10 +0100661 ttm_bo_mem_space_debug(bo, &placement);
662 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200663 goto out;
664 }
665
666 ret = ttm_bo_handle_move_mem(bo, &evict_mem, true, interruptible,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000667 no_wait_reserve, no_wait_gpu);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200668 if (ret) {
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +0100669 if (ret != -ERESTARTSYS)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200670 printk(KERN_ERR TTM_PFX "Buffer eviction failed\n");
Jerome Glisseca262a9992009-12-08 15:33:32 +0100671 spin_lock(&glob->lru_lock);
672 if (evict_mem.mm_node) {
673 evict_mem.mm_node->private = NULL;
674 drm_mm_put_block(evict_mem.mm_node);
675 evict_mem.mm_node = NULL;
676 }
677 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200678 goto out;
679 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200680 bo->evicted = true;
681out:
682 return ret;
683}
684
Jerome Glisseca262a9992009-12-08 15:33:32 +0100685static int ttm_mem_evict_first(struct ttm_bo_device *bdev,
686 uint32_t mem_type,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000687 bool interruptible, bool no_wait_reserve,
688 bool no_wait_gpu)
Jerome Glisseca262a9992009-12-08 15:33:32 +0100689{
690 struct ttm_bo_global *glob = bdev->glob;
691 struct ttm_mem_type_manager *man = &bdev->man[mem_type];
692 struct ttm_buffer_object *bo;
693 int ret, put_count = 0;
694
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100695retry:
Jerome Glisseca262a9992009-12-08 15:33:32 +0100696 spin_lock(&glob->lru_lock);
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100697 if (list_empty(&man->lru)) {
698 spin_unlock(&glob->lru_lock);
699 return -EBUSY;
700 }
701
Jerome Glisseca262a9992009-12-08 15:33:32 +0100702 bo = list_first_entry(&man->lru, struct ttm_buffer_object, lru);
703 kref_get(&bo->list_kref);
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100704
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000705 ret = ttm_bo_reserve_locked(bo, false, no_wait_reserve, false, 0);
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100706
707 if (unlikely(ret == -EBUSY)) {
708 spin_unlock(&glob->lru_lock);
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000709 if (likely(!no_wait_gpu))
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100710 ret = ttm_bo_wait_unreserved(bo, interruptible);
711
712 kref_put(&bo->list_kref, ttm_bo_release_list);
713
714 /**
715 * We *need* to retry after releasing the lru lock.
716 */
717
718 if (unlikely(ret != 0))
719 return ret;
720 goto retry;
721 }
722
723 put_count = ttm_bo_del_from_lru(bo);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100724 spin_unlock(&glob->lru_lock);
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100725
726 BUG_ON(ret != 0);
727
Jerome Glisseca262a9992009-12-08 15:33:32 +0100728 while (put_count--)
729 kref_put(&bo->list_kref, ttm_bo_ref_bug);
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100730
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000731 ret = ttm_bo_evict(bo, interruptible, no_wait_reserve, no_wait_gpu);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100732 ttm_bo_unreserve(bo);
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100733
Jerome Glisseca262a9992009-12-08 15:33:32 +0100734 kref_put(&bo->list_kref, ttm_bo_release_list);
735 return ret;
736}
737
738static int ttm_bo_man_get_node(struct ttm_buffer_object *bo,
739 struct ttm_mem_type_manager *man,
740 struct ttm_placement *placement,
741 struct ttm_mem_reg *mem,
742 struct drm_mm_node **node)
743{
744 struct ttm_bo_global *glob = bo->glob;
745 unsigned long lpfn;
746 int ret;
747
748 lpfn = placement->lpfn;
749 if (!lpfn)
750 lpfn = man->size;
751 *node = NULL;
752 do {
753 ret = drm_mm_pre_get(&man->manager);
754 if (unlikely(ret))
755 return ret;
756
757 spin_lock(&glob->lru_lock);
758 *node = drm_mm_search_free_in_range(&man->manager,
759 mem->num_pages, mem->page_alignment,
760 placement->fpfn, lpfn, 1);
761 if (unlikely(*node == NULL)) {
762 spin_unlock(&glob->lru_lock);
763 return 0;
764 }
765 *node = drm_mm_get_block_atomic_range(*node, mem->num_pages,
766 mem->page_alignment,
767 placement->fpfn,
768 lpfn);
769 spin_unlock(&glob->lru_lock);
770 } while (*node == NULL);
771 return 0;
772}
773
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200774/**
775 * Repeatedly evict memory from the LRU for @mem_type until we create enough
776 * space, or we've evicted everything and there isn't enough space.
777 */
Jerome Glisseca262a9992009-12-08 15:33:32 +0100778static int ttm_bo_mem_force_space(struct ttm_buffer_object *bo,
779 uint32_t mem_type,
780 struct ttm_placement *placement,
781 struct ttm_mem_reg *mem,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000782 bool interruptible,
783 bool no_wait_reserve,
784 bool no_wait_gpu)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200785{
Jerome Glisseca262a9992009-12-08 15:33:32 +0100786 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200787 struct ttm_bo_global *glob = bdev->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200788 struct ttm_mem_type_manager *man = &bdev->man[mem_type];
Jerome Glisseca262a9992009-12-08 15:33:32 +0100789 struct drm_mm_node *node;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200790 int ret;
791
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200792 do {
Jerome Glisseca262a9992009-12-08 15:33:32 +0100793 ret = ttm_bo_man_get_node(bo, man, placement, mem, &node);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200794 if (unlikely(ret != 0))
795 return ret;
Jerome Glisseca262a9992009-12-08 15:33:32 +0100796 if (node)
797 break;
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200798 spin_lock(&glob->lru_lock);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100799 if (list_empty(&man->lru)) {
800 spin_unlock(&glob->lru_lock);
801 break;
802 }
803 spin_unlock(&glob->lru_lock);
804 ret = ttm_mem_evict_first(bdev, mem_type, interruptible,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000805 no_wait_reserve, no_wait_gpu);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100806 if (unlikely(ret != 0))
807 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200808 } while (1);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100809 if (node == NULL)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200810 return -ENOMEM;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200811 mem->mm_node = node;
812 mem->mem_type = mem_type;
813 return 0;
814}
815
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200816static uint32_t ttm_bo_select_caching(struct ttm_mem_type_manager *man,
817 uint32_t cur_placement,
818 uint32_t proposed_placement)
819{
820 uint32_t caching = proposed_placement & TTM_PL_MASK_CACHING;
821 uint32_t result = proposed_placement & ~TTM_PL_MASK_CACHING;
822
823 /**
824 * Keep current caching if possible.
825 */
826
827 if ((cur_placement & caching) != 0)
828 result |= (cur_placement & caching);
829 else if ((man->default_caching & caching) != 0)
830 result |= man->default_caching;
831 else if ((TTM_PL_FLAG_CACHED & caching) != 0)
832 result |= TTM_PL_FLAG_CACHED;
833 else if ((TTM_PL_FLAG_WC & caching) != 0)
834 result |= TTM_PL_FLAG_WC;
835 else if ((TTM_PL_FLAG_UNCACHED & caching) != 0)
836 result |= TTM_PL_FLAG_UNCACHED;
837
838 return result;
839}
840
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200841static bool ttm_bo_mt_compatible(struct ttm_mem_type_manager *man,
842 bool disallow_fixed,
843 uint32_t mem_type,
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200844 uint32_t proposed_placement,
845 uint32_t *masked_placement)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200846{
847 uint32_t cur_flags = ttm_bo_type_flags(mem_type);
848
849 if ((man->flags & TTM_MEMTYPE_FLAG_FIXED) && disallow_fixed)
850 return false;
851
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200852 if ((cur_flags & proposed_placement & TTM_PL_MASK_MEM) == 0)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200853 return false;
854
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200855 if ((proposed_placement & man->available_caching) == 0)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200856 return false;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200857
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200858 cur_flags |= (proposed_placement & man->available_caching);
859
860 *masked_placement = cur_flags;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200861 return true;
862}
863
864/**
865 * Creates space for memory region @mem according to its type.
866 *
867 * This function first searches for free space in compatible memory types in
868 * the priority order defined by the driver. If free space isn't found, then
869 * ttm_bo_mem_force_space is attempted in priority order to evict and find
870 * space.
871 */
872int ttm_bo_mem_space(struct ttm_buffer_object *bo,
Jerome Glisseca262a9992009-12-08 15:33:32 +0100873 struct ttm_placement *placement,
874 struct ttm_mem_reg *mem,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000875 bool interruptible, bool no_wait_reserve,
876 bool no_wait_gpu)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200877{
878 struct ttm_bo_device *bdev = bo->bdev;
879 struct ttm_mem_type_manager *man;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200880 uint32_t mem_type = TTM_PL_SYSTEM;
881 uint32_t cur_flags = 0;
882 bool type_found = false;
883 bool type_ok = false;
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +0100884 bool has_erestartsys = false;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200885 struct drm_mm_node *node = NULL;
Jerome Glisseca262a9992009-12-08 15:33:32 +0100886 int i, ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200887
888 mem->mm_node = NULL;
Dave Airlieb6637522009-12-14 14:51:35 +1000889 for (i = 0; i < placement->num_placement; ++i) {
Jerome Glisseca262a9992009-12-08 15:33:32 +0100890 ret = ttm_mem_type_from_flags(placement->placement[i],
891 &mem_type);
892 if (ret)
893 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200894 man = &bdev->man[mem_type];
895
896 type_ok = ttm_bo_mt_compatible(man,
Jerome Glisseca262a9992009-12-08 15:33:32 +0100897 bo->type == ttm_bo_type_user,
898 mem_type,
899 placement->placement[i],
900 &cur_flags);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200901
902 if (!type_ok)
903 continue;
904
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200905 cur_flags = ttm_bo_select_caching(man, bo->mem.placement,
906 cur_flags);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100907 /*
908 * Use the access and other non-mapping-related flag bits from
909 * the memory placement flags to the current flags
910 */
911 ttm_flag_masked(&cur_flags, placement->placement[i],
912 ~TTM_PL_MASK_MEMTYPE);
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200913
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200914 if (mem_type == TTM_PL_SYSTEM)
915 break;
916
917 if (man->has_type && man->use_type) {
918 type_found = true;
Jerome Glisseca262a9992009-12-08 15:33:32 +0100919 ret = ttm_bo_man_get_node(bo, man, placement, mem,
920 &node);
921 if (unlikely(ret))
922 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200923 }
924 if (node)
925 break;
926 }
927
928 if ((type_ok && (mem_type == TTM_PL_SYSTEM)) || node) {
929 mem->mm_node = node;
930 mem->mem_type = mem_type;
931 mem->placement = cur_flags;
Jerome Glisseca262a9992009-12-08 15:33:32 +0100932 if (node)
933 node->private = bo;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200934 return 0;
935 }
936
937 if (!type_found)
938 return -EINVAL;
939
Dave Airlieb6637522009-12-14 14:51:35 +1000940 for (i = 0; i < placement->num_busy_placement; ++i) {
941 ret = ttm_mem_type_from_flags(placement->busy_placement[i],
Jerome Glisseca262a9992009-12-08 15:33:32 +0100942 &mem_type);
943 if (ret)
944 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200945 man = &bdev->man[mem_type];
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200946 if (!man->has_type)
947 continue;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200948 if (!ttm_bo_mt_compatible(man,
Jerome Glisseca262a9992009-12-08 15:33:32 +0100949 bo->type == ttm_bo_type_user,
950 mem_type,
Dave Airlieb6637522009-12-14 14:51:35 +1000951 placement->busy_placement[i],
Jerome Glisseca262a9992009-12-08 15:33:32 +0100952 &cur_flags))
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200953 continue;
954
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200955 cur_flags = ttm_bo_select_caching(man, bo->mem.placement,
956 cur_flags);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100957 /*
958 * Use the access and other non-mapping-related flag bits from
959 * the memory placement flags to the current flags
960 */
Dave Airlieb6637522009-12-14 14:51:35 +1000961 ttm_flag_masked(&cur_flags, placement->busy_placement[i],
Jerome Glisseca262a9992009-12-08 15:33:32 +0100962 ~TTM_PL_MASK_MEMTYPE);
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200963
Thomas Hellstrom0eaddb22010-01-16 16:05:04 +0100964
965 if (mem_type == TTM_PL_SYSTEM) {
966 mem->mem_type = mem_type;
967 mem->placement = cur_flags;
968 mem->mm_node = NULL;
969 return 0;
970 }
971
Jerome Glisseca262a9992009-12-08 15:33:32 +0100972 ret = ttm_bo_mem_force_space(bo, mem_type, placement, mem,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000973 interruptible, no_wait_reserve, no_wait_gpu);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200974 if (ret == 0 && mem->mm_node) {
975 mem->placement = cur_flags;
Jerome Glisseca262a9992009-12-08 15:33:32 +0100976 mem->mm_node->private = bo;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200977 return 0;
978 }
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +0100979 if (ret == -ERESTARTSYS)
980 has_erestartsys = true;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200981 }
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +0100982 ret = (has_erestartsys) ? -ERESTARTSYS : -ENOMEM;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200983 return ret;
984}
985EXPORT_SYMBOL(ttm_bo_mem_space);
986
987int ttm_bo_wait_cpu(struct ttm_buffer_object *bo, bool no_wait)
988{
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200989 if ((atomic_read(&bo->cpu_writers) > 0) && no_wait)
990 return -EBUSY;
991
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +0100992 return wait_event_interruptible(bo->event_queue,
993 atomic_read(&bo->cpu_writers) == 0);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200994}
Ben Skeggsd1ede142009-12-11 15:13:00 +1000995EXPORT_SYMBOL(ttm_bo_wait_cpu);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200996
997int ttm_bo_move_buffer(struct ttm_buffer_object *bo,
Jerome Glisseca262a9992009-12-08 15:33:32 +0100998 struct ttm_placement *placement,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000999 bool interruptible, bool no_wait_reserve,
1000 bool no_wait_gpu)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001001{
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001002 struct ttm_bo_global *glob = bo->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001003 int ret = 0;
1004 struct ttm_mem_reg mem;
1005
1006 BUG_ON(!atomic_read(&bo->reserved));
1007
1008 /*
1009 * FIXME: It's possible to pipeline buffer moves.
1010 * Have the driver move function wait for idle when necessary,
1011 * instead of doing it here.
1012 */
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001013 spin_lock(&bo->lock);
Jerome Glisse9d87fa22010-04-07 10:21:19 +00001014 ret = ttm_bo_wait(bo, false, interruptible, no_wait_gpu);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001015 spin_unlock(&bo->lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001016 if (ret)
1017 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001018 mem.num_pages = bo->num_pages;
1019 mem.size = mem.num_pages << PAGE_SHIFT;
1020 mem.page_alignment = bo->mem.page_alignment;
Jerome Glisse82c5da62010-04-09 14:39:23 +02001021 mem.bus.io_reserved = false;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001022 /*
1023 * Determine where to move the buffer.
1024 */
Jerome Glisse9d87fa22010-04-07 10:21:19 +00001025 ret = ttm_bo_mem_space(bo, placement, &mem, interruptible, no_wait_reserve, no_wait_gpu);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001026 if (ret)
1027 goto out_unlock;
Jerome Glisse9d87fa22010-04-07 10:21:19 +00001028 ret = ttm_bo_handle_move_mem(bo, &mem, false, interruptible, no_wait_reserve, no_wait_gpu);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001029out_unlock:
1030 if (ret && mem.mm_node) {
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001031 spin_lock(&glob->lru_lock);
Jerome Glisseca262a9992009-12-08 15:33:32 +01001032 mem.mm_node->private = NULL;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001033 drm_mm_put_block(mem.mm_node);
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001034 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001035 }
1036 return ret;
1037}
1038
Jerome Glisseca262a9992009-12-08 15:33:32 +01001039static int ttm_bo_mem_compat(struct ttm_placement *placement,
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001040 struct ttm_mem_reg *mem)
1041{
Jerome Glisseca262a9992009-12-08 15:33:32 +01001042 int i;
Thomas Hellstrome22238e2010-02-12 00:18:00 +01001043 struct drm_mm_node *node = mem->mm_node;
1044
1045 if (node && placement->lpfn != 0 &&
1046 (node->start < placement->fpfn ||
1047 node->start + node->size > placement->lpfn))
1048 return -1;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001049
Jerome Glisseca262a9992009-12-08 15:33:32 +01001050 for (i = 0; i < placement->num_placement; i++) {
1051 if ((placement->placement[i] & mem->placement &
1052 TTM_PL_MASK_CACHING) &&
1053 (placement->placement[i] & mem->placement &
1054 TTM_PL_MASK_MEM))
1055 return i;
1056 }
1057 return -1;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001058}
1059
Jerome Glisse09855ac2009-12-10 17:16:27 +01001060int ttm_bo_validate(struct ttm_buffer_object *bo,
1061 struct ttm_placement *placement,
Jerome Glisse9d87fa22010-04-07 10:21:19 +00001062 bool interruptible, bool no_wait_reserve,
1063 bool no_wait_gpu)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001064{
1065 int ret;
1066
1067 BUG_ON(!atomic_read(&bo->reserved));
Jerome Glisseca262a9992009-12-08 15:33:32 +01001068 /* Check that range is valid */
1069 if (placement->lpfn || placement->fpfn)
1070 if (placement->fpfn > placement->lpfn ||
1071 (placement->lpfn - placement->fpfn) < bo->num_pages)
1072 return -EINVAL;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001073 /*
1074 * Check whether we need to move buffer.
1075 */
Jerome Glisseca262a9992009-12-08 15:33:32 +01001076 ret = ttm_bo_mem_compat(placement, &bo->mem);
1077 if (ret < 0) {
Jerome Glisse9d87fa22010-04-07 10:21:19 +00001078 ret = ttm_bo_move_buffer(bo, placement, interruptible, no_wait_reserve, no_wait_gpu);
Jerome Glisseca262a9992009-12-08 15:33:32 +01001079 if (ret)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001080 return ret;
Jerome Glisseca262a9992009-12-08 15:33:32 +01001081 } else {
1082 /*
1083 * Use the access and other non-mapping-related flag bits from
1084 * the compatible memory placement flags to the active flags
1085 */
1086 ttm_flag_masked(&bo->mem.placement, placement->placement[ret],
1087 ~TTM_PL_MASK_MEMTYPE);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001088 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001089 /*
1090 * We might need to add a TTM.
1091 */
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001092 if (bo->mem.mem_type == TTM_PL_SYSTEM && bo->ttm == NULL) {
1093 ret = ttm_bo_add_ttm(bo, true);
1094 if (ret)
1095 return ret;
1096 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001097 return 0;
1098}
Jerome Glisse09855ac2009-12-10 17:16:27 +01001099EXPORT_SYMBOL(ttm_bo_validate);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001100
Jerome Glisse09855ac2009-12-10 17:16:27 +01001101int ttm_bo_check_placement(struct ttm_buffer_object *bo,
1102 struct ttm_placement *placement)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001103{
Jerome Glisse09855ac2009-12-10 17:16:27 +01001104 int i;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001105
Jerome Glisse09855ac2009-12-10 17:16:27 +01001106 if (placement->fpfn || placement->lpfn) {
1107 if (bo->mem.num_pages > (placement->lpfn - placement->fpfn)) {
1108 printk(KERN_ERR TTM_PFX "Page number range to small "
1109 "Need %lu pages, range is [%u, %u]\n",
1110 bo->mem.num_pages, placement->fpfn,
1111 placement->lpfn);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001112 return -EINVAL;
1113 }
Jerome Glisse09855ac2009-12-10 17:16:27 +01001114 }
1115 for (i = 0; i < placement->num_placement; i++) {
1116 if (!capable(CAP_SYS_ADMIN)) {
1117 if (placement->placement[i] & TTM_PL_FLAG_NO_EVICT) {
1118 printk(KERN_ERR TTM_PFX "Need to be root to "
1119 "modify NO_EVICT status.\n");
1120 return -EINVAL;
1121 }
1122 }
1123 }
1124 for (i = 0; i < placement->num_busy_placement; i++) {
1125 if (!capable(CAP_SYS_ADMIN)) {
1126 if (placement->busy_placement[i] & TTM_PL_FLAG_NO_EVICT) {
1127 printk(KERN_ERR TTM_PFX "Need to be root to "
1128 "modify NO_EVICT status.\n");
1129 return -EINVAL;
1130 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001131 }
1132 }
1133 return 0;
1134}
1135
Jerome Glisse09855ac2009-12-10 17:16:27 +01001136int ttm_bo_init(struct ttm_bo_device *bdev,
1137 struct ttm_buffer_object *bo,
1138 unsigned long size,
1139 enum ttm_bo_type type,
1140 struct ttm_placement *placement,
1141 uint32_t page_alignment,
1142 unsigned long buffer_start,
1143 bool interruptible,
1144 struct file *persistant_swap_storage,
1145 size_t acc_size,
1146 void (*destroy) (struct ttm_buffer_object *))
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001147{
Jerome Glisse09855ac2009-12-10 17:16:27 +01001148 int ret = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001149 unsigned long num_pages;
1150
1151 size += buffer_start & ~PAGE_MASK;
1152 num_pages = (size + PAGE_SIZE - 1) >> PAGE_SHIFT;
1153 if (num_pages == 0) {
1154 printk(KERN_ERR TTM_PFX "Illegal buffer object size.\n");
1155 return -EINVAL;
1156 }
1157 bo->destroy = destroy;
1158
1159 spin_lock_init(&bo->lock);
1160 kref_init(&bo->kref);
1161 kref_init(&bo->list_kref);
1162 atomic_set(&bo->cpu_writers, 0);
1163 atomic_set(&bo->reserved, 1);
1164 init_waitqueue_head(&bo->event_queue);
1165 INIT_LIST_HEAD(&bo->lru);
1166 INIT_LIST_HEAD(&bo->ddestroy);
1167 INIT_LIST_HEAD(&bo->swap);
1168 bo->bdev = bdev;
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001169 bo->glob = bdev->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001170 bo->type = type;
1171 bo->num_pages = num_pages;
Jerome Glisseeb6d2c32009-12-10 16:15:52 +01001172 bo->mem.size = num_pages << PAGE_SHIFT;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001173 bo->mem.mem_type = TTM_PL_SYSTEM;
1174 bo->mem.num_pages = bo->num_pages;
1175 bo->mem.mm_node = NULL;
1176 bo->mem.page_alignment = page_alignment;
Jerome Glisse82c5da62010-04-09 14:39:23 +02001177 bo->mem.bus.io_reserved = false;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001178 bo->buffer_start = buffer_start & PAGE_MASK;
1179 bo->priv_flags = 0;
1180 bo->mem.placement = (TTM_PL_FLAG_SYSTEM | TTM_PL_FLAG_CACHED);
1181 bo->seq_valid = false;
1182 bo->persistant_swap_storage = persistant_swap_storage;
1183 bo->acc_size = acc_size;
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001184 atomic_inc(&bo->glob->bo_count);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001185
Jerome Glisse09855ac2009-12-10 17:16:27 +01001186 ret = ttm_bo_check_placement(bo, placement);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001187 if (unlikely(ret != 0))
1188 goto out_err;
1189
1190 /*
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001191 * For ttm_bo_type_device buffers, allocate
1192 * address space from the device.
1193 */
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001194 if (bo->type == ttm_bo_type_device) {
1195 ret = ttm_bo_setup_vm(bo);
1196 if (ret)
1197 goto out_err;
1198 }
1199
Jerome Glisse9d87fa22010-04-07 10:21:19 +00001200 ret = ttm_bo_validate(bo, placement, interruptible, false, false);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001201 if (ret)
1202 goto out_err;
1203
1204 ttm_bo_unreserve(bo);
1205 return 0;
1206
1207out_err:
1208 ttm_bo_unreserve(bo);
1209 ttm_bo_unref(&bo);
1210
1211 return ret;
1212}
Jerome Glisse09855ac2009-12-10 17:16:27 +01001213EXPORT_SYMBOL(ttm_bo_init);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001214
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001215static inline size_t ttm_bo_size(struct ttm_bo_global *glob,
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001216 unsigned long num_pages)
1217{
1218 size_t page_array_size = (num_pages * sizeof(void *) + PAGE_SIZE - 1) &
1219 PAGE_MASK;
1220
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001221 return glob->ttm_bo_size + 2 * page_array_size;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001222}
1223
Jerome Glisse09855ac2009-12-10 17:16:27 +01001224int ttm_bo_create(struct ttm_bo_device *bdev,
1225 unsigned long size,
1226 enum ttm_bo_type type,
1227 struct ttm_placement *placement,
1228 uint32_t page_alignment,
1229 unsigned long buffer_start,
1230 bool interruptible,
1231 struct file *persistant_swap_storage,
1232 struct ttm_buffer_object **p_bo)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001233{
1234 struct ttm_buffer_object *bo;
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001235 struct ttm_mem_global *mem_glob = bdev->glob->mem_glob;
Jerome Glisseca262a9992009-12-08 15:33:32 +01001236 int ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001237
1238 size_t acc_size =
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001239 ttm_bo_size(bdev->glob, (size + PAGE_SIZE - 1) >> PAGE_SHIFT);
Thomas Hellstrom5fd9cba2009-08-17 16:28:39 +02001240 ret = ttm_mem_global_alloc(mem_glob, acc_size, false, false);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001241 if (unlikely(ret != 0))
1242 return ret;
1243
1244 bo = kzalloc(sizeof(*bo), GFP_KERNEL);
1245
1246 if (unlikely(bo == NULL)) {
Thomas Hellstrom5fd9cba2009-08-17 16:28:39 +02001247 ttm_mem_global_free(mem_glob, acc_size);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001248 return -ENOMEM;
1249 }
1250
Jerome Glisse09855ac2009-12-10 17:16:27 +01001251 ret = ttm_bo_init(bdev, bo, size, type, placement, page_alignment,
1252 buffer_start, interruptible,
1253 persistant_swap_storage, acc_size, NULL);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001254 if (likely(ret == 0))
1255 *p_bo = bo;
1256
1257 return ret;
1258}
1259
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001260static int ttm_bo_force_list_clean(struct ttm_bo_device *bdev,
Jerome Glisseca262a9992009-12-08 15:33:32 +01001261 unsigned mem_type, bool allow_errors)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001262{
Jerome Glisseca262a9992009-12-08 15:33:32 +01001263 struct ttm_mem_type_manager *man = &bdev->man[mem_type];
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001264 struct ttm_bo_global *glob = bdev->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001265 int ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001266
1267 /*
1268 * Can't use standard list traversal since we're unlocking.
1269 */
1270
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001271 spin_lock(&glob->lru_lock);
Jerome Glisseca262a9992009-12-08 15:33:32 +01001272 while (!list_empty(&man->lru)) {
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001273 spin_unlock(&glob->lru_lock);
Jerome Glisse9d87fa22010-04-07 10:21:19 +00001274 ret = ttm_mem_evict_first(bdev, mem_type, false, false, false);
Jerome Glisseca262a9992009-12-08 15:33:32 +01001275 if (ret) {
1276 if (allow_errors) {
1277 return ret;
1278 } else {
1279 printk(KERN_ERR TTM_PFX
1280 "Cleanup eviction failed\n");
1281 }
1282 }
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001283 spin_lock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001284 }
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001285 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001286 return 0;
1287}
1288
1289int ttm_bo_clean_mm(struct ttm_bo_device *bdev, unsigned mem_type)
1290{
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001291 struct ttm_bo_global *glob = bdev->glob;
Roel Kluinc96e7c72009-08-03 14:22:53 +02001292 struct ttm_mem_type_manager *man;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001293 int ret = -EINVAL;
1294
1295 if (mem_type >= TTM_NUM_MEM_TYPES) {
1296 printk(KERN_ERR TTM_PFX "Illegal memory type %d\n", mem_type);
1297 return ret;
1298 }
Roel Kluinc96e7c72009-08-03 14:22:53 +02001299 man = &bdev->man[mem_type];
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001300
1301 if (!man->has_type) {
1302 printk(KERN_ERR TTM_PFX "Trying to take down uninitialized "
1303 "memory manager type %u\n", mem_type);
1304 return ret;
1305 }
1306
1307 man->use_type = false;
1308 man->has_type = false;
1309
1310 ret = 0;
1311 if (mem_type > 0) {
Jerome Glisseca262a9992009-12-08 15:33:32 +01001312 ttm_bo_force_list_clean(bdev, mem_type, false);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001313
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001314 spin_lock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001315 if (drm_mm_clean(&man->manager))
1316 drm_mm_takedown(&man->manager);
1317 else
1318 ret = -EBUSY;
1319
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001320 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001321 }
1322
1323 return ret;
1324}
1325EXPORT_SYMBOL(ttm_bo_clean_mm);
1326
1327int ttm_bo_evict_mm(struct ttm_bo_device *bdev, unsigned mem_type)
1328{
1329 struct ttm_mem_type_manager *man = &bdev->man[mem_type];
1330
1331 if (mem_type == 0 || mem_type >= TTM_NUM_MEM_TYPES) {
1332 printk(KERN_ERR TTM_PFX
1333 "Illegal memory manager memory type %u.\n",
1334 mem_type);
1335 return -EINVAL;
1336 }
1337
1338 if (!man->has_type) {
1339 printk(KERN_ERR TTM_PFX
1340 "Memory type %u has not been initialized.\n",
1341 mem_type);
1342 return 0;
1343 }
1344
Jerome Glisseca262a9992009-12-08 15:33:32 +01001345 return ttm_bo_force_list_clean(bdev, mem_type, true);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001346}
1347EXPORT_SYMBOL(ttm_bo_evict_mm);
1348
1349int ttm_bo_init_mm(struct ttm_bo_device *bdev, unsigned type,
Jerome Glisseca262a9992009-12-08 15:33:32 +01001350 unsigned long p_size)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001351{
1352 int ret = -EINVAL;
1353 struct ttm_mem_type_manager *man;
1354
1355 if (type >= TTM_NUM_MEM_TYPES) {
1356 printk(KERN_ERR TTM_PFX "Illegal memory type %d\n", type);
1357 return ret;
1358 }
1359
1360 man = &bdev->man[type];
1361 if (man->has_type) {
1362 printk(KERN_ERR TTM_PFX
1363 "Memory manager already initialized for type %d\n",
1364 type);
1365 return ret;
1366 }
1367
1368 ret = bdev->driver->init_mem_type(bdev, type, man);
1369 if (ret)
1370 return ret;
1371
1372 ret = 0;
1373 if (type != TTM_PL_SYSTEM) {
1374 if (!p_size) {
1375 printk(KERN_ERR TTM_PFX
1376 "Zero size memory manager type %d\n",
1377 type);
1378 return ret;
1379 }
Jerome Glisseca262a9992009-12-08 15:33:32 +01001380 ret = drm_mm_init(&man->manager, 0, p_size);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001381 if (ret)
1382 return ret;
1383 }
1384 man->has_type = true;
1385 man->use_type = true;
1386 man->size = p_size;
1387
1388 INIT_LIST_HEAD(&man->lru);
1389
1390 return 0;
1391}
1392EXPORT_SYMBOL(ttm_bo_init_mm);
1393
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001394static void ttm_bo_global_kobj_release(struct kobject *kobj)
1395{
1396 struct ttm_bo_global *glob =
1397 container_of(kobj, struct ttm_bo_global, kobj);
1398
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001399 ttm_mem_unregister_shrink(glob->mem_glob, &glob->shrink);
1400 __free_page(glob->dummy_read_page);
1401 kfree(glob);
1402}
1403
1404void ttm_bo_global_release(struct ttm_global_reference *ref)
1405{
1406 struct ttm_bo_global *glob = ref->object;
1407
1408 kobject_del(&glob->kobj);
1409 kobject_put(&glob->kobj);
1410}
1411EXPORT_SYMBOL(ttm_bo_global_release);
1412
1413int ttm_bo_global_init(struct ttm_global_reference *ref)
1414{
1415 struct ttm_bo_global_ref *bo_ref =
1416 container_of(ref, struct ttm_bo_global_ref, ref);
1417 struct ttm_bo_global *glob = ref->object;
1418 int ret;
1419
1420 mutex_init(&glob->device_list_mutex);
1421 spin_lock_init(&glob->lru_lock);
1422 glob->mem_glob = bo_ref->mem_glob;
1423 glob->dummy_read_page = alloc_page(__GFP_ZERO | GFP_DMA32);
1424
1425 if (unlikely(glob->dummy_read_page == NULL)) {
1426 ret = -ENOMEM;
1427 goto out_no_drp;
1428 }
1429
1430 INIT_LIST_HEAD(&glob->swap_lru);
1431 INIT_LIST_HEAD(&glob->device_list);
1432
1433 ttm_mem_init_shrink(&glob->shrink, ttm_bo_swapout);
1434 ret = ttm_mem_register_shrink(glob->mem_glob, &glob->shrink);
1435 if (unlikely(ret != 0)) {
1436 printk(KERN_ERR TTM_PFX
1437 "Could not register buffer object swapout.\n");
1438 goto out_no_shrink;
1439 }
1440
1441 glob->ttm_bo_extra_size =
1442 ttm_round_pot(sizeof(struct ttm_tt)) +
1443 ttm_round_pot(sizeof(struct ttm_backend));
1444
1445 glob->ttm_bo_size = glob->ttm_bo_extra_size +
1446 ttm_round_pot(sizeof(struct ttm_buffer_object));
1447
1448 atomic_set(&glob->bo_count, 0);
1449
Robert P. J. Dayb642ed02010-03-13 10:36:32 +00001450 ret = kobject_init_and_add(
1451 &glob->kobj, &ttm_bo_glob_kobj_type, ttm_get_kobj(), "buffer_objects");
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001452 if (unlikely(ret != 0))
1453 kobject_put(&glob->kobj);
1454 return ret;
1455out_no_shrink:
1456 __free_page(glob->dummy_read_page);
1457out_no_drp:
1458 kfree(glob);
1459 return ret;
1460}
1461EXPORT_SYMBOL(ttm_bo_global_init);
1462
1463
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001464int ttm_bo_device_release(struct ttm_bo_device *bdev)
1465{
1466 int ret = 0;
1467 unsigned i = TTM_NUM_MEM_TYPES;
1468 struct ttm_mem_type_manager *man;
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001469 struct ttm_bo_global *glob = bdev->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001470
1471 while (i--) {
1472 man = &bdev->man[i];
1473 if (man->has_type) {
1474 man->use_type = false;
1475 if ((i != TTM_PL_SYSTEM) && ttm_bo_clean_mm(bdev, i)) {
1476 ret = -EBUSY;
1477 printk(KERN_ERR TTM_PFX
1478 "DRM memory manager type %d "
1479 "is not clean.\n", i);
1480 }
1481 man->has_type = false;
1482 }
1483 }
1484
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001485 mutex_lock(&glob->device_list_mutex);
1486 list_del(&bdev->device_list);
1487 mutex_unlock(&glob->device_list_mutex);
1488
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001489 if (!cancel_delayed_work(&bdev->wq))
1490 flush_scheduled_work();
1491
1492 while (ttm_bo_delayed_delete(bdev, true))
1493 ;
1494
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001495 spin_lock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001496 if (list_empty(&bdev->ddestroy))
1497 TTM_DEBUG("Delayed destroy list was clean\n");
1498
1499 if (list_empty(&bdev->man[0].lru))
1500 TTM_DEBUG("Swap list was clean\n");
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001501 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001502
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001503 BUG_ON(!drm_mm_clean(&bdev->addr_space_mm));
1504 write_lock(&bdev->vm_lock);
1505 drm_mm_takedown(&bdev->addr_space_mm);
1506 write_unlock(&bdev->vm_lock);
1507
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001508 return ret;
1509}
1510EXPORT_SYMBOL(ttm_bo_device_release);
1511
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001512int ttm_bo_device_init(struct ttm_bo_device *bdev,
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001513 struct ttm_bo_global *glob,
1514 struct ttm_bo_driver *driver,
Dave Airlie51c8b402009-08-20 13:38:04 +10001515 uint64_t file_page_offset,
Dave Airliead49f502009-07-10 22:36:26 +10001516 bool need_dma32)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001517{
1518 int ret = -EINVAL;
1519
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001520 rwlock_init(&bdev->vm_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001521 bdev->driver = driver;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001522
1523 memset(bdev->man, 0, sizeof(bdev->man));
1524
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001525 /*
1526 * Initialize the system memory buffer type.
1527 * Other types need to be driver / IOCTL initialized.
1528 */
Jerome Glisseca262a9992009-12-08 15:33:32 +01001529 ret = ttm_bo_init_mm(bdev, TTM_PL_SYSTEM, 0);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001530 if (unlikely(ret != 0))
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001531 goto out_no_sys;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001532
1533 bdev->addr_space_rb = RB_ROOT;
1534 ret = drm_mm_init(&bdev->addr_space_mm, file_page_offset, 0x10000000);
1535 if (unlikely(ret != 0))
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001536 goto out_no_addr_mm;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001537
1538 INIT_DELAYED_WORK(&bdev->wq, ttm_bo_delayed_workqueue);
1539 bdev->nice_mode = true;
1540 INIT_LIST_HEAD(&bdev->ddestroy);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001541 bdev->dev_mapping = NULL;
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001542 bdev->glob = glob;
Dave Airliead49f502009-07-10 22:36:26 +10001543 bdev->need_dma32 = need_dma32;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001544
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001545 mutex_lock(&glob->device_list_mutex);
1546 list_add_tail(&bdev->device_list, &glob->device_list);
1547 mutex_unlock(&glob->device_list_mutex);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001548
1549 return 0;
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001550out_no_addr_mm:
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001551 ttm_bo_clean_mm(bdev, 0);
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001552out_no_sys:
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001553 return ret;
1554}
1555EXPORT_SYMBOL(ttm_bo_device_init);
1556
1557/*
1558 * buffer object vm functions.
1559 */
1560
1561bool ttm_mem_reg_is_pci(struct ttm_bo_device *bdev, struct ttm_mem_reg *mem)
1562{
1563 struct ttm_mem_type_manager *man = &bdev->man[mem->mem_type];
1564
1565 if (!(man->flags & TTM_MEMTYPE_FLAG_FIXED)) {
1566 if (mem->mem_type == TTM_PL_SYSTEM)
1567 return false;
1568
1569 if (man->flags & TTM_MEMTYPE_FLAG_CMA)
1570 return false;
1571
1572 if (mem->placement & TTM_PL_FLAG_CACHED)
1573 return false;
1574 }
1575 return true;
1576}
1577
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001578void ttm_bo_unmap_virtual(struct ttm_buffer_object *bo)
1579{
1580 struct ttm_bo_device *bdev = bo->bdev;
1581 loff_t offset = (loff_t) bo->addr_space_offset;
1582 loff_t holelen = ((loff_t) bo->mem.num_pages) << PAGE_SHIFT;
1583
1584 if (!bdev->dev_mapping)
1585 return;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001586 unmap_mapping_range(bdev->dev_mapping, offset, holelen, 1);
Jerome Glisse82c5da62010-04-09 14:39:23 +02001587 ttm_mem_io_free(bdev, &bo->mem);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001588}
Dave Airliee024e112009-06-24 09:48:08 +10001589EXPORT_SYMBOL(ttm_bo_unmap_virtual);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001590
1591static void ttm_bo_vm_insert_rb(struct ttm_buffer_object *bo)
1592{
1593 struct ttm_bo_device *bdev = bo->bdev;
1594 struct rb_node **cur = &bdev->addr_space_rb.rb_node;
1595 struct rb_node *parent = NULL;
1596 struct ttm_buffer_object *cur_bo;
1597 unsigned long offset = bo->vm_node->start;
1598 unsigned long cur_offset;
1599
1600 while (*cur) {
1601 parent = *cur;
1602 cur_bo = rb_entry(parent, struct ttm_buffer_object, vm_rb);
1603 cur_offset = cur_bo->vm_node->start;
1604 if (offset < cur_offset)
1605 cur = &parent->rb_left;
1606 else if (offset > cur_offset)
1607 cur = &parent->rb_right;
1608 else
1609 BUG();
1610 }
1611
1612 rb_link_node(&bo->vm_rb, parent, cur);
1613 rb_insert_color(&bo->vm_rb, &bdev->addr_space_rb);
1614}
1615
1616/**
1617 * ttm_bo_setup_vm:
1618 *
1619 * @bo: the buffer to allocate address space for
1620 *
1621 * Allocate address space in the drm device so that applications
1622 * can mmap the buffer and access the contents. This only
1623 * applies to ttm_bo_type_device objects as others are not
1624 * placed in the drm device address space.
1625 */
1626
1627static int ttm_bo_setup_vm(struct ttm_buffer_object *bo)
1628{
1629 struct ttm_bo_device *bdev = bo->bdev;
1630 int ret;
1631
1632retry_pre_get:
1633 ret = drm_mm_pre_get(&bdev->addr_space_mm);
1634 if (unlikely(ret != 0))
1635 return ret;
1636
1637 write_lock(&bdev->vm_lock);
1638 bo->vm_node = drm_mm_search_free(&bdev->addr_space_mm,
1639 bo->mem.num_pages, 0, 0);
1640
1641 if (unlikely(bo->vm_node == NULL)) {
1642 ret = -ENOMEM;
1643 goto out_unlock;
1644 }
1645
1646 bo->vm_node = drm_mm_get_block_atomic(bo->vm_node,
1647 bo->mem.num_pages, 0);
1648
1649 if (unlikely(bo->vm_node == NULL)) {
1650 write_unlock(&bdev->vm_lock);
1651 goto retry_pre_get;
1652 }
1653
1654 ttm_bo_vm_insert_rb(bo);
1655 write_unlock(&bdev->vm_lock);
1656 bo->addr_space_offset = ((uint64_t) bo->vm_node->start) << PAGE_SHIFT;
1657
1658 return 0;
1659out_unlock:
1660 write_unlock(&bdev->vm_lock);
1661 return ret;
1662}
1663
1664int ttm_bo_wait(struct ttm_buffer_object *bo,
1665 bool lazy, bool interruptible, bool no_wait)
1666{
1667 struct ttm_bo_driver *driver = bo->bdev->driver;
1668 void *sync_obj;
1669 void *sync_obj_arg;
1670 int ret = 0;
1671
1672 if (likely(bo->sync_obj == NULL))
1673 return 0;
1674
1675 while (bo->sync_obj) {
1676
1677 if (driver->sync_obj_signaled(bo->sync_obj, bo->sync_obj_arg)) {
1678 void *tmp_obj = bo->sync_obj;
1679 bo->sync_obj = NULL;
1680 clear_bit(TTM_BO_PRIV_FLAG_MOVING, &bo->priv_flags);
1681 spin_unlock(&bo->lock);
1682 driver->sync_obj_unref(&tmp_obj);
1683 spin_lock(&bo->lock);
1684 continue;
1685 }
1686
1687 if (no_wait)
1688 return -EBUSY;
1689
1690 sync_obj = driver->sync_obj_ref(bo->sync_obj);
1691 sync_obj_arg = bo->sync_obj_arg;
1692 spin_unlock(&bo->lock);
1693 ret = driver->sync_obj_wait(sync_obj, sync_obj_arg,
1694 lazy, interruptible);
1695 if (unlikely(ret != 0)) {
1696 driver->sync_obj_unref(&sync_obj);
1697 spin_lock(&bo->lock);
1698 return ret;
1699 }
1700 spin_lock(&bo->lock);
1701 if (likely(bo->sync_obj == sync_obj &&
1702 bo->sync_obj_arg == sync_obj_arg)) {
1703 void *tmp_obj = bo->sync_obj;
1704 bo->sync_obj = NULL;
1705 clear_bit(TTM_BO_PRIV_FLAG_MOVING,
1706 &bo->priv_flags);
1707 spin_unlock(&bo->lock);
1708 driver->sync_obj_unref(&sync_obj);
1709 driver->sync_obj_unref(&tmp_obj);
1710 spin_lock(&bo->lock);
Thomas Hellstromfee280d2009-08-03 12:39:06 +02001711 } else {
1712 spin_unlock(&bo->lock);
1713 driver->sync_obj_unref(&sync_obj);
1714 spin_lock(&bo->lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001715 }
1716 }
1717 return 0;
1718}
1719EXPORT_SYMBOL(ttm_bo_wait);
1720
1721void ttm_bo_unblock_reservation(struct ttm_buffer_object *bo)
1722{
1723 atomic_set(&bo->reserved, 0);
1724 wake_up_all(&bo->event_queue);
1725}
1726
1727int ttm_bo_block_reservation(struct ttm_buffer_object *bo, bool interruptible,
1728 bool no_wait)
1729{
1730 int ret;
1731
1732 while (unlikely(atomic_cmpxchg(&bo->reserved, 0, 1) != 0)) {
1733 if (no_wait)
1734 return -EBUSY;
1735 else if (interruptible) {
1736 ret = wait_event_interruptible
1737 (bo->event_queue, atomic_read(&bo->reserved) == 0);
1738 if (unlikely(ret != 0))
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +01001739 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001740 } else {
1741 wait_event(bo->event_queue,
1742 atomic_read(&bo->reserved) == 0);
1743 }
1744 }
1745 return 0;
1746}
1747
1748int ttm_bo_synccpu_write_grab(struct ttm_buffer_object *bo, bool no_wait)
1749{
1750 int ret = 0;
1751
1752 /*
1753 * Using ttm_bo_reserve instead of ttm_bo_block_reservation
1754 * makes sure the lru lists are updated.
1755 */
1756
1757 ret = ttm_bo_reserve(bo, true, no_wait, false, 0);
1758 if (unlikely(ret != 0))
1759 return ret;
1760 spin_lock(&bo->lock);
1761 ret = ttm_bo_wait(bo, false, true, no_wait);
1762 spin_unlock(&bo->lock);
1763 if (likely(ret == 0))
1764 atomic_inc(&bo->cpu_writers);
1765 ttm_bo_unreserve(bo);
1766 return ret;
1767}
Ben Skeggsd1ede142009-12-11 15:13:00 +10001768EXPORT_SYMBOL(ttm_bo_synccpu_write_grab);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001769
1770void ttm_bo_synccpu_write_release(struct ttm_buffer_object *bo)
1771{
1772 if (atomic_dec_and_test(&bo->cpu_writers))
1773 wake_up_all(&bo->event_queue);
1774}
Ben Skeggsd1ede142009-12-11 15:13:00 +10001775EXPORT_SYMBOL(ttm_bo_synccpu_write_release);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001776
1777/**
1778 * A buffer object shrink method that tries to swap out the first
1779 * buffer object on the bo_global::swap_lru list.
1780 */
1781
1782static int ttm_bo_swapout(struct ttm_mem_shrink *shrink)
1783{
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001784 struct ttm_bo_global *glob =
1785 container_of(shrink, struct ttm_bo_global, shrink);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001786 struct ttm_buffer_object *bo;
1787 int ret = -EBUSY;
1788 int put_count;
1789 uint32_t swap_placement = (TTM_PL_FLAG_CACHED | TTM_PL_FLAG_SYSTEM);
1790
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001791 spin_lock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001792 while (ret == -EBUSY) {
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001793 if (unlikely(list_empty(&glob->swap_lru))) {
1794 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001795 return -EBUSY;
1796 }
1797
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001798 bo = list_first_entry(&glob->swap_lru,
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001799 struct ttm_buffer_object, swap);
1800 kref_get(&bo->list_kref);
1801
1802 /**
1803 * Reserve buffer. Since we unlock while sleeping, we need
1804 * to re-check that nobody removed us from the swap-list while
1805 * we slept.
1806 */
1807
1808 ret = ttm_bo_reserve_locked(bo, false, true, false, 0);
1809 if (unlikely(ret == -EBUSY)) {
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001810 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001811 ttm_bo_wait_unreserved(bo, false);
1812 kref_put(&bo->list_kref, ttm_bo_release_list);
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001813 spin_lock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001814 }
1815 }
1816
1817 BUG_ON(ret != 0);
1818 put_count = ttm_bo_del_from_lru(bo);
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001819 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001820
1821 while (put_count--)
1822 kref_put(&bo->list_kref, ttm_bo_ref_bug);
1823
1824 /**
1825 * Wait for GPU, then move to system cached.
1826 */
1827
1828 spin_lock(&bo->lock);
1829 ret = ttm_bo_wait(bo, false, false, false);
1830 spin_unlock(&bo->lock);
1831
1832 if (unlikely(ret != 0))
1833 goto out;
1834
1835 if ((bo->mem.placement & swap_placement) != swap_placement) {
1836 struct ttm_mem_reg evict_mem;
1837
1838 evict_mem = bo->mem;
1839 evict_mem.mm_node = NULL;
1840 evict_mem.placement = TTM_PL_FLAG_SYSTEM | TTM_PL_FLAG_CACHED;
1841 evict_mem.mem_type = TTM_PL_SYSTEM;
1842
1843 ret = ttm_bo_handle_move_mem(bo, &evict_mem, true,
Jerome Glisse9d87fa22010-04-07 10:21:19 +00001844 false, false, false);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001845 if (unlikely(ret != 0))
1846 goto out;
1847 }
1848
1849 ttm_bo_unmap_virtual(bo);
1850
1851 /**
1852 * Swap out. Buffer will be swapped in again as soon as
1853 * anyone tries to access a ttm page.
1854 */
1855
Thomas Hellstrom3f09ea42010-01-13 22:28:40 +01001856 if (bo->bdev->driver->swap_notify)
1857 bo->bdev->driver->swap_notify(bo);
1858
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001859 ret = ttm_tt_swapout(bo->ttm, bo->persistant_swap_storage);
1860out:
1861
1862 /**
1863 *
1864 * Unreserve without putting on LRU to avoid swapping out an
1865 * already swapped buffer.
1866 */
1867
1868 atomic_set(&bo->reserved, 0);
1869 wake_up_all(&bo->event_queue);
1870 kref_put(&bo->list_kref, ttm_bo_release_list);
1871 return ret;
1872}
1873
1874void ttm_bo_swapout_all(struct ttm_bo_device *bdev)
1875{
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001876 while (ttm_bo_swapout(&bdev->glob->shrink) == 0)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001877 ;
1878}
Thomas Hellstrome99e1e72010-01-13 22:28:42 +01001879EXPORT_SYMBOL(ttm_bo_swapout_all);