blob: 44eac91163eb5c2b4a7736aef634d7ab57f86aa0 [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;
56
57 wait_queue_t fence_wake;
58};
59
Chunming Zhoub49c84a2015-11-05 11:28:28 +080060static struct kmem_cache *amdgpu_fence_slab;
61static atomic_t amdgpu_fence_slab_ref = ATOMIC_INIT(0);
62
Christian König22e5a2f2016-03-11 15:12:53 +010063/*
64 * Cast helper
65 */
66static const struct fence_ops amdgpu_fence_ops;
67static inline struct amdgpu_fence *to_amdgpu_fence(struct fence *f)
68{
69 struct amdgpu_fence *__f = container_of(f, struct amdgpu_fence, base);
70
71 if (__f->base.ops == &amdgpu_fence_ops)
72 return __f;
73
74 return NULL;
75}
76
Alex Deucherd38ceaf2015-04-20 16:55:21 -040077/**
78 * amdgpu_fence_write - write a fence value
79 *
80 * @ring: ring the fence is associated with
81 * @seq: sequence number to write
82 *
83 * Writes a fence value to memory (all asics).
84 */
85static void amdgpu_fence_write(struct amdgpu_ring *ring, u32 seq)
86{
87 struct amdgpu_fence_driver *drv = &ring->fence_drv;
88
89 if (drv->cpu_addr)
90 *drv->cpu_addr = cpu_to_le32(seq);
91}
92
93/**
94 * amdgpu_fence_read - read a fence value
95 *
96 * @ring: ring the fence is associated with
97 *
98 * Reads a fence value from memory (all asics).
99 * Returns the value of the fence read from memory.
100 */
101static u32 amdgpu_fence_read(struct amdgpu_ring *ring)
102{
103 struct amdgpu_fence_driver *drv = &ring->fence_drv;
104 u32 seq = 0;
105
106 if (drv->cpu_addr)
107 seq = le32_to_cpu(*drv->cpu_addr);
108 else
109 seq = lower_32_bits(atomic64_read(&drv->last_seq));
110
111 return seq;
112}
113
114/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400115 * amdgpu_fence_emit - emit a fence on the requested ring
116 *
117 * @ring: ring the fence is associated with
Christian König364beb22016-02-16 17:39:39 +0100118 * @f: resulting fence object
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400119 *
120 * Emits a fence command on the requested ring (all asics).
121 * Returns 0 on success, -ENOMEM on failure.
122 */
Christian König364beb22016-02-16 17:39:39 +0100123int amdgpu_fence_emit(struct amdgpu_ring *ring, struct fence **f)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400124{
125 struct amdgpu_device *adev = ring->adev;
Christian König364beb22016-02-16 17:39:39 +0100126 struct amdgpu_fence *fence;
Christian Königc89377d2016-03-13 19:19:48 +0100127 struct fence *old, **ptr;
128 unsigned idx;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400129
Christian König364beb22016-02-16 17:39:39 +0100130 fence = kmem_cache_alloc(amdgpu_fence_slab, GFP_KERNEL);
131 if (fence == NULL)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400132 return -ENOMEM;
Christian König364beb22016-02-16 17:39:39 +0100133
134 fence->seq = ++ring->fence_drv.sync_seq;
135 fence->ring = ring;
136 fence_init(&fence->base, &amdgpu_fence_ops,
137 &ring->fence_drv.fence_queue.lock,
138 adev->fence_context + ring->idx,
139 fence->seq);
Chunming Zhou890ee232015-06-01 14:35:03 +0800140 amdgpu_ring_emit_fence(ring, ring->fence_drv.gpu_addr,
Christian König364beb22016-02-16 17:39:39 +0100141 fence->seq, AMDGPU_FENCE_FLAG_INT);
Christian Königc89377d2016-03-13 19:19:48 +0100142
143 idx = fence->seq & ring->fence_drv.num_fences_mask;
144 ptr = &ring->fence_drv.fences[idx];
145 /* This function can't be called concurrently anyway, otherwise
146 * emitting the fence would mess up the hardware ring buffer.
147 */
148 old = rcu_dereference_protected(*ptr, 1);
149
150 rcu_assign_pointer(*ptr, fence_get(&fence->base));
151
152 BUG_ON(old && !fence_is_signaled(old));
153 fence_put(old);
154
Christian König364beb22016-02-16 17:39:39 +0100155 *f = &fence->base;
Christian Königc89377d2016-03-13 19:19:48 +0100156
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400157 return 0;
158}
159
160/**
Christian Königc2776af2015-11-03 13:27:39 +0100161 * amdgpu_fence_schedule_fallback - schedule fallback check
162 *
163 * @ring: pointer to struct amdgpu_ring
164 *
165 * Start a timer as fallback to our interrupts.
166 */
167static void amdgpu_fence_schedule_fallback(struct amdgpu_ring *ring)
168{
169 mod_timer(&ring->fence_drv.fallback_timer,
170 jiffies + AMDGPU_FENCE_JIFFIES_TIMEOUT);
171}
172
173/**
Christian Königca08e042016-03-11 17:57:56 +0100174 * amdgpu_fence_process - check for fence activity
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400175 *
176 * @ring: pointer to struct amdgpu_ring
177 *
178 * Checks the current fence value and calculates the last
Christian Königca08e042016-03-11 17:57:56 +0100179 * signalled fence value. Wakes the fence queue if the
180 * sequence number has increased.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400181 */
Christian Königca08e042016-03-11 17:57:56 +0100182void amdgpu_fence_process(struct amdgpu_ring *ring)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400183{
184 uint64_t seq, last_seq, last_emitted;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400185 bool wake = false;
186
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400187 last_seq = atomic64_read(&ring->fence_drv.last_seq);
188 do {
Christian König5907a0d2016-01-18 15:16:53 +0100189 last_emitted = ring->fence_drv.sync_seq;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400190 seq = amdgpu_fence_read(ring);
191 seq |= last_seq & 0xffffffff00000000LL;
192 if (seq < last_seq) {
193 seq &= 0xffffffff;
194 seq |= last_emitted & 0xffffffff00000000LL;
195 }
196
Christian Königd9713ef2016-03-11 17:49:58 +0100197 if (seq <= last_seq || seq > last_emitted)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400198 break;
Christian Königd9713ef2016-03-11 17:49:58 +0100199
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400200 /* If we loop over we don't want to return without
201 * checking if a fence is signaled as it means that the
202 * seq we just read is different from the previous on.
203 */
204 wake = true;
205 last_seq = seq;
Christian Königd9713ef2016-03-11 17:49:58 +0100206
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400207 } while (atomic64_xchg(&ring->fence_drv.last_seq, seq) > seq);
208
209 if (seq < last_emitted)
Christian Königc2776af2015-11-03 13:27:39 +0100210 amdgpu_fence_schedule_fallback(ring);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400211
Christian Königca08e042016-03-11 17:57:56 +0100212 if (wake)
monk.liu7f06c232015-07-30 18:28:12 +0800213 wake_up_all(&ring->fence_drv.fence_queue);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400214}
215
216/**
Christian Königc2776af2015-11-03 13:27:39 +0100217 * amdgpu_fence_fallback - fallback for hardware interrupts
218 *
219 * @work: delayed work item
220 *
221 * Checks for fence activity.
222 */
223static void amdgpu_fence_fallback(unsigned long arg)
224{
225 struct amdgpu_ring *ring = (void *)arg;
226
227 amdgpu_fence_process(ring);
228}
229
230/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400231 * amdgpu_fence_seq_signaled - check if a fence sequence number has signaled
232 *
233 * @ring: ring the fence is associated with
234 * @seq: sequence number
235 *
236 * Check if the last signaled fence sequnce number is >= the requested
237 * sequence number (all asics).
238 * Returns true if the fence has signaled (current fence value
239 * is >= requested value) or false if it has not (current fence
240 * value is < the requested value. Helper function for
241 * amdgpu_fence_signaled().
242 */
243static bool amdgpu_fence_seq_signaled(struct amdgpu_ring *ring, u64 seq)
244{
245 if (atomic64_read(&ring->fence_drv.last_seq) >= seq)
246 return true;
247
248 /* poll new last sequence at least once */
249 amdgpu_fence_process(ring);
250 if (atomic64_read(&ring->fence_drv.last_seq) >= seq)
251 return true;
252
253 return false;
254}
255
monk.liu7f06c232015-07-30 18:28:12 +0800256/*
Christian König9b389662016-02-11 14:42:33 +0100257 * amdgpu_ring_wait_seq - wait for seq of the specific ring to signal
monk.liu7f06c232015-07-30 18:28:12 +0800258 * @ring: ring to wait on for the seq number
259 * @seq: seq number wait for
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400260 *
monk.liu7f06c232015-07-30 18:28:12 +0800261 * return value:
Christian König00d2a2b2015-08-07 16:15:36 +0200262 * 0: seq signaled, and gpu not hang
monk.liu7f06c232015-07-30 18:28:12 +0800263 * -EINVAL: some paramter is not valid
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400264 */
Christian König00d2a2b2015-08-07 16:15:36 +0200265static int amdgpu_fence_ring_wait_seq(struct amdgpu_ring *ring, uint64_t seq)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400266{
monk.liu7f06c232015-07-30 18:28:12 +0800267 BUG_ON(!ring);
Christian König5907a0d2016-01-18 15:16:53 +0100268 if (seq > ring->fence_drv.sync_seq)
monk.liu7f06c232015-07-30 18:28:12 +0800269 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400270
monk.liu7f06c232015-07-30 18:28:12 +0800271 if (atomic64_read(&ring->fence_drv.last_seq) >= seq)
Christian König00d2a2b2015-08-07 16:15:36 +0200272 return 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400273
Christian Königc2776af2015-11-03 13:27:39 +0100274 amdgpu_fence_schedule_fallback(ring);
Christian König9b389662016-02-11 14:42:33 +0100275 wait_event(ring->fence_drv.fence_queue,
276 amdgpu_fence_seq_signaled(ring, seq));
monk.liu7f06c232015-07-30 18:28:12 +0800277
Christian König9b389662016-02-11 14:42:33 +0100278 return 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400279}
280
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400281/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400282 * amdgpu_fence_wait_empty - wait for all fences to signal
283 *
284 * @adev: amdgpu device pointer
285 * @ring: ring index the fence is associated with
286 *
287 * Wait for all fences on the requested ring to signal (all asics).
288 * Returns 0 if the fences have passed, error for all other cases.
289 * Caller must hold ring lock.
290 */
291int amdgpu_fence_wait_empty(struct amdgpu_ring *ring)
292{
Christian König5907a0d2016-01-18 15:16:53 +0100293 uint64_t seq = ring->fence_drv.sync_seq;
Christian König00d2a2b2015-08-07 16:15:36 +0200294
monk.liu7f06c232015-07-30 18:28:12 +0800295 if (!seq)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400296 return 0;
297
Christian König00d2a2b2015-08-07 16:15:36 +0200298 return amdgpu_fence_ring_wait_seq(ring, seq);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400299}
300
301/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400302 * amdgpu_fence_count_emitted - get the count of emitted fences
303 *
304 * @ring: ring the fence is associated with
305 *
306 * Get the number of fences emitted on the requested ring (all asics).
307 * Returns the number of emitted fences on the ring. Used by the
308 * dynpm code to ring track activity.
309 */
310unsigned amdgpu_fence_count_emitted(struct amdgpu_ring *ring)
311{
312 uint64_t emitted;
313
314 /* We are not protected by ring lock when reading the last sequence
315 * but it's ok to report slightly wrong fence count here.
316 */
317 amdgpu_fence_process(ring);
Christian König5907a0d2016-01-18 15:16:53 +0100318 emitted = ring->fence_drv.sync_seq
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400319 - atomic64_read(&ring->fence_drv.last_seq);
320 /* to avoid 32bits warp around */
321 if (emitted > 0x10000000)
322 emitted = 0x10000000;
323
324 return (unsigned)emitted;
325}
326
327/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400328 * amdgpu_fence_driver_start_ring - make the fence driver
329 * ready for use on the requested ring.
330 *
331 * @ring: ring to start the fence driver on
332 * @irq_src: interrupt source to use for this ring
333 * @irq_type: interrupt type to use for this ring
334 *
335 * Make the fence driver ready for processing (all asics).
336 * Not all asics have all rings, so each asic will only
337 * start the fence driver on the rings it has.
338 * Returns 0 for success, errors for failure.
339 */
340int amdgpu_fence_driver_start_ring(struct amdgpu_ring *ring,
341 struct amdgpu_irq_src *irq_src,
342 unsigned irq_type)
343{
344 struct amdgpu_device *adev = ring->adev;
345 uint64_t index;
346
347 if (ring != &adev->uvd.ring) {
348 ring->fence_drv.cpu_addr = &adev->wb.wb[ring->fence_offs];
349 ring->fence_drv.gpu_addr = adev->wb.gpu_addr + (ring->fence_offs * 4);
350 } else {
351 /* put fence directly behind firmware */
352 index = ALIGN(adev->uvd.fw->size, 8);
353 ring->fence_drv.cpu_addr = adev->uvd.cpu_addr + index;
354 ring->fence_drv.gpu_addr = adev->uvd.gpu_addr + index;
355 }
356 amdgpu_fence_write(ring, atomic64_read(&ring->fence_drv.last_seq));
Chunming Zhouc6a40792015-06-01 14:14:32 +0800357 amdgpu_irq_get(adev, irq_src, irq_type);
358
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400359 ring->fence_drv.irq_src = irq_src;
360 ring->fence_drv.irq_type = irq_type;
Chunming Zhouc6a40792015-06-01 14:14:32 +0800361 ring->fence_drv.initialized = true;
362
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400363 dev_info(adev->dev, "fence driver on ring %d use gpu addr 0x%016llx, "
364 "cpu addr 0x%p\n", ring->idx,
365 ring->fence_drv.gpu_addr, ring->fence_drv.cpu_addr);
366 return 0;
367}
368
369/**
370 * amdgpu_fence_driver_init_ring - init the fence driver
371 * for the requested ring.
372 *
373 * @ring: ring to init the fence driver on
Christian Könige6151a02016-03-15 14:52:26 +0100374 * @num_hw_submission: number of entries on the hardware queue
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400375 *
376 * Init the fence driver for the requested ring (all asics).
377 * Helper function for amdgpu_fence_driver_init().
378 */
Christian Könige6151a02016-03-15 14:52:26 +0100379int amdgpu_fence_driver_init_ring(struct amdgpu_ring *ring,
380 unsigned num_hw_submission)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400381{
Chunming Zhoucadf97b2016-01-15 11:25:00 +0800382 long timeout;
Christian König5907a0d2016-01-18 15:16:53 +0100383 int r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400384
Christian Könige6151a02016-03-15 14:52:26 +0100385 /* Check that num_hw_submission is a power of two */
386 if ((num_hw_submission & (num_hw_submission - 1)) != 0)
387 return -EINVAL;
388
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400389 ring->fence_drv.cpu_addr = NULL;
390 ring->fence_drv.gpu_addr = 0;
Christian König5907a0d2016-01-18 15:16:53 +0100391 ring->fence_drv.sync_seq = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400392 atomic64_set(&ring->fence_drv.last_seq, 0);
393 ring->fence_drv.initialized = false;
394
Christian Königc2776af2015-11-03 13:27:39 +0100395 setup_timer(&ring->fence_drv.fallback_timer, amdgpu_fence_fallback,
396 (unsigned long)ring);
Alex Deucherb80d8472015-08-16 22:55:02 -0400397
Christian König5ec92a72015-09-07 18:43:02 +0200398 init_waitqueue_head(&ring->fence_drv.fence_queue);
Christian Königc89377d2016-03-13 19:19:48 +0100399 ring->fence_drv.num_fences_mask = num_hw_submission - 1;
400 ring->fence_drv.fences = kcalloc(num_hw_submission, sizeof(void *),
401 GFP_KERNEL);
402 if (!ring->fence_drv.fences)
403 return -ENOMEM;
Christian König5ec92a72015-09-07 18:43:02 +0200404
Chunming Zhoucadf97b2016-01-15 11:25:00 +0800405 timeout = msecs_to_jiffies(amdgpu_lockup_timeout);
406 if (timeout == 0) {
407 /*
408 * FIXME:
409 * Delayed workqueue cannot use it directly,
410 * so the scheduler will not use delayed workqueue if
411 * MAX_SCHEDULE_TIMEOUT is set.
412 * Currently keep it simple and silly.
413 */
414 timeout = MAX_SCHEDULE_TIMEOUT;
415 }
416 r = amd_sched_init(&ring->sched, &amdgpu_sched_ops,
Christian Könige6151a02016-03-15 14:52:26 +0100417 num_hw_submission,
Chunming Zhoucadf97b2016-01-15 11:25:00 +0800418 timeout, ring->name);
419 if (r) {
420 DRM_ERROR("Failed to create scheduler on ring %s.\n",
421 ring->name);
422 return r;
Alex Deucherb80d8472015-08-16 22:55:02 -0400423 }
Christian König4f839a22015-09-08 20:22:31 +0200424
425 return 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400426}
427
428/**
429 * amdgpu_fence_driver_init - init the fence driver
430 * for all possible rings.
431 *
432 * @adev: amdgpu device pointer
433 *
434 * Init the fence driver for all possible rings (all asics).
435 * Not all asics have all rings, so each asic will only
436 * start the fence driver on the rings it has using
437 * amdgpu_fence_driver_start_ring().
438 * Returns 0 for success.
439 */
440int amdgpu_fence_driver_init(struct amdgpu_device *adev)
441{
Chunming Zhoub49c84a2015-11-05 11:28:28 +0800442 if (atomic_inc_return(&amdgpu_fence_slab_ref) == 1) {
443 amdgpu_fence_slab = kmem_cache_create(
444 "amdgpu_fence", sizeof(struct amdgpu_fence), 0,
445 SLAB_HWCACHE_ALIGN, NULL);
446 if (!amdgpu_fence_slab)
447 return -ENOMEM;
448 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400449 if (amdgpu_debugfs_fence_init(adev))
450 dev_err(adev->dev, "fence debugfs file creation failed\n");
451
452 return 0;
453}
454
455/**
456 * amdgpu_fence_driver_fini - tear down the fence driver
457 * for all possible rings.
458 *
459 * @adev: amdgpu device pointer
460 *
461 * Tear down the fence driver for all possible rings (all asics).
462 */
463void amdgpu_fence_driver_fini(struct amdgpu_device *adev)
464{
Christian Königc89377d2016-03-13 19:19:48 +0100465 unsigned i, j;
466 int r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400467
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400468 for (i = 0; i < AMDGPU_MAX_RINGS; i++) {
469 struct amdgpu_ring *ring = adev->rings[i];
Christian Königc2776af2015-11-03 13:27:39 +0100470
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400471 if (!ring || !ring->fence_drv.initialized)
472 continue;
473 r = amdgpu_fence_wait_empty(ring);
474 if (r) {
475 /* no need to trigger GPU reset as we are unloading */
476 amdgpu_fence_driver_force_completion(adev);
477 }
monk.liu7f06c232015-07-30 18:28:12 +0800478 wake_up_all(&ring->fence_drv.fence_queue);
Chunming Zhouc6a40792015-06-01 14:14:32 +0800479 amdgpu_irq_put(adev, ring->fence_drv.irq_src,
480 ring->fence_drv.irq_type);
Christian König4f839a22015-09-08 20:22:31 +0200481 amd_sched_fini(&ring->sched);
Christian Königc2776af2015-11-03 13:27:39 +0100482 del_timer_sync(&ring->fence_drv.fallback_timer);
Christian Königc89377d2016-03-13 19:19:48 +0100483 for (j = 0; j <= ring->fence_drv.num_fences_mask; ++j)
484 fence_put(ring->fence_drv.fences[i]);
485 kfree(ring->fence_drv.fences);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400486 ring->fence_drv.initialized = false;
487 }
Christian Königc89377d2016-03-13 19:19:48 +0100488
489 if (atomic_dec_and_test(&amdgpu_fence_slab_ref))
490 kmem_cache_destroy(amdgpu_fence_slab);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400491}
492
493/**
Alex Deucher5ceb54c2015-08-05 12:41:48 -0400494 * amdgpu_fence_driver_suspend - suspend the fence driver
495 * for all possible rings.
496 *
497 * @adev: amdgpu device pointer
498 *
499 * Suspend the fence driver for all possible rings (all asics).
500 */
501void amdgpu_fence_driver_suspend(struct amdgpu_device *adev)
502{
503 int i, r;
504
Alex Deucher5ceb54c2015-08-05 12:41:48 -0400505 for (i = 0; i < AMDGPU_MAX_RINGS; i++) {
506 struct amdgpu_ring *ring = adev->rings[i];
507 if (!ring || !ring->fence_drv.initialized)
508 continue;
509
510 /* wait for gpu to finish processing current batch */
511 r = amdgpu_fence_wait_empty(ring);
512 if (r) {
513 /* delay GPU reset to resume */
514 amdgpu_fence_driver_force_completion(adev);
515 }
516
517 /* disable the interrupt */
518 amdgpu_irq_put(adev, ring->fence_drv.irq_src,
519 ring->fence_drv.irq_type);
520 }
Alex Deucher5ceb54c2015-08-05 12:41:48 -0400521}
522
523/**
524 * amdgpu_fence_driver_resume - resume the fence driver
525 * for all possible rings.
526 *
527 * @adev: amdgpu device pointer
528 *
529 * Resume the fence driver for all possible rings (all asics).
530 * Not all asics have all rings, so each asic will only
531 * start the fence driver on the rings it has using
532 * amdgpu_fence_driver_start_ring().
533 * Returns 0 for success.
534 */
535void amdgpu_fence_driver_resume(struct amdgpu_device *adev)
536{
537 int i;
538
Alex Deucher5ceb54c2015-08-05 12:41:48 -0400539 for (i = 0; i < AMDGPU_MAX_RINGS; i++) {
540 struct amdgpu_ring *ring = adev->rings[i];
541 if (!ring || !ring->fence_drv.initialized)
542 continue;
543
544 /* enable the interrupt */
545 amdgpu_irq_get(adev, ring->fence_drv.irq_src,
546 ring->fence_drv.irq_type);
547 }
Alex Deucher5ceb54c2015-08-05 12:41:48 -0400548}
549
550/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400551 * amdgpu_fence_driver_force_completion - force all fence waiter to complete
552 *
553 * @adev: amdgpu device pointer
554 *
555 * In case of GPU reset failure make sure no process keep waiting on fence
556 * that will never complete.
557 */
558void amdgpu_fence_driver_force_completion(struct amdgpu_device *adev)
559{
560 int i;
561
562 for (i = 0; i < AMDGPU_MAX_RINGS; i++) {
563 struct amdgpu_ring *ring = adev->rings[i];
564 if (!ring || !ring->fence_drv.initialized)
565 continue;
566
Christian König5907a0d2016-01-18 15:16:53 +0100567 amdgpu_fence_write(ring, ring->fence_drv.sync_seq);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400568 }
569}
570
Christian Königa95e2642015-11-03 12:21:57 +0100571/*
572 * Common fence implementation
573 */
574
575static const char *amdgpu_fence_get_driver_name(struct fence *fence)
576{
577 return "amdgpu";
578}
579
580static const char *amdgpu_fence_get_timeline_name(struct fence *f)
581{
582 struct amdgpu_fence *fence = to_amdgpu_fence(f);
583 return (const char *)fence->ring->name;
584}
585
586/**
587 * amdgpu_fence_is_signaled - test if fence is signaled
588 *
589 * @f: fence to test
590 *
591 * Test the fence sequence number if it is already signaled. If it isn't
592 * signaled start fence processing. Returns True if the fence is signaled.
593 */
594static bool amdgpu_fence_is_signaled(struct fence *f)
595{
596 struct amdgpu_fence *fence = to_amdgpu_fence(f);
597 struct amdgpu_ring *ring = fence->ring;
598
599 if (atomic64_read(&ring->fence_drv.last_seq) >= fence->seq)
600 return true;
601
602 amdgpu_fence_process(ring);
603
604 if (atomic64_read(&ring->fence_drv.last_seq) >= fence->seq)
605 return true;
606
607 return false;
608}
609
610/**
611 * amdgpu_fence_check_signaled - callback from fence_queue
612 *
613 * this function is called with fence_queue lock held, which is also used
614 * for the fence locking itself, so unlocked variants are used for
615 * fence_signal, and remove_wait_queue.
616 */
617static int amdgpu_fence_check_signaled(wait_queue_t *wait, unsigned mode, int flags, void *key)
618{
619 struct amdgpu_fence *fence;
620 struct amdgpu_device *adev;
621 u64 seq;
622 int ret;
623
624 fence = container_of(wait, struct amdgpu_fence, fence_wake);
625 adev = fence->ring->adev;
626
627 /*
628 * We cannot use amdgpu_fence_process here because we're already
629 * in the waitqueue, in a call from wake_up_all.
630 */
631 seq = atomic64_read(&fence->ring->fence_drv.last_seq);
632 if (seq >= fence->seq) {
633 ret = fence_signal_locked(&fence->base);
634 if (!ret)
635 FENCE_TRACE(&fence->base, "signaled from irq context\n");
636 else
637 FENCE_TRACE(&fence->base, "was already signaled\n");
638
639 __remove_wait_queue(&fence->ring->fence_drv.fence_queue, &fence->fence_wake);
640 fence_put(&fence->base);
641 } else
642 FENCE_TRACE(&fence->base, "pending\n");
643 return 0;
644}
645
646/**
647 * amdgpu_fence_enable_signaling - enable signalling on fence
648 * @fence: fence
649 *
650 * This function is called with fence_queue lock held, and adds a callback
651 * to fence_queue that checks if this fence is signaled, and if so it
652 * signals the fence and removes itself.
653 */
654static bool amdgpu_fence_enable_signaling(struct fence *f)
655{
656 struct amdgpu_fence *fence = to_amdgpu_fence(f);
657 struct amdgpu_ring *ring = fence->ring;
658
659 if (atomic64_read(&ring->fence_drv.last_seq) >= fence->seq)
660 return false;
661
662 fence->fence_wake.flags = 0;
663 fence->fence_wake.private = NULL;
664 fence->fence_wake.func = amdgpu_fence_check_signaled;
665 __add_wait_queue(&ring->fence_drv.fence_queue, &fence->fence_wake);
666 fence_get(f);
Christian Königc2776af2015-11-03 13:27:39 +0100667 if (!timer_pending(&ring->fence_drv.fallback_timer))
668 amdgpu_fence_schedule_fallback(ring);
Christian Königa95e2642015-11-03 12:21:57 +0100669 FENCE_TRACE(&fence->base, "armed on ring %i!\n", ring->idx);
670 return true;
671}
672
Christian Königb4413532016-03-15 13:40:17 +0100673/**
674 * amdgpu_fence_free - free up the fence memory
675 *
676 * @rcu: RCU callback head
677 *
678 * Free up the fence memory after the RCU grace period.
679 */
680static void amdgpu_fence_free(struct rcu_head *rcu)
Chunming Zhoub49c84a2015-11-05 11:28:28 +0800681{
Christian Königb4413532016-03-15 13:40:17 +0100682 struct fence *f = container_of(rcu, struct fence, rcu);
Chunming Zhoub49c84a2015-11-05 11:28:28 +0800683 struct amdgpu_fence *fence = to_amdgpu_fence(f);
684 kmem_cache_free(amdgpu_fence_slab, fence);
685}
686
Christian Königb4413532016-03-15 13:40:17 +0100687/**
688 * amdgpu_fence_release - callback that fence can be freed
689 *
690 * @fence: fence
691 *
692 * This function is called when the reference count becomes zero.
693 * It just RCU schedules freeing up the fence.
694 */
695static void amdgpu_fence_release(struct fence *f)
696{
697 call_rcu(&f->rcu, amdgpu_fence_free);
698}
699
Christian König22e5a2f2016-03-11 15:12:53 +0100700static const struct fence_ops amdgpu_fence_ops = {
Christian Königa95e2642015-11-03 12:21:57 +0100701 .get_driver_name = amdgpu_fence_get_driver_name,
702 .get_timeline_name = amdgpu_fence_get_timeline_name,
703 .enable_signaling = amdgpu_fence_enable_signaling,
704 .signaled = amdgpu_fence_is_signaled,
705 .wait = fence_default_wait,
Chunming Zhoub49c84a2015-11-05 11:28:28 +0800706 .release = amdgpu_fence_release,
Christian Königa95e2642015-11-03 12:21:57 +0100707};
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400708
709/*
710 * Fence debugfs
711 */
712#if defined(CONFIG_DEBUG_FS)
713static int amdgpu_debugfs_fence_info(struct seq_file *m, void *data)
714{
715 struct drm_info_node *node = (struct drm_info_node *)m->private;
716 struct drm_device *dev = node->minor->dev;
717 struct amdgpu_device *adev = dev->dev_private;
Christian König5907a0d2016-01-18 15:16:53 +0100718 int i;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400719
720 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
721 struct amdgpu_ring *ring = adev->rings[i];
722 if (!ring || !ring->fence_drv.initialized)
723 continue;
724
725 amdgpu_fence_process(ring);
726
Christian König344c19f2015-06-02 15:47:16 +0200727 seq_printf(m, "--- ring %d (%s) ---\n", i, ring->name);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400728 seq_printf(m, "Last signaled fence 0x%016llx\n",
729 (unsigned long long)atomic64_read(&ring->fence_drv.last_seq));
730 seq_printf(m, "Last emitted 0x%016llx\n",
Christian König5907a0d2016-01-18 15:16:53 +0100731 ring->fence_drv.sync_seq);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400732 }
733 return 0;
734}
735
Alex Deucher18db89b2016-01-14 10:25:22 -0500736/**
737 * amdgpu_debugfs_gpu_reset - manually trigger a gpu reset
738 *
739 * Manually trigger a gpu reset at the next fence wait.
740 */
741static int amdgpu_debugfs_gpu_reset(struct seq_file *m, void *data)
742{
743 struct drm_info_node *node = (struct drm_info_node *) m->private;
744 struct drm_device *dev = node->minor->dev;
745 struct amdgpu_device *adev = dev->dev_private;
746
747 seq_printf(m, "gpu reset\n");
748 amdgpu_gpu_reset(adev);
749
750 return 0;
751}
752
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400753static struct drm_info_list amdgpu_debugfs_fence_list[] = {
754 {"amdgpu_fence_info", &amdgpu_debugfs_fence_info, 0, NULL},
Alex Deucher18db89b2016-01-14 10:25:22 -0500755 {"amdgpu_gpu_reset", &amdgpu_debugfs_gpu_reset, 0, NULL}
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400756};
757#endif
758
759int amdgpu_debugfs_fence_init(struct amdgpu_device *adev)
760{
761#if defined(CONFIG_DEBUG_FS)
Alex Deucher18db89b2016-01-14 10:25:22 -0500762 return amdgpu_debugfs_add_files(adev, amdgpu_debugfs_fence_list, 2);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400763#else
764 return 0;
765#endif
766}
767