blob: e00ed6942067c3f872dfd6f63699ad2d8feec0d0 [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
74static void ttm_mem_type_manager_debug(struct ttm_bo_global *glob,
75 struct ttm_mem_type_manager *man)
76{
77 printk(KERN_ERR TTM_PFX " has_type: %d\n", man->has_type);
78 printk(KERN_ERR TTM_PFX " use_type: %d\n", man->use_type);
79 printk(KERN_ERR TTM_PFX " flags: 0x%08X\n", man->flags);
80 printk(KERN_ERR TTM_PFX " gpu_offset: 0x%08lX\n", man->gpu_offset);
81 printk(KERN_ERR TTM_PFX " io_offset: 0x%08lX\n", man->io_offset);
82 printk(KERN_ERR TTM_PFX " io_size: %ld\n", man->io_size);
Jerome Glisseeb6d2c32009-12-10 16:15:52 +010083 printk(KERN_ERR TTM_PFX " size: %llu\n", man->size);
Jerome Glissefb53f862009-12-09 21:55:10 +010084 printk(KERN_ERR TTM_PFX " available_caching: 0x%08X\n",
85 man->available_caching);
86 printk(KERN_ERR TTM_PFX " default_caching: 0x%08X\n",
87 man->default_caching);
88 spin_lock(&glob->lru_lock);
89 drm_mm_debug_table(&man->manager, TTM_PFX);
90 spin_unlock(&glob->lru_lock);
91}
92
93static void ttm_bo_mem_space_debug(struct ttm_buffer_object *bo,
94 struct ttm_placement *placement)
95{
96 struct ttm_bo_device *bdev = bo->bdev;
97 struct ttm_bo_global *glob = bo->glob;
98 struct ttm_mem_type_manager *man;
99 int i, ret, mem_type;
100
Jerome Glisseeb6d2c32009-12-10 16:15:52 +0100101 printk(KERN_ERR TTM_PFX "No space for %p (%lu pages, %luK, %luM)\n",
Jerome Glissefb53f862009-12-09 21:55:10 +0100102 bo, bo->mem.num_pages, bo->mem.size >> 10,
103 bo->mem.size >> 20);
104 for (i = 0; i < placement->num_placement; i++) {
105 ret = ttm_mem_type_from_flags(placement->placement[i],
106 &mem_type);
107 if (ret)
108 return;
109 man = &bdev->man[mem_type];
110 printk(KERN_ERR TTM_PFX " placement[%d]=0x%08X (%d)\n",
111 i, placement->placement[i], mem_type);
112 ttm_mem_type_manager_debug(glob, man);
113 }
114}
115
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200116static ssize_t ttm_bo_global_show(struct kobject *kobj,
117 struct attribute *attr,
118 char *buffer)
119{
120 struct ttm_bo_global *glob =
121 container_of(kobj, struct ttm_bo_global, kobj);
122
123 return snprintf(buffer, PAGE_SIZE, "%lu\n",
124 (unsigned long) atomic_read(&glob->bo_count));
125}
126
127static struct attribute *ttm_bo_global_attrs[] = {
128 &ttm_bo_count,
129 NULL
130};
131
132static struct sysfs_ops ttm_bo_global_ops = {
133 .show = &ttm_bo_global_show
134};
135
136static struct kobj_type ttm_bo_glob_kobj_type = {
137 .release = &ttm_bo_global_kobj_release,
138 .sysfs_ops = &ttm_bo_global_ops,
139 .default_attrs = ttm_bo_global_attrs
140};
141
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200142
143static inline uint32_t ttm_bo_type_flags(unsigned type)
144{
145 return 1 << (type);
146}
147
148static void ttm_bo_release_list(struct kref *list_kref)
149{
150 struct ttm_buffer_object *bo =
151 container_of(list_kref, struct ttm_buffer_object, list_kref);
152 struct ttm_bo_device *bdev = bo->bdev;
153
154 BUG_ON(atomic_read(&bo->list_kref.refcount));
155 BUG_ON(atomic_read(&bo->kref.refcount));
156 BUG_ON(atomic_read(&bo->cpu_writers));
157 BUG_ON(bo->sync_obj != NULL);
158 BUG_ON(bo->mem.mm_node != NULL);
159 BUG_ON(!list_empty(&bo->lru));
160 BUG_ON(!list_empty(&bo->ddestroy));
161
162 if (bo->ttm)
163 ttm_tt_destroy(bo->ttm);
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200164 atomic_dec(&bo->glob->bo_count);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200165 if (bo->destroy)
166 bo->destroy(bo);
167 else {
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200168 ttm_mem_global_free(bdev->glob->mem_glob, bo->acc_size);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200169 kfree(bo);
170 }
171}
172
173int ttm_bo_wait_unreserved(struct ttm_buffer_object *bo, bool interruptible)
174{
175
176 if (interruptible) {
177 int ret = 0;
178
179 ret = wait_event_interruptible(bo->event_queue,
180 atomic_read(&bo->reserved) == 0);
181 if (unlikely(ret != 0))
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +0100182 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200183 } else {
184 wait_event(bo->event_queue, atomic_read(&bo->reserved) == 0);
185 }
186 return 0;
187}
Ben Skeggsd1ede142009-12-11 15:13:00 +1000188EXPORT_SYMBOL(ttm_bo_wait_unreserved);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200189
190static void ttm_bo_add_to_lru(struct ttm_buffer_object *bo)
191{
192 struct ttm_bo_device *bdev = bo->bdev;
193 struct ttm_mem_type_manager *man;
194
195 BUG_ON(!atomic_read(&bo->reserved));
196
197 if (!(bo->mem.placement & TTM_PL_FLAG_NO_EVICT)) {
198
199 BUG_ON(!list_empty(&bo->lru));
200
201 man = &bdev->man[bo->mem.mem_type];
202 list_add_tail(&bo->lru, &man->lru);
203 kref_get(&bo->list_kref);
204
205 if (bo->ttm != NULL) {
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200206 list_add_tail(&bo->swap, &bo->glob->swap_lru);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200207 kref_get(&bo->list_kref);
208 }
209 }
210}
211
212/**
213 * Call with the lru_lock held.
214 */
215
216static int ttm_bo_del_from_lru(struct ttm_buffer_object *bo)
217{
218 int put_count = 0;
219
220 if (!list_empty(&bo->swap)) {
221 list_del_init(&bo->swap);
222 ++put_count;
223 }
224 if (!list_empty(&bo->lru)) {
225 list_del_init(&bo->lru);
226 ++put_count;
227 }
228
229 /*
230 * TODO: Add a driver hook to delete from
231 * driver-specific LRU's here.
232 */
233
234 return put_count;
235}
236
237int ttm_bo_reserve_locked(struct ttm_buffer_object *bo,
238 bool interruptible,
239 bool no_wait, bool use_sequence, uint32_t sequence)
240{
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200241 struct ttm_bo_global *glob = bo->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200242 int ret;
243
244 while (unlikely(atomic_cmpxchg(&bo->reserved, 0, 1) != 0)) {
245 if (use_sequence && bo->seq_valid &&
246 (sequence - bo->val_seq < (1 << 31))) {
247 return -EAGAIN;
248 }
249
250 if (no_wait)
251 return -EBUSY;
252
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200253 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200254 ret = ttm_bo_wait_unreserved(bo, interruptible);
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200255 spin_lock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200256
257 if (unlikely(ret))
258 return ret;
259 }
260
261 if (use_sequence) {
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
277int ttm_bo_reserve(struct ttm_buffer_object *bo,
278 bool interruptible,
279 bool no_wait, bool use_sequence, uint32_t sequence)
280{
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200281 struct ttm_bo_global *glob = bo->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200282 int put_count = 0;
283 int ret;
284
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200285 spin_lock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200286 ret = ttm_bo_reserve_locked(bo, interruptible, no_wait, use_sequence,
287 sequence);
288 if (likely(ret == 0))
289 put_count = ttm_bo_del_from_lru(bo);
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200290 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200291
292 while (put_count--)
293 kref_put(&bo->list_kref, ttm_bo_ref_bug);
294
295 return ret;
296}
297
298void ttm_bo_unreserve(struct ttm_buffer_object *bo)
299{
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200300 struct ttm_bo_global *glob = bo->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200301
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200302 spin_lock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200303 ttm_bo_add_to_lru(bo);
304 atomic_set(&bo->reserved, 0);
305 wake_up_all(&bo->event_queue);
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200306 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200307}
308EXPORT_SYMBOL(ttm_bo_unreserve);
309
310/*
311 * Call bo->mutex locked.
312 */
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200313static int ttm_bo_add_ttm(struct ttm_buffer_object *bo, bool zero_alloc)
314{
315 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200316 struct ttm_bo_global *glob = bo->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200317 int ret = 0;
318 uint32_t page_flags = 0;
319
320 TTM_ASSERT_LOCKED(&bo->mutex);
321 bo->ttm = NULL;
322
Dave Airliead49f502009-07-10 22:36:26 +1000323 if (bdev->need_dma32)
324 page_flags |= TTM_PAGE_FLAG_DMA32;
325
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200326 switch (bo->type) {
327 case ttm_bo_type_device:
328 if (zero_alloc)
329 page_flags |= TTM_PAGE_FLAG_ZERO_ALLOC;
330 case ttm_bo_type_kernel:
331 bo->ttm = ttm_tt_create(bdev, bo->num_pages << PAGE_SHIFT,
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200332 page_flags, glob->dummy_read_page);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200333 if (unlikely(bo->ttm == NULL))
334 ret = -ENOMEM;
335 break;
336 case ttm_bo_type_user:
337 bo->ttm = ttm_tt_create(bdev, bo->num_pages << PAGE_SHIFT,
338 page_flags | TTM_PAGE_FLAG_USER,
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200339 glob->dummy_read_page);
Dave Airlie447aeb92009-12-08 09:25:45 +1000340 if (unlikely(bo->ttm == NULL)) {
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200341 ret = -ENOMEM;
Dave Airlie447aeb92009-12-08 09:25:45 +1000342 break;
343 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200344
345 ret = ttm_tt_set_user(bo->ttm, current,
346 bo->buffer_start, bo->num_pages);
347 if (unlikely(ret != 0))
348 ttm_tt_destroy(bo->ttm);
349 break;
350 default:
351 printk(KERN_ERR TTM_PFX "Illegal buffer object type\n");
352 ret = -EINVAL;
353 break;
354 }
355
356 return ret;
357}
358
359static int ttm_bo_handle_move_mem(struct ttm_buffer_object *bo,
360 struct ttm_mem_reg *mem,
361 bool evict, bool interruptible, bool no_wait)
362{
363 struct ttm_bo_device *bdev = bo->bdev;
364 bool old_is_pci = ttm_mem_reg_is_pci(bdev, &bo->mem);
365 bool new_is_pci = ttm_mem_reg_is_pci(bdev, mem);
366 struct ttm_mem_type_manager *old_man = &bdev->man[bo->mem.mem_type];
367 struct ttm_mem_type_manager *new_man = &bdev->man[mem->mem_type];
368 int ret = 0;
369
370 if (old_is_pci || new_is_pci ||
371 ((mem->placement & bo->mem.placement & TTM_PL_MASK_CACHING) == 0))
372 ttm_bo_unmap_virtual(bo);
373
374 /*
375 * Create and bind a ttm if required.
376 */
377
378 if (!(new_man->flags & TTM_MEMTYPE_FLAG_FIXED) && (bo->ttm == NULL)) {
379 ret = ttm_bo_add_ttm(bo, false);
380 if (ret)
381 goto out_err;
382
383 ret = ttm_tt_set_placement_caching(bo->ttm, mem->placement);
384 if (ret)
Thomas Hellstrom87ef9202009-06-17 12:29:57 +0200385 goto out_err;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200386
387 if (mem->mem_type != TTM_PL_SYSTEM) {
388 ret = ttm_tt_bind(bo->ttm, mem);
389 if (ret)
390 goto out_err;
391 }
392
393 if (bo->mem.mem_type == TTM_PL_SYSTEM) {
Jerome Glisseca262a9992009-12-08 15:33:32 +0100394 bo->mem = *mem;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200395 mem->mm_node = NULL;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200396 goto moved;
397 }
398
399 }
400
Dave Airliee024e112009-06-24 09:48:08 +1000401 if (bdev->driver->move_notify)
402 bdev->driver->move_notify(bo, mem);
403
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200404 if (!(old_man->flags & TTM_MEMTYPE_FLAG_FIXED) &&
405 !(new_man->flags & TTM_MEMTYPE_FLAG_FIXED))
406 ret = ttm_bo_move_ttm(bo, evict, no_wait, mem);
407 else if (bdev->driver->move)
408 ret = bdev->driver->move(bo, evict, interruptible,
409 no_wait, mem);
410 else
411 ret = ttm_bo_move_memcpy(bo, evict, no_wait, mem);
412
413 if (ret)
414 goto out_err;
415
416moved:
417 if (bo->evicted) {
418 ret = bdev->driver->invalidate_caches(bdev, bo->mem.placement);
419 if (ret)
420 printk(KERN_ERR TTM_PFX "Can not flush read caches\n");
421 bo->evicted = false;
422 }
423
424 if (bo->mem.mm_node) {
425 spin_lock(&bo->lock);
426 bo->offset = (bo->mem.mm_node->start << PAGE_SHIFT) +
427 bdev->man[bo->mem.mem_type].gpu_offset;
428 bo->cur_placement = bo->mem.placement;
429 spin_unlock(&bo->lock);
430 }
431
432 return 0;
433
434out_err:
435 new_man = &bdev->man[bo->mem.mem_type];
436 if ((new_man->flags & TTM_MEMTYPE_FLAG_FIXED) && bo->ttm) {
437 ttm_tt_unbind(bo->ttm);
438 ttm_tt_destroy(bo->ttm);
439 bo->ttm = NULL;
440 }
441
442 return ret;
443}
444
445/**
446 * If bo idle, remove from delayed- and lru lists, and unref.
447 * If not idle, and already on delayed list, do nothing.
448 * If not idle, and not on delayed list, put on delayed list,
449 * up the list_kref and schedule a delayed list check.
450 */
451
452static int ttm_bo_cleanup_refs(struct ttm_buffer_object *bo, bool remove_all)
453{
454 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200455 struct ttm_bo_global *glob = bo->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200456 struct ttm_bo_driver *driver = bdev->driver;
457 int ret;
458
459 spin_lock(&bo->lock);
460 (void) ttm_bo_wait(bo, false, false, !remove_all);
461
462 if (!bo->sync_obj) {
463 int put_count;
464
465 spin_unlock(&bo->lock);
466
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200467 spin_lock(&glob->lru_lock);
Thomas Hellstromaaa20732009-12-02 18:33:45 +0100468 put_count = ttm_bo_del_from_lru(bo);
469
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200470 ret = ttm_bo_reserve_locked(bo, false, false, false, 0);
471 BUG_ON(ret);
472 if (bo->ttm)
473 ttm_tt_unbind(bo->ttm);
474
475 if (!list_empty(&bo->ddestroy)) {
476 list_del_init(&bo->ddestroy);
Thomas Hellstromaaa20732009-12-02 18:33:45 +0100477 ++put_count;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200478 }
479 if (bo->mem.mm_node) {
Jerome Glisseca262a9992009-12-08 15:33:32 +0100480 bo->mem.mm_node->private = NULL;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200481 drm_mm_put_block(bo->mem.mm_node);
482 bo->mem.mm_node = NULL;
483 }
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200484 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200485
486 atomic_set(&bo->reserved, 0);
487
488 while (put_count--)
Thomas Hellstromaaa20732009-12-02 18:33:45 +0100489 kref_put(&bo->list_kref, ttm_bo_ref_bug);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200490
491 return 0;
492 }
493
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200494 spin_lock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200495 if (list_empty(&bo->ddestroy)) {
496 void *sync_obj = bo->sync_obj;
497 void *sync_obj_arg = bo->sync_obj_arg;
498
499 kref_get(&bo->list_kref);
500 list_add_tail(&bo->ddestroy, &bdev->ddestroy);
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200501 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200502 spin_unlock(&bo->lock);
503
504 if (sync_obj)
505 driver->sync_obj_flush(sync_obj, sync_obj_arg);
506 schedule_delayed_work(&bdev->wq,
507 ((HZ / 100) < 1) ? 1 : HZ / 100);
508 ret = 0;
509
510 } else {
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200511 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200512 spin_unlock(&bo->lock);
513 ret = -EBUSY;
514 }
515
516 return ret;
517}
518
519/**
520 * Traverse the delayed list, and call ttm_bo_cleanup_refs on all
521 * encountered buffers.
522 */
523
524static int ttm_bo_delayed_delete(struct ttm_bo_device *bdev, bool remove_all)
525{
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200526 struct ttm_bo_global *glob = bdev->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200527 struct ttm_buffer_object *entry, *nentry;
528 struct list_head *list, *next;
529 int ret;
530
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200531 spin_lock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200532 list_for_each_safe(list, next, &bdev->ddestroy) {
533 entry = list_entry(list, struct ttm_buffer_object, ddestroy);
534 nentry = NULL;
535
536 /*
537 * Protect the next list entry from destruction while we
538 * unlock the lru_lock.
539 */
540
541 if (next != &bdev->ddestroy) {
542 nentry = list_entry(next, struct ttm_buffer_object,
543 ddestroy);
544 kref_get(&nentry->list_kref);
545 }
546 kref_get(&entry->list_kref);
547
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200548 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200549 ret = ttm_bo_cleanup_refs(entry, remove_all);
550 kref_put(&entry->list_kref, ttm_bo_release_list);
551
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200552 spin_lock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200553 if (nentry) {
554 bool next_onlist = !list_empty(next);
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200555 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200556 kref_put(&nentry->list_kref, ttm_bo_release_list);
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200557 spin_lock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200558 /*
559 * Someone might have raced us and removed the
560 * next entry from the list. We don't bother restarting
561 * list traversal.
562 */
563
564 if (!next_onlist)
565 break;
566 }
567 if (ret)
568 break;
569 }
570 ret = !list_empty(&bdev->ddestroy);
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200571 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200572
573 return ret;
574}
575
576static void ttm_bo_delayed_workqueue(struct work_struct *work)
577{
578 struct ttm_bo_device *bdev =
579 container_of(work, struct ttm_bo_device, wq.work);
580
581 if (ttm_bo_delayed_delete(bdev, false)) {
582 schedule_delayed_work(&bdev->wq,
583 ((HZ / 100) < 1) ? 1 : HZ / 100);
584 }
585}
586
587static void ttm_bo_release(struct kref *kref)
588{
589 struct ttm_buffer_object *bo =
590 container_of(kref, struct ttm_buffer_object, kref);
591 struct ttm_bo_device *bdev = bo->bdev;
592
593 if (likely(bo->vm_node != NULL)) {
594 rb_erase(&bo->vm_rb, &bdev->addr_space_rb);
595 drm_mm_put_block(bo->vm_node);
596 bo->vm_node = NULL;
597 }
598 write_unlock(&bdev->vm_lock);
599 ttm_bo_cleanup_refs(bo, false);
600 kref_put(&bo->list_kref, ttm_bo_release_list);
601 write_lock(&bdev->vm_lock);
602}
603
604void ttm_bo_unref(struct ttm_buffer_object **p_bo)
605{
606 struct ttm_buffer_object *bo = *p_bo;
607 struct ttm_bo_device *bdev = bo->bdev;
608
609 *p_bo = NULL;
610 write_lock(&bdev->vm_lock);
611 kref_put(&bo->kref, ttm_bo_release);
612 write_unlock(&bdev->vm_lock);
613}
614EXPORT_SYMBOL(ttm_bo_unref);
615
Jerome Glisseca262a9992009-12-08 15:33:32 +0100616static int ttm_bo_evict(struct ttm_buffer_object *bo, bool interruptible,
617 bool no_wait)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200618{
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200619 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200620 struct ttm_bo_global *glob = bo->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200621 struct ttm_mem_reg evict_mem;
Jerome Glisseca262a9992009-12-08 15:33:32 +0100622 struct ttm_placement placement;
623 int ret = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200624
625 spin_lock(&bo->lock);
626 ret = ttm_bo_wait(bo, false, interruptible, no_wait);
627 spin_unlock(&bo->lock);
628
Thomas Hellstrom78ecf092009-06-17 12:29:55 +0200629 if (unlikely(ret != 0)) {
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +0100630 if (ret != -ERESTARTSYS) {
Thomas Hellstrom78ecf092009-06-17 12:29:55 +0200631 printk(KERN_ERR TTM_PFX
632 "Failed to expire sync object before "
633 "buffer eviction.\n");
634 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200635 goto out;
636 }
637
638 BUG_ON(!atomic_read(&bo->reserved));
639
640 evict_mem = bo->mem;
641 evict_mem.mm_node = NULL;
642
Jerome Glisse7cb7d1d2009-12-09 22:14:27 +0100643 placement.fpfn = 0;
644 placement.lpfn = 0;
645 placement.num_placement = 0;
646 placement.num_busy_placement = 0;
Jerome Glisseca262a9992009-12-08 15:33:32 +0100647 bdev->driver->evict_flags(bo, &placement);
648 ret = ttm_bo_mem_space(bo, &placement, &evict_mem, interruptible,
649 no_wait);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200650 if (ret) {
Jerome Glissefb53f862009-12-09 21:55:10 +0100651 if (ret != -ERESTARTSYS) {
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200652 printk(KERN_ERR TTM_PFX
653 "Failed to find memory space for "
654 "buffer 0x%p eviction.\n", bo);
Jerome Glissefb53f862009-12-09 21:55:10 +0100655 ttm_bo_mem_space_debug(bo, &placement);
656 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200657 goto out;
658 }
659
660 ret = ttm_bo_handle_move_mem(bo, &evict_mem, true, interruptible,
661 no_wait);
662 if (ret) {
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +0100663 if (ret != -ERESTARTSYS)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200664 printk(KERN_ERR TTM_PFX "Buffer eviction failed\n");
Jerome Glisseca262a9992009-12-08 15:33:32 +0100665 spin_lock(&glob->lru_lock);
666 if (evict_mem.mm_node) {
667 evict_mem.mm_node->private = NULL;
668 drm_mm_put_block(evict_mem.mm_node);
669 evict_mem.mm_node = NULL;
670 }
671 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200672 goto out;
673 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200674 bo->evicted = true;
675out:
676 return ret;
677}
678
Jerome Glisseca262a9992009-12-08 15:33:32 +0100679static int ttm_mem_evict_first(struct ttm_bo_device *bdev,
680 uint32_t mem_type,
681 bool interruptible, bool no_wait)
682{
683 struct ttm_bo_global *glob = bdev->glob;
684 struct ttm_mem_type_manager *man = &bdev->man[mem_type];
685 struct ttm_buffer_object *bo;
686 int ret, put_count = 0;
687
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100688retry:
Jerome Glisseca262a9992009-12-08 15:33:32 +0100689 spin_lock(&glob->lru_lock);
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100690 if (list_empty(&man->lru)) {
691 spin_unlock(&glob->lru_lock);
692 return -EBUSY;
693 }
694
Jerome Glisseca262a9992009-12-08 15:33:32 +0100695 bo = list_first_entry(&man->lru, struct ttm_buffer_object, lru);
696 kref_get(&bo->list_kref);
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100697
698 ret = ttm_bo_reserve_locked(bo, false, true, false, 0);
699
700 if (unlikely(ret == -EBUSY)) {
701 spin_unlock(&glob->lru_lock);
702 if (likely(!no_wait))
703 ret = ttm_bo_wait_unreserved(bo, interruptible);
704
705 kref_put(&bo->list_kref, ttm_bo_release_list);
706
707 /**
708 * We *need* to retry after releasing the lru lock.
709 */
710
711 if (unlikely(ret != 0))
712 return ret;
713 goto retry;
714 }
715
716 put_count = ttm_bo_del_from_lru(bo);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100717 spin_unlock(&glob->lru_lock);
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100718
719 BUG_ON(ret != 0);
720
Jerome Glisseca262a9992009-12-08 15:33:32 +0100721 while (put_count--)
722 kref_put(&bo->list_kref, ttm_bo_ref_bug);
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100723
Jerome Glisseca262a9992009-12-08 15:33:32 +0100724 ret = ttm_bo_evict(bo, interruptible, no_wait);
725 ttm_bo_unreserve(bo);
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100726
Jerome Glisseca262a9992009-12-08 15:33:32 +0100727 kref_put(&bo->list_kref, ttm_bo_release_list);
728 return ret;
729}
730
731static int ttm_bo_man_get_node(struct ttm_buffer_object *bo,
732 struct ttm_mem_type_manager *man,
733 struct ttm_placement *placement,
734 struct ttm_mem_reg *mem,
735 struct drm_mm_node **node)
736{
737 struct ttm_bo_global *glob = bo->glob;
738 unsigned long lpfn;
739 int ret;
740
741 lpfn = placement->lpfn;
742 if (!lpfn)
743 lpfn = man->size;
744 *node = NULL;
745 do {
746 ret = drm_mm_pre_get(&man->manager);
747 if (unlikely(ret))
748 return ret;
749
750 spin_lock(&glob->lru_lock);
751 *node = drm_mm_search_free_in_range(&man->manager,
752 mem->num_pages, mem->page_alignment,
753 placement->fpfn, lpfn, 1);
754 if (unlikely(*node == NULL)) {
755 spin_unlock(&glob->lru_lock);
756 return 0;
757 }
758 *node = drm_mm_get_block_atomic_range(*node, mem->num_pages,
759 mem->page_alignment,
760 placement->fpfn,
761 lpfn);
762 spin_unlock(&glob->lru_lock);
763 } while (*node == NULL);
764 return 0;
765}
766
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200767/**
768 * Repeatedly evict memory from the LRU for @mem_type until we create enough
769 * space, or we've evicted everything and there isn't enough space.
770 */
Jerome Glisseca262a9992009-12-08 15:33:32 +0100771static int ttm_bo_mem_force_space(struct ttm_buffer_object *bo,
772 uint32_t mem_type,
773 struct ttm_placement *placement,
774 struct ttm_mem_reg *mem,
775 bool interruptible, bool no_wait)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200776{
Jerome Glisseca262a9992009-12-08 15:33:32 +0100777 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200778 struct ttm_bo_global *glob = bdev->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200779 struct ttm_mem_type_manager *man = &bdev->man[mem_type];
Jerome Glisseca262a9992009-12-08 15:33:32 +0100780 struct drm_mm_node *node;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200781 int ret;
782
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200783 do {
Jerome Glisseca262a9992009-12-08 15:33:32 +0100784 ret = ttm_bo_man_get_node(bo, man, placement, mem, &node);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200785 if (unlikely(ret != 0))
786 return ret;
Jerome Glisseca262a9992009-12-08 15:33:32 +0100787 if (node)
788 break;
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200789 spin_lock(&glob->lru_lock);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100790 if (list_empty(&man->lru)) {
791 spin_unlock(&glob->lru_lock);
792 break;
793 }
794 spin_unlock(&glob->lru_lock);
795 ret = ttm_mem_evict_first(bdev, mem_type, interruptible,
796 no_wait);
797 if (unlikely(ret != 0))
798 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200799 } while (1);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100800 if (node == NULL)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200801 return -ENOMEM;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200802 mem->mm_node = node;
803 mem->mem_type = mem_type;
804 return 0;
805}
806
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200807static uint32_t ttm_bo_select_caching(struct ttm_mem_type_manager *man,
808 uint32_t cur_placement,
809 uint32_t proposed_placement)
810{
811 uint32_t caching = proposed_placement & TTM_PL_MASK_CACHING;
812 uint32_t result = proposed_placement & ~TTM_PL_MASK_CACHING;
813
814 /**
815 * Keep current caching if possible.
816 */
817
818 if ((cur_placement & caching) != 0)
819 result |= (cur_placement & caching);
820 else if ((man->default_caching & caching) != 0)
821 result |= man->default_caching;
822 else if ((TTM_PL_FLAG_CACHED & caching) != 0)
823 result |= TTM_PL_FLAG_CACHED;
824 else if ((TTM_PL_FLAG_WC & caching) != 0)
825 result |= TTM_PL_FLAG_WC;
826 else if ((TTM_PL_FLAG_UNCACHED & caching) != 0)
827 result |= TTM_PL_FLAG_UNCACHED;
828
829 return result;
830}
831
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200832static bool ttm_bo_mt_compatible(struct ttm_mem_type_manager *man,
833 bool disallow_fixed,
834 uint32_t mem_type,
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200835 uint32_t proposed_placement,
836 uint32_t *masked_placement)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200837{
838 uint32_t cur_flags = ttm_bo_type_flags(mem_type);
839
840 if ((man->flags & TTM_MEMTYPE_FLAG_FIXED) && disallow_fixed)
841 return false;
842
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200843 if ((cur_flags & proposed_placement & TTM_PL_MASK_MEM) == 0)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200844 return false;
845
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200846 if ((proposed_placement & man->available_caching) == 0)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200847 return false;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200848
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200849 cur_flags |= (proposed_placement & man->available_caching);
850
851 *masked_placement = cur_flags;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200852 return true;
853}
854
855/**
856 * Creates space for memory region @mem according to its type.
857 *
858 * This function first searches for free space in compatible memory types in
859 * the priority order defined by the driver. If free space isn't found, then
860 * ttm_bo_mem_force_space is attempted in priority order to evict and find
861 * space.
862 */
863int ttm_bo_mem_space(struct ttm_buffer_object *bo,
Jerome Glisseca262a9992009-12-08 15:33:32 +0100864 struct ttm_placement *placement,
865 struct ttm_mem_reg *mem,
866 bool interruptible, bool no_wait)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200867{
868 struct ttm_bo_device *bdev = bo->bdev;
869 struct ttm_mem_type_manager *man;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200870 uint32_t mem_type = TTM_PL_SYSTEM;
871 uint32_t cur_flags = 0;
872 bool type_found = false;
873 bool type_ok = false;
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +0100874 bool has_erestartsys = false;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200875 struct drm_mm_node *node = NULL;
Jerome Glisseca262a9992009-12-08 15:33:32 +0100876 int i, ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200877
878 mem->mm_node = NULL;
Dave Airlieb6637522009-12-14 14:51:35 +1000879 for (i = 0; i < placement->num_placement; ++i) {
Jerome Glisseca262a9992009-12-08 15:33:32 +0100880 ret = ttm_mem_type_from_flags(placement->placement[i],
881 &mem_type);
882 if (ret)
883 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200884 man = &bdev->man[mem_type];
885
886 type_ok = ttm_bo_mt_compatible(man,
Jerome Glisseca262a9992009-12-08 15:33:32 +0100887 bo->type == ttm_bo_type_user,
888 mem_type,
889 placement->placement[i],
890 &cur_flags);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200891
892 if (!type_ok)
893 continue;
894
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200895 cur_flags = ttm_bo_select_caching(man, bo->mem.placement,
896 cur_flags);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100897 /*
898 * Use the access and other non-mapping-related flag bits from
899 * the memory placement flags to the current flags
900 */
901 ttm_flag_masked(&cur_flags, placement->placement[i],
902 ~TTM_PL_MASK_MEMTYPE);
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200903
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200904 if (mem_type == TTM_PL_SYSTEM)
905 break;
906
907 if (man->has_type && man->use_type) {
908 type_found = true;
Jerome Glisseca262a9992009-12-08 15:33:32 +0100909 ret = ttm_bo_man_get_node(bo, man, placement, mem,
910 &node);
911 if (unlikely(ret))
912 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200913 }
914 if (node)
915 break;
916 }
917
918 if ((type_ok && (mem_type == TTM_PL_SYSTEM)) || node) {
919 mem->mm_node = node;
920 mem->mem_type = mem_type;
921 mem->placement = cur_flags;
Jerome Glisseca262a9992009-12-08 15:33:32 +0100922 if (node)
923 node->private = bo;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200924 return 0;
925 }
926
927 if (!type_found)
928 return -EINVAL;
929
Dave Airlieb6637522009-12-14 14:51:35 +1000930 for (i = 0; i < placement->num_busy_placement; ++i) {
931 ret = ttm_mem_type_from_flags(placement->busy_placement[i],
Jerome Glisseca262a9992009-12-08 15:33:32 +0100932 &mem_type);
933 if (ret)
934 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200935 man = &bdev->man[mem_type];
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200936 if (!man->has_type)
937 continue;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200938 if (!ttm_bo_mt_compatible(man,
Jerome Glisseca262a9992009-12-08 15:33:32 +0100939 bo->type == ttm_bo_type_user,
940 mem_type,
Dave Airlieb6637522009-12-14 14:51:35 +1000941 placement->busy_placement[i],
Jerome Glisseca262a9992009-12-08 15:33:32 +0100942 &cur_flags))
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200943 continue;
944
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200945 cur_flags = ttm_bo_select_caching(man, bo->mem.placement,
946 cur_flags);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100947 /*
948 * Use the access and other non-mapping-related flag bits from
949 * the memory placement flags to the current flags
950 */
Dave Airlieb6637522009-12-14 14:51:35 +1000951 ttm_flag_masked(&cur_flags, placement->busy_placement[i],
Jerome Glisseca262a9992009-12-08 15:33:32 +0100952 ~TTM_PL_MASK_MEMTYPE);
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200953
Jerome Glisseca262a9992009-12-08 15:33:32 +0100954 ret = ttm_bo_mem_force_space(bo, mem_type, placement, mem,
955 interruptible, no_wait);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200956 if (ret == 0 && mem->mm_node) {
957 mem->placement = cur_flags;
Jerome Glisseca262a9992009-12-08 15:33:32 +0100958 mem->mm_node->private = bo;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200959 return 0;
960 }
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +0100961 if (ret == -ERESTARTSYS)
962 has_erestartsys = true;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200963 }
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +0100964 ret = (has_erestartsys) ? -ERESTARTSYS : -ENOMEM;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200965 return ret;
966}
967EXPORT_SYMBOL(ttm_bo_mem_space);
968
969int ttm_bo_wait_cpu(struct ttm_buffer_object *bo, bool no_wait)
970{
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200971 if ((atomic_read(&bo->cpu_writers) > 0) && no_wait)
972 return -EBUSY;
973
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +0100974 return wait_event_interruptible(bo->event_queue,
975 atomic_read(&bo->cpu_writers) == 0);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200976}
Ben Skeggsd1ede142009-12-11 15:13:00 +1000977EXPORT_SYMBOL(ttm_bo_wait_cpu);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200978
979int ttm_bo_move_buffer(struct ttm_buffer_object *bo,
Jerome Glisseca262a9992009-12-08 15:33:32 +0100980 struct ttm_placement *placement,
981 bool interruptible, bool no_wait)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200982{
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200983 struct ttm_bo_global *glob = bo->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200984 int ret = 0;
985 struct ttm_mem_reg mem;
986
987 BUG_ON(!atomic_read(&bo->reserved));
988
989 /*
990 * FIXME: It's possible to pipeline buffer moves.
991 * Have the driver move function wait for idle when necessary,
992 * instead of doing it here.
993 */
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200994 spin_lock(&bo->lock);
995 ret = ttm_bo_wait(bo, false, interruptible, no_wait);
996 spin_unlock(&bo->lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200997 if (ret)
998 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200999 mem.num_pages = bo->num_pages;
1000 mem.size = mem.num_pages << PAGE_SHIFT;
1001 mem.page_alignment = bo->mem.page_alignment;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001002 /*
1003 * Determine where to move the buffer.
1004 */
Jerome Glisseca262a9992009-12-08 15:33:32 +01001005 ret = ttm_bo_mem_space(bo, placement, &mem, interruptible, no_wait);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001006 if (ret)
1007 goto out_unlock;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001008 ret = ttm_bo_handle_move_mem(bo, &mem, false, interruptible, no_wait);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001009out_unlock:
1010 if (ret && mem.mm_node) {
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001011 spin_lock(&glob->lru_lock);
Jerome Glisseca262a9992009-12-08 15:33:32 +01001012 mem.mm_node->private = NULL;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001013 drm_mm_put_block(mem.mm_node);
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001014 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001015 }
1016 return ret;
1017}
1018
Jerome Glisseca262a9992009-12-08 15:33:32 +01001019static int ttm_bo_mem_compat(struct ttm_placement *placement,
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001020 struct ttm_mem_reg *mem)
1021{
Jerome Glisseca262a9992009-12-08 15:33:32 +01001022 int i;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001023
Jerome Glisseca262a9992009-12-08 15:33:32 +01001024 for (i = 0; i < placement->num_placement; i++) {
1025 if ((placement->placement[i] & mem->placement &
1026 TTM_PL_MASK_CACHING) &&
1027 (placement->placement[i] & mem->placement &
1028 TTM_PL_MASK_MEM))
1029 return i;
1030 }
1031 return -1;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001032}
1033
Jerome Glisse09855ac2009-12-10 17:16:27 +01001034int ttm_bo_validate(struct ttm_buffer_object *bo,
1035 struct ttm_placement *placement,
1036 bool interruptible, bool no_wait)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001037{
1038 int ret;
1039
1040 BUG_ON(!atomic_read(&bo->reserved));
Jerome Glisseca262a9992009-12-08 15:33:32 +01001041 /* Check that range is valid */
1042 if (placement->lpfn || placement->fpfn)
1043 if (placement->fpfn > placement->lpfn ||
1044 (placement->lpfn - placement->fpfn) < bo->num_pages)
1045 return -EINVAL;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001046 /*
1047 * Check whether we need to move buffer.
1048 */
Jerome Glisseca262a9992009-12-08 15:33:32 +01001049 ret = ttm_bo_mem_compat(placement, &bo->mem);
1050 if (ret < 0) {
1051 ret = ttm_bo_move_buffer(bo, placement, interruptible, no_wait);
1052 if (ret)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001053 return ret;
Jerome Glisseca262a9992009-12-08 15:33:32 +01001054 } else {
1055 /*
1056 * Use the access and other non-mapping-related flag bits from
1057 * the compatible memory placement flags to the active flags
1058 */
1059 ttm_flag_masked(&bo->mem.placement, placement->placement[ret],
1060 ~TTM_PL_MASK_MEMTYPE);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001061 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001062 /*
1063 * We might need to add a TTM.
1064 */
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001065 if (bo->mem.mem_type == TTM_PL_SYSTEM && bo->ttm == NULL) {
1066 ret = ttm_bo_add_ttm(bo, true);
1067 if (ret)
1068 return ret;
1069 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001070 return 0;
1071}
Jerome Glisse09855ac2009-12-10 17:16:27 +01001072EXPORT_SYMBOL(ttm_bo_validate);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001073
Jerome Glisse09855ac2009-12-10 17:16:27 +01001074int ttm_bo_check_placement(struct ttm_buffer_object *bo,
1075 struct ttm_placement *placement)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001076{
Jerome Glisse09855ac2009-12-10 17:16:27 +01001077 int i;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001078
Jerome Glisse09855ac2009-12-10 17:16:27 +01001079 if (placement->fpfn || placement->lpfn) {
1080 if (bo->mem.num_pages > (placement->lpfn - placement->fpfn)) {
1081 printk(KERN_ERR TTM_PFX "Page number range to small "
1082 "Need %lu pages, range is [%u, %u]\n",
1083 bo->mem.num_pages, placement->fpfn,
1084 placement->lpfn);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001085 return -EINVAL;
1086 }
Jerome Glisse09855ac2009-12-10 17:16:27 +01001087 }
1088 for (i = 0; i < placement->num_placement; i++) {
1089 if (!capable(CAP_SYS_ADMIN)) {
1090 if (placement->placement[i] & TTM_PL_FLAG_NO_EVICT) {
1091 printk(KERN_ERR TTM_PFX "Need to be root to "
1092 "modify NO_EVICT status.\n");
1093 return -EINVAL;
1094 }
1095 }
1096 }
1097 for (i = 0; i < placement->num_busy_placement; i++) {
1098 if (!capable(CAP_SYS_ADMIN)) {
1099 if (placement->busy_placement[i] & TTM_PL_FLAG_NO_EVICT) {
1100 printk(KERN_ERR TTM_PFX "Need to be root to "
1101 "modify NO_EVICT status.\n");
1102 return -EINVAL;
1103 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001104 }
1105 }
1106 return 0;
1107}
1108
Jerome Glisse09855ac2009-12-10 17:16:27 +01001109int ttm_bo_init(struct ttm_bo_device *bdev,
1110 struct ttm_buffer_object *bo,
1111 unsigned long size,
1112 enum ttm_bo_type type,
1113 struct ttm_placement *placement,
1114 uint32_t page_alignment,
1115 unsigned long buffer_start,
1116 bool interruptible,
1117 struct file *persistant_swap_storage,
1118 size_t acc_size,
1119 void (*destroy) (struct ttm_buffer_object *))
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001120{
Jerome Glisse09855ac2009-12-10 17:16:27 +01001121 int ret = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001122 unsigned long num_pages;
1123
1124 size += buffer_start & ~PAGE_MASK;
1125 num_pages = (size + PAGE_SIZE - 1) >> PAGE_SHIFT;
1126 if (num_pages == 0) {
1127 printk(KERN_ERR TTM_PFX "Illegal buffer object size.\n");
1128 return -EINVAL;
1129 }
1130 bo->destroy = destroy;
1131
1132 spin_lock_init(&bo->lock);
1133 kref_init(&bo->kref);
1134 kref_init(&bo->list_kref);
1135 atomic_set(&bo->cpu_writers, 0);
1136 atomic_set(&bo->reserved, 1);
1137 init_waitqueue_head(&bo->event_queue);
1138 INIT_LIST_HEAD(&bo->lru);
1139 INIT_LIST_HEAD(&bo->ddestroy);
1140 INIT_LIST_HEAD(&bo->swap);
1141 bo->bdev = bdev;
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001142 bo->glob = bdev->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001143 bo->type = type;
1144 bo->num_pages = num_pages;
Jerome Glisseeb6d2c32009-12-10 16:15:52 +01001145 bo->mem.size = num_pages << PAGE_SHIFT;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001146 bo->mem.mem_type = TTM_PL_SYSTEM;
1147 bo->mem.num_pages = bo->num_pages;
1148 bo->mem.mm_node = NULL;
1149 bo->mem.page_alignment = page_alignment;
1150 bo->buffer_start = buffer_start & PAGE_MASK;
1151 bo->priv_flags = 0;
1152 bo->mem.placement = (TTM_PL_FLAG_SYSTEM | TTM_PL_FLAG_CACHED);
1153 bo->seq_valid = false;
1154 bo->persistant_swap_storage = persistant_swap_storage;
1155 bo->acc_size = acc_size;
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001156 atomic_inc(&bo->glob->bo_count);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001157
Jerome Glisse09855ac2009-12-10 17:16:27 +01001158 ret = ttm_bo_check_placement(bo, placement);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001159 if (unlikely(ret != 0))
1160 goto out_err;
1161
1162 /*
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001163 * For ttm_bo_type_device buffers, allocate
1164 * address space from the device.
1165 */
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001166 if (bo->type == ttm_bo_type_device) {
1167 ret = ttm_bo_setup_vm(bo);
1168 if (ret)
1169 goto out_err;
1170 }
1171
Jerome Glisse09855ac2009-12-10 17:16:27 +01001172 ret = ttm_bo_validate(bo, placement, interruptible, false);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001173 if (ret)
1174 goto out_err;
1175
1176 ttm_bo_unreserve(bo);
1177 return 0;
1178
1179out_err:
1180 ttm_bo_unreserve(bo);
1181 ttm_bo_unref(&bo);
1182
1183 return ret;
1184}
Jerome Glisse09855ac2009-12-10 17:16:27 +01001185EXPORT_SYMBOL(ttm_bo_init);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001186
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001187static inline size_t ttm_bo_size(struct ttm_bo_global *glob,
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001188 unsigned long num_pages)
1189{
1190 size_t page_array_size = (num_pages * sizeof(void *) + PAGE_SIZE - 1) &
1191 PAGE_MASK;
1192
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001193 return glob->ttm_bo_size + 2 * page_array_size;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001194}
1195
Jerome Glisse09855ac2009-12-10 17:16:27 +01001196int ttm_bo_create(struct ttm_bo_device *bdev,
1197 unsigned long size,
1198 enum ttm_bo_type type,
1199 struct ttm_placement *placement,
1200 uint32_t page_alignment,
1201 unsigned long buffer_start,
1202 bool interruptible,
1203 struct file *persistant_swap_storage,
1204 struct ttm_buffer_object **p_bo)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001205{
1206 struct ttm_buffer_object *bo;
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001207 struct ttm_mem_global *mem_glob = bdev->glob->mem_glob;
Jerome Glisseca262a9992009-12-08 15:33:32 +01001208 int ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001209
1210 size_t acc_size =
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001211 ttm_bo_size(bdev->glob, (size + PAGE_SIZE - 1) >> PAGE_SHIFT);
Thomas Hellstrom5fd9cba2009-08-17 16:28:39 +02001212 ret = ttm_mem_global_alloc(mem_glob, acc_size, false, false);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001213 if (unlikely(ret != 0))
1214 return ret;
1215
1216 bo = kzalloc(sizeof(*bo), GFP_KERNEL);
1217
1218 if (unlikely(bo == NULL)) {
Thomas Hellstrom5fd9cba2009-08-17 16:28:39 +02001219 ttm_mem_global_free(mem_glob, acc_size);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001220 return -ENOMEM;
1221 }
1222
Jerome Glisse09855ac2009-12-10 17:16:27 +01001223 ret = ttm_bo_init(bdev, bo, size, type, placement, page_alignment,
1224 buffer_start, interruptible,
1225 persistant_swap_storage, acc_size, NULL);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001226 if (likely(ret == 0))
1227 *p_bo = bo;
1228
1229 return ret;
1230}
1231
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001232static int ttm_bo_force_list_clean(struct ttm_bo_device *bdev,
Jerome Glisseca262a9992009-12-08 15:33:32 +01001233 unsigned mem_type, bool allow_errors)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001234{
Jerome Glisseca262a9992009-12-08 15:33:32 +01001235 struct ttm_mem_type_manager *man = &bdev->man[mem_type];
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001236 struct ttm_bo_global *glob = bdev->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001237 int ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001238
1239 /*
1240 * Can't use standard list traversal since we're unlocking.
1241 */
1242
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001243 spin_lock(&glob->lru_lock);
Jerome Glisseca262a9992009-12-08 15:33:32 +01001244 while (!list_empty(&man->lru)) {
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001245 spin_unlock(&glob->lru_lock);
Jerome Glisseca262a9992009-12-08 15:33:32 +01001246 ret = ttm_mem_evict_first(bdev, mem_type, false, false);
1247 if (ret) {
1248 if (allow_errors) {
1249 return ret;
1250 } else {
1251 printk(KERN_ERR TTM_PFX
1252 "Cleanup eviction failed\n");
1253 }
1254 }
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001255 spin_lock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001256 }
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001257 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001258 return 0;
1259}
1260
1261int ttm_bo_clean_mm(struct ttm_bo_device *bdev, unsigned mem_type)
1262{
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001263 struct ttm_bo_global *glob = bdev->glob;
Roel Kluinc96e7c72009-08-03 14:22:53 +02001264 struct ttm_mem_type_manager *man;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001265 int ret = -EINVAL;
1266
1267 if (mem_type >= TTM_NUM_MEM_TYPES) {
1268 printk(KERN_ERR TTM_PFX "Illegal memory type %d\n", mem_type);
1269 return ret;
1270 }
Roel Kluinc96e7c72009-08-03 14:22:53 +02001271 man = &bdev->man[mem_type];
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001272
1273 if (!man->has_type) {
1274 printk(KERN_ERR TTM_PFX "Trying to take down uninitialized "
1275 "memory manager type %u\n", mem_type);
1276 return ret;
1277 }
1278
1279 man->use_type = false;
1280 man->has_type = false;
1281
1282 ret = 0;
1283 if (mem_type > 0) {
Jerome Glisseca262a9992009-12-08 15:33:32 +01001284 ttm_bo_force_list_clean(bdev, mem_type, false);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001285
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001286 spin_lock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001287 if (drm_mm_clean(&man->manager))
1288 drm_mm_takedown(&man->manager);
1289 else
1290 ret = -EBUSY;
1291
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001292 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001293 }
1294
1295 return ret;
1296}
1297EXPORT_SYMBOL(ttm_bo_clean_mm);
1298
1299int ttm_bo_evict_mm(struct ttm_bo_device *bdev, unsigned mem_type)
1300{
1301 struct ttm_mem_type_manager *man = &bdev->man[mem_type];
1302
1303 if (mem_type == 0 || mem_type >= TTM_NUM_MEM_TYPES) {
1304 printk(KERN_ERR TTM_PFX
1305 "Illegal memory manager memory type %u.\n",
1306 mem_type);
1307 return -EINVAL;
1308 }
1309
1310 if (!man->has_type) {
1311 printk(KERN_ERR TTM_PFX
1312 "Memory type %u has not been initialized.\n",
1313 mem_type);
1314 return 0;
1315 }
1316
Jerome Glisseca262a9992009-12-08 15:33:32 +01001317 return ttm_bo_force_list_clean(bdev, mem_type, true);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001318}
1319EXPORT_SYMBOL(ttm_bo_evict_mm);
1320
1321int ttm_bo_init_mm(struct ttm_bo_device *bdev, unsigned type,
Jerome Glisseca262a9992009-12-08 15:33:32 +01001322 unsigned long p_size)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001323{
1324 int ret = -EINVAL;
1325 struct ttm_mem_type_manager *man;
1326
1327 if (type >= TTM_NUM_MEM_TYPES) {
1328 printk(KERN_ERR TTM_PFX "Illegal memory type %d\n", type);
1329 return ret;
1330 }
1331
1332 man = &bdev->man[type];
1333 if (man->has_type) {
1334 printk(KERN_ERR TTM_PFX
1335 "Memory manager already initialized for type %d\n",
1336 type);
1337 return ret;
1338 }
1339
1340 ret = bdev->driver->init_mem_type(bdev, type, man);
1341 if (ret)
1342 return ret;
1343
1344 ret = 0;
1345 if (type != TTM_PL_SYSTEM) {
1346 if (!p_size) {
1347 printk(KERN_ERR TTM_PFX
1348 "Zero size memory manager type %d\n",
1349 type);
1350 return ret;
1351 }
Jerome Glisseca262a9992009-12-08 15:33:32 +01001352 ret = drm_mm_init(&man->manager, 0, p_size);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001353 if (ret)
1354 return ret;
1355 }
1356 man->has_type = true;
1357 man->use_type = true;
1358 man->size = p_size;
1359
1360 INIT_LIST_HEAD(&man->lru);
1361
1362 return 0;
1363}
1364EXPORT_SYMBOL(ttm_bo_init_mm);
1365
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001366static void ttm_bo_global_kobj_release(struct kobject *kobj)
1367{
1368 struct ttm_bo_global *glob =
1369 container_of(kobj, struct ttm_bo_global, kobj);
1370
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001371 ttm_mem_unregister_shrink(glob->mem_glob, &glob->shrink);
1372 __free_page(glob->dummy_read_page);
1373 kfree(glob);
1374}
1375
1376void ttm_bo_global_release(struct ttm_global_reference *ref)
1377{
1378 struct ttm_bo_global *glob = ref->object;
1379
1380 kobject_del(&glob->kobj);
1381 kobject_put(&glob->kobj);
1382}
1383EXPORT_SYMBOL(ttm_bo_global_release);
1384
1385int ttm_bo_global_init(struct ttm_global_reference *ref)
1386{
1387 struct ttm_bo_global_ref *bo_ref =
1388 container_of(ref, struct ttm_bo_global_ref, ref);
1389 struct ttm_bo_global *glob = ref->object;
1390 int ret;
1391
1392 mutex_init(&glob->device_list_mutex);
1393 spin_lock_init(&glob->lru_lock);
1394 glob->mem_glob = bo_ref->mem_glob;
1395 glob->dummy_read_page = alloc_page(__GFP_ZERO | GFP_DMA32);
1396
1397 if (unlikely(glob->dummy_read_page == NULL)) {
1398 ret = -ENOMEM;
1399 goto out_no_drp;
1400 }
1401
1402 INIT_LIST_HEAD(&glob->swap_lru);
1403 INIT_LIST_HEAD(&glob->device_list);
1404
1405 ttm_mem_init_shrink(&glob->shrink, ttm_bo_swapout);
1406 ret = ttm_mem_register_shrink(glob->mem_glob, &glob->shrink);
1407 if (unlikely(ret != 0)) {
1408 printk(KERN_ERR TTM_PFX
1409 "Could not register buffer object swapout.\n");
1410 goto out_no_shrink;
1411 }
1412
1413 glob->ttm_bo_extra_size =
1414 ttm_round_pot(sizeof(struct ttm_tt)) +
1415 ttm_round_pot(sizeof(struct ttm_backend));
1416
1417 glob->ttm_bo_size = glob->ttm_bo_extra_size +
1418 ttm_round_pot(sizeof(struct ttm_buffer_object));
1419
1420 atomic_set(&glob->bo_count, 0);
1421
1422 kobject_init(&glob->kobj, &ttm_bo_glob_kobj_type);
1423 ret = kobject_add(&glob->kobj, ttm_get_kobj(), "buffer_objects");
1424 if (unlikely(ret != 0))
1425 kobject_put(&glob->kobj);
1426 return ret;
1427out_no_shrink:
1428 __free_page(glob->dummy_read_page);
1429out_no_drp:
1430 kfree(glob);
1431 return ret;
1432}
1433EXPORT_SYMBOL(ttm_bo_global_init);
1434
1435
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001436int ttm_bo_device_release(struct ttm_bo_device *bdev)
1437{
1438 int ret = 0;
1439 unsigned i = TTM_NUM_MEM_TYPES;
1440 struct ttm_mem_type_manager *man;
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001441 struct ttm_bo_global *glob = bdev->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001442
1443 while (i--) {
1444 man = &bdev->man[i];
1445 if (man->has_type) {
1446 man->use_type = false;
1447 if ((i != TTM_PL_SYSTEM) && ttm_bo_clean_mm(bdev, i)) {
1448 ret = -EBUSY;
1449 printk(KERN_ERR TTM_PFX
1450 "DRM memory manager type %d "
1451 "is not clean.\n", i);
1452 }
1453 man->has_type = false;
1454 }
1455 }
1456
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001457 mutex_lock(&glob->device_list_mutex);
1458 list_del(&bdev->device_list);
1459 mutex_unlock(&glob->device_list_mutex);
1460
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001461 if (!cancel_delayed_work(&bdev->wq))
1462 flush_scheduled_work();
1463
1464 while (ttm_bo_delayed_delete(bdev, true))
1465 ;
1466
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001467 spin_lock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001468 if (list_empty(&bdev->ddestroy))
1469 TTM_DEBUG("Delayed destroy list was clean\n");
1470
1471 if (list_empty(&bdev->man[0].lru))
1472 TTM_DEBUG("Swap list was clean\n");
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001473 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001474
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001475 BUG_ON(!drm_mm_clean(&bdev->addr_space_mm));
1476 write_lock(&bdev->vm_lock);
1477 drm_mm_takedown(&bdev->addr_space_mm);
1478 write_unlock(&bdev->vm_lock);
1479
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001480 return ret;
1481}
1482EXPORT_SYMBOL(ttm_bo_device_release);
1483
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001484int ttm_bo_device_init(struct ttm_bo_device *bdev,
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001485 struct ttm_bo_global *glob,
1486 struct ttm_bo_driver *driver,
Dave Airlie51c8b402009-08-20 13:38:04 +10001487 uint64_t file_page_offset,
Dave Airliead49f502009-07-10 22:36:26 +10001488 bool need_dma32)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001489{
1490 int ret = -EINVAL;
1491
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001492 rwlock_init(&bdev->vm_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001493 bdev->driver = driver;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001494
1495 memset(bdev->man, 0, sizeof(bdev->man));
1496
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001497 /*
1498 * Initialize the system memory buffer type.
1499 * Other types need to be driver / IOCTL initialized.
1500 */
Jerome Glisseca262a9992009-12-08 15:33:32 +01001501 ret = ttm_bo_init_mm(bdev, TTM_PL_SYSTEM, 0);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001502 if (unlikely(ret != 0))
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001503 goto out_no_sys;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001504
1505 bdev->addr_space_rb = RB_ROOT;
1506 ret = drm_mm_init(&bdev->addr_space_mm, file_page_offset, 0x10000000);
1507 if (unlikely(ret != 0))
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001508 goto out_no_addr_mm;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001509
1510 INIT_DELAYED_WORK(&bdev->wq, ttm_bo_delayed_workqueue);
1511 bdev->nice_mode = true;
1512 INIT_LIST_HEAD(&bdev->ddestroy);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001513 bdev->dev_mapping = NULL;
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001514 bdev->glob = glob;
Dave Airliead49f502009-07-10 22:36:26 +10001515 bdev->need_dma32 = need_dma32;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001516
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001517 mutex_lock(&glob->device_list_mutex);
1518 list_add_tail(&bdev->device_list, &glob->device_list);
1519 mutex_unlock(&glob->device_list_mutex);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001520
1521 return 0;
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001522out_no_addr_mm:
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001523 ttm_bo_clean_mm(bdev, 0);
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001524out_no_sys:
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001525 return ret;
1526}
1527EXPORT_SYMBOL(ttm_bo_device_init);
1528
1529/*
1530 * buffer object vm functions.
1531 */
1532
1533bool ttm_mem_reg_is_pci(struct ttm_bo_device *bdev, struct ttm_mem_reg *mem)
1534{
1535 struct ttm_mem_type_manager *man = &bdev->man[mem->mem_type];
1536
1537 if (!(man->flags & TTM_MEMTYPE_FLAG_FIXED)) {
1538 if (mem->mem_type == TTM_PL_SYSTEM)
1539 return false;
1540
1541 if (man->flags & TTM_MEMTYPE_FLAG_CMA)
1542 return false;
1543
1544 if (mem->placement & TTM_PL_FLAG_CACHED)
1545 return false;
1546 }
1547 return true;
1548}
1549
1550int ttm_bo_pci_offset(struct ttm_bo_device *bdev,
1551 struct ttm_mem_reg *mem,
1552 unsigned long *bus_base,
1553 unsigned long *bus_offset, unsigned long *bus_size)
1554{
1555 struct ttm_mem_type_manager *man = &bdev->man[mem->mem_type];
1556
1557 *bus_size = 0;
1558 if (!(man->flags & TTM_MEMTYPE_FLAG_MAPPABLE))
1559 return -EINVAL;
1560
1561 if (ttm_mem_reg_is_pci(bdev, mem)) {
1562 *bus_offset = mem->mm_node->start << PAGE_SHIFT;
1563 *bus_size = mem->num_pages << PAGE_SHIFT;
1564 *bus_base = man->io_offset;
1565 }
1566
1567 return 0;
1568}
1569
1570void ttm_bo_unmap_virtual(struct ttm_buffer_object *bo)
1571{
1572 struct ttm_bo_device *bdev = bo->bdev;
1573 loff_t offset = (loff_t) bo->addr_space_offset;
1574 loff_t holelen = ((loff_t) bo->mem.num_pages) << PAGE_SHIFT;
1575
1576 if (!bdev->dev_mapping)
1577 return;
1578
1579 unmap_mapping_range(bdev->dev_mapping, offset, holelen, 1);
1580}
Dave Airliee024e112009-06-24 09:48:08 +10001581EXPORT_SYMBOL(ttm_bo_unmap_virtual);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001582
1583static void ttm_bo_vm_insert_rb(struct ttm_buffer_object *bo)
1584{
1585 struct ttm_bo_device *bdev = bo->bdev;
1586 struct rb_node **cur = &bdev->addr_space_rb.rb_node;
1587 struct rb_node *parent = NULL;
1588 struct ttm_buffer_object *cur_bo;
1589 unsigned long offset = bo->vm_node->start;
1590 unsigned long cur_offset;
1591
1592 while (*cur) {
1593 parent = *cur;
1594 cur_bo = rb_entry(parent, struct ttm_buffer_object, vm_rb);
1595 cur_offset = cur_bo->vm_node->start;
1596 if (offset < cur_offset)
1597 cur = &parent->rb_left;
1598 else if (offset > cur_offset)
1599 cur = &parent->rb_right;
1600 else
1601 BUG();
1602 }
1603
1604 rb_link_node(&bo->vm_rb, parent, cur);
1605 rb_insert_color(&bo->vm_rb, &bdev->addr_space_rb);
1606}
1607
1608/**
1609 * ttm_bo_setup_vm:
1610 *
1611 * @bo: the buffer to allocate address space for
1612 *
1613 * Allocate address space in the drm device so that applications
1614 * can mmap the buffer and access the contents. This only
1615 * applies to ttm_bo_type_device objects as others are not
1616 * placed in the drm device address space.
1617 */
1618
1619static int ttm_bo_setup_vm(struct ttm_buffer_object *bo)
1620{
1621 struct ttm_bo_device *bdev = bo->bdev;
1622 int ret;
1623
1624retry_pre_get:
1625 ret = drm_mm_pre_get(&bdev->addr_space_mm);
1626 if (unlikely(ret != 0))
1627 return ret;
1628
1629 write_lock(&bdev->vm_lock);
1630 bo->vm_node = drm_mm_search_free(&bdev->addr_space_mm,
1631 bo->mem.num_pages, 0, 0);
1632
1633 if (unlikely(bo->vm_node == NULL)) {
1634 ret = -ENOMEM;
1635 goto out_unlock;
1636 }
1637
1638 bo->vm_node = drm_mm_get_block_atomic(bo->vm_node,
1639 bo->mem.num_pages, 0);
1640
1641 if (unlikely(bo->vm_node == NULL)) {
1642 write_unlock(&bdev->vm_lock);
1643 goto retry_pre_get;
1644 }
1645
1646 ttm_bo_vm_insert_rb(bo);
1647 write_unlock(&bdev->vm_lock);
1648 bo->addr_space_offset = ((uint64_t) bo->vm_node->start) << PAGE_SHIFT;
1649
1650 return 0;
1651out_unlock:
1652 write_unlock(&bdev->vm_lock);
1653 return ret;
1654}
1655
1656int ttm_bo_wait(struct ttm_buffer_object *bo,
1657 bool lazy, bool interruptible, bool no_wait)
1658{
1659 struct ttm_bo_driver *driver = bo->bdev->driver;
1660 void *sync_obj;
1661 void *sync_obj_arg;
1662 int ret = 0;
1663
1664 if (likely(bo->sync_obj == NULL))
1665 return 0;
1666
1667 while (bo->sync_obj) {
1668
1669 if (driver->sync_obj_signaled(bo->sync_obj, bo->sync_obj_arg)) {
1670 void *tmp_obj = bo->sync_obj;
1671 bo->sync_obj = NULL;
1672 clear_bit(TTM_BO_PRIV_FLAG_MOVING, &bo->priv_flags);
1673 spin_unlock(&bo->lock);
1674 driver->sync_obj_unref(&tmp_obj);
1675 spin_lock(&bo->lock);
1676 continue;
1677 }
1678
1679 if (no_wait)
1680 return -EBUSY;
1681
1682 sync_obj = driver->sync_obj_ref(bo->sync_obj);
1683 sync_obj_arg = bo->sync_obj_arg;
1684 spin_unlock(&bo->lock);
1685 ret = driver->sync_obj_wait(sync_obj, sync_obj_arg,
1686 lazy, interruptible);
1687 if (unlikely(ret != 0)) {
1688 driver->sync_obj_unref(&sync_obj);
1689 spin_lock(&bo->lock);
1690 return ret;
1691 }
1692 spin_lock(&bo->lock);
1693 if (likely(bo->sync_obj == sync_obj &&
1694 bo->sync_obj_arg == sync_obj_arg)) {
1695 void *tmp_obj = bo->sync_obj;
1696 bo->sync_obj = NULL;
1697 clear_bit(TTM_BO_PRIV_FLAG_MOVING,
1698 &bo->priv_flags);
1699 spin_unlock(&bo->lock);
1700 driver->sync_obj_unref(&sync_obj);
1701 driver->sync_obj_unref(&tmp_obj);
1702 spin_lock(&bo->lock);
Thomas Hellstromfee280d2009-08-03 12:39:06 +02001703 } else {
1704 spin_unlock(&bo->lock);
1705 driver->sync_obj_unref(&sync_obj);
1706 spin_lock(&bo->lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001707 }
1708 }
1709 return 0;
1710}
1711EXPORT_SYMBOL(ttm_bo_wait);
1712
1713void ttm_bo_unblock_reservation(struct ttm_buffer_object *bo)
1714{
1715 atomic_set(&bo->reserved, 0);
1716 wake_up_all(&bo->event_queue);
1717}
1718
1719int ttm_bo_block_reservation(struct ttm_buffer_object *bo, bool interruptible,
1720 bool no_wait)
1721{
1722 int ret;
1723
1724 while (unlikely(atomic_cmpxchg(&bo->reserved, 0, 1) != 0)) {
1725 if (no_wait)
1726 return -EBUSY;
1727 else if (interruptible) {
1728 ret = wait_event_interruptible
1729 (bo->event_queue, atomic_read(&bo->reserved) == 0);
1730 if (unlikely(ret != 0))
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +01001731 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001732 } else {
1733 wait_event(bo->event_queue,
1734 atomic_read(&bo->reserved) == 0);
1735 }
1736 }
1737 return 0;
1738}
1739
1740int ttm_bo_synccpu_write_grab(struct ttm_buffer_object *bo, bool no_wait)
1741{
1742 int ret = 0;
1743
1744 /*
1745 * Using ttm_bo_reserve instead of ttm_bo_block_reservation
1746 * makes sure the lru lists are updated.
1747 */
1748
1749 ret = ttm_bo_reserve(bo, true, no_wait, false, 0);
1750 if (unlikely(ret != 0))
1751 return ret;
1752 spin_lock(&bo->lock);
1753 ret = ttm_bo_wait(bo, false, true, no_wait);
1754 spin_unlock(&bo->lock);
1755 if (likely(ret == 0))
1756 atomic_inc(&bo->cpu_writers);
1757 ttm_bo_unreserve(bo);
1758 return ret;
1759}
Ben Skeggsd1ede142009-12-11 15:13:00 +10001760EXPORT_SYMBOL(ttm_bo_synccpu_write_grab);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001761
1762void ttm_bo_synccpu_write_release(struct ttm_buffer_object *bo)
1763{
1764 if (atomic_dec_and_test(&bo->cpu_writers))
1765 wake_up_all(&bo->event_queue);
1766}
Ben Skeggsd1ede142009-12-11 15:13:00 +10001767EXPORT_SYMBOL(ttm_bo_synccpu_write_release);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001768
1769/**
1770 * A buffer object shrink method that tries to swap out the first
1771 * buffer object on the bo_global::swap_lru list.
1772 */
1773
1774static int ttm_bo_swapout(struct ttm_mem_shrink *shrink)
1775{
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001776 struct ttm_bo_global *glob =
1777 container_of(shrink, struct ttm_bo_global, shrink);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001778 struct ttm_buffer_object *bo;
1779 int ret = -EBUSY;
1780 int put_count;
1781 uint32_t swap_placement = (TTM_PL_FLAG_CACHED | TTM_PL_FLAG_SYSTEM);
1782
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001783 spin_lock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001784 while (ret == -EBUSY) {
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001785 if (unlikely(list_empty(&glob->swap_lru))) {
1786 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001787 return -EBUSY;
1788 }
1789
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001790 bo = list_first_entry(&glob->swap_lru,
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001791 struct ttm_buffer_object, swap);
1792 kref_get(&bo->list_kref);
1793
1794 /**
1795 * Reserve buffer. Since we unlock while sleeping, we need
1796 * to re-check that nobody removed us from the swap-list while
1797 * we slept.
1798 */
1799
1800 ret = ttm_bo_reserve_locked(bo, false, true, false, 0);
1801 if (unlikely(ret == -EBUSY)) {
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001802 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001803 ttm_bo_wait_unreserved(bo, false);
1804 kref_put(&bo->list_kref, ttm_bo_release_list);
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001805 spin_lock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001806 }
1807 }
1808
1809 BUG_ON(ret != 0);
1810 put_count = ttm_bo_del_from_lru(bo);
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001811 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001812
1813 while (put_count--)
1814 kref_put(&bo->list_kref, ttm_bo_ref_bug);
1815
1816 /**
1817 * Wait for GPU, then move to system cached.
1818 */
1819
1820 spin_lock(&bo->lock);
1821 ret = ttm_bo_wait(bo, false, false, false);
1822 spin_unlock(&bo->lock);
1823
1824 if (unlikely(ret != 0))
1825 goto out;
1826
1827 if ((bo->mem.placement & swap_placement) != swap_placement) {
1828 struct ttm_mem_reg evict_mem;
1829
1830 evict_mem = bo->mem;
1831 evict_mem.mm_node = NULL;
1832 evict_mem.placement = TTM_PL_FLAG_SYSTEM | TTM_PL_FLAG_CACHED;
1833 evict_mem.mem_type = TTM_PL_SYSTEM;
1834
1835 ret = ttm_bo_handle_move_mem(bo, &evict_mem, true,
1836 false, false);
1837 if (unlikely(ret != 0))
1838 goto out;
1839 }
1840
1841 ttm_bo_unmap_virtual(bo);
1842
1843 /**
1844 * Swap out. Buffer will be swapped in again as soon as
1845 * anyone tries to access a ttm page.
1846 */
1847
1848 ret = ttm_tt_swapout(bo->ttm, bo->persistant_swap_storage);
1849out:
1850
1851 /**
1852 *
1853 * Unreserve without putting on LRU to avoid swapping out an
1854 * already swapped buffer.
1855 */
1856
1857 atomic_set(&bo->reserved, 0);
1858 wake_up_all(&bo->event_queue);
1859 kref_put(&bo->list_kref, ttm_bo_release_list);
1860 return ret;
1861}
1862
1863void ttm_bo_swapout_all(struct ttm_bo_device *bdev)
1864{
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001865 while (ttm_bo_swapout(&bdev->glob->shrink) == 0)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001866 ;
1867}