blob: 1b783f0e6d3ad084b0a62629a4b5d67c9e92453f [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 */
29#include <linux/seq_file.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090030#include <linux/slab.h>
David Howells760285e2012-10-02 18:01:07 +010031#include <drm/drmP.h>
32#include <drm/radeon_drm.h>
Jerome Glisse771fe6b2009-06-05 14:42:42 +020033#include "radeon_reg.h"
34#include "radeon.h"
35#include "atom.h"
36
Jerome Glissec507f7e2012-05-09 15:34:58 +020037/*
Alex Deucher75923282012-07-17 14:02:38 -040038 * IB
39 * IBs (Indirect Buffers) and areas of GPU accessible memory where
40 * commands are stored. You can put a pointer to the IB in the
41 * command ring and the hw will fetch the commands from the IB
42 * and execute them. Generally userspace acceleration drivers
43 * produce command buffers which are send to the kernel and
44 * put in IBs for execution by the requested ring.
Jerome Glissec507f7e2012-05-09 15:34:58 +020045 */
Lauri Kasanen1109ca02012-08-31 13:43:50 -040046static int radeon_debugfs_sa_init(struct radeon_device *rdev);
Jerome Glisse771fe6b2009-06-05 14:42:42 +020047
Alex Deucher75923282012-07-17 14:02:38 -040048/**
49 * radeon_ib_get - request an IB (Indirect Buffer)
50 *
51 * @rdev: radeon_device pointer
52 * @ring: ring index the IB is associated with
53 * @ib: IB object returned
54 * @size: requested IB size
55 *
56 * Request an IB (all asics). IBs are allocated using the
57 * suballocator.
58 * Returns 0 on success, error on failure.
59 */
Jerome Glisse69e130a2011-12-21 12:13:46 -050060int radeon_ib_get(struct radeon_device *rdev, int ring,
Christian König4bf3dd92012-08-06 18:57:44 +020061 struct radeon_ib *ib, struct radeon_vm *vm,
62 unsigned size)
Jerome Glisse771fe6b2009-06-05 14:42:42 +020063{
Christian König1654b812013-11-12 12:58:05 +010064 int r;
Jerome Glisse771fe6b2009-06-05 14:42:42 +020065
Jerome Glissef2e39222012-05-09 15:35:02 +020066 r = radeon_sa_bo_new(rdev, &rdev->ring_tmp_bo, &ib->sa_bo, size, 256, true);
Jerome Glisse771fe6b2009-06-05 14:42:42 +020067 if (r) {
Jerome Glissec507f7e2012-05-09 15:34:58 +020068 dev_err(rdev->dev, "failed to get a new IB (%d)\n", r);
Jerome Glissec507f7e2012-05-09 15:34:58 +020069 return r;
70 }
Jerome Glisseb15ba512011-11-15 11:48:34 -050071
Christian König220907d2012-05-10 16:46:43 +020072 r = radeon_semaphore_create(rdev, &ib->semaphore);
73 if (r) {
74 return r;
75 }
76
Christian König876dc9f2012-05-08 14:24:01 +020077 ib->ring = ring;
78 ib->fence = NULL;
Jerome Glissef2e39222012-05-09 15:35:02 +020079 ib->ptr = radeon_sa_bo_cpu_addr(ib->sa_bo);
Christian König4bf3dd92012-08-06 18:57:44 +020080 ib->vm = vm;
81 if (vm) {
Christian Königca19f212012-09-11 16:09:59 +020082 /* ib pool is bound at RADEON_VA_IB_OFFSET in virtual address
83 * space and soffset is the offset inside the pool bo
Christian König4bf3dd92012-08-06 18:57:44 +020084 */
Christian Königca19f212012-09-11 16:09:59 +020085 ib->gpu_addr = ib->sa_bo->soffset + RADEON_VA_IB_OFFSET;
Christian König4bf3dd92012-08-06 18:57:44 +020086 } else {
87 ib->gpu_addr = radeon_sa_bo_gpu_addr(ib->sa_bo);
88 }
Jerome Glissef2e39222012-05-09 15:35:02 +020089 ib->is_const_ib = false;
Jerome Glissec507f7e2012-05-09 15:34:58 +020090
91 return 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +020092}
93
Alex Deucher75923282012-07-17 14:02:38 -040094/**
95 * radeon_ib_free - free an IB (Indirect Buffer)
96 *
97 * @rdev: radeon_device pointer
98 * @ib: IB object to free
99 *
100 * Free an IB (all asics).
101 */
Jerome Glissef2e39222012-05-09 15:35:02 +0200102void radeon_ib_free(struct radeon_device *rdev, struct radeon_ib *ib)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200103{
Christian König220907d2012-05-10 16:46:43 +0200104 radeon_semaphore_free(rdev, &ib->semaphore, ib->fence);
Jerome Glissef2e39222012-05-09 15:35:02 +0200105 radeon_sa_bo_free(rdev, &ib->sa_bo, ib->fence);
106 radeon_fence_unref(&ib->fence);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200107}
108
Alex Deucher75923282012-07-17 14:02:38 -0400109/**
110 * radeon_ib_schedule - schedule an IB (Indirect Buffer) on the ring
111 *
112 * @rdev: radeon_device pointer
113 * @ib: IB object to schedule
114 * @const_ib: Const IB to schedule (SI only)
115 *
116 * Schedule an IB on the associated ring (all asics).
117 * Returns 0 on success, error on failure.
118 *
119 * On SI, there are two parallel engines fed from the primary ring,
120 * the CE (Constant Engine) and the DE (Drawing Engine). Since
121 * resource descriptors have moved to memory, the CE allows you to
122 * prime the caches while the DE is updating register state so that
123 * the resource descriptors will be already in cache when the draw is
124 * processed. To accomplish this, the userspace driver submits two
125 * IBs, one for the CE and one for the DE. If there is a CE IB (called
126 * a CONST_IB), it will be put on the ring prior to the DE IB. Prior
127 * to SI there was just a DE IB.
128 */
Christian König4ef72562012-07-13 13:06:00 +0200129int radeon_ib_schedule(struct radeon_device *rdev, struct radeon_ib *ib,
130 struct radeon_ib *const_ib)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200131{
Christian König876dc9f2012-05-08 14:24:01 +0200132 struct radeon_ring *ring = &rdev->ring[ib->ring];
Christian König1654b812013-11-12 12:58:05 +0100133 int r = 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200134
Christian Könige32eb502011-10-23 12:56:27 +0200135 if (!ib->length_dw || !ring->ready) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200136 /* TODO: Nothings in the ib we should report. */
Jerome Glissec507f7e2012-05-09 15:34:58 +0200137 dev_err(rdev->dev, "couldn't schedule ib\n");
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200138 return -EINVAL;
139 }
Dave Airlieecb114a2009-09-15 11:12:56 +1000140
Dave Airlie6cdf6582009-06-29 18:29:13 +1000141 /* 64 dwords should be enough for fence too */
Christian König220907d2012-05-10 16:46:43 +0200142 r = radeon_ring_lock(rdev, ring, 64 + RADEON_NUM_RINGS * 8);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200143 if (r) {
Jerome Glissec507f7e2012-05-09 15:34:58 +0200144 dev_err(rdev->dev, "scheduling IB failed (%d).\n", r);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200145 return r;
146 }
Christian König1654b812013-11-12 12:58:05 +0100147
148 /* sync with other rings */
149 r = radeon_semaphore_sync_rings(rdev, ib->semaphore, ib->ring);
150 if (r) {
151 dev_err(rdev->dev, "failed to sync rings (%d)\n", r);
152 radeon_ring_unlock_undo(rdev, ring);
153 return r;
Christian König220907d2012-05-10 16:46:43 +0200154 }
Christian König1654b812013-11-12 12:58:05 +0100155
Christian König9b40e5d2012-08-08 12:22:43 +0200156 /* if we can't remember our last VM flush then flush now! */
Jerome Glisse466476d2013-04-16 12:20:15 -0400157 /* XXX figure out why we have to flush for every IB */
158 if (ib->vm /*&& !ib->vm->last_flush*/) {
Alex Deucher498522b2012-10-02 14:43:38 -0400159 radeon_ring_vm_flush(rdev, ib->ring, ib->vm);
Christian König9b40e5d2012-08-08 12:22:43 +0200160 }
Christian König4ef72562012-07-13 13:06:00 +0200161 if (const_ib) {
162 radeon_ring_ib_execute(rdev, const_ib->ring, const_ib);
163 radeon_semaphore_free(rdev, &const_ib->semaphore, NULL);
164 }
Christian König876dc9f2012-05-08 14:24:01 +0200165 radeon_ring_ib_execute(rdev, ib->ring, ib);
166 r = radeon_fence_emit(rdev, &ib->fence, ib->ring);
167 if (r) {
168 dev_err(rdev->dev, "failed to emit fence for new IB (%d)\n", r);
169 radeon_ring_unlock_undo(rdev, ring);
170 return r;
171 }
Christian König4ef72562012-07-13 13:06:00 +0200172 if (const_ib) {
173 const_ib->fence = radeon_fence_ref(ib->fence);
174 }
Christian König9b40e5d2012-08-08 12:22:43 +0200175 /* we just flushed the VM, remember that */
176 if (ib->vm && !ib->vm->last_flush) {
177 ib->vm->last_flush = radeon_fence_ref(ib->fence);
178 }
Christian Könige32eb502011-10-23 12:56:27 +0200179 radeon_ring_unlock_commit(rdev, ring);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200180 return 0;
181}
182
Alex Deucher75923282012-07-17 14:02:38 -0400183/**
184 * radeon_ib_pool_init - Init the IB (Indirect Buffer) pool
185 *
186 * @rdev: radeon_device pointer
187 *
188 * Initialize the suballocator to manage a pool of memory
189 * for use as IBs (all asics).
190 * Returns 0 on success, error on failure.
191 */
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200192int radeon_ib_pool_init(struct radeon_device *rdev)
193{
Jerome Glissec507f7e2012-05-09 15:34:58 +0200194 int r;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200195
Jerome Glissec507f7e2012-05-09 15:34:58 +0200196 if (rdev->ib_pool_ready) {
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200197 return 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200198 }
Jerome Glissec507f7e2012-05-09 15:34:58 +0200199 r = radeon_sa_bo_manager_init(rdev, &rdev->ring_tmp_bo,
Christian Königc3b7fe82012-05-09 15:34:56 +0200200 RADEON_IB_POOL_SIZE*64*1024,
Alex Deucher6c4f9782013-07-12 15:46:09 -0400201 RADEON_GPU_PAGE_SIZE,
Christian Königc3b7fe82012-05-09 15:34:56 +0200202 RADEON_GEM_DOMAIN_GTT);
203 if (r) {
Christian Königc3b7fe82012-05-09 15:34:56 +0200204 return r;
205 }
Christian König2898c342012-07-05 11:55:34 +0200206
207 r = radeon_sa_bo_manager_start(rdev, &rdev->ring_tmp_bo);
208 if (r) {
209 return r;
210 }
211
Jerome Glissec507f7e2012-05-09 15:34:58 +0200212 rdev->ib_pool_ready = true;
213 if (radeon_debugfs_sa_init(rdev)) {
214 dev_err(rdev->dev, "failed to register debugfs file for SA\n");
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200215 }
Jerome Glisseb15ba512011-11-15 11:48:34 -0500216 return 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200217}
218
Alex Deucher75923282012-07-17 14:02:38 -0400219/**
220 * radeon_ib_pool_fini - Free the IB (Indirect Buffer) pool
221 *
222 * @rdev: radeon_device pointer
223 *
224 * Tear down the suballocator managing the pool of memory
225 * for use as IBs (all asics).
226 */
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200227void radeon_ib_pool_fini(struct radeon_device *rdev)
228{
Jerome Glissec507f7e2012-05-09 15:34:58 +0200229 if (rdev->ib_pool_ready) {
Christian König2898c342012-07-05 11:55:34 +0200230 radeon_sa_bo_manager_suspend(rdev, &rdev->ring_tmp_bo);
Jerome Glissec507f7e2012-05-09 15:34:58 +0200231 radeon_sa_bo_manager_fini(rdev, &rdev->ring_tmp_bo);
232 rdev->ib_pool_ready = false;
Alex Deucherca2af922010-05-06 11:02:24 -0400233 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200234}
235
Alex Deucher75923282012-07-17 14:02:38 -0400236/**
237 * radeon_ib_ring_tests - test IBs on the rings
238 *
239 * @rdev: radeon_device pointer
240 *
241 * Test an IB (Indirect Buffer) on each ring.
242 * If the test fails, disable the ring.
243 * Returns 0 on success, error if the primary GFX ring
244 * IB test fails.
245 */
Christian König7bd560e2012-05-02 15:11:12 +0200246int radeon_ib_ring_tests(struct radeon_device *rdev)
247{
248 unsigned i;
249 int r;
250
251 for (i = 0; i < RADEON_NUM_RINGS; ++i) {
252 struct radeon_ring *ring = &rdev->ring[i];
253
254 if (!ring->ready)
255 continue;
256
257 r = radeon_ib_test(rdev, i, ring);
258 if (r) {
259 ring->ready = false;
260
261 if (i == RADEON_RING_TYPE_GFX_INDEX) {
262 /* oh, oh, that's really bad */
263 DRM_ERROR("radeon: failed testing IB on GFX ring (%d).\n", r);
264 rdev->accel_working = false;
265 return r;
266
267 } else {
268 /* still not good, but we can live with it */
269 DRM_ERROR("radeon: failed testing IB on ring %d (%d).\n", i, r);
270 }
271 }
272 }
273 return 0;
274}
275
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200276/*
Alex Deucher75923282012-07-17 14:02:38 -0400277 * Rings
278 * Most engines on the GPU are fed via ring buffers. Ring
279 * buffers are areas of GPU accessible memory that the host
280 * writes commands into and the GPU reads commands out of.
281 * There is a rptr (read pointer) that determines where the
282 * GPU is currently reading, and a wptr (write pointer)
283 * which determines where the host has written. When the
284 * pointers are equal, the ring is idle. When the host
285 * writes commands to the ring buffer, it increments the
286 * wptr. The GPU then starts fetching commands and executes
287 * them until the pointers are equal again.
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200288 */
Lauri Kasanen1109ca02012-08-31 13:43:50 -0400289static int radeon_debugfs_ring_init(struct radeon_device *rdev, struct radeon_ring *ring);
Jerome Glissec507f7e2012-05-09 15:34:58 +0200290
Alex Deucher75923282012-07-17 14:02:38 -0400291/**
292 * radeon_ring_write - write a value to the ring
293 *
294 * @ring: radeon_ring structure holding ring information
295 * @v: dword (dw) value to write
296 *
297 * Write a value to the requested ring buffer (all asics).
298 */
Jerome Glissec507f7e2012-05-09 15:34:58 +0200299void radeon_ring_write(struct radeon_ring *ring, uint32_t v)
300{
301#if DRM_DEBUG_CODE
302 if (ring->count_dw <= 0) {
Thomas Friebel8ad33cd2012-10-15 13:16:22 -0400303 DRM_ERROR("radeon: writing more dwords to the ring than expected!\n");
Jerome Glissec507f7e2012-05-09 15:34:58 +0200304 }
305#endif
306 ring->ring[ring->wptr++] = v;
307 ring->wptr &= ring->ptr_mask;
308 ring->count_dw--;
309 ring->ring_free_dw--;
310}
311
Alex Deucher75923282012-07-17 14:02:38 -0400312/**
313 * radeon_ring_supports_scratch_reg - check if the ring supports
314 * writing to scratch registers
315 *
316 * @rdev: radeon_device pointer
317 * @ring: radeon_ring structure holding ring information
318 *
319 * Check if a specific ring supports writing to scratch registers (all asics).
320 * Returns true if the ring supports writing to scratch regs, false if not.
321 */
Alex Deucher89d35802012-07-17 14:02:31 -0400322bool radeon_ring_supports_scratch_reg(struct radeon_device *rdev,
323 struct radeon_ring *ring)
324{
325 switch (ring->idx) {
326 case RADEON_RING_TYPE_GFX_INDEX:
327 case CAYMAN_RING_TYPE_CP1_INDEX:
328 case CAYMAN_RING_TYPE_CP2_INDEX:
329 return true;
330 default:
331 return false;
332 }
333}
334
Alex Deucher75923282012-07-17 14:02:38 -0400335/**
336 * radeon_ring_free_size - update the free size
337 *
338 * @rdev: radeon_device pointer
339 * @ring: radeon_ring structure holding ring information
340 *
341 * Update the free dw slots in the ring buffer (all asics).
342 */
Christian Könige32eb502011-10-23 12:56:27 +0200343void radeon_ring_free_size(struct radeon_device *rdev, struct radeon_ring *ring)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200344{
Alex Deucherf93bdef2013-01-29 14:10:56 -0500345 ring->rptr = radeon_ring_get_rptr(rdev, ring);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200346 /* This works because ring_size is a power of 2 */
Christian Könige32eb502011-10-23 12:56:27 +0200347 ring->ring_free_dw = (ring->rptr + (ring->ring_size / 4));
348 ring->ring_free_dw -= ring->wptr;
349 ring->ring_free_dw &= ring->ptr_mask;
350 if (!ring->ring_free_dw) {
351 ring->ring_free_dw = ring->ring_size / 4;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200352 }
353}
354
Alex Deucher75923282012-07-17 14:02:38 -0400355/**
356 * radeon_ring_alloc - allocate space on the ring buffer
357 *
358 * @rdev: radeon_device pointer
359 * @ring: radeon_ring structure holding ring information
360 * @ndw: number of dwords to allocate in the ring buffer
361 *
362 * Allocate @ndw dwords in the ring buffer (all asics).
363 * Returns 0 on success, error on failure.
364 */
Christian Könige32eb502011-10-23 12:56:27 +0200365int radeon_ring_alloc(struct radeon_device *rdev, struct radeon_ring *ring, unsigned ndw)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200366{
367 int r;
368
Alex Deucherfd5d93a2013-01-30 14:24:09 -0500369 /* make sure we aren't trying to allocate more space than there is on the ring */
370 if (ndw > (ring->ring_size / 4))
371 return -ENOMEM;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200372 /* Align requested size with padding so unlock_commit can
373 * pad safely */
Jerome Glisse8444d5c2013-06-19 10:02:28 -0400374 radeon_ring_free_size(rdev, ring);
375 if (ring->ring_free_dw == (ring->ring_size / 4)) {
376 /* This is an empty ring update lockup info to avoid
377 * false positive.
378 */
379 radeon_ring_lockup_update(ring);
380 }
Christian Könige32eb502011-10-23 12:56:27 +0200381 ndw = (ndw + ring->align_mask) & ~ring->align_mask;
382 while (ndw > (ring->ring_free_dw - 1)) {
383 radeon_ring_free_size(rdev, ring);
384 if (ndw < ring->ring_free_dw) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200385 break;
386 }
Alex Deucher8b25ed32012-07-17 14:02:30 -0400387 r = radeon_fence_wait_next_locked(rdev, ring->idx);
Matthew Garrett91700f32010-04-30 15:24:17 -0400388 if (r)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200389 return r;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200390 }
Christian Könige32eb502011-10-23 12:56:27 +0200391 ring->count_dw = ndw;
392 ring->wptr_old = ring->wptr;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200393 return 0;
394}
395
Alex Deucher75923282012-07-17 14:02:38 -0400396/**
397 * radeon_ring_lock - lock the ring and allocate space on it
398 *
399 * @rdev: radeon_device pointer
400 * @ring: radeon_ring structure holding ring information
401 * @ndw: number of dwords to allocate in the ring buffer
402 *
403 * Lock the ring and allocate @ndw dwords in the ring buffer
404 * (all asics).
405 * Returns 0 on success, error on failure.
406 */
Christian Könige32eb502011-10-23 12:56:27 +0200407int radeon_ring_lock(struct radeon_device *rdev, struct radeon_ring *ring, unsigned ndw)
Matthew Garrett91700f32010-04-30 15:24:17 -0400408{
409 int r;
410
Christian Königd6999bc2012-05-09 15:34:45 +0200411 mutex_lock(&rdev->ring_lock);
Christian Könige32eb502011-10-23 12:56:27 +0200412 r = radeon_ring_alloc(rdev, ring, ndw);
Matthew Garrett91700f32010-04-30 15:24:17 -0400413 if (r) {
Christian Königd6999bc2012-05-09 15:34:45 +0200414 mutex_unlock(&rdev->ring_lock);
Matthew Garrett91700f32010-04-30 15:24:17 -0400415 return r;
416 }
417 return 0;
418}
419
Alex Deucher75923282012-07-17 14:02:38 -0400420/**
421 * radeon_ring_commit - tell the GPU to execute the new
422 * commands on the ring buffer
423 *
424 * @rdev: radeon_device pointer
425 * @ring: radeon_ring structure holding ring information
426 *
427 * Update the wptr (write pointer) to tell the GPU to
428 * execute new commands on the ring buffer (all asics).
429 */
Christian Könige32eb502011-10-23 12:56:27 +0200430void radeon_ring_commit(struct radeon_device *rdev, struct radeon_ring *ring)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200431{
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200432 /* We pad to match fetch size */
Christian König07a71332012-07-07 12:11:32 +0200433 while (ring->wptr & ring->align_mask) {
Alex Deucher78c55602011-11-17 14:25:56 -0500434 radeon_ring_write(ring, ring->nop);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200435 }
Daniel Vetter85b23312013-12-11 11:34:45 +0100436 mb();
Alex Deucherf93bdef2013-01-29 14:10:56 -0500437 radeon_ring_set_wptr(rdev, ring);
Matthew Garrett91700f32010-04-30 15:24:17 -0400438}
439
Alex Deucher75923282012-07-17 14:02:38 -0400440/**
441 * radeon_ring_unlock_commit - tell the GPU to execute the new
442 * commands on the ring buffer and unlock it
443 *
444 * @rdev: radeon_device pointer
445 * @ring: radeon_ring structure holding ring information
446 *
447 * Call radeon_ring_commit() then unlock the ring (all asics).
448 */
Christian Könige32eb502011-10-23 12:56:27 +0200449void radeon_ring_unlock_commit(struct radeon_device *rdev, struct radeon_ring *ring)
Matthew Garrett91700f32010-04-30 15:24:17 -0400450{
Christian Könige32eb502011-10-23 12:56:27 +0200451 radeon_ring_commit(rdev, ring);
Christian Königd6999bc2012-05-09 15:34:45 +0200452 mutex_unlock(&rdev->ring_lock);
453}
454
Alex Deucher75923282012-07-17 14:02:38 -0400455/**
456 * radeon_ring_undo - reset the wptr
457 *
458 * @ring: radeon_ring structure holding ring information
459 *
Paul Bolle501f9d4c2012-11-20 22:31:06 +0100460 * Reset the driver's copy of the wptr (all asics).
Alex Deucher75923282012-07-17 14:02:38 -0400461 */
Christian Königd6999bc2012-05-09 15:34:45 +0200462void radeon_ring_undo(struct radeon_ring *ring)
463{
464 ring->wptr = ring->wptr_old;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200465}
466
Alex Deucher75923282012-07-17 14:02:38 -0400467/**
468 * radeon_ring_unlock_undo - reset the wptr and unlock the ring
469 *
470 * @ring: radeon_ring structure holding ring information
471 *
472 * Call radeon_ring_undo() then unlock the ring (all asics).
473 */
Christian Könige32eb502011-10-23 12:56:27 +0200474void radeon_ring_unlock_undo(struct radeon_device *rdev, struct radeon_ring *ring)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200475{
Christian Königd6999bc2012-05-09 15:34:45 +0200476 radeon_ring_undo(ring);
477 mutex_unlock(&rdev->ring_lock);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200478}
479
Alex Deucher75923282012-07-17 14:02:38 -0400480/**
481 * radeon_ring_force_activity - add some nop packets to the ring
482 *
483 * @rdev: radeon_device pointer
484 * @ring: radeon_ring structure holding ring information
485 *
486 * Add some nop packets to the ring to force activity (all asics).
487 * Used for lockup detection to see if the rptr is advancing.
488 */
Christian König7b9ef162012-05-02 15:11:23 +0200489void radeon_ring_force_activity(struct radeon_device *rdev, struct radeon_ring *ring)
490{
491 int r;
492
Christian König7b9ef162012-05-02 15:11:23 +0200493 radeon_ring_free_size(rdev, ring);
494 if (ring->rptr == ring->wptr) {
495 r = radeon_ring_alloc(rdev, ring, 1);
496 if (!r) {
497 radeon_ring_write(ring, ring->nop);
498 radeon_ring_commit(rdev, ring);
499 }
500 }
Christian König7b9ef162012-05-02 15:11:23 +0200501}
502
Alex Deucher75923282012-07-17 14:02:38 -0400503/**
Paul Bolle501f9d4c2012-11-20 22:31:06 +0100504 * radeon_ring_lockup_update - update lockup variables
Alex Deucher75923282012-07-17 14:02:38 -0400505 *
506 * @ring: radeon_ring structure holding ring information
507 *
508 * Update the last rptr value and timestamp (all asics).
509 */
Christian König069211e2012-05-02 15:11:20 +0200510void radeon_ring_lockup_update(struct radeon_ring *ring)
511{
512 ring->last_rptr = ring->rptr;
513 ring->last_activity = jiffies;
514}
515
516/**
517 * radeon_ring_test_lockup() - check if ring is lockedup by recording information
518 * @rdev: radeon device structure
519 * @ring: radeon_ring structure holding ring information
520 *
521 * We don't need to initialize the lockup tracking information as we will either
522 * have CP rptr to a different value of jiffies wrap around which will force
523 * initialization of the lockup tracking informations.
524 *
525 * A possible false positivie is if we get call after while and last_cp_rptr ==
526 * the current CP rptr, even if it's unlikely it might happen. To avoid this
527 * if the elapsed time since last call is bigger than 2 second than we return
528 * false and update the tracking information. Due to this the caller must call
529 * radeon_ring_test_lockup several time in less than 2sec for lockup to be reported
530 * the fencing code should be cautious about that.
531 *
532 * Caller should write to the ring to force CP to do something so we don't get
533 * false positive when CP is just gived nothing to do.
534 *
535 **/
536bool radeon_ring_test_lockup(struct radeon_device *rdev, struct radeon_ring *ring)
537{
538 unsigned long cjiffies, elapsed;
Christian König069211e2012-05-02 15:11:20 +0200539
540 cjiffies = jiffies;
541 if (!time_after(cjiffies, ring->last_activity)) {
542 /* likely a wrap around */
543 radeon_ring_lockup_update(ring);
544 return false;
545 }
Alex Deucherf93bdef2013-01-29 14:10:56 -0500546 ring->rptr = radeon_ring_get_rptr(rdev, ring);
Christian König069211e2012-05-02 15:11:20 +0200547 if (ring->rptr != ring->last_rptr) {
548 /* CP is still working no lockup */
549 radeon_ring_lockup_update(ring);
550 return false;
551 }
552 elapsed = jiffies_to_msecs(cjiffies - ring->last_activity);
Christian König3368ff02012-05-02 15:11:21 +0200553 if (radeon_lockup_timeout && elapsed >= radeon_lockup_timeout) {
Christian König069211e2012-05-02 15:11:20 +0200554 dev_err(rdev->dev, "GPU lockup CP stall for more than %lumsec\n", elapsed);
555 return true;
556 }
557 /* give a chance to the GPU ... */
558 return false;
559}
560
Christian König55d7c222012-07-09 11:52:44 +0200561/**
562 * radeon_ring_backup - Back up the content of a ring
563 *
564 * @rdev: radeon_device pointer
565 * @ring: the ring we want to back up
566 *
567 * Saves all unprocessed commits from a ring, returns the number of dwords saved.
568 */
569unsigned radeon_ring_backup(struct radeon_device *rdev, struct radeon_ring *ring,
570 uint32_t **data)
571{
572 unsigned size, ptr, i;
Christian König55d7c222012-07-09 11:52:44 +0200573
574 /* just in case lock the ring */
575 mutex_lock(&rdev->ring_lock);
576 *data = NULL;
577
Alex Deucher89d35802012-07-17 14:02:31 -0400578 if (ring->ring_obj == NULL) {
Christian König55d7c222012-07-09 11:52:44 +0200579 mutex_unlock(&rdev->ring_lock);
580 return 0;
581 }
582
583 /* it doesn't make sense to save anything if all fences are signaled */
Alex Deucher8b25ed32012-07-17 14:02:30 -0400584 if (!radeon_fence_count_emitted(rdev, ring->idx)) {
Christian König55d7c222012-07-09 11:52:44 +0200585 mutex_unlock(&rdev->ring_lock);
586 return 0;
587 }
588
589 /* calculate the number of dw on the ring */
Alex Deucher89d35802012-07-17 14:02:31 -0400590 if (ring->rptr_save_reg)
591 ptr = RREG32(ring->rptr_save_reg);
592 else if (rdev->wb.enabled)
593 ptr = le32_to_cpu(*ring->next_rptr_cpu_addr);
594 else {
595 /* no way to read back the next rptr */
596 mutex_unlock(&rdev->ring_lock);
597 return 0;
598 }
599
Christian König55d7c222012-07-09 11:52:44 +0200600 size = ring->wptr + (ring->ring_size / 4);
601 size -= ptr;
602 size &= ring->ptr_mask;
603 if (size == 0) {
604 mutex_unlock(&rdev->ring_lock);
605 return 0;
606 }
607
608 /* and then save the content of the ring */
Dan Carpenter1e179d42012-07-20 14:17:00 +0300609 *data = kmalloc_array(size, sizeof(uint32_t), GFP_KERNEL);
610 if (!*data) {
611 mutex_unlock(&rdev->ring_lock);
612 return 0;
613 }
Christian König55d7c222012-07-09 11:52:44 +0200614 for (i = 0; i < size; ++i) {
615 (*data)[i] = ring->ring[ptr++];
616 ptr &= ring->ptr_mask;
617 }
618
619 mutex_unlock(&rdev->ring_lock);
620 return size;
621}
622
623/**
624 * radeon_ring_restore - append saved commands to the ring again
625 *
626 * @rdev: radeon_device pointer
627 * @ring: ring to append commands to
628 * @size: number of dwords we want to write
629 * @data: saved commands
630 *
631 * Allocates space on the ring and restore the previously saved commands.
632 */
633int radeon_ring_restore(struct radeon_device *rdev, struct radeon_ring *ring,
634 unsigned size, uint32_t *data)
635{
636 int i, r;
637
638 if (!size || !data)
639 return 0;
640
641 /* restore the saved ring content */
642 r = radeon_ring_lock(rdev, ring, size);
643 if (r)
644 return r;
645
646 for (i = 0; i < size; ++i) {
647 radeon_ring_write(ring, data[i]);
648 }
649
650 radeon_ring_unlock_commit(rdev, ring);
651 kfree(data);
652 return 0;
653}
654
Alex Deucher75923282012-07-17 14:02:38 -0400655/**
656 * radeon_ring_init - init driver ring struct.
657 *
658 * @rdev: radeon_device pointer
659 * @ring: radeon_ring structure holding ring information
660 * @ring_size: size of the ring
661 * @rptr_offs: offset of the rptr writeback location in the WB buffer
Alex Deucher75923282012-07-17 14:02:38 -0400662 * @nop: nop packet for this ring
663 *
664 * Initialize the driver information for the selected ring (all asics).
665 * Returns 0 on success, error on failure.
666 */
Christian Könige32eb502011-10-23 12:56:27 +0200667int radeon_ring_init(struct radeon_device *rdev, struct radeon_ring *ring, unsigned ring_size,
Alex Deucherea31bf62013-12-09 19:44:30 -0500668 unsigned rptr_offs, u32 nop)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200669{
670 int r;
671
Christian Könige32eb502011-10-23 12:56:27 +0200672 ring->ring_size = ring_size;
673 ring->rptr_offs = rptr_offs;
Alex Deucher78c55602011-11-17 14:25:56 -0500674 ring->nop = nop;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200675 /* Allocate ring buffer */
Christian Könige32eb502011-10-23 12:56:27 +0200676 if (ring->ring_obj == NULL) {
677 r = radeon_bo_create(rdev, ring->ring_size, PAGE_SIZE, true,
Alex Deucher40f5cf92012-05-10 18:33:13 -0400678 RADEON_GEM_DOMAIN_GTT,
679 NULL, &ring->ring_obj);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200680 if (r) {
Jerome Glisse4c788672009-11-20 14:29:23 +0100681 dev_err(rdev->dev, "(%d) ring create failed\n", r);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200682 return r;
683 }
Christian Könige32eb502011-10-23 12:56:27 +0200684 r = radeon_bo_reserve(ring->ring_obj, false);
Jerome Glisse4c788672009-11-20 14:29:23 +0100685 if (unlikely(r != 0))
686 return r;
Christian Könige32eb502011-10-23 12:56:27 +0200687 r = radeon_bo_pin(ring->ring_obj, RADEON_GEM_DOMAIN_GTT,
688 &ring->gpu_addr);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200689 if (r) {
Christian Könige32eb502011-10-23 12:56:27 +0200690 radeon_bo_unreserve(ring->ring_obj);
Jerome Glisse4c788672009-11-20 14:29:23 +0100691 dev_err(rdev->dev, "(%d) ring pin failed\n", r);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200692 return r;
693 }
Christian Könige32eb502011-10-23 12:56:27 +0200694 r = radeon_bo_kmap(ring->ring_obj,
695 (void **)&ring->ring);
696 radeon_bo_unreserve(ring->ring_obj);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200697 if (r) {
Jerome Glisse4c788672009-11-20 14:29:23 +0100698 dev_err(rdev->dev, "(%d) ring map failed\n", r);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200699 return r;
700 }
701 }
Christian Könige32eb502011-10-23 12:56:27 +0200702 ring->ptr_mask = (ring->ring_size / 4) - 1;
703 ring->ring_free_dw = ring->ring_size / 4;
Alex Deucher89d35802012-07-17 14:02:31 -0400704 if (rdev->wb.enabled) {
705 u32 index = RADEON_WB_RING0_NEXT_RPTR + (ring->idx * 4);
706 ring->next_rptr_gpu_addr = rdev->wb.gpu_addr + index;
707 ring->next_rptr_cpu_addr = &rdev->wb.wb[index/4];
708 }
Christian Königec1a6cc2012-05-02 15:11:11 +0200709 if (radeon_debugfs_ring_init(rdev, ring)) {
710 DRM_ERROR("Failed to register debugfs file for rings !\n");
711 }
Christian König48c0ac92012-08-20 15:38:47 +0200712 radeon_ring_lockup_update(ring);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200713 return 0;
714}
715
Alex Deucher75923282012-07-17 14:02:38 -0400716/**
717 * radeon_ring_fini - tear down the driver ring struct.
718 *
719 * @rdev: radeon_device pointer
720 * @ring: radeon_ring structure holding ring information
721 *
722 * Tear down the driver information for the selected ring (all asics).
723 */
Christian Könige32eb502011-10-23 12:56:27 +0200724void radeon_ring_fini(struct radeon_device *rdev, struct radeon_ring *ring)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200725{
Jerome Glisse4c788672009-11-20 14:29:23 +0100726 int r;
Alex Deucherca2af922010-05-06 11:02:24 -0400727 struct radeon_bo *ring_obj;
Jerome Glisse4c788672009-11-20 14:29:23 +0100728
Christian Königd6999bc2012-05-09 15:34:45 +0200729 mutex_lock(&rdev->ring_lock);
Christian Könige32eb502011-10-23 12:56:27 +0200730 ring_obj = ring->ring_obj;
Christian Königd6999bc2012-05-09 15:34:45 +0200731 ring->ready = false;
Christian Könige32eb502011-10-23 12:56:27 +0200732 ring->ring = NULL;
733 ring->ring_obj = NULL;
Christian Königd6999bc2012-05-09 15:34:45 +0200734 mutex_unlock(&rdev->ring_lock);
Alex Deucherca2af922010-05-06 11:02:24 -0400735
736 if (ring_obj) {
737 r = radeon_bo_reserve(ring_obj, false);
738 if (likely(r == 0)) {
739 radeon_bo_kunmap(ring_obj);
740 radeon_bo_unpin(ring_obj);
741 radeon_bo_unreserve(ring_obj);
742 }
743 radeon_bo_unref(&ring_obj);
744 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200745}
746
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200747/*
748 * Debugfs info
749 */
750#if defined(CONFIG_DEBUG_FS)
Christian Königaf9720f2011-10-24 17:08:44 +0200751
752static int radeon_debugfs_ring_info(struct seq_file *m, void *data)
753{
754 struct drm_info_node *node = (struct drm_info_node *) m->private;
755 struct drm_device *dev = node->minor->dev;
756 struct radeon_device *rdev = dev->dev_private;
757 int ridx = *(int*)node->info_ent->data;
758 struct radeon_ring *ring = &rdev->ring[ridx];
Christian Königdf893a22013-12-12 09:42:37 +0100759
760 uint32_t rptr, wptr, rptr_next;
Christian Königaf9720f2011-10-24 17:08:44 +0200761 unsigned count, i, j;
762
763 radeon_ring_free_size(rdev, ring);
764 count = (ring->ring_size / 4) - ring->ring_free_dw;
Christian Königdf893a22013-12-12 09:42:37 +0100765
766 wptr = radeon_ring_get_wptr(rdev, ring);
Alex Deucherea31bf62013-12-09 19:44:30 -0500767 seq_printf(m, "wptr: 0x%08x [%5d]\n",
768 wptr, wptr);
Christian Königdf893a22013-12-12 09:42:37 +0100769
770 rptr = radeon_ring_get_rptr(rdev, ring);
Alex Deucherea31bf62013-12-09 19:44:30 -0500771 seq_printf(m, "rptr: 0x%08x [%5d]\n",
772 rptr, rptr);
Christian Königdf893a22013-12-12 09:42:37 +0100773
Christian König45df6802012-07-06 16:22:55 +0200774 if (ring->rptr_save_reg) {
Christian Königdf893a22013-12-12 09:42:37 +0100775 rptr_next = RREG32(ring->rptr_save_reg);
776 seq_printf(m, "rptr next(0x%04x): 0x%08x [%5d]\n",
777 ring->rptr_save_reg, rptr_next, rptr_next);
778 } else
779 rptr_next = ~0;
780
781 seq_printf(m, "driver's copy of the wptr: 0x%08x [%5d]\n",
782 ring->wptr, ring->wptr);
783 seq_printf(m, "driver's copy of the rptr: 0x%08x [%5d]\n",
784 ring->rptr, ring->rptr);
785 seq_printf(m, "last semaphore signal addr : 0x%016llx\n",
786 ring->last_semaphore_signal_addr);
787 seq_printf(m, "last semaphore wait addr : 0x%016llx\n",
788 ring->last_semaphore_wait_addr);
Christian Königaf9720f2011-10-24 17:08:44 +0200789 seq_printf(m, "%u free dwords in ring\n", ring->ring_free_dw);
790 seq_printf(m, "%u dwords in ring\n", count);
Christian Königdf893a22013-12-12 09:42:37 +0100791
792 if (!ring->ready)
793 return 0;
794
Jerome Glisse4d009192013-01-02 17:30:34 -0500795 /* print 8 dw before current rptr as often it's the last executed
796 * packet that is the root issue
797 */
Christian Königdf893a22013-12-12 09:42:37 +0100798 i = (rptr + ring->ptr_mask + 1 - 32) & ring->ptr_mask;
799 for (j = 0; j <= (count + 32); j++) {
800 seq_printf(m, "r[%5d]=0x%08x", i, ring->ring[i]);
801 if (rptr == i)
802 seq_puts(m, " *");
803 if (rptr_next == i)
804 seq_puts(m, " #");
805 seq_puts(m, "\n");
806 i = (i + 1) & ring->ptr_mask;
Christian Königaf9720f2011-10-24 17:08:44 +0200807 }
808 return 0;
809}
810
Christian Königf2ba57b2013-04-08 12:41:29 +0200811static int radeon_gfx_index = RADEON_RING_TYPE_GFX_INDEX;
812static int cayman_cp1_index = CAYMAN_RING_TYPE_CP1_INDEX;
813static int cayman_cp2_index = CAYMAN_RING_TYPE_CP2_INDEX;
814static int radeon_dma1_index = R600_RING_TYPE_DMA_INDEX;
815static int radeon_dma2_index = CAYMAN_RING_TYPE_DMA1_INDEX;
816static int r600_uvd_index = R600_RING_TYPE_UVD_INDEX;
Christian Königaf9720f2011-10-24 17:08:44 +0200817
818static struct drm_info_list radeon_debugfs_ring_info_list[] = {
Christian Königf2ba57b2013-04-08 12:41:29 +0200819 {"radeon_ring_gfx", radeon_debugfs_ring_info, 0, &radeon_gfx_index},
820 {"radeon_ring_cp1", radeon_debugfs_ring_info, 0, &cayman_cp1_index},
821 {"radeon_ring_cp2", radeon_debugfs_ring_info, 0, &cayman_cp2_index},
822 {"radeon_ring_dma1", radeon_debugfs_ring_info, 0, &radeon_dma1_index},
823 {"radeon_ring_dma2", radeon_debugfs_ring_info, 0, &radeon_dma2_index},
824 {"radeon_ring_uvd", radeon_debugfs_ring_info, 0, &r600_uvd_index},
Christian Königaf9720f2011-10-24 17:08:44 +0200825};
826
Christian König711a9722012-05-09 15:34:51 +0200827static int radeon_debugfs_sa_info(struct seq_file *m, void *data)
828{
829 struct drm_info_node *node = (struct drm_info_node *) m->private;
830 struct drm_device *dev = node->minor->dev;
831 struct radeon_device *rdev = dev->dev_private;
832
Jerome Glissec507f7e2012-05-09 15:34:58 +0200833 radeon_sa_bo_dump_debug_info(&rdev->ring_tmp_bo, m);
Christian König711a9722012-05-09 15:34:51 +0200834
835 return 0;
836
837}
838
839static struct drm_info_list radeon_debugfs_sa_list[] = {
840 {"radeon_sa_info", &radeon_debugfs_sa_info, 0, NULL},
841};
842
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200843#endif
844
Lauri Kasanen1109ca02012-08-31 13:43:50 -0400845static int radeon_debugfs_ring_init(struct radeon_device *rdev, struct radeon_ring *ring)
Christian Königaf9720f2011-10-24 17:08:44 +0200846{
847#if defined(CONFIG_DEBUG_FS)
Christian Königec1a6cc2012-05-02 15:11:11 +0200848 unsigned i;
849 for (i = 0; i < ARRAY_SIZE(radeon_debugfs_ring_info_list); ++i) {
850 struct drm_info_list *info = &radeon_debugfs_ring_info_list[i];
851 int ridx = *(int*)radeon_debugfs_ring_info_list[i].data;
852 unsigned r;
853
854 if (&rdev->ring[ridx] != ring)
855 continue;
856
857 r = radeon_debugfs_add_files(rdev, info, 1);
858 if (r)
859 return r;
860 }
Christian Königaf9720f2011-10-24 17:08:44 +0200861#endif
Christian Königec1a6cc2012-05-02 15:11:11 +0200862 return 0;
Christian Königaf9720f2011-10-24 17:08:44 +0200863}
864
Lauri Kasanen1109ca02012-08-31 13:43:50 -0400865static int radeon_debugfs_sa_init(struct radeon_device *rdev)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200866{
867#if defined(CONFIG_DEBUG_FS)
Jerome Glissec507f7e2012-05-09 15:34:58 +0200868 return radeon_debugfs_add_files(rdev, radeon_debugfs_sa_list, 1);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200869#else
870 return 0;
871#endif
872}