blob: 7cfea7e4583fc1f92e6c548a447e4e3486675473 [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
Christian König4d152642014-02-20 21:48:00 +010066 r = radeon_sa_bo_new(rdev, &rdev->ring_tmp_bo, &ib->sa_bo, size, 256);
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önig1c61eae2014-02-18 01:50:22 -0700142 r = radeon_ring_lock(rdev, ring, 64 + RADEON_NUM_SYNCS * 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
Christian König529364e2014-02-20 19:33:15 +0100148 /* grab a vm id if necessary */
149 if (ib->vm) {
150 struct radeon_fence *vm_id_fence;
151 vm_id_fence = radeon_vm_grab_id(rdev, ib->vm, ib->ring);
152 radeon_semaphore_sync_to(ib->semaphore, vm_id_fence);
153 }
154
Christian König1654b812013-11-12 12:58:05 +0100155 /* sync with other rings */
156 r = radeon_semaphore_sync_rings(rdev, ib->semaphore, ib->ring);
157 if (r) {
158 dev_err(rdev->dev, "failed to sync rings (%d)\n", r);
159 radeon_ring_unlock_undo(rdev, ring);
160 return r;
Christian König220907d2012-05-10 16:46:43 +0200161 }
Christian König1654b812013-11-12 12:58:05 +0100162
Christian Königfa688342014-02-20 10:47:05 +0100163 if (ib->vm)
164 radeon_vm_flush(rdev, ib->vm, ib->ring);
165
Christian König4ef72562012-07-13 13:06:00 +0200166 if (const_ib) {
167 radeon_ring_ib_execute(rdev, const_ib->ring, const_ib);
168 radeon_semaphore_free(rdev, &const_ib->semaphore, NULL);
169 }
Christian König876dc9f2012-05-08 14:24:01 +0200170 radeon_ring_ib_execute(rdev, ib->ring, ib);
171 r = radeon_fence_emit(rdev, &ib->fence, ib->ring);
172 if (r) {
173 dev_err(rdev->dev, "failed to emit fence for new IB (%d)\n", r);
174 radeon_ring_unlock_undo(rdev, ring);
175 return r;
176 }
Christian König4ef72562012-07-13 13:06:00 +0200177 if (const_ib) {
178 const_ib->fence = radeon_fence_ref(ib->fence);
179 }
Christian Königfa688342014-02-20 10:47:05 +0100180
181 if (ib->vm)
182 radeon_vm_fence(rdev, ib->vm, ib->fence);
183
Christian Könige32eb502011-10-23 12:56:27 +0200184 radeon_ring_unlock_commit(rdev, ring);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200185 return 0;
186}
187
Alex Deucher75923282012-07-17 14:02:38 -0400188/**
189 * radeon_ib_pool_init - Init the IB (Indirect Buffer) pool
190 *
191 * @rdev: radeon_device pointer
192 *
193 * Initialize the suballocator to manage a pool of memory
194 * for use as IBs (all asics).
195 * Returns 0 on success, error on failure.
196 */
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200197int radeon_ib_pool_init(struct radeon_device *rdev)
198{
Jerome Glissec507f7e2012-05-09 15:34:58 +0200199 int r;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200200
Jerome Glissec507f7e2012-05-09 15:34:58 +0200201 if (rdev->ib_pool_ready) {
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200202 return 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200203 }
Jerome Glissec507f7e2012-05-09 15:34:58 +0200204 r = radeon_sa_bo_manager_init(rdev, &rdev->ring_tmp_bo,
Christian Königc3b7fe82012-05-09 15:34:56 +0200205 RADEON_IB_POOL_SIZE*64*1024,
Alex Deucher6c4f9782013-07-12 15:46:09 -0400206 RADEON_GPU_PAGE_SIZE,
Michel Dänzer02376d82014-07-17 19:01:08 +0900207 RADEON_GEM_DOMAIN_GTT, 0);
Christian Königc3b7fe82012-05-09 15:34:56 +0200208 if (r) {
Christian Königc3b7fe82012-05-09 15:34:56 +0200209 return r;
210 }
Christian König2898c342012-07-05 11:55:34 +0200211
212 r = radeon_sa_bo_manager_start(rdev, &rdev->ring_tmp_bo);
213 if (r) {
214 return r;
215 }
216
Jerome Glissec507f7e2012-05-09 15:34:58 +0200217 rdev->ib_pool_ready = true;
218 if (radeon_debugfs_sa_init(rdev)) {
219 dev_err(rdev->dev, "failed to register debugfs file for SA\n");
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200220 }
Jerome Glisseb15ba512011-11-15 11:48:34 -0500221 return 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200222}
223
Alex Deucher75923282012-07-17 14:02:38 -0400224/**
225 * radeon_ib_pool_fini - Free the IB (Indirect Buffer) pool
226 *
227 * @rdev: radeon_device pointer
228 *
229 * Tear down the suballocator managing the pool of memory
230 * for use as IBs (all asics).
231 */
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200232void radeon_ib_pool_fini(struct radeon_device *rdev)
233{
Jerome Glissec507f7e2012-05-09 15:34:58 +0200234 if (rdev->ib_pool_ready) {
Christian König2898c342012-07-05 11:55:34 +0200235 radeon_sa_bo_manager_suspend(rdev, &rdev->ring_tmp_bo);
Jerome Glissec507f7e2012-05-09 15:34:58 +0200236 radeon_sa_bo_manager_fini(rdev, &rdev->ring_tmp_bo);
237 rdev->ib_pool_ready = false;
Alex Deucherca2af922010-05-06 11:02:24 -0400238 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200239}
240
Alex Deucher75923282012-07-17 14:02:38 -0400241/**
242 * radeon_ib_ring_tests - test IBs on the rings
243 *
244 * @rdev: radeon_device pointer
245 *
246 * Test an IB (Indirect Buffer) on each ring.
247 * If the test fails, disable the ring.
248 * Returns 0 on success, error if the primary GFX ring
249 * IB test fails.
250 */
Christian König7bd560e2012-05-02 15:11:12 +0200251int radeon_ib_ring_tests(struct radeon_device *rdev)
252{
253 unsigned i;
254 int r;
255
256 for (i = 0; i < RADEON_NUM_RINGS; ++i) {
257 struct radeon_ring *ring = &rdev->ring[i];
258
259 if (!ring->ready)
260 continue;
261
262 r = radeon_ib_test(rdev, i, ring);
263 if (r) {
264 ring->ready = false;
Christian König06a139f2014-03-25 11:41:40 +0100265 rdev->needs_reset = false;
Christian König7bd560e2012-05-02 15:11:12 +0200266
267 if (i == RADEON_RING_TYPE_GFX_INDEX) {
268 /* oh, oh, that's really bad */
269 DRM_ERROR("radeon: failed testing IB on GFX ring (%d).\n", r);
270 rdev->accel_working = false;
271 return r;
272
273 } else {
274 /* still not good, but we can live with it */
275 DRM_ERROR("radeon: failed testing IB on ring %d (%d).\n", i, r);
276 }
277 }
278 }
279 return 0;
280}
281
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200282/*
Alex Deucher75923282012-07-17 14:02:38 -0400283 * Rings
284 * Most engines on the GPU are fed via ring buffers. Ring
285 * buffers are areas of GPU accessible memory that the host
286 * writes commands into and the GPU reads commands out of.
287 * There is a rptr (read pointer) that determines where the
288 * GPU is currently reading, and a wptr (write pointer)
289 * which determines where the host has written. When the
290 * pointers are equal, the ring is idle. When the host
291 * writes commands to the ring buffer, it increments the
292 * wptr. The GPU then starts fetching commands and executes
293 * them until the pointers are equal again.
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200294 */
Lauri Kasanen1109ca02012-08-31 13:43:50 -0400295static int radeon_debugfs_ring_init(struct radeon_device *rdev, struct radeon_ring *ring);
Jerome Glissec507f7e2012-05-09 15:34:58 +0200296
Alex Deucher75923282012-07-17 14:02:38 -0400297/**
298 * radeon_ring_write - write a value to the ring
299 *
300 * @ring: radeon_ring structure holding ring information
301 * @v: dword (dw) value to write
302 *
303 * Write a value to the requested ring buffer (all asics).
304 */
Jerome Glissec507f7e2012-05-09 15:34:58 +0200305void radeon_ring_write(struct radeon_ring *ring, uint32_t v)
306{
307#if DRM_DEBUG_CODE
308 if (ring->count_dw <= 0) {
Thomas Friebel8ad33cd2012-10-15 13:16:22 -0400309 DRM_ERROR("radeon: writing more dwords to the ring than expected!\n");
Jerome Glissec507f7e2012-05-09 15:34:58 +0200310 }
311#endif
312 ring->ring[ring->wptr++] = v;
313 ring->wptr &= ring->ptr_mask;
314 ring->count_dw--;
315 ring->ring_free_dw--;
316}
317
Alex Deucher75923282012-07-17 14:02:38 -0400318/**
319 * radeon_ring_supports_scratch_reg - check if the ring supports
320 * writing to scratch registers
321 *
322 * @rdev: radeon_device pointer
323 * @ring: radeon_ring structure holding ring information
324 *
325 * Check if a specific ring supports writing to scratch registers (all asics).
326 * Returns true if the ring supports writing to scratch regs, false if not.
327 */
Alex Deucher89d35802012-07-17 14:02:31 -0400328bool radeon_ring_supports_scratch_reg(struct radeon_device *rdev,
329 struct radeon_ring *ring)
330{
331 switch (ring->idx) {
332 case RADEON_RING_TYPE_GFX_INDEX:
333 case CAYMAN_RING_TYPE_CP1_INDEX:
334 case CAYMAN_RING_TYPE_CP2_INDEX:
335 return true;
336 default:
337 return false;
338 }
339}
340
Alex Deucher75923282012-07-17 14:02:38 -0400341/**
342 * radeon_ring_free_size - update the free size
343 *
344 * @rdev: radeon_device pointer
345 * @ring: radeon_ring structure holding ring information
346 *
347 * Update the free dw slots in the ring buffer (all asics).
348 */
Christian Könige32eb502011-10-23 12:56:27 +0200349void radeon_ring_free_size(struct radeon_device *rdev, struct radeon_ring *ring)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200350{
Christian Königff212f22014-02-18 14:52:33 +0100351 uint32_t rptr = radeon_ring_get_rptr(rdev, ring);
352
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200353 /* This works because ring_size is a power of 2 */
Christian Königff212f22014-02-18 14:52:33 +0100354 ring->ring_free_dw = rptr + (ring->ring_size / 4);
Christian Könige32eb502011-10-23 12:56:27 +0200355 ring->ring_free_dw -= ring->wptr;
356 ring->ring_free_dw &= ring->ptr_mask;
357 if (!ring->ring_free_dw) {
Christian König82dc62a2014-02-18 15:03:22 +0100358 /* this is an empty ring */
Christian Könige32eb502011-10-23 12:56:27 +0200359 ring->ring_free_dw = ring->ring_size / 4;
Christian König82dc62a2014-02-18 15:03:22 +0100360 /* update lockup info to avoid false positive */
361 radeon_ring_lockup_update(rdev, ring);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200362 }
363}
364
Alex Deucher75923282012-07-17 14:02:38 -0400365/**
366 * radeon_ring_alloc - allocate space on the ring buffer
367 *
368 * @rdev: radeon_device pointer
369 * @ring: radeon_ring structure holding ring information
370 * @ndw: number of dwords to allocate in the ring buffer
371 *
372 * Allocate @ndw dwords in the ring buffer (all asics).
373 * Returns 0 on success, error on failure.
374 */
Christian Könige32eb502011-10-23 12:56:27 +0200375int radeon_ring_alloc(struct radeon_device *rdev, struct radeon_ring *ring, unsigned ndw)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200376{
377 int r;
378
Alex Deucherfd5d93a2013-01-30 14:24:09 -0500379 /* make sure we aren't trying to allocate more space than there is on the ring */
380 if (ndw > (ring->ring_size / 4))
381 return -ENOMEM;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200382 /* Align requested size with padding so unlock_commit can
383 * pad safely */
Jerome Glisse8444d5c2013-06-19 10:02:28 -0400384 radeon_ring_free_size(rdev, ring);
Christian Könige32eb502011-10-23 12:56:27 +0200385 ndw = (ndw + ring->align_mask) & ~ring->align_mask;
386 while (ndw > (ring->ring_free_dw - 1)) {
387 radeon_ring_free_size(rdev, ring);
388 if (ndw < ring->ring_free_dw) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200389 break;
390 }
Christian König37615522014-02-18 15:58:31 +0100391 r = radeon_fence_wait_next(rdev, ring->idx);
Matthew Garrett91700f32010-04-30 15:24:17 -0400392 if (r)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200393 return r;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200394 }
Christian Könige32eb502011-10-23 12:56:27 +0200395 ring->count_dw = ndw;
396 ring->wptr_old = ring->wptr;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200397 return 0;
398}
399
Alex Deucher75923282012-07-17 14:02:38 -0400400/**
401 * radeon_ring_lock - lock the ring and allocate space on it
402 *
403 * @rdev: radeon_device pointer
404 * @ring: radeon_ring structure holding ring information
405 * @ndw: number of dwords to allocate in the ring buffer
406 *
407 * Lock the ring and allocate @ndw dwords in the ring buffer
408 * (all asics).
409 * Returns 0 on success, error on failure.
410 */
Christian Könige32eb502011-10-23 12:56:27 +0200411int radeon_ring_lock(struct radeon_device *rdev, struct radeon_ring *ring, unsigned ndw)
Matthew Garrett91700f32010-04-30 15:24:17 -0400412{
413 int r;
414
Christian Königd6999bc2012-05-09 15:34:45 +0200415 mutex_lock(&rdev->ring_lock);
Christian Könige32eb502011-10-23 12:56:27 +0200416 r = radeon_ring_alloc(rdev, ring, ndw);
Matthew Garrett91700f32010-04-30 15:24:17 -0400417 if (r) {
Christian Königd6999bc2012-05-09 15:34:45 +0200418 mutex_unlock(&rdev->ring_lock);
Matthew Garrett91700f32010-04-30 15:24:17 -0400419 return r;
420 }
421 return 0;
422}
423
Alex Deucher75923282012-07-17 14:02:38 -0400424/**
425 * radeon_ring_commit - tell the GPU to execute the new
426 * commands on the ring buffer
427 *
428 * @rdev: radeon_device pointer
429 * @ring: radeon_ring structure holding ring information
430 *
431 * Update the wptr (write pointer) to tell the GPU to
432 * execute new commands on the ring buffer (all asics).
433 */
Christian Könige32eb502011-10-23 12:56:27 +0200434void radeon_ring_commit(struct radeon_device *rdev, struct radeon_ring *ring)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200435{
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200436 /* We pad to match fetch size */
Christian König07a71332012-07-07 12:11:32 +0200437 while (ring->wptr & ring->align_mask) {
Alex Deucher78c55602011-11-17 14:25:56 -0500438 radeon_ring_write(ring, ring->nop);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200439 }
Daniel Vetter85b23312013-12-11 11:34:45 +0100440 mb();
Alex Deucherf93bdef2013-01-29 14:10:56 -0500441 radeon_ring_set_wptr(rdev, ring);
Matthew Garrett91700f32010-04-30 15:24:17 -0400442}
443
Alex Deucher75923282012-07-17 14:02:38 -0400444/**
445 * radeon_ring_unlock_commit - tell the GPU to execute the new
446 * commands on the ring buffer and unlock it
447 *
448 * @rdev: radeon_device pointer
449 * @ring: radeon_ring structure holding ring information
450 *
451 * Call radeon_ring_commit() then unlock the ring (all asics).
452 */
Christian Könige32eb502011-10-23 12:56:27 +0200453void radeon_ring_unlock_commit(struct radeon_device *rdev, struct radeon_ring *ring)
Matthew Garrett91700f32010-04-30 15:24:17 -0400454{
Christian Könige32eb502011-10-23 12:56:27 +0200455 radeon_ring_commit(rdev, ring);
Christian Königd6999bc2012-05-09 15:34:45 +0200456 mutex_unlock(&rdev->ring_lock);
457}
458
Alex Deucher75923282012-07-17 14:02:38 -0400459/**
460 * radeon_ring_undo - reset the wptr
461 *
462 * @ring: radeon_ring structure holding ring information
463 *
Paul Bolle501f9d4c2012-11-20 22:31:06 +0100464 * Reset the driver's copy of the wptr (all asics).
Alex Deucher75923282012-07-17 14:02:38 -0400465 */
Christian Königd6999bc2012-05-09 15:34:45 +0200466void radeon_ring_undo(struct radeon_ring *ring)
467{
468 ring->wptr = ring->wptr_old;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200469}
470
Alex Deucher75923282012-07-17 14:02:38 -0400471/**
472 * radeon_ring_unlock_undo - reset the wptr and unlock the ring
473 *
474 * @ring: radeon_ring structure holding ring information
475 *
476 * Call radeon_ring_undo() then unlock the ring (all asics).
477 */
Christian Könige32eb502011-10-23 12:56:27 +0200478void radeon_ring_unlock_undo(struct radeon_device *rdev, struct radeon_ring *ring)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200479{
Christian Königd6999bc2012-05-09 15:34:45 +0200480 radeon_ring_undo(ring);
481 mutex_unlock(&rdev->ring_lock);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200482}
483
Alex Deucher75923282012-07-17 14:02:38 -0400484/**
Paul Bolle501f9d4c2012-11-20 22:31:06 +0100485 * radeon_ring_lockup_update - update lockup variables
Alex Deucher75923282012-07-17 14:02:38 -0400486 *
487 * @ring: radeon_ring structure holding ring information
488 *
489 * Update the last rptr value and timestamp (all asics).
490 */
Christian Königff212f22014-02-18 14:52:33 +0100491void radeon_ring_lockup_update(struct radeon_device *rdev,
492 struct radeon_ring *ring)
Christian König069211e2012-05-02 15:11:20 +0200493{
Christian Königaee4aa72014-02-18 15:24:06 +0100494 atomic_set(&ring->last_rptr, radeon_ring_get_rptr(rdev, ring));
495 atomic64_set(&ring->last_activity, jiffies_64);
Christian König069211e2012-05-02 15:11:20 +0200496}
497
498/**
499 * radeon_ring_test_lockup() - check if ring is lockedup by recording information
500 * @rdev: radeon device structure
501 * @ring: radeon_ring structure holding ring information
502 *
Christian König2d2fe3f2014-02-18 12:37:50 +0100503 */
Christian König069211e2012-05-02 15:11:20 +0200504bool radeon_ring_test_lockup(struct radeon_device *rdev, struct radeon_ring *ring)
505{
Christian Königff212f22014-02-18 14:52:33 +0100506 uint32_t rptr = radeon_ring_get_rptr(rdev, ring);
Christian Königaee4aa72014-02-18 15:24:06 +0100507 uint64_t last = atomic64_read(&ring->last_activity);
508 uint64_t elapsed;
Christian König069211e2012-05-02 15:11:20 +0200509
Christian Königaee4aa72014-02-18 15:24:06 +0100510 if (rptr != atomic_read(&ring->last_rptr)) {
511 /* ring is still working, no lockup */
Christian Königff212f22014-02-18 14:52:33 +0100512 radeon_ring_lockup_update(rdev, ring);
Christian König069211e2012-05-02 15:11:20 +0200513 return false;
514 }
Christian Königaee4aa72014-02-18 15:24:06 +0100515
516 elapsed = jiffies_to_msecs(jiffies_64 - last);
Christian König3368ff02012-05-02 15:11:21 +0200517 if (radeon_lockup_timeout && elapsed >= radeon_lockup_timeout) {
Christian Königaee4aa72014-02-18 15:24:06 +0100518 dev_err(rdev->dev, "ring %d stalled for more than %llumsec\n",
519 ring->idx, elapsed);
Christian König069211e2012-05-02 15:11:20 +0200520 return true;
521 }
522 /* give a chance to the GPU ... */
523 return false;
524}
525
Christian König55d7c222012-07-09 11:52:44 +0200526/**
527 * radeon_ring_backup - Back up the content of a ring
528 *
529 * @rdev: radeon_device pointer
530 * @ring: the ring we want to back up
531 *
532 * Saves all unprocessed commits from a ring, returns the number of dwords saved.
533 */
534unsigned radeon_ring_backup(struct radeon_device *rdev, struct radeon_ring *ring,
535 uint32_t **data)
536{
537 unsigned size, ptr, i;
Christian König55d7c222012-07-09 11:52:44 +0200538
539 /* just in case lock the ring */
540 mutex_lock(&rdev->ring_lock);
541 *data = NULL;
542
Alex Deucher89d35802012-07-17 14:02:31 -0400543 if (ring->ring_obj == NULL) {
Christian König55d7c222012-07-09 11:52:44 +0200544 mutex_unlock(&rdev->ring_lock);
545 return 0;
546 }
547
548 /* it doesn't make sense to save anything if all fences are signaled */
Alex Deucher8b25ed32012-07-17 14:02:30 -0400549 if (!radeon_fence_count_emitted(rdev, ring->idx)) {
Christian König55d7c222012-07-09 11:52:44 +0200550 mutex_unlock(&rdev->ring_lock);
551 return 0;
552 }
553
554 /* calculate the number of dw on the ring */
Alex Deucher89d35802012-07-17 14:02:31 -0400555 if (ring->rptr_save_reg)
556 ptr = RREG32(ring->rptr_save_reg);
557 else if (rdev->wb.enabled)
558 ptr = le32_to_cpu(*ring->next_rptr_cpu_addr);
559 else {
560 /* no way to read back the next rptr */
561 mutex_unlock(&rdev->ring_lock);
562 return 0;
563 }
564
Christian König55d7c222012-07-09 11:52:44 +0200565 size = ring->wptr + (ring->ring_size / 4);
566 size -= ptr;
567 size &= ring->ptr_mask;
568 if (size == 0) {
569 mutex_unlock(&rdev->ring_lock);
570 return 0;
571 }
572
573 /* and then save the content of the ring */
Dan Carpenter1e179d4e2012-07-20 14:17:00 +0300574 *data = kmalloc_array(size, sizeof(uint32_t), GFP_KERNEL);
575 if (!*data) {
576 mutex_unlock(&rdev->ring_lock);
577 return 0;
578 }
Christian König55d7c222012-07-09 11:52:44 +0200579 for (i = 0; i < size; ++i) {
580 (*data)[i] = ring->ring[ptr++];
581 ptr &= ring->ptr_mask;
582 }
583
584 mutex_unlock(&rdev->ring_lock);
585 return size;
586}
587
588/**
589 * radeon_ring_restore - append saved commands to the ring again
590 *
591 * @rdev: radeon_device pointer
592 * @ring: ring to append commands to
593 * @size: number of dwords we want to write
594 * @data: saved commands
595 *
596 * Allocates space on the ring and restore the previously saved commands.
597 */
598int radeon_ring_restore(struct radeon_device *rdev, struct radeon_ring *ring,
599 unsigned size, uint32_t *data)
600{
601 int i, r;
602
603 if (!size || !data)
604 return 0;
605
606 /* restore the saved ring content */
607 r = radeon_ring_lock(rdev, ring, size);
608 if (r)
609 return r;
610
611 for (i = 0; i < size; ++i) {
612 radeon_ring_write(ring, data[i]);
613 }
614
615 radeon_ring_unlock_commit(rdev, ring);
616 kfree(data);
617 return 0;
618}
619
Alex Deucher75923282012-07-17 14:02:38 -0400620/**
621 * radeon_ring_init - init driver ring struct.
622 *
623 * @rdev: radeon_device pointer
624 * @ring: radeon_ring structure holding ring information
625 * @ring_size: size of the ring
626 * @rptr_offs: offset of the rptr writeback location in the WB buffer
Alex Deucher75923282012-07-17 14:02:38 -0400627 * @nop: nop packet for this ring
628 *
629 * Initialize the driver information for the selected ring (all asics).
630 * Returns 0 on success, error on failure.
631 */
Christian Könige32eb502011-10-23 12:56:27 +0200632int radeon_ring_init(struct radeon_device *rdev, struct radeon_ring *ring, unsigned ring_size,
Alex Deucherea31bf62013-12-09 19:44:30 -0500633 unsigned rptr_offs, u32 nop)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200634{
635 int r;
636
Christian Könige32eb502011-10-23 12:56:27 +0200637 ring->ring_size = ring_size;
638 ring->rptr_offs = rptr_offs;
Alex Deucher78c55602011-11-17 14:25:56 -0500639 ring->nop = nop;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200640 /* Allocate ring buffer */
Christian Könige32eb502011-10-23 12:56:27 +0200641 if (ring->ring_obj == NULL) {
642 r = radeon_bo_create(rdev, ring->ring_size, PAGE_SIZE, true,
Michel Dänzer14904342014-07-29 18:47:20 +0900643 RADEON_GEM_DOMAIN_GTT,
644 (rdev->flags & RADEON_IS_PCIE) ?
645 RADEON_GEM_GTT_WC : 0,
Alex Deucher40f5cf92012-05-10 18:33:13 -0400646 NULL, &ring->ring_obj);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200647 if (r) {
Jerome Glisse4c788672009-11-20 14:29:23 +0100648 dev_err(rdev->dev, "(%d) ring create failed\n", r);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200649 return r;
650 }
Christian Könige32eb502011-10-23 12:56:27 +0200651 r = radeon_bo_reserve(ring->ring_obj, false);
Jerome Glisse4c788672009-11-20 14:29:23 +0100652 if (unlikely(r != 0))
653 return r;
Christian Könige32eb502011-10-23 12:56:27 +0200654 r = radeon_bo_pin(ring->ring_obj, RADEON_GEM_DOMAIN_GTT,
655 &ring->gpu_addr);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200656 if (r) {
Christian Könige32eb502011-10-23 12:56:27 +0200657 radeon_bo_unreserve(ring->ring_obj);
Jerome Glisse4c788672009-11-20 14:29:23 +0100658 dev_err(rdev->dev, "(%d) ring pin failed\n", r);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200659 return r;
660 }
Christian Könige32eb502011-10-23 12:56:27 +0200661 r = radeon_bo_kmap(ring->ring_obj,
662 (void **)&ring->ring);
663 radeon_bo_unreserve(ring->ring_obj);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200664 if (r) {
Jerome Glisse4c788672009-11-20 14:29:23 +0100665 dev_err(rdev->dev, "(%d) ring map failed\n", r);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200666 return r;
667 }
668 }
Christian Könige32eb502011-10-23 12:56:27 +0200669 ring->ptr_mask = (ring->ring_size / 4) - 1;
670 ring->ring_free_dw = ring->ring_size / 4;
Alex Deucher89d35802012-07-17 14:02:31 -0400671 if (rdev->wb.enabled) {
672 u32 index = RADEON_WB_RING0_NEXT_RPTR + (ring->idx * 4);
673 ring->next_rptr_gpu_addr = rdev->wb.gpu_addr + index;
674 ring->next_rptr_cpu_addr = &rdev->wb.wb[index/4];
675 }
Christian Königec1a6cc2012-05-02 15:11:11 +0200676 if (radeon_debugfs_ring_init(rdev, ring)) {
677 DRM_ERROR("Failed to register debugfs file for rings !\n");
678 }
Christian Königff212f22014-02-18 14:52:33 +0100679 radeon_ring_lockup_update(rdev, ring);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200680 return 0;
681}
682
Alex Deucher75923282012-07-17 14:02:38 -0400683/**
684 * radeon_ring_fini - tear down the driver ring struct.
685 *
686 * @rdev: radeon_device pointer
687 * @ring: radeon_ring structure holding ring information
688 *
689 * Tear down the driver information for the selected ring (all asics).
690 */
Christian Könige32eb502011-10-23 12:56:27 +0200691void radeon_ring_fini(struct radeon_device *rdev, struct radeon_ring *ring)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200692{
Jerome Glisse4c788672009-11-20 14:29:23 +0100693 int r;
Alex Deucherca2af922010-05-06 11:02:24 -0400694 struct radeon_bo *ring_obj;
Jerome Glisse4c788672009-11-20 14:29:23 +0100695
Christian Königd6999bc2012-05-09 15:34:45 +0200696 mutex_lock(&rdev->ring_lock);
Christian Könige32eb502011-10-23 12:56:27 +0200697 ring_obj = ring->ring_obj;
Christian Königd6999bc2012-05-09 15:34:45 +0200698 ring->ready = false;
Christian Könige32eb502011-10-23 12:56:27 +0200699 ring->ring = NULL;
700 ring->ring_obj = NULL;
Christian Königd6999bc2012-05-09 15:34:45 +0200701 mutex_unlock(&rdev->ring_lock);
Alex Deucherca2af922010-05-06 11:02:24 -0400702
703 if (ring_obj) {
704 r = radeon_bo_reserve(ring_obj, false);
705 if (likely(r == 0)) {
706 radeon_bo_kunmap(ring_obj);
707 radeon_bo_unpin(ring_obj);
708 radeon_bo_unreserve(ring_obj);
709 }
710 radeon_bo_unref(&ring_obj);
711 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200712}
713
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200714/*
715 * Debugfs info
716 */
717#if defined(CONFIG_DEBUG_FS)
Christian Königaf9720f2011-10-24 17:08:44 +0200718
719static int radeon_debugfs_ring_info(struct seq_file *m, void *data)
720{
721 struct drm_info_node *node = (struct drm_info_node *) m->private;
722 struct drm_device *dev = node->minor->dev;
723 struct radeon_device *rdev = dev->dev_private;
724 int ridx = *(int*)node->info_ent->data;
725 struct radeon_ring *ring = &rdev->ring[ridx];
Christian Königdf893a22013-12-12 09:42:37 +0100726
727 uint32_t rptr, wptr, rptr_next;
Christian Königaf9720f2011-10-24 17:08:44 +0200728 unsigned count, i, j;
729
730 radeon_ring_free_size(rdev, ring);
731 count = (ring->ring_size / 4) - ring->ring_free_dw;
Christian Königdf893a22013-12-12 09:42:37 +0100732
733 wptr = radeon_ring_get_wptr(rdev, ring);
Alex Deucherea31bf62013-12-09 19:44:30 -0500734 seq_printf(m, "wptr: 0x%08x [%5d]\n",
735 wptr, wptr);
Christian Königdf893a22013-12-12 09:42:37 +0100736
737 rptr = radeon_ring_get_rptr(rdev, ring);
Alex Deucherea31bf62013-12-09 19:44:30 -0500738 seq_printf(m, "rptr: 0x%08x [%5d]\n",
739 rptr, rptr);
Christian Königdf893a22013-12-12 09:42:37 +0100740
Christian König45df6802012-07-06 16:22:55 +0200741 if (ring->rptr_save_reg) {
Christian Königdf893a22013-12-12 09:42:37 +0100742 rptr_next = RREG32(ring->rptr_save_reg);
743 seq_printf(m, "rptr next(0x%04x): 0x%08x [%5d]\n",
744 ring->rptr_save_reg, rptr_next, rptr_next);
745 } else
746 rptr_next = ~0;
747
748 seq_printf(m, "driver's copy of the wptr: 0x%08x [%5d]\n",
749 ring->wptr, ring->wptr);
Christian Königdf893a22013-12-12 09:42:37 +0100750 seq_printf(m, "last semaphore signal addr : 0x%016llx\n",
751 ring->last_semaphore_signal_addr);
752 seq_printf(m, "last semaphore wait addr : 0x%016llx\n",
753 ring->last_semaphore_wait_addr);
Christian Königaf9720f2011-10-24 17:08:44 +0200754 seq_printf(m, "%u free dwords in ring\n", ring->ring_free_dw);
755 seq_printf(m, "%u dwords in ring\n", count);
Christian Königdf893a22013-12-12 09:42:37 +0100756
757 if (!ring->ready)
758 return 0;
759
Jerome Glisse4d009192013-01-02 17:30:34 -0500760 /* print 8 dw before current rptr as often it's the last executed
761 * packet that is the root issue
762 */
Christian Königdf893a22013-12-12 09:42:37 +0100763 i = (rptr + ring->ptr_mask + 1 - 32) & ring->ptr_mask;
764 for (j = 0; j <= (count + 32); j++) {
765 seq_printf(m, "r[%5d]=0x%08x", i, ring->ring[i]);
766 if (rptr == i)
767 seq_puts(m, " *");
768 if (rptr_next == i)
769 seq_puts(m, " #");
770 seq_puts(m, "\n");
771 i = (i + 1) & ring->ptr_mask;
Christian Königaf9720f2011-10-24 17:08:44 +0200772 }
773 return 0;
774}
775
Christian Königf2ba57b2013-04-08 12:41:29 +0200776static int radeon_gfx_index = RADEON_RING_TYPE_GFX_INDEX;
777static int cayman_cp1_index = CAYMAN_RING_TYPE_CP1_INDEX;
778static int cayman_cp2_index = CAYMAN_RING_TYPE_CP2_INDEX;
779static int radeon_dma1_index = R600_RING_TYPE_DMA_INDEX;
780static int radeon_dma2_index = CAYMAN_RING_TYPE_DMA1_INDEX;
781static int r600_uvd_index = R600_RING_TYPE_UVD_INDEX;
Christian Königd93f7932013-05-23 12:10:04 +0200782static int si_vce1_index = TN_RING_TYPE_VCE1_INDEX;
783static int si_vce2_index = TN_RING_TYPE_VCE2_INDEX;
Christian Königaf9720f2011-10-24 17:08:44 +0200784
785static struct drm_info_list radeon_debugfs_ring_info_list[] = {
Christian Königf2ba57b2013-04-08 12:41:29 +0200786 {"radeon_ring_gfx", radeon_debugfs_ring_info, 0, &radeon_gfx_index},
787 {"radeon_ring_cp1", radeon_debugfs_ring_info, 0, &cayman_cp1_index},
788 {"radeon_ring_cp2", radeon_debugfs_ring_info, 0, &cayman_cp2_index},
789 {"radeon_ring_dma1", radeon_debugfs_ring_info, 0, &radeon_dma1_index},
790 {"radeon_ring_dma2", radeon_debugfs_ring_info, 0, &radeon_dma2_index},
791 {"radeon_ring_uvd", radeon_debugfs_ring_info, 0, &r600_uvd_index},
Christian Königd93f7932013-05-23 12:10:04 +0200792 {"radeon_ring_vce1", radeon_debugfs_ring_info, 0, &si_vce1_index},
793 {"radeon_ring_vce2", radeon_debugfs_ring_info, 0, &si_vce2_index},
Christian Königaf9720f2011-10-24 17:08:44 +0200794};
795
Christian König711a9722012-05-09 15:34:51 +0200796static int radeon_debugfs_sa_info(struct seq_file *m, void *data)
797{
798 struct drm_info_node *node = (struct drm_info_node *) m->private;
799 struct drm_device *dev = node->minor->dev;
800 struct radeon_device *rdev = dev->dev_private;
801
Jerome Glissec507f7e2012-05-09 15:34:58 +0200802 radeon_sa_bo_dump_debug_info(&rdev->ring_tmp_bo, m);
Christian König711a9722012-05-09 15:34:51 +0200803
804 return 0;
805
806}
807
808static struct drm_info_list radeon_debugfs_sa_list[] = {
809 {"radeon_sa_info", &radeon_debugfs_sa_info, 0, NULL},
810};
811
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200812#endif
813
Lauri Kasanen1109ca02012-08-31 13:43:50 -0400814static int radeon_debugfs_ring_init(struct radeon_device *rdev, struct radeon_ring *ring)
Christian Königaf9720f2011-10-24 17:08:44 +0200815{
816#if defined(CONFIG_DEBUG_FS)
Christian Königec1a6cc2012-05-02 15:11:11 +0200817 unsigned i;
818 for (i = 0; i < ARRAY_SIZE(radeon_debugfs_ring_info_list); ++i) {
819 struct drm_info_list *info = &radeon_debugfs_ring_info_list[i];
820 int ridx = *(int*)radeon_debugfs_ring_info_list[i].data;
821 unsigned r;
822
823 if (&rdev->ring[ridx] != ring)
824 continue;
825
826 r = radeon_debugfs_add_files(rdev, info, 1);
827 if (r)
828 return r;
829 }
Christian Königaf9720f2011-10-24 17:08:44 +0200830#endif
Christian Königec1a6cc2012-05-02 15:11:11 +0200831 return 0;
Christian Königaf9720f2011-10-24 17:08:44 +0200832}
833
Lauri Kasanen1109ca02012-08-31 13:43:50 -0400834static int radeon_debugfs_sa_init(struct radeon_device *rdev)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200835{
836#if defined(CONFIG_DEBUG_FS)
Jerome Glissec507f7e2012-05-09 15:34:58 +0200837 return radeon_debugfs_add_files(rdev, radeon_debugfs_sa_list, 1);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200838#else
839 return 0;
840#endif
841}