blob: cb73527127503942b15fb5ae5ead65c33db67815 [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 */
30
31#include "ttm/ttm_module.h"
32#include "ttm/ttm_bo_driver.h"
33#include "ttm/ttm_placement.h"
34#include <linux/jiffies.h>
35#include <linux/slab.h>
36#include <linux/sched.h>
37#include <linux/mm.h>
38#include <linux/file.h>
39#include <linux/module.h>
Arun Sharma600634972011-07-26 16:09:06 -070040#include <linux/atomic.h>
Thomas Hellstromba4e7d92009-06-10 15:20:19 +020041
42#define TTM_ASSERT_LOCKED(param)
43#define TTM_DEBUG(fmt, arg...)
44#define TTM_BO_HASH_ORDER 13
45
46static int ttm_bo_setup_vm(struct ttm_buffer_object *bo);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +020047static int ttm_bo_swapout(struct ttm_mem_shrink *shrink);
Thomas Hellstroma987fca2009-08-18 16:51:56 +020048static void ttm_bo_global_kobj_release(struct kobject *kobj);
49
50static struct attribute ttm_bo_count = {
51 .name = "bo_count",
52 .mode = S_IRUGO
53};
54
Jerome Glissefb53f862009-12-09 21:55:10 +010055static inline int ttm_mem_type_from_flags(uint32_t flags, uint32_t *mem_type)
56{
57 int i;
58
59 for (i = 0; i <= TTM_PL_PRIV5; i++)
60 if (flags & (1 << i)) {
61 *mem_type = i;
62 return 0;
63 }
64 return -EINVAL;
65}
66
Jerome Glisse5012f502009-12-10 18:07:26 +010067static void ttm_mem_type_debug(struct ttm_bo_device *bdev, int mem_type)
Jerome Glissefb53f862009-12-09 21:55:10 +010068{
Jerome Glisse5012f502009-12-10 18:07:26 +010069 struct ttm_mem_type_manager *man = &bdev->man[mem_type];
70
Jerome Glissefb53f862009-12-09 21:55:10 +010071 printk(KERN_ERR TTM_PFX " has_type: %d\n", man->has_type);
72 printk(KERN_ERR TTM_PFX " use_type: %d\n", man->use_type);
73 printk(KERN_ERR TTM_PFX " flags: 0x%08X\n", man->flags);
74 printk(KERN_ERR TTM_PFX " gpu_offset: 0x%08lX\n", man->gpu_offset);
Jerome Glisseeb6d2c32009-12-10 16:15:52 +010075 printk(KERN_ERR TTM_PFX " size: %llu\n", man->size);
Jerome Glissefb53f862009-12-09 21:55:10 +010076 printk(KERN_ERR TTM_PFX " available_caching: 0x%08X\n",
77 man->available_caching);
78 printk(KERN_ERR TTM_PFX " default_caching: 0x%08X\n",
79 man->default_caching);
Ben Skeggsd961db72010-08-05 10:48:18 +100080 if (mem_type != TTM_PL_SYSTEM)
81 (*man->func->debug)(man, TTM_PFX);
Jerome Glissefb53f862009-12-09 21:55:10 +010082}
83
84static void ttm_bo_mem_space_debug(struct ttm_buffer_object *bo,
85 struct ttm_placement *placement)
86{
Jerome Glissefb53f862009-12-09 21:55:10 +010087 int i, ret, mem_type;
88
Jerome Glisseeb6d2c32009-12-10 16:15:52 +010089 printk(KERN_ERR TTM_PFX "No space for %p (%lu pages, %luK, %luM)\n",
Jerome Glissefb53f862009-12-09 21:55:10 +010090 bo, bo->mem.num_pages, bo->mem.size >> 10,
91 bo->mem.size >> 20);
92 for (i = 0; i < placement->num_placement; i++) {
93 ret = ttm_mem_type_from_flags(placement->placement[i],
94 &mem_type);
95 if (ret)
96 return;
Jerome Glissefb53f862009-12-09 21:55:10 +010097 printk(KERN_ERR TTM_PFX " placement[%d]=0x%08X (%d)\n",
98 i, placement->placement[i], mem_type);
Jerome Glisse5012f502009-12-10 18:07:26 +010099 ttm_mem_type_debug(bo->bdev, mem_type);
Jerome Glissefb53f862009-12-09 21:55:10 +0100100 }
101}
102
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200103static ssize_t ttm_bo_global_show(struct kobject *kobj,
104 struct attribute *attr,
105 char *buffer)
106{
107 struct ttm_bo_global *glob =
108 container_of(kobj, struct ttm_bo_global, kobj);
109
110 return snprintf(buffer, PAGE_SIZE, "%lu\n",
111 (unsigned long) atomic_read(&glob->bo_count));
112}
113
114static struct attribute *ttm_bo_global_attrs[] = {
115 &ttm_bo_count,
116 NULL
117};
118
Emese Revfy52cf25d2010-01-19 02:58:23 +0100119static const struct sysfs_ops ttm_bo_global_ops = {
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200120 .show = &ttm_bo_global_show
121};
122
123static struct kobj_type ttm_bo_glob_kobj_type = {
124 .release = &ttm_bo_global_kobj_release,
125 .sysfs_ops = &ttm_bo_global_ops,
126 .default_attrs = ttm_bo_global_attrs
127};
128
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200129
130static inline uint32_t ttm_bo_type_flags(unsigned type)
131{
132 return 1 << (type);
133}
134
135static void ttm_bo_release_list(struct kref *list_kref)
136{
137 struct ttm_buffer_object *bo =
138 container_of(list_kref, struct ttm_buffer_object, list_kref);
139 struct ttm_bo_device *bdev = bo->bdev;
140
141 BUG_ON(atomic_read(&bo->list_kref.refcount));
142 BUG_ON(atomic_read(&bo->kref.refcount));
143 BUG_ON(atomic_read(&bo->cpu_writers));
144 BUG_ON(bo->sync_obj != NULL);
145 BUG_ON(bo->mem.mm_node != NULL);
146 BUG_ON(!list_empty(&bo->lru));
147 BUG_ON(!list_empty(&bo->ddestroy));
148
149 if (bo->ttm)
150 ttm_tt_destroy(bo->ttm);
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200151 atomic_dec(&bo->glob->bo_count);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200152 if (bo->destroy)
153 bo->destroy(bo);
154 else {
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200155 ttm_mem_global_free(bdev->glob->mem_glob, bo->acc_size);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200156 kfree(bo);
157 }
158}
159
160int ttm_bo_wait_unreserved(struct ttm_buffer_object *bo, bool interruptible)
161{
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200162 if (interruptible) {
Jean Delvare965d3802010-10-09 12:36:45 +0000163 return wait_event_interruptible(bo->event_queue,
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200164 atomic_read(&bo->reserved) == 0);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200165 } else {
166 wait_event(bo->event_queue, atomic_read(&bo->reserved) == 0);
Jean Delvare965d3802010-10-09 12:36:45 +0000167 return 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200168 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200169}
Ben Skeggsd1ede142009-12-11 15:13:00 +1000170EXPORT_SYMBOL(ttm_bo_wait_unreserved);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200171
Dave Airlied6ea8882010-11-22 13:24:40 +1000172void ttm_bo_add_to_lru(struct ttm_buffer_object *bo)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200173{
174 struct ttm_bo_device *bdev = bo->bdev;
175 struct ttm_mem_type_manager *man;
176
177 BUG_ON(!atomic_read(&bo->reserved));
178
179 if (!(bo->mem.placement & TTM_PL_FLAG_NO_EVICT)) {
180
181 BUG_ON(!list_empty(&bo->lru));
182
183 man = &bdev->man[bo->mem.mem_type];
184 list_add_tail(&bo->lru, &man->lru);
185 kref_get(&bo->list_kref);
186
187 if (bo->ttm != NULL) {
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200188 list_add_tail(&bo->swap, &bo->glob->swap_lru);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200189 kref_get(&bo->list_kref);
190 }
191 }
192}
193
Dave Airlied6ea8882010-11-22 13:24:40 +1000194int ttm_bo_del_from_lru(struct ttm_buffer_object *bo)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200195{
196 int put_count = 0;
197
198 if (!list_empty(&bo->swap)) {
199 list_del_init(&bo->swap);
200 ++put_count;
201 }
202 if (!list_empty(&bo->lru)) {
203 list_del_init(&bo->lru);
204 ++put_count;
205 }
206
207 /*
208 * TODO: Add a driver hook to delete from
209 * driver-specific LRU's here.
210 */
211
212 return put_count;
213}
214
215int ttm_bo_reserve_locked(struct ttm_buffer_object *bo,
216 bool interruptible,
217 bool no_wait, bool use_sequence, uint32_t sequence)
218{
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200219 struct ttm_bo_global *glob = bo->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200220 int ret;
221
222 while (unlikely(atomic_cmpxchg(&bo->reserved, 0, 1) != 0)) {
Thomas Hellstrom95ccb0f2010-11-11 10:04:53 +0100223 /**
224 * Deadlock avoidance for multi-bo reserving.
225 */
Thomas Hellstrom96726fe2010-11-17 12:28:28 +0000226 if (use_sequence && bo->seq_valid) {
227 /**
228 * We've already reserved this one.
229 */
230 if (unlikely(sequence == bo->val_seq))
231 return -EDEADLK;
232 /**
233 * Already reserved by a thread that will not back
234 * off for us. We need to back off.
235 */
236 if (unlikely(sequence - bo->val_seq < (1 << 31)))
237 return -EAGAIN;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200238 }
239
240 if (no_wait)
241 return -EBUSY;
242
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200243 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200244 ret = ttm_bo_wait_unreserved(bo, interruptible);
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200245 spin_lock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200246
247 if (unlikely(ret))
248 return ret;
249 }
250
251 if (use_sequence) {
Thomas Hellstrom95ccb0f2010-11-11 10:04:53 +0100252 /**
253 * Wake up waiters that may need to recheck for deadlock,
254 * if we decreased the sequence number.
255 */
256 if (unlikely((bo->val_seq - sequence < (1 << 31))
257 || !bo->seq_valid))
258 wake_up_all(&bo->event_queue);
259
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200260 bo->val_seq = sequence;
261 bo->seq_valid = true;
262 } else {
263 bo->seq_valid = false;
264 }
265
266 return 0;
267}
268EXPORT_SYMBOL(ttm_bo_reserve);
269
270static void ttm_bo_ref_bug(struct kref *list_kref)
271{
272 BUG();
273}
274
Dave Airlied6ea8882010-11-22 13:24:40 +1000275void ttm_bo_list_ref_sub(struct ttm_buffer_object *bo, int count,
276 bool never_free)
277{
Thomas Hellstrom2357cbe2010-11-16 15:21:08 +0100278 kref_sub(&bo->list_kref, count,
279 (never_free) ? ttm_bo_ref_bug : ttm_bo_release_list);
Dave Airlied6ea8882010-11-22 13:24:40 +1000280}
281
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200282int ttm_bo_reserve(struct ttm_buffer_object *bo,
283 bool interruptible,
284 bool no_wait, bool use_sequence, uint32_t sequence)
285{
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200286 struct ttm_bo_global *glob = bo->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200287 int put_count = 0;
288 int ret;
289
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200290 spin_lock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200291 ret = ttm_bo_reserve_locked(bo, interruptible, no_wait, use_sequence,
292 sequence);
293 if (likely(ret == 0))
294 put_count = ttm_bo_del_from_lru(bo);
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200295 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200296
Dave Airlied6ea8882010-11-22 13:24:40 +1000297 ttm_bo_list_ref_sub(bo, put_count, true);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200298
299 return ret;
300}
301
Thomas Hellstrom95762c22010-11-17 12:28:30 +0000302void ttm_bo_unreserve_locked(struct ttm_buffer_object *bo)
303{
304 ttm_bo_add_to_lru(bo);
305 atomic_set(&bo->reserved, 0);
306 wake_up_all(&bo->event_queue);
307}
308
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200309void ttm_bo_unreserve(struct ttm_buffer_object *bo)
310{
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200311 struct ttm_bo_global *glob = bo->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200312
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200313 spin_lock(&glob->lru_lock);
Thomas Hellstrom95762c22010-11-17 12:28:30 +0000314 ttm_bo_unreserve_locked(bo);
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200315 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200316}
317EXPORT_SYMBOL(ttm_bo_unreserve);
318
319/*
320 * Call bo->mutex locked.
321 */
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200322static int ttm_bo_add_ttm(struct ttm_buffer_object *bo, bool zero_alloc)
323{
324 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200325 struct ttm_bo_global *glob = bo->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200326 int ret = 0;
327 uint32_t page_flags = 0;
328
329 TTM_ASSERT_LOCKED(&bo->mutex);
330 bo->ttm = NULL;
331
Dave Airliead49f502009-07-10 22:36:26 +1000332 if (bdev->need_dma32)
333 page_flags |= TTM_PAGE_FLAG_DMA32;
334
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200335 switch (bo->type) {
336 case ttm_bo_type_device:
337 if (zero_alloc)
338 page_flags |= TTM_PAGE_FLAG_ZERO_ALLOC;
339 case ttm_bo_type_kernel:
Jerome Glisse649bf3c2011-11-01 20:46:13 -0400340 bo->ttm = bdev->driver->ttm_tt_create(bdev, bo->num_pages << PAGE_SHIFT,
341 page_flags, glob->dummy_read_page);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200342 if (unlikely(bo->ttm == NULL))
343 ret = -ENOMEM;
344 break;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200345 default:
346 printk(KERN_ERR TTM_PFX "Illegal buffer object type\n");
347 ret = -EINVAL;
348 break;
349 }
350
351 return ret;
352}
353
354static int ttm_bo_handle_move_mem(struct ttm_buffer_object *bo,
355 struct ttm_mem_reg *mem,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000356 bool evict, bool interruptible,
357 bool no_wait_reserve, bool no_wait_gpu)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200358{
359 struct ttm_bo_device *bdev = bo->bdev;
360 bool old_is_pci = ttm_mem_reg_is_pci(bdev, &bo->mem);
361 bool new_is_pci = ttm_mem_reg_is_pci(bdev, mem);
362 struct ttm_mem_type_manager *old_man = &bdev->man[bo->mem.mem_type];
363 struct ttm_mem_type_manager *new_man = &bdev->man[mem->mem_type];
364 int ret = 0;
365
366 if (old_is_pci || new_is_pci ||
Thomas Hellstromeba67092010-11-11 09:41:57 +0100367 ((mem->placement & bo->mem.placement & TTM_PL_MASK_CACHING) == 0)) {
368 ret = ttm_mem_io_lock(old_man, true);
369 if (unlikely(ret != 0))
370 goto out_err;
371 ttm_bo_unmap_virtual_locked(bo);
372 ttm_mem_io_unlock(old_man);
373 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200374
375 /*
376 * Create and bind a ttm if required.
377 */
378
Ben Skeggs8d3bb232011-08-22 03:15:05 +0000379 if (!(new_man->flags & TTM_MEMTYPE_FLAG_FIXED)) {
380 if (bo->ttm == NULL) {
Ben Skeggsff02b132011-09-14 06:08:06 +1000381 bool zero = !(old_man->flags & TTM_MEMTYPE_FLAG_FIXED);
382 ret = ttm_bo_add_ttm(bo, zero);
Ben Skeggs8d3bb232011-08-22 03:15:05 +0000383 if (ret)
384 goto out_err;
385 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200386
387 ret = ttm_tt_set_placement_caching(bo->ttm, mem->placement);
388 if (ret)
Thomas Hellstrom87ef9202009-06-17 12:29:57 +0200389 goto out_err;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200390
391 if (mem->mem_type != TTM_PL_SYSTEM) {
392 ret = ttm_tt_bind(bo->ttm, mem);
393 if (ret)
394 goto out_err;
395 }
396
397 if (bo->mem.mem_type == TTM_PL_SYSTEM) {
Ben Skeggs82ef5942011-02-02 00:27:10 +0000398 if (bdev->driver->move_notify)
399 bdev->driver->move_notify(bo, mem);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100400 bo->mem = *mem;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200401 mem->mm_node = NULL;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200402 goto moved;
403 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200404 }
405
Dave Airliee024e112009-06-24 09:48:08 +1000406 if (bdev->driver->move_notify)
407 bdev->driver->move_notify(bo, mem);
408
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200409 if (!(old_man->flags & TTM_MEMTYPE_FLAG_FIXED) &&
410 !(new_man->flags & TTM_MEMTYPE_FLAG_FIXED))
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000411 ret = ttm_bo_move_ttm(bo, evict, no_wait_reserve, no_wait_gpu, mem);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200412 else if (bdev->driver->move)
413 ret = bdev->driver->move(bo, evict, interruptible,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000414 no_wait_reserve, no_wait_gpu, mem);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200415 else
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000416 ret = ttm_bo_move_memcpy(bo, evict, no_wait_reserve, no_wait_gpu, mem);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200417
418 if (ret)
419 goto out_err;
420
421moved:
422 if (bo->evicted) {
423 ret = bdev->driver->invalidate_caches(bdev, bo->mem.placement);
424 if (ret)
425 printk(KERN_ERR TTM_PFX "Can not flush read caches\n");
426 bo->evicted = false;
427 }
428
429 if (bo->mem.mm_node) {
Ben Skeggsd961db72010-08-05 10:48:18 +1000430 bo->offset = (bo->mem.start << PAGE_SHIFT) +
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200431 bdev->man[bo->mem.mem_type].gpu_offset;
432 bo->cur_placement = bo->mem.placement;
Thomas Hellstrom354fb522010-01-13 22:28:45 +0100433 } else
434 bo->offset = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200435
436 return 0;
437
438out_err:
439 new_man = &bdev->man[bo->mem.mem_type];
440 if ((new_man->flags & TTM_MEMTYPE_FLAG_FIXED) && bo->ttm) {
441 ttm_tt_unbind(bo->ttm);
442 ttm_tt_destroy(bo->ttm);
443 bo->ttm = NULL;
444 }
445
446 return ret;
447}
448
449/**
Thomas Hellstrom40d857b2010-10-19 09:01:00 +0200450 * Call bo::reserved.
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200451 * Will release GPU memory type usage on destruction.
Thomas Hellstrom40d857b2010-10-19 09:01:00 +0200452 * This is the place to put in driver specific hooks to release
453 * driver private resources.
454 * Will release the bo::reserved lock.
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200455 */
456
457static void ttm_bo_cleanup_memtype_use(struct ttm_buffer_object *bo)
458{
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200459 if (bo->ttm) {
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200460 ttm_tt_unbind(bo->ttm);
461 ttm_tt_destroy(bo->ttm);
462 bo->ttm = NULL;
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200463 }
Thomas Hellstrom40d857b2010-10-19 09:01:00 +0200464 ttm_bo_mem_put(bo, &bo->mem);
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200465
466 atomic_set(&bo->reserved, 0);
Thomas Hellstrom06fba6d2010-10-29 10:46:48 +0200467
468 /*
469 * Make processes trying to reserve really pick it up.
470 */
471 smp_mb__after_atomic_dec();
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200472 wake_up_all(&bo->event_queue);
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200473}
474
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200475static void ttm_bo_cleanup_refs_or_queue(struct ttm_buffer_object *bo)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200476{
477 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200478 struct ttm_bo_global *glob = bo->glob;
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200479 struct ttm_bo_driver *driver;
Thomas Hellstromaa123262010-11-02 13:21:47 +0000480 void *sync_obj = NULL;
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200481 void *sync_obj_arg;
482 int put_count;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200483 int ret;
484
Thomas Hellstrom702adba2010-11-17 12:28:29 +0000485 spin_lock(&bdev->fence_lock);
Dave Airlie1717c0e2011-10-27 18:28:37 +0200486 (void) ttm_bo_wait(bo, false, false, true);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200487 if (!bo->sync_obj) {
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200488
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200489 spin_lock(&glob->lru_lock);
Thomas Hellstromaaa20732009-12-02 18:33:45 +0100490
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200491 /**
Thomas Hellstrom702adba2010-11-17 12:28:29 +0000492 * Lock inversion between bo:reserve and bdev::fence_lock here,
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200493 * but that's OK, since we're only trylocking.
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200494 */
495
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200496 ret = ttm_bo_reserve_locked(bo, false, true, false, 0);
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200497
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200498 if (unlikely(ret == -EBUSY))
499 goto queue;
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200500
Thomas Hellstrom702adba2010-11-17 12:28:29 +0000501 spin_unlock(&bdev->fence_lock);
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200502 put_count = ttm_bo_del_from_lru(bo);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200503
Thomas Hellstrom40d857b2010-10-19 09:01:00 +0200504 spin_unlock(&glob->lru_lock);
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200505 ttm_bo_cleanup_memtype_use(bo);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200506
Dave Airlied6ea8882010-11-22 13:24:40 +1000507 ttm_bo_list_ref_sub(bo, put_count, true);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200508
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200509 return;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200510 } else {
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200511 spin_lock(&glob->lru_lock);
512 }
513queue:
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200514 driver = bdev->driver;
Thomas Hellstromaa123262010-11-02 13:21:47 +0000515 if (bo->sync_obj)
516 sync_obj = driver->sync_obj_ref(bo->sync_obj);
517 sync_obj_arg = bo->sync_obj_arg;
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200518
519 kref_get(&bo->list_kref);
520 list_add_tail(&bo->ddestroy, &bdev->ddestroy);
521 spin_unlock(&glob->lru_lock);
Thomas Hellstrom702adba2010-11-17 12:28:29 +0000522 spin_unlock(&bdev->fence_lock);
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200523
Thomas Hellstromaa123262010-11-02 13:21:47 +0000524 if (sync_obj) {
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200525 driver->sync_obj_flush(sync_obj, sync_obj_arg);
Thomas Hellstromaa123262010-11-02 13:21:47 +0000526 driver->sync_obj_unref(&sync_obj);
527 }
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200528 schedule_delayed_work(&bdev->wq,
529 ((HZ / 100) < 1) ? 1 : HZ / 100);
530}
531
532/**
533 * function ttm_bo_cleanup_refs
534 * If bo idle, remove from delayed- and lru lists, and unref.
535 * If not idle, do nothing.
536 *
537 * @interruptible Any sleeps should occur interruptibly.
538 * @no_wait_reserve Never wait for reserve. Return -EBUSY instead.
539 * @no_wait_gpu Never wait for gpu. Return -EBUSY instead.
540 */
541
542static int ttm_bo_cleanup_refs(struct ttm_buffer_object *bo,
543 bool interruptible,
544 bool no_wait_reserve,
545 bool no_wait_gpu)
546{
Thomas Hellstrom702adba2010-11-17 12:28:29 +0000547 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200548 struct ttm_bo_global *glob = bo->glob;
549 int put_count;
550 int ret = 0;
551
552retry:
Thomas Hellstrom702adba2010-11-17 12:28:29 +0000553 spin_lock(&bdev->fence_lock);
Dave Airlie1717c0e2011-10-27 18:28:37 +0200554 ret = ttm_bo_wait(bo, false, interruptible, no_wait_gpu);
Thomas Hellstrom702adba2010-11-17 12:28:29 +0000555 spin_unlock(&bdev->fence_lock);
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200556
557 if (unlikely(ret != 0))
558 return ret;
559
560 spin_lock(&glob->lru_lock);
561 ret = ttm_bo_reserve_locked(bo, interruptible,
562 no_wait_reserve, false, 0);
563
564 if (unlikely(ret != 0) || list_empty(&bo->ddestroy)) {
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200565 spin_unlock(&glob->lru_lock);
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200566 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200567 }
568
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200569 /**
570 * We can re-check for sync object without taking
571 * the bo::lock since setting the sync object requires
572 * also bo::reserved. A busy object at this point may
573 * be caused by another thread recently starting an accelerated
574 * eviction.
575 */
576
577 if (unlikely(bo->sync_obj)) {
578 atomic_set(&bo->reserved, 0);
579 wake_up_all(&bo->event_queue);
580 spin_unlock(&glob->lru_lock);
581 goto retry;
582 }
583
584 put_count = ttm_bo_del_from_lru(bo);
585 list_del_init(&bo->ddestroy);
586 ++put_count;
587
588 spin_unlock(&glob->lru_lock);
589 ttm_bo_cleanup_memtype_use(bo);
590
Dave Airlied6ea8882010-11-22 13:24:40 +1000591 ttm_bo_list_ref_sub(bo, put_count, true);
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200592
593 return 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200594}
595
596/**
597 * Traverse the delayed list, and call ttm_bo_cleanup_refs on all
598 * encountered buffers.
599 */
600
601static int ttm_bo_delayed_delete(struct ttm_bo_device *bdev, bool remove_all)
602{
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200603 struct ttm_bo_global *glob = bdev->glob;
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100604 struct ttm_buffer_object *entry = NULL;
605 int ret = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200606
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200607 spin_lock(&glob->lru_lock);
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100608 if (list_empty(&bdev->ddestroy))
609 goto out_unlock;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200610
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100611 entry = list_first_entry(&bdev->ddestroy,
612 struct ttm_buffer_object, ddestroy);
613 kref_get(&entry->list_kref);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200614
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100615 for (;;) {
616 struct ttm_buffer_object *nentry = NULL;
617
618 if (entry->ddestroy.next != &bdev->ddestroy) {
619 nentry = list_first_entry(&entry->ddestroy,
620 struct ttm_buffer_object, ddestroy);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200621 kref_get(&nentry->list_kref);
622 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200623
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200624 spin_unlock(&glob->lru_lock);
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200625 ret = ttm_bo_cleanup_refs(entry, false, !remove_all,
626 !remove_all);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200627 kref_put(&entry->list_kref, ttm_bo_release_list);
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100628 entry = nentry;
629
630 if (ret || !entry)
631 goto out;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200632
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200633 spin_lock(&glob->lru_lock);
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100634 if (list_empty(&entry->ddestroy))
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200635 break;
636 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200637
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100638out_unlock:
639 spin_unlock(&glob->lru_lock);
640out:
641 if (entry)
642 kref_put(&entry->list_kref, ttm_bo_release_list);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200643 return ret;
644}
645
646static void ttm_bo_delayed_workqueue(struct work_struct *work)
647{
648 struct ttm_bo_device *bdev =
649 container_of(work, struct ttm_bo_device, wq.work);
650
651 if (ttm_bo_delayed_delete(bdev, false)) {
652 schedule_delayed_work(&bdev->wq,
653 ((HZ / 100) < 1) ? 1 : HZ / 100);
654 }
655}
656
657static void ttm_bo_release(struct kref *kref)
658{
659 struct ttm_buffer_object *bo =
660 container_of(kref, struct ttm_buffer_object, kref);
661 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstromeba67092010-11-11 09:41:57 +0100662 struct ttm_mem_type_manager *man = &bdev->man[bo->mem.mem_type];
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200663
664 if (likely(bo->vm_node != NULL)) {
665 rb_erase(&bo->vm_rb, &bdev->addr_space_rb);
666 drm_mm_put_block(bo->vm_node);
667 bo->vm_node = NULL;
668 }
669 write_unlock(&bdev->vm_lock);
Thomas Hellstromeba67092010-11-11 09:41:57 +0100670 ttm_mem_io_lock(man, false);
671 ttm_mem_io_free_vm(bo);
672 ttm_mem_io_unlock(man);
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200673 ttm_bo_cleanup_refs_or_queue(bo);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200674 kref_put(&bo->list_kref, ttm_bo_release_list);
675 write_lock(&bdev->vm_lock);
676}
677
678void ttm_bo_unref(struct ttm_buffer_object **p_bo)
679{
680 struct ttm_buffer_object *bo = *p_bo;
681 struct ttm_bo_device *bdev = bo->bdev;
682
683 *p_bo = NULL;
684 write_lock(&bdev->vm_lock);
685 kref_put(&bo->kref, ttm_bo_release);
686 write_unlock(&bdev->vm_lock);
687}
688EXPORT_SYMBOL(ttm_bo_unref);
689
Matthew Garrett7c5ee532010-04-26 16:00:09 -0400690int ttm_bo_lock_delayed_workqueue(struct ttm_bo_device *bdev)
691{
692 return cancel_delayed_work_sync(&bdev->wq);
693}
694EXPORT_SYMBOL(ttm_bo_lock_delayed_workqueue);
695
696void ttm_bo_unlock_delayed_workqueue(struct ttm_bo_device *bdev, int resched)
697{
698 if (resched)
699 schedule_delayed_work(&bdev->wq,
700 ((HZ / 100) < 1) ? 1 : HZ / 100);
701}
702EXPORT_SYMBOL(ttm_bo_unlock_delayed_workqueue);
703
Jerome Glisseca262a9992009-12-08 15:33:32 +0100704static int ttm_bo_evict(struct ttm_buffer_object *bo, bool interruptible,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000705 bool no_wait_reserve, bool no_wait_gpu)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200706{
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200707 struct ttm_bo_device *bdev = bo->bdev;
708 struct ttm_mem_reg evict_mem;
Jerome Glisseca262a9992009-12-08 15:33:32 +0100709 struct ttm_placement placement;
710 int ret = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200711
Thomas Hellstrom702adba2010-11-17 12:28:29 +0000712 spin_lock(&bdev->fence_lock);
Dave Airlie1717c0e2011-10-27 18:28:37 +0200713 ret = ttm_bo_wait(bo, false, interruptible, no_wait_gpu);
Thomas Hellstrom702adba2010-11-17 12:28:29 +0000714 spin_unlock(&bdev->fence_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200715
Thomas Hellstrom78ecf092009-06-17 12:29:55 +0200716 if (unlikely(ret != 0)) {
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +0100717 if (ret != -ERESTARTSYS) {
Thomas Hellstrom78ecf092009-06-17 12:29:55 +0200718 printk(KERN_ERR TTM_PFX
719 "Failed to expire sync object before "
720 "buffer eviction.\n");
721 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200722 goto out;
723 }
724
725 BUG_ON(!atomic_read(&bo->reserved));
726
727 evict_mem = bo->mem;
728 evict_mem.mm_node = NULL;
Thomas Hellstromeba67092010-11-11 09:41:57 +0100729 evict_mem.bus.io_reserved_vm = false;
730 evict_mem.bus.io_reserved_count = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200731
Jerome Glisse7cb7d1d2009-12-09 22:14:27 +0100732 placement.fpfn = 0;
733 placement.lpfn = 0;
734 placement.num_placement = 0;
735 placement.num_busy_placement = 0;
Jerome Glisseca262a9992009-12-08 15:33:32 +0100736 bdev->driver->evict_flags(bo, &placement);
737 ret = ttm_bo_mem_space(bo, &placement, &evict_mem, interruptible,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000738 no_wait_reserve, no_wait_gpu);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200739 if (ret) {
Jerome Glissefb53f862009-12-09 21:55:10 +0100740 if (ret != -ERESTARTSYS) {
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200741 printk(KERN_ERR TTM_PFX
742 "Failed to find memory space for "
743 "buffer 0x%p eviction.\n", bo);
Jerome Glissefb53f862009-12-09 21:55:10 +0100744 ttm_bo_mem_space_debug(bo, &placement);
745 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200746 goto out;
747 }
748
749 ret = ttm_bo_handle_move_mem(bo, &evict_mem, true, interruptible,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000750 no_wait_reserve, no_wait_gpu);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200751 if (ret) {
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +0100752 if (ret != -ERESTARTSYS)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200753 printk(KERN_ERR TTM_PFX "Buffer eviction failed\n");
Ben Skeggs42311ff2010-08-04 12:07:08 +1000754 ttm_bo_mem_put(bo, &evict_mem);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200755 goto out;
756 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200757 bo->evicted = true;
758out:
759 return ret;
760}
761
Jerome Glisseca262a9992009-12-08 15:33:32 +0100762static int ttm_mem_evict_first(struct ttm_bo_device *bdev,
763 uint32_t mem_type,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000764 bool interruptible, bool no_wait_reserve,
765 bool no_wait_gpu)
Jerome Glisseca262a9992009-12-08 15:33:32 +0100766{
767 struct ttm_bo_global *glob = bdev->glob;
768 struct ttm_mem_type_manager *man = &bdev->man[mem_type];
769 struct ttm_buffer_object *bo;
770 int ret, put_count = 0;
771
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100772retry:
Jerome Glisseca262a9992009-12-08 15:33:32 +0100773 spin_lock(&glob->lru_lock);
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100774 if (list_empty(&man->lru)) {
775 spin_unlock(&glob->lru_lock);
776 return -EBUSY;
777 }
778
Jerome Glisseca262a9992009-12-08 15:33:32 +0100779 bo = list_first_entry(&man->lru, struct ttm_buffer_object, lru);
780 kref_get(&bo->list_kref);
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100781
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200782 if (!list_empty(&bo->ddestroy)) {
783 spin_unlock(&glob->lru_lock);
784 ret = ttm_bo_cleanup_refs(bo, interruptible,
785 no_wait_reserve, no_wait_gpu);
786 kref_put(&bo->list_kref, ttm_bo_release_list);
787
788 if (likely(ret == 0 || ret == -ERESTARTSYS))
789 return ret;
790
791 goto retry;
792 }
793
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000794 ret = ttm_bo_reserve_locked(bo, false, no_wait_reserve, false, 0);
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100795
796 if (unlikely(ret == -EBUSY)) {
797 spin_unlock(&glob->lru_lock);
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000798 if (likely(!no_wait_gpu))
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100799 ret = ttm_bo_wait_unreserved(bo, interruptible);
800
801 kref_put(&bo->list_kref, ttm_bo_release_list);
802
803 /**
804 * We *need* to retry after releasing the lru lock.
805 */
806
807 if (unlikely(ret != 0))
808 return ret;
809 goto retry;
810 }
811
812 put_count = ttm_bo_del_from_lru(bo);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100813 spin_unlock(&glob->lru_lock);
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100814
815 BUG_ON(ret != 0);
816
Dave Airlied6ea8882010-11-22 13:24:40 +1000817 ttm_bo_list_ref_sub(bo, put_count, true);
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100818
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000819 ret = ttm_bo_evict(bo, interruptible, no_wait_reserve, no_wait_gpu);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100820 ttm_bo_unreserve(bo);
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100821
Jerome Glisseca262a9992009-12-08 15:33:32 +0100822 kref_put(&bo->list_kref, ttm_bo_release_list);
823 return ret;
824}
825
Ben Skeggs42311ff2010-08-04 12:07:08 +1000826void ttm_bo_mem_put(struct ttm_buffer_object *bo, struct ttm_mem_reg *mem)
827{
Ben Skeggsd961db72010-08-05 10:48:18 +1000828 struct ttm_mem_type_manager *man = &bo->bdev->man[mem->mem_type];
Ben Skeggs42311ff2010-08-04 12:07:08 +1000829
Ben Skeggsd961db72010-08-05 10:48:18 +1000830 if (mem->mm_node)
831 (*man->func->put_node)(man, mem);
Ben Skeggs42311ff2010-08-04 12:07:08 +1000832}
833EXPORT_SYMBOL(ttm_bo_mem_put);
834
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200835/**
836 * Repeatedly evict memory from the LRU for @mem_type until we create enough
837 * space, or we've evicted everything and there isn't enough space.
838 */
Jerome Glisseca262a9992009-12-08 15:33:32 +0100839static int ttm_bo_mem_force_space(struct ttm_buffer_object *bo,
840 uint32_t mem_type,
841 struct ttm_placement *placement,
842 struct ttm_mem_reg *mem,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000843 bool interruptible,
844 bool no_wait_reserve,
845 bool no_wait_gpu)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200846{
Jerome Glisseca262a9992009-12-08 15:33:32 +0100847 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200848 struct ttm_mem_type_manager *man = &bdev->man[mem_type];
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200849 int ret;
850
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200851 do {
Ben Skeggsd961db72010-08-05 10:48:18 +1000852 ret = (*man->func->get_node)(man, bo, placement, mem);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200853 if (unlikely(ret != 0))
854 return ret;
Ben Skeggsd961db72010-08-05 10:48:18 +1000855 if (mem->mm_node)
Jerome Glisseca262a9992009-12-08 15:33:32 +0100856 break;
Jerome Glisseca262a9992009-12-08 15:33:32 +0100857 ret = ttm_mem_evict_first(bdev, mem_type, interruptible,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000858 no_wait_reserve, no_wait_gpu);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100859 if (unlikely(ret != 0))
860 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200861 } while (1);
Ben Skeggsd961db72010-08-05 10:48:18 +1000862 if (mem->mm_node == NULL)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200863 return -ENOMEM;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200864 mem->mem_type = mem_type;
865 return 0;
866}
867
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200868static uint32_t ttm_bo_select_caching(struct ttm_mem_type_manager *man,
869 uint32_t cur_placement,
870 uint32_t proposed_placement)
871{
872 uint32_t caching = proposed_placement & TTM_PL_MASK_CACHING;
873 uint32_t result = proposed_placement & ~TTM_PL_MASK_CACHING;
874
875 /**
876 * Keep current caching if possible.
877 */
878
879 if ((cur_placement & caching) != 0)
880 result |= (cur_placement & caching);
881 else if ((man->default_caching & caching) != 0)
882 result |= man->default_caching;
883 else if ((TTM_PL_FLAG_CACHED & caching) != 0)
884 result |= TTM_PL_FLAG_CACHED;
885 else if ((TTM_PL_FLAG_WC & caching) != 0)
886 result |= TTM_PL_FLAG_WC;
887 else if ((TTM_PL_FLAG_UNCACHED & caching) != 0)
888 result |= TTM_PL_FLAG_UNCACHED;
889
890 return result;
891}
892
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200893static bool ttm_bo_mt_compatible(struct ttm_mem_type_manager *man,
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200894 uint32_t mem_type,
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200895 uint32_t proposed_placement,
896 uint32_t *masked_placement)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200897{
898 uint32_t cur_flags = ttm_bo_type_flags(mem_type);
899
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200900 if ((cur_flags & proposed_placement & TTM_PL_MASK_MEM) == 0)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200901 return false;
902
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200903 if ((proposed_placement & man->available_caching) == 0)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200904 return false;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200905
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200906 cur_flags |= (proposed_placement & man->available_caching);
907
908 *masked_placement = cur_flags;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200909 return true;
910}
911
912/**
913 * Creates space for memory region @mem according to its type.
914 *
915 * This function first searches for free space in compatible memory types in
916 * the priority order defined by the driver. If free space isn't found, then
917 * ttm_bo_mem_force_space is attempted in priority order to evict and find
918 * space.
919 */
920int ttm_bo_mem_space(struct ttm_buffer_object *bo,
Jerome Glisseca262a9992009-12-08 15:33:32 +0100921 struct ttm_placement *placement,
922 struct ttm_mem_reg *mem,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000923 bool interruptible, bool no_wait_reserve,
924 bool no_wait_gpu)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200925{
926 struct ttm_bo_device *bdev = bo->bdev;
927 struct ttm_mem_type_manager *man;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200928 uint32_t mem_type = TTM_PL_SYSTEM;
929 uint32_t cur_flags = 0;
930 bool type_found = false;
931 bool type_ok = false;
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +0100932 bool has_erestartsys = false;
Jerome Glisseca262a9992009-12-08 15:33:32 +0100933 int i, ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200934
935 mem->mm_node = NULL;
Dave Airlieb6637522009-12-14 14:51:35 +1000936 for (i = 0; i < placement->num_placement; ++i) {
Jerome Glisseca262a9992009-12-08 15:33:32 +0100937 ret = ttm_mem_type_from_flags(placement->placement[i],
938 &mem_type);
939 if (ret)
940 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200941 man = &bdev->man[mem_type];
942
943 type_ok = ttm_bo_mt_compatible(man,
Jerome Glisseca262a9992009-12-08 15:33:32 +0100944 mem_type,
945 placement->placement[i],
946 &cur_flags);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200947
948 if (!type_ok)
949 continue;
950
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200951 cur_flags = ttm_bo_select_caching(man, bo->mem.placement,
952 cur_flags);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100953 /*
954 * Use the access and other non-mapping-related flag bits from
955 * the memory placement flags to the current flags
956 */
957 ttm_flag_masked(&cur_flags, placement->placement[i],
958 ~TTM_PL_MASK_MEMTYPE);
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200959
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200960 if (mem_type == TTM_PL_SYSTEM)
961 break;
962
963 if (man->has_type && man->use_type) {
964 type_found = true;
Ben Skeggsd961db72010-08-05 10:48:18 +1000965 ret = (*man->func->get_node)(man, bo, placement, mem);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100966 if (unlikely(ret))
967 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200968 }
Ben Skeggsd961db72010-08-05 10:48:18 +1000969 if (mem->mm_node)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200970 break;
971 }
972
Ben Skeggsd961db72010-08-05 10:48:18 +1000973 if ((type_ok && (mem_type == TTM_PL_SYSTEM)) || mem->mm_node) {
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200974 mem->mem_type = mem_type;
975 mem->placement = cur_flags;
976 return 0;
977 }
978
979 if (!type_found)
980 return -EINVAL;
981
Dave Airlieb6637522009-12-14 14:51:35 +1000982 for (i = 0; i < placement->num_busy_placement; ++i) {
983 ret = ttm_mem_type_from_flags(placement->busy_placement[i],
Jerome Glisseca262a9992009-12-08 15:33:32 +0100984 &mem_type);
985 if (ret)
986 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200987 man = &bdev->man[mem_type];
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200988 if (!man->has_type)
989 continue;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200990 if (!ttm_bo_mt_compatible(man,
Jerome Glisseca262a9992009-12-08 15:33:32 +0100991 mem_type,
Dave Airlieb6637522009-12-14 14:51:35 +1000992 placement->busy_placement[i],
Jerome Glisseca262a9992009-12-08 15:33:32 +0100993 &cur_flags))
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200994 continue;
995
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200996 cur_flags = ttm_bo_select_caching(man, bo->mem.placement,
997 cur_flags);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100998 /*
999 * Use the access and other non-mapping-related flag bits from
1000 * the memory placement flags to the current flags
1001 */
Dave Airlieb6637522009-12-14 14:51:35 +10001002 ttm_flag_masked(&cur_flags, placement->busy_placement[i],
Jerome Glisseca262a9992009-12-08 15:33:32 +01001003 ~TTM_PL_MASK_MEMTYPE);
Thomas Hellstromae3e8122009-06-24 19:57:34 +02001004
Thomas Hellstrom0eaddb22010-01-16 16:05:04 +01001005
1006 if (mem_type == TTM_PL_SYSTEM) {
1007 mem->mem_type = mem_type;
1008 mem->placement = cur_flags;
1009 mem->mm_node = NULL;
1010 return 0;
1011 }
1012
Jerome Glisseca262a9992009-12-08 15:33:32 +01001013 ret = ttm_bo_mem_force_space(bo, mem_type, placement, mem,
Jerome Glisse9d87fa22010-04-07 10:21:19 +00001014 interruptible, no_wait_reserve, no_wait_gpu);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001015 if (ret == 0 && mem->mm_node) {
1016 mem->placement = cur_flags;
1017 return 0;
1018 }
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +01001019 if (ret == -ERESTARTSYS)
1020 has_erestartsys = true;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001021 }
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +01001022 ret = (has_erestartsys) ? -ERESTARTSYS : -ENOMEM;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001023 return ret;
1024}
1025EXPORT_SYMBOL(ttm_bo_mem_space);
1026
1027int ttm_bo_wait_cpu(struct ttm_buffer_object *bo, bool no_wait)
1028{
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001029 if ((atomic_read(&bo->cpu_writers) > 0) && no_wait)
1030 return -EBUSY;
1031
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +01001032 return wait_event_interruptible(bo->event_queue,
1033 atomic_read(&bo->cpu_writers) == 0);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001034}
Ben Skeggsd1ede142009-12-11 15:13:00 +10001035EXPORT_SYMBOL(ttm_bo_wait_cpu);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001036
1037int ttm_bo_move_buffer(struct ttm_buffer_object *bo,
Jerome Glisseca262a9992009-12-08 15:33:32 +01001038 struct ttm_placement *placement,
Jerome Glisse9d87fa22010-04-07 10:21:19 +00001039 bool interruptible, bool no_wait_reserve,
1040 bool no_wait_gpu)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001041{
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001042 int ret = 0;
1043 struct ttm_mem_reg mem;
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001044 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001045
1046 BUG_ON(!atomic_read(&bo->reserved));
1047
1048 /*
1049 * FIXME: It's possible to pipeline buffer moves.
1050 * Have the driver move function wait for idle when necessary,
1051 * instead of doing it here.
1052 */
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001053 spin_lock(&bdev->fence_lock);
Dave Airlie1717c0e2011-10-27 18:28:37 +02001054 ret = ttm_bo_wait(bo, false, interruptible, no_wait_gpu);
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001055 spin_unlock(&bdev->fence_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001056 if (ret)
1057 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001058 mem.num_pages = bo->num_pages;
1059 mem.size = mem.num_pages << PAGE_SHIFT;
1060 mem.page_alignment = bo->mem.page_alignment;
Thomas Hellstromeba67092010-11-11 09:41:57 +01001061 mem.bus.io_reserved_vm = false;
1062 mem.bus.io_reserved_count = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001063 /*
1064 * Determine where to move the buffer.
1065 */
Jerome Glisse9d87fa22010-04-07 10:21:19 +00001066 ret = ttm_bo_mem_space(bo, placement, &mem, interruptible, no_wait_reserve, no_wait_gpu);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001067 if (ret)
1068 goto out_unlock;
Jerome Glisse9d87fa22010-04-07 10:21:19 +00001069 ret = ttm_bo_handle_move_mem(bo, &mem, false, interruptible, no_wait_reserve, no_wait_gpu);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001070out_unlock:
Ben Skeggsd961db72010-08-05 10:48:18 +10001071 if (ret && mem.mm_node)
1072 ttm_bo_mem_put(bo, &mem);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001073 return ret;
1074}
1075
Jerome Glisseca262a9992009-12-08 15:33:32 +01001076static int ttm_bo_mem_compat(struct ttm_placement *placement,
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001077 struct ttm_mem_reg *mem)
1078{
Jerome Glisseca262a9992009-12-08 15:33:32 +01001079 int i;
Thomas Hellstrome22238e2010-02-12 00:18:00 +01001080
Ben Skeggsd961db72010-08-05 10:48:18 +10001081 if (mem->mm_node && placement->lpfn != 0 &&
1082 (mem->start < placement->fpfn ||
1083 mem->start + mem->num_pages > placement->lpfn))
Thomas Hellstrome22238e2010-02-12 00:18:00 +01001084 return -1;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001085
Jerome Glisseca262a9992009-12-08 15:33:32 +01001086 for (i = 0; i < placement->num_placement; i++) {
1087 if ((placement->placement[i] & mem->placement &
1088 TTM_PL_MASK_CACHING) &&
1089 (placement->placement[i] & mem->placement &
1090 TTM_PL_MASK_MEM))
1091 return i;
1092 }
1093 return -1;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001094}
1095
Jerome Glisse09855ac2009-12-10 17:16:27 +01001096int ttm_bo_validate(struct ttm_buffer_object *bo,
1097 struct ttm_placement *placement,
Jerome Glisse9d87fa22010-04-07 10:21:19 +00001098 bool interruptible, bool no_wait_reserve,
1099 bool no_wait_gpu)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001100{
1101 int ret;
1102
1103 BUG_ON(!atomic_read(&bo->reserved));
Jerome Glisseca262a9992009-12-08 15:33:32 +01001104 /* Check that range is valid */
1105 if (placement->lpfn || placement->fpfn)
1106 if (placement->fpfn > placement->lpfn ||
1107 (placement->lpfn - placement->fpfn) < bo->num_pages)
1108 return -EINVAL;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001109 /*
1110 * Check whether we need to move buffer.
1111 */
Jerome Glisseca262a9992009-12-08 15:33:32 +01001112 ret = ttm_bo_mem_compat(placement, &bo->mem);
1113 if (ret < 0) {
Jerome Glisse9d87fa22010-04-07 10:21:19 +00001114 ret = ttm_bo_move_buffer(bo, placement, interruptible, no_wait_reserve, no_wait_gpu);
Jerome Glisseca262a9992009-12-08 15:33:32 +01001115 if (ret)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001116 return ret;
Jerome Glisseca262a9992009-12-08 15:33:32 +01001117 } else {
1118 /*
1119 * Use the access and other non-mapping-related flag bits from
1120 * the compatible memory placement flags to the active flags
1121 */
1122 ttm_flag_masked(&bo->mem.placement, placement->placement[ret],
1123 ~TTM_PL_MASK_MEMTYPE);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001124 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001125 /*
1126 * We might need to add a TTM.
1127 */
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001128 if (bo->mem.mem_type == TTM_PL_SYSTEM && bo->ttm == NULL) {
1129 ret = ttm_bo_add_ttm(bo, true);
1130 if (ret)
1131 return ret;
1132 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001133 return 0;
1134}
Jerome Glisse09855ac2009-12-10 17:16:27 +01001135EXPORT_SYMBOL(ttm_bo_validate);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001136
Jerome Glisse09855ac2009-12-10 17:16:27 +01001137int ttm_bo_check_placement(struct ttm_buffer_object *bo,
1138 struct ttm_placement *placement)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001139{
Thomas Hellstrom29e190e2010-11-02 13:21:48 +00001140 BUG_ON((placement->fpfn || placement->lpfn) &&
1141 (bo->mem.num_pages > (placement->lpfn - placement->fpfn)));
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001142
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001143 return 0;
1144}
1145
Jerome Glisse09855ac2009-12-10 17:16:27 +01001146int ttm_bo_init(struct ttm_bo_device *bdev,
1147 struct ttm_buffer_object *bo,
1148 unsigned long size,
1149 enum ttm_bo_type type,
1150 struct ttm_placement *placement,
1151 uint32_t page_alignment,
1152 unsigned long buffer_start,
1153 bool interruptible,
Jan Engelhardt5df23972011-04-04 01:25:18 +02001154 struct file *persistent_swap_storage,
Jerome Glisse09855ac2009-12-10 17:16:27 +01001155 size_t acc_size,
1156 void (*destroy) (struct ttm_buffer_object *))
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001157{
Jerome Glisse09855ac2009-12-10 17:16:27 +01001158 int ret = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001159 unsigned long num_pages;
1160
1161 size += buffer_start & ~PAGE_MASK;
1162 num_pages = (size + PAGE_SIZE - 1) >> PAGE_SHIFT;
1163 if (num_pages == 0) {
1164 printk(KERN_ERR TTM_PFX "Illegal buffer object size.\n");
Thomas Hellstrom7dfbbdc2010-11-09 21:31:44 +01001165 if (destroy)
1166 (*destroy)(bo);
1167 else
1168 kfree(bo);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001169 return -EINVAL;
1170 }
1171 bo->destroy = destroy;
1172
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001173 kref_init(&bo->kref);
1174 kref_init(&bo->list_kref);
1175 atomic_set(&bo->cpu_writers, 0);
1176 atomic_set(&bo->reserved, 1);
1177 init_waitqueue_head(&bo->event_queue);
1178 INIT_LIST_HEAD(&bo->lru);
1179 INIT_LIST_HEAD(&bo->ddestroy);
1180 INIT_LIST_HEAD(&bo->swap);
Thomas Hellstromeba67092010-11-11 09:41:57 +01001181 INIT_LIST_HEAD(&bo->io_reserve_lru);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001182 bo->bdev = bdev;
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001183 bo->glob = bdev->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001184 bo->type = type;
1185 bo->num_pages = num_pages;
Jerome Glisseeb6d2c32009-12-10 16:15:52 +01001186 bo->mem.size = num_pages << PAGE_SHIFT;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001187 bo->mem.mem_type = TTM_PL_SYSTEM;
1188 bo->mem.num_pages = bo->num_pages;
1189 bo->mem.mm_node = NULL;
1190 bo->mem.page_alignment = page_alignment;
Thomas Hellstromeba67092010-11-11 09:41:57 +01001191 bo->mem.bus.io_reserved_vm = false;
1192 bo->mem.bus.io_reserved_count = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001193 bo->buffer_start = buffer_start & PAGE_MASK;
1194 bo->priv_flags = 0;
1195 bo->mem.placement = (TTM_PL_FLAG_SYSTEM | TTM_PL_FLAG_CACHED);
1196 bo->seq_valid = false;
Jan Engelhardt5df23972011-04-04 01:25:18 +02001197 bo->persistent_swap_storage = persistent_swap_storage;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001198 bo->acc_size = acc_size;
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001199 atomic_inc(&bo->glob->bo_count);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001200
Jerome Glisse09855ac2009-12-10 17:16:27 +01001201 ret = ttm_bo_check_placement(bo, placement);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001202 if (unlikely(ret != 0))
1203 goto out_err;
1204
1205 /*
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001206 * For ttm_bo_type_device buffers, allocate
1207 * address space from the device.
1208 */
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001209 if (bo->type == ttm_bo_type_device) {
1210 ret = ttm_bo_setup_vm(bo);
1211 if (ret)
1212 goto out_err;
1213 }
1214
Jerome Glisse9d87fa22010-04-07 10:21:19 +00001215 ret = ttm_bo_validate(bo, placement, interruptible, false, false);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001216 if (ret)
1217 goto out_err;
1218
1219 ttm_bo_unreserve(bo);
1220 return 0;
1221
1222out_err:
1223 ttm_bo_unreserve(bo);
1224 ttm_bo_unref(&bo);
1225
1226 return ret;
1227}
Jerome Glisse09855ac2009-12-10 17:16:27 +01001228EXPORT_SYMBOL(ttm_bo_init);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001229
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001230static inline size_t ttm_bo_size(struct ttm_bo_global *glob,
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001231 unsigned long num_pages)
1232{
1233 size_t page_array_size = (num_pages * sizeof(void *) + PAGE_SIZE - 1) &
1234 PAGE_MASK;
1235
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001236 return glob->ttm_bo_size + 2 * page_array_size;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001237}
1238
Jerome Glisse09855ac2009-12-10 17:16:27 +01001239int ttm_bo_create(struct ttm_bo_device *bdev,
1240 unsigned long size,
1241 enum ttm_bo_type type,
1242 struct ttm_placement *placement,
1243 uint32_t page_alignment,
1244 unsigned long buffer_start,
1245 bool interruptible,
Jan Engelhardt5df23972011-04-04 01:25:18 +02001246 struct file *persistent_swap_storage,
Jerome Glisse09855ac2009-12-10 17:16:27 +01001247 struct ttm_buffer_object **p_bo)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001248{
1249 struct ttm_buffer_object *bo;
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001250 struct ttm_mem_global *mem_glob = bdev->glob->mem_glob;
Jerome Glisseca262a9992009-12-08 15:33:32 +01001251 int ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001252
1253 size_t acc_size =
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001254 ttm_bo_size(bdev->glob, (size + PAGE_SIZE - 1) >> PAGE_SHIFT);
Thomas Hellstrom5fd9cba2009-08-17 16:28:39 +02001255 ret = ttm_mem_global_alloc(mem_glob, acc_size, false, false);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001256 if (unlikely(ret != 0))
1257 return ret;
1258
1259 bo = kzalloc(sizeof(*bo), GFP_KERNEL);
1260
1261 if (unlikely(bo == NULL)) {
Thomas Hellstrom5fd9cba2009-08-17 16:28:39 +02001262 ttm_mem_global_free(mem_glob, acc_size);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001263 return -ENOMEM;
1264 }
1265
Jerome Glisse09855ac2009-12-10 17:16:27 +01001266 ret = ttm_bo_init(bdev, bo, size, type, placement, page_alignment,
1267 buffer_start, interruptible,
Jan Engelhardt5df23972011-04-04 01:25:18 +02001268 persistent_swap_storage, acc_size, NULL);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001269 if (likely(ret == 0))
1270 *p_bo = bo;
1271
1272 return ret;
1273}
Thomas Hellstrom4d798932011-10-04 20:13:11 +02001274EXPORT_SYMBOL(ttm_bo_create);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001275
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001276static int ttm_bo_force_list_clean(struct ttm_bo_device *bdev,
Jerome Glisseca262a9992009-12-08 15:33:32 +01001277 unsigned mem_type, bool allow_errors)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001278{
Jerome Glisseca262a9992009-12-08 15:33:32 +01001279 struct ttm_mem_type_manager *man = &bdev->man[mem_type];
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001280 struct ttm_bo_global *glob = bdev->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001281 int ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001282
1283 /*
1284 * Can't use standard list traversal since we're unlocking.
1285 */
1286
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001287 spin_lock(&glob->lru_lock);
Jerome Glisseca262a9992009-12-08 15:33:32 +01001288 while (!list_empty(&man->lru)) {
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001289 spin_unlock(&glob->lru_lock);
Jerome Glisse9d87fa22010-04-07 10:21:19 +00001290 ret = ttm_mem_evict_first(bdev, mem_type, false, false, false);
Jerome Glisseca262a9992009-12-08 15:33:32 +01001291 if (ret) {
1292 if (allow_errors) {
1293 return ret;
1294 } else {
1295 printk(KERN_ERR TTM_PFX
1296 "Cleanup eviction failed\n");
1297 }
1298 }
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001299 spin_lock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001300 }
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001301 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001302 return 0;
1303}
1304
1305int ttm_bo_clean_mm(struct ttm_bo_device *bdev, unsigned mem_type)
1306{
Roel Kluinc96e7c72009-08-03 14:22:53 +02001307 struct ttm_mem_type_manager *man;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001308 int ret = -EINVAL;
1309
1310 if (mem_type >= TTM_NUM_MEM_TYPES) {
1311 printk(KERN_ERR TTM_PFX "Illegal memory type %d\n", mem_type);
1312 return ret;
1313 }
Roel Kluinc96e7c72009-08-03 14:22:53 +02001314 man = &bdev->man[mem_type];
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001315
1316 if (!man->has_type) {
1317 printk(KERN_ERR TTM_PFX "Trying to take down uninitialized "
1318 "memory manager type %u\n", mem_type);
1319 return ret;
1320 }
1321
1322 man->use_type = false;
1323 man->has_type = false;
1324
1325 ret = 0;
1326 if (mem_type > 0) {
Jerome Glisseca262a9992009-12-08 15:33:32 +01001327 ttm_bo_force_list_clean(bdev, mem_type, false);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001328
Ben Skeggsd961db72010-08-05 10:48:18 +10001329 ret = (*man->func->takedown)(man);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001330 }
1331
1332 return ret;
1333}
1334EXPORT_SYMBOL(ttm_bo_clean_mm);
1335
1336int ttm_bo_evict_mm(struct ttm_bo_device *bdev, unsigned mem_type)
1337{
1338 struct ttm_mem_type_manager *man = &bdev->man[mem_type];
1339
1340 if (mem_type == 0 || mem_type >= TTM_NUM_MEM_TYPES) {
1341 printk(KERN_ERR TTM_PFX
1342 "Illegal memory manager memory type %u.\n",
1343 mem_type);
1344 return -EINVAL;
1345 }
1346
1347 if (!man->has_type) {
1348 printk(KERN_ERR TTM_PFX
1349 "Memory type %u has not been initialized.\n",
1350 mem_type);
1351 return 0;
1352 }
1353
Jerome Glisseca262a9992009-12-08 15:33:32 +01001354 return ttm_bo_force_list_clean(bdev, mem_type, true);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001355}
1356EXPORT_SYMBOL(ttm_bo_evict_mm);
1357
1358int ttm_bo_init_mm(struct ttm_bo_device *bdev, unsigned type,
Jerome Glisseca262a9992009-12-08 15:33:32 +01001359 unsigned long p_size)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001360{
1361 int ret = -EINVAL;
1362 struct ttm_mem_type_manager *man;
1363
Thomas Hellstromdbc4a5b2010-10-29 10:46:47 +02001364 BUG_ON(type >= TTM_NUM_MEM_TYPES);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001365 man = &bdev->man[type];
Thomas Hellstromdbc4a5b2010-10-29 10:46:47 +02001366 BUG_ON(man->has_type);
Thomas Hellstromeba67092010-11-11 09:41:57 +01001367 man->io_reserve_fastpath = true;
1368 man->use_io_reserve_lru = false;
1369 mutex_init(&man->io_reserve_mutex);
1370 INIT_LIST_HEAD(&man->io_reserve_lru);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001371
1372 ret = bdev->driver->init_mem_type(bdev, type, man);
1373 if (ret)
1374 return ret;
Ben Skeggsd961db72010-08-05 10:48:18 +10001375 man->bdev = bdev;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001376
1377 ret = 0;
1378 if (type != TTM_PL_SYSTEM) {
Ben Skeggsd961db72010-08-05 10:48:18 +10001379 ret = (*man->func->init)(man, p_size);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001380 if (ret)
1381 return ret;
1382 }
1383 man->has_type = true;
1384 man->use_type = true;
1385 man->size = p_size;
1386
1387 INIT_LIST_HEAD(&man->lru);
1388
1389 return 0;
1390}
1391EXPORT_SYMBOL(ttm_bo_init_mm);
1392
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001393static void ttm_bo_global_kobj_release(struct kobject *kobj)
1394{
1395 struct ttm_bo_global *glob =
1396 container_of(kobj, struct ttm_bo_global, kobj);
1397
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001398 ttm_mem_unregister_shrink(glob->mem_glob, &glob->shrink);
1399 __free_page(glob->dummy_read_page);
1400 kfree(glob);
1401}
1402
Dave Airlieba4420c2010-03-09 10:56:52 +10001403void ttm_bo_global_release(struct drm_global_reference *ref)
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001404{
1405 struct ttm_bo_global *glob = ref->object;
1406
1407 kobject_del(&glob->kobj);
1408 kobject_put(&glob->kobj);
1409}
1410EXPORT_SYMBOL(ttm_bo_global_release);
1411
Dave Airlieba4420c2010-03-09 10:56:52 +10001412int ttm_bo_global_init(struct drm_global_reference *ref)
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001413{
1414 struct ttm_bo_global_ref *bo_ref =
1415 container_of(ref, struct ttm_bo_global_ref, ref);
1416 struct ttm_bo_global *glob = ref->object;
1417 int ret;
1418
1419 mutex_init(&glob->device_list_mutex);
1420 spin_lock_init(&glob->lru_lock);
1421 glob->mem_glob = bo_ref->mem_glob;
1422 glob->dummy_read_page = alloc_page(__GFP_ZERO | GFP_DMA32);
1423
1424 if (unlikely(glob->dummy_read_page == NULL)) {
1425 ret = -ENOMEM;
1426 goto out_no_drp;
1427 }
1428
1429 INIT_LIST_HEAD(&glob->swap_lru);
1430 INIT_LIST_HEAD(&glob->device_list);
1431
1432 ttm_mem_init_shrink(&glob->shrink, ttm_bo_swapout);
1433 ret = ttm_mem_register_shrink(glob->mem_glob, &glob->shrink);
1434 if (unlikely(ret != 0)) {
1435 printk(KERN_ERR TTM_PFX
1436 "Could not register buffer object swapout.\n");
1437 goto out_no_shrink;
1438 }
1439
Jerome Glisse649bf3c2011-11-01 20:46:13 -04001440 glob->ttm_bo_extra_size = ttm_round_pot(sizeof(struct ttm_tt));
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001441 glob->ttm_bo_size = glob->ttm_bo_extra_size +
1442 ttm_round_pot(sizeof(struct ttm_buffer_object));
1443
1444 atomic_set(&glob->bo_count, 0);
1445
Robert P. J. Dayb642ed02010-03-13 10:36:32 +00001446 ret = kobject_init_and_add(
1447 &glob->kobj, &ttm_bo_glob_kobj_type, ttm_get_kobj(), "buffer_objects");
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001448 if (unlikely(ret != 0))
1449 kobject_put(&glob->kobj);
1450 return ret;
1451out_no_shrink:
1452 __free_page(glob->dummy_read_page);
1453out_no_drp:
1454 kfree(glob);
1455 return ret;
1456}
1457EXPORT_SYMBOL(ttm_bo_global_init);
1458
1459
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001460int ttm_bo_device_release(struct ttm_bo_device *bdev)
1461{
1462 int ret = 0;
1463 unsigned i = TTM_NUM_MEM_TYPES;
1464 struct ttm_mem_type_manager *man;
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001465 struct ttm_bo_global *glob = bdev->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001466
1467 while (i--) {
1468 man = &bdev->man[i];
1469 if (man->has_type) {
1470 man->use_type = false;
1471 if ((i != TTM_PL_SYSTEM) && ttm_bo_clean_mm(bdev, i)) {
1472 ret = -EBUSY;
1473 printk(KERN_ERR TTM_PFX
1474 "DRM memory manager type %d "
1475 "is not clean.\n", i);
1476 }
1477 man->has_type = false;
1478 }
1479 }
1480
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001481 mutex_lock(&glob->device_list_mutex);
1482 list_del(&bdev->device_list);
1483 mutex_unlock(&glob->device_list_mutex);
1484
Tejun Heof094cfc2010-12-24 15:59:06 +01001485 cancel_delayed_work_sync(&bdev->wq);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001486
1487 while (ttm_bo_delayed_delete(bdev, true))
1488 ;
1489
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001490 spin_lock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001491 if (list_empty(&bdev->ddestroy))
1492 TTM_DEBUG("Delayed destroy list was clean\n");
1493
1494 if (list_empty(&bdev->man[0].lru))
1495 TTM_DEBUG("Swap list was clean\n");
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001496 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001497
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001498 BUG_ON(!drm_mm_clean(&bdev->addr_space_mm));
1499 write_lock(&bdev->vm_lock);
1500 drm_mm_takedown(&bdev->addr_space_mm);
1501 write_unlock(&bdev->vm_lock);
1502
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001503 return ret;
1504}
1505EXPORT_SYMBOL(ttm_bo_device_release);
1506
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001507int ttm_bo_device_init(struct ttm_bo_device *bdev,
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001508 struct ttm_bo_global *glob,
1509 struct ttm_bo_driver *driver,
Dave Airlie51c8b402009-08-20 13:38:04 +10001510 uint64_t file_page_offset,
Dave Airliead49f502009-07-10 22:36:26 +10001511 bool need_dma32)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001512{
1513 int ret = -EINVAL;
1514
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001515 rwlock_init(&bdev->vm_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001516 bdev->driver = driver;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001517
1518 memset(bdev->man, 0, sizeof(bdev->man));
1519
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001520 /*
1521 * Initialize the system memory buffer type.
1522 * Other types need to be driver / IOCTL initialized.
1523 */
Jerome Glisseca262a9992009-12-08 15:33:32 +01001524 ret = ttm_bo_init_mm(bdev, TTM_PL_SYSTEM, 0);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001525 if (unlikely(ret != 0))
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001526 goto out_no_sys;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001527
1528 bdev->addr_space_rb = RB_ROOT;
1529 ret = drm_mm_init(&bdev->addr_space_mm, file_page_offset, 0x10000000);
1530 if (unlikely(ret != 0))
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001531 goto out_no_addr_mm;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001532
1533 INIT_DELAYED_WORK(&bdev->wq, ttm_bo_delayed_workqueue);
1534 bdev->nice_mode = true;
1535 INIT_LIST_HEAD(&bdev->ddestroy);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001536 bdev->dev_mapping = NULL;
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001537 bdev->glob = glob;
Dave Airliead49f502009-07-10 22:36:26 +10001538 bdev->need_dma32 = need_dma32;
Thomas Hellstrom65705962010-11-17 12:28:31 +00001539 bdev->val_seq = 0;
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001540 spin_lock_init(&bdev->fence_lock);
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001541 mutex_lock(&glob->device_list_mutex);
1542 list_add_tail(&bdev->device_list, &glob->device_list);
1543 mutex_unlock(&glob->device_list_mutex);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001544
1545 return 0;
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001546out_no_addr_mm:
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001547 ttm_bo_clean_mm(bdev, 0);
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001548out_no_sys:
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001549 return ret;
1550}
1551EXPORT_SYMBOL(ttm_bo_device_init);
1552
1553/*
1554 * buffer object vm functions.
1555 */
1556
1557bool ttm_mem_reg_is_pci(struct ttm_bo_device *bdev, struct ttm_mem_reg *mem)
1558{
1559 struct ttm_mem_type_manager *man = &bdev->man[mem->mem_type];
1560
1561 if (!(man->flags & TTM_MEMTYPE_FLAG_FIXED)) {
1562 if (mem->mem_type == TTM_PL_SYSTEM)
1563 return false;
1564
1565 if (man->flags & TTM_MEMTYPE_FLAG_CMA)
1566 return false;
1567
1568 if (mem->placement & TTM_PL_FLAG_CACHED)
1569 return false;
1570 }
1571 return true;
1572}
1573
Thomas Hellstromeba67092010-11-11 09:41:57 +01001574void ttm_bo_unmap_virtual_locked(struct ttm_buffer_object *bo)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001575{
1576 struct ttm_bo_device *bdev = bo->bdev;
1577 loff_t offset = (loff_t) bo->addr_space_offset;
1578 loff_t holelen = ((loff_t) bo->mem.num_pages) << PAGE_SHIFT;
1579
1580 if (!bdev->dev_mapping)
1581 return;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001582 unmap_mapping_range(bdev->dev_mapping, offset, holelen, 1);
Thomas Hellstromeba67092010-11-11 09:41:57 +01001583 ttm_mem_io_free_vm(bo);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001584}
Thomas Hellstromeba67092010-11-11 09:41:57 +01001585
1586void ttm_bo_unmap_virtual(struct ttm_buffer_object *bo)
1587{
1588 struct ttm_bo_device *bdev = bo->bdev;
1589 struct ttm_mem_type_manager *man = &bdev->man[bo->mem.mem_type];
1590
1591 ttm_mem_io_lock(man, false);
1592 ttm_bo_unmap_virtual_locked(bo);
1593 ttm_mem_io_unlock(man);
1594}
1595
1596
Dave Airliee024e112009-06-24 09:48:08 +10001597EXPORT_SYMBOL(ttm_bo_unmap_virtual);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001598
1599static void ttm_bo_vm_insert_rb(struct ttm_buffer_object *bo)
1600{
1601 struct ttm_bo_device *bdev = bo->bdev;
1602 struct rb_node **cur = &bdev->addr_space_rb.rb_node;
1603 struct rb_node *parent = NULL;
1604 struct ttm_buffer_object *cur_bo;
1605 unsigned long offset = bo->vm_node->start;
1606 unsigned long cur_offset;
1607
1608 while (*cur) {
1609 parent = *cur;
1610 cur_bo = rb_entry(parent, struct ttm_buffer_object, vm_rb);
1611 cur_offset = cur_bo->vm_node->start;
1612 if (offset < cur_offset)
1613 cur = &parent->rb_left;
1614 else if (offset > cur_offset)
1615 cur = &parent->rb_right;
1616 else
1617 BUG();
1618 }
1619
1620 rb_link_node(&bo->vm_rb, parent, cur);
1621 rb_insert_color(&bo->vm_rb, &bdev->addr_space_rb);
1622}
1623
1624/**
1625 * ttm_bo_setup_vm:
1626 *
1627 * @bo: the buffer to allocate address space for
1628 *
1629 * Allocate address space in the drm device so that applications
1630 * can mmap the buffer and access the contents. This only
1631 * applies to ttm_bo_type_device objects as others are not
1632 * placed in the drm device address space.
1633 */
1634
1635static int ttm_bo_setup_vm(struct ttm_buffer_object *bo)
1636{
1637 struct ttm_bo_device *bdev = bo->bdev;
1638 int ret;
1639
1640retry_pre_get:
1641 ret = drm_mm_pre_get(&bdev->addr_space_mm);
1642 if (unlikely(ret != 0))
1643 return ret;
1644
1645 write_lock(&bdev->vm_lock);
1646 bo->vm_node = drm_mm_search_free(&bdev->addr_space_mm,
1647 bo->mem.num_pages, 0, 0);
1648
1649 if (unlikely(bo->vm_node == NULL)) {
1650 ret = -ENOMEM;
1651 goto out_unlock;
1652 }
1653
1654 bo->vm_node = drm_mm_get_block_atomic(bo->vm_node,
1655 bo->mem.num_pages, 0);
1656
1657 if (unlikely(bo->vm_node == NULL)) {
1658 write_unlock(&bdev->vm_lock);
1659 goto retry_pre_get;
1660 }
1661
1662 ttm_bo_vm_insert_rb(bo);
1663 write_unlock(&bdev->vm_lock);
1664 bo->addr_space_offset = ((uint64_t) bo->vm_node->start) << PAGE_SHIFT;
1665
1666 return 0;
1667out_unlock:
1668 write_unlock(&bdev->vm_lock);
1669 return ret;
1670}
1671
1672int ttm_bo_wait(struct ttm_buffer_object *bo,
Dave Airlie1717c0e2011-10-27 18:28:37 +02001673 bool lazy, bool interruptible, bool no_wait)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001674{
1675 struct ttm_bo_driver *driver = bo->bdev->driver;
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001676 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001677 void *sync_obj;
1678 void *sync_obj_arg;
1679 int ret = 0;
1680
Dave Airlie1717c0e2011-10-27 18:28:37 +02001681 if (likely(bo->sync_obj == NULL))
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001682 return 0;
1683
Dave Airlie1717c0e2011-10-27 18:28:37 +02001684 while (bo->sync_obj) {
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001685
Dave Airlie1717c0e2011-10-27 18:28:37 +02001686 if (driver->sync_obj_signaled(bo->sync_obj, bo->sync_obj_arg)) {
1687 void *tmp_obj = bo->sync_obj;
1688 bo->sync_obj = NULL;
1689 clear_bit(TTM_BO_PRIV_FLAG_MOVING, &bo->priv_flags);
1690 spin_unlock(&bdev->fence_lock);
1691 driver->sync_obj_unref(&tmp_obj);
1692 spin_lock(&bdev->fence_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001693 continue;
1694 }
1695
1696 if (no_wait)
1697 return -EBUSY;
1698
Dave Airlie1717c0e2011-10-27 18:28:37 +02001699 sync_obj = driver->sync_obj_ref(bo->sync_obj);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001700 sync_obj_arg = bo->sync_obj_arg;
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001701 spin_unlock(&bdev->fence_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001702 ret = driver->sync_obj_wait(sync_obj, sync_obj_arg,
1703 lazy, interruptible);
1704 if (unlikely(ret != 0)) {
1705 driver->sync_obj_unref(&sync_obj);
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001706 spin_lock(&bdev->fence_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001707 return ret;
1708 }
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001709 spin_lock(&bdev->fence_lock);
Dave Airlie1717c0e2011-10-27 18:28:37 +02001710 if (likely(bo->sync_obj == sync_obj &&
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001711 bo->sync_obj_arg == sync_obj_arg)) {
Dave Airlie1717c0e2011-10-27 18:28:37 +02001712 void *tmp_obj = bo->sync_obj;
1713 bo->sync_obj = NULL;
1714 clear_bit(TTM_BO_PRIV_FLAG_MOVING,
1715 &bo->priv_flags);
1716 spin_unlock(&bdev->fence_lock);
1717 driver->sync_obj_unref(&sync_obj);
1718 driver->sync_obj_unref(&tmp_obj);
1719 spin_lock(&bdev->fence_lock);
Thomas Hellstromfee280d2009-08-03 12:39:06 +02001720 } else {
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001721 spin_unlock(&bdev->fence_lock);
Thomas Hellstromfee280d2009-08-03 12:39:06 +02001722 driver->sync_obj_unref(&sync_obj);
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001723 spin_lock(&bdev->fence_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001724 }
1725 }
1726 return 0;
1727}
1728EXPORT_SYMBOL(ttm_bo_wait);
1729
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001730int ttm_bo_synccpu_write_grab(struct ttm_buffer_object *bo, bool no_wait)
1731{
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001732 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001733 int ret = 0;
1734
1735 /*
Thomas Hellstrom8cfe92d2010-04-28 11:33:25 +02001736 * Using ttm_bo_reserve makes sure the lru lists are updated.
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001737 */
1738
1739 ret = ttm_bo_reserve(bo, true, no_wait, false, 0);
1740 if (unlikely(ret != 0))
1741 return ret;
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001742 spin_lock(&bdev->fence_lock);
Dave Airlie1717c0e2011-10-27 18:28:37 +02001743 ret = ttm_bo_wait(bo, false, true, no_wait);
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001744 spin_unlock(&bdev->fence_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001745 if (likely(ret == 0))
1746 atomic_inc(&bo->cpu_writers);
1747 ttm_bo_unreserve(bo);
1748 return ret;
1749}
Ben Skeggsd1ede142009-12-11 15:13:00 +10001750EXPORT_SYMBOL(ttm_bo_synccpu_write_grab);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001751
1752void ttm_bo_synccpu_write_release(struct ttm_buffer_object *bo)
1753{
1754 if (atomic_dec_and_test(&bo->cpu_writers))
1755 wake_up_all(&bo->event_queue);
1756}
Ben Skeggsd1ede142009-12-11 15:13:00 +10001757EXPORT_SYMBOL(ttm_bo_synccpu_write_release);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001758
1759/**
1760 * A buffer object shrink method that tries to swap out the first
1761 * buffer object on the bo_global::swap_lru list.
1762 */
1763
1764static int ttm_bo_swapout(struct ttm_mem_shrink *shrink)
1765{
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001766 struct ttm_bo_global *glob =
1767 container_of(shrink, struct ttm_bo_global, shrink);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001768 struct ttm_buffer_object *bo;
1769 int ret = -EBUSY;
1770 int put_count;
1771 uint32_t swap_placement = (TTM_PL_FLAG_CACHED | TTM_PL_FLAG_SYSTEM);
1772
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001773 spin_lock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001774 while (ret == -EBUSY) {
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001775 if (unlikely(list_empty(&glob->swap_lru))) {
1776 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001777 return -EBUSY;
1778 }
1779
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001780 bo = list_first_entry(&glob->swap_lru,
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001781 struct ttm_buffer_object, swap);
1782 kref_get(&bo->list_kref);
1783
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +02001784 if (!list_empty(&bo->ddestroy)) {
1785 spin_unlock(&glob->lru_lock);
1786 (void) ttm_bo_cleanup_refs(bo, false, false, false);
1787 kref_put(&bo->list_kref, ttm_bo_release_list);
1788 continue;
1789 }
1790
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001791 /**
1792 * Reserve buffer. Since we unlock while sleeping, we need
1793 * to re-check that nobody removed us from the swap-list while
1794 * we slept.
1795 */
1796
1797 ret = ttm_bo_reserve_locked(bo, false, true, false, 0);
1798 if (unlikely(ret == -EBUSY)) {
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001799 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001800 ttm_bo_wait_unreserved(bo, false);
1801 kref_put(&bo->list_kref, ttm_bo_release_list);
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001802 spin_lock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001803 }
1804 }
1805
1806 BUG_ON(ret != 0);
1807 put_count = ttm_bo_del_from_lru(bo);
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001808 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001809
Dave Airlied6ea8882010-11-22 13:24:40 +10001810 ttm_bo_list_ref_sub(bo, put_count, true);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001811
1812 /**
1813 * Wait for GPU, then move to system cached.
1814 */
1815
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001816 spin_lock(&bo->bdev->fence_lock);
Dave Airlie1717c0e2011-10-27 18:28:37 +02001817 ret = ttm_bo_wait(bo, false, false, false);
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001818 spin_unlock(&bo->bdev->fence_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001819
1820 if (unlikely(ret != 0))
1821 goto out;
1822
1823 if ((bo->mem.placement & swap_placement) != swap_placement) {
1824 struct ttm_mem_reg evict_mem;
1825
1826 evict_mem = bo->mem;
1827 evict_mem.mm_node = NULL;
1828 evict_mem.placement = TTM_PL_FLAG_SYSTEM | TTM_PL_FLAG_CACHED;
1829 evict_mem.mem_type = TTM_PL_SYSTEM;
1830
1831 ret = ttm_bo_handle_move_mem(bo, &evict_mem, true,
Jerome Glisse9d87fa22010-04-07 10:21:19 +00001832 false, false, false);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001833 if (unlikely(ret != 0))
1834 goto out;
1835 }
1836
1837 ttm_bo_unmap_virtual(bo);
1838
1839 /**
1840 * Swap out. Buffer will be swapped in again as soon as
1841 * anyone tries to access a ttm page.
1842 */
1843
Thomas Hellstrom3f09ea42010-01-13 22:28:40 +01001844 if (bo->bdev->driver->swap_notify)
1845 bo->bdev->driver->swap_notify(bo);
1846
Jan Engelhardt5df23972011-04-04 01:25:18 +02001847 ret = ttm_tt_swapout(bo->ttm, bo->persistent_swap_storage);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001848out:
1849
1850 /**
1851 *
1852 * Unreserve without putting on LRU to avoid swapping out an
1853 * already swapped buffer.
1854 */
1855
1856 atomic_set(&bo->reserved, 0);
1857 wake_up_all(&bo->event_queue);
1858 kref_put(&bo->list_kref, ttm_bo_release_list);
1859 return ret;
1860}
1861
1862void ttm_bo_swapout_all(struct ttm_bo_device *bdev)
1863{
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001864 while (ttm_bo_swapout(&bdev->glob->shrink) == 0)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001865 ;
1866}
Thomas Hellstrome99e1e72010-01-13 22:28:42 +01001867EXPORT_SYMBOL(ttm_bo_swapout_all);