blob: a4d38d85909a0254e23fa3a1f0b607814329bf60 [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:
340 bo->ttm = ttm_tt_create(bdev, bo->num_pages << PAGE_SHIFT,
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200341 page_flags, glob->dummy_read_page);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200342 if (unlikely(bo->ttm == NULL))
343 ret = -ENOMEM;
344 break;
345 case ttm_bo_type_user:
346 bo->ttm = ttm_tt_create(bdev, bo->num_pages << PAGE_SHIFT,
347 page_flags | TTM_PAGE_FLAG_USER,
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200348 glob->dummy_read_page);
Dave Airlie447aeb92009-12-08 09:25:45 +1000349 if (unlikely(bo->ttm == NULL)) {
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200350 ret = -ENOMEM;
Dave Airlie447aeb92009-12-08 09:25:45 +1000351 break;
352 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200353
354 ret = ttm_tt_set_user(bo->ttm, current,
355 bo->buffer_start, bo->num_pages);
Marcin Slusarz7c4c3962011-08-22 21:17:57 +0000356 if (unlikely(ret != 0)) {
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200357 ttm_tt_destroy(bo->ttm);
Marcin Slusarz7c4c3962011-08-22 21:17:57 +0000358 bo->ttm = NULL;
359 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200360 break;
361 default:
362 printk(KERN_ERR TTM_PFX "Illegal buffer object type\n");
363 ret = -EINVAL;
364 break;
365 }
366
367 return ret;
368}
369
370static int ttm_bo_handle_move_mem(struct ttm_buffer_object *bo,
371 struct ttm_mem_reg *mem,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000372 bool evict, bool interruptible,
373 bool no_wait_reserve, bool no_wait_gpu)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200374{
375 struct ttm_bo_device *bdev = bo->bdev;
376 bool old_is_pci = ttm_mem_reg_is_pci(bdev, &bo->mem);
377 bool new_is_pci = ttm_mem_reg_is_pci(bdev, mem);
378 struct ttm_mem_type_manager *old_man = &bdev->man[bo->mem.mem_type];
379 struct ttm_mem_type_manager *new_man = &bdev->man[mem->mem_type];
380 int ret = 0;
381
382 if (old_is_pci || new_is_pci ||
Thomas Hellstromeba67092010-11-11 09:41:57 +0100383 ((mem->placement & bo->mem.placement & TTM_PL_MASK_CACHING) == 0)) {
384 ret = ttm_mem_io_lock(old_man, true);
385 if (unlikely(ret != 0))
386 goto out_err;
387 ttm_bo_unmap_virtual_locked(bo);
388 ttm_mem_io_unlock(old_man);
389 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200390
391 /*
392 * Create and bind a ttm if required.
393 */
394
Ben Skeggs8d3bb232011-08-22 03:15:05 +0000395 if (!(new_man->flags & TTM_MEMTYPE_FLAG_FIXED)) {
396 if (bo->ttm == NULL) {
397 ret = ttm_bo_add_ttm(bo, false);
398 if (ret)
399 goto out_err;
400 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200401
402 ret = ttm_tt_set_placement_caching(bo->ttm, mem->placement);
403 if (ret)
Thomas Hellstrom87ef9202009-06-17 12:29:57 +0200404 goto out_err;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200405
406 if (mem->mem_type != TTM_PL_SYSTEM) {
407 ret = ttm_tt_bind(bo->ttm, mem);
408 if (ret)
409 goto out_err;
410 }
411
412 if (bo->mem.mem_type == TTM_PL_SYSTEM) {
Ben Skeggs82ef5942011-02-02 00:27:10 +0000413 if (bdev->driver->move_notify)
414 bdev->driver->move_notify(bo, mem);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100415 bo->mem = *mem;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200416 mem->mm_node = NULL;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200417 goto moved;
418 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200419 }
420
Dave Airliee024e112009-06-24 09:48:08 +1000421 if (bdev->driver->move_notify)
422 bdev->driver->move_notify(bo, mem);
423
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200424 if (!(old_man->flags & TTM_MEMTYPE_FLAG_FIXED) &&
425 !(new_man->flags & TTM_MEMTYPE_FLAG_FIXED))
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000426 ret = ttm_bo_move_ttm(bo, evict, no_wait_reserve, no_wait_gpu, mem);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200427 else if (bdev->driver->move)
428 ret = bdev->driver->move(bo, evict, interruptible,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000429 no_wait_reserve, no_wait_gpu, mem);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200430 else
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000431 ret = ttm_bo_move_memcpy(bo, evict, no_wait_reserve, no_wait_gpu, mem);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200432
433 if (ret)
434 goto out_err;
435
436moved:
437 if (bo->evicted) {
438 ret = bdev->driver->invalidate_caches(bdev, bo->mem.placement);
439 if (ret)
440 printk(KERN_ERR TTM_PFX "Can not flush read caches\n");
441 bo->evicted = false;
442 }
443
444 if (bo->mem.mm_node) {
Ben Skeggsd961db72010-08-05 10:48:18 +1000445 bo->offset = (bo->mem.start << PAGE_SHIFT) +
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200446 bdev->man[bo->mem.mem_type].gpu_offset;
447 bo->cur_placement = bo->mem.placement;
Thomas Hellstrom354fb522010-01-13 22:28:45 +0100448 } else
449 bo->offset = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200450
451 return 0;
452
453out_err:
454 new_man = &bdev->man[bo->mem.mem_type];
455 if ((new_man->flags & TTM_MEMTYPE_FLAG_FIXED) && bo->ttm) {
456 ttm_tt_unbind(bo->ttm);
457 ttm_tt_destroy(bo->ttm);
458 bo->ttm = NULL;
459 }
460
461 return ret;
462}
463
464/**
Thomas Hellstrom40d857b2010-10-19 09:01:00 +0200465 * Call bo::reserved.
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200466 * Will release GPU memory type usage on destruction.
Thomas Hellstrom40d857b2010-10-19 09:01:00 +0200467 * This is the place to put in driver specific hooks to release
468 * driver private resources.
469 * Will release the bo::reserved lock.
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200470 */
471
472static void ttm_bo_cleanup_memtype_use(struct ttm_buffer_object *bo)
473{
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200474 if (bo->ttm) {
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200475 ttm_tt_unbind(bo->ttm);
476 ttm_tt_destroy(bo->ttm);
477 bo->ttm = NULL;
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200478 }
Thomas Hellstrom40d857b2010-10-19 09:01:00 +0200479 ttm_bo_mem_put(bo, &bo->mem);
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200480
481 atomic_set(&bo->reserved, 0);
Thomas Hellstrom06fba6d2010-10-29 10:46:48 +0200482
483 /*
484 * Make processes trying to reserve really pick it up.
485 */
486 smp_mb__after_atomic_dec();
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200487 wake_up_all(&bo->event_queue);
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200488}
489
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200490static void ttm_bo_cleanup_refs_or_queue(struct ttm_buffer_object *bo)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200491{
492 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200493 struct ttm_bo_global *glob = bo->glob;
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200494 struct ttm_bo_driver *driver;
Thomas Hellstromaa123262010-11-02 13:21:47 +0000495 void *sync_obj = NULL;
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200496 void *sync_obj_arg;
497 int put_count;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200498 int ret;
499
Thomas Hellstrom702adba2010-11-17 12:28:29 +0000500 spin_lock(&bdev->fence_lock);
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200501 (void) ttm_bo_wait(bo, false, false, true);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200502 if (!bo->sync_obj) {
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200503
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200504 spin_lock(&glob->lru_lock);
Thomas Hellstromaaa20732009-12-02 18:33:45 +0100505
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200506 /**
Thomas Hellstrom702adba2010-11-17 12:28:29 +0000507 * Lock inversion between bo:reserve and bdev::fence_lock here,
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200508 * but that's OK, since we're only trylocking.
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200509 */
510
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200511 ret = ttm_bo_reserve_locked(bo, false, true, false, 0);
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200512
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200513 if (unlikely(ret == -EBUSY))
514 goto queue;
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200515
Thomas Hellstrom702adba2010-11-17 12:28:29 +0000516 spin_unlock(&bdev->fence_lock);
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200517 put_count = ttm_bo_del_from_lru(bo);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200518
Thomas Hellstrom40d857b2010-10-19 09:01:00 +0200519 spin_unlock(&glob->lru_lock);
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200520 ttm_bo_cleanup_memtype_use(bo);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200521
Dave Airlied6ea8882010-11-22 13:24:40 +1000522 ttm_bo_list_ref_sub(bo, put_count, true);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200523
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200524 return;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200525 } else {
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200526 spin_lock(&glob->lru_lock);
527 }
528queue:
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200529 driver = bdev->driver;
Thomas Hellstromaa123262010-11-02 13:21:47 +0000530 if (bo->sync_obj)
531 sync_obj = driver->sync_obj_ref(bo->sync_obj);
532 sync_obj_arg = bo->sync_obj_arg;
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200533
534 kref_get(&bo->list_kref);
535 list_add_tail(&bo->ddestroy, &bdev->ddestroy);
536 spin_unlock(&glob->lru_lock);
Thomas Hellstrom702adba2010-11-17 12:28:29 +0000537 spin_unlock(&bdev->fence_lock);
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200538
Thomas Hellstromaa123262010-11-02 13:21:47 +0000539 if (sync_obj) {
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200540 driver->sync_obj_flush(sync_obj, sync_obj_arg);
Thomas Hellstromaa123262010-11-02 13:21:47 +0000541 driver->sync_obj_unref(&sync_obj);
542 }
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200543 schedule_delayed_work(&bdev->wq,
544 ((HZ / 100) < 1) ? 1 : HZ / 100);
545}
546
547/**
548 * function ttm_bo_cleanup_refs
549 * If bo idle, remove from delayed- and lru lists, and unref.
550 * If not idle, do nothing.
551 *
552 * @interruptible Any sleeps should occur interruptibly.
553 * @no_wait_reserve Never wait for reserve. Return -EBUSY instead.
554 * @no_wait_gpu Never wait for gpu. Return -EBUSY instead.
555 */
556
557static int ttm_bo_cleanup_refs(struct ttm_buffer_object *bo,
558 bool interruptible,
559 bool no_wait_reserve,
560 bool no_wait_gpu)
561{
Thomas Hellstrom702adba2010-11-17 12:28:29 +0000562 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200563 struct ttm_bo_global *glob = bo->glob;
564 int put_count;
565 int ret = 0;
566
567retry:
Thomas Hellstrom702adba2010-11-17 12:28:29 +0000568 spin_lock(&bdev->fence_lock);
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200569 ret = ttm_bo_wait(bo, false, interruptible, no_wait_gpu);
Thomas Hellstrom702adba2010-11-17 12:28:29 +0000570 spin_unlock(&bdev->fence_lock);
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200571
572 if (unlikely(ret != 0))
573 return ret;
574
575 spin_lock(&glob->lru_lock);
576 ret = ttm_bo_reserve_locked(bo, interruptible,
577 no_wait_reserve, false, 0);
578
579 if (unlikely(ret != 0) || list_empty(&bo->ddestroy)) {
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200580 spin_unlock(&glob->lru_lock);
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200581 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200582 }
583
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200584 /**
585 * We can re-check for sync object without taking
586 * the bo::lock since setting the sync object requires
587 * also bo::reserved. A busy object at this point may
588 * be caused by another thread recently starting an accelerated
589 * eviction.
590 */
591
592 if (unlikely(bo->sync_obj)) {
593 atomic_set(&bo->reserved, 0);
594 wake_up_all(&bo->event_queue);
595 spin_unlock(&glob->lru_lock);
596 goto retry;
597 }
598
599 put_count = ttm_bo_del_from_lru(bo);
600 list_del_init(&bo->ddestroy);
601 ++put_count;
602
603 spin_unlock(&glob->lru_lock);
604 ttm_bo_cleanup_memtype_use(bo);
605
Dave Airlied6ea8882010-11-22 13:24:40 +1000606 ttm_bo_list_ref_sub(bo, put_count, true);
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200607
608 return 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200609}
610
611/**
612 * Traverse the delayed list, and call ttm_bo_cleanup_refs on all
613 * encountered buffers.
614 */
615
616static int ttm_bo_delayed_delete(struct ttm_bo_device *bdev, bool remove_all)
617{
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200618 struct ttm_bo_global *glob = bdev->glob;
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100619 struct ttm_buffer_object *entry = NULL;
620 int ret = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200621
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200622 spin_lock(&glob->lru_lock);
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100623 if (list_empty(&bdev->ddestroy))
624 goto out_unlock;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200625
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100626 entry = list_first_entry(&bdev->ddestroy,
627 struct ttm_buffer_object, ddestroy);
628 kref_get(&entry->list_kref);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200629
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100630 for (;;) {
631 struct ttm_buffer_object *nentry = NULL;
632
633 if (entry->ddestroy.next != &bdev->ddestroy) {
634 nentry = list_first_entry(&entry->ddestroy,
635 struct ttm_buffer_object, ddestroy);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200636 kref_get(&nentry->list_kref);
637 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200638
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200639 spin_unlock(&glob->lru_lock);
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200640 ret = ttm_bo_cleanup_refs(entry, false, !remove_all,
641 !remove_all);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200642 kref_put(&entry->list_kref, ttm_bo_release_list);
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100643 entry = nentry;
644
645 if (ret || !entry)
646 goto out;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200647
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200648 spin_lock(&glob->lru_lock);
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100649 if (list_empty(&entry->ddestroy))
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200650 break;
651 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200652
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100653out_unlock:
654 spin_unlock(&glob->lru_lock);
655out:
656 if (entry)
657 kref_put(&entry->list_kref, ttm_bo_release_list);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200658 return ret;
659}
660
661static void ttm_bo_delayed_workqueue(struct work_struct *work)
662{
663 struct ttm_bo_device *bdev =
664 container_of(work, struct ttm_bo_device, wq.work);
665
666 if (ttm_bo_delayed_delete(bdev, false)) {
667 schedule_delayed_work(&bdev->wq,
668 ((HZ / 100) < 1) ? 1 : HZ / 100);
669 }
670}
671
672static void ttm_bo_release(struct kref *kref)
673{
674 struct ttm_buffer_object *bo =
675 container_of(kref, struct ttm_buffer_object, kref);
676 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstromeba67092010-11-11 09:41:57 +0100677 struct ttm_mem_type_manager *man = &bdev->man[bo->mem.mem_type];
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200678
679 if (likely(bo->vm_node != NULL)) {
680 rb_erase(&bo->vm_rb, &bdev->addr_space_rb);
681 drm_mm_put_block(bo->vm_node);
682 bo->vm_node = NULL;
683 }
684 write_unlock(&bdev->vm_lock);
Thomas Hellstromeba67092010-11-11 09:41:57 +0100685 ttm_mem_io_lock(man, false);
686 ttm_mem_io_free_vm(bo);
687 ttm_mem_io_unlock(man);
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200688 ttm_bo_cleanup_refs_or_queue(bo);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200689 kref_put(&bo->list_kref, ttm_bo_release_list);
690 write_lock(&bdev->vm_lock);
691}
692
693void ttm_bo_unref(struct ttm_buffer_object **p_bo)
694{
695 struct ttm_buffer_object *bo = *p_bo;
696 struct ttm_bo_device *bdev = bo->bdev;
697
698 *p_bo = NULL;
699 write_lock(&bdev->vm_lock);
700 kref_put(&bo->kref, ttm_bo_release);
701 write_unlock(&bdev->vm_lock);
702}
703EXPORT_SYMBOL(ttm_bo_unref);
704
Matthew Garrett7c5ee532010-04-26 16:00:09 -0400705int ttm_bo_lock_delayed_workqueue(struct ttm_bo_device *bdev)
706{
707 return cancel_delayed_work_sync(&bdev->wq);
708}
709EXPORT_SYMBOL(ttm_bo_lock_delayed_workqueue);
710
711void ttm_bo_unlock_delayed_workqueue(struct ttm_bo_device *bdev, int resched)
712{
713 if (resched)
714 schedule_delayed_work(&bdev->wq,
715 ((HZ / 100) < 1) ? 1 : HZ / 100);
716}
717EXPORT_SYMBOL(ttm_bo_unlock_delayed_workqueue);
718
Jerome Glisseca262a9992009-12-08 15:33:32 +0100719static int ttm_bo_evict(struct ttm_buffer_object *bo, bool interruptible,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000720 bool no_wait_reserve, bool no_wait_gpu)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200721{
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200722 struct ttm_bo_device *bdev = bo->bdev;
723 struct ttm_mem_reg evict_mem;
Jerome Glisseca262a9992009-12-08 15:33:32 +0100724 struct ttm_placement placement;
725 int ret = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200726
Thomas Hellstrom702adba2010-11-17 12:28:29 +0000727 spin_lock(&bdev->fence_lock);
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000728 ret = ttm_bo_wait(bo, false, interruptible, no_wait_gpu);
Thomas Hellstrom702adba2010-11-17 12:28:29 +0000729 spin_unlock(&bdev->fence_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200730
Thomas Hellstrom78ecf092009-06-17 12:29:55 +0200731 if (unlikely(ret != 0)) {
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +0100732 if (ret != -ERESTARTSYS) {
Thomas Hellstrom78ecf092009-06-17 12:29:55 +0200733 printk(KERN_ERR TTM_PFX
734 "Failed to expire sync object before "
735 "buffer eviction.\n");
736 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200737 goto out;
738 }
739
740 BUG_ON(!atomic_read(&bo->reserved));
741
742 evict_mem = bo->mem;
743 evict_mem.mm_node = NULL;
Thomas Hellstromeba67092010-11-11 09:41:57 +0100744 evict_mem.bus.io_reserved_vm = false;
745 evict_mem.bus.io_reserved_count = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200746
Jerome Glisse7cb7d1d2009-12-09 22:14:27 +0100747 placement.fpfn = 0;
748 placement.lpfn = 0;
749 placement.num_placement = 0;
750 placement.num_busy_placement = 0;
Jerome Glisseca262a9992009-12-08 15:33:32 +0100751 bdev->driver->evict_flags(bo, &placement);
752 ret = ttm_bo_mem_space(bo, &placement, &evict_mem, interruptible,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000753 no_wait_reserve, no_wait_gpu);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200754 if (ret) {
Jerome Glissefb53f862009-12-09 21:55:10 +0100755 if (ret != -ERESTARTSYS) {
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200756 printk(KERN_ERR TTM_PFX
757 "Failed to find memory space for "
758 "buffer 0x%p eviction.\n", bo);
Jerome Glissefb53f862009-12-09 21:55:10 +0100759 ttm_bo_mem_space_debug(bo, &placement);
760 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200761 goto out;
762 }
763
764 ret = ttm_bo_handle_move_mem(bo, &evict_mem, true, interruptible,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000765 no_wait_reserve, no_wait_gpu);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200766 if (ret) {
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +0100767 if (ret != -ERESTARTSYS)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200768 printk(KERN_ERR TTM_PFX "Buffer eviction failed\n");
Ben Skeggs42311ff2010-08-04 12:07:08 +1000769 ttm_bo_mem_put(bo, &evict_mem);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200770 goto out;
771 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200772 bo->evicted = true;
773out:
774 return ret;
775}
776
Jerome Glisseca262a9992009-12-08 15:33:32 +0100777static int ttm_mem_evict_first(struct ttm_bo_device *bdev,
778 uint32_t mem_type,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000779 bool interruptible, bool no_wait_reserve,
780 bool no_wait_gpu)
Jerome Glisseca262a9992009-12-08 15:33:32 +0100781{
782 struct ttm_bo_global *glob = bdev->glob;
783 struct ttm_mem_type_manager *man = &bdev->man[mem_type];
784 struct ttm_buffer_object *bo;
785 int ret, put_count = 0;
786
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100787retry:
Jerome Glisseca262a9992009-12-08 15:33:32 +0100788 spin_lock(&glob->lru_lock);
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100789 if (list_empty(&man->lru)) {
790 spin_unlock(&glob->lru_lock);
791 return -EBUSY;
792 }
793
Jerome Glisseca262a9992009-12-08 15:33:32 +0100794 bo = list_first_entry(&man->lru, struct ttm_buffer_object, lru);
795 kref_get(&bo->list_kref);
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100796
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200797 if (!list_empty(&bo->ddestroy)) {
798 spin_unlock(&glob->lru_lock);
799 ret = ttm_bo_cleanup_refs(bo, interruptible,
800 no_wait_reserve, no_wait_gpu);
801 kref_put(&bo->list_kref, ttm_bo_release_list);
802
803 if (likely(ret == 0 || ret == -ERESTARTSYS))
804 return ret;
805
806 goto retry;
807 }
808
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000809 ret = ttm_bo_reserve_locked(bo, false, no_wait_reserve, false, 0);
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100810
811 if (unlikely(ret == -EBUSY)) {
812 spin_unlock(&glob->lru_lock);
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000813 if (likely(!no_wait_gpu))
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100814 ret = ttm_bo_wait_unreserved(bo, interruptible);
815
816 kref_put(&bo->list_kref, ttm_bo_release_list);
817
818 /**
819 * We *need* to retry after releasing the lru lock.
820 */
821
822 if (unlikely(ret != 0))
823 return ret;
824 goto retry;
825 }
826
827 put_count = ttm_bo_del_from_lru(bo);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100828 spin_unlock(&glob->lru_lock);
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100829
830 BUG_ON(ret != 0);
831
Dave Airlied6ea8882010-11-22 13:24:40 +1000832 ttm_bo_list_ref_sub(bo, put_count, true);
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100833
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000834 ret = ttm_bo_evict(bo, interruptible, no_wait_reserve, no_wait_gpu);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100835 ttm_bo_unreserve(bo);
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100836
Jerome Glisseca262a9992009-12-08 15:33:32 +0100837 kref_put(&bo->list_kref, ttm_bo_release_list);
838 return ret;
839}
840
Ben Skeggs42311ff2010-08-04 12:07:08 +1000841void ttm_bo_mem_put(struct ttm_buffer_object *bo, struct ttm_mem_reg *mem)
842{
Ben Skeggsd961db72010-08-05 10:48:18 +1000843 struct ttm_mem_type_manager *man = &bo->bdev->man[mem->mem_type];
Ben Skeggs42311ff2010-08-04 12:07:08 +1000844
Ben Skeggsd961db72010-08-05 10:48:18 +1000845 if (mem->mm_node)
846 (*man->func->put_node)(man, mem);
Ben Skeggs42311ff2010-08-04 12:07:08 +1000847}
848EXPORT_SYMBOL(ttm_bo_mem_put);
849
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200850/**
851 * Repeatedly evict memory from the LRU for @mem_type until we create enough
852 * space, or we've evicted everything and there isn't enough space.
853 */
Jerome Glisseca262a9992009-12-08 15:33:32 +0100854static int ttm_bo_mem_force_space(struct ttm_buffer_object *bo,
855 uint32_t mem_type,
856 struct ttm_placement *placement,
857 struct ttm_mem_reg *mem,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000858 bool interruptible,
859 bool no_wait_reserve,
860 bool no_wait_gpu)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200861{
Jerome Glisseca262a9992009-12-08 15:33:32 +0100862 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200863 struct ttm_mem_type_manager *man = &bdev->man[mem_type];
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200864 int ret;
865
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200866 do {
Ben Skeggsd961db72010-08-05 10:48:18 +1000867 ret = (*man->func->get_node)(man, bo, placement, mem);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200868 if (unlikely(ret != 0))
869 return ret;
Ben Skeggsd961db72010-08-05 10:48:18 +1000870 if (mem->mm_node)
Jerome Glisseca262a9992009-12-08 15:33:32 +0100871 break;
Jerome Glisseca262a9992009-12-08 15:33:32 +0100872 ret = ttm_mem_evict_first(bdev, mem_type, interruptible,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000873 no_wait_reserve, no_wait_gpu);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100874 if (unlikely(ret != 0))
875 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200876 } while (1);
Ben Skeggsd961db72010-08-05 10:48:18 +1000877 if (mem->mm_node == NULL)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200878 return -ENOMEM;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200879 mem->mem_type = mem_type;
880 return 0;
881}
882
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200883static uint32_t ttm_bo_select_caching(struct ttm_mem_type_manager *man,
884 uint32_t cur_placement,
885 uint32_t proposed_placement)
886{
887 uint32_t caching = proposed_placement & TTM_PL_MASK_CACHING;
888 uint32_t result = proposed_placement & ~TTM_PL_MASK_CACHING;
889
890 /**
891 * Keep current caching if possible.
892 */
893
894 if ((cur_placement & caching) != 0)
895 result |= (cur_placement & caching);
896 else if ((man->default_caching & caching) != 0)
897 result |= man->default_caching;
898 else if ((TTM_PL_FLAG_CACHED & caching) != 0)
899 result |= TTM_PL_FLAG_CACHED;
900 else if ((TTM_PL_FLAG_WC & caching) != 0)
901 result |= TTM_PL_FLAG_WC;
902 else if ((TTM_PL_FLAG_UNCACHED & caching) != 0)
903 result |= TTM_PL_FLAG_UNCACHED;
904
905 return result;
906}
907
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200908static bool ttm_bo_mt_compatible(struct ttm_mem_type_manager *man,
909 bool disallow_fixed,
910 uint32_t mem_type,
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200911 uint32_t proposed_placement,
912 uint32_t *masked_placement)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200913{
914 uint32_t cur_flags = ttm_bo_type_flags(mem_type);
915
916 if ((man->flags & TTM_MEMTYPE_FLAG_FIXED) && disallow_fixed)
917 return false;
918
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200919 if ((cur_flags & proposed_placement & TTM_PL_MASK_MEM) == 0)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200920 return false;
921
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200922 if ((proposed_placement & man->available_caching) == 0)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200923 return false;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200924
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200925 cur_flags |= (proposed_placement & man->available_caching);
926
927 *masked_placement = cur_flags;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200928 return true;
929}
930
931/**
932 * Creates space for memory region @mem according to its type.
933 *
934 * This function first searches for free space in compatible memory types in
935 * the priority order defined by the driver. If free space isn't found, then
936 * ttm_bo_mem_force_space is attempted in priority order to evict and find
937 * space.
938 */
939int ttm_bo_mem_space(struct ttm_buffer_object *bo,
Jerome Glisseca262a9992009-12-08 15:33:32 +0100940 struct ttm_placement *placement,
941 struct ttm_mem_reg *mem,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000942 bool interruptible, bool no_wait_reserve,
943 bool no_wait_gpu)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200944{
945 struct ttm_bo_device *bdev = bo->bdev;
946 struct ttm_mem_type_manager *man;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200947 uint32_t mem_type = TTM_PL_SYSTEM;
948 uint32_t cur_flags = 0;
949 bool type_found = false;
950 bool type_ok = false;
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +0100951 bool has_erestartsys = false;
Jerome Glisseca262a9992009-12-08 15:33:32 +0100952 int i, ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200953
954 mem->mm_node = NULL;
Dave Airlieb6637522009-12-14 14:51:35 +1000955 for (i = 0; i < placement->num_placement; ++i) {
Jerome Glisseca262a9992009-12-08 15:33:32 +0100956 ret = ttm_mem_type_from_flags(placement->placement[i],
957 &mem_type);
958 if (ret)
959 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200960 man = &bdev->man[mem_type];
961
962 type_ok = ttm_bo_mt_compatible(man,
Jerome Glisseca262a9992009-12-08 15:33:32 +0100963 bo->type == ttm_bo_type_user,
964 mem_type,
965 placement->placement[i],
966 &cur_flags);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200967
968 if (!type_ok)
969 continue;
970
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200971 cur_flags = ttm_bo_select_caching(man, bo->mem.placement,
972 cur_flags);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100973 /*
974 * Use the access and other non-mapping-related flag bits from
975 * the memory placement flags to the current flags
976 */
977 ttm_flag_masked(&cur_flags, placement->placement[i],
978 ~TTM_PL_MASK_MEMTYPE);
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200979
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200980 if (mem_type == TTM_PL_SYSTEM)
981 break;
982
983 if (man->has_type && man->use_type) {
984 type_found = true;
Ben Skeggsd961db72010-08-05 10:48:18 +1000985 ret = (*man->func->get_node)(man, bo, placement, mem);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100986 if (unlikely(ret))
987 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200988 }
Ben Skeggsd961db72010-08-05 10:48:18 +1000989 if (mem->mm_node)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200990 break;
991 }
992
Ben Skeggsd961db72010-08-05 10:48:18 +1000993 if ((type_ok && (mem_type == TTM_PL_SYSTEM)) || mem->mm_node) {
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200994 mem->mem_type = mem_type;
995 mem->placement = cur_flags;
996 return 0;
997 }
998
999 if (!type_found)
1000 return -EINVAL;
1001
Dave Airlieb6637522009-12-14 14:51:35 +10001002 for (i = 0; i < placement->num_busy_placement; ++i) {
1003 ret = ttm_mem_type_from_flags(placement->busy_placement[i],
Jerome Glisseca262a9992009-12-08 15:33:32 +01001004 &mem_type);
1005 if (ret)
1006 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001007 man = &bdev->man[mem_type];
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001008 if (!man->has_type)
1009 continue;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001010 if (!ttm_bo_mt_compatible(man,
Jerome Glisseca262a9992009-12-08 15:33:32 +01001011 bo->type == ttm_bo_type_user,
1012 mem_type,
Dave Airlieb6637522009-12-14 14:51:35 +10001013 placement->busy_placement[i],
Jerome Glisseca262a9992009-12-08 15:33:32 +01001014 &cur_flags))
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001015 continue;
1016
Thomas Hellstromae3e8122009-06-24 19:57:34 +02001017 cur_flags = ttm_bo_select_caching(man, bo->mem.placement,
1018 cur_flags);
Jerome Glisseca262a9992009-12-08 15:33:32 +01001019 /*
1020 * Use the access and other non-mapping-related flag bits from
1021 * the memory placement flags to the current flags
1022 */
Dave Airlieb6637522009-12-14 14:51:35 +10001023 ttm_flag_masked(&cur_flags, placement->busy_placement[i],
Jerome Glisseca262a9992009-12-08 15:33:32 +01001024 ~TTM_PL_MASK_MEMTYPE);
Thomas Hellstromae3e8122009-06-24 19:57:34 +02001025
Thomas Hellstrom0eaddb22010-01-16 16:05:04 +01001026
1027 if (mem_type == TTM_PL_SYSTEM) {
1028 mem->mem_type = mem_type;
1029 mem->placement = cur_flags;
1030 mem->mm_node = NULL;
1031 return 0;
1032 }
1033
Jerome Glisseca262a9992009-12-08 15:33:32 +01001034 ret = ttm_bo_mem_force_space(bo, mem_type, placement, mem,
Jerome Glisse9d87fa22010-04-07 10:21:19 +00001035 interruptible, no_wait_reserve, no_wait_gpu);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001036 if (ret == 0 && mem->mm_node) {
1037 mem->placement = cur_flags;
1038 return 0;
1039 }
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +01001040 if (ret == -ERESTARTSYS)
1041 has_erestartsys = true;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001042 }
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +01001043 ret = (has_erestartsys) ? -ERESTARTSYS : -ENOMEM;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001044 return ret;
1045}
1046EXPORT_SYMBOL(ttm_bo_mem_space);
1047
1048int ttm_bo_wait_cpu(struct ttm_buffer_object *bo, bool no_wait)
1049{
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001050 if ((atomic_read(&bo->cpu_writers) > 0) && no_wait)
1051 return -EBUSY;
1052
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +01001053 return wait_event_interruptible(bo->event_queue,
1054 atomic_read(&bo->cpu_writers) == 0);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001055}
Ben Skeggsd1ede142009-12-11 15:13:00 +10001056EXPORT_SYMBOL(ttm_bo_wait_cpu);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001057
1058int ttm_bo_move_buffer(struct ttm_buffer_object *bo,
Jerome Glisseca262a9992009-12-08 15:33:32 +01001059 struct ttm_placement *placement,
Jerome Glisse9d87fa22010-04-07 10:21:19 +00001060 bool interruptible, bool no_wait_reserve,
1061 bool no_wait_gpu)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001062{
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001063 int ret = 0;
1064 struct ttm_mem_reg mem;
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001065 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001066
1067 BUG_ON(!atomic_read(&bo->reserved));
1068
1069 /*
1070 * FIXME: It's possible to pipeline buffer moves.
1071 * Have the driver move function wait for idle when necessary,
1072 * instead of doing it here.
1073 */
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001074 spin_lock(&bdev->fence_lock);
Jerome Glisse9d87fa22010-04-07 10:21:19 +00001075 ret = ttm_bo_wait(bo, false, interruptible, no_wait_gpu);
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001076 spin_unlock(&bdev->fence_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001077 if (ret)
1078 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001079 mem.num_pages = bo->num_pages;
1080 mem.size = mem.num_pages << PAGE_SHIFT;
1081 mem.page_alignment = bo->mem.page_alignment;
Thomas Hellstromeba67092010-11-11 09:41:57 +01001082 mem.bus.io_reserved_vm = false;
1083 mem.bus.io_reserved_count = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001084 /*
1085 * Determine where to move the buffer.
1086 */
Jerome Glisse9d87fa22010-04-07 10:21:19 +00001087 ret = ttm_bo_mem_space(bo, placement, &mem, interruptible, no_wait_reserve, no_wait_gpu);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001088 if (ret)
1089 goto out_unlock;
Jerome Glisse9d87fa22010-04-07 10:21:19 +00001090 ret = ttm_bo_handle_move_mem(bo, &mem, false, interruptible, no_wait_reserve, no_wait_gpu);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001091out_unlock:
Ben Skeggsd961db72010-08-05 10:48:18 +10001092 if (ret && mem.mm_node)
1093 ttm_bo_mem_put(bo, &mem);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001094 return ret;
1095}
1096
Jerome Glisseca262a9992009-12-08 15:33:32 +01001097static int ttm_bo_mem_compat(struct ttm_placement *placement,
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001098 struct ttm_mem_reg *mem)
1099{
Jerome Glisseca262a9992009-12-08 15:33:32 +01001100 int i;
Thomas Hellstrome22238e2010-02-12 00:18:00 +01001101
Ben Skeggsd961db72010-08-05 10:48:18 +10001102 if (mem->mm_node && placement->lpfn != 0 &&
1103 (mem->start < placement->fpfn ||
1104 mem->start + mem->num_pages > placement->lpfn))
Thomas Hellstrome22238e2010-02-12 00:18:00 +01001105 return -1;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001106
Jerome Glisseca262a9992009-12-08 15:33:32 +01001107 for (i = 0; i < placement->num_placement; i++) {
1108 if ((placement->placement[i] & mem->placement &
1109 TTM_PL_MASK_CACHING) &&
1110 (placement->placement[i] & mem->placement &
1111 TTM_PL_MASK_MEM))
1112 return i;
1113 }
1114 return -1;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001115}
1116
Jerome Glisse09855ac2009-12-10 17:16:27 +01001117int ttm_bo_validate(struct ttm_buffer_object *bo,
1118 struct ttm_placement *placement,
Jerome Glisse9d87fa22010-04-07 10:21:19 +00001119 bool interruptible, bool no_wait_reserve,
1120 bool no_wait_gpu)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001121{
1122 int ret;
1123
1124 BUG_ON(!atomic_read(&bo->reserved));
Jerome Glisseca262a9992009-12-08 15:33:32 +01001125 /* Check that range is valid */
1126 if (placement->lpfn || placement->fpfn)
1127 if (placement->fpfn > placement->lpfn ||
1128 (placement->lpfn - placement->fpfn) < bo->num_pages)
1129 return -EINVAL;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001130 /*
1131 * Check whether we need to move buffer.
1132 */
Jerome Glisseca262a9992009-12-08 15:33:32 +01001133 ret = ttm_bo_mem_compat(placement, &bo->mem);
1134 if (ret < 0) {
Jerome Glisse9d87fa22010-04-07 10:21:19 +00001135 ret = ttm_bo_move_buffer(bo, placement, interruptible, no_wait_reserve, no_wait_gpu);
Jerome Glisseca262a9992009-12-08 15:33:32 +01001136 if (ret)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001137 return ret;
Jerome Glisseca262a9992009-12-08 15:33:32 +01001138 } else {
1139 /*
1140 * Use the access and other non-mapping-related flag bits from
1141 * the compatible memory placement flags to the active flags
1142 */
1143 ttm_flag_masked(&bo->mem.placement, placement->placement[ret],
1144 ~TTM_PL_MASK_MEMTYPE);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001145 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001146 /*
1147 * We might need to add a TTM.
1148 */
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001149 if (bo->mem.mem_type == TTM_PL_SYSTEM && bo->ttm == NULL) {
1150 ret = ttm_bo_add_ttm(bo, true);
1151 if (ret)
1152 return ret;
1153 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001154 return 0;
1155}
Jerome Glisse09855ac2009-12-10 17:16:27 +01001156EXPORT_SYMBOL(ttm_bo_validate);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001157
Jerome Glisse09855ac2009-12-10 17:16:27 +01001158int ttm_bo_check_placement(struct ttm_buffer_object *bo,
1159 struct ttm_placement *placement)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001160{
Thomas Hellstrom29e190e2010-11-02 13:21:48 +00001161 BUG_ON((placement->fpfn || placement->lpfn) &&
1162 (bo->mem.num_pages > (placement->lpfn - placement->fpfn)));
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001163
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001164 return 0;
1165}
1166
Jerome Glisse09855ac2009-12-10 17:16:27 +01001167int ttm_bo_init(struct ttm_bo_device *bdev,
1168 struct ttm_buffer_object *bo,
1169 unsigned long size,
1170 enum ttm_bo_type type,
1171 struct ttm_placement *placement,
1172 uint32_t page_alignment,
1173 unsigned long buffer_start,
1174 bool interruptible,
Jan Engelhardt5df23972011-04-04 01:25:18 +02001175 struct file *persistent_swap_storage,
Jerome Glisse09855ac2009-12-10 17:16:27 +01001176 size_t acc_size,
1177 void (*destroy) (struct ttm_buffer_object *))
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001178{
Jerome Glisse09855ac2009-12-10 17:16:27 +01001179 int ret = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001180 unsigned long num_pages;
1181
1182 size += buffer_start & ~PAGE_MASK;
1183 num_pages = (size + PAGE_SIZE - 1) >> PAGE_SHIFT;
1184 if (num_pages == 0) {
1185 printk(KERN_ERR TTM_PFX "Illegal buffer object size.\n");
Thomas Hellstrom7dfbbdc2010-11-09 21:31:44 +01001186 if (destroy)
1187 (*destroy)(bo);
1188 else
1189 kfree(bo);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001190 return -EINVAL;
1191 }
1192 bo->destroy = destroy;
1193
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001194 kref_init(&bo->kref);
1195 kref_init(&bo->list_kref);
1196 atomic_set(&bo->cpu_writers, 0);
1197 atomic_set(&bo->reserved, 1);
1198 init_waitqueue_head(&bo->event_queue);
1199 INIT_LIST_HEAD(&bo->lru);
1200 INIT_LIST_HEAD(&bo->ddestroy);
1201 INIT_LIST_HEAD(&bo->swap);
Thomas Hellstromeba67092010-11-11 09:41:57 +01001202 INIT_LIST_HEAD(&bo->io_reserve_lru);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001203 bo->bdev = bdev;
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001204 bo->glob = bdev->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001205 bo->type = type;
1206 bo->num_pages = num_pages;
Jerome Glisseeb6d2c32009-12-10 16:15:52 +01001207 bo->mem.size = num_pages << PAGE_SHIFT;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001208 bo->mem.mem_type = TTM_PL_SYSTEM;
1209 bo->mem.num_pages = bo->num_pages;
1210 bo->mem.mm_node = NULL;
1211 bo->mem.page_alignment = page_alignment;
Thomas Hellstromeba67092010-11-11 09:41:57 +01001212 bo->mem.bus.io_reserved_vm = false;
1213 bo->mem.bus.io_reserved_count = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001214 bo->buffer_start = buffer_start & PAGE_MASK;
1215 bo->priv_flags = 0;
1216 bo->mem.placement = (TTM_PL_FLAG_SYSTEM | TTM_PL_FLAG_CACHED);
1217 bo->seq_valid = false;
Jan Engelhardt5df23972011-04-04 01:25:18 +02001218 bo->persistent_swap_storage = persistent_swap_storage;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001219 bo->acc_size = acc_size;
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001220 atomic_inc(&bo->glob->bo_count);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001221
Jerome Glisse09855ac2009-12-10 17:16:27 +01001222 ret = ttm_bo_check_placement(bo, placement);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001223 if (unlikely(ret != 0))
1224 goto out_err;
1225
1226 /*
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001227 * For ttm_bo_type_device buffers, allocate
1228 * address space from the device.
1229 */
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001230 if (bo->type == ttm_bo_type_device) {
1231 ret = ttm_bo_setup_vm(bo);
1232 if (ret)
1233 goto out_err;
1234 }
1235
Jerome Glisse9d87fa22010-04-07 10:21:19 +00001236 ret = ttm_bo_validate(bo, placement, interruptible, false, false);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001237 if (ret)
1238 goto out_err;
1239
1240 ttm_bo_unreserve(bo);
1241 return 0;
1242
1243out_err:
1244 ttm_bo_unreserve(bo);
1245 ttm_bo_unref(&bo);
1246
1247 return ret;
1248}
Jerome Glisse09855ac2009-12-10 17:16:27 +01001249EXPORT_SYMBOL(ttm_bo_init);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001250
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001251static inline size_t ttm_bo_size(struct ttm_bo_global *glob,
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001252 unsigned long num_pages)
1253{
1254 size_t page_array_size = (num_pages * sizeof(void *) + PAGE_SIZE - 1) &
1255 PAGE_MASK;
1256
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001257 return glob->ttm_bo_size + 2 * page_array_size;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001258}
1259
Jerome Glisse09855ac2009-12-10 17:16:27 +01001260int ttm_bo_create(struct ttm_bo_device *bdev,
1261 unsigned long size,
1262 enum ttm_bo_type type,
1263 struct ttm_placement *placement,
1264 uint32_t page_alignment,
1265 unsigned long buffer_start,
1266 bool interruptible,
Jan Engelhardt5df23972011-04-04 01:25:18 +02001267 struct file *persistent_swap_storage,
Jerome Glisse09855ac2009-12-10 17:16:27 +01001268 struct ttm_buffer_object **p_bo)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001269{
1270 struct ttm_buffer_object *bo;
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001271 struct ttm_mem_global *mem_glob = bdev->glob->mem_glob;
Jerome Glisseca262a9992009-12-08 15:33:32 +01001272 int ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001273
1274 size_t acc_size =
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001275 ttm_bo_size(bdev->glob, (size + PAGE_SIZE - 1) >> PAGE_SHIFT);
Thomas Hellstrom5fd9cba2009-08-17 16:28:39 +02001276 ret = ttm_mem_global_alloc(mem_glob, acc_size, false, false);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001277 if (unlikely(ret != 0))
1278 return ret;
1279
1280 bo = kzalloc(sizeof(*bo), GFP_KERNEL);
1281
1282 if (unlikely(bo == NULL)) {
Thomas Hellstrom5fd9cba2009-08-17 16:28:39 +02001283 ttm_mem_global_free(mem_glob, acc_size);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001284 return -ENOMEM;
1285 }
1286
Jerome Glisse09855ac2009-12-10 17:16:27 +01001287 ret = ttm_bo_init(bdev, bo, size, type, placement, page_alignment,
1288 buffer_start, interruptible,
Jan Engelhardt5df23972011-04-04 01:25:18 +02001289 persistent_swap_storage, acc_size, NULL);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001290 if (likely(ret == 0))
1291 *p_bo = bo;
1292
1293 return ret;
1294}
1295
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001296static int ttm_bo_force_list_clean(struct ttm_bo_device *bdev,
Jerome Glisseca262a9992009-12-08 15:33:32 +01001297 unsigned mem_type, bool allow_errors)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001298{
Jerome Glisseca262a9992009-12-08 15:33:32 +01001299 struct ttm_mem_type_manager *man = &bdev->man[mem_type];
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001300 struct ttm_bo_global *glob = bdev->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001301 int ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001302
1303 /*
1304 * Can't use standard list traversal since we're unlocking.
1305 */
1306
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001307 spin_lock(&glob->lru_lock);
Jerome Glisseca262a9992009-12-08 15:33:32 +01001308 while (!list_empty(&man->lru)) {
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001309 spin_unlock(&glob->lru_lock);
Jerome Glisse9d87fa22010-04-07 10:21:19 +00001310 ret = ttm_mem_evict_first(bdev, mem_type, false, false, false);
Jerome Glisseca262a9992009-12-08 15:33:32 +01001311 if (ret) {
1312 if (allow_errors) {
1313 return ret;
1314 } else {
1315 printk(KERN_ERR TTM_PFX
1316 "Cleanup eviction failed\n");
1317 }
1318 }
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001319 spin_lock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001320 }
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001321 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001322 return 0;
1323}
1324
1325int ttm_bo_clean_mm(struct ttm_bo_device *bdev, unsigned mem_type)
1326{
Roel Kluinc96e7c72009-08-03 14:22:53 +02001327 struct ttm_mem_type_manager *man;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001328 int ret = -EINVAL;
1329
1330 if (mem_type >= TTM_NUM_MEM_TYPES) {
1331 printk(KERN_ERR TTM_PFX "Illegal memory type %d\n", mem_type);
1332 return ret;
1333 }
Roel Kluinc96e7c72009-08-03 14:22:53 +02001334 man = &bdev->man[mem_type];
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001335
1336 if (!man->has_type) {
1337 printk(KERN_ERR TTM_PFX "Trying to take down uninitialized "
1338 "memory manager type %u\n", mem_type);
1339 return ret;
1340 }
1341
1342 man->use_type = false;
1343 man->has_type = false;
1344
1345 ret = 0;
1346 if (mem_type > 0) {
Jerome Glisseca262a9992009-12-08 15:33:32 +01001347 ttm_bo_force_list_clean(bdev, mem_type, false);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001348
Ben Skeggsd961db72010-08-05 10:48:18 +10001349 ret = (*man->func->takedown)(man);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001350 }
1351
1352 return ret;
1353}
1354EXPORT_SYMBOL(ttm_bo_clean_mm);
1355
1356int ttm_bo_evict_mm(struct ttm_bo_device *bdev, unsigned mem_type)
1357{
1358 struct ttm_mem_type_manager *man = &bdev->man[mem_type];
1359
1360 if (mem_type == 0 || mem_type >= TTM_NUM_MEM_TYPES) {
1361 printk(KERN_ERR TTM_PFX
1362 "Illegal memory manager memory type %u.\n",
1363 mem_type);
1364 return -EINVAL;
1365 }
1366
1367 if (!man->has_type) {
1368 printk(KERN_ERR TTM_PFX
1369 "Memory type %u has not been initialized.\n",
1370 mem_type);
1371 return 0;
1372 }
1373
Jerome Glisseca262a9992009-12-08 15:33:32 +01001374 return ttm_bo_force_list_clean(bdev, mem_type, true);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001375}
1376EXPORT_SYMBOL(ttm_bo_evict_mm);
1377
1378int ttm_bo_init_mm(struct ttm_bo_device *bdev, unsigned type,
Jerome Glisseca262a9992009-12-08 15:33:32 +01001379 unsigned long p_size)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001380{
1381 int ret = -EINVAL;
1382 struct ttm_mem_type_manager *man;
1383
Thomas Hellstromdbc4a5b2010-10-29 10:46:47 +02001384 BUG_ON(type >= TTM_NUM_MEM_TYPES);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001385 man = &bdev->man[type];
Thomas Hellstromdbc4a5b2010-10-29 10:46:47 +02001386 BUG_ON(man->has_type);
Thomas Hellstromeba67092010-11-11 09:41:57 +01001387 man->io_reserve_fastpath = true;
1388 man->use_io_reserve_lru = false;
1389 mutex_init(&man->io_reserve_mutex);
1390 INIT_LIST_HEAD(&man->io_reserve_lru);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001391
1392 ret = bdev->driver->init_mem_type(bdev, type, man);
1393 if (ret)
1394 return ret;
Ben Skeggsd961db72010-08-05 10:48:18 +10001395 man->bdev = bdev;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001396
1397 ret = 0;
1398 if (type != TTM_PL_SYSTEM) {
Ben Skeggsd961db72010-08-05 10:48:18 +10001399 ret = (*man->func->init)(man, p_size);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001400 if (ret)
1401 return ret;
1402 }
1403 man->has_type = true;
1404 man->use_type = true;
1405 man->size = p_size;
1406
1407 INIT_LIST_HEAD(&man->lru);
1408
1409 return 0;
1410}
1411EXPORT_SYMBOL(ttm_bo_init_mm);
1412
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001413static void ttm_bo_global_kobj_release(struct kobject *kobj)
1414{
1415 struct ttm_bo_global *glob =
1416 container_of(kobj, struct ttm_bo_global, kobj);
1417
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001418 ttm_mem_unregister_shrink(glob->mem_glob, &glob->shrink);
1419 __free_page(glob->dummy_read_page);
1420 kfree(glob);
1421}
1422
Dave Airlieba4420c2010-03-09 10:56:52 +10001423void ttm_bo_global_release(struct drm_global_reference *ref)
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001424{
1425 struct ttm_bo_global *glob = ref->object;
1426
1427 kobject_del(&glob->kobj);
1428 kobject_put(&glob->kobj);
1429}
1430EXPORT_SYMBOL(ttm_bo_global_release);
1431
Dave Airlieba4420c2010-03-09 10:56:52 +10001432int ttm_bo_global_init(struct drm_global_reference *ref)
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001433{
1434 struct ttm_bo_global_ref *bo_ref =
1435 container_of(ref, struct ttm_bo_global_ref, ref);
1436 struct ttm_bo_global *glob = ref->object;
1437 int ret;
1438
1439 mutex_init(&glob->device_list_mutex);
1440 spin_lock_init(&glob->lru_lock);
1441 glob->mem_glob = bo_ref->mem_glob;
1442 glob->dummy_read_page = alloc_page(__GFP_ZERO | GFP_DMA32);
1443
1444 if (unlikely(glob->dummy_read_page == NULL)) {
1445 ret = -ENOMEM;
1446 goto out_no_drp;
1447 }
1448
1449 INIT_LIST_HEAD(&glob->swap_lru);
1450 INIT_LIST_HEAD(&glob->device_list);
1451
1452 ttm_mem_init_shrink(&glob->shrink, ttm_bo_swapout);
1453 ret = ttm_mem_register_shrink(glob->mem_glob, &glob->shrink);
1454 if (unlikely(ret != 0)) {
1455 printk(KERN_ERR TTM_PFX
1456 "Could not register buffer object swapout.\n");
1457 goto out_no_shrink;
1458 }
1459
1460 glob->ttm_bo_extra_size =
1461 ttm_round_pot(sizeof(struct ttm_tt)) +
1462 ttm_round_pot(sizeof(struct ttm_backend));
1463
1464 glob->ttm_bo_size = glob->ttm_bo_extra_size +
1465 ttm_round_pot(sizeof(struct ttm_buffer_object));
1466
1467 atomic_set(&glob->bo_count, 0);
1468
Robert P. J. Dayb642ed02010-03-13 10:36:32 +00001469 ret = kobject_init_and_add(
1470 &glob->kobj, &ttm_bo_glob_kobj_type, ttm_get_kobj(), "buffer_objects");
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001471 if (unlikely(ret != 0))
1472 kobject_put(&glob->kobj);
1473 return ret;
1474out_no_shrink:
1475 __free_page(glob->dummy_read_page);
1476out_no_drp:
1477 kfree(glob);
1478 return ret;
1479}
1480EXPORT_SYMBOL(ttm_bo_global_init);
1481
1482
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001483int ttm_bo_device_release(struct ttm_bo_device *bdev)
1484{
1485 int ret = 0;
1486 unsigned i = TTM_NUM_MEM_TYPES;
1487 struct ttm_mem_type_manager *man;
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001488 struct ttm_bo_global *glob = bdev->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001489
1490 while (i--) {
1491 man = &bdev->man[i];
1492 if (man->has_type) {
1493 man->use_type = false;
1494 if ((i != TTM_PL_SYSTEM) && ttm_bo_clean_mm(bdev, i)) {
1495 ret = -EBUSY;
1496 printk(KERN_ERR TTM_PFX
1497 "DRM memory manager type %d "
1498 "is not clean.\n", i);
1499 }
1500 man->has_type = false;
1501 }
1502 }
1503
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001504 mutex_lock(&glob->device_list_mutex);
1505 list_del(&bdev->device_list);
1506 mutex_unlock(&glob->device_list_mutex);
1507
Tejun Heof094cfc2010-12-24 15:59:06 +01001508 cancel_delayed_work_sync(&bdev->wq);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001509
1510 while (ttm_bo_delayed_delete(bdev, true))
1511 ;
1512
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001513 spin_lock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001514 if (list_empty(&bdev->ddestroy))
1515 TTM_DEBUG("Delayed destroy list was clean\n");
1516
1517 if (list_empty(&bdev->man[0].lru))
1518 TTM_DEBUG("Swap list was clean\n");
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001519 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001520
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001521 BUG_ON(!drm_mm_clean(&bdev->addr_space_mm));
1522 write_lock(&bdev->vm_lock);
1523 drm_mm_takedown(&bdev->addr_space_mm);
1524 write_unlock(&bdev->vm_lock);
1525
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001526 return ret;
1527}
1528EXPORT_SYMBOL(ttm_bo_device_release);
1529
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001530int ttm_bo_device_init(struct ttm_bo_device *bdev,
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001531 struct ttm_bo_global *glob,
1532 struct ttm_bo_driver *driver,
Dave Airlie51c8b402009-08-20 13:38:04 +10001533 uint64_t file_page_offset,
Dave Airliead49f502009-07-10 22:36:26 +10001534 bool need_dma32)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001535{
1536 int ret = -EINVAL;
1537
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001538 rwlock_init(&bdev->vm_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001539 bdev->driver = driver;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001540
1541 memset(bdev->man, 0, sizeof(bdev->man));
1542
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001543 /*
1544 * Initialize the system memory buffer type.
1545 * Other types need to be driver / IOCTL initialized.
1546 */
Jerome Glisseca262a9992009-12-08 15:33:32 +01001547 ret = ttm_bo_init_mm(bdev, TTM_PL_SYSTEM, 0);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001548 if (unlikely(ret != 0))
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001549 goto out_no_sys;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001550
1551 bdev->addr_space_rb = RB_ROOT;
1552 ret = drm_mm_init(&bdev->addr_space_mm, file_page_offset, 0x10000000);
1553 if (unlikely(ret != 0))
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001554 goto out_no_addr_mm;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001555
1556 INIT_DELAYED_WORK(&bdev->wq, ttm_bo_delayed_workqueue);
1557 bdev->nice_mode = true;
1558 INIT_LIST_HEAD(&bdev->ddestroy);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001559 bdev->dev_mapping = NULL;
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001560 bdev->glob = glob;
Dave Airliead49f502009-07-10 22:36:26 +10001561 bdev->need_dma32 = need_dma32;
Thomas Hellstrom65705962010-11-17 12:28:31 +00001562 bdev->val_seq = 0;
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001563 spin_lock_init(&bdev->fence_lock);
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001564 mutex_lock(&glob->device_list_mutex);
1565 list_add_tail(&bdev->device_list, &glob->device_list);
1566 mutex_unlock(&glob->device_list_mutex);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001567
1568 return 0;
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001569out_no_addr_mm:
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001570 ttm_bo_clean_mm(bdev, 0);
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001571out_no_sys:
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001572 return ret;
1573}
1574EXPORT_SYMBOL(ttm_bo_device_init);
1575
1576/*
1577 * buffer object vm functions.
1578 */
1579
1580bool ttm_mem_reg_is_pci(struct ttm_bo_device *bdev, struct ttm_mem_reg *mem)
1581{
1582 struct ttm_mem_type_manager *man = &bdev->man[mem->mem_type];
1583
1584 if (!(man->flags & TTM_MEMTYPE_FLAG_FIXED)) {
1585 if (mem->mem_type == TTM_PL_SYSTEM)
1586 return false;
1587
1588 if (man->flags & TTM_MEMTYPE_FLAG_CMA)
1589 return false;
1590
1591 if (mem->placement & TTM_PL_FLAG_CACHED)
1592 return false;
1593 }
1594 return true;
1595}
1596
Thomas Hellstromeba67092010-11-11 09:41:57 +01001597void ttm_bo_unmap_virtual_locked(struct ttm_buffer_object *bo)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001598{
1599 struct ttm_bo_device *bdev = bo->bdev;
1600 loff_t offset = (loff_t) bo->addr_space_offset;
1601 loff_t holelen = ((loff_t) bo->mem.num_pages) << PAGE_SHIFT;
1602
1603 if (!bdev->dev_mapping)
1604 return;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001605 unmap_mapping_range(bdev->dev_mapping, offset, holelen, 1);
Thomas Hellstromeba67092010-11-11 09:41:57 +01001606 ttm_mem_io_free_vm(bo);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001607}
Thomas Hellstromeba67092010-11-11 09:41:57 +01001608
1609void ttm_bo_unmap_virtual(struct ttm_buffer_object *bo)
1610{
1611 struct ttm_bo_device *bdev = bo->bdev;
1612 struct ttm_mem_type_manager *man = &bdev->man[bo->mem.mem_type];
1613
1614 ttm_mem_io_lock(man, false);
1615 ttm_bo_unmap_virtual_locked(bo);
1616 ttm_mem_io_unlock(man);
1617}
1618
1619
Dave Airliee024e112009-06-24 09:48:08 +10001620EXPORT_SYMBOL(ttm_bo_unmap_virtual);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001621
1622static void ttm_bo_vm_insert_rb(struct ttm_buffer_object *bo)
1623{
1624 struct ttm_bo_device *bdev = bo->bdev;
1625 struct rb_node **cur = &bdev->addr_space_rb.rb_node;
1626 struct rb_node *parent = NULL;
1627 struct ttm_buffer_object *cur_bo;
1628 unsigned long offset = bo->vm_node->start;
1629 unsigned long cur_offset;
1630
1631 while (*cur) {
1632 parent = *cur;
1633 cur_bo = rb_entry(parent, struct ttm_buffer_object, vm_rb);
1634 cur_offset = cur_bo->vm_node->start;
1635 if (offset < cur_offset)
1636 cur = &parent->rb_left;
1637 else if (offset > cur_offset)
1638 cur = &parent->rb_right;
1639 else
1640 BUG();
1641 }
1642
1643 rb_link_node(&bo->vm_rb, parent, cur);
1644 rb_insert_color(&bo->vm_rb, &bdev->addr_space_rb);
1645}
1646
1647/**
1648 * ttm_bo_setup_vm:
1649 *
1650 * @bo: the buffer to allocate address space for
1651 *
1652 * Allocate address space in the drm device so that applications
1653 * can mmap the buffer and access the contents. This only
1654 * applies to ttm_bo_type_device objects as others are not
1655 * placed in the drm device address space.
1656 */
1657
1658static int ttm_bo_setup_vm(struct ttm_buffer_object *bo)
1659{
1660 struct ttm_bo_device *bdev = bo->bdev;
1661 int ret;
1662
1663retry_pre_get:
1664 ret = drm_mm_pre_get(&bdev->addr_space_mm);
1665 if (unlikely(ret != 0))
1666 return ret;
1667
1668 write_lock(&bdev->vm_lock);
1669 bo->vm_node = drm_mm_search_free(&bdev->addr_space_mm,
1670 bo->mem.num_pages, 0, 0);
1671
1672 if (unlikely(bo->vm_node == NULL)) {
1673 ret = -ENOMEM;
1674 goto out_unlock;
1675 }
1676
1677 bo->vm_node = drm_mm_get_block_atomic(bo->vm_node,
1678 bo->mem.num_pages, 0);
1679
1680 if (unlikely(bo->vm_node == NULL)) {
1681 write_unlock(&bdev->vm_lock);
1682 goto retry_pre_get;
1683 }
1684
1685 ttm_bo_vm_insert_rb(bo);
1686 write_unlock(&bdev->vm_lock);
1687 bo->addr_space_offset = ((uint64_t) bo->vm_node->start) << PAGE_SHIFT;
1688
1689 return 0;
1690out_unlock:
1691 write_unlock(&bdev->vm_lock);
1692 return ret;
1693}
1694
1695int ttm_bo_wait(struct ttm_buffer_object *bo,
1696 bool lazy, bool interruptible, bool no_wait)
1697{
1698 struct ttm_bo_driver *driver = bo->bdev->driver;
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001699 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001700 void *sync_obj;
1701 void *sync_obj_arg;
1702 int ret = 0;
1703
1704 if (likely(bo->sync_obj == NULL))
1705 return 0;
1706
1707 while (bo->sync_obj) {
1708
1709 if (driver->sync_obj_signaled(bo->sync_obj, bo->sync_obj_arg)) {
1710 void *tmp_obj = bo->sync_obj;
1711 bo->sync_obj = NULL;
1712 clear_bit(TTM_BO_PRIV_FLAG_MOVING, &bo->priv_flags);
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001713 spin_unlock(&bdev->fence_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001714 driver->sync_obj_unref(&tmp_obj);
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001715 spin_lock(&bdev->fence_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001716 continue;
1717 }
1718
1719 if (no_wait)
1720 return -EBUSY;
1721
1722 sync_obj = driver->sync_obj_ref(bo->sync_obj);
1723 sync_obj_arg = bo->sync_obj_arg;
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001724 spin_unlock(&bdev->fence_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001725 ret = driver->sync_obj_wait(sync_obj, sync_obj_arg,
1726 lazy, interruptible);
1727 if (unlikely(ret != 0)) {
1728 driver->sync_obj_unref(&sync_obj);
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001729 spin_lock(&bdev->fence_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001730 return ret;
1731 }
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001732 spin_lock(&bdev->fence_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001733 if (likely(bo->sync_obj == sync_obj &&
1734 bo->sync_obj_arg == sync_obj_arg)) {
1735 void *tmp_obj = bo->sync_obj;
1736 bo->sync_obj = NULL;
1737 clear_bit(TTM_BO_PRIV_FLAG_MOVING,
1738 &bo->priv_flags);
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001739 spin_unlock(&bdev->fence_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001740 driver->sync_obj_unref(&sync_obj);
1741 driver->sync_obj_unref(&tmp_obj);
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001742 spin_lock(&bdev->fence_lock);
Thomas Hellstromfee280d2009-08-03 12:39:06 +02001743 } else {
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001744 spin_unlock(&bdev->fence_lock);
Thomas Hellstromfee280d2009-08-03 12:39:06 +02001745 driver->sync_obj_unref(&sync_obj);
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001746 spin_lock(&bdev->fence_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001747 }
1748 }
1749 return 0;
1750}
1751EXPORT_SYMBOL(ttm_bo_wait);
1752
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001753int ttm_bo_synccpu_write_grab(struct ttm_buffer_object *bo, bool no_wait)
1754{
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001755 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001756 int ret = 0;
1757
1758 /*
Thomas Hellstrom8cfe92d2010-04-28 11:33:25 +02001759 * Using ttm_bo_reserve makes sure the lru lists are updated.
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001760 */
1761
1762 ret = ttm_bo_reserve(bo, true, no_wait, false, 0);
1763 if (unlikely(ret != 0))
1764 return ret;
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001765 spin_lock(&bdev->fence_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001766 ret = ttm_bo_wait(bo, false, true, no_wait);
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001767 spin_unlock(&bdev->fence_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001768 if (likely(ret == 0))
1769 atomic_inc(&bo->cpu_writers);
1770 ttm_bo_unreserve(bo);
1771 return ret;
1772}
Ben Skeggsd1ede142009-12-11 15:13:00 +10001773EXPORT_SYMBOL(ttm_bo_synccpu_write_grab);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001774
1775void ttm_bo_synccpu_write_release(struct ttm_buffer_object *bo)
1776{
1777 if (atomic_dec_and_test(&bo->cpu_writers))
1778 wake_up_all(&bo->event_queue);
1779}
Ben Skeggsd1ede142009-12-11 15:13:00 +10001780EXPORT_SYMBOL(ttm_bo_synccpu_write_release);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001781
1782/**
1783 * A buffer object shrink method that tries to swap out the first
1784 * buffer object on the bo_global::swap_lru list.
1785 */
1786
1787static int ttm_bo_swapout(struct ttm_mem_shrink *shrink)
1788{
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001789 struct ttm_bo_global *glob =
1790 container_of(shrink, struct ttm_bo_global, shrink);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001791 struct ttm_buffer_object *bo;
1792 int ret = -EBUSY;
1793 int put_count;
1794 uint32_t swap_placement = (TTM_PL_FLAG_CACHED | TTM_PL_FLAG_SYSTEM);
1795
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001796 spin_lock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001797 while (ret == -EBUSY) {
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001798 if (unlikely(list_empty(&glob->swap_lru))) {
1799 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001800 return -EBUSY;
1801 }
1802
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001803 bo = list_first_entry(&glob->swap_lru,
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001804 struct ttm_buffer_object, swap);
1805 kref_get(&bo->list_kref);
1806
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +02001807 if (!list_empty(&bo->ddestroy)) {
1808 spin_unlock(&glob->lru_lock);
1809 (void) ttm_bo_cleanup_refs(bo, false, false, false);
1810 kref_put(&bo->list_kref, ttm_bo_release_list);
1811 continue;
1812 }
1813
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001814 /**
1815 * Reserve buffer. Since we unlock while sleeping, we need
1816 * to re-check that nobody removed us from the swap-list while
1817 * we slept.
1818 */
1819
1820 ret = ttm_bo_reserve_locked(bo, false, true, false, 0);
1821 if (unlikely(ret == -EBUSY)) {
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001822 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001823 ttm_bo_wait_unreserved(bo, false);
1824 kref_put(&bo->list_kref, ttm_bo_release_list);
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001825 spin_lock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001826 }
1827 }
1828
1829 BUG_ON(ret != 0);
1830 put_count = ttm_bo_del_from_lru(bo);
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001831 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001832
Dave Airlied6ea8882010-11-22 13:24:40 +10001833 ttm_bo_list_ref_sub(bo, put_count, true);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001834
1835 /**
1836 * Wait for GPU, then move to system cached.
1837 */
1838
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001839 spin_lock(&bo->bdev->fence_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001840 ret = ttm_bo_wait(bo, false, false, false);
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001841 spin_unlock(&bo->bdev->fence_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001842
1843 if (unlikely(ret != 0))
1844 goto out;
1845
1846 if ((bo->mem.placement & swap_placement) != swap_placement) {
1847 struct ttm_mem_reg evict_mem;
1848
1849 evict_mem = bo->mem;
1850 evict_mem.mm_node = NULL;
1851 evict_mem.placement = TTM_PL_FLAG_SYSTEM | TTM_PL_FLAG_CACHED;
1852 evict_mem.mem_type = TTM_PL_SYSTEM;
1853
1854 ret = ttm_bo_handle_move_mem(bo, &evict_mem, true,
Jerome Glisse9d87fa22010-04-07 10:21:19 +00001855 false, false, false);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001856 if (unlikely(ret != 0))
1857 goto out;
1858 }
1859
1860 ttm_bo_unmap_virtual(bo);
1861
1862 /**
1863 * Swap out. Buffer will be swapped in again as soon as
1864 * anyone tries to access a ttm page.
1865 */
1866
Thomas Hellstrom3f09ea42010-01-13 22:28:40 +01001867 if (bo->bdev->driver->swap_notify)
1868 bo->bdev->driver->swap_notify(bo);
1869
Jan Engelhardt5df23972011-04-04 01:25:18 +02001870 ret = ttm_tt_swapout(bo->ttm, bo->persistent_swap_storage);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001871out:
1872
1873 /**
1874 *
1875 * Unreserve without putting on LRU to avoid swapping out an
1876 * already swapped buffer.
1877 */
1878
1879 atomic_set(&bo->reserved, 0);
1880 wake_up_all(&bo->event_queue);
1881 kref_put(&bo->list_kref, ttm_bo_release_list);
1882 return ret;
1883}
1884
1885void ttm_bo_swapout_all(struct ttm_bo_device *bdev)
1886{
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001887 while (ttm_bo_swapout(&bdev->glob->shrink) == 0)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001888 ;
1889}
Thomas Hellstrome99e1e72010-01-13 22:28:42 +01001890EXPORT_SYMBOL(ttm_bo_swapout_all);