blob: c38203e04efe5d7ba2d407ccf0a9fc59aff77a22 [file] [log] [blame]
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001/*
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
27 * Christian König
28 */
29#include <linux/seq_file.h>
30#include <linux/slab.h>
Tom St Denis4f4824b2016-04-27 12:41:16 -040031#include <linux/debugfs.h>
Alex Deucherd38ceaf2015-04-20 16:55:21 -040032#include <drm/drmP.h>
33#include <drm/amdgpu_drm.h>
34#include "amdgpu.h"
35#include "atom.h"
36
37/*
38 * Rings
39 * Most engines on the GPU are fed via ring buffers. Ring
40 * buffers are areas of GPU accessible memory that the host
41 * writes commands into and the GPU reads commands out of.
42 * There is a rptr (read pointer) that determines where the
43 * GPU is currently reading, and a wptr (write pointer)
44 * which determines where the host has written. When the
45 * pointers are equal, the ring is idle. When the host
46 * writes commands to the ring buffer, it increments the
47 * wptr. The GPU then starts fetching commands and executes
48 * them until the pointers are equal again.
49 */
Christian Königeb430962016-04-13 11:36:00 +020050static int amdgpu_debugfs_ring_init(struct amdgpu_device *adev,
51 struct amdgpu_ring *ring);
Monk Liua909c6b2016-06-14 12:02:21 -040052static void amdgpu_debugfs_ring_fini(struct amdgpu_ring *ring);
Alex Deucherd38ceaf2015-04-20 16:55:21 -040053
54/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -040055 * amdgpu_ring_alloc - allocate space on the ring buffer
56 *
57 * @adev: amdgpu_device pointer
58 * @ring: amdgpu_ring structure holding ring information
59 * @ndw: number of dwords to allocate in the ring buffer
60 *
61 * Allocate @ndw dwords in the ring buffer (all asics).
62 * Returns 0 on success, error on failure.
63 */
64int amdgpu_ring_alloc(struct amdgpu_ring *ring, unsigned ndw)
65{
Alex Deucherd38ceaf2015-04-20 16:55:21 -040066 /* Align requested size with padding so unlock_commit can
67 * pad safely */
Alex Deucherd38ceaf2015-04-20 16:55:21 -040068 ndw = (ndw + ring->align_mask) & ~ring->align_mask;
Christian Königc7e6be22016-01-21 13:06:05 +010069
70 /* Make sure we aren't trying to allocate more space
71 * than the maximum for one submission
72 */
73 if (WARN_ON_ONCE(ndw > ring->max_dw))
74 return -ENOMEM;
75
Alex Deucherd38ceaf2015-04-20 16:55:21 -040076 ring->count_dw = ndw;
77 ring->wptr_old = ring->wptr;
78 return 0;
79}
80
Jammy Zhouedff0e22015-09-01 13:04:08 +080081/** amdgpu_ring_insert_nop - insert NOP packets
82 *
83 * @ring: amdgpu_ring structure holding ring information
84 * @count: the number of NOP packets to insert
85 *
86 * This is the generic insert_nop function for rings except SDMA
87 */
88void amdgpu_ring_insert_nop(struct amdgpu_ring *ring, uint32_t count)
89{
90 int i;
91
92 for (i = 0; i < count; i++)
93 amdgpu_ring_write(ring, ring->nop);
94}
95
Christian König9e5d53092016-01-31 12:20:55 +010096/** amdgpu_ring_generic_pad_ib - pad IB with NOP packets
97 *
98 * @ring: amdgpu_ring structure holding ring information
99 * @ib: IB to add NOP packets to
100 *
101 * This is the generic pad_ib function for rings except SDMA
102 */
103void amdgpu_ring_generic_pad_ib(struct amdgpu_ring *ring, struct amdgpu_ib *ib)
104{
105 while (ib->length_dw & ring->align_mask)
106 ib->ptr[ib->length_dw++] = ring->nop;
107}
108
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400109/**
110 * amdgpu_ring_commit - tell the GPU to execute the new
111 * commands on the ring buffer
112 *
113 * @adev: amdgpu_device pointer
114 * @ring: amdgpu_ring structure holding ring information
115 *
116 * Update the wptr (write pointer) to tell the GPU to
117 * execute new commands on the ring buffer (all asics).
118 */
119void amdgpu_ring_commit(struct amdgpu_ring *ring)
120{
Jammy Zhouedff0e22015-09-01 13:04:08 +0800121 uint32_t count;
122
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400123 /* We pad to match fetch size */
Jammy Zhouedff0e22015-09-01 13:04:08 +0800124 count = ring->align_mask + 1 - (ring->wptr & ring->align_mask);
125 count %= ring->align_mask + 1;
126 ring->funcs->insert_nop(ring, count);
127
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400128 mb();
129 amdgpu_ring_set_wptr(ring);
130}
131
132/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400133 * amdgpu_ring_undo - reset the wptr
134 *
135 * @ring: amdgpu_ring structure holding ring information
136 *
137 * Reset the driver's copy of the wptr (all asics).
138 */
139void amdgpu_ring_undo(struct amdgpu_ring *ring)
140{
141 ring->wptr = ring->wptr_old;
142}
143
144/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400145 * amdgpu_ring_backup - Back up the content of a ring
146 *
147 * @ring: the ring we want to back up
148 *
149 * Saves all unprocessed commits from a ring, returns the number of dwords saved.
150 */
151unsigned amdgpu_ring_backup(struct amdgpu_ring *ring,
152 uint32_t **data)
153{
154 unsigned size, ptr, i;
155
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400156 *data = NULL;
157
Christian Königa27de352016-01-21 11:28:53 +0100158 if (ring->ring_obj == NULL)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400159 return 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400160
161 /* it doesn't make sense to save anything if all fences are signaled */
Christian Königa27de352016-01-21 11:28:53 +0100162 if (!amdgpu_fence_count_emitted(ring))
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400163 return 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400164
165 ptr = le32_to_cpu(*ring->next_rptr_cpu_addr);
166
167 size = ring->wptr + (ring->ring_size / 4);
168 size -= ptr;
169 size &= ring->ptr_mask;
Christian Königa27de352016-01-21 11:28:53 +0100170 if (size == 0)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400171 return 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400172
173 /* and then save the content of the ring */
174 *data = kmalloc_array(size, sizeof(uint32_t), GFP_KERNEL);
Christian Königa27de352016-01-21 11:28:53 +0100175 if (!*data)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400176 return 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400177 for (i = 0; i < size; ++i) {
178 (*data)[i] = ring->ring[ptr++];
179 ptr &= ring->ptr_mask;
180 }
181
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400182 return size;
183}
184
185/**
186 * amdgpu_ring_restore - append saved commands to the ring again
187 *
188 * @ring: ring to append commands to
189 * @size: number of dwords we want to write
190 * @data: saved commands
191 *
192 * Allocates space on the ring and restore the previously saved commands.
193 */
194int amdgpu_ring_restore(struct amdgpu_ring *ring,
195 unsigned size, uint32_t *data)
196{
197 int i, r;
198
199 if (!size || !data)
200 return 0;
201
202 /* restore the saved ring content */
Christian Königa27de352016-01-21 11:28:53 +0100203 r = amdgpu_ring_alloc(ring, size);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400204 if (r)
205 return r;
206
207 for (i = 0; i < size; ++i) {
208 amdgpu_ring_write(ring, data[i]);
209 }
210
Christian Königa27de352016-01-21 11:28:53 +0100211 amdgpu_ring_commit(ring);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400212 kfree(data);
213 return 0;
214}
215
216/**
217 * amdgpu_ring_init - init driver ring struct.
218 *
219 * @adev: amdgpu_device pointer
220 * @ring: amdgpu_ring structure holding ring information
Christian Königa3f1cf32016-04-12 16:26:34 +0200221 * @max_ndw: maximum number of dw for ring alloc
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400222 * @nop: nop packet for this ring
223 *
224 * Initialize the driver information for the selected ring (all asics).
225 * Returns 0 on success, error on failure.
226 */
227int amdgpu_ring_init(struct amdgpu_device *adev, struct amdgpu_ring *ring,
Christian Königa3f1cf32016-04-12 16:26:34 +0200228 unsigned max_dw, u32 nop, u32 align_mask,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400229 struct amdgpu_irq_src *irq_src, unsigned irq_type,
230 enum amdgpu_ring_type ring_type)
231{
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400232 int r;
233
234 if (ring->adev == NULL) {
235 if (adev->num_rings >= AMDGPU_MAX_RINGS)
236 return -EINVAL;
237
238 ring->adev = adev;
239 ring->idx = adev->num_rings++;
240 adev->rings[ring->idx] = ring;
Christian Könige6151a02016-03-15 14:52:26 +0100241 r = amdgpu_fence_driver_init_ring(ring,
242 amdgpu_sched_hw_submission);
Christian König4f839a22015-09-08 20:22:31 +0200243 if (r)
244 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400245 }
246
247 r = amdgpu_wb_get(adev, &ring->rptr_offs);
248 if (r) {
249 dev_err(adev->dev, "(%d) ring rptr_offs wb alloc failed\n", r);
250 return r;
251 }
252
253 r = amdgpu_wb_get(adev, &ring->wptr_offs);
254 if (r) {
255 dev_err(adev->dev, "(%d) ring wptr_offs wb alloc failed\n", r);
256 return r;
257 }
258
259 r = amdgpu_wb_get(adev, &ring->fence_offs);
260 if (r) {
261 dev_err(adev->dev, "(%d) ring fence_offs wb alloc failed\n", r);
262 return r;
263 }
264
265 r = amdgpu_wb_get(adev, &ring->next_rptr_offs);
266 if (r) {
267 dev_err(adev->dev, "(%d) ring next_rptr wb alloc failed\n", r);
268 return r;
269 }
Christian Königeb430962016-04-13 11:36:00 +0200270 ring->next_rptr_gpu_addr = adev->wb.gpu_addr + ring->next_rptr_offs * 4;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400271 ring->next_rptr_cpu_addr = &adev->wb.wb[ring->next_rptr_offs];
Monk Liu128cff12016-01-14 18:08:16 +0800272
273 r = amdgpu_wb_get(adev, &ring->cond_exe_offs);
274 if (r) {
275 dev_err(adev->dev, "(%d) ring cond_exec_polling wb alloc failed\n", r);
276 return r;
277 }
278 ring->cond_exe_gpu_addr = adev->wb.gpu_addr + (ring->cond_exe_offs * 4);
279 ring->cond_exe_cpu_addr = &adev->wb.wb[ring->cond_exe_offs];
280
Chunming Zhou176e1ab2015-07-24 10:49:47 +0800281 spin_lock_init(&ring->fence_lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400282 r = amdgpu_fence_driver_start_ring(ring, irq_src, irq_type);
283 if (r) {
284 dev_err(adev->dev, "failed initializing fences (%d).\n", r);
285 return r;
286 }
287
Christian Königa3f1cf32016-04-12 16:26:34 +0200288 ring->ring_size = roundup_pow_of_two(max_dw * 4 *
289 amdgpu_sched_hw_submission);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400290 ring->align_mask = align_mask;
291 ring->nop = nop;
292 ring->type = ring_type;
293
294 /* Allocate ring buffer */
295 if (ring->ring_obj == NULL) {
296 r = amdgpu_bo_create(adev, ring->ring_size, PAGE_SIZE, true,
297 AMDGPU_GEM_DOMAIN_GTT, 0,
Christian König72d76682015-09-03 17:34:59 +0200298 NULL, NULL, &ring->ring_obj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400299 if (r) {
300 dev_err(adev->dev, "(%d) ring create failed\n", r);
301 return r;
302 }
303 r = amdgpu_bo_reserve(ring->ring_obj, false);
304 if (unlikely(r != 0))
305 return r;
306 r = amdgpu_bo_pin(ring->ring_obj, AMDGPU_GEM_DOMAIN_GTT,
307 &ring->gpu_addr);
308 if (r) {
309 amdgpu_bo_unreserve(ring->ring_obj);
310 dev_err(adev->dev, "(%d) ring pin failed\n", r);
311 return r;
312 }
313 r = amdgpu_bo_kmap(ring->ring_obj,
314 (void **)&ring->ring);
Monk Liucc7d8c72016-06-01 17:37:21 -0400315
316 memset((void *)ring->ring, 0, ring->ring_size);
317
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400318 amdgpu_bo_unreserve(ring->ring_obj);
319 if (r) {
320 dev_err(adev->dev, "(%d) ring map failed\n", r);
321 return r;
322 }
323 }
324 ring->ptr_mask = (ring->ring_size / 4) - 1;
Christian Königa3f1cf32016-04-12 16:26:34 +0200325 ring->max_dw = max_dw;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400326
327 if (amdgpu_debugfs_ring_init(adev, ring)) {
328 DRM_ERROR("Failed to register debugfs file for rings !\n");
329 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400330 return 0;
331}
332
333/**
334 * amdgpu_ring_fini - tear down the driver ring struct.
335 *
336 * @adev: amdgpu_device pointer
337 * @ring: amdgpu_ring structure holding ring information
338 *
339 * Tear down the driver information for the selected ring (all asics).
340 */
341void amdgpu_ring_fini(struct amdgpu_ring *ring)
342{
343 int r;
344 struct amdgpu_bo *ring_obj;
345
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400346 ring_obj = ring->ring_obj;
347 ring->ready = false;
348 ring->ring = NULL;
349 ring->ring_obj = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400350
Monk Liu67a6a502016-05-30 14:17:42 +0800351 amdgpu_wb_free(ring->adev, ring->cond_exe_offs);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400352 amdgpu_wb_free(ring->adev, ring->fence_offs);
353 amdgpu_wb_free(ring->adev, ring->rptr_offs);
354 amdgpu_wb_free(ring->adev, ring->wptr_offs);
355 amdgpu_wb_free(ring->adev, ring->next_rptr_offs);
356
357 if (ring_obj) {
358 r = amdgpu_bo_reserve(ring_obj, false);
359 if (likely(r == 0)) {
360 amdgpu_bo_kunmap(ring_obj);
361 amdgpu_bo_unpin(ring_obj);
362 amdgpu_bo_unreserve(ring_obj);
363 }
364 amdgpu_bo_unref(&ring_obj);
365 }
Monk Liua909c6b2016-06-14 12:02:21 -0400366 amdgpu_debugfs_ring_fini(ring);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400367}
368
369/*
370 * Debugfs info
371 */
372#if defined(CONFIG_DEBUG_FS)
373
Tom St Denis4f4824b2016-04-27 12:41:16 -0400374/* Layout of file is 12 bytes consisting of
375 * - rptr
376 * - wptr
377 * - driver's copy of wptr
378 *
379 * followed by n-words of ring data
380 */
381static ssize_t amdgpu_debugfs_ring_read(struct file *f, char __user *buf,
382 size_t size, loff_t *pos)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400383{
Tom St Denis4f4824b2016-04-27 12:41:16 -0400384 struct amdgpu_ring *ring = (struct amdgpu_ring*)f->f_inode->i_private;
385 int r, i;
386 uint32_t value, result, early[3];
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400387
Tom St Denisc71dbd92016-05-02 08:35:35 -0400388 if (*pos & 3 || size & 3)
Tom St Denis4f4824b2016-04-27 12:41:16 -0400389 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400390
Tom St Denis4f4824b2016-04-27 12:41:16 -0400391 result = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400392
Tom St Denis4f4824b2016-04-27 12:41:16 -0400393 if (*pos < 12) {
394 early[0] = amdgpu_ring_get_rptr(ring);
395 early[1] = amdgpu_ring_get_wptr(ring);
396 early[2] = ring->wptr;
397 for (i = *pos / 4; i < 3 && size; i++) {
398 r = put_user(early[i], (uint32_t *)buf);
399 if (r)
400 return r;
401 buf += 4;
402 result += 4;
403 size -= 4;
404 *pos += 4;
405 }
Christian Königc7e6be22016-01-21 13:06:05 +0100406 }
Tom St Denis4f4824b2016-04-27 12:41:16 -0400407
408 while (size) {
409 if (*pos >= (ring->ring_size + 12))
410 return result;
411
412 value = ring->ring[(*pos - 12)/4];
413 r = put_user(value, (uint32_t*)buf);
414 if (r)
415 return r;
416 buf += 4;
417 result += 4;
418 size -= 4;
419 *pos += 4;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400420 }
Tom St Denis4f4824b2016-04-27 12:41:16 -0400421
422 return result;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400423}
424
Tom St Denis4f4824b2016-04-27 12:41:16 -0400425static const struct file_operations amdgpu_debugfs_ring_fops = {
426 .owner = THIS_MODULE,
427 .read = amdgpu_debugfs_ring_read,
428 .llseek = default_llseek
429};
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400430
431#endif
432
Christian König771c8ec2016-04-13 11:34:44 +0200433static int amdgpu_debugfs_ring_init(struct amdgpu_device *adev,
434 struct amdgpu_ring *ring)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400435{
436#if defined(CONFIG_DEBUG_FS)
Tom St Denis4f4824b2016-04-27 12:41:16 -0400437 struct drm_minor *minor = adev->ddev->primary;
438 struct dentry *ent, *root = minor->debugfs_root;
439 char name[32];
Christian König771c8ec2016-04-13 11:34:44 +0200440
Christian König771c8ec2016-04-13 11:34:44 +0200441 sprintf(name, "amdgpu_ring_%s", ring->name);
Christian König771c8ec2016-04-13 11:34:44 +0200442
Tom St Denis4f4824b2016-04-27 12:41:16 -0400443 ent = debugfs_create_file(name,
444 S_IFREG | S_IRUGO, root,
445 ring, &amdgpu_debugfs_ring_fops);
446 if (IS_ERR(ent))
447 return PTR_ERR(ent);
448
449 i_size_write(ent->d_inode, ring->ring_size + 12);
Monk Liua909c6b2016-06-14 12:02:21 -0400450 ring->ent = ent;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400451#endif
452 return 0;
453}
Monk Liua909c6b2016-06-14 12:02:21 -0400454
455static void amdgpu_debugfs_ring_fini(struct amdgpu_ring *ring)
456{
457#if defined(CONFIG_DEBUG_FS)
458 debugfs_remove(ring->ent);
459#endif
460}