blob: 695b4800329a6f4bd62deda69f555d6da2f30f48 [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>
35#include "radeon_drm.h"
36#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
Jerome Glisse4c788672009-11-20 14:29:23 +010049static void radeon_ttm_bo_destroy(struct ttm_buffer_object *tbo)
Jerome Glisse771fe6b2009-06-05 14:42:42 +020050{
Jerome Glisse4c788672009-11-20 14:29:23 +010051 struct radeon_bo *bo;
52
53 bo = container_of(tbo, struct radeon_bo, tbo);
54 mutex_lock(&bo->rdev->gem.mutex);
55 list_del_init(&bo->list);
56 mutex_unlock(&bo->rdev->gem.mutex);
57 radeon_bo_clear_surface_reg(bo);
Daniel Vetter441921d2011-02-18 17:59:16 +010058 drm_gem_object_release(&bo->gem_base);
Jerome Glisse4c788672009-11-20 14:29:23 +010059 kfree(bo);
Jerome Glisse771fe6b2009-06-05 14:42:42 +020060}
61
Jerome Glissed03d8582009-12-14 21:02:09 +010062bool radeon_ttm_bo_is_radeon_bo(struct ttm_buffer_object *bo)
63{
64 if (bo->destroy == &radeon_ttm_bo_destroy)
65 return true;
66 return false;
67}
68
Jerome Glisse312ea8d2009-12-07 15:52:58 +010069void radeon_ttm_placement_from_domain(struct radeon_bo *rbo, u32 domain)
70{
71 u32 c = 0;
72
73 rbo->placement.fpfn = 0;
Jerome Glisse93225b02010-12-03 16:38:19 -050074 rbo->placement.lpfn = 0;
Jerome Glisse312ea8d2009-12-07 15:52:58 +010075 rbo->placement.placement = rbo->placements;
76 rbo->placement.busy_placement = rbo->placements;
77 if (domain & RADEON_GEM_DOMAIN_VRAM)
78 rbo->placements[c++] = TTM_PL_FLAG_WC | TTM_PL_FLAG_UNCACHED |
79 TTM_PL_FLAG_VRAM;
80 if (domain & RADEON_GEM_DOMAIN_GTT)
81 rbo->placements[c++] = TTM_PL_MASK_CACHING | TTM_PL_FLAG_TT;
82 if (domain & RADEON_GEM_DOMAIN_CPU)
83 rbo->placements[c++] = TTM_PL_MASK_CACHING | TTM_PL_FLAG_SYSTEM;
Jerome Glisse9fb03e62009-12-11 15:13:22 +010084 if (!c)
85 rbo->placements[c++] = TTM_PL_MASK_CACHING | TTM_PL_FLAG_SYSTEM;
Jerome Glisse312ea8d2009-12-07 15:52:58 +010086 rbo->placement.num_placement = c;
87 rbo->placement.num_busy_placement = c;
88}
89
Daniel Vetter441921d2011-02-18 17:59:16 +010090int radeon_bo_create(struct radeon_device *rdev,
Alex Deucher268b2512010-11-17 19:00:26 -050091 unsigned long size, int byte_align, bool kernel, u32 domain,
92 struct radeon_bo **bo_ptr)
Jerome Glisse771fe6b2009-06-05 14:42:42 +020093{
Jerome Glisse4c788672009-11-20 14:29:23 +010094 struct radeon_bo *bo;
Jerome Glisse771fe6b2009-06-05 14:42:42 +020095 enum ttm_bo_type type;
Jerome Glisse93225b02010-12-03 16:38:19 -050096 unsigned long page_align = roundup(byte_align, PAGE_SIZE) >> PAGE_SHIFT;
97 unsigned long max_size = 0;
Jerome Glisse57de4ba2011-11-11 15:42:57 -050098 size_t acc_size;
Jerome Glisse771fe6b2009-06-05 14:42:42 +020099 int r;
100
Daniel Vetter441921d2011-02-18 17:59:16 +0100101 size = ALIGN(size, PAGE_SIZE);
102
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200103 if (unlikely(rdev->mman.bdev.dev_mapping == NULL)) {
104 rdev->mman.bdev.dev_mapping = rdev->ddev->dev_mapping;
105 }
106 if (kernel) {
107 type = ttm_bo_type_kernel;
108 } else {
109 type = ttm_bo_type_device;
110 }
Jerome Glisse4c788672009-11-20 14:29:23 +0100111 *bo_ptr = NULL;
Michel Dänzer2b66b502010-11-09 11:50:05 +0100112
Jerome Glisse93225b02010-12-03 16:38:19 -0500113 /* maximun bo size is the minimun btw visible vram and gtt size */
114 max_size = min(rdev->mc.visible_vram_size, rdev->mc.gtt_size);
115 if ((page_align << PAGE_SHIFT) >= max_size) {
116 printk(KERN_WARNING "%s:%d alloc size %ldM bigger than %ldMb limit\n",
117 __func__, __LINE__, page_align >> (20 - PAGE_SHIFT), max_size >> 20);
118 return -ENOMEM;
119 }
120
Jerome Glisse57de4ba2011-11-11 15:42:57 -0500121 acc_size = ttm_bo_dma_acc_size(&rdev->mman.bdev, size,
122 sizeof(struct radeon_bo));
123
Michel Dänzer2b66b502010-11-09 11:50:05 +0100124retry:
Jerome Glisse4c788672009-11-20 14:29:23 +0100125 bo = kzalloc(sizeof(struct radeon_bo), GFP_KERNEL);
126 if (bo == NULL)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200127 return -ENOMEM;
Daniel Vetter441921d2011-02-18 17:59:16 +0100128 r = drm_gem_object_init(rdev->ddev, &bo->gem_base, size);
129 if (unlikely(r)) {
130 kfree(bo);
131 return r;
132 }
Jerome Glisse4c788672009-11-20 14:29:23 +0100133 bo->rdev = rdev;
Daniel Vetter7e4d15d2011-02-18 17:59:17 +0100134 bo->gem_base.driver_private = NULL;
Jerome Glisse4c788672009-11-20 14:29:23 +0100135 bo->surface_reg = -1;
136 INIT_LIST_HEAD(&bo->list);
Jerome Glisse1fb107f2009-12-10 17:16:28 +0100137 radeon_ttm_placement_from_domain(bo, domain);
Thomas Hellstrom5cc6fba2009-12-07 18:36:19 +0100138 /* Kernel allocation are uninterruptible */
Matthew Garrett5876dd22010-04-26 15:52:20 -0400139 mutex_lock(&rdev->vram_mutex);
Jerome Glisse1fb107f2009-12-10 17:16:28 +0100140 r = ttm_bo_init(&rdev->mman.bdev, &bo->tbo, size, type,
Jerome Glisse57de4ba2011-11-11 15:42:57 -0500141 &bo->placement, page_align, 0, !kernel, NULL,
142 acc_size, &radeon_ttm_bo_destroy);
Matthew Garrett5876dd22010-04-26 15:52:20 -0400143 mutex_unlock(&rdev->vram_mutex);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200144 if (unlikely(r != 0)) {
Michel Dänzere376573f2010-07-08 12:43:28 +1000145 if (r != -ERESTARTSYS) {
146 if (domain == RADEON_GEM_DOMAIN_VRAM) {
147 domain |= RADEON_GEM_DOMAIN_GTT;
148 goto retry;
149 }
Thomas Hellstrom5cc6fba2009-12-07 18:36:19 +0100150 dev_err(rdev->dev,
Jerome Glisse1fb107f2009-12-10 17:16:28 +0100151 "object_init failed for (%lu, 0x%08X)\n",
152 size, domain);
Michel Dänzere376573f2010-07-08 12:43:28 +1000153 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200154 return r;
155 }
Jerome Glisse4c788672009-11-20 14:29:23 +0100156 *bo_ptr = bo;
Daniel Vetter441921d2011-02-18 17:59:16 +0100157
Dave Airlie99ee7fa2010-11-23 11:47:49 +1000158 trace_radeon_bo_create(bo);
Daniel Vetter441921d2011-02-18 17:59:16 +0100159
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200160 return 0;
161}
162
Jerome Glisse4c788672009-11-20 14:29:23 +0100163int radeon_bo_kmap(struct radeon_bo *bo, void **ptr)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200164{
Jerome Glisse4c788672009-11-20 14:29:23 +0100165 bool is_iomem;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200166 int r;
167
Jerome Glisse4c788672009-11-20 14:29:23 +0100168 if (bo->kptr) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200169 if (ptr) {
Jerome Glisse4c788672009-11-20 14:29:23 +0100170 *ptr = bo->kptr;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200171 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200172 return 0;
173 }
Jerome Glisse4c788672009-11-20 14:29:23 +0100174 r = ttm_bo_kmap(&bo->tbo, 0, bo->tbo.num_pages, &bo->kmap);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200175 if (r) {
176 return r;
177 }
Jerome Glisse4c788672009-11-20 14:29:23 +0100178 bo->kptr = ttm_kmap_obj_virtual(&bo->kmap, &is_iomem);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200179 if (ptr) {
Jerome Glisse4c788672009-11-20 14:29:23 +0100180 *ptr = bo->kptr;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200181 }
Jerome Glisse4c788672009-11-20 14:29:23 +0100182 radeon_bo_check_tiling(bo, 0, 0);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200183 return 0;
184}
185
Jerome Glisse4c788672009-11-20 14:29:23 +0100186void radeon_bo_kunmap(struct radeon_bo *bo)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200187{
Jerome Glisse4c788672009-11-20 14:29:23 +0100188 if (bo->kptr == NULL)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200189 return;
Jerome Glisse4c788672009-11-20 14:29:23 +0100190 bo->kptr = NULL;
191 radeon_bo_check_tiling(bo, 0, 0);
192 ttm_bo_kunmap(&bo->kmap);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200193}
194
Jerome Glisse4c788672009-11-20 14:29:23 +0100195void radeon_bo_unref(struct radeon_bo **bo)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200196{
Jerome Glisse4c788672009-11-20 14:29:23 +0100197 struct ttm_buffer_object *tbo;
Dave Airlief4b7fb92010-04-29 18:37:59 +1000198 struct radeon_device *rdev;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200199
Jerome Glisse4c788672009-11-20 14:29:23 +0100200 if ((*bo) == NULL)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200201 return;
Dave Airlief4b7fb92010-04-29 18:37:59 +1000202 rdev = (*bo)->rdev;
Jerome Glisse4c788672009-11-20 14:29:23 +0100203 tbo = &((*bo)->tbo);
Dave Airlief4b7fb92010-04-29 18:37:59 +1000204 mutex_lock(&rdev->vram_mutex);
Jerome Glisse4c788672009-11-20 14:29:23 +0100205 ttm_bo_unref(&tbo);
Dave Airlief4b7fb92010-04-29 18:37:59 +1000206 mutex_unlock(&rdev->vram_mutex);
Jerome Glisse4c788672009-11-20 14:29:23 +0100207 if (tbo == NULL)
208 *bo = NULL;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200209}
210
Jerome Glisse4c788672009-11-20 14:29:23 +0100211int radeon_bo_pin(struct radeon_bo *bo, u32 domain, u64 *gpu_addr)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200212{
Jerome Glisse312ea8d2009-12-07 15:52:58 +0100213 int r, i;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200214
Jerome Glisse4c788672009-11-20 14:29:23 +0100215 if (bo->pin_count) {
216 bo->pin_count++;
217 if (gpu_addr)
218 *gpu_addr = radeon_bo_gpu_offset(bo);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200219 return 0;
220 }
Jerome Glisse312ea8d2009-12-07 15:52:58 +0100221 radeon_ttm_placement_from_domain(bo, domain);
Michel Dänzer3ca82da2010-03-26 19:18:55 +0000222 if (domain == RADEON_GEM_DOMAIN_VRAM) {
223 /* force to pin into visible video ram */
224 bo->placement.lpfn = bo->rdev->mc.visible_vram_size >> PAGE_SHIFT;
225 }
Jerome Glisse312ea8d2009-12-07 15:52:58 +0100226 for (i = 0; i < bo->placement.num_placement; i++)
227 bo->placements[i] |= TTM_PL_FLAG_NO_EVICT;
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000228 r = ttm_bo_validate(&bo->tbo, &bo->placement, false, false, false);
Jerome Glisse4c788672009-11-20 14:29:23 +0100229 if (likely(r == 0)) {
230 bo->pin_count = 1;
231 if (gpu_addr != NULL)
232 *gpu_addr = radeon_bo_gpu_offset(bo);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200233 }
Thomas Hellstrom5cc6fba2009-12-07 18:36:19 +0100234 if (unlikely(r != 0))
Jerome Glisse4c788672009-11-20 14:29:23 +0100235 dev_err(bo->rdev->dev, "%p pin failed\n", bo);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200236 return r;
237}
238
Jerome Glisse4c788672009-11-20 14:29:23 +0100239int radeon_bo_unpin(struct radeon_bo *bo)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200240{
Jerome Glisse312ea8d2009-12-07 15:52:58 +0100241 int r, i;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200242
Jerome Glisse4c788672009-11-20 14:29:23 +0100243 if (!bo->pin_count) {
244 dev_warn(bo->rdev->dev, "%p unpin not necessary\n", bo);
245 return 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200246 }
Jerome Glisse4c788672009-11-20 14:29:23 +0100247 bo->pin_count--;
248 if (bo->pin_count)
249 return 0;
Jerome Glisse312ea8d2009-12-07 15:52:58 +0100250 for (i = 0; i < bo->placement.num_placement; i++)
251 bo->placements[i] &= ~TTM_PL_FLAG_NO_EVICT;
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000252 r = ttm_bo_validate(&bo->tbo, &bo->placement, false, false, false);
Thomas Hellstrom5cc6fba2009-12-07 18:36:19 +0100253 if (unlikely(r != 0))
Jerome Glisse4c788672009-11-20 14:29:23 +0100254 dev_err(bo->rdev->dev, "%p validate failed for unpin\n", bo);
Thomas Hellstrom5cc6fba2009-12-07 18:36:19 +0100255 return r;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200256}
257
Jerome Glisse4c788672009-11-20 14:29:23 +0100258int radeon_bo_evict_vram(struct radeon_device *rdev)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200259{
Dave Airlied796d842010-01-25 13:08:08 +1000260 /* late 2.6.33 fix IGP hibernate - we need pm ops to do this correct */
261 if (0 && (rdev->flags & RADEON_IS_IGP)) {
Alex Deucher06b64762010-01-05 11:27:29 -0500262 if (rdev->mc.igp_sideport_enabled == false)
263 /* Useless to evict on IGP chips */
264 return 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200265 }
266 return ttm_bo_evict_mm(&rdev->mman.bdev, TTM_PL_VRAM);
267}
268
Jerome Glisse4c788672009-11-20 14:29:23 +0100269void radeon_bo_force_delete(struct radeon_device *rdev)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200270{
Jerome Glisse4c788672009-11-20 14:29:23 +0100271 struct radeon_bo *bo, *n;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200272
273 if (list_empty(&rdev->gem.objects)) {
274 return;
275 }
Jerome Glisse4c788672009-11-20 14:29:23 +0100276 dev_err(rdev->dev, "Userspace still has active objects !\n");
277 list_for_each_entry_safe(bo, n, &rdev->gem.objects, list) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200278 mutex_lock(&rdev->ddev->struct_mutex);
Jerome Glisse4c788672009-11-20 14:29:23 +0100279 dev_err(rdev->dev, "%p %p %lu %lu force free\n",
Daniel Vetter31c36032011-02-18 17:59:18 +0100280 &bo->gem_base, bo, (unsigned long)bo->gem_base.size,
281 *((unsigned long *)&bo->gem_base.refcount));
Jerome Glisse4c788672009-11-20 14:29:23 +0100282 mutex_lock(&bo->rdev->gem.mutex);
283 list_del_init(&bo->list);
284 mutex_unlock(&bo->rdev->gem.mutex);
Dave Airlie91132d62011-03-01 13:40:06 +1000285 /* this should unref the ttm bo */
Daniel Vetter31c36032011-02-18 17:59:18 +0100286 drm_gem_object_unreference(&bo->gem_base);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200287 mutex_unlock(&rdev->ddev->struct_mutex);
288 }
289}
290
Jerome Glisse4c788672009-11-20 14:29:23 +0100291int radeon_bo_init(struct radeon_device *rdev)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200292{
Jerome Glissea4d68272009-09-11 13:00:43 +0200293 /* Add an MTRR for the VRAM */
294 rdev->mc.vram_mtrr = mtrr_add(rdev->mc.aper_base, rdev->mc.aper_size,
295 MTRR_TYPE_WRCOMB, 1);
296 DRM_INFO("Detected VRAM RAM=%lluM, BAR=%lluM\n",
297 rdev->mc.mc_vram_size >> 20,
298 (unsigned long long)rdev->mc.aper_size >> 20);
299 DRM_INFO("RAM width %dbits %cDR\n",
300 rdev->mc.vram_width, rdev->mc.vram_is_ddr ? 'D' : 'S');
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200301 return radeon_ttm_init(rdev);
302}
303
Jerome Glisse4c788672009-11-20 14:29:23 +0100304void radeon_bo_fini(struct radeon_device *rdev)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200305{
306 radeon_ttm_fini(rdev);
307}
308
Jerome Glisse4c788672009-11-20 14:29:23 +0100309void radeon_bo_list_add_object(struct radeon_bo_list *lobj,
310 struct list_head *head)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200311{
312 if (lobj->wdomain) {
Thomas Hellstrom147666f2010-11-17 12:38:32 +0000313 list_add(&lobj->tv.head, head);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200314 } else {
Thomas Hellstrom147666f2010-11-17 12:38:32 +0000315 list_add_tail(&lobj->tv.head, head);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200316 }
317}
318
Jerome Glisse6cb8e1f2010-02-15 21:36:33 +0100319int radeon_bo_list_validate(struct list_head *head)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200320{
Jerome Glisse4c788672009-11-20 14:29:23 +0100321 struct radeon_bo_list *lobj;
322 struct radeon_bo *bo;
Michel Dänzere376573f2010-07-08 12:43:28 +1000323 u32 domain;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200324 int r;
325
Thomas Hellstrom147666f2010-11-17 12:38:32 +0000326 r = ttm_eu_reserve_buffers(head);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200327 if (unlikely(r != 0)) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200328 return r;
329 }
Thomas Hellstrom147666f2010-11-17 12:38:32 +0000330 list_for_each_entry(lobj, head, tv.head) {
Jerome Glisse4c788672009-11-20 14:29:23 +0100331 bo = lobj->bo;
332 if (!bo->pin_count) {
Michel Dänzere376573f2010-07-08 12:43:28 +1000333 domain = lobj->wdomain ? lobj->wdomain : lobj->rdomain;
334
335 retry:
336 radeon_ttm_placement_from_domain(bo, domain);
Jerome Glisse1fb107f2009-12-10 17:16:28 +0100337 r = ttm_bo_validate(&bo->tbo, &bo->placement,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000338 true, false, false);
Michel Dänzere376573f2010-07-08 12:43:28 +1000339 if (unlikely(r)) {
340 if (r != -ERESTARTSYS && domain == RADEON_GEM_DOMAIN_VRAM) {
341 domain |= RADEON_GEM_DOMAIN_GTT;
342 goto retry;
343 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200344 return r;
Michel Dänzere376573f2010-07-08 12:43:28 +1000345 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200346 }
Jerome Glisse4c788672009-11-20 14:29:23 +0100347 lobj->gpu_offset = radeon_bo_gpu_offset(bo);
348 lobj->tiling_flags = bo->tiling_flags;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200349 }
350 return 0;
351}
352
Jerome Glisse4c788672009-11-20 14:29:23 +0100353int radeon_bo_fbdev_mmap(struct radeon_bo *bo,
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200354 struct vm_area_struct *vma)
355{
Jerome Glisse4c788672009-11-20 14:29:23 +0100356 return ttm_fbdev_mmap(vma, &bo->tbo);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200357}
358
Dave Airlie550e2d92009-12-09 14:15:38 +1000359int radeon_bo_get_surface_reg(struct radeon_bo *bo)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200360{
Jerome Glisse4c788672009-11-20 14:29:23 +0100361 struct radeon_device *rdev = bo->rdev;
Dave Airliee024e112009-06-24 09:48:08 +1000362 struct radeon_surface_reg *reg;
Jerome Glisse4c788672009-11-20 14:29:23 +0100363 struct radeon_bo *old_object;
Dave Airliee024e112009-06-24 09:48:08 +1000364 int steal;
365 int i;
366
Jerome Glisse4c788672009-11-20 14:29:23 +0100367 BUG_ON(!atomic_read(&bo->tbo.reserved));
368
369 if (!bo->tiling_flags)
Dave Airliee024e112009-06-24 09:48:08 +1000370 return 0;
371
Jerome Glisse4c788672009-11-20 14:29:23 +0100372 if (bo->surface_reg >= 0) {
373 reg = &rdev->surface_regs[bo->surface_reg];
374 i = bo->surface_reg;
Dave Airliee024e112009-06-24 09:48:08 +1000375 goto out;
376 }
377
378 steal = -1;
379 for (i = 0; i < RADEON_GEM_MAX_SURFACES; i++) {
380
381 reg = &rdev->surface_regs[i];
Jerome Glisse4c788672009-11-20 14:29:23 +0100382 if (!reg->bo)
Dave Airliee024e112009-06-24 09:48:08 +1000383 break;
384
Jerome Glisse4c788672009-11-20 14:29:23 +0100385 old_object = reg->bo;
Dave Airliee024e112009-06-24 09:48:08 +1000386 if (old_object->pin_count == 0)
387 steal = i;
388 }
389
390 /* if we are all out */
391 if (i == RADEON_GEM_MAX_SURFACES) {
392 if (steal == -1)
393 return -ENOMEM;
394 /* find someone with a surface reg and nuke their BO */
395 reg = &rdev->surface_regs[steal];
Jerome Glisse4c788672009-11-20 14:29:23 +0100396 old_object = reg->bo;
Dave Airliee024e112009-06-24 09:48:08 +1000397 /* blow away the mapping */
398 DRM_DEBUG("stealing surface reg %d from %p\n", steal, old_object);
Jerome Glisse4c788672009-11-20 14:29:23 +0100399 ttm_bo_unmap_virtual(&old_object->tbo);
Dave Airliee024e112009-06-24 09:48:08 +1000400 old_object->surface_reg = -1;
401 i = steal;
402 }
403
Jerome Glisse4c788672009-11-20 14:29:23 +0100404 bo->surface_reg = i;
405 reg->bo = bo;
Dave Airliee024e112009-06-24 09:48:08 +1000406
407out:
Jerome Glisse4c788672009-11-20 14:29:23 +0100408 radeon_set_surface_reg(rdev, i, bo->tiling_flags, bo->pitch,
Ben Skeggsd961db72010-08-05 10:48:18 +1000409 bo->tbo.mem.start << PAGE_SHIFT,
Jerome Glisse4c788672009-11-20 14:29:23 +0100410 bo->tbo.num_pages << PAGE_SHIFT);
Dave Airliee024e112009-06-24 09:48:08 +1000411 return 0;
412}
413
Jerome Glisse4c788672009-11-20 14:29:23 +0100414static void radeon_bo_clear_surface_reg(struct radeon_bo *bo)
Dave Airliee024e112009-06-24 09:48:08 +1000415{
Jerome Glisse4c788672009-11-20 14:29:23 +0100416 struct radeon_device *rdev = bo->rdev;
Dave Airliee024e112009-06-24 09:48:08 +1000417 struct radeon_surface_reg *reg;
418
Jerome Glisse4c788672009-11-20 14:29:23 +0100419 if (bo->surface_reg == -1)
Dave Airliee024e112009-06-24 09:48:08 +1000420 return;
421
Jerome Glisse4c788672009-11-20 14:29:23 +0100422 reg = &rdev->surface_regs[bo->surface_reg];
423 radeon_clear_surface_reg(rdev, bo->surface_reg);
Dave Airliee024e112009-06-24 09:48:08 +1000424
Jerome Glisse4c788672009-11-20 14:29:23 +0100425 reg->bo = NULL;
426 bo->surface_reg = -1;
Dave Airliee024e112009-06-24 09:48:08 +1000427}
428
Jerome Glisse4c788672009-11-20 14:29:23 +0100429int radeon_bo_set_tiling_flags(struct radeon_bo *bo,
430 uint32_t tiling_flags, uint32_t pitch)
Dave Airliee024e112009-06-24 09:48:08 +1000431{
Jerome Glisse4c788672009-11-20 14:29:23 +0100432 int r;
433
434 r = radeon_bo_reserve(bo, false);
435 if (unlikely(r != 0))
436 return r;
437 bo->tiling_flags = tiling_flags;
438 bo->pitch = pitch;
439 radeon_bo_unreserve(bo);
440 return 0;
Dave Airliee024e112009-06-24 09:48:08 +1000441}
442
Jerome Glisse4c788672009-11-20 14:29:23 +0100443void radeon_bo_get_tiling_flags(struct radeon_bo *bo,
444 uint32_t *tiling_flags,
445 uint32_t *pitch)
Dave Airliee024e112009-06-24 09:48:08 +1000446{
Jerome Glisse4c788672009-11-20 14:29:23 +0100447 BUG_ON(!atomic_read(&bo->tbo.reserved));
Dave Airliee024e112009-06-24 09:48:08 +1000448 if (tiling_flags)
Jerome Glisse4c788672009-11-20 14:29:23 +0100449 *tiling_flags = bo->tiling_flags;
Dave Airliee024e112009-06-24 09:48:08 +1000450 if (pitch)
Jerome Glisse4c788672009-11-20 14:29:23 +0100451 *pitch = bo->pitch;
Dave Airliee024e112009-06-24 09:48:08 +1000452}
453
Jerome Glisse4c788672009-11-20 14:29:23 +0100454int radeon_bo_check_tiling(struct radeon_bo *bo, bool has_moved,
455 bool force_drop)
Dave Airliee024e112009-06-24 09:48:08 +1000456{
Jerome Glisse4c788672009-11-20 14:29:23 +0100457 BUG_ON(!atomic_read(&bo->tbo.reserved));
458
459 if (!(bo->tiling_flags & RADEON_TILING_SURFACE))
Dave Airliee024e112009-06-24 09:48:08 +1000460 return 0;
461
462 if (force_drop) {
Jerome Glisse4c788672009-11-20 14:29:23 +0100463 radeon_bo_clear_surface_reg(bo);
Dave Airliee024e112009-06-24 09:48:08 +1000464 return 0;
465 }
466
Jerome Glisse4c788672009-11-20 14:29:23 +0100467 if (bo->tbo.mem.mem_type != TTM_PL_VRAM) {
Dave Airliee024e112009-06-24 09:48:08 +1000468 if (!has_moved)
469 return 0;
470
Jerome Glisse4c788672009-11-20 14:29:23 +0100471 if (bo->surface_reg >= 0)
472 radeon_bo_clear_surface_reg(bo);
Dave Airliee024e112009-06-24 09:48:08 +1000473 return 0;
474 }
475
Jerome Glisse4c788672009-11-20 14:29:23 +0100476 if ((bo->surface_reg >= 0) && !has_moved)
Dave Airliee024e112009-06-24 09:48:08 +1000477 return 0;
478
Jerome Glisse4c788672009-11-20 14:29:23 +0100479 return radeon_bo_get_surface_reg(bo);
Dave Airliee024e112009-06-24 09:48:08 +1000480}
481
482void radeon_bo_move_notify(struct ttm_buffer_object *bo,
Jerome Glissed03d8582009-12-14 21:02:09 +0100483 struct ttm_mem_reg *mem)
Dave Airliee024e112009-06-24 09:48:08 +1000484{
Jerome Glissed03d8582009-12-14 21:02:09 +0100485 struct radeon_bo *rbo;
486 if (!radeon_ttm_bo_is_radeon_bo(bo))
487 return;
488 rbo = container_of(bo, struct radeon_bo, tbo);
Jerome Glisse4c788672009-11-20 14:29:23 +0100489 radeon_bo_check_tiling(rbo, 0, 1);
Dave Airliee024e112009-06-24 09:48:08 +1000490}
491
Jerome Glisse0a2d50e2010-04-09 14:39:24 +0200492int radeon_bo_fault_reserve_notify(struct ttm_buffer_object *bo)
Dave Airliee024e112009-06-24 09:48:08 +1000493{
Jerome Glisse0a2d50e2010-04-09 14:39:24 +0200494 struct radeon_device *rdev;
Jerome Glissed03d8582009-12-14 21:02:09 +0100495 struct radeon_bo *rbo;
Jerome Glisse0a2d50e2010-04-09 14:39:24 +0200496 unsigned long offset, size;
497 int r;
498
Jerome Glissed03d8582009-12-14 21:02:09 +0100499 if (!radeon_ttm_bo_is_radeon_bo(bo))
Jerome Glisse0a2d50e2010-04-09 14:39:24 +0200500 return 0;
Jerome Glissed03d8582009-12-14 21:02:09 +0100501 rbo = container_of(bo, struct radeon_bo, tbo);
Jerome Glisse4c788672009-11-20 14:29:23 +0100502 radeon_bo_check_tiling(rbo, 0, 0);
Jerome Glisse0a2d50e2010-04-09 14:39:24 +0200503 rdev = rbo->rdev;
504 if (bo->mem.mem_type == TTM_PL_VRAM) {
505 size = bo->mem.num_pages << PAGE_SHIFT;
Ben Skeggsd961db72010-08-05 10:48:18 +1000506 offset = bo->mem.start << PAGE_SHIFT;
Jerome Glisse0a2d50e2010-04-09 14:39:24 +0200507 if ((offset + size) > rdev->mc.visible_vram_size) {
508 /* hurrah the memory is not visible ! */
509 radeon_ttm_placement_from_domain(rbo, RADEON_GEM_DOMAIN_VRAM);
510 rbo->placement.lpfn = rdev->mc.visible_vram_size >> PAGE_SHIFT;
511 r = ttm_bo_validate(bo, &rbo->placement, false, true, false);
512 if (unlikely(r != 0))
513 return r;
Ben Skeggsd961db72010-08-05 10:48:18 +1000514 offset = bo->mem.start << PAGE_SHIFT;
Jerome Glisse0a2d50e2010-04-09 14:39:24 +0200515 /* this should not happen */
516 if ((offset + size) > rdev->mc.visible_vram_size)
517 return -EINVAL;
518 }
519 }
520 return 0;
Dave Airliee024e112009-06-24 09:48:08 +1000521}
Andi Kleence580fa2011-10-13 16:08:47 -0700522
Dave Airlie83f30d02011-10-27 18:15:10 +0200523int radeon_bo_wait(struct radeon_bo *bo, u32 *mem_type, bool no_wait)
Andi Kleence580fa2011-10-13 16:08:47 -0700524{
525 int r;
526
527 r = ttm_bo_reserve(&bo->tbo, true, no_wait, false, 0);
528 if (unlikely(r != 0))
529 return r;
530 spin_lock(&bo->tbo.bdev->fence_lock);
531 if (mem_type)
532 *mem_type = bo->tbo.mem.mem_type;
533 if (bo->tbo.sync_obj)
Dave Airlie1717c0e2011-10-27 18:28:37 +0200534 r = ttm_bo_wait(&bo->tbo, true, true, no_wait);
Andi Kleence580fa2011-10-13 16:08:47 -0700535 spin_unlock(&bo->tbo.bdev->fence_lock);
536 ttm_bo_unreserve(&bo->tbo);
537 return r;
538}
539
540
541/**
542 * radeon_bo_reserve - reserve bo
543 * @bo: bo structure
544 * @no_wait: don't sleep while trying to reserve (return -EBUSY)
545 *
546 * Returns:
547 * -EBUSY: buffer is busy and @no_wait is true
548 * -ERESTARTSYS: A wait for the buffer to become unreserved was interrupted by
549 * a signal. Release all buffer reservations and return to user-space.
550 */
551int radeon_bo_reserve(struct radeon_bo *bo, bool no_wait)
552{
553 int r;
554
555 r = ttm_bo_reserve(&bo->tbo, true, no_wait, false, 0);
556 if (unlikely(r != 0)) {
557 if (r != -ERESTARTSYS)
558 dev_err(bo->rdev->dev, "%p reserve failed\n", bo);
559 return r;
560 }
561 return 0;
562}