drm/ttm: flip the switch, and convert to dma_fence
[deliverable/linux.git] / drivers / gpu / drm / radeon / radeon_object.c
CommitLineData
771fe6b9
JG
1/*
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>
5a0e3ad6 33#include <linux/slab.h>
771fe6b9 34#include <drm/drmP.h>
760285e7 35#include <drm/radeon_drm.h>
771fe6b9 36#include "radeon.h"
99ee7fac 37#include "radeon_trace.h"
771fe6b9 38
771fe6b9
JG
39
40int radeon_ttm_init(struct radeon_device *rdev);
41void radeon_ttm_fini(struct radeon_device *rdev);
4c788679 42static void radeon_bo_clear_surface_reg(struct radeon_bo *bo);
771fe6b9
JG
43
44/*
45 * To exclude mutual BO access we rely on bo_reserve exclusion, as all
46 * function are calling it.
47 */
48
67e8e3f9
MO
49static 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
4c788679 71static void radeon_ttm_bo_destroy(struct ttm_buffer_object *tbo)
771fe6b9 72{
4c788679 73 struct radeon_bo *bo;
771fe6b9 74
4c788679 75 bo = container_of(tbo, struct radeon_bo, tbo);
67e8e3f9
MO
76
77 radeon_update_memory_usage(bo, bo->tbo.mem.mem_type, -1);
341cb9e4 78 radeon_mn_unregister(bo);
67e8e3f9 79
4c788679
JG
80 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);
c265f24d 84 WARN_ON(!list_empty(&bo->va));
441921d5 85 drm_gem_object_release(&bo->gem_base);
4c788679 86 kfree(bo);
771fe6b9
JG
87}
88
d03d8589
JG
89bool 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
312ea8da
JG
96void radeon_ttm_placement_from_domain(struct radeon_bo *rbo, u32 domain)
97{
deadcb36 98 u32 c = 0, i;
312ea8da 99
312ea8da 100 rbo->placement.placement = rbo->placements;
20707874 101 rbo->placement.busy_placement = rbo->placements;
312ea8da 102 if (domain & RADEON_GEM_DOMAIN_VRAM)
f1217ed0
CK
103 rbo->placements[c++].flags = TTM_PL_FLAG_WC |
104 TTM_PL_FLAG_UNCACHED |
105 TTM_PL_FLAG_VRAM;
106
0d0b3e74 107 if (domain & RADEON_GEM_DOMAIN_GTT) {
02376d82 108 if (rbo->flags & RADEON_GEM_GTT_UC) {
f1217ed0
CK
109 rbo->placements[c++].flags = TTM_PL_FLAG_UNCACHED |
110 TTM_PL_FLAG_TT;
111
02376d82
MD
112 } else if ((rbo->flags & RADEON_GEM_GTT_WC) ||
113 (rbo->rdev->flags & RADEON_IS_AGP)) {
f1217ed0
CK
114 rbo->placements[c++].flags = TTM_PL_FLAG_WC |
115 TTM_PL_FLAG_UNCACHED |
02376d82 116 TTM_PL_FLAG_TT;
0d0b3e74 117 } else {
f1217ed0
CK
118 rbo->placements[c++].flags = TTM_PL_FLAG_CACHED |
119 TTM_PL_FLAG_TT;
0d0b3e74
JG
120 }
121 }
f1217ed0 122
0d0b3e74 123 if (domain & RADEON_GEM_DOMAIN_CPU) {
02376d82 124 if (rbo->flags & RADEON_GEM_GTT_UC) {
f1217ed0
CK
125 rbo->placements[c++].flags = TTM_PL_FLAG_UNCACHED |
126 TTM_PL_FLAG_SYSTEM;
127
02376d82
MD
128 } else if ((rbo->flags & RADEON_GEM_GTT_WC) ||
129 rbo->rdev->flags & RADEON_IS_AGP) {
f1217ed0
CK
130 rbo->placements[c++].flags = TTM_PL_FLAG_WC |
131 TTM_PL_FLAG_UNCACHED |
02376d82 132 TTM_PL_FLAG_SYSTEM;
0d0b3e74 133 } else {
f1217ed0
CK
134 rbo->placements[c++].flags = TTM_PL_FLAG_CACHED |
135 TTM_PL_FLAG_SYSTEM;
0d0b3e74
JG
136 }
137 }
9fb03e63 138 if (!c)
f1217ed0
CK
139 rbo->placements[c++].flags = TTM_PL_MASK_CACHING |
140 TTM_PL_FLAG_SYSTEM;
141
312ea8da
JG
142 rbo->placement.num_placement = c;
143 rbo->placement.num_busy_placement = c;
deadcb36 144
f1217ed0
CK
145 for (i = 0; i < c; ++i) {
146 rbo->placements[i].fpfn = 0;
147 rbo->placements[i].lpfn = 0;
148 }
149
deadcb36
LK
150 /*
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++) {
f1217ed0 157 rbo->placements[i].flags |= TTM_PL_FLAG_TOPDOWN;
deadcb36
LK
158 }
159 }
312ea8da
JG
160}
161
441921d5 162int radeon_bo_create(struct radeon_device *rdev,
268b2510 163 unsigned long size, int byte_align, bool kernel, u32 domain,
02376d82 164 u32 flags, struct sg_table *sg, struct radeon_bo **bo_ptr)
771fe6b9 165{
4c788679 166 struct radeon_bo *bo;
771fe6b9 167 enum ttm_bo_type type;
93225b0d 168 unsigned long page_align = roundup(byte_align, PAGE_SIZE) >> PAGE_SHIFT;
57de4ba9 169 size_t acc_size;
771fe6b9
JG
170 int r;
171
441921d5
DV
172 size = ALIGN(size, PAGE_SIZE);
173
771fe6b9
JG
174 if (kernel) {
175 type = ttm_bo_type_kernel;
40f5cf99
AD
176 } else if (sg) {
177 type = ttm_bo_type_sg;
771fe6b9
JG
178 } else {
179 type = ttm_bo_type_device;
180 }
4c788679 181 *bo_ptr = NULL;
2b66b50b 182
57de4ba9
JG
183 acc_size = ttm_bo_dma_acc_size(&rdev->mman.bdev, size,
184 sizeof(struct radeon_bo));
185
4c788679
JG
186 bo = kzalloc(sizeof(struct radeon_bo), GFP_KERNEL);
187 if (bo == NULL)
771fe6b9 188 return -ENOMEM;
441921d5
DV
189 r = drm_gem_object_init(rdev->ddev, &bo->gem_base, size);
190 if (unlikely(r)) {
191 kfree(bo);
192 return r;
193 }
4c788679 194 bo->rdev = rdev;
4c788679
JG
195 bo->surface_reg = -1;
196 INIT_LIST_HEAD(&bo->list);
721604a1 197 INIT_LIST_HEAD(&bo->va);
bda72d58
MO
198 bo->initial_domain = domain & (RADEON_GEM_DOMAIN_VRAM |
199 RADEON_GEM_DOMAIN_GTT |
200 RADEON_GEM_DOMAIN_CPU);
02376d82
MD
201
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
1fb107fc 207 radeon_ttm_placement_from_domain(bo, domain);
5cc6fbab 208 /* Kernel allocation are uninterruptible */
db7fce39 209 down_read(&rdev->pm.mclk_lock);
1fb107fc 210 r = ttm_bo_init(&rdev->mman.bdev, &bo->tbo, size, type,
0b91c4a1 211 &bo->placement, page_align, !kernel, NULL,
40f5cf99 212 acc_size, sg, &radeon_ttm_bo_destroy);
db7fce39 213 up_read(&rdev->pm.mclk_lock);
771fe6b9 214 if (unlikely(r != 0)) {
771fe6b9
JG
215 return r;
216 }
4c788679 217 *bo_ptr = bo;
441921d5 218
99ee7fac 219 trace_radeon_bo_create(bo);
441921d5 220
771fe6b9
JG
221 return 0;
222}
223
4c788679 224int radeon_bo_kmap(struct radeon_bo *bo, void **ptr)
771fe6b9 225{
4c788679 226 bool is_iomem;
771fe6b9
JG
227 int r;
228
4c788679 229 if (bo->kptr) {
771fe6b9 230 if (ptr) {
4c788679 231 *ptr = bo->kptr;
771fe6b9 232 }
771fe6b9
JG
233 return 0;
234 }
4c788679 235 r = ttm_bo_kmap(&bo->tbo, 0, bo->tbo.num_pages, &bo->kmap);
771fe6b9
JG
236 if (r) {
237 return r;
238 }
4c788679 239 bo->kptr = ttm_kmap_obj_virtual(&bo->kmap, &is_iomem);
771fe6b9 240 if (ptr) {
4c788679 241 *ptr = bo->kptr;
771fe6b9 242 }
4c788679 243 radeon_bo_check_tiling(bo, 0, 0);
771fe6b9
JG
244 return 0;
245}
246
4c788679 247void radeon_bo_kunmap(struct radeon_bo *bo)
771fe6b9 248{
4c788679 249 if (bo->kptr == NULL)
771fe6b9 250 return;
4c788679
JG
251 bo->kptr = NULL;
252 radeon_bo_check_tiling(bo, 0, 0);
253 ttm_bo_kunmap(&bo->kmap);
771fe6b9
JG
254}
255
512d8afc
CK
256struct 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
4c788679 265void radeon_bo_unref(struct radeon_bo **bo)
771fe6b9 266{
4c788679 267 struct ttm_buffer_object *tbo;
f4b7fb94 268 struct radeon_device *rdev;
771fe6b9 269
4c788679 270 if ((*bo) == NULL)
771fe6b9 271 return;
f4b7fb94 272 rdev = (*bo)->rdev;
4c788679
JG
273 tbo = &((*bo)->tbo);
274 ttm_bo_unref(&tbo);
275 if (tbo == NULL)
276 *bo = NULL;
771fe6b9
JG
277}
278
c4353016
MD
279int radeon_bo_pin_restricted(struct radeon_bo *bo, u32 domain, u64 max_offset,
280 u64 *gpu_addr)
771fe6b9 281{
312ea8da 282 int r, i;
771fe6b9 283
f72a113a
CK
284 if (radeon_ttm_tt_has_userptr(bo->tbo.ttm))
285 return -EPERM;
286
4c788679
JG
287 if (bo->pin_count) {
288 bo->pin_count++;
289 if (gpu_addr)
290 *gpu_addr = radeon_bo_gpu_offset(bo);
d936622c
MD
291
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;
e199fd42
MD
299 WARN_ON_ONCE(max_offset <
300 (radeon_bo_gpu_offset(bo) - domain_start));
d936622c
MD
301 }
302
771fe6b9
JG
303 return 0;
304 }
312ea8da 305 radeon_ttm_placement_from_domain(bo, domain);
f1217ed0
CK
306 for (i = 0; i < bo->placement.num_placement; i++) {
307 unsigned lpfn = 0;
308
3ca82da3 309 /* force to pin into visible video ram */
f1217ed0
CK
310 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; /* ??? */
c4353016 314
f1217ed0
CK
315 if (max_offset)
316 lpfn = min (lpfn, (unsigned)(max_offset >> PAGE_SHIFT));
c4353016 317
f1217ed0
CK
318 bo->placements[i].lpfn = lpfn;
319 bo->placements[i].flags |= TTM_PL_FLAG_NO_EVICT;
c4353016 320 }
f1217ed0 321
97a875cb 322 r = ttm_bo_validate(&bo->tbo, &bo->placement, false, false);
4c788679
JG
323 if (likely(r == 0)) {
324 bo->pin_count = 1;
325 if (gpu_addr != NULL)
326 *gpu_addr = radeon_bo_gpu_offset(bo);
71ecc97e
AD
327 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 {
4c788679 332 dev_err(bo->rdev->dev, "%p pin failed\n", bo);
71ecc97e 333 }
771fe6b9
JG
334 return r;
335}
c4353016
MD
336
337int 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}
771fe6b9 341
4c788679 342int radeon_bo_unpin(struct radeon_bo *bo)
771fe6b9 343{
312ea8da 344 int r, i;
771fe6b9 345
4c788679
JG
346 if (!bo->pin_count) {
347 dev_warn(bo->rdev->dev, "%p unpin not necessary\n", bo);
348 return 0;
771fe6b9 349 }
4c788679
JG
350 bo->pin_count--;
351 if (bo->pin_count)
352 return 0;
f1217ed0
CK
353 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 }
97a875cb 357 r = ttm_bo_validate(&bo->tbo, &bo->placement, false, false);
71ecc97e
AD
358 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 {
4c788679 364 dev_err(bo->rdev->dev, "%p validate failed for unpin\n", bo);
71ecc97e 365 }
5cc6fbab 366 return r;
cefb87ef
DA
367}
368
4c788679 369int radeon_bo_evict_vram(struct radeon_device *rdev)
771fe6b9 370{
d796d844
DA
371 /* late 2.6.33 fix IGP hibernate - we need pm ops to do this correct */
372 if (0 && (rdev->flags & RADEON_IS_IGP)) {
06b6476d
AD
373 if (rdev->mc.igp_sideport_enabled == false)
374 /* Useless to evict on IGP chips */
375 return 0;
771fe6b9
JG
376 }
377 return ttm_bo_evict_mm(&rdev->mman.bdev, TTM_PL_VRAM);
378}
379
4c788679 380void radeon_bo_force_delete(struct radeon_device *rdev)
771fe6b9 381{
4c788679 382 struct radeon_bo *bo, *n;
771fe6b9
JG
383
384 if (list_empty(&rdev->gem.objects)) {
385 return;
386 }
4c788679
JG
387 dev_err(rdev->dev, "Userspace still has active objects !\n");
388 list_for_each_entry_safe(bo, n, &rdev->gem.objects, list) {
771fe6b9 389 mutex_lock(&rdev->ddev->struct_mutex);
4c788679 390 dev_err(rdev->dev, "%p %p %lu %lu force free\n",
31c3603d
DV
391 &bo->gem_base, bo, (unsigned long)bo->gem_base.size,
392 *((unsigned long *)&bo->gem_base.refcount));
4c788679
JG
393 mutex_lock(&bo->rdev->gem.mutex);
394 list_del_init(&bo->list);
395 mutex_unlock(&bo->rdev->gem.mutex);
91132d6b 396 /* this should unref the ttm bo */
31c3603d 397 drm_gem_object_unreference(&bo->gem_base);
771fe6b9
JG
398 mutex_unlock(&rdev->ddev->struct_mutex);
399 }
400}
401
4c788679 402int radeon_bo_init(struct radeon_device *rdev)
771fe6b9 403{
a4d68279 404 /* Add an MTRR for the VRAM */
a0a53aa8 405 if (!rdev->fastfb_working) {
07ebea25
AL
406 rdev->mc.vram_mtrr = arch_phys_wc_add(rdev->mc.aper_base,
407 rdev->mc.aper_size);
a0a53aa8 408 }
a4d68279
JG
409 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');
771fe6b9
JG
414 return radeon_ttm_init(rdev);
415}
416
4c788679 417void radeon_bo_fini(struct radeon_device *rdev)
771fe6b9
JG
418{
419 radeon_ttm_fini(rdev);
07ebea25 420 arch_phys_wc_del(rdev->mc.vram_mtrr);
771fe6b9
JG
421}
422
19dff56a
MO
423/* 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,
ecff665f 477 struct list_head *head, int ring)
771fe6b9 478{
df0af440 479 struct radeon_cs_reloc *lobj;
4c788679 480 struct radeon_bo *bo;
771fe6b9 481 int r;
19dff56a
MO
482 u64 bytes_moved = 0, initial_bytes_moved;
483 u64 bytes_moved_threshold = radeon_bo_get_threshold_for_moves(rdev);
771fe6b9 484
58b4d720 485 r = ttm_eu_reserve_buffers(ticket, head, true);
771fe6b9 486 if (unlikely(r != 0)) {
771fe6b9
JG
487 return r;
488 }
19dff56a 489
147666fb 490 list_for_each_entry(lobj, head, tv.head) {
df0af440 491 bo = lobj->robj;
4c788679 492 if (!bo->pin_count) {
ce6758c8 493 u32 domain = lobj->prefered_domains;
3852752c 494 u32 allowed = lobj->allowed_domains;
19dff56a
MO
495 u32 current_domain =
496 radeon_mem_type_to_domain(bo->tbo.mem.mem_type);
497
498 /* Check if this buffer will be moved and don't move it
499 * if we have moved too many buffers for this IB already.
500 *
501 * Note that this allows moving at least one buffer of
502 * any size, because it doesn't take the current "bo"
503 * into account. We don't want to disallow buffer moves
504 * completely.
505 */
3852752c 506 if ((allowed & current_domain) != 0 &&
19dff56a
MO
507 (domain & current_domain) == 0 && /* will be moved */
508 bytes_moved > bytes_moved_threshold) {
509 /* don't move it */
510 domain = current_domain;
511 }
512
20707874
AD
513 retry:
514 radeon_ttm_placement_from_domain(bo, domain);
f2ba57b5 515 if (ring == R600_RING_TYPE_UVD_INDEX)
3852752c 516 radeon_uvd_force_into_uvd_segment(bo, allowed);
19dff56a
MO
517
518 initial_bytes_moved = atomic64_read(&rdev->num_bytes_moved);
519 r = ttm_bo_validate(&bo->tbo, &bo->placement, true, false);
520 bytes_moved += atomic64_read(&rdev->num_bytes_moved) -
521 initial_bytes_moved;
522
e376573f 523 if (unlikely(r)) {
ce6758c8
CK
524 if (r != -ERESTARTSYS &&
525 domain != lobj->allowed_domains) {
526 domain = lobj->allowed_domains;
20707874
AD
527 goto retry;
528 }
1b6e5fd5 529 ttm_eu_backoff_reservation(ticket, head);
771fe6b9 530 return r;
e376573f 531 }
771fe6b9 532 }
4c788679
JG
533 lobj->gpu_offset = radeon_bo_gpu_offset(bo);
534 lobj->tiling_flags = bo->tiling_flags;
771fe6b9
JG
535 }
536 return 0;
537}
538
4c788679 539int radeon_bo_fbdev_mmap(struct radeon_bo *bo,
771fe6b9
JG
540 struct vm_area_struct *vma)
541{
4c788679 542 return ttm_fbdev_mmap(vma, &bo->tbo);
771fe6b9
JG
543}
544
550e2d92 545int radeon_bo_get_surface_reg(struct radeon_bo *bo)
771fe6b9 546{
4c788679 547 struct radeon_device *rdev = bo->rdev;
e024e110 548 struct radeon_surface_reg *reg;
4c788679 549 struct radeon_bo *old_object;
e024e110
DA
550 int steal;
551 int i;
552
977c38d5 553 lockdep_assert_held(&bo->tbo.resv->lock.base);
4c788679
JG
554
555 if (!bo->tiling_flags)
e024e110
DA
556 return 0;
557
4c788679
JG
558 if (bo->surface_reg >= 0) {
559 reg = &rdev->surface_regs[bo->surface_reg];
560 i = bo->surface_reg;
e024e110
DA
561 goto out;
562 }
563
564 steal = -1;
565 for (i = 0; i < RADEON_GEM_MAX_SURFACES; i++) {
566
567 reg = &rdev->surface_regs[i];
4c788679 568 if (!reg->bo)
e024e110
DA
569 break;
570
4c788679 571 old_object = reg->bo;
e024e110
DA
572 if (old_object->pin_count == 0)
573 steal = i;
574 }
575
576 /* if we are all out */
577 if (i == RADEON_GEM_MAX_SURFACES) {
578 if (steal == -1)
579 return -ENOMEM;
580 /* find someone with a surface reg and nuke their BO */
581 reg = &rdev->surface_regs[steal];
4c788679 582 old_object = reg->bo;
e024e110
DA
583 /* blow away the mapping */
584 DRM_DEBUG("stealing surface reg %d from %p\n", steal, old_object);
4c788679 585 ttm_bo_unmap_virtual(&old_object->tbo);
e024e110
DA
586 old_object->surface_reg = -1;
587 i = steal;
588 }
589
4c788679
JG
590 bo->surface_reg = i;
591 reg->bo = bo;
e024e110
DA
592
593out:
4c788679 594 radeon_set_surface_reg(rdev, i, bo->tiling_flags, bo->pitch,
d961db75 595 bo->tbo.mem.start << PAGE_SHIFT,
4c788679 596 bo->tbo.num_pages << PAGE_SHIFT);
e024e110
DA
597 return 0;
598}
599
4c788679 600static void radeon_bo_clear_surface_reg(struct radeon_bo *bo)
e024e110 601{
4c788679 602 struct radeon_device *rdev = bo->rdev;
e024e110
DA
603 struct radeon_surface_reg *reg;
604
4c788679 605 if (bo->surface_reg == -1)
e024e110
DA
606 return;
607
4c788679
JG
608 reg = &rdev->surface_regs[bo->surface_reg];
609 radeon_clear_surface_reg(rdev, bo->surface_reg);
e024e110 610
4c788679
JG
611 reg->bo = NULL;
612 bo->surface_reg = -1;
e024e110
DA
613}
614
4c788679
JG
615int radeon_bo_set_tiling_flags(struct radeon_bo *bo,
616 uint32_t tiling_flags, uint32_t pitch)
e024e110 617{
285484e2 618 struct radeon_device *rdev = bo->rdev;
4c788679
JG
619 int r;
620
285484e2
JG
621 if (rdev->family >= CHIP_CEDAR) {
622 unsigned bankw, bankh, mtaspect, tilesplit, stilesplit;
623
624 bankw = (tiling_flags >> RADEON_TILING_EG_BANKW_SHIFT) & RADEON_TILING_EG_BANKW_MASK;
625 bankh = (tiling_flags >> RADEON_TILING_EG_BANKH_SHIFT) & RADEON_TILING_EG_BANKH_MASK;
626 mtaspect = (tiling_flags >> RADEON_TILING_EG_MACRO_TILE_ASPECT_SHIFT) & RADEON_TILING_EG_MACRO_TILE_ASPECT_MASK;
627 tilesplit = (tiling_flags >> RADEON_TILING_EG_TILE_SPLIT_SHIFT) & RADEON_TILING_EG_TILE_SPLIT_MASK;
628 stilesplit = (tiling_flags >> RADEON_TILING_EG_STENCIL_TILE_SPLIT_SHIFT) & RADEON_TILING_EG_STENCIL_TILE_SPLIT_MASK;
629 switch (bankw) {
630 case 0:
631 case 1:
632 case 2:
633 case 4:
634 case 8:
635 break;
636 default:
637 return -EINVAL;
638 }
639 switch (bankh) {
640 case 0:
641 case 1:
642 case 2:
643 case 4:
644 case 8:
645 break;
646 default:
647 return -EINVAL;
648 }
649 switch (mtaspect) {
650 case 0:
651 case 1:
652 case 2:
653 case 4:
654 case 8:
655 break;
656 default:
657 return -EINVAL;
658 }
659 if (tilesplit > 6) {
660 return -EINVAL;
661 }
662 if (stilesplit > 6) {
663 return -EINVAL;
664 }
665 }
4c788679
JG
666 r = radeon_bo_reserve(bo, false);
667 if (unlikely(r != 0))
668 return r;
669 bo->tiling_flags = tiling_flags;
670 bo->pitch = pitch;
671 radeon_bo_unreserve(bo);
672 return 0;
e024e110
DA
673}
674
4c788679
JG
675void radeon_bo_get_tiling_flags(struct radeon_bo *bo,
676 uint32_t *tiling_flags,
677 uint32_t *pitch)
e024e110 678{
977c38d5
ML
679 lockdep_assert_held(&bo->tbo.resv->lock.base);
680
e024e110 681 if (tiling_flags)
4c788679 682 *tiling_flags = bo->tiling_flags;
e024e110 683 if (pitch)
4c788679 684 *pitch = bo->pitch;
e024e110
DA
685}
686
4c788679
JG
687int radeon_bo_check_tiling(struct radeon_bo *bo, bool has_moved,
688 bool force_drop)
e024e110 689{
977c38d5
ML
690 if (!force_drop)
691 lockdep_assert_held(&bo->tbo.resv->lock.base);
4c788679
JG
692
693 if (!(bo->tiling_flags & RADEON_TILING_SURFACE))
e024e110
DA
694 return 0;
695
696 if (force_drop) {
4c788679 697 radeon_bo_clear_surface_reg(bo);
e024e110
DA
698 return 0;
699 }
700
4c788679 701 if (bo->tbo.mem.mem_type != TTM_PL_VRAM) {
e024e110
DA
702 if (!has_moved)
703 return 0;
704
4c788679
JG
705 if (bo->surface_reg >= 0)
706 radeon_bo_clear_surface_reg(bo);
e024e110
DA
707 return 0;
708 }
709
4c788679 710 if ((bo->surface_reg >= 0) && !has_moved)
e024e110
DA
711 return 0;
712
4c788679 713 return radeon_bo_get_surface_reg(bo);
e024e110
DA
714}
715
716void radeon_bo_move_notify(struct ttm_buffer_object *bo,
67e8e3f9 717 struct ttm_mem_reg *new_mem)
e024e110 718{
d03d8589 719 struct radeon_bo *rbo;
67e8e3f9 720
d03d8589
JG
721 if (!radeon_ttm_bo_is_radeon_bo(bo))
722 return;
67e8e3f9 723
d03d8589 724 rbo = container_of(bo, struct radeon_bo, tbo);
4c788679 725 radeon_bo_check_tiling(rbo, 0, 1);
721604a1 726 radeon_vm_bo_invalidate(rbo->rdev, rbo);
67e8e3f9
MO
727
728 /* update statistics */
729 if (!new_mem)
730 return;
731
732 radeon_update_memory_usage(rbo, bo->mem.mem_type, -1);
733 radeon_update_memory_usage(rbo, new_mem->mem_type, 1);
e024e110
DA
734}
735
0a2d50e3 736int radeon_bo_fault_reserve_notify(struct ttm_buffer_object *bo)
e024e110 737{
0a2d50e3 738 struct radeon_device *rdev;
d03d8589 739 struct radeon_bo *rbo;
0a2d50e3
JG
740 unsigned long offset, size;
741 int r;
742
d03d8589 743 if (!radeon_ttm_bo_is_radeon_bo(bo))
0a2d50e3 744 return 0;
d03d8589 745 rbo = container_of(bo, struct radeon_bo, tbo);
4c788679 746 radeon_bo_check_tiling(rbo, 0, 0);
0a2d50e3 747 rdev = rbo->rdev;
54409259
CK
748 if (bo->mem.mem_type != TTM_PL_VRAM)
749 return 0;
750
751 size = bo->mem.num_pages << PAGE_SHIFT;
752 offset = bo->mem.start << PAGE_SHIFT;
753 if ((offset + size) <= rdev->mc.visible_vram_size)
754 return 0;
755
756 /* hurrah the memory is not visible ! */
757 radeon_ttm_placement_from_domain(rbo, RADEON_GEM_DOMAIN_VRAM);
f1217ed0 758 rbo->placements[0].lpfn = rdev->mc.visible_vram_size >> PAGE_SHIFT;
54409259
CK
759 r = ttm_bo_validate(bo, &rbo->placement, false, false);
760 if (unlikely(r == -ENOMEM)) {
761 radeon_ttm_placement_from_domain(rbo, RADEON_GEM_DOMAIN_GTT);
762 return ttm_bo_validate(bo, &rbo->placement, false, false);
763 } else if (unlikely(r != 0)) {
764 return r;
0a2d50e3 765 }
54409259
CK
766
767 offset = bo->mem.start << PAGE_SHIFT;
768 /* this should never happen */
769 if ((offset + size) > rdev->mc.visible_vram_size)
770 return -EINVAL;
771
0a2d50e3 772 return 0;
e024e110 773}
ce580fab 774
83f30d0e 775int radeon_bo_wait(struct radeon_bo *bo, u32 *mem_type, bool no_wait)
ce580fab
AK
776{
777 int r;
778
12432354 779 r = ttm_bo_reserve(&bo->tbo, true, no_wait, false, NULL);
ce580fab
AK
780 if (unlikely(r != 0))
781 return r;
ce580fab
AK
782 if (mem_type)
783 *mem_type = bo->tbo.mem.mem_type;
f2c24b83
ML
784
785 r = ttm_bo_wait(&bo->tbo, true, true, no_wait);
ce580fab
AK
786 ttm_bo_unreserve(&bo->tbo);
787 return r;
788}
This page took 0.436243 seconds and 5 git commands to generate.