2 * Copyright 2009 Jerome Glisse.
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:
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.
21 * The above copyright notice and this permission notice (including the
22 * next paragraph) shall be included in all copies or substantial portions
28 * Jerome Glisse <glisse@freedesktop.org>
32 #include <linux/atomic.h>
33 #include <linux/firmware.h>
34 #include <linux/kref.h>
35 #include <linux/sched/signal.h>
36 #include <linux/seq_file.h>
37 #include <linux/slab.h>
38 #include <linux/wait.h>
40 #include <drm/drm_device.h>
41 #include <drm/drm_file.h>
44 #include "radeon_reg.h"
45 #include "radeon_trace.h"
49 * Fences mark an event in the GPUs pipeline and are used
50 * for GPU/CPU synchronization. When the fence is written,
51 * it is expected that all buffers associated with that fence
52 * are no longer in use by the associated ring on the GPU and
53 * that the relevant GPU caches have been flushed. Whether
54 * we use a scratch register or memory location depends on the asic
55 * and whether writeback is enabled.
59 * radeon_fence_write - write a fence value
61 * @rdev: radeon_device pointer
62 * @seq: sequence number to write
63 * @ring: ring index the fence is associated with
65 * Writes a fence value to memory or a scratch register (all asics).
67 static void radeon_fence_write(struct radeon_device *rdev, u32 seq, int ring)
69 struct radeon_fence_driver *drv = &rdev->fence_drv[ring];
70 if (likely(rdev->wb.enabled || !drv->scratch_reg)) {
72 *drv->cpu_addr = cpu_to_le32(seq);
75 WREG32(drv->scratch_reg, seq);
80 * radeon_fence_read - read a fence value
82 * @rdev: radeon_device pointer
83 * @ring: ring index the fence is associated with
85 * Reads a fence value from memory or a scratch register (all asics).
86 * Returns the value of the fence read from memory or register.
88 static u32 radeon_fence_read(struct radeon_device *rdev, int ring)
90 struct radeon_fence_driver *drv = &rdev->fence_drv[ring];
93 if (likely(rdev->wb.enabled || !drv->scratch_reg)) {
95 seq = le32_to_cpu(*drv->cpu_addr);
97 seq = lower_32_bits(atomic64_read(&drv->last_seq));
100 seq = RREG32(drv->scratch_reg);
106 * radeon_fence_schedule_check - schedule lockup check
108 * @rdev: radeon_device pointer
109 * @ring: ring index we should work with
111 * Queues a delayed work item to check for lockups.
113 static void radeon_fence_schedule_check(struct radeon_device *rdev, int ring)
116 * Do not reset the timer here with mod_delayed_work,
117 * this can livelock in an interaction with TTM delayed destroy.
119 queue_delayed_work(system_power_efficient_wq,
120 &rdev->fence_drv[ring].lockup_work,
121 RADEON_FENCE_JIFFIES_TIMEOUT);
125 * radeon_fence_emit - emit a fence on the requested ring
127 * @rdev: radeon_device pointer
128 * @fence: radeon fence object
129 * @ring: ring index the fence is associated with
131 * Emits a fence command on the requested ring (all asics).
132 * Returns 0 on success, -ENOMEM on failure.
134 int radeon_fence_emit(struct radeon_device *rdev,
135 struct radeon_fence **fence,
140 /* we are protected by the ring emission mutex */
141 *fence = kmalloc(sizeof(struct radeon_fence), GFP_KERNEL);
142 if ((*fence) == NULL) {
145 (*fence)->rdev = rdev;
146 (*fence)->seq = seq = ++rdev->fence_drv[ring].sync_seq[ring];
147 (*fence)->ring = ring;
148 (*fence)->is_vm_update = false;
149 dma_fence_init(&(*fence)->base, &radeon_fence_ops,
150 &rdev->fence_queue.lock,
151 rdev->fence_context + ring,
153 radeon_fence_ring_emit(rdev, ring, *fence);
154 trace_radeon_fence_emit(rdev_to_drm(rdev), ring, (*fence)->seq);
155 radeon_fence_schedule_check(rdev, ring);
160 * radeon_fence_check_signaled - callback from fence_queue
162 * this function is called with fence_queue lock held, which is also used
163 * for the fence locking itself, so unlocked variants are used for
164 * fence_signal, and remove_wait_queue.
166 static int radeon_fence_check_signaled(wait_queue_entry_t *wait, unsigned mode, int flags, void *key)
168 struct radeon_fence *fence;
171 fence = container_of(wait, struct radeon_fence, fence_wake);
174 * We cannot use radeon_fence_process here because we're already
175 * in the waitqueue, in a call from wake_up_all.
177 seq = atomic64_read(&fence->rdev->fence_drv[fence->ring].last_seq);
178 if (seq >= fence->seq) {
179 dma_fence_signal_locked(&fence->base);
180 radeon_irq_kms_sw_irq_put(fence->rdev, fence->ring);
181 __remove_wait_queue(&fence->rdev->fence_queue, &fence->fence_wake);
182 dma_fence_put(&fence->base);
188 * radeon_fence_activity - check for fence activity
190 * @rdev: radeon_device pointer
191 * @ring: ring index the fence is associated with
193 * Checks the current fence value and calculates the last
194 * signalled fence value. Returns true if activity occured
195 * on the ring, and the fence_queue should be waken up.
197 static bool radeon_fence_activity(struct radeon_device *rdev, int ring)
199 uint64_t seq, last_seq, last_emitted;
200 unsigned count_loop = 0;
203 /* Note there is a scenario here for an infinite loop but it's
204 * very unlikely to happen. For it to happen, the current polling
205 * process need to be interrupted by another process and another
206 * process needs to update the last_seq btw the atomic read and
207 * xchg of the current process.
209 * More over for this to go in infinite loop there need to be
210 * continuously new fence signaled ie radeon_fence_read needs
211 * to return a different value each time for both the currently
212 * polling process and the other process that xchg the last_seq
213 * btw atomic read and xchg of the current process. And the
214 * value the other process set as last seq must be higher than
215 * the seq value we just read. Which means that current process
216 * need to be interrupted after radeon_fence_read and before
219 * To be even more safe we count the number of time we loop and
220 * we bail after 10 loop just accepting the fact that we might
221 * have temporarly set the last_seq not to the true real last
222 * seq but to an older one.
224 last_seq = atomic64_read(&rdev->fence_drv[ring].last_seq);
226 last_emitted = rdev->fence_drv[ring].sync_seq[ring];
227 seq = radeon_fence_read(rdev, ring);
228 seq |= last_seq & 0xffffffff00000000LL;
229 if (seq < last_seq) {
231 seq |= last_emitted & 0xffffffff00000000LL;
234 if (seq <= last_seq || seq > last_emitted) {
237 /* If we loop over we don't want to return without
238 * checking if a fence is signaled as it means that the
239 * seq we just read is different from the previous on.
243 if ((count_loop++) > 10) {
244 /* We looped over too many time leave with the
245 * fact that we might have set an older fence
246 * seq then the current real last seq as signaled
251 } while (atomic64_xchg(&rdev->fence_drv[ring].last_seq, seq) > seq);
253 if (seq < last_emitted)
254 radeon_fence_schedule_check(rdev, ring);
260 * radeon_fence_check_lockup - check for hardware lockup
262 * @work: delayed work item
264 * Checks for fence activity and if there is none probe
265 * the hardware if a lockup occured.
267 static void radeon_fence_check_lockup(struct work_struct *work)
269 struct radeon_fence_driver *fence_drv;
270 struct radeon_device *rdev;
273 fence_drv = container_of(work, struct radeon_fence_driver,
275 rdev = fence_drv->rdev;
276 ring = fence_drv - &rdev->fence_drv[0];
278 if (!down_read_trylock(&rdev->exclusive_lock)) {
279 /* just reschedule the check if a reset is going on */
280 radeon_fence_schedule_check(rdev, ring);
284 if (fence_drv->delayed_irq && rdev->irq.installed) {
285 unsigned long irqflags;
287 fence_drv->delayed_irq = false;
288 spin_lock_irqsave(&rdev->irq.lock, irqflags);
289 radeon_irq_set(rdev);
290 spin_unlock_irqrestore(&rdev->irq.lock, irqflags);
293 if (radeon_fence_activity(rdev, ring))
294 wake_up_all(&rdev->fence_queue);
296 else if (radeon_ring_is_lockup(rdev, ring, &rdev->ring[ring])) {
298 /* good news we believe it's a lockup */
299 dev_warn(rdev->dev, "GPU lockup (current fence id "
300 "0x%016llx last fence id 0x%016llx on ring %d)\n",
301 (uint64_t)atomic64_read(&fence_drv->last_seq),
302 fence_drv->sync_seq[ring], ring);
304 /* remember that we need an reset */
305 rdev->needs_reset = true;
306 wake_up_all(&rdev->fence_queue);
308 up_read(&rdev->exclusive_lock);
312 * radeon_fence_process - process a fence
314 * @rdev: radeon_device pointer
315 * @ring: ring index the fence is associated with
317 * Checks the current fence value and wakes the fence queue
318 * if the sequence number has increased (all asics).
320 void radeon_fence_process(struct radeon_device *rdev, int ring)
322 if (radeon_fence_activity(rdev, ring))
323 wake_up_all(&rdev->fence_queue);
327 * radeon_fence_seq_signaled - check if a fence sequence number has signaled
329 * @rdev: radeon device pointer
330 * @seq: sequence number
331 * @ring: ring index the fence is associated with
333 * Check if the last signaled fence sequnce number is >= the requested
334 * sequence number (all asics).
335 * Returns true if the fence has signaled (current fence value
336 * is >= requested value) or false if it has not (current fence
337 * value is < the requested value. Helper function for
338 * radeon_fence_signaled().
340 static bool radeon_fence_seq_signaled(struct radeon_device *rdev,
341 u64 seq, unsigned ring)
343 if (atomic64_read(&rdev->fence_drv[ring].last_seq) >= seq) {
346 /* poll new last sequence at least once */
347 radeon_fence_process(rdev, ring);
348 if (atomic64_read(&rdev->fence_drv[ring].last_seq) >= seq) {
354 static bool radeon_fence_is_signaled(struct dma_fence *f)
356 struct radeon_fence *fence = to_radeon_fence(f);
357 struct radeon_device *rdev = fence->rdev;
358 unsigned ring = fence->ring;
359 u64 seq = fence->seq;
361 if (atomic64_read(&rdev->fence_drv[ring].last_seq) >= seq) {
369 * radeon_fence_enable_signaling - enable signalling on fence
372 * This function is called with fence_queue lock held, and adds a callback
373 * to fence_queue that checks if this fence is signaled, and if so it
374 * signals the fence and removes itself.
376 static bool radeon_fence_enable_signaling(struct dma_fence *f)
378 struct radeon_fence *fence = to_radeon_fence(f);
379 struct radeon_device *rdev = fence->rdev;
381 if (atomic64_read(&rdev->fence_drv[fence->ring].last_seq) >= fence->seq)
384 if (down_read_trylock(&rdev->exclusive_lock)) {
385 radeon_irq_kms_sw_irq_get(rdev, fence->ring);
387 if (radeon_fence_activity(rdev, fence->ring))
388 wake_up_all_locked(&rdev->fence_queue);
390 /* did fence get signaled after we enabled the sw irq? */
391 if (atomic64_read(&rdev->fence_drv[fence->ring].last_seq) >= fence->seq) {
392 radeon_irq_kms_sw_irq_put(rdev, fence->ring);
393 up_read(&rdev->exclusive_lock);
397 up_read(&rdev->exclusive_lock);
399 /* we're probably in a lockup, lets not fiddle too much */
400 if (radeon_irq_kms_sw_irq_get_delayed(rdev, fence->ring))
401 rdev->fence_drv[fence->ring].delayed_irq = true;
402 radeon_fence_schedule_check(rdev, fence->ring);
405 fence->fence_wake.flags = 0;
406 fence->fence_wake.private = NULL;
407 fence->fence_wake.func = radeon_fence_check_signaled;
408 __add_wait_queue(&rdev->fence_queue, &fence->fence_wake);
414 * radeon_fence_signaled - check if a fence has signaled
416 * @fence: radeon fence object
418 * Check if the requested fence has signaled (all asics).
419 * Returns true if the fence has signaled or false if it has not.
421 bool radeon_fence_signaled(struct radeon_fence *fence)
426 if (radeon_fence_seq_signaled(fence->rdev, fence->seq, fence->ring)) {
427 dma_fence_signal(&fence->base);
434 * radeon_fence_any_seq_signaled - check if any sequence number is signaled
436 * @rdev: radeon device pointer
437 * @seq: sequence numbers
439 * Check if the last signaled fence sequnce number is >= the requested
440 * sequence number (all asics).
441 * Returns true if any has signaled (current value is >= requested value)
442 * or false if it has not. Helper function for radeon_fence_wait_seq.
444 static bool radeon_fence_any_seq_signaled(struct radeon_device *rdev, u64 *seq)
448 for (i = 0; i < RADEON_NUM_RINGS; ++i) {
449 if (seq[i] && radeon_fence_seq_signaled(rdev, seq[i], i))
456 * radeon_fence_wait_seq_timeout - wait for a specific sequence numbers
458 * @rdev: radeon device pointer
459 * @target_seq: sequence number(s) we want to wait for
460 * @intr: use interruptable sleep
461 * @timeout: maximum time to wait, or MAX_SCHEDULE_TIMEOUT for infinite wait
463 * Wait for the requested sequence number(s) to be written by any ring
464 * (all asics). Sequnce number array is indexed by ring id.
465 * @intr selects whether to use interruptable (true) or non-interruptable
466 * (false) sleep when waiting for the sequence number. Helper function
467 * for radeon_fence_wait_*().
468 * Returns remaining time if the sequence number has passed, 0 when
469 * the wait timeout, or an error for all other cases.
470 * -EDEADLK is returned when a GPU lockup has been detected.
472 static long radeon_fence_wait_seq_timeout(struct radeon_device *rdev,
473 u64 *target_seq, bool intr,
479 if (radeon_fence_any_seq_signaled(rdev, target_seq))
482 /* enable IRQs and tracing */
483 for (i = 0; i < RADEON_NUM_RINGS; ++i) {
487 trace_radeon_fence_wait_begin(rdev_to_drm(rdev), i, target_seq[i]);
488 radeon_irq_kms_sw_irq_get(rdev, i);
492 r = wait_event_interruptible_timeout(rdev->fence_queue, (
493 radeon_fence_any_seq_signaled(rdev, target_seq)
494 || rdev->needs_reset), timeout);
496 r = wait_event_timeout(rdev->fence_queue, (
497 radeon_fence_any_seq_signaled(rdev, target_seq)
498 || rdev->needs_reset), timeout);
501 if (rdev->needs_reset)
504 for (i = 0; i < RADEON_NUM_RINGS; ++i) {
508 radeon_irq_kms_sw_irq_put(rdev, i);
509 trace_radeon_fence_wait_end(rdev_to_drm(rdev), i, target_seq[i]);
516 * radeon_fence_wait_timeout - wait for a fence to signal with timeout
518 * @fence: radeon fence object
519 * @intr: use interruptible sleep
521 * Wait for the requested fence to signal (all asics).
522 * @intr selects whether to use interruptable (true) or non-interruptable
523 * (false) sleep when waiting for the fence.
524 * @timeout: maximum time to wait, or MAX_SCHEDULE_TIMEOUT for infinite wait
525 * Returns remaining time if the sequence number has passed, 0 when
526 * the wait timeout, or an error for all other cases.
528 long radeon_fence_wait_timeout(struct radeon_fence *fence, bool intr, long timeout)
530 uint64_t seq[RADEON_NUM_RINGS] = {};
534 * This function should not be called on !radeon fences.
535 * If this is the case, it would mean this function can
536 * also be called on radeon fences belonging to another card.
537 * exclusive_lock is not held in that case.
539 if (WARN_ON_ONCE(!to_radeon_fence(&fence->base)))
540 return dma_fence_wait(&fence->base, intr);
542 seq[fence->ring] = fence->seq;
543 r = radeon_fence_wait_seq_timeout(fence->rdev, seq, intr, timeout);
548 dma_fence_signal(&fence->base);
553 * radeon_fence_wait - wait for a fence to signal
555 * @fence: radeon fence object
556 * @intr: use interruptible sleep
558 * Wait for the requested fence to signal (all asics).
559 * @intr selects whether to use interruptable (true) or non-interruptable
560 * (false) sleep when waiting for the fence.
561 * Returns 0 if the fence has passed, error for all other cases.
563 int radeon_fence_wait(struct radeon_fence *fence, bool intr)
565 long r = radeon_fence_wait_timeout(fence, intr, MAX_SCHEDULE_TIMEOUT);
574 * radeon_fence_wait_any - wait for a fence to signal on any ring
576 * @rdev: radeon device pointer
577 * @fences: radeon fence object(s)
578 * @intr: use interruptable sleep
580 * Wait for any requested fence to signal (all asics). Fence
581 * array is indexed by ring id. @intr selects whether to use
582 * interruptable (true) or non-interruptable (false) sleep when
583 * waiting for the fences. Used by the suballocator.
584 * Returns 0 if any fence has passed, error for all other cases.
586 int radeon_fence_wait_any(struct radeon_device *rdev,
587 struct radeon_fence **fences,
590 uint64_t seq[RADEON_NUM_RINGS];
591 unsigned i, num_rings = 0;
594 for (i = 0; i < RADEON_NUM_RINGS; ++i) {
601 seq[i] = fences[i]->seq;
605 /* nothing to wait for ? */
609 r = radeon_fence_wait_seq_timeout(rdev, seq, intr, MAX_SCHEDULE_TIMEOUT);
617 * radeon_fence_wait_next - wait for the next fence to signal
619 * @rdev: radeon device pointer
620 * @ring: ring index the fence is associated with
622 * Wait for the next fence on the requested ring to signal (all asics).
623 * Returns 0 if the next fence has passed, error for all other cases.
624 * Caller must hold ring lock.
626 int radeon_fence_wait_next(struct radeon_device *rdev, int ring)
628 uint64_t seq[RADEON_NUM_RINGS] = {};
631 seq[ring] = atomic64_read(&rdev->fence_drv[ring].last_seq) + 1ULL;
632 if (seq[ring] >= rdev->fence_drv[ring].sync_seq[ring]) {
633 /* nothing to wait for, last_seq is
634 already the last emited fence */
637 r = radeon_fence_wait_seq_timeout(rdev, seq, false, MAX_SCHEDULE_TIMEOUT);
644 * radeon_fence_wait_empty - wait for all fences to signal
646 * @rdev: radeon device pointer
647 * @ring: ring index the fence is associated with
649 * Wait for all fences on the requested ring to signal (all asics).
650 * Returns 0 if the fences have passed, error for all other cases.
651 * Caller must hold ring lock.
653 int radeon_fence_wait_empty(struct radeon_device *rdev, int ring)
655 uint64_t seq[RADEON_NUM_RINGS] = {};
658 seq[ring] = rdev->fence_drv[ring].sync_seq[ring];
662 r = radeon_fence_wait_seq_timeout(rdev, seq, false, MAX_SCHEDULE_TIMEOUT);
667 dev_err(rdev->dev, "error waiting for ring[%d] to become idle (%ld)\n",
674 * radeon_fence_ref - take a ref on a fence
676 * @fence: radeon fence object
678 * Take a reference on a fence (all asics).
681 struct radeon_fence *radeon_fence_ref(struct radeon_fence *fence)
683 dma_fence_get(&fence->base);
688 * radeon_fence_unref - remove a ref on a fence
690 * @fence: radeon fence object
692 * Remove a reference on a fence (all asics).
694 void radeon_fence_unref(struct radeon_fence **fence)
696 struct radeon_fence *tmp = *fence;
700 dma_fence_put(&tmp->base);
705 * radeon_fence_count_emitted - get the count of emitted fences
707 * @rdev: radeon device pointer
708 * @ring: ring index the fence is associated with
710 * Get the number of fences emitted on the requested ring (all asics).
711 * Returns the number of emitted fences on the ring. Used by the
712 * dynpm code to ring track activity.
714 unsigned radeon_fence_count_emitted(struct radeon_device *rdev, int ring)
718 /* We are not protected by ring lock when reading the last sequence
719 * but it's ok to report slightly wrong fence count here.
721 radeon_fence_process(rdev, ring);
722 emitted = rdev->fence_drv[ring].sync_seq[ring]
723 - atomic64_read(&rdev->fence_drv[ring].last_seq);
724 /* to avoid 32bits warp around */
725 if (emitted > 0x10000000) {
726 emitted = 0x10000000;
728 return (unsigned)emitted;
732 * radeon_fence_need_sync - do we need a semaphore
734 * @fence: radeon fence object
735 * @dst_ring: which ring to check against
737 * Check if the fence needs to be synced against another ring
738 * (all asics). If so, we need to emit a semaphore.
739 * Returns true if we need to sync with another ring, false if
742 bool radeon_fence_need_sync(struct radeon_fence *fence, int dst_ring)
744 struct radeon_fence_driver *fdrv;
750 if (fence->ring == dst_ring) {
754 /* we are protected by the ring mutex */
755 fdrv = &fence->rdev->fence_drv[dst_ring];
756 if (fence->seq <= fdrv->sync_seq[fence->ring]) {
764 * radeon_fence_note_sync - record the sync point
766 * @fence: radeon fence object
767 * @dst_ring: which ring to check against
769 * Note the sequence number at which point the fence will
770 * be synced with the requested ring (all asics).
772 void radeon_fence_note_sync(struct radeon_fence *fence, int dst_ring)
774 struct radeon_fence_driver *dst, *src;
781 if (fence->ring == dst_ring) {
785 /* we are protected by the ring mutex */
786 src = &fence->rdev->fence_drv[fence->ring];
787 dst = &fence->rdev->fence_drv[dst_ring];
788 for (i = 0; i < RADEON_NUM_RINGS; ++i) {
792 dst->sync_seq[i] = max(dst->sync_seq[i], src->sync_seq[i]);
797 * radeon_fence_driver_start_ring - make the fence driver
798 * ready for use on the requested ring.
800 * @rdev: radeon device pointer
801 * @ring: ring index to start the fence driver on
803 * Make the fence driver ready for processing (all asics).
804 * Not all asics have all rings, so each asic will only
805 * start the fence driver on the rings it has.
806 * Returns 0 for success, errors for failure.
808 int radeon_fence_driver_start_ring(struct radeon_device *rdev, int ring)
813 radeon_scratch_free(rdev, rdev->fence_drv[ring].scratch_reg);
814 if (rdev->wb.use_event || !radeon_ring_supports_scratch_reg(rdev, &rdev->ring[ring])) {
815 rdev->fence_drv[ring].scratch_reg = 0;
816 if (ring != R600_RING_TYPE_UVD_INDEX) {
817 index = R600_WB_EVENT_OFFSET + ring * 4;
818 rdev->fence_drv[ring].cpu_addr = &rdev->wb.wb[index/4];
819 rdev->fence_drv[ring].gpu_addr = rdev->wb.gpu_addr +
823 /* put fence directly behind firmware */
824 index = ALIGN(rdev->uvd_fw->size, 8);
825 rdev->fence_drv[ring].cpu_addr = rdev->uvd.cpu_addr + index;
826 rdev->fence_drv[ring].gpu_addr = rdev->uvd.gpu_addr + index;
830 r = radeon_scratch_get(rdev, &rdev->fence_drv[ring].scratch_reg);
832 dev_err(rdev->dev, "fence failed to get scratch register\n");
835 index = RADEON_WB_SCRATCH_OFFSET +
836 rdev->fence_drv[ring].scratch_reg -
837 rdev->scratch.reg_base;
838 rdev->fence_drv[ring].cpu_addr = &rdev->wb.wb[index/4];
839 rdev->fence_drv[ring].gpu_addr = rdev->wb.gpu_addr + index;
841 radeon_fence_write(rdev, atomic64_read(&rdev->fence_drv[ring].last_seq), ring);
842 rdev->fence_drv[ring].initialized = true;
843 dev_info(rdev->dev, "fence driver on ring %d use gpu addr 0x%016llx\n",
844 ring, rdev->fence_drv[ring].gpu_addr);
849 * radeon_fence_driver_init_ring - init the fence driver
850 * for the requested ring.
852 * @rdev: radeon device pointer
853 * @ring: ring index to start the fence driver on
855 * Init the fence driver for the requested ring (all asics).
856 * Helper function for radeon_fence_driver_init().
858 static void radeon_fence_driver_init_ring(struct radeon_device *rdev, int ring)
862 rdev->fence_drv[ring].scratch_reg = -1;
863 rdev->fence_drv[ring].cpu_addr = NULL;
864 rdev->fence_drv[ring].gpu_addr = 0;
865 for (i = 0; i < RADEON_NUM_RINGS; ++i)
866 rdev->fence_drv[ring].sync_seq[i] = 0;
867 atomic64_set(&rdev->fence_drv[ring].last_seq, 0);
868 rdev->fence_drv[ring].initialized = false;
869 INIT_DELAYED_WORK(&rdev->fence_drv[ring].lockup_work,
870 radeon_fence_check_lockup);
871 rdev->fence_drv[ring].rdev = rdev;
875 * radeon_fence_driver_init - init the fence driver
876 * for all possible rings.
878 * @rdev: radeon device pointer
880 * Init the fence driver for all possible rings (all asics).
881 * Not all asics have all rings, so each asic will only
882 * start the fence driver on the rings it has using
883 * radeon_fence_driver_start_ring().
885 void radeon_fence_driver_init(struct radeon_device *rdev)
889 init_waitqueue_head(&rdev->fence_queue);
890 for (ring = 0; ring < RADEON_NUM_RINGS; ring++) {
891 radeon_fence_driver_init_ring(rdev, ring);
894 radeon_debugfs_fence_init(rdev);
898 * radeon_fence_driver_fini - tear down the fence driver
899 * for all possible rings.
901 * @rdev: radeon device pointer
903 * Tear down the fence driver for all possible rings (all asics).
905 void radeon_fence_driver_fini(struct radeon_device *rdev)
909 mutex_lock(&rdev->ring_lock);
910 for (ring = 0; ring < RADEON_NUM_RINGS; ring++) {
911 if (!rdev->fence_drv[ring].initialized)
913 r = radeon_fence_wait_empty(rdev, ring);
915 /* no need to trigger GPU reset as we are unloading */
916 radeon_fence_driver_force_completion(rdev, ring);
918 cancel_delayed_work_sync(&rdev->fence_drv[ring].lockup_work);
919 wake_up_all(&rdev->fence_queue);
920 radeon_scratch_free(rdev, rdev->fence_drv[ring].scratch_reg);
921 rdev->fence_drv[ring].initialized = false;
923 mutex_unlock(&rdev->ring_lock);
927 * radeon_fence_driver_force_completion - force all fence waiter to complete
929 * @rdev: radeon device pointer
930 * @ring: the ring to complete
932 * In case of GPU reset failure make sure no process keep waiting on fence
933 * that will never complete.
935 void radeon_fence_driver_force_completion(struct radeon_device *rdev, int ring)
937 if (rdev->fence_drv[ring].initialized) {
938 radeon_fence_write(rdev, rdev->fence_drv[ring].sync_seq[ring], ring);
939 cancel_delayed_work_sync(&rdev->fence_drv[ring].lockup_work);
947 #if defined(CONFIG_DEBUG_FS)
948 static int radeon_debugfs_fence_info_show(struct seq_file *m, void *data)
950 struct radeon_device *rdev = m->private;
953 for (i = 0; i < RADEON_NUM_RINGS; ++i) {
954 if (!rdev->fence_drv[i].initialized)
957 radeon_fence_process(rdev, i);
959 seq_printf(m, "--- ring %d ---\n", i);
960 seq_printf(m, "Last signaled fence 0x%016llx\n",
961 (unsigned long long)atomic64_read(&rdev->fence_drv[i].last_seq));
962 seq_printf(m, "Last emitted 0x%016llx\n",
963 rdev->fence_drv[i].sync_seq[i]);
965 for (j = 0; j < RADEON_NUM_RINGS; ++j) {
966 if (i != j && rdev->fence_drv[j].initialized)
967 seq_printf(m, "Last sync to ring %d 0x%016llx\n",
968 j, rdev->fence_drv[i].sync_seq[j]);
975 * radeon_debugfs_gpu_reset - manually trigger a gpu reset
977 * Manually trigger a gpu reset at the next fence wait.
979 static int radeon_debugfs_gpu_reset(void *data, u64 *val)
981 struct radeon_device *rdev = (struct radeon_device *)data;
983 down_read(&rdev->exclusive_lock);
984 *val = rdev->needs_reset;
985 rdev->needs_reset = true;
986 wake_up_all(&rdev->fence_queue);
987 up_read(&rdev->exclusive_lock);
991 DEFINE_SHOW_ATTRIBUTE(radeon_debugfs_fence_info);
992 DEFINE_DEBUGFS_ATTRIBUTE(radeon_debugfs_gpu_reset_fops,
993 radeon_debugfs_gpu_reset, NULL, "%lld\n");
996 void radeon_debugfs_fence_init(struct radeon_device *rdev)
998 #if defined(CONFIG_DEBUG_FS)
999 struct dentry *root = rdev_to_drm(rdev)->primary->debugfs_root;
1001 debugfs_create_file("radeon_gpu_reset", 0444, root, rdev,
1002 &radeon_debugfs_gpu_reset_fops);
1003 debugfs_create_file("radeon_fence_info", 0444, root, rdev,
1004 &radeon_debugfs_fence_info_fops);
1010 static const char *radeon_fence_get_driver_name(struct dma_fence *fence)
1015 static const char *radeon_fence_get_timeline_name(struct dma_fence *f)
1017 struct radeon_fence *fence = to_radeon_fence(f);
1018 switch (fence->ring) {
1019 case RADEON_RING_TYPE_GFX_INDEX: return "radeon.gfx";
1020 case CAYMAN_RING_TYPE_CP1_INDEX: return "radeon.cp1";
1021 case CAYMAN_RING_TYPE_CP2_INDEX: return "radeon.cp2";
1022 case R600_RING_TYPE_DMA_INDEX: return "radeon.dma";
1023 case CAYMAN_RING_TYPE_DMA1_INDEX: return "radeon.dma1";
1024 case R600_RING_TYPE_UVD_INDEX: return "radeon.uvd";
1025 case TN_RING_TYPE_VCE1_INDEX: return "radeon.vce1";
1026 case TN_RING_TYPE_VCE2_INDEX: return "radeon.vce2";
1027 default: WARN_ON_ONCE(1); return "radeon.unk";
1031 static inline bool radeon_test_signaled(struct radeon_fence *fence)
1033 return test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &fence->base.flags);
1036 struct radeon_wait_cb {
1037 struct dma_fence_cb base;
1038 struct task_struct *task;
1042 radeon_fence_wait_cb(struct dma_fence *fence, struct dma_fence_cb *cb)
1044 struct radeon_wait_cb *wait =
1045 container_of(cb, struct radeon_wait_cb, base);
1047 wake_up_process(wait->task);
1050 static signed long radeon_fence_default_wait(struct dma_fence *f, bool intr,
1053 struct radeon_fence *fence = to_radeon_fence(f);
1054 struct radeon_device *rdev = fence->rdev;
1055 struct radeon_wait_cb cb;
1059 if (dma_fence_add_callback(f, &cb.base, radeon_fence_wait_cb))
1064 set_current_state(TASK_INTERRUPTIBLE);
1066 set_current_state(TASK_UNINTERRUPTIBLE);
1069 * radeon_test_signaled must be called after
1070 * set_current_state to prevent a race with wake_up_process
1072 if (radeon_test_signaled(fence))
1075 if (rdev->needs_reset) {
1080 t = schedule_timeout(t);
1082 if (t > 0 && intr && signal_pending(current))
1086 __set_current_state(TASK_RUNNING);
1087 dma_fence_remove_callback(f, &cb.base);
1092 const struct dma_fence_ops radeon_fence_ops = {
1093 .get_driver_name = radeon_fence_get_driver_name,
1094 .get_timeline_name = radeon_fence_get_timeline_name,
1095 .enable_signaling = radeon_fence_enable_signaling,
1096 .signaled = radeon_fence_is_signaled,
1097 .wait = radeon_fence_default_wait,