blob: da9a155a622c9206b33bdcac7c414864e622d1d9 [file] [log] [blame]
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001/*
2 * Copyright 2009 Jerome Glisse.
3 * All Rights Reserved.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the
7 * "Software"), to deal in the Software without restriction, including
8 * without limitation the rights to use, copy, modify, merge, publish,
9 * distribute, sub license, and/or sell copies of the Software, and to
10 * permit persons to whom the Software is furnished to do so, subject to
11 * the following conditions:
12 *
13 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
16 * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
17 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
18 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
19 * USE OR OTHER DEALINGS IN THE SOFTWARE.
20 *
21 * The above copyright notice and this permission notice (including the
22 * next paragraph) shall be included in all copies or substantial portions
23 * of the Software.
24 *
25 */
26/*
27 * Authors:
28 * Jerome Glisse <glisse@freedesktop.org>
29 * Dave Airlie
30 */
31#include <linux/seq_file.h>
32#include <linux/atomic.h>
33#include <linux/wait.h>
34#include <linux/kref.h>
35#include <linux/slab.h>
36#include <linux/firmware.h>
37#include <drm/drmP.h>
38#include "amdgpu.h"
39#include "amdgpu_trace.h"
40
41/*
42 * Fences
43 * Fences mark an event in the GPUs pipeline and are used
44 * for GPU/CPU synchronization. When the fence is written,
45 * it is expected that all buffers associated with that fence
46 * are no longer in use by the associated ring on the GPU and
47 * that the the relevant GPU caches have been flushed.
48 */
49
Christian König22e5a2f2016-03-11 15:12:53 +010050struct amdgpu_fence {
51 struct fence base;
52
53 /* RB, DMA, etc. */
54 struct amdgpu_ring *ring;
55 uint64_t seq;
Christian König22e5a2f2016-03-11 15:12:53 +010056};
57
Chunming Zhoub49c84a2015-11-05 11:28:28 +080058static struct kmem_cache *amdgpu_fence_slab;
59static atomic_t amdgpu_fence_slab_ref = ATOMIC_INIT(0);
60
Christian König22e5a2f2016-03-11 15:12:53 +010061/*
62 * Cast helper
63 */
64static const struct fence_ops amdgpu_fence_ops;
65static inline struct amdgpu_fence *to_amdgpu_fence(struct fence *f)
66{
67 struct amdgpu_fence *__f = container_of(f, struct amdgpu_fence, base);
68
69 if (__f->base.ops == &amdgpu_fence_ops)
70 return __f;
71
72 return NULL;
73}
74
Alex Deucherd38ceaf2015-04-20 16:55:21 -040075/**
76 * amdgpu_fence_write - write a fence value
77 *
78 * @ring: ring the fence is associated with
79 * @seq: sequence number to write
80 *
81 * Writes a fence value to memory (all asics).
82 */
83static void amdgpu_fence_write(struct amdgpu_ring *ring, u32 seq)
84{
85 struct amdgpu_fence_driver *drv = &ring->fence_drv;
86
87 if (drv->cpu_addr)
88 *drv->cpu_addr = cpu_to_le32(seq);
89}
90
91/**
92 * amdgpu_fence_read - read a fence value
93 *
94 * @ring: ring the fence is associated with
95 *
96 * Reads a fence value from memory (all asics).
97 * Returns the value of the fence read from memory.
98 */
99static u32 amdgpu_fence_read(struct amdgpu_ring *ring)
100{
101 struct amdgpu_fence_driver *drv = &ring->fence_drv;
102 u32 seq = 0;
103
104 if (drv->cpu_addr)
105 seq = le32_to_cpu(*drv->cpu_addr);
106 else
107 seq = lower_32_bits(atomic64_read(&drv->last_seq));
108
109 return seq;
110}
111
112/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400113 * amdgpu_fence_emit - emit a fence on the requested ring
114 *
115 * @ring: ring the fence is associated with
Christian König364beb22016-02-16 17:39:39 +0100116 * @f: resulting fence object
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400117 *
118 * Emits a fence command on the requested ring (all asics).
119 * Returns 0 on success, -ENOMEM on failure.
120 */
Christian König364beb22016-02-16 17:39:39 +0100121int amdgpu_fence_emit(struct amdgpu_ring *ring, struct fence **f)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400122{
123 struct amdgpu_device *adev = ring->adev;
Christian König364beb22016-02-16 17:39:39 +0100124 struct amdgpu_fence *fence;
Christian König4a7d74f2016-03-14 14:29:46 +0100125 struct fence **ptr;
Christian Königc89377d2016-03-13 19:19:48 +0100126 unsigned idx;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400127
Christian König364beb22016-02-16 17:39:39 +0100128 fence = kmem_cache_alloc(amdgpu_fence_slab, GFP_KERNEL);
129 if (fence == NULL)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400130 return -ENOMEM;
Christian König364beb22016-02-16 17:39:39 +0100131
132 fence->seq = ++ring->fence_drv.sync_seq;
133 fence->ring = ring;
134 fence_init(&fence->base, &amdgpu_fence_ops,
Christian König4a7d74f2016-03-14 14:29:46 +0100135 &ring->fence_drv.lock,
Christian König364beb22016-02-16 17:39:39 +0100136 adev->fence_context + ring->idx,
137 fence->seq);
Chunming Zhou890ee232015-06-01 14:35:03 +0800138 amdgpu_ring_emit_fence(ring, ring->fence_drv.gpu_addr,
Christian König364beb22016-02-16 17:39:39 +0100139 fence->seq, AMDGPU_FENCE_FLAG_INT);
Christian Königc89377d2016-03-13 19:19:48 +0100140
141 idx = fence->seq & ring->fence_drv.num_fences_mask;
142 ptr = &ring->fence_drv.fences[idx];
143 /* This function can't be called concurrently anyway, otherwise
144 * emitting the fence would mess up the hardware ring buffer.
145 */
Christian König4a7d74f2016-03-14 14:29:46 +0100146 BUG_ON(rcu_dereference_protected(*ptr, 1));
Christian Königc89377d2016-03-13 19:19:48 +0100147
148 rcu_assign_pointer(*ptr, fence_get(&fence->base));
149
Christian König364beb22016-02-16 17:39:39 +0100150 *f = &fence->base;
Christian Königc89377d2016-03-13 19:19:48 +0100151
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400152 return 0;
153}
154
155/**
Christian Königc2776af2015-11-03 13:27:39 +0100156 * amdgpu_fence_schedule_fallback - schedule fallback check
157 *
158 * @ring: pointer to struct amdgpu_ring
159 *
160 * Start a timer as fallback to our interrupts.
161 */
162static void amdgpu_fence_schedule_fallback(struct amdgpu_ring *ring)
163{
164 mod_timer(&ring->fence_drv.fallback_timer,
165 jiffies + AMDGPU_FENCE_JIFFIES_TIMEOUT);
166}
167
168/**
Christian Königca08e042016-03-11 17:57:56 +0100169 * amdgpu_fence_process - check for fence activity
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400170 *
171 * @ring: pointer to struct amdgpu_ring
172 *
173 * Checks the current fence value and calculates the last
Christian Königca08e042016-03-11 17:57:56 +0100174 * signalled fence value. Wakes the fence queue if the
175 * sequence number has increased.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400176 */
Christian Königca08e042016-03-11 17:57:56 +0100177void amdgpu_fence_process(struct amdgpu_ring *ring)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400178{
Christian König4a7d74f2016-03-14 14:29:46 +0100179 struct amdgpu_fence_driver *drv = &ring->fence_drv;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400180 uint64_t seq, last_seq, last_emitted;
Christian König4a7d74f2016-03-14 14:29:46 +0100181 int r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400182
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400183 do {
Christian König4a7d74f2016-03-14 14:29:46 +0100184 last_seq = atomic64_read(&ring->fence_drv.last_seq);
Christian König5907a0d2016-01-18 15:16:53 +0100185 last_emitted = ring->fence_drv.sync_seq;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400186 seq = amdgpu_fence_read(ring);
187 seq |= last_seq & 0xffffffff00000000LL;
188 if (seq < last_seq) {
189 seq &= 0xffffffff;
190 seq |= last_emitted & 0xffffffff00000000LL;
191 }
192
Christian König4a7d74f2016-03-14 14:29:46 +0100193 } while (atomic64_cmpxchg(&drv->last_seq, last_seq, seq) != last_seq);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400194
195 if (seq < last_emitted)
Christian Königc2776af2015-11-03 13:27:39 +0100196 amdgpu_fence_schedule_fallback(ring);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400197
Christian König4a7d74f2016-03-14 14:29:46 +0100198 while (last_seq != seq) {
199 struct fence *fence, **ptr;
200
201 ptr = &drv->fences[++last_seq & drv->num_fences_mask];
202
203 /* There is always exactly one thread signaling this fence slot */
204 fence = rcu_dereference_protected(*ptr, 1);
205 rcu_assign_pointer(*ptr, NULL);
206
207 BUG_ON(!fence);
208
209 r = fence_signal(fence);
210 if (!r)
211 FENCE_TRACE(fence, "signaled from irq context\n");
212 else
213 BUG();
214
215 fence_put(fence);
216 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400217}
218
219/**
Christian Königc2776af2015-11-03 13:27:39 +0100220 * amdgpu_fence_fallback - fallback for hardware interrupts
221 *
222 * @work: delayed work item
223 *
224 * Checks for fence activity.
225 */
226static void amdgpu_fence_fallback(unsigned long arg)
227{
228 struct amdgpu_ring *ring = (void *)arg;
229
230 amdgpu_fence_process(ring);
231}
232
233/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400234 * amdgpu_fence_wait_empty - wait for all fences to signal
235 *
236 * @adev: amdgpu device pointer
237 * @ring: ring index the fence is associated with
238 *
239 * Wait for all fences on the requested ring to signal (all asics).
240 * Returns 0 if the fences have passed, error for all other cases.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400241 */
242int amdgpu_fence_wait_empty(struct amdgpu_ring *ring)
243{
Christian Königf09c2be2016-03-13 19:37:01 +0100244 uint64_t seq = ACCESS_ONCE(ring->fence_drv.sync_seq);
245 struct fence *fence, **ptr;
246 int r;
Christian König00d2a2b2015-08-07 16:15:36 +0200247
monk.liu7f06c232015-07-30 18:28:12 +0800248 if (!seq)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400249 return 0;
250
Christian Königf09c2be2016-03-13 19:37:01 +0100251 ptr = &ring->fence_drv.fences[seq & ring->fence_drv.num_fences_mask];
252 rcu_read_lock();
253 fence = rcu_dereference(*ptr);
254 if (!fence || !fence_get_rcu(fence)) {
255 rcu_read_unlock();
256 return 0;
257 }
258 rcu_read_unlock();
259
260 r = fence_wait(fence, false);
261 fence_put(fence);
262 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400263}
264
265/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400266 * amdgpu_fence_count_emitted - get the count of emitted fences
267 *
268 * @ring: ring the fence is associated with
269 *
270 * Get the number of fences emitted on the requested ring (all asics).
271 * Returns the number of emitted fences on the ring. Used by the
272 * dynpm code to ring track activity.
273 */
274unsigned amdgpu_fence_count_emitted(struct amdgpu_ring *ring)
275{
276 uint64_t emitted;
277
278 /* We are not protected by ring lock when reading the last sequence
279 * but it's ok to report slightly wrong fence count here.
280 */
281 amdgpu_fence_process(ring);
Christian König5907a0d2016-01-18 15:16:53 +0100282 emitted = ring->fence_drv.sync_seq
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400283 - atomic64_read(&ring->fence_drv.last_seq);
284 /* to avoid 32bits warp around */
285 if (emitted > 0x10000000)
286 emitted = 0x10000000;
287
288 return (unsigned)emitted;
289}
290
291/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400292 * amdgpu_fence_driver_start_ring - make the fence driver
293 * ready for use on the requested ring.
294 *
295 * @ring: ring to start the fence driver on
296 * @irq_src: interrupt source to use for this ring
297 * @irq_type: interrupt type to use for this ring
298 *
299 * Make the fence driver ready for processing (all asics).
300 * Not all asics have all rings, so each asic will only
301 * start the fence driver on the rings it has.
302 * Returns 0 for success, errors for failure.
303 */
304int amdgpu_fence_driver_start_ring(struct amdgpu_ring *ring,
305 struct amdgpu_irq_src *irq_src,
306 unsigned irq_type)
307{
308 struct amdgpu_device *adev = ring->adev;
309 uint64_t index;
310
311 if (ring != &adev->uvd.ring) {
312 ring->fence_drv.cpu_addr = &adev->wb.wb[ring->fence_offs];
313 ring->fence_drv.gpu_addr = adev->wb.gpu_addr + (ring->fence_offs * 4);
314 } else {
315 /* put fence directly behind firmware */
316 index = ALIGN(adev->uvd.fw->size, 8);
317 ring->fence_drv.cpu_addr = adev->uvd.cpu_addr + index;
318 ring->fence_drv.gpu_addr = adev->uvd.gpu_addr + index;
319 }
320 amdgpu_fence_write(ring, atomic64_read(&ring->fence_drv.last_seq));
Chunming Zhouc6a40792015-06-01 14:14:32 +0800321 amdgpu_irq_get(adev, irq_src, irq_type);
322
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400323 ring->fence_drv.irq_src = irq_src;
324 ring->fence_drv.irq_type = irq_type;
Chunming Zhouc6a40792015-06-01 14:14:32 +0800325 ring->fence_drv.initialized = true;
326
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400327 dev_info(adev->dev, "fence driver on ring %d use gpu addr 0x%016llx, "
328 "cpu addr 0x%p\n", ring->idx,
329 ring->fence_drv.gpu_addr, ring->fence_drv.cpu_addr);
330 return 0;
331}
332
333/**
334 * amdgpu_fence_driver_init_ring - init the fence driver
335 * for the requested ring.
336 *
337 * @ring: ring to init the fence driver on
Christian Könige6151a02016-03-15 14:52:26 +0100338 * @num_hw_submission: number of entries on the hardware queue
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400339 *
340 * Init the fence driver for the requested ring (all asics).
341 * Helper function for amdgpu_fence_driver_init().
342 */
Christian Könige6151a02016-03-15 14:52:26 +0100343int amdgpu_fence_driver_init_ring(struct amdgpu_ring *ring,
344 unsigned num_hw_submission)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400345{
Chunming Zhoucadf97b2016-01-15 11:25:00 +0800346 long timeout;
Christian König5907a0d2016-01-18 15:16:53 +0100347 int r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400348
Christian Könige6151a02016-03-15 14:52:26 +0100349 /* Check that num_hw_submission is a power of two */
350 if ((num_hw_submission & (num_hw_submission - 1)) != 0)
351 return -EINVAL;
352
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400353 ring->fence_drv.cpu_addr = NULL;
354 ring->fence_drv.gpu_addr = 0;
Christian König5907a0d2016-01-18 15:16:53 +0100355 ring->fence_drv.sync_seq = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400356 atomic64_set(&ring->fence_drv.last_seq, 0);
357 ring->fence_drv.initialized = false;
358
Christian Königc2776af2015-11-03 13:27:39 +0100359 setup_timer(&ring->fence_drv.fallback_timer, amdgpu_fence_fallback,
360 (unsigned long)ring);
Alex Deucherb80d8472015-08-16 22:55:02 -0400361
Christian Königc89377d2016-03-13 19:19:48 +0100362 ring->fence_drv.num_fences_mask = num_hw_submission - 1;
Christian König4a7d74f2016-03-14 14:29:46 +0100363 spin_lock_init(&ring->fence_drv.lock);
Christian Königc89377d2016-03-13 19:19:48 +0100364 ring->fence_drv.fences = kcalloc(num_hw_submission, sizeof(void *),
365 GFP_KERNEL);
366 if (!ring->fence_drv.fences)
367 return -ENOMEM;
Christian König5ec92a72015-09-07 18:43:02 +0200368
Chunming Zhoucadf97b2016-01-15 11:25:00 +0800369 timeout = msecs_to_jiffies(amdgpu_lockup_timeout);
370 if (timeout == 0) {
371 /*
372 * FIXME:
373 * Delayed workqueue cannot use it directly,
374 * so the scheduler will not use delayed workqueue if
375 * MAX_SCHEDULE_TIMEOUT is set.
376 * Currently keep it simple and silly.
377 */
378 timeout = MAX_SCHEDULE_TIMEOUT;
379 }
380 r = amd_sched_init(&ring->sched, &amdgpu_sched_ops,
Christian Könige6151a02016-03-15 14:52:26 +0100381 num_hw_submission,
Chunming Zhoucadf97b2016-01-15 11:25:00 +0800382 timeout, ring->name);
383 if (r) {
384 DRM_ERROR("Failed to create scheduler on ring %s.\n",
385 ring->name);
386 return r;
Alex Deucherb80d8472015-08-16 22:55:02 -0400387 }
Christian König4f839a22015-09-08 20:22:31 +0200388
389 return 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400390}
391
392/**
393 * amdgpu_fence_driver_init - init the fence driver
394 * for all possible rings.
395 *
396 * @adev: amdgpu device pointer
397 *
398 * Init the fence driver for all possible rings (all asics).
399 * Not all asics have all rings, so each asic will only
400 * start the fence driver on the rings it has using
401 * amdgpu_fence_driver_start_ring().
402 * Returns 0 for success.
403 */
404int amdgpu_fence_driver_init(struct amdgpu_device *adev)
405{
Chunming Zhoub49c84a2015-11-05 11:28:28 +0800406 if (atomic_inc_return(&amdgpu_fence_slab_ref) == 1) {
407 amdgpu_fence_slab = kmem_cache_create(
408 "amdgpu_fence", sizeof(struct amdgpu_fence), 0,
409 SLAB_HWCACHE_ALIGN, NULL);
410 if (!amdgpu_fence_slab)
411 return -ENOMEM;
412 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400413 if (amdgpu_debugfs_fence_init(adev))
414 dev_err(adev->dev, "fence debugfs file creation failed\n");
415
416 return 0;
417}
418
419/**
420 * amdgpu_fence_driver_fini - tear down the fence driver
421 * for all possible rings.
422 *
423 * @adev: amdgpu device pointer
424 *
425 * Tear down the fence driver for all possible rings (all asics).
426 */
427void amdgpu_fence_driver_fini(struct amdgpu_device *adev)
428{
Christian Königc89377d2016-03-13 19:19:48 +0100429 unsigned i, j;
430 int r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400431
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400432 for (i = 0; i < AMDGPU_MAX_RINGS; i++) {
433 struct amdgpu_ring *ring = adev->rings[i];
Christian Königc2776af2015-11-03 13:27:39 +0100434
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400435 if (!ring || !ring->fence_drv.initialized)
436 continue;
437 r = amdgpu_fence_wait_empty(ring);
438 if (r) {
439 /* no need to trigger GPU reset as we are unloading */
440 amdgpu_fence_driver_force_completion(adev);
441 }
Chunming Zhouc6a40792015-06-01 14:14:32 +0800442 amdgpu_irq_put(adev, ring->fence_drv.irq_src,
443 ring->fence_drv.irq_type);
Christian König4f839a22015-09-08 20:22:31 +0200444 amd_sched_fini(&ring->sched);
Christian Königc2776af2015-11-03 13:27:39 +0100445 del_timer_sync(&ring->fence_drv.fallback_timer);
Christian Königc89377d2016-03-13 19:19:48 +0100446 for (j = 0; j <= ring->fence_drv.num_fences_mask; ++j)
447 fence_put(ring->fence_drv.fences[i]);
448 kfree(ring->fence_drv.fences);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400449 ring->fence_drv.initialized = false;
450 }
Christian Königc89377d2016-03-13 19:19:48 +0100451
452 if (atomic_dec_and_test(&amdgpu_fence_slab_ref))
453 kmem_cache_destroy(amdgpu_fence_slab);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400454}
455
456/**
Alex Deucher5ceb54c2015-08-05 12:41:48 -0400457 * amdgpu_fence_driver_suspend - suspend the fence driver
458 * for all possible rings.
459 *
460 * @adev: amdgpu device pointer
461 *
462 * Suspend the fence driver for all possible rings (all asics).
463 */
464void amdgpu_fence_driver_suspend(struct amdgpu_device *adev)
465{
466 int i, r;
467
Alex Deucher5ceb54c2015-08-05 12:41:48 -0400468 for (i = 0; i < AMDGPU_MAX_RINGS; i++) {
469 struct amdgpu_ring *ring = adev->rings[i];
470 if (!ring || !ring->fence_drv.initialized)
471 continue;
472
473 /* wait for gpu to finish processing current batch */
474 r = amdgpu_fence_wait_empty(ring);
475 if (r) {
476 /* delay GPU reset to resume */
477 amdgpu_fence_driver_force_completion(adev);
478 }
479
480 /* disable the interrupt */
481 amdgpu_irq_put(adev, ring->fence_drv.irq_src,
482 ring->fence_drv.irq_type);
483 }
Alex Deucher5ceb54c2015-08-05 12:41:48 -0400484}
485
486/**
487 * amdgpu_fence_driver_resume - resume the fence driver
488 * for all possible rings.
489 *
490 * @adev: amdgpu device pointer
491 *
492 * Resume the fence driver for all possible rings (all asics).
493 * Not all asics have all rings, so each asic will only
494 * start the fence driver on the rings it has using
495 * amdgpu_fence_driver_start_ring().
496 * Returns 0 for success.
497 */
498void amdgpu_fence_driver_resume(struct amdgpu_device *adev)
499{
500 int i;
501
Alex Deucher5ceb54c2015-08-05 12:41:48 -0400502 for (i = 0; i < AMDGPU_MAX_RINGS; i++) {
503 struct amdgpu_ring *ring = adev->rings[i];
504 if (!ring || !ring->fence_drv.initialized)
505 continue;
506
507 /* enable the interrupt */
508 amdgpu_irq_get(adev, ring->fence_drv.irq_src,
509 ring->fence_drv.irq_type);
510 }
Alex Deucher5ceb54c2015-08-05 12:41:48 -0400511}
512
513/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400514 * amdgpu_fence_driver_force_completion - force all fence waiter to complete
515 *
516 * @adev: amdgpu device pointer
517 *
518 * In case of GPU reset failure make sure no process keep waiting on fence
519 * that will never complete.
520 */
521void amdgpu_fence_driver_force_completion(struct amdgpu_device *adev)
522{
523 int i;
524
525 for (i = 0; i < AMDGPU_MAX_RINGS; i++) {
526 struct amdgpu_ring *ring = adev->rings[i];
527 if (!ring || !ring->fence_drv.initialized)
528 continue;
529
Christian König5907a0d2016-01-18 15:16:53 +0100530 amdgpu_fence_write(ring, ring->fence_drv.sync_seq);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400531 }
532}
533
Christian Königa95e2642015-11-03 12:21:57 +0100534/*
535 * Common fence implementation
536 */
537
538static const char *amdgpu_fence_get_driver_name(struct fence *fence)
539{
540 return "amdgpu";
541}
542
543static const char *amdgpu_fence_get_timeline_name(struct fence *f)
544{
545 struct amdgpu_fence *fence = to_amdgpu_fence(f);
546 return (const char *)fence->ring->name;
547}
548
549/**
Christian Königa95e2642015-11-03 12:21:57 +0100550 * amdgpu_fence_enable_signaling - enable signalling on fence
551 * @fence: fence
552 *
553 * This function is called with fence_queue lock held, and adds a callback
554 * to fence_queue that checks if this fence is signaled, and if so it
555 * signals the fence and removes itself.
556 */
557static bool amdgpu_fence_enable_signaling(struct fence *f)
558{
559 struct amdgpu_fence *fence = to_amdgpu_fence(f);
560 struct amdgpu_ring *ring = fence->ring;
561
Christian Königc2776af2015-11-03 13:27:39 +0100562 if (!timer_pending(&ring->fence_drv.fallback_timer))
563 amdgpu_fence_schedule_fallback(ring);
Christian König4a7d74f2016-03-14 14:29:46 +0100564
Christian Königa95e2642015-11-03 12:21:57 +0100565 FENCE_TRACE(&fence->base, "armed on ring %i!\n", ring->idx);
Christian König4a7d74f2016-03-14 14:29:46 +0100566
Christian Königa95e2642015-11-03 12:21:57 +0100567 return true;
568}
569
Christian Königb4413532016-03-15 13:40:17 +0100570/**
571 * amdgpu_fence_free - free up the fence memory
572 *
573 * @rcu: RCU callback head
574 *
575 * Free up the fence memory after the RCU grace period.
576 */
577static void amdgpu_fence_free(struct rcu_head *rcu)
Chunming Zhoub49c84a2015-11-05 11:28:28 +0800578{
Christian Königb4413532016-03-15 13:40:17 +0100579 struct fence *f = container_of(rcu, struct fence, rcu);
Chunming Zhoub49c84a2015-11-05 11:28:28 +0800580 struct amdgpu_fence *fence = to_amdgpu_fence(f);
581 kmem_cache_free(amdgpu_fence_slab, fence);
582}
583
Christian Königb4413532016-03-15 13:40:17 +0100584/**
585 * amdgpu_fence_release - callback that fence can be freed
586 *
587 * @fence: fence
588 *
589 * This function is called when the reference count becomes zero.
590 * It just RCU schedules freeing up the fence.
591 */
592static void amdgpu_fence_release(struct fence *f)
593{
594 call_rcu(&f->rcu, amdgpu_fence_free);
595}
596
Christian König22e5a2f2016-03-11 15:12:53 +0100597static const struct fence_ops amdgpu_fence_ops = {
Christian Königa95e2642015-11-03 12:21:57 +0100598 .get_driver_name = amdgpu_fence_get_driver_name,
599 .get_timeline_name = amdgpu_fence_get_timeline_name,
600 .enable_signaling = amdgpu_fence_enable_signaling,
Christian Königa95e2642015-11-03 12:21:57 +0100601 .wait = fence_default_wait,
Chunming Zhoub49c84a2015-11-05 11:28:28 +0800602 .release = amdgpu_fence_release,
Christian Königa95e2642015-11-03 12:21:57 +0100603};
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400604
605/*
606 * Fence debugfs
607 */
608#if defined(CONFIG_DEBUG_FS)
609static int amdgpu_debugfs_fence_info(struct seq_file *m, void *data)
610{
611 struct drm_info_node *node = (struct drm_info_node *)m->private;
612 struct drm_device *dev = node->minor->dev;
613 struct amdgpu_device *adev = dev->dev_private;
Christian König5907a0d2016-01-18 15:16:53 +0100614 int i;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400615
616 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
617 struct amdgpu_ring *ring = adev->rings[i];
618 if (!ring || !ring->fence_drv.initialized)
619 continue;
620
621 amdgpu_fence_process(ring);
622
Christian König344c19f2015-06-02 15:47:16 +0200623 seq_printf(m, "--- ring %d (%s) ---\n", i, ring->name);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400624 seq_printf(m, "Last signaled fence 0x%016llx\n",
625 (unsigned long long)atomic64_read(&ring->fence_drv.last_seq));
626 seq_printf(m, "Last emitted 0x%016llx\n",
Christian König5907a0d2016-01-18 15:16:53 +0100627 ring->fence_drv.sync_seq);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400628 }
629 return 0;
630}
631
Alex Deucher18db89b2016-01-14 10:25:22 -0500632/**
633 * amdgpu_debugfs_gpu_reset - manually trigger a gpu reset
634 *
635 * Manually trigger a gpu reset at the next fence wait.
636 */
637static int amdgpu_debugfs_gpu_reset(struct seq_file *m, void *data)
638{
639 struct drm_info_node *node = (struct drm_info_node *) m->private;
640 struct drm_device *dev = node->minor->dev;
641 struct amdgpu_device *adev = dev->dev_private;
642
643 seq_printf(m, "gpu reset\n");
644 amdgpu_gpu_reset(adev);
645
646 return 0;
647}
648
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400649static struct drm_info_list amdgpu_debugfs_fence_list[] = {
650 {"amdgpu_fence_info", &amdgpu_debugfs_fence_info, 0, NULL},
Alex Deucher18db89b2016-01-14 10:25:22 -0500651 {"amdgpu_gpu_reset", &amdgpu_debugfs_gpu_reset, 0, NULL}
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400652};
653#endif
654
655int amdgpu_debugfs_fence_init(struct amdgpu_device *adev)
656{
657#if defined(CONFIG_DEBUG_FS)
Alex Deucher18db89b2016-01-14 10:25:22 -0500658 return amdgpu_debugfs_add_files(adev, amdgpu_debugfs_fence_list, 2);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400659#else
660 return 0;
661#endif
662}
663