1d38ceaf9SAlex Deucher /*
2d38ceaf9SAlex Deucher  * Copyright 2009 Jerome Glisse.
3d38ceaf9SAlex Deucher  * All Rights Reserved.
4d38ceaf9SAlex Deucher  *
5d38ceaf9SAlex Deucher  * Permission is hereby granted, free of charge, to any person obtaining a
6d38ceaf9SAlex Deucher  * copy of this software and associated documentation files (the
7d38ceaf9SAlex Deucher  * "Software"), to deal in the Software without restriction, including
8d38ceaf9SAlex Deucher  * without limitation the rights to use, copy, modify, merge, publish,
9d38ceaf9SAlex Deucher  * distribute, sub license, and/or sell copies of the Software, and to
10d38ceaf9SAlex Deucher  * permit persons to whom the Software is furnished to do so, subject to
11d38ceaf9SAlex Deucher  * the following conditions:
12d38ceaf9SAlex Deucher  *
13d38ceaf9SAlex Deucher  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14d38ceaf9SAlex Deucher  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15d38ceaf9SAlex Deucher  * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
16d38ceaf9SAlex Deucher  * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
17d38ceaf9SAlex Deucher  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
18d38ceaf9SAlex Deucher  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
19d38ceaf9SAlex Deucher  * USE OR OTHER DEALINGS IN THE SOFTWARE.
20d38ceaf9SAlex Deucher  *
21d38ceaf9SAlex Deucher  * The above copyright notice and this permission notice (including the
22d38ceaf9SAlex Deucher  * next paragraph) shall be included in all copies or substantial portions
23d38ceaf9SAlex Deucher  * of the Software.
24d38ceaf9SAlex Deucher  *
25d38ceaf9SAlex Deucher  */
26d38ceaf9SAlex Deucher /*
27d38ceaf9SAlex Deucher  * Authors:
28d38ceaf9SAlex Deucher  *    Jerome Glisse <glisse@freedesktop.org>
29d38ceaf9SAlex Deucher  *    Dave Airlie
30d38ceaf9SAlex Deucher  */
31d38ceaf9SAlex Deucher #include <linux/seq_file.h>
32d38ceaf9SAlex Deucher #include <linux/atomic.h>
33d38ceaf9SAlex Deucher #include <linux/wait.h>
34d38ceaf9SAlex Deucher #include <linux/kref.h>
35d38ceaf9SAlex Deucher #include <linux/slab.h>
36d38ceaf9SAlex Deucher #include <linux/firmware.h>
37d38ceaf9SAlex Deucher #include <drm/drmP.h>
38d38ceaf9SAlex Deucher #include "amdgpu.h"
39d38ceaf9SAlex Deucher #include "amdgpu_trace.h"
40d38ceaf9SAlex Deucher 
41d38ceaf9SAlex Deucher /*
42d38ceaf9SAlex Deucher  * Fences
43d38ceaf9SAlex Deucher  * Fences mark an event in the GPUs pipeline and are used
44d38ceaf9SAlex Deucher  * for GPU/CPU synchronization.  When the fence is written,
45d38ceaf9SAlex Deucher  * it is expected that all buffers associated with that fence
46d38ceaf9SAlex Deucher  * are no longer in use by the associated ring on the GPU and
47d38ceaf9SAlex Deucher  * that the the relevant GPU caches have been flushed.
48d38ceaf9SAlex Deucher  */
49d38ceaf9SAlex Deucher 
50d38ceaf9SAlex Deucher /**
51d38ceaf9SAlex Deucher  * amdgpu_fence_write - write a fence value
52d38ceaf9SAlex Deucher  *
53d38ceaf9SAlex Deucher  * @ring: ring the fence is associated with
54d38ceaf9SAlex Deucher  * @seq: sequence number to write
55d38ceaf9SAlex Deucher  *
56d38ceaf9SAlex Deucher  * Writes a fence value to memory (all asics).
57d38ceaf9SAlex Deucher  */
58d38ceaf9SAlex Deucher static void amdgpu_fence_write(struct amdgpu_ring *ring, u32 seq)
59d38ceaf9SAlex Deucher {
60d38ceaf9SAlex Deucher 	struct amdgpu_fence_driver *drv = &ring->fence_drv;
61d38ceaf9SAlex Deucher 
62d38ceaf9SAlex Deucher 	if (drv->cpu_addr)
63d38ceaf9SAlex Deucher 		*drv->cpu_addr = cpu_to_le32(seq);
64d38ceaf9SAlex Deucher }
65d38ceaf9SAlex Deucher 
66d38ceaf9SAlex Deucher /**
67d38ceaf9SAlex Deucher  * amdgpu_fence_read - read a fence value
68d38ceaf9SAlex Deucher  *
69d38ceaf9SAlex Deucher  * @ring: ring the fence is associated with
70d38ceaf9SAlex Deucher  *
71d38ceaf9SAlex Deucher  * Reads a fence value from memory (all asics).
72d38ceaf9SAlex Deucher  * Returns the value of the fence read from memory.
73d38ceaf9SAlex Deucher  */
74d38ceaf9SAlex Deucher static u32 amdgpu_fence_read(struct amdgpu_ring *ring)
75d38ceaf9SAlex Deucher {
76d38ceaf9SAlex Deucher 	struct amdgpu_fence_driver *drv = &ring->fence_drv;
77d38ceaf9SAlex Deucher 	u32 seq = 0;
78d38ceaf9SAlex Deucher 
79d38ceaf9SAlex Deucher 	if (drv->cpu_addr)
80d38ceaf9SAlex Deucher 		seq = le32_to_cpu(*drv->cpu_addr);
81d38ceaf9SAlex Deucher 	else
82d38ceaf9SAlex Deucher 		seq = lower_32_bits(atomic64_read(&drv->last_seq));
83d38ceaf9SAlex Deucher 
84d38ceaf9SAlex Deucher 	return seq;
85d38ceaf9SAlex Deucher }
86d38ceaf9SAlex Deucher 
87d38ceaf9SAlex Deucher /**
88d38ceaf9SAlex Deucher  * amdgpu_fence_schedule_check - schedule lockup check
89d38ceaf9SAlex Deucher  *
90d38ceaf9SAlex Deucher  * @ring: pointer to struct amdgpu_ring
91d38ceaf9SAlex Deucher  *
92d38ceaf9SAlex Deucher  * Queues a delayed work item to check for lockups.
93d38ceaf9SAlex Deucher  */
94d38ceaf9SAlex Deucher static void amdgpu_fence_schedule_check(struct amdgpu_ring *ring)
95d38ceaf9SAlex Deucher {
96d38ceaf9SAlex Deucher 	/*
97d38ceaf9SAlex Deucher 	 * Do not reset the timer here with mod_delayed_work,
98d38ceaf9SAlex Deucher 	 * this can livelock in an interaction with TTM delayed destroy.
99d38ceaf9SAlex Deucher 	 */
100d38ceaf9SAlex Deucher 	queue_delayed_work(system_power_efficient_wq,
101d38ceaf9SAlex Deucher 		&ring->fence_drv.lockup_work,
102d38ceaf9SAlex Deucher 		AMDGPU_FENCE_JIFFIES_TIMEOUT);
103d38ceaf9SAlex Deucher }
104d38ceaf9SAlex Deucher 
105d38ceaf9SAlex Deucher /**
106d38ceaf9SAlex Deucher  * amdgpu_fence_emit - emit a fence on the requested ring
107d38ceaf9SAlex Deucher  *
108d38ceaf9SAlex Deucher  * @ring: ring the fence is associated with
109d38ceaf9SAlex Deucher  * @owner: creator of the fence
110d38ceaf9SAlex Deucher  * @fence: amdgpu fence object
111d38ceaf9SAlex Deucher  *
112d38ceaf9SAlex Deucher  * Emits a fence command on the requested ring (all asics).
113d38ceaf9SAlex Deucher  * Returns 0 on success, -ENOMEM on failure.
114d38ceaf9SAlex Deucher  */
115d38ceaf9SAlex Deucher int amdgpu_fence_emit(struct amdgpu_ring *ring, void *owner,
116d38ceaf9SAlex Deucher 		      struct amdgpu_fence **fence)
117d38ceaf9SAlex Deucher {
118d38ceaf9SAlex Deucher 	struct amdgpu_device *adev = ring->adev;
119d38ceaf9SAlex Deucher 
120d38ceaf9SAlex Deucher 	/* we are protected by the ring emission mutex */
121d38ceaf9SAlex Deucher 	*fence = kmalloc(sizeof(struct amdgpu_fence), GFP_KERNEL);
122d38ceaf9SAlex Deucher 	if ((*fence) == NULL) {
123d38ceaf9SAlex Deucher 		return -ENOMEM;
124d38ceaf9SAlex Deucher 	}
125d38ceaf9SAlex Deucher 	(*fence)->seq = ++ring->fence_drv.sync_seq[ring->idx];
126d38ceaf9SAlex Deucher 	(*fence)->ring = ring;
127d38ceaf9SAlex Deucher 	(*fence)->owner = owner;
128d38ceaf9SAlex Deucher 	fence_init(&(*fence)->base, &amdgpu_fence_ops,
1297f06c236Smonk.liu 		&ring->fence_drv.fence_queue.lock,
1307f06c236Smonk.liu 		adev->fence_context + ring->idx,
131d38ceaf9SAlex Deucher 		(*fence)->seq);
132890ee23fSChunming Zhou 	amdgpu_ring_emit_fence(ring, ring->fence_drv.gpu_addr,
133890ee23fSChunming Zhou 			       (*fence)->seq,
134890ee23fSChunming Zhou 			       AMDGPU_FENCE_FLAG_INT);
135d38ceaf9SAlex Deucher 	trace_amdgpu_fence_emit(ring->adev->ddev, ring->idx, (*fence)->seq);
136d38ceaf9SAlex Deucher 	return 0;
137d38ceaf9SAlex Deucher }
138d38ceaf9SAlex Deucher 
139d38ceaf9SAlex Deucher /**
140d38ceaf9SAlex Deucher  * amdgpu_fence_check_signaled - callback from fence_queue
141d38ceaf9SAlex Deucher  *
142d38ceaf9SAlex Deucher  * this function is called with fence_queue lock held, which is also used
143d38ceaf9SAlex Deucher  * for the fence locking itself, so unlocked variants are used for
144d38ceaf9SAlex Deucher  * fence_signal, and remove_wait_queue.
145d38ceaf9SAlex Deucher  */
146d38ceaf9SAlex Deucher static int amdgpu_fence_check_signaled(wait_queue_t *wait, unsigned mode, int flags, void *key)
147d38ceaf9SAlex Deucher {
148d38ceaf9SAlex Deucher 	struct amdgpu_fence *fence;
149d38ceaf9SAlex Deucher 	struct amdgpu_device *adev;
150d38ceaf9SAlex Deucher 	u64 seq;
151d38ceaf9SAlex Deucher 	int ret;
152d38ceaf9SAlex Deucher 
153d38ceaf9SAlex Deucher 	fence = container_of(wait, struct amdgpu_fence, fence_wake);
154d38ceaf9SAlex Deucher 	adev = fence->ring->adev;
155d38ceaf9SAlex Deucher 
156d38ceaf9SAlex Deucher 	/*
157d38ceaf9SAlex Deucher 	 * We cannot use amdgpu_fence_process here because we're already
158d38ceaf9SAlex Deucher 	 * in the waitqueue, in a call from wake_up_all.
159d38ceaf9SAlex Deucher 	 */
160d38ceaf9SAlex Deucher 	seq = atomic64_read(&fence->ring->fence_drv.last_seq);
161d38ceaf9SAlex Deucher 	if (seq >= fence->seq) {
162d38ceaf9SAlex Deucher 		ret = fence_signal_locked(&fence->base);
163d38ceaf9SAlex Deucher 		if (!ret)
164d38ceaf9SAlex Deucher 			FENCE_TRACE(&fence->base, "signaled from irq context\n");
165d38ceaf9SAlex Deucher 		else
166d38ceaf9SAlex Deucher 			FENCE_TRACE(&fence->base, "was already signaled\n");
167d38ceaf9SAlex Deucher 
1687f06c236Smonk.liu 		__remove_wait_queue(&fence->ring->fence_drv.fence_queue, &fence->fence_wake);
169d38ceaf9SAlex Deucher 		fence_put(&fence->base);
170d38ceaf9SAlex Deucher 	} else
171d38ceaf9SAlex Deucher 		FENCE_TRACE(&fence->base, "pending\n");
172d38ceaf9SAlex Deucher 	return 0;
173d38ceaf9SAlex Deucher }
174d38ceaf9SAlex Deucher 
175d38ceaf9SAlex Deucher /**
176d38ceaf9SAlex Deucher  * amdgpu_fence_activity - check for fence activity
177d38ceaf9SAlex Deucher  *
178d38ceaf9SAlex Deucher  * @ring: pointer to struct amdgpu_ring
179d38ceaf9SAlex Deucher  *
180d38ceaf9SAlex Deucher  * Checks the current fence value and calculates the last
181d38ceaf9SAlex Deucher  * signalled fence value. Returns true if activity occured
182d38ceaf9SAlex Deucher  * on the ring, and the fence_queue should be waken up.
183d38ceaf9SAlex Deucher  */
184d38ceaf9SAlex Deucher static bool amdgpu_fence_activity(struct amdgpu_ring *ring)
185d38ceaf9SAlex Deucher {
186d38ceaf9SAlex Deucher 	uint64_t seq, last_seq, last_emitted;
187d38ceaf9SAlex Deucher 	unsigned count_loop = 0;
188d38ceaf9SAlex Deucher 	bool wake = false;
189d38ceaf9SAlex Deucher 
190d38ceaf9SAlex Deucher 	/* Note there is a scenario here for an infinite loop but it's
191d38ceaf9SAlex Deucher 	 * very unlikely to happen. For it to happen, the current polling
192d38ceaf9SAlex Deucher 	 * process need to be interrupted by another process and another
193d38ceaf9SAlex Deucher 	 * process needs to update the last_seq btw the atomic read and
194d38ceaf9SAlex Deucher 	 * xchg of the current process.
195d38ceaf9SAlex Deucher 	 *
196d38ceaf9SAlex Deucher 	 * More over for this to go in infinite loop there need to be
19786c2b790SJammy Zhou 	 * continuously new fence signaled ie amdgpu_fence_read needs
198d38ceaf9SAlex Deucher 	 * to return a different value each time for both the currently
199d38ceaf9SAlex Deucher 	 * polling process and the other process that xchg the last_seq
200d38ceaf9SAlex Deucher 	 * btw atomic read and xchg of the current process. And the
201d38ceaf9SAlex Deucher 	 * value the other process set as last seq must be higher than
202d38ceaf9SAlex Deucher 	 * the seq value we just read. Which means that current process
20386c2b790SJammy Zhou 	 * need to be interrupted after amdgpu_fence_read and before
204d38ceaf9SAlex Deucher 	 * atomic xchg.
205d38ceaf9SAlex Deucher 	 *
206d38ceaf9SAlex Deucher 	 * To be even more safe we count the number of time we loop and
207d38ceaf9SAlex Deucher 	 * we bail after 10 loop just accepting the fact that we might
208d38ceaf9SAlex Deucher 	 * have temporarly set the last_seq not to the true real last
209d38ceaf9SAlex Deucher 	 * seq but to an older one.
210d38ceaf9SAlex Deucher 	 */
211d38ceaf9SAlex Deucher 	last_seq = atomic64_read(&ring->fence_drv.last_seq);
212d38ceaf9SAlex Deucher 	do {
213d38ceaf9SAlex Deucher 		last_emitted = ring->fence_drv.sync_seq[ring->idx];
214d38ceaf9SAlex Deucher 		seq = amdgpu_fence_read(ring);
215d38ceaf9SAlex Deucher 		seq |= last_seq & 0xffffffff00000000LL;
216d38ceaf9SAlex Deucher 		if (seq < last_seq) {
217d38ceaf9SAlex Deucher 			seq &= 0xffffffff;
218d38ceaf9SAlex Deucher 			seq |= last_emitted & 0xffffffff00000000LL;
219d38ceaf9SAlex Deucher 		}
220d38ceaf9SAlex Deucher 
221d38ceaf9SAlex Deucher 		if (seq <= last_seq || seq > last_emitted) {
222d38ceaf9SAlex Deucher 			break;
223d38ceaf9SAlex Deucher 		}
224d38ceaf9SAlex Deucher 		/* If we loop over we don't want to return without
225d38ceaf9SAlex Deucher 		 * checking if a fence is signaled as it means that the
226d38ceaf9SAlex Deucher 		 * seq we just read is different from the previous on.
227d38ceaf9SAlex Deucher 		 */
228d38ceaf9SAlex Deucher 		wake = true;
229d38ceaf9SAlex Deucher 		last_seq = seq;
230d38ceaf9SAlex Deucher 		if ((count_loop++) > 10) {
231d38ceaf9SAlex Deucher 			/* We looped over too many time leave with the
232d38ceaf9SAlex Deucher 			 * fact that we might have set an older fence
233d38ceaf9SAlex Deucher 			 * seq then the current real last seq as signaled
234d38ceaf9SAlex Deucher 			 * by the hw.
235d38ceaf9SAlex Deucher 			 */
236d38ceaf9SAlex Deucher 			break;
237d38ceaf9SAlex Deucher 		}
238d38ceaf9SAlex Deucher 	} while (atomic64_xchg(&ring->fence_drv.last_seq, seq) > seq);
239d38ceaf9SAlex Deucher 
240d38ceaf9SAlex Deucher 	if (seq < last_emitted)
241d38ceaf9SAlex Deucher 		amdgpu_fence_schedule_check(ring);
242d38ceaf9SAlex Deucher 
243d38ceaf9SAlex Deucher 	return wake;
244d38ceaf9SAlex Deucher }
245d38ceaf9SAlex Deucher 
246d38ceaf9SAlex Deucher /**
247d38ceaf9SAlex Deucher  * amdgpu_fence_check_lockup - check for hardware lockup
248d38ceaf9SAlex Deucher  *
249d38ceaf9SAlex Deucher  * @work: delayed work item
250d38ceaf9SAlex Deucher  *
251d38ceaf9SAlex Deucher  * Checks for fence activity and if there is none probe
252d38ceaf9SAlex Deucher  * the hardware if a lockup occured.
253d38ceaf9SAlex Deucher  */
254d38ceaf9SAlex Deucher static void amdgpu_fence_check_lockup(struct work_struct *work)
255d38ceaf9SAlex Deucher {
256d38ceaf9SAlex Deucher 	struct amdgpu_fence_driver *fence_drv;
257d38ceaf9SAlex Deucher 	struct amdgpu_ring *ring;
258d38ceaf9SAlex Deucher 
259d38ceaf9SAlex Deucher 	fence_drv = container_of(work, struct amdgpu_fence_driver,
260d38ceaf9SAlex Deucher 				lockup_work.work);
261d38ceaf9SAlex Deucher 	ring = fence_drv->ring;
262d38ceaf9SAlex Deucher 
263d38ceaf9SAlex Deucher 	if (!down_read_trylock(&ring->adev->exclusive_lock)) {
264d38ceaf9SAlex Deucher 		/* just reschedule the check if a reset is going on */
265d38ceaf9SAlex Deucher 		amdgpu_fence_schedule_check(ring);
266d38ceaf9SAlex Deucher 		return;
267d38ceaf9SAlex Deucher 	}
268d38ceaf9SAlex Deucher 
2697f06c236Smonk.liu 	if (amdgpu_fence_activity(ring)) {
2707f06c236Smonk.liu 		wake_up_all(&ring->fence_drv.fence_queue);
2717f06c236Smonk.liu 	}
272d38ceaf9SAlex Deucher 	else if (amdgpu_ring_is_lockup(ring)) {
273d38ceaf9SAlex Deucher 		/* good news we believe it's a lockup */
274d38ceaf9SAlex Deucher 		dev_warn(ring->adev->dev, "GPU lockup (current fence id "
275d38ceaf9SAlex Deucher 			"0x%016llx last fence id 0x%016llx on ring %d)\n",
276d38ceaf9SAlex Deucher 			(uint64_t)atomic64_read(&fence_drv->last_seq),
277d38ceaf9SAlex Deucher 			fence_drv->sync_seq[ring->idx], ring->idx);
278d38ceaf9SAlex Deucher 
279d38ceaf9SAlex Deucher 		/* remember that we need an reset */
280d38ceaf9SAlex Deucher 		ring->adev->needs_reset = true;
2817f06c236Smonk.liu 		wake_up_all(&ring->fence_drv.fence_queue);
282d38ceaf9SAlex Deucher 	}
283d38ceaf9SAlex Deucher 	up_read(&ring->adev->exclusive_lock);
284d38ceaf9SAlex Deucher }
285d38ceaf9SAlex Deucher 
286d38ceaf9SAlex Deucher /**
287d38ceaf9SAlex Deucher  * amdgpu_fence_process - process a fence
288d38ceaf9SAlex Deucher  *
289d38ceaf9SAlex Deucher  * @adev: amdgpu_device pointer
290d38ceaf9SAlex Deucher  * @ring: ring index the fence is associated with
291d38ceaf9SAlex Deucher  *
292d38ceaf9SAlex Deucher  * Checks the current fence value and wakes the fence queue
293d38ceaf9SAlex Deucher  * if the sequence number has increased (all asics).
294d38ceaf9SAlex Deucher  */
295d38ceaf9SAlex Deucher void amdgpu_fence_process(struct amdgpu_ring *ring)
296d38ceaf9SAlex Deucher {
29768ed3de4SChristian König 	if (amdgpu_fence_activity(ring))
2987f06c236Smonk.liu 		wake_up_all(&ring->fence_drv.fence_queue);
299e0d8f3c3SChunming Zhou }
300d38ceaf9SAlex Deucher 
301d38ceaf9SAlex Deucher /**
302d38ceaf9SAlex Deucher  * amdgpu_fence_seq_signaled - check if a fence sequence number has signaled
303d38ceaf9SAlex Deucher  *
304d38ceaf9SAlex Deucher  * @ring: ring the fence is associated with
305d38ceaf9SAlex Deucher  * @seq: sequence number
306d38ceaf9SAlex Deucher  *
307d38ceaf9SAlex Deucher  * Check if the last signaled fence sequnce number is >= the requested
308d38ceaf9SAlex Deucher  * sequence number (all asics).
309d38ceaf9SAlex Deucher  * Returns true if the fence has signaled (current fence value
310d38ceaf9SAlex Deucher  * is >= requested value) or false if it has not (current fence
311d38ceaf9SAlex Deucher  * value is < the requested value.  Helper function for
312d38ceaf9SAlex Deucher  * amdgpu_fence_signaled().
313d38ceaf9SAlex Deucher  */
314d38ceaf9SAlex Deucher static bool amdgpu_fence_seq_signaled(struct amdgpu_ring *ring, u64 seq)
315d38ceaf9SAlex Deucher {
316d38ceaf9SAlex Deucher 	if (atomic64_read(&ring->fence_drv.last_seq) >= seq)
317d38ceaf9SAlex Deucher 		return true;
318d38ceaf9SAlex Deucher 
319d38ceaf9SAlex Deucher 	/* poll new last sequence at least once */
320d38ceaf9SAlex Deucher 	amdgpu_fence_process(ring);
321d38ceaf9SAlex Deucher 	if (atomic64_read(&ring->fence_drv.last_seq) >= seq)
322d38ceaf9SAlex Deucher 		return true;
323d38ceaf9SAlex Deucher 
324d38ceaf9SAlex Deucher 	return false;
325d38ceaf9SAlex Deucher }
326d38ceaf9SAlex Deucher 
327d38ceaf9SAlex Deucher static bool amdgpu_fence_is_signaled(struct fence *f)
328d38ceaf9SAlex Deucher {
329d38ceaf9SAlex Deucher 	struct amdgpu_fence *fence = to_amdgpu_fence(f);
330d38ceaf9SAlex Deucher 	struct amdgpu_ring *ring = fence->ring;
331d38ceaf9SAlex Deucher 	struct amdgpu_device *adev = ring->adev;
332d38ceaf9SAlex Deucher 
333d38ceaf9SAlex Deucher 	if (atomic64_read(&ring->fence_drv.last_seq) >= fence->seq)
334d38ceaf9SAlex Deucher 		return true;
335d38ceaf9SAlex Deucher 
336d38ceaf9SAlex Deucher 	if (down_read_trylock(&adev->exclusive_lock)) {
337d38ceaf9SAlex Deucher 		amdgpu_fence_process(ring);
338d38ceaf9SAlex Deucher 		up_read(&adev->exclusive_lock);
339d38ceaf9SAlex Deucher 
340d38ceaf9SAlex Deucher 		if (atomic64_read(&ring->fence_drv.last_seq) >= fence->seq)
341d38ceaf9SAlex Deucher 			return true;
342d38ceaf9SAlex Deucher 	}
343d38ceaf9SAlex Deucher 	return false;
344d38ceaf9SAlex Deucher }
345d38ceaf9SAlex Deucher 
346d38ceaf9SAlex Deucher /**
347d38ceaf9SAlex Deucher  * amdgpu_fence_enable_signaling - enable signalling on fence
348d38ceaf9SAlex Deucher  * @fence: fence
349d38ceaf9SAlex Deucher  *
350d38ceaf9SAlex Deucher  * This function is called with fence_queue lock held, and adds a callback
351d38ceaf9SAlex Deucher  * to fence_queue that checks if this fence is signaled, and if so it
352d38ceaf9SAlex Deucher  * signals the fence and removes itself.
353d38ceaf9SAlex Deucher  */
354d38ceaf9SAlex Deucher static bool amdgpu_fence_enable_signaling(struct fence *f)
355d38ceaf9SAlex Deucher {
356d38ceaf9SAlex Deucher 	struct amdgpu_fence *fence = to_amdgpu_fence(f);
357d38ceaf9SAlex Deucher 	struct amdgpu_ring *ring = fence->ring;
358d38ceaf9SAlex Deucher 
359d38ceaf9SAlex Deucher 	if (atomic64_read(&ring->fence_drv.last_seq) >= fence->seq)
360d38ceaf9SAlex Deucher 		return false;
361d38ceaf9SAlex Deucher 
362d38ceaf9SAlex Deucher 	fence->fence_wake.flags = 0;
363d38ceaf9SAlex Deucher 	fence->fence_wake.private = NULL;
364d38ceaf9SAlex Deucher 	fence->fence_wake.func = amdgpu_fence_check_signaled;
3657f06c236Smonk.liu 	__add_wait_queue(&ring->fence_drv.fence_queue, &fence->fence_wake);
366d38ceaf9SAlex Deucher 	fence_get(f);
367d38ceaf9SAlex Deucher 	FENCE_TRACE(&fence->base, "armed on ring %i!\n", ring->idx);
368d38ceaf9SAlex Deucher 	return true;
369d38ceaf9SAlex Deucher }
370d38ceaf9SAlex Deucher 
3717f06c236Smonk.liu /*
3727f06c236Smonk.liu  * amdgpu_ring_wait_seq_timeout - wait for seq of the specific ring to signal
3737f06c236Smonk.liu  * @ring: ring to wait on for the seq number
3747f06c236Smonk.liu  * @seq: seq number wait for
375d38ceaf9SAlex Deucher  *
3767f06c236Smonk.liu  * return value:
37700d2a2b2SChristian König  * 0: seq signaled, and gpu not hang
37800d2a2b2SChristian König  * -EDEADL: GPU hang detected
3797f06c236Smonk.liu  * -EINVAL: some paramter is not valid
380d38ceaf9SAlex Deucher  */
38100d2a2b2SChristian König static int amdgpu_fence_ring_wait_seq(struct amdgpu_ring *ring, uint64_t seq)
382d38ceaf9SAlex Deucher {
3837f06c236Smonk.liu 	struct amdgpu_device *adev = ring->adev;
3847f06c236Smonk.liu 	bool signaled = false;
385d38ceaf9SAlex Deucher 
3867f06c236Smonk.liu 	BUG_ON(!ring);
3877f06c236Smonk.liu 	if (seq > ring->fence_drv.sync_seq[ring->idx])
3887f06c236Smonk.liu 		return -EINVAL;
389d38ceaf9SAlex Deucher 
3907f06c236Smonk.liu 	if (atomic64_read(&ring->fence_drv.last_seq) >= seq)
391d38ceaf9SAlex Deucher 		return 0;
39200d2a2b2SChristian König 
39300d2a2b2SChristian König 	wait_event(ring->fence_drv.fence_queue, (
39400d2a2b2SChristian König 		   (signaled = amdgpu_fence_seq_signaled(ring, seq))
39500d2a2b2SChristian König 		   || adev->needs_reset));
39600d2a2b2SChristian König 
39700d2a2b2SChristian König 	if (signaled)
39800d2a2b2SChristian König 		return 0;
39900d2a2b2SChristian König 	else
40000d2a2b2SChristian König 		return -EDEADLK;
401d38ceaf9SAlex Deucher }
4027f06c236Smonk.liu 
403d38ceaf9SAlex Deucher /**
404d38ceaf9SAlex Deucher  * amdgpu_fence_wait_next - wait for the next fence to signal
405d38ceaf9SAlex Deucher  *
406d38ceaf9SAlex Deucher  * @adev: amdgpu device pointer
407d38ceaf9SAlex Deucher  * @ring: ring index the fence is associated with
408d38ceaf9SAlex Deucher  *
409d38ceaf9SAlex Deucher  * Wait for the next fence on the requested ring to signal (all asics).
410d38ceaf9SAlex Deucher  * Returns 0 if the next fence has passed, error for all other cases.
411d38ceaf9SAlex Deucher  * Caller must hold ring lock.
412d38ceaf9SAlex Deucher  */
413d38ceaf9SAlex Deucher int amdgpu_fence_wait_next(struct amdgpu_ring *ring)
414d38ceaf9SAlex Deucher {
4157f06c236Smonk.liu 	uint64_t seq = atomic64_read(&ring->fence_drv.last_seq) + 1ULL;
41600d2a2b2SChristian König 
4177f06c236Smonk.liu 	if (seq >= ring->fence_drv.sync_seq[ring->idx])
418d38ceaf9SAlex Deucher 		return -ENOENT;
4197f06c236Smonk.liu 
42000d2a2b2SChristian König 	return amdgpu_fence_ring_wait_seq(ring, seq);
421d38ceaf9SAlex Deucher }
422d38ceaf9SAlex Deucher 
423d38ceaf9SAlex Deucher /**
424d38ceaf9SAlex Deucher  * amdgpu_fence_wait_empty - wait for all fences to signal
425d38ceaf9SAlex Deucher  *
426d38ceaf9SAlex Deucher  * @adev: amdgpu device pointer
427d38ceaf9SAlex Deucher  * @ring: ring index the fence is associated with
428d38ceaf9SAlex Deucher  *
429d38ceaf9SAlex Deucher  * Wait for all fences on the requested ring to signal (all asics).
430d38ceaf9SAlex Deucher  * Returns 0 if the fences have passed, error for all other cases.
431d38ceaf9SAlex Deucher  * Caller must hold ring lock.
432d38ceaf9SAlex Deucher  */
433d38ceaf9SAlex Deucher int amdgpu_fence_wait_empty(struct amdgpu_ring *ring)
434d38ceaf9SAlex Deucher {
4357f06c236Smonk.liu 	uint64_t seq = ring->fence_drv.sync_seq[ring->idx];
43600d2a2b2SChristian König 
4377f06c236Smonk.liu 	if (!seq)
438d38ceaf9SAlex Deucher 		return 0;
439d38ceaf9SAlex Deucher 
44000d2a2b2SChristian König 	return amdgpu_fence_ring_wait_seq(ring, seq);
441d38ceaf9SAlex Deucher }
442d38ceaf9SAlex Deucher 
443d38ceaf9SAlex Deucher /**
444d38ceaf9SAlex Deucher  * amdgpu_fence_ref - take a ref on a fence
445d38ceaf9SAlex Deucher  *
446d38ceaf9SAlex Deucher  * @fence: amdgpu fence object
447d38ceaf9SAlex Deucher  *
448d38ceaf9SAlex Deucher  * Take a reference on a fence (all asics).
449d38ceaf9SAlex Deucher  * Returns the fence.
450d38ceaf9SAlex Deucher  */
451d38ceaf9SAlex Deucher struct amdgpu_fence *amdgpu_fence_ref(struct amdgpu_fence *fence)
452d38ceaf9SAlex Deucher {
453d38ceaf9SAlex Deucher 	fence_get(&fence->base);
454d38ceaf9SAlex Deucher 	return fence;
455d38ceaf9SAlex Deucher }
456d38ceaf9SAlex Deucher 
457d38ceaf9SAlex Deucher /**
458d38ceaf9SAlex Deucher  * amdgpu_fence_unref - remove a ref on a fence
459d38ceaf9SAlex Deucher  *
460d38ceaf9SAlex Deucher  * @fence: amdgpu fence object
461d38ceaf9SAlex Deucher  *
462d38ceaf9SAlex Deucher  * Remove a reference on a fence (all asics).
463d38ceaf9SAlex Deucher  */
464d38ceaf9SAlex Deucher void amdgpu_fence_unref(struct amdgpu_fence **fence)
465d38ceaf9SAlex Deucher {
466d38ceaf9SAlex Deucher 	struct amdgpu_fence *tmp = *fence;
467d38ceaf9SAlex Deucher 
468d38ceaf9SAlex Deucher 	*fence = NULL;
469d38ceaf9SAlex Deucher 	if (tmp)
470d38ceaf9SAlex Deucher 		fence_put(&tmp->base);
471d38ceaf9SAlex Deucher }
472d38ceaf9SAlex Deucher 
473d38ceaf9SAlex Deucher /**
474d38ceaf9SAlex Deucher  * amdgpu_fence_count_emitted - get the count of emitted fences
475d38ceaf9SAlex Deucher  *
476d38ceaf9SAlex Deucher  * @ring: ring the fence is associated with
477d38ceaf9SAlex Deucher  *
478d38ceaf9SAlex Deucher  * Get the number of fences emitted on the requested ring (all asics).
479d38ceaf9SAlex Deucher  * Returns the number of emitted fences on the ring.  Used by the
480d38ceaf9SAlex Deucher  * dynpm code to ring track activity.
481d38ceaf9SAlex Deucher  */
482d38ceaf9SAlex Deucher unsigned amdgpu_fence_count_emitted(struct amdgpu_ring *ring)
483d38ceaf9SAlex Deucher {
484d38ceaf9SAlex Deucher 	uint64_t emitted;
485d38ceaf9SAlex Deucher 
486d38ceaf9SAlex Deucher 	/* We are not protected by ring lock when reading the last sequence
487d38ceaf9SAlex Deucher 	 * but it's ok to report slightly wrong fence count here.
488d38ceaf9SAlex Deucher 	 */
489d38ceaf9SAlex Deucher 	amdgpu_fence_process(ring);
490d38ceaf9SAlex Deucher 	emitted = ring->fence_drv.sync_seq[ring->idx]
491d38ceaf9SAlex Deucher 		- atomic64_read(&ring->fence_drv.last_seq);
492d38ceaf9SAlex Deucher 	/* to avoid 32bits warp around */
493d38ceaf9SAlex Deucher 	if (emitted > 0x10000000)
494d38ceaf9SAlex Deucher 		emitted = 0x10000000;
495d38ceaf9SAlex Deucher 
496d38ceaf9SAlex Deucher 	return (unsigned)emitted;
497d38ceaf9SAlex Deucher }
498d38ceaf9SAlex Deucher 
499d38ceaf9SAlex Deucher /**
500d38ceaf9SAlex Deucher  * amdgpu_fence_need_sync - do we need a semaphore
501d38ceaf9SAlex Deucher  *
502d38ceaf9SAlex Deucher  * @fence: amdgpu fence object
503d38ceaf9SAlex Deucher  * @dst_ring: which ring to check against
504d38ceaf9SAlex Deucher  *
505d38ceaf9SAlex Deucher  * Check if the fence needs to be synced against another ring
506d38ceaf9SAlex Deucher  * (all asics).  If so, we need to emit a semaphore.
507d38ceaf9SAlex Deucher  * Returns true if we need to sync with another ring, false if
508d38ceaf9SAlex Deucher  * not.
509d38ceaf9SAlex Deucher  */
510d38ceaf9SAlex Deucher bool amdgpu_fence_need_sync(struct amdgpu_fence *fence,
511d38ceaf9SAlex Deucher 			    struct amdgpu_ring *dst_ring)
512d38ceaf9SAlex Deucher {
513d38ceaf9SAlex Deucher 	struct amdgpu_fence_driver *fdrv;
514d38ceaf9SAlex Deucher 
515d38ceaf9SAlex Deucher 	if (!fence)
516d38ceaf9SAlex Deucher 		return false;
517d38ceaf9SAlex Deucher 
518d38ceaf9SAlex Deucher 	if (fence->ring == dst_ring)
519d38ceaf9SAlex Deucher 		return false;
520d38ceaf9SAlex Deucher 
521d38ceaf9SAlex Deucher 	/* we are protected by the ring mutex */
522d38ceaf9SAlex Deucher 	fdrv = &dst_ring->fence_drv;
523d38ceaf9SAlex Deucher 	if (fence->seq <= fdrv->sync_seq[fence->ring->idx])
524d38ceaf9SAlex Deucher 		return false;
525d38ceaf9SAlex Deucher 
526d38ceaf9SAlex Deucher 	return true;
527d38ceaf9SAlex Deucher }
528d38ceaf9SAlex Deucher 
529d38ceaf9SAlex Deucher /**
530d38ceaf9SAlex Deucher  * amdgpu_fence_note_sync - record the sync point
531d38ceaf9SAlex Deucher  *
532d38ceaf9SAlex Deucher  * @fence: amdgpu fence object
533d38ceaf9SAlex Deucher  * @dst_ring: which ring to check against
534d38ceaf9SAlex Deucher  *
535d38ceaf9SAlex Deucher  * Note the sequence number at which point the fence will
536d38ceaf9SAlex Deucher  * be synced with the requested ring (all asics).
537d38ceaf9SAlex Deucher  */
538d38ceaf9SAlex Deucher void amdgpu_fence_note_sync(struct amdgpu_fence *fence,
539d38ceaf9SAlex Deucher 			    struct amdgpu_ring *dst_ring)
540d38ceaf9SAlex Deucher {
541d38ceaf9SAlex Deucher 	struct amdgpu_fence_driver *dst, *src;
542d38ceaf9SAlex Deucher 	unsigned i;
543d38ceaf9SAlex Deucher 
544d38ceaf9SAlex Deucher 	if (!fence)
545d38ceaf9SAlex Deucher 		return;
546d38ceaf9SAlex Deucher 
547d38ceaf9SAlex Deucher 	if (fence->ring == dst_ring)
548d38ceaf9SAlex Deucher 		return;
549d38ceaf9SAlex Deucher 
550d38ceaf9SAlex Deucher 	/* we are protected by the ring mutex */
551d38ceaf9SAlex Deucher 	src = &fence->ring->fence_drv;
552d38ceaf9SAlex Deucher 	dst = &dst_ring->fence_drv;
553d38ceaf9SAlex Deucher 	for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
554d38ceaf9SAlex Deucher 		if (i == dst_ring->idx)
555d38ceaf9SAlex Deucher 			continue;
556d38ceaf9SAlex Deucher 
557d38ceaf9SAlex Deucher 		dst->sync_seq[i] = max(dst->sync_seq[i], src->sync_seq[i]);
558d38ceaf9SAlex Deucher 	}
559d38ceaf9SAlex Deucher }
560d38ceaf9SAlex Deucher 
561d38ceaf9SAlex Deucher /**
562d38ceaf9SAlex Deucher  * amdgpu_fence_driver_start_ring - make the fence driver
563d38ceaf9SAlex Deucher  * ready for use on the requested ring.
564d38ceaf9SAlex Deucher  *
565d38ceaf9SAlex Deucher  * @ring: ring to start the fence driver on
566d38ceaf9SAlex Deucher  * @irq_src: interrupt source to use for this ring
567d38ceaf9SAlex Deucher  * @irq_type: interrupt type to use for this ring
568d38ceaf9SAlex Deucher  *
569d38ceaf9SAlex Deucher  * Make the fence driver ready for processing (all asics).
570d38ceaf9SAlex Deucher  * Not all asics have all rings, so each asic will only
571d38ceaf9SAlex Deucher  * start the fence driver on the rings it has.
572d38ceaf9SAlex Deucher  * Returns 0 for success, errors for failure.
573d38ceaf9SAlex Deucher  */
574d38ceaf9SAlex Deucher int amdgpu_fence_driver_start_ring(struct amdgpu_ring *ring,
575d38ceaf9SAlex Deucher 				   struct amdgpu_irq_src *irq_src,
576d38ceaf9SAlex Deucher 				   unsigned irq_type)
577d38ceaf9SAlex Deucher {
578d38ceaf9SAlex Deucher 	struct amdgpu_device *adev = ring->adev;
579d38ceaf9SAlex Deucher 	uint64_t index;
580d38ceaf9SAlex Deucher 
581d38ceaf9SAlex Deucher 	if (ring != &adev->uvd.ring) {
582d38ceaf9SAlex Deucher 		ring->fence_drv.cpu_addr = &adev->wb.wb[ring->fence_offs];
583d38ceaf9SAlex Deucher 		ring->fence_drv.gpu_addr = adev->wb.gpu_addr + (ring->fence_offs * 4);
584d38ceaf9SAlex Deucher 	} else {
585d38ceaf9SAlex Deucher 		/* put fence directly behind firmware */
586d38ceaf9SAlex Deucher 		index = ALIGN(adev->uvd.fw->size, 8);
587d38ceaf9SAlex Deucher 		ring->fence_drv.cpu_addr = adev->uvd.cpu_addr + index;
588d38ceaf9SAlex Deucher 		ring->fence_drv.gpu_addr = adev->uvd.gpu_addr + index;
589d38ceaf9SAlex Deucher 	}
590d38ceaf9SAlex Deucher 	amdgpu_fence_write(ring, atomic64_read(&ring->fence_drv.last_seq));
591c6a4079bSChunming Zhou 	amdgpu_irq_get(adev, irq_src, irq_type);
592c6a4079bSChunming Zhou 
593d38ceaf9SAlex Deucher 	ring->fence_drv.irq_src = irq_src;
594d38ceaf9SAlex Deucher 	ring->fence_drv.irq_type = irq_type;
595c6a4079bSChunming Zhou 	ring->fence_drv.initialized = true;
596c6a4079bSChunming Zhou 
597d38ceaf9SAlex Deucher 	dev_info(adev->dev, "fence driver on ring %d use gpu addr 0x%016llx, "
598d38ceaf9SAlex Deucher 		 "cpu addr 0x%p\n", ring->idx,
599d38ceaf9SAlex Deucher 		 ring->fence_drv.gpu_addr, ring->fence_drv.cpu_addr);
600d38ceaf9SAlex Deucher 	return 0;
601d38ceaf9SAlex Deucher }
602d38ceaf9SAlex Deucher 
603d38ceaf9SAlex Deucher /**
604d38ceaf9SAlex Deucher  * amdgpu_fence_driver_init_ring - init the fence driver
605d38ceaf9SAlex Deucher  * for the requested ring.
606d38ceaf9SAlex Deucher  *
607d38ceaf9SAlex Deucher  * @ring: ring to init the fence driver on
608d38ceaf9SAlex Deucher  *
609d38ceaf9SAlex Deucher  * Init the fence driver for the requested ring (all asics).
610d38ceaf9SAlex Deucher  * Helper function for amdgpu_fence_driver_init().
611d38ceaf9SAlex Deucher  */
612d38ceaf9SAlex Deucher void amdgpu_fence_driver_init_ring(struct amdgpu_ring *ring)
613d38ceaf9SAlex Deucher {
614d38ceaf9SAlex Deucher 	int i;
615d38ceaf9SAlex Deucher 
616d38ceaf9SAlex Deucher 	ring->fence_drv.cpu_addr = NULL;
617d38ceaf9SAlex Deucher 	ring->fence_drv.gpu_addr = 0;
618d38ceaf9SAlex Deucher 	for (i = 0; i < AMDGPU_MAX_RINGS; ++i)
619d38ceaf9SAlex Deucher 		ring->fence_drv.sync_seq[i] = 0;
620d38ceaf9SAlex Deucher 
621d38ceaf9SAlex Deucher 	atomic64_set(&ring->fence_drv.last_seq, 0);
622d38ceaf9SAlex Deucher 	ring->fence_drv.initialized = false;
623d38ceaf9SAlex Deucher 
624d38ceaf9SAlex Deucher 	INIT_DELAYED_WORK(&ring->fence_drv.lockup_work,
625d38ceaf9SAlex Deucher 			amdgpu_fence_check_lockup);
626d38ceaf9SAlex Deucher 	ring->fence_drv.ring = ring;
627b80d8475SAlex Deucher 
628b80d8475SAlex Deucher 	if (amdgpu_enable_scheduler) {
62969f7dd65SChristian König 		ring->scheduler = amd_sched_create(&amdgpu_sched_ops,
63069f7dd65SChristian König 						   ring->idx,
631f38fdfddSChunming Zhou 						   amdgpu_sched_hw_submission,
632f38fdfddSChunming Zhou 						   (void *)ring->adev);
633b80d8475SAlex Deucher 		if (!ring->scheduler)
634b80d8475SAlex Deucher 			DRM_ERROR("Failed to create scheduler on ring %d.\n",
635b80d8475SAlex Deucher 				  ring->idx);
636b80d8475SAlex Deucher 	}
637d38ceaf9SAlex Deucher }
638d38ceaf9SAlex Deucher 
639d38ceaf9SAlex Deucher /**
640d38ceaf9SAlex Deucher  * amdgpu_fence_driver_init - init the fence driver
641d38ceaf9SAlex Deucher  * for all possible rings.
642d38ceaf9SAlex Deucher  *
643d38ceaf9SAlex Deucher  * @adev: amdgpu device pointer
644d38ceaf9SAlex Deucher  *
645d38ceaf9SAlex Deucher  * Init the fence driver for all possible rings (all asics).
646d38ceaf9SAlex Deucher  * Not all asics have all rings, so each asic will only
647d38ceaf9SAlex Deucher  * start the fence driver on the rings it has using
648d38ceaf9SAlex Deucher  * amdgpu_fence_driver_start_ring().
649d38ceaf9SAlex Deucher  * Returns 0 for success.
650d38ceaf9SAlex Deucher  */
651d38ceaf9SAlex Deucher int amdgpu_fence_driver_init(struct amdgpu_device *adev)
652d38ceaf9SAlex Deucher {
653d38ceaf9SAlex Deucher 	if (amdgpu_debugfs_fence_init(adev))
654d38ceaf9SAlex Deucher 		dev_err(adev->dev, "fence debugfs file creation failed\n");
655d38ceaf9SAlex Deucher 
656d38ceaf9SAlex Deucher 	return 0;
657d38ceaf9SAlex Deucher }
658d38ceaf9SAlex Deucher 
659d38ceaf9SAlex Deucher /**
660d38ceaf9SAlex Deucher  * amdgpu_fence_driver_fini - tear down the fence driver
661d38ceaf9SAlex Deucher  * for all possible rings.
662d38ceaf9SAlex Deucher  *
663d38ceaf9SAlex Deucher  * @adev: amdgpu device pointer
664d38ceaf9SAlex Deucher  *
665d38ceaf9SAlex Deucher  * Tear down the fence driver for all possible rings (all asics).
666d38ceaf9SAlex Deucher  */
667d38ceaf9SAlex Deucher void amdgpu_fence_driver_fini(struct amdgpu_device *adev)
668d38ceaf9SAlex Deucher {
669d38ceaf9SAlex Deucher 	int i, r;
670d38ceaf9SAlex Deucher 
671d38ceaf9SAlex Deucher 	mutex_lock(&adev->ring_lock);
672d38ceaf9SAlex Deucher 	for (i = 0; i < AMDGPU_MAX_RINGS; i++) {
673d38ceaf9SAlex Deucher 		struct amdgpu_ring *ring = adev->rings[i];
674d38ceaf9SAlex Deucher 		if (!ring || !ring->fence_drv.initialized)
675d38ceaf9SAlex Deucher 			continue;
676d38ceaf9SAlex Deucher 		r = amdgpu_fence_wait_empty(ring);
677d38ceaf9SAlex Deucher 		if (r) {
678d38ceaf9SAlex Deucher 			/* no need to trigger GPU reset as we are unloading */
679d38ceaf9SAlex Deucher 			amdgpu_fence_driver_force_completion(adev);
680d38ceaf9SAlex Deucher 		}
6817f06c236Smonk.liu 		wake_up_all(&ring->fence_drv.fence_queue);
682c6a4079bSChunming Zhou 		amdgpu_irq_put(adev, ring->fence_drv.irq_src,
683c6a4079bSChunming Zhou 			       ring->fence_drv.irq_type);
684b80d8475SAlex Deucher 		if (ring->scheduler)
685b80d8475SAlex Deucher 			amd_sched_destroy(ring->scheduler);
686d38ceaf9SAlex Deucher 		ring->fence_drv.initialized = false;
687d38ceaf9SAlex Deucher 	}
688d38ceaf9SAlex Deucher 	mutex_unlock(&adev->ring_lock);
689d38ceaf9SAlex Deucher }
690d38ceaf9SAlex Deucher 
691d38ceaf9SAlex Deucher /**
6925ceb54c6SAlex Deucher  * amdgpu_fence_driver_suspend - suspend the fence driver
6935ceb54c6SAlex Deucher  * for all possible rings.
6945ceb54c6SAlex Deucher  *
6955ceb54c6SAlex Deucher  * @adev: amdgpu device pointer
6965ceb54c6SAlex Deucher  *
6975ceb54c6SAlex Deucher  * Suspend the fence driver for all possible rings (all asics).
6985ceb54c6SAlex Deucher  */
6995ceb54c6SAlex Deucher void amdgpu_fence_driver_suspend(struct amdgpu_device *adev)
7005ceb54c6SAlex Deucher {
7015ceb54c6SAlex Deucher 	int i, r;
7025ceb54c6SAlex Deucher 
7035ceb54c6SAlex Deucher 	mutex_lock(&adev->ring_lock);
7045ceb54c6SAlex Deucher 	for (i = 0; i < AMDGPU_MAX_RINGS; i++) {
7055ceb54c6SAlex Deucher 		struct amdgpu_ring *ring = adev->rings[i];
7065ceb54c6SAlex Deucher 		if (!ring || !ring->fence_drv.initialized)
7075ceb54c6SAlex Deucher 			continue;
7085ceb54c6SAlex Deucher 
7095ceb54c6SAlex Deucher 		/* wait for gpu to finish processing current batch */
7105ceb54c6SAlex Deucher 		r = amdgpu_fence_wait_empty(ring);
7115ceb54c6SAlex Deucher 		if (r) {
7125ceb54c6SAlex Deucher 			/* delay GPU reset to resume */
7135ceb54c6SAlex Deucher 			amdgpu_fence_driver_force_completion(adev);
7145ceb54c6SAlex Deucher 		}
7155ceb54c6SAlex Deucher 
7165ceb54c6SAlex Deucher 		/* disable the interrupt */
7175ceb54c6SAlex Deucher 		amdgpu_irq_put(adev, ring->fence_drv.irq_src,
7185ceb54c6SAlex Deucher 			       ring->fence_drv.irq_type);
7195ceb54c6SAlex Deucher 	}
7205ceb54c6SAlex Deucher 	mutex_unlock(&adev->ring_lock);
7215ceb54c6SAlex Deucher }
7225ceb54c6SAlex Deucher 
7235ceb54c6SAlex Deucher /**
7245ceb54c6SAlex Deucher  * amdgpu_fence_driver_resume - resume the fence driver
7255ceb54c6SAlex Deucher  * for all possible rings.
7265ceb54c6SAlex Deucher  *
7275ceb54c6SAlex Deucher  * @adev: amdgpu device pointer
7285ceb54c6SAlex Deucher  *
7295ceb54c6SAlex Deucher  * Resume the fence driver for all possible rings (all asics).
7305ceb54c6SAlex Deucher  * Not all asics have all rings, so each asic will only
7315ceb54c6SAlex Deucher  * start the fence driver on the rings it has using
7325ceb54c6SAlex Deucher  * amdgpu_fence_driver_start_ring().
7335ceb54c6SAlex Deucher  * Returns 0 for success.
7345ceb54c6SAlex Deucher  */
7355ceb54c6SAlex Deucher void amdgpu_fence_driver_resume(struct amdgpu_device *adev)
7365ceb54c6SAlex Deucher {
7375ceb54c6SAlex Deucher 	int i;
7385ceb54c6SAlex Deucher 
7395ceb54c6SAlex Deucher 	mutex_lock(&adev->ring_lock);
7405ceb54c6SAlex Deucher 	for (i = 0; i < AMDGPU_MAX_RINGS; i++) {
7415ceb54c6SAlex Deucher 		struct amdgpu_ring *ring = adev->rings[i];
7425ceb54c6SAlex Deucher 		if (!ring || !ring->fence_drv.initialized)
7435ceb54c6SAlex Deucher 			continue;
7445ceb54c6SAlex Deucher 
7455ceb54c6SAlex Deucher 		/* enable the interrupt */
7465ceb54c6SAlex Deucher 		amdgpu_irq_get(adev, ring->fence_drv.irq_src,
7475ceb54c6SAlex Deucher 			       ring->fence_drv.irq_type);
7485ceb54c6SAlex Deucher 	}
7495ceb54c6SAlex Deucher 	mutex_unlock(&adev->ring_lock);
7505ceb54c6SAlex Deucher }
7515ceb54c6SAlex Deucher 
7525ceb54c6SAlex Deucher /**
753d38ceaf9SAlex Deucher  * amdgpu_fence_driver_force_completion - force all fence waiter to complete
754d38ceaf9SAlex Deucher  *
755d38ceaf9SAlex Deucher  * @adev: amdgpu device pointer
756d38ceaf9SAlex Deucher  *
757d38ceaf9SAlex Deucher  * In case of GPU reset failure make sure no process keep waiting on fence
758d38ceaf9SAlex Deucher  * that will never complete.
759d38ceaf9SAlex Deucher  */
760d38ceaf9SAlex Deucher void amdgpu_fence_driver_force_completion(struct amdgpu_device *adev)
761d38ceaf9SAlex Deucher {
762d38ceaf9SAlex Deucher 	int i;
763d38ceaf9SAlex Deucher 
764d38ceaf9SAlex Deucher 	for (i = 0; i < AMDGPU_MAX_RINGS; i++) {
765d38ceaf9SAlex Deucher 		struct amdgpu_ring *ring = adev->rings[i];
766d38ceaf9SAlex Deucher 		if (!ring || !ring->fence_drv.initialized)
767d38ceaf9SAlex Deucher 			continue;
768d38ceaf9SAlex Deucher 
769d38ceaf9SAlex Deucher 		amdgpu_fence_write(ring, ring->fence_drv.sync_seq[i]);
770d38ceaf9SAlex Deucher 	}
771d38ceaf9SAlex Deucher }
772d38ceaf9SAlex Deucher 
773d38ceaf9SAlex Deucher 
774d38ceaf9SAlex Deucher /*
775d38ceaf9SAlex Deucher  * Fence debugfs
776d38ceaf9SAlex Deucher  */
777d38ceaf9SAlex Deucher #if defined(CONFIG_DEBUG_FS)
778d38ceaf9SAlex Deucher static int amdgpu_debugfs_fence_info(struct seq_file *m, void *data)
779d38ceaf9SAlex Deucher {
780d38ceaf9SAlex Deucher 	struct drm_info_node *node = (struct drm_info_node *)m->private;
781d38ceaf9SAlex Deucher 	struct drm_device *dev = node->minor->dev;
782d38ceaf9SAlex Deucher 	struct amdgpu_device *adev = dev->dev_private;
783d38ceaf9SAlex Deucher 	int i, j;
784d38ceaf9SAlex Deucher 
785d38ceaf9SAlex Deucher 	for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
786d38ceaf9SAlex Deucher 		struct amdgpu_ring *ring = adev->rings[i];
787d38ceaf9SAlex Deucher 		if (!ring || !ring->fence_drv.initialized)
788d38ceaf9SAlex Deucher 			continue;
789d38ceaf9SAlex Deucher 
790d38ceaf9SAlex Deucher 		amdgpu_fence_process(ring);
791d38ceaf9SAlex Deucher 
792344c19f9SChristian König 		seq_printf(m, "--- ring %d (%s) ---\n", i, ring->name);
793d38ceaf9SAlex Deucher 		seq_printf(m, "Last signaled fence 0x%016llx\n",
794d38ceaf9SAlex Deucher 			   (unsigned long long)atomic64_read(&ring->fence_drv.last_seq));
795d38ceaf9SAlex Deucher 		seq_printf(m, "Last emitted        0x%016llx\n",
796d38ceaf9SAlex Deucher 			   ring->fence_drv.sync_seq[i]);
797d38ceaf9SAlex Deucher 
798d38ceaf9SAlex Deucher 		for (j = 0; j < AMDGPU_MAX_RINGS; ++j) {
799d38ceaf9SAlex Deucher 			struct amdgpu_ring *other = adev->rings[j];
800344c19f9SChristian König 			if (i != j && other && other->fence_drv.initialized &&
801344c19f9SChristian König 			    ring->fence_drv.sync_seq[j])
802d38ceaf9SAlex Deucher 				seq_printf(m, "Last sync to ring %d 0x%016llx\n",
803d38ceaf9SAlex Deucher 					   j, ring->fence_drv.sync_seq[j]);
804d38ceaf9SAlex Deucher 		}
805d38ceaf9SAlex Deucher 	}
806d38ceaf9SAlex Deucher 	return 0;
807d38ceaf9SAlex Deucher }
808d38ceaf9SAlex Deucher 
809d38ceaf9SAlex Deucher static struct drm_info_list amdgpu_debugfs_fence_list[] = {
810d38ceaf9SAlex Deucher 	{"amdgpu_fence_info", &amdgpu_debugfs_fence_info, 0, NULL},
811d38ceaf9SAlex Deucher };
812d38ceaf9SAlex Deucher #endif
813d38ceaf9SAlex Deucher 
814d38ceaf9SAlex Deucher int amdgpu_debugfs_fence_init(struct amdgpu_device *adev)
815d38ceaf9SAlex Deucher {
816d38ceaf9SAlex Deucher #if defined(CONFIG_DEBUG_FS)
817d38ceaf9SAlex Deucher 	return amdgpu_debugfs_add_files(adev, amdgpu_debugfs_fence_list, 1);
818d38ceaf9SAlex Deucher #else
819d38ceaf9SAlex Deucher 	return 0;
820d38ceaf9SAlex Deucher #endif
821d38ceaf9SAlex Deucher }
822d38ceaf9SAlex Deucher 
823d38ceaf9SAlex Deucher static const char *amdgpu_fence_get_driver_name(struct fence *fence)
824d38ceaf9SAlex Deucher {
825d38ceaf9SAlex Deucher 	return "amdgpu";
826d38ceaf9SAlex Deucher }
827d38ceaf9SAlex Deucher 
828d38ceaf9SAlex Deucher static const char *amdgpu_fence_get_timeline_name(struct fence *f)
829d38ceaf9SAlex Deucher {
830d38ceaf9SAlex Deucher 	struct amdgpu_fence *fence = to_amdgpu_fence(f);
831d38ceaf9SAlex Deucher 	return (const char *)fence->ring->name;
832d38ceaf9SAlex Deucher }
833d38ceaf9SAlex Deucher 
834d38ceaf9SAlex Deucher static inline bool amdgpu_test_signaled(struct amdgpu_fence *fence)
835d38ceaf9SAlex Deucher {
836d38ceaf9SAlex Deucher 	return test_bit(FENCE_FLAG_SIGNALED_BIT, &fence->base.flags);
837d38ceaf9SAlex Deucher }
838d38ceaf9SAlex Deucher 
8394ce9891eSChunming Zhou static bool amdgpu_test_signaled_any(struct fence **fences, uint32_t count)
840332dfe90Smonk.liu {
841332dfe90Smonk.liu 	int idx;
8424ce9891eSChunming Zhou 	struct fence *fence;
843332dfe90Smonk.liu 
8441aa4051bSJunwei Zhang 	for (idx = 0; idx < count; ++idx) {
845332dfe90Smonk.liu 		fence = fences[idx];
846332dfe90Smonk.liu 		if (fence) {
8474ce9891eSChunming Zhou 			if (test_bit(FENCE_FLAG_SIGNALED_BIT, &fence->flags))
848332dfe90Smonk.liu 				return true;
849332dfe90Smonk.liu 		}
850332dfe90Smonk.liu 	}
851332dfe90Smonk.liu 	return false;
852332dfe90Smonk.liu }
853332dfe90Smonk.liu 
854d38ceaf9SAlex Deucher struct amdgpu_wait_cb {
855d38ceaf9SAlex Deucher 	struct fence_cb base;
856d38ceaf9SAlex Deucher 	struct task_struct *task;
857d38ceaf9SAlex Deucher };
858d38ceaf9SAlex Deucher 
859d38ceaf9SAlex Deucher static void amdgpu_fence_wait_cb(struct fence *fence, struct fence_cb *cb)
860d38ceaf9SAlex Deucher {
861d38ceaf9SAlex Deucher 	struct amdgpu_wait_cb *wait =
862d38ceaf9SAlex Deucher 		container_of(cb, struct amdgpu_wait_cb, base);
863d38ceaf9SAlex Deucher 	wake_up_process(wait->task);
864d38ceaf9SAlex Deucher }
865d38ceaf9SAlex Deucher 
866d38ceaf9SAlex Deucher static signed long amdgpu_fence_default_wait(struct fence *f, bool intr,
867d38ceaf9SAlex Deucher 					     signed long t)
868d38ceaf9SAlex Deucher {
869d38ceaf9SAlex Deucher 	struct amdgpu_fence *fence = to_amdgpu_fence(f);
870d38ceaf9SAlex Deucher 	struct amdgpu_device *adev = fence->ring->adev;
871d38ceaf9SAlex Deucher 
8728221d706SChristian König 	return amdgpu_fence_wait_any(adev, &f, 1, intr, t);
873d38ceaf9SAlex Deucher }
874d38ceaf9SAlex Deucher 
8751aa4051bSJunwei Zhang /**
8761aa4051bSJunwei Zhang  * Wait the fence array with timeout
8771aa4051bSJunwei Zhang  *
8781aa4051bSJunwei Zhang  * @adev:     amdgpu device
8791aa4051bSJunwei Zhang  * @array:    the fence array with amdgpu fence pointer
8801aa4051bSJunwei Zhang  * @count:    the number of the fence array
8811aa4051bSJunwei Zhang  * @intr:     when sleep, set the current task interruptable or not
8821aa4051bSJunwei Zhang  * @t:        timeout to wait
8831aa4051bSJunwei Zhang  *
8848221d706SChristian König  * It will return when any fence is signaled or timeout.
8851aa4051bSJunwei Zhang  */
8868221d706SChristian König signed long amdgpu_fence_wait_any(struct amdgpu_device *adev,
8878221d706SChristian König 				  struct fence **array, uint32_t count,
8888221d706SChristian König 				  bool intr, signed long t)
889332dfe90Smonk.liu {
8901aa4051bSJunwei Zhang 	struct amdgpu_wait_cb *cb;
8914ce9891eSChunming Zhou 	struct fence *fence;
8928221d706SChristian König 	unsigned idx;
893332dfe90Smonk.liu 
894332dfe90Smonk.liu 	BUG_ON(!array);
895332dfe90Smonk.liu 
8961aa4051bSJunwei Zhang 	cb = kcalloc(count, sizeof(struct amdgpu_wait_cb), GFP_KERNEL);
8971aa4051bSJunwei Zhang 	if (cb == NULL) {
8981aa4051bSJunwei Zhang 		t = -ENOMEM;
8991aa4051bSJunwei Zhang 		goto err_free_cb;
9001aa4051bSJunwei Zhang 	}
9011aa4051bSJunwei Zhang 
9021aa4051bSJunwei Zhang 	for (idx = 0; idx < count; ++idx) {
903332dfe90Smonk.liu 		fence = array[idx];
904332dfe90Smonk.liu 		if (fence) {
905332dfe90Smonk.liu 			cb[idx].task = current;
9064ce9891eSChunming Zhou 			if (fence_add_callback(fence,
9071aa4051bSJunwei Zhang 					&cb[idx].base, amdgpu_fence_wait_cb)) {
9081aa4051bSJunwei Zhang 				/* The fence is already signaled */
9091aa4051bSJunwei Zhang 				goto fence_rm_cb;
9101aa4051bSJunwei Zhang 			}
911332dfe90Smonk.liu 		}
912332dfe90Smonk.liu 	}
913332dfe90Smonk.liu 
914332dfe90Smonk.liu 	while (t > 0) {
915332dfe90Smonk.liu 		if (intr)
916332dfe90Smonk.liu 			set_current_state(TASK_INTERRUPTIBLE);
917332dfe90Smonk.liu 		else
918332dfe90Smonk.liu 			set_current_state(TASK_UNINTERRUPTIBLE);
919332dfe90Smonk.liu 
920332dfe90Smonk.liu 		/*
921332dfe90Smonk.liu 		 * amdgpu_test_signaled_any must be called after
922332dfe90Smonk.liu 		 * set_current_state to prevent a race with wake_up_process
923332dfe90Smonk.liu 		 */
9248221d706SChristian König 		if (amdgpu_test_signaled_any(array, count))
925332dfe90Smonk.liu 			break;
926332dfe90Smonk.liu 
927332dfe90Smonk.liu 		if (adev->needs_reset) {
928332dfe90Smonk.liu 			t = -EDEADLK;
929332dfe90Smonk.liu 			break;
930332dfe90Smonk.liu 		}
931332dfe90Smonk.liu 
932332dfe90Smonk.liu 		t = schedule_timeout(t);
933332dfe90Smonk.liu 
934332dfe90Smonk.liu 		if (t > 0 && intr && signal_pending(current))
935332dfe90Smonk.liu 			t = -ERESTARTSYS;
936332dfe90Smonk.liu 	}
937332dfe90Smonk.liu 
938332dfe90Smonk.liu 	__set_current_state(TASK_RUNNING);
939332dfe90Smonk.liu 
9401aa4051bSJunwei Zhang fence_rm_cb:
9411aa4051bSJunwei Zhang 	for (idx = 0; idx < count; ++idx) {
942332dfe90Smonk.liu 		fence = array[idx];
943113cd9daSJunwei Zhang 		if (fence && cb[idx].base.func)
9444ce9891eSChunming Zhou 			fence_remove_callback(fence, &cb[idx].base);
945332dfe90Smonk.liu 	}
946332dfe90Smonk.liu 
9471aa4051bSJunwei Zhang err_free_cb:
9481aa4051bSJunwei Zhang 	kfree(cb);
9491aa4051bSJunwei Zhang 
950332dfe90Smonk.liu 	return t;
951332dfe90Smonk.liu }
952332dfe90Smonk.liu 
953d38ceaf9SAlex Deucher const struct fence_ops amdgpu_fence_ops = {
954d38ceaf9SAlex Deucher 	.get_driver_name = amdgpu_fence_get_driver_name,
955d38ceaf9SAlex Deucher 	.get_timeline_name = amdgpu_fence_get_timeline_name,
956d38ceaf9SAlex Deucher 	.enable_signaling = amdgpu_fence_enable_signaling,
957d38ceaf9SAlex Deucher 	.signaled = amdgpu_fence_is_signaled,
958d38ceaf9SAlex Deucher 	.wait = amdgpu_fence_default_wait,
959d38ceaf9SAlex Deucher 	.release = NULL,
960d38ceaf9SAlex Deucher };
961