blob: 551a5d31cadf616c537562e2349e897801cd14ec [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>
Thomas Hellstrom06fba6d2010-10-29 10:46:48 +020040#include <asm/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);
356 if (unlikely(ret != 0))
357 ttm_tt_destroy(bo->ttm);
358 break;
359 default:
360 printk(KERN_ERR TTM_PFX "Illegal buffer object type\n");
361 ret = -EINVAL;
362 break;
363 }
364
365 return ret;
366}
367
368static int ttm_bo_handle_move_mem(struct ttm_buffer_object *bo,
369 struct ttm_mem_reg *mem,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000370 bool evict, bool interruptible,
371 bool no_wait_reserve, bool no_wait_gpu)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200372{
373 struct ttm_bo_device *bdev = bo->bdev;
374 bool old_is_pci = ttm_mem_reg_is_pci(bdev, &bo->mem);
375 bool new_is_pci = ttm_mem_reg_is_pci(bdev, mem);
376 struct ttm_mem_type_manager *old_man = &bdev->man[bo->mem.mem_type];
377 struct ttm_mem_type_manager *new_man = &bdev->man[mem->mem_type];
378 int ret = 0;
379
380 if (old_is_pci || new_is_pci ||
381 ((mem->placement & bo->mem.placement & TTM_PL_MASK_CACHING) == 0))
382 ttm_bo_unmap_virtual(bo);
383
384 /*
385 * Create and bind a ttm if required.
386 */
387
388 if (!(new_man->flags & TTM_MEMTYPE_FLAG_FIXED) && (bo->ttm == NULL)) {
389 ret = ttm_bo_add_ttm(bo, false);
390 if (ret)
391 goto out_err;
392
393 ret = ttm_tt_set_placement_caching(bo->ttm, mem->placement);
394 if (ret)
Thomas Hellstrom87ef9202009-06-17 12:29:57 +0200395 goto out_err;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200396
397 if (mem->mem_type != TTM_PL_SYSTEM) {
398 ret = ttm_tt_bind(bo->ttm, mem);
399 if (ret)
400 goto out_err;
401 }
402
403 if (bo->mem.mem_type == TTM_PL_SYSTEM) {
Jerome Glisseca262a9992009-12-08 15:33:32 +0100404 bo->mem = *mem;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200405 mem->mm_node = NULL;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200406 goto moved;
407 }
408
409 }
410
Dave Airliee024e112009-06-24 09:48:08 +1000411 if (bdev->driver->move_notify)
412 bdev->driver->move_notify(bo, mem);
413
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200414 if (!(old_man->flags & TTM_MEMTYPE_FLAG_FIXED) &&
415 !(new_man->flags & TTM_MEMTYPE_FLAG_FIXED))
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000416 ret = ttm_bo_move_ttm(bo, evict, no_wait_reserve, no_wait_gpu, mem);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200417 else if (bdev->driver->move)
418 ret = bdev->driver->move(bo, evict, interruptible,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000419 no_wait_reserve, no_wait_gpu, mem);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200420 else
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000421 ret = ttm_bo_move_memcpy(bo, evict, no_wait_reserve, no_wait_gpu, mem);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200422
423 if (ret)
424 goto out_err;
425
426moved:
427 if (bo->evicted) {
428 ret = bdev->driver->invalidate_caches(bdev, bo->mem.placement);
429 if (ret)
430 printk(KERN_ERR TTM_PFX "Can not flush read caches\n");
431 bo->evicted = false;
432 }
433
434 if (bo->mem.mm_node) {
Ben Skeggsd961db72010-08-05 10:48:18 +1000435 bo->offset = (bo->mem.start << PAGE_SHIFT) +
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200436 bdev->man[bo->mem.mem_type].gpu_offset;
437 bo->cur_placement = bo->mem.placement;
Thomas Hellstrom354fb522010-01-13 22:28:45 +0100438 } else
439 bo->offset = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200440
441 return 0;
442
443out_err:
444 new_man = &bdev->man[bo->mem.mem_type];
445 if ((new_man->flags & TTM_MEMTYPE_FLAG_FIXED) && bo->ttm) {
446 ttm_tt_unbind(bo->ttm);
447 ttm_tt_destroy(bo->ttm);
448 bo->ttm = NULL;
449 }
450
451 return ret;
452}
453
454/**
Thomas Hellstrom40d857b2010-10-19 09:01:00 +0200455 * Call bo::reserved.
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200456 * Will release GPU memory type usage on destruction.
Thomas Hellstrom40d857b2010-10-19 09:01:00 +0200457 * This is the place to put in driver specific hooks to release
458 * driver private resources.
459 * Will release the bo::reserved lock.
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200460 */
461
462static void ttm_bo_cleanup_memtype_use(struct ttm_buffer_object *bo)
463{
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200464 if (bo->ttm) {
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200465 ttm_tt_unbind(bo->ttm);
466 ttm_tt_destroy(bo->ttm);
467 bo->ttm = NULL;
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200468 }
469
Thomas Hellstrom40d857b2010-10-19 09:01:00 +0200470 ttm_bo_mem_put(bo, &bo->mem);
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200471
472 atomic_set(&bo->reserved, 0);
Thomas Hellstrom06fba6d2010-10-29 10:46:48 +0200473
474 /*
475 * Make processes trying to reserve really pick it up.
476 */
477 smp_mb__after_atomic_dec();
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200478 wake_up_all(&bo->event_queue);
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200479}
480
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200481static void ttm_bo_cleanup_refs_or_queue(struct ttm_buffer_object *bo)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200482{
483 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200484 struct ttm_bo_global *glob = bo->glob;
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200485 struct ttm_bo_driver *driver;
Thomas Hellstromaa123262010-11-02 13:21:47 +0000486 void *sync_obj = NULL;
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200487 void *sync_obj_arg;
488 int put_count;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200489 int ret;
490
Thomas Hellstrom702adba2010-11-17 12:28:29 +0000491 spin_lock(&bdev->fence_lock);
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200492 (void) ttm_bo_wait(bo, false, false, true);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200493 if (!bo->sync_obj) {
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200494
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200495 spin_lock(&glob->lru_lock);
Thomas Hellstromaaa20732009-12-02 18:33:45 +0100496
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200497 /**
Thomas Hellstrom702adba2010-11-17 12:28:29 +0000498 * Lock inversion between bo:reserve and bdev::fence_lock here,
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200499 * but that's OK, since we're only trylocking.
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200500 */
501
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200502 ret = ttm_bo_reserve_locked(bo, false, true, false, 0);
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200503
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200504 if (unlikely(ret == -EBUSY))
505 goto queue;
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200506
Thomas Hellstrom702adba2010-11-17 12:28:29 +0000507 spin_unlock(&bdev->fence_lock);
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200508 put_count = ttm_bo_del_from_lru(bo);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200509
Thomas Hellstrom40d857b2010-10-19 09:01:00 +0200510 spin_unlock(&glob->lru_lock);
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200511 ttm_bo_cleanup_memtype_use(bo);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200512
Dave Airlied6ea8882010-11-22 13:24:40 +1000513 ttm_bo_list_ref_sub(bo, put_count, true);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200514
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200515 return;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200516 } else {
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200517 spin_lock(&glob->lru_lock);
518 }
519queue:
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200520 driver = bdev->driver;
Thomas Hellstromaa123262010-11-02 13:21:47 +0000521 if (bo->sync_obj)
522 sync_obj = driver->sync_obj_ref(bo->sync_obj);
523 sync_obj_arg = bo->sync_obj_arg;
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200524
525 kref_get(&bo->list_kref);
526 list_add_tail(&bo->ddestroy, &bdev->ddestroy);
527 spin_unlock(&glob->lru_lock);
Thomas Hellstrom702adba2010-11-17 12:28:29 +0000528 spin_unlock(&bdev->fence_lock);
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200529
Thomas Hellstromaa123262010-11-02 13:21:47 +0000530 if (sync_obj) {
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200531 driver->sync_obj_flush(sync_obj, sync_obj_arg);
Thomas Hellstromaa123262010-11-02 13:21:47 +0000532 driver->sync_obj_unref(&sync_obj);
533 }
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200534 schedule_delayed_work(&bdev->wq,
535 ((HZ / 100) < 1) ? 1 : HZ / 100);
536}
537
538/**
539 * function ttm_bo_cleanup_refs
540 * If bo idle, remove from delayed- and lru lists, and unref.
541 * If not idle, do nothing.
542 *
543 * @interruptible Any sleeps should occur interruptibly.
544 * @no_wait_reserve Never wait for reserve. Return -EBUSY instead.
545 * @no_wait_gpu Never wait for gpu. Return -EBUSY instead.
546 */
547
548static int ttm_bo_cleanup_refs(struct ttm_buffer_object *bo,
549 bool interruptible,
550 bool no_wait_reserve,
551 bool no_wait_gpu)
552{
Thomas Hellstrom702adba2010-11-17 12:28:29 +0000553 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200554 struct ttm_bo_global *glob = bo->glob;
555 int put_count;
556 int ret = 0;
557
558retry:
Thomas Hellstrom702adba2010-11-17 12:28:29 +0000559 spin_lock(&bdev->fence_lock);
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200560 ret = ttm_bo_wait(bo, false, interruptible, no_wait_gpu);
Thomas Hellstrom702adba2010-11-17 12:28:29 +0000561 spin_unlock(&bdev->fence_lock);
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200562
563 if (unlikely(ret != 0))
564 return ret;
565
566 spin_lock(&glob->lru_lock);
567 ret = ttm_bo_reserve_locked(bo, interruptible,
568 no_wait_reserve, false, 0);
569
570 if (unlikely(ret != 0) || list_empty(&bo->ddestroy)) {
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200571 spin_unlock(&glob->lru_lock);
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200572 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200573 }
574
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200575 /**
576 * We can re-check for sync object without taking
577 * the bo::lock since setting the sync object requires
578 * also bo::reserved. A busy object at this point may
579 * be caused by another thread recently starting an accelerated
580 * eviction.
581 */
582
583 if (unlikely(bo->sync_obj)) {
584 atomic_set(&bo->reserved, 0);
585 wake_up_all(&bo->event_queue);
586 spin_unlock(&glob->lru_lock);
587 goto retry;
588 }
589
590 put_count = ttm_bo_del_from_lru(bo);
591 list_del_init(&bo->ddestroy);
592 ++put_count;
593
594 spin_unlock(&glob->lru_lock);
595 ttm_bo_cleanup_memtype_use(bo);
596
Dave Airlied6ea8882010-11-22 13:24:40 +1000597 ttm_bo_list_ref_sub(bo, put_count, true);
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200598
599 return 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200600}
601
602/**
603 * Traverse the delayed list, and call ttm_bo_cleanup_refs on all
604 * encountered buffers.
605 */
606
607static int ttm_bo_delayed_delete(struct ttm_bo_device *bdev, bool remove_all)
608{
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200609 struct ttm_bo_global *glob = bdev->glob;
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100610 struct ttm_buffer_object *entry = NULL;
611 int ret = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200612
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200613 spin_lock(&glob->lru_lock);
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100614 if (list_empty(&bdev->ddestroy))
615 goto out_unlock;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200616
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100617 entry = list_first_entry(&bdev->ddestroy,
618 struct ttm_buffer_object, ddestroy);
619 kref_get(&entry->list_kref);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200620
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100621 for (;;) {
622 struct ttm_buffer_object *nentry = NULL;
623
624 if (entry->ddestroy.next != &bdev->ddestroy) {
625 nentry = list_first_entry(&entry->ddestroy,
626 struct ttm_buffer_object, ddestroy);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200627 kref_get(&nentry->list_kref);
628 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200629
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200630 spin_unlock(&glob->lru_lock);
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200631 ret = ttm_bo_cleanup_refs(entry, false, !remove_all,
632 !remove_all);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200633 kref_put(&entry->list_kref, ttm_bo_release_list);
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100634 entry = nentry;
635
636 if (ret || !entry)
637 goto out;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200638
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200639 spin_lock(&glob->lru_lock);
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100640 if (list_empty(&entry->ddestroy))
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200641 break;
642 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200643
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100644out_unlock:
645 spin_unlock(&glob->lru_lock);
646out:
647 if (entry)
648 kref_put(&entry->list_kref, ttm_bo_release_list);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200649 return ret;
650}
651
652static void ttm_bo_delayed_workqueue(struct work_struct *work)
653{
654 struct ttm_bo_device *bdev =
655 container_of(work, struct ttm_bo_device, wq.work);
656
657 if (ttm_bo_delayed_delete(bdev, false)) {
658 schedule_delayed_work(&bdev->wq,
659 ((HZ / 100) < 1) ? 1 : HZ / 100);
660 }
661}
662
663static void ttm_bo_release(struct kref *kref)
664{
665 struct ttm_buffer_object *bo =
666 container_of(kref, struct ttm_buffer_object, kref);
667 struct ttm_bo_device *bdev = bo->bdev;
668
669 if (likely(bo->vm_node != NULL)) {
670 rb_erase(&bo->vm_rb, &bdev->addr_space_rb);
671 drm_mm_put_block(bo->vm_node);
672 bo->vm_node = NULL;
673 }
674 write_unlock(&bdev->vm_lock);
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200675 ttm_bo_cleanup_refs_or_queue(bo);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200676 kref_put(&bo->list_kref, ttm_bo_release_list);
677 write_lock(&bdev->vm_lock);
678}
679
680void ttm_bo_unref(struct ttm_buffer_object **p_bo)
681{
682 struct ttm_buffer_object *bo = *p_bo;
683 struct ttm_bo_device *bdev = bo->bdev;
684
685 *p_bo = NULL;
686 write_lock(&bdev->vm_lock);
687 kref_put(&bo->kref, ttm_bo_release);
688 write_unlock(&bdev->vm_lock);
689}
690EXPORT_SYMBOL(ttm_bo_unref);
691
Matthew Garrett7c5ee532010-04-26 16:00:09 -0400692int ttm_bo_lock_delayed_workqueue(struct ttm_bo_device *bdev)
693{
694 return cancel_delayed_work_sync(&bdev->wq);
695}
696EXPORT_SYMBOL(ttm_bo_lock_delayed_workqueue);
697
698void ttm_bo_unlock_delayed_workqueue(struct ttm_bo_device *bdev, int resched)
699{
700 if (resched)
701 schedule_delayed_work(&bdev->wq,
702 ((HZ / 100) < 1) ? 1 : HZ / 100);
703}
704EXPORT_SYMBOL(ttm_bo_unlock_delayed_workqueue);
705
Jerome Glisseca262a9992009-12-08 15:33:32 +0100706static int ttm_bo_evict(struct ttm_buffer_object *bo, bool interruptible,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000707 bool no_wait_reserve, bool no_wait_gpu)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200708{
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200709 struct ttm_bo_device *bdev = bo->bdev;
710 struct ttm_mem_reg evict_mem;
Jerome Glisseca262a9992009-12-08 15:33:32 +0100711 struct ttm_placement placement;
712 int ret = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200713
Thomas Hellstrom702adba2010-11-17 12:28:29 +0000714 spin_lock(&bdev->fence_lock);
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000715 ret = ttm_bo_wait(bo, false, interruptible, no_wait_gpu);
Thomas Hellstrom702adba2010-11-17 12:28:29 +0000716 spin_unlock(&bdev->fence_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200717
Thomas Hellstrom78ecf092009-06-17 12:29:55 +0200718 if (unlikely(ret != 0)) {
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +0100719 if (ret != -ERESTARTSYS) {
Thomas Hellstrom78ecf092009-06-17 12:29:55 +0200720 printk(KERN_ERR TTM_PFX
721 "Failed to expire sync object before "
722 "buffer eviction.\n");
723 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200724 goto out;
725 }
726
727 BUG_ON(!atomic_read(&bo->reserved));
728
729 evict_mem = bo->mem;
730 evict_mem.mm_node = NULL;
Jerome Glisse82c5da62010-04-09 14:39:23 +0200731 evict_mem.bus.io_reserved = false;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200732
Jerome Glisse7cb7d1d2009-12-09 22:14:27 +0100733 placement.fpfn = 0;
734 placement.lpfn = 0;
735 placement.num_placement = 0;
736 placement.num_busy_placement = 0;
Jerome Glisseca262a9992009-12-08 15:33:32 +0100737 bdev->driver->evict_flags(bo, &placement);
738 ret = ttm_bo_mem_space(bo, &placement, &evict_mem, interruptible,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000739 no_wait_reserve, no_wait_gpu);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200740 if (ret) {
Jerome Glissefb53f862009-12-09 21:55:10 +0100741 if (ret != -ERESTARTSYS) {
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200742 printk(KERN_ERR TTM_PFX
743 "Failed to find memory space for "
744 "buffer 0x%p eviction.\n", bo);
Jerome Glissefb53f862009-12-09 21:55:10 +0100745 ttm_bo_mem_space_debug(bo, &placement);
746 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200747 goto out;
748 }
749
750 ret = ttm_bo_handle_move_mem(bo, &evict_mem, true, interruptible,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000751 no_wait_reserve, no_wait_gpu);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200752 if (ret) {
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +0100753 if (ret != -ERESTARTSYS)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200754 printk(KERN_ERR TTM_PFX "Buffer eviction failed\n");
Ben Skeggs42311ff2010-08-04 12:07:08 +1000755 ttm_bo_mem_put(bo, &evict_mem);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200756 goto out;
757 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200758 bo->evicted = true;
759out:
760 return ret;
761}
762
Jerome Glisseca262a9992009-12-08 15:33:32 +0100763static int ttm_mem_evict_first(struct ttm_bo_device *bdev,
764 uint32_t mem_type,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000765 bool interruptible, bool no_wait_reserve,
766 bool no_wait_gpu)
Jerome Glisseca262a9992009-12-08 15:33:32 +0100767{
768 struct ttm_bo_global *glob = bdev->glob;
769 struct ttm_mem_type_manager *man = &bdev->man[mem_type];
770 struct ttm_buffer_object *bo;
771 int ret, put_count = 0;
772
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100773retry:
Jerome Glisseca262a9992009-12-08 15:33:32 +0100774 spin_lock(&glob->lru_lock);
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100775 if (list_empty(&man->lru)) {
776 spin_unlock(&glob->lru_lock);
777 return -EBUSY;
778 }
779
Jerome Glisseca262a9992009-12-08 15:33:32 +0100780 bo = list_first_entry(&man->lru, struct ttm_buffer_object, lru);
781 kref_get(&bo->list_kref);
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100782
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200783 if (!list_empty(&bo->ddestroy)) {
784 spin_unlock(&glob->lru_lock);
785 ret = ttm_bo_cleanup_refs(bo, interruptible,
786 no_wait_reserve, no_wait_gpu);
787 kref_put(&bo->list_kref, ttm_bo_release_list);
788
789 if (likely(ret == 0 || ret == -ERESTARTSYS))
790 return ret;
791
792 goto retry;
793 }
794
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000795 ret = ttm_bo_reserve_locked(bo, false, no_wait_reserve, false, 0);
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100796
797 if (unlikely(ret == -EBUSY)) {
798 spin_unlock(&glob->lru_lock);
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000799 if (likely(!no_wait_gpu))
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100800 ret = ttm_bo_wait_unreserved(bo, interruptible);
801
802 kref_put(&bo->list_kref, ttm_bo_release_list);
803
804 /**
805 * We *need* to retry after releasing the lru lock.
806 */
807
808 if (unlikely(ret != 0))
809 return ret;
810 goto retry;
811 }
812
813 put_count = ttm_bo_del_from_lru(bo);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100814 spin_unlock(&glob->lru_lock);
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100815
816 BUG_ON(ret != 0);
817
Dave Airlied6ea8882010-11-22 13:24:40 +1000818 ttm_bo_list_ref_sub(bo, put_count, true);
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100819
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000820 ret = ttm_bo_evict(bo, interruptible, no_wait_reserve, no_wait_gpu);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100821 ttm_bo_unreserve(bo);
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100822
Jerome Glisseca262a9992009-12-08 15:33:32 +0100823 kref_put(&bo->list_kref, ttm_bo_release_list);
824 return ret;
825}
826
Ben Skeggs42311ff2010-08-04 12:07:08 +1000827void ttm_bo_mem_put(struct ttm_buffer_object *bo, struct ttm_mem_reg *mem)
828{
Ben Skeggsd961db72010-08-05 10:48:18 +1000829 struct ttm_mem_type_manager *man = &bo->bdev->man[mem->mem_type];
Ben Skeggs42311ff2010-08-04 12:07:08 +1000830
Ben Skeggsd961db72010-08-05 10:48:18 +1000831 if (mem->mm_node)
832 (*man->func->put_node)(man, mem);
Ben Skeggs42311ff2010-08-04 12:07:08 +1000833}
834EXPORT_SYMBOL(ttm_bo_mem_put);
835
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200836/**
837 * Repeatedly evict memory from the LRU for @mem_type until we create enough
838 * space, or we've evicted everything and there isn't enough space.
839 */
Jerome Glisseca262a9992009-12-08 15:33:32 +0100840static int ttm_bo_mem_force_space(struct ttm_buffer_object *bo,
841 uint32_t mem_type,
842 struct ttm_placement *placement,
843 struct ttm_mem_reg *mem,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000844 bool interruptible,
845 bool no_wait_reserve,
846 bool no_wait_gpu)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200847{
Jerome Glisseca262a9992009-12-08 15:33:32 +0100848 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200849 struct ttm_mem_type_manager *man = &bdev->man[mem_type];
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200850 int ret;
851
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200852 do {
Ben Skeggsd961db72010-08-05 10:48:18 +1000853 ret = (*man->func->get_node)(man, bo, placement, mem);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200854 if (unlikely(ret != 0))
855 return ret;
Ben Skeggsd961db72010-08-05 10:48:18 +1000856 if (mem->mm_node)
Jerome Glisseca262a9992009-12-08 15:33:32 +0100857 break;
Jerome Glisseca262a9992009-12-08 15:33:32 +0100858 ret = ttm_mem_evict_first(bdev, mem_type, interruptible,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000859 no_wait_reserve, no_wait_gpu);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100860 if (unlikely(ret != 0))
861 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200862 } while (1);
Ben Skeggsd961db72010-08-05 10:48:18 +1000863 if (mem->mm_node == NULL)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200864 return -ENOMEM;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200865 mem->mem_type = mem_type;
866 return 0;
867}
868
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200869static uint32_t ttm_bo_select_caching(struct ttm_mem_type_manager *man,
870 uint32_t cur_placement,
871 uint32_t proposed_placement)
872{
873 uint32_t caching = proposed_placement & TTM_PL_MASK_CACHING;
874 uint32_t result = proposed_placement & ~TTM_PL_MASK_CACHING;
875
876 /**
877 * Keep current caching if possible.
878 */
879
880 if ((cur_placement & caching) != 0)
881 result |= (cur_placement & caching);
882 else if ((man->default_caching & caching) != 0)
883 result |= man->default_caching;
884 else if ((TTM_PL_FLAG_CACHED & caching) != 0)
885 result |= TTM_PL_FLAG_CACHED;
886 else if ((TTM_PL_FLAG_WC & caching) != 0)
887 result |= TTM_PL_FLAG_WC;
888 else if ((TTM_PL_FLAG_UNCACHED & caching) != 0)
889 result |= TTM_PL_FLAG_UNCACHED;
890
891 return result;
892}
893
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200894static bool ttm_bo_mt_compatible(struct ttm_mem_type_manager *man,
895 bool disallow_fixed,
896 uint32_t mem_type,
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200897 uint32_t proposed_placement,
898 uint32_t *masked_placement)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200899{
900 uint32_t cur_flags = ttm_bo_type_flags(mem_type);
901
902 if ((man->flags & TTM_MEMTYPE_FLAG_FIXED) && disallow_fixed)
903 return false;
904
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200905 if ((cur_flags & proposed_placement & TTM_PL_MASK_MEM) == 0)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200906 return false;
907
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200908 if ((proposed_placement & man->available_caching) == 0)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200909 return false;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200910
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200911 cur_flags |= (proposed_placement & man->available_caching);
912
913 *masked_placement = cur_flags;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200914 return true;
915}
916
917/**
918 * Creates space for memory region @mem according to its type.
919 *
920 * This function first searches for free space in compatible memory types in
921 * the priority order defined by the driver. If free space isn't found, then
922 * ttm_bo_mem_force_space is attempted in priority order to evict and find
923 * space.
924 */
925int ttm_bo_mem_space(struct ttm_buffer_object *bo,
Jerome Glisseca262a9992009-12-08 15:33:32 +0100926 struct ttm_placement *placement,
927 struct ttm_mem_reg *mem,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000928 bool interruptible, bool no_wait_reserve,
929 bool no_wait_gpu)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200930{
931 struct ttm_bo_device *bdev = bo->bdev;
932 struct ttm_mem_type_manager *man;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200933 uint32_t mem_type = TTM_PL_SYSTEM;
934 uint32_t cur_flags = 0;
935 bool type_found = false;
936 bool type_ok = false;
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +0100937 bool has_erestartsys = false;
Jerome Glisseca262a9992009-12-08 15:33:32 +0100938 int i, ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200939
940 mem->mm_node = NULL;
Dave Airlieb6637522009-12-14 14:51:35 +1000941 for (i = 0; i < placement->num_placement; ++i) {
Jerome Glisseca262a9992009-12-08 15:33:32 +0100942 ret = ttm_mem_type_from_flags(placement->placement[i],
943 &mem_type);
944 if (ret)
945 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200946 man = &bdev->man[mem_type];
947
948 type_ok = ttm_bo_mt_compatible(man,
Jerome Glisseca262a9992009-12-08 15:33:32 +0100949 bo->type == ttm_bo_type_user,
950 mem_type,
951 placement->placement[i],
952 &cur_flags);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200953
954 if (!type_ok)
955 continue;
956
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200957 cur_flags = ttm_bo_select_caching(man, bo->mem.placement,
958 cur_flags);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100959 /*
960 * Use the access and other non-mapping-related flag bits from
961 * the memory placement flags to the current flags
962 */
963 ttm_flag_masked(&cur_flags, placement->placement[i],
964 ~TTM_PL_MASK_MEMTYPE);
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200965
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200966 if (mem_type == TTM_PL_SYSTEM)
967 break;
968
969 if (man->has_type && man->use_type) {
970 type_found = true;
Ben Skeggsd961db72010-08-05 10:48:18 +1000971 ret = (*man->func->get_node)(man, bo, placement, mem);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100972 if (unlikely(ret))
973 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200974 }
Ben Skeggsd961db72010-08-05 10:48:18 +1000975 if (mem->mm_node)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200976 break;
977 }
978
Ben Skeggsd961db72010-08-05 10:48:18 +1000979 if ((type_ok && (mem_type == TTM_PL_SYSTEM)) || mem->mm_node) {
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200980 mem->mem_type = mem_type;
981 mem->placement = cur_flags;
982 return 0;
983 }
984
985 if (!type_found)
986 return -EINVAL;
987
Dave Airlieb6637522009-12-14 14:51:35 +1000988 for (i = 0; i < placement->num_busy_placement; ++i) {
989 ret = ttm_mem_type_from_flags(placement->busy_placement[i],
Jerome Glisseca262a9992009-12-08 15:33:32 +0100990 &mem_type);
991 if (ret)
992 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200993 man = &bdev->man[mem_type];
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200994 if (!man->has_type)
995 continue;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200996 if (!ttm_bo_mt_compatible(man,
Jerome Glisseca262a9992009-12-08 15:33:32 +0100997 bo->type == ttm_bo_type_user,
998 mem_type,
Dave Airlieb6637522009-12-14 14:51:35 +1000999 placement->busy_placement[i],
Jerome Glisseca262a9992009-12-08 15:33:32 +01001000 &cur_flags))
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001001 continue;
1002
Thomas Hellstromae3e8122009-06-24 19:57:34 +02001003 cur_flags = ttm_bo_select_caching(man, bo->mem.placement,
1004 cur_flags);
Jerome Glisseca262a9992009-12-08 15:33:32 +01001005 /*
1006 * Use the access and other non-mapping-related flag bits from
1007 * the memory placement flags to the current flags
1008 */
Dave Airlieb6637522009-12-14 14:51:35 +10001009 ttm_flag_masked(&cur_flags, placement->busy_placement[i],
Jerome Glisseca262a9992009-12-08 15:33:32 +01001010 ~TTM_PL_MASK_MEMTYPE);
Thomas Hellstromae3e8122009-06-24 19:57:34 +02001011
Thomas Hellstrom0eaddb22010-01-16 16:05:04 +01001012
1013 if (mem_type == TTM_PL_SYSTEM) {
1014 mem->mem_type = mem_type;
1015 mem->placement = cur_flags;
1016 mem->mm_node = NULL;
1017 return 0;
1018 }
1019
Jerome Glisseca262a9992009-12-08 15:33:32 +01001020 ret = ttm_bo_mem_force_space(bo, mem_type, placement, mem,
Jerome Glisse9d87fa22010-04-07 10:21:19 +00001021 interruptible, no_wait_reserve, no_wait_gpu);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001022 if (ret == 0 && mem->mm_node) {
1023 mem->placement = cur_flags;
1024 return 0;
1025 }
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +01001026 if (ret == -ERESTARTSYS)
1027 has_erestartsys = true;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001028 }
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +01001029 ret = (has_erestartsys) ? -ERESTARTSYS : -ENOMEM;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001030 return ret;
1031}
1032EXPORT_SYMBOL(ttm_bo_mem_space);
1033
1034int ttm_bo_wait_cpu(struct ttm_buffer_object *bo, bool no_wait)
1035{
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001036 if ((atomic_read(&bo->cpu_writers) > 0) && no_wait)
1037 return -EBUSY;
1038
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +01001039 return wait_event_interruptible(bo->event_queue,
1040 atomic_read(&bo->cpu_writers) == 0);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001041}
Ben Skeggsd1ede142009-12-11 15:13:00 +10001042EXPORT_SYMBOL(ttm_bo_wait_cpu);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001043
1044int ttm_bo_move_buffer(struct ttm_buffer_object *bo,
Jerome Glisseca262a9992009-12-08 15:33:32 +01001045 struct ttm_placement *placement,
Jerome Glisse9d87fa22010-04-07 10:21:19 +00001046 bool interruptible, bool no_wait_reserve,
1047 bool no_wait_gpu)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001048{
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001049 int ret = 0;
1050 struct ttm_mem_reg mem;
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001051 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001052
1053 BUG_ON(!atomic_read(&bo->reserved));
1054
1055 /*
1056 * FIXME: It's possible to pipeline buffer moves.
1057 * Have the driver move function wait for idle when necessary,
1058 * instead of doing it here.
1059 */
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001060 spin_lock(&bdev->fence_lock);
Jerome Glisse9d87fa22010-04-07 10:21:19 +00001061 ret = ttm_bo_wait(bo, false, interruptible, no_wait_gpu);
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001062 spin_unlock(&bdev->fence_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001063 if (ret)
1064 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001065 mem.num_pages = bo->num_pages;
1066 mem.size = mem.num_pages << PAGE_SHIFT;
1067 mem.page_alignment = bo->mem.page_alignment;
Jerome Glisse82c5da62010-04-09 14:39:23 +02001068 mem.bus.io_reserved = false;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001069 /*
1070 * Determine where to move the buffer.
1071 */
Jerome Glisse9d87fa22010-04-07 10:21:19 +00001072 ret = ttm_bo_mem_space(bo, placement, &mem, interruptible, no_wait_reserve, no_wait_gpu);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001073 if (ret)
1074 goto out_unlock;
Jerome Glisse9d87fa22010-04-07 10:21:19 +00001075 ret = ttm_bo_handle_move_mem(bo, &mem, false, interruptible, no_wait_reserve, no_wait_gpu);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001076out_unlock:
Ben Skeggsd961db72010-08-05 10:48:18 +10001077 if (ret && mem.mm_node)
1078 ttm_bo_mem_put(bo, &mem);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001079 return ret;
1080}
1081
Jerome Glisseca262a9992009-12-08 15:33:32 +01001082static int ttm_bo_mem_compat(struct ttm_placement *placement,
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001083 struct ttm_mem_reg *mem)
1084{
Jerome Glisseca262a9992009-12-08 15:33:32 +01001085 int i;
Thomas Hellstrome22238e2010-02-12 00:18:00 +01001086
Ben Skeggsd961db72010-08-05 10:48:18 +10001087 if (mem->mm_node && placement->lpfn != 0 &&
1088 (mem->start < placement->fpfn ||
1089 mem->start + mem->num_pages > placement->lpfn))
Thomas Hellstrome22238e2010-02-12 00:18:00 +01001090 return -1;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001091
Jerome Glisseca262a9992009-12-08 15:33:32 +01001092 for (i = 0; i < placement->num_placement; i++) {
1093 if ((placement->placement[i] & mem->placement &
1094 TTM_PL_MASK_CACHING) &&
1095 (placement->placement[i] & mem->placement &
1096 TTM_PL_MASK_MEM))
1097 return i;
1098 }
1099 return -1;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001100}
1101
Jerome Glisse09855ac2009-12-10 17:16:27 +01001102int ttm_bo_validate(struct ttm_buffer_object *bo,
1103 struct ttm_placement *placement,
Jerome Glisse9d87fa22010-04-07 10:21:19 +00001104 bool interruptible, bool no_wait_reserve,
1105 bool no_wait_gpu)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001106{
1107 int ret;
1108
1109 BUG_ON(!atomic_read(&bo->reserved));
Jerome Glisseca262a9992009-12-08 15:33:32 +01001110 /* Check that range is valid */
1111 if (placement->lpfn || placement->fpfn)
1112 if (placement->fpfn > placement->lpfn ||
1113 (placement->lpfn - placement->fpfn) < bo->num_pages)
1114 return -EINVAL;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001115 /*
1116 * Check whether we need to move buffer.
1117 */
Jerome Glisseca262a9992009-12-08 15:33:32 +01001118 ret = ttm_bo_mem_compat(placement, &bo->mem);
1119 if (ret < 0) {
Jerome Glisse9d87fa22010-04-07 10:21:19 +00001120 ret = ttm_bo_move_buffer(bo, placement, interruptible, no_wait_reserve, no_wait_gpu);
Jerome Glisseca262a9992009-12-08 15:33:32 +01001121 if (ret)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001122 return ret;
Jerome Glisseca262a9992009-12-08 15:33:32 +01001123 } else {
1124 /*
1125 * Use the access and other non-mapping-related flag bits from
1126 * the compatible memory placement flags to the active flags
1127 */
1128 ttm_flag_masked(&bo->mem.placement, placement->placement[ret],
1129 ~TTM_PL_MASK_MEMTYPE);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001130 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001131 /*
1132 * We might need to add a TTM.
1133 */
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001134 if (bo->mem.mem_type == TTM_PL_SYSTEM && bo->ttm == NULL) {
1135 ret = ttm_bo_add_ttm(bo, true);
1136 if (ret)
1137 return ret;
1138 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001139 return 0;
1140}
Jerome Glisse09855ac2009-12-10 17:16:27 +01001141EXPORT_SYMBOL(ttm_bo_validate);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001142
Jerome Glisse09855ac2009-12-10 17:16:27 +01001143int ttm_bo_check_placement(struct ttm_buffer_object *bo,
1144 struct ttm_placement *placement)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001145{
Thomas Hellstrom29e190e2010-11-02 13:21:48 +00001146 BUG_ON((placement->fpfn || placement->lpfn) &&
1147 (bo->mem.num_pages > (placement->lpfn - placement->fpfn)));
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001148
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001149 return 0;
1150}
1151
Jerome Glisse09855ac2009-12-10 17:16:27 +01001152int ttm_bo_init(struct ttm_bo_device *bdev,
1153 struct ttm_buffer_object *bo,
1154 unsigned long size,
1155 enum ttm_bo_type type,
1156 struct ttm_placement *placement,
1157 uint32_t page_alignment,
1158 unsigned long buffer_start,
1159 bool interruptible,
1160 struct file *persistant_swap_storage,
1161 size_t acc_size,
1162 void (*destroy) (struct ttm_buffer_object *))
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001163{
Jerome Glisse09855ac2009-12-10 17:16:27 +01001164 int ret = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001165 unsigned long num_pages;
1166
1167 size += buffer_start & ~PAGE_MASK;
1168 num_pages = (size + PAGE_SIZE - 1) >> PAGE_SHIFT;
1169 if (num_pages == 0) {
1170 printk(KERN_ERR TTM_PFX "Illegal buffer object size.\n");
Thomas Hellstrom7dfbbdc2010-11-09 21:31:44 +01001171 if (destroy)
1172 (*destroy)(bo);
1173 else
1174 kfree(bo);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001175 return -EINVAL;
1176 }
1177 bo->destroy = destroy;
1178
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001179 kref_init(&bo->kref);
1180 kref_init(&bo->list_kref);
1181 atomic_set(&bo->cpu_writers, 0);
1182 atomic_set(&bo->reserved, 1);
1183 init_waitqueue_head(&bo->event_queue);
1184 INIT_LIST_HEAD(&bo->lru);
1185 INIT_LIST_HEAD(&bo->ddestroy);
1186 INIT_LIST_HEAD(&bo->swap);
1187 bo->bdev = bdev;
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001188 bo->glob = bdev->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001189 bo->type = type;
1190 bo->num_pages = num_pages;
Jerome Glisseeb6d2c32009-12-10 16:15:52 +01001191 bo->mem.size = num_pages << PAGE_SHIFT;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001192 bo->mem.mem_type = TTM_PL_SYSTEM;
1193 bo->mem.num_pages = bo->num_pages;
1194 bo->mem.mm_node = NULL;
1195 bo->mem.page_alignment = page_alignment;
Jerome Glisse82c5da62010-04-09 14:39:23 +02001196 bo->mem.bus.io_reserved = false;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001197 bo->buffer_start = buffer_start & PAGE_MASK;
1198 bo->priv_flags = 0;
1199 bo->mem.placement = (TTM_PL_FLAG_SYSTEM | TTM_PL_FLAG_CACHED);
1200 bo->seq_valid = false;
1201 bo->persistant_swap_storage = persistant_swap_storage;
1202 bo->acc_size = acc_size;
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001203 atomic_inc(&bo->glob->bo_count);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001204
Jerome Glisse09855ac2009-12-10 17:16:27 +01001205 ret = ttm_bo_check_placement(bo, placement);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001206 if (unlikely(ret != 0))
1207 goto out_err;
1208
1209 /*
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001210 * For ttm_bo_type_device buffers, allocate
1211 * address space from the device.
1212 */
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001213 if (bo->type == ttm_bo_type_device) {
1214 ret = ttm_bo_setup_vm(bo);
1215 if (ret)
1216 goto out_err;
1217 }
1218
Jerome Glisse9d87fa22010-04-07 10:21:19 +00001219 ret = ttm_bo_validate(bo, placement, interruptible, false, false);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001220 if (ret)
1221 goto out_err;
1222
1223 ttm_bo_unreserve(bo);
1224 return 0;
1225
1226out_err:
1227 ttm_bo_unreserve(bo);
1228 ttm_bo_unref(&bo);
1229
1230 return ret;
1231}
Jerome Glisse09855ac2009-12-10 17:16:27 +01001232EXPORT_SYMBOL(ttm_bo_init);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001233
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001234static inline size_t ttm_bo_size(struct ttm_bo_global *glob,
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001235 unsigned long num_pages)
1236{
1237 size_t page_array_size = (num_pages * sizeof(void *) + PAGE_SIZE - 1) &
1238 PAGE_MASK;
1239
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001240 return glob->ttm_bo_size + 2 * page_array_size;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001241}
1242
Jerome Glisse09855ac2009-12-10 17:16:27 +01001243int ttm_bo_create(struct ttm_bo_device *bdev,
1244 unsigned long size,
1245 enum ttm_bo_type type,
1246 struct ttm_placement *placement,
1247 uint32_t page_alignment,
1248 unsigned long buffer_start,
1249 bool interruptible,
1250 struct file *persistant_swap_storage,
1251 struct ttm_buffer_object **p_bo)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001252{
1253 struct ttm_buffer_object *bo;
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001254 struct ttm_mem_global *mem_glob = bdev->glob->mem_glob;
Jerome Glisseca262a9992009-12-08 15:33:32 +01001255 int ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001256
1257 size_t acc_size =
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001258 ttm_bo_size(bdev->glob, (size + PAGE_SIZE - 1) >> PAGE_SHIFT);
Thomas Hellstrom5fd9cba2009-08-17 16:28:39 +02001259 ret = ttm_mem_global_alloc(mem_glob, acc_size, false, false);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001260 if (unlikely(ret != 0))
1261 return ret;
1262
1263 bo = kzalloc(sizeof(*bo), GFP_KERNEL);
1264
1265 if (unlikely(bo == NULL)) {
Thomas Hellstrom5fd9cba2009-08-17 16:28:39 +02001266 ttm_mem_global_free(mem_glob, acc_size);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001267 return -ENOMEM;
1268 }
1269
Jerome Glisse09855ac2009-12-10 17:16:27 +01001270 ret = ttm_bo_init(bdev, bo, size, type, placement, page_alignment,
1271 buffer_start, interruptible,
1272 persistant_swap_storage, acc_size, NULL);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001273 if (likely(ret == 0))
1274 *p_bo = bo;
1275
1276 return ret;
1277}
1278
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001279static int ttm_bo_force_list_clean(struct ttm_bo_device *bdev,
Jerome Glisseca262a9992009-12-08 15:33:32 +01001280 unsigned mem_type, bool allow_errors)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001281{
Jerome Glisseca262a9992009-12-08 15:33:32 +01001282 struct ttm_mem_type_manager *man = &bdev->man[mem_type];
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001283 struct ttm_bo_global *glob = bdev->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001284 int ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001285
1286 /*
1287 * Can't use standard list traversal since we're unlocking.
1288 */
1289
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001290 spin_lock(&glob->lru_lock);
Jerome Glisseca262a9992009-12-08 15:33:32 +01001291 while (!list_empty(&man->lru)) {
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001292 spin_unlock(&glob->lru_lock);
Jerome Glisse9d87fa22010-04-07 10:21:19 +00001293 ret = ttm_mem_evict_first(bdev, mem_type, false, false, false);
Jerome Glisseca262a9992009-12-08 15:33:32 +01001294 if (ret) {
1295 if (allow_errors) {
1296 return ret;
1297 } else {
1298 printk(KERN_ERR TTM_PFX
1299 "Cleanup eviction failed\n");
1300 }
1301 }
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001302 spin_lock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001303 }
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001304 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001305 return 0;
1306}
1307
1308int ttm_bo_clean_mm(struct ttm_bo_device *bdev, unsigned mem_type)
1309{
Roel Kluinc96e7c72009-08-03 14:22:53 +02001310 struct ttm_mem_type_manager *man;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001311 int ret = -EINVAL;
1312
1313 if (mem_type >= TTM_NUM_MEM_TYPES) {
1314 printk(KERN_ERR TTM_PFX "Illegal memory type %d\n", mem_type);
1315 return ret;
1316 }
Roel Kluinc96e7c72009-08-03 14:22:53 +02001317 man = &bdev->man[mem_type];
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001318
1319 if (!man->has_type) {
1320 printk(KERN_ERR TTM_PFX "Trying to take down uninitialized "
1321 "memory manager type %u\n", mem_type);
1322 return ret;
1323 }
1324
1325 man->use_type = false;
1326 man->has_type = false;
1327
1328 ret = 0;
1329 if (mem_type > 0) {
Jerome Glisseca262a9992009-12-08 15:33:32 +01001330 ttm_bo_force_list_clean(bdev, mem_type, false);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001331
Ben Skeggsd961db72010-08-05 10:48:18 +10001332 ret = (*man->func->takedown)(man);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001333 }
1334
1335 return ret;
1336}
1337EXPORT_SYMBOL(ttm_bo_clean_mm);
1338
1339int ttm_bo_evict_mm(struct ttm_bo_device *bdev, unsigned mem_type)
1340{
1341 struct ttm_mem_type_manager *man = &bdev->man[mem_type];
1342
1343 if (mem_type == 0 || mem_type >= TTM_NUM_MEM_TYPES) {
1344 printk(KERN_ERR TTM_PFX
1345 "Illegal memory manager memory type %u.\n",
1346 mem_type);
1347 return -EINVAL;
1348 }
1349
1350 if (!man->has_type) {
1351 printk(KERN_ERR TTM_PFX
1352 "Memory type %u has not been initialized.\n",
1353 mem_type);
1354 return 0;
1355 }
1356
Jerome Glisseca262a9992009-12-08 15:33:32 +01001357 return ttm_bo_force_list_clean(bdev, mem_type, true);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001358}
1359EXPORT_SYMBOL(ttm_bo_evict_mm);
1360
1361int ttm_bo_init_mm(struct ttm_bo_device *bdev, unsigned type,
Jerome Glisseca262a9992009-12-08 15:33:32 +01001362 unsigned long p_size)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001363{
1364 int ret = -EINVAL;
1365 struct ttm_mem_type_manager *man;
1366
Thomas Hellstromdbc4a5b2010-10-29 10:46:47 +02001367 BUG_ON(type >= TTM_NUM_MEM_TYPES);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001368 man = &bdev->man[type];
Thomas Hellstromdbc4a5b2010-10-29 10:46:47 +02001369 BUG_ON(man->has_type);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001370
1371 ret = bdev->driver->init_mem_type(bdev, type, man);
1372 if (ret)
1373 return ret;
Ben Skeggsd961db72010-08-05 10:48:18 +10001374 man->bdev = bdev;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001375
1376 ret = 0;
1377 if (type != TTM_PL_SYSTEM) {
Ben Skeggsd961db72010-08-05 10:48:18 +10001378 ret = (*man->func->init)(man, p_size);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001379 if (ret)
1380 return ret;
1381 }
1382 man->has_type = true;
1383 man->use_type = true;
1384 man->size = p_size;
1385
1386 INIT_LIST_HEAD(&man->lru);
1387
1388 return 0;
1389}
1390EXPORT_SYMBOL(ttm_bo_init_mm);
1391
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001392static void ttm_bo_global_kobj_release(struct kobject *kobj)
1393{
1394 struct ttm_bo_global *glob =
1395 container_of(kobj, struct ttm_bo_global, kobj);
1396
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001397 ttm_mem_unregister_shrink(glob->mem_glob, &glob->shrink);
1398 __free_page(glob->dummy_read_page);
1399 kfree(glob);
1400}
1401
Dave Airlieba4420c2010-03-09 10:56:52 +10001402void ttm_bo_global_release(struct drm_global_reference *ref)
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001403{
1404 struct ttm_bo_global *glob = ref->object;
1405
1406 kobject_del(&glob->kobj);
1407 kobject_put(&glob->kobj);
1408}
1409EXPORT_SYMBOL(ttm_bo_global_release);
1410
Dave Airlieba4420c2010-03-09 10:56:52 +10001411int ttm_bo_global_init(struct drm_global_reference *ref)
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001412{
1413 struct ttm_bo_global_ref *bo_ref =
1414 container_of(ref, struct ttm_bo_global_ref, ref);
1415 struct ttm_bo_global *glob = ref->object;
1416 int ret;
1417
1418 mutex_init(&glob->device_list_mutex);
1419 spin_lock_init(&glob->lru_lock);
1420 glob->mem_glob = bo_ref->mem_glob;
1421 glob->dummy_read_page = alloc_page(__GFP_ZERO | GFP_DMA32);
1422
1423 if (unlikely(glob->dummy_read_page == NULL)) {
1424 ret = -ENOMEM;
1425 goto out_no_drp;
1426 }
1427
1428 INIT_LIST_HEAD(&glob->swap_lru);
1429 INIT_LIST_HEAD(&glob->device_list);
1430
1431 ttm_mem_init_shrink(&glob->shrink, ttm_bo_swapout);
1432 ret = ttm_mem_register_shrink(glob->mem_glob, &glob->shrink);
1433 if (unlikely(ret != 0)) {
1434 printk(KERN_ERR TTM_PFX
1435 "Could not register buffer object swapout.\n");
1436 goto out_no_shrink;
1437 }
1438
1439 glob->ttm_bo_extra_size =
1440 ttm_round_pot(sizeof(struct ttm_tt)) +
1441 ttm_round_pot(sizeof(struct ttm_backend));
1442
1443 glob->ttm_bo_size = glob->ttm_bo_extra_size +
1444 ttm_round_pot(sizeof(struct ttm_buffer_object));
1445
1446 atomic_set(&glob->bo_count, 0);
1447
Robert P. J. Dayb642ed02010-03-13 10:36:32 +00001448 ret = kobject_init_and_add(
1449 &glob->kobj, &ttm_bo_glob_kobj_type, ttm_get_kobj(), "buffer_objects");
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001450 if (unlikely(ret != 0))
1451 kobject_put(&glob->kobj);
1452 return ret;
1453out_no_shrink:
1454 __free_page(glob->dummy_read_page);
1455out_no_drp:
1456 kfree(glob);
1457 return ret;
1458}
1459EXPORT_SYMBOL(ttm_bo_global_init);
1460
1461
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001462int ttm_bo_device_release(struct ttm_bo_device *bdev)
1463{
1464 int ret = 0;
1465 unsigned i = TTM_NUM_MEM_TYPES;
1466 struct ttm_mem_type_manager *man;
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001467 struct ttm_bo_global *glob = bdev->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001468
1469 while (i--) {
1470 man = &bdev->man[i];
1471 if (man->has_type) {
1472 man->use_type = false;
1473 if ((i != TTM_PL_SYSTEM) && ttm_bo_clean_mm(bdev, i)) {
1474 ret = -EBUSY;
1475 printk(KERN_ERR TTM_PFX
1476 "DRM memory manager type %d "
1477 "is not clean.\n", i);
1478 }
1479 man->has_type = false;
1480 }
1481 }
1482
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001483 mutex_lock(&glob->device_list_mutex);
1484 list_del(&bdev->device_list);
1485 mutex_unlock(&glob->device_list_mutex);
1486
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001487 if (!cancel_delayed_work(&bdev->wq))
1488 flush_scheduled_work();
1489
1490 while (ttm_bo_delayed_delete(bdev, true))
1491 ;
1492
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001493 spin_lock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001494 if (list_empty(&bdev->ddestroy))
1495 TTM_DEBUG("Delayed destroy list was clean\n");
1496
1497 if (list_empty(&bdev->man[0].lru))
1498 TTM_DEBUG("Swap list was clean\n");
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001499 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001500
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001501 BUG_ON(!drm_mm_clean(&bdev->addr_space_mm));
1502 write_lock(&bdev->vm_lock);
1503 drm_mm_takedown(&bdev->addr_space_mm);
1504 write_unlock(&bdev->vm_lock);
1505
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001506 return ret;
1507}
1508EXPORT_SYMBOL(ttm_bo_device_release);
1509
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001510int ttm_bo_device_init(struct ttm_bo_device *bdev,
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001511 struct ttm_bo_global *glob,
1512 struct ttm_bo_driver *driver,
Dave Airlie51c8b402009-08-20 13:38:04 +10001513 uint64_t file_page_offset,
Dave Airliead49f502009-07-10 22:36:26 +10001514 bool need_dma32)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001515{
1516 int ret = -EINVAL;
1517
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001518 rwlock_init(&bdev->vm_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001519 bdev->driver = driver;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001520
1521 memset(bdev->man, 0, sizeof(bdev->man));
1522
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001523 /*
1524 * Initialize the system memory buffer type.
1525 * Other types need to be driver / IOCTL initialized.
1526 */
Jerome Glisseca262a9992009-12-08 15:33:32 +01001527 ret = ttm_bo_init_mm(bdev, TTM_PL_SYSTEM, 0);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001528 if (unlikely(ret != 0))
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001529 goto out_no_sys;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001530
1531 bdev->addr_space_rb = RB_ROOT;
1532 ret = drm_mm_init(&bdev->addr_space_mm, file_page_offset, 0x10000000);
1533 if (unlikely(ret != 0))
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001534 goto out_no_addr_mm;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001535
1536 INIT_DELAYED_WORK(&bdev->wq, ttm_bo_delayed_workqueue);
1537 bdev->nice_mode = true;
1538 INIT_LIST_HEAD(&bdev->ddestroy);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001539 bdev->dev_mapping = NULL;
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001540 bdev->glob = glob;
Dave Airliead49f502009-07-10 22:36:26 +10001541 bdev->need_dma32 = need_dma32;
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001542 spin_lock_init(&bdev->fence_lock);
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001543 mutex_lock(&glob->device_list_mutex);
1544 list_add_tail(&bdev->device_list, &glob->device_list);
1545 mutex_unlock(&glob->device_list_mutex);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001546
1547 return 0;
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001548out_no_addr_mm:
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001549 ttm_bo_clean_mm(bdev, 0);
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001550out_no_sys:
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001551 return ret;
1552}
1553EXPORT_SYMBOL(ttm_bo_device_init);
1554
1555/*
1556 * buffer object vm functions.
1557 */
1558
1559bool ttm_mem_reg_is_pci(struct ttm_bo_device *bdev, struct ttm_mem_reg *mem)
1560{
1561 struct ttm_mem_type_manager *man = &bdev->man[mem->mem_type];
1562
1563 if (!(man->flags & TTM_MEMTYPE_FLAG_FIXED)) {
1564 if (mem->mem_type == TTM_PL_SYSTEM)
1565 return false;
1566
1567 if (man->flags & TTM_MEMTYPE_FLAG_CMA)
1568 return false;
1569
1570 if (mem->placement & TTM_PL_FLAG_CACHED)
1571 return false;
1572 }
1573 return true;
1574}
1575
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001576void ttm_bo_unmap_virtual(struct ttm_buffer_object *bo)
1577{
1578 struct ttm_bo_device *bdev = bo->bdev;
1579 loff_t offset = (loff_t) bo->addr_space_offset;
1580 loff_t holelen = ((loff_t) bo->mem.num_pages) << PAGE_SHIFT;
1581
1582 if (!bdev->dev_mapping)
1583 return;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001584 unmap_mapping_range(bdev->dev_mapping, offset, holelen, 1);
Jerome Glisse82c5da62010-04-09 14:39:23 +02001585 ttm_mem_io_free(bdev, &bo->mem);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001586}
Dave Airliee024e112009-06-24 09:48:08 +10001587EXPORT_SYMBOL(ttm_bo_unmap_virtual);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001588
1589static void ttm_bo_vm_insert_rb(struct ttm_buffer_object *bo)
1590{
1591 struct ttm_bo_device *bdev = bo->bdev;
1592 struct rb_node **cur = &bdev->addr_space_rb.rb_node;
1593 struct rb_node *parent = NULL;
1594 struct ttm_buffer_object *cur_bo;
1595 unsigned long offset = bo->vm_node->start;
1596 unsigned long cur_offset;
1597
1598 while (*cur) {
1599 parent = *cur;
1600 cur_bo = rb_entry(parent, struct ttm_buffer_object, vm_rb);
1601 cur_offset = cur_bo->vm_node->start;
1602 if (offset < cur_offset)
1603 cur = &parent->rb_left;
1604 else if (offset > cur_offset)
1605 cur = &parent->rb_right;
1606 else
1607 BUG();
1608 }
1609
1610 rb_link_node(&bo->vm_rb, parent, cur);
1611 rb_insert_color(&bo->vm_rb, &bdev->addr_space_rb);
1612}
1613
1614/**
1615 * ttm_bo_setup_vm:
1616 *
1617 * @bo: the buffer to allocate address space for
1618 *
1619 * Allocate address space in the drm device so that applications
1620 * can mmap the buffer and access the contents. This only
1621 * applies to ttm_bo_type_device objects as others are not
1622 * placed in the drm device address space.
1623 */
1624
1625static int ttm_bo_setup_vm(struct ttm_buffer_object *bo)
1626{
1627 struct ttm_bo_device *bdev = bo->bdev;
1628 int ret;
1629
1630retry_pre_get:
1631 ret = drm_mm_pre_get(&bdev->addr_space_mm);
1632 if (unlikely(ret != 0))
1633 return ret;
1634
1635 write_lock(&bdev->vm_lock);
1636 bo->vm_node = drm_mm_search_free(&bdev->addr_space_mm,
1637 bo->mem.num_pages, 0, 0);
1638
1639 if (unlikely(bo->vm_node == NULL)) {
1640 ret = -ENOMEM;
1641 goto out_unlock;
1642 }
1643
1644 bo->vm_node = drm_mm_get_block_atomic(bo->vm_node,
1645 bo->mem.num_pages, 0);
1646
1647 if (unlikely(bo->vm_node == NULL)) {
1648 write_unlock(&bdev->vm_lock);
1649 goto retry_pre_get;
1650 }
1651
1652 ttm_bo_vm_insert_rb(bo);
1653 write_unlock(&bdev->vm_lock);
1654 bo->addr_space_offset = ((uint64_t) bo->vm_node->start) << PAGE_SHIFT;
1655
1656 return 0;
1657out_unlock:
1658 write_unlock(&bdev->vm_lock);
1659 return ret;
1660}
1661
1662int ttm_bo_wait(struct ttm_buffer_object *bo,
1663 bool lazy, bool interruptible, bool no_wait)
1664{
1665 struct ttm_bo_driver *driver = bo->bdev->driver;
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001666 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001667 void *sync_obj;
1668 void *sync_obj_arg;
1669 int ret = 0;
1670
1671 if (likely(bo->sync_obj == NULL))
1672 return 0;
1673
1674 while (bo->sync_obj) {
1675
1676 if (driver->sync_obj_signaled(bo->sync_obj, bo->sync_obj_arg)) {
1677 void *tmp_obj = bo->sync_obj;
1678 bo->sync_obj = NULL;
1679 clear_bit(TTM_BO_PRIV_FLAG_MOVING, &bo->priv_flags);
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001680 spin_unlock(&bdev->fence_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001681 driver->sync_obj_unref(&tmp_obj);
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001682 spin_lock(&bdev->fence_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001683 continue;
1684 }
1685
1686 if (no_wait)
1687 return -EBUSY;
1688
1689 sync_obj = driver->sync_obj_ref(bo->sync_obj);
1690 sync_obj_arg = bo->sync_obj_arg;
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001691 spin_unlock(&bdev->fence_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001692 ret = driver->sync_obj_wait(sync_obj, sync_obj_arg,
1693 lazy, interruptible);
1694 if (unlikely(ret != 0)) {
1695 driver->sync_obj_unref(&sync_obj);
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001696 spin_lock(&bdev->fence_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001697 return ret;
1698 }
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001699 spin_lock(&bdev->fence_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001700 if (likely(bo->sync_obj == sync_obj &&
1701 bo->sync_obj_arg == sync_obj_arg)) {
1702 void *tmp_obj = bo->sync_obj;
1703 bo->sync_obj = NULL;
1704 clear_bit(TTM_BO_PRIV_FLAG_MOVING,
1705 &bo->priv_flags);
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001706 spin_unlock(&bdev->fence_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001707 driver->sync_obj_unref(&sync_obj);
1708 driver->sync_obj_unref(&tmp_obj);
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001709 spin_lock(&bdev->fence_lock);
Thomas Hellstromfee280d2009-08-03 12:39:06 +02001710 } else {
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001711 spin_unlock(&bdev->fence_lock);
Thomas Hellstromfee280d2009-08-03 12:39:06 +02001712 driver->sync_obj_unref(&sync_obj);
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001713 spin_lock(&bdev->fence_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001714 }
1715 }
1716 return 0;
1717}
1718EXPORT_SYMBOL(ttm_bo_wait);
1719
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001720int ttm_bo_synccpu_write_grab(struct ttm_buffer_object *bo, bool no_wait)
1721{
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001722 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001723 int ret = 0;
1724
1725 /*
Thomas Hellstrom8cfe92d2010-04-28 11:33:25 +02001726 * Using ttm_bo_reserve makes sure the lru lists are updated.
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001727 */
1728
1729 ret = ttm_bo_reserve(bo, true, no_wait, false, 0);
1730 if (unlikely(ret != 0))
1731 return ret;
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001732 spin_lock(&bdev->fence_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001733 ret = ttm_bo_wait(bo, false, true, no_wait);
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001734 spin_unlock(&bdev->fence_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001735 if (likely(ret == 0))
1736 atomic_inc(&bo->cpu_writers);
1737 ttm_bo_unreserve(bo);
1738 return ret;
1739}
Ben Skeggsd1ede142009-12-11 15:13:00 +10001740EXPORT_SYMBOL(ttm_bo_synccpu_write_grab);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001741
1742void ttm_bo_synccpu_write_release(struct ttm_buffer_object *bo)
1743{
1744 if (atomic_dec_and_test(&bo->cpu_writers))
1745 wake_up_all(&bo->event_queue);
1746}
Ben Skeggsd1ede142009-12-11 15:13:00 +10001747EXPORT_SYMBOL(ttm_bo_synccpu_write_release);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001748
1749/**
1750 * A buffer object shrink method that tries to swap out the first
1751 * buffer object on the bo_global::swap_lru list.
1752 */
1753
1754static int ttm_bo_swapout(struct ttm_mem_shrink *shrink)
1755{
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001756 struct ttm_bo_global *glob =
1757 container_of(shrink, struct ttm_bo_global, shrink);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001758 struct ttm_buffer_object *bo;
1759 int ret = -EBUSY;
1760 int put_count;
1761 uint32_t swap_placement = (TTM_PL_FLAG_CACHED | TTM_PL_FLAG_SYSTEM);
1762
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001763 spin_lock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001764 while (ret == -EBUSY) {
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001765 if (unlikely(list_empty(&glob->swap_lru))) {
1766 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001767 return -EBUSY;
1768 }
1769
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001770 bo = list_first_entry(&glob->swap_lru,
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001771 struct ttm_buffer_object, swap);
1772 kref_get(&bo->list_kref);
1773
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +02001774 if (!list_empty(&bo->ddestroy)) {
1775 spin_unlock(&glob->lru_lock);
1776 (void) ttm_bo_cleanup_refs(bo, false, false, false);
1777 kref_put(&bo->list_kref, ttm_bo_release_list);
1778 continue;
1779 }
1780
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001781 /**
1782 * Reserve buffer. Since we unlock while sleeping, we need
1783 * to re-check that nobody removed us from the swap-list while
1784 * we slept.
1785 */
1786
1787 ret = ttm_bo_reserve_locked(bo, false, true, false, 0);
1788 if (unlikely(ret == -EBUSY)) {
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001789 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001790 ttm_bo_wait_unreserved(bo, false);
1791 kref_put(&bo->list_kref, ttm_bo_release_list);
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001792 spin_lock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001793 }
1794 }
1795
1796 BUG_ON(ret != 0);
1797 put_count = ttm_bo_del_from_lru(bo);
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001798 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001799
Dave Airlied6ea8882010-11-22 13:24:40 +10001800 ttm_bo_list_ref_sub(bo, put_count, true);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001801
1802 /**
1803 * Wait for GPU, then move to system cached.
1804 */
1805
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001806 spin_lock(&bo->bdev->fence_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001807 ret = ttm_bo_wait(bo, false, false, false);
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001808 spin_unlock(&bo->bdev->fence_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001809
1810 if (unlikely(ret != 0))
1811 goto out;
1812
1813 if ((bo->mem.placement & swap_placement) != swap_placement) {
1814 struct ttm_mem_reg evict_mem;
1815
1816 evict_mem = bo->mem;
1817 evict_mem.mm_node = NULL;
1818 evict_mem.placement = TTM_PL_FLAG_SYSTEM | TTM_PL_FLAG_CACHED;
1819 evict_mem.mem_type = TTM_PL_SYSTEM;
1820
1821 ret = ttm_bo_handle_move_mem(bo, &evict_mem, true,
Jerome Glisse9d87fa22010-04-07 10:21:19 +00001822 false, false, false);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001823 if (unlikely(ret != 0))
1824 goto out;
1825 }
1826
1827 ttm_bo_unmap_virtual(bo);
1828
1829 /**
1830 * Swap out. Buffer will be swapped in again as soon as
1831 * anyone tries to access a ttm page.
1832 */
1833
Thomas Hellstrom3f09ea42010-01-13 22:28:40 +01001834 if (bo->bdev->driver->swap_notify)
1835 bo->bdev->driver->swap_notify(bo);
1836
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001837 ret = ttm_tt_swapout(bo->ttm, bo->persistant_swap_storage);
1838out:
1839
1840 /**
1841 *
1842 * Unreserve without putting on LRU to avoid swapping out an
1843 * already swapped buffer.
1844 */
1845
1846 atomic_set(&bo->reserved, 0);
1847 wake_up_all(&bo->event_queue);
1848 kref_put(&bo->list_kref, ttm_bo_release_list);
1849 return ret;
1850}
1851
1852void ttm_bo_swapout_all(struct ttm_bo_device *bdev)
1853{
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001854 while (ttm_bo_swapout(&bdev->glob->shrink) == 0)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001855 ;
1856}
Thomas Hellstrome99e1e72010-01-13 22:28:42 +01001857EXPORT_SYMBOL(ttm_bo_swapout_all);