Merge branch 'ttm_pfn' of git://people.freedesktop.org/~deathsimple/linux into drm...
[linux-2.6-block.git] / drivers / gpu / drm / radeon / radeon_object.c
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>
33 #include <linux/slab.h>
34 #include <drm/drmP.h>
35 #include <drm/radeon_drm.h>
36 #include "radeon.h"
37 #include "radeon_trace.h"
38
39
40 int radeon_ttm_init(struct radeon_device *rdev);
41 void radeon_ttm_fini(struct radeon_device *rdev);
42 static void radeon_bo_clear_surface_reg(struct radeon_bo *bo);
43
44 /*
45  * To exclude mutual BO access we rely on bo_reserve exclusion, as all
46  * function are calling it.
47  */
48
49 static 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
71 static void radeon_ttm_bo_destroy(struct ttm_buffer_object *tbo)
72 {
73         struct radeon_bo *bo;
74
75         bo = container_of(tbo, struct radeon_bo, tbo);
76
77         radeon_update_memory_usage(bo, bo->tbo.mem.mem_type, -1);
78         radeon_mn_unregister(bo);
79
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);
84         WARN_ON(!list_empty(&bo->va));
85         drm_gem_object_release(&bo->gem_base);
86         kfree(bo);
87 }
88
89 bool 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
96 void radeon_ttm_placement_from_domain(struct radeon_bo *rbo, u32 domain)
97 {
98         u32 c = 0, i;
99
100         rbo->placement.placement = rbo->placements;
101         rbo->placement.busy_placement = rbo->placements;
102         if (domain & RADEON_GEM_DOMAIN_VRAM)
103                 rbo->placements[c++].flags = TTM_PL_FLAG_WC |
104                                              TTM_PL_FLAG_UNCACHED |
105                                              TTM_PL_FLAG_VRAM;
106
107         if (domain & RADEON_GEM_DOMAIN_GTT) {
108                 if (rbo->flags & RADEON_GEM_GTT_UC) {
109                         rbo->placements[c++].flags = TTM_PL_FLAG_UNCACHED |
110                                 TTM_PL_FLAG_TT;
111
112                 } else if ((rbo->flags & RADEON_GEM_GTT_WC) ||
113                            (rbo->rdev->flags & RADEON_IS_AGP)) {
114                         rbo->placements[c++].flags = TTM_PL_FLAG_WC |
115                                 TTM_PL_FLAG_UNCACHED |
116                                 TTM_PL_FLAG_TT;
117                 } else {
118                         rbo->placements[c++].flags = TTM_PL_FLAG_CACHED |
119                                                      TTM_PL_FLAG_TT;
120                 }
121         }
122
123         if (domain & RADEON_GEM_DOMAIN_CPU) {
124                 if (rbo->flags & RADEON_GEM_GTT_UC) {
125                         rbo->placements[c++].flags = TTM_PL_FLAG_UNCACHED |
126                                 TTM_PL_FLAG_SYSTEM;
127
128                 } else if ((rbo->flags & RADEON_GEM_GTT_WC) ||
129                     rbo->rdev->flags & RADEON_IS_AGP) {
130                         rbo->placements[c++].flags = TTM_PL_FLAG_WC |
131                                 TTM_PL_FLAG_UNCACHED |
132                                 TTM_PL_FLAG_SYSTEM;
133                 } else {
134                         rbo->placements[c++].flags = TTM_PL_FLAG_CACHED |
135                                                      TTM_PL_FLAG_SYSTEM;
136                 }
137         }
138         if (!c)
139                 rbo->placements[c++].flags = TTM_PL_MASK_CACHING |
140                                              TTM_PL_FLAG_SYSTEM;
141
142         rbo->placement.num_placement = c;
143         rbo->placement.num_busy_placement = c;
144
145         for (i = 0; i < c; ++i) {
146                 rbo->placements[i].fpfn = 0;
147                 rbo->placements[i].lpfn = 0;
148         }
149
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++) {
157                         rbo->placements[i].flags |= TTM_PL_FLAG_TOPDOWN;
158                 }
159         }
160 }
161
162 int radeon_bo_create(struct radeon_device *rdev,
163                      unsigned long size, int byte_align, bool kernel, u32 domain,
164                      u32 flags, struct sg_table *sg, struct radeon_bo **bo_ptr)
165 {
166         struct radeon_bo *bo;
167         enum ttm_bo_type type;
168         unsigned long page_align = roundup(byte_align, PAGE_SIZE) >> PAGE_SHIFT;
169         size_t acc_size;
170         int r;
171
172         size = ALIGN(size, PAGE_SIZE);
173
174         if (kernel) {
175                 type = ttm_bo_type_kernel;
176         } else if (sg) {
177                 type = ttm_bo_type_sg;
178         } else {
179                 type = ttm_bo_type_device;
180         }
181         *bo_ptr = NULL;
182
183         acc_size = ttm_bo_dma_acc_size(&rdev->mman.bdev, size,
184                                        sizeof(struct radeon_bo));
185
186         bo = kzalloc(sizeof(struct radeon_bo), GFP_KERNEL);
187         if (bo == NULL)
188                 return -ENOMEM;
189         r = drm_gem_object_init(rdev->ddev, &bo->gem_base, size);
190         if (unlikely(r)) {
191                 kfree(bo);
192                 return r;
193         }
194         bo->rdev = rdev;
195         bo->surface_reg = -1;
196         INIT_LIST_HEAD(&bo->list);
197         INIT_LIST_HEAD(&bo->va);
198         bo->initial_domain = domain & (RADEON_GEM_DOMAIN_VRAM |
199                                        RADEON_GEM_DOMAIN_GTT |
200                                        RADEON_GEM_DOMAIN_CPU);
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
207         radeon_ttm_placement_from_domain(bo, domain);
208         /* Kernel allocation are uninterruptible */
209         down_read(&rdev->pm.mclk_lock);
210         r = ttm_bo_init(&rdev->mman.bdev, &bo->tbo, size, type,
211                         &bo->placement, page_align, !kernel, NULL,
212                         acc_size, sg, &radeon_ttm_bo_destroy);
213         up_read(&rdev->pm.mclk_lock);
214         if (unlikely(r != 0)) {
215                 return r;
216         }
217         *bo_ptr = bo;
218
219         trace_radeon_bo_create(bo);
220
221         return 0;
222 }
223
224 int radeon_bo_kmap(struct radeon_bo *bo, void **ptr)
225 {
226         bool is_iomem;
227         int r;
228
229         if (bo->kptr) {
230                 if (ptr) {
231                         *ptr = bo->kptr;
232                 }
233                 return 0;
234         }
235         r = ttm_bo_kmap(&bo->tbo, 0, bo->tbo.num_pages, &bo->kmap);
236         if (r) {
237                 return r;
238         }
239         bo->kptr = ttm_kmap_obj_virtual(&bo->kmap, &is_iomem);
240         if (ptr) {
241                 *ptr = bo->kptr;
242         }
243         radeon_bo_check_tiling(bo, 0, 0);
244         return 0;
245 }
246
247 void radeon_bo_kunmap(struct radeon_bo *bo)
248 {
249         if (bo->kptr == NULL)
250                 return;
251         bo->kptr = NULL;
252         radeon_bo_check_tiling(bo, 0, 0);
253         ttm_bo_kunmap(&bo->kmap);
254 }
255
256 struct 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
265 void radeon_bo_unref(struct radeon_bo **bo)
266 {
267         struct ttm_buffer_object *tbo;
268         struct radeon_device *rdev;
269
270         if ((*bo) == NULL)
271                 return;
272         rdev = (*bo)->rdev;
273         tbo = &((*bo)->tbo);
274         ttm_bo_unref(&tbo);
275         if (tbo == NULL)
276                 *bo = NULL;
277 }
278
279 int radeon_bo_pin_restricted(struct radeon_bo *bo, u32 domain, u64 max_offset,
280                              u64 *gpu_addr)
281 {
282         int r, i;
283
284         if (radeon_ttm_tt_has_userptr(bo->tbo.ttm))
285                 return -EPERM;
286
287         if (bo->pin_count) {
288                 bo->pin_count++;
289                 if (gpu_addr)
290                         *gpu_addr = radeon_bo_gpu_offset(bo);
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;
299                         WARN_ON_ONCE(max_offset <
300                                      (radeon_bo_gpu_offset(bo) - domain_start));
301                 }
302
303                 return 0;
304         }
305         radeon_ttm_placement_from_domain(bo, domain);
306         for (i = 0; i < bo->placement.num_placement; i++) {
307                 unsigned lpfn = 0;
308
309                 /* force to pin into visible video ram */
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; /* ??? */
314
315                 if (max_offset)
316                         lpfn = min (lpfn, (unsigned)(max_offset >> PAGE_SHIFT));
317
318                 bo->placements[i].lpfn = lpfn;
319                 bo->placements[i].flags |= TTM_PL_FLAG_NO_EVICT;
320         }
321
322         r = ttm_bo_validate(&bo->tbo, &bo->placement, false, false);
323         if (likely(r == 0)) {
324                 bo->pin_count = 1;
325                 if (gpu_addr != NULL)
326                         *gpu_addr = radeon_bo_gpu_offset(bo);
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 {
332                 dev_err(bo->rdev->dev, "%p pin failed\n", bo);
333         }
334         return r;
335 }
336
337 int 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
342 int radeon_bo_unpin(struct radeon_bo *bo)
343 {
344         int r, i;
345
346         if (!bo->pin_count) {
347                 dev_warn(bo->rdev->dev, "%p unpin not necessary\n", bo);
348                 return 0;
349         }
350         bo->pin_count--;
351         if (bo->pin_count)
352                 return 0;
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         }
357         r = ttm_bo_validate(&bo->tbo, &bo->placement, false, false);
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 {
364                 dev_err(bo->rdev->dev, "%p validate failed for unpin\n", bo);
365         }
366         return r;
367 }
368
369 int radeon_bo_evict_vram(struct radeon_device *rdev)
370 {
371         /* late 2.6.33 fix IGP hibernate - we need pm ops to do this correct */
372         if (0 && (rdev->flags & RADEON_IS_IGP)) {
373                 if (rdev->mc.igp_sideport_enabled == false)
374                         /* Useless to evict on IGP chips */
375                         return 0;
376         }
377         return ttm_bo_evict_mm(&rdev->mman.bdev, TTM_PL_VRAM);
378 }
379
380 void radeon_bo_force_delete(struct radeon_device *rdev)
381 {
382         struct radeon_bo *bo, *n;
383
384         if (list_empty(&rdev->gem.objects)) {
385                 return;
386         }
387         dev_err(rdev->dev, "Userspace still has active objects !\n");
388         list_for_each_entry_safe(bo, n, &rdev->gem.objects, list) {
389                 mutex_lock(&rdev->ddev->struct_mutex);
390                 dev_err(rdev->dev, "%p %p %lu %lu force free\n",
391                         &bo->gem_base, bo, (unsigned long)bo->gem_base.size,
392                         *((unsigned long *)&bo->gem_base.refcount));
393                 mutex_lock(&bo->rdev->gem.mutex);
394                 list_del_init(&bo->list);
395                 mutex_unlock(&bo->rdev->gem.mutex);
396                 /* this should unref the ttm bo */
397                 drm_gem_object_unreference(&bo->gem_base);
398                 mutex_unlock(&rdev->ddev->struct_mutex);
399         }
400 }
401
402 int radeon_bo_init(struct radeon_device *rdev)
403 {
404         /* Add an MTRR for the VRAM */
405         if (!rdev->fastfb_working) {
406                 rdev->mc.vram_mtrr = arch_phys_wc_add(rdev->mc.aper_base,
407                                                       rdev->mc.aper_size);
408         }
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');
414         return radeon_ttm_init(rdev);
415 }
416
417 void radeon_bo_fini(struct radeon_device *rdev)
418 {
419         radeon_ttm_fini(rdev);
420         arch_phys_wc_del(rdev->mc.vram_mtrr);
421 }
422
423 /* Returns how many bytes TTM can move per IB.
424  */
425 static 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
475 int radeon_bo_list_validate(struct radeon_device *rdev,
476                             struct ww_acquire_ctx *ticket,
477                             struct list_head *head, int ring)
478 {
479         struct radeon_cs_reloc *lobj;
480         struct radeon_bo *bo;
481         int r;
482         u64 bytes_moved = 0, initial_bytes_moved;
483         u64 bytes_moved_threshold = radeon_bo_get_threshold_for_moves(rdev);
484
485         r = ttm_eu_reserve_buffers(ticket, head);
486         if (unlikely(r != 0)) {
487                 return r;
488         }
489
490         list_for_each_entry(lobj, head, tv.head) {
491                 bo = lobj->robj;
492                 if (!bo->pin_count) {
493                         u32 domain = lobj->prefered_domains;
494                         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                          */
505                         if ((lobj->allowed_domains & current_domain) != 0 &&
506                             (domain & current_domain) == 0 && /* will be moved */
507                             bytes_moved > bytes_moved_threshold) {
508                                 /* don't move it */
509                                 domain = current_domain;
510                         }
511
512                 retry:
513                         radeon_ttm_placement_from_domain(bo, domain);
514                         if (ring == R600_RING_TYPE_UVD_INDEX)
515                                 radeon_uvd_force_into_uvd_segment(bo);
516
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
522                         if (unlikely(r)) {
523                                 if (r != -ERESTARTSYS &&
524                                     domain != lobj->allowed_domains) {
525                                         domain = lobj->allowed_domains;
526                                         goto retry;
527                                 }
528                                 ttm_eu_backoff_reservation(ticket, head);
529                                 return r;
530                         }
531                 }
532                 lobj->gpu_offset = radeon_bo_gpu_offset(bo);
533                 lobj->tiling_flags = bo->tiling_flags;
534         }
535         return 0;
536 }
537
538 int radeon_bo_fbdev_mmap(struct radeon_bo *bo,
539                              struct vm_area_struct *vma)
540 {
541         return ttm_fbdev_mmap(vma, &bo->tbo);
542 }
543
544 int radeon_bo_get_surface_reg(struct radeon_bo *bo)
545 {
546         struct radeon_device *rdev = bo->rdev;
547         struct radeon_surface_reg *reg;
548         struct radeon_bo *old_object;
549         int steal;
550         int i;
551
552         lockdep_assert_held(&bo->tbo.resv->lock.base);
553
554         if (!bo->tiling_flags)
555                 return 0;
556
557         if (bo->surface_reg >= 0) {
558                 reg = &rdev->surface_regs[bo->surface_reg];
559                 i = bo->surface_reg;
560                 goto out;
561         }
562
563         steal = -1;
564         for (i = 0; i < RADEON_GEM_MAX_SURFACES; i++) {
565
566                 reg = &rdev->surface_regs[i];
567                 if (!reg->bo)
568                         break;
569
570                 old_object = reg->bo;
571                 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];
581                 old_object = reg->bo;
582                 /* blow away the mapping */
583                 DRM_DEBUG("stealing surface reg %d from %p\n", steal, old_object);
584                 ttm_bo_unmap_virtual(&old_object->tbo);
585                 old_object->surface_reg = -1;
586                 i = steal;
587         }
588
589         bo->surface_reg = i;
590         reg->bo = bo;
591
592 out:
593         radeon_set_surface_reg(rdev, i, bo->tiling_flags, bo->pitch,
594                                bo->tbo.mem.start << PAGE_SHIFT,
595                                bo->tbo.num_pages << PAGE_SHIFT);
596         return 0;
597 }
598
599 static void radeon_bo_clear_surface_reg(struct radeon_bo *bo)
600 {
601         struct radeon_device *rdev = bo->rdev;
602         struct radeon_surface_reg *reg;
603
604         if (bo->surface_reg == -1)
605                 return;
606
607         reg = &rdev->surface_regs[bo->surface_reg];
608         radeon_clear_surface_reg(rdev, bo->surface_reg);
609
610         reg->bo = NULL;
611         bo->surface_reg = -1;
612 }
613
614 int radeon_bo_set_tiling_flags(struct radeon_bo *bo,
615                                 uint32_t tiling_flags, uint32_t pitch)
616 {
617         struct radeon_device *rdev = bo->rdev;
618         int r;
619
620         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         }
665         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;
672 }
673
674 void radeon_bo_get_tiling_flags(struct radeon_bo *bo,
675                                 uint32_t *tiling_flags,
676                                 uint32_t *pitch)
677 {
678         lockdep_assert_held(&bo->tbo.resv->lock.base);
679
680         if (tiling_flags)
681                 *tiling_flags = bo->tiling_flags;
682         if (pitch)
683                 *pitch = bo->pitch;
684 }
685
686 int radeon_bo_check_tiling(struct radeon_bo *bo, bool has_moved,
687                                 bool force_drop)
688 {
689         if (!force_drop)
690                 lockdep_assert_held(&bo->tbo.resv->lock.base);
691
692         if (!(bo->tiling_flags & RADEON_TILING_SURFACE))
693                 return 0;
694
695         if (force_drop) {
696                 radeon_bo_clear_surface_reg(bo);
697                 return 0;
698         }
699
700         if (bo->tbo.mem.mem_type != TTM_PL_VRAM) {
701                 if (!has_moved)
702                         return 0;
703
704                 if (bo->surface_reg >= 0)
705                         radeon_bo_clear_surface_reg(bo);
706                 return 0;
707         }
708
709         if ((bo->surface_reg >= 0) && !has_moved)
710                 return 0;
711
712         return radeon_bo_get_surface_reg(bo);
713 }
714
715 void radeon_bo_move_notify(struct ttm_buffer_object *bo,
716                            struct ttm_mem_reg *new_mem)
717 {
718         struct radeon_bo *rbo;
719
720         if (!radeon_ttm_bo_is_radeon_bo(bo))
721                 return;
722
723         rbo = container_of(bo, struct radeon_bo, tbo);
724         radeon_bo_check_tiling(rbo, 0, 1);
725         radeon_vm_bo_invalidate(rbo->rdev, rbo);
726
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);
733 }
734
735 int radeon_bo_fault_reserve_notify(struct ttm_buffer_object *bo)
736 {
737         struct radeon_device *rdev;
738         struct radeon_bo *rbo;
739         unsigned long offset, size;
740         int r;
741
742         if (!radeon_ttm_bo_is_radeon_bo(bo))
743                 return 0;
744         rbo = container_of(bo, struct radeon_bo, tbo);
745         radeon_bo_check_tiling(rbo, 0, 0);
746         rdev = rbo->rdev;
747         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);
757         rbo->placements[0].lpfn = rdev->mc.visible_vram_size >> PAGE_SHIFT;
758         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;
764         }
765
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
771         return 0;
772 }
773
774 int radeon_bo_wait(struct radeon_bo *bo, u32 *mem_type, bool no_wait)
775 {
776         int r;
777
778         r = ttm_bo_reserve(&bo->tbo, true, no_wait, false, NULL);
779         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)
785                 r = ttm_bo_wait(&bo->tbo, true, true, no_wait);
786         spin_unlock(&bo->tbo.bdev->fence_lock);
787         ttm_bo_unreserve(&bo->tbo);
788         return r;
789 }