blob: 52b20b12c83a3859da1b5fbbc1449fd3d4e907a4 [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;
Dave Airlie014b3442013-01-16 15:58:34 +1000437 *mem = tmp_mem;
Ben Skeggs9f1feed2012-01-25 15:34:22 +1000438 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200439
Ben Skeggs9f1feed2012-01-25 15:34:22 +1000440 goto out_err;
441 }
Jerome Glissedc97b342011-11-18 11:47:03 -0500442
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200443moved:
444 if (bo->evicted) {
445 ret = bdev->driver->invalidate_caches(bdev, bo->mem.placement);
446 if (ret)
Joe Perches25d04792012-03-16 21:43:50 -0700447 pr_err("Can not flush read caches\n");
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200448 bo->evicted = false;
449 }
450
451 if (bo->mem.mm_node) {
Ben Skeggsd961db72010-08-05 10:48:18 +1000452 bo->offset = (bo->mem.start << PAGE_SHIFT) +
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200453 bdev->man[bo->mem.mem_type].gpu_offset;
454 bo->cur_placement = bo->mem.placement;
Thomas Hellstrom354fb522010-01-13 22:28:45 +0100455 } else
456 bo->offset = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200457
458 return 0;
459
460out_err:
461 new_man = &bdev->man[bo->mem.mem_type];
462 if ((new_man->flags & TTM_MEMTYPE_FLAG_FIXED) && bo->ttm) {
463 ttm_tt_unbind(bo->ttm);
464 ttm_tt_destroy(bo->ttm);
465 bo->ttm = NULL;
466 }
467
468 return ret;
469}
470
471/**
Thomas Hellstrom40d857b2010-10-19 09:01:00 +0200472 * Call bo::reserved.
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200473 * Will release GPU memory type usage on destruction.
Thomas Hellstrom40d857b2010-10-19 09:01:00 +0200474 * This is the place to put in driver specific hooks to release
475 * driver private resources.
476 * Will release the bo::reserved lock.
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200477 */
478
479static void ttm_bo_cleanup_memtype_use(struct ttm_buffer_object *bo)
480{
Jerome Glissedc97b342011-11-18 11:47:03 -0500481 if (bo->bdev->driver->move_notify)
482 bo->bdev->driver->move_notify(bo, NULL);
483
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200484 if (bo->ttm) {
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200485 ttm_tt_unbind(bo->ttm);
486 ttm_tt_destroy(bo->ttm);
487 bo->ttm = NULL;
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200488 }
Thomas Hellstrom40d857b2010-10-19 09:01:00 +0200489 ttm_bo_mem_put(bo, &bo->mem);
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200490
491 atomic_set(&bo->reserved, 0);
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000492 wake_up_all(&bo->event_queue);
Thomas Hellstrom06fba6d2010-10-29 10:46:48 +0200493
494 /*
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000495 * Since the final reference to this bo may not be dropped by
496 * the current task we have to put a memory barrier here to make
497 * sure the changes done in this function are always visible.
498 *
499 * This function only needs protection against the final kref_put.
Thomas Hellstrom06fba6d2010-10-29 10:46:48 +0200500 */
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000501 smp_mb__before_atomic_dec();
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200502}
503
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200504static void ttm_bo_cleanup_refs_or_queue(struct ttm_buffer_object *bo)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200505{
506 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200507 struct ttm_bo_global *glob = bo->glob;
Maarten Lankhorst4154f052012-11-28 12:25:39 +0100508 struct ttm_bo_driver *driver = bdev->driver;
Thomas Hellstromaa123262010-11-02 13:21:47 +0000509 void *sync_obj = NULL;
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200510 int put_count;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200511 int ret;
512
Maarten Lankhorst4154f052012-11-28 12:25:39 +0100513 spin_lock(&glob->lru_lock);
514 ret = ttm_bo_reserve_locked(bo, false, true, false, 0);
515
Thomas Hellstrom702adba2010-11-17 12:28:29 +0000516 spin_lock(&bdev->fence_lock);
Dave Airlie1717c0e2011-10-27 18:28:37 +0200517 (void) ttm_bo_wait(bo, false, false, true);
Maarten Lankhorst4154f052012-11-28 12:25:39 +0100518 if (!ret && !bo->sync_obj) {
Thomas Hellstrom702adba2010-11-17 12:28:29 +0000519 spin_unlock(&bdev->fence_lock);
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200520 put_count = ttm_bo_del_from_lru(bo);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200521
Thomas Hellstrom40d857b2010-10-19 09:01:00 +0200522 spin_unlock(&glob->lru_lock);
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200523 ttm_bo_cleanup_memtype_use(bo);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200524
Dave Airlied6ea8882010-11-22 13:24:40 +1000525 ttm_bo_list_ref_sub(bo, put_count, true);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200526
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200527 return;
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200528 }
Thomas Hellstromaa123262010-11-02 13:21:47 +0000529 if (bo->sync_obj)
530 sync_obj = driver->sync_obj_ref(bo->sync_obj);
Maarten Lankhorst4154f052012-11-28 12:25:39 +0100531 spin_unlock(&bdev->fence_lock);
532
533 if (!ret) {
534 atomic_set(&bo->reserved, 0);
535 wake_up_all(&bo->event_queue);
536 }
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200537
538 kref_get(&bo->list_kref);
539 list_add_tail(&bo->ddestroy, &bdev->ddestroy);
540 spin_unlock(&glob->lru_lock);
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200541
Thomas Hellstromaa123262010-11-02 13:21:47 +0000542 if (sync_obj) {
Maarten Lankhorstdedfdff2012-10-12 15:04:00 +0000543 driver->sync_obj_flush(sync_obj);
Thomas Hellstromaa123262010-11-02 13:21:47 +0000544 driver->sync_obj_unref(&sync_obj);
545 }
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200546 schedule_delayed_work(&bdev->wq,
547 ((HZ / 100) < 1) ? 1 : HZ / 100);
548}
549
550/**
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000551 * function ttm_bo_cleanup_refs_and_unlock
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200552 * If bo idle, remove from delayed- and lru lists, and unref.
553 * If not idle, do nothing.
554 *
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000555 * Must be called with lru_lock and reservation held, this function
556 * will drop both before returning.
557 *
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200558 * @interruptible Any sleeps should occur interruptibly.
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200559 * @no_wait_gpu Never wait for gpu. Return -EBUSY instead.
560 */
561
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000562static int ttm_bo_cleanup_refs_and_unlock(struct ttm_buffer_object *bo,
563 bool interruptible,
564 bool no_wait_gpu)
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200565{
Thomas Hellstrom702adba2010-11-17 12:28:29 +0000566 struct ttm_bo_device *bdev = bo->bdev;
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000567 struct ttm_bo_driver *driver = bdev->driver;
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200568 struct ttm_bo_global *glob = bo->glob;
569 int put_count;
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000570 int ret;
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200571
Thomas Hellstrom702adba2010-11-17 12:28:29 +0000572 spin_lock(&bdev->fence_lock);
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000573 ret = ttm_bo_wait(bo, false, false, true);
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200574
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000575 if (ret && !no_wait_gpu) {
576 void *sync_obj;
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200577
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000578 /*
579 * Take a reference to the fence and unreserve,
580 * at this point the buffer should be dead, so
581 * no new sync objects can be attached.
582 */
Maarten Lankhorst0953e762012-12-19 18:21:10 +0100583 sync_obj = driver->sync_obj_ref(bo->sync_obj);
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000584 spin_unlock(&bdev->fence_lock);
Thomas Hellstrom26cc40a2011-11-21 13:05:02 +0100585
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200586 atomic_set(&bo->reserved, 0);
587 wake_up_all(&bo->event_queue);
588 spin_unlock(&glob->lru_lock);
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000589
590 ret = driver->sync_obj_wait(sync_obj, false, interruptible);
591 driver->sync_obj_unref(&sync_obj);
592 if (ret)
593 return ret;
594
595 /*
596 * remove sync_obj with ttm_bo_wait, the wait should be
597 * finished, and no new wait object should have been added.
598 */
599 spin_lock(&bdev->fence_lock);
600 ret = ttm_bo_wait(bo, false, false, true);
601 WARN_ON(ret);
602 spin_unlock(&bdev->fence_lock);
603 if (ret)
604 return ret;
605
606 spin_lock(&glob->lru_lock);
607 ret = ttm_bo_reserve_locked(bo, false, true, false, 0);
608
609 /*
610 * We raced, and lost, someone else holds the reservation now,
611 * and is probably busy in ttm_bo_cleanup_memtype_use.
612 *
613 * Even if it's not the case, because we finished waiting any
614 * delayed destruction would succeed, so just return success
615 * here.
616 */
617 if (ret) {
618 spin_unlock(&glob->lru_lock);
619 return 0;
620 }
621 } else
622 spin_unlock(&bdev->fence_lock);
623
624 if (ret || unlikely(list_empty(&bo->ddestroy))) {
625 atomic_set(&bo->reserved, 0);
626 wake_up_all(&bo->event_queue);
627 spin_unlock(&glob->lru_lock);
628 return ret;
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200629 }
630
631 put_count = ttm_bo_del_from_lru(bo);
632 list_del_init(&bo->ddestroy);
633 ++put_count;
634
635 spin_unlock(&glob->lru_lock);
636 ttm_bo_cleanup_memtype_use(bo);
637
Dave Airlied6ea8882010-11-22 13:24:40 +1000638 ttm_bo_list_ref_sub(bo, put_count, true);
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200639
640 return 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200641}
642
643/**
644 * Traverse the delayed list, and call ttm_bo_cleanup_refs on all
645 * encountered buffers.
646 */
647
648static int ttm_bo_delayed_delete(struct ttm_bo_device *bdev, bool remove_all)
649{
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200650 struct ttm_bo_global *glob = bdev->glob;
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100651 struct ttm_buffer_object *entry = NULL;
652 int ret = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200653
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200654 spin_lock(&glob->lru_lock);
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100655 if (list_empty(&bdev->ddestroy))
656 goto out_unlock;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200657
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100658 entry = list_first_entry(&bdev->ddestroy,
659 struct ttm_buffer_object, ddestroy);
660 kref_get(&entry->list_kref);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200661
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100662 for (;;) {
663 struct ttm_buffer_object *nentry = NULL;
664
665 if (entry->ddestroy.next != &bdev->ddestroy) {
666 nentry = list_first_entry(&entry->ddestroy,
667 struct ttm_buffer_object, ddestroy);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200668 kref_get(&nentry->list_kref);
669 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200670
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000671 ret = ttm_bo_reserve_locked(entry, false, !remove_all, false, 0);
672 if (!ret)
673 ret = ttm_bo_cleanup_refs_and_unlock(entry, false,
674 !remove_all);
675 else
676 spin_unlock(&glob->lru_lock);
677
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200678 kref_put(&entry->list_kref, ttm_bo_release_list);
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100679 entry = nentry;
680
681 if (ret || !entry)
682 goto out;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200683
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200684 spin_lock(&glob->lru_lock);
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100685 if (list_empty(&entry->ddestroy))
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200686 break;
687 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200688
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100689out_unlock:
690 spin_unlock(&glob->lru_lock);
691out:
692 if (entry)
693 kref_put(&entry->list_kref, ttm_bo_release_list);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200694 return ret;
695}
696
697static void ttm_bo_delayed_workqueue(struct work_struct *work)
698{
699 struct ttm_bo_device *bdev =
700 container_of(work, struct ttm_bo_device, wq.work);
701
702 if (ttm_bo_delayed_delete(bdev, false)) {
703 schedule_delayed_work(&bdev->wq,
704 ((HZ / 100) < 1) ? 1 : HZ / 100);
705 }
706}
707
708static void ttm_bo_release(struct kref *kref)
709{
710 struct ttm_buffer_object *bo =
711 container_of(kref, struct ttm_buffer_object, kref);
712 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstromeba67092010-11-11 09:41:57 +0100713 struct ttm_mem_type_manager *man = &bdev->man[bo->mem.mem_type];
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200714
Thomas Hellstrom82fe50b2012-11-21 14:53:21 +0000715 write_lock(&bdev->vm_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200716 if (likely(bo->vm_node != NULL)) {
717 rb_erase(&bo->vm_rb, &bdev->addr_space_rb);
718 drm_mm_put_block(bo->vm_node);
719 bo->vm_node = NULL;
720 }
721 write_unlock(&bdev->vm_lock);
Thomas Hellstromeba67092010-11-11 09:41:57 +0100722 ttm_mem_io_lock(man, false);
723 ttm_mem_io_free_vm(bo);
724 ttm_mem_io_unlock(man);
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200725 ttm_bo_cleanup_refs_or_queue(bo);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200726 kref_put(&bo->list_kref, ttm_bo_release_list);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200727}
728
729void ttm_bo_unref(struct ttm_buffer_object **p_bo)
730{
731 struct ttm_buffer_object *bo = *p_bo;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200732
733 *p_bo = NULL;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200734 kref_put(&bo->kref, ttm_bo_release);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200735}
736EXPORT_SYMBOL(ttm_bo_unref);
737
Matthew Garrett7c5ee532010-04-26 16:00:09 -0400738int ttm_bo_lock_delayed_workqueue(struct ttm_bo_device *bdev)
739{
740 return cancel_delayed_work_sync(&bdev->wq);
741}
742EXPORT_SYMBOL(ttm_bo_lock_delayed_workqueue);
743
744void ttm_bo_unlock_delayed_workqueue(struct ttm_bo_device *bdev, int resched)
745{
746 if (resched)
747 schedule_delayed_work(&bdev->wq,
748 ((HZ / 100) < 1) ? 1 : HZ / 100);
749}
750EXPORT_SYMBOL(ttm_bo_unlock_delayed_workqueue);
751
Jerome Glisseca262a9992009-12-08 15:33:32 +0100752static int ttm_bo_evict(struct ttm_buffer_object *bo, bool interruptible,
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000753 bool no_wait_gpu)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200754{
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200755 struct ttm_bo_device *bdev = bo->bdev;
756 struct ttm_mem_reg evict_mem;
Jerome Glisseca262a9992009-12-08 15:33:32 +0100757 struct ttm_placement placement;
758 int ret = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200759
Thomas Hellstrom702adba2010-11-17 12:28:29 +0000760 spin_lock(&bdev->fence_lock);
Dave Airlie1717c0e2011-10-27 18:28:37 +0200761 ret = ttm_bo_wait(bo, false, interruptible, no_wait_gpu);
Thomas Hellstrom702adba2010-11-17 12:28:29 +0000762 spin_unlock(&bdev->fence_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200763
Thomas Hellstrom78ecf092009-06-17 12:29:55 +0200764 if (unlikely(ret != 0)) {
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +0100765 if (ret != -ERESTARTSYS) {
Joe Perches25d04792012-03-16 21:43:50 -0700766 pr_err("Failed to expire sync object before buffer eviction\n");
Thomas Hellstrom78ecf092009-06-17 12:29:55 +0200767 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200768 goto out;
769 }
770
Maarten Lankhorsta9dbfff2012-10-12 16:58:36 +0200771 BUG_ON(!ttm_bo_is_reserved(bo));
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200772
773 evict_mem = bo->mem;
774 evict_mem.mm_node = NULL;
Thomas Hellstromeba67092010-11-11 09:41:57 +0100775 evict_mem.bus.io_reserved_vm = false;
776 evict_mem.bus.io_reserved_count = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200777
Jerome Glisse7cb7d1d2009-12-09 22:14:27 +0100778 placement.fpfn = 0;
779 placement.lpfn = 0;
780 placement.num_placement = 0;
781 placement.num_busy_placement = 0;
Jerome Glisseca262a9992009-12-08 15:33:32 +0100782 bdev->driver->evict_flags(bo, &placement);
783 ret = ttm_bo_mem_space(bo, &placement, &evict_mem, interruptible,
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000784 no_wait_gpu);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200785 if (ret) {
Jerome Glissefb53f862009-12-09 21:55:10 +0100786 if (ret != -ERESTARTSYS) {
Joe Perches25d04792012-03-16 21:43:50 -0700787 pr_err("Failed to find memory space for buffer 0x%p eviction\n",
788 bo);
Jerome Glissefb53f862009-12-09 21:55:10 +0100789 ttm_bo_mem_space_debug(bo, &placement);
790 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200791 goto out;
792 }
793
794 ret = ttm_bo_handle_move_mem(bo, &evict_mem, true, interruptible,
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000795 no_wait_gpu);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200796 if (ret) {
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +0100797 if (ret != -ERESTARTSYS)
Joe Perches25d04792012-03-16 21:43:50 -0700798 pr_err("Buffer eviction failed\n");
Ben Skeggs42311ff2010-08-04 12:07:08 +1000799 ttm_bo_mem_put(bo, &evict_mem);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200800 goto out;
801 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200802 bo->evicted = true;
803out:
804 return ret;
805}
806
Jerome Glisseca262a9992009-12-08 15:33:32 +0100807static int ttm_mem_evict_first(struct ttm_bo_device *bdev,
808 uint32_t mem_type,
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000809 bool interruptible,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000810 bool no_wait_gpu)
Jerome Glisseca262a9992009-12-08 15:33:32 +0100811{
812 struct ttm_bo_global *glob = bdev->glob;
813 struct ttm_mem_type_manager *man = &bdev->man[mem_type];
814 struct ttm_buffer_object *bo;
Maarten Lankhorste7ab2012012-11-28 11:25:43 +0000815 int ret = -EBUSY, put_count;
Jerome Glisseca262a9992009-12-08 15:33:32 +0100816
817 spin_lock(&glob->lru_lock);
Maarten Lankhorste7ab2012012-11-28 11:25:43 +0000818 list_for_each_entry(bo, &man->lru, lru) {
819 ret = ttm_bo_reserve_locked(bo, false, true, false, 0);
820 if (!ret)
821 break;
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100822 }
823
Maarten Lankhorste7ab2012012-11-28 11:25:43 +0000824 if (ret) {
825 spin_unlock(&glob->lru_lock);
Thomas Hellstromb8e902f2012-10-22 12:51:26 +0000826 return ret;
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200827 }
828
Maarten Lankhorste7ab2012012-11-28 11:25:43 +0000829 kref_get(&bo->list_kref);
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100830
Maarten Lankhorste7ab2012012-11-28 11:25:43 +0000831 if (!list_empty(&bo->ddestroy)) {
832 ret = ttm_bo_cleanup_refs_and_unlock(bo, interruptible,
833 no_wait_gpu);
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100834 kref_put(&bo->list_kref, ttm_bo_release_list);
Maarten Lankhorste7ab2012012-11-28 11:25:43 +0000835 return ret;
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100836 }
837
838 put_count = ttm_bo_del_from_lru(bo);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100839 spin_unlock(&glob->lru_lock);
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100840
841 BUG_ON(ret != 0);
842
Dave Airlied6ea8882010-11-22 13:24:40 +1000843 ttm_bo_list_ref_sub(bo, put_count, true);
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100844
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000845 ret = ttm_bo_evict(bo, interruptible, no_wait_gpu);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100846 ttm_bo_unreserve(bo);
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100847
Jerome Glisseca262a9992009-12-08 15:33:32 +0100848 kref_put(&bo->list_kref, ttm_bo_release_list);
849 return ret;
850}
851
Ben Skeggs42311ff2010-08-04 12:07:08 +1000852void ttm_bo_mem_put(struct ttm_buffer_object *bo, struct ttm_mem_reg *mem)
853{
Ben Skeggsd961db72010-08-05 10:48:18 +1000854 struct ttm_mem_type_manager *man = &bo->bdev->man[mem->mem_type];
Ben Skeggs42311ff2010-08-04 12:07:08 +1000855
Ben Skeggsd961db72010-08-05 10:48:18 +1000856 if (mem->mm_node)
857 (*man->func->put_node)(man, mem);
Ben Skeggs42311ff2010-08-04 12:07:08 +1000858}
859EXPORT_SYMBOL(ttm_bo_mem_put);
860
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200861/**
862 * Repeatedly evict memory from the LRU for @mem_type until we create enough
863 * space, or we've evicted everything and there isn't enough space.
864 */
Jerome Glisseca262a9992009-12-08 15:33:32 +0100865static int ttm_bo_mem_force_space(struct ttm_buffer_object *bo,
866 uint32_t mem_type,
867 struct ttm_placement *placement,
868 struct ttm_mem_reg *mem,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000869 bool interruptible,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000870 bool no_wait_gpu)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200871{
Jerome Glisseca262a9992009-12-08 15:33:32 +0100872 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200873 struct ttm_mem_type_manager *man = &bdev->man[mem_type];
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200874 int ret;
875
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200876 do {
Ben Skeggsd961db72010-08-05 10:48:18 +1000877 ret = (*man->func->get_node)(man, bo, placement, mem);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200878 if (unlikely(ret != 0))
879 return ret;
Ben Skeggsd961db72010-08-05 10:48:18 +1000880 if (mem->mm_node)
Jerome Glisseca262a9992009-12-08 15:33:32 +0100881 break;
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000882 ret = ttm_mem_evict_first(bdev, mem_type,
883 interruptible, no_wait_gpu);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100884 if (unlikely(ret != 0))
885 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200886 } while (1);
Ben Skeggsd961db72010-08-05 10:48:18 +1000887 if (mem->mm_node == NULL)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200888 return -ENOMEM;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200889 mem->mem_type = mem_type;
890 return 0;
891}
892
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200893static uint32_t ttm_bo_select_caching(struct ttm_mem_type_manager *man,
894 uint32_t cur_placement,
895 uint32_t proposed_placement)
896{
897 uint32_t caching = proposed_placement & TTM_PL_MASK_CACHING;
898 uint32_t result = proposed_placement & ~TTM_PL_MASK_CACHING;
899
900 /**
901 * Keep current caching if possible.
902 */
903
904 if ((cur_placement & caching) != 0)
905 result |= (cur_placement & caching);
906 else if ((man->default_caching & caching) != 0)
907 result |= man->default_caching;
908 else if ((TTM_PL_FLAG_CACHED & caching) != 0)
909 result |= TTM_PL_FLAG_CACHED;
910 else if ((TTM_PL_FLAG_WC & caching) != 0)
911 result |= TTM_PL_FLAG_WC;
912 else if ((TTM_PL_FLAG_UNCACHED & caching) != 0)
913 result |= TTM_PL_FLAG_UNCACHED;
914
915 return result;
916}
917
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200918static bool ttm_bo_mt_compatible(struct ttm_mem_type_manager *man,
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200919 uint32_t mem_type,
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200920 uint32_t proposed_placement,
921 uint32_t *masked_placement)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200922{
923 uint32_t cur_flags = ttm_bo_type_flags(mem_type);
924
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200925 if ((cur_flags & proposed_placement & TTM_PL_MASK_MEM) == 0)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200926 return false;
927
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200928 if ((proposed_placement & man->available_caching) == 0)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200929 return false;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200930
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200931 cur_flags |= (proposed_placement & man->available_caching);
932
933 *masked_placement = cur_flags;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200934 return true;
935}
936
937/**
938 * Creates space for memory region @mem according to its type.
939 *
940 * This function first searches for free space in compatible memory types in
941 * the priority order defined by the driver. If free space isn't found, then
942 * ttm_bo_mem_force_space is attempted in priority order to evict and find
943 * space.
944 */
945int ttm_bo_mem_space(struct ttm_buffer_object *bo,
Jerome Glisseca262a9992009-12-08 15:33:32 +0100946 struct ttm_placement *placement,
947 struct ttm_mem_reg *mem,
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000948 bool interruptible,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000949 bool no_wait_gpu)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200950{
951 struct ttm_bo_device *bdev = bo->bdev;
952 struct ttm_mem_type_manager *man;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200953 uint32_t mem_type = TTM_PL_SYSTEM;
954 uint32_t cur_flags = 0;
955 bool type_found = false;
956 bool type_ok = false;
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +0100957 bool has_erestartsys = false;
Jerome Glisseca262a9992009-12-08 15:33:32 +0100958 int i, ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200959
960 mem->mm_node = NULL;
Dave Airlieb6637522009-12-14 14:51:35 +1000961 for (i = 0; i < placement->num_placement; ++i) {
Jerome Glisseca262a9992009-12-08 15:33:32 +0100962 ret = ttm_mem_type_from_flags(placement->placement[i],
963 &mem_type);
964 if (ret)
965 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200966 man = &bdev->man[mem_type];
967
968 type_ok = ttm_bo_mt_compatible(man,
Jerome Glisseca262a9992009-12-08 15:33:32 +0100969 mem_type,
970 placement->placement[i],
971 &cur_flags);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200972
973 if (!type_ok)
974 continue;
975
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200976 cur_flags = ttm_bo_select_caching(man, bo->mem.placement,
977 cur_flags);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100978 /*
979 * Use the access and other non-mapping-related flag bits from
980 * the memory placement flags to the current flags
981 */
982 ttm_flag_masked(&cur_flags, placement->placement[i],
983 ~TTM_PL_MASK_MEMTYPE);
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200984
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200985 if (mem_type == TTM_PL_SYSTEM)
986 break;
987
988 if (man->has_type && man->use_type) {
989 type_found = true;
Ben Skeggsd961db72010-08-05 10:48:18 +1000990 ret = (*man->func->get_node)(man, bo, placement, mem);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100991 if (unlikely(ret))
992 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200993 }
Ben Skeggsd961db72010-08-05 10:48:18 +1000994 if (mem->mm_node)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200995 break;
996 }
997
Ben Skeggsd961db72010-08-05 10:48:18 +1000998 if ((type_ok && (mem_type == TTM_PL_SYSTEM)) || mem->mm_node) {
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200999 mem->mem_type = mem_type;
1000 mem->placement = cur_flags;
1001 return 0;
1002 }
1003
1004 if (!type_found)
1005 return -EINVAL;
1006
Dave Airlieb6637522009-12-14 14:51:35 +10001007 for (i = 0; i < placement->num_busy_placement; ++i) {
1008 ret = ttm_mem_type_from_flags(placement->busy_placement[i],
Jerome Glisseca262a9992009-12-08 15:33:32 +01001009 &mem_type);
1010 if (ret)
1011 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001012 man = &bdev->man[mem_type];
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001013 if (!man->has_type)
1014 continue;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001015 if (!ttm_bo_mt_compatible(man,
Jerome Glisseca262a9992009-12-08 15:33:32 +01001016 mem_type,
Dave Airlieb6637522009-12-14 14:51:35 +10001017 placement->busy_placement[i],
Jerome Glisseca262a9992009-12-08 15:33:32 +01001018 &cur_flags))
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001019 continue;
1020
Thomas Hellstromae3e8122009-06-24 19:57:34 +02001021 cur_flags = ttm_bo_select_caching(man, bo->mem.placement,
1022 cur_flags);
Jerome Glisseca262a9992009-12-08 15:33:32 +01001023 /*
1024 * Use the access and other non-mapping-related flag bits from
1025 * the memory placement flags to the current flags
1026 */
Dave Airlieb6637522009-12-14 14:51:35 +10001027 ttm_flag_masked(&cur_flags, placement->busy_placement[i],
Jerome Glisseca262a9992009-12-08 15:33:32 +01001028 ~TTM_PL_MASK_MEMTYPE);
Thomas Hellstromae3e8122009-06-24 19:57:34 +02001029
Thomas Hellstrom0eaddb22010-01-16 16:05:04 +01001030
1031 if (mem_type == TTM_PL_SYSTEM) {
1032 mem->mem_type = mem_type;
1033 mem->placement = cur_flags;
1034 mem->mm_node = NULL;
1035 return 0;
1036 }
1037
Jerome Glisseca262a9992009-12-08 15:33:32 +01001038 ret = ttm_bo_mem_force_space(bo, mem_type, placement, mem,
Maarten Lankhorst97a875c2012-11-28 11:25:44 +00001039 interruptible, no_wait_gpu);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001040 if (ret == 0 && mem->mm_node) {
1041 mem->placement = cur_flags;
1042 return 0;
1043 }
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +01001044 if (ret == -ERESTARTSYS)
1045 has_erestartsys = true;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001046 }
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +01001047 ret = (has_erestartsys) ? -ERESTARTSYS : -ENOMEM;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001048 return ret;
1049}
1050EXPORT_SYMBOL(ttm_bo_mem_space);
1051
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001052int ttm_bo_move_buffer(struct ttm_buffer_object *bo,
Jerome Glisseca262a9992009-12-08 15:33:32 +01001053 struct ttm_placement *placement,
Maarten Lankhorst97a875c2012-11-28 11:25:44 +00001054 bool interruptible,
Jerome Glisse9d87fa22010-04-07 10:21:19 +00001055 bool no_wait_gpu)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001056{
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001057 int ret = 0;
1058 struct ttm_mem_reg mem;
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001059 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001060
Maarten Lankhorsta9dbfff2012-10-12 16:58:36 +02001061 BUG_ON(!ttm_bo_is_reserved(bo));
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001062
1063 /*
1064 * FIXME: It's possible to pipeline buffer moves.
1065 * Have the driver move function wait for idle when necessary,
1066 * instead of doing it here.
1067 */
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001068 spin_lock(&bdev->fence_lock);
Dave Airlie1717c0e2011-10-27 18:28:37 +02001069 ret = ttm_bo_wait(bo, false, interruptible, no_wait_gpu);
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001070 spin_unlock(&bdev->fence_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001071 if (ret)
1072 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001073 mem.num_pages = bo->num_pages;
1074 mem.size = mem.num_pages << PAGE_SHIFT;
1075 mem.page_alignment = bo->mem.page_alignment;
Thomas Hellstromeba67092010-11-11 09:41:57 +01001076 mem.bus.io_reserved_vm = false;
1077 mem.bus.io_reserved_count = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001078 /*
1079 * Determine where to move the buffer.
1080 */
Maarten Lankhorst97a875c2012-11-28 11:25:44 +00001081 ret = ttm_bo_mem_space(bo, placement, &mem,
1082 interruptible, no_wait_gpu);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001083 if (ret)
1084 goto out_unlock;
Maarten Lankhorst97a875c2012-11-28 11:25:44 +00001085 ret = ttm_bo_handle_move_mem(bo, &mem, false,
1086 interruptible, no_wait_gpu);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001087out_unlock:
Ben Skeggsd961db72010-08-05 10:48:18 +10001088 if (ret && mem.mm_node)
1089 ttm_bo_mem_put(bo, &mem);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001090 return ret;
1091}
1092
Jerome Glisseca262a9992009-12-08 15:33:32 +01001093static int ttm_bo_mem_compat(struct ttm_placement *placement,
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001094 struct ttm_mem_reg *mem)
1095{
Jerome Glisseca262a9992009-12-08 15:33:32 +01001096 int i;
Thomas Hellstrome22238e2010-02-12 00:18:00 +01001097
Ben Skeggsd961db72010-08-05 10:48:18 +10001098 if (mem->mm_node && placement->lpfn != 0 &&
1099 (mem->start < placement->fpfn ||
1100 mem->start + mem->num_pages > placement->lpfn))
Thomas Hellstrome22238e2010-02-12 00:18:00 +01001101 return -1;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001102
Jerome Glisseca262a9992009-12-08 15:33:32 +01001103 for (i = 0; i < placement->num_placement; i++) {
1104 if ((placement->placement[i] & mem->placement &
1105 TTM_PL_MASK_CACHING) &&
1106 (placement->placement[i] & mem->placement &
1107 TTM_PL_MASK_MEM))
1108 return i;
1109 }
1110 return -1;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001111}
1112
Jerome Glisse09855ac2009-12-10 17:16:27 +01001113int ttm_bo_validate(struct ttm_buffer_object *bo,
1114 struct ttm_placement *placement,
Maarten Lankhorst97a875c2012-11-28 11:25:44 +00001115 bool interruptible,
Jerome Glisse9d87fa22010-04-07 10:21:19 +00001116 bool no_wait_gpu)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001117{
1118 int ret;
1119
Maarten Lankhorsta9dbfff2012-10-12 16:58:36 +02001120 BUG_ON(!ttm_bo_is_reserved(bo));
Jerome Glisseca262a9992009-12-08 15:33:32 +01001121 /* Check that range is valid */
1122 if (placement->lpfn || placement->fpfn)
1123 if (placement->fpfn > placement->lpfn ||
1124 (placement->lpfn - placement->fpfn) < bo->num_pages)
1125 return -EINVAL;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001126 /*
1127 * Check whether we need to move buffer.
1128 */
Jerome Glisseca262a9992009-12-08 15:33:32 +01001129 ret = ttm_bo_mem_compat(placement, &bo->mem);
1130 if (ret < 0) {
Maarten Lankhorst97a875c2012-11-28 11:25:44 +00001131 ret = ttm_bo_move_buffer(bo, placement, interruptible,
1132 no_wait_gpu);
Jerome Glisseca262a9992009-12-08 15:33:32 +01001133 if (ret)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001134 return ret;
Jerome Glisseca262a9992009-12-08 15:33:32 +01001135 } else {
1136 /*
1137 * Use the access and other non-mapping-related flag bits from
1138 * the compatible memory placement flags to the active flags
1139 */
1140 ttm_flag_masked(&bo->mem.placement, placement->placement[ret],
1141 ~TTM_PL_MASK_MEMTYPE);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001142 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001143 /*
1144 * We might need to add a TTM.
1145 */
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001146 if (bo->mem.mem_type == TTM_PL_SYSTEM && bo->ttm == NULL) {
1147 ret = ttm_bo_add_ttm(bo, true);
1148 if (ret)
1149 return ret;
1150 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001151 return 0;
1152}
Jerome Glisse09855ac2009-12-10 17:16:27 +01001153EXPORT_SYMBOL(ttm_bo_validate);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001154
Jerome Glisse09855ac2009-12-10 17:16:27 +01001155int ttm_bo_check_placement(struct ttm_buffer_object *bo,
1156 struct ttm_placement *placement)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001157{
Thomas Hellstrom29e190e2010-11-02 13:21:48 +00001158 BUG_ON((placement->fpfn || placement->lpfn) &&
1159 (bo->mem.num_pages > (placement->lpfn - placement->fpfn)));
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001160
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001161 return 0;
1162}
1163
Jerome Glisse09855ac2009-12-10 17:16:27 +01001164int ttm_bo_init(struct ttm_bo_device *bdev,
1165 struct ttm_buffer_object *bo,
1166 unsigned long size,
1167 enum ttm_bo_type type,
1168 struct ttm_placement *placement,
1169 uint32_t page_alignment,
Jerome Glisse09855ac2009-12-10 17:16:27 +01001170 bool interruptible,
Jan Engelhardt5df23972011-04-04 01:25:18 +02001171 struct file *persistent_swap_storage,
Jerome Glisse09855ac2009-12-10 17:16:27 +01001172 size_t acc_size,
Dave Airlie129b78b2012-04-02 11:46:06 +01001173 struct sg_table *sg,
Jerome Glisse09855ac2009-12-10 17:16:27 +01001174 void (*destroy) (struct ttm_buffer_object *))
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001175{
Jerome Glisse09855ac2009-12-10 17:16:27 +01001176 int ret = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001177 unsigned long num_pages;
Jerome Glisse57de4ba2011-11-11 15:42:57 -05001178 struct ttm_mem_global *mem_glob = bdev->glob->mem_glob;
1179
1180 ret = ttm_mem_global_alloc(mem_glob, acc_size, false, false);
1181 if (ret) {
Joe Perches25d04792012-03-16 21:43:50 -07001182 pr_err("Out of kernel memory\n");
Jerome Glisse57de4ba2011-11-11 15:42:57 -05001183 if (destroy)
1184 (*destroy)(bo);
1185 else
1186 kfree(bo);
1187 return -ENOMEM;
1188 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001189
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001190 num_pages = (size + PAGE_SIZE - 1) >> PAGE_SHIFT;
1191 if (num_pages == 0) {
Joe Perches25d04792012-03-16 21:43:50 -07001192 pr_err("Illegal buffer object size\n");
Thomas Hellstrom7dfbbdc2010-11-09 21:31:44 +01001193 if (destroy)
1194 (*destroy)(bo);
1195 else
1196 kfree(bo);
Thomas Hellstroma393c732012-06-12 13:28:42 +02001197 ttm_mem_global_free(mem_glob, acc_size);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001198 return -EINVAL;
1199 }
1200 bo->destroy = destroy;
1201
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001202 kref_init(&bo->kref);
1203 kref_init(&bo->list_kref);
1204 atomic_set(&bo->cpu_writers, 0);
1205 atomic_set(&bo->reserved, 1);
1206 init_waitqueue_head(&bo->event_queue);
1207 INIT_LIST_HEAD(&bo->lru);
1208 INIT_LIST_HEAD(&bo->ddestroy);
1209 INIT_LIST_HEAD(&bo->swap);
Thomas Hellstromeba67092010-11-11 09:41:57 +01001210 INIT_LIST_HEAD(&bo->io_reserve_lru);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001211 bo->bdev = bdev;
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001212 bo->glob = bdev->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001213 bo->type = type;
1214 bo->num_pages = num_pages;
Jerome Glisseeb6d2c32009-12-10 16:15:52 +01001215 bo->mem.size = num_pages << PAGE_SHIFT;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001216 bo->mem.mem_type = TTM_PL_SYSTEM;
1217 bo->mem.num_pages = bo->num_pages;
1218 bo->mem.mm_node = NULL;
1219 bo->mem.page_alignment = page_alignment;
Thomas Hellstromeba67092010-11-11 09:41:57 +01001220 bo->mem.bus.io_reserved_vm = false;
1221 bo->mem.bus.io_reserved_count = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001222 bo->priv_flags = 0;
1223 bo->mem.placement = (TTM_PL_FLAG_SYSTEM | TTM_PL_FLAG_CACHED);
1224 bo->seq_valid = false;
Jan Engelhardt5df23972011-04-04 01:25:18 +02001225 bo->persistent_swap_storage = persistent_swap_storage;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001226 bo->acc_size = acc_size;
Dave Airlie129b78b2012-04-02 11:46:06 +01001227 bo->sg = sg;
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001228 atomic_inc(&bo->glob->bo_count);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001229
Jerome Glisse09855ac2009-12-10 17:16:27 +01001230 ret = ttm_bo_check_placement(bo, placement);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001231 if (unlikely(ret != 0))
1232 goto out_err;
1233
1234 /*
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001235 * For ttm_bo_type_device buffers, allocate
1236 * address space from the device.
1237 */
Dave Airlie129b78b2012-04-02 11:46:06 +01001238 if (bo->type == ttm_bo_type_device ||
1239 bo->type == ttm_bo_type_sg) {
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001240 ret = ttm_bo_setup_vm(bo);
1241 if (ret)
1242 goto out_err;
1243 }
1244
Maarten Lankhorst97a875c2012-11-28 11:25:44 +00001245 ret = ttm_bo_validate(bo, placement, interruptible, false);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001246 if (ret)
1247 goto out_err;
1248
1249 ttm_bo_unreserve(bo);
1250 return 0;
1251
1252out_err:
1253 ttm_bo_unreserve(bo);
1254 ttm_bo_unref(&bo);
1255
1256 return ret;
1257}
Jerome Glisse09855ac2009-12-10 17:16:27 +01001258EXPORT_SYMBOL(ttm_bo_init);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001259
Jerome Glisse57de4ba2011-11-11 15:42:57 -05001260size_t ttm_bo_acc_size(struct ttm_bo_device *bdev,
1261 unsigned long bo_size,
1262 unsigned struct_size)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001263{
Jerome Glisse57de4ba2011-11-11 15:42:57 -05001264 unsigned npages = (PAGE_ALIGN(bo_size)) >> PAGE_SHIFT;
1265 size_t size = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001266
Jerome Glisse57de4ba2011-11-11 15:42:57 -05001267 size += ttm_round_pot(struct_size);
1268 size += PAGE_ALIGN(npages * sizeof(void *));
1269 size += ttm_round_pot(sizeof(struct ttm_tt));
1270 return size;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001271}
Jerome Glisse57de4ba2011-11-11 15:42:57 -05001272EXPORT_SYMBOL(ttm_bo_acc_size);
1273
1274size_t ttm_bo_dma_acc_size(struct ttm_bo_device *bdev,
1275 unsigned long bo_size,
1276 unsigned struct_size)
1277{
1278 unsigned npages = (PAGE_ALIGN(bo_size)) >> PAGE_SHIFT;
1279 size_t size = 0;
1280
1281 size += ttm_round_pot(struct_size);
1282 size += PAGE_ALIGN(npages * sizeof(void *));
1283 size += PAGE_ALIGN(npages * sizeof(dma_addr_t));
1284 size += ttm_round_pot(sizeof(struct ttm_dma_tt));
1285 return size;
1286}
1287EXPORT_SYMBOL(ttm_bo_dma_acc_size);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001288
Jerome Glisse09855ac2009-12-10 17:16:27 +01001289int ttm_bo_create(struct ttm_bo_device *bdev,
1290 unsigned long size,
1291 enum ttm_bo_type type,
1292 struct ttm_placement *placement,
1293 uint32_t page_alignment,
Jerome Glisse09855ac2009-12-10 17:16:27 +01001294 bool interruptible,
Jan Engelhardt5df23972011-04-04 01:25:18 +02001295 struct file *persistent_swap_storage,
Jerome Glisse09855ac2009-12-10 17:16:27 +01001296 struct ttm_buffer_object **p_bo)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001297{
1298 struct ttm_buffer_object *bo;
Jerome Glisse57de4ba2011-11-11 15:42:57 -05001299 size_t acc_size;
Jerome Glisseca262a9992009-12-08 15:33:32 +01001300 int ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001301
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001302 bo = kzalloc(sizeof(*bo), GFP_KERNEL);
Thomas Hellstroma393c732012-06-12 13:28:42 +02001303 if (unlikely(bo == NULL))
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001304 return -ENOMEM;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001305
Thomas Hellstroma393c732012-06-12 13:28:42 +02001306 acc_size = ttm_bo_acc_size(bdev, size, sizeof(struct ttm_buffer_object));
Jerome Glisse09855ac2009-12-10 17:16:27 +01001307 ret = ttm_bo_init(bdev, bo, size, type, placement, page_alignment,
Marcin Slusarz0b91c4a2012-11-06 21:49:51 +00001308 interruptible, persistent_swap_storage, acc_size,
1309 NULL, NULL);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001310 if (likely(ret == 0))
1311 *p_bo = bo;
1312
1313 return ret;
1314}
Thomas Hellstrom4d798932011-10-04 20:13:11 +02001315EXPORT_SYMBOL(ttm_bo_create);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001316
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001317static int ttm_bo_force_list_clean(struct ttm_bo_device *bdev,
Jerome Glisseca262a9992009-12-08 15:33:32 +01001318 unsigned mem_type, bool allow_errors)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001319{
Jerome Glisseca262a9992009-12-08 15:33:32 +01001320 struct ttm_mem_type_manager *man = &bdev->man[mem_type];
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001321 struct ttm_bo_global *glob = bdev->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001322 int ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001323
1324 /*
1325 * Can't use standard list traversal since we're unlocking.
1326 */
1327
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001328 spin_lock(&glob->lru_lock);
Jerome Glisseca262a9992009-12-08 15:33:32 +01001329 while (!list_empty(&man->lru)) {
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001330 spin_unlock(&glob->lru_lock);
Maarten Lankhorst97a875c2012-11-28 11:25:44 +00001331 ret = ttm_mem_evict_first(bdev, mem_type, false, false);
Jerome Glisseca262a9992009-12-08 15:33:32 +01001332 if (ret) {
1333 if (allow_errors) {
1334 return ret;
1335 } else {
Joe Perches25d04792012-03-16 21:43:50 -07001336 pr_err("Cleanup eviction failed\n");
Jerome Glisseca262a9992009-12-08 15:33:32 +01001337 }
1338 }
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001339 spin_lock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001340 }
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001341 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001342 return 0;
1343}
1344
1345int ttm_bo_clean_mm(struct ttm_bo_device *bdev, unsigned mem_type)
1346{
Roel Kluinc96e7c72009-08-03 14:22:53 +02001347 struct ttm_mem_type_manager *man;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001348 int ret = -EINVAL;
1349
1350 if (mem_type >= TTM_NUM_MEM_TYPES) {
Joe Perches25d04792012-03-16 21:43:50 -07001351 pr_err("Illegal memory type %d\n", mem_type);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001352 return ret;
1353 }
Roel Kluinc96e7c72009-08-03 14:22:53 +02001354 man = &bdev->man[mem_type];
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001355
1356 if (!man->has_type) {
Joe Perches25d04792012-03-16 21:43:50 -07001357 pr_err("Trying to take down uninitialized memory manager type %u\n",
1358 mem_type);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001359 return ret;
1360 }
1361
1362 man->use_type = false;
1363 man->has_type = false;
1364
1365 ret = 0;
1366 if (mem_type > 0) {
Jerome Glisseca262a9992009-12-08 15:33:32 +01001367 ttm_bo_force_list_clean(bdev, mem_type, false);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001368
Ben Skeggsd961db72010-08-05 10:48:18 +10001369 ret = (*man->func->takedown)(man);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001370 }
1371
1372 return ret;
1373}
1374EXPORT_SYMBOL(ttm_bo_clean_mm);
1375
1376int ttm_bo_evict_mm(struct ttm_bo_device *bdev, unsigned mem_type)
1377{
1378 struct ttm_mem_type_manager *man = &bdev->man[mem_type];
1379
1380 if (mem_type == 0 || mem_type >= TTM_NUM_MEM_TYPES) {
Joe Perches25d04792012-03-16 21:43:50 -07001381 pr_err("Illegal memory manager memory type %u\n", mem_type);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001382 return -EINVAL;
1383 }
1384
1385 if (!man->has_type) {
Joe Perches25d04792012-03-16 21:43:50 -07001386 pr_err("Memory type %u has not been initialized\n", mem_type);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001387 return 0;
1388 }
1389
Jerome Glisseca262a9992009-12-08 15:33:32 +01001390 return ttm_bo_force_list_clean(bdev, mem_type, true);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001391}
1392EXPORT_SYMBOL(ttm_bo_evict_mm);
1393
1394int ttm_bo_init_mm(struct ttm_bo_device *bdev, unsigned type,
Jerome Glisseca262a9992009-12-08 15:33:32 +01001395 unsigned long p_size)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001396{
1397 int ret = -EINVAL;
1398 struct ttm_mem_type_manager *man;
1399
Thomas Hellstromdbc4a5b2010-10-29 10:46:47 +02001400 BUG_ON(type >= TTM_NUM_MEM_TYPES);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001401 man = &bdev->man[type];
Thomas Hellstromdbc4a5b2010-10-29 10:46:47 +02001402 BUG_ON(man->has_type);
Thomas Hellstromeba67092010-11-11 09:41:57 +01001403 man->io_reserve_fastpath = true;
1404 man->use_io_reserve_lru = false;
1405 mutex_init(&man->io_reserve_mutex);
1406 INIT_LIST_HEAD(&man->io_reserve_lru);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001407
1408 ret = bdev->driver->init_mem_type(bdev, type, man);
1409 if (ret)
1410 return ret;
Ben Skeggsd961db72010-08-05 10:48:18 +10001411 man->bdev = bdev;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001412
1413 ret = 0;
1414 if (type != TTM_PL_SYSTEM) {
Ben Skeggsd961db72010-08-05 10:48:18 +10001415 ret = (*man->func->init)(man, p_size);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001416 if (ret)
1417 return ret;
1418 }
1419 man->has_type = true;
1420 man->use_type = true;
1421 man->size = p_size;
1422
1423 INIT_LIST_HEAD(&man->lru);
1424
1425 return 0;
1426}
1427EXPORT_SYMBOL(ttm_bo_init_mm);
1428
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001429static void ttm_bo_global_kobj_release(struct kobject *kobj)
1430{
1431 struct ttm_bo_global *glob =
1432 container_of(kobj, struct ttm_bo_global, kobj);
1433
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001434 ttm_mem_unregister_shrink(glob->mem_glob, &glob->shrink);
1435 __free_page(glob->dummy_read_page);
1436 kfree(glob);
1437}
1438
Dave Airlieba4420c2010-03-09 10:56:52 +10001439void ttm_bo_global_release(struct drm_global_reference *ref)
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001440{
1441 struct ttm_bo_global *glob = ref->object;
1442
1443 kobject_del(&glob->kobj);
1444 kobject_put(&glob->kobj);
1445}
1446EXPORT_SYMBOL(ttm_bo_global_release);
1447
Dave Airlieba4420c2010-03-09 10:56:52 +10001448int ttm_bo_global_init(struct drm_global_reference *ref)
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001449{
1450 struct ttm_bo_global_ref *bo_ref =
1451 container_of(ref, struct ttm_bo_global_ref, ref);
1452 struct ttm_bo_global *glob = ref->object;
1453 int ret;
1454
1455 mutex_init(&glob->device_list_mutex);
1456 spin_lock_init(&glob->lru_lock);
1457 glob->mem_glob = bo_ref->mem_glob;
1458 glob->dummy_read_page = alloc_page(__GFP_ZERO | GFP_DMA32);
1459
1460 if (unlikely(glob->dummy_read_page == NULL)) {
1461 ret = -ENOMEM;
1462 goto out_no_drp;
1463 }
1464
1465 INIT_LIST_HEAD(&glob->swap_lru);
1466 INIT_LIST_HEAD(&glob->device_list);
1467
1468 ttm_mem_init_shrink(&glob->shrink, ttm_bo_swapout);
1469 ret = ttm_mem_register_shrink(glob->mem_glob, &glob->shrink);
1470 if (unlikely(ret != 0)) {
Joe Perches25d04792012-03-16 21:43:50 -07001471 pr_err("Could not register buffer object swapout\n");
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001472 goto out_no_shrink;
1473 }
1474
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001475 atomic_set(&glob->bo_count, 0);
1476
Robert P. J. Dayb642ed02010-03-13 10:36:32 +00001477 ret = kobject_init_and_add(
1478 &glob->kobj, &ttm_bo_glob_kobj_type, ttm_get_kobj(), "buffer_objects");
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001479 if (unlikely(ret != 0))
1480 kobject_put(&glob->kobj);
1481 return ret;
1482out_no_shrink:
1483 __free_page(glob->dummy_read_page);
1484out_no_drp:
1485 kfree(glob);
1486 return ret;
1487}
1488EXPORT_SYMBOL(ttm_bo_global_init);
1489
1490
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001491int ttm_bo_device_release(struct ttm_bo_device *bdev)
1492{
1493 int ret = 0;
1494 unsigned i = TTM_NUM_MEM_TYPES;
1495 struct ttm_mem_type_manager *man;
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001496 struct ttm_bo_global *glob = bdev->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001497
1498 while (i--) {
1499 man = &bdev->man[i];
1500 if (man->has_type) {
1501 man->use_type = false;
1502 if ((i != TTM_PL_SYSTEM) && ttm_bo_clean_mm(bdev, i)) {
1503 ret = -EBUSY;
Joe Perches25d04792012-03-16 21:43:50 -07001504 pr_err("DRM memory manager type %d is not clean\n",
1505 i);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001506 }
1507 man->has_type = false;
1508 }
1509 }
1510
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001511 mutex_lock(&glob->device_list_mutex);
1512 list_del(&bdev->device_list);
1513 mutex_unlock(&glob->device_list_mutex);
1514
Tejun Heof094cfc2010-12-24 15:59:06 +01001515 cancel_delayed_work_sync(&bdev->wq);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001516
1517 while (ttm_bo_delayed_delete(bdev, true))
1518 ;
1519
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001520 spin_lock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001521 if (list_empty(&bdev->ddestroy))
1522 TTM_DEBUG("Delayed destroy list was clean\n");
1523
1524 if (list_empty(&bdev->man[0].lru))
1525 TTM_DEBUG("Swap list was clean\n");
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001526 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001527
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001528 BUG_ON(!drm_mm_clean(&bdev->addr_space_mm));
1529 write_lock(&bdev->vm_lock);
1530 drm_mm_takedown(&bdev->addr_space_mm);
1531 write_unlock(&bdev->vm_lock);
1532
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001533 return ret;
1534}
1535EXPORT_SYMBOL(ttm_bo_device_release);
1536
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001537int ttm_bo_device_init(struct ttm_bo_device *bdev,
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001538 struct ttm_bo_global *glob,
1539 struct ttm_bo_driver *driver,
Dave Airlie51c8b402009-08-20 13:38:04 +10001540 uint64_t file_page_offset,
Dave Airliead49f502009-07-10 22:36:26 +10001541 bool need_dma32)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001542{
1543 int ret = -EINVAL;
1544
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001545 rwlock_init(&bdev->vm_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001546 bdev->driver = driver;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001547
1548 memset(bdev->man, 0, sizeof(bdev->man));
1549
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001550 /*
1551 * Initialize the system memory buffer type.
1552 * Other types need to be driver / IOCTL initialized.
1553 */
Jerome Glisseca262a9992009-12-08 15:33:32 +01001554 ret = ttm_bo_init_mm(bdev, TTM_PL_SYSTEM, 0);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001555 if (unlikely(ret != 0))
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001556 goto out_no_sys;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001557
1558 bdev->addr_space_rb = RB_ROOT;
1559 ret = drm_mm_init(&bdev->addr_space_mm, file_page_offset, 0x10000000);
1560 if (unlikely(ret != 0))
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001561 goto out_no_addr_mm;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001562
1563 INIT_DELAYED_WORK(&bdev->wq, ttm_bo_delayed_workqueue);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001564 INIT_LIST_HEAD(&bdev->ddestroy);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001565 bdev->dev_mapping = NULL;
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001566 bdev->glob = glob;
Dave Airliead49f502009-07-10 22:36:26 +10001567 bdev->need_dma32 = need_dma32;
Thomas Hellstrom65705962010-11-17 12:28:31 +00001568 bdev->val_seq = 0;
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001569 spin_lock_init(&bdev->fence_lock);
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001570 mutex_lock(&glob->device_list_mutex);
1571 list_add_tail(&bdev->device_list, &glob->device_list);
1572 mutex_unlock(&glob->device_list_mutex);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001573
1574 return 0;
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001575out_no_addr_mm:
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001576 ttm_bo_clean_mm(bdev, 0);
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001577out_no_sys:
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001578 return ret;
1579}
1580EXPORT_SYMBOL(ttm_bo_device_init);
1581
1582/*
1583 * buffer object vm functions.
1584 */
1585
1586bool ttm_mem_reg_is_pci(struct ttm_bo_device *bdev, struct ttm_mem_reg *mem)
1587{
1588 struct ttm_mem_type_manager *man = &bdev->man[mem->mem_type];
1589
1590 if (!(man->flags & TTM_MEMTYPE_FLAG_FIXED)) {
1591 if (mem->mem_type == TTM_PL_SYSTEM)
1592 return false;
1593
1594 if (man->flags & TTM_MEMTYPE_FLAG_CMA)
1595 return false;
1596
1597 if (mem->placement & TTM_PL_FLAG_CACHED)
1598 return false;
1599 }
1600 return true;
1601}
1602
Thomas Hellstromeba67092010-11-11 09:41:57 +01001603void ttm_bo_unmap_virtual_locked(struct ttm_buffer_object *bo)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001604{
1605 struct ttm_bo_device *bdev = bo->bdev;
1606 loff_t offset = (loff_t) bo->addr_space_offset;
1607 loff_t holelen = ((loff_t) bo->mem.num_pages) << PAGE_SHIFT;
1608
1609 if (!bdev->dev_mapping)
1610 return;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001611 unmap_mapping_range(bdev->dev_mapping, offset, holelen, 1);
Thomas Hellstromeba67092010-11-11 09:41:57 +01001612 ttm_mem_io_free_vm(bo);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001613}
Thomas Hellstromeba67092010-11-11 09:41:57 +01001614
1615void ttm_bo_unmap_virtual(struct ttm_buffer_object *bo)
1616{
1617 struct ttm_bo_device *bdev = bo->bdev;
1618 struct ttm_mem_type_manager *man = &bdev->man[bo->mem.mem_type];
1619
1620 ttm_mem_io_lock(man, false);
1621 ttm_bo_unmap_virtual_locked(bo);
1622 ttm_mem_io_unlock(man);
1623}
1624
1625
Dave Airliee024e112009-06-24 09:48:08 +10001626EXPORT_SYMBOL(ttm_bo_unmap_virtual);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001627
1628static void ttm_bo_vm_insert_rb(struct ttm_buffer_object *bo)
1629{
1630 struct ttm_bo_device *bdev = bo->bdev;
1631 struct rb_node **cur = &bdev->addr_space_rb.rb_node;
1632 struct rb_node *parent = NULL;
1633 struct ttm_buffer_object *cur_bo;
1634 unsigned long offset = bo->vm_node->start;
1635 unsigned long cur_offset;
1636
1637 while (*cur) {
1638 parent = *cur;
1639 cur_bo = rb_entry(parent, struct ttm_buffer_object, vm_rb);
1640 cur_offset = cur_bo->vm_node->start;
1641 if (offset < cur_offset)
1642 cur = &parent->rb_left;
1643 else if (offset > cur_offset)
1644 cur = &parent->rb_right;
1645 else
1646 BUG();
1647 }
1648
1649 rb_link_node(&bo->vm_rb, parent, cur);
1650 rb_insert_color(&bo->vm_rb, &bdev->addr_space_rb);
1651}
1652
1653/**
1654 * ttm_bo_setup_vm:
1655 *
1656 * @bo: the buffer to allocate address space for
1657 *
1658 * Allocate address space in the drm device so that applications
1659 * can mmap the buffer and access the contents. This only
1660 * applies to ttm_bo_type_device objects as others are not
1661 * placed in the drm device address space.
1662 */
1663
1664static int ttm_bo_setup_vm(struct ttm_buffer_object *bo)
1665{
1666 struct ttm_bo_device *bdev = bo->bdev;
1667 int ret;
1668
1669retry_pre_get:
1670 ret = drm_mm_pre_get(&bdev->addr_space_mm);
1671 if (unlikely(ret != 0))
1672 return ret;
1673
1674 write_lock(&bdev->vm_lock);
1675 bo->vm_node = drm_mm_search_free(&bdev->addr_space_mm,
1676 bo->mem.num_pages, 0, 0);
1677
1678 if (unlikely(bo->vm_node == NULL)) {
1679 ret = -ENOMEM;
1680 goto out_unlock;
1681 }
1682
1683 bo->vm_node = drm_mm_get_block_atomic(bo->vm_node,
1684 bo->mem.num_pages, 0);
1685
1686 if (unlikely(bo->vm_node == NULL)) {
1687 write_unlock(&bdev->vm_lock);
1688 goto retry_pre_get;
1689 }
1690
1691 ttm_bo_vm_insert_rb(bo);
1692 write_unlock(&bdev->vm_lock);
1693 bo->addr_space_offset = ((uint64_t) bo->vm_node->start) << PAGE_SHIFT;
1694
1695 return 0;
1696out_unlock:
1697 write_unlock(&bdev->vm_lock);
1698 return ret;
1699}
1700
1701int ttm_bo_wait(struct ttm_buffer_object *bo,
Dave Airlie1717c0e2011-10-27 18:28:37 +02001702 bool lazy, bool interruptible, bool no_wait)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001703{
1704 struct ttm_bo_driver *driver = bo->bdev->driver;
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001705 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001706 void *sync_obj;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001707 int ret = 0;
1708
Dave Airlie1717c0e2011-10-27 18:28:37 +02001709 if (likely(bo->sync_obj == NULL))
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001710 return 0;
1711
Dave Airlie1717c0e2011-10-27 18:28:37 +02001712 while (bo->sync_obj) {
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001713
Maarten Lankhorstdedfdff2012-10-12 15:04:00 +00001714 if (driver->sync_obj_signaled(bo->sync_obj)) {
Dave Airlie1717c0e2011-10-27 18:28:37 +02001715 void *tmp_obj = bo->sync_obj;
1716 bo->sync_obj = NULL;
1717 clear_bit(TTM_BO_PRIV_FLAG_MOVING, &bo->priv_flags);
1718 spin_unlock(&bdev->fence_lock);
1719 driver->sync_obj_unref(&tmp_obj);
1720 spin_lock(&bdev->fence_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001721 continue;
1722 }
1723
1724 if (no_wait)
1725 return -EBUSY;
1726
Dave Airlie1717c0e2011-10-27 18:28:37 +02001727 sync_obj = driver->sync_obj_ref(bo->sync_obj);
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001728 spin_unlock(&bdev->fence_lock);
Maarten Lankhorstdedfdff2012-10-12 15:04:00 +00001729 ret = driver->sync_obj_wait(sync_obj,
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001730 lazy, interruptible);
1731 if (unlikely(ret != 0)) {
1732 driver->sync_obj_unref(&sync_obj);
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001733 spin_lock(&bdev->fence_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001734 return ret;
1735 }
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001736 spin_lock(&bdev->fence_lock);
Maarten Lankhorst5fb4ef02012-10-12 15:02:19 +00001737 if (likely(bo->sync_obj == sync_obj)) {
Dave Airlie1717c0e2011-10-27 18:28:37 +02001738 void *tmp_obj = bo->sync_obj;
1739 bo->sync_obj = NULL;
1740 clear_bit(TTM_BO_PRIV_FLAG_MOVING,
1741 &bo->priv_flags);
1742 spin_unlock(&bdev->fence_lock);
1743 driver->sync_obj_unref(&sync_obj);
1744 driver->sync_obj_unref(&tmp_obj);
1745 spin_lock(&bdev->fence_lock);
Thomas Hellstromfee280d2009-08-03 12:39:06 +02001746 } else {
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001747 spin_unlock(&bdev->fence_lock);
Thomas Hellstromfee280d2009-08-03 12:39:06 +02001748 driver->sync_obj_unref(&sync_obj);
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001749 spin_lock(&bdev->fence_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001750 }
1751 }
1752 return 0;
1753}
1754EXPORT_SYMBOL(ttm_bo_wait);
1755
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001756int ttm_bo_synccpu_write_grab(struct ttm_buffer_object *bo, bool no_wait)
1757{
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001758 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001759 int ret = 0;
1760
1761 /*
Thomas Hellstrom8cfe92d2010-04-28 11:33:25 +02001762 * Using ttm_bo_reserve makes sure the lru lists are updated.
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001763 */
1764
1765 ret = ttm_bo_reserve(bo, true, no_wait, false, 0);
1766 if (unlikely(ret != 0))
1767 return ret;
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001768 spin_lock(&bdev->fence_lock);
Dave Airlie1717c0e2011-10-27 18:28:37 +02001769 ret = ttm_bo_wait(bo, false, true, no_wait);
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001770 spin_unlock(&bdev->fence_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001771 if (likely(ret == 0))
1772 atomic_inc(&bo->cpu_writers);
1773 ttm_bo_unreserve(bo);
1774 return ret;
1775}
Ben Skeggsd1ede142009-12-11 15:13:00 +10001776EXPORT_SYMBOL(ttm_bo_synccpu_write_grab);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001777
1778void ttm_bo_synccpu_write_release(struct ttm_buffer_object *bo)
1779{
Maarten Lankhorst654aa7922012-11-06 14:39:43 +01001780 atomic_dec(&bo->cpu_writers);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001781}
Ben Skeggsd1ede142009-12-11 15:13:00 +10001782EXPORT_SYMBOL(ttm_bo_synccpu_write_release);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001783
1784/**
1785 * A buffer object shrink method that tries to swap out the first
1786 * buffer object on the bo_global::swap_lru list.
1787 */
1788
1789static int ttm_bo_swapout(struct ttm_mem_shrink *shrink)
1790{
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001791 struct ttm_bo_global *glob =
1792 container_of(shrink, struct ttm_bo_global, shrink);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001793 struct ttm_buffer_object *bo;
1794 int ret = -EBUSY;
1795 int put_count;
1796 uint32_t swap_placement = (TTM_PL_FLAG_CACHED | TTM_PL_FLAG_SYSTEM);
1797
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001798 spin_lock(&glob->lru_lock);
Maarten Lankhorst2b7b3ad2012-11-28 11:25:42 +00001799 list_for_each_entry(bo, &glob->swap_lru, swap) {
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001800 ret = ttm_bo_reserve_locked(bo, false, true, false, 0);
Maarten Lankhorst2b7b3ad2012-11-28 11:25:42 +00001801 if (!ret)
1802 break;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001803 }
1804
Maarten Lankhorst2b7b3ad2012-11-28 11:25:42 +00001805 if (ret) {
1806 spin_unlock(&glob->lru_lock);
1807 return ret;
1808 }
1809
1810 kref_get(&bo->list_kref);
1811
1812 if (!list_empty(&bo->ddestroy)) {
1813 ret = ttm_bo_cleanup_refs_and_unlock(bo, false, false);
1814 kref_put(&bo->list_kref, ttm_bo_release_list);
1815 return ret;
1816 }
1817
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001818 put_count = ttm_bo_del_from_lru(bo);
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001819 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001820
Dave Airlied6ea8882010-11-22 13:24:40 +10001821 ttm_bo_list_ref_sub(bo, put_count, true);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001822
1823 /**
1824 * Wait for GPU, then move to system cached.
1825 */
1826
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001827 spin_lock(&bo->bdev->fence_lock);
Dave Airlie1717c0e2011-10-27 18:28:37 +02001828 ret = ttm_bo_wait(bo, false, false, false);
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001829 spin_unlock(&bo->bdev->fence_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001830
1831 if (unlikely(ret != 0))
1832 goto out;
1833
1834 if ((bo->mem.placement & swap_placement) != swap_placement) {
1835 struct ttm_mem_reg evict_mem;
1836
1837 evict_mem = bo->mem;
1838 evict_mem.mm_node = NULL;
1839 evict_mem.placement = TTM_PL_FLAG_SYSTEM | TTM_PL_FLAG_CACHED;
1840 evict_mem.mem_type = TTM_PL_SYSTEM;
1841
1842 ret = ttm_bo_handle_move_mem(bo, &evict_mem, true,
Maarten Lankhorst97a875c2012-11-28 11:25:44 +00001843 false, false);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001844 if (unlikely(ret != 0))
1845 goto out;
1846 }
1847
1848 ttm_bo_unmap_virtual(bo);
1849
1850 /**
1851 * Swap out. Buffer will be swapped in again as soon as
1852 * anyone tries to access a ttm page.
1853 */
1854
Thomas Hellstrom3f09ea42010-01-13 22:28:40 +01001855 if (bo->bdev->driver->swap_notify)
1856 bo->bdev->driver->swap_notify(bo);
1857
Jan Engelhardt5df23972011-04-04 01:25:18 +02001858 ret = ttm_tt_swapout(bo->ttm, bo->persistent_swap_storage);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001859out:
1860
1861 /**
1862 *
1863 * Unreserve without putting on LRU to avoid swapping out an
1864 * already swapped buffer.
1865 */
1866
1867 atomic_set(&bo->reserved, 0);
1868 wake_up_all(&bo->event_queue);
1869 kref_put(&bo->list_kref, ttm_bo_release_list);
1870 return ret;
1871}
1872
1873void ttm_bo_swapout_all(struct ttm_bo_device *bdev)
1874{
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001875 while (ttm_bo_swapout(&bdev->glob->shrink) == 0)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001876 ;
1877}
Thomas Hellstrome99e1e72010-01-13 22:28:42 +01001878EXPORT_SYMBOL(ttm_bo_swapout_all);