blob: 5b4e0cf231a04d0a104868ed590f1324afe70be1 [file] [log] [blame]
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001/*
2 * Copyright 2008 Advanced Micro Devices, Inc.
3 * Copyright 2008 Red Hat Inc.
4 * Copyright 2009 Jerome Glisse.
5 *
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:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
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.
23 *
24 * Authors: Dave Airlie
25 * Alex Deucher
26 * Jerome Glisse
Jerome Glissec507f7e2012-05-09 15:34:58 +020027 * Christian König
Jerome Glisse771fe6b2009-06-05 14:42:42 +020028 */
David Howells760285e2012-10-02 18:01:07 +010029#include <drm/drmP.h>
Jerome Glisse771fe6b2009-06-05 14:42:42 +020030#include "radeon.h"
Christian König7bd560e2012-05-02 15:11:12 +020031
Jerome Glisse771fe6b2009-06-05 14:42:42 +020032/*
Alex Deucher75923282012-07-17 14:02:38 -040033 * Rings
34 * Most engines on the GPU are fed via ring buffers. Ring
35 * buffers are areas of GPU accessible memory that the host
36 * writes commands into and the GPU reads commands out of.
37 * There is a rptr (read pointer) that determines where the
38 * GPU is currently reading, and a wptr (write pointer)
39 * which determines where the host has written. When the
40 * pointers are equal, the ring is idle. When the host
41 * writes commands to the ring buffer, it increments the
42 * wptr. The GPU then starts fetching commands and executes
43 * them until the pointers are equal again.
Jerome Glisse771fe6b2009-06-05 14:42:42 +020044 */
Lauri Kasanen1109ca02012-08-31 13:43:50 -040045static int radeon_debugfs_ring_init(struct radeon_device *rdev, struct radeon_ring *ring);
Jerome Glissec507f7e2012-05-09 15:34:58 +020046
Alex Deucher75923282012-07-17 14:02:38 -040047/**
48 * radeon_ring_write - write a value to the ring
49 *
50 * @ring: radeon_ring structure holding ring information
51 * @v: dword (dw) value to write
52 *
53 * Write a value to the requested ring buffer (all asics).
54 */
Jerome Glissec507f7e2012-05-09 15:34:58 +020055void radeon_ring_write(struct radeon_ring *ring, uint32_t v)
56{
57#if DRM_DEBUG_CODE
58 if (ring->count_dw <= 0) {
Thomas Friebel8ad33cd2012-10-15 13:16:22 -040059 DRM_ERROR("radeon: writing more dwords to the ring than expected!\n");
Jerome Glissec507f7e2012-05-09 15:34:58 +020060 }
61#endif
62 ring->ring[ring->wptr++] = v;
63 ring->wptr &= ring->ptr_mask;
64 ring->count_dw--;
65 ring->ring_free_dw--;
66}
67
Alex Deucher75923282012-07-17 14:02:38 -040068/**
69 * radeon_ring_supports_scratch_reg - check if the ring supports
70 * writing to scratch registers
71 *
72 * @rdev: radeon_device pointer
73 * @ring: radeon_ring structure holding ring information
74 *
75 * Check if a specific ring supports writing to scratch registers (all asics).
76 * Returns true if the ring supports writing to scratch regs, false if not.
77 */
Alex Deucher89d35802012-07-17 14:02:31 -040078bool radeon_ring_supports_scratch_reg(struct radeon_device *rdev,
79 struct radeon_ring *ring)
80{
81 switch (ring->idx) {
82 case RADEON_RING_TYPE_GFX_INDEX:
83 case CAYMAN_RING_TYPE_CP1_INDEX:
84 case CAYMAN_RING_TYPE_CP2_INDEX:
85 return true;
86 default:
87 return false;
88 }
89}
90
Alex Deucher75923282012-07-17 14:02:38 -040091/**
92 * radeon_ring_free_size - update the free size
93 *
94 * @rdev: radeon_device pointer
95 * @ring: radeon_ring structure holding ring information
96 *
97 * Update the free dw slots in the ring buffer (all asics).
98 */
Christian Könige32eb502011-10-23 12:56:27 +020099void radeon_ring_free_size(struct radeon_device *rdev, struct radeon_ring *ring)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200100{
Christian Königff212f22014-02-18 14:52:33 +0100101 uint32_t rptr = radeon_ring_get_rptr(rdev, ring);
102
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200103 /* This works because ring_size is a power of 2 */
Christian Königff212f22014-02-18 14:52:33 +0100104 ring->ring_free_dw = rptr + (ring->ring_size / 4);
Christian Könige32eb502011-10-23 12:56:27 +0200105 ring->ring_free_dw -= ring->wptr;
106 ring->ring_free_dw &= ring->ptr_mask;
107 if (!ring->ring_free_dw) {
Christian König82dc62a2014-02-18 15:03:22 +0100108 /* this is an empty ring */
Christian Könige32eb502011-10-23 12:56:27 +0200109 ring->ring_free_dw = ring->ring_size / 4;
Christian König82dc62a2014-02-18 15:03:22 +0100110 /* update lockup info to avoid false positive */
111 radeon_ring_lockup_update(rdev, ring);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200112 }
113}
114
Alex Deucher75923282012-07-17 14:02:38 -0400115/**
116 * radeon_ring_alloc - allocate space on the ring buffer
117 *
118 * @rdev: radeon_device pointer
119 * @ring: radeon_ring structure holding ring information
120 * @ndw: number of dwords to allocate in the ring buffer
121 *
122 * Allocate @ndw dwords in the ring buffer (all asics).
123 * Returns 0 on success, error on failure.
124 */
Christian Könige32eb502011-10-23 12:56:27 +0200125int radeon_ring_alloc(struct radeon_device *rdev, struct radeon_ring *ring, unsigned ndw)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200126{
127 int r;
128
Alex Deucherfd5d93a2013-01-30 14:24:09 -0500129 /* make sure we aren't trying to allocate more space than there is on the ring */
130 if (ndw > (ring->ring_size / 4))
131 return -ENOMEM;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200132 /* Align requested size with padding so unlock_commit can
133 * pad safely */
Jerome Glisse8444d5c2013-06-19 10:02:28 -0400134 radeon_ring_free_size(rdev, ring);
Christian Könige32eb502011-10-23 12:56:27 +0200135 ndw = (ndw + ring->align_mask) & ~ring->align_mask;
136 while (ndw > (ring->ring_free_dw - 1)) {
137 radeon_ring_free_size(rdev, ring);
138 if (ndw < ring->ring_free_dw) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200139 break;
140 }
Christian König37615522014-02-18 15:58:31 +0100141 r = radeon_fence_wait_next(rdev, ring->idx);
Matthew Garrett91700f32010-04-30 15:24:17 -0400142 if (r)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200143 return r;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200144 }
Christian Könige32eb502011-10-23 12:56:27 +0200145 ring->count_dw = ndw;
146 ring->wptr_old = ring->wptr;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200147 return 0;
148}
149
Alex Deucher75923282012-07-17 14:02:38 -0400150/**
151 * radeon_ring_lock - lock the ring and allocate space on it
152 *
153 * @rdev: radeon_device pointer
154 * @ring: radeon_ring structure holding ring information
155 * @ndw: number of dwords to allocate in the ring buffer
156 *
157 * Lock the ring and allocate @ndw dwords in the ring buffer
158 * (all asics).
159 * Returns 0 on success, error on failure.
160 */
Christian Könige32eb502011-10-23 12:56:27 +0200161int radeon_ring_lock(struct radeon_device *rdev, struct radeon_ring *ring, unsigned ndw)
Matthew Garrett91700f32010-04-30 15:24:17 -0400162{
163 int r;
164
Christian Königd6999bc2012-05-09 15:34:45 +0200165 mutex_lock(&rdev->ring_lock);
Christian Könige32eb502011-10-23 12:56:27 +0200166 r = radeon_ring_alloc(rdev, ring, ndw);
Matthew Garrett91700f32010-04-30 15:24:17 -0400167 if (r) {
Christian Königd6999bc2012-05-09 15:34:45 +0200168 mutex_unlock(&rdev->ring_lock);
Matthew Garrett91700f32010-04-30 15:24:17 -0400169 return r;
170 }
171 return 0;
172}
173
Alex Deucher75923282012-07-17 14:02:38 -0400174/**
175 * radeon_ring_commit - tell the GPU to execute the new
176 * commands on the ring buffer
177 *
178 * @rdev: radeon_device pointer
179 * @ring: radeon_ring structure holding ring information
180 *
181 * Update the wptr (write pointer) to tell the GPU to
182 * execute new commands on the ring buffer (all asics).
183 */
Christian Könige32eb502011-10-23 12:56:27 +0200184void radeon_ring_commit(struct radeon_device *rdev, struct radeon_ring *ring)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200185{
Michel Dänzer72a99872014-07-31 18:43:49 +0900186 /* If we are emitting the HDP flush via the ring buffer, we need to
187 * do it before padding.
188 */
189 if (rdev->asic->ring[ring->idx]->hdp_flush)
190 rdev->asic->ring[ring->idx]->hdp_flush(rdev, ring);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200191 /* We pad to match fetch size */
Christian König07a71332012-07-07 12:11:32 +0200192 while (ring->wptr & ring->align_mask) {
Alex Deucher78c55602011-11-17 14:25:56 -0500193 radeon_ring_write(ring, ring->nop);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200194 }
Daniel Vetter85b23312013-12-11 11:34:45 +0100195 mb();
Michel Dänzer72a99872014-07-31 18:43:49 +0900196 /* If we are emitting the HDP flush via MMIO, we need to do it after
197 * all CPU writes to VRAM finished.
198 */
199 if (rdev->asic->mmio_hdp_flush)
200 rdev->asic->mmio_hdp_flush(rdev);
Alex Deucherf93bdef2013-01-29 14:10:56 -0500201 radeon_ring_set_wptr(rdev, ring);
Matthew Garrett91700f32010-04-30 15:24:17 -0400202}
203
Alex Deucher75923282012-07-17 14:02:38 -0400204/**
205 * radeon_ring_unlock_commit - tell the GPU to execute the new
206 * commands on the ring buffer and unlock it
207 *
208 * @rdev: radeon_device pointer
209 * @ring: radeon_ring structure holding ring information
210 *
211 * Call radeon_ring_commit() then unlock the ring (all asics).
212 */
Christian Könige32eb502011-10-23 12:56:27 +0200213void radeon_ring_unlock_commit(struct radeon_device *rdev, struct radeon_ring *ring)
Matthew Garrett91700f32010-04-30 15:24:17 -0400214{
Christian Könige32eb502011-10-23 12:56:27 +0200215 radeon_ring_commit(rdev, ring);
Christian Königd6999bc2012-05-09 15:34:45 +0200216 mutex_unlock(&rdev->ring_lock);
217}
218
Alex Deucher75923282012-07-17 14:02:38 -0400219/**
220 * radeon_ring_undo - reset the wptr
221 *
222 * @ring: radeon_ring structure holding ring information
223 *
Paul Bolle501f9d4c2012-11-20 22:31:06 +0100224 * Reset the driver's copy of the wptr (all asics).
Alex Deucher75923282012-07-17 14:02:38 -0400225 */
Christian Königd6999bc2012-05-09 15:34:45 +0200226void radeon_ring_undo(struct radeon_ring *ring)
227{
228 ring->wptr = ring->wptr_old;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200229}
230
Alex Deucher75923282012-07-17 14:02:38 -0400231/**
232 * radeon_ring_unlock_undo - reset the wptr and unlock the ring
233 *
234 * @ring: radeon_ring structure holding ring information
235 *
236 * Call radeon_ring_undo() then unlock the ring (all asics).
237 */
Christian Könige32eb502011-10-23 12:56:27 +0200238void radeon_ring_unlock_undo(struct radeon_device *rdev, struct radeon_ring *ring)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200239{
Christian Königd6999bc2012-05-09 15:34:45 +0200240 radeon_ring_undo(ring);
241 mutex_unlock(&rdev->ring_lock);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200242}
243
Alex Deucher75923282012-07-17 14:02:38 -0400244/**
Paul Bolle501f9d4c2012-11-20 22:31:06 +0100245 * radeon_ring_lockup_update - update lockup variables
Alex Deucher75923282012-07-17 14:02:38 -0400246 *
247 * @ring: radeon_ring structure holding ring information
248 *
249 * Update the last rptr value and timestamp (all asics).
250 */
Christian Königff212f22014-02-18 14:52:33 +0100251void radeon_ring_lockup_update(struct radeon_device *rdev,
252 struct radeon_ring *ring)
Christian König069211e2012-05-02 15:11:20 +0200253{
Christian Königaee4aa72014-02-18 15:24:06 +0100254 atomic_set(&ring->last_rptr, radeon_ring_get_rptr(rdev, ring));
255 atomic64_set(&ring->last_activity, jiffies_64);
Christian König069211e2012-05-02 15:11:20 +0200256}
257
258/**
259 * radeon_ring_test_lockup() - check if ring is lockedup by recording information
260 * @rdev: radeon device structure
261 * @ring: radeon_ring structure holding ring information
262 *
Christian König2d2fe3f2014-02-18 12:37:50 +0100263 */
Christian König069211e2012-05-02 15:11:20 +0200264bool radeon_ring_test_lockup(struct radeon_device *rdev, struct radeon_ring *ring)
265{
Christian Königff212f22014-02-18 14:52:33 +0100266 uint32_t rptr = radeon_ring_get_rptr(rdev, ring);
Christian Königaee4aa72014-02-18 15:24:06 +0100267 uint64_t last = atomic64_read(&ring->last_activity);
268 uint64_t elapsed;
Christian König069211e2012-05-02 15:11:20 +0200269
Christian Königaee4aa72014-02-18 15:24:06 +0100270 if (rptr != atomic_read(&ring->last_rptr)) {
271 /* ring is still working, no lockup */
Christian Königff212f22014-02-18 14:52:33 +0100272 radeon_ring_lockup_update(rdev, ring);
Christian König069211e2012-05-02 15:11:20 +0200273 return false;
274 }
Christian Königaee4aa72014-02-18 15:24:06 +0100275
276 elapsed = jiffies_to_msecs(jiffies_64 - last);
Christian König3368ff02012-05-02 15:11:21 +0200277 if (radeon_lockup_timeout && elapsed >= radeon_lockup_timeout) {
Christian Königaee4aa72014-02-18 15:24:06 +0100278 dev_err(rdev->dev, "ring %d stalled for more than %llumsec\n",
279 ring->idx, elapsed);
Christian König069211e2012-05-02 15:11:20 +0200280 return true;
281 }
282 /* give a chance to the GPU ... */
283 return false;
284}
285
Christian König55d7c222012-07-09 11:52:44 +0200286/**
287 * radeon_ring_backup - Back up the content of a ring
288 *
289 * @rdev: radeon_device pointer
290 * @ring: the ring we want to back up
291 *
292 * Saves all unprocessed commits from a ring, returns the number of dwords saved.
293 */
294unsigned radeon_ring_backup(struct radeon_device *rdev, struct radeon_ring *ring,
295 uint32_t **data)
296{
297 unsigned size, ptr, i;
Christian König55d7c222012-07-09 11:52:44 +0200298
299 /* just in case lock the ring */
300 mutex_lock(&rdev->ring_lock);
301 *data = NULL;
302
Alex Deucher89d35802012-07-17 14:02:31 -0400303 if (ring->ring_obj == NULL) {
Christian König55d7c222012-07-09 11:52:44 +0200304 mutex_unlock(&rdev->ring_lock);
305 return 0;
306 }
307
308 /* it doesn't make sense to save anything if all fences are signaled */
Alex Deucher8b25ed32012-07-17 14:02:30 -0400309 if (!radeon_fence_count_emitted(rdev, ring->idx)) {
Christian König55d7c222012-07-09 11:52:44 +0200310 mutex_unlock(&rdev->ring_lock);
311 return 0;
312 }
313
314 /* calculate the number of dw on the ring */
Alex Deucher89d35802012-07-17 14:02:31 -0400315 if (ring->rptr_save_reg)
316 ptr = RREG32(ring->rptr_save_reg);
317 else if (rdev->wb.enabled)
318 ptr = le32_to_cpu(*ring->next_rptr_cpu_addr);
319 else {
320 /* no way to read back the next rptr */
321 mutex_unlock(&rdev->ring_lock);
322 return 0;
323 }
324
Christian König55d7c222012-07-09 11:52:44 +0200325 size = ring->wptr + (ring->ring_size / 4);
326 size -= ptr;
327 size &= ring->ptr_mask;
328 if (size == 0) {
329 mutex_unlock(&rdev->ring_lock);
330 return 0;
331 }
332
333 /* and then save the content of the ring */
Dan Carpenter1e179d42012-07-20 14:17:00 +0300334 *data = kmalloc_array(size, sizeof(uint32_t), GFP_KERNEL);
335 if (!*data) {
336 mutex_unlock(&rdev->ring_lock);
337 return 0;
338 }
Christian König55d7c222012-07-09 11:52:44 +0200339 for (i = 0; i < size; ++i) {
340 (*data)[i] = ring->ring[ptr++];
341 ptr &= ring->ptr_mask;
342 }
343
344 mutex_unlock(&rdev->ring_lock);
345 return size;
346}
347
348/**
349 * radeon_ring_restore - append saved commands to the ring again
350 *
351 * @rdev: radeon_device pointer
352 * @ring: ring to append commands to
353 * @size: number of dwords we want to write
354 * @data: saved commands
355 *
356 * Allocates space on the ring and restore the previously saved commands.
357 */
358int radeon_ring_restore(struct radeon_device *rdev, struct radeon_ring *ring,
359 unsigned size, uint32_t *data)
360{
361 int i, r;
362
363 if (!size || !data)
364 return 0;
365
366 /* restore the saved ring content */
367 r = radeon_ring_lock(rdev, ring, size);
368 if (r)
369 return r;
370
371 for (i = 0; i < size; ++i) {
372 radeon_ring_write(ring, data[i]);
373 }
374
375 radeon_ring_unlock_commit(rdev, ring);
376 kfree(data);
377 return 0;
378}
379
Alex Deucher75923282012-07-17 14:02:38 -0400380/**
381 * radeon_ring_init - init driver ring struct.
382 *
383 * @rdev: radeon_device pointer
384 * @ring: radeon_ring structure holding ring information
385 * @ring_size: size of the ring
386 * @rptr_offs: offset of the rptr writeback location in the WB buffer
Alex Deucher75923282012-07-17 14:02:38 -0400387 * @nop: nop packet for this ring
388 *
389 * Initialize the driver information for the selected ring (all asics).
390 * Returns 0 on success, error on failure.
391 */
Christian Könige32eb502011-10-23 12:56:27 +0200392int radeon_ring_init(struct radeon_device *rdev, struct radeon_ring *ring, unsigned ring_size,
Alex Deucherea31bf62013-12-09 19:44:30 -0500393 unsigned rptr_offs, u32 nop)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200394{
395 int r;
396
Christian Könige32eb502011-10-23 12:56:27 +0200397 ring->ring_size = ring_size;
398 ring->rptr_offs = rptr_offs;
Alex Deucher78c55602011-11-17 14:25:56 -0500399 ring->nop = nop;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200400 /* Allocate ring buffer */
Christian Könige32eb502011-10-23 12:56:27 +0200401 if (ring->ring_obj == NULL) {
402 r = radeon_bo_create(rdev, ring->ring_size, PAGE_SIZE, true,
Michel Dänzer14904342014-07-29 18:47:20 +0900403 RADEON_GEM_DOMAIN_GTT,
404 (rdev->flags & RADEON_IS_PCIE) ?
405 RADEON_GEM_GTT_WC : 0,
Alex Deucher40f5cf92012-05-10 18:33:13 -0400406 NULL, &ring->ring_obj);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200407 if (r) {
Jerome Glisse4c788672009-11-20 14:29:23 +0100408 dev_err(rdev->dev, "(%d) ring create failed\n", r);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200409 return r;
410 }
Christian Könige32eb502011-10-23 12:56:27 +0200411 r = radeon_bo_reserve(ring->ring_obj, false);
Jerome Glisse4c788672009-11-20 14:29:23 +0100412 if (unlikely(r != 0))
413 return r;
Christian Könige32eb502011-10-23 12:56:27 +0200414 r = radeon_bo_pin(ring->ring_obj, RADEON_GEM_DOMAIN_GTT,
415 &ring->gpu_addr);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200416 if (r) {
Christian Könige32eb502011-10-23 12:56:27 +0200417 radeon_bo_unreserve(ring->ring_obj);
Jerome Glisse4c788672009-11-20 14:29:23 +0100418 dev_err(rdev->dev, "(%d) ring pin failed\n", r);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200419 return r;
420 }
Christian Könige32eb502011-10-23 12:56:27 +0200421 r = radeon_bo_kmap(ring->ring_obj,
422 (void **)&ring->ring);
423 radeon_bo_unreserve(ring->ring_obj);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200424 if (r) {
Jerome Glisse4c788672009-11-20 14:29:23 +0100425 dev_err(rdev->dev, "(%d) ring map failed\n", r);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200426 return r;
427 }
428 }
Christian Könige32eb502011-10-23 12:56:27 +0200429 ring->ptr_mask = (ring->ring_size / 4) - 1;
430 ring->ring_free_dw = ring->ring_size / 4;
Alex Deucher89d35802012-07-17 14:02:31 -0400431 if (rdev->wb.enabled) {
432 u32 index = RADEON_WB_RING0_NEXT_RPTR + (ring->idx * 4);
433 ring->next_rptr_gpu_addr = rdev->wb.gpu_addr + index;
434 ring->next_rptr_cpu_addr = &rdev->wb.wb[index/4];
435 }
Christian Königec1a6cc2012-05-02 15:11:11 +0200436 if (radeon_debugfs_ring_init(rdev, ring)) {
437 DRM_ERROR("Failed to register debugfs file for rings !\n");
438 }
Christian Königff212f22014-02-18 14:52:33 +0100439 radeon_ring_lockup_update(rdev, ring);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200440 return 0;
441}
442
Alex Deucher75923282012-07-17 14:02:38 -0400443/**
444 * radeon_ring_fini - tear down the driver ring struct.
445 *
446 * @rdev: radeon_device pointer
447 * @ring: radeon_ring structure holding ring information
448 *
449 * Tear down the driver information for the selected ring (all asics).
450 */
Christian Könige32eb502011-10-23 12:56:27 +0200451void radeon_ring_fini(struct radeon_device *rdev, struct radeon_ring *ring)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200452{
Jerome Glisse4c788672009-11-20 14:29:23 +0100453 int r;
Alex Deucherca2af922010-05-06 11:02:24 -0400454 struct radeon_bo *ring_obj;
Jerome Glisse4c788672009-11-20 14:29:23 +0100455
Christian Königd6999bc2012-05-09 15:34:45 +0200456 mutex_lock(&rdev->ring_lock);
Christian Könige32eb502011-10-23 12:56:27 +0200457 ring_obj = ring->ring_obj;
Christian Königd6999bc2012-05-09 15:34:45 +0200458 ring->ready = false;
Christian Könige32eb502011-10-23 12:56:27 +0200459 ring->ring = NULL;
460 ring->ring_obj = NULL;
Christian Königd6999bc2012-05-09 15:34:45 +0200461 mutex_unlock(&rdev->ring_lock);
Alex Deucherca2af922010-05-06 11:02:24 -0400462
463 if (ring_obj) {
464 r = radeon_bo_reserve(ring_obj, false);
465 if (likely(r == 0)) {
466 radeon_bo_kunmap(ring_obj);
467 radeon_bo_unpin(ring_obj);
468 radeon_bo_unreserve(ring_obj);
469 }
470 radeon_bo_unref(&ring_obj);
471 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200472}
473
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200474/*
475 * Debugfs info
476 */
477#if defined(CONFIG_DEBUG_FS)
Christian Königaf9720f2011-10-24 17:08:44 +0200478
479static int radeon_debugfs_ring_info(struct seq_file *m, void *data)
480{
481 struct drm_info_node *node = (struct drm_info_node *) m->private;
482 struct drm_device *dev = node->minor->dev;
483 struct radeon_device *rdev = dev->dev_private;
484 int ridx = *(int*)node->info_ent->data;
485 struct radeon_ring *ring = &rdev->ring[ridx];
Christian Königdf893a22013-12-12 09:42:37 +0100486
487 uint32_t rptr, wptr, rptr_next;
Christian Königaf9720f2011-10-24 17:08:44 +0200488 unsigned count, i, j;
489
490 radeon_ring_free_size(rdev, ring);
491 count = (ring->ring_size / 4) - ring->ring_free_dw;
Christian Königdf893a22013-12-12 09:42:37 +0100492
493 wptr = radeon_ring_get_wptr(rdev, ring);
Alex Deucherea31bf62013-12-09 19:44:30 -0500494 seq_printf(m, "wptr: 0x%08x [%5d]\n",
495 wptr, wptr);
Christian Königdf893a22013-12-12 09:42:37 +0100496
497 rptr = radeon_ring_get_rptr(rdev, ring);
Alex Deucherea31bf62013-12-09 19:44:30 -0500498 seq_printf(m, "rptr: 0x%08x [%5d]\n",
499 rptr, rptr);
Christian Königdf893a22013-12-12 09:42:37 +0100500
Christian König45df6802012-07-06 16:22:55 +0200501 if (ring->rptr_save_reg) {
Christian Königdf893a22013-12-12 09:42:37 +0100502 rptr_next = RREG32(ring->rptr_save_reg);
503 seq_printf(m, "rptr next(0x%04x): 0x%08x [%5d]\n",
504 ring->rptr_save_reg, rptr_next, rptr_next);
505 } else
506 rptr_next = ~0;
507
508 seq_printf(m, "driver's copy of the wptr: 0x%08x [%5d]\n",
509 ring->wptr, ring->wptr);
Christian Königdf893a22013-12-12 09:42:37 +0100510 seq_printf(m, "last semaphore signal addr : 0x%016llx\n",
511 ring->last_semaphore_signal_addr);
512 seq_printf(m, "last semaphore wait addr : 0x%016llx\n",
513 ring->last_semaphore_wait_addr);
Christian Königaf9720f2011-10-24 17:08:44 +0200514 seq_printf(m, "%u free dwords in ring\n", ring->ring_free_dw);
515 seq_printf(m, "%u dwords in ring\n", count);
Christian Königdf893a22013-12-12 09:42:37 +0100516
517 if (!ring->ready)
518 return 0;
519
Jerome Glisse4d009192013-01-02 17:30:34 -0500520 /* print 8 dw before current rptr as often it's the last executed
521 * packet that is the root issue
522 */
Christian Königdf893a22013-12-12 09:42:37 +0100523 i = (rptr + ring->ptr_mask + 1 - 32) & ring->ptr_mask;
524 for (j = 0; j <= (count + 32); j++) {
525 seq_printf(m, "r[%5d]=0x%08x", i, ring->ring[i]);
526 if (rptr == i)
527 seq_puts(m, " *");
528 if (rptr_next == i)
529 seq_puts(m, " #");
530 seq_puts(m, "\n");
531 i = (i + 1) & ring->ptr_mask;
Christian Königaf9720f2011-10-24 17:08:44 +0200532 }
533 return 0;
534}
535
Christian Königf2ba57b2013-04-08 12:41:29 +0200536static int radeon_gfx_index = RADEON_RING_TYPE_GFX_INDEX;
537static int cayman_cp1_index = CAYMAN_RING_TYPE_CP1_INDEX;
538static int cayman_cp2_index = CAYMAN_RING_TYPE_CP2_INDEX;
539static int radeon_dma1_index = R600_RING_TYPE_DMA_INDEX;
540static int radeon_dma2_index = CAYMAN_RING_TYPE_DMA1_INDEX;
541static int r600_uvd_index = R600_RING_TYPE_UVD_INDEX;
Christian Königd93f7932013-05-23 12:10:04 +0200542static int si_vce1_index = TN_RING_TYPE_VCE1_INDEX;
543static int si_vce2_index = TN_RING_TYPE_VCE2_INDEX;
Christian Königaf9720f2011-10-24 17:08:44 +0200544
545static struct drm_info_list radeon_debugfs_ring_info_list[] = {
Christian Königf2ba57b2013-04-08 12:41:29 +0200546 {"radeon_ring_gfx", radeon_debugfs_ring_info, 0, &radeon_gfx_index},
547 {"radeon_ring_cp1", radeon_debugfs_ring_info, 0, &cayman_cp1_index},
548 {"radeon_ring_cp2", radeon_debugfs_ring_info, 0, &cayman_cp2_index},
549 {"radeon_ring_dma1", radeon_debugfs_ring_info, 0, &radeon_dma1_index},
550 {"radeon_ring_dma2", radeon_debugfs_ring_info, 0, &radeon_dma2_index},
551 {"radeon_ring_uvd", radeon_debugfs_ring_info, 0, &r600_uvd_index},
Christian Königd93f7932013-05-23 12:10:04 +0200552 {"radeon_ring_vce1", radeon_debugfs_ring_info, 0, &si_vce1_index},
553 {"radeon_ring_vce2", radeon_debugfs_ring_info, 0, &si_vce2_index},
Christian Königaf9720f2011-10-24 17:08:44 +0200554};
555
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200556#endif
557
Lauri Kasanen1109ca02012-08-31 13:43:50 -0400558static int radeon_debugfs_ring_init(struct radeon_device *rdev, struct radeon_ring *ring)
Christian Königaf9720f2011-10-24 17:08:44 +0200559{
560#if defined(CONFIG_DEBUG_FS)
Christian Königec1a6cc2012-05-02 15:11:11 +0200561 unsigned i;
562 for (i = 0; i < ARRAY_SIZE(radeon_debugfs_ring_info_list); ++i) {
563 struct drm_info_list *info = &radeon_debugfs_ring_info_list[i];
564 int ridx = *(int*)radeon_debugfs_ring_info_list[i].data;
565 unsigned r;
566
567 if (&rdev->ring[ridx] != ring)
568 continue;
569
570 r = radeon_debugfs_add_files(rdev, info, 1);
571 if (r)
572 return r;
573 }
Christian Königaf9720f2011-10-24 17:08:44 +0200574#endif
Christian Königec1a6cc2012-05-02 15:11:11 +0200575 return 0;
Christian Königaf9720f2011-10-24 17:08:44 +0200576}