blob: 1c851521f458dfd515033818a2046e657272e4c0 [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 Glisse771fe6b2009-06-05 14:42:42 +020098 int r;
99
Daniel Vetter441921d2011-02-18 17:59:16 +0100100 size = ALIGN(size, PAGE_SIZE);
101
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200102 if (unlikely(rdev->mman.bdev.dev_mapping == NULL)) {
103 rdev->mman.bdev.dev_mapping = rdev->ddev->dev_mapping;
104 }
105 if (kernel) {
106 type = ttm_bo_type_kernel;
107 } else {
108 type = ttm_bo_type_device;
109 }
Jerome Glisse4c788672009-11-20 14:29:23 +0100110 *bo_ptr = NULL;
Michel Dänzer2b66b502010-11-09 11:50:05 +0100111
Jerome Glisse93225b02010-12-03 16:38:19 -0500112 /* maximun bo size is the minimun btw visible vram and gtt size */
113 max_size = min(rdev->mc.visible_vram_size, rdev->mc.gtt_size);
114 if ((page_align << PAGE_SHIFT) >= max_size) {
115 printk(KERN_WARNING "%s:%d alloc size %ldM bigger than %ldMb limit\n",
116 __func__, __LINE__, page_align >> (20 - PAGE_SHIFT), max_size >> 20);
117 return -ENOMEM;
118 }
119
Michel Dänzer2b66b502010-11-09 11:50:05 +0100120retry:
Jerome Glisse4c788672009-11-20 14:29:23 +0100121 bo = kzalloc(sizeof(struct radeon_bo), GFP_KERNEL);
122 if (bo == NULL)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200123 return -ENOMEM;
Daniel Vetter441921d2011-02-18 17:59:16 +0100124 r = drm_gem_object_init(rdev->ddev, &bo->gem_base, size);
125 if (unlikely(r)) {
126 kfree(bo);
127 return r;
128 }
Jerome Glisse4c788672009-11-20 14:29:23 +0100129 bo->rdev = rdev;
Daniel Vetter7e4d15d2011-02-18 17:59:17 +0100130 bo->gem_base.driver_private = NULL;
Jerome Glisse4c788672009-11-20 14:29:23 +0100131 bo->surface_reg = -1;
132 INIT_LIST_HEAD(&bo->list);
Jerome Glisse1fb107f2009-12-10 17:16:28 +0100133 radeon_ttm_placement_from_domain(bo, domain);
Thomas Hellstrom5cc6fba2009-12-07 18:36:19 +0100134 /* Kernel allocation are uninterruptible */
Matthew Garrett5876dd22010-04-26 15:52:20 -0400135 mutex_lock(&rdev->vram_mutex);
Jerome Glisse1fb107f2009-12-10 17:16:28 +0100136 r = ttm_bo_init(&rdev->mman.bdev, &bo->tbo, size, type,
Alex Deucher268b2512010-11-17 19:00:26 -0500137 &bo->placement, page_align, 0, !kernel, NULL, size,
Jerome Glisse1fb107f2009-12-10 17:16:28 +0100138 &radeon_ttm_bo_destroy);
Matthew Garrett5876dd22010-04-26 15:52:20 -0400139 mutex_unlock(&rdev->vram_mutex);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200140 if (unlikely(r != 0)) {
Michel Dänzere3765732010-07-08 12:43:28 +1000141 if (r != -ERESTARTSYS) {
142 if (domain == RADEON_GEM_DOMAIN_VRAM) {
143 domain |= RADEON_GEM_DOMAIN_GTT;
144 goto retry;
145 }
Thomas Hellstrom5cc6fba2009-12-07 18:36:19 +0100146 dev_err(rdev->dev,
Jerome Glisse1fb107f2009-12-10 17:16:28 +0100147 "object_init failed for (%lu, 0x%08X)\n",
148 size, domain);
Michel Dänzere3765732010-07-08 12:43:28 +1000149 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200150 return r;
151 }
Jerome Glisse4c788672009-11-20 14:29:23 +0100152 *bo_ptr = bo;
Daniel Vetter441921d2011-02-18 17:59:16 +0100153
Dave Airlie99ee7fa2010-11-23 11:47:49 +1000154 trace_radeon_bo_create(bo);
Daniel Vetter441921d2011-02-18 17:59:16 +0100155
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200156 return 0;
157}
158
Jerome Glisse4c788672009-11-20 14:29:23 +0100159int radeon_bo_kmap(struct radeon_bo *bo, void **ptr)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200160{
Jerome Glisse4c788672009-11-20 14:29:23 +0100161 bool is_iomem;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200162 int r;
163
Jerome Glisse4c788672009-11-20 14:29:23 +0100164 if (bo->kptr) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200165 if (ptr) {
Jerome Glisse4c788672009-11-20 14:29:23 +0100166 *ptr = bo->kptr;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200167 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200168 return 0;
169 }
Jerome Glisse4c788672009-11-20 14:29:23 +0100170 r = ttm_bo_kmap(&bo->tbo, 0, bo->tbo.num_pages, &bo->kmap);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200171 if (r) {
172 return r;
173 }
Jerome Glisse4c788672009-11-20 14:29:23 +0100174 bo->kptr = ttm_kmap_obj_virtual(&bo->kmap, &is_iomem);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200175 if (ptr) {
Jerome Glisse4c788672009-11-20 14:29:23 +0100176 *ptr = bo->kptr;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200177 }
Jerome Glisse4c788672009-11-20 14:29:23 +0100178 radeon_bo_check_tiling(bo, 0, 0);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200179 return 0;
180}
181
Jerome Glisse4c788672009-11-20 14:29:23 +0100182void radeon_bo_kunmap(struct radeon_bo *bo)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200183{
Jerome Glisse4c788672009-11-20 14:29:23 +0100184 if (bo->kptr == NULL)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200185 return;
Jerome Glisse4c788672009-11-20 14:29:23 +0100186 bo->kptr = NULL;
187 radeon_bo_check_tiling(bo, 0, 0);
188 ttm_bo_kunmap(&bo->kmap);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200189}
190
Jerome Glisse4c788672009-11-20 14:29:23 +0100191void radeon_bo_unref(struct radeon_bo **bo)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200192{
Jerome Glisse4c788672009-11-20 14:29:23 +0100193 struct ttm_buffer_object *tbo;
Dave Airlief4b7fb92010-04-29 18:37:59 +1000194 struct radeon_device *rdev;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200195
Jerome Glisse4c788672009-11-20 14:29:23 +0100196 if ((*bo) == NULL)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200197 return;
Dave Airlief4b7fb92010-04-29 18:37:59 +1000198 rdev = (*bo)->rdev;
Jerome Glisse4c788672009-11-20 14:29:23 +0100199 tbo = &((*bo)->tbo);
Dave Airlief4b7fb92010-04-29 18:37:59 +1000200 mutex_lock(&rdev->vram_mutex);
Jerome Glisse4c788672009-11-20 14:29:23 +0100201 ttm_bo_unref(&tbo);
Dave Airlief4b7fb92010-04-29 18:37:59 +1000202 mutex_unlock(&rdev->vram_mutex);
Jerome Glisse4c788672009-11-20 14:29:23 +0100203 if (tbo == NULL)
204 *bo = NULL;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200205}
206
Jerome Glisse4c788672009-11-20 14:29:23 +0100207int radeon_bo_pin(struct radeon_bo *bo, u32 domain, u64 *gpu_addr)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200208{
Jerome Glisse312ea8d2009-12-07 15:52:58 +0100209 int r, i;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200210
Jerome Glisse4c788672009-11-20 14:29:23 +0100211 if (bo->pin_count) {
212 bo->pin_count++;
213 if (gpu_addr)
214 *gpu_addr = radeon_bo_gpu_offset(bo);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200215 return 0;
216 }
Jerome Glisse312ea8d2009-12-07 15:52:58 +0100217 radeon_ttm_placement_from_domain(bo, domain);
Michel Dänzer3ca82da2010-03-26 19:18:55 +0000218 if (domain == RADEON_GEM_DOMAIN_VRAM) {
219 /* force to pin into visible video ram */
220 bo->placement.lpfn = bo->rdev->mc.visible_vram_size >> PAGE_SHIFT;
221 }
Jerome Glisse312ea8d2009-12-07 15:52:58 +0100222 for (i = 0; i < bo->placement.num_placement; i++)
223 bo->placements[i] |= TTM_PL_FLAG_NO_EVICT;
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000224 r = ttm_bo_validate(&bo->tbo, &bo->placement, false, false, false);
Jerome Glisse4c788672009-11-20 14:29:23 +0100225 if (likely(r == 0)) {
226 bo->pin_count = 1;
227 if (gpu_addr != NULL)
228 *gpu_addr = radeon_bo_gpu_offset(bo);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200229 }
Thomas Hellstrom5cc6fba2009-12-07 18:36:19 +0100230 if (unlikely(r != 0))
Jerome Glisse4c788672009-11-20 14:29:23 +0100231 dev_err(bo->rdev->dev, "%p pin failed\n", bo);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200232 return r;
233}
234
Jerome Glisse4c788672009-11-20 14:29:23 +0100235int radeon_bo_unpin(struct radeon_bo *bo)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200236{
Jerome Glisse312ea8d2009-12-07 15:52:58 +0100237 int r, i;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200238
Jerome Glisse4c788672009-11-20 14:29:23 +0100239 if (!bo->pin_count) {
240 dev_warn(bo->rdev->dev, "%p unpin not necessary\n", bo);
241 return 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200242 }
Jerome Glisse4c788672009-11-20 14:29:23 +0100243 bo->pin_count--;
244 if (bo->pin_count)
245 return 0;
Jerome Glisse312ea8d2009-12-07 15:52:58 +0100246 for (i = 0; i < bo->placement.num_placement; i++)
247 bo->placements[i] &= ~TTM_PL_FLAG_NO_EVICT;
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000248 r = ttm_bo_validate(&bo->tbo, &bo->placement, false, false, false);
Thomas Hellstrom5cc6fba2009-12-07 18:36:19 +0100249 if (unlikely(r != 0))
Jerome Glisse4c788672009-11-20 14:29:23 +0100250 dev_err(bo->rdev->dev, "%p validate failed for unpin\n", bo);
Thomas Hellstrom5cc6fba2009-12-07 18:36:19 +0100251 return r;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200252}
253
Jerome Glisse4c788672009-11-20 14:29:23 +0100254int radeon_bo_evict_vram(struct radeon_device *rdev)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200255{
Dave Airlied796d842010-01-25 13:08:08 +1000256 /* late 2.6.33 fix IGP hibernate - we need pm ops to do this correct */
257 if (0 && (rdev->flags & RADEON_IS_IGP)) {
Alex Deucher06b64762010-01-05 11:27:29 -0500258 if (rdev->mc.igp_sideport_enabled == false)
259 /* Useless to evict on IGP chips */
260 return 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200261 }
262 return ttm_bo_evict_mm(&rdev->mman.bdev, TTM_PL_VRAM);
263}
264
Jerome Glisse4c788672009-11-20 14:29:23 +0100265void radeon_bo_force_delete(struct radeon_device *rdev)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200266{
Jerome Glisse4c788672009-11-20 14:29:23 +0100267 struct radeon_bo *bo, *n;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200268
269 if (list_empty(&rdev->gem.objects)) {
270 return;
271 }
Jerome Glisse4c788672009-11-20 14:29:23 +0100272 dev_err(rdev->dev, "Userspace still has active objects !\n");
273 list_for_each_entry_safe(bo, n, &rdev->gem.objects, list) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200274 mutex_lock(&rdev->ddev->struct_mutex);
Jerome Glisse4c788672009-11-20 14:29:23 +0100275 dev_err(rdev->dev, "%p %p %lu %lu force free\n",
Daniel Vetter31c36032011-02-18 17:59:18 +0100276 &bo->gem_base, bo, (unsigned long)bo->gem_base.size,
277 *((unsigned long *)&bo->gem_base.refcount));
Jerome Glisse4c788672009-11-20 14:29:23 +0100278 mutex_lock(&bo->rdev->gem.mutex);
279 list_del_init(&bo->list);
280 mutex_unlock(&bo->rdev->gem.mutex);
Dave Airlie91132d62011-03-01 13:40:06 +1000281 /* this should unref the ttm bo */
Daniel Vetter31c36032011-02-18 17:59:18 +0100282 drm_gem_object_unreference(&bo->gem_base);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200283 mutex_unlock(&rdev->ddev->struct_mutex);
284 }
285}
286
Jerome Glisse4c788672009-11-20 14:29:23 +0100287int radeon_bo_init(struct radeon_device *rdev)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200288{
Jerome Glissea4d68272009-09-11 13:00:43 +0200289 /* Add an MTRR for the VRAM */
290 rdev->mc.vram_mtrr = mtrr_add(rdev->mc.aper_base, rdev->mc.aper_size,
291 MTRR_TYPE_WRCOMB, 1);
292 DRM_INFO("Detected VRAM RAM=%lluM, BAR=%lluM\n",
293 rdev->mc.mc_vram_size >> 20,
294 (unsigned long long)rdev->mc.aper_size >> 20);
295 DRM_INFO("RAM width %dbits %cDR\n",
296 rdev->mc.vram_width, rdev->mc.vram_is_ddr ? 'D' : 'S');
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200297 return radeon_ttm_init(rdev);
298}
299
Jerome Glisse4c788672009-11-20 14:29:23 +0100300void radeon_bo_fini(struct radeon_device *rdev)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200301{
302 radeon_ttm_fini(rdev);
303}
304
Jerome Glisse4c788672009-11-20 14:29:23 +0100305void radeon_bo_list_add_object(struct radeon_bo_list *lobj,
306 struct list_head *head)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200307{
308 if (lobj->wdomain) {
Thomas Hellstrom147666f2010-11-17 12:38:32 +0000309 list_add(&lobj->tv.head, head);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200310 } else {
Thomas Hellstrom147666f2010-11-17 12:38:32 +0000311 list_add_tail(&lobj->tv.head, head);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200312 }
313}
314
Jerome Glisse6cb8e1f2010-02-15 21:36:33 +0100315int radeon_bo_list_validate(struct list_head *head)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200316{
Jerome Glisse4c788672009-11-20 14:29:23 +0100317 struct radeon_bo_list *lobj;
318 struct radeon_bo *bo;
Michel Dänzere3765732010-07-08 12:43:28 +1000319 u32 domain;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200320 int r;
321
Thomas Hellstrom147666f2010-11-17 12:38:32 +0000322 r = ttm_eu_reserve_buffers(head);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200323 if (unlikely(r != 0)) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200324 return r;
325 }
Thomas Hellstrom147666f2010-11-17 12:38:32 +0000326 list_for_each_entry(lobj, head, tv.head) {
Jerome Glisse4c788672009-11-20 14:29:23 +0100327 bo = lobj->bo;
328 if (!bo->pin_count) {
Michel Dänzere3765732010-07-08 12:43:28 +1000329 domain = lobj->wdomain ? lobj->wdomain : lobj->rdomain;
330
331 retry:
332 radeon_ttm_placement_from_domain(bo, domain);
Jerome Glisse1fb107f2009-12-10 17:16:28 +0100333 r = ttm_bo_validate(&bo->tbo, &bo->placement,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000334 true, false, false);
Michel Dänzere3765732010-07-08 12:43:28 +1000335 if (unlikely(r)) {
336 if (r != -ERESTARTSYS && domain == RADEON_GEM_DOMAIN_VRAM) {
337 domain |= RADEON_GEM_DOMAIN_GTT;
338 goto retry;
339 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200340 return r;
Michel Dänzere3765732010-07-08 12:43:28 +1000341 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200342 }
Jerome Glisse4c788672009-11-20 14:29:23 +0100343 lobj->gpu_offset = radeon_bo_gpu_offset(bo);
344 lobj->tiling_flags = bo->tiling_flags;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200345 }
346 return 0;
347}
348
Jerome Glisse4c788672009-11-20 14:29:23 +0100349int radeon_bo_fbdev_mmap(struct radeon_bo *bo,
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200350 struct vm_area_struct *vma)
351{
Jerome Glisse4c788672009-11-20 14:29:23 +0100352 return ttm_fbdev_mmap(vma, &bo->tbo);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200353}
354
Dave Airlie550e2d92009-12-09 14:15:38 +1000355int radeon_bo_get_surface_reg(struct radeon_bo *bo)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200356{
Jerome Glisse4c788672009-11-20 14:29:23 +0100357 struct radeon_device *rdev = bo->rdev;
Dave Airliee024e112009-06-24 09:48:08 +1000358 struct radeon_surface_reg *reg;
Jerome Glisse4c788672009-11-20 14:29:23 +0100359 struct radeon_bo *old_object;
Dave Airliee024e112009-06-24 09:48:08 +1000360 int steal;
361 int i;
362
Jerome Glisse4c788672009-11-20 14:29:23 +0100363 BUG_ON(!atomic_read(&bo->tbo.reserved));
364
365 if (!bo->tiling_flags)
Dave Airliee024e112009-06-24 09:48:08 +1000366 return 0;
367
Jerome Glisse4c788672009-11-20 14:29:23 +0100368 if (bo->surface_reg >= 0) {
369 reg = &rdev->surface_regs[bo->surface_reg];
370 i = bo->surface_reg;
Dave Airliee024e112009-06-24 09:48:08 +1000371 goto out;
372 }
373
374 steal = -1;
375 for (i = 0; i < RADEON_GEM_MAX_SURFACES; i++) {
376
377 reg = &rdev->surface_regs[i];
Jerome Glisse4c788672009-11-20 14:29:23 +0100378 if (!reg->bo)
Dave Airliee024e112009-06-24 09:48:08 +1000379 break;
380
Jerome Glisse4c788672009-11-20 14:29:23 +0100381 old_object = reg->bo;
Dave Airliee024e112009-06-24 09:48:08 +1000382 if (old_object->pin_count == 0)
383 steal = i;
384 }
385
386 /* if we are all out */
387 if (i == RADEON_GEM_MAX_SURFACES) {
388 if (steal == -1)
389 return -ENOMEM;
390 /* find someone with a surface reg and nuke their BO */
391 reg = &rdev->surface_regs[steal];
Jerome Glisse4c788672009-11-20 14:29:23 +0100392 old_object = reg->bo;
Dave Airliee024e112009-06-24 09:48:08 +1000393 /* blow away the mapping */
394 DRM_DEBUG("stealing surface reg %d from %p\n", steal, old_object);
Jerome Glisse4c788672009-11-20 14:29:23 +0100395 ttm_bo_unmap_virtual(&old_object->tbo);
Dave Airliee024e112009-06-24 09:48:08 +1000396 old_object->surface_reg = -1;
397 i = steal;
398 }
399
Jerome Glisse4c788672009-11-20 14:29:23 +0100400 bo->surface_reg = i;
401 reg->bo = bo;
Dave Airliee024e112009-06-24 09:48:08 +1000402
403out:
Jerome Glisse4c788672009-11-20 14:29:23 +0100404 radeon_set_surface_reg(rdev, i, bo->tiling_flags, bo->pitch,
Ben Skeggsd961db72010-08-05 10:48:18 +1000405 bo->tbo.mem.start << PAGE_SHIFT,
Jerome Glisse4c788672009-11-20 14:29:23 +0100406 bo->tbo.num_pages << PAGE_SHIFT);
Dave Airliee024e112009-06-24 09:48:08 +1000407 return 0;
408}
409
Jerome Glisse4c788672009-11-20 14:29:23 +0100410static void radeon_bo_clear_surface_reg(struct radeon_bo *bo)
Dave Airliee024e112009-06-24 09:48:08 +1000411{
Jerome Glisse4c788672009-11-20 14:29:23 +0100412 struct radeon_device *rdev = bo->rdev;
Dave Airliee024e112009-06-24 09:48:08 +1000413 struct radeon_surface_reg *reg;
414
Jerome Glisse4c788672009-11-20 14:29:23 +0100415 if (bo->surface_reg == -1)
Dave Airliee024e112009-06-24 09:48:08 +1000416 return;
417
Jerome Glisse4c788672009-11-20 14:29:23 +0100418 reg = &rdev->surface_regs[bo->surface_reg];
419 radeon_clear_surface_reg(rdev, bo->surface_reg);
Dave Airliee024e112009-06-24 09:48:08 +1000420
Jerome Glisse4c788672009-11-20 14:29:23 +0100421 reg->bo = NULL;
422 bo->surface_reg = -1;
Dave Airliee024e112009-06-24 09:48:08 +1000423}
424
Jerome Glisse4c788672009-11-20 14:29:23 +0100425int radeon_bo_set_tiling_flags(struct radeon_bo *bo,
426 uint32_t tiling_flags, uint32_t pitch)
Dave Airliee024e112009-06-24 09:48:08 +1000427{
Jerome Glisse4c788672009-11-20 14:29:23 +0100428 int r;
429
430 r = radeon_bo_reserve(bo, false);
431 if (unlikely(r != 0))
432 return r;
433 bo->tiling_flags = tiling_flags;
434 bo->pitch = pitch;
435 radeon_bo_unreserve(bo);
436 return 0;
Dave Airliee024e112009-06-24 09:48:08 +1000437}
438
Jerome Glisse4c788672009-11-20 14:29:23 +0100439void radeon_bo_get_tiling_flags(struct radeon_bo *bo,
440 uint32_t *tiling_flags,
441 uint32_t *pitch)
Dave Airliee024e112009-06-24 09:48:08 +1000442{
Jerome Glisse4c788672009-11-20 14:29:23 +0100443 BUG_ON(!atomic_read(&bo->tbo.reserved));
Dave Airliee024e112009-06-24 09:48:08 +1000444 if (tiling_flags)
Jerome Glisse4c788672009-11-20 14:29:23 +0100445 *tiling_flags = bo->tiling_flags;
Dave Airliee024e112009-06-24 09:48:08 +1000446 if (pitch)
Jerome Glisse4c788672009-11-20 14:29:23 +0100447 *pitch = bo->pitch;
Dave Airliee024e112009-06-24 09:48:08 +1000448}
449
Jerome Glisse4c788672009-11-20 14:29:23 +0100450int radeon_bo_check_tiling(struct radeon_bo *bo, bool has_moved,
451 bool force_drop)
Dave Airliee024e112009-06-24 09:48:08 +1000452{
Jerome Glisse4c788672009-11-20 14:29:23 +0100453 BUG_ON(!atomic_read(&bo->tbo.reserved));
454
455 if (!(bo->tiling_flags & RADEON_TILING_SURFACE))
Dave Airliee024e112009-06-24 09:48:08 +1000456 return 0;
457
458 if (force_drop) {
Jerome Glisse4c788672009-11-20 14:29:23 +0100459 radeon_bo_clear_surface_reg(bo);
Dave Airliee024e112009-06-24 09:48:08 +1000460 return 0;
461 }
462
Jerome Glisse4c788672009-11-20 14:29:23 +0100463 if (bo->tbo.mem.mem_type != TTM_PL_VRAM) {
Dave Airliee024e112009-06-24 09:48:08 +1000464 if (!has_moved)
465 return 0;
466
Jerome Glisse4c788672009-11-20 14:29:23 +0100467 if (bo->surface_reg >= 0)
468 radeon_bo_clear_surface_reg(bo);
Dave Airliee024e112009-06-24 09:48:08 +1000469 return 0;
470 }
471
Jerome Glisse4c788672009-11-20 14:29:23 +0100472 if ((bo->surface_reg >= 0) && !has_moved)
Dave Airliee024e112009-06-24 09:48:08 +1000473 return 0;
474
Jerome Glisse4c788672009-11-20 14:29:23 +0100475 return radeon_bo_get_surface_reg(bo);
Dave Airliee024e112009-06-24 09:48:08 +1000476}
477
478void radeon_bo_move_notify(struct ttm_buffer_object *bo,
Jerome Glissed03d8582009-12-14 21:02:09 +0100479 struct ttm_mem_reg *mem)
Dave Airliee024e112009-06-24 09:48:08 +1000480{
Jerome Glissed03d8582009-12-14 21:02:09 +0100481 struct radeon_bo *rbo;
482 if (!radeon_ttm_bo_is_radeon_bo(bo))
483 return;
484 rbo = container_of(bo, struct radeon_bo, tbo);
Jerome Glisse4c788672009-11-20 14:29:23 +0100485 radeon_bo_check_tiling(rbo, 0, 1);
Dave Airliee024e112009-06-24 09:48:08 +1000486}
487
Jerome Glisse0a2d50e2010-04-09 14:39:24 +0200488int radeon_bo_fault_reserve_notify(struct ttm_buffer_object *bo)
Dave Airliee024e112009-06-24 09:48:08 +1000489{
Jerome Glisse0a2d50e2010-04-09 14:39:24 +0200490 struct radeon_device *rdev;
Jerome Glissed03d8582009-12-14 21:02:09 +0100491 struct radeon_bo *rbo;
Jerome Glisse0a2d50e2010-04-09 14:39:24 +0200492 unsigned long offset, size;
493 int r;
494
Jerome Glissed03d8582009-12-14 21:02:09 +0100495 if (!radeon_ttm_bo_is_radeon_bo(bo))
Jerome Glisse0a2d50e2010-04-09 14:39:24 +0200496 return 0;
Jerome Glissed03d8582009-12-14 21:02:09 +0100497 rbo = container_of(bo, struct radeon_bo, tbo);
Jerome Glisse4c788672009-11-20 14:29:23 +0100498 radeon_bo_check_tiling(rbo, 0, 0);
Jerome Glisse0a2d50e2010-04-09 14:39:24 +0200499 rdev = rbo->rdev;
500 if (bo->mem.mem_type == TTM_PL_VRAM) {
501 size = bo->mem.num_pages << PAGE_SHIFT;
Ben Skeggsd961db72010-08-05 10:48:18 +1000502 offset = bo->mem.start << PAGE_SHIFT;
Jerome Glisse0a2d50e2010-04-09 14:39:24 +0200503 if ((offset + size) > rdev->mc.visible_vram_size) {
504 /* hurrah the memory is not visible ! */
505 radeon_ttm_placement_from_domain(rbo, RADEON_GEM_DOMAIN_VRAM);
506 rbo->placement.lpfn = rdev->mc.visible_vram_size >> PAGE_SHIFT;
507 r = ttm_bo_validate(bo, &rbo->placement, false, true, false);
508 if (unlikely(r != 0))
509 return r;
Ben Skeggsd961db72010-08-05 10:48:18 +1000510 offset = bo->mem.start << PAGE_SHIFT;
Jerome Glisse0a2d50e2010-04-09 14:39:24 +0200511 /* this should not happen */
512 if ((offset + size) > rdev->mc.visible_vram_size)
513 return -EINVAL;
514 }
515 }
516 return 0;
Dave Airliee024e112009-06-24 09:48:08 +1000517}
Andi Kleence580fa2011-10-13 16:08:47 -0700518
Dave Airlie83f30d02011-10-27 18:15:10 +0200519int radeon_bo_wait(struct radeon_bo *bo, u32 *mem_type, bool no_wait)
Andi Kleence580fa2011-10-13 16:08:47 -0700520{
521 int r;
522
523 r = ttm_bo_reserve(&bo->tbo, true, no_wait, false, 0);
524 if (unlikely(r != 0))
525 return r;
526 spin_lock(&bo->tbo.bdev->fence_lock);
527 if (mem_type)
528 *mem_type = bo->tbo.mem.mem_type;
529 if (bo->tbo.sync_obj)
Dave Airlie1717c0e2011-10-27 18:28:37 +0200530 r = ttm_bo_wait(&bo->tbo, true, true, no_wait);
Andi Kleence580fa2011-10-13 16:08:47 -0700531 spin_unlock(&bo->tbo.bdev->fence_lock);
532 ttm_bo_unreserve(&bo->tbo);
533 return r;
534}
535
536
537/**
538 * radeon_bo_reserve - reserve bo
539 * @bo: bo structure
540 * @no_wait: don't sleep while trying to reserve (return -EBUSY)
541 *
542 * Returns:
543 * -EBUSY: buffer is busy and @no_wait is true
544 * -ERESTARTSYS: A wait for the buffer to become unreserved was interrupted by
545 * a signal. Release all buffer reservations and return to user-space.
546 */
547int radeon_bo_reserve(struct radeon_bo *bo, bool no_wait)
548{
549 int r;
550
551 r = ttm_bo_reserve(&bo->tbo, true, no_wait, false, 0);
552 if (unlikely(r != 0)) {
553 if (r != -ERESTARTSYS)
554 dev_err(bo->rdev->dev, "%p reserve failed\n", bo);
555 return r;
556 }
557 return 0;
558}