2 * Copyright 2008 Advanced Micro Devices, Inc.
3 * Copyright 2008 Red Hat Inc.
4 * Copyright 2009 Jerome Glisse.
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
20 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22 * OTHER DEALINGS IN THE SOFTWARE.
24 * Authors: Dave Airlie
28 #include <linux/seq_file.h>
29 #include <linux/slab.h>
31 #include "radeon_drm.h"
32 #include "radeon_reg.h"
36 int radeon_debugfs_ib_init(struct radeon_device
*rdev
);
38 void radeon_ib_bogus_cleanup(struct radeon_device
*rdev
)
40 struct radeon_ib
*ib
, *n
;
42 list_for_each_entry_safe(ib
, n
, &rdev
->ib_pool
.bogus_ib
, list
) {
49 void radeon_ib_bogus_add(struct radeon_device
*rdev
, struct radeon_ib
*ib
)
51 struct radeon_ib
*bib
;
53 bib
= kmalloc(sizeof(*bib
), GFP_KERNEL
);
56 bib
->ptr
= vmalloc(ib
->length_dw
* 4);
57 if (bib
->ptr
== NULL
) {
61 memcpy(bib
->ptr
, ib
->ptr
, ib
->length_dw
* 4);
62 bib
->length_dw
= ib
->length_dw
;
63 mutex_lock(&rdev
->ib_pool
.mutex
);
64 list_add_tail(&bib
->list
, &rdev
->ib_pool
.bogus_ib
);
65 mutex_unlock(&rdev
->ib_pool
.mutex
);
71 int radeon_ib_get(struct radeon_device
*rdev
, struct radeon_ib
**ib
)
73 struct radeon_fence
*fence
;
74 struct radeon_ib
*nib
;
78 r
= radeon_fence_create(rdev
, &fence
);
80 dev_err(rdev
->dev
, "failed to create fence for new IB\n");
83 mutex_lock(&rdev
->ib_pool
.mutex
);
84 for (i
= rdev
->ib_pool
.head_id
, c
= 0, nib
= NULL
; c
< RADEON_IB_POOL_SIZE
; c
++, i
++) {
85 i
&= (RADEON_IB_POOL_SIZE
- 1);
86 if (rdev
->ib_pool
.ibs
[i
].free
) {
87 nib
= &rdev
->ib_pool
.ibs
[i
];
92 /* This should never happen, it means we allocated all
93 * IB and haven't scheduled one yet, return EBUSY to
94 * userspace hoping that on ioctl recall we get better
97 dev_err(rdev
->dev
, "no free indirect buffer !\n");
98 mutex_unlock(&rdev
->ib_pool
.mutex
);
99 radeon_fence_unref(&fence
);
102 rdev
->ib_pool
.head_id
= (nib
->idx
+ 1) & (RADEON_IB_POOL_SIZE
- 1);
105 mutex_unlock(&rdev
->ib_pool
.mutex
);
106 r
= radeon_fence_wait(nib
->fence
, false);
108 dev_err(rdev
->dev
, "error waiting fence of IB(%u:0x%016lX:%u)\n",
109 nib
->idx
, (unsigned long)nib
->gpu_addr
, nib
->length_dw
);
110 mutex_lock(&rdev
->ib_pool
.mutex
);
112 mutex_unlock(&rdev
->ib_pool
.mutex
);
113 radeon_fence_unref(&fence
);
116 mutex_lock(&rdev
->ib_pool
.mutex
);
118 radeon_fence_unref(&nib
->fence
);
121 mutex_unlock(&rdev
->ib_pool
.mutex
);
126 void radeon_ib_free(struct radeon_device
*rdev
, struct radeon_ib
**ib
)
128 struct radeon_ib
*tmp
= *ib
;
134 if (!tmp
->fence
->emited
)
135 radeon_fence_unref(&tmp
->fence
);
136 mutex_lock(&rdev
->ib_pool
.mutex
);
138 mutex_unlock(&rdev
->ib_pool
.mutex
);
141 int radeon_ib_schedule(struct radeon_device
*rdev
, struct radeon_ib
*ib
)
145 if (!ib
->length_dw
|| !rdev
->cp
.ready
) {
146 /* TODO: Nothings in the ib we should report. */
147 DRM_ERROR("radeon: couldn't schedule IB(%u).\n", ib
->idx
);
151 /* 64 dwords should be enough for fence too */
152 r
= radeon_ring_lock(rdev
, 64);
154 DRM_ERROR("radeon: scheduling IB failed (%d).\n", r
);
157 radeon_ring_ib_execute(rdev
, ib
);
158 radeon_fence_emit(rdev
, ib
->fence
);
159 mutex_lock(&rdev
->ib_pool
.mutex
);
160 /* once scheduled IB is considered free and protected by the fence */
162 mutex_unlock(&rdev
->ib_pool
.mutex
);
163 radeon_ring_unlock_commit(rdev
);
167 int radeon_ib_pool_init(struct radeon_device
*rdev
)
174 if (rdev
->ib_pool
.robj
)
176 INIT_LIST_HEAD(&rdev
->ib_pool
.bogus_ib
);
177 /* Allocate 1M object buffer */
178 r
= radeon_bo_create(rdev
, RADEON_IB_POOL_SIZE
*64*1024,
179 PAGE_SIZE
, true, RADEON_GEM_DOMAIN_GTT
,
180 &rdev
->ib_pool
.robj
);
182 DRM_ERROR("radeon: failed to ib pool (%d).\n", r
);
185 r
= radeon_bo_reserve(rdev
->ib_pool
.robj
, false);
186 if (unlikely(r
!= 0))
188 r
= radeon_bo_pin(rdev
->ib_pool
.robj
, RADEON_GEM_DOMAIN_GTT
, &gpu_addr
);
190 radeon_bo_unreserve(rdev
->ib_pool
.robj
);
191 DRM_ERROR("radeon: failed to pin ib pool (%d).\n", r
);
194 r
= radeon_bo_kmap(rdev
->ib_pool
.robj
, &ptr
);
195 radeon_bo_unreserve(rdev
->ib_pool
.robj
);
197 DRM_ERROR("radeon: failed to map ib pool (%d).\n", r
);
200 for (i
= 0; i
< RADEON_IB_POOL_SIZE
; i
++) {
203 offset
= i
* 64 * 1024;
204 rdev
->ib_pool
.ibs
[i
].gpu_addr
= gpu_addr
+ offset
;
205 rdev
->ib_pool
.ibs
[i
].ptr
= ptr
+ offset
;
206 rdev
->ib_pool
.ibs
[i
].idx
= i
;
207 rdev
->ib_pool
.ibs
[i
].length_dw
= 0;
208 rdev
->ib_pool
.ibs
[i
].free
= true;
210 rdev
->ib_pool
.head_id
= 0;
211 rdev
->ib_pool
.ready
= true;
212 DRM_INFO("radeon: ib pool ready.\n");
213 if (radeon_debugfs_ib_init(rdev
)) {
214 DRM_ERROR("Failed to register debugfs file for IB !\n");
219 void radeon_ib_pool_fini(struct radeon_device
*rdev
)
222 struct radeon_bo
*robj
;
224 if (!rdev
->ib_pool
.ready
) {
227 mutex_lock(&rdev
->ib_pool
.mutex
);
228 radeon_ib_bogus_cleanup(rdev
);
229 robj
= rdev
->ib_pool
.robj
;
230 rdev
->ib_pool
.robj
= NULL
;
231 mutex_unlock(&rdev
->ib_pool
.mutex
);
234 r
= radeon_bo_reserve(robj
, false);
235 if (likely(r
== 0)) {
236 radeon_bo_kunmap(robj
);
237 radeon_bo_unpin(robj
);
238 radeon_bo_unreserve(robj
);
240 radeon_bo_unref(&robj
);
248 void radeon_ring_free_size(struct radeon_device
*rdev
)
250 if (rdev
->wb
.enabled
)
251 rdev
->cp
.rptr
= le32_to_cpu(rdev
->wb
.wb
[RADEON_WB_CP_RPTR_OFFSET
/4]);
253 if (rdev
->family
>= CHIP_R600
)
254 rdev
->cp
.rptr
= RREG32(R600_CP_RB_RPTR
);
256 rdev
->cp
.rptr
= RREG32(RADEON_CP_RB_RPTR
);
258 /* This works because ring_size is a power of 2 */
259 rdev
->cp
.ring_free_dw
= (rdev
->cp
.rptr
+ (rdev
->cp
.ring_size
/ 4));
260 rdev
->cp
.ring_free_dw
-= rdev
->cp
.wptr
;
261 rdev
->cp
.ring_free_dw
&= rdev
->cp
.ptr_mask
;
262 if (!rdev
->cp
.ring_free_dw
) {
263 rdev
->cp
.ring_free_dw
= rdev
->cp
.ring_size
/ 4;
267 int radeon_ring_alloc(struct radeon_device
*rdev
, unsigned ndw
)
271 /* Align requested size with padding so unlock_commit can
273 ndw
= (ndw
+ rdev
->cp
.align_mask
) & ~rdev
->cp
.align_mask
;
274 while (ndw
> (rdev
->cp
.ring_free_dw
- 1)) {
275 radeon_ring_free_size(rdev
);
276 if (ndw
< rdev
->cp
.ring_free_dw
) {
279 r
= radeon_fence_wait_next(rdev
);
283 rdev
->cp
.count_dw
= ndw
;
284 rdev
->cp
.wptr_old
= rdev
->cp
.wptr
;
288 int radeon_ring_lock(struct radeon_device
*rdev
, unsigned ndw
)
292 mutex_lock(&rdev
->cp
.mutex
);
293 r
= radeon_ring_alloc(rdev
, ndw
);
295 mutex_unlock(&rdev
->cp
.mutex
);
301 void radeon_ring_commit(struct radeon_device
*rdev
)
303 unsigned count_dw_pad
;
306 /* We pad to match fetch size */
307 count_dw_pad
= (rdev
->cp
.align_mask
+ 1) -
308 (rdev
->cp
.wptr
& rdev
->cp
.align_mask
);
309 for (i
= 0; i
< count_dw_pad
; i
++) {
310 radeon_ring_write(rdev
, 2 << 30);
313 radeon_cp_commit(rdev
);
316 void radeon_ring_unlock_commit(struct radeon_device
*rdev
)
318 radeon_ring_commit(rdev
);
319 mutex_unlock(&rdev
->cp
.mutex
);
322 void radeon_ring_unlock_undo(struct radeon_device
*rdev
)
324 rdev
->cp
.wptr
= rdev
->cp
.wptr_old
;
325 mutex_unlock(&rdev
->cp
.mutex
);
328 int radeon_ring_init(struct radeon_device
*rdev
, unsigned ring_size
)
332 rdev
->cp
.ring_size
= ring_size
;
333 /* Allocate ring buffer */
334 if (rdev
->cp
.ring_obj
== NULL
) {
335 r
= radeon_bo_create(rdev
, rdev
->cp
.ring_size
, PAGE_SIZE
, true,
336 RADEON_GEM_DOMAIN_GTT
,
339 dev_err(rdev
->dev
, "(%d) ring create failed\n", r
);
342 r
= radeon_bo_reserve(rdev
->cp
.ring_obj
, false);
343 if (unlikely(r
!= 0))
345 r
= radeon_bo_pin(rdev
->cp
.ring_obj
, RADEON_GEM_DOMAIN_GTT
,
348 radeon_bo_unreserve(rdev
->cp
.ring_obj
);
349 dev_err(rdev
->dev
, "(%d) ring pin failed\n", r
);
352 r
= radeon_bo_kmap(rdev
->cp
.ring_obj
,
353 (void **)&rdev
->cp
.ring
);
354 radeon_bo_unreserve(rdev
->cp
.ring_obj
);
356 dev_err(rdev
->dev
, "(%d) ring map failed\n", r
);
360 rdev
->cp
.ptr_mask
= (rdev
->cp
.ring_size
/ 4) - 1;
361 rdev
->cp
.ring_free_dw
= rdev
->cp
.ring_size
/ 4;
365 void radeon_ring_fini(struct radeon_device
*rdev
)
368 struct radeon_bo
*ring_obj
;
370 mutex_lock(&rdev
->cp
.mutex
);
371 ring_obj
= rdev
->cp
.ring_obj
;
372 rdev
->cp
.ring
= NULL
;
373 rdev
->cp
.ring_obj
= NULL
;
374 mutex_unlock(&rdev
->cp
.mutex
);
377 r
= radeon_bo_reserve(ring_obj
, false);
378 if (likely(r
== 0)) {
379 radeon_bo_kunmap(ring_obj
);
380 radeon_bo_unpin(ring_obj
);
381 radeon_bo_unreserve(ring_obj
);
383 radeon_bo_unref(&ring_obj
);
391 #if defined(CONFIG_DEBUG_FS)
392 static int radeon_debugfs_ib_info(struct seq_file
*m
, void *data
)
394 struct drm_info_node
*node
= (struct drm_info_node
*) m
->private;
395 struct radeon_ib
*ib
= node
->info_ent
->data
;
401 seq_printf(m
, "IB %04u\n", ib
->idx
);
402 seq_printf(m
, "IB fence %p\n", ib
->fence
);
403 seq_printf(m
, "IB size %05u dwords\n", ib
->length_dw
);
404 for (i
= 0; i
< ib
->length_dw
; i
++) {
405 seq_printf(m
, "[%05u]=0x%08X\n", i
, ib
->ptr
[i
]);
410 static int radeon_debugfs_ib_bogus_info(struct seq_file
*m
, void *data
)
412 struct drm_info_node
*node
= (struct drm_info_node
*) m
->private;
413 struct radeon_device
*rdev
= node
->info_ent
->data
;
414 struct radeon_ib
*ib
;
417 mutex_lock(&rdev
->ib_pool
.mutex
);
418 if (list_empty(&rdev
->ib_pool
.bogus_ib
)) {
419 mutex_unlock(&rdev
->ib_pool
.mutex
);
420 seq_printf(m
, "no bogus IB recorded\n");
423 ib
= list_first_entry(&rdev
->ib_pool
.bogus_ib
, struct radeon_ib
, list
);
424 list_del_init(&ib
->list
);
425 mutex_unlock(&rdev
->ib_pool
.mutex
);
426 seq_printf(m
, "IB size %05u dwords\n", ib
->length_dw
);
427 for (i
= 0; i
< ib
->length_dw
; i
++) {
428 seq_printf(m
, "[%05u]=0x%08X\n", i
, ib
->ptr
[i
]);
435 static struct drm_info_list radeon_debugfs_ib_list
[RADEON_IB_POOL_SIZE
];
436 static char radeon_debugfs_ib_names
[RADEON_IB_POOL_SIZE
][32];
438 static struct drm_info_list radeon_debugfs_ib_bogus_info_list
[] = {
439 {"radeon_ib_bogus", radeon_debugfs_ib_bogus_info
, 0, NULL
},
443 int radeon_debugfs_ib_init(struct radeon_device
*rdev
)
445 #if defined(CONFIG_DEBUG_FS)
449 radeon_debugfs_ib_bogus_info_list
[0].data
= rdev
;
450 r
= radeon_debugfs_add_files(rdev
, radeon_debugfs_ib_bogus_info_list
, 1);
453 for (i
= 0; i
< RADEON_IB_POOL_SIZE
; i
++) {
454 sprintf(radeon_debugfs_ib_names
[i
], "radeon_ib_%04u", i
);
455 radeon_debugfs_ib_list
[i
].name
= radeon_debugfs_ib_names
[i
];
456 radeon_debugfs_ib_list
[i
].show
= &radeon_debugfs_ib_info
;
457 radeon_debugfs_ib_list
[i
].driver_features
= 0;
458 radeon_debugfs_ib_list
[i
].data
= &rdev
->ib_pool
.ibs
[i
];
460 return radeon_debugfs_add_files(rdev
, radeon_debugfs_ib_list
,
461 RADEON_IB_POOL_SIZE
);