blob: a9151337d5b916dfd5126d5a81b83c1e363448f8 [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
Joe Perches25d04792012-03-16 21:43:50 -070031#define pr_fmt(fmt) "[TTM] " fmt
32
David Howells760285e2012-10-02 18:01:07 +010033#include <drm/ttm/ttm_module.h>
34#include <drm/ttm/ttm_bo_driver.h>
35#include <drm/ttm/ttm_placement.h>
Thomas Hellstromba4e7d92009-06-10 15:20:19 +020036#include <linux/jiffies.h>
37#include <linux/slab.h>
38#include <linux/sched.h>
39#include <linux/mm.h>
40#include <linux/file.h>
41#include <linux/module.h>
Arun Sharma600634972011-07-26 16:09:06 -070042#include <linux/atomic.h>
Thomas Hellstromba4e7d92009-06-10 15:20:19 +020043
44#define TTM_ASSERT_LOCKED(param)
45#define TTM_DEBUG(fmt, arg...)
46#define TTM_BO_HASH_ORDER 13
47
48static int ttm_bo_setup_vm(struct ttm_buffer_object *bo);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +020049static int ttm_bo_swapout(struct ttm_mem_shrink *shrink);
Thomas Hellstroma987fca2009-08-18 16:51:56 +020050static void ttm_bo_global_kobj_release(struct kobject *kobj);
51
52static struct attribute ttm_bo_count = {
53 .name = "bo_count",
54 .mode = S_IRUGO
55};
56
Jerome Glissefb53f862009-12-09 21:55:10 +010057static inline int ttm_mem_type_from_flags(uint32_t flags, uint32_t *mem_type)
58{
59 int i;
60
61 for (i = 0; i <= TTM_PL_PRIV5; i++)
62 if (flags & (1 << i)) {
63 *mem_type = i;
64 return 0;
65 }
66 return -EINVAL;
67}
68
Jerome Glisse5012f502009-12-10 18:07:26 +010069static void ttm_mem_type_debug(struct ttm_bo_device *bdev, int mem_type)
Jerome Glissefb53f862009-12-09 21:55:10 +010070{
Jerome Glisse5012f502009-12-10 18:07:26 +010071 struct ttm_mem_type_manager *man = &bdev->man[mem_type];
72
Joe Perches25d04792012-03-16 21:43:50 -070073 pr_err(" has_type: %d\n", man->has_type);
74 pr_err(" use_type: %d\n", man->use_type);
75 pr_err(" flags: 0x%08X\n", man->flags);
76 pr_err(" gpu_offset: 0x%08lX\n", man->gpu_offset);
77 pr_err(" size: %llu\n", man->size);
78 pr_err(" available_caching: 0x%08X\n", man->available_caching);
79 pr_err(" default_caching: 0x%08X\n", 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
Joe Perches25d04792012-03-16 21:43:50 -070089 pr_err("No space for %p (%lu pages, %luK, %luM)\n",
90 bo, bo->mem.num_pages, bo->mem.size >> 10,
91 bo->mem.size >> 20);
Jerome Glissefb53f862009-12-09 21:55:10 +010092 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;
Joe Perches25d04792012-03-16 21:43:50 -070097 pr_err(" 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;
Jerome Glisse57de4ba2011-11-11 15:42:57 -0500140 size_t acc_size = bo->acc_size;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200141
142 BUG_ON(atomic_read(&bo->list_kref.refcount));
143 BUG_ON(atomic_read(&bo->kref.refcount));
144 BUG_ON(atomic_read(&bo->cpu_writers));
145 BUG_ON(bo->sync_obj != NULL);
146 BUG_ON(bo->mem.mm_node != NULL);
147 BUG_ON(!list_empty(&bo->lru));
148 BUG_ON(!list_empty(&bo->ddestroy));
149
150 if (bo->ttm)
151 ttm_tt_destroy(bo->ttm);
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200152 atomic_dec(&bo->glob->bo_count);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200153 if (bo->destroy)
154 bo->destroy(bo);
155 else {
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200156 kfree(bo);
157 }
Jerome Glisse57de4ba2011-11-11 15:42:57 -0500158 ttm_mem_global_free(bdev->glob->mem_glob, acc_size);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200159}
160
161int ttm_bo_wait_unreserved(struct ttm_buffer_object *bo, bool interruptible)
162{
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200163 if (interruptible) {
Jean Delvare965d3802010-10-09 12:36:45 +0000164 return wait_event_interruptible(bo->event_queue,
Maarten Lankhorsta9dbfff2012-10-12 16:58:36 +0200165 !ttm_bo_is_reserved(bo));
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200166 } else {
Maarten Lankhorsta9dbfff2012-10-12 16:58:36 +0200167 wait_event(bo->event_queue, !ttm_bo_is_reserved(bo));
Jean Delvare965d3802010-10-09 12:36:45 +0000168 return 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200169 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200170}
Ben Skeggsd1ede142009-12-11 15:13:00 +1000171EXPORT_SYMBOL(ttm_bo_wait_unreserved);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200172
Dave Airlied6ea8882010-11-22 13:24:40 +1000173void ttm_bo_add_to_lru(struct ttm_buffer_object *bo)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200174{
175 struct ttm_bo_device *bdev = bo->bdev;
176 struct ttm_mem_type_manager *man;
177
Maarten Lankhorsta9dbfff2012-10-12 16:58:36 +0200178 BUG_ON(!ttm_bo_is_reserved(bo));
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200179
180 if (!(bo->mem.placement & TTM_PL_FLAG_NO_EVICT)) {
181
182 BUG_ON(!list_empty(&bo->lru));
183
184 man = &bdev->man[bo->mem.mem_type];
185 list_add_tail(&bo->lru, &man->lru);
186 kref_get(&bo->list_kref);
187
188 if (bo->ttm != NULL) {
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200189 list_add_tail(&bo->swap, &bo->glob->swap_lru);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200190 kref_get(&bo->list_kref);
191 }
192 }
193}
194
Dave Airlied6ea8882010-11-22 13:24:40 +1000195int ttm_bo_del_from_lru(struct ttm_buffer_object *bo)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200196{
197 int put_count = 0;
198
199 if (!list_empty(&bo->swap)) {
200 list_del_init(&bo->swap);
201 ++put_count;
202 }
203 if (!list_empty(&bo->lru)) {
204 list_del_init(&bo->lru);
205 ++put_count;
206 }
207
208 /*
209 * TODO: Add a driver hook to delete from
210 * driver-specific LRU's here.
211 */
212
213 return put_count;
214}
215
216int ttm_bo_reserve_locked(struct ttm_buffer_object *bo,
217 bool interruptible,
218 bool no_wait, bool use_sequence, uint32_t sequence)
219{
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200220 struct ttm_bo_global *glob = bo->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200221 int ret;
222
Thomas Hellstrom6c1e9632012-11-06 11:31:51 +0000223 while (unlikely(atomic_read(&bo->reserved) != 0)) {
Thomas Hellstrom95ccb0f2010-11-11 10:04:53 +0100224 /**
225 * Deadlock avoidance for multi-bo reserving.
226 */
Thomas Hellstrom96726fe2010-11-17 12:28:28 +0000227 if (use_sequence && bo->seq_valid) {
228 /**
229 * We've already reserved this one.
230 */
231 if (unlikely(sequence == bo->val_seq))
232 return -EDEADLK;
233 /**
234 * Already reserved by a thread that will not back
235 * off for us. We need to back off.
236 */
237 if (unlikely(sequence - bo->val_seq < (1 << 31)))
238 return -EAGAIN;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200239 }
240
241 if (no_wait)
242 return -EBUSY;
243
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200244 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200245 ret = ttm_bo_wait_unreserved(bo, interruptible);
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200246 spin_lock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200247
248 if (unlikely(ret))
249 return ret;
250 }
251
Thomas Hellstrom6c1e9632012-11-06 11:31:51 +0000252 atomic_set(&bo->reserved, 1);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200253 if (use_sequence) {
Thomas Hellstrom95ccb0f2010-11-11 10:04:53 +0100254 /**
255 * Wake up waiters that may need to recheck for deadlock,
256 * if we decreased the sequence number.
257 */
258 if (unlikely((bo->val_seq - sequence < (1 << 31))
259 || !bo->seq_valid))
260 wake_up_all(&bo->event_queue);
261
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200262 bo->val_seq = sequence;
263 bo->seq_valid = true;
264 } else {
265 bo->seq_valid = false;
266 }
267
268 return 0;
269}
270EXPORT_SYMBOL(ttm_bo_reserve);
271
272static void ttm_bo_ref_bug(struct kref *list_kref)
273{
274 BUG();
275}
276
Dave Airlied6ea8882010-11-22 13:24:40 +1000277void ttm_bo_list_ref_sub(struct ttm_buffer_object *bo, int count,
278 bool never_free)
279{
Thomas Hellstrom2357cbe2010-11-16 15:21:08 +0100280 kref_sub(&bo->list_kref, count,
281 (never_free) ? ttm_bo_ref_bug : ttm_bo_release_list);
Dave Airlied6ea8882010-11-22 13:24:40 +1000282}
283
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200284int ttm_bo_reserve(struct ttm_buffer_object *bo,
285 bool interruptible,
286 bool no_wait, bool use_sequence, uint32_t sequence)
287{
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200288 struct ttm_bo_global *glob = bo->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200289 int put_count = 0;
290 int ret;
291
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200292 spin_lock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200293 ret = ttm_bo_reserve_locked(bo, interruptible, no_wait, use_sequence,
294 sequence);
295 if (likely(ret == 0))
296 put_count = ttm_bo_del_from_lru(bo);
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200297 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200298
Dave Airlied6ea8882010-11-22 13:24:40 +1000299 ttm_bo_list_ref_sub(bo, put_count, true);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200300
301 return ret;
302}
303
Thomas Hellstrom95762c22010-11-17 12:28:30 +0000304void ttm_bo_unreserve_locked(struct ttm_buffer_object *bo)
305{
306 ttm_bo_add_to_lru(bo);
307 atomic_set(&bo->reserved, 0);
308 wake_up_all(&bo->event_queue);
309}
310
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200311void ttm_bo_unreserve(struct ttm_buffer_object *bo)
312{
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200313 struct ttm_bo_global *glob = bo->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200314
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200315 spin_lock(&glob->lru_lock);
Thomas Hellstrom95762c22010-11-17 12:28:30 +0000316 ttm_bo_unreserve_locked(bo);
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200317 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200318}
319EXPORT_SYMBOL(ttm_bo_unreserve);
320
321/*
322 * Call bo->mutex locked.
323 */
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200324static int ttm_bo_add_ttm(struct ttm_buffer_object *bo, bool zero_alloc)
325{
326 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200327 struct ttm_bo_global *glob = bo->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200328 int ret = 0;
329 uint32_t page_flags = 0;
330
331 TTM_ASSERT_LOCKED(&bo->mutex);
332 bo->ttm = NULL;
333
Dave Airliead49f502009-07-10 22:36:26 +1000334 if (bdev->need_dma32)
335 page_flags |= TTM_PAGE_FLAG_DMA32;
336
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200337 switch (bo->type) {
338 case ttm_bo_type_device:
339 if (zero_alloc)
340 page_flags |= TTM_PAGE_FLAG_ZERO_ALLOC;
341 case ttm_bo_type_kernel:
Jerome Glisse649bf3c2011-11-01 20:46:13 -0400342 bo->ttm = bdev->driver->ttm_tt_create(bdev, bo->num_pages << PAGE_SHIFT,
343 page_flags, glob->dummy_read_page);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200344 if (unlikely(bo->ttm == NULL))
345 ret = -ENOMEM;
346 break;
Dave Airlie129b78b2012-04-02 11:46:06 +0100347 case ttm_bo_type_sg:
348 bo->ttm = bdev->driver->ttm_tt_create(bdev, bo->num_pages << PAGE_SHIFT,
349 page_flags | TTM_PAGE_FLAG_SG,
350 glob->dummy_read_page);
351 if (unlikely(bo->ttm == NULL)) {
352 ret = -ENOMEM;
353 break;
354 }
355 bo->ttm->sg = bo->sg;
356 break;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200357 default:
Joe Perches25d04792012-03-16 21:43:50 -0700358 pr_err("Illegal buffer object type\n");
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200359 ret = -EINVAL;
360 break;
361 }
362
363 return ret;
364}
365
366static int ttm_bo_handle_move_mem(struct ttm_buffer_object *bo,
367 struct ttm_mem_reg *mem,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000368 bool evict, bool interruptible,
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000369 bool no_wait_gpu)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200370{
371 struct ttm_bo_device *bdev = bo->bdev;
372 bool old_is_pci = ttm_mem_reg_is_pci(bdev, &bo->mem);
373 bool new_is_pci = ttm_mem_reg_is_pci(bdev, mem);
374 struct ttm_mem_type_manager *old_man = &bdev->man[bo->mem.mem_type];
375 struct ttm_mem_type_manager *new_man = &bdev->man[mem->mem_type];
376 int ret = 0;
377
378 if (old_is_pci || new_is_pci ||
Thomas Hellstromeba67092010-11-11 09:41:57 +0100379 ((mem->placement & bo->mem.placement & TTM_PL_MASK_CACHING) == 0)) {
380 ret = ttm_mem_io_lock(old_man, true);
381 if (unlikely(ret != 0))
382 goto out_err;
383 ttm_bo_unmap_virtual_locked(bo);
384 ttm_mem_io_unlock(old_man);
385 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200386
387 /*
388 * Create and bind a ttm if required.
389 */
390
Ben Skeggs8d3bb232011-08-22 03:15:05 +0000391 if (!(new_man->flags & TTM_MEMTYPE_FLAG_FIXED)) {
392 if (bo->ttm == NULL) {
Ben Skeggsff02b132011-09-14 06:08:06 +1000393 bool zero = !(old_man->flags & TTM_MEMTYPE_FLAG_FIXED);
394 ret = ttm_bo_add_ttm(bo, zero);
Ben Skeggs8d3bb232011-08-22 03:15:05 +0000395 if (ret)
396 goto out_err;
397 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200398
399 ret = ttm_tt_set_placement_caching(bo->ttm, mem->placement);
400 if (ret)
Thomas Hellstrom87ef9202009-06-17 12:29:57 +0200401 goto out_err;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200402
403 if (mem->mem_type != TTM_PL_SYSTEM) {
404 ret = ttm_tt_bind(bo->ttm, mem);
405 if (ret)
406 goto out_err;
407 }
408
409 if (bo->mem.mem_type == TTM_PL_SYSTEM) {
Ben Skeggs82ef5942011-02-02 00:27:10 +0000410 if (bdev->driver->move_notify)
411 bdev->driver->move_notify(bo, mem);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100412 bo->mem = *mem;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200413 mem->mm_node = NULL;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200414 goto moved;
415 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200416 }
417
Ben Skeggs9f1feed2012-01-25 15:34:22 +1000418 if (bdev->driver->move_notify)
419 bdev->driver->move_notify(bo, mem);
420
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200421 if (!(old_man->flags & TTM_MEMTYPE_FLAG_FIXED) &&
422 !(new_man->flags & TTM_MEMTYPE_FLAG_FIXED))
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000423 ret = ttm_bo_move_ttm(bo, evict, no_wait_gpu, mem);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200424 else if (bdev->driver->move)
425 ret = bdev->driver->move(bo, evict, interruptible,
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000426 no_wait_gpu, mem);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200427 else
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000428 ret = ttm_bo_move_memcpy(bo, evict, no_wait_gpu, mem);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200429
Ben Skeggs9f1feed2012-01-25 15:34:22 +1000430 if (ret) {
431 if (bdev->driver->move_notify) {
432 struct ttm_mem_reg tmp_mem = *mem;
433 *mem = bo->mem;
434 bo->mem = tmp_mem;
435 bdev->driver->move_notify(bo, mem);
436 bo->mem = *mem;
437 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200438
Ben Skeggs9f1feed2012-01-25 15:34:22 +1000439 goto out_err;
440 }
Jerome Glissedc97b342011-11-18 11:47:03 -0500441
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200442moved:
443 if (bo->evicted) {
444 ret = bdev->driver->invalidate_caches(bdev, bo->mem.placement);
445 if (ret)
Joe Perches25d04792012-03-16 21:43:50 -0700446 pr_err("Can not flush read caches\n");
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200447 bo->evicted = false;
448 }
449
450 if (bo->mem.mm_node) {
Ben Skeggsd961db72010-08-05 10:48:18 +1000451 bo->offset = (bo->mem.start << PAGE_SHIFT) +
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200452 bdev->man[bo->mem.mem_type].gpu_offset;
453 bo->cur_placement = bo->mem.placement;
Thomas Hellstrom354fb522010-01-13 22:28:45 +0100454 } else
455 bo->offset = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200456
457 return 0;
458
459out_err:
460 new_man = &bdev->man[bo->mem.mem_type];
461 if ((new_man->flags & TTM_MEMTYPE_FLAG_FIXED) && bo->ttm) {
462 ttm_tt_unbind(bo->ttm);
463 ttm_tt_destroy(bo->ttm);
464 bo->ttm = NULL;
465 }
466
467 return ret;
468}
469
470/**
Thomas Hellstrom40d857b2010-10-19 09:01:00 +0200471 * Call bo::reserved.
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200472 * Will release GPU memory type usage on destruction.
Thomas Hellstrom40d857b2010-10-19 09:01:00 +0200473 * This is the place to put in driver specific hooks to release
474 * driver private resources.
475 * Will release the bo::reserved lock.
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200476 */
477
478static void ttm_bo_cleanup_memtype_use(struct ttm_buffer_object *bo)
479{
Jerome Glissedc97b342011-11-18 11:47:03 -0500480 if (bo->bdev->driver->move_notify)
481 bo->bdev->driver->move_notify(bo, NULL);
482
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200483 if (bo->ttm) {
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200484 ttm_tt_unbind(bo->ttm);
485 ttm_tt_destroy(bo->ttm);
486 bo->ttm = NULL;
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200487 }
Thomas Hellstrom40d857b2010-10-19 09:01:00 +0200488 ttm_bo_mem_put(bo, &bo->mem);
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200489
490 atomic_set(&bo->reserved, 0);
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000491 wake_up_all(&bo->event_queue);
Thomas Hellstrom06fba6d2010-10-29 10:46:48 +0200492
493 /*
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000494 * Since the final reference to this bo may not be dropped by
495 * the current task we have to put a memory barrier here to make
496 * sure the changes done in this function are always visible.
497 *
498 * This function only needs protection against the final kref_put.
Thomas Hellstrom06fba6d2010-10-29 10:46:48 +0200499 */
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000500 smp_mb__before_atomic_dec();
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200501}
502
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200503static void ttm_bo_cleanup_refs_or_queue(struct ttm_buffer_object *bo)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200504{
505 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200506 struct ttm_bo_global *glob = bo->glob;
Maarten Lankhorst4154f052012-11-28 12:25:39 +0100507 struct ttm_bo_driver *driver = bdev->driver;
Thomas Hellstromaa123262010-11-02 13:21:47 +0000508 void *sync_obj = NULL;
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200509 int put_count;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200510 int ret;
511
Maarten Lankhorst4154f052012-11-28 12:25:39 +0100512 spin_lock(&glob->lru_lock);
513 ret = ttm_bo_reserve_locked(bo, false, true, false, 0);
514
Thomas Hellstrom702adba2010-11-17 12:28:29 +0000515 spin_lock(&bdev->fence_lock);
Dave Airlie1717c0e2011-10-27 18:28:37 +0200516 (void) ttm_bo_wait(bo, false, false, true);
Maarten Lankhorst4154f052012-11-28 12:25:39 +0100517 if (!ret && !bo->sync_obj) {
Thomas Hellstrom702adba2010-11-17 12:28:29 +0000518 spin_unlock(&bdev->fence_lock);
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200519 put_count = ttm_bo_del_from_lru(bo);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200520
Thomas Hellstrom40d857b2010-10-19 09:01:00 +0200521 spin_unlock(&glob->lru_lock);
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200522 ttm_bo_cleanup_memtype_use(bo);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200523
Dave Airlied6ea8882010-11-22 13:24:40 +1000524 ttm_bo_list_ref_sub(bo, put_count, true);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200525
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200526 return;
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200527 }
Thomas Hellstromaa123262010-11-02 13:21:47 +0000528 if (bo->sync_obj)
529 sync_obj = driver->sync_obj_ref(bo->sync_obj);
Maarten Lankhorst4154f052012-11-28 12:25:39 +0100530 spin_unlock(&bdev->fence_lock);
531
532 if (!ret) {
533 atomic_set(&bo->reserved, 0);
534 wake_up_all(&bo->event_queue);
535 }
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200536
537 kref_get(&bo->list_kref);
538 list_add_tail(&bo->ddestroy, &bdev->ddestroy);
539 spin_unlock(&glob->lru_lock);
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200540
Thomas Hellstromaa123262010-11-02 13:21:47 +0000541 if (sync_obj) {
Maarten Lankhorstdedfdff2012-10-12 15:04:00 +0000542 driver->sync_obj_flush(sync_obj);
Thomas Hellstromaa123262010-11-02 13:21:47 +0000543 driver->sync_obj_unref(&sync_obj);
544 }
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200545 schedule_delayed_work(&bdev->wq,
546 ((HZ / 100) < 1) ? 1 : HZ / 100);
547}
548
549/**
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000550 * function ttm_bo_cleanup_refs_and_unlock
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200551 * If bo idle, remove from delayed- and lru lists, and unref.
552 * If not idle, do nothing.
553 *
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000554 * Must be called with lru_lock and reservation held, this function
555 * will drop both before returning.
556 *
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200557 * @interruptible Any sleeps should occur interruptibly.
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200558 * @no_wait_gpu Never wait for gpu. Return -EBUSY instead.
559 */
560
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000561static int ttm_bo_cleanup_refs_and_unlock(struct ttm_buffer_object *bo,
562 bool interruptible,
563 bool no_wait_gpu)
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200564{
Thomas Hellstrom702adba2010-11-17 12:28:29 +0000565 struct ttm_bo_device *bdev = bo->bdev;
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000566 struct ttm_bo_driver *driver = bdev->driver;
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200567 struct ttm_bo_global *glob = bo->glob;
568 int put_count;
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000569 int ret;
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200570
Thomas Hellstrom702adba2010-11-17 12:28:29 +0000571 spin_lock(&bdev->fence_lock);
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000572 ret = ttm_bo_wait(bo, false, false, true);
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200573
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000574 if (ret && !no_wait_gpu) {
575 void *sync_obj;
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200576
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000577 /*
578 * Take a reference to the fence and unreserve,
579 * at this point the buffer should be dead, so
580 * no new sync objects can be attached.
581 */
582 sync_obj = driver->sync_obj_ref(&bo->sync_obj);
583 spin_unlock(&bdev->fence_lock);
Thomas Hellstrom26cc40a2011-11-21 13:05:02 +0100584
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200585 atomic_set(&bo->reserved, 0);
586 wake_up_all(&bo->event_queue);
587 spin_unlock(&glob->lru_lock);
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000588
589 ret = driver->sync_obj_wait(sync_obj, false, interruptible);
590 driver->sync_obj_unref(&sync_obj);
591 if (ret)
592 return ret;
593
594 /*
595 * remove sync_obj with ttm_bo_wait, the wait should be
596 * finished, and no new wait object should have been added.
597 */
598 spin_lock(&bdev->fence_lock);
599 ret = ttm_bo_wait(bo, false, false, true);
600 WARN_ON(ret);
601 spin_unlock(&bdev->fence_lock);
602 if (ret)
603 return ret;
604
605 spin_lock(&glob->lru_lock);
606 ret = ttm_bo_reserve_locked(bo, false, true, false, 0);
607
608 /*
609 * We raced, and lost, someone else holds the reservation now,
610 * and is probably busy in ttm_bo_cleanup_memtype_use.
611 *
612 * Even if it's not the case, because we finished waiting any
613 * delayed destruction would succeed, so just return success
614 * here.
615 */
616 if (ret) {
617 spin_unlock(&glob->lru_lock);
618 return 0;
619 }
620 } else
621 spin_unlock(&bdev->fence_lock);
622
623 if (ret || unlikely(list_empty(&bo->ddestroy))) {
624 atomic_set(&bo->reserved, 0);
625 wake_up_all(&bo->event_queue);
626 spin_unlock(&glob->lru_lock);
627 return ret;
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200628 }
629
630 put_count = ttm_bo_del_from_lru(bo);
631 list_del_init(&bo->ddestroy);
632 ++put_count;
633
634 spin_unlock(&glob->lru_lock);
635 ttm_bo_cleanup_memtype_use(bo);
636
Dave Airlied6ea8882010-11-22 13:24:40 +1000637 ttm_bo_list_ref_sub(bo, put_count, true);
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200638
639 return 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200640}
641
642/**
643 * Traverse the delayed list, and call ttm_bo_cleanup_refs on all
644 * encountered buffers.
645 */
646
647static int ttm_bo_delayed_delete(struct ttm_bo_device *bdev, bool remove_all)
648{
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200649 struct ttm_bo_global *glob = bdev->glob;
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100650 struct ttm_buffer_object *entry = NULL;
651 int ret = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200652
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200653 spin_lock(&glob->lru_lock);
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100654 if (list_empty(&bdev->ddestroy))
655 goto out_unlock;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200656
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100657 entry = list_first_entry(&bdev->ddestroy,
658 struct ttm_buffer_object, ddestroy);
659 kref_get(&entry->list_kref);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200660
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100661 for (;;) {
662 struct ttm_buffer_object *nentry = NULL;
663
664 if (entry->ddestroy.next != &bdev->ddestroy) {
665 nentry = list_first_entry(&entry->ddestroy,
666 struct ttm_buffer_object, ddestroy);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200667 kref_get(&nentry->list_kref);
668 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200669
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000670 ret = ttm_bo_reserve_locked(entry, false, !remove_all, false, 0);
671 if (!ret)
672 ret = ttm_bo_cleanup_refs_and_unlock(entry, false,
673 !remove_all);
674 else
675 spin_unlock(&glob->lru_lock);
676
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200677 kref_put(&entry->list_kref, ttm_bo_release_list);
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100678 entry = nentry;
679
680 if (ret || !entry)
681 goto out;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200682
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200683 spin_lock(&glob->lru_lock);
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100684 if (list_empty(&entry->ddestroy))
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200685 break;
686 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200687
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100688out_unlock:
689 spin_unlock(&glob->lru_lock);
690out:
691 if (entry)
692 kref_put(&entry->list_kref, ttm_bo_release_list);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200693 return ret;
694}
695
696static void ttm_bo_delayed_workqueue(struct work_struct *work)
697{
698 struct ttm_bo_device *bdev =
699 container_of(work, struct ttm_bo_device, wq.work);
700
701 if (ttm_bo_delayed_delete(bdev, false)) {
702 schedule_delayed_work(&bdev->wq,
703 ((HZ / 100) < 1) ? 1 : HZ / 100);
704 }
705}
706
707static void ttm_bo_release(struct kref *kref)
708{
709 struct ttm_buffer_object *bo =
710 container_of(kref, struct ttm_buffer_object, kref);
711 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstromeba67092010-11-11 09:41:57 +0100712 struct ttm_mem_type_manager *man = &bdev->man[bo->mem.mem_type];
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200713
Thomas Hellstrom82fe50b2012-11-21 14:53:21 +0000714 write_lock(&bdev->vm_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200715 if (likely(bo->vm_node != NULL)) {
716 rb_erase(&bo->vm_rb, &bdev->addr_space_rb);
717 drm_mm_put_block(bo->vm_node);
718 bo->vm_node = NULL;
719 }
720 write_unlock(&bdev->vm_lock);
Thomas Hellstromeba67092010-11-11 09:41:57 +0100721 ttm_mem_io_lock(man, false);
722 ttm_mem_io_free_vm(bo);
723 ttm_mem_io_unlock(man);
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200724 ttm_bo_cleanup_refs_or_queue(bo);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200725 kref_put(&bo->list_kref, ttm_bo_release_list);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200726}
727
728void ttm_bo_unref(struct ttm_buffer_object **p_bo)
729{
730 struct ttm_buffer_object *bo = *p_bo;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200731
732 *p_bo = NULL;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200733 kref_put(&bo->kref, ttm_bo_release);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200734}
735EXPORT_SYMBOL(ttm_bo_unref);
736
Matthew Garrett7c5ee532010-04-26 16:00:09 -0400737int ttm_bo_lock_delayed_workqueue(struct ttm_bo_device *bdev)
738{
739 return cancel_delayed_work_sync(&bdev->wq);
740}
741EXPORT_SYMBOL(ttm_bo_lock_delayed_workqueue);
742
743void ttm_bo_unlock_delayed_workqueue(struct ttm_bo_device *bdev, int resched)
744{
745 if (resched)
746 schedule_delayed_work(&bdev->wq,
747 ((HZ / 100) < 1) ? 1 : HZ / 100);
748}
749EXPORT_SYMBOL(ttm_bo_unlock_delayed_workqueue);
750
Jerome Glisseca262a9992009-12-08 15:33:32 +0100751static int ttm_bo_evict(struct ttm_buffer_object *bo, bool interruptible,
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000752 bool no_wait_gpu)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200753{
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200754 struct ttm_bo_device *bdev = bo->bdev;
755 struct ttm_mem_reg evict_mem;
Jerome Glisseca262a9992009-12-08 15:33:32 +0100756 struct ttm_placement placement;
757 int ret = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200758
Thomas Hellstrom702adba2010-11-17 12:28:29 +0000759 spin_lock(&bdev->fence_lock);
Dave Airlie1717c0e2011-10-27 18:28:37 +0200760 ret = ttm_bo_wait(bo, false, interruptible, no_wait_gpu);
Thomas Hellstrom702adba2010-11-17 12:28:29 +0000761 spin_unlock(&bdev->fence_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200762
Thomas Hellstrom78ecf092009-06-17 12:29:55 +0200763 if (unlikely(ret != 0)) {
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +0100764 if (ret != -ERESTARTSYS) {
Joe Perches25d04792012-03-16 21:43:50 -0700765 pr_err("Failed to expire sync object before buffer eviction\n");
Thomas Hellstrom78ecf092009-06-17 12:29:55 +0200766 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200767 goto out;
768 }
769
Maarten Lankhorsta9dbfff2012-10-12 16:58:36 +0200770 BUG_ON(!ttm_bo_is_reserved(bo));
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200771
772 evict_mem = bo->mem;
773 evict_mem.mm_node = NULL;
Thomas Hellstromeba67092010-11-11 09:41:57 +0100774 evict_mem.bus.io_reserved_vm = false;
775 evict_mem.bus.io_reserved_count = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200776
Jerome Glisse7cb7d1d2009-12-09 22:14:27 +0100777 placement.fpfn = 0;
778 placement.lpfn = 0;
779 placement.num_placement = 0;
780 placement.num_busy_placement = 0;
Jerome Glisseca262a9992009-12-08 15:33:32 +0100781 bdev->driver->evict_flags(bo, &placement);
782 ret = ttm_bo_mem_space(bo, &placement, &evict_mem, interruptible,
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000783 no_wait_gpu);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200784 if (ret) {
Jerome Glissefb53f862009-12-09 21:55:10 +0100785 if (ret != -ERESTARTSYS) {
Joe Perches25d04792012-03-16 21:43:50 -0700786 pr_err("Failed to find memory space for buffer 0x%p eviction\n",
787 bo);
Jerome Glissefb53f862009-12-09 21:55:10 +0100788 ttm_bo_mem_space_debug(bo, &placement);
789 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200790 goto out;
791 }
792
793 ret = ttm_bo_handle_move_mem(bo, &evict_mem, true, interruptible,
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000794 no_wait_gpu);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200795 if (ret) {
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +0100796 if (ret != -ERESTARTSYS)
Joe Perches25d04792012-03-16 21:43:50 -0700797 pr_err("Buffer eviction failed\n");
Ben Skeggs42311ff2010-08-04 12:07:08 +1000798 ttm_bo_mem_put(bo, &evict_mem);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200799 goto out;
800 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200801 bo->evicted = true;
802out:
803 return ret;
804}
805
Jerome Glisseca262a9992009-12-08 15:33:32 +0100806static int ttm_mem_evict_first(struct ttm_bo_device *bdev,
807 uint32_t mem_type,
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000808 bool interruptible,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000809 bool no_wait_gpu)
Jerome Glisseca262a9992009-12-08 15:33:32 +0100810{
811 struct ttm_bo_global *glob = bdev->glob;
812 struct ttm_mem_type_manager *man = &bdev->man[mem_type];
813 struct ttm_buffer_object *bo;
Maarten Lankhorste7ab2012012-11-28 11:25:43 +0000814 int ret = -EBUSY, put_count;
Jerome Glisseca262a9992009-12-08 15:33:32 +0100815
816 spin_lock(&glob->lru_lock);
Maarten Lankhorste7ab2012012-11-28 11:25:43 +0000817 list_for_each_entry(bo, &man->lru, lru) {
818 ret = ttm_bo_reserve_locked(bo, false, true, false, 0);
819 if (!ret)
820 break;
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100821 }
822
Maarten Lankhorste7ab2012012-11-28 11:25:43 +0000823 if (ret) {
824 spin_unlock(&glob->lru_lock);
Thomas Hellstromb8e902f2012-10-22 12:51:26 +0000825 return ret;
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200826 }
827
Maarten Lankhorste7ab2012012-11-28 11:25:43 +0000828 kref_get(&bo->list_kref);
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100829
Maarten Lankhorste7ab2012012-11-28 11:25:43 +0000830 if (!list_empty(&bo->ddestroy)) {
831 ret = ttm_bo_cleanup_refs_and_unlock(bo, interruptible,
832 no_wait_gpu);
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100833 kref_put(&bo->list_kref, ttm_bo_release_list);
Maarten Lankhorste7ab2012012-11-28 11:25:43 +0000834 return ret;
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100835 }
836
837 put_count = ttm_bo_del_from_lru(bo);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100838 spin_unlock(&glob->lru_lock);
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100839
840 BUG_ON(ret != 0);
841
Dave Airlied6ea8882010-11-22 13:24:40 +1000842 ttm_bo_list_ref_sub(bo, put_count, true);
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100843
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000844 ret = ttm_bo_evict(bo, interruptible, no_wait_gpu);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100845 ttm_bo_unreserve(bo);
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100846
Jerome Glisseca262a9992009-12-08 15:33:32 +0100847 kref_put(&bo->list_kref, ttm_bo_release_list);
848 return ret;
849}
850
Ben Skeggs42311ff2010-08-04 12:07:08 +1000851void ttm_bo_mem_put(struct ttm_buffer_object *bo, struct ttm_mem_reg *mem)
852{
Ben Skeggsd961db72010-08-05 10:48:18 +1000853 struct ttm_mem_type_manager *man = &bo->bdev->man[mem->mem_type];
Ben Skeggs42311ff2010-08-04 12:07:08 +1000854
Ben Skeggsd961db72010-08-05 10:48:18 +1000855 if (mem->mm_node)
856 (*man->func->put_node)(man, mem);
Ben Skeggs42311ff2010-08-04 12:07:08 +1000857}
858EXPORT_SYMBOL(ttm_bo_mem_put);
859
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200860/**
861 * Repeatedly evict memory from the LRU for @mem_type until we create enough
862 * space, or we've evicted everything and there isn't enough space.
863 */
Jerome Glisseca262a9992009-12-08 15:33:32 +0100864static int ttm_bo_mem_force_space(struct ttm_buffer_object *bo,
865 uint32_t mem_type,
866 struct ttm_placement *placement,
867 struct ttm_mem_reg *mem,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000868 bool interruptible,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000869 bool no_wait_gpu)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200870{
Jerome Glisseca262a9992009-12-08 15:33:32 +0100871 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200872 struct ttm_mem_type_manager *man = &bdev->man[mem_type];
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200873 int ret;
874
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200875 do {
Ben Skeggsd961db72010-08-05 10:48:18 +1000876 ret = (*man->func->get_node)(man, bo, placement, mem);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200877 if (unlikely(ret != 0))
878 return ret;
Ben Skeggsd961db72010-08-05 10:48:18 +1000879 if (mem->mm_node)
Jerome Glisseca262a9992009-12-08 15:33:32 +0100880 break;
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000881 ret = ttm_mem_evict_first(bdev, mem_type,
882 interruptible, no_wait_gpu);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100883 if (unlikely(ret != 0))
884 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200885 } while (1);
Ben Skeggsd961db72010-08-05 10:48:18 +1000886 if (mem->mm_node == NULL)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200887 return -ENOMEM;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200888 mem->mem_type = mem_type;
889 return 0;
890}
891
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200892static uint32_t ttm_bo_select_caching(struct ttm_mem_type_manager *man,
893 uint32_t cur_placement,
894 uint32_t proposed_placement)
895{
896 uint32_t caching = proposed_placement & TTM_PL_MASK_CACHING;
897 uint32_t result = proposed_placement & ~TTM_PL_MASK_CACHING;
898
899 /**
900 * Keep current caching if possible.
901 */
902
903 if ((cur_placement & caching) != 0)
904 result |= (cur_placement & caching);
905 else if ((man->default_caching & caching) != 0)
906 result |= man->default_caching;
907 else if ((TTM_PL_FLAG_CACHED & caching) != 0)
908 result |= TTM_PL_FLAG_CACHED;
909 else if ((TTM_PL_FLAG_WC & caching) != 0)
910 result |= TTM_PL_FLAG_WC;
911 else if ((TTM_PL_FLAG_UNCACHED & caching) != 0)
912 result |= TTM_PL_FLAG_UNCACHED;
913
914 return result;
915}
916
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200917static bool ttm_bo_mt_compatible(struct ttm_mem_type_manager *man,
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200918 uint32_t mem_type,
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200919 uint32_t proposed_placement,
920 uint32_t *masked_placement)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200921{
922 uint32_t cur_flags = ttm_bo_type_flags(mem_type);
923
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200924 if ((cur_flags & proposed_placement & TTM_PL_MASK_MEM) == 0)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200925 return false;
926
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200927 if ((proposed_placement & man->available_caching) == 0)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200928 return false;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200929
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200930 cur_flags |= (proposed_placement & man->available_caching);
931
932 *masked_placement = cur_flags;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200933 return true;
934}
935
936/**
937 * Creates space for memory region @mem according to its type.
938 *
939 * This function first searches for free space in compatible memory types in
940 * the priority order defined by the driver. If free space isn't found, then
941 * ttm_bo_mem_force_space is attempted in priority order to evict and find
942 * space.
943 */
944int ttm_bo_mem_space(struct ttm_buffer_object *bo,
Jerome Glisseca262a9992009-12-08 15:33:32 +0100945 struct ttm_placement *placement,
946 struct ttm_mem_reg *mem,
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000947 bool interruptible,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000948 bool no_wait_gpu)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200949{
950 struct ttm_bo_device *bdev = bo->bdev;
951 struct ttm_mem_type_manager *man;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200952 uint32_t mem_type = TTM_PL_SYSTEM;
953 uint32_t cur_flags = 0;
954 bool type_found = false;
955 bool type_ok = false;
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +0100956 bool has_erestartsys = false;
Jerome Glisseca262a9992009-12-08 15:33:32 +0100957 int i, ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200958
959 mem->mm_node = NULL;
Dave Airlieb6637522009-12-14 14:51:35 +1000960 for (i = 0; i < placement->num_placement; ++i) {
Jerome Glisseca262a9992009-12-08 15:33:32 +0100961 ret = ttm_mem_type_from_flags(placement->placement[i],
962 &mem_type);
963 if (ret)
964 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200965 man = &bdev->man[mem_type];
966
967 type_ok = ttm_bo_mt_compatible(man,
Jerome Glisseca262a9992009-12-08 15:33:32 +0100968 mem_type,
969 placement->placement[i],
970 &cur_flags);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200971
972 if (!type_ok)
973 continue;
974
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200975 cur_flags = ttm_bo_select_caching(man, bo->mem.placement,
976 cur_flags);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100977 /*
978 * Use the access and other non-mapping-related flag bits from
979 * the memory placement flags to the current flags
980 */
981 ttm_flag_masked(&cur_flags, placement->placement[i],
982 ~TTM_PL_MASK_MEMTYPE);
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200983
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200984 if (mem_type == TTM_PL_SYSTEM)
985 break;
986
987 if (man->has_type && man->use_type) {
988 type_found = true;
Ben Skeggsd961db72010-08-05 10:48:18 +1000989 ret = (*man->func->get_node)(man, bo, placement, mem);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100990 if (unlikely(ret))
991 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200992 }
Ben Skeggsd961db72010-08-05 10:48:18 +1000993 if (mem->mm_node)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200994 break;
995 }
996
Ben Skeggsd961db72010-08-05 10:48:18 +1000997 if ((type_ok && (mem_type == TTM_PL_SYSTEM)) || mem->mm_node) {
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200998 mem->mem_type = mem_type;
999 mem->placement = cur_flags;
1000 return 0;
1001 }
1002
1003 if (!type_found)
1004 return -EINVAL;
1005
Dave Airlieb6637522009-12-14 14:51:35 +10001006 for (i = 0; i < placement->num_busy_placement; ++i) {
1007 ret = ttm_mem_type_from_flags(placement->busy_placement[i],
Jerome Glisseca262a9992009-12-08 15:33:32 +01001008 &mem_type);
1009 if (ret)
1010 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001011 man = &bdev->man[mem_type];
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001012 if (!man->has_type)
1013 continue;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001014 if (!ttm_bo_mt_compatible(man,
Jerome Glisseca262a9992009-12-08 15:33:32 +01001015 mem_type,
Dave Airlieb6637522009-12-14 14:51:35 +10001016 placement->busy_placement[i],
Jerome Glisseca262a9992009-12-08 15:33:32 +01001017 &cur_flags))
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001018 continue;
1019
Thomas Hellstromae3e8122009-06-24 19:57:34 +02001020 cur_flags = ttm_bo_select_caching(man, bo->mem.placement,
1021 cur_flags);
Jerome Glisseca262a9992009-12-08 15:33:32 +01001022 /*
1023 * Use the access and other non-mapping-related flag bits from
1024 * the memory placement flags to the current flags
1025 */
Dave Airlieb6637522009-12-14 14:51:35 +10001026 ttm_flag_masked(&cur_flags, placement->busy_placement[i],
Jerome Glisseca262a9992009-12-08 15:33:32 +01001027 ~TTM_PL_MASK_MEMTYPE);
Thomas Hellstromae3e8122009-06-24 19:57:34 +02001028
Thomas Hellstrom0eaddb22010-01-16 16:05:04 +01001029
1030 if (mem_type == TTM_PL_SYSTEM) {
1031 mem->mem_type = mem_type;
1032 mem->placement = cur_flags;
1033 mem->mm_node = NULL;
1034 return 0;
1035 }
1036
Jerome Glisseca262a9992009-12-08 15:33:32 +01001037 ret = ttm_bo_mem_force_space(bo, mem_type, placement, mem,
Maarten Lankhorst97a875c2012-11-28 11:25:44 +00001038 interruptible, no_wait_gpu);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001039 if (ret == 0 && mem->mm_node) {
1040 mem->placement = cur_flags;
1041 return 0;
1042 }
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +01001043 if (ret == -ERESTARTSYS)
1044 has_erestartsys = true;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001045 }
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +01001046 ret = (has_erestartsys) ? -ERESTARTSYS : -ENOMEM;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001047 return ret;
1048}
1049EXPORT_SYMBOL(ttm_bo_mem_space);
1050
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001051int ttm_bo_move_buffer(struct ttm_buffer_object *bo,
Jerome Glisseca262a9992009-12-08 15:33:32 +01001052 struct ttm_placement *placement,
Maarten Lankhorst97a875c2012-11-28 11:25:44 +00001053 bool interruptible,
Jerome Glisse9d87fa22010-04-07 10:21:19 +00001054 bool no_wait_gpu)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001055{
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001056 int ret = 0;
1057 struct ttm_mem_reg mem;
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001058 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001059
Maarten Lankhorsta9dbfff2012-10-12 16:58:36 +02001060 BUG_ON(!ttm_bo_is_reserved(bo));
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001061
1062 /*
1063 * FIXME: It's possible to pipeline buffer moves.
1064 * Have the driver move function wait for idle when necessary,
1065 * instead of doing it here.
1066 */
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001067 spin_lock(&bdev->fence_lock);
Dave Airlie1717c0e2011-10-27 18:28:37 +02001068 ret = ttm_bo_wait(bo, false, interruptible, no_wait_gpu);
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001069 spin_unlock(&bdev->fence_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001070 if (ret)
1071 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001072 mem.num_pages = bo->num_pages;
1073 mem.size = mem.num_pages << PAGE_SHIFT;
1074 mem.page_alignment = bo->mem.page_alignment;
Thomas Hellstromeba67092010-11-11 09:41:57 +01001075 mem.bus.io_reserved_vm = false;
1076 mem.bus.io_reserved_count = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001077 /*
1078 * Determine where to move the buffer.
1079 */
Maarten Lankhorst97a875c2012-11-28 11:25:44 +00001080 ret = ttm_bo_mem_space(bo, placement, &mem,
1081 interruptible, no_wait_gpu);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001082 if (ret)
1083 goto out_unlock;
Maarten Lankhorst97a875c2012-11-28 11:25:44 +00001084 ret = ttm_bo_handle_move_mem(bo, &mem, false,
1085 interruptible, no_wait_gpu);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001086out_unlock:
Ben Skeggsd961db72010-08-05 10:48:18 +10001087 if (ret && mem.mm_node)
1088 ttm_bo_mem_put(bo, &mem);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001089 return ret;
1090}
1091
Jerome Glisseca262a9992009-12-08 15:33:32 +01001092static int ttm_bo_mem_compat(struct ttm_placement *placement,
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001093 struct ttm_mem_reg *mem)
1094{
Jerome Glisseca262a9992009-12-08 15:33:32 +01001095 int i;
Thomas Hellstrome22238e2010-02-12 00:18:00 +01001096
Ben Skeggsd961db72010-08-05 10:48:18 +10001097 if (mem->mm_node && placement->lpfn != 0 &&
1098 (mem->start < placement->fpfn ||
1099 mem->start + mem->num_pages > placement->lpfn))
Thomas Hellstrome22238e2010-02-12 00:18:00 +01001100 return -1;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001101
Jerome Glisseca262a9992009-12-08 15:33:32 +01001102 for (i = 0; i < placement->num_placement; i++) {
1103 if ((placement->placement[i] & mem->placement &
1104 TTM_PL_MASK_CACHING) &&
1105 (placement->placement[i] & mem->placement &
1106 TTM_PL_MASK_MEM))
1107 return i;
1108 }
1109 return -1;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001110}
1111
Jerome Glisse09855ac2009-12-10 17:16:27 +01001112int ttm_bo_validate(struct ttm_buffer_object *bo,
1113 struct ttm_placement *placement,
Maarten Lankhorst97a875c2012-11-28 11:25:44 +00001114 bool interruptible,
Jerome Glisse9d87fa22010-04-07 10:21:19 +00001115 bool no_wait_gpu)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001116{
1117 int ret;
1118
Maarten Lankhorsta9dbfff2012-10-12 16:58:36 +02001119 BUG_ON(!ttm_bo_is_reserved(bo));
Jerome Glisseca262a9992009-12-08 15:33:32 +01001120 /* Check that range is valid */
1121 if (placement->lpfn || placement->fpfn)
1122 if (placement->fpfn > placement->lpfn ||
1123 (placement->lpfn - placement->fpfn) < bo->num_pages)
1124 return -EINVAL;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001125 /*
1126 * Check whether we need to move buffer.
1127 */
Jerome Glisseca262a9992009-12-08 15:33:32 +01001128 ret = ttm_bo_mem_compat(placement, &bo->mem);
1129 if (ret < 0) {
Maarten Lankhorst97a875c2012-11-28 11:25:44 +00001130 ret = ttm_bo_move_buffer(bo, placement, interruptible,
1131 no_wait_gpu);
Jerome Glisseca262a9992009-12-08 15:33:32 +01001132 if (ret)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001133 return ret;
Jerome Glisseca262a9992009-12-08 15:33:32 +01001134 } else {
1135 /*
1136 * Use the access and other non-mapping-related flag bits from
1137 * the compatible memory placement flags to the active flags
1138 */
1139 ttm_flag_masked(&bo->mem.placement, placement->placement[ret],
1140 ~TTM_PL_MASK_MEMTYPE);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001141 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001142 /*
1143 * We might need to add a TTM.
1144 */
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001145 if (bo->mem.mem_type == TTM_PL_SYSTEM && bo->ttm == NULL) {
1146 ret = ttm_bo_add_ttm(bo, true);
1147 if (ret)
1148 return ret;
1149 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001150 return 0;
1151}
Jerome Glisse09855ac2009-12-10 17:16:27 +01001152EXPORT_SYMBOL(ttm_bo_validate);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001153
Jerome Glisse09855ac2009-12-10 17:16:27 +01001154int ttm_bo_check_placement(struct ttm_buffer_object *bo,
1155 struct ttm_placement *placement)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001156{
Thomas Hellstrom29e190e2010-11-02 13:21:48 +00001157 BUG_ON((placement->fpfn || placement->lpfn) &&
1158 (bo->mem.num_pages > (placement->lpfn - placement->fpfn)));
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001159
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001160 return 0;
1161}
1162
Jerome Glisse09855ac2009-12-10 17:16:27 +01001163int ttm_bo_init(struct ttm_bo_device *bdev,
1164 struct ttm_buffer_object *bo,
1165 unsigned long size,
1166 enum ttm_bo_type type,
1167 struct ttm_placement *placement,
1168 uint32_t page_alignment,
Jerome Glisse09855ac2009-12-10 17:16:27 +01001169 bool interruptible,
Jan Engelhardt5df23972011-04-04 01:25:18 +02001170 struct file *persistent_swap_storage,
Jerome Glisse09855ac2009-12-10 17:16:27 +01001171 size_t acc_size,
Dave Airlie129b78b2012-04-02 11:46:06 +01001172 struct sg_table *sg,
Jerome Glisse09855ac2009-12-10 17:16:27 +01001173 void (*destroy) (struct ttm_buffer_object *))
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001174{
Jerome Glisse09855ac2009-12-10 17:16:27 +01001175 int ret = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001176 unsigned long num_pages;
Jerome Glisse57de4ba2011-11-11 15:42:57 -05001177 struct ttm_mem_global *mem_glob = bdev->glob->mem_glob;
1178
1179 ret = ttm_mem_global_alloc(mem_glob, acc_size, false, false);
1180 if (ret) {
Joe Perches25d04792012-03-16 21:43:50 -07001181 pr_err("Out of kernel memory\n");
Jerome Glisse57de4ba2011-11-11 15:42:57 -05001182 if (destroy)
1183 (*destroy)(bo);
1184 else
1185 kfree(bo);
1186 return -ENOMEM;
1187 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001188
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001189 num_pages = (size + PAGE_SIZE - 1) >> PAGE_SHIFT;
1190 if (num_pages == 0) {
Joe Perches25d04792012-03-16 21:43:50 -07001191 pr_err("Illegal buffer object size\n");
Thomas Hellstrom7dfbbdc2010-11-09 21:31:44 +01001192 if (destroy)
1193 (*destroy)(bo);
1194 else
1195 kfree(bo);
Thomas Hellstroma393c732012-06-12 13:28:42 +02001196 ttm_mem_global_free(mem_glob, acc_size);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001197 return -EINVAL;
1198 }
1199 bo->destroy = destroy;
1200
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001201 kref_init(&bo->kref);
1202 kref_init(&bo->list_kref);
1203 atomic_set(&bo->cpu_writers, 0);
1204 atomic_set(&bo->reserved, 1);
1205 init_waitqueue_head(&bo->event_queue);
1206 INIT_LIST_HEAD(&bo->lru);
1207 INIT_LIST_HEAD(&bo->ddestroy);
1208 INIT_LIST_HEAD(&bo->swap);
Thomas Hellstromeba67092010-11-11 09:41:57 +01001209 INIT_LIST_HEAD(&bo->io_reserve_lru);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001210 bo->bdev = bdev;
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001211 bo->glob = bdev->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001212 bo->type = type;
1213 bo->num_pages = num_pages;
Jerome Glisseeb6d2c32009-12-10 16:15:52 +01001214 bo->mem.size = num_pages << PAGE_SHIFT;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001215 bo->mem.mem_type = TTM_PL_SYSTEM;
1216 bo->mem.num_pages = bo->num_pages;
1217 bo->mem.mm_node = NULL;
1218 bo->mem.page_alignment = page_alignment;
Thomas Hellstromeba67092010-11-11 09:41:57 +01001219 bo->mem.bus.io_reserved_vm = false;
1220 bo->mem.bus.io_reserved_count = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001221 bo->priv_flags = 0;
1222 bo->mem.placement = (TTM_PL_FLAG_SYSTEM | TTM_PL_FLAG_CACHED);
1223 bo->seq_valid = false;
Jan Engelhardt5df23972011-04-04 01:25:18 +02001224 bo->persistent_swap_storage = persistent_swap_storage;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001225 bo->acc_size = acc_size;
Dave Airlie129b78b2012-04-02 11:46:06 +01001226 bo->sg = sg;
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001227 atomic_inc(&bo->glob->bo_count);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001228
Jerome Glisse09855ac2009-12-10 17:16:27 +01001229 ret = ttm_bo_check_placement(bo, placement);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001230 if (unlikely(ret != 0))
1231 goto out_err;
1232
1233 /*
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001234 * For ttm_bo_type_device buffers, allocate
1235 * address space from the device.
1236 */
Dave Airlie129b78b2012-04-02 11:46:06 +01001237 if (bo->type == ttm_bo_type_device ||
1238 bo->type == ttm_bo_type_sg) {
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001239 ret = ttm_bo_setup_vm(bo);
1240 if (ret)
1241 goto out_err;
1242 }
1243
Maarten Lankhorst97a875c2012-11-28 11:25:44 +00001244 ret = ttm_bo_validate(bo, placement, interruptible, false);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001245 if (ret)
1246 goto out_err;
1247
1248 ttm_bo_unreserve(bo);
1249 return 0;
1250
1251out_err:
1252 ttm_bo_unreserve(bo);
1253 ttm_bo_unref(&bo);
1254
1255 return ret;
1256}
Jerome Glisse09855ac2009-12-10 17:16:27 +01001257EXPORT_SYMBOL(ttm_bo_init);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001258
Jerome Glisse57de4ba2011-11-11 15:42:57 -05001259size_t ttm_bo_acc_size(struct ttm_bo_device *bdev,
1260 unsigned long bo_size,
1261 unsigned struct_size)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001262{
Jerome Glisse57de4ba2011-11-11 15:42:57 -05001263 unsigned npages = (PAGE_ALIGN(bo_size)) >> PAGE_SHIFT;
1264 size_t size = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001265
Jerome Glisse57de4ba2011-11-11 15:42:57 -05001266 size += ttm_round_pot(struct_size);
1267 size += PAGE_ALIGN(npages * sizeof(void *));
1268 size += ttm_round_pot(sizeof(struct ttm_tt));
1269 return size;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001270}
Jerome Glisse57de4ba2011-11-11 15:42:57 -05001271EXPORT_SYMBOL(ttm_bo_acc_size);
1272
1273size_t ttm_bo_dma_acc_size(struct ttm_bo_device *bdev,
1274 unsigned long bo_size,
1275 unsigned struct_size)
1276{
1277 unsigned npages = (PAGE_ALIGN(bo_size)) >> PAGE_SHIFT;
1278 size_t size = 0;
1279
1280 size += ttm_round_pot(struct_size);
1281 size += PAGE_ALIGN(npages * sizeof(void *));
1282 size += PAGE_ALIGN(npages * sizeof(dma_addr_t));
1283 size += ttm_round_pot(sizeof(struct ttm_dma_tt));
1284 return size;
1285}
1286EXPORT_SYMBOL(ttm_bo_dma_acc_size);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001287
Jerome Glisse09855ac2009-12-10 17:16:27 +01001288int ttm_bo_create(struct ttm_bo_device *bdev,
1289 unsigned long size,
1290 enum ttm_bo_type type,
1291 struct ttm_placement *placement,
1292 uint32_t page_alignment,
Jerome Glisse09855ac2009-12-10 17:16:27 +01001293 bool interruptible,
Jan Engelhardt5df23972011-04-04 01:25:18 +02001294 struct file *persistent_swap_storage,
Jerome Glisse09855ac2009-12-10 17:16:27 +01001295 struct ttm_buffer_object **p_bo)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001296{
1297 struct ttm_buffer_object *bo;
Jerome Glisse57de4ba2011-11-11 15:42:57 -05001298 size_t acc_size;
Jerome Glisseca262a9992009-12-08 15:33:32 +01001299 int ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001300
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001301 bo = kzalloc(sizeof(*bo), GFP_KERNEL);
Thomas Hellstroma393c732012-06-12 13:28:42 +02001302 if (unlikely(bo == NULL))
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001303 return -ENOMEM;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001304
Thomas Hellstroma393c732012-06-12 13:28:42 +02001305 acc_size = ttm_bo_acc_size(bdev, size, sizeof(struct ttm_buffer_object));
Jerome Glisse09855ac2009-12-10 17:16:27 +01001306 ret = ttm_bo_init(bdev, bo, size, type, placement, page_alignment,
Marcin Slusarz0b91c4a2012-11-06 21:49:51 +00001307 interruptible, persistent_swap_storage, acc_size,
1308 NULL, NULL);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001309 if (likely(ret == 0))
1310 *p_bo = bo;
1311
1312 return ret;
1313}
Thomas Hellstrom4d798932011-10-04 20:13:11 +02001314EXPORT_SYMBOL(ttm_bo_create);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001315
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001316static int ttm_bo_force_list_clean(struct ttm_bo_device *bdev,
Jerome Glisseca262a9992009-12-08 15:33:32 +01001317 unsigned mem_type, bool allow_errors)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001318{
Jerome Glisseca262a9992009-12-08 15:33:32 +01001319 struct ttm_mem_type_manager *man = &bdev->man[mem_type];
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001320 struct ttm_bo_global *glob = bdev->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001321 int ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001322
1323 /*
1324 * Can't use standard list traversal since we're unlocking.
1325 */
1326
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001327 spin_lock(&glob->lru_lock);
Jerome Glisseca262a9992009-12-08 15:33:32 +01001328 while (!list_empty(&man->lru)) {
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001329 spin_unlock(&glob->lru_lock);
Maarten Lankhorst97a875c2012-11-28 11:25:44 +00001330 ret = ttm_mem_evict_first(bdev, mem_type, false, false);
Jerome Glisseca262a9992009-12-08 15:33:32 +01001331 if (ret) {
1332 if (allow_errors) {
1333 return ret;
1334 } else {
Joe Perches25d04792012-03-16 21:43:50 -07001335 pr_err("Cleanup eviction failed\n");
Jerome Glisseca262a9992009-12-08 15:33:32 +01001336 }
1337 }
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001338 spin_lock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001339 }
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001340 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001341 return 0;
1342}
1343
1344int ttm_bo_clean_mm(struct ttm_bo_device *bdev, unsigned mem_type)
1345{
Roel Kluinc96e7c72009-08-03 14:22:53 +02001346 struct ttm_mem_type_manager *man;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001347 int ret = -EINVAL;
1348
1349 if (mem_type >= TTM_NUM_MEM_TYPES) {
Joe Perches25d04792012-03-16 21:43:50 -07001350 pr_err("Illegal memory type %d\n", mem_type);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001351 return ret;
1352 }
Roel Kluinc96e7c72009-08-03 14:22:53 +02001353 man = &bdev->man[mem_type];
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001354
1355 if (!man->has_type) {
Joe Perches25d04792012-03-16 21:43:50 -07001356 pr_err("Trying to take down uninitialized memory manager type %u\n",
1357 mem_type);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001358 return ret;
1359 }
1360
1361 man->use_type = false;
1362 man->has_type = false;
1363
1364 ret = 0;
1365 if (mem_type > 0) {
Jerome Glisseca262a9992009-12-08 15:33:32 +01001366 ttm_bo_force_list_clean(bdev, mem_type, false);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001367
Ben Skeggsd961db72010-08-05 10:48:18 +10001368 ret = (*man->func->takedown)(man);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001369 }
1370
1371 return ret;
1372}
1373EXPORT_SYMBOL(ttm_bo_clean_mm);
1374
1375int ttm_bo_evict_mm(struct ttm_bo_device *bdev, unsigned mem_type)
1376{
1377 struct ttm_mem_type_manager *man = &bdev->man[mem_type];
1378
1379 if (mem_type == 0 || mem_type >= TTM_NUM_MEM_TYPES) {
Joe Perches25d04792012-03-16 21:43:50 -07001380 pr_err("Illegal memory manager memory type %u\n", mem_type);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001381 return -EINVAL;
1382 }
1383
1384 if (!man->has_type) {
Joe Perches25d04792012-03-16 21:43:50 -07001385 pr_err("Memory type %u has not been initialized\n", mem_type);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001386 return 0;
1387 }
1388
Jerome Glisseca262a9992009-12-08 15:33:32 +01001389 return ttm_bo_force_list_clean(bdev, mem_type, true);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001390}
1391EXPORT_SYMBOL(ttm_bo_evict_mm);
1392
1393int ttm_bo_init_mm(struct ttm_bo_device *bdev, unsigned type,
Jerome Glisseca262a9992009-12-08 15:33:32 +01001394 unsigned long p_size)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001395{
1396 int ret = -EINVAL;
1397 struct ttm_mem_type_manager *man;
1398
Thomas Hellstromdbc4a5b2010-10-29 10:46:47 +02001399 BUG_ON(type >= TTM_NUM_MEM_TYPES);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001400 man = &bdev->man[type];
Thomas Hellstromdbc4a5b2010-10-29 10:46:47 +02001401 BUG_ON(man->has_type);
Thomas Hellstromeba67092010-11-11 09:41:57 +01001402 man->io_reserve_fastpath = true;
1403 man->use_io_reserve_lru = false;
1404 mutex_init(&man->io_reserve_mutex);
1405 INIT_LIST_HEAD(&man->io_reserve_lru);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001406
1407 ret = bdev->driver->init_mem_type(bdev, type, man);
1408 if (ret)
1409 return ret;
Ben Skeggsd961db72010-08-05 10:48:18 +10001410 man->bdev = bdev;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001411
1412 ret = 0;
1413 if (type != TTM_PL_SYSTEM) {
Ben Skeggsd961db72010-08-05 10:48:18 +10001414 ret = (*man->func->init)(man, p_size);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001415 if (ret)
1416 return ret;
1417 }
1418 man->has_type = true;
1419 man->use_type = true;
1420 man->size = p_size;
1421
1422 INIT_LIST_HEAD(&man->lru);
1423
1424 return 0;
1425}
1426EXPORT_SYMBOL(ttm_bo_init_mm);
1427
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001428static void ttm_bo_global_kobj_release(struct kobject *kobj)
1429{
1430 struct ttm_bo_global *glob =
1431 container_of(kobj, struct ttm_bo_global, kobj);
1432
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001433 ttm_mem_unregister_shrink(glob->mem_glob, &glob->shrink);
1434 __free_page(glob->dummy_read_page);
1435 kfree(glob);
1436}
1437
Dave Airlieba4420c2010-03-09 10:56:52 +10001438void ttm_bo_global_release(struct drm_global_reference *ref)
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001439{
1440 struct ttm_bo_global *glob = ref->object;
1441
1442 kobject_del(&glob->kobj);
1443 kobject_put(&glob->kobj);
1444}
1445EXPORT_SYMBOL(ttm_bo_global_release);
1446
Dave Airlieba4420c2010-03-09 10:56:52 +10001447int ttm_bo_global_init(struct drm_global_reference *ref)
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001448{
1449 struct ttm_bo_global_ref *bo_ref =
1450 container_of(ref, struct ttm_bo_global_ref, ref);
1451 struct ttm_bo_global *glob = ref->object;
1452 int ret;
1453
1454 mutex_init(&glob->device_list_mutex);
1455 spin_lock_init(&glob->lru_lock);
1456 glob->mem_glob = bo_ref->mem_glob;
1457 glob->dummy_read_page = alloc_page(__GFP_ZERO | GFP_DMA32);
1458
1459 if (unlikely(glob->dummy_read_page == NULL)) {
1460 ret = -ENOMEM;
1461 goto out_no_drp;
1462 }
1463
1464 INIT_LIST_HEAD(&glob->swap_lru);
1465 INIT_LIST_HEAD(&glob->device_list);
1466
1467 ttm_mem_init_shrink(&glob->shrink, ttm_bo_swapout);
1468 ret = ttm_mem_register_shrink(glob->mem_glob, &glob->shrink);
1469 if (unlikely(ret != 0)) {
Joe Perches25d04792012-03-16 21:43:50 -07001470 pr_err("Could not register buffer object swapout\n");
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001471 goto out_no_shrink;
1472 }
1473
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001474 atomic_set(&glob->bo_count, 0);
1475
Robert P. J. Dayb642ed02010-03-13 10:36:32 +00001476 ret = kobject_init_and_add(
1477 &glob->kobj, &ttm_bo_glob_kobj_type, ttm_get_kobj(), "buffer_objects");
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001478 if (unlikely(ret != 0))
1479 kobject_put(&glob->kobj);
1480 return ret;
1481out_no_shrink:
1482 __free_page(glob->dummy_read_page);
1483out_no_drp:
1484 kfree(glob);
1485 return ret;
1486}
1487EXPORT_SYMBOL(ttm_bo_global_init);
1488
1489
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001490int ttm_bo_device_release(struct ttm_bo_device *bdev)
1491{
1492 int ret = 0;
1493 unsigned i = TTM_NUM_MEM_TYPES;
1494 struct ttm_mem_type_manager *man;
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001495 struct ttm_bo_global *glob = bdev->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001496
1497 while (i--) {
1498 man = &bdev->man[i];
1499 if (man->has_type) {
1500 man->use_type = false;
1501 if ((i != TTM_PL_SYSTEM) && ttm_bo_clean_mm(bdev, i)) {
1502 ret = -EBUSY;
Joe Perches25d04792012-03-16 21:43:50 -07001503 pr_err("DRM memory manager type %d is not clean\n",
1504 i);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001505 }
1506 man->has_type = false;
1507 }
1508 }
1509
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001510 mutex_lock(&glob->device_list_mutex);
1511 list_del(&bdev->device_list);
1512 mutex_unlock(&glob->device_list_mutex);
1513
Tejun Heof094cfc2010-12-24 15:59:06 +01001514 cancel_delayed_work_sync(&bdev->wq);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001515
1516 while (ttm_bo_delayed_delete(bdev, true))
1517 ;
1518
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001519 spin_lock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001520 if (list_empty(&bdev->ddestroy))
1521 TTM_DEBUG("Delayed destroy list was clean\n");
1522
1523 if (list_empty(&bdev->man[0].lru))
1524 TTM_DEBUG("Swap list was clean\n");
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001525 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001526
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001527 BUG_ON(!drm_mm_clean(&bdev->addr_space_mm));
1528 write_lock(&bdev->vm_lock);
1529 drm_mm_takedown(&bdev->addr_space_mm);
1530 write_unlock(&bdev->vm_lock);
1531
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001532 return ret;
1533}
1534EXPORT_SYMBOL(ttm_bo_device_release);
1535
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001536int ttm_bo_device_init(struct ttm_bo_device *bdev,
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001537 struct ttm_bo_global *glob,
1538 struct ttm_bo_driver *driver,
Dave Airlie51c8b402009-08-20 13:38:04 +10001539 uint64_t file_page_offset,
Dave Airliead49f502009-07-10 22:36:26 +10001540 bool need_dma32)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001541{
1542 int ret = -EINVAL;
1543
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001544 rwlock_init(&bdev->vm_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001545 bdev->driver = driver;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001546
1547 memset(bdev->man, 0, sizeof(bdev->man));
1548
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001549 /*
1550 * Initialize the system memory buffer type.
1551 * Other types need to be driver / IOCTL initialized.
1552 */
Jerome Glisseca262a9992009-12-08 15:33:32 +01001553 ret = ttm_bo_init_mm(bdev, TTM_PL_SYSTEM, 0);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001554 if (unlikely(ret != 0))
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001555 goto out_no_sys;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001556
1557 bdev->addr_space_rb = RB_ROOT;
1558 ret = drm_mm_init(&bdev->addr_space_mm, file_page_offset, 0x10000000);
1559 if (unlikely(ret != 0))
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001560 goto out_no_addr_mm;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001561
1562 INIT_DELAYED_WORK(&bdev->wq, ttm_bo_delayed_workqueue);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001563 INIT_LIST_HEAD(&bdev->ddestroy);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001564 bdev->dev_mapping = NULL;
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001565 bdev->glob = glob;
Dave Airliead49f502009-07-10 22:36:26 +10001566 bdev->need_dma32 = need_dma32;
Thomas Hellstrom65705962010-11-17 12:28:31 +00001567 bdev->val_seq = 0;
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001568 spin_lock_init(&bdev->fence_lock);
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001569 mutex_lock(&glob->device_list_mutex);
1570 list_add_tail(&bdev->device_list, &glob->device_list);
1571 mutex_unlock(&glob->device_list_mutex);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001572
1573 return 0;
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001574out_no_addr_mm:
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001575 ttm_bo_clean_mm(bdev, 0);
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001576out_no_sys:
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001577 return ret;
1578}
1579EXPORT_SYMBOL(ttm_bo_device_init);
1580
1581/*
1582 * buffer object vm functions.
1583 */
1584
1585bool ttm_mem_reg_is_pci(struct ttm_bo_device *bdev, struct ttm_mem_reg *mem)
1586{
1587 struct ttm_mem_type_manager *man = &bdev->man[mem->mem_type];
1588
1589 if (!(man->flags & TTM_MEMTYPE_FLAG_FIXED)) {
1590 if (mem->mem_type == TTM_PL_SYSTEM)
1591 return false;
1592
1593 if (man->flags & TTM_MEMTYPE_FLAG_CMA)
1594 return false;
1595
1596 if (mem->placement & TTM_PL_FLAG_CACHED)
1597 return false;
1598 }
1599 return true;
1600}
1601
Thomas Hellstromeba67092010-11-11 09:41:57 +01001602void ttm_bo_unmap_virtual_locked(struct ttm_buffer_object *bo)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001603{
1604 struct ttm_bo_device *bdev = bo->bdev;
1605 loff_t offset = (loff_t) bo->addr_space_offset;
1606 loff_t holelen = ((loff_t) bo->mem.num_pages) << PAGE_SHIFT;
1607
1608 if (!bdev->dev_mapping)
1609 return;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001610 unmap_mapping_range(bdev->dev_mapping, offset, holelen, 1);
Thomas Hellstromeba67092010-11-11 09:41:57 +01001611 ttm_mem_io_free_vm(bo);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001612}
Thomas Hellstromeba67092010-11-11 09:41:57 +01001613
1614void ttm_bo_unmap_virtual(struct ttm_buffer_object *bo)
1615{
1616 struct ttm_bo_device *bdev = bo->bdev;
1617 struct ttm_mem_type_manager *man = &bdev->man[bo->mem.mem_type];
1618
1619 ttm_mem_io_lock(man, false);
1620 ttm_bo_unmap_virtual_locked(bo);
1621 ttm_mem_io_unlock(man);
1622}
1623
1624
Dave Airliee024e112009-06-24 09:48:08 +10001625EXPORT_SYMBOL(ttm_bo_unmap_virtual);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001626
1627static void ttm_bo_vm_insert_rb(struct ttm_buffer_object *bo)
1628{
1629 struct ttm_bo_device *bdev = bo->bdev;
1630 struct rb_node **cur = &bdev->addr_space_rb.rb_node;
1631 struct rb_node *parent = NULL;
1632 struct ttm_buffer_object *cur_bo;
1633 unsigned long offset = bo->vm_node->start;
1634 unsigned long cur_offset;
1635
1636 while (*cur) {
1637 parent = *cur;
1638 cur_bo = rb_entry(parent, struct ttm_buffer_object, vm_rb);
1639 cur_offset = cur_bo->vm_node->start;
1640 if (offset < cur_offset)
1641 cur = &parent->rb_left;
1642 else if (offset > cur_offset)
1643 cur = &parent->rb_right;
1644 else
1645 BUG();
1646 }
1647
1648 rb_link_node(&bo->vm_rb, parent, cur);
1649 rb_insert_color(&bo->vm_rb, &bdev->addr_space_rb);
1650}
1651
1652/**
1653 * ttm_bo_setup_vm:
1654 *
1655 * @bo: the buffer to allocate address space for
1656 *
1657 * Allocate address space in the drm device so that applications
1658 * can mmap the buffer and access the contents. This only
1659 * applies to ttm_bo_type_device objects as others are not
1660 * placed in the drm device address space.
1661 */
1662
1663static int ttm_bo_setup_vm(struct ttm_buffer_object *bo)
1664{
1665 struct ttm_bo_device *bdev = bo->bdev;
1666 int ret;
1667
1668retry_pre_get:
1669 ret = drm_mm_pre_get(&bdev->addr_space_mm);
1670 if (unlikely(ret != 0))
1671 return ret;
1672
1673 write_lock(&bdev->vm_lock);
1674 bo->vm_node = drm_mm_search_free(&bdev->addr_space_mm,
1675 bo->mem.num_pages, 0, 0);
1676
1677 if (unlikely(bo->vm_node == NULL)) {
1678 ret = -ENOMEM;
1679 goto out_unlock;
1680 }
1681
1682 bo->vm_node = drm_mm_get_block_atomic(bo->vm_node,
1683 bo->mem.num_pages, 0);
1684
1685 if (unlikely(bo->vm_node == NULL)) {
1686 write_unlock(&bdev->vm_lock);
1687 goto retry_pre_get;
1688 }
1689
1690 ttm_bo_vm_insert_rb(bo);
1691 write_unlock(&bdev->vm_lock);
1692 bo->addr_space_offset = ((uint64_t) bo->vm_node->start) << PAGE_SHIFT;
1693
1694 return 0;
1695out_unlock:
1696 write_unlock(&bdev->vm_lock);
1697 return ret;
1698}
1699
1700int ttm_bo_wait(struct ttm_buffer_object *bo,
Dave Airlie1717c0e2011-10-27 18:28:37 +02001701 bool lazy, bool interruptible, bool no_wait)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001702{
1703 struct ttm_bo_driver *driver = bo->bdev->driver;
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001704 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001705 void *sync_obj;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001706 int ret = 0;
1707
Dave Airlie1717c0e2011-10-27 18:28:37 +02001708 if (likely(bo->sync_obj == NULL))
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001709 return 0;
1710
Dave Airlie1717c0e2011-10-27 18:28:37 +02001711 while (bo->sync_obj) {
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001712
Maarten Lankhorstdedfdff2012-10-12 15:04:00 +00001713 if (driver->sync_obj_signaled(bo->sync_obj)) {
Dave Airlie1717c0e2011-10-27 18:28:37 +02001714 void *tmp_obj = bo->sync_obj;
1715 bo->sync_obj = NULL;
1716 clear_bit(TTM_BO_PRIV_FLAG_MOVING, &bo->priv_flags);
1717 spin_unlock(&bdev->fence_lock);
1718 driver->sync_obj_unref(&tmp_obj);
1719 spin_lock(&bdev->fence_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001720 continue;
1721 }
1722
1723 if (no_wait)
1724 return -EBUSY;
1725
Dave Airlie1717c0e2011-10-27 18:28:37 +02001726 sync_obj = driver->sync_obj_ref(bo->sync_obj);
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001727 spin_unlock(&bdev->fence_lock);
Maarten Lankhorstdedfdff2012-10-12 15:04:00 +00001728 ret = driver->sync_obj_wait(sync_obj,
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001729 lazy, interruptible);
1730 if (unlikely(ret != 0)) {
1731 driver->sync_obj_unref(&sync_obj);
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001732 spin_lock(&bdev->fence_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001733 return ret;
1734 }
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001735 spin_lock(&bdev->fence_lock);
Maarten Lankhorst5fb4ef02012-10-12 15:02:19 +00001736 if (likely(bo->sync_obj == sync_obj)) {
Dave Airlie1717c0e2011-10-27 18:28:37 +02001737 void *tmp_obj = bo->sync_obj;
1738 bo->sync_obj = NULL;
1739 clear_bit(TTM_BO_PRIV_FLAG_MOVING,
1740 &bo->priv_flags);
1741 spin_unlock(&bdev->fence_lock);
1742 driver->sync_obj_unref(&sync_obj);
1743 driver->sync_obj_unref(&tmp_obj);
1744 spin_lock(&bdev->fence_lock);
Thomas Hellstromfee280d2009-08-03 12:39:06 +02001745 } else {
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001746 spin_unlock(&bdev->fence_lock);
Thomas Hellstromfee280d2009-08-03 12:39:06 +02001747 driver->sync_obj_unref(&sync_obj);
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001748 spin_lock(&bdev->fence_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001749 }
1750 }
1751 return 0;
1752}
1753EXPORT_SYMBOL(ttm_bo_wait);
1754
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001755int ttm_bo_synccpu_write_grab(struct ttm_buffer_object *bo, bool no_wait)
1756{
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001757 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001758 int ret = 0;
1759
1760 /*
Thomas Hellstrom8cfe92d2010-04-28 11:33:25 +02001761 * Using ttm_bo_reserve makes sure the lru lists are updated.
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001762 */
1763
1764 ret = ttm_bo_reserve(bo, true, no_wait, false, 0);
1765 if (unlikely(ret != 0))
1766 return ret;
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001767 spin_lock(&bdev->fence_lock);
Dave Airlie1717c0e2011-10-27 18:28:37 +02001768 ret = ttm_bo_wait(bo, false, true, no_wait);
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001769 spin_unlock(&bdev->fence_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001770 if (likely(ret == 0))
1771 atomic_inc(&bo->cpu_writers);
1772 ttm_bo_unreserve(bo);
1773 return ret;
1774}
Ben Skeggsd1ede142009-12-11 15:13:00 +10001775EXPORT_SYMBOL(ttm_bo_synccpu_write_grab);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001776
1777void ttm_bo_synccpu_write_release(struct ttm_buffer_object *bo)
1778{
Maarten Lankhorst654aa7922012-11-06 14:39:43 +01001779 atomic_dec(&bo->cpu_writers);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001780}
Ben Skeggsd1ede142009-12-11 15:13:00 +10001781EXPORT_SYMBOL(ttm_bo_synccpu_write_release);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001782
1783/**
1784 * A buffer object shrink method that tries to swap out the first
1785 * buffer object on the bo_global::swap_lru list.
1786 */
1787
1788static int ttm_bo_swapout(struct ttm_mem_shrink *shrink)
1789{
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001790 struct ttm_bo_global *glob =
1791 container_of(shrink, struct ttm_bo_global, shrink);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001792 struct ttm_buffer_object *bo;
1793 int ret = -EBUSY;
1794 int put_count;
1795 uint32_t swap_placement = (TTM_PL_FLAG_CACHED | TTM_PL_FLAG_SYSTEM);
1796
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001797 spin_lock(&glob->lru_lock);
Maarten Lankhorst2b7b3ad2012-11-28 11:25:42 +00001798 list_for_each_entry(bo, &glob->swap_lru, swap) {
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001799 ret = ttm_bo_reserve_locked(bo, false, true, false, 0);
Maarten Lankhorst2b7b3ad2012-11-28 11:25:42 +00001800 if (!ret)
1801 break;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001802 }
1803
Maarten Lankhorst2b7b3ad2012-11-28 11:25:42 +00001804 if (ret) {
1805 spin_unlock(&glob->lru_lock);
1806 return ret;
1807 }
1808
1809 kref_get(&bo->list_kref);
1810
1811 if (!list_empty(&bo->ddestroy)) {
1812 ret = ttm_bo_cleanup_refs_and_unlock(bo, false, false);
1813 kref_put(&bo->list_kref, ttm_bo_release_list);
1814 return ret;
1815 }
1816
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001817 put_count = ttm_bo_del_from_lru(bo);
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001818 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001819
Dave Airlied6ea8882010-11-22 13:24:40 +10001820 ttm_bo_list_ref_sub(bo, put_count, true);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001821
1822 /**
1823 * Wait for GPU, then move to system cached.
1824 */
1825
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001826 spin_lock(&bo->bdev->fence_lock);
Dave Airlie1717c0e2011-10-27 18:28:37 +02001827 ret = ttm_bo_wait(bo, false, false, false);
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001828 spin_unlock(&bo->bdev->fence_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001829
1830 if (unlikely(ret != 0))
1831 goto out;
1832
1833 if ((bo->mem.placement & swap_placement) != swap_placement) {
1834 struct ttm_mem_reg evict_mem;
1835
1836 evict_mem = bo->mem;
1837 evict_mem.mm_node = NULL;
1838 evict_mem.placement = TTM_PL_FLAG_SYSTEM | TTM_PL_FLAG_CACHED;
1839 evict_mem.mem_type = TTM_PL_SYSTEM;
1840
1841 ret = ttm_bo_handle_move_mem(bo, &evict_mem, true,
Maarten Lankhorst97a875c2012-11-28 11:25:44 +00001842 false, false);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001843 if (unlikely(ret != 0))
1844 goto out;
1845 }
1846
1847 ttm_bo_unmap_virtual(bo);
1848
1849 /**
1850 * Swap out. Buffer will be swapped in again as soon as
1851 * anyone tries to access a ttm page.
1852 */
1853
Thomas Hellstrom3f09ea42010-01-13 22:28:40 +01001854 if (bo->bdev->driver->swap_notify)
1855 bo->bdev->driver->swap_notify(bo);
1856
Jan Engelhardt5df23972011-04-04 01:25:18 +02001857 ret = ttm_tt_swapout(bo->ttm, bo->persistent_swap_storage);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001858out:
1859
1860 /**
1861 *
1862 * Unreserve without putting on LRU to avoid swapping out an
1863 * already swapped buffer.
1864 */
1865
1866 atomic_set(&bo->reserved, 0);
1867 wake_up_all(&bo->event_queue);
1868 kref_put(&bo->list_kref, ttm_bo_release_list);
1869 return ret;
1870}
1871
1872void ttm_bo_swapout_all(struct ttm_bo_device *bdev)
1873{
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001874 while (ttm_bo_swapout(&bdev->glob->shrink) == 0)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001875 ;
1876}
Thomas Hellstrome99e1e72010-01-13 22:28:42 +01001877EXPORT_SYMBOL(ttm_bo_swapout_all);