blob: 8abee5fa93bd59c2bac81f181b2297f2f8c8f430 [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;
Michel Dänzerc8584032014-08-28 15:56:00 +0900147 if ((rbo->flags & RADEON_GEM_CPU_ACCESS) &&
148 (rbo->placements[i].flags & TTM_PL_FLAG_VRAM))
149 rbo->placements[i].lpfn =
150 rbo->rdev->mc.visible_vram_size >> PAGE_SHIFT;
151 else
152 rbo->placements[i].lpfn = 0;
Christian Königf1217ed2014-08-27 13:16:04 +0200153 }
154
Lauri Kasanendeadcb32014-04-02 20:33:42 +0300155 /*
156 * Use two-ended allocation depending on the buffer size to
157 * improve fragmentation quality.
158 * 512kb was measured as the most optimal number.
159 */
Michel Dänzerc8584032014-08-28 15:56:00 +0900160 if (!((rbo->flags & RADEON_GEM_CPU_ACCESS) &&
161 (rbo->placements[i].flags & TTM_PL_FLAG_VRAM)) &&
162 rbo->tbo.mem.size > 512 * 1024) {
Lauri Kasanendeadcb32014-04-02 20:33:42 +0300163 for (i = 0; i < c; i++) {
Christian Königf1217ed2014-08-27 13:16:04 +0200164 rbo->placements[i].flags |= TTM_PL_FLAG_TOPDOWN;
Lauri Kasanendeadcb32014-04-02 20:33:42 +0300165 }
166 }
Jerome Glisse312ea8d2009-12-07 15:52:58 +0100167}
168
Daniel Vetter441921d2011-02-18 17:59:16 +0100169int radeon_bo_create(struct radeon_device *rdev,
Alex Deucher268b2512010-11-17 19:00:26 -0500170 unsigned long size, int byte_align, bool kernel, u32 domain,
Michel Dänzer02376d82014-07-17 19:01:08 +0900171 u32 flags, struct sg_table *sg, struct radeon_bo **bo_ptr)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200172{
Jerome Glisse4c788672009-11-20 14:29:23 +0100173 struct radeon_bo *bo;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200174 enum ttm_bo_type type;
Jerome Glisse93225b02010-12-03 16:38:19 -0500175 unsigned long page_align = roundup(byte_align, PAGE_SIZE) >> PAGE_SHIFT;
Jerome Glisse57de4ba2011-11-11 15:42:57 -0500176 size_t acc_size;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200177 int r;
178
Daniel Vetter441921d2011-02-18 17:59:16 +0100179 size = ALIGN(size, PAGE_SIZE);
180
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200181 if (kernel) {
182 type = ttm_bo_type_kernel;
Alex Deucher40f5cf92012-05-10 18:33:13 -0400183 } else if (sg) {
184 type = ttm_bo_type_sg;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200185 } else {
186 type = ttm_bo_type_device;
187 }
Jerome Glisse4c788672009-11-20 14:29:23 +0100188 *bo_ptr = NULL;
Michel Dänzer2b66b502010-11-09 11:50:05 +0100189
Jerome Glisse57de4ba2011-11-11 15:42:57 -0500190 acc_size = ttm_bo_dma_acc_size(&rdev->mman.bdev, size,
191 sizeof(struct radeon_bo));
192
Jerome Glisse4c788672009-11-20 14:29:23 +0100193 bo = kzalloc(sizeof(struct radeon_bo), GFP_KERNEL);
194 if (bo == NULL)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200195 return -ENOMEM;
Daniel Vetter441921d2011-02-18 17:59:16 +0100196 r = drm_gem_object_init(rdev->ddev, &bo->gem_base, size);
197 if (unlikely(r)) {
198 kfree(bo);
199 return r;
200 }
Jerome Glisse4c788672009-11-20 14:29:23 +0100201 bo->rdev = rdev;
Jerome Glisse4c788672009-11-20 14:29:23 +0100202 bo->surface_reg = -1;
203 INIT_LIST_HEAD(&bo->list);
Jerome Glisse721604a2012-01-05 22:11:05 -0500204 INIT_LIST_HEAD(&bo->va);
Marek Olšákbda72d52014-03-02 00:56:17 +0100205 bo->initial_domain = domain & (RADEON_GEM_DOMAIN_VRAM |
206 RADEON_GEM_DOMAIN_GTT |
207 RADEON_GEM_DOMAIN_CPU);
Michel Dänzer02376d82014-07-17 19:01:08 +0900208
209 bo->flags = flags;
210 /* PCI GART is always snooped */
211 if (!(rdev->flags & RADEON_IS_PCIE))
212 bo->flags &= ~(RADEON_GEM_GTT_WC | RADEON_GEM_GTT_UC);
213
Jerome Glisse1fb107f2009-12-10 17:16:28 +0100214 radeon_ttm_placement_from_domain(bo, domain);
Thomas Hellstrom5cc6fba2009-12-07 18:36:19 +0100215 /* Kernel allocation are uninterruptible */
Christian Königdb7fce32012-05-11 14:57:18 +0200216 down_read(&rdev->pm.mclk_lock);
Jerome Glisse1fb107f2009-12-10 17:16:28 +0100217 r = ttm_bo_init(&rdev->mman.bdev, &bo->tbo, size, type,
Marcin Slusarz0b91c4a2012-11-06 21:49:51 +0000218 &bo->placement, page_align, !kernel, NULL,
Alex Deucher40f5cf92012-05-10 18:33:13 -0400219 acc_size, sg, &radeon_ttm_bo_destroy);
Christian Königdb7fce32012-05-11 14:57:18 +0200220 up_read(&rdev->pm.mclk_lock);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200221 if (unlikely(r != 0)) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200222 return r;
223 }
Jerome Glisse4c788672009-11-20 14:29:23 +0100224 *bo_ptr = bo;
Daniel Vetter441921d2011-02-18 17:59:16 +0100225
Dave Airlie99ee7fa2010-11-23 11:47:49 +1000226 trace_radeon_bo_create(bo);
Daniel Vetter441921d2011-02-18 17:59:16 +0100227
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200228 return 0;
229}
230
Jerome Glisse4c788672009-11-20 14:29:23 +0100231int radeon_bo_kmap(struct radeon_bo *bo, void **ptr)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200232{
Jerome Glisse4c788672009-11-20 14:29:23 +0100233 bool is_iomem;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200234 int r;
235
Jerome Glisse4c788672009-11-20 14:29:23 +0100236 if (bo->kptr) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200237 if (ptr) {
Jerome Glisse4c788672009-11-20 14:29:23 +0100238 *ptr = bo->kptr;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200239 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200240 return 0;
241 }
Jerome Glisse4c788672009-11-20 14:29:23 +0100242 r = ttm_bo_kmap(&bo->tbo, 0, bo->tbo.num_pages, &bo->kmap);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200243 if (r) {
244 return r;
245 }
Jerome Glisse4c788672009-11-20 14:29:23 +0100246 bo->kptr = ttm_kmap_obj_virtual(&bo->kmap, &is_iomem);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200247 if (ptr) {
Jerome Glisse4c788672009-11-20 14:29:23 +0100248 *ptr = bo->kptr;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200249 }
Jerome Glisse4c788672009-11-20 14:29:23 +0100250 radeon_bo_check_tiling(bo, 0, 0);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200251 return 0;
252}
253
Jerome Glisse4c788672009-11-20 14:29:23 +0100254void radeon_bo_kunmap(struct radeon_bo *bo)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200255{
Jerome Glisse4c788672009-11-20 14:29:23 +0100256 if (bo->kptr == NULL)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200257 return;
Jerome Glisse4c788672009-11-20 14:29:23 +0100258 bo->kptr = NULL;
259 radeon_bo_check_tiling(bo, 0, 0);
260 ttm_bo_kunmap(&bo->kmap);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200261}
262
Christian König512d8af2014-07-30 21:04:56 +0200263struct radeon_bo *radeon_bo_ref(struct radeon_bo *bo)
264{
265 if (bo == NULL)
266 return NULL;
267
268 ttm_bo_reference(&bo->tbo);
269 return bo;
270}
271
Jerome Glisse4c788672009-11-20 14:29:23 +0100272void radeon_bo_unref(struct radeon_bo **bo)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200273{
Jerome Glisse4c788672009-11-20 14:29:23 +0100274 struct ttm_buffer_object *tbo;
Dave Airlief4b7fb92010-04-29 18:37:59 +1000275 struct radeon_device *rdev;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200276
Jerome Glisse4c788672009-11-20 14:29:23 +0100277 if ((*bo) == NULL)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200278 return;
Dave Airlief4b7fb92010-04-29 18:37:59 +1000279 rdev = (*bo)->rdev;
Jerome Glisse4c788672009-11-20 14:29:23 +0100280 tbo = &((*bo)->tbo);
281 ttm_bo_unref(&tbo);
282 if (tbo == NULL)
283 *bo = NULL;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200284}
285
Michel Dänzerc4353012012-03-14 17:12:41 +0100286int radeon_bo_pin_restricted(struct radeon_bo *bo, u32 domain, u64 max_offset,
287 u64 *gpu_addr)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200288{
Jerome Glisse312ea8d2009-12-07 15:52:58 +0100289 int r, i;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200290
Christian Königf72a113a2014-08-07 09:36:00 +0200291 if (radeon_ttm_tt_has_userptr(bo->tbo.ttm))
292 return -EPERM;
293
Jerome Glisse4c788672009-11-20 14:29:23 +0100294 if (bo->pin_count) {
295 bo->pin_count++;
296 if (gpu_addr)
297 *gpu_addr = radeon_bo_gpu_offset(bo);
Michel Dänzerd9366222012-03-28 08:52:32 +0200298
299 if (max_offset != 0) {
300 u64 domain_start;
301
302 if (domain == RADEON_GEM_DOMAIN_VRAM)
303 domain_start = bo->rdev->mc.vram_start;
304 else
305 domain_start = bo->rdev->mc.gtt_start;
Michel Dänzere199fd42012-03-29 16:47:43 +0200306 WARN_ON_ONCE(max_offset <
307 (radeon_bo_gpu_offset(bo) - domain_start));
Michel Dänzerd9366222012-03-28 08:52:32 +0200308 }
309
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200310 return 0;
311 }
Jerome Glisse312ea8d2009-12-07 15:52:58 +0100312 radeon_ttm_placement_from_domain(bo, domain);
Christian Königf1217ed2014-08-27 13:16:04 +0200313 for (i = 0; i < bo->placement.num_placement; i++) {
Michel Dänzer3ca82da2010-03-26 19:18:55 +0000314 /* force to pin into visible video ram */
Michel Dänzerb76ee672014-09-09 10:09:23 +0900315 if ((bo->placements[i].flags & TTM_PL_FLAG_VRAM) &&
Alex Deucherf266f042014-08-28 10:59:05 -0400316 !(bo->flags & RADEON_GEM_NO_CPU_ACCESS) &&
Michel Dänzerb76ee672014-09-09 10:09:23 +0900317 (!max_offset || max_offset > bo->rdev->mc.visible_vram_size))
318 bo->placements[i].lpfn =
319 bo->rdev->mc.visible_vram_size >> PAGE_SHIFT;
Christian Königf1217ed2014-08-27 13:16:04 +0200320 else
Michel Dänzerb76ee672014-09-09 10:09:23 +0900321 bo->placements[i].lpfn = max_offset >> PAGE_SHIFT;
Michel Dänzerc4353012012-03-14 17:12:41 +0100322
Christian Königf1217ed2014-08-27 13:16:04 +0200323 bo->placements[i].flags |= TTM_PL_FLAG_NO_EVICT;
Michel Dänzerc4353012012-03-14 17:12:41 +0100324 }
Christian Königf1217ed2014-08-27 13:16:04 +0200325
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000326 r = ttm_bo_validate(&bo->tbo, &bo->placement, false, false);
Jerome Glisse4c788672009-11-20 14:29:23 +0100327 if (likely(r == 0)) {
328 bo->pin_count = 1;
329 if (gpu_addr != NULL)
330 *gpu_addr = radeon_bo_gpu_offset(bo);
Alex Deucher71ecc972014-07-17 12:09:25 -0400331 if (domain == RADEON_GEM_DOMAIN_VRAM)
332 bo->rdev->vram_pin_size += radeon_bo_size(bo);
333 else
334 bo->rdev->gart_pin_size += radeon_bo_size(bo);
335 } else {
Jerome Glisse4c788672009-11-20 14:29:23 +0100336 dev_err(bo->rdev->dev, "%p pin failed\n", bo);
Alex Deucher71ecc972014-07-17 12:09:25 -0400337 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200338 return r;
339}
340
Michel Dänzerc4353012012-03-14 17:12:41 +0100341int radeon_bo_pin(struct radeon_bo *bo, u32 domain, u64 *gpu_addr)
342{
343 return radeon_bo_pin_restricted(bo, domain, 0, gpu_addr);
344}
345
Jerome Glisse4c788672009-11-20 14:29:23 +0100346int radeon_bo_unpin(struct radeon_bo *bo)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200347{
Jerome Glisse312ea8d2009-12-07 15:52:58 +0100348 int r, i;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200349
Jerome Glisse4c788672009-11-20 14:29:23 +0100350 if (!bo->pin_count) {
351 dev_warn(bo->rdev->dev, "%p unpin not necessary\n", bo);
352 return 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200353 }
Jerome Glisse4c788672009-11-20 14:29:23 +0100354 bo->pin_count--;
355 if (bo->pin_count)
356 return 0;
Christian Königf1217ed2014-08-27 13:16:04 +0200357 for (i = 0; i < bo->placement.num_placement; i++) {
358 bo->placements[i].lpfn = 0;
359 bo->placements[i].flags &= ~TTM_PL_FLAG_NO_EVICT;
360 }
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000361 r = ttm_bo_validate(&bo->tbo, &bo->placement, false, false);
Alex Deucher71ecc972014-07-17 12:09:25 -0400362 if (likely(r == 0)) {
363 if (bo->tbo.mem.mem_type == TTM_PL_VRAM)
364 bo->rdev->vram_pin_size -= radeon_bo_size(bo);
365 else
366 bo->rdev->gart_pin_size -= radeon_bo_size(bo);
367 } else {
Jerome Glisse4c788672009-11-20 14:29:23 +0100368 dev_err(bo->rdev->dev, "%p validate failed for unpin\n", bo);
Alex Deucher71ecc972014-07-17 12:09:25 -0400369 }
Thomas Hellstrom5cc6fba2009-12-07 18:36:19 +0100370 return r;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200371}
372
Jerome Glisse4c788672009-11-20 14:29:23 +0100373int radeon_bo_evict_vram(struct radeon_device *rdev)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200374{
Dave Airlied796d842010-01-25 13:08:08 +1000375 /* late 2.6.33 fix IGP hibernate - we need pm ops to do this correct */
376 if (0 && (rdev->flags & RADEON_IS_IGP)) {
Alex Deucher06b64762010-01-05 11:27:29 -0500377 if (rdev->mc.igp_sideport_enabled == false)
378 /* Useless to evict on IGP chips */
379 return 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200380 }
381 return ttm_bo_evict_mm(&rdev->mman.bdev, TTM_PL_VRAM);
382}
383
Jerome Glisse4c788672009-11-20 14:29:23 +0100384void radeon_bo_force_delete(struct radeon_device *rdev)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200385{
Jerome Glisse4c788672009-11-20 14:29:23 +0100386 struct radeon_bo *bo, *n;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200387
388 if (list_empty(&rdev->gem.objects)) {
389 return;
390 }
Jerome Glisse4c788672009-11-20 14:29:23 +0100391 dev_err(rdev->dev, "Userspace still has active objects !\n");
392 list_for_each_entry_safe(bo, n, &rdev->gem.objects, list) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200393 mutex_lock(&rdev->ddev->struct_mutex);
Jerome Glisse4c788672009-11-20 14:29:23 +0100394 dev_err(rdev->dev, "%p %p %lu %lu force free\n",
Daniel Vetter31c36032011-02-18 17:59:18 +0100395 &bo->gem_base, bo, (unsigned long)bo->gem_base.size,
396 *((unsigned long *)&bo->gem_base.refcount));
Jerome Glisse4c788672009-11-20 14:29:23 +0100397 mutex_lock(&bo->rdev->gem.mutex);
398 list_del_init(&bo->list);
399 mutex_unlock(&bo->rdev->gem.mutex);
Dave Airlie91132d62011-03-01 13:40:06 +1000400 /* this should unref the ttm bo */
Daniel Vetter31c36032011-02-18 17:59:18 +0100401 drm_gem_object_unreference(&bo->gem_base);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200402 mutex_unlock(&rdev->ddev->struct_mutex);
403 }
404}
405
Jerome Glisse4c788672009-11-20 14:29:23 +0100406int radeon_bo_init(struct radeon_device *rdev)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200407{
Jerome Glissea4d68272009-09-11 13:00:43 +0200408 /* Add an MTRR for the VRAM */
Samuel Lia0a53aa2013-04-08 17:25:47 -0400409 if (!rdev->fastfb_working) {
Andy Lutomirski07ebea22013-05-13 23:58:45 +0000410 rdev->mc.vram_mtrr = arch_phys_wc_add(rdev->mc.aper_base,
411 rdev->mc.aper_size);
Samuel Lia0a53aa2013-04-08 17:25:47 -0400412 }
Jerome Glissea4d68272009-09-11 13:00:43 +0200413 DRM_INFO("Detected VRAM RAM=%lluM, BAR=%lluM\n",
414 rdev->mc.mc_vram_size >> 20,
415 (unsigned long long)rdev->mc.aper_size >> 20);
416 DRM_INFO("RAM width %dbits %cDR\n",
417 rdev->mc.vram_width, rdev->mc.vram_is_ddr ? 'D' : 'S');
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200418 return radeon_ttm_init(rdev);
419}
420
Jerome Glisse4c788672009-11-20 14:29:23 +0100421void radeon_bo_fini(struct radeon_device *rdev)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200422{
423 radeon_ttm_fini(rdev);
Andy Lutomirski07ebea22013-05-13 23:58:45 +0000424 arch_phys_wc_del(rdev->mc.vram_mtrr);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200425}
426
Marek Olšák19dff562014-03-02 00:56:22 +0100427/* Returns how many bytes TTM can move per IB.
428 */
429static u64 radeon_bo_get_threshold_for_moves(struct radeon_device *rdev)
430{
431 u64 real_vram_size = rdev->mc.real_vram_size;
432 u64 vram_usage = atomic64_read(&rdev->vram_usage);
433
434 /* This function is based on the current VRAM usage.
435 *
436 * - If all of VRAM is free, allow relocating the number of bytes that
437 * is equal to 1/4 of the size of VRAM for this IB.
438
439 * - If more than one half of VRAM is occupied, only allow relocating
440 * 1 MB of data for this IB.
441 *
442 * - From 0 to one half of used VRAM, the threshold decreases
443 * linearly.
444 * __________________
445 * 1/4 of -|\ |
446 * VRAM | \ |
447 * | \ |
448 * | \ |
449 * | \ |
450 * | \ |
451 * | \ |
452 * | \________|1 MB
453 * |----------------|
454 * VRAM 0 % 100 %
455 * used used
456 *
457 * Note: It's a threshold, not a limit. The threshold must be crossed
458 * for buffer relocations to stop, so any buffer of an arbitrary size
459 * can be moved as long as the threshold isn't crossed before
460 * the relocation takes place. We don't want to disable buffer
461 * relocations completely.
462 *
463 * The idea is that buffers should be placed in VRAM at creation time
464 * and TTM should only do a minimum number of relocations during
465 * command submission. In practice, you need to submit at least
466 * a dozen IBs to move all buffers to VRAM if they are in GTT.
467 *
468 * Also, things can get pretty crazy under memory pressure and actual
469 * VRAM usage can change a lot, so playing safe even at 50% does
470 * consistently increase performance.
471 */
472
473 u64 half_vram = real_vram_size >> 1;
474 u64 half_free_vram = vram_usage >= half_vram ? 0 : half_vram - vram_usage;
475 u64 bytes_moved_threshold = half_free_vram >> 1;
476 return max(bytes_moved_threshold, 1024*1024ull);
477}
478
479int radeon_bo_list_validate(struct radeon_device *rdev,
480 struct ww_acquire_ctx *ticket,
Maarten Lankhorstecff6652013-06-27 13:48:17 +0200481 struct list_head *head, int ring)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200482{
Christian Königdf0af442014-03-03 12:38:08 +0100483 struct radeon_cs_reloc *lobj;
Jerome Glisse4c788672009-11-20 14:29:23 +0100484 struct radeon_bo *bo;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200485 int r;
Marek Olšák19dff562014-03-02 00:56:22 +0100486 u64 bytes_moved = 0, initial_bytes_moved;
487 u64 bytes_moved_threshold = radeon_bo_get_threshold_for_moves(rdev);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200488
Maarten Lankhorst58b4d722014-01-09 11:03:08 +0100489 r = ttm_eu_reserve_buffers(ticket, head, true);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200490 if (unlikely(r != 0)) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200491 return r;
492 }
Marek Olšák19dff562014-03-02 00:56:22 +0100493
Thomas Hellstrom147666f2010-11-17 12:38:32 +0000494 list_for_each_entry(lobj, head, tv.head) {
Christian Königdf0af442014-03-03 12:38:08 +0100495 bo = lobj->robj;
Jerome Glisse4c788672009-11-20 14:29:23 +0100496 if (!bo->pin_count) {
Christian Königce6758c2014-06-02 17:33:07 +0200497 u32 domain = lobj->prefered_domains;
Christian König38527522014-08-21 12:18:12 +0200498 u32 allowed = lobj->allowed_domains;
Marek Olšák19dff562014-03-02 00:56:22 +0100499 u32 current_domain =
500 radeon_mem_type_to_domain(bo->tbo.mem.mem_type);
501
502 /* Check if this buffer will be moved and don't move it
503 * if we have moved too many buffers for this IB already.
504 *
505 * Note that this allows moving at least one buffer of
506 * any size, because it doesn't take the current "bo"
507 * into account. We don't want to disallow buffer moves
508 * completely.
509 */
Christian König38527522014-08-21 12:18:12 +0200510 if ((allowed & current_domain) != 0 &&
Marek Olšák19dff562014-03-02 00:56:22 +0100511 (domain & current_domain) == 0 && /* will be moved */
512 bytes_moved > bytes_moved_threshold) {
513 /* don't move it */
514 domain = current_domain;
515 }
516
Alex Deucher20707872013-01-17 13:10:50 -0500517 retry:
518 radeon_ttm_placement_from_domain(bo, domain);
Christian Königf2ba57b2013-04-08 12:41:29 +0200519 if (ring == R600_RING_TYPE_UVD_INDEX)
Christian König38527522014-08-21 12:18:12 +0200520 radeon_uvd_force_into_uvd_segment(bo, allowed);
Marek Olšák19dff562014-03-02 00:56:22 +0100521
522 initial_bytes_moved = atomic64_read(&rdev->num_bytes_moved);
523 r = ttm_bo_validate(&bo->tbo, &bo->placement, true, false);
524 bytes_moved += atomic64_read(&rdev->num_bytes_moved) -
525 initial_bytes_moved;
526
Michel Dänzere376573f2010-07-08 12:43:28 +1000527 if (unlikely(r)) {
Christian Königce6758c2014-06-02 17:33:07 +0200528 if (r != -ERESTARTSYS &&
529 domain != lobj->allowed_domains) {
530 domain = lobj->allowed_domains;
Alex Deucher20707872013-01-17 13:10:50 -0500531 goto retry;
532 }
Maarten Lankhorst1b6e5fd2013-07-10 12:26:56 +0200533 ttm_eu_backoff_reservation(ticket, head);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200534 return r;
Michel Dänzere376573f2010-07-08 12:43:28 +1000535 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200536 }
Jerome Glisse4c788672009-11-20 14:29:23 +0100537 lobj->gpu_offset = radeon_bo_gpu_offset(bo);
538 lobj->tiling_flags = bo->tiling_flags;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200539 }
540 return 0;
541}
542
Jerome Glisse4c788672009-11-20 14:29:23 +0100543int radeon_bo_fbdev_mmap(struct radeon_bo *bo,
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200544 struct vm_area_struct *vma)
545{
Jerome Glisse4c788672009-11-20 14:29:23 +0100546 return ttm_fbdev_mmap(vma, &bo->tbo);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200547}
548
Dave Airlie550e2d92009-12-09 14:15:38 +1000549int radeon_bo_get_surface_reg(struct radeon_bo *bo)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200550{
Jerome Glisse4c788672009-11-20 14:29:23 +0100551 struct radeon_device *rdev = bo->rdev;
Dave Airliee024e112009-06-24 09:48:08 +1000552 struct radeon_surface_reg *reg;
Jerome Glisse4c788672009-11-20 14:29:23 +0100553 struct radeon_bo *old_object;
Dave Airliee024e112009-06-24 09:48:08 +1000554 int steal;
555 int i;
556
Maarten Lankhorst977c38d2013-06-27 13:48:26 +0200557 lockdep_assert_held(&bo->tbo.resv->lock.base);
Jerome Glisse4c788672009-11-20 14:29:23 +0100558
559 if (!bo->tiling_flags)
Dave Airliee024e112009-06-24 09:48:08 +1000560 return 0;
561
Jerome Glisse4c788672009-11-20 14:29:23 +0100562 if (bo->surface_reg >= 0) {
563 reg = &rdev->surface_regs[bo->surface_reg];
564 i = bo->surface_reg;
Dave Airliee024e112009-06-24 09:48:08 +1000565 goto out;
566 }
567
568 steal = -1;
569 for (i = 0; i < RADEON_GEM_MAX_SURFACES; i++) {
570
571 reg = &rdev->surface_regs[i];
Jerome Glisse4c788672009-11-20 14:29:23 +0100572 if (!reg->bo)
Dave Airliee024e112009-06-24 09:48:08 +1000573 break;
574
Jerome Glisse4c788672009-11-20 14:29:23 +0100575 old_object = reg->bo;
Dave Airliee024e112009-06-24 09:48:08 +1000576 if (old_object->pin_count == 0)
577 steal = i;
578 }
579
580 /* if we are all out */
581 if (i == RADEON_GEM_MAX_SURFACES) {
582 if (steal == -1)
583 return -ENOMEM;
584 /* find someone with a surface reg and nuke their BO */
585 reg = &rdev->surface_regs[steal];
Jerome Glisse4c788672009-11-20 14:29:23 +0100586 old_object = reg->bo;
Dave Airliee024e112009-06-24 09:48:08 +1000587 /* blow away the mapping */
588 DRM_DEBUG("stealing surface reg %d from %p\n", steal, old_object);
Jerome Glisse4c788672009-11-20 14:29:23 +0100589 ttm_bo_unmap_virtual(&old_object->tbo);
Dave Airliee024e112009-06-24 09:48:08 +1000590 old_object->surface_reg = -1;
591 i = steal;
592 }
593
Jerome Glisse4c788672009-11-20 14:29:23 +0100594 bo->surface_reg = i;
595 reg->bo = bo;
Dave Airliee024e112009-06-24 09:48:08 +1000596
597out:
Jerome Glisse4c788672009-11-20 14:29:23 +0100598 radeon_set_surface_reg(rdev, i, bo->tiling_flags, bo->pitch,
Ben Skeggsd961db72010-08-05 10:48:18 +1000599 bo->tbo.mem.start << PAGE_SHIFT,
Jerome Glisse4c788672009-11-20 14:29:23 +0100600 bo->tbo.num_pages << PAGE_SHIFT);
Dave Airliee024e112009-06-24 09:48:08 +1000601 return 0;
602}
603
Jerome Glisse4c788672009-11-20 14:29:23 +0100604static void radeon_bo_clear_surface_reg(struct radeon_bo *bo)
Dave Airliee024e112009-06-24 09:48:08 +1000605{
Jerome Glisse4c788672009-11-20 14:29:23 +0100606 struct radeon_device *rdev = bo->rdev;
Dave Airliee024e112009-06-24 09:48:08 +1000607 struct radeon_surface_reg *reg;
608
Jerome Glisse4c788672009-11-20 14:29:23 +0100609 if (bo->surface_reg == -1)
Dave Airliee024e112009-06-24 09:48:08 +1000610 return;
611
Jerome Glisse4c788672009-11-20 14:29:23 +0100612 reg = &rdev->surface_regs[bo->surface_reg];
613 radeon_clear_surface_reg(rdev, bo->surface_reg);
Dave Airliee024e112009-06-24 09:48:08 +1000614
Jerome Glisse4c788672009-11-20 14:29:23 +0100615 reg->bo = NULL;
616 bo->surface_reg = -1;
Dave Airliee024e112009-06-24 09:48:08 +1000617}
618
Jerome Glisse4c788672009-11-20 14:29:23 +0100619int radeon_bo_set_tiling_flags(struct radeon_bo *bo,
620 uint32_t tiling_flags, uint32_t pitch)
Dave Airliee024e112009-06-24 09:48:08 +1000621{
Jerome Glisse285484e2011-12-16 17:03:42 -0500622 struct radeon_device *rdev = bo->rdev;
Jerome Glisse4c788672009-11-20 14:29:23 +0100623 int r;
624
Jerome Glisse285484e2011-12-16 17:03:42 -0500625 if (rdev->family >= CHIP_CEDAR) {
626 unsigned bankw, bankh, mtaspect, tilesplit, stilesplit;
627
628 bankw = (tiling_flags >> RADEON_TILING_EG_BANKW_SHIFT) & RADEON_TILING_EG_BANKW_MASK;
629 bankh = (tiling_flags >> RADEON_TILING_EG_BANKH_SHIFT) & RADEON_TILING_EG_BANKH_MASK;
630 mtaspect = (tiling_flags >> RADEON_TILING_EG_MACRO_TILE_ASPECT_SHIFT) & RADEON_TILING_EG_MACRO_TILE_ASPECT_MASK;
631 tilesplit = (tiling_flags >> RADEON_TILING_EG_TILE_SPLIT_SHIFT) & RADEON_TILING_EG_TILE_SPLIT_MASK;
632 stilesplit = (tiling_flags >> RADEON_TILING_EG_STENCIL_TILE_SPLIT_SHIFT) & RADEON_TILING_EG_STENCIL_TILE_SPLIT_MASK;
633 switch (bankw) {
634 case 0:
635 case 1:
636 case 2:
637 case 4:
638 case 8:
639 break;
640 default:
641 return -EINVAL;
642 }
643 switch (bankh) {
644 case 0:
645 case 1:
646 case 2:
647 case 4:
648 case 8:
649 break;
650 default:
651 return -EINVAL;
652 }
653 switch (mtaspect) {
654 case 0:
655 case 1:
656 case 2:
657 case 4:
658 case 8:
659 break;
660 default:
661 return -EINVAL;
662 }
663 if (tilesplit > 6) {
664 return -EINVAL;
665 }
666 if (stilesplit > 6) {
667 return -EINVAL;
668 }
669 }
Jerome Glisse4c788672009-11-20 14:29:23 +0100670 r = radeon_bo_reserve(bo, false);
671 if (unlikely(r != 0))
672 return r;
673 bo->tiling_flags = tiling_flags;
674 bo->pitch = pitch;
675 radeon_bo_unreserve(bo);
676 return 0;
Dave Airliee024e112009-06-24 09:48:08 +1000677}
678
Jerome Glisse4c788672009-11-20 14:29:23 +0100679void radeon_bo_get_tiling_flags(struct radeon_bo *bo,
680 uint32_t *tiling_flags,
681 uint32_t *pitch)
Dave Airliee024e112009-06-24 09:48:08 +1000682{
Maarten Lankhorst977c38d2013-06-27 13:48:26 +0200683 lockdep_assert_held(&bo->tbo.resv->lock.base);
684
Dave Airliee024e112009-06-24 09:48:08 +1000685 if (tiling_flags)
Jerome Glisse4c788672009-11-20 14:29:23 +0100686 *tiling_flags = bo->tiling_flags;
Dave Airliee024e112009-06-24 09:48:08 +1000687 if (pitch)
Jerome Glisse4c788672009-11-20 14:29:23 +0100688 *pitch = bo->pitch;
Dave Airliee024e112009-06-24 09:48:08 +1000689}
690
Jerome Glisse4c788672009-11-20 14:29:23 +0100691int radeon_bo_check_tiling(struct radeon_bo *bo, bool has_moved,
692 bool force_drop)
Dave Airliee024e112009-06-24 09:48:08 +1000693{
Maarten Lankhorst977c38d2013-06-27 13:48:26 +0200694 if (!force_drop)
695 lockdep_assert_held(&bo->tbo.resv->lock.base);
Jerome Glisse4c788672009-11-20 14:29:23 +0100696
697 if (!(bo->tiling_flags & RADEON_TILING_SURFACE))
Dave Airliee024e112009-06-24 09:48:08 +1000698 return 0;
699
700 if (force_drop) {
Jerome Glisse4c788672009-11-20 14:29:23 +0100701 radeon_bo_clear_surface_reg(bo);
Dave Airliee024e112009-06-24 09:48:08 +1000702 return 0;
703 }
704
Jerome Glisse4c788672009-11-20 14:29:23 +0100705 if (bo->tbo.mem.mem_type != TTM_PL_VRAM) {
Dave Airliee024e112009-06-24 09:48:08 +1000706 if (!has_moved)
707 return 0;
708
Jerome Glisse4c788672009-11-20 14:29:23 +0100709 if (bo->surface_reg >= 0)
710 radeon_bo_clear_surface_reg(bo);
Dave Airliee024e112009-06-24 09:48:08 +1000711 return 0;
712 }
713
Jerome Glisse4c788672009-11-20 14:29:23 +0100714 if ((bo->surface_reg >= 0) && !has_moved)
Dave Airliee024e112009-06-24 09:48:08 +1000715 return 0;
716
Jerome Glisse4c788672009-11-20 14:29:23 +0100717 return radeon_bo_get_surface_reg(bo);
Dave Airliee024e112009-06-24 09:48:08 +1000718}
719
720void radeon_bo_move_notify(struct ttm_buffer_object *bo,
Marek Olšák67e8e3f2014-03-02 00:56:18 +0100721 struct ttm_mem_reg *new_mem)
Dave Airliee024e112009-06-24 09:48:08 +1000722{
Jerome Glissed03d8582009-12-14 21:02:09 +0100723 struct radeon_bo *rbo;
Marek Olšák67e8e3f2014-03-02 00:56:18 +0100724
Jerome Glissed03d8582009-12-14 21:02:09 +0100725 if (!radeon_ttm_bo_is_radeon_bo(bo))
726 return;
Marek Olšák67e8e3f2014-03-02 00:56:18 +0100727
Jerome Glissed03d8582009-12-14 21:02:09 +0100728 rbo = container_of(bo, struct radeon_bo, tbo);
Jerome Glisse4c788672009-11-20 14:29:23 +0100729 radeon_bo_check_tiling(rbo, 0, 1);
Jerome Glisse721604a2012-01-05 22:11:05 -0500730 radeon_vm_bo_invalidate(rbo->rdev, rbo);
Marek Olšák67e8e3f2014-03-02 00:56:18 +0100731
732 /* update statistics */
733 if (!new_mem)
734 return;
735
736 radeon_update_memory_usage(rbo, bo->mem.mem_type, -1);
737 radeon_update_memory_usage(rbo, new_mem->mem_type, 1);
Dave Airliee024e112009-06-24 09:48:08 +1000738}
739
Jerome Glisse0a2d50e2010-04-09 14:39:24 +0200740int radeon_bo_fault_reserve_notify(struct ttm_buffer_object *bo)
Dave Airliee024e112009-06-24 09:48:08 +1000741{
Jerome Glisse0a2d50e2010-04-09 14:39:24 +0200742 struct radeon_device *rdev;
Jerome Glissed03d8582009-12-14 21:02:09 +0100743 struct radeon_bo *rbo;
Jerome Glisse0a2d50e2010-04-09 14:39:24 +0200744 unsigned long offset, size;
745 int r;
746
Jerome Glissed03d8582009-12-14 21:02:09 +0100747 if (!radeon_ttm_bo_is_radeon_bo(bo))
Jerome Glisse0a2d50e2010-04-09 14:39:24 +0200748 return 0;
Jerome Glissed03d8582009-12-14 21:02:09 +0100749 rbo = container_of(bo, struct radeon_bo, tbo);
Jerome Glisse4c788672009-11-20 14:29:23 +0100750 radeon_bo_check_tiling(rbo, 0, 0);
Jerome Glisse0a2d50e2010-04-09 14:39:24 +0200751 rdev = rbo->rdev;
Christian König54409252014-05-05 18:40:12 +0200752 if (bo->mem.mem_type != TTM_PL_VRAM)
753 return 0;
754
755 size = bo->mem.num_pages << PAGE_SHIFT;
756 offset = bo->mem.start << PAGE_SHIFT;
757 if ((offset + size) <= rdev->mc.visible_vram_size)
758 return 0;
759
760 /* hurrah the memory is not visible ! */
761 radeon_ttm_placement_from_domain(rbo, RADEON_GEM_DOMAIN_VRAM);
Christian Königf1217ed2014-08-27 13:16:04 +0200762 rbo->placements[0].lpfn = rdev->mc.visible_vram_size >> PAGE_SHIFT;
Christian König54409252014-05-05 18:40:12 +0200763 r = ttm_bo_validate(bo, &rbo->placement, false, false);
764 if (unlikely(r == -ENOMEM)) {
765 radeon_ttm_placement_from_domain(rbo, RADEON_GEM_DOMAIN_GTT);
766 return ttm_bo_validate(bo, &rbo->placement, false, false);
767 } else if (unlikely(r != 0)) {
768 return r;
Jerome Glisse0a2d50e2010-04-09 14:39:24 +0200769 }
Christian König54409252014-05-05 18:40:12 +0200770
771 offset = bo->mem.start << PAGE_SHIFT;
772 /* this should never happen */
773 if ((offset + size) > rdev->mc.visible_vram_size)
774 return -EINVAL;
775
Jerome Glisse0a2d50e2010-04-09 14:39:24 +0200776 return 0;
Dave Airliee024e112009-06-24 09:48:08 +1000777}
Andi Kleence580fa2011-10-13 16:08:47 -0700778
Dave Airlie83f30d02011-10-27 18:15:10 +0200779int radeon_bo_wait(struct radeon_bo *bo, u32 *mem_type, bool no_wait)
Andi Kleence580fa2011-10-13 16:08:47 -0700780{
781 int r;
782
Michele CURTI12432352014-05-19 11:18:52 -0400783 r = ttm_bo_reserve(&bo->tbo, true, no_wait, false, NULL);
Andi Kleence580fa2011-10-13 16:08:47 -0700784 if (unlikely(r != 0))
785 return r;
Andi Kleence580fa2011-10-13 16:08:47 -0700786 if (mem_type)
787 *mem_type = bo->tbo.mem.mem_type;
Maarten Lankhorstf2c24b82014-04-02 17:14:48 +0200788
789 r = ttm_bo_wait(&bo->tbo, true, true, no_wait);
Andi Kleence580fa2011-10-13 16:08:47 -0700790 ttm_bo_unreserve(&bo->tbo);
791 return r;
792}