blob: 4cbf26555093f3d13ed8c917a34bf7e0302bdb8b [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
Christian Königed704a42016-01-11 15:35:19 +0100179 if (bo->ttm && !(bo->ttm->page_flags & TTM_PAGE_FLAG_SG)) {
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
Christian Königab749612016-01-11 15:35:20 +0100231void ttm_bo_move_to_lru_tail(struct ttm_buffer_object *bo)
232{
233 struct ttm_bo_device *bdev = bo->bdev;
234 struct ttm_mem_type_manager *man;
235
236 lockdep_assert_held(&bo->resv->lock.base);
237
238 if (bo->mem.placement & TTM_PL_FLAG_NO_EVICT) {
239 list_del_init(&bo->swap);
240 list_del_init(&bo->lru);
241
242 } else {
243 if (bo->ttm && !(bo->ttm->page_flags & TTM_PAGE_FLAG_SG))
244 list_move_tail(&bo->swap, &bo->glob->swap_lru);
245
246 man = &bdev->man[bo->mem.mem_type];
247 list_move_tail(&bo->lru, &man->lru);
248 }
249}
250EXPORT_SYMBOL(ttm_bo_move_to_lru_tail);
251
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200252/*
253 * Call bo->mutex locked.
254 */
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200255static int ttm_bo_add_ttm(struct ttm_buffer_object *bo, bool zero_alloc)
256{
257 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200258 struct ttm_bo_global *glob = bo->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200259 int ret = 0;
260 uint32_t page_flags = 0;
261
262 TTM_ASSERT_LOCKED(&bo->mutex);
263 bo->ttm = NULL;
264
Dave Airliead49f502009-07-10 22:36:26 +1000265 if (bdev->need_dma32)
266 page_flags |= TTM_PAGE_FLAG_DMA32;
267
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200268 switch (bo->type) {
269 case ttm_bo_type_device:
270 if (zero_alloc)
271 page_flags |= TTM_PAGE_FLAG_ZERO_ALLOC;
272 case ttm_bo_type_kernel:
Jerome Glisse649bf3c2011-11-01 20:46:13 -0400273 bo->ttm = bdev->driver->ttm_tt_create(bdev, bo->num_pages << PAGE_SHIFT,
274 page_flags, glob->dummy_read_page);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200275 if (unlikely(bo->ttm == NULL))
276 ret = -ENOMEM;
277 break;
Dave Airlie129b78b2012-04-02 11:46:06 +0100278 case ttm_bo_type_sg:
279 bo->ttm = bdev->driver->ttm_tt_create(bdev, bo->num_pages << PAGE_SHIFT,
280 page_flags | TTM_PAGE_FLAG_SG,
281 glob->dummy_read_page);
282 if (unlikely(bo->ttm == NULL)) {
283 ret = -ENOMEM;
284 break;
285 }
286 bo->ttm->sg = bo->sg;
287 break;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200288 default:
Joe Perches25d04792012-03-16 21:43:50 -0700289 pr_err("Illegal buffer object type\n");
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200290 ret = -EINVAL;
291 break;
292 }
293
294 return ret;
295}
296
297static int ttm_bo_handle_move_mem(struct ttm_buffer_object *bo,
298 struct ttm_mem_reg *mem,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000299 bool evict, bool interruptible,
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000300 bool no_wait_gpu)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200301{
302 struct ttm_bo_device *bdev = bo->bdev;
303 bool old_is_pci = ttm_mem_reg_is_pci(bdev, &bo->mem);
304 bool new_is_pci = ttm_mem_reg_is_pci(bdev, mem);
305 struct ttm_mem_type_manager *old_man = &bdev->man[bo->mem.mem_type];
306 struct ttm_mem_type_manager *new_man = &bdev->man[mem->mem_type];
307 int ret = 0;
308
309 if (old_is_pci || new_is_pci ||
Thomas Hellstromeba67092010-11-11 09:41:57 +0100310 ((mem->placement & bo->mem.placement & TTM_PL_MASK_CACHING) == 0)) {
311 ret = ttm_mem_io_lock(old_man, true);
312 if (unlikely(ret != 0))
313 goto out_err;
314 ttm_bo_unmap_virtual_locked(bo);
315 ttm_mem_io_unlock(old_man);
316 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200317
318 /*
319 * Create and bind a ttm if required.
320 */
321
Ben Skeggs8d3bb232011-08-22 03:15:05 +0000322 if (!(new_man->flags & TTM_MEMTYPE_FLAG_FIXED)) {
323 if (bo->ttm == NULL) {
Ben Skeggsff02b132011-09-14 06:08:06 +1000324 bool zero = !(old_man->flags & TTM_MEMTYPE_FLAG_FIXED);
325 ret = ttm_bo_add_ttm(bo, zero);
Ben Skeggs8d3bb232011-08-22 03:15:05 +0000326 if (ret)
327 goto out_err;
328 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200329
330 ret = ttm_tt_set_placement_caching(bo->ttm, mem->placement);
331 if (ret)
Thomas Hellstrom87ef9202009-06-17 12:29:57 +0200332 goto out_err;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200333
334 if (mem->mem_type != TTM_PL_SYSTEM) {
335 ret = ttm_tt_bind(bo->ttm, mem);
336 if (ret)
337 goto out_err;
338 }
339
340 if (bo->mem.mem_type == TTM_PL_SYSTEM) {
Ben Skeggs82ef5942011-02-02 00:27:10 +0000341 if (bdev->driver->move_notify)
342 bdev->driver->move_notify(bo, mem);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100343 bo->mem = *mem;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200344 mem->mm_node = NULL;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200345 goto moved;
346 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200347 }
348
Ben Skeggs9f1feed2012-01-25 15:34:22 +1000349 if (bdev->driver->move_notify)
350 bdev->driver->move_notify(bo, mem);
351
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200352 if (!(old_man->flags & TTM_MEMTYPE_FLAG_FIXED) &&
353 !(new_man->flags & TTM_MEMTYPE_FLAG_FIXED))
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000354 ret = ttm_bo_move_ttm(bo, evict, no_wait_gpu, mem);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200355 else if (bdev->driver->move)
356 ret = bdev->driver->move(bo, evict, interruptible,
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000357 no_wait_gpu, mem);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200358 else
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000359 ret = ttm_bo_move_memcpy(bo, evict, no_wait_gpu, mem);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200360
Ben Skeggs9f1feed2012-01-25 15:34:22 +1000361 if (ret) {
362 if (bdev->driver->move_notify) {
363 struct ttm_mem_reg tmp_mem = *mem;
364 *mem = bo->mem;
365 bo->mem = tmp_mem;
366 bdev->driver->move_notify(bo, mem);
367 bo->mem = *mem;
Dave Airlie014b3442013-01-16 15:58:34 +1000368 *mem = tmp_mem;
Ben Skeggs9f1feed2012-01-25 15:34:22 +1000369 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200370
Ben Skeggs9f1feed2012-01-25 15:34:22 +1000371 goto out_err;
372 }
Jerome Glissedc97b342011-11-18 11:47:03 -0500373
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200374moved:
375 if (bo->evicted) {
Rob Clark9ef75062014-03-12 10:59:37 -0400376 if (bdev->driver->invalidate_caches) {
377 ret = bdev->driver->invalidate_caches(bdev, bo->mem.placement);
378 if (ret)
379 pr_err("Can not flush read caches\n");
380 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200381 bo->evicted = false;
382 }
383
384 if (bo->mem.mm_node) {
Ben Skeggsd961db72010-08-05 10:48:18 +1000385 bo->offset = (bo->mem.start << PAGE_SHIFT) +
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200386 bdev->man[bo->mem.mem_type].gpu_offset;
387 bo->cur_placement = bo->mem.placement;
Thomas Hellstrom354fb522010-01-13 22:28:45 +0100388 } else
389 bo->offset = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200390
391 return 0;
392
393out_err:
394 new_man = &bdev->man[bo->mem.mem_type];
395 if ((new_man->flags & TTM_MEMTYPE_FLAG_FIXED) && bo->ttm) {
396 ttm_tt_unbind(bo->ttm);
397 ttm_tt_destroy(bo->ttm);
398 bo->ttm = NULL;
399 }
400
401 return ret;
402}
403
404/**
Thomas Hellstrom40d857b2010-10-19 09:01:00 +0200405 * Call bo::reserved.
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200406 * Will release GPU memory type usage on destruction.
Thomas Hellstrom40d857b2010-10-19 09:01:00 +0200407 * This is the place to put in driver specific hooks to release
408 * driver private resources.
409 * Will release the bo::reserved lock.
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200410 */
411
412static void ttm_bo_cleanup_memtype_use(struct ttm_buffer_object *bo)
413{
Jerome Glissedc97b342011-11-18 11:47:03 -0500414 if (bo->bdev->driver->move_notify)
415 bo->bdev->driver->move_notify(bo, NULL);
416
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200417 if (bo->ttm) {
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200418 ttm_tt_unbind(bo->ttm);
419 ttm_tt_destroy(bo->ttm);
420 bo->ttm = NULL;
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200421 }
Thomas Hellstrom40d857b2010-10-19 09:01:00 +0200422 ttm_bo_mem_put(bo, &bo->mem);
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200423
Maarten Lankhorst5e338402013-06-27 13:48:19 +0200424 ww_mutex_unlock (&bo->resv->lock);
Thomas Hellstrom1df6a2e2010-09-30 12:36:45 +0200425}
426
Maarten Lankhorstf2c24b82014-04-02 17:14:48 +0200427static void ttm_bo_flush_all_fences(struct ttm_buffer_object *bo)
428{
429 struct reservation_object_list *fobj;
430 struct fence *fence;
431 int i;
432
433 fobj = reservation_object_get_list(bo->resv);
434 fence = reservation_object_get_excl(bo->resv);
435 if (fence && !fence->ops->signaled)
436 fence_enable_sw_signaling(fence);
437
438 for (i = 0; fobj && i < fobj->shared_count; ++i) {
439 fence = rcu_dereference_protected(fobj->shared[i],
440 reservation_object_held(bo->resv));
441
442 if (!fence->ops->signaled)
443 fence_enable_sw_signaling(fence);
444 }
445}
446
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200447static void ttm_bo_cleanup_refs_or_queue(struct ttm_buffer_object *bo)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200448{
449 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200450 struct ttm_bo_global *glob = bo->glob;
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200451 int put_count;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200452 int ret;
453
Maarten Lankhorst4154f052012-11-28 12:25:39 +0100454 spin_lock(&glob->lru_lock);
Martin Kepplinger0eff2a22014-06-15 02:10:39 +0200455 ret = __ttm_bo_reserve(bo, false, true, false, NULL);
Maarten Lankhorst4154f052012-11-28 12:25:39 +0100456
Thomas Hellstrom15205fb2013-10-10 11:09:03 -0700457 if (!ret) {
Maarten Lankhorstf2c24b82014-04-02 17:14:48 +0200458 if (!ttm_bo_wait(bo, false, false, true)) {
Maarten Lankhorstdd7cfd62014-01-21 13:07:31 +0100459 put_count = ttm_bo_del_from_lru(bo);
460
461 spin_unlock(&glob->lru_lock);
462 ttm_bo_cleanup_memtype_use(bo);
463
464 ttm_bo_list_ref_sub(bo, put_count, true);
465
466 return;
Maarten Lankhorstf2c24b82014-04-02 17:14:48 +0200467 } else
468 ttm_bo_flush_all_fences(bo);
Thomas Hellstrom15205fb2013-10-10 11:09:03 -0700469
470 /*
471 * Make NO_EVICT bos immediately available to
472 * shrinkers, now that they are queued for
473 * destruction.
474 */
475 if (bo->mem.placement & TTM_PL_FLAG_NO_EVICT) {
476 bo->mem.placement &= ~TTM_PL_FLAG_NO_EVICT;
477 ttm_bo_add_to_lru(bo);
478 }
479
Thomas Hellstromc7523082014-02-20 11:36:25 +0100480 __ttm_bo_unreserve(bo);
Thomas Hellstrom15205fb2013-10-10 11:09:03 -0700481 }
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200482
483 kref_get(&bo->list_kref);
484 list_add_tail(&bo->ddestroy, &bdev->ddestroy);
485 spin_unlock(&glob->lru_lock);
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200486
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200487 schedule_delayed_work(&bdev->wq,
488 ((HZ / 100) < 1) ? 1 : HZ / 100);
489}
490
491/**
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000492 * function ttm_bo_cleanup_refs_and_unlock
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200493 * If bo idle, remove from delayed- and lru lists, and unref.
494 * If not idle, do nothing.
495 *
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000496 * Must be called with lru_lock and reservation held, this function
497 * will drop both before returning.
498 *
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200499 * @interruptible Any sleeps should occur interruptibly.
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200500 * @no_wait_gpu Never wait for gpu. Return -EBUSY instead.
501 */
502
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000503static int ttm_bo_cleanup_refs_and_unlock(struct ttm_buffer_object *bo,
504 bool interruptible,
505 bool no_wait_gpu)
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200506{
507 struct ttm_bo_global *glob = bo->glob;
508 int put_count;
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000509 int ret;
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200510
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000511 ret = ttm_bo_wait(bo, false, false, true);
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200512
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000513 if (ret && !no_wait_gpu) {
Maarten Lankhorst472db7a2014-05-14 15:42:29 +0200514 long lret;
515 ww_mutex_unlock(&bo->resv->lock);
516 spin_unlock(&glob->lru_lock);
517
518 lret = reservation_object_wait_timeout_rcu(bo->resv,
519 true,
520 interruptible,
521 30 * HZ);
522
523 if (lret < 0)
524 return lret;
525 else if (lret == 0)
526 return -EBUSY;
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000527
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000528 spin_lock(&glob->lru_lock);
Martin Kepplinger0eff2a22014-06-15 02:10:39 +0200529 ret = __ttm_bo_reserve(bo, false, true, false, NULL);
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000530
531 /*
532 * We raced, and lost, someone else holds the reservation now,
533 * and is probably busy in ttm_bo_cleanup_memtype_use.
534 *
535 * Even if it's not the case, because we finished waiting any
536 * delayed destruction would succeed, so just return success
537 * here.
538 */
539 if (ret) {
540 spin_unlock(&glob->lru_lock);
541 return 0;
542 }
Maarten Lankhorst70401382014-01-21 13:07:01 +0100543
544 /*
545 * remove sync_obj with ttm_bo_wait, the wait should be
546 * finished, and no new wait object should have been added.
547 */
Maarten Lankhorst70401382014-01-21 13:07:01 +0100548 ret = ttm_bo_wait(bo, false, false, true);
549 WARN_ON(ret);
550 }
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000551
552 if (ret || unlikely(list_empty(&bo->ddestroy))) {
Thomas Hellstromc7523082014-02-20 11:36:25 +0100553 __ttm_bo_unreserve(bo);
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000554 spin_unlock(&glob->lru_lock);
555 return ret;
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200556 }
557
558 put_count = ttm_bo_del_from_lru(bo);
559 list_del_init(&bo->ddestroy);
560 ++put_count;
561
562 spin_unlock(&glob->lru_lock);
563 ttm_bo_cleanup_memtype_use(bo);
564
Dave Airlied6ea8882010-11-22 13:24:40 +1000565 ttm_bo_list_ref_sub(bo, put_count, true);
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200566
567 return 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200568}
569
570/**
571 * Traverse the delayed list, and call ttm_bo_cleanup_refs on all
572 * encountered buffers.
573 */
574
575static int ttm_bo_delayed_delete(struct ttm_bo_device *bdev, bool remove_all)
576{
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200577 struct ttm_bo_global *glob = bdev->glob;
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100578 struct ttm_buffer_object *entry = NULL;
579 int ret = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200580
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200581 spin_lock(&glob->lru_lock);
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100582 if (list_empty(&bdev->ddestroy))
583 goto out_unlock;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200584
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100585 entry = list_first_entry(&bdev->ddestroy,
586 struct ttm_buffer_object, ddestroy);
587 kref_get(&entry->list_kref);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200588
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100589 for (;;) {
590 struct ttm_buffer_object *nentry = NULL;
591
592 if (entry->ddestroy.next != &bdev->ddestroy) {
593 nentry = list_first_entry(&entry->ddestroy,
594 struct ttm_buffer_object, ddestroy);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200595 kref_get(&nentry->list_kref);
596 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200597
Martin Kepplinger0eff2a22014-06-15 02:10:39 +0200598 ret = __ttm_bo_reserve(entry, false, true, false, NULL);
Maarten Lankhorst63d0a412013-01-15 14:56:37 +0100599 if (remove_all && ret) {
600 spin_unlock(&glob->lru_lock);
Thomas Hellstromc7523082014-02-20 11:36:25 +0100601 ret = __ttm_bo_reserve(entry, false, false,
Martin Kepplinger0eff2a22014-06-15 02:10:39 +0200602 false, NULL);
Maarten Lankhorst63d0a412013-01-15 14:56:37 +0100603 spin_lock(&glob->lru_lock);
604 }
605
Maarten Lankhorst85b144f2012-11-29 11:36:54 +0000606 if (!ret)
607 ret = ttm_bo_cleanup_refs_and_unlock(entry, false,
608 !remove_all);
609 else
610 spin_unlock(&glob->lru_lock);
611
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200612 kref_put(&entry->list_kref, ttm_bo_release_list);
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100613 entry = nentry;
614
615 if (ret || !entry)
616 goto out;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200617
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200618 spin_lock(&glob->lru_lock);
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100619 if (list_empty(&entry->ddestroy))
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200620 break;
621 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200622
Luca Barbieri1a961ce2010-01-20 20:01:30 +0100623out_unlock:
624 spin_unlock(&glob->lru_lock);
625out:
626 if (entry)
627 kref_put(&entry->list_kref, ttm_bo_release_list);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200628 return ret;
629}
630
631static void ttm_bo_delayed_workqueue(struct work_struct *work)
632{
633 struct ttm_bo_device *bdev =
634 container_of(work, struct ttm_bo_device, wq.work);
635
636 if (ttm_bo_delayed_delete(bdev, false)) {
637 schedule_delayed_work(&bdev->wq,
638 ((HZ / 100) < 1) ? 1 : HZ / 100);
639 }
640}
641
642static void ttm_bo_release(struct kref *kref)
643{
644 struct ttm_buffer_object *bo =
645 container_of(kref, struct ttm_buffer_object, kref);
646 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstromeba67092010-11-11 09:41:57 +0100647 struct ttm_mem_type_manager *man = &bdev->man[bo->mem.mem_type];
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200648
David Herrmann72525b32013-07-24 21:08:53 +0200649 drm_vma_offset_remove(&bdev->vma_manager, &bo->vma_node);
Thomas Hellstromeba67092010-11-11 09:41:57 +0100650 ttm_mem_io_lock(man, false);
651 ttm_mem_io_free_vm(bo);
652 ttm_mem_io_unlock(man);
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200653 ttm_bo_cleanup_refs_or_queue(bo);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200654 kref_put(&bo->list_kref, ttm_bo_release_list);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200655}
656
657void ttm_bo_unref(struct ttm_buffer_object **p_bo)
658{
659 struct ttm_buffer_object *bo = *p_bo;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200660
661 *p_bo = NULL;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200662 kref_put(&bo->kref, ttm_bo_release);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200663}
664EXPORT_SYMBOL(ttm_bo_unref);
665
Matthew Garrett7c5ee532010-04-26 16:00:09 -0400666int ttm_bo_lock_delayed_workqueue(struct ttm_bo_device *bdev)
667{
668 return cancel_delayed_work_sync(&bdev->wq);
669}
670EXPORT_SYMBOL(ttm_bo_lock_delayed_workqueue);
671
672void ttm_bo_unlock_delayed_workqueue(struct ttm_bo_device *bdev, int resched)
673{
674 if (resched)
675 schedule_delayed_work(&bdev->wq,
676 ((HZ / 100) < 1) ? 1 : HZ / 100);
677}
678EXPORT_SYMBOL(ttm_bo_unlock_delayed_workqueue);
679
Jerome Glisseca262a9992009-12-08 15:33:32 +0100680static int ttm_bo_evict(struct ttm_buffer_object *bo, bool interruptible,
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000681 bool no_wait_gpu)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200682{
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200683 struct ttm_bo_device *bdev = bo->bdev;
684 struct ttm_mem_reg evict_mem;
Jerome Glisseca262a9992009-12-08 15:33:32 +0100685 struct ttm_placement placement;
686 int ret = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200687
Dave Airlie1717c0e2011-10-27 18:28:37 +0200688 ret = ttm_bo_wait(bo, false, interruptible, no_wait_gpu);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200689
Thomas Hellstrom78ecf092009-06-17 12:29:55 +0200690 if (unlikely(ret != 0)) {
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +0100691 if (ret != -ERESTARTSYS) {
Joe Perches25d04792012-03-16 21:43:50 -0700692 pr_err("Failed to expire sync object before buffer eviction\n");
Thomas Hellstrom78ecf092009-06-17 12:29:55 +0200693 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200694 goto out;
695 }
696
Maarten Lankhorst009a9da2013-06-27 13:48:25 +0200697 lockdep_assert_held(&bo->resv->lock.base);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200698
699 evict_mem = bo->mem;
700 evict_mem.mm_node = NULL;
Thomas Hellstromeba67092010-11-11 09:41:57 +0100701 evict_mem.bus.io_reserved_vm = false;
702 evict_mem.bus.io_reserved_count = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200703
Jerome Glisse7cb7d1d2009-12-09 22:14:27 +0100704 placement.num_placement = 0;
705 placement.num_busy_placement = 0;
Jerome Glisseca262a9992009-12-08 15:33:32 +0100706 bdev->driver->evict_flags(bo, &placement);
707 ret = ttm_bo_mem_space(bo, &placement, &evict_mem, interruptible,
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000708 no_wait_gpu);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200709 if (ret) {
Jerome Glissefb53f862009-12-09 21:55:10 +0100710 if (ret != -ERESTARTSYS) {
Joe Perches25d04792012-03-16 21:43:50 -0700711 pr_err("Failed to find memory space for buffer 0x%p eviction\n",
712 bo);
Jerome Glissefb53f862009-12-09 21:55:10 +0100713 ttm_bo_mem_space_debug(bo, &placement);
714 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200715 goto out;
716 }
717
718 ret = ttm_bo_handle_move_mem(bo, &evict_mem, true, interruptible,
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000719 no_wait_gpu);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200720 if (ret) {
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +0100721 if (ret != -ERESTARTSYS)
Joe Perches25d04792012-03-16 21:43:50 -0700722 pr_err("Buffer eviction failed\n");
Ben Skeggs42311ff2010-08-04 12:07:08 +1000723 ttm_bo_mem_put(bo, &evict_mem);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200724 goto out;
725 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200726 bo->evicted = true;
727out:
728 return ret;
729}
730
Jerome Glisseca262a9992009-12-08 15:33:32 +0100731static int ttm_mem_evict_first(struct ttm_bo_device *bdev,
732 uint32_t mem_type,
Michel Dänzere3001802014-10-09 15:02:59 +0900733 const struct ttm_place *place,
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000734 bool interruptible,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000735 bool no_wait_gpu)
Jerome Glisseca262a9992009-12-08 15:33:32 +0100736{
737 struct ttm_bo_global *glob = bdev->glob;
738 struct ttm_mem_type_manager *man = &bdev->man[mem_type];
739 struct ttm_buffer_object *bo;
Maarten Lankhorste7ab2012012-11-28 11:25:43 +0000740 int ret = -EBUSY, put_count;
Jerome Glisseca262a9992009-12-08 15:33:32 +0100741
742 spin_lock(&glob->lru_lock);
Maarten Lankhorste7ab2012012-11-28 11:25:43 +0000743 list_for_each_entry(bo, &man->lru, lru) {
Martin Kepplinger0eff2a22014-06-15 02:10:39 +0200744 ret = __ttm_bo_reserve(bo, false, true, false, NULL);
Michel Dänzere3001802014-10-09 15:02:59 +0900745 if (!ret) {
746 if (place && (place->fpfn || place->lpfn)) {
747 /* Don't evict this BO if it's outside of the
748 * requested placement range
749 */
750 if (place->fpfn >= (bo->mem.start + bo->mem.size) ||
751 (place->lpfn && place->lpfn <= bo->mem.start)) {
752 __ttm_bo_unreserve(bo);
753 ret = -EBUSY;
754 continue;
755 }
756 }
757
Maarten Lankhorste7ab2012012-11-28 11:25:43 +0000758 break;
Michel Dänzere3001802014-10-09 15:02:59 +0900759 }
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100760 }
761
Maarten Lankhorste7ab2012012-11-28 11:25:43 +0000762 if (ret) {
763 spin_unlock(&glob->lru_lock);
Thomas Hellstromb8e902f2012-10-22 12:51:26 +0000764 return ret;
Thomas Hellstrome1efc9b2010-10-19 09:01:01 +0200765 }
766
Maarten Lankhorste7ab2012012-11-28 11:25:43 +0000767 kref_get(&bo->list_kref);
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100768
Maarten Lankhorste7ab2012012-11-28 11:25:43 +0000769 if (!list_empty(&bo->ddestroy)) {
770 ret = ttm_bo_cleanup_refs_and_unlock(bo, interruptible,
771 no_wait_gpu);
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100772 kref_put(&bo->list_kref, ttm_bo_release_list);
Maarten Lankhorste7ab2012012-11-28 11:25:43 +0000773 return ret;
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100774 }
775
776 put_count = ttm_bo_del_from_lru(bo);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100777 spin_unlock(&glob->lru_lock);
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100778
779 BUG_ON(ret != 0);
780
Dave Airlied6ea8882010-11-22 13:24:40 +1000781 ttm_bo_list_ref_sub(bo, put_count, true);
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100782
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000783 ret = ttm_bo_evict(bo, interruptible, no_wait_gpu);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100784 ttm_bo_unreserve(bo);
Thomas Hellstrom9c51ba12009-12-02 18:33:46 +0100785
Jerome Glisseca262a9992009-12-08 15:33:32 +0100786 kref_put(&bo->list_kref, ttm_bo_release_list);
787 return ret;
788}
789
Ben Skeggs42311ff2010-08-04 12:07:08 +1000790void ttm_bo_mem_put(struct ttm_buffer_object *bo, struct ttm_mem_reg *mem)
791{
Ben Skeggsd961db72010-08-05 10:48:18 +1000792 struct ttm_mem_type_manager *man = &bo->bdev->man[mem->mem_type];
Ben Skeggs42311ff2010-08-04 12:07:08 +1000793
Ben Skeggsd961db72010-08-05 10:48:18 +1000794 if (mem->mm_node)
795 (*man->func->put_node)(man, mem);
Ben Skeggs42311ff2010-08-04 12:07:08 +1000796}
797EXPORT_SYMBOL(ttm_bo_mem_put);
798
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200799/**
800 * Repeatedly evict memory from the LRU for @mem_type until we create enough
801 * space, or we've evicted everything and there isn't enough space.
802 */
Jerome Glisseca262a9992009-12-08 15:33:32 +0100803static int ttm_bo_mem_force_space(struct ttm_buffer_object *bo,
804 uint32_t mem_type,
Christian Königf1217ed2014-08-27 13:16:04 +0200805 const struct ttm_place *place,
Jerome Glisseca262a9992009-12-08 15:33:32 +0100806 struct ttm_mem_reg *mem,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000807 bool interruptible,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000808 bool no_wait_gpu)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200809{
Jerome Glisseca262a9992009-12-08 15:33:32 +0100810 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200811 struct ttm_mem_type_manager *man = &bdev->man[mem_type];
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200812 int ret;
813
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200814 do {
Christian Königf1217ed2014-08-27 13:16:04 +0200815 ret = (*man->func->get_node)(man, bo, place, mem);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200816 if (unlikely(ret != 0))
817 return ret;
Ben Skeggsd961db72010-08-05 10:48:18 +1000818 if (mem->mm_node)
Jerome Glisseca262a9992009-12-08 15:33:32 +0100819 break;
Michel Dänzere3001802014-10-09 15:02:59 +0900820 ret = ttm_mem_evict_first(bdev, mem_type, place,
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000821 interruptible, no_wait_gpu);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100822 if (unlikely(ret != 0))
823 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200824 } while (1);
Ben Skeggsd961db72010-08-05 10:48:18 +1000825 if (mem->mm_node == NULL)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200826 return -ENOMEM;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200827 mem->mem_type = mem_type;
828 return 0;
829}
830
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200831static uint32_t ttm_bo_select_caching(struct ttm_mem_type_manager *man,
832 uint32_t cur_placement,
833 uint32_t proposed_placement)
834{
835 uint32_t caching = proposed_placement & TTM_PL_MASK_CACHING;
836 uint32_t result = proposed_placement & ~TTM_PL_MASK_CACHING;
837
838 /**
839 * Keep current caching if possible.
840 */
841
842 if ((cur_placement & caching) != 0)
843 result |= (cur_placement & caching);
844 else if ((man->default_caching & caching) != 0)
845 result |= man->default_caching;
846 else if ((TTM_PL_FLAG_CACHED & caching) != 0)
847 result |= TTM_PL_FLAG_CACHED;
848 else if ((TTM_PL_FLAG_WC & caching) != 0)
849 result |= TTM_PL_FLAG_WC;
850 else if ((TTM_PL_FLAG_UNCACHED & caching) != 0)
851 result |= TTM_PL_FLAG_UNCACHED;
852
853 return result;
854}
855
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200856static bool ttm_bo_mt_compatible(struct ttm_mem_type_manager *man,
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200857 uint32_t mem_type,
Christian Königf1217ed2014-08-27 13:16:04 +0200858 const struct ttm_place *place,
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200859 uint32_t *masked_placement)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200860{
861 uint32_t cur_flags = ttm_bo_type_flags(mem_type);
862
Christian Königf1217ed2014-08-27 13:16:04 +0200863 if ((cur_flags & place->flags & TTM_PL_MASK_MEM) == 0)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200864 return false;
865
Christian Königf1217ed2014-08-27 13:16:04 +0200866 if ((place->flags & man->available_caching) == 0)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200867 return false;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200868
Christian Königf1217ed2014-08-27 13:16:04 +0200869 cur_flags |= (place->flags & man->available_caching);
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200870
871 *masked_placement = cur_flags;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200872 return true;
873}
874
875/**
876 * Creates space for memory region @mem according to its type.
877 *
878 * This function first searches for free space in compatible memory types in
879 * the priority order defined by the driver. If free space isn't found, then
880 * ttm_bo_mem_force_space is attempted in priority order to evict and find
881 * space.
882 */
883int ttm_bo_mem_space(struct ttm_buffer_object *bo,
Jerome Glisseca262a9992009-12-08 15:33:32 +0100884 struct ttm_placement *placement,
885 struct ttm_mem_reg *mem,
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000886 bool interruptible,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000887 bool no_wait_gpu)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200888{
889 struct ttm_bo_device *bdev = bo->bdev;
890 struct ttm_mem_type_manager *man;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200891 uint32_t mem_type = TTM_PL_SYSTEM;
892 uint32_t cur_flags = 0;
893 bool type_found = false;
894 bool type_ok = false;
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +0100895 bool has_erestartsys = false;
Jerome Glisseca262a9992009-12-08 15:33:32 +0100896 int i, ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200897
898 mem->mm_node = NULL;
Dave Airlieb6637522009-12-14 14:51:35 +1000899 for (i = 0; i < placement->num_placement; ++i) {
Christian Königf1217ed2014-08-27 13:16:04 +0200900 const struct ttm_place *place = &placement->placement[i];
901
902 ret = ttm_mem_type_from_place(place, &mem_type);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100903 if (ret)
904 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200905 man = &bdev->man[mem_type];
Thomas Hellstrome30f3962015-09-14 01:24:41 -0700906 if (!man->has_type || !man->use_type)
907 continue;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200908
Christian Königf1217ed2014-08-27 13:16:04 +0200909 type_ok = ttm_bo_mt_compatible(man, mem_type, place,
Jerome Glisseca262a9992009-12-08 15:33:32 +0100910 &cur_flags);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200911
912 if (!type_ok)
913 continue;
914
Thomas Hellstrome30f3962015-09-14 01:24:41 -0700915 type_found = true;
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200916 cur_flags = ttm_bo_select_caching(man, bo->mem.placement,
917 cur_flags);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100918 /*
919 * Use the access and other non-mapping-related flag bits from
920 * the memory placement flags to the current flags
921 */
Christian Königf1217ed2014-08-27 13:16:04 +0200922 ttm_flag_masked(&cur_flags, place->flags,
Jerome Glisseca262a9992009-12-08 15:33:32 +0100923 ~TTM_PL_MASK_MEMTYPE);
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200924
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200925 if (mem_type == TTM_PL_SYSTEM)
926 break;
927
Thomas Hellstrome30f3962015-09-14 01:24:41 -0700928 ret = (*man->func->get_node)(man, bo, place, mem);
929 if (unlikely(ret))
930 return ret;
931
Ben Skeggsd961db72010-08-05 10:48:18 +1000932 if (mem->mm_node)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200933 break;
934 }
935
Ben Skeggsd961db72010-08-05 10:48:18 +1000936 if ((type_ok && (mem_type == TTM_PL_SYSTEM)) || mem->mm_node) {
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200937 mem->mem_type = mem_type;
938 mem->placement = cur_flags;
939 return 0;
940 }
941
Dave Airlieb6637522009-12-14 14:51:35 +1000942 for (i = 0; i < placement->num_busy_placement; ++i) {
Christian Königf1217ed2014-08-27 13:16:04 +0200943 const struct ttm_place *place = &placement->busy_placement[i];
944
945 ret = ttm_mem_type_from_place(place, &mem_type);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100946 if (ret)
947 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200948 man = &bdev->man[mem_type];
Thomas Hellstrome30f3962015-09-14 01:24:41 -0700949 if (!man->has_type || !man->use_type)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200950 continue;
Christian Königf1217ed2014-08-27 13:16:04 +0200951 if (!ttm_bo_mt_compatible(man, mem_type, place, &cur_flags))
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200952 continue;
953
Thomas Hellstrome30f3962015-09-14 01:24:41 -0700954 type_found = true;
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200955 cur_flags = ttm_bo_select_caching(man, bo->mem.placement,
956 cur_flags);
Jerome Glisseca262a9992009-12-08 15:33:32 +0100957 /*
958 * Use the access and other non-mapping-related flag bits from
959 * the memory placement flags to the current flags
960 */
Christian Königf1217ed2014-08-27 13:16:04 +0200961 ttm_flag_masked(&cur_flags, place->flags,
Jerome Glisseca262a9992009-12-08 15:33:32 +0100962 ~TTM_PL_MASK_MEMTYPE);
Thomas Hellstromae3e8122009-06-24 19:57:34 +0200963
Thomas Hellstrom0eaddb22010-01-16 16:05:04 +0100964 if (mem_type == TTM_PL_SYSTEM) {
965 mem->mem_type = mem_type;
966 mem->placement = cur_flags;
967 mem->mm_node = NULL;
968 return 0;
969 }
970
Christian Königf1217ed2014-08-27 13:16:04 +0200971 ret = ttm_bo_mem_force_space(bo, mem_type, place, mem,
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000972 interruptible, no_wait_gpu);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200973 if (ret == 0 && mem->mm_node) {
974 mem->placement = cur_flags;
975 return 0;
976 }
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +0100977 if (ret == -ERESTARTSYS)
978 has_erestartsys = true;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200979 }
Thomas Hellstrome30f3962015-09-14 01:24:41 -0700980
981 if (!type_found) {
982 printk(KERN_ERR TTM_PFX "No compatible memory type found.\n");
983 return -EINVAL;
984 }
985
986 return (has_erestartsys) ? -ERESTARTSYS : -ENOMEM;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200987}
988EXPORT_SYMBOL(ttm_bo_mem_space);
989
Rashika Kheria6e87fa42014-01-06 22:12:58 +0530990static int ttm_bo_move_buffer(struct ttm_buffer_object *bo,
Jerome Glisseca262a9992009-12-08 15:33:32 +0100991 struct ttm_placement *placement,
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000992 bool interruptible,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000993 bool no_wait_gpu)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200994{
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200995 int ret = 0;
996 struct ttm_mem_reg mem;
997
Maarten Lankhorst009a9da2013-06-27 13:48:25 +0200998 lockdep_assert_held(&bo->resv->lock.base);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200999
1000 /*
1001 * FIXME: It's possible to pipeline buffer moves.
1002 * Have the driver move function wait for idle when necessary,
1003 * instead of doing it here.
1004 */
Dave Airlie1717c0e2011-10-27 18:28:37 +02001005 ret = ttm_bo_wait(bo, false, interruptible, no_wait_gpu);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001006 if (ret)
1007 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001008 mem.num_pages = bo->num_pages;
1009 mem.size = mem.num_pages << PAGE_SHIFT;
1010 mem.page_alignment = bo->mem.page_alignment;
Thomas Hellstromeba67092010-11-11 09:41:57 +01001011 mem.bus.io_reserved_vm = false;
1012 mem.bus.io_reserved_count = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001013 /*
1014 * Determine where to move the buffer.
1015 */
Maarten Lankhorst97a875c2012-11-28 11:25:44 +00001016 ret = ttm_bo_mem_space(bo, placement, &mem,
1017 interruptible, no_wait_gpu);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001018 if (ret)
1019 goto out_unlock;
Maarten Lankhorst97a875c2012-11-28 11:25:44 +00001020 ret = ttm_bo_handle_move_mem(bo, &mem, false,
1021 interruptible, no_wait_gpu);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001022out_unlock:
Ben Skeggsd961db72010-08-05 10:48:18 +10001023 if (ret && mem.mm_node)
1024 ttm_bo_mem_put(bo, &mem);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001025 return ret;
1026}
1027
Thomas Hellstrom59c8e662013-10-28 02:02:19 -07001028static bool ttm_bo_mem_compat(struct ttm_placement *placement,
1029 struct ttm_mem_reg *mem,
1030 uint32_t *new_flags)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001031{
Jerome Glisseca262a9992009-12-08 15:33:32 +01001032 int i;
Thomas Hellstrome22238e2010-02-12 00:18:00 +01001033
Jerome Glisseca262a9992009-12-08 15:33:32 +01001034 for (i = 0; i < placement->num_placement; i++) {
Christian Königf1217ed2014-08-27 13:16:04 +02001035 const struct ttm_place *heap = &placement->placement[i];
Michel Dänzer9ace2ef2014-10-09 15:03:03 +09001036 if (mem->mm_node &&
Christian Königf1217ed2014-08-27 13:16:04 +02001037 (mem->start < heap->fpfn ||
Michel Dänzer9ace2ef2014-10-09 15:03:03 +09001038 (heap->lpfn != 0 && (mem->start + mem->num_pages) > heap->lpfn)))
Christian Königf1217ed2014-08-27 13:16:04 +02001039 continue;
1040
1041 *new_flags = heap->flags;
Thomas Hellstrom59c8e662013-10-28 02:02:19 -07001042 if ((*new_flags & mem->placement & TTM_PL_MASK_CACHING) &&
1043 (*new_flags & mem->placement & TTM_PL_MASK_MEM))
1044 return true;
Jerome Glisseca262a9992009-12-08 15:33:32 +01001045 }
Thomas Hellstrom59c8e662013-10-28 02:02:19 -07001046
1047 for (i = 0; i < placement->num_busy_placement; i++) {
Christian Königf1217ed2014-08-27 13:16:04 +02001048 const struct ttm_place *heap = &placement->busy_placement[i];
Michel Dänzer9ace2ef2014-10-09 15:03:03 +09001049 if (mem->mm_node &&
Christian Königf1217ed2014-08-27 13:16:04 +02001050 (mem->start < heap->fpfn ||
Michel Dänzer9ace2ef2014-10-09 15:03:03 +09001051 (heap->lpfn != 0 && (mem->start + mem->num_pages) > heap->lpfn)))
Christian Königf1217ed2014-08-27 13:16:04 +02001052 continue;
1053
1054 *new_flags = heap->flags;
Thomas Hellstrom59c8e662013-10-28 02:02:19 -07001055 if ((*new_flags & mem->placement & TTM_PL_MASK_CACHING) &&
1056 (*new_flags & mem->placement & TTM_PL_MASK_MEM))
1057 return true;
1058 }
1059
1060 return false;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001061}
1062
Jerome Glisse09855ac2009-12-10 17:16:27 +01001063int ttm_bo_validate(struct ttm_buffer_object *bo,
1064 struct ttm_placement *placement,
Maarten Lankhorst97a875c2012-11-28 11:25:44 +00001065 bool interruptible,
Jerome Glisse9d87fa22010-04-07 10:21:19 +00001066 bool no_wait_gpu)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001067{
1068 int ret;
Thomas Hellstrom59c8e662013-10-28 02:02:19 -07001069 uint32_t new_flags;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001070
Maarten Lankhorst009a9da2013-06-27 13:48:25 +02001071 lockdep_assert_held(&bo->resv->lock.base);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001072 /*
1073 * Check whether we need to move buffer.
1074 */
Thomas Hellstrom59c8e662013-10-28 02:02:19 -07001075 if (!ttm_bo_mem_compat(placement, &bo->mem, &new_flags)) {
Maarten Lankhorst97a875c2012-11-28 11:25:44 +00001076 ret = ttm_bo_move_buffer(bo, placement, interruptible,
1077 no_wait_gpu);
Jerome Glisseca262a9992009-12-08 15:33:32 +01001078 if (ret)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001079 return ret;
Jerome Glisseca262a9992009-12-08 15:33:32 +01001080 } else {
1081 /*
1082 * Use the access and other non-mapping-related flag bits from
1083 * the compatible memory placement flags to the active flags
1084 */
Thomas Hellstrom59c8e662013-10-28 02:02:19 -07001085 ttm_flag_masked(&bo->mem.placement, new_flags,
Jerome Glisseca262a9992009-12-08 15:33:32 +01001086 ~TTM_PL_MASK_MEMTYPE);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001087 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001088 /*
1089 * We might need to add a TTM.
1090 */
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001091 if (bo->mem.mem_type == TTM_PL_SYSTEM && bo->ttm == NULL) {
1092 ret = ttm_bo_add_ttm(bo, true);
1093 if (ret)
1094 return ret;
1095 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001096 return 0;
1097}
Jerome Glisse09855ac2009-12-10 17:16:27 +01001098EXPORT_SYMBOL(ttm_bo_validate);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001099
Jerome Glisse09855ac2009-12-10 17:16:27 +01001100int ttm_bo_init(struct ttm_bo_device *bdev,
1101 struct ttm_buffer_object *bo,
1102 unsigned long size,
1103 enum ttm_bo_type type,
1104 struct ttm_placement *placement,
1105 uint32_t page_alignment,
Jerome Glisse09855ac2009-12-10 17:16:27 +01001106 bool interruptible,
Jan Engelhardt5df23972011-04-04 01:25:18 +02001107 struct file *persistent_swap_storage,
Jerome Glisse09855ac2009-12-10 17:16:27 +01001108 size_t acc_size,
Dave Airlie129b78b2012-04-02 11:46:06 +01001109 struct sg_table *sg,
Maarten Lankhorstf4f4e3e2014-01-09 11:03:15 +01001110 struct reservation_object *resv,
Jerome Glisse09855ac2009-12-10 17:16:27 +01001111 void (*destroy) (struct ttm_buffer_object *))
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001112{
Jerome Glisse09855ac2009-12-10 17:16:27 +01001113 int ret = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001114 unsigned long num_pages;
Jerome Glisse57de4ba2011-11-11 15:42:57 -05001115 struct ttm_mem_global *mem_glob = bdev->glob->mem_glob;
Maarten Lankhorst5e338402013-06-27 13:48:19 +02001116 bool locked;
Jerome Glisse57de4ba2011-11-11 15:42:57 -05001117
1118 ret = ttm_mem_global_alloc(mem_glob, acc_size, false, false);
1119 if (ret) {
Joe Perches25d04792012-03-16 21:43:50 -07001120 pr_err("Out of kernel memory\n");
Jerome Glisse57de4ba2011-11-11 15:42:57 -05001121 if (destroy)
1122 (*destroy)(bo);
1123 else
1124 kfree(bo);
1125 return -ENOMEM;
1126 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001127
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001128 num_pages = (size + PAGE_SIZE - 1) >> PAGE_SHIFT;
1129 if (num_pages == 0) {
Joe Perches25d04792012-03-16 21:43:50 -07001130 pr_err("Illegal buffer object size\n");
Thomas Hellstrom7dfbbdc2010-11-09 21:31:44 +01001131 if (destroy)
1132 (*destroy)(bo);
1133 else
1134 kfree(bo);
Thomas Hellstroma393c732012-06-12 13:28:42 +02001135 ttm_mem_global_free(mem_glob, acc_size);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001136 return -EINVAL;
1137 }
1138 bo->destroy = destroy;
1139
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001140 kref_init(&bo->kref);
1141 kref_init(&bo->list_kref);
1142 atomic_set(&bo->cpu_writers, 0);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001143 INIT_LIST_HEAD(&bo->lru);
1144 INIT_LIST_HEAD(&bo->ddestroy);
1145 INIT_LIST_HEAD(&bo->swap);
Thomas Hellstromeba67092010-11-11 09:41:57 +01001146 INIT_LIST_HEAD(&bo->io_reserve_lru);
Thomas Hellstromc58f0092013-11-14 10:49:05 -08001147 mutex_init(&bo->wu_mutex);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001148 bo->bdev = bdev;
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001149 bo->glob = bdev->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001150 bo->type = type;
1151 bo->num_pages = num_pages;
Jerome Glisseeb6d2c32009-12-10 16:15:52 +01001152 bo->mem.size = num_pages << PAGE_SHIFT;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001153 bo->mem.mem_type = TTM_PL_SYSTEM;
1154 bo->mem.num_pages = bo->num_pages;
1155 bo->mem.mm_node = NULL;
1156 bo->mem.page_alignment = page_alignment;
Thomas Hellstromeba67092010-11-11 09:41:57 +01001157 bo->mem.bus.io_reserved_vm = false;
1158 bo->mem.bus.io_reserved_count = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001159 bo->priv_flags = 0;
1160 bo->mem.placement = (TTM_PL_FLAG_SYSTEM | TTM_PL_FLAG_CACHED);
Jan Engelhardt5df23972011-04-04 01:25:18 +02001161 bo->persistent_swap_storage = persistent_swap_storage;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001162 bo->acc_size = acc_size;
Dave Airlie129b78b2012-04-02 11:46:06 +01001163 bo->sg = sg;
Maarten Lankhorstf4f4e3e2014-01-09 11:03:15 +01001164 if (resv) {
1165 bo->resv = resv;
1166 lockdep_assert_held(&bo->resv->lock.base);
1167 } else {
1168 bo->resv = &bo->ttm_resv;
1169 reservation_object_init(&bo->ttm_resv);
1170 }
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001171 atomic_inc(&bo->glob->bo_count);
David Herrmann72525b32013-07-24 21:08:53 +02001172 drm_vma_node_reset(&bo->vma_node);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001173
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001174 /*
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001175 * For ttm_bo_type_device buffers, allocate
1176 * address space from the device.
1177 */
Christian Königf1217ed2014-08-27 13:16:04 +02001178 if (bo->type == ttm_bo_type_device ||
1179 bo->type == ttm_bo_type_sg)
David Herrmannabf19032013-07-25 14:08:51 +02001180 ret = drm_vma_offset_add(&bdev->vma_manager, &bo->vma_node,
1181 bo->mem.num_pages);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001182
Maarten Lankhorstf4f4e3e2014-01-09 11:03:15 +01001183 /* passed reservation objects should already be locked,
1184 * since otherwise lockdep will be angered in radeon.
1185 */
1186 if (!resv) {
1187 locked = ww_mutex_trylock(&bo->resv->lock);
1188 WARN_ON(!locked);
1189 }
Maarten Lankhorst5e338402013-06-27 13:48:19 +02001190
1191 if (likely(!ret))
1192 ret = ttm_bo_validate(bo, placement, interruptible, false);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001193
Christian König33d48cf2016-01-11 15:35:18 +01001194 if (!resv) {
Maarten Lankhorstf4f4e3e2014-01-09 11:03:15 +01001195 ttm_bo_unreserve(bo);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001196
Christian König33d48cf2016-01-11 15:35:18 +01001197 } else if (!(bo->mem.placement & TTM_PL_FLAG_NO_EVICT)) {
1198 spin_lock(&bo->glob->lru_lock);
1199 ttm_bo_add_to_lru(bo);
1200 spin_unlock(&bo->glob->lru_lock);
1201 }
1202
Maarten Lankhorst5e338402013-06-27 13:48:19 +02001203 if (unlikely(ret))
1204 ttm_bo_unref(&bo);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001205
1206 return ret;
1207}
Jerome Glisse09855ac2009-12-10 17:16:27 +01001208EXPORT_SYMBOL(ttm_bo_init);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001209
Jerome Glisse57de4ba2011-11-11 15:42:57 -05001210size_t ttm_bo_acc_size(struct ttm_bo_device *bdev,
1211 unsigned long bo_size,
1212 unsigned struct_size)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001213{
Jerome Glisse57de4ba2011-11-11 15:42:57 -05001214 unsigned npages = (PAGE_ALIGN(bo_size)) >> PAGE_SHIFT;
1215 size_t size = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001216
Jerome Glisse57de4ba2011-11-11 15:42:57 -05001217 size += ttm_round_pot(struct_size);
1218 size += PAGE_ALIGN(npages * sizeof(void *));
1219 size += ttm_round_pot(sizeof(struct ttm_tt));
1220 return size;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001221}
Jerome Glisse57de4ba2011-11-11 15:42:57 -05001222EXPORT_SYMBOL(ttm_bo_acc_size);
1223
1224size_t ttm_bo_dma_acc_size(struct ttm_bo_device *bdev,
1225 unsigned long bo_size,
1226 unsigned struct_size)
1227{
1228 unsigned npages = (PAGE_ALIGN(bo_size)) >> PAGE_SHIFT;
1229 size_t size = 0;
1230
1231 size += ttm_round_pot(struct_size);
1232 size += PAGE_ALIGN(npages * sizeof(void *));
1233 size += PAGE_ALIGN(npages * sizeof(dma_addr_t));
1234 size += ttm_round_pot(sizeof(struct ttm_dma_tt));
1235 return size;
1236}
1237EXPORT_SYMBOL(ttm_bo_dma_acc_size);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001238
Jerome Glisse09855ac2009-12-10 17:16:27 +01001239int ttm_bo_create(struct ttm_bo_device *bdev,
1240 unsigned long size,
1241 enum ttm_bo_type type,
1242 struct ttm_placement *placement,
1243 uint32_t page_alignment,
Jerome Glisse09855ac2009-12-10 17:16:27 +01001244 bool interruptible,
Jan Engelhardt5df23972011-04-04 01:25:18 +02001245 struct file *persistent_swap_storage,
Jerome Glisse09855ac2009-12-10 17:16:27 +01001246 struct ttm_buffer_object **p_bo)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001247{
1248 struct ttm_buffer_object *bo;
Jerome Glisse57de4ba2011-11-11 15:42:57 -05001249 size_t acc_size;
Jerome Glisseca262a9992009-12-08 15:33:32 +01001250 int ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001251
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001252 bo = kzalloc(sizeof(*bo), GFP_KERNEL);
Thomas Hellstroma393c732012-06-12 13:28:42 +02001253 if (unlikely(bo == NULL))
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001254 return -ENOMEM;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001255
Thomas Hellstroma393c732012-06-12 13:28:42 +02001256 acc_size = ttm_bo_acc_size(bdev, size, sizeof(struct ttm_buffer_object));
Jerome Glisse09855ac2009-12-10 17:16:27 +01001257 ret = ttm_bo_init(bdev, bo, size, type, placement, page_alignment,
Marcin Slusarz0b91c4a2012-11-06 21:49:51 +00001258 interruptible, persistent_swap_storage, acc_size,
Maarten Lankhorstf4f4e3e2014-01-09 11:03:15 +01001259 NULL, NULL, NULL);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001260 if (likely(ret == 0))
1261 *p_bo = bo;
1262
1263 return ret;
1264}
Thomas Hellstrom4d798932011-10-04 20:13:11 +02001265EXPORT_SYMBOL(ttm_bo_create);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001266
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001267static int ttm_bo_force_list_clean(struct ttm_bo_device *bdev,
Jerome Glisseca262a9992009-12-08 15:33:32 +01001268 unsigned mem_type, bool allow_errors)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001269{
Jerome Glisseca262a9992009-12-08 15:33:32 +01001270 struct ttm_mem_type_manager *man = &bdev->man[mem_type];
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001271 struct ttm_bo_global *glob = bdev->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001272 int ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001273
1274 /*
1275 * Can't use standard list traversal since we're unlocking.
1276 */
1277
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001278 spin_lock(&glob->lru_lock);
Jerome Glisseca262a9992009-12-08 15:33:32 +01001279 while (!list_empty(&man->lru)) {
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001280 spin_unlock(&glob->lru_lock);
Michel Dänzere3001802014-10-09 15:02:59 +09001281 ret = ttm_mem_evict_first(bdev, mem_type, NULL, false, false);
Jerome Glisseca262a9992009-12-08 15:33:32 +01001282 if (ret) {
1283 if (allow_errors) {
1284 return ret;
1285 } else {
Joe Perches25d04792012-03-16 21:43:50 -07001286 pr_err("Cleanup eviction failed\n");
Jerome Glisseca262a9992009-12-08 15:33:32 +01001287 }
1288 }
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001289 spin_lock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001290 }
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001291 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001292 return 0;
1293}
1294
1295int ttm_bo_clean_mm(struct ttm_bo_device *bdev, unsigned mem_type)
1296{
Roel Kluinc96e7c72009-08-03 14:22:53 +02001297 struct ttm_mem_type_manager *man;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001298 int ret = -EINVAL;
1299
1300 if (mem_type >= TTM_NUM_MEM_TYPES) {
Joe Perches25d04792012-03-16 21:43:50 -07001301 pr_err("Illegal memory type %d\n", mem_type);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001302 return ret;
1303 }
Roel Kluinc96e7c72009-08-03 14:22:53 +02001304 man = &bdev->man[mem_type];
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001305
1306 if (!man->has_type) {
Joe Perches25d04792012-03-16 21:43:50 -07001307 pr_err("Trying to take down uninitialized memory manager type %u\n",
1308 mem_type);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001309 return ret;
1310 }
1311
1312 man->use_type = false;
1313 man->has_type = false;
1314
1315 ret = 0;
1316 if (mem_type > 0) {
Jerome Glisseca262a9992009-12-08 15:33:32 +01001317 ttm_bo_force_list_clean(bdev, mem_type, false);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001318
Ben Skeggsd961db72010-08-05 10:48:18 +10001319 ret = (*man->func->takedown)(man);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001320 }
1321
1322 return ret;
1323}
1324EXPORT_SYMBOL(ttm_bo_clean_mm);
1325
1326int ttm_bo_evict_mm(struct ttm_bo_device *bdev, unsigned mem_type)
1327{
1328 struct ttm_mem_type_manager *man = &bdev->man[mem_type];
1329
1330 if (mem_type == 0 || mem_type >= TTM_NUM_MEM_TYPES) {
Joe Perches25d04792012-03-16 21:43:50 -07001331 pr_err("Illegal memory manager memory type %u\n", mem_type);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001332 return -EINVAL;
1333 }
1334
1335 if (!man->has_type) {
Joe Perches25d04792012-03-16 21:43:50 -07001336 pr_err("Memory type %u has not been initialized\n", mem_type);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001337 return 0;
1338 }
1339
Jerome Glisseca262a9992009-12-08 15:33:32 +01001340 return ttm_bo_force_list_clean(bdev, mem_type, true);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001341}
1342EXPORT_SYMBOL(ttm_bo_evict_mm);
1343
1344int ttm_bo_init_mm(struct ttm_bo_device *bdev, unsigned type,
Jerome Glisseca262a9992009-12-08 15:33:32 +01001345 unsigned long p_size)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001346{
1347 int ret = -EINVAL;
1348 struct ttm_mem_type_manager *man;
1349
Thomas Hellstromdbc4a5b2010-10-29 10:46:47 +02001350 BUG_ON(type >= TTM_NUM_MEM_TYPES);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001351 man = &bdev->man[type];
Thomas Hellstromdbc4a5b2010-10-29 10:46:47 +02001352 BUG_ON(man->has_type);
Thomas Hellstromeba67092010-11-11 09:41:57 +01001353 man->io_reserve_fastpath = true;
1354 man->use_io_reserve_lru = false;
1355 mutex_init(&man->io_reserve_mutex);
1356 INIT_LIST_HEAD(&man->io_reserve_lru);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001357
1358 ret = bdev->driver->init_mem_type(bdev, type, man);
1359 if (ret)
1360 return ret;
Ben Skeggsd961db72010-08-05 10:48:18 +10001361 man->bdev = bdev;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001362
1363 ret = 0;
1364 if (type != TTM_PL_SYSTEM) {
Ben Skeggsd961db72010-08-05 10:48:18 +10001365 ret = (*man->func->init)(man, p_size);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001366 if (ret)
1367 return ret;
1368 }
1369 man->has_type = true;
1370 man->use_type = true;
1371 man->size = p_size;
1372
1373 INIT_LIST_HEAD(&man->lru);
1374
1375 return 0;
1376}
1377EXPORT_SYMBOL(ttm_bo_init_mm);
1378
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001379static void ttm_bo_global_kobj_release(struct kobject *kobj)
1380{
1381 struct ttm_bo_global *glob =
1382 container_of(kobj, struct ttm_bo_global, kobj);
1383
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001384 ttm_mem_unregister_shrink(glob->mem_glob, &glob->shrink);
1385 __free_page(glob->dummy_read_page);
1386 kfree(glob);
1387}
1388
Dave Airlieba4420c2010-03-09 10:56:52 +10001389void ttm_bo_global_release(struct drm_global_reference *ref)
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001390{
1391 struct ttm_bo_global *glob = ref->object;
1392
1393 kobject_del(&glob->kobj);
1394 kobject_put(&glob->kobj);
1395}
1396EXPORT_SYMBOL(ttm_bo_global_release);
1397
Dave Airlieba4420c2010-03-09 10:56:52 +10001398int ttm_bo_global_init(struct drm_global_reference *ref)
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001399{
1400 struct ttm_bo_global_ref *bo_ref =
1401 container_of(ref, struct ttm_bo_global_ref, ref);
1402 struct ttm_bo_global *glob = ref->object;
1403 int ret;
1404
1405 mutex_init(&glob->device_list_mutex);
1406 spin_lock_init(&glob->lru_lock);
1407 glob->mem_glob = bo_ref->mem_glob;
1408 glob->dummy_read_page = alloc_page(__GFP_ZERO | GFP_DMA32);
1409
1410 if (unlikely(glob->dummy_read_page == NULL)) {
1411 ret = -ENOMEM;
1412 goto out_no_drp;
1413 }
1414
1415 INIT_LIST_HEAD(&glob->swap_lru);
1416 INIT_LIST_HEAD(&glob->device_list);
1417
1418 ttm_mem_init_shrink(&glob->shrink, ttm_bo_swapout);
1419 ret = ttm_mem_register_shrink(glob->mem_glob, &glob->shrink);
1420 if (unlikely(ret != 0)) {
Joe Perches25d04792012-03-16 21:43:50 -07001421 pr_err("Could not register buffer object swapout\n");
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001422 goto out_no_shrink;
1423 }
1424
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001425 atomic_set(&glob->bo_count, 0);
1426
Robert P. J. Dayb642ed02010-03-13 10:36:32 +00001427 ret = kobject_init_and_add(
1428 &glob->kobj, &ttm_bo_glob_kobj_type, ttm_get_kobj(), "buffer_objects");
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001429 if (unlikely(ret != 0))
1430 kobject_put(&glob->kobj);
1431 return ret;
1432out_no_shrink:
1433 __free_page(glob->dummy_read_page);
1434out_no_drp:
1435 kfree(glob);
1436 return ret;
1437}
1438EXPORT_SYMBOL(ttm_bo_global_init);
1439
1440
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001441int ttm_bo_device_release(struct ttm_bo_device *bdev)
1442{
1443 int ret = 0;
1444 unsigned i = TTM_NUM_MEM_TYPES;
1445 struct ttm_mem_type_manager *man;
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001446 struct ttm_bo_global *glob = bdev->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001447
1448 while (i--) {
1449 man = &bdev->man[i];
1450 if (man->has_type) {
1451 man->use_type = false;
1452 if ((i != TTM_PL_SYSTEM) && ttm_bo_clean_mm(bdev, i)) {
1453 ret = -EBUSY;
Joe Perches25d04792012-03-16 21:43:50 -07001454 pr_err("DRM memory manager type %d is not clean\n",
1455 i);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001456 }
1457 man->has_type = false;
1458 }
1459 }
1460
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001461 mutex_lock(&glob->device_list_mutex);
1462 list_del(&bdev->device_list);
1463 mutex_unlock(&glob->device_list_mutex);
1464
Tejun Heof094cfc2010-12-24 15:59:06 +01001465 cancel_delayed_work_sync(&bdev->wq);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001466
1467 while (ttm_bo_delayed_delete(bdev, true))
1468 ;
1469
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001470 spin_lock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001471 if (list_empty(&bdev->ddestroy))
1472 TTM_DEBUG("Delayed destroy list was clean\n");
1473
1474 if (list_empty(&bdev->man[0].lru))
1475 TTM_DEBUG("Swap list was clean\n");
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001476 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001477
David Herrmann72525b32013-07-24 21:08:53 +02001478 drm_vma_offset_manager_destroy(&bdev->vma_manager);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001479
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001480 return ret;
1481}
1482EXPORT_SYMBOL(ttm_bo_device_release);
1483
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001484int ttm_bo_device_init(struct ttm_bo_device *bdev,
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001485 struct ttm_bo_global *glob,
1486 struct ttm_bo_driver *driver,
David Herrmann44d847b2013-08-13 19:10:30 +02001487 struct address_space *mapping,
Dave Airlie51c8b402009-08-20 13:38:04 +10001488 uint64_t file_page_offset,
Dave Airliead49f502009-07-10 22:36:26 +10001489 bool need_dma32)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001490{
1491 int ret = -EINVAL;
1492
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001493 bdev->driver = driver;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001494
1495 memset(bdev->man, 0, sizeof(bdev->man));
1496
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001497 /*
1498 * Initialize the system memory buffer type.
1499 * Other types need to be driver / IOCTL initialized.
1500 */
Jerome Glisseca262a9992009-12-08 15:33:32 +01001501 ret = ttm_bo_init_mm(bdev, TTM_PL_SYSTEM, 0);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001502 if (unlikely(ret != 0))
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001503 goto out_no_sys;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001504
David Herrmann72525b32013-07-24 21:08:53 +02001505 drm_vma_offset_manager_init(&bdev->vma_manager, file_page_offset,
1506 0x10000000);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001507 INIT_DELAYED_WORK(&bdev->wq, ttm_bo_delayed_workqueue);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001508 INIT_LIST_HEAD(&bdev->ddestroy);
David Herrmann44d847b2013-08-13 19:10:30 +02001509 bdev->dev_mapping = mapping;
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001510 bdev->glob = glob;
Dave Airliead49f502009-07-10 22:36:26 +10001511 bdev->need_dma32 = need_dma32;
Thomas Hellstrom65705962010-11-17 12:28:31 +00001512 bdev->val_seq = 0;
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001513 mutex_lock(&glob->device_list_mutex);
1514 list_add_tail(&bdev->device_list, &glob->device_list);
1515 mutex_unlock(&glob->device_list_mutex);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001516
1517 return 0;
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001518out_no_sys:
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001519 return ret;
1520}
1521EXPORT_SYMBOL(ttm_bo_device_init);
1522
1523/*
1524 * buffer object vm functions.
1525 */
1526
1527bool ttm_mem_reg_is_pci(struct ttm_bo_device *bdev, struct ttm_mem_reg *mem)
1528{
1529 struct ttm_mem_type_manager *man = &bdev->man[mem->mem_type];
1530
1531 if (!(man->flags & TTM_MEMTYPE_FLAG_FIXED)) {
1532 if (mem->mem_type == TTM_PL_SYSTEM)
1533 return false;
1534
1535 if (man->flags & TTM_MEMTYPE_FLAG_CMA)
1536 return false;
1537
1538 if (mem->placement & TTM_PL_FLAG_CACHED)
1539 return false;
1540 }
1541 return true;
1542}
1543
Thomas Hellstromeba67092010-11-11 09:41:57 +01001544void ttm_bo_unmap_virtual_locked(struct ttm_buffer_object *bo)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001545{
1546 struct ttm_bo_device *bdev = bo->bdev;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001547
David Herrmann51335df2013-07-24 21:10:03 +02001548 drm_vma_node_unmap(&bo->vma_node, bdev->dev_mapping);
Thomas Hellstromeba67092010-11-11 09:41:57 +01001549 ttm_mem_io_free_vm(bo);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001550}
Thomas Hellstromeba67092010-11-11 09:41:57 +01001551
1552void ttm_bo_unmap_virtual(struct ttm_buffer_object *bo)
1553{
1554 struct ttm_bo_device *bdev = bo->bdev;
1555 struct ttm_mem_type_manager *man = &bdev->man[bo->mem.mem_type];
1556
1557 ttm_mem_io_lock(man, false);
1558 ttm_bo_unmap_virtual_locked(bo);
1559 ttm_mem_io_unlock(man);
1560}
1561
1562
Dave Airliee024e112009-06-24 09:48:08 +10001563EXPORT_SYMBOL(ttm_bo_unmap_virtual);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001564
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001565int ttm_bo_wait(struct ttm_buffer_object *bo,
Dave Airlie1717c0e2011-10-27 18:28:37 +02001566 bool lazy, bool interruptible, bool no_wait)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001567{
Maarten Lankhorstf2c24b82014-04-02 17:14:48 +02001568 struct reservation_object_list *fobj;
1569 struct reservation_object *resv;
1570 struct fence *excl;
1571 long timeout = 15 * HZ;
1572 int i;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001573
Maarten Lankhorstf2c24b82014-04-02 17:14:48 +02001574 resv = bo->resv;
1575 fobj = reservation_object_get_list(resv);
1576 excl = reservation_object_get_excl(resv);
1577 if (excl) {
1578 if (!fence_is_signaled(excl)) {
1579 if (no_wait)
1580 return -EBUSY;
Maarten Lankhorst70401382014-01-21 13:07:01 +01001581
Maarten Lankhorstf2c24b82014-04-02 17:14:48 +02001582 timeout = fence_wait_timeout(excl,
1583 interruptible, timeout);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001584 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001585 }
Maarten Lankhorstf2c24b82014-04-02 17:14:48 +02001586
1587 for (i = 0; fobj && timeout > 0 && i < fobj->shared_count; ++i) {
1588 struct fence *fence;
1589 fence = rcu_dereference_protected(fobj->shared[i],
1590 reservation_object_held(resv));
1591
1592 if (!fence_is_signaled(fence)) {
1593 if (no_wait)
1594 return -EBUSY;
1595
1596 timeout = fence_wait_timeout(fence,
1597 interruptible, timeout);
1598 }
1599 }
1600
1601 if (timeout < 0)
1602 return timeout;
1603
1604 if (timeout == 0)
1605 return -EBUSY;
1606
1607 reservation_object_add_excl_fence(resv, NULL);
1608 clear_bit(TTM_BO_PRIV_FLAG_MOVING, &bo->priv_flags);
1609 return 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001610}
1611EXPORT_SYMBOL(ttm_bo_wait);
1612
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001613int ttm_bo_synccpu_write_grab(struct ttm_buffer_object *bo, bool no_wait)
1614{
1615 int ret = 0;
1616
1617 /*
Thomas Hellstrom8cfe92d2010-04-28 11:33:25 +02001618 * Using ttm_bo_reserve makes sure the lru lists are updated.
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001619 */
1620
Martin Kepplinger0eff2a22014-06-15 02:10:39 +02001621 ret = ttm_bo_reserve(bo, true, no_wait, false, NULL);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001622 if (unlikely(ret != 0))
1623 return ret;
Dave Airlie1717c0e2011-10-27 18:28:37 +02001624 ret = ttm_bo_wait(bo, false, true, no_wait);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001625 if (likely(ret == 0))
1626 atomic_inc(&bo->cpu_writers);
1627 ttm_bo_unreserve(bo);
1628 return ret;
1629}
Ben Skeggsd1ede142009-12-11 15:13:00 +10001630EXPORT_SYMBOL(ttm_bo_synccpu_write_grab);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001631
1632void ttm_bo_synccpu_write_release(struct ttm_buffer_object *bo)
1633{
Maarten Lankhorst654aa7922012-11-06 14:39:43 +01001634 atomic_dec(&bo->cpu_writers);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001635}
Ben Skeggsd1ede142009-12-11 15:13:00 +10001636EXPORT_SYMBOL(ttm_bo_synccpu_write_release);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001637
1638/**
1639 * A buffer object shrink method that tries to swap out the first
1640 * buffer object on the bo_global::swap_lru list.
1641 */
1642
1643static int ttm_bo_swapout(struct ttm_mem_shrink *shrink)
1644{
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001645 struct ttm_bo_global *glob =
1646 container_of(shrink, struct ttm_bo_global, shrink);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001647 struct ttm_buffer_object *bo;
1648 int ret = -EBUSY;
1649 int put_count;
1650 uint32_t swap_placement = (TTM_PL_FLAG_CACHED | TTM_PL_FLAG_SYSTEM);
1651
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001652 spin_lock(&glob->lru_lock);
Maarten Lankhorst2b7b3ad2012-11-28 11:25:42 +00001653 list_for_each_entry(bo, &glob->swap_lru, swap) {
Martin Kepplinger0eff2a22014-06-15 02:10:39 +02001654 ret = __ttm_bo_reserve(bo, false, true, false, NULL);
Maarten Lankhorst2b7b3ad2012-11-28 11:25:42 +00001655 if (!ret)
1656 break;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001657 }
1658
Maarten Lankhorst2b7b3ad2012-11-28 11:25:42 +00001659 if (ret) {
1660 spin_unlock(&glob->lru_lock);
1661 return ret;
1662 }
1663
1664 kref_get(&bo->list_kref);
1665
1666 if (!list_empty(&bo->ddestroy)) {
1667 ret = ttm_bo_cleanup_refs_and_unlock(bo, false, false);
1668 kref_put(&bo->list_kref, ttm_bo_release_list);
1669 return ret;
1670 }
1671
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001672 put_count = ttm_bo_del_from_lru(bo);
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001673 spin_unlock(&glob->lru_lock);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001674
Dave Airlied6ea8882010-11-22 13:24:40 +10001675 ttm_bo_list_ref_sub(bo, put_count, true);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001676
1677 /**
1678 * Wait for GPU, then move to system cached.
1679 */
1680
Dave Airlie1717c0e2011-10-27 18:28:37 +02001681 ret = ttm_bo_wait(bo, false, false, false);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001682
1683 if (unlikely(ret != 0))
1684 goto out;
1685
1686 if ((bo->mem.placement & swap_placement) != swap_placement) {
1687 struct ttm_mem_reg evict_mem;
1688
1689 evict_mem = bo->mem;
1690 evict_mem.mm_node = NULL;
1691 evict_mem.placement = TTM_PL_FLAG_SYSTEM | TTM_PL_FLAG_CACHED;
1692 evict_mem.mem_type = TTM_PL_SYSTEM;
1693
1694 ret = ttm_bo_handle_move_mem(bo, &evict_mem, true,
Maarten Lankhorst97a875c2012-11-28 11:25:44 +00001695 false, false);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001696 if (unlikely(ret != 0))
1697 goto out;
1698 }
1699
1700 ttm_bo_unmap_virtual(bo);
1701
1702 /**
1703 * Swap out. Buffer will be swapped in again as soon as
1704 * anyone tries to access a ttm page.
1705 */
1706
Thomas Hellstrom3f09ea42010-01-13 22:28:40 +01001707 if (bo->bdev->driver->swap_notify)
1708 bo->bdev->driver->swap_notify(bo);
1709
Jan Engelhardt5df23972011-04-04 01:25:18 +02001710 ret = ttm_tt_swapout(bo->ttm, bo->persistent_swap_storage);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001711out:
1712
1713 /**
1714 *
1715 * Unreserve without putting on LRU to avoid swapping out an
1716 * already swapped buffer.
1717 */
1718
Thomas Hellstromc7523082014-02-20 11:36:25 +01001719 __ttm_bo_unreserve(bo);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001720 kref_put(&bo->list_kref, ttm_bo_release_list);
1721 return ret;
1722}
1723
1724void ttm_bo_swapout_all(struct ttm_bo_device *bdev)
1725{
Thomas Hellstroma987fca2009-08-18 16:51:56 +02001726 while (ttm_bo_swapout(&bdev->glob->shrink) == 0)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001727 ;
1728}
Thomas Hellstrome99e1e72010-01-13 22:28:42 +01001729EXPORT_SYMBOL(ttm_bo_swapout_all);
Thomas Hellstromc58f0092013-11-14 10:49:05 -08001730
1731/**
1732 * ttm_bo_wait_unreserved - interruptible wait for a buffer object to become
1733 * unreserved
1734 *
1735 * @bo: Pointer to buffer
1736 */
1737int ttm_bo_wait_unreserved(struct ttm_buffer_object *bo)
1738{
1739 int ret;
1740
1741 /*
1742 * In the absense of a wait_unlocked API,
1743 * Use the bo::wu_mutex to avoid triggering livelocks due to
1744 * concurrent use of this function. Note that this use of
1745 * bo::wu_mutex can go away if we change locking order to
1746 * mmap_sem -> bo::reserve.
1747 */
1748 ret = mutex_lock_interruptible(&bo->wu_mutex);
1749 if (unlikely(ret != 0))
1750 return -ERESTARTSYS;
1751 if (!ww_mutex_is_locked(&bo->resv->lock))
1752 goto out_unlock;
Thomas Hellstromc7523082014-02-20 11:36:25 +01001753 ret = __ttm_bo_reserve(bo, true, false, false, NULL);
Thomas Hellstromc58f0092013-11-14 10:49:05 -08001754 if (unlikely(ret != 0))
1755 goto out_unlock;
Thomas Hellstromc7523082014-02-20 11:36:25 +01001756 __ttm_bo_unreserve(bo);
Thomas Hellstromc58f0092013-11-14 10:49:05 -08001757
1758out_unlock:
1759 mutex_unlock(&bo->wu_mutex);
1760 return ret;
1761}