blob: 0129c7efae3b929d854a9c8f6bd69c5f94586a5c [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
Jerome Glisse312ea8d2009-12-07 15:52:58 +0100100 rbo->placement.placement = rbo->placements;
Alex Deucher20707872013-01-17 13:10:50 -0500101 rbo->placement.busy_placement = rbo->placements;
Jerome Glisse312ea8d2009-12-07 15:52:58 +0100102 if (domain & RADEON_GEM_DOMAIN_VRAM)
Christian Königf1217ed2014-08-27 13:16:04 +0200103 rbo->placements[c++].flags = TTM_PL_FLAG_WC |
104 TTM_PL_FLAG_UNCACHED |
105 TTM_PL_FLAG_VRAM;
106
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) {
Christian Königf1217ed2014-08-27 13:16:04 +0200109 rbo->placements[c++].flags = TTM_PL_FLAG_UNCACHED |
110 TTM_PL_FLAG_TT;
111
Michel Dänzer02376d82014-07-17 19:01:08 +0900112 } else if ((rbo->flags & RADEON_GEM_GTT_WC) ||
113 (rbo->rdev->flags & RADEON_IS_AGP)) {
Christian Königf1217ed2014-08-27 13:16:04 +0200114 rbo->placements[c++].flags = TTM_PL_FLAG_WC |
115 TTM_PL_FLAG_UNCACHED |
Michel Dänzer02376d82014-07-17 19:01:08 +0900116 TTM_PL_FLAG_TT;
Jerome Glisse0d0b3e72012-11-28 13:47:55 -0500117 } else {
Christian Königf1217ed2014-08-27 13:16:04 +0200118 rbo->placements[c++].flags = TTM_PL_FLAG_CACHED |
119 TTM_PL_FLAG_TT;
Jerome Glisse0d0b3e72012-11-28 13:47:55 -0500120 }
121 }
Christian Königf1217ed2014-08-27 13:16:04 +0200122
Jerome Glisse0d0b3e72012-11-28 13:47:55 -0500123 if (domain & RADEON_GEM_DOMAIN_CPU) {
Michel Dänzer02376d82014-07-17 19:01:08 +0900124 if (rbo->flags & RADEON_GEM_GTT_UC) {
Christian Königf1217ed2014-08-27 13:16:04 +0200125 rbo->placements[c++].flags = TTM_PL_FLAG_UNCACHED |
126 TTM_PL_FLAG_SYSTEM;
127
Michel Dänzer02376d82014-07-17 19:01:08 +0900128 } else if ((rbo->flags & RADEON_GEM_GTT_WC) ||
129 rbo->rdev->flags & RADEON_IS_AGP) {
Christian Königf1217ed2014-08-27 13:16:04 +0200130 rbo->placements[c++].flags = TTM_PL_FLAG_WC |
131 TTM_PL_FLAG_UNCACHED |
Michel Dänzer02376d82014-07-17 19:01:08 +0900132 TTM_PL_FLAG_SYSTEM;
Jerome Glisse0d0b3e72012-11-28 13:47:55 -0500133 } else {
Christian Königf1217ed2014-08-27 13:16:04 +0200134 rbo->placements[c++].flags = TTM_PL_FLAG_CACHED |
135 TTM_PL_FLAG_SYSTEM;
Jerome Glisse0d0b3e72012-11-28 13:47:55 -0500136 }
137 }
Jerome Glisse9fb03e62009-12-11 15:13:22 +0100138 if (!c)
Christian Königf1217ed2014-08-27 13:16:04 +0200139 rbo->placements[c++].flags = TTM_PL_MASK_CACHING |
140 TTM_PL_FLAG_SYSTEM;
141
Jerome Glisse312ea8d2009-12-07 15:52:58 +0100142 rbo->placement.num_placement = c;
143 rbo->placement.num_busy_placement = c;
Lauri Kasanendeadcb32014-04-02 20:33:42 +0300144
Christian Königf1217ed2014-08-27 13:16:04 +0200145 for (i = 0; i < c; ++i) {
146 rbo->placements[i].fpfn = 0;
147 rbo->placements[i].lpfn = 0;
148 }
149
Lauri Kasanendeadcb32014-04-02 20:33:42 +0300150 /*
151 * Use two-ended allocation depending on the buffer size to
152 * improve fragmentation quality.
153 * 512kb was measured as the most optimal number.
154 */
155 if (rbo->tbo.mem.size > 512 * 1024) {
156 for (i = 0; i < c; i++) {
Christian Königf1217ed2014-08-27 13:16:04 +0200157 rbo->placements[i].flags |= TTM_PL_FLAG_TOPDOWN;
Lauri Kasanendeadcb32014-04-02 20:33:42 +0300158 }
159 }
Jerome Glisse312ea8d2009-12-07 15:52:58 +0100160}
161
Daniel Vetter441921d2011-02-18 17:59:16 +0100162int radeon_bo_create(struct radeon_device *rdev,
Alex Deucher268b2512010-11-17 19:00:26 -0500163 unsigned long size, int byte_align, bool kernel, u32 domain,
Michel Dänzer02376d82014-07-17 19:01:08 +0900164 u32 flags, struct sg_table *sg, struct radeon_bo **bo_ptr)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200165{
Jerome Glisse4c788672009-11-20 14:29:23 +0100166 struct radeon_bo *bo;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200167 enum ttm_bo_type type;
Jerome Glisse93225b02010-12-03 16:38:19 -0500168 unsigned long page_align = roundup(byte_align, PAGE_SIZE) >> PAGE_SHIFT;
Jerome Glisse57de4ba2011-11-11 15:42:57 -0500169 size_t acc_size;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200170 int r;
171
Daniel Vetter441921d2011-02-18 17:59:16 +0100172 size = ALIGN(size, PAGE_SIZE);
173
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200174 if (kernel) {
175 type = ttm_bo_type_kernel;
Alex Deucher40f5cf92012-05-10 18:33:13 -0400176 } else if (sg) {
177 type = ttm_bo_type_sg;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200178 } else {
179 type = ttm_bo_type_device;
180 }
Jerome Glisse4c788672009-11-20 14:29:23 +0100181 *bo_ptr = NULL;
Michel Dänzer2b66b502010-11-09 11:50:05 +0100182
Jerome Glisse57de4ba2011-11-11 15:42:57 -0500183 acc_size = ttm_bo_dma_acc_size(&rdev->mman.bdev, size,
184 sizeof(struct radeon_bo));
185
Jerome Glisse4c788672009-11-20 14:29:23 +0100186 bo = kzalloc(sizeof(struct radeon_bo), GFP_KERNEL);
187 if (bo == NULL)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200188 return -ENOMEM;
Daniel Vetter441921d2011-02-18 17:59:16 +0100189 r = drm_gem_object_init(rdev->ddev, &bo->gem_base, size);
190 if (unlikely(r)) {
191 kfree(bo);
192 return r;
193 }
Jerome Glisse4c788672009-11-20 14:29:23 +0100194 bo->rdev = rdev;
Jerome Glisse4c788672009-11-20 14:29:23 +0100195 bo->surface_reg = -1;
196 INIT_LIST_HEAD(&bo->list);
Jerome Glisse721604a2012-01-05 22:11:05 -0500197 INIT_LIST_HEAD(&bo->va);
Marek Olšákbda72d52014-03-02 00:56:17 +0100198 bo->initial_domain = domain & (RADEON_GEM_DOMAIN_VRAM |
199 RADEON_GEM_DOMAIN_GTT |
200 RADEON_GEM_DOMAIN_CPU);
Michel Dänzer02376d82014-07-17 19:01:08 +0900201
202 bo->flags = flags;
203 /* PCI GART is always snooped */
204 if (!(rdev->flags & RADEON_IS_PCIE))
205 bo->flags &= ~(RADEON_GEM_GTT_WC | RADEON_GEM_GTT_UC);
206
Jerome Glisse1fb107f2009-12-10 17:16:28 +0100207 radeon_ttm_placement_from_domain(bo, domain);
Thomas Hellstrom5cc6fba2009-12-07 18:36:19 +0100208 /* Kernel allocation are uninterruptible */
Christian Königdb7fce32012-05-11 14:57:18 +0200209 down_read(&rdev->pm.mclk_lock);
Jerome Glisse1fb107f2009-12-10 17:16:28 +0100210 r = ttm_bo_init(&rdev->mman.bdev, &bo->tbo, size, type,
Marcin Slusarz0b91c4a2012-11-06 21:49:51 +0000211 &bo->placement, page_align, !kernel, NULL,
Alex Deucher40f5cf92012-05-10 18:33:13 -0400212 acc_size, sg, &radeon_ttm_bo_destroy);
Christian Königdb7fce32012-05-11 14:57:18 +0200213 up_read(&rdev->pm.mclk_lock);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200214 if (unlikely(r != 0)) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200215 return r;
216 }
Jerome Glisse4c788672009-11-20 14:29:23 +0100217 *bo_ptr = bo;
Daniel Vetter441921d2011-02-18 17:59:16 +0100218
Dave Airlie99ee7fa2010-11-23 11:47:49 +1000219 trace_radeon_bo_create(bo);
Daniel Vetter441921d2011-02-18 17:59:16 +0100220
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200221 return 0;
222}
223
Jerome Glisse4c788672009-11-20 14:29:23 +0100224int radeon_bo_kmap(struct radeon_bo *bo, void **ptr)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200225{
Jerome Glisse4c788672009-11-20 14:29:23 +0100226 bool is_iomem;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200227 int r;
228
Jerome Glisse4c788672009-11-20 14:29:23 +0100229 if (bo->kptr) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200230 if (ptr) {
Jerome Glisse4c788672009-11-20 14:29:23 +0100231 *ptr = bo->kptr;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200232 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200233 return 0;
234 }
Jerome Glisse4c788672009-11-20 14:29:23 +0100235 r = ttm_bo_kmap(&bo->tbo, 0, bo->tbo.num_pages, &bo->kmap);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200236 if (r) {
237 return r;
238 }
Jerome Glisse4c788672009-11-20 14:29:23 +0100239 bo->kptr = ttm_kmap_obj_virtual(&bo->kmap, &is_iomem);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200240 if (ptr) {
Jerome Glisse4c788672009-11-20 14:29:23 +0100241 *ptr = bo->kptr;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200242 }
Jerome Glisse4c788672009-11-20 14:29:23 +0100243 radeon_bo_check_tiling(bo, 0, 0);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200244 return 0;
245}
246
Jerome Glisse4c788672009-11-20 14:29:23 +0100247void radeon_bo_kunmap(struct radeon_bo *bo)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200248{
Jerome Glisse4c788672009-11-20 14:29:23 +0100249 if (bo->kptr == NULL)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200250 return;
Jerome Glisse4c788672009-11-20 14:29:23 +0100251 bo->kptr = NULL;
252 radeon_bo_check_tiling(bo, 0, 0);
253 ttm_bo_kunmap(&bo->kmap);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200254}
255
Christian König512d8af2014-07-30 21:04:56 +0200256struct radeon_bo *radeon_bo_ref(struct radeon_bo *bo)
257{
258 if (bo == NULL)
259 return NULL;
260
261 ttm_bo_reference(&bo->tbo);
262 return bo;
263}
264
Jerome Glisse4c788672009-11-20 14:29:23 +0100265void radeon_bo_unref(struct radeon_bo **bo)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200266{
Jerome Glisse4c788672009-11-20 14:29:23 +0100267 struct ttm_buffer_object *tbo;
Dave Airlief4b7fb92010-04-29 18:37:59 +1000268 struct radeon_device *rdev;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200269
Jerome Glisse4c788672009-11-20 14:29:23 +0100270 if ((*bo) == NULL)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200271 return;
Dave Airlief4b7fb92010-04-29 18:37:59 +1000272 rdev = (*bo)->rdev;
Jerome Glisse4c788672009-11-20 14:29:23 +0100273 tbo = &((*bo)->tbo);
274 ttm_bo_unref(&tbo);
275 if (tbo == NULL)
276 *bo = NULL;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200277}
278
Michel Dänzerc4353012012-03-14 17:12:41 +0100279int radeon_bo_pin_restricted(struct radeon_bo *bo, u32 domain, u64 max_offset,
280 u64 *gpu_addr)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200281{
Jerome Glisse312ea8d2009-12-07 15:52:58 +0100282 int r, i;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200283
Christian Königf72a113a2014-08-07 09:36:00 +0200284 if (radeon_ttm_tt_has_userptr(bo->tbo.ttm))
285 return -EPERM;
286
Jerome Glisse4c788672009-11-20 14:29:23 +0100287 if (bo->pin_count) {
288 bo->pin_count++;
289 if (gpu_addr)
290 *gpu_addr = radeon_bo_gpu_offset(bo);
Michel Dänzerd9366222012-03-28 08:52:32 +0200291
292 if (max_offset != 0) {
293 u64 domain_start;
294
295 if (domain == RADEON_GEM_DOMAIN_VRAM)
296 domain_start = bo->rdev->mc.vram_start;
297 else
298 domain_start = bo->rdev->mc.gtt_start;
Michel Dänzere199fd42012-03-29 16:47:43 +0200299 WARN_ON_ONCE(max_offset <
300 (radeon_bo_gpu_offset(bo) - domain_start));
Michel Dänzerd9366222012-03-28 08:52:32 +0200301 }
302
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200303 return 0;
304 }
Jerome Glisse312ea8d2009-12-07 15:52:58 +0100305 radeon_ttm_placement_from_domain(bo, domain);
Christian Königf1217ed2014-08-27 13:16:04 +0200306 for (i = 0; i < bo->placement.num_placement; i++) {
307 unsigned lpfn = 0;
308
Michel Dänzer3ca82da2010-03-26 19:18:55 +0000309 /* force to pin into visible video ram */
Christian Königf1217ed2014-08-27 13:16:04 +0200310 if (bo->placements[i].flags & TTM_PL_FLAG_VRAM)
311 lpfn = bo->rdev->mc.visible_vram_size >> PAGE_SHIFT;
312 else
313 lpfn = bo->rdev->mc.gtt_size >> PAGE_SHIFT; /* ??? */
Michel Dänzerc4353012012-03-14 17:12:41 +0100314
Christian Königf1217ed2014-08-27 13:16:04 +0200315 if (max_offset)
316 lpfn = min (lpfn, (unsigned)(max_offset >> PAGE_SHIFT));
Michel Dänzerc4353012012-03-14 17:12:41 +0100317
Christian Königf1217ed2014-08-27 13:16:04 +0200318 bo->placements[i].lpfn = lpfn;
319 bo->placements[i].flags |= TTM_PL_FLAG_NO_EVICT;
Michel Dänzerc4353012012-03-14 17:12:41 +0100320 }
Christian Königf1217ed2014-08-27 13:16:04 +0200321
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000322 r = ttm_bo_validate(&bo->tbo, &bo->placement, false, false);
Jerome Glisse4c788672009-11-20 14:29:23 +0100323 if (likely(r == 0)) {
324 bo->pin_count = 1;
325 if (gpu_addr != NULL)
326 *gpu_addr = radeon_bo_gpu_offset(bo);
Alex Deucher71ecc972014-07-17 12:09:25 -0400327 if (domain == RADEON_GEM_DOMAIN_VRAM)
328 bo->rdev->vram_pin_size += radeon_bo_size(bo);
329 else
330 bo->rdev->gart_pin_size += radeon_bo_size(bo);
331 } else {
Jerome Glisse4c788672009-11-20 14:29:23 +0100332 dev_err(bo->rdev->dev, "%p pin failed\n", bo);
Alex Deucher71ecc972014-07-17 12:09:25 -0400333 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200334 return r;
335}
336
Michel Dänzerc4353012012-03-14 17:12:41 +0100337int radeon_bo_pin(struct radeon_bo *bo, u32 domain, u64 *gpu_addr)
338{
339 return radeon_bo_pin_restricted(bo, domain, 0, gpu_addr);
340}
341
Jerome Glisse4c788672009-11-20 14:29:23 +0100342int radeon_bo_unpin(struct radeon_bo *bo)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200343{
Jerome Glisse312ea8d2009-12-07 15:52:58 +0100344 int r, i;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200345
Jerome Glisse4c788672009-11-20 14:29:23 +0100346 if (!bo->pin_count) {
347 dev_warn(bo->rdev->dev, "%p unpin not necessary\n", bo);
348 return 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200349 }
Jerome Glisse4c788672009-11-20 14:29:23 +0100350 bo->pin_count--;
351 if (bo->pin_count)
352 return 0;
Christian Königf1217ed2014-08-27 13:16:04 +0200353 for (i = 0; i < bo->placement.num_placement; i++) {
354 bo->placements[i].lpfn = 0;
355 bo->placements[i].flags &= ~TTM_PL_FLAG_NO_EVICT;
356 }
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000357 r = ttm_bo_validate(&bo->tbo, &bo->placement, false, false);
Alex Deucher71ecc972014-07-17 12:09:25 -0400358 if (likely(r == 0)) {
359 if (bo->tbo.mem.mem_type == TTM_PL_VRAM)
360 bo->rdev->vram_pin_size -= radeon_bo_size(bo);
361 else
362 bo->rdev->gart_pin_size -= radeon_bo_size(bo);
363 } else {
Jerome Glisse4c788672009-11-20 14:29:23 +0100364 dev_err(bo->rdev->dev, "%p validate failed for unpin\n", bo);
Alex Deucher71ecc972014-07-17 12:09:25 -0400365 }
Thomas Hellstrom5cc6fba2009-12-07 18:36:19 +0100366 return r;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200367}
368
Jerome Glisse4c788672009-11-20 14:29:23 +0100369int radeon_bo_evict_vram(struct radeon_device *rdev)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200370{
Dave Airlied796d842010-01-25 13:08:08 +1000371 /* late 2.6.33 fix IGP hibernate - we need pm ops to do this correct */
372 if (0 && (rdev->flags & RADEON_IS_IGP)) {
Alex Deucher06b64762010-01-05 11:27:29 -0500373 if (rdev->mc.igp_sideport_enabled == false)
374 /* Useless to evict on IGP chips */
375 return 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200376 }
377 return ttm_bo_evict_mm(&rdev->mman.bdev, TTM_PL_VRAM);
378}
379
Jerome Glisse4c788672009-11-20 14:29:23 +0100380void radeon_bo_force_delete(struct radeon_device *rdev)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200381{
Jerome Glisse4c788672009-11-20 14:29:23 +0100382 struct radeon_bo *bo, *n;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200383
384 if (list_empty(&rdev->gem.objects)) {
385 return;
386 }
Jerome Glisse4c788672009-11-20 14:29:23 +0100387 dev_err(rdev->dev, "Userspace still has active objects !\n");
388 list_for_each_entry_safe(bo, n, &rdev->gem.objects, list) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200389 mutex_lock(&rdev->ddev->struct_mutex);
Jerome Glisse4c788672009-11-20 14:29:23 +0100390 dev_err(rdev->dev, "%p %p %lu %lu force free\n",
Daniel Vetter31c36032011-02-18 17:59:18 +0100391 &bo->gem_base, bo, (unsigned long)bo->gem_base.size,
392 *((unsigned long *)&bo->gem_base.refcount));
Jerome Glisse4c788672009-11-20 14:29:23 +0100393 mutex_lock(&bo->rdev->gem.mutex);
394 list_del_init(&bo->list);
395 mutex_unlock(&bo->rdev->gem.mutex);
Dave Airlie91132d62011-03-01 13:40:06 +1000396 /* this should unref the ttm bo */
Daniel Vetter31c36032011-02-18 17:59:18 +0100397 drm_gem_object_unreference(&bo->gem_base);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200398 mutex_unlock(&rdev->ddev->struct_mutex);
399 }
400}
401
Jerome Glisse4c788672009-11-20 14:29:23 +0100402int radeon_bo_init(struct radeon_device *rdev)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200403{
Jerome Glissea4d68272009-09-11 13:00:43 +0200404 /* Add an MTRR for the VRAM */
Samuel Lia0a53aa2013-04-08 17:25:47 -0400405 if (!rdev->fastfb_working) {
Andy Lutomirski07ebea22013-05-13 23:58:45 +0000406 rdev->mc.vram_mtrr = arch_phys_wc_add(rdev->mc.aper_base,
407 rdev->mc.aper_size);
Samuel Lia0a53aa2013-04-08 17:25:47 -0400408 }
Jerome Glissea4d68272009-09-11 13:00:43 +0200409 DRM_INFO("Detected VRAM RAM=%lluM, BAR=%lluM\n",
410 rdev->mc.mc_vram_size >> 20,
411 (unsigned long long)rdev->mc.aper_size >> 20);
412 DRM_INFO("RAM width %dbits %cDR\n",
413 rdev->mc.vram_width, rdev->mc.vram_is_ddr ? 'D' : 'S');
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200414 return radeon_ttm_init(rdev);
415}
416
Jerome Glisse4c788672009-11-20 14:29:23 +0100417void radeon_bo_fini(struct radeon_device *rdev)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200418{
419 radeon_ttm_fini(rdev);
Andy Lutomirski07ebea22013-05-13 23:58:45 +0000420 arch_phys_wc_del(rdev->mc.vram_mtrr);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200421}
422
Marek Olšák19dff562014-03-02 00:56:22 +0100423/* Returns how many bytes TTM can move per IB.
424 */
425static u64 radeon_bo_get_threshold_for_moves(struct radeon_device *rdev)
426{
427 u64 real_vram_size = rdev->mc.real_vram_size;
428 u64 vram_usage = atomic64_read(&rdev->vram_usage);
429
430 /* This function is based on the current VRAM usage.
431 *
432 * - If all of VRAM is free, allow relocating the number of bytes that
433 * is equal to 1/4 of the size of VRAM for this IB.
434
435 * - If more than one half of VRAM is occupied, only allow relocating
436 * 1 MB of data for this IB.
437 *
438 * - From 0 to one half of used VRAM, the threshold decreases
439 * linearly.
440 * __________________
441 * 1/4 of -|\ |
442 * VRAM | \ |
443 * | \ |
444 * | \ |
445 * | \ |
446 * | \ |
447 * | \ |
448 * | \________|1 MB
449 * |----------------|
450 * VRAM 0 % 100 %
451 * used used
452 *
453 * Note: It's a threshold, not a limit. The threshold must be crossed
454 * for buffer relocations to stop, so any buffer of an arbitrary size
455 * can be moved as long as the threshold isn't crossed before
456 * the relocation takes place. We don't want to disable buffer
457 * relocations completely.
458 *
459 * The idea is that buffers should be placed in VRAM at creation time
460 * and TTM should only do a minimum number of relocations during
461 * command submission. In practice, you need to submit at least
462 * a dozen IBs to move all buffers to VRAM if they are in GTT.
463 *
464 * Also, things can get pretty crazy under memory pressure and actual
465 * VRAM usage can change a lot, so playing safe even at 50% does
466 * consistently increase performance.
467 */
468
469 u64 half_vram = real_vram_size >> 1;
470 u64 half_free_vram = vram_usage >= half_vram ? 0 : half_vram - vram_usage;
471 u64 bytes_moved_threshold = half_free_vram >> 1;
472 return max(bytes_moved_threshold, 1024*1024ull);
473}
474
475int radeon_bo_list_validate(struct radeon_device *rdev,
476 struct ww_acquire_ctx *ticket,
Maarten Lankhorstecff6652013-06-27 13:48:17 +0200477 struct list_head *head, int ring)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200478{
Christian Königdf0af442014-03-03 12:38:08 +0100479 struct radeon_cs_reloc *lobj;
Jerome Glisse4c788672009-11-20 14:29:23 +0100480 struct radeon_bo *bo;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200481 int r;
Marek Olšák19dff562014-03-02 00:56:22 +0100482 u64 bytes_moved = 0, initial_bytes_moved;
483 u64 bytes_moved_threshold = radeon_bo_get_threshold_for_moves(rdev);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200484
Maarten Lankhorstecff6652013-06-27 13:48:17 +0200485 r = ttm_eu_reserve_buffers(ticket, head);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200486 if (unlikely(r != 0)) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200487 return r;
488 }
Marek Olšák19dff562014-03-02 00:56:22 +0100489
Thomas Hellstrom147666f2010-11-17 12:38:32 +0000490 list_for_each_entry(lobj, head, tv.head) {
Christian Königdf0af442014-03-03 12:38:08 +0100491 bo = lobj->robj;
Jerome Glisse4c788672009-11-20 14:29:23 +0100492 if (!bo->pin_count) {
Christian Königce6758c2014-06-02 17:33:07 +0200493 u32 domain = lobj->prefered_domains;
Marek Olšák19dff562014-03-02 00:56:22 +0100494 u32 current_domain =
495 radeon_mem_type_to_domain(bo->tbo.mem.mem_type);
496
497 /* Check if this buffer will be moved and don't move it
498 * if we have moved too many buffers for this IB already.
499 *
500 * Note that this allows moving at least one buffer of
501 * any size, because it doesn't take the current "bo"
502 * into account. We don't want to disallow buffer moves
503 * completely.
504 */
Christian Königce6758c2014-06-02 17:33:07 +0200505 if ((lobj->allowed_domains & current_domain) != 0 &&
Marek Olšák19dff562014-03-02 00:56:22 +0100506 (domain & current_domain) == 0 && /* will be moved */
507 bytes_moved > bytes_moved_threshold) {
508 /* don't move it */
509 domain = current_domain;
510 }
511
Alex Deucher20707872013-01-17 13:10:50 -0500512 retry:
513 radeon_ttm_placement_from_domain(bo, domain);
Christian Königf2ba57b2013-04-08 12:41:29 +0200514 if (ring == R600_RING_TYPE_UVD_INDEX)
515 radeon_uvd_force_into_uvd_segment(bo);
Marek Olšák19dff562014-03-02 00:56:22 +0100516
517 initial_bytes_moved = atomic64_read(&rdev->num_bytes_moved);
518 r = ttm_bo_validate(&bo->tbo, &bo->placement, true, false);
519 bytes_moved += atomic64_read(&rdev->num_bytes_moved) -
520 initial_bytes_moved;
521
Michel Dänzere376573f2010-07-08 12:43:28 +1000522 if (unlikely(r)) {
Christian Königce6758c2014-06-02 17:33:07 +0200523 if (r != -ERESTARTSYS &&
524 domain != lobj->allowed_domains) {
525 domain = lobj->allowed_domains;
Alex Deucher20707872013-01-17 13:10:50 -0500526 goto retry;
527 }
Maarten Lankhorst1b6e5fd2013-07-10 12:26:56 +0200528 ttm_eu_backoff_reservation(ticket, head);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200529 return r;
Michel Dänzere376573f2010-07-08 12:43:28 +1000530 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200531 }
Jerome Glisse4c788672009-11-20 14:29:23 +0100532 lobj->gpu_offset = radeon_bo_gpu_offset(bo);
533 lobj->tiling_flags = bo->tiling_flags;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200534 }
535 return 0;
536}
537
Jerome Glisse4c788672009-11-20 14:29:23 +0100538int radeon_bo_fbdev_mmap(struct radeon_bo *bo,
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200539 struct vm_area_struct *vma)
540{
Jerome Glisse4c788672009-11-20 14:29:23 +0100541 return ttm_fbdev_mmap(vma, &bo->tbo);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200542}
543
Dave Airlie550e2d92009-12-09 14:15:38 +1000544int radeon_bo_get_surface_reg(struct radeon_bo *bo)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200545{
Jerome Glisse4c788672009-11-20 14:29:23 +0100546 struct radeon_device *rdev = bo->rdev;
Dave Airliee024e112009-06-24 09:48:08 +1000547 struct radeon_surface_reg *reg;
Jerome Glisse4c788672009-11-20 14:29:23 +0100548 struct radeon_bo *old_object;
Dave Airliee024e112009-06-24 09:48:08 +1000549 int steal;
550 int i;
551
Maarten Lankhorst977c38d2013-06-27 13:48:26 +0200552 lockdep_assert_held(&bo->tbo.resv->lock.base);
Jerome Glisse4c788672009-11-20 14:29:23 +0100553
554 if (!bo->tiling_flags)
Dave Airliee024e112009-06-24 09:48:08 +1000555 return 0;
556
Jerome Glisse4c788672009-11-20 14:29:23 +0100557 if (bo->surface_reg >= 0) {
558 reg = &rdev->surface_regs[bo->surface_reg];
559 i = bo->surface_reg;
Dave Airliee024e112009-06-24 09:48:08 +1000560 goto out;
561 }
562
563 steal = -1;
564 for (i = 0; i < RADEON_GEM_MAX_SURFACES; i++) {
565
566 reg = &rdev->surface_regs[i];
Jerome Glisse4c788672009-11-20 14:29:23 +0100567 if (!reg->bo)
Dave Airliee024e112009-06-24 09:48:08 +1000568 break;
569
Jerome Glisse4c788672009-11-20 14:29:23 +0100570 old_object = reg->bo;
Dave Airliee024e112009-06-24 09:48:08 +1000571 if (old_object->pin_count == 0)
572 steal = i;
573 }
574
575 /* if we are all out */
576 if (i == RADEON_GEM_MAX_SURFACES) {
577 if (steal == -1)
578 return -ENOMEM;
579 /* find someone with a surface reg and nuke their BO */
580 reg = &rdev->surface_regs[steal];
Jerome Glisse4c788672009-11-20 14:29:23 +0100581 old_object = reg->bo;
Dave Airliee024e112009-06-24 09:48:08 +1000582 /* blow away the mapping */
583 DRM_DEBUG("stealing surface reg %d from %p\n", steal, old_object);
Jerome Glisse4c788672009-11-20 14:29:23 +0100584 ttm_bo_unmap_virtual(&old_object->tbo);
Dave Airliee024e112009-06-24 09:48:08 +1000585 old_object->surface_reg = -1;
586 i = steal;
587 }
588
Jerome Glisse4c788672009-11-20 14:29:23 +0100589 bo->surface_reg = i;
590 reg->bo = bo;
Dave Airliee024e112009-06-24 09:48:08 +1000591
592out:
Jerome Glisse4c788672009-11-20 14:29:23 +0100593 radeon_set_surface_reg(rdev, i, bo->tiling_flags, bo->pitch,
Ben Skeggsd961db72010-08-05 10:48:18 +1000594 bo->tbo.mem.start << PAGE_SHIFT,
Jerome Glisse4c788672009-11-20 14:29:23 +0100595 bo->tbo.num_pages << PAGE_SHIFT);
Dave Airliee024e112009-06-24 09:48:08 +1000596 return 0;
597}
598
Jerome Glisse4c788672009-11-20 14:29:23 +0100599static void radeon_bo_clear_surface_reg(struct radeon_bo *bo)
Dave Airliee024e112009-06-24 09:48:08 +1000600{
Jerome Glisse4c788672009-11-20 14:29:23 +0100601 struct radeon_device *rdev = bo->rdev;
Dave Airliee024e112009-06-24 09:48:08 +1000602 struct radeon_surface_reg *reg;
603
Jerome Glisse4c788672009-11-20 14:29:23 +0100604 if (bo->surface_reg == -1)
Dave Airliee024e112009-06-24 09:48:08 +1000605 return;
606
Jerome Glisse4c788672009-11-20 14:29:23 +0100607 reg = &rdev->surface_regs[bo->surface_reg];
608 radeon_clear_surface_reg(rdev, bo->surface_reg);
Dave Airliee024e112009-06-24 09:48:08 +1000609
Jerome Glisse4c788672009-11-20 14:29:23 +0100610 reg->bo = NULL;
611 bo->surface_reg = -1;
Dave Airliee024e112009-06-24 09:48:08 +1000612}
613
Jerome Glisse4c788672009-11-20 14:29:23 +0100614int radeon_bo_set_tiling_flags(struct radeon_bo *bo,
615 uint32_t tiling_flags, uint32_t pitch)
Dave Airliee024e112009-06-24 09:48:08 +1000616{
Jerome Glisse285484e2011-12-16 17:03:42 -0500617 struct radeon_device *rdev = bo->rdev;
Jerome Glisse4c788672009-11-20 14:29:23 +0100618 int r;
619
Jerome Glisse285484e2011-12-16 17:03:42 -0500620 if (rdev->family >= CHIP_CEDAR) {
621 unsigned bankw, bankh, mtaspect, tilesplit, stilesplit;
622
623 bankw = (tiling_flags >> RADEON_TILING_EG_BANKW_SHIFT) & RADEON_TILING_EG_BANKW_MASK;
624 bankh = (tiling_flags >> RADEON_TILING_EG_BANKH_SHIFT) & RADEON_TILING_EG_BANKH_MASK;
625 mtaspect = (tiling_flags >> RADEON_TILING_EG_MACRO_TILE_ASPECT_SHIFT) & RADEON_TILING_EG_MACRO_TILE_ASPECT_MASK;
626 tilesplit = (tiling_flags >> RADEON_TILING_EG_TILE_SPLIT_SHIFT) & RADEON_TILING_EG_TILE_SPLIT_MASK;
627 stilesplit = (tiling_flags >> RADEON_TILING_EG_STENCIL_TILE_SPLIT_SHIFT) & RADEON_TILING_EG_STENCIL_TILE_SPLIT_MASK;
628 switch (bankw) {
629 case 0:
630 case 1:
631 case 2:
632 case 4:
633 case 8:
634 break;
635 default:
636 return -EINVAL;
637 }
638 switch (bankh) {
639 case 0:
640 case 1:
641 case 2:
642 case 4:
643 case 8:
644 break;
645 default:
646 return -EINVAL;
647 }
648 switch (mtaspect) {
649 case 0:
650 case 1:
651 case 2:
652 case 4:
653 case 8:
654 break;
655 default:
656 return -EINVAL;
657 }
658 if (tilesplit > 6) {
659 return -EINVAL;
660 }
661 if (stilesplit > 6) {
662 return -EINVAL;
663 }
664 }
Jerome Glisse4c788672009-11-20 14:29:23 +0100665 r = radeon_bo_reserve(bo, false);
666 if (unlikely(r != 0))
667 return r;
668 bo->tiling_flags = tiling_flags;
669 bo->pitch = pitch;
670 radeon_bo_unreserve(bo);
671 return 0;
Dave Airliee024e112009-06-24 09:48:08 +1000672}
673
Jerome Glisse4c788672009-11-20 14:29:23 +0100674void radeon_bo_get_tiling_flags(struct radeon_bo *bo,
675 uint32_t *tiling_flags,
676 uint32_t *pitch)
Dave Airliee024e112009-06-24 09:48:08 +1000677{
Maarten Lankhorst977c38d2013-06-27 13:48:26 +0200678 lockdep_assert_held(&bo->tbo.resv->lock.base);
679
Dave Airliee024e112009-06-24 09:48:08 +1000680 if (tiling_flags)
Jerome Glisse4c788672009-11-20 14:29:23 +0100681 *tiling_flags = bo->tiling_flags;
Dave Airliee024e112009-06-24 09:48:08 +1000682 if (pitch)
Jerome Glisse4c788672009-11-20 14:29:23 +0100683 *pitch = bo->pitch;
Dave Airliee024e112009-06-24 09:48:08 +1000684}
685
Jerome Glisse4c788672009-11-20 14:29:23 +0100686int radeon_bo_check_tiling(struct radeon_bo *bo, bool has_moved,
687 bool force_drop)
Dave Airliee024e112009-06-24 09:48:08 +1000688{
Maarten Lankhorst977c38d2013-06-27 13:48:26 +0200689 if (!force_drop)
690 lockdep_assert_held(&bo->tbo.resv->lock.base);
Jerome Glisse4c788672009-11-20 14:29:23 +0100691
692 if (!(bo->tiling_flags & RADEON_TILING_SURFACE))
Dave Airliee024e112009-06-24 09:48:08 +1000693 return 0;
694
695 if (force_drop) {
Jerome Glisse4c788672009-11-20 14:29:23 +0100696 radeon_bo_clear_surface_reg(bo);
Dave Airliee024e112009-06-24 09:48:08 +1000697 return 0;
698 }
699
Jerome Glisse4c788672009-11-20 14:29:23 +0100700 if (bo->tbo.mem.mem_type != TTM_PL_VRAM) {
Dave Airliee024e112009-06-24 09:48:08 +1000701 if (!has_moved)
702 return 0;
703
Jerome Glisse4c788672009-11-20 14:29:23 +0100704 if (bo->surface_reg >= 0)
705 radeon_bo_clear_surface_reg(bo);
Dave Airliee024e112009-06-24 09:48:08 +1000706 return 0;
707 }
708
Jerome Glisse4c788672009-11-20 14:29:23 +0100709 if ((bo->surface_reg >= 0) && !has_moved)
Dave Airliee024e112009-06-24 09:48:08 +1000710 return 0;
711
Jerome Glisse4c788672009-11-20 14:29:23 +0100712 return radeon_bo_get_surface_reg(bo);
Dave Airliee024e112009-06-24 09:48:08 +1000713}
714
715void radeon_bo_move_notify(struct ttm_buffer_object *bo,
Marek Olšák67e8e3f2014-03-02 00:56:18 +0100716 struct ttm_mem_reg *new_mem)
Dave Airliee024e112009-06-24 09:48:08 +1000717{
Jerome Glissed03d8582009-12-14 21:02:09 +0100718 struct radeon_bo *rbo;
Marek Olšák67e8e3f2014-03-02 00:56:18 +0100719
Jerome Glissed03d8582009-12-14 21:02:09 +0100720 if (!radeon_ttm_bo_is_radeon_bo(bo))
721 return;
Marek Olšák67e8e3f2014-03-02 00:56:18 +0100722
Jerome Glissed03d8582009-12-14 21:02:09 +0100723 rbo = container_of(bo, struct radeon_bo, tbo);
Jerome Glisse4c788672009-11-20 14:29:23 +0100724 radeon_bo_check_tiling(rbo, 0, 1);
Jerome Glisse721604a2012-01-05 22:11:05 -0500725 radeon_vm_bo_invalidate(rbo->rdev, rbo);
Marek Olšák67e8e3f2014-03-02 00:56:18 +0100726
727 /* update statistics */
728 if (!new_mem)
729 return;
730
731 radeon_update_memory_usage(rbo, bo->mem.mem_type, -1);
732 radeon_update_memory_usage(rbo, new_mem->mem_type, 1);
Dave Airliee024e112009-06-24 09:48:08 +1000733}
734
Jerome Glisse0a2d50e2010-04-09 14:39:24 +0200735int radeon_bo_fault_reserve_notify(struct ttm_buffer_object *bo)
Dave Airliee024e112009-06-24 09:48:08 +1000736{
Jerome Glisse0a2d50e2010-04-09 14:39:24 +0200737 struct radeon_device *rdev;
Jerome Glissed03d8582009-12-14 21:02:09 +0100738 struct radeon_bo *rbo;
Jerome Glisse0a2d50e2010-04-09 14:39:24 +0200739 unsigned long offset, size;
740 int r;
741
Jerome Glissed03d8582009-12-14 21:02:09 +0100742 if (!radeon_ttm_bo_is_radeon_bo(bo))
Jerome Glisse0a2d50e2010-04-09 14:39:24 +0200743 return 0;
Jerome Glissed03d8582009-12-14 21:02:09 +0100744 rbo = container_of(bo, struct radeon_bo, tbo);
Jerome Glisse4c788672009-11-20 14:29:23 +0100745 radeon_bo_check_tiling(rbo, 0, 0);
Jerome Glisse0a2d50e2010-04-09 14:39:24 +0200746 rdev = rbo->rdev;
Christian König54409252014-05-05 18:40:12 +0200747 if (bo->mem.mem_type != TTM_PL_VRAM)
748 return 0;
749
750 size = bo->mem.num_pages << PAGE_SHIFT;
751 offset = bo->mem.start << PAGE_SHIFT;
752 if ((offset + size) <= rdev->mc.visible_vram_size)
753 return 0;
754
755 /* hurrah the memory is not visible ! */
756 radeon_ttm_placement_from_domain(rbo, RADEON_GEM_DOMAIN_VRAM);
Christian Königf1217ed2014-08-27 13:16:04 +0200757 rbo->placements[0].lpfn = rdev->mc.visible_vram_size >> PAGE_SHIFT;
Christian König54409252014-05-05 18:40:12 +0200758 r = ttm_bo_validate(bo, &rbo->placement, false, false);
759 if (unlikely(r == -ENOMEM)) {
760 radeon_ttm_placement_from_domain(rbo, RADEON_GEM_DOMAIN_GTT);
761 return ttm_bo_validate(bo, &rbo->placement, false, false);
762 } else if (unlikely(r != 0)) {
763 return r;
Jerome Glisse0a2d50e2010-04-09 14:39:24 +0200764 }
Christian König54409252014-05-05 18:40:12 +0200765
766 offset = bo->mem.start << PAGE_SHIFT;
767 /* this should never happen */
768 if ((offset + size) > rdev->mc.visible_vram_size)
769 return -EINVAL;
770
Jerome Glisse0a2d50e2010-04-09 14:39:24 +0200771 return 0;
Dave Airliee024e112009-06-24 09:48:08 +1000772}
Andi Kleence580fa2011-10-13 16:08:47 -0700773
Dave Airlie83f30d02011-10-27 18:15:10 +0200774int radeon_bo_wait(struct radeon_bo *bo, u32 *mem_type, bool no_wait)
Andi Kleence580fa2011-10-13 16:08:47 -0700775{
776 int r;
777
Michele CURTI12432352014-05-19 11:18:52 -0400778 r = ttm_bo_reserve(&bo->tbo, true, no_wait, false, NULL);
Andi Kleence580fa2011-10-13 16:08:47 -0700779 if (unlikely(r != 0))
780 return r;
781 spin_lock(&bo->tbo.bdev->fence_lock);
782 if (mem_type)
783 *mem_type = bo->tbo.mem.mem_type;
784 if (bo->tbo.sync_obj)
Dave Airlie1717c0e2011-10-27 18:28:37 +0200785 r = ttm_bo_wait(&bo->tbo, true, true, no_wait);
Andi Kleence580fa2011-10-13 16:08:47 -0700786 spin_unlock(&bo->tbo.bdev->fence_lock);
787 ttm_bo_unreserve(&bo->tbo);
788 return r;
789}