blob: a98a5d5d756db6a3b608bd614bbd20910dd59088 [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>
Maarten Lankhorstf2c24b82014-04-02 17:14:48 +020043#include <linux/reservation.h>
Thomas Hellstromba4e7d92009-06-10 15:20:19 +020044
45#define TTM_ASSERT_LOCKED(param)
46#define TTM_DEBUG(fmt, arg...)
47#define TTM_BO_HASH_ORDER 13
48
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
Christian Königf1217ed2014-08-27 13:16:04 +020057static inline int ttm_mem_type_from_place(const struct ttm_place *place,
58 uint32_t *mem_type)
Jerome Glissefb53f862009-12-09 21:55:10 +010059{
60 int i;
61
62 for (i = 0; i <= TTM_PL_PRIV5; i++)
Christian Königf1217ed2014-08-27 13:16:04 +020063 if (place->flags & (1 << i)) {
Jerome Glissefb53f862009-12-09 21:55:10 +010064 *mem_type = i;
65 return 0;
66 }
67 return -EINVAL;
68}
69
Jerome Glisse5012f502009-12-10 18:07:26 +010070static void ttm_mem_type_debug(struct ttm_bo_device *bdev, int mem_type)
Jerome Glissefb53f862009-12-09 21:55:10 +010071{
Jerome Glisse5012f502009-12-10 18:07:26 +010072 struct ttm_mem_type_manager *man = &bdev->man[mem_type];
73
Joe Perches25d04792012-03-16 21:43:50 -070074 pr_err(" has_type: %d\n", man->has_type);
75 pr_err(" use_type: %d\n", man->use_type);
76 pr_err(" flags: 0x%08X\n", man->flags);
Alex Deucher54c4cd62015-03-04 00:18:38 -050077 pr_err(" gpu_offset: 0x%08llX\n", man->gpu_offset);
Joe Perches25d04792012-03-16 21:43:50 -070078 pr_err(" size: %llu\n", man->size);
79 pr_err(" available_caching: 0x%08X\n", man->available_caching);
80 pr_err(" default_caching: 0x%08X\n", man->default_caching);
Ben Skeggsd961db72010-08-05 10:48:18 +100081 if (mem_type != TTM_PL_SYSTEM)
82 (*man->func->debug)(man, TTM_PFX);
Jerome Glissefb53f862009-12-09 21:55:10 +010083}
84
85static void ttm_bo_mem_space_debug(struct ttm_buffer_object *bo,
86 struct ttm_placement *placement)
87{
Jerome Glissefb53f862009-12-09 21:55:10 +010088 int i, ret, mem_type;
89
Joe Perches25d04792012-03-16 21:43:50 -070090 pr_err("No space for %p (%lu pages, %luK, %luM)\n",
91 bo, bo->mem.num_pages, bo->mem.size >> 10,
92 bo->mem.size >> 20);
Jerome Glissefb53f862009-12-09 21:55:10 +010093 for (i = 0; i < placement->num_placement; i++) {
Christian Königf1217ed2014-08-27 13:16:04 +020094 ret = ttm_mem_type_from_place(&placement->placement[i],
Jerome Glissefb53f862009-12-09 21:55:10 +010095 &mem_type);
96 if (ret)
97 return;
Joe Perches25d04792012-03-16 21:43:50 -070098 pr_err(" placement[%d]=0x%08X (%d)\n",
Christian Königf1217ed2014-08-27 13:16:04 +020099 i, placement->placement[i].flags, mem_type);
Jerome Glisse5012f502009-12-10 18:07:26 +0100100 ttm_mem_type_debug(bo->bdev, mem_type);
Jerome Glissefb53f862009-12-09 21:55:10 +0100101 }
102}
103
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200104static ssize_t ttm_bo_global_show(struct kobject *kobj,
105 struct attribute *attr,
106 char *buffer)
107{
108 struct ttm_bo_global *glob =
109 container_of(kobj, struct ttm_bo_global, kobj);
110
111 return snprintf(buffer, PAGE_SIZE, "%lu\n",
112 (unsigned long) atomic_read(&glob->bo_count));
113}
114
115static struct attribute *ttm_bo_global_attrs[] = {
116 &ttm_bo_count,
117 NULL
118};
119
Emese Revfy52cf25d2010-01-19 02:58:23 +0100120static const struct sysfs_ops ttm_bo_global_ops = {
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200121 .show = &ttm_bo_global_show
122};
123
124static struct kobj_type ttm_bo_glob_kobj_type = {
125 .release = &ttm_bo_global_kobj_release,
126 .sysfs_ops = &ttm_bo_global_ops,
127 .default_attrs = ttm_bo_global_attrs
128};
129
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200130
131static inline uint32_t ttm_bo_type_flags(unsigned type)
132{
133 return 1 << (type);
134}
135
136static void ttm_bo_release_list(struct kref *list_kref)
137{
138 struct ttm_buffer_object *bo =
139 container_of(list_kref, struct ttm_buffer_object, list_kref);
140 struct ttm_bo_device *bdev = bo->bdev;
Jerome Glisse57de4ba2011-11-11 15:42:57 -0500141 size_t acc_size = bo->acc_size;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200142
143 BUG_ON(atomic_read(&bo->list_kref.refcount));
144 BUG_ON(atomic_read(&bo->kref.refcount));
145 BUG_ON(atomic_read(&bo->cpu_writers));
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200146 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);
Maarten Lankhorst5e338402013-06-27 13:48:19 +0200153 if (bo->resv == &bo->ttm_resv)
154 reservation_object_fini(&bo->ttm_resv);
Thomas Hellstromc58f0092013-11-14 10:49:05 -0800155 mutex_destroy(&bo->wu_mutex);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200156 if (bo->destroy)
157 bo->destroy(bo);
158 else {
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200159 kfree(bo);
160 }
Jerome Glisse57de4ba2011-11-11 15:42:57 -0500161 ttm_mem_global_free(bdev->glob->mem_glob, acc_size);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200162}
163
Dave Airlied6ea8882010-11-22 13:24:40 +1000164void ttm_bo_add_to_lru(struct ttm_buffer_object *bo)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200165{
166 struct ttm_bo_device *bdev = bo->bdev;
167 struct ttm_mem_type_manager *man;
168
Maarten Lankhorst009a9da2013-06-27 13:48:25 +0200169 lockdep_assert_held(&bo->resv->lock.base);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200170
171 if (!(bo->mem.placement & TTM_PL_FLAG_NO_EVICT)) {
172
173 BUG_ON(!list_empty(&bo->lru));
174
175 man = &bdev->man[bo->mem.mem_type];
176 list_add_tail(&bo->lru, &man->lru);
177 kref_get(&bo->list_kref);
178
179 if (bo->ttm != NULL) {
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200180 list_add_tail(&bo->swap, &bo->glob->swap_lru);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200181 kref_get(&bo->list_kref);
182 }
183 }
184}
Maarten Lankhorst34820322013-06-27 13:48:24 +0200185EXPORT_SYMBOL(ttm_bo_add_to_lru);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200186
Dave Airlied6ea8882010-11-22 13:24:40 +1000187int ttm_bo_del_from_lru(struct ttm_buffer_object *bo)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200188{
189 int put_count = 0;
190
191 if (!list_empty(&bo->swap)) {
192 list_del_init(&bo->swap);
193 ++put_count;
194 }
195 if (!list_empty(&bo->lru)) {
196 list_del_init(&bo->lru);
197 ++put_count;
198 }
199
200 /*
201 * TODO: Add a driver hook to delete from
202 * driver-specific LRU's here.
203 */
204
205 return put_count;
206}
207
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200208static void ttm_bo_ref_bug(struct kref *list_kref)
209{
210 BUG();
211}
212
Dave Airlied6ea8882010-11-22 13:24:40 +1000213void ttm_bo_list_ref_sub(struct ttm_buffer_object *bo, int count,
214 bool never_free)
215{
Thomas Hellstrom2357cbe2010-11-16 15:21:08 +0100216 kref_sub(&bo->list_kref, count,
217 (never_free) ? ttm_bo_ref_bug : ttm_bo_release_list);
Dave Airlied6ea8882010-11-22 13:24:40 +1000218}
219
Maarten Lankhorst34820322013-06-27 13:48:24 +0200220void ttm_bo_del_sub_from_lru(struct ttm_buffer_object *bo)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200221{
Maarten Lankhorst34820322013-06-27 13:48:24 +0200222 int put_count;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200223
Maarten Lankhorst34820322013-06-27 13:48:24 +0200224 spin_lock(&bo->glob->lru_lock);
225 put_count = ttm_bo_del_from_lru(bo);
226 spin_unlock(&bo->glob->lru_lock);
227 ttm_bo_list_ref_sub(bo, put_count, true);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200228}
Maarten Lankhorst34820322013-06-27 13:48:24 +0200229EXPORT_SYMBOL(ttm_bo_del_sub_from_lru);
Maarten Lankhorstecff6652013-06-27 13:48:17 +0200230
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200231/*
232 * Call bo->mutex locked.
233 */
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200234static int ttm_bo_add_ttm(struct ttm_buffer_object *bo, bool zero_alloc)
235{
236 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200237 struct ttm_bo_global *glob = bo->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200238 int ret = 0;
239 uint32_t page_flags = 0;
240
241 TTM_ASSERT_LOCKED(&bo->mutex);
242 bo->ttm = NULL;
243
Dave Airliead49f502009-07-10 22:36:26 +1000244 if (bdev->need_dma32)
245 page_flags |= TTM_PAGE_FLAG_DMA32;
246
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200247 switch (bo->type) {
248 case ttm_bo_type_device:
249 if (zero_alloc)
250 page_flags |= TTM_PAGE_FLAG_ZERO_ALLOC;
251 case ttm_bo_type_kernel:
Jerome Glisse649bf3c2011-11-01 20:46:13 -0400252 bo->ttm = bdev->driver->ttm_tt_create(bdev, bo->num_pages << PAGE_SHIFT,
253 page_flags, glob->dummy_read_page);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200254 if (unlikely(bo->ttm == NULL))
255 ret = -ENOMEM;
256 break;
Dave Airlie129b78b2012-04-02 11:46:06 +0100257 case ttm_bo_type_sg:
258 bo->ttm = bdev->driver->ttm_tt_create(bdev, bo->num_pages << PAGE_SHIFT,
259 page_flags | TTM_PAGE_FLAG_SG,
260 glob->dummy_read_page);
261 if (unlikely(bo->ttm == NULL)) {
262 ret = -ENOMEM;
263 break;
264 }
265 bo->ttm->sg = bo->sg;
266 break;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200267 default:
Joe Perches25d04792012-03-16 21:43:50 -0700268 pr_err("Illegal buffer object type\n");
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200269 ret = -EINVAL;
270 break;
271 }
272
273 return ret;
274}
275
276static int ttm_bo_handle_move_mem(struct ttm_buffer_object *bo,
277 struct ttm_mem_reg *mem,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000278 bool evict, bool interruptible,
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000279 bool no_wait_gpu)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200280{
281 struct ttm_bo_device *bdev = bo->bdev;
282 bool old_is_pci = ttm_mem_reg_is_pci(bdev, &bo->mem);
283 bool new_is_pci = ttm_mem_reg_is_pci(bdev, mem);
284 struct ttm_mem_type_manager *old_man = &bdev->man[bo->mem.mem_type];
285 struct ttm_mem_type_manager *new_man = &bdev->man[mem->mem_type];
286 int ret = 0;
287
288 if (old_is_pci || new_is_pci ||
Thomas Hellstromeba67092010-11-11 09:41:57 +0100289 ((mem->placement & bo->mem.placement & TTM_PL_MASK_CACHING) == 0)) {
290 ret = ttm_mem_io_lock(old_man, true);
291 if (unlikely(ret != 0))
292 goto out_err;
293 ttm_bo_unmap_virtual_locked(bo);
294 ttm_mem_io_unlock(old_man);
295 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200296
297 /*
298 * Create and bind a ttm if required.
299 */
300
Ben Skeggs8d3bb232011-08-22 03:15:05 +0000301 if (!(new_man->flags & TTM_MEMTYPE_FLAG_FIXED)) {
302 if (bo->ttm == NULL) {
Ben Skeggsff02b132011-09-14 06:08:06 +1000303 bool zero = !(old_man->flags & TTM_MEMTYPE_FLAG_FIXED);
304 ret = ttm_bo_add_ttm(bo, zero);
Ben Skeggs8d3bb232011-08-22 03:15:05 +0000305 if (ret)
306 goto out_err;
307 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200308
309 ret = ttm_tt_set_placement_caching(bo->ttm, mem->placement);
310 if (ret)
Thomas Hellstrom87ef9202009-06-17 12:29:57 +0200311 goto out_err;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200312
313 if (mem->mem_type != TTM_PL_SYSTEM) {
314 ret = ttm_tt_bind(bo->ttm, mem);
315 if (ret)
316 goto out_err;
317 }
318
319 if (bo->mem.mem_type == TTM_PL_SYSTEM) {
Ben Skeggs82ef5942011-02-02 00:27:10 +0000320 if (bdev->driver->move_notify)
321 bdev->driver->move_notify(bo, mem);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100322 bo->mem = *mem;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200323 mem->mm_node = NULL;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200324 goto moved;
325 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200326 }
327
Ben Skeggs9f1feed2012-01-25 15:34:22 +1000328 if (bdev->driver->move_notify)
329 bdev->driver->move_notify(bo, mem);
330
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200331 if (!(old_man->flags & TTM_MEMTYPE_FLAG_FIXED) &&
332 !(new_man->flags & TTM_MEMTYPE_FLAG_FIXED))
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000333 ret = ttm_bo_move_ttm(bo, evict, no_wait_gpu, mem);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200334 else if (bdev->driver->move)
335 ret = bdev->driver->move(bo, evict, interruptible,
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000336 no_wait_gpu, mem);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200337 else
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000338 ret = ttm_bo_move_memcpy(bo, evict, no_wait_gpu, mem);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200339
Ben Skeggs9f1feed2012-01-25 15:34:22 +1000340 if (ret) {
341 if (bdev->driver->move_notify) {
342 struct ttm_mem_reg tmp_mem = *mem;
343 *mem = bo->mem;
344 bo->mem = tmp_mem;
345 bdev->driver->move_notify(bo, mem);
346 bo->mem = *mem;
Dave Airlie014b3442013-01-16 15:58:34 +1000347 *mem = tmp_mem;
Ben Skeggs9f1feed2012-01-25 15:34:22 +1000348 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200349
Ben Skeggs9f1feed2012-01-25 15:34:22 +1000350 goto out_err;
351 }
Jerome Glissedc97b342011-11-18 11:47:03 -0500352
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200353moved:
354 if (bo->evicted) {
Rob Clark9ef75062014-03-12 10:59:37 -0400355 if (bdev->driver->invalidate_caches) {
356 ret = bdev->driver->invalidate_caches(bdev, bo->mem.placement);
357 if (ret)
358 pr_err("Can not flush read caches\n");
359 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200360 bo->evicted = false;
361 }
362
363 if (bo->mem.mm_node) {
Ben Skeggsd961db72010-08-05 10:48:18 +1000364 bo->offset = (bo->mem.start << PAGE_SHIFT) +
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200365 bdev->man[bo->mem.mem_type].gpu_offset;
366 bo->cur_placement = bo->mem.placement;
Thomas Hellstrom354fb522010-01-13 22:28:45 +0100367 } else
368 bo->offset = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200369
370 return 0;
371
372out_err:
373 new_man = &bdev->man[bo->mem.mem_type];
374 if ((new_man->flags & TTM_MEMTYPE_FLAG_FIXED) && bo->ttm) {
375 ttm_tt_unbind(bo->ttm);
376 ttm_tt_destroy(bo->ttm);
377 bo->ttm = NULL;
378 }
379
380 return ret;
381}
382
383/**
Thomas Hellstrom40d857b2010-10-19 09:01:00 +0200384 * Call bo::reserved.
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200385 * Will release GPU memory type usage on destruction.
Thomas Hellstrom40d857b2010-10-19 09:01:00 +0200386 * This is the place to put in driver specific hooks to release
387 * driver private resources.
388 * Will release the bo::reserved lock.
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200389 */
390
391static void ttm_bo_cleanup_memtype_use(struct ttm_buffer_object *bo)
392{
Jerome Glissedc97b342011-11-18 11:47:03 -0500393 if (bo->bdev->driver->move_notify)
394 bo->bdev->driver->move_notify(bo, NULL);
395
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200396 if (bo->ttm) {
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200397 ttm_tt_unbind(bo->ttm);
398 ttm_tt_destroy(bo->ttm);
399 bo->ttm = NULL;
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200400 }
Thomas Hellstrom40d857b2010-10-19 09:01:00 +0200401 ttm_bo_mem_put(bo, &bo->mem);
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200402
Maarten Lankhorst5e338402013-06-27 13:48:19 +0200403 ww_mutex_unlock (&bo->resv->lock);
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200404}
405
Maarten Lankhorstf2c24b82014-04-02 17:14:48 +0200406static void ttm_bo_flush_all_fences(struct ttm_buffer_object *bo)
407{
408 struct reservation_object_list *fobj;
409 struct fence *fence;
410 int i;
411
412 fobj = reservation_object_get_list(bo->resv);
413 fence = reservation_object_get_excl(bo->resv);
414 if (fence && !fence->ops->signaled)
415 fence_enable_sw_signaling(fence);
416
417 for (i = 0; fobj && i < fobj->shared_count; ++i) {
418 fence = rcu_dereference_protected(fobj->shared[i],
419 reservation_object_held(bo->resv));
420
421 if (!fence->ops->signaled)
422 fence_enable_sw_signaling(fence);
423 }
424}
425
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200426static void ttm_bo_cleanup_refs_or_queue(struct ttm_buffer_object *bo)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200427{
428 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200429 struct ttm_bo_global *glob = bo->glob;
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200430 int put_count;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200431 int ret;
432
Maarten Lankhorst4154f052012-11-28 12:25:39 +0100433 spin_lock(&glob->lru_lock);
Martin Kepplinger0eff2a22014-06-15 02:10:39 +0200434 ret = __ttm_bo_reserve(bo, false, true, false, NULL);
Maarten Lankhorst4154f052012-11-28 12:25:39 +0100435
Thomas Hellstrom15205fb2013-10-10 11:09:03 -0700436 if (!ret) {
Maarten Lankhorstf2c24b82014-04-02 17:14:48 +0200437 if (!ttm_bo_wait(bo, false, false, true)) {
Maarten Lankhorstdd7cfd62014-01-21 13:07:31 +0100438 put_count = ttm_bo_del_from_lru(bo);
439
440 spin_unlock(&glob->lru_lock);
441 ttm_bo_cleanup_memtype_use(bo);
442
443 ttm_bo_list_ref_sub(bo, put_count, true);
444
445 return;
Maarten Lankhorstf2c24b82014-04-02 17:14:48 +0200446 } else
447 ttm_bo_flush_all_fences(bo);
Thomas Hellstrom15205fb2013-10-10 11:09:03 -0700448
449 /*
450 * Make NO_EVICT bos immediately available to
451 * shrinkers, now that they are queued for
452 * destruction.
453 */
454 if (bo->mem.placement & TTM_PL_FLAG_NO_EVICT) {
455 bo->mem.placement &= ~TTM_PL_FLAG_NO_EVICT;
456 ttm_bo_add_to_lru(bo);
457 }
458
Thomas Hellstromc7523082014-02-20 11:36:25 +0100459 __ttm_bo_unreserve(bo);
Thomas Hellstrom15205fb2013-10-10 11:09:03 -0700460 }
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200461
462 kref_get(&bo->list_kref);
463 list_add_tail(&bo->ddestroy, &bdev->ddestroy);
464 spin_unlock(&glob->lru_lock);
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200465
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200466 schedule_delayed_work(&bdev->wq,
467 ((HZ / 100) < 1) ? 1 : HZ / 100);
468}
469
470/**
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000471 * function ttm_bo_cleanup_refs_and_unlock
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200472 * If bo idle, remove from delayed- and lru lists, and unref.
473 * If not idle, do nothing.
474 *
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000475 * Must be called with lru_lock and reservation held, this function
476 * will drop both before returning.
477 *
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200478 * @interruptible Any sleeps should occur interruptibly.
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200479 * @no_wait_gpu Never wait for gpu. Return -EBUSY instead.
480 */
481
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000482static int ttm_bo_cleanup_refs_and_unlock(struct ttm_buffer_object *bo,
483 bool interruptible,
484 bool no_wait_gpu)
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200485{
486 struct ttm_bo_global *glob = bo->glob;
487 int put_count;
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000488 int ret;
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200489
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000490 ret = ttm_bo_wait(bo, false, false, true);
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200491
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000492 if (ret && !no_wait_gpu) {
Maarten Lankhorst472db7a2014-05-14 15:42:29 +0200493 long lret;
494 ww_mutex_unlock(&bo->resv->lock);
495 spin_unlock(&glob->lru_lock);
496
497 lret = reservation_object_wait_timeout_rcu(bo->resv,
498 true,
499 interruptible,
500 30 * HZ);
501
502 if (lret < 0)
503 return lret;
504 else if (lret == 0)
505 return -EBUSY;
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000506
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000507 spin_lock(&glob->lru_lock);
Martin Kepplinger0eff2a22014-06-15 02:10:39 +0200508 ret = __ttm_bo_reserve(bo, false, true, false, NULL);
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000509
510 /*
511 * We raced, and lost, someone else holds the reservation now,
512 * and is probably busy in ttm_bo_cleanup_memtype_use.
513 *
514 * Even if it's not the case, because we finished waiting any
515 * delayed destruction would succeed, so just return success
516 * here.
517 */
518 if (ret) {
519 spin_unlock(&glob->lru_lock);
520 return 0;
521 }
Maarten Lankhorst70401382014-01-21 13:07:01 +0100522
523 /*
524 * remove sync_obj with ttm_bo_wait, the wait should be
525 * finished, and no new wait object should have been added.
526 */
Maarten Lankhorst70401382014-01-21 13:07:01 +0100527 ret = ttm_bo_wait(bo, false, false, true);
528 WARN_ON(ret);
529 }
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000530
531 if (ret || unlikely(list_empty(&bo->ddestroy))) {
Thomas Hellstromc7523082014-02-20 11:36:25 +0100532 __ttm_bo_unreserve(bo);
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000533 spin_unlock(&glob->lru_lock);
534 return ret;
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200535 }
536
537 put_count = ttm_bo_del_from_lru(bo);
538 list_del_init(&bo->ddestroy);
539 ++put_count;
540
541 spin_unlock(&glob->lru_lock);
542 ttm_bo_cleanup_memtype_use(bo);
543
Dave Airlied6ea8882010-11-22 13:24:40 +1000544 ttm_bo_list_ref_sub(bo, put_count, true);
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200545
546 return 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200547}
548
549/**
550 * Traverse the delayed list, and call ttm_bo_cleanup_refs on all
551 * encountered buffers.
552 */
553
554static int ttm_bo_delayed_delete(struct ttm_bo_device *bdev, bool remove_all)
555{
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200556 struct ttm_bo_global *glob = bdev->glob;
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100557 struct ttm_buffer_object *entry = NULL;
558 int ret = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200559
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200560 spin_lock(&glob->lru_lock);
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100561 if (list_empty(&bdev->ddestroy))
562 goto out_unlock;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200563
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100564 entry = list_first_entry(&bdev->ddestroy,
565 struct ttm_buffer_object, ddestroy);
566 kref_get(&entry->list_kref);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200567
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100568 for (;;) {
569 struct ttm_buffer_object *nentry = NULL;
570
571 if (entry->ddestroy.next != &bdev->ddestroy) {
572 nentry = list_first_entry(&entry->ddestroy,
573 struct ttm_buffer_object, ddestroy);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200574 kref_get(&nentry->list_kref);
575 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200576
Martin Kepplinger0eff2a22014-06-15 02:10:39 +0200577 ret = __ttm_bo_reserve(entry, false, true, false, NULL);
Maarten Lankhorst63d0a412013-01-15 14:56:37 +0100578 if (remove_all && ret) {
579 spin_unlock(&glob->lru_lock);
Thomas Hellstromc7523082014-02-20 11:36:25 +0100580 ret = __ttm_bo_reserve(entry, false, false,
Martin Kepplinger0eff2a22014-06-15 02:10:39 +0200581 false, NULL);
Maarten Lankhorst63d0a412013-01-15 14:56:37 +0100582 spin_lock(&glob->lru_lock);
583 }
584
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000585 if (!ret)
586 ret = ttm_bo_cleanup_refs_and_unlock(entry, false,
587 !remove_all);
588 else
589 spin_unlock(&glob->lru_lock);
590
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200591 kref_put(&entry->list_kref, ttm_bo_release_list);
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100592 entry = nentry;
593
594 if (ret || !entry)
595 goto out;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200596
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200597 spin_lock(&glob->lru_lock);
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100598 if (list_empty(&entry->ddestroy))
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200599 break;
600 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200601
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100602out_unlock:
603 spin_unlock(&glob->lru_lock);
604out:
605 if (entry)
606 kref_put(&entry->list_kref, ttm_bo_release_list);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200607 return ret;
608}
609
610static void ttm_bo_delayed_workqueue(struct work_struct *work)
611{
612 struct ttm_bo_device *bdev =
613 container_of(work, struct ttm_bo_device, wq.work);
614
615 if (ttm_bo_delayed_delete(bdev, false)) {
616 schedule_delayed_work(&bdev->wq,
617 ((HZ / 100) < 1) ? 1 : HZ / 100);
618 }
619}
620
621static void ttm_bo_release(struct kref *kref)
622{
623 struct ttm_buffer_object *bo =
624 container_of(kref, struct ttm_buffer_object, kref);
625 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstromeba67092010-11-11 09:41:57 +0100626 struct ttm_mem_type_manager *man = &bdev->man[bo->mem.mem_type];
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200627
David Herrmann72525b32013-07-24 21:08:53 +0200628 drm_vma_offset_remove(&bdev->vma_manager, &bo->vma_node);
Thomas Hellstromeba67092010-11-11 09:41:57 +0100629 ttm_mem_io_lock(man, false);
630 ttm_mem_io_free_vm(bo);
631 ttm_mem_io_unlock(man);
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200632 ttm_bo_cleanup_refs_or_queue(bo);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200633 kref_put(&bo->list_kref, ttm_bo_release_list);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200634}
635
636void ttm_bo_unref(struct ttm_buffer_object **p_bo)
637{
638 struct ttm_buffer_object *bo = *p_bo;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200639
640 *p_bo = NULL;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200641 kref_put(&bo->kref, ttm_bo_release);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200642}
643EXPORT_SYMBOL(ttm_bo_unref);
644
Matthew Garrett7c5ee532010-04-26 16:00:09 -0400645int ttm_bo_lock_delayed_workqueue(struct ttm_bo_device *bdev)
646{
647 return cancel_delayed_work_sync(&bdev->wq);
648}
649EXPORT_SYMBOL(ttm_bo_lock_delayed_workqueue);
650
651void ttm_bo_unlock_delayed_workqueue(struct ttm_bo_device *bdev, int resched)
652{
653 if (resched)
654 schedule_delayed_work(&bdev->wq,
655 ((HZ / 100) < 1) ? 1 : HZ / 100);
656}
657EXPORT_SYMBOL(ttm_bo_unlock_delayed_workqueue);
658
Jerome Glisseca262a9992009-12-08 15:33:32 +0100659static int ttm_bo_evict(struct ttm_buffer_object *bo, bool interruptible,
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000660 bool no_wait_gpu)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200661{
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200662 struct ttm_bo_device *bdev = bo->bdev;
663 struct ttm_mem_reg evict_mem;
Jerome Glisseca262a9992009-12-08 15:33:32 +0100664 struct ttm_placement placement;
665 int ret = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200666
Dave Airlie1717c0e2011-10-27 18:28:37 +0200667 ret = ttm_bo_wait(bo, false, interruptible, no_wait_gpu);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200668
Thomas Hellstrom78ecf092009-06-17 12:29:55 +0200669 if (unlikely(ret != 0)) {
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +0100670 if (ret != -ERESTARTSYS) {
Joe Perches25d04792012-03-16 21:43:50 -0700671 pr_err("Failed to expire sync object before buffer eviction\n");
Thomas Hellstrom78ecf092009-06-17 12:29:55 +0200672 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200673 goto out;
674 }
675
Maarten Lankhorst009a9da2013-06-27 13:48:25 +0200676 lockdep_assert_held(&bo->resv->lock.base);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200677
678 evict_mem = bo->mem;
679 evict_mem.mm_node = NULL;
Thomas Hellstromeba67092010-11-11 09:41:57 +0100680 evict_mem.bus.io_reserved_vm = false;
681 evict_mem.bus.io_reserved_count = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200682
Jerome Glisse7cb7d1d2009-12-09 22:14:27 +0100683 placement.num_placement = 0;
684 placement.num_busy_placement = 0;
Jerome Glisseca262a9992009-12-08 15:33:32 +0100685 bdev->driver->evict_flags(bo, &placement);
686 ret = ttm_bo_mem_space(bo, &placement, &evict_mem, interruptible,
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000687 no_wait_gpu);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200688 if (ret) {
Jerome Glissefb53f862009-12-09 21:55:10 +0100689 if (ret != -ERESTARTSYS) {
Joe Perches25d04792012-03-16 21:43:50 -0700690 pr_err("Failed to find memory space for buffer 0x%p eviction\n",
691 bo);
Jerome Glissefb53f862009-12-09 21:55:10 +0100692 ttm_bo_mem_space_debug(bo, &placement);
693 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200694 goto out;
695 }
696
697 ret = ttm_bo_handle_move_mem(bo, &evict_mem, true, interruptible,
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000698 no_wait_gpu);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200699 if (ret) {
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +0100700 if (ret != -ERESTARTSYS)
Joe Perches25d04792012-03-16 21:43:50 -0700701 pr_err("Buffer eviction failed\n");
Ben Skeggs42311ff2010-08-04 12:07:08 +1000702 ttm_bo_mem_put(bo, &evict_mem);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200703 goto out;
704 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200705 bo->evicted = true;
706out:
707 return ret;
708}
709
Jerome Glisseca262a9992009-12-08 15:33:32 +0100710static int ttm_mem_evict_first(struct ttm_bo_device *bdev,
711 uint32_t mem_type,
Michel Dänzere3001802014-10-09 15:02:59 +0900712 const struct ttm_place *place,
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000713 bool interruptible,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000714 bool no_wait_gpu)
Jerome Glisseca262a9992009-12-08 15:33:32 +0100715{
716 struct ttm_bo_global *glob = bdev->glob;
717 struct ttm_mem_type_manager *man = &bdev->man[mem_type];
718 struct ttm_buffer_object *bo;
Maarten Lankhorste7ab2012012-11-28 11:25:43 +0000719 int ret = -EBUSY, put_count;
Jerome Glisseca262a9992009-12-08 15:33:32 +0100720
721 spin_lock(&glob->lru_lock);
Maarten Lankhorste7ab2012012-11-28 11:25:43 +0000722 list_for_each_entry(bo, &man->lru, lru) {
Martin Kepplinger0eff2a22014-06-15 02:10:39 +0200723 ret = __ttm_bo_reserve(bo, false, true, false, NULL);
Michel Dänzere3001802014-10-09 15:02:59 +0900724 if (!ret) {
725 if (place && (place->fpfn || place->lpfn)) {
726 /* Don't evict this BO if it's outside of the
727 * requested placement range
728 */
729 if (place->fpfn >= (bo->mem.start + bo->mem.size) ||
730 (place->lpfn && place->lpfn <= bo->mem.start)) {
731 __ttm_bo_unreserve(bo);
732 ret = -EBUSY;
733 continue;
734 }
735 }
736
Maarten Lankhorste7ab2012012-11-28 11:25:43 +0000737 break;
Michel Dänzere3001802014-10-09 15:02:59 +0900738 }
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100739 }
740
Maarten Lankhorste7ab2012012-11-28 11:25:43 +0000741 if (ret) {
742 spin_unlock(&glob->lru_lock);
Thomas Hellstromb8e902f2012-10-22 12:51:26 +0000743 return ret;
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200744 }
745
Maarten Lankhorste7ab2012012-11-28 11:25:43 +0000746 kref_get(&bo->list_kref);
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100747
Maarten Lankhorste7ab2012012-11-28 11:25:43 +0000748 if (!list_empty(&bo->ddestroy)) {
749 ret = ttm_bo_cleanup_refs_and_unlock(bo, interruptible,
750 no_wait_gpu);
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100751 kref_put(&bo->list_kref, ttm_bo_release_list);
Maarten Lankhorste7ab2012012-11-28 11:25:43 +0000752 return ret;
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100753 }
754
755 put_count = ttm_bo_del_from_lru(bo);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100756 spin_unlock(&glob->lru_lock);
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100757
758 BUG_ON(ret != 0);
759
Dave Airlied6ea8882010-11-22 13:24:40 +1000760 ttm_bo_list_ref_sub(bo, put_count, true);
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100761
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000762 ret = ttm_bo_evict(bo, interruptible, no_wait_gpu);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100763 ttm_bo_unreserve(bo);
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100764
Jerome Glisseca262a9992009-12-08 15:33:32 +0100765 kref_put(&bo->list_kref, ttm_bo_release_list);
766 return ret;
767}
768
Ben Skeggs42311ff2010-08-04 12:07:08 +1000769void ttm_bo_mem_put(struct ttm_buffer_object *bo, struct ttm_mem_reg *mem)
770{
Ben Skeggsd961db72010-08-05 10:48:18 +1000771 struct ttm_mem_type_manager *man = &bo->bdev->man[mem->mem_type];
Ben Skeggs42311ff2010-08-04 12:07:08 +1000772
Ben Skeggsd961db72010-08-05 10:48:18 +1000773 if (mem->mm_node)
774 (*man->func->put_node)(man, mem);
Ben Skeggs42311ff2010-08-04 12:07:08 +1000775}
776EXPORT_SYMBOL(ttm_bo_mem_put);
777
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200778/**
779 * Repeatedly evict memory from the LRU for @mem_type until we create enough
780 * space, or we've evicted everything and there isn't enough space.
781 */
Jerome Glisseca262a9992009-12-08 15:33:32 +0100782static int ttm_bo_mem_force_space(struct ttm_buffer_object *bo,
783 uint32_t mem_type,
Christian Königf1217ed2014-08-27 13:16:04 +0200784 const struct ttm_place *place,
Jerome Glisseca262a9992009-12-08 15:33:32 +0100785 struct ttm_mem_reg *mem,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000786 bool interruptible,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000787 bool no_wait_gpu)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200788{
Jerome Glisseca262a9992009-12-08 15:33:32 +0100789 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200790 struct ttm_mem_type_manager *man = &bdev->man[mem_type];
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200791 int ret;
792
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200793 do {
Christian Königf1217ed2014-08-27 13:16:04 +0200794 ret = (*man->func->get_node)(man, bo, place, mem);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200795 if (unlikely(ret != 0))
796 return ret;
Ben Skeggsd961db72010-08-05 10:48:18 +1000797 if (mem->mm_node)
Jerome Glisseca262a9992009-12-08 15:33:32 +0100798 break;
Michel Dänzere3001802014-10-09 15:02:59 +0900799 ret = ttm_mem_evict_first(bdev, mem_type, place,
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000800 interruptible, no_wait_gpu);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100801 if (unlikely(ret != 0))
802 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200803 } while (1);
Ben Skeggsd961db72010-08-05 10:48:18 +1000804 if (mem->mm_node == NULL)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200805 return -ENOMEM;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200806 mem->mem_type = mem_type;
807 return 0;
808}
809
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200810static uint32_t ttm_bo_select_caching(struct ttm_mem_type_manager *man,
811 uint32_t cur_placement,
812 uint32_t proposed_placement)
813{
814 uint32_t caching = proposed_placement & TTM_PL_MASK_CACHING;
815 uint32_t result = proposed_placement & ~TTM_PL_MASK_CACHING;
816
817 /**
818 * Keep current caching if possible.
819 */
820
821 if ((cur_placement & caching) != 0)
822 result |= (cur_placement & caching);
823 else if ((man->default_caching & caching) != 0)
824 result |= man->default_caching;
825 else if ((TTM_PL_FLAG_CACHED & caching) != 0)
826 result |= TTM_PL_FLAG_CACHED;
827 else if ((TTM_PL_FLAG_WC & caching) != 0)
828 result |= TTM_PL_FLAG_WC;
829 else if ((TTM_PL_FLAG_UNCACHED & caching) != 0)
830 result |= TTM_PL_FLAG_UNCACHED;
831
832 return result;
833}
834
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200835static bool ttm_bo_mt_compatible(struct ttm_mem_type_manager *man,
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200836 uint32_t mem_type,
Christian Königf1217ed2014-08-27 13:16:04 +0200837 const struct ttm_place *place,
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200838 uint32_t *masked_placement)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200839{
840 uint32_t cur_flags = ttm_bo_type_flags(mem_type);
841
Christian Königf1217ed2014-08-27 13:16:04 +0200842 if ((cur_flags & place->flags & TTM_PL_MASK_MEM) == 0)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200843 return false;
844
Christian Königf1217ed2014-08-27 13:16:04 +0200845 if ((place->flags & man->available_caching) == 0)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200846 return false;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200847
Christian Königf1217ed2014-08-27 13:16:04 +0200848 cur_flags |= (place->flags & man->available_caching);
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200849
850 *masked_placement = cur_flags;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200851 return true;
852}
853
854/**
855 * Creates space for memory region @mem according to its type.
856 *
857 * This function first searches for free space in compatible memory types in
858 * the priority order defined by the driver. If free space isn't found, then
859 * ttm_bo_mem_force_space is attempted in priority order to evict and find
860 * space.
861 */
862int ttm_bo_mem_space(struct ttm_buffer_object *bo,
Jerome Glisseca262a9992009-12-08 15:33:32 +0100863 struct ttm_placement *placement,
864 struct ttm_mem_reg *mem,
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000865 bool interruptible,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000866 bool no_wait_gpu)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200867{
868 struct ttm_bo_device *bdev = bo->bdev;
869 struct ttm_mem_type_manager *man;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200870 uint32_t mem_type = TTM_PL_SYSTEM;
871 uint32_t cur_flags = 0;
872 bool type_found = false;
873 bool type_ok = false;
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +0100874 bool has_erestartsys = false;
Jerome Glisseca262a9992009-12-08 15:33:32 +0100875 int i, ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200876
877 mem->mm_node = NULL;
Dave Airlieb6637522009-12-14 14:51:35 +1000878 for (i = 0; i < placement->num_placement; ++i) {
Christian Königf1217ed2014-08-27 13:16:04 +0200879 const struct ttm_place *place = &placement->placement[i];
880
881 ret = ttm_mem_type_from_place(place, &mem_type);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100882 if (ret)
883 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200884 man = &bdev->man[mem_type];
Thomas Hellstrome30f3962015-09-14 01:24:41 -0700885 if (!man->has_type || !man->use_type)
886 continue;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200887
Christian Königf1217ed2014-08-27 13:16:04 +0200888 type_ok = ttm_bo_mt_compatible(man, mem_type, place,
Jerome Glisseca262a9992009-12-08 15:33:32 +0100889 &cur_flags);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200890
891 if (!type_ok)
892 continue;
893
Thomas Hellstrome30f3962015-09-14 01:24:41 -0700894 type_found = true;
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200895 cur_flags = ttm_bo_select_caching(man, bo->mem.placement,
896 cur_flags);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100897 /*
898 * Use the access and other non-mapping-related flag bits from
899 * the memory placement flags to the current flags
900 */
Christian Königf1217ed2014-08-27 13:16:04 +0200901 ttm_flag_masked(&cur_flags, place->flags,
Jerome Glisseca262a9992009-12-08 15:33:32 +0100902 ~TTM_PL_MASK_MEMTYPE);
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200903
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200904 if (mem_type == TTM_PL_SYSTEM)
905 break;
906
Thomas Hellstrome30f3962015-09-14 01:24:41 -0700907 ret = (*man->func->get_node)(man, bo, place, mem);
908 if (unlikely(ret))
909 return ret;
910
Ben Skeggsd961db72010-08-05 10:48:18 +1000911 if (mem->mm_node)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200912 break;
913 }
914
Ben Skeggsd961db72010-08-05 10:48:18 +1000915 if ((type_ok && (mem_type == TTM_PL_SYSTEM)) || mem->mm_node) {
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200916 mem->mem_type = mem_type;
917 mem->placement = cur_flags;
918 return 0;
919 }
920
Dave Airlieb6637522009-12-14 14:51:35 +1000921 for (i = 0; i < placement->num_busy_placement; ++i) {
Christian Königf1217ed2014-08-27 13:16:04 +0200922 const struct ttm_place *place = &placement->busy_placement[i];
923
924 ret = ttm_mem_type_from_place(place, &mem_type);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100925 if (ret)
926 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200927 man = &bdev->man[mem_type];
Thomas Hellstrome30f3962015-09-14 01:24:41 -0700928 if (!man->has_type || !man->use_type)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200929 continue;
Christian Königf1217ed2014-08-27 13:16:04 +0200930 if (!ttm_bo_mt_compatible(man, mem_type, place, &cur_flags))
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200931 continue;
932
Thomas Hellstrome30f3962015-09-14 01:24:41 -0700933 type_found = true;
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200934 cur_flags = ttm_bo_select_caching(man, bo->mem.placement,
935 cur_flags);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100936 /*
937 * Use the access and other non-mapping-related flag bits from
938 * the memory placement flags to the current flags
939 */
Christian Königf1217ed2014-08-27 13:16:04 +0200940 ttm_flag_masked(&cur_flags, place->flags,
Jerome Glisseca262a9992009-12-08 15:33:32 +0100941 ~TTM_PL_MASK_MEMTYPE);
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200942
Thomas Hellstrom0eaddb22010-01-16 16:05:04 +0100943 if (mem_type == TTM_PL_SYSTEM) {
944 mem->mem_type = mem_type;
945 mem->placement = cur_flags;
946 mem->mm_node = NULL;
947 return 0;
948 }
949
Christian Königf1217ed2014-08-27 13:16:04 +0200950 ret = ttm_bo_mem_force_space(bo, mem_type, place, mem,
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000951 interruptible, no_wait_gpu);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200952 if (ret == 0 && mem->mm_node) {
953 mem->placement = cur_flags;
954 return 0;
955 }
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +0100956 if (ret == -ERESTARTSYS)
957 has_erestartsys = true;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200958 }
Thomas Hellstrome30f3962015-09-14 01:24:41 -0700959
960 if (!type_found) {
961 printk(KERN_ERR TTM_PFX "No compatible memory type found.\n");
962 return -EINVAL;
963 }
964
965 return (has_erestartsys) ? -ERESTARTSYS : -ENOMEM;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200966}
967EXPORT_SYMBOL(ttm_bo_mem_space);
968
Rashika Kheria6e87fa42014-01-06 22:12:58 +0530969static int ttm_bo_move_buffer(struct ttm_buffer_object *bo,
Jerome Glisseca262a9992009-12-08 15:33:32 +0100970 struct ttm_placement *placement,
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000971 bool interruptible,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000972 bool no_wait_gpu)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200973{
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200974 int ret = 0;
975 struct ttm_mem_reg mem;
976
Maarten Lankhorst009a9da2013-06-27 13:48:25 +0200977 lockdep_assert_held(&bo->resv->lock.base);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200978
979 /*
980 * FIXME: It's possible to pipeline buffer moves.
981 * Have the driver move function wait for idle when necessary,
982 * instead of doing it here.
983 */
Dave Airlie1717c0e2011-10-27 18:28:37 +0200984 ret = ttm_bo_wait(bo, false, interruptible, no_wait_gpu);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200985 if (ret)
986 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200987 mem.num_pages = bo->num_pages;
988 mem.size = mem.num_pages << PAGE_SHIFT;
989 mem.page_alignment = bo->mem.page_alignment;
Thomas Hellstromeba67092010-11-11 09:41:57 +0100990 mem.bus.io_reserved_vm = false;
991 mem.bus.io_reserved_count = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200992 /*
993 * Determine where to move the buffer.
994 */
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000995 ret = ttm_bo_mem_space(bo, placement, &mem,
996 interruptible, no_wait_gpu);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200997 if (ret)
998 goto out_unlock;
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000999 ret = ttm_bo_handle_move_mem(bo, &mem, false,
1000 interruptible, no_wait_gpu);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001001out_unlock:
Ben Skeggsd961db72010-08-05 10:48:18 +10001002 if (ret && mem.mm_node)
1003 ttm_bo_mem_put(bo, &mem);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001004 return ret;
1005}
1006
Thomas Hellstrom59c8e662013-10-28 02:02:19 -07001007static bool ttm_bo_mem_compat(struct ttm_placement *placement,
1008 struct ttm_mem_reg *mem,
1009 uint32_t *new_flags)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001010{
Jerome Glisseca262a9992009-12-08 15:33:32 +01001011 int i;
Thomas Hellstrome22238e2010-02-12 00:18:00 +01001012
Jerome Glisseca262a9992009-12-08 15:33:32 +01001013 for (i = 0; i < placement->num_placement; i++) {
Christian Königf1217ed2014-08-27 13:16:04 +02001014 const struct ttm_place *heap = &placement->placement[i];
Michel Dänzer9ace2ef2014-10-09 15:03:03 +09001015 if (mem->mm_node &&
Christian Königf1217ed2014-08-27 13:16:04 +02001016 (mem->start < heap->fpfn ||
Michel Dänzer9ace2ef2014-10-09 15:03:03 +09001017 (heap->lpfn != 0 && (mem->start + mem->num_pages) > heap->lpfn)))
Christian Königf1217ed2014-08-27 13:16:04 +02001018 continue;
1019
1020 *new_flags = heap->flags;
Thomas Hellstrom59c8e662013-10-28 02:02:19 -07001021 if ((*new_flags & mem->placement & TTM_PL_MASK_CACHING) &&
1022 (*new_flags & mem->placement & TTM_PL_MASK_MEM))
1023 return true;
Jerome Glisseca262a9992009-12-08 15:33:32 +01001024 }
Thomas Hellstrom59c8e662013-10-28 02:02:19 -07001025
1026 for (i = 0; i < placement->num_busy_placement; i++) {
Christian Königf1217ed2014-08-27 13:16:04 +02001027 const struct ttm_place *heap = &placement->busy_placement[i];
Michel Dänzer9ace2ef2014-10-09 15:03:03 +09001028 if (mem->mm_node &&
Christian Königf1217ed2014-08-27 13:16:04 +02001029 (mem->start < heap->fpfn ||
Michel Dänzer9ace2ef2014-10-09 15:03:03 +09001030 (heap->lpfn != 0 && (mem->start + mem->num_pages) > heap->lpfn)))
Christian Königf1217ed2014-08-27 13:16:04 +02001031 continue;
1032
1033 *new_flags = heap->flags;
Thomas Hellstrom59c8e662013-10-28 02:02:19 -07001034 if ((*new_flags & mem->placement & TTM_PL_MASK_CACHING) &&
1035 (*new_flags & mem->placement & TTM_PL_MASK_MEM))
1036 return true;
1037 }
1038
1039 return false;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001040}
1041
Jerome Glisse09855ac2009-12-10 17:16:27 +01001042int ttm_bo_validate(struct ttm_buffer_object *bo,
1043 struct ttm_placement *placement,
Maarten Lankhorst97a875c2012-11-28 11:25:44 +00001044 bool interruptible,
Jerome Glisse9d87fa22010-04-07 10:21:19 +00001045 bool no_wait_gpu)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001046{
1047 int ret;
Thomas Hellstrom59c8e662013-10-28 02:02:19 -07001048 uint32_t new_flags;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001049
Maarten Lankhorst009a9da2013-06-27 13:48:25 +02001050 lockdep_assert_held(&bo->resv->lock.base);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001051 /*
1052 * Check whether we need to move buffer.
1053 */
Thomas Hellstrom59c8e662013-10-28 02:02:19 -07001054 if (!ttm_bo_mem_compat(placement, &bo->mem, &new_flags)) {
Maarten Lankhorst97a875c2012-11-28 11:25:44 +00001055 ret = ttm_bo_move_buffer(bo, placement, interruptible,
1056 no_wait_gpu);
Jerome Glisseca262a9992009-12-08 15:33:32 +01001057 if (ret)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001058 return ret;
Jerome Glisseca262a9992009-12-08 15:33:32 +01001059 } else {
1060 /*
1061 * Use the access and other non-mapping-related flag bits from
1062 * the compatible memory placement flags to the active flags
1063 */
Thomas Hellstrom59c8e662013-10-28 02:02:19 -07001064 ttm_flag_masked(&bo->mem.placement, new_flags,
Jerome Glisseca262a9992009-12-08 15:33:32 +01001065 ~TTM_PL_MASK_MEMTYPE);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001066 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001067 /*
1068 * We might need to add a TTM.
1069 */
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001070 if (bo->mem.mem_type == TTM_PL_SYSTEM && bo->ttm == NULL) {
1071 ret = ttm_bo_add_ttm(bo, true);
1072 if (ret)
1073 return ret;
1074 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001075 return 0;
1076}
Jerome Glisse09855ac2009-12-10 17:16:27 +01001077EXPORT_SYMBOL(ttm_bo_validate);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001078
Jerome Glisse09855ac2009-12-10 17:16:27 +01001079int ttm_bo_init(struct ttm_bo_device *bdev,
1080 struct ttm_buffer_object *bo,
1081 unsigned long size,
1082 enum ttm_bo_type type,
1083 struct ttm_placement *placement,
1084 uint32_t page_alignment,
Jerome Glisse09855ac2009-12-10 17:16:27 +01001085 bool interruptible,
Jan Engelhardt5df23972011-04-04 01:25:18 +02001086 struct file *persistent_swap_storage,
Jerome Glisse09855ac2009-12-10 17:16:27 +01001087 size_t acc_size,
Dave Airlie129b78b2012-04-02 11:46:06 +01001088 struct sg_table *sg,
Maarten Lankhorstf4f4e3e2014-01-09 11:03:15 +01001089 struct reservation_object *resv,
Jerome Glisse09855ac2009-12-10 17:16:27 +01001090 void (*destroy) (struct ttm_buffer_object *))
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001091{
Jerome Glisse09855ac2009-12-10 17:16:27 +01001092 int ret = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001093 unsigned long num_pages;
Jerome Glisse57de4ba2011-11-11 15:42:57 -05001094 struct ttm_mem_global *mem_glob = bdev->glob->mem_glob;
Maarten Lankhorst5e338402013-06-27 13:48:19 +02001095 bool locked;
Jerome Glisse57de4ba2011-11-11 15:42:57 -05001096
1097 ret = ttm_mem_global_alloc(mem_glob, acc_size, false, false);
1098 if (ret) {
Joe Perches25d04792012-03-16 21:43:50 -07001099 pr_err("Out of kernel memory\n");
Jerome Glisse57de4ba2011-11-11 15:42:57 -05001100 if (destroy)
1101 (*destroy)(bo);
1102 else
1103 kfree(bo);
1104 return -ENOMEM;
1105 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001106
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001107 num_pages = (size + PAGE_SIZE - 1) >> PAGE_SHIFT;
1108 if (num_pages == 0) {
Joe Perches25d04792012-03-16 21:43:50 -07001109 pr_err("Illegal buffer object size\n");
Thomas Hellstrom7dfbbdc2010-11-09 21:31:44 +01001110 if (destroy)
1111 (*destroy)(bo);
1112 else
1113 kfree(bo);
Thomas Hellstroma393c732012-06-12 13:28:42 +02001114 ttm_mem_global_free(mem_glob, acc_size);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001115 return -EINVAL;
1116 }
1117 bo->destroy = destroy;
1118
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001119 kref_init(&bo->kref);
1120 kref_init(&bo->list_kref);
1121 atomic_set(&bo->cpu_writers, 0);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001122 INIT_LIST_HEAD(&bo->lru);
1123 INIT_LIST_HEAD(&bo->ddestroy);
1124 INIT_LIST_HEAD(&bo->swap);
Thomas Hellstromeba67092010-11-11 09:41:57 +01001125 INIT_LIST_HEAD(&bo->io_reserve_lru);
Thomas Hellstromc58f0092013-11-14 10:49:05 -08001126 mutex_init(&bo->wu_mutex);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001127 bo->bdev = bdev;
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001128 bo->glob = bdev->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001129 bo->type = type;
1130 bo->num_pages = num_pages;
Jerome Glisseeb6d2c32009-12-10 16:15:52 +01001131 bo->mem.size = num_pages << PAGE_SHIFT;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001132 bo->mem.mem_type = TTM_PL_SYSTEM;
1133 bo->mem.num_pages = bo->num_pages;
1134 bo->mem.mm_node = NULL;
1135 bo->mem.page_alignment = page_alignment;
Thomas Hellstromeba67092010-11-11 09:41:57 +01001136 bo->mem.bus.io_reserved_vm = false;
1137 bo->mem.bus.io_reserved_count = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001138 bo->priv_flags = 0;
1139 bo->mem.placement = (TTM_PL_FLAG_SYSTEM | TTM_PL_FLAG_CACHED);
Jan Engelhardt5df23972011-04-04 01:25:18 +02001140 bo->persistent_swap_storage = persistent_swap_storage;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001141 bo->acc_size = acc_size;
Dave Airlie129b78b2012-04-02 11:46:06 +01001142 bo->sg = sg;
Maarten Lankhorstf4f4e3e2014-01-09 11:03:15 +01001143 if (resv) {
1144 bo->resv = resv;
1145 lockdep_assert_held(&bo->resv->lock.base);
1146 } else {
1147 bo->resv = &bo->ttm_resv;
1148 reservation_object_init(&bo->ttm_resv);
1149 }
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001150 atomic_inc(&bo->glob->bo_count);
David Herrmann72525b32013-07-24 21:08:53 +02001151 drm_vma_node_reset(&bo->vma_node);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001152
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001153 /*
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001154 * For ttm_bo_type_device buffers, allocate
1155 * address space from the device.
1156 */
Christian Königf1217ed2014-08-27 13:16:04 +02001157 if (bo->type == ttm_bo_type_device ||
1158 bo->type == ttm_bo_type_sg)
David Herrmannabf19032013-07-25 14:08:51 +02001159 ret = drm_vma_offset_add(&bdev->vma_manager, &bo->vma_node,
1160 bo->mem.num_pages);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001161
Maarten Lankhorstf4f4e3e2014-01-09 11:03:15 +01001162 /* passed reservation objects should already be locked,
1163 * since otherwise lockdep will be angered in radeon.
1164 */
1165 if (!resv) {
1166 locked = ww_mutex_trylock(&bo->resv->lock);
1167 WARN_ON(!locked);
1168 }
Maarten Lankhorst5e338402013-06-27 13:48:19 +02001169
1170 if (likely(!ret))
1171 ret = ttm_bo_validate(bo, placement, interruptible, false);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001172
Christian König33d48cf2016-01-11 15:35:18 +01001173 if (!resv) {
Maarten Lankhorstf4f4e3e2014-01-09 11:03:15 +01001174 ttm_bo_unreserve(bo);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001175
Christian König33d48cf2016-01-11 15:35:18 +01001176 } else if (!(bo->mem.placement & TTM_PL_FLAG_NO_EVICT)) {
1177 spin_lock(&bo->glob->lru_lock);
1178 ttm_bo_add_to_lru(bo);
1179 spin_unlock(&bo->glob->lru_lock);
1180 }
1181
Maarten Lankhorst5e338402013-06-27 13:48:19 +02001182 if (unlikely(ret))
1183 ttm_bo_unref(&bo);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001184
1185 return ret;
1186}
Jerome Glisse09855ac2009-12-10 17:16:27 +01001187EXPORT_SYMBOL(ttm_bo_init);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001188
Jerome Glisse57de4ba2011-11-11 15:42:57 -05001189size_t ttm_bo_acc_size(struct ttm_bo_device *bdev,
1190 unsigned long bo_size,
1191 unsigned struct_size)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001192{
Jerome Glisse57de4ba2011-11-11 15:42:57 -05001193 unsigned npages = (PAGE_ALIGN(bo_size)) >> PAGE_SHIFT;
1194 size_t size = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001195
Jerome Glisse57de4ba2011-11-11 15:42:57 -05001196 size += ttm_round_pot(struct_size);
1197 size += PAGE_ALIGN(npages * sizeof(void *));
1198 size += ttm_round_pot(sizeof(struct ttm_tt));
1199 return size;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001200}
Jerome Glisse57de4ba2011-11-11 15:42:57 -05001201EXPORT_SYMBOL(ttm_bo_acc_size);
1202
1203size_t ttm_bo_dma_acc_size(struct ttm_bo_device *bdev,
1204 unsigned long bo_size,
1205 unsigned struct_size)
1206{
1207 unsigned npages = (PAGE_ALIGN(bo_size)) >> PAGE_SHIFT;
1208 size_t size = 0;
1209
1210 size += ttm_round_pot(struct_size);
1211 size += PAGE_ALIGN(npages * sizeof(void *));
1212 size += PAGE_ALIGN(npages * sizeof(dma_addr_t));
1213 size += ttm_round_pot(sizeof(struct ttm_dma_tt));
1214 return size;
1215}
1216EXPORT_SYMBOL(ttm_bo_dma_acc_size);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001217
Jerome Glisse09855ac2009-12-10 17:16:27 +01001218int ttm_bo_create(struct ttm_bo_device *bdev,
1219 unsigned long size,
1220 enum ttm_bo_type type,
1221 struct ttm_placement *placement,
1222 uint32_t page_alignment,
Jerome Glisse09855ac2009-12-10 17:16:27 +01001223 bool interruptible,
Jan Engelhardt5df23972011-04-04 01:25:18 +02001224 struct file *persistent_swap_storage,
Jerome Glisse09855ac2009-12-10 17:16:27 +01001225 struct ttm_buffer_object **p_bo)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001226{
1227 struct ttm_buffer_object *bo;
Jerome Glisse57de4ba2011-11-11 15:42:57 -05001228 size_t acc_size;
Jerome Glisseca262a9992009-12-08 15:33:32 +01001229 int ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001230
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001231 bo = kzalloc(sizeof(*bo), GFP_KERNEL);
Thomas Hellstroma393c732012-06-12 13:28:42 +02001232 if (unlikely(bo == NULL))
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001233 return -ENOMEM;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001234
Thomas Hellstroma393c732012-06-12 13:28:42 +02001235 acc_size = ttm_bo_acc_size(bdev, size, sizeof(struct ttm_buffer_object));
Jerome Glisse09855ac2009-12-10 17:16:27 +01001236 ret = ttm_bo_init(bdev, bo, size, type, placement, page_alignment,
Marcin Slusarz0b91c4a2012-11-06 21:49:51 +00001237 interruptible, persistent_swap_storage, acc_size,
Maarten Lankhorstf4f4e3e2014-01-09 11:03:15 +01001238 NULL, NULL, NULL);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001239 if (likely(ret == 0))
1240 *p_bo = bo;
1241
1242 return ret;
1243}
Thomas Hellstrom4d798932011-10-04 20:13:11 +02001244EXPORT_SYMBOL(ttm_bo_create);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001245
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001246static int ttm_bo_force_list_clean(struct ttm_bo_device *bdev,
Jerome Glisseca262a9992009-12-08 15:33:32 +01001247 unsigned mem_type, bool allow_errors)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001248{
Jerome Glisseca262a9992009-12-08 15:33:32 +01001249 struct ttm_mem_type_manager *man = &bdev->man[mem_type];
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001250 struct ttm_bo_global *glob = bdev->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001251 int ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001252
1253 /*
1254 * Can't use standard list traversal since we're unlocking.
1255 */
1256
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001257 spin_lock(&glob->lru_lock);
Jerome Glisseca262a9992009-12-08 15:33:32 +01001258 while (!list_empty(&man->lru)) {
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001259 spin_unlock(&glob->lru_lock);
Michel Dänzere3001802014-10-09 15:02:59 +09001260 ret = ttm_mem_evict_first(bdev, mem_type, NULL, false, false);
Jerome Glisseca262a9992009-12-08 15:33:32 +01001261 if (ret) {
1262 if (allow_errors) {
1263 return ret;
1264 } else {
Joe Perches25d04792012-03-16 21:43:50 -07001265 pr_err("Cleanup eviction failed\n");
Jerome Glisseca262a9992009-12-08 15:33:32 +01001266 }
1267 }
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001268 spin_lock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001269 }
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001270 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001271 return 0;
1272}
1273
1274int ttm_bo_clean_mm(struct ttm_bo_device *bdev, unsigned mem_type)
1275{
Roel Kluinc96e7c72009-08-03 14:22:53 +02001276 struct ttm_mem_type_manager *man;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001277 int ret = -EINVAL;
1278
1279 if (mem_type >= TTM_NUM_MEM_TYPES) {
Joe Perches25d04792012-03-16 21:43:50 -07001280 pr_err("Illegal memory type %d\n", mem_type);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001281 return ret;
1282 }
Roel Kluinc96e7c72009-08-03 14:22:53 +02001283 man = &bdev->man[mem_type];
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001284
1285 if (!man->has_type) {
Joe Perches25d04792012-03-16 21:43:50 -07001286 pr_err("Trying to take down uninitialized memory manager type %u\n",
1287 mem_type);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001288 return ret;
1289 }
1290
1291 man->use_type = false;
1292 man->has_type = false;
1293
1294 ret = 0;
1295 if (mem_type > 0) {
Jerome Glisseca262a9992009-12-08 15:33:32 +01001296 ttm_bo_force_list_clean(bdev, mem_type, false);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001297
Ben Skeggsd961db72010-08-05 10:48:18 +10001298 ret = (*man->func->takedown)(man);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001299 }
1300
1301 return ret;
1302}
1303EXPORT_SYMBOL(ttm_bo_clean_mm);
1304
1305int ttm_bo_evict_mm(struct ttm_bo_device *bdev, unsigned mem_type)
1306{
1307 struct ttm_mem_type_manager *man = &bdev->man[mem_type];
1308
1309 if (mem_type == 0 || mem_type >= TTM_NUM_MEM_TYPES) {
Joe Perches25d04792012-03-16 21:43:50 -07001310 pr_err("Illegal memory manager memory type %u\n", mem_type);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001311 return -EINVAL;
1312 }
1313
1314 if (!man->has_type) {
Joe Perches25d04792012-03-16 21:43:50 -07001315 pr_err("Memory type %u has not been initialized\n", mem_type);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001316 return 0;
1317 }
1318
Jerome Glisseca262a9992009-12-08 15:33:32 +01001319 return ttm_bo_force_list_clean(bdev, mem_type, true);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001320}
1321EXPORT_SYMBOL(ttm_bo_evict_mm);
1322
1323int ttm_bo_init_mm(struct ttm_bo_device *bdev, unsigned type,
Jerome Glisseca262a9992009-12-08 15:33:32 +01001324 unsigned long p_size)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001325{
1326 int ret = -EINVAL;
1327 struct ttm_mem_type_manager *man;
1328
Thomas Hellstromdbc4a5b2010-10-29 10:46:47 +02001329 BUG_ON(type >= TTM_NUM_MEM_TYPES);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001330 man = &bdev->man[type];
Thomas Hellstromdbc4a5b2010-10-29 10:46:47 +02001331 BUG_ON(man->has_type);
Thomas Hellstromeba67092010-11-11 09:41:57 +01001332 man->io_reserve_fastpath = true;
1333 man->use_io_reserve_lru = false;
1334 mutex_init(&man->io_reserve_mutex);
1335 INIT_LIST_HEAD(&man->io_reserve_lru);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001336
1337 ret = bdev->driver->init_mem_type(bdev, type, man);
1338 if (ret)
1339 return ret;
Ben Skeggsd961db72010-08-05 10:48:18 +10001340 man->bdev = bdev;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001341
1342 ret = 0;
1343 if (type != TTM_PL_SYSTEM) {
Ben Skeggsd961db72010-08-05 10:48:18 +10001344 ret = (*man->func->init)(man, p_size);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001345 if (ret)
1346 return ret;
1347 }
1348 man->has_type = true;
1349 man->use_type = true;
1350 man->size = p_size;
1351
1352 INIT_LIST_HEAD(&man->lru);
1353
1354 return 0;
1355}
1356EXPORT_SYMBOL(ttm_bo_init_mm);
1357
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001358static void ttm_bo_global_kobj_release(struct kobject *kobj)
1359{
1360 struct ttm_bo_global *glob =
1361 container_of(kobj, struct ttm_bo_global, kobj);
1362
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001363 ttm_mem_unregister_shrink(glob->mem_glob, &glob->shrink);
1364 __free_page(glob->dummy_read_page);
1365 kfree(glob);
1366}
1367
Dave Airlieba4420c2010-03-09 10:56:52 +10001368void ttm_bo_global_release(struct drm_global_reference *ref)
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001369{
1370 struct ttm_bo_global *glob = ref->object;
1371
1372 kobject_del(&glob->kobj);
1373 kobject_put(&glob->kobj);
1374}
1375EXPORT_SYMBOL(ttm_bo_global_release);
1376
Dave Airlieba4420c2010-03-09 10:56:52 +10001377int ttm_bo_global_init(struct drm_global_reference *ref)
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001378{
1379 struct ttm_bo_global_ref *bo_ref =
1380 container_of(ref, struct ttm_bo_global_ref, ref);
1381 struct ttm_bo_global *glob = ref->object;
1382 int ret;
1383
1384 mutex_init(&glob->device_list_mutex);
1385 spin_lock_init(&glob->lru_lock);
1386 glob->mem_glob = bo_ref->mem_glob;
1387 glob->dummy_read_page = alloc_page(__GFP_ZERO | GFP_DMA32);
1388
1389 if (unlikely(glob->dummy_read_page == NULL)) {
1390 ret = -ENOMEM;
1391 goto out_no_drp;
1392 }
1393
1394 INIT_LIST_HEAD(&glob->swap_lru);
1395 INIT_LIST_HEAD(&glob->device_list);
1396
1397 ttm_mem_init_shrink(&glob->shrink, ttm_bo_swapout);
1398 ret = ttm_mem_register_shrink(glob->mem_glob, &glob->shrink);
1399 if (unlikely(ret != 0)) {
Joe Perches25d04792012-03-16 21:43:50 -07001400 pr_err("Could not register buffer object swapout\n");
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001401 goto out_no_shrink;
1402 }
1403
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001404 atomic_set(&glob->bo_count, 0);
1405
Robert P. J. Dayb642ed02010-03-13 10:36:32 +00001406 ret = kobject_init_and_add(
1407 &glob->kobj, &ttm_bo_glob_kobj_type, ttm_get_kobj(), "buffer_objects");
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001408 if (unlikely(ret != 0))
1409 kobject_put(&glob->kobj);
1410 return ret;
1411out_no_shrink:
1412 __free_page(glob->dummy_read_page);
1413out_no_drp:
1414 kfree(glob);
1415 return ret;
1416}
1417EXPORT_SYMBOL(ttm_bo_global_init);
1418
1419
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001420int ttm_bo_device_release(struct ttm_bo_device *bdev)
1421{
1422 int ret = 0;
1423 unsigned i = TTM_NUM_MEM_TYPES;
1424 struct ttm_mem_type_manager *man;
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001425 struct ttm_bo_global *glob = bdev->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001426
1427 while (i--) {
1428 man = &bdev->man[i];
1429 if (man->has_type) {
1430 man->use_type = false;
1431 if ((i != TTM_PL_SYSTEM) && ttm_bo_clean_mm(bdev, i)) {
1432 ret = -EBUSY;
Joe Perches25d04792012-03-16 21:43:50 -07001433 pr_err("DRM memory manager type %d is not clean\n",
1434 i);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001435 }
1436 man->has_type = false;
1437 }
1438 }
1439
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001440 mutex_lock(&glob->device_list_mutex);
1441 list_del(&bdev->device_list);
1442 mutex_unlock(&glob->device_list_mutex);
1443
Tejun Heof094cfc2010-12-24 15:59:06 +01001444 cancel_delayed_work_sync(&bdev->wq);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001445
1446 while (ttm_bo_delayed_delete(bdev, true))
1447 ;
1448
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001449 spin_lock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001450 if (list_empty(&bdev->ddestroy))
1451 TTM_DEBUG("Delayed destroy list was clean\n");
1452
1453 if (list_empty(&bdev->man[0].lru))
1454 TTM_DEBUG("Swap list was clean\n");
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001455 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001456
David Herrmann72525b32013-07-24 21:08:53 +02001457 drm_vma_offset_manager_destroy(&bdev->vma_manager);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001458
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001459 return ret;
1460}
1461EXPORT_SYMBOL(ttm_bo_device_release);
1462
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001463int ttm_bo_device_init(struct ttm_bo_device *bdev,
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001464 struct ttm_bo_global *glob,
1465 struct ttm_bo_driver *driver,
David Herrmann44d847b2013-08-13 19:10:30 +02001466 struct address_space *mapping,
Dave Airlie51c8b402009-08-20 13:38:04 +10001467 uint64_t file_page_offset,
Dave Airliead49f502009-07-10 22:36:26 +10001468 bool need_dma32)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001469{
1470 int ret = -EINVAL;
1471
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001472 bdev->driver = driver;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001473
1474 memset(bdev->man, 0, sizeof(bdev->man));
1475
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001476 /*
1477 * Initialize the system memory buffer type.
1478 * Other types need to be driver / IOCTL initialized.
1479 */
Jerome Glisseca262a9992009-12-08 15:33:32 +01001480 ret = ttm_bo_init_mm(bdev, TTM_PL_SYSTEM, 0);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001481 if (unlikely(ret != 0))
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001482 goto out_no_sys;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001483
David Herrmann72525b32013-07-24 21:08:53 +02001484 drm_vma_offset_manager_init(&bdev->vma_manager, file_page_offset,
1485 0x10000000);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001486 INIT_DELAYED_WORK(&bdev->wq, ttm_bo_delayed_workqueue);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001487 INIT_LIST_HEAD(&bdev->ddestroy);
David Herrmann44d847b2013-08-13 19:10:30 +02001488 bdev->dev_mapping = mapping;
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001489 bdev->glob = glob;
Dave Airliead49f502009-07-10 22:36:26 +10001490 bdev->need_dma32 = need_dma32;
Thomas Hellstrom65705962010-11-17 12:28:31 +00001491 bdev->val_seq = 0;
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001492 mutex_lock(&glob->device_list_mutex);
1493 list_add_tail(&bdev->device_list, &glob->device_list);
1494 mutex_unlock(&glob->device_list_mutex);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001495
1496 return 0;
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001497out_no_sys:
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001498 return ret;
1499}
1500EXPORT_SYMBOL(ttm_bo_device_init);
1501
1502/*
1503 * buffer object vm functions.
1504 */
1505
1506bool ttm_mem_reg_is_pci(struct ttm_bo_device *bdev, struct ttm_mem_reg *mem)
1507{
1508 struct ttm_mem_type_manager *man = &bdev->man[mem->mem_type];
1509
1510 if (!(man->flags & TTM_MEMTYPE_FLAG_FIXED)) {
1511 if (mem->mem_type == TTM_PL_SYSTEM)
1512 return false;
1513
1514 if (man->flags & TTM_MEMTYPE_FLAG_CMA)
1515 return false;
1516
1517 if (mem->placement & TTM_PL_FLAG_CACHED)
1518 return false;
1519 }
1520 return true;
1521}
1522
Thomas Hellstromeba67092010-11-11 09:41:57 +01001523void ttm_bo_unmap_virtual_locked(struct ttm_buffer_object *bo)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001524{
1525 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001526
David Herrmann51335df2013-07-24 21:10:03 +02001527 drm_vma_node_unmap(&bo->vma_node, bdev->dev_mapping);
Thomas Hellstromeba67092010-11-11 09:41:57 +01001528 ttm_mem_io_free_vm(bo);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001529}
Thomas Hellstromeba67092010-11-11 09:41:57 +01001530
1531void ttm_bo_unmap_virtual(struct ttm_buffer_object *bo)
1532{
1533 struct ttm_bo_device *bdev = bo->bdev;
1534 struct ttm_mem_type_manager *man = &bdev->man[bo->mem.mem_type];
1535
1536 ttm_mem_io_lock(man, false);
1537 ttm_bo_unmap_virtual_locked(bo);
1538 ttm_mem_io_unlock(man);
1539}
1540
1541
Dave Airliee024e112009-06-24 09:48:08 +10001542EXPORT_SYMBOL(ttm_bo_unmap_virtual);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001543
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001544int ttm_bo_wait(struct ttm_buffer_object *bo,
Dave Airlie1717c0e2011-10-27 18:28:37 +02001545 bool lazy, bool interruptible, bool no_wait)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001546{
Maarten Lankhorstf2c24b82014-04-02 17:14:48 +02001547 struct reservation_object_list *fobj;
1548 struct reservation_object *resv;
1549 struct fence *excl;
1550 long timeout = 15 * HZ;
1551 int i;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001552
Maarten Lankhorstf2c24b82014-04-02 17:14:48 +02001553 resv = bo->resv;
1554 fobj = reservation_object_get_list(resv);
1555 excl = reservation_object_get_excl(resv);
1556 if (excl) {
1557 if (!fence_is_signaled(excl)) {
1558 if (no_wait)
1559 return -EBUSY;
Maarten Lankhorst70401382014-01-21 13:07:01 +01001560
Maarten Lankhorstf2c24b82014-04-02 17:14:48 +02001561 timeout = fence_wait_timeout(excl,
1562 interruptible, timeout);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001563 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001564 }
Maarten Lankhorstf2c24b82014-04-02 17:14:48 +02001565
1566 for (i = 0; fobj && timeout > 0 && i < fobj->shared_count; ++i) {
1567 struct fence *fence;
1568 fence = rcu_dereference_protected(fobj->shared[i],
1569 reservation_object_held(resv));
1570
1571 if (!fence_is_signaled(fence)) {
1572 if (no_wait)
1573 return -EBUSY;
1574
1575 timeout = fence_wait_timeout(fence,
1576 interruptible, timeout);
1577 }
1578 }
1579
1580 if (timeout < 0)
1581 return timeout;
1582
1583 if (timeout == 0)
1584 return -EBUSY;
1585
1586 reservation_object_add_excl_fence(resv, NULL);
1587 clear_bit(TTM_BO_PRIV_FLAG_MOVING, &bo->priv_flags);
1588 return 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001589}
1590EXPORT_SYMBOL(ttm_bo_wait);
1591
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001592int ttm_bo_synccpu_write_grab(struct ttm_buffer_object *bo, bool no_wait)
1593{
1594 int ret = 0;
1595
1596 /*
Thomas Hellstrom8cfe92d2010-04-28 11:33:25 +02001597 * Using ttm_bo_reserve makes sure the lru lists are updated.
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001598 */
1599
Martin Kepplinger0eff2a22014-06-15 02:10:39 +02001600 ret = ttm_bo_reserve(bo, true, no_wait, false, NULL);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001601 if (unlikely(ret != 0))
1602 return ret;
Dave Airlie1717c0e2011-10-27 18:28:37 +02001603 ret = ttm_bo_wait(bo, false, true, no_wait);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001604 if (likely(ret == 0))
1605 atomic_inc(&bo->cpu_writers);
1606 ttm_bo_unreserve(bo);
1607 return ret;
1608}
Ben Skeggsd1ede142009-12-11 15:13:00 +10001609EXPORT_SYMBOL(ttm_bo_synccpu_write_grab);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001610
1611void ttm_bo_synccpu_write_release(struct ttm_buffer_object *bo)
1612{
Maarten Lankhorst654aa7922012-11-06 14:39:43 +01001613 atomic_dec(&bo->cpu_writers);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001614}
Ben Skeggsd1ede142009-12-11 15:13:00 +10001615EXPORT_SYMBOL(ttm_bo_synccpu_write_release);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001616
1617/**
1618 * A buffer object shrink method that tries to swap out the first
1619 * buffer object on the bo_global::swap_lru list.
1620 */
1621
1622static int ttm_bo_swapout(struct ttm_mem_shrink *shrink)
1623{
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001624 struct ttm_bo_global *glob =
1625 container_of(shrink, struct ttm_bo_global, shrink);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001626 struct ttm_buffer_object *bo;
1627 int ret = -EBUSY;
1628 int put_count;
1629 uint32_t swap_placement = (TTM_PL_FLAG_CACHED | TTM_PL_FLAG_SYSTEM);
1630
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001631 spin_lock(&glob->lru_lock);
Maarten Lankhorst2b7b3ad2012-11-28 11:25:42 +00001632 list_for_each_entry(bo, &glob->swap_lru, swap) {
Martin Kepplinger0eff2a22014-06-15 02:10:39 +02001633 ret = __ttm_bo_reserve(bo, false, true, false, NULL);
Maarten Lankhorst2b7b3ad2012-11-28 11:25:42 +00001634 if (!ret)
1635 break;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001636 }
1637
Maarten Lankhorst2b7b3ad2012-11-28 11:25:42 +00001638 if (ret) {
1639 spin_unlock(&glob->lru_lock);
1640 return ret;
1641 }
1642
1643 kref_get(&bo->list_kref);
1644
1645 if (!list_empty(&bo->ddestroy)) {
1646 ret = ttm_bo_cleanup_refs_and_unlock(bo, false, false);
1647 kref_put(&bo->list_kref, ttm_bo_release_list);
1648 return ret;
1649 }
1650
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001651 put_count = ttm_bo_del_from_lru(bo);
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001652 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001653
Dave Airlied6ea8882010-11-22 13:24:40 +10001654 ttm_bo_list_ref_sub(bo, put_count, true);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001655
1656 /**
1657 * Wait for GPU, then move to system cached.
1658 */
1659
Dave Airlie1717c0e2011-10-27 18:28:37 +02001660 ret = ttm_bo_wait(bo, false, false, false);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001661
1662 if (unlikely(ret != 0))
1663 goto out;
1664
1665 if ((bo->mem.placement & swap_placement) != swap_placement) {
1666 struct ttm_mem_reg evict_mem;
1667
1668 evict_mem = bo->mem;
1669 evict_mem.mm_node = NULL;
1670 evict_mem.placement = TTM_PL_FLAG_SYSTEM | TTM_PL_FLAG_CACHED;
1671 evict_mem.mem_type = TTM_PL_SYSTEM;
1672
1673 ret = ttm_bo_handle_move_mem(bo, &evict_mem, true,
Maarten Lankhorst97a875c2012-11-28 11:25:44 +00001674 false, false);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001675 if (unlikely(ret != 0))
1676 goto out;
1677 }
1678
1679 ttm_bo_unmap_virtual(bo);
1680
1681 /**
1682 * Swap out. Buffer will be swapped in again as soon as
1683 * anyone tries to access a ttm page.
1684 */
1685
Thomas Hellstrom3f09ea42010-01-13 22:28:40 +01001686 if (bo->bdev->driver->swap_notify)
1687 bo->bdev->driver->swap_notify(bo);
1688
Jan Engelhardt5df23972011-04-04 01:25:18 +02001689 ret = ttm_tt_swapout(bo->ttm, bo->persistent_swap_storage);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001690out:
1691
1692 /**
1693 *
1694 * Unreserve without putting on LRU to avoid swapping out an
1695 * already swapped buffer.
1696 */
1697
Thomas Hellstromc7523082014-02-20 11:36:25 +01001698 __ttm_bo_unreserve(bo);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001699 kref_put(&bo->list_kref, ttm_bo_release_list);
1700 return ret;
1701}
1702
1703void ttm_bo_swapout_all(struct ttm_bo_device *bdev)
1704{
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001705 while (ttm_bo_swapout(&bdev->glob->shrink) == 0)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001706 ;
1707}
Thomas Hellstrome99e1e72010-01-13 22:28:42 +01001708EXPORT_SYMBOL(ttm_bo_swapout_all);
Thomas Hellstromc58f0092013-11-14 10:49:05 -08001709
1710/**
1711 * ttm_bo_wait_unreserved - interruptible wait for a buffer object to become
1712 * unreserved
1713 *
1714 * @bo: Pointer to buffer
1715 */
1716int ttm_bo_wait_unreserved(struct ttm_buffer_object *bo)
1717{
1718 int ret;
1719
1720 /*
1721 * In the absense of a wait_unlocked API,
1722 * Use the bo::wu_mutex to avoid triggering livelocks due to
1723 * concurrent use of this function. Note that this use of
1724 * bo::wu_mutex can go away if we change locking order to
1725 * mmap_sem -> bo::reserve.
1726 */
1727 ret = mutex_lock_interruptible(&bo->wu_mutex);
1728 if (unlikely(ret != 0))
1729 return -ERESTARTSYS;
1730 if (!ww_mutex_is_locked(&bo->resv->lock))
1731 goto out_unlock;
Thomas Hellstromc7523082014-02-20 11:36:25 +01001732 ret = __ttm_bo_reserve(bo, true, false, false, NULL);
Thomas Hellstromc58f0092013-11-14 10:49:05 -08001733 if (unlikely(ret != 0))
1734 goto out_unlock;
Thomas Hellstromc7523082014-02-20 11:36:25 +01001735 __ttm_bo_unreserve(bo);
Thomas Hellstromc58f0092013-11-14 10:49:05 -08001736
1737out_unlock:
1738 mutex_unlock(&bo->wu_mutex);
1739 return ret;
1740}