blob: e8e4814b12957b26bf5e08f3ad51814d3c192fa7 [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
Maarten Lankhorst63d0a412013-01-15 14:56:37 +0100216int ttm_bo_reserve_nolru(struct ttm_buffer_object *bo,
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200217 bool interruptible,
218 bool no_wait, bool use_sequence, uint32_t sequence)
219{
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200220 int ret;
221
Maarten Lankhorst63d0a412013-01-15 14:56:37 +0100222 while (unlikely(atomic_xchg(&bo->reserved, 1) != 0)) {
Thomas Hellstrom95ccb0f2010-11-11 10:04:53 +0100223 /**
224 * Deadlock avoidance for multi-bo reserving.
225 */
Thomas Hellstrom96726fe2010-11-17 12:28:28 +0000226 if (use_sequence && bo->seq_valid) {
227 /**
228 * We've already reserved this one.
229 */
230 if (unlikely(sequence == bo->val_seq))
231 return -EDEADLK;
232 /**
233 * Already reserved by a thread that will not back
234 * off for us. We need to back off.
235 */
236 if (unlikely(sequence - bo->val_seq < (1 << 31)))
237 return -EAGAIN;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200238 }
239
240 if (no_wait)
241 return -EBUSY;
242
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200243 ret = ttm_bo_wait_unreserved(bo, interruptible);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200244
245 if (unlikely(ret))
246 return ret;
247 }
248
249 if (use_sequence) {
Maarten Lankhorst63d0a412013-01-15 14:56:37 +0100250 bool wake_up = false;
Thomas Hellstrom95ccb0f2010-11-11 10:04:53 +0100251 /**
252 * Wake up waiters that may need to recheck for deadlock,
253 * if we decreased the sequence number.
254 */
255 if (unlikely((bo->val_seq - sequence < (1 << 31))
256 || !bo->seq_valid))
Maarten Lankhorst63d0a412013-01-15 14:56:37 +0100257 wake_up = true;
Thomas Hellstrom95ccb0f2010-11-11 10:04:53 +0100258
Maarten Lankhorst63d0a412013-01-15 14:56:37 +0100259 /*
260 * In the worst case with memory ordering these values can be
261 * seen in the wrong order. However since we call wake_up_all
262 * in that case, this will hopefully not pose a problem,
263 * and the worst case would only cause someone to accidentally
264 * hit -EAGAIN in ttm_bo_reserve when they see old value of
265 * val_seq. However this would only happen if seq_valid was
266 * written before val_seq was, and just means some slightly
267 * increased cpu usage
268 */
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200269 bo->val_seq = sequence;
270 bo->seq_valid = true;
Maarten Lankhorst63d0a412013-01-15 14:56:37 +0100271 if (wake_up)
272 wake_up_all(&bo->event_queue);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200273 } else {
274 bo->seq_valid = false;
275 }
276
277 return 0;
278}
279EXPORT_SYMBOL(ttm_bo_reserve);
280
281static void ttm_bo_ref_bug(struct kref *list_kref)
282{
283 BUG();
284}
285
Dave Airlied6ea8882010-11-22 13:24:40 +1000286void ttm_bo_list_ref_sub(struct ttm_buffer_object *bo, int count,
287 bool never_free)
288{
Thomas Hellstrom2357cbe2010-11-16 15:21:08 +0100289 kref_sub(&bo->list_kref, count,
290 (never_free) ? ttm_bo_ref_bug : ttm_bo_release_list);
Dave Airlied6ea8882010-11-22 13:24:40 +1000291}
292
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200293int ttm_bo_reserve(struct ttm_buffer_object *bo,
294 bool interruptible,
295 bool no_wait, bool use_sequence, uint32_t sequence)
296{
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200297 struct ttm_bo_global *glob = bo->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200298 int put_count = 0;
299 int ret;
300
Maarten Lankhorst63d0a412013-01-15 14:56:37 +0100301 ret = ttm_bo_reserve_nolru(bo, interruptible, no_wait, use_sequence,
302 sequence);
303 if (likely(ret == 0)) {
304 spin_lock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200305 put_count = ttm_bo_del_from_lru(bo);
Maarten Lankhorst63d0a412013-01-15 14:56:37 +0100306 spin_unlock(&glob->lru_lock);
307 ttm_bo_list_ref_sub(bo, put_count, true);
308 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200309
310 return ret;
311}
312
Thomas Hellstrom95762c22010-11-17 12:28:30 +0000313void ttm_bo_unreserve_locked(struct ttm_buffer_object *bo)
314{
315 ttm_bo_add_to_lru(bo);
316 atomic_set(&bo->reserved, 0);
317 wake_up_all(&bo->event_queue);
318}
319
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200320void ttm_bo_unreserve(struct ttm_buffer_object *bo)
321{
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200322 struct ttm_bo_global *glob = bo->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200323
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200324 spin_lock(&glob->lru_lock);
Thomas Hellstrom95762c22010-11-17 12:28:30 +0000325 ttm_bo_unreserve_locked(bo);
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200326 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200327}
328EXPORT_SYMBOL(ttm_bo_unreserve);
329
330/*
331 * Call bo->mutex locked.
332 */
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200333static int ttm_bo_add_ttm(struct ttm_buffer_object *bo, bool zero_alloc)
334{
335 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200336 struct ttm_bo_global *glob = bo->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200337 int ret = 0;
338 uint32_t page_flags = 0;
339
340 TTM_ASSERT_LOCKED(&bo->mutex);
341 bo->ttm = NULL;
342
Dave Airliead49f502009-07-10 22:36:26 +1000343 if (bdev->need_dma32)
344 page_flags |= TTM_PAGE_FLAG_DMA32;
345
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200346 switch (bo->type) {
347 case ttm_bo_type_device:
348 if (zero_alloc)
349 page_flags |= TTM_PAGE_FLAG_ZERO_ALLOC;
350 case ttm_bo_type_kernel:
Jerome Glisse649bf3c2011-11-01 20:46:13 -0400351 bo->ttm = bdev->driver->ttm_tt_create(bdev, bo->num_pages << PAGE_SHIFT,
352 page_flags, glob->dummy_read_page);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200353 if (unlikely(bo->ttm == NULL))
354 ret = -ENOMEM;
355 break;
Dave Airlie129b78b2012-04-02 11:46:06 +0100356 case ttm_bo_type_sg:
357 bo->ttm = bdev->driver->ttm_tt_create(bdev, bo->num_pages << PAGE_SHIFT,
358 page_flags | TTM_PAGE_FLAG_SG,
359 glob->dummy_read_page);
360 if (unlikely(bo->ttm == NULL)) {
361 ret = -ENOMEM;
362 break;
363 }
364 bo->ttm->sg = bo->sg;
365 break;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200366 default:
Joe Perches25d04792012-03-16 21:43:50 -0700367 pr_err("Illegal buffer object type\n");
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200368 ret = -EINVAL;
369 break;
370 }
371
372 return ret;
373}
374
375static int ttm_bo_handle_move_mem(struct ttm_buffer_object *bo,
376 struct ttm_mem_reg *mem,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000377 bool evict, bool interruptible,
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000378 bool no_wait_gpu)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200379{
380 struct ttm_bo_device *bdev = bo->bdev;
381 bool old_is_pci = ttm_mem_reg_is_pci(bdev, &bo->mem);
382 bool new_is_pci = ttm_mem_reg_is_pci(bdev, mem);
383 struct ttm_mem_type_manager *old_man = &bdev->man[bo->mem.mem_type];
384 struct ttm_mem_type_manager *new_man = &bdev->man[mem->mem_type];
385 int ret = 0;
386
387 if (old_is_pci || new_is_pci ||
Thomas Hellstromeba67092010-11-11 09:41:57 +0100388 ((mem->placement & bo->mem.placement & TTM_PL_MASK_CACHING) == 0)) {
389 ret = ttm_mem_io_lock(old_man, true);
390 if (unlikely(ret != 0))
391 goto out_err;
392 ttm_bo_unmap_virtual_locked(bo);
393 ttm_mem_io_unlock(old_man);
394 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200395
396 /*
397 * Create and bind a ttm if required.
398 */
399
Ben Skeggs8d3bb232011-08-22 03:15:05 +0000400 if (!(new_man->flags & TTM_MEMTYPE_FLAG_FIXED)) {
401 if (bo->ttm == NULL) {
Ben Skeggsff02b132011-09-14 06:08:06 +1000402 bool zero = !(old_man->flags & TTM_MEMTYPE_FLAG_FIXED);
403 ret = ttm_bo_add_ttm(bo, zero);
Ben Skeggs8d3bb232011-08-22 03:15:05 +0000404 if (ret)
405 goto out_err;
406 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200407
408 ret = ttm_tt_set_placement_caching(bo->ttm, mem->placement);
409 if (ret)
Thomas Hellstrom87ef9202009-06-17 12:29:57 +0200410 goto out_err;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200411
412 if (mem->mem_type != TTM_PL_SYSTEM) {
413 ret = ttm_tt_bind(bo->ttm, mem);
414 if (ret)
415 goto out_err;
416 }
417
418 if (bo->mem.mem_type == TTM_PL_SYSTEM) {
Ben Skeggs82ef5942011-02-02 00:27:10 +0000419 if (bdev->driver->move_notify)
420 bdev->driver->move_notify(bo, mem);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100421 bo->mem = *mem;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200422 mem->mm_node = NULL;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200423 goto moved;
424 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200425 }
426
Ben Skeggs9f1feed2012-01-25 15:34:22 +1000427 if (bdev->driver->move_notify)
428 bdev->driver->move_notify(bo, mem);
429
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200430 if (!(old_man->flags & TTM_MEMTYPE_FLAG_FIXED) &&
431 !(new_man->flags & TTM_MEMTYPE_FLAG_FIXED))
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000432 ret = ttm_bo_move_ttm(bo, evict, no_wait_gpu, mem);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200433 else if (bdev->driver->move)
434 ret = bdev->driver->move(bo, evict, interruptible,
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000435 no_wait_gpu, mem);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200436 else
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000437 ret = ttm_bo_move_memcpy(bo, evict, no_wait_gpu, mem);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200438
Ben Skeggs9f1feed2012-01-25 15:34:22 +1000439 if (ret) {
440 if (bdev->driver->move_notify) {
441 struct ttm_mem_reg tmp_mem = *mem;
442 *mem = bo->mem;
443 bo->mem = tmp_mem;
444 bdev->driver->move_notify(bo, mem);
445 bo->mem = *mem;
446 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200447
Ben Skeggs9f1feed2012-01-25 15:34:22 +1000448 goto out_err;
449 }
Jerome Glissedc97b342011-11-18 11:47:03 -0500450
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200451moved:
452 if (bo->evicted) {
453 ret = bdev->driver->invalidate_caches(bdev, bo->mem.placement);
454 if (ret)
Joe Perches25d04792012-03-16 21:43:50 -0700455 pr_err("Can not flush read caches\n");
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200456 bo->evicted = false;
457 }
458
459 if (bo->mem.mm_node) {
Ben Skeggsd961db72010-08-05 10:48:18 +1000460 bo->offset = (bo->mem.start << PAGE_SHIFT) +
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200461 bdev->man[bo->mem.mem_type].gpu_offset;
462 bo->cur_placement = bo->mem.placement;
Thomas Hellstrom354fb522010-01-13 22:28:45 +0100463 } else
464 bo->offset = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200465
466 return 0;
467
468out_err:
469 new_man = &bdev->man[bo->mem.mem_type];
470 if ((new_man->flags & TTM_MEMTYPE_FLAG_FIXED) && bo->ttm) {
471 ttm_tt_unbind(bo->ttm);
472 ttm_tt_destroy(bo->ttm);
473 bo->ttm = NULL;
474 }
475
476 return ret;
477}
478
479/**
Thomas Hellstrom40d857b2010-10-19 09:01:00 +0200480 * Call bo::reserved.
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200481 * Will release GPU memory type usage on destruction.
Thomas Hellstrom40d857b2010-10-19 09:01:00 +0200482 * This is the place to put in driver specific hooks to release
483 * driver private resources.
484 * Will release the bo::reserved lock.
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200485 */
486
487static void ttm_bo_cleanup_memtype_use(struct ttm_buffer_object *bo)
488{
Jerome Glissedc97b342011-11-18 11:47:03 -0500489 if (bo->bdev->driver->move_notify)
490 bo->bdev->driver->move_notify(bo, NULL);
491
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200492 if (bo->ttm) {
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200493 ttm_tt_unbind(bo->ttm);
494 ttm_tt_destroy(bo->ttm);
495 bo->ttm = NULL;
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200496 }
Thomas Hellstrom40d857b2010-10-19 09:01:00 +0200497 ttm_bo_mem_put(bo, &bo->mem);
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200498
499 atomic_set(&bo->reserved, 0);
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000500 wake_up_all(&bo->event_queue);
Thomas Hellstrom06fba6d2010-10-29 10:46:48 +0200501
502 /*
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000503 * Since the final reference to this bo may not be dropped by
504 * the current task we have to put a memory barrier here to make
505 * sure the changes done in this function are always visible.
506 *
507 * This function only needs protection against the final kref_put.
Thomas Hellstrom06fba6d2010-10-29 10:46:48 +0200508 */
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000509 smp_mb__before_atomic_dec();
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200510}
511
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200512static void ttm_bo_cleanup_refs_or_queue(struct ttm_buffer_object *bo)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200513{
514 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200515 struct ttm_bo_global *glob = bo->glob;
Maarten Lankhorst4154f052012-11-28 12:25:39 +0100516 struct ttm_bo_driver *driver = bdev->driver;
Thomas Hellstromaa123262010-11-02 13:21:47 +0000517 void *sync_obj = NULL;
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200518 int put_count;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200519 int ret;
520
Maarten Lankhorst4154f052012-11-28 12:25:39 +0100521 spin_lock(&glob->lru_lock);
Maarten Lankhorst63d0a412013-01-15 14:56:37 +0100522 ret = ttm_bo_reserve_nolru(bo, false, true, false, 0);
Maarten Lankhorst4154f052012-11-28 12:25:39 +0100523
Thomas Hellstrom702adba2010-11-17 12:28:29 +0000524 spin_lock(&bdev->fence_lock);
Dave Airlie1717c0e2011-10-27 18:28:37 +0200525 (void) ttm_bo_wait(bo, false, false, true);
Maarten Lankhorst4154f052012-11-28 12:25:39 +0100526 if (!ret && !bo->sync_obj) {
Thomas Hellstrom702adba2010-11-17 12:28:29 +0000527 spin_unlock(&bdev->fence_lock);
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200528 put_count = ttm_bo_del_from_lru(bo);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200529
Thomas Hellstrom40d857b2010-10-19 09:01:00 +0200530 spin_unlock(&glob->lru_lock);
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200531 ttm_bo_cleanup_memtype_use(bo);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200532
Dave Airlied6ea8882010-11-22 13:24:40 +1000533 ttm_bo_list_ref_sub(bo, put_count, true);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200534
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200535 return;
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200536 }
Thomas Hellstromaa123262010-11-02 13:21:47 +0000537 if (bo->sync_obj)
538 sync_obj = driver->sync_obj_ref(bo->sync_obj);
Maarten Lankhorst4154f052012-11-28 12:25:39 +0100539 spin_unlock(&bdev->fence_lock);
540
541 if (!ret) {
542 atomic_set(&bo->reserved, 0);
543 wake_up_all(&bo->event_queue);
544 }
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200545
546 kref_get(&bo->list_kref);
547 list_add_tail(&bo->ddestroy, &bdev->ddestroy);
548 spin_unlock(&glob->lru_lock);
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200549
Thomas Hellstromaa123262010-11-02 13:21:47 +0000550 if (sync_obj) {
Maarten Lankhorstdedfdff2012-10-12 15:04:00 +0000551 driver->sync_obj_flush(sync_obj);
Thomas Hellstromaa123262010-11-02 13:21:47 +0000552 driver->sync_obj_unref(&sync_obj);
553 }
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200554 schedule_delayed_work(&bdev->wq,
555 ((HZ / 100) < 1) ? 1 : HZ / 100);
556}
557
558/**
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000559 * function ttm_bo_cleanup_refs_and_unlock
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200560 * If bo idle, remove from delayed- and lru lists, and unref.
561 * If not idle, do nothing.
562 *
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000563 * Must be called with lru_lock and reservation held, this function
564 * will drop both before returning.
565 *
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200566 * @interruptible Any sleeps should occur interruptibly.
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200567 * @no_wait_gpu Never wait for gpu. Return -EBUSY instead.
568 */
569
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000570static int ttm_bo_cleanup_refs_and_unlock(struct ttm_buffer_object *bo,
571 bool interruptible,
572 bool no_wait_gpu)
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200573{
Thomas Hellstrom702adba2010-11-17 12:28:29 +0000574 struct ttm_bo_device *bdev = bo->bdev;
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000575 struct ttm_bo_driver *driver = bdev->driver;
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200576 struct ttm_bo_global *glob = bo->glob;
577 int put_count;
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000578 int ret;
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200579
Thomas Hellstrom702adba2010-11-17 12:28:29 +0000580 spin_lock(&bdev->fence_lock);
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000581 ret = ttm_bo_wait(bo, false, false, true);
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200582
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000583 if (ret && !no_wait_gpu) {
584 void *sync_obj;
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200585
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000586 /*
587 * Take a reference to the fence and unreserve,
588 * at this point the buffer should be dead, so
589 * no new sync objects can be attached.
590 */
Maarten Lankhorst0953e762012-12-19 18:21:10 +0100591 sync_obj = driver->sync_obj_ref(bo->sync_obj);
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000592 spin_unlock(&bdev->fence_lock);
Thomas Hellstrom26cc40a2011-11-21 13:05:02 +0100593
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200594 atomic_set(&bo->reserved, 0);
595 wake_up_all(&bo->event_queue);
596 spin_unlock(&glob->lru_lock);
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000597
598 ret = driver->sync_obj_wait(sync_obj, false, interruptible);
599 driver->sync_obj_unref(&sync_obj);
600 if (ret)
601 return ret;
602
603 /*
604 * remove sync_obj with ttm_bo_wait, the wait should be
605 * finished, and no new wait object should have been added.
606 */
607 spin_lock(&bdev->fence_lock);
608 ret = ttm_bo_wait(bo, false, false, true);
609 WARN_ON(ret);
610 spin_unlock(&bdev->fence_lock);
611 if (ret)
612 return ret;
613
614 spin_lock(&glob->lru_lock);
Maarten Lankhorst63d0a412013-01-15 14:56:37 +0100615 ret = ttm_bo_reserve_nolru(bo, false, true, false, 0);
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000616
617 /*
618 * We raced, and lost, someone else holds the reservation now,
619 * and is probably busy in ttm_bo_cleanup_memtype_use.
620 *
621 * Even if it's not the case, because we finished waiting any
622 * delayed destruction would succeed, so just return success
623 * here.
624 */
625 if (ret) {
626 spin_unlock(&glob->lru_lock);
627 return 0;
628 }
629 } else
630 spin_unlock(&bdev->fence_lock);
631
632 if (ret || unlikely(list_empty(&bo->ddestroy))) {
633 atomic_set(&bo->reserved, 0);
634 wake_up_all(&bo->event_queue);
635 spin_unlock(&glob->lru_lock);
636 return ret;
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200637 }
638
639 put_count = ttm_bo_del_from_lru(bo);
640 list_del_init(&bo->ddestroy);
641 ++put_count;
642
643 spin_unlock(&glob->lru_lock);
644 ttm_bo_cleanup_memtype_use(bo);
645
Dave Airlied6ea8882010-11-22 13:24:40 +1000646 ttm_bo_list_ref_sub(bo, put_count, true);
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200647
648 return 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200649}
650
651/**
652 * Traverse the delayed list, and call ttm_bo_cleanup_refs on all
653 * encountered buffers.
654 */
655
656static int ttm_bo_delayed_delete(struct ttm_bo_device *bdev, bool remove_all)
657{
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200658 struct ttm_bo_global *glob = bdev->glob;
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100659 struct ttm_buffer_object *entry = NULL;
660 int ret = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200661
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200662 spin_lock(&glob->lru_lock);
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100663 if (list_empty(&bdev->ddestroy))
664 goto out_unlock;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200665
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100666 entry = list_first_entry(&bdev->ddestroy,
667 struct ttm_buffer_object, ddestroy);
668 kref_get(&entry->list_kref);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200669
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100670 for (;;) {
671 struct ttm_buffer_object *nentry = NULL;
672
673 if (entry->ddestroy.next != &bdev->ddestroy) {
674 nentry = list_first_entry(&entry->ddestroy,
675 struct ttm_buffer_object, ddestroy);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200676 kref_get(&nentry->list_kref);
677 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200678
Maarten Lankhorst63d0a412013-01-15 14:56:37 +0100679 ret = ttm_bo_reserve_nolru(entry, false, true, false, 0);
680 if (remove_all && ret) {
681 spin_unlock(&glob->lru_lock);
682 ret = ttm_bo_reserve_nolru(entry, false, false,
683 false, 0);
684 spin_lock(&glob->lru_lock);
685 }
686
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000687 if (!ret)
688 ret = ttm_bo_cleanup_refs_and_unlock(entry, false,
689 !remove_all);
690 else
691 spin_unlock(&glob->lru_lock);
692
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200693 kref_put(&entry->list_kref, ttm_bo_release_list);
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100694 entry = nentry;
695
696 if (ret || !entry)
697 goto out;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200698
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200699 spin_lock(&glob->lru_lock);
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100700 if (list_empty(&entry->ddestroy))
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200701 break;
702 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200703
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100704out_unlock:
705 spin_unlock(&glob->lru_lock);
706out:
707 if (entry)
708 kref_put(&entry->list_kref, ttm_bo_release_list);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200709 return ret;
710}
711
712static void ttm_bo_delayed_workqueue(struct work_struct *work)
713{
714 struct ttm_bo_device *bdev =
715 container_of(work, struct ttm_bo_device, wq.work);
716
717 if (ttm_bo_delayed_delete(bdev, false)) {
718 schedule_delayed_work(&bdev->wq,
719 ((HZ / 100) < 1) ? 1 : HZ / 100);
720 }
721}
722
723static void ttm_bo_release(struct kref *kref)
724{
725 struct ttm_buffer_object *bo =
726 container_of(kref, struct ttm_buffer_object, kref);
727 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstromeba67092010-11-11 09:41:57 +0100728 struct ttm_mem_type_manager *man = &bdev->man[bo->mem.mem_type];
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200729
Thomas Hellstrom82fe50b2012-11-21 14:53:21 +0000730 write_lock(&bdev->vm_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200731 if (likely(bo->vm_node != NULL)) {
732 rb_erase(&bo->vm_rb, &bdev->addr_space_rb);
733 drm_mm_put_block(bo->vm_node);
734 bo->vm_node = NULL;
735 }
736 write_unlock(&bdev->vm_lock);
Thomas Hellstromeba67092010-11-11 09:41:57 +0100737 ttm_mem_io_lock(man, false);
738 ttm_mem_io_free_vm(bo);
739 ttm_mem_io_unlock(man);
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200740 ttm_bo_cleanup_refs_or_queue(bo);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200741 kref_put(&bo->list_kref, ttm_bo_release_list);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200742}
743
744void ttm_bo_unref(struct ttm_buffer_object **p_bo)
745{
746 struct ttm_buffer_object *bo = *p_bo;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200747
748 *p_bo = NULL;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200749 kref_put(&bo->kref, ttm_bo_release);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200750}
751EXPORT_SYMBOL(ttm_bo_unref);
752
Matthew Garrett7c5ee532010-04-26 16:00:09 -0400753int ttm_bo_lock_delayed_workqueue(struct ttm_bo_device *bdev)
754{
755 return cancel_delayed_work_sync(&bdev->wq);
756}
757EXPORT_SYMBOL(ttm_bo_lock_delayed_workqueue);
758
759void ttm_bo_unlock_delayed_workqueue(struct ttm_bo_device *bdev, int resched)
760{
761 if (resched)
762 schedule_delayed_work(&bdev->wq,
763 ((HZ / 100) < 1) ? 1 : HZ / 100);
764}
765EXPORT_SYMBOL(ttm_bo_unlock_delayed_workqueue);
766
Jerome Glisseca262a9992009-12-08 15:33:32 +0100767static int ttm_bo_evict(struct ttm_buffer_object *bo, bool interruptible,
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000768 bool no_wait_gpu)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200769{
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200770 struct ttm_bo_device *bdev = bo->bdev;
771 struct ttm_mem_reg evict_mem;
Jerome Glisseca262a9992009-12-08 15:33:32 +0100772 struct ttm_placement placement;
773 int ret = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200774
Thomas Hellstrom702adba2010-11-17 12:28:29 +0000775 spin_lock(&bdev->fence_lock);
Dave Airlie1717c0e2011-10-27 18:28:37 +0200776 ret = ttm_bo_wait(bo, false, interruptible, no_wait_gpu);
Thomas Hellstrom702adba2010-11-17 12:28:29 +0000777 spin_unlock(&bdev->fence_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200778
Thomas Hellstrom78ecf092009-06-17 12:29:55 +0200779 if (unlikely(ret != 0)) {
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +0100780 if (ret != -ERESTARTSYS) {
Joe Perches25d04792012-03-16 21:43:50 -0700781 pr_err("Failed to expire sync object before buffer eviction\n");
Thomas Hellstrom78ecf092009-06-17 12:29:55 +0200782 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200783 goto out;
784 }
785
Maarten Lankhorsta9dbfff2012-10-12 16:58:36 +0200786 BUG_ON(!ttm_bo_is_reserved(bo));
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200787
788 evict_mem = bo->mem;
789 evict_mem.mm_node = NULL;
Thomas Hellstromeba67092010-11-11 09:41:57 +0100790 evict_mem.bus.io_reserved_vm = false;
791 evict_mem.bus.io_reserved_count = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200792
Jerome Glisse7cb7d1d2009-12-09 22:14:27 +0100793 placement.fpfn = 0;
794 placement.lpfn = 0;
795 placement.num_placement = 0;
796 placement.num_busy_placement = 0;
Jerome Glisseca262a9992009-12-08 15:33:32 +0100797 bdev->driver->evict_flags(bo, &placement);
798 ret = ttm_bo_mem_space(bo, &placement, &evict_mem, interruptible,
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000799 no_wait_gpu);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200800 if (ret) {
Jerome Glissefb53f862009-12-09 21:55:10 +0100801 if (ret != -ERESTARTSYS) {
Joe Perches25d04792012-03-16 21:43:50 -0700802 pr_err("Failed to find memory space for buffer 0x%p eviction\n",
803 bo);
Jerome Glissefb53f862009-12-09 21:55:10 +0100804 ttm_bo_mem_space_debug(bo, &placement);
805 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200806 goto out;
807 }
808
809 ret = ttm_bo_handle_move_mem(bo, &evict_mem, true, interruptible,
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000810 no_wait_gpu);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200811 if (ret) {
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +0100812 if (ret != -ERESTARTSYS)
Joe Perches25d04792012-03-16 21:43:50 -0700813 pr_err("Buffer eviction failed\n");
Ben Skeggs42311ff2010-08-04 12:07:08 +1000814 ttm_bo_mem_put(bo, &evict_mem);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200815 goto out;
816 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200817 bo->evicted = true;
818out:
819 return ret;
820}
821
Jerome Glisseca262a9992009-12-08 15:33:32 +0100822static int ttm_mem_evict_first(struct ttm_bo_device *bdev,
823 uint32_t mem_type,
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000824 bool interruptible,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000825 bool no_wait_gpu)
Jerome Glisseca262a9992009-12-08 15:33:32 +0100826{
827 struct ttm_bo_global *glob = bdev->glob;
828 struct ttm_mem_type_manager *man = &bdev->man[mem_type];
829 struct ttm_buffer_object *bo;
Maarten Lankhorste7ab2012012-11-28 11:25:43 +0000830 int ret = -EBUSY, put_count;
Jerome Glisseca262a9992009-12-08 15:33:32 +0100831
832 spin_lock(&glob->lru_lock);
Maarten Lankhorste7ab2012012-11-28 11:25:43 +0000833 list_for_each_entry(bo, &man->lru, lru) {
Maarten Lankhorst63d0a412013-01-15 14:56:37 +0100834 ret = ttm_bo_reserve_nolru(bo, false, true, false, 0);
Maarten Lankhorste7ab2012012-11-28 11:25:43 +0000835 if (!ret)
836 break;
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100837 }
838
Maarten Lankhorste7ab2012012-11-28 11:25:43 +0000839 if (ret) {
840 spin_unlock(&glob->lru_lock);
Thomas Hellstromb8e902f2012-10-22 12:51:26 +0000841 return ret;
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200842 }
843
Maarten Lankhorste7ab2012012-11-28 11:25:43 +0000844 kref_get(&bo->list_kref);
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100845
Maarten Lankhorste7ab2012012-11-28 11:25:43 +0000846 if (!list_empty(&bo->ddestroy)) {
847 ret = ttm_bo_cleanup_refs_and_unlock(bo, interruptible,
848 no_wait_gpu);
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100849 kref_put(&bo->list_kref, ttm_bo_release_list);
Maarten Lankhorste7ab2012012-11-28 11:25:43 +0000850 return ret;
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100851 }
852
853 put_count = ttm_bo_del_from_lru(bo);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100854 spin_unlock(&glob->lru_lock);
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100855
856 BUG_ON(ret != 0);
857
Dave Airlied6ea8882010-11-22 13:24:40 +1000858 ttm_bo_list_ref_sub(bo, put_count, true);
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100859
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000860 ret = ttm_bo_evict(bo, interruptible, no_wait_gpu);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100861 ttm_bo_unreserve(bo);
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100862
Jerome Glisseca262a9992009-12-08 15:33:32 +0100863 kref_put(&bo->list_kref, ttm_bo_release_list);
864 return ret;
865}
866
Ben Skeggs42311ff2010-08-04 12:07:08 +1000867void ttm_bo_mem_put(struct ttm_buffer_object *bo, struct ttm_mem_reg *mem)
868{
Ben Skeggsd961db72010-08-05 10:48:18 +1000869 struct ttm_mem_type_manager *man = &bo->bdev->man[mem->mem_type];
Ben Skeggs42311ff2010-08-04 12:07:08 +1000870
Ben Skeggsd961db72010-08-05 10:48:18 +1000871 if (mem->mm_node)
872 (*man->func->put_node)(man, mem);
Ben Skeggs42311ff2010-08-04 12:07:08 +1000873}
874EXPORT_SYMBOL(ttm_bo_mem_put);
875
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200876/**
877 * Repeatedly evict memory from the LRU for @mem_type until we create enough
878 * space, or we've evicted everything and there isn't enough space.
879 */
Jerome Glisseca262a9992009-12-08 15:33:32 +0100880static int ttm_bo_mem_force_space(struct ttm_buffer_object *bo,
881 uint32_t mem_type,
882 struct ttm_placement *placement,
883 struct ttm_mem_reg *mem,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000884 bool interruptible,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000885 bool no_wait_gpu)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200886{
Jerome Glisseca262a9992009-12-08 15:33:32 +0100887 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200888 struct ttm_mem_type_manager *man = &bdev->man[mem_type];
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200889 int ret;
890
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200891 do {
Ben Skeggsd961db72010-08-05 10:48:18 +1000892 ret = (*man->func->get_node)(man, bo, placement, mem);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200893 if (unlikely(ret != 0))
894 return ret;
Ben Skeggsd961db72010-08-05 10:48:18 +1000895 if (mem->mm_node)
Jerome Glisseca262a9992009-12-08 15:33:32 +0100896 break;
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000897 ret = ttm_mem_evict_first(bdev, mem_type,
898 interruptible, no_wait_gpu);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100899 if (unlikely(ret != 0))
900 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200901 } while (1);
Ben Skeggsd961db72010-08-05 10:48:18 +1000902 if (mem->mm_node == NULL)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200903 return -ENOMEM;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200904 mem->mem_type = mem_type;
905 return 0;
906}
907
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200908static uint32_t ttm_bo_select_caching(struct ttm_mem_type_manager *man,
909 uint32_t cur_placement,
910 uint32_t proposed_placement)
911{
912 uint32_t caching = proposed_placement & TTM_PL_MASK_CACHING;
913 uint32_t result = proposed_placement & ~TTM_PL_MASK_CACHING;
914
915 /**
916 * Keep current caching if possible.
917 */
918
919 if ((cur_placement & caching) != 0)
920 result |= (cur_placement & caching);
921 else if ((man->default_caching & caching) != 0)
922 result |= man->default_caching;
923 else if ((TTM_PL_FLAG_CACHED & caching) != 0)
924 result |= TTM_PL_FLAG_CACHED;
925 else if ((TTM_PL_FLAG_WC & caching) != 0)
926 result |= TTM_PL_FLAG_WC;
927 else if ((TTM_PL_FLAG_UNCACHED & caching) != 0)
928 result |= TTM_PL_FLAG_UNCACHED;
929
930 return result;
931}
932
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200933static bool ttm_bo_mt_compatible(struct ttm_mem_type_manager *man,
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200934 uint32_t mem_type,
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200935 uint32_t proposed_placement,
936 uint32_t *masked_placement)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200937{
938 uint32_t cur_flags = ttm_bo_type_flags(mem_type);
939
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200940 if ((cur_flags & proposed_placement & TTM_PL_MASK_MEM) == 0)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200941 return false;
942
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200943 if ((proposed_placement & man->available_caching) == 0)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200944 return false;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200945
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200946 cur_flags |= (proposed_placement & man->available_caching);
947
948 *masked_placement = cur_flags;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200949 return true;
950}
951
952/**
953 * Creates space for memory region @mem according to its type.
954 *
955 * This function first searches for free space in compatible memory types in
956 * the priority order defined by the driver. If free space isn't found, then
957 * ttm_bo_mem_force_space is attempted in priority order to evict and find
958 * space.
959 */
960int ttm_bo_mem_space(struct ttm_buffer_object *bo,
Jerome Glisseca262a9992009-12-08 15:33:32 +0100961 struct ttm_placement *placement,
962 struct ttm_mem_reg *mem,
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000963 bool interruptible,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000964 bool no_wait_gpu)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200965{
966 struct ttm_bo_device *bdev = bo->bdev;
967 struct ttm_mem_type_manager *man;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200968 uint32_t mem_type = TTM_PL_SYSTEM;
969 uint32_t cur_flags = 0;
970 bool type_found = false;
971 bool type_ok = false;
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +0100972 bool has_erestartsys = false;
Jerome Glisseca262a9992009-12-08 15:33:32 +0100973 int i, ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200974
975 mem->mm_node = NULL;
Dave Airlieb6637522009-12-14 14:51:35 +1000976 for (i = 0; i < placement->num_placement; ++i) {
Jerome Glisseca262a9992009-12-08 15:33:32 +0100977 ret = ttm_mem_type_from_flags(placement->placement[i],
978 &mem_type);
979 if (ret)
980 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200981 man = &bdev->man[mem_type];
982
983 type_ok = ttm_bo_mt_compatible(man,
Jerome Glisseca262a9992009-12-08 15:33:32 +0100984 mem_type,
985 placement->placement[i],
986 &cur_flags);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200987
988 if (!type_ok)
989 continue;
990
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200991 cur_flags = ttm_bo_select_caching(man, bo->mem.placement,
992 cur_flags);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100993 /*
994 * Use the access and other non-mapping-related flag bits from
995 * the memory placement flags to the current flags
996 */
997 ttm_flag_masked(&cur_flags, placement->placement[i],
998 ~TTM_PL_MASK_MEMTYPE);
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200999
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001000 if (mem_type == TTM_PL_SYSTEM)
1001 break;
1002
1003 if (man->has_type && man->use_type) {
1004 type_found = true;
Ben Skeggsd961db72010-08-05 10:48:18 +10001005 ret = (*man->func->get_node)(man, bo, placement, mem);
Jerome Glisseca262a9992009-12-08 15:33:32 +01001006 if (unlikely(ret))
1007 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001008 }
Ben Skeggsd961db72010-08-05 10:48:18 +10001009 if (mem->mm_node)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001010 break;
1011 }
1012
Ben Skeggsd961db72010-08-05 10:48:18 +10001013 if ((type_ok && (mem_type == TTM_PL_SYSTEM)) || mem->mm_node) {
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001014 mem->mem_type = mem_type;
1015 mem->placement = cur_flags;
1016 return 0;
1017 }
1018
1019 if (!type_found)
1020 return -EINVAL;
1021
Dave Airlieb6637522009-12-14 14:51:35 +10001022 for (i = 0; i < placement->num_busy_placement; ++i) {
1023 ret = ttm_mem_type_from_flags(placement->busy_placement[i],
Jerome Glisseca262a9992009-12-08 15:33:32 +01001024 &mem_type);
1025 if (ret)
1026 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001027 man = &bdev->man[mem_type];
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001028 if (!man->has_type)
1029 continue;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001030 if (!ttm_bo_mt_compatible(man,
Jerome Glisseca262a9992009-12-08 15:33:32 +01001031 mem_type,
Dave Airlieb6637522009-12-14 14:51:35 +10001032 placement->busy_placement[i],
Jerome Glisseca262a9992009-12-08 15:33:32 +01001033 &cur_flags))
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001034 continue;
1035
Thomas Hellstromae3e8122009-06-24 19:57:34 +02001036 cur_flags = ttm_bo_select_caching(man, bo->mem.placement,
1037 cur_flags);
Jerome Glisseca262a9992009-12-08 15:33:32 +01001038 /*
1039 * Use the access and other non-mapping-related flag bits from
1040 * the memory placement flags to the current flags
1041 */
Dave Airlieb6637522009-12-14 14:51:35 +10001042 ttm_flag_masked(&cur_flags, placement->busy_placement[i],
Jerome Glisseca262a9992009-12-08 15:33:32 +01001043 ~TTM_PL_MASK_MEMTYPE);
Thomas Hellstromae3e8122009-06-24 19:57:34 +02001044
Thomas Hellstrom0eaddb22010-01-16 16:05:04 +01001045
1046 if (mem_type == TTM_PL_SYSTEM) {
1047 mem->mem_type = mem_type;
1048 mem->placement = cur_flags;
1049 mem->mm_node = NULL;
1050 return 0;
1051 }
1052
Jerome Glisseca262a9992009-12-08 15:33:32 +01001053 ret = ttm_bo_mem_force_space(bo, mem_type, placement, mem,
Maarten Lankhorst97a875c2012-11-28 11:25:44 +00001054 interruptible, no_wait_gpu);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001055 if (ret == 0 && mem->mm_node) {
1056 mem->placement = cur_flags;
1057 return 0;
1058 }
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +01001059 if (ret == -ERESTARTSYS)
1060 has_erestartsys = true;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001061 }
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +01001062 ret = (has_erestartsys) ? -ERESTARTSYS : -ENOMEM;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001063 return ret;
1064}
1065EXPORT_SYMBOL(ttm_bo_mem_space);
1066
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001067int ttm_bo_move_buffer(struct ttm_buffer_object *bo,
Jerome Glisseca262a9992009-12-08 15:33:32 +01001068 struct ttm_placement *placement,
Maarten Lankhorst97a875c2012-11-28 11:25:44 +00001069 bool interruptible,
Jerome Glisse9d87fa22010-04-07 10:21:19 +00001070 bool no_wait_gpu)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001071{
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001072 int ret = 0;
1073 struct ttm_mem_reg mem;
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001074 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001075
Maarten Lankhorsta9dbfff2012-10-12 16:58:36 +02001076 BUG_ON(!ttm_bo_is_reserved(bo));
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001077
1078 /*
1079 * FIXME: It's possible to pipeline buffer moves.
1080 * Have the driver move function wait for idle when necessary,
1081 * instead of doing it here.
1082 */
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001083 spin_lock(&bdev->fence_lock);
Dave Airlie1717c0e2011-10-27 18:28:37 +02001084 ret = ttm_bo_wait(bo, false, interruptible, no_wait_gpu);
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001085 spin_unlock(&bdev->fence_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001086 if (ret)
1087 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001088 mem.num_pages = bo->num_pages;
1089 mem.size = mem.num_pages << PAGE_SHIFT;
1090 mem.page_alignment = bo->mem.page_alignment;
Thomas Hellstromeba67092010-11-11 09:41:57 +01001091 mem.bus.io_reserved_vm = false;
1092 mem.bus.io_reserved_count = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001093 /*
1094 * Determine where to move the buffer.
1095 */
Maarten Lankhorst97a875c2012-11-28 11:25:44 +00001096 ret = ttm_bo_mem_space(bo, placement, &mem,
1097 interruptible, no_wait_gpu);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001098 if (ret)
1099 goto out_unlock;
Maarten Lankhorst97a875c2012-11-28 11:25:44 +00001100 ret = ttm_bo_handle_move_mem(bo, &mem, false,
1101 interruptible, no_wait_gpu);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001102out_unlock:
Ben Skeggsd961db72010-08-05 10:48:18 +10001103 if (ret && mem.mm_node)
1104 ttm_bo_mem_put(bo, &mem);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001105 return ret;
1106}
1107
Jerome Glisseca262a9992009-12-08 15:33:32 +01001108static int ttm_bo_mem_compat(struct ttm_placement *placement,
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001109 struct ttm_mem_reg *mem)
1110{
Jerome Glisseca262a9992009-12-08 15:33:32 +01001111 int i;
Thomas Hellstrome22238e2010-02-12 00:18:00 +01001112
Ben Skeggsd961db72010-08-05 10:48:18 +10001113 if (mem->mm_node && placement->lpfn != 0 &&
1114 (mem->start < placement->fpfn ||
1115 mem->start + mem->num_pages > placement->lpfn))
Thomas Hellstrome22238e2010-02-12 00:18:00 +01001116 return -1;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001117
Jerome Glisseca262a9992009-12-08 15:33:32 +01001118 for (i = 0; i < placement->num_placement; i++) {
1119 if ((placement->placement[i] & mem->placement &
1120 TTM_PL_MASK_CACHING) &&
1121 (placement->placement[i] & mem->placement &
1122 TTM_PL_MASK_MEM))
1123 return i;
1124 }
1125 return -1;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001126}
1127
Jerome Glisse09855ac2009-12-10 17:16:27 +01001128int ttm_bo_validate(struct ttm_buffer_object *bo,
1129 struct ttm_placement *placement,
Maarten Lankhorst97a875c2012-11-28 11:25:44 +00001130 bool interruptible,
Jerome Glisse9d87fa22010-04-07 10:21:19 +00001131 bool no_wait_gpu)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001132{
1133 int ret;
1134
Maarten Lankhorsta9dbfff2012-10-12 16:58:36 +02001135 BUG_ON(!ttm_bo_is_reserved(bo));
Jerome Glisseca262a9992009-12-08 15:33:32 +01001136 /* Check that range is valid */
1137 if (placement->lpfn || placement->fpfn)
1138 if (placement->fpfn > placement->lpfn ||
1139 (placement->lpfn - placement->fpfn) < bo->num_pages)
1140 return -EINVAL;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001141 /*
1142 * Check whether we need to move buffer.
1143 */
Jerome Glisseca262a9992009-12-08 15:33:32 +01001144 ret = ttm_bo_mem_compat(placement, &bo->mem);
1145 if (ret < 0) {
Maarten Lankhorst97a875c2012-11-28 11:25:44 +00001146 ret = ttm_bo_move_buffer(bo, placement, interruptible,
1147 no_wait_gpu);
Jerome Glisseca262a9992009-12-08 15:33:32 +01001148 if (ret)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001149 return ret;
Jerome Glisseca262a9992009-12-08 15:33:32 +01001150 } else {
1151 /*
1152 * Use the access and other non-mapping-related flag bits from
1153 * the compatible memory placement flags to the active flags
1154 */
1155 ttm_flag_masked(&bo->mem.placement, placement->placement[ret],
1156 ~TTM_PL_MASK_MEMTYPE);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001157 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001158 /*
1159 * We might need to add a TTM.
1160 */
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001161 if (bo->mem.mem_type == TTM_PL_SYSTEM && bo->ttm == NULL) {
1162 ret = ttm_bo_add_ttm(bo, true);
1163 if (ret)
1164 return ret;
1165 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001166 return 0;
1167}
Jerome Glisse09855ac2009-12-10 17:16:27 +01001168EXPORT_SYMBOL(ttm_bo_validate);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001169
Jerome Glisse09855ac2009-12-10 17:16:27 +01001170int ttm_bo_check_placement(struct ttm_buffer_object *bo,
1171 struct ttm_placement *placement)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001172{
Thomas Hellstrom29e190e2010-11-02 13:21:48 +00001173 BUG_ON((placement->fpfn || placement->lpfn) &&
1174 (bo->mem.num_pages > (placement->lpfn - placement->fpfn)));
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001175
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001176 return 0;
1177}
1178
Jerome Glisse09855ac2009-12-10 17:16:27 +01001179int ttm_bo_init(struct ttm_bo_device *bdev,
1180 struct ttm_buffer_object *bo,
1181 unsigned long size,
1182 enum ttm_bo_type type,
1183 struct ttm_placement *placement,
1184 uint32_t page_alignment,
Jerome Glisse09855ac2009-12-10 17:16:27 +01001185 bool interruptible,
Jan Engelhardt5df23972011-04-04 01:25:18 +02001186 struct file *persistent_swap_storage,
Jerome Glisse09855ac2009-12-10 17:16:27 +01001187 size_t acc_size,
Dave Airlie129b78b2012-04-02 11:46:06 +01001188 struct sg_table *sg,
Jerome Glisse09855ac2009-12-10 17:16:27 +01001189 void (*destroy) (struct ttm_buffer_object *))
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001190{
Jerome Glisse09855ac2009-12-10 17:16:27 +01001191 int ret = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001192 unsigned long num_pages;
Jerome Glisse57de4ba2011-11-11 15:42:57 -05001193 struct ttm_mem_global *mem_glob = bdev->glob->mem_glob;
1194
1195 ret = ttm_mem_global_alloc(mem_glob, acc_size, false, false);
1196 if (ret) {
Joe Perches25d04792012-03-16 21:43:50 -07001197 pr_err("Out of kernel memory\n");
Jerome Glisse57de4ba2011-11-11 15:42:57 -05001198 if (destroy)
1199 (*destroy)(bo);
1200 else
1201 kfree(bo);
1202 return -ENOMEM;
1203 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001204
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001205 num_pages = (size + PAGE_SIZE - 1) >> PAGE_SHIFT;
1206 if (num_pages == 0) {
Joe Perches25d04792012-03-16 21:43:50 -07001207 pr_err("Illegal buffer object size\n");
Thomas Hellstrom7dfbbdc2010-11-09 21:31:44 +01001208 if (destroy)
1209 (*destroy)(bo);
1210 else
1211 kfree(bo);
Thomas Hellstroma393c732012-06-12 13:28:42 +02001212 ttm_mem_global_free(mem_glob, acc_size);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001213 return -EINVAL;
1214 }
1215 bo->destroy = destroy;
1216
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001217 kref_init(&bo->kref);
1218 kref_init(&bo->list_kref);
1219 atomic_set(&bo->cpu_writers, 0);
1220 atomic_set(&bo->reserved, 1);
1221 init_waitqueue_head(&bo->event_queue);
1222 INIT_LIST_HEAD(&bo->lru);
1223 INIT_LIST_HEAD(&bo->ddestroy);
1224 INIT_LIST_HEAD(&bo->swap);
Thomas Hellstromeba67092010-11-11 09:41:57 +01001225 INIT_LIST_HEAD(&bo->io_reserve_lru);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001226 bo->bdev = bdev;
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001227 bo->glob = bdev->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001228 bo->type = type;
1229 bo->num_pages = num_pages;
Jerome Glisseeb6d2c32009-12-10 16:15:52 +01001230 bo->mem.size = num_pages << PAGE_SHIFT;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001231 bo->mem.mem_type = TTM_PL_SYSTEM;
1232 bo->mem.num_pages = bo->num_pages;
1233 bo->mem.mm_node = NULL;
1234 bo->mem.page_alignment = page_alignment;
Thomas Hellstromeba67092010-11-11 09:41:57 +01001235 bo->mem.bus.io_reserved_vm = false;
1236 bo->mem.bus.io_reserved_count = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001237 bo->priv_flags = 0;
1238 bo->mem.placement = (TTM_PL_FLAG_SYSTEM | TTM_PL_FLAG_CACHED);
1239 bo->seq_valid = false;
Jan Engelhardt5df23972011-04-04 01:25:18 +02001240 bo->persistent_swap_storage = persistent_swap_storage;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001241 bo->acc_size = acc_size;
Dave Airlie129b78b2012-04-02 11:46:06 +01001242 bo->sg = sg;
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001243 atomic_inc(&bo->glob->bo_count);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001244
Jerome Glisse09855ac2009-12-10 17:16:27 +01001245 ret = ttm_bo_check_placement(bo, placement);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001246 if (unlikely(ret != 0))
1247 goto out_err;
1248
1249 /*
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001250 * For ttm_bo_type_device buffers, allocate
1251 * address space from the device.
1252 */
Dave Airlie129b78b2012-04-02 11:46:06 +01001253 if (bo->type == ttm_bo_type_device ||
1254 bo->type == ttm_bo_type_sg) {
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001255 ret = ttm_bo_setup_vm(bo);
1256 if (ret)
1257 goto out_err;
1258 }
1259
Maarten Lankhorst97a875c2012-11-28 11:25:44 +00001260 ret = ttm_bo_validate(bo, placement, interruptible, false);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001261 if (ret)
1262 goto out_err;
1263
1264 ttm_bo_unreserve(bo);
1265 return 0;
1266
1267out_err:
1268 ttm_bo_unreserve(bo);
1269 ttm_bo_unref(&bo);
1270
1271 return ret;
1272}
Jerome Glisse09855ac2009-12-10 17:16:27 +01001273EXPORT_SYMBOL(ttm_bo_init);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001274
Jerome Glisse57de4ba2011-11-11 15:42:57 -05001275size_t ttm_bo_acc_size(struct ttm_bo_device *bdev,
1276 unsigned long bo_size,
1277 unsigned struct_size)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001278{
Jerome Glisse57de4ba2011-11-11 15:42:57 -05001279 unsigned npages = (PAGE_ALIGN(bo_size)) >> PAGE_SHIFT;
1280 size_t size = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001281
Jerome Glisse57de4ba2011-11-11 15:42:57 -05001282 size += ttm_round_pot(struct_size);
1283 size += PAGE_ALIGN(npages * sizeof(void *));
1284 size += ttm_round_pot(sizeof(struct ttm_tt));
1285 return size;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001286}
Jerome Glisse57de4ba2011-11-11 15:42:57 -05001287EXPORT_SYMBOL(ttm_bo_acc_size);
1288
1289size_t ttm_bo_dma_acc_size(struct ttm_bo_device *bdev,
1290 unsigned long bo_size,
1291 unsigned struct_size)
1292{
1293 unsigned npages = (PAGE_ALIGN(bo_size)) >> PAGE_SHIFT;
1294 size_t size = 0;
1295
1296 size += ttm_round_pot(struct_size);
1297 size += PAGE_ALIGN(npages * sizeof(void *));
1298 size += PAGE_ALIGN(npages * sizeof(dma_addr_t));
1299 size += ttm_round_pot(sizeof(struct ttm_dma_tt));
1300 return size;
1301}
1302EXPORT_SYMBOL(ttm_bo_dma_acc_size);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001303
Jerome Glisse09855ac2009-12-10 17:16:27 +01001304int ttm_bo_create(struct ttm_bo_device *bdev,
1305 unsigned long size,
1306 enum ttm_bo_type type,
1307 struct ttm_placement *placement,
1308 uint32_t page_alignment,
Jerome Glisse09855ac2009-12-10 17:16:27 +01001309 bool interruptible,
Jan Engelhardt5df23972011-04-04 01:25:18 +02001310 struct file *persistent_swap_storage,
Jerome Glisse09855ac2009-12-10 17:16:27 +01001311 struct ttm_buffer_object **p_bo)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001312{
1313 struct ttm_buffer_object *bo;
Jerome Glisse57de4ba2011-11-11 15:42:57 -05001314 size_t acc_size;
Jerome Glisseca262a9992009-12-08 15:33:32 +01001315 int ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001316
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001317 bo = kzalloc(sizeof(*bo), GFP_KERNEL);
Thomas Hellstroma393c732012-06-12 13:28:42 +02001318 if (unlikely(bo == NULL))
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001319 return -ENOMEM;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001320
Thomas Hellstroma393c732012-06-12 13:28:42 +02001321 acc_size = ttm_bo_acc_size(bdev, size, sizeof(struct ttm_buffer_object));
Jerome Glisse09855ac2009-12-10 17:16:27 +01001322 ret = ttm_bo_init(bdev, bo, size, type, placement, page_alignment,
Marcin Slusarz0b91c4a2012-11-06 21:49:51 +00001323 interruptible, persistent_swap_storage, acc_size,
1324 NULL, NULL);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001325 if (likely(ret == 0))
1326 *p_bo = bo;
1327
1328 return ret;
1329}
Thomas Hellstrom4d798932011-10-04 20:13:11 +02001330EXPORT_SYMBOL(ttm_bo_create);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001331
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001332static int ttm_bo_force_list_clean(struct ttm_bo_device *bdev,
Jerome Glisseca262a9992009-12-08 15:33:32 +01001333 unsigned mem_type, bool allow_errors)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001334{
Jerome Glisseca262a9992009-12-08 15:33:32 +01001335 struct ttm_mem_type_manager *man = &bdev->man[mem_type];
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001336 struct ttm_bo_global *glob = bdev->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001337 int ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001338
1339 /*
1340 * Can't use standard list traversal since we're unlocking.
1341 */
1342
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001343 spin_lock(&glob->lru_lock);
Jerome Glisseca262a9992009-12-08 15:33:32 +01001344 while (!list_empty(&man->lru)) {
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001345 spin_unlock(&glob->lru_lock);
Maarten Lankhorst97a875c2012-11-28 11:25:44 +00001346 ret = ttm_mem_evict_first(bdev, mem_type, false, false);
Jerome Glisseca262a9992009-12-08 15:33:32 +01001347 if (ret) {
1348 if (allow_errors) {
1349 return ret;
1350 } else {
Joe Perches25d04792012-03-16 21:43:50 -07001351 pr_err("Cleanup eviction failed\n");
Jerome Glisseca262a9992009-12-08 15:33:32 +01001352 }
1353 }
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001354 spin_lock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001355 }
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001356 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001357 return 0;
1358}
1359
1360int ttm_bo_clean_mm(struct ttm_bo_device *bdev, unsigned mem_type)
1361{
Roel Kluinc96e7c72009-08-03 14:22:53 +02001362 struct ttm_mem_type_manager *man;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001363 int ret = -EINVAL;
1364
1365 if (mem_type >= TTM_NUM_MEM_TYPES) {
Joe Perches25d04792012-03-16 21:43:50 -07001366 pr_err("Illegal memory type %d\n", mem_type);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001367 return ret;
1368 }
Roel Kluinc96e7c72009-08-03 14:22:53 +02001369 man = &bdev->man[mem_type];
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001370
1371 if (!man->has_type) {
Joe Perches25d04792012-03-16 21:43:50 -07001372 pr_err("Trying to take down uninitialized memory manager type %u\n",
1373 mem_type);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001374 return ret;
1375 }
1376
1377 man->use_type = false;
1378 man->has_type = false;
1379
1380 ret = 0;
1381 if (mem_type > 0) {
Jerome Glisseca262a9992009-12-08 15:33:32 +01001382 ttm_bo_force_list_clean(bdev, mem_type, false);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001383
Ben Skeggsd961db72010-08-05 10:48:18 +10001384 ret = (*man->func->takedown)(man);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001385 }
1386
1387 return ret;
1388}
1389EXPORT_SYMBOL(ttm_bo_clean_mm);
1390
1391int ttm_bo_evict_mm(struct ttm_bo_device *bdev, unsigned mem_type)
1392{
1393 struct ttm_mem_type_manager *man = &bdev->man[mem_type];
1394
1395 if (mem_type == 0 || mem_type >= TTM_NUM_MEM_TYPES) {
Joe Perches25d04792012-03-16 21:43:50 -07001396 pr_err("Illegal memory manager memory type %u\n", mem_type);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001397 return -EINVAL;
1398 }
1399
1400 if (!man->has_type) {
Joe Perches25d04792012-03-16 21:43:50 -07001401 pr_err("Memory type %u has not been initialized\n", mem_type);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001402 return 0;
1403 }
1404
Jerome Glisseca262a9992009-12-08 15:33:32 +01001405 return ttm_bo_force_list_clean(bdev, mem_type, true);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001406}
1407EXPORT_SYMBOL(ttm_bo_evict_mm);
1408
1409int ttm_bo_init_mm(struct ttm_bo_device *bdev, unsigned type,
Jerome Glisseca262a9992009-12-08 15:33:32 +01001410 unsigned long p_size)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001411{
1412 int ret = -EINVAL;
1413 struct ttm_mem_type_manager *man;
1414
Thomas Hellstromdbc4a5b2010-10-29 10:46:47 +02001415 BUG_ON(type >= TTM_NUM_MEM_TYPES);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001416 man = &bdev->man[type];
Thomas Hellstromdbc4a5b2010-10-29 10:46:47 +02001417 BUG_ON(man->has_type);
Thomas Hellstromeba67092010-11-11 09:41:57 +01001418 man->io_reserve_fastpath = true;
1419 man->use_io_reserve_lru = false;
1420 mutex_init(&man->io_reserve_mutex);
1421 INIT_LIST_HEAD(&man->io_reserve_lru);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001422
1423 ret = bdev->driver->init_mem_type(bdev, type, man);
1424 if (ret)
1425 return ret;
Ben Skeggsd961db72010-08-05 10:48:18 +10001426 man->bdev = bdev;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001427
1428 ret = 0;
1429 if (type != TTM_PL_SYSTEM) {
Ben Skeggsd961db72010-08-05 10:48:18 +10001430 ret = (*man->func->init)(man, p_size);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001431 if (ret)
1432 return ret;
1433 }
1434 man->has_type = true;
1435 man->use_type = true;
1436 man->size = p_size;
1437
1438 INIT_LIST_HEAD(&man->lru);
1439
1440 return 0;
1441}
1442EXPORT_SYMBOL(ttm_bo_init_mm);
1443
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001444static void ttm_bo_global_kobj_release(struct kobject *kobj)
1445{
1446 struct ttm_bo_global *glob =
1447 container_of(kobj, struct ttm_bo_global, kobj);
1448
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001449 ttm_mem_unregister_shrink(glob->mem_glob, &glob->shrink);
1450 __free_page(glob->dummy_read_page);
1451 kfree(glob);
1452}
1453
Dave Airlieba4420c2010-03-09 10:56:52 +10001454void ttm_bo_global_release(struct drm_global_reference *ref)
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001455{
1456 struct ttm_bo_global *glob = ref->object;
1457
1458 kobject_del(&glob->kobj);
1459 kobject_put(&glob->kobj);
1460}
1461EXPORT_SYMBOL(ttm_bo_global_release);
1462
Dave Airlieba4420c2010-03-09 10:56:52 +10001463int ttm_bo_global_init(struct drm_global_reference *ref)
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001464{
1465 struct ttm_bo_global_ref *bo_ref =
1466 container_of(ref, struct ttm_bo_global_ref, ref);
1467 struct ttm_bo_global *glob = ref->object;
1468 int ret;
1469
1470 mutex_init(&glob->device_list_mutex);
1471 spin_lock_init(&glob->lru_lock);
1472 glob->mem_glob = bo_ref->mem_glob;
1473 glob->dummy_read_page = alloc_page(__GFP_ZERO | GFP_DMA32);
1474
1475 if (unlikely(glob->dummy_read_page == NULL)) {
1476 ret = -ENOMEM;
1477 goto out_no_drp;
1478 }
1479
1480 INIT_LIST_HEAD(&glob->swap_lru);
1481 INIT_LIST_HEAD(&glob->device_list);
1482
1483 ttm_mem_init_shrink(&glob->shrink, ttm_bo_swapout);
1484 ret = ttm_mem_register_shrink(glob->mem_glob, &glob->shrink);
1485 if (unlikely(ret != 0)) {
Joe Perches25d04792012-03-16 21:43:50 -07001486 pr_err("Could not register buffer object swapout\n");
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001487 goto out_no_shrink;
1488 }
1489
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001490 atomic_set(&glob->bo_count, 0);
1491
Robert P. J. Dayb642ed02010-03-13 10:36:32 +00001492 ret = kobject_init_and_add(
1493 &glob->kobj, &ttm_bo_glob_kobj_type, ttm_get_kobj(), "buffer_objects");
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001494 if (unlikely(ret != 0))
1495 kobject_put(&glob->kobj);
1496 return ret;
1497out_no_shrink:
1498 __free_page(glob->dummy_read_page);
1499out_no_drp:
1500 kfree(glob);
1501 return ret;
1502}
1503EXPORT_SYMBOL(ttm_bo_global_init);
1504
1505
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001506int ttm_bo_device_release(struct ttm_bo_device *bdev)
1507{
1508 int ret = 0;
1509 unsigned i = TTM_NUM_MEM_TYPES;
1510 struct ttm_mem_type_manager *man;
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001511 struct ttm_bo_global *glob = bdev->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001512
1513 while (i--) {
1514 man = &bdev->man[i];
1515 if (man->has_type) {
1516 man->use_type = false;
1517 if ((i != TTM_PL_SYSTEM) && ttm_bo_clean_mm(bdev, i)) {
1518 ret = -EBUSY;
Joe Perches25d04792012-03-16 21:43:50 -07001519 pr_err("DRM memory manager type %d is not clean\n",
1520 i);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001521 }
1522 man->has_type = false;
1523 }
1524 }
1525
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001526 mutex_lock(&glob->device_list_mutex);
1527 list_del(&bdev->device_list);
1528 mutex_unlock(&glob->device_list_mutex);
1529
Tejun Heof094cfc2010-12-24 15:59:06 +01001530 cancel_delayed_work_sync(&bdev->wq);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001531
1532 while (ttm_bo_delayed_delete(bdev, true))
1533 ;
1534
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001535 spin_lock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001536 if (list_empty(&bdev->ddestroy))
1537 TTM_DEBUG("Delayed destroy list was clean\n");
1538
1539 if (list_empty(&bdev->man[0].lru))
1540 TTM_DEBUG("Swap list was clean\n");
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001541 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001542
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001543 BUG_ON(!drm_mm_clean(&bdev->addr_space_mm));
1544 write_lock(&bdev->vm_lock);
1545 drm_mm_takedown(&bdev->addr_space_mm);
1546 write_unlock(&bdev->vm_lock);
1547
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001548 return ret;
1549}
1550EXPORT_SYMBOL(ttm_bo_device_release);
1551
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001552int ttm_bo_device_init(struct ttm_bo_device *bdev,
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001553 struct ttm_bo_global *glob,
1554 struct ttm_bo_driver *driver,
Dave Airlie51c8b402009-08-20 13:38:04 +10001555 uint64_t file_page_offset,
Dave Airliead49f502009-07-10 22:36:26 +10001556 bool need_dma32)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001557{
1558 int ret = -EINVAL;
1559
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001560 rwlock_init(&bdev->vm_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001561 bdev->driver = driver;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001562
1563 memset(bdev->man, 0, sizeof(bdev->man));
1564
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001565 /*
1566 * Initialize the system memory buffer type.
1567 * Other types need to be driver / IOCTL initialized.
1568 */
Jerome Glisseca262a9992009-12-08 15:33:32 +01001569 ret = ttm_bo_init_mm(bdev, TTM_PL_SYSTEM, 0);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001570 if (unlikely(ret != 0))
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001571 goto out_no_sys;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001572
1573 bdev->addr_space_rb = RB_ROOT;
1574 ret = drm_mm_init(&bdev->addr_space_mm, file_page_offset, 0x10000000);
1575 if (unlikely(ret != 0))
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001576 goto out_no_addr_mm;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001577
1578 INIT_DELAYED_WORK(&bdev->wq, ttm_bo_delayed_workqueue);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001579 INIT_LIST_HEAD(&bdev->ddestroy);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001580 bdev->dev_mapping = NULL;
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001581 bdev->glob = glob;
Dave Airliead49f502009-07-10 22:36:26 +10001582 bdev->need_dma32 = need_dma32;
Thomas Hellstrom65705962010-11-17 12:28:31 +00001583 bdev->val_seq = 0;
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001584 spin_lock_init(&bdev->fence_lock);
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001585 mutex_lock(&glob->device_list_mutex);
1586 list_add_tail(&bdev->device_list, &glob->device_list);
1587 mutex_unlock(&glob->device_list_mutex);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001588
1589 return 0;
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001590out_no_addr_mm:
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001591 ttm_bo_clean_mm(bdev, 0);
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001592out_no_sys:
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001593 return ret;
1594}
1595EXPORT_SYMBOL(ttm_bo_device_init);
1596
1597/*
1598 * buffer object vm functions.
1599 */
1600
1601bool ttm_mem_reg_is_pci(struct ttm_bo_device *bdev, struct ttm_mem_reg *mem)
1602{
1603 struct ttm_mem_type_manager *man = &bdev->man[mem->mem_type];
1604
1605 if (!(man->flags & TTM_MEMTYPE_FLAG_FIXED)) {
1606 if (mem->mem_type == TTM_PL_SYSTEM)
1607 return false;
1608
1609 if (man->flags & TTM_MEMTYPE_FLAG_CMA)
1610 return false;
1611
1612 if (mem->placement & TTM_PL_FLAG_CACHED)
1613 return false;
1614 }
1615 return true;
1616}
1617
Thomas Hellstromeba67092010-11-11 09:41:57 +01001618void ttm_bo_unmap_virtual_locked(struct ttm_buffer_object *bo)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001619{
1620 struct ttm_bo_device *bdev = bo->bdev;
1621 loff_t offset = (loff_t) bo->addr_space_offset;
1622 loff_t holelen = ((loff_t) bo->mem.num_pages) << PAGE_SHIFT;
1623
1624 if (!bdev->dev_mapping)
1625 return;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001626 unmap_mapping_range(bdev->dev_mapping, offset, holelen, 1);
Thomas Hellstromeba67092010-11-11 09:41:57 +01001627 ttm_mem_io_free_vm(bo);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001628}
Thomas Hellstromeba67092010-11-11 09:41:57 +01001629
1630void ttm_bo_unmap_virtual(struct ttm_buffer_object *bo)
1631{
1632 struct ttm_bo_device *bdev = bo->bdev;
1633 struct ttm_mem_type_manager *man = &bdev->man[bo->mem.mem_type];
1634
1635 ttm_mem_io_lock(man, false);
1636 ttm_bo_unmap_virtual_locked(bo);
1637 ttm_mem_io_unlock(man);
1638}
1639
1640
Dave Airliee024e112009-06-24 09:48:08 +10001641EXPORT_SYMBOL(ttm_bo_unmap_virtual);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001642
1643static void ttm_bo_vm_insert_rb(struct ttm_buffer_object *bo)
1644{
1645 struct ttm_bo_device *bdev = bo->bdev;
1646 struct rb_node **cur = &bdev->addr_space_rb.rb_node;
1647 struct rb_node *parent = NULL;
1648 struct ttm_buffer_object *cur_bo;
1649 unsigned long offset = bo->vm_node->start;
1650 unsigned long cur_offset;
1651
1652 while (*cur) {
1653 parent = *cur;
1654 cur_bo = rb_entry(parent, struct ttm_buffer_object, vm_rb);
1655 cur_offset = cur_bo->vm_node->start;
1656 if (offset < cur_offset)
1657 cur = &parent->rb_left;
1658 else if (offset > cur_offset)
1659 cur = &parent->rb_right;
1660 else
1661 BUG();
1662 }
1663
1664 rb_link_node(&bo->vm_rb, parent, cur);
1665 rb_insert_color(&bo->vm_rb, &bdev->addr_space_rb);
1666}
1667
1668/**
1669 * ttm_bo_setup_vm:
1670 *
1671 * @bo: the buffer to allocate address space for
1672 *
1673 * Allocate address space in the drm device so that applications
1674 * can mmap the buffer and access the contents. This only
1675 * applies to ttm_bo_type_device objects as others are not
1676 * placed in the drm device address space.
1677 */
1678
1679static int ttm_bo_setup_vm(struct ttm_buffer_object *bo)
1680{
1681 struct ttm_bo_device *bdev = bo->bdev;
1682 int ret;
1683
1684retry_pre_get:
1685 ret = drm_mm_pre_get(&bdev->addr_space_mm);
1686 if (unlikely(ret != 0))
1687 return ret;
1688
1689 write_lock(&bdev->vm_lock);
1690 bo->vm_node = drm_mm_search_free(&bdev->addr_space_mm,
1691 bo->mem.num_pages, 0, 0);
1692
1693 if (unlikely(bo->vm_node == NULL)) {
1694 ret = -ENOMEM;
1695 goto out_unlock;
1696 }
1697
1698 bo->vm_node = drm_mm_get_block_atomic(bo->vm_node,
1699 bo->mem.num_pages, 0);
1700
1701 if (unlikely(bo->vm_node == NULL)) {
1702 write_unlock(&bdev->vm_lock);
1703 goto retry_pre_get;
1704 }
1705
1706 ttm_bo_vm_insert_rb(bo);
1707 write_unlock(&bdev->vm_lock);
1708 bo->addr_space_offset = ((uint64_t) bo->vm_node->start) << PAGE_SHIFT;
1709
1710 return 0;
1711out_unlock:
1712 write_unlock(&bdev->vm_lock);
1713 return ret;
1714}
1715
1716int ttm_bo_wait(struct ttm_buffer_object *bo,
Dave Airlie1717c0e2011-10-27 18:28:37 +02001717 bool lazy, bool interruptible, bool no_wait)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001718{
1719 struct ttm_bo_driver *driver = bo->bdev->driver;
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001720 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001721 void *sync_obj;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001722 int ret = 0;
1723
Dave Airlie1717c0e2011-10-27 18:28:37 +02001724 if (likely(bo->sync_obj == NULL))
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001725 return 0;
1726
Dave Airlie1717c0e2011-10-27 18:28:37 +02001727 while (bo->sync_obj) {
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001728
Maarten Lankhorstdedfdff2012-10-12 15:04:00 +00001729 if (driver->sync_obj_signaled(bo->sync_obj)) {
Dave Airlie1717c0e2011-10-27 18:28:37 +02001730 void *tmp_obj = bo->sync_obj;
1731 bo->sync_obj = NULL;
1732 clear_bit(TTM_BO_PRIV_FLAG_MOVING, &bo->priv_flags);
1733 spin_unlock(&bdev->fence_lock);
1734 driver->sync_obj_unref(&tmp_obj);
1735 spin_lock(&bdev->fence_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001736 continue;
1737 }
1738
1739 if (no_wait)
1740 return -EBUSY;
1741
Dave Airlie1717c0e2011-10-27 18:28:37 +02001742 sync_obj = driver->sync_obj_ref(bo->sync_obj);
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001743 spin_unlock(&bdev->fence_lock);
Maarten Lankhorstdedfdff2012-10-12 15:04:00 +00001744 ret = driver->sync_obj_wait(sync_obj,
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001745 lazy, interruptible);
1746 if (unlikely(ret != 0)) {
1747 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 return ret;
1750 }
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001751 spin_lock(&bdev->fence_lock);
Maarten Lankhorst5fb4ef02012-10-12 15:02:19 +00001752 if (likely(bo->sync_obj == sync_obj)) {
Dave Airlie1717c0e2011-10-27 18:28:37 +02001753 void *tmp_obj = bo->sync_obj;
1754 bo->sync_obj = NULL;
1755 clear_bit(TTM_BO_PRIV_FLAG_MOVING,
1756 &bo->priv_flags);
1757 spin_unlock(&bdev->fence_lock);
1758 driver->sync_obj_unref(&sync_obj);
1759 driver->sync_obj_unref(&tmp_obj);
1760 spin_lock(&bdev->fence_lock);
Thomas Hellstromfee280d2009-08-03 12:39:06 +02001761 } else {
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001762 spin_unlock(&bdev->fence_lock);
Thomas Hellstromfee280d2009-08-03 12:39:06 +02001763 driver->sync_obj_unref(&sync_obj);
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001764 spin_lock(&bdev->fence_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001765 }
1766 }
1767 return 0;
1768}
1769EXPORT_SYMBOL(ttm_bo_wait);
1770
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001771int ttm_bo_synccpu_write_grab(struct ttm_buffer_object *bo, bool no_wait)
1772{
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001773 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001774 int ret = 0;
1775
1776 /*
Thomas Hellstrom8cfe92d2010-04-28 11:33:25 +02001777 * Using ttm_bo_reserve makes sure the lru lists are updated.
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001778 */
1779
1780 ret = ttm_bo_reserve(bo, true, no_wait, false, 0);
1781 if (unlikely(ret != 0))
1782 return ret;
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001783 spin_lock(&bdev->fence_lock);
Dave Airlie1717c0e2011-10-27 18:28:37 +02001784 ret = ttm_bo_wait(bo, false, true, no_wait);
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001785 spin_unlock(&bdev->fence_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001786 if (likely(ret == 0))
1787 atomic_inc(&bo->cpu_writers);
1788 ttm_bo_unreserve(bo);
1789 return ret;
1790}
Ben Skeggsd1ede142009-12-11 15:13:00 +10001791EXPORT_SYMBOL(ttm_bo_synccpu_write_grab);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001792
1793void ttm_bo_synccpu_write_release(struct ttm_buffer_object *bo)
1794{
Maarten Lankhorst654aa7922012-11-06 14:39:43 +01001795 atomic_dec(&bo->cpu_writers);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001796}
Ben Skeggsd1ede142009-12-11 15:13:00 +10001797EXPORT_SYMBOL(ttm_bo_synccpu_write_release);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001798
1799/**
1800 * A buffer object shrink method that tries to swap out the first
1801 * buffer object on the bo_global::swap_lru list.
1802 */
1803
1804static int ttm_bo_swapout(struct ttm_mem_shrink *shrink)
1805{
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001806 struct ttm_bo_global *glob =
1807 container_of(shrink, struct ttm_bo_global, shrink);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001808 struct ttm_buffer_object *bo;
1809 int ret = -EBUSY;
1810 int put_count;
1811 uint32_t swap_placement = (TTM_PL_FLAG_CACHED | TTM_PL_FLAG_SYSTEM);
1812
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001813 spin_lock(&glob->lru_lock);
Maarten Lankhorst2b7b3ad2012-11-28 11:25:42 +00001814 list_for_each_entry(bo, &glob->swap_lru, swap) {
Maarten Lankhorst63d0a412013-01-15 14:56:37 +01001815 ret = ttm_bo_reserve_nolru(bo, false, true, false, 0);
Maarten Lankhorst2b7b3ad2012-11-28 11:25:42 +00001816 if (!ret)
1817 break;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001818 }
1819
Maarten Lankhorst2b7b3ad2012-11-28 11:25:42 +00001820 if (ret) {
1821 spin_unlock(&glob->lru_lock);
1822 return ret;
1823 }
1824
1825 kref_get(&bo->list_kref);
1826
1827 if (!list_empty(&bo->ddestroy)) {
1828 ret = ttm_bo_cleanup_refs_and_unlock(bo, false, false);
1829 kref_put(&bo->list_kref, ttm_bo_release_list);
1830 return ret;
1831 }
1832
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001833 put_count = ttm_bo_del_from_lru(bo);
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001834 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001835
Dave Airlied6ea8882010-11-22 13:24:40 +10001836 ttm_bo_list_ref_sub(bo, put_count, true);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001837
1838 /**
1839 * Wait for GPU, then move to system cached.
1840 */
1841
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001842 spin_lock(&bo->bdev->fence_lock);
Dave Airlie1717c0e2011-10-27 18:28:37 +02001843 ret = ttm_bo_wait(bo, false, false, false);
Thomas Hellstrom702adba2010-11-17 12:28:29 +00001844 spin_unlock(&bo->bdev->fence_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001845
1846 if (unlikely(ret != 0))
1847 goto out;
1848
1849 if ((bo->mem.placement & swap_placement) != swap_placement) {
1850 struct ttm_mem_reg evict_mem;
1851
1852 evict_mem = bo->mem;
1853 evict_mem.mm_node = NULL;
1854 evict_mem.placement = TTM_PL_FLAG_SYSTEM | TTM_PL_FLAG_CACHED;
1855 evict_mem.mem_type = TTM_PL_SYSTEM;
1856
1857 ret = ttm_bo_handle_move_mem(bo, &evict_mem, true,
Maarten Lankhorst97a875c2012-11-28 11:25:44 +00001858 false, false);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001859 if (unlikely(ret != 0))
1860 goto out;
1861 }
1862
1863 ttm_bo_unmap_virtual(bo);
1864
1865 /**
1866 * Swap out. Buffer will be swapped in again as soon as
1867 * anyone tries to access a ttm page.
1868 */
1869
Thomas Hellstrom3f09ea42010-01-13 22:28:40 +01001870 if (bo->bdev->driver->swap_notify)
1871 bo->bdev->driver->swap_notify(bo);
1872
Jan Engelhardt5df23972011-04-04 01:25:18 +02001873 ret = ttm_tt_swapout(bo->ttm, bo->persistent_swap_storage);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001874out:
1875
1876 /**
1877 *
1878 * Unreserve without putting on LRU to avoid swapping out an
1879 * already swapped buffer.
1880 */
1881
1882 atomic_set(&bo->reserved, 0);
1883 wake_up_all(&bo->event_queue);
1884 kref_put(&bo->list_kref, ttm_bo_release_list);
1885 return ret;
1886}
1887
1888void ttm_bo_swapout_all(struct ttm_bo_device *bdev)
1889{
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001890 while (ttm_bo_swapout(&bdev->glob->shrink) == 0)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001891 ;
1892}
Thomas Hellstrome99e1e72010-01-13 22:28:42 +01001893EXPORT_SYMBOL(ttm_bo_swapout_all);