blob: 287523807989447d91618d02c3bf76575deb3c2e [file] [log] [blame]
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001/*
2 * Copyright 2009 Jerome Glisse.
3 * All Rights Reserved.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the
7 * "Software"), to deal in the Software without restriction, including
8 * without limitation the rights to use, copy, modify, merge, publish,
9 * distribute, sub license, and/or sell copies of the Software, and to
10 * permit persons to whom the Software is furnished to do so, subject to
11 * the following conditions:
12 *
13 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
16 * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
17 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
18 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
19 * USE OR OTHER DEALINGS IN THE SOFTWARE.
20 *
21 * The above copyright notice and this permission notice (including the
22 * next paragraph) shall be included in all copies or substantial portions
23 * of the Software.
24 *
25 */
26/*
27 * Authors:
28 * Jerome Glisse <glisse@freedesktop.org>
29 * Thomas Hellstrom <thomas-at-tungstengraphics-dot-com>
30 * Dave Airlie
31 */
32#include <linux/list.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090033#include <linux/slab.h>
Jerome Glisse771fe6b2009-06-05 14:42:42 +020034#include <drm/drmP.h>
David Howells760285e2012-10-02 18:01:07 +010035#include <drm/radeon_drm.h>
Jerome Glisse771fe6b2009-06-05 14:42:42 +020036#include "radeon.h"
Dave Airlie99ee7fa2010-11-23 11:47:49 +100037#include "radeon_trace.h"
Jerome Glisse771fe6b2009-06-05 14:42:42 +020038
Jerome Glisse771fe6b2009-06-05 14:42:42 +020039
40int radeon_ttm_init(struct radeon_device *rdev);
41void radeon_ttm_fini(struct radeon_device *rdev);
Jerome Glisse4c788672009-11-20 14:29:23 +010042static void radeon_bo_clear_surface_reg(struct radeon_bo *bo);
Jerome Glisse771fe6b2009-06-05 14:42:42 +020043
44/*
45 * To exclude mutual BO access we rely on bo_reserve exclusion, as all
46 * function are calling it.
47 */
48
Marek Olšák67e8e3f2014-03-02 00:56:18 +010049static void radeon_update_memory_usage(struct radeon_bo *bo,
50 unsigned mem_type, int sign)
51{
52 struct radeon_device *rdev = bo->rdev;
53 u64 size = (u64)bo->tbo.num_pages << PAGE_SHIFT;
54
55 switch (mem_type) {
56 case TTM_PL_TT:
57 if (sign > 0)
58 atomic64_add(size, &rdev->gtt_usage);
59 else
60 atomic64_sub(size, &rdev->gtt_usage);
61 break;
62 case TTM_PL_VRAM:
63 if (sign > 0)
64 atomic64_add(size, &rdev->vram_usage);
65 else
66 atomic64_sub(size, &rdev->vram_usage);
67 break;
68 }
69}
70
Jerome Glisse4c788672009-11-20 14:29:23 +010071static void radeon_ttm_bo_destroy(struct ttm_buffer_object *tbo)
Jerome Glisse771fe6b2009-06-05 14:42:42 +020072{
Jerome Glisse4c788672009-11-20 14:29:23 +010073 struct radeon_bo *bo;
74
75 bo = container_of(tbo, struct radeon_bo, tbo);
Marek Olšák67e8e3f2014-03-02 00:56:18 +010076
77 radeon_update_memory_usage(bo, bo->tbo.mem.mem_type, -1);
Christian König341cb9e2014-08-07 09:36:03 +020078 radeon_mn_unregister(bo);
Marek Olšák67e8e3f2014-03-02 00:56:18 +010079
Jerome Glisse4c788672009-11-20 14:29:23 +010080 mutex_lock(&bo->rdev->gem.mutex);
81 list_del_init(&bo->list);
82 mutex_unlock(&bo->rdev->gem.mutex);
83 radeon_bo_clear_surface_reg(bo);
Christian Königc265f242014-07-18 09:24:54 +020084 WARN_ON(!list_empty(&bo->va));
Daniel Vetter441921d2011-02-18 17:59:16 +010085 drm_gem_object_release(&bo->gem_base);
Jerome Glisse4c788672009-11-20 14:29:23 +010086 kfree(bo);
Jerome Glisse771fe6b2009-06-05 14:42:42 +020087}
88
Jerome Glissed03d8582009-12-14 21:02:09 +010089bool radeon_ttm_bo_is_radeon_bo(struct ttm_buffer_object *bo)
90{
91 if (bo->destroy == &radeon_ttm_bo_destroy)
92 return true;
93 return false;
94}
95
Jerome Glisse312ea8d2009-12-07 15:52:58 +010096void radeon_ttm_placement_from_domain(struct radeon_bo *rbo, u32 domain)
97{
Lauri Kasanendeadcb32014-04-02 20:33:42 +030098 u32 c = 0, i;
Jerome Glisse312ea8d2009-12-07 15:52:58 +010099
100 rbo->placement.fpfn = 0;
Jerome Glisse93225b02010-12-03 16:38:19 -0500101 rbo->placement.lpfn = 0;
Jerome Glisse312ea8d2009-12-07 15:52:58 +0100102 rbo->placement.placement = rbo->placements;
Alex Deucher20707872013-01-17 13:10:50 -0500103 rbo->placement.busy_placement = rbo->placements;
Jerome Glisse312ea8d2009-12-07 15:52:58 +0100104 if (domain & RADEON_GEM_DOMAIN_VRAM)
105 rbo->placements[c++] = TTM_PL_FLAG_WC | TTM_PL_FLAG_UNCACHED |
106 TTM_PL_FLAG_VRAM;
Jerome Glisse0d0b3e72012-11-28 13:47:55 -0500107 if (domain & RADEON_GEM_DOMAIN_GTT) {
Michel Dänzer02376d82014-07-17 19:01:08 +0900108 if (rbo->flags & RADEON_GEM_GTT_UC) {
109 rbo->placements[c++] = TTM_PL_FLAG_UNCACHED | TTM_PL_FLAG_TT;
110 } else if ((rbo->flags & RADEON_GEM_GTT_WC) ||
111 (rbo->rdev->flags & RADEON_IS_AGP)) {
112 rbo->placements[c++] = TTM_PL_FLAG_WC | TTM_PL_FLAG_UNCACHED |
113 TTM_PL_FLAG_TT;
Jerome Glisse0d0b3e72012-11-28 13:47:55 -0500114 } else {
115 rbo->placements[c++] = TTM_PL_FLAG_CACHED | TTM_PL_FLAG_TT;
116 }
117 }
118 if (domain & RADEON_GEM_DOMAIN_CPU) {
Michel Dänzer02376d82014-07-17 19:01:08 +0900119 if (rbo->flags & RADEON_GEM_GTT_UC) {
120 rbo->placements[c++] = TTM_PL_FLAG_UNCACHED | TTM_PL_FLAG_SYSTEM;
121 } else if ((rbo->flags & RADEON_GEM_GTT_WC) ||
122 rbo->rdev->flags & RADEON_IS_AGP) {
123 rbo->placements[c++] = TTM_PL_FLAG_WC | TTM_PL_FLAG_UNCACHED |
124 TTM_PL_FLAG_SYSTEM;
Jerome Glisse0d0b3e72012-11-28 13:47:55 -0500125 } else {
Dave Airliedd54fee72012-12-14 21:04:46 +1000126 rbo->placements[c++] = TTM_PL_FLAG_CACHED | TTM_PL_FLAG_SYSTEM;
Jerome Glisse0d0b3e72012-11-28 13:47:55 -0500127 }
128 }
Jerome Glisse9fb03e62009-12-11 15:13:22 +0100129 if (!c)
130 rbo->placements[c++] = TTM_PL_MASK_CACHING | TTM_PL_FLAG_SYSTEM;
Jerome Glisse312ea8d2009-12-07 15:52:58 +0100131 rbo->placement.num_placement = c;
132 rbo->placement.num_busy_placement = c;
Lauri Kasanendeadcb32014-04-02 20:33:42 +0300133
134 /*
135 * Use two-ended allocation depending on the buffer size to
136 * improve fragmentation quality.
137 * 512kb was measured as the most optimal number.
138 */
139 if (rbo->tbo.mem.size > 512 * 1024) {
140 for (i = 0; i < c; i++) {
141 rbo->placements[i] |= TTM_PL_FLAG_TOPDOWN;
142 }
143 }
Jerome Glisse312ea8d2009-12-07 15:52:58 +0100144}
145
Daniel Vetter441921d2011-02-18 17:59:16 +0100146int radeon_bo_create(struct radeon_device *rdev,
Alex Deucher268b2512010-11-17 19:00:26 -0500147 unsigned long size, int byte_align, bool kernel, u32 domain,
Michel Dänzer02376d82014-07-17 19:01:08 +0900148 u32 flags, struct sg_table *sg, struct radeon_bo **bo_ptr)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200149{
Jerome Glisse4c788672009-11-20 14:29:23 +0100150 struct radeon_bo *bo;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200151 enum ttm_bo_type type;
Jerome Glisse93225b02010-12-03 16:38:19 -0500152 unsigned long page_align = roundup(byte_align, PAGE_SIZE) >> PAGE_SHIFT;
Jerome Glisse57de4ba2011-11-11 15:42:57 -0500153 size_t acc_size;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200154 int r;
155
Daniel Vetter441921d2011-02-18 17:59:16 +0100156 size = ALIGN(size, PAGE_SIZE);
157
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200158 if (kernel) {
159 type = ttm_bo_type_kernel;
Alex Deucher40f5cf92012-05-10 18:33:13 -0400160 } else if (sg) {
161 type = ttm_bo_type_sg;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200162 } else {
163 type = ttm_bo_type_device;
164 }
Jerome Glisse4c788672009-11-20 14:29:23 +0100165 *bo_ptr = NULL;
Michel Dänzer2b66b502010-11-09 11:50:05 +0100166
Jerome Glisse57de4ba2011-11-11 15:42:57 -0500167 acc_size = ttm_bo_dma_acc_size(&rdev->mman.bdev, size,
168 sizeof(struct radeon_bo));
169
Jerome Glisse4c788672009-11-20 14:29:23 +0100170 bo = kzalloc(sizeof(struct radeon_bo), GFP_KERNEL);
171 if (bo == NULL)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200172 return -ENOMEM;
Daniel Vetter441921d2011-02-18 17:59:16 +0100173 r = drm_gem_object_init(rdev->ddev, &bo->gem_base, size);
174 if (unlikely(r)) {
175 kfree(bo);
176 return r;
177 }
Jerome Glisse4c788672009-11-20 14:29:23 +0100178 bo->rdev = rdev;
Jerome Glisse4c788672009-11-20 14:29:23 +0100179 bo->surface_reg = -1;
180 INIT_LIST_HEAD(&bo->list);
Jerome Glisse721604a2012-01-05 22:11:05 -0500181 INIT_LIST_HEAD(&bo->va);
Marek Olšákbda72d52014-03-02 00:56:17 +0100182 bo->initial_domain = domain & (RADEON_GEM_DOMAIN_VRAM |
183 RADEON_GEM_DOMAIN_GTT |
184 RADEON_GEM_DOMAIN_CPU);
Michel Dänzer02376d82014-07-17 19:01:08 +0900185
186 bo->flags = flags;
187 /* PCI GART is always snooped */
188 if (!(rdev->flags & RADEON_IS_PCIE))
189 bo->flags &= ~(RADEON_GEM_GTT_WC | RADEON_GEM_GTT_UC);
190
Jerome Glisse1fb107f2009-12-10 17:16:28 +0100191 radeon_ttm_placement_from_domain(bo, domain);
Thomas Hellstrom5cc6fba2009-12-07 18:36:19 +0100192 /* Kernel allocation are uninterruptible */
Christian Königdb7fce32012-05-11 14:57:18 +0200193 down_read(&rdev->pm.mclk_lock);
Jerome Glisse1fb107f2009-12-10 17:16:28 +0100194 r = ttm_bo_init(&rdev->mman.bdev, &bo->tbo, size, type,
Marcin Slusarz0b91c4a2012-11-06 21:49:51 +0000195 &bo->placement, page_align, !kernel, NULL,
Alex Deucher40f5cf92012-05-10 18:33:13 -0400196 acc_size, sg, &radeon_ttm_bo_destroy);
Christian Königdb7fce32012-05-11 14:57:18 +0200197 up_read(&rdev->pm.mclk_lock);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200198 if (unlikely(r != 0)) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200199 return r;
200 }
Jerome Glisse4c788672009-11-20 14:29:23 +0100201 *bo_ptr = bo;
Daniel Vetter441921d2011-02-18 17:59:16 +0100202
Dave Airlie99ee7fa2010-11-23 11:47:49 +1000203 trace_radeon_bo_create(bo);
Daniel Vetter441921d2011-02-18 17:59:16 +0100204
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200205 return 0;
206}
207
Jerome Glisse4c788672009-11-20 14:29:23 +0100208int radeon_bo_kmap(struct radeon_bo *bo, void **ptr)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200209{
Jerome Glisse4c788672009-11-20 14:29:23 +0100210 bool is_iomem;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200211 int r;
212
Jerome Glisse4c788672009-11-20 14:29:23 +0100213 if (bo->kptr) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200214 if (ptr) {
Jerome Glisse4c788672009-11-20 14:29:23 +0100215 *ptr = bo->kptr;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200216 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200217 return 0;
218 }
Jerome Glisse4c788672009-11-20 14:29:23 +0100219 r = ttm_bo_kmap(&bo->tbo, 0, bo->tbo.num_pages, &bo->kmap);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200220 if (r) {
221 return r;
222 }
Jerome Glisse4c788672009-11-20 14:29:23 +0100223 bo->kptr = ttm_kmap_obj_virtual(&bo->kmap, &is_iomem);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200224 if (ptr) {
Jerome Glisse4c788672009-11-20 14:29:23 +0100225 *ptr = bo->kptr;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200226 }
Jerome Glisse4c788672009-11-20 14:29:23 +0100227 radeon_bo_check_tiling(bo, 0, 0);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200228 return 0;
229}
230
Jerome Glisse4c788672009-11-20 14:29:23 +0100231void radeon_bo_kunmap(struct radeon_bo *bo)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200232{
Jerome Glisse4c788672009-11-20 14:29:23 +0100233 if (bo->kptr == NULL)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200234 return;
Jerome Glisse4c788672009-11-20 14:29:23 +0100235 bo->kptr = NULL;
236 radeon_bo_check_tiling(bo, 0, 0);
237 ttm_bo_kunmap(&bo->kmap);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200238}
239
Christian König512d8af2014-07-30 21:04:56 +0200240struct radeon_bo *radeon_bo_ref(struct radeon_bo *bo)
241{
242 if (bo == NULL)
243 return NULL;
244
245 ttm_bo_reference(&bo->tbo);
246 return bo;
247}
248
Jerome Glisse4c788672009-11-20 14:29:23 +0100249void radeon_bo_unref(struct radeon_bo **bo)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200250{
Jerome Glisse4c788672009-11-20 14:29:23 +0100251 struct ttm_buffer_object *tbo;
Dave Airlief4b7fb92010-04-29 18:37:59 +1000252 struct radeon_device *rdev;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200253
Jerome Glisse4c788672009-11-20 14:29:23 +0100254 if ((*bo) == NULL)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200255 return;
Dave Airlief4b7fb92010-04-29 18:37:59 +1000256 rdev = (*bo)->rdev;
Jerome Glisse4c788672009-11-20 14:29:23 +0100257 tbo = &((*bo)->tbo);
258 ttm_bo_unref(&tbo);
259 if (tbo == NULL)
260 *bo = NULL;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200261}
262
Michel Dänzerc4353012012-03-14 17:12:41 +0100263int radeon_bo_pin_restricted(struct radeon_bo *bo, u32 domain, u64 max_offset,
264 u64 *gpu_addr)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200265{
Jerome Glisse312ea8d2009-12-07 15:52:58 +0100266 int r, i;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200267
Christian Königf72a113a2014-08-07 09:36:00 +0200268 if (radeon_ttm_tt_has_userptr(bo->tbo.ttm))
269 return -EPERM;
270
Jerome Glisse4c788672009-11-20 14:29:23 +0100271 if (bo->pin_count) {
272 bo->pin_count++;
273 if (gpu_addr)
274 *gpu_addr = radeon_bo_gpu_offset(bo);
Michel Dänzerd9366222012-03-28 08:52:32 +0200275
276 if (max_offset != 0) {
277 u64 domain_start;
278
279 if (domain == RADEON_GEM_DOMAIN_VRAM)
280 domain_start = bo->rdev->mc.vram_start;
281 else
282 domain_start = bo->rdev->mc.gtt_start;
Michel Dänzere199fd42012-03-29 16:47:43 +0200283 WARN_ON_ONCE(max_offset <
284 (radeon_bo_gpu_offset(bo) - domain_start));
Michel Dänzerd9366222012-03-28 08:52:32 +0200285 }
286
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200287 return 0;
288 }
Jerome Glisse312ea8d2009-12-07 15:52:58 +0100289 radeon_ttm_placement_from_domain(bo, domain);
Michel Dänzer3ca82da2010-03-26 19:18:55 +0000290 if (domain == RADEON_GEM_DOMAIN_VRAM) {
291 /* force to pin into visible video ram */
292 bo->placement.lpfn = bo->rdev->mc.visible_vram_size >> PAGE_SHIFT;
293 }
Michel Dänzerc4353012012-03-14 17:12:41 +0100294 if (max_offset) {
295 u64 lpfn = max_offset >> PAGE_SHIFT;
296
297 if (!bo->placement.lpfn)
298 bo->placement.lpfn = bo->rdev->mc.gtt_size >> PAGE_SHIFT;
299
300 if (lpfn < bo->placement.lpfn)
301 bo->placement.lpfn = lpfn;
302 }
Jerome Glisse312ea8d2009-12-07 15:52:58 +0100303 for (i = 0; i < bo->placement.num_placement; i++)
304 bo->placements[i] |= TTM_PL_FLAG_NO_EVICT;
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000305 r = ttm_bo_validate(&bo->tbo, &bo->placement, false, false);
Jerome Glisse4c788672009-11-20 14:29:23 +0100306 if (likely(r == 0)) {
307 bo->pin_count = 1;
308 if (gpu_addr != NULL)
309 *gpu_addr = radeon_bo_gpu_offset(bo);
Alex Deucher71ecc972014-07-17 12:09:25 -0400310 if (domain == RADEON_GEM_DOMAIN_VRAM)
311 bo->rdev->vram_pin_size += radeon_bo_size(bo);
312 else
313 bo->rdev->gart_pin_size += radeon_bo_size(bo);
314 } else {
Jerome Glisse4c788672009-11-20 14:29:23 +0100315 dev_err(bo->rdev->dev, "%p pin failed\n", bo);
Alex Deucher71ecc972014-07-17 12:09:25 -0400316 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200317 return r;
318}
319
Michel Dänzerc4353012012-03-14 17:12:41 +0100320int radeon_bo_pin(struct radeon_bo *bo, u32 domain, u64 *gpu_addr)
321{
322 return radeon_bo_pin_restricted(bo, domain, 0, gpu_addr);
323}
324
Jerome Glisse4c788672009-11-20 14:29:23 +0100325int radeon_bo_unpin(struct radeon_bo *bo)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200326{
Jerome Glisse312ea8d2009-12-07 15:52:58 +0100327 int r, i;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200328
Jerome Glisse4c788672009-11-20 14:29:23 +0100329 if (!bo->pin_count) {
330 dev_warn(bo->rdev->dev, "%p unpin not necessary\n", bo);
331 return 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200332 }
Jerome Glisse4c788672009-11-20 14:29:23 +0100333 bo->pin_count--;
334 if (bo->pin_count)
335 return 0;
Jerome Glisse312ea8d2009-12-07 15:52:58 +0100336 for (i = 0; i < bo->placement.num_placement; i++)
337 bo->placements[i] &= ~TTM_PL_FLAG_NO_EVICT;
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000338 r = ttm_bo_validate(&bo->tbo, &bo->placement, false, false);
Alex Deucher71ecc972014-07-17 12:09:25 -0400339 if (likely(r == 0)) {
340 if (bo->tbo.mem.mem_type == TTM_PL_VRAM)
341 bo->rdev->vram_pin_size -= radeon_bo_size(bo);
342 else
343 bo->rdev->gart_pin_size -= radeon_bo_size(bo);
344 } else {
Jerome Glisse4c788672009-11-20 14:29:23 +0100345 dev_err(bo->rdev->dev, "%p validate failed for unpin\n", bo);
Alex Deucher71ecc972014-07-17 12:09:25 -0400346 }
Thomas Hellstrom5cc6fba2009-12-07 18:36:19 +0100347 return r;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200348}
349
Jerome Glisse4c788672009-11-20 14:29:23 +0100350int radeon_bo_evict_vram(struct radeon_device *rdev)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200351{
Dave Airlied796d842010-01-25 13:08:08 +1000352 /* late 2.6.33 fix IGP hibernate - we need pm ops to do this correct */
353 if (0 && (rdev->flags & RADEON_IS_IGP)) {
Alex Deucher06b64762010-01-05 11:27:29 -0500354 if (rdev->mc.igp_sideport_enabled == false)
355 /* Useless to evict on IGP chips */
356 return 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200357 }
358 return ttm_bo_evict_mm(&rdev->mman.bdev, TTM_PL_VRAM);
359}
360
Jerome Glisse4c788672009-11-20 14:29:23 +0100361void radeon_bo_force_delete(struct radeon_device *rdev)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200362{
Jerome Glisse4c788672009-11-20 14:29:23 +0100363 struct radeon_bo *bo, *n;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200364
365 if (list_empty(&rdev->gem.objects)) {
366 return;
367 }
Jerome Glisse4c788672009-11-20 14:29:23 +0100368 dev_err(rdev->dev, "Userspace still has active objects !\n");
369 list_for_each_entry_safe(bo, n, &rdev->gem.objects, list) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200370 mutex_lock(&rdev->ddev->struct_mutex);
Jerome Glisse4c788672009-11-20 14:29:23 +0100371 dev_err(rdev->dev, "%p %p %lu %lu force free\n",
Daniel Vetter31c36032011-02-18 17:59:18 +0100372 &bo->gem_base, bo, (unsigned long)bo->gem_base.size,
373 *((unsigned long *)&bo->gem_base.refcount));
Jerome Glisse4c788672009-11-20 14:29:23 +0100374 mutex_lock(&bo->rdev->gem.mutex);
375 list_del_init(&bo->list);
376 mutex_unlock(&bo->rdev->gem.mutex);
Dave Airlie91132d62011-03-01 13:40:06 +1000377 /* this should unref the ttm bo */
Daniel Vetter31c36032011-02-18 17:59:18 +0100378 drm_gem_object_unreference(&bo->gem_base);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200379 mutex_unlock(&rdev->ddev->struct_mutex);
380 }
381}
382
Jerome Glisse4c788672009-11-20 14:29:23 +0100383int radeon_bo_init(struct radeon_device *rdev)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200384{
Jerome Glissea4d68272009-09-11 13:00:43 +0200385 /* Add an MTRR for the VRAM */
Samuel Lia0a53aa2013-04-08 17:25:47 -0400386 if (!rdev->fastfb_working) {
Andy Lutomirski07ebea22013-05-13 23:58:45 +0000387 rdev->mc.vram_mtrr = arch_phys_wc_add(rdev->mc.aper_base,
388 rdev->mc.aper_size);
Samuel Lia0a53aa2013-04-08 17:25:47 -0400389 }
Jerome Glissea4d68272009-09-11 13:00:43 +0200390 DRM_INFO("Detected VRAM RAM=%lluM, BAR=%lluM\n",
391 rdev->mc.mc_vram_size >> 20,
392 (unsigned long long)rdev->mc.aper_size >> 20);
393 DRM_INFO("RAM width %dbits %cDR\n",
394 rdev->mc.vram_width, rdev->mc.vram_is_ddr ? 'D' : 'S');
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200395 return radeon_ttm_init(rdev);
396}
397
Jerome Glisse4c788672009-11-20 14:29:23 +0100398void radeon_bo_fini(struct radeon_device *rdev)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200399{
400 radeon_ttm_fini(rdev);
Andy Lutomirski07ebea22013-05-13 23:58:45 +0000401 arch_phys_wc_del(rdev->mc.vram_mtrr);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200402}
403
Marek Olšák19dff562014-03-02 00:56:22 +0100404/* Returns how many bytes TTM can move per IB.
405 */
406static u64 radeon_bo_get_threshold_for_moves(struct radeon_device *rdev)
407{
408 u64 real_vram_size = rdev->mc.real_vram_size;
409 u64 vram_usage = atomic64_read(&rdev->vram_usage);
410
411 /* This function is based on the current VRAM usage.
412 *
413 * - If all of VRAM is free, allow relocating the number of bytes that
414 * is equal to 1/4 of the size of VRAM for this IB.
415
416 * - If more than one half of VRAM is occupied, only allow relocating
417 * 1 MB of data for this IB.
418 *
419 * - From 0 to one half of used VRAM, the threshold decreases
420 * linearly.
421 * __________________
422 * 1/4 of -|\ |
423 * VRAM | \ |
424 * | \ |
425 * | \ |
426 * | \ |
427 * | \ |
428 * | \ |
429 * | \________|1 MB
430 * |----------------|
431 * VRAM 0 % 100 %
432 * used used
433 *
434 * Note: It's a threshold, not a limit. The threshold must be crossed
435 * for buffer relocations to stop, so any buffer of an arbitrary size
436 * can be moved as long as the threshold isn't crossed before
437 * the relocation takes place. We don't want to disable buffer
438 * relocations completely.
439 *
440 * The idea is that buffers should be placed in VRAM at creation time
441 * and TTM should only do a minimum number of relocations during
442 * command submission. In practice, you need to submit at least
443 * a dozen IBs to move all buffers to VRAM if they are in GTT.
444 *
445 * Also, things can get pretty crazy under memory pressure and actual
446 * VRAM usage can change a lot, so playing safe even at 50% does
447 * consistently increase performance.
448 */
449
450 u64 half_vram = real_vram_size >> 1;
451 u64 half_free_vram = vram_usage >= half_vram ? 0 : half_vram - vram_usage;
452 u64 bytes_moved_threshold = half_free_vram >> 1;
453 return max(bytes_moved_threshold, 1024*1024ull);
454}
455
456int radeon_bo_list_validate(struct radeon_device *rdev,
457 struct ww_acquire_ctx *ticket,
Maarten Lankhorstecff6652013-06-27 13:48:17 +0200458 struct list_head *head, int ring)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200459{
Christian Königdf0af442014-03-03 12:38:08 +0100460 struct radeon_cs_reloc *lobj;
Jerome Glisse4c788672009-11-20 14:29:23 +0100461 struct radeon_bo *bo;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200462 int r;
Marek Olšák19dff562014-03-02 00:56:22 +0100463 u64 bytes_moved = 0, initial_bytes_moved;
464 u64 bytes_moved_threshold = radeon_bo_get_threshold_for_moves(rdev);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200465
Maarten Lankhorstecff6652013-06-27 13:48:17 +0200466 r = ttm_eu_reserve_buffers(ticket, head);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200467 if (unlikely(r != 0)) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200468 return r;
469 }
Marek Olšák19dff562014-03-02 00:56:22 +0100470
Thomas Hellstrom147666f2010-11-17 12:38:32 +0000471 list_for_each_entry(lobj, head, tv.head) {
Christian Königdf0af442014-03-03 12:38:08 +0100472 bo = lobj->robj;
Jerome Glisse4c788672009-11-20 14:29:23 +0100473 if (!bo->pin_count) {
Christian Königce6758c2014-06-02 17:33:07 +0200474 u32 domain = lobj->prefered_domains;
Marek Olšák19dff562014-03-02 00:56:22 +0100475 u32 current_domain =
476 radeon_mem_type_to_domain(bo->tbo.mem.mem_type);
477
478 /* Check if this buffer will be moved and don't move it
479 * if we have moved too many buffers for this IB already.
480 *
481 * Note that this allows moving at least one buffer of
482 * any size, because it doesn't take the current "bo"
483 * into account. We don't want to disallow buffer moves
484 * completely.
485 */
Christian Königce6758c2014-06-02 17:33:07 +0200486 if ((lobj->allowed_domains & current_domain) != 0 &&
Marek Olšák19dff562014-03-02 00:56:22 +0100487 (domain & current_domain) == 0 && /* will be moved */
488 bytes_moved > bytes_moved_threshold) {
489 /* don't move it */
490 domain = current_domain;
491 }
492
Alex Deucher20707872013-01-17 13:10:50 -0500493 retry:
494 radeon_ttm_placement_from_domain(bo, domain);
Christian Königf2ba57b2013-04-08 12:41:29 +0200495 if (ring == R600_RING_TYPE_UVD_INDEX)
496 radeon_uvd_force_into_uvd_segment(bo);
Marek Olšák19dff562014-03-02 00:56:22 +0100497
498 initial_bytes_moved = atomic64_read(&rdev->num_bytes_moved);
499 r = ttm_bo_validate(&bo->tbo, &bo->placement, true, false);
500 bytes_moved += atomic64_read(&rdev->num_bytes_moved) -
501 initial_bytes_moved;
502
Michel Dänzere376573f2010-07-08 12:43:28 +1000503 if (unlikely(r)) {
Christian Königce6758c2014-06-02 17:33:07 +0200504 if (r != -ERESTARTSYS &&
505 domain != lobj->allowed_domains) {
506 domain = lobj->allowed_domains;
Alex Deucher20707872013-01-17 13:10:50 -0500507 goto retry;
508 }
Maarten Lankhorst1b6e5fd2013-07-10 12:26:56 +0200509 ttm_eu_backoff_reservation(ticket, head);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200510 return r;
Michel Dänzere376573f2010-07-08 12:43:28 +1000511 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200512 }
Jerome Glisse4c788672009-11-20 14:29:23 +0100513 lobj->gpu_offset = radeon_bo_gpu_offset(bo);
514 lobj->tiling_flags = bo->tiling_flags;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200515 }
516 return 0;
517}
518
Jerome Glisse4c788672009-11-20 14:29:23 +0100519int radeon_bo_fbdev_mmap(struct radeon_bo *bo,
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200520 struct vm_area_struct *vma)
521{
Jerome Glisse4c788672009-11-20 14:29:23 +0100522 return ttm_fbdev_mmap(vma, &bo->tbo);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200523}
524
Dave Airlie550e2d92009-12-09 14:15:38 +1000525int radeon_bo_get_surface_reg(struct radeon_bo *bo)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200526{
Jerome Glisse4c788672009-11-20 14:29:23 +0100527 struct radeon_device *rdev = bo->rdev;
Dave Airliee024e112009-06-24 09:48:08 +1000528 struct radeon_surface_reg *reg;
Jerome Glisse4c788672009-11-20 14:29:23 +0100529 struct radeon_bo *old_object;
Dave Airliee024e112009-06-24 09:48:08 +1000530 int steal;
531 int i;
532
Maarten Lankhorst977c38d2013-06-27 13:48:26 +0200533 lockdep_assert_held(&bo->tbo.resv->lock.base);
Jerome Glisse4c788672009-11-20 14:29:23 +0100534
535 if (!bo->tiling_flags)
Dave Airliee024e112009-06-24 09:48:08 +1000536 return 0;
537
Jerome Glisse4c788672009-11-20 14:29:23 +0100538 if (bo->surface_reg >= 0) {
539 reg = &rdev->surface_regs[bo->surface_reg];
540 i = bo->surface_reg;
Dave Airliee024e112009-06-24 09:48:08 +1000541 goto out;
542 }
543
544 steal = -1;
545 for (i = 0; i < RADEON_GEM_MAX_SURFACES; i++) {
546
547 reg = &rdev->surface_regs[i];
Jerome Glisse4c788672009-11-20 14:29:23 +0100548 if (!reg->bo)
Dave Airliee024e112009-06-24 09:48:08 +1000549 break;
550
Jerome Glisse4c788672009-11-20 14:29:23 +0100551 old_object = reg->bo;
Dave Airliee024e112009-06-24 09:48:08 +1000552 if (old_object->pin_count == 0)
553 steal = i;
554 }
555
556 /* if we are all out */
557 if (i == RADEON_GEM_MAX_SURFACES) {
558 if (steal == -1)
559 return -ENOMEM;
560 /* find someone with a surface reg and nuke their BO */
561 reg = &rdev->surface_regs[steal];
Jerome Glisse4c788672009-11-20 14:29:23 +0100562 old_object = reg->bo;
Dave Airliee024e112009-06-24 09:48:08 +1000563 /* blow away the mapping */
564 DRM_DEBUG("stealing surface reg %d from %p\n", steal, old_object);
Jerome Glisse4c788672009-11-20 14:29:23 +0100565 ttm_bo_unmap_virtual(&old_object->tbo);
Dave Airliee024e112009-06-24 09:48:08 +1000566 old_object->surface_reg = -1;
567 i = steal;
568 }
569
Jerome Glisse4c788672009-11-20 14:29:23 +0100570 bo->surface_reg = i;
571 reg->bo = bo;
Dave Airliee024e112009-06-24 09:48:08 +1000572
573out:
Jerome Glisse4c788672009-11-20 14:29:23 +0100574 radeon_set_surface_reg(rdev, i, bo->tiling_flags, bo->pitch,
Ben Skeggsd961db72010-08-05 10:48:18 +1000575 bo->tbo.mem.start << PAGE_SHIFT,
Jerome Glisse4c788672009-11-20 14:29:23 +0100576 bo->tbo.num_pages << PAGE_SHIFT);
Dave Airliee024e112009-06-24 09:48:08 +1000577 return 0;
578}
579
Jerome Glisse4c788672009-11-20 14:29:23 +0100580static void radeon_bo_clear_surface_reg(struct radeon_bo *bo)
Dave Airliee024e112009-06-24 09:48:08 +1000581{
Jerome Glisse4c788672009-11-20 14:29:23 +0100582 struct radeon_device *rdev = bo->rdev;
Dave Airliee024e112009-06-24 09:48:08 +1000583 struct radeon_surface_reg *reg;
584
Jerome Glisse4c788672009-11-20 14:29:23 +0100585 if (bo->surface_reg == -1)
Dave Airliee024e112009-06-24 09:48:08 +1000586 return;
587
Jerome Glisse4c788672009-11-20 14:29:23 +0100588 reg = &rdev->surface_regs[bo->surface_reg];
589 radeon_clear_surface_reg(rdev, bo->surface_reg);
Dave Airliee024e112009-06-24 09:48:08 +1000590
Jerome Glisse4c788672009-11-20 14:29:23 +0100591 reg->bo = NULL;
592 bo->surface_reg = -1;
Dave Airliee024e112009-06-24 09:48:08 +1000593}
594
Jerome Glisse4c788672009-11-20 14:29:23 +0100595int radeon_bo_set_tiling_flags(struct radeon_bo *bo,
596 uint32_t tiling_flags, uint32_t pitch)
Dave Airliee024e112009-06-24 09:48:08 +1000597{
Jerome Glisse285484e2011-12-16 17:03:42 -0500598 struct radeon_device *rdev = bo->rdev;
Jerome Glisse4c788672009-11-20 14:29:23 +0100599 int r;
600
Jerome Glisse285484e2011-12-16 17:03:42 -0500601 if (rdev->family >= CHIP_CEDAR) {
602 unsigned bankw, bankh, mtaspect, tilesplit, stilesplit;
603
604 bankw = (tiling_flags >> RADEON_TILING_EG_BANKW_SHIFT) & RADEON_TILING_EG_BANKW_MASK;
605 bankh = (tiling_flags >> RADEON_TILING_EG_BANKH_SHIFT) & RADEON_TILING_EG_BANKH_MASK;
606 mtaspect = (tiling_flags >> RADEON_TILING_EG_MACRO_TILE_ASPECT_SHIFT) & RADEON_TILING_EG_MACRO_TILE_ASPECT_MASK;
607 tilesplit = (tiling_flags >> RADEON_TILING_EG_TILE_SPLIT_SHIFT) & RADEON_TILING_EG_TILE_SPLIT_MASK;
608 stilesplit = (tiling_flags >> RADEON_TILING_EG_STENCIL_TILE_SPLIT_SHIFT) & RADEON_TILING_EG_STENCIL_TILE_SPLIT_MASK;
609 switch (bankw) {
610 case 0:
611 case 1:
612 case 2:
613 case 4:
614 case 8:
615 break;
616 default:
617 return -EINVAL;
618 }
619 switch (bankh) {
620 case 0:
621 case 1:
622 case 2:
623 case 4:
624 case 8:
625 break;
626 default:
627 return -EINVAL;
628 }
629 switch (mtaspect) {
630 case 0:
631 case 1:
632 case 2:
633 case 4:
634 case 8:
635 break;
636 default:
637 return -EINVAL;
638 }
639 if (tilesplit > 6) {
640 return -EINVAL;
641 }
642 if (stilesplit > 6) {
643 return -EINVAL;
644 }
645 }
Jerome Glisse4c788672009-11-20 14:29:23 +0100646 r = radeon_bo_reserve(bo, false);
647 if (unlikely(r != 0))
648 return r;
649 bo->tiling_flags = tiling_flags;
650 bo->pitch = pitch;
651 radeon_bo_unreserve(bo);
652 return 0;
Dave Airliee024e112009-06-24 09:48:08 +1000653}
654
Jerome Glisse4c788672009-11-20 14:29:23 +0100655void radeon_bo_get_tiling_flags(struct radeon_bo *bo,
656 uint32_t *tiling_flags,
657 uint32_t *pitch)
Dave Airliee024e112009-06-24 09:48:08 +1000658{
Maarten Lankhorst977c38d2013-06-27 13:48:26 +0200659 lockdep_assert_held(&bo->tbo.resv->lock.base);
660
Dave Airliee024e112009-06-24 09:48:08 +1000661 if (tiling_flags)
Jerome Glisse4c788672009-11-20 14:29:23 +0100662 *tiling_flags = bo->tiling_flags;
Dave Airliee024e112009-06-24 09:48:08 +1000663 if (pitch)
Jerome Glisse4c788672009-11-20 14:29:23 +0100664 *pitch = bo->pitch;
Dave Airliee024e112009-06-24 09:48:08 +1000665}
666
Jerome Glisse4c788672009-11-20 14:29:23 +0100667int radeon_bo_check_tiling(struct radeon_bo *bo, bool has_moved,
668 bool force_drop)
Dave Airliee024e112009-06-24 09:48:08 +1000669{
Maarten Lankhorst977c38d2013-06-27 13:48:26 +0200670 if (!force_drop)
671 lockdep_assert_held(&bo->tbo.resv->lock.base);
Jerome Glisse4c788672009-11-20 14:29:23 +0100672
673 if (!(bo->tiling_flags & RADEON_TILING_SURFACE))
Dave Airliee024e112009-06-24 09:48:08 +1000674 return 0;
675
676 if (force_drop) {
Jerome Glisse4c788672009-11-20 14:29:23 +0100677 radeon_bo_clear_surface_reg(bo);
Dave Airliee024e112009-06-24 09:48:08 +1000678 return 0;
679 }
680
Jerome Glisse4c788672009-11-20 14:29:23 +0100681 if (bo->tbo.mem.mem_type != TTM_PL_VRAM) {
Dave Airliee024e112009-06-24 09:48:08 +1000682 if (!has_moved)
683 return 0;
684
Jerome Glisse4c788672009-11-20 14:29:23 +0100685 if (bo->surface_reg >= 0)
686 radeon_bo_clear_surface_reg(bo);
Dave Airliee024e112009-06-24 09:48:08 +1000687 return 0;
688 }
689
Jerome Glisse4c788672009-11-20 14:29:23 +0100690 if ((bo->surface_reg >= 0) && !has_moved)
Dave Airliee024e112009-06-24 09:48:08 +1000691 return 0;
692
Jerome Glisse4c788672009-11-20 14:29:23 +0100693 return radeon_bo_get_surface_reg(bo);
Dave Airliee024e112009-06-24 09:48:08 +1000694}
695
696void radeon_bo_move_notify(struct ttm_buffer_object *bo,
Marek Olšák67e8e3f2014-03-02 00:56:18 +0100697 struct ttm_mem_reg *new_mem)
Dave Airliee024e112009-06-24 09:48:08 +1000698{
Jerome Glissed03d8582009-12-14 21:02:09 +0100699 struct radeon_bo *rbo;
Marek Olšák67e8e3f2014-03-02 00:56:18 +0100700
Jerome Glissed03d8582009-12-14 21:02:09 +0100701 if (!radeon_ttm_bo_is_radeon_bo(bo))
702 return;
Marek Olšák67e8e3f2014-03-02 00:56:18 +0100703
Jerome Glissed03d8582009-12-14 21:02:09 +0100704 rbo = container_of(bo, struct radeon_bo, tbo);
Jerome Glisse4c788672009-11-20 14:29:23 +0100705 radeon_bo_check_tiling(rbo, 0, 1);
Jerome Glisse721604a2012-01-05 22:11:05 -0500706 radeon_vm_bo_invalidate(rbo->rdev, rbo);
Marek Olšák67e8e3f2014-03-02 00:56:18 +0100707
708 /* update statistics */
709 if (!new_mem)
710 return;
711
712 radeon_update_memory_usage(rbo, bo->mem.mem_type, -1);
713 radeon_update_memory_usage(rbo, new_mem->mem_type, 1);
Dave Airliee024e112009-06-24 09:48:08 +1000714}
715
Jerome Glisse0a2d50e2010-04-09 14:39:24 +0200716int radeon_bo_fault_reserve_notify(struct ttm_buffer_object *bo)
Dave Airliee024e112009-06-24 09:48:08 +1000717{
Jerome Glisse0a2d50e2010-04-09 14:39:24 +0200718 struct radeon_device *rdev;
Jerome Glissed03d8582009-12-14 21:02:09 +0100719 struct radeon_bo *rbo;
Jerome Glisse0a2d50e2010-04-09 14:39:24 +0200720 unsigned long offset, size;
721 int r;
722
Jerome Glissed03d8582009-12-14 21:02:09 +0100723 if (!radeon_ttm_bo_is_radeon_bo(bo))
Jerome Glisse0a2d50e2010-04-09 14:39:24 +0200724 return 0;
Jerome Glissed03d8582009-12-14 21:02:09 +0100725 rbo = container_of(bo, struct radeon_bo, tbo);
Jerome Glisse4c788672009-11-20 14:29:23 +0100726 radeon_bo_check_tiling(rbo, 0, 0);
Jerome Glisse0a2d50e2010-04-09 14:39:24 +0200727 rdev = rbo->rdev;
Christian König54409252014-05-05 18:40:12 +0200728 if (bo->mem.mem_type != TTM_PL_VRAM)
729 return 0;
730
731 size = bo->mem.num_pages << PAGE_SHIFT;
732 offset = bo->mem.start << PAGE_SHIFT;
733 if ((offset + size) <= rdev->mc.visible_vram_size)
734 return 0;
735
736 /* hurrah the memory is not visible ! */
737 radeon_ttm_placement_from_domain(rbo, RADEON_GEM_DOMAIN_VRAM);
738 rbo->placement.lpfn = rdev->mc.visible_vram_size >> PAGE_SHIFT;
739 r = ttm_bo_validate(bo, &rbo->placement, false, false);
740 if (unlikely(r == -ENOMEM)) {
741 radeon_ttm_placement_from_domain(rbo, RADEON_GEM_DOMAIN_GTT);
742 return ttm_bo_validate(bo, &rbo->placement, false, false);
743 } else if (unlikely(r != 0)) {
744 return r;
Jerome Glisse0a2d50e2010-04-09 14:39:24 +0200745 }
Christian König54409252014-05-05 18:40:12 +0200746
747 offset = bo->mem.start << PAGE_SHIFT;
748 /* this should never happen */
749 if ((offset + size) > rdev->mc.visible_vram_size)
750 return -EINVAL;
751
Jerome Glisse0a2d50e2010-04-09 14:39:24 +0200752 return 0;
Dave Airliee024e112009-06-24 09:48:08 +1000753}
Andi Kleence580fa2011-10-13 16:08:47 -0700754
Dave Airlie83f30d02011-10-27 18:15:10 +0200755int radeon_bo_wait(struct radeon_bo *bo, u32 *mem_type, bool no_wait)
Andi Kleence580fa2011-10-13 16:08:47 -0700756{
757 int r;
758
Michele CURTI12432352014-05-19 11:18:52 -0400759 r = ttm_bo_reserve(&bo->tbo, true, no_wait, false, NULL);
Andi Kleence580fa2011-10-13 16:08:47 -0700760 if (unlikely(r != 0))
761 return r;
762 spin_lock(&bo->tbo.bdev->fence_lock);
763 if (mem_type)
764 *mem_type = bo->tbo.mem.mem_type;
765 if (bo->tbo.sync_obj)
Dave Airlie1717c0e2011-10-27 18:28:37 +0200766 r = ttm_bo_wait(&bo->tbo, true, true, no_wait);
Andi Kleence580fa2011-10-13 16:08:47 -0700767 spin_unlock(&bo->tbo.bdev->fence_lock);
768 ttm_bo_unreserve(&bo->tbo);
769 return r;
770}