2015-04-21 04:55:21 +08:00
|
|
|
/*
|
|
|
|
* Copyright 2009 Jerome Glisse.
|
|
|
|
* All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the
|
|
|
|
* "Software"), to deal in the Software without restriction, including
|
|
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
* distribute, sub license, and/or sell copies of the Software, and to
|
|
|
|
* permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
* the following conditions:
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
|
|
|
|
* DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
|
|
|
* OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
|
|
* USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice (including the
|
|
|
|
* next paragraph) shall be included in all copies or substantial portions
|
|
|
|
* of the Software.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
* Authors:
|
|
|
|
* Jerome Glisse <glisse@freedesktop.org>
|
|
|
|
* Dave Airlie
|
|
|
|
*/
|
|
|
|
#include <linux/seq_file.h>
|
|
|
|
#include <linux/atomic.h>
|
|
|
|
#include <linux/wait.h>
|
|
|
|
#include <linux/kref.h>
|
|
|
|
#include <linux/slab.h>
|
|
|
|
#include <linux/firmware.h>
|
2019-12-13 06:43:36 +08:00
|
|
|
#include <linux/pm_runtime.h>
|
2019-06-10 06:07:56 +08:00
|
|
|
|
|
|
|
#include <drm/drm_debugfs.h>
|
|
|
|
|
2015-04-21 04:55:21 +08:00
|
|
|
#include "amdgpu.h"
|
|
|
|
#include "amdgpu_trace.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Fences
|
|
|
|
* Fences mark an event in the GPUs pipeline and are used
|
|
|
|
* for GPU/CPU synchronization. When the fence is written,
|
|
|
|
* it is expected that all buffers associated with that fence
|
|
|
|
* are no longer in use by the associated ring on the GPU and
|
|
|
|
* that the the relevant GPU caches have been flushed.
|
|
|
|
*/
|
|
|
|
|
2016-03-11 22:12:53 +08:00
|
|
|
struct amdgpu_fence {
|
2016-10-25 20:00:45 +08:00
|
|
|
struct dma_fence base;
|
2016-03-11 22:12:53 +08:00
|
|
|
|
|
|
|
/* RB, DMA, etc. */
|
|
|
|
struct amdgpu_ring *ring;
|
|
|
|
};
|
|
|
|
|
2015-11-05 11:28:28 +08:00
|
|
|
static struct kmem_cache *amdgpu_fence_slab;
|
|
|
|
|
2016-05-12 13:27:28 +08:00
|
|
|
int amdgpu_fence_slab_init(void)
|
|
|
|
{
|
|
|
|
amdgpu_fence_slab = kmem_cache_create(
|
|
|
|
"amdgpu_fence", sizeof(struct amdgpu_fence), 0,
|
|
|
|
SLAB_HWCACHE_ALIGN, NULL);
|
|
|
|
if (!amdgpu_fence_slab)
|
|
|
|
return -ENOMEM;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void amdgpu_fence_slab_fini(void)
|
|
|
|
{
|
2016-10-24 02:31:43 +08:00
|
|
|
rcu_barrier();
|
2016-05-12 13:27:28 +08:00
|
|
|
kmem_cache_destroy(amdgpu_fence_slab);
|
|
|
|
}
|
2016-03-11 22:12:53 +08:00
|
|
|
/*
|
|
|
|
* Cast helper
|
|
|
|
*/
|
2016-10-25 20:00:45 +08:00
|
|
|
static const struct dma_fence_ops amdgpu_fence_ops;
|
|
|
|
static inline struct amdgpu_fence *to_amdgpu_fence(struct dma_fence *f)
|
2016-03-11 22:12:53 +08:00
|
|
|
{
|
|
|
|
struct amdgpu_fence *__f = container_of(f, struct amdgpu_fence, base);
|
|
|
|
|
|
|
|
if (__f->base.ops == &amdgpu_fence_ops)
|
|
|
|
return __f;
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2015-04-21 04:55:21 +08:00
|
|
|
/**
|
|
|
|
* amdgpu_fence_write - write a fence value
|
|
|
|
*
|
|
|
|
* @ring: ring the fence is associated with
|
|
|
|
* @seq: sequence number to write
|
|
|
|
*
|
|
|
|
* Writes a fence value to memory (all asics).
|
|
|
|
*/
|
|
|
|
static void amdgpu_fence_write(struct amdgpu_ring *ring, u32 seq)
|
|
|
|
{
|
|
|
|
struct amdgpu_fence_driver *drv = &ring->fence_drv;
|
|
|
|
|
|
|
|
if (drv->cpu_addr)
|
|
|
|
*drv->cpu_addr = cpu_to_le32(seq);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* amdgpu_fence_read - read a fence value
|
|
|
|
*
|
|
|
|
* @ring: ring the fence is associated with
|
|
|
|
*
|
|
|
|
* Reads a fence value from memory (all asics).
|
|
|
|
* Returns the value of the fence read from memory.
|
|
|
|
*/
|
|
|
|
static u32 amdgpu_fence_read(struct amdgpu_ring *ring)
|
|
|
|
{
|
|
|
|
struct amdgpu_fence_driver *drv = &ring->fence_drv;
|
|
|
|
u32 seq = 0;
|
|
|
|
|
|
|
|
if (drv->cpu_addr)
|
|
|
|
seq = le32_to_cpu(*drv->cpu_addr);
|
|
|
|
else
|
2016-03-14 22:46:06 +08:00
|
|
|
seq = atomic_read(&drv->last_seq);
|
2015-04-21 04:55:21 +08:00
|
|
|
|
|
|
|
return seq;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* amdgpu_fence_emit - emit a fence on the requested ring
|
|
|
|
*
|
|
|
|
* @ring: ring the fence is associated with
|
2016-02-17 00:39:39 +08:00
|
|
|
* @f: resulting fence object
|
2015-04-21 04:55:21 +08:00
|
|
|
*
|
|
|
|
* Emits a fence command on the requested ring (all asics).
|
|
|
|
* Returns 0 on success, -ENOMEM on failure.
|
|
|
|
*/
|
2018-04-04 01:05:03 +08:00
|
|
|
int amdgpu_fence_emit(struct amdgpu_ring *ring, struct dma_fence **f,
|
|
|
|
unsigned flags)
|
2015-04-21 04:55:21 +08:00
|
|
|
{
|
|
|
|
struct amdgpu_device *adev = ring->adev;
|
2016-02-17 00:39:39 +08:00
|
|
|
struct amdgpu_fence *fence;
|
2019-03-30 02:30:23 +08:00
|
|
|
struct dma_fence __rcu **ptr;
|
2016-03-14 22:46:06 +08:00
|
|
|
uint32_t seq;
|
2019-03-30 02:30:23 +08:00
|
|
|
int r;
|
2015-04-21 04:55:21 +08:00
|
|
|
|
2016-02-17 00:39:39 +08:00
|
|
|
fence = kmem_cache_alloc(amdgpu_fence_slab, GFP_KERNEL);
|
|
|
|
if (fence == NULL)
|
2015-04-21 04:55:21 +08:00
|
|
|
return -ENOMEM;
|
2016-02-17 00:39:39 +08:00
|
|
|
|
2016-03-14 22:46:06 +08:00
|
|
|
seq = ++ring->fence_drv.sync_seq;
|
2016-02-17 00:39:39 +08:00
|
|
|
fence->ring = ring;
|
2016-10-25 20:00:45 +08:00
|
|
|
dma_fence_init(&fence->base, &amdgpu_fence_ops,
|
|
|
|
&ring->fence_drv.lock,
|
|
|
|
adev->fence_context + ring->idx,
|
|
|
|
seq);
|
2015-06-01 14:35:03 +08:00
|
|
|
amdgpu_ring_emit_fence(ring, ring->fence_drv.gpu_addr,
|
2018-04-04 01:05:03 +08:00
|
|
|
seq, flags | AMDGPU_FENCE_FLAG_INT);
|
2019-12-13 06:43:36 +08:00
|
|
|
pm_runtime_get_noresume(adev->ddev->dev);
|
2016-03-14 22:46:06 +08:00
|
|
|
ptr = &ring->fence_drv.fences[seq & ring->fence_drv.num_fences_mask];
|
2019-03-30 02:30:23 +08:00
|
|
|
if (unlikely(rcu_dereference_protected(*ptr, 1))) {
|
|
|
|
struct dma_fence *old;
|
|
|
|
|
|
|
|
rcu_read_lock();
|
|
|
|
old = dma_fence_get_rcu_safe(ptr);
|
|
|
|
rcu_read_unlock();
|
|
|
|
|
|
|
|
if (old) {
|
|
|
|
r = dma_fence_wait(old, false);
|
|
|
|
dma_fence_put(old);
|
|
|
|
if (r)
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-14 02:19:48 +08:00
|
|
|
/* This function can't be called concurrently anyway, otherwise
|
|
|
|
* emitting the fence would mess up the hardware ring buffer.
|
|
|
|
*/
|
2016-10-25 20:00:45 +08:00
|
|
|
rcu_assign_pointer(*ptr, dma_fence_get(&fence->base));
|
2016-03-14 02:19:48 +08:00
|
|
|
|
2016-02-17 00:39:39 +08:00
|
|
|
*f = &fence->base;
|
2016-03-14 02:19:48 +08:00
|
|
|
|
2015-04-21 04:55:21 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-10-13 15:38:35 +08:00
|
|
|
/**
|
|
|
|
* amdgpu_fence_emit_polling - emit a fence on the requeste ring
|
|
|
|
*
|
|
|
|
* @ring: ring the fence is associated with
|
|
|
|
* @s: resulting sequence number
|
|
|
|
*
|
|
|
|
* Emits a fence command on the requested ring (all asics).
|
|
|
|
* Used For polling fence.
|
|
|
|
* Returns 0 on success, -ENOMEM on failure.
|
|
|
|
*/
|
2020-04-23 12:05:54 +08:00
|
|
|
int amdgpu_fence_emit_polling(struct amdgpu_ring *ring, uint32_t *s,
|
|
|
|
uint32_t timeout)
|
2017-10-13 15:38:35 +08:00
|
|
|
{
|
|
|
|
uint32_t seq;
|
2020-04-23 12:05:54 +08:00
|
|
|
signed long r;
|
2017-10-13 15:38:35 +08:00
|
|
|
|
|
|
|
if (!s)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
seq = ++ring->fence_drv.sync_seq;
|
2020-04-23 12:05:54 +08:00
|
|
|
r = amdgpu_fence_wait_polling(ring,
|
|
|
|
seq - ring->fence_drv.num_fences_mask,
|
|
|
|
timeout);
|
|
|
|
if (r < 1)
|
|
|
|
return -ETIMEDOUT;
|
|
|
|
|
2017-10-13 15:38:35 +08:00
|
|
|
amdgpu_ring_emit_fence(ring, ring->fence_drv.gpu_addr,
|
2017-12-04 20:46:17 +08:00
|
|
|
seq, 0);
|
2017-10-13 15:38:35 +08:00
|
|
|
|
|
|
|
*s = seq;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-09-22 02:48:50 +08:00
|
|
|
/**
|
|
|
|
* amdgpu_fence_schedule_fallback - schedule fallback check
|
|
|
|
*
|
|
|
|
* @ring: pointer to struct amdgpu_ring
|
|
|
|
*
|
|
|
|
* Start a timer as fallback to our interrupts.
|
|
|
|
*/
|
|
|
|
static void amdgpu_fence_schedule_fallback(struct amdgpu_ring *ring)
|
|
|
|
{
|
|
|
|
mod_timer(&ring->fence_drv.fallback_timer,
|
|
|
|
jiffies + AMDGPU_FENCE_JIFFIES_TIMEOUT);
|
|
|
|
}
|
|
|
|
|
2015-04-21 04:55:21 +08:00
|
|
|
/**
|
2016-03-12 00:57:56 +08:00
|
|
|
* amdgpu_fence_process - check for fence activity
|
2015-04-21 04:55:21 +08:00
|
|
|
*
|
|
|
|
* @ring: pointer to struct amdgpu_ring
|
|
|
|
*
|
|
|
|
* Checks the current fence value and calculates the last
|
2016-03-12 00:57:56 +08:00
|
|
|
* signalled fence value. Wakes the fence queue if the
|
|
|
|
* sequence number has increased.
|
2018-09-25 22:24:16 +08:00
|
|
|
*
|
|
|
|
* Returns true if fence was processed
|
2015-04-21 04:55:21 +08:00
|
|
|
*/
|
2018-09-25 22:24:16 +08:00
|
|
|
bool amdgpu_fence_process(struct amdgpu_ring *ring)
|
2015-04-21 04:55:21 +08:00
|
|
|
{
|
2016-03-14 21:29:46 +08:00
|
|
|
struct amdgpu_fence_driver *drv = &ring->fence_drv;
|
2019-12-13 06:43:36 +08:00
|
|
|
struct amdgpu_device *adev = ring->adev;
|
2016-03-14 22:46:06 +08:00
|
|
|
uint32_t seq, last_seq;
|
2016-03-14 21:29:46 +08:00
|
|
|
int r;
|
2015-04-21 04:55:21 +08:00
|
|
|
|
|
|
|
do {
|
2016-03-14 22:46:06 +08:00
|
|
|
last_seq = atomic_read(&ring->fence_drv.last_seq);
|
2015-04-21 04:55:21 +08:00
|
|
|
seq = amdgpu_fence_read(ring);
|
|
|
|
|
2016-03-14 22:46:06 +08:00
|
|
|
} while (atomic_cmpxchg(&drv->last_seq, last_seq, seq) != last_seq);
|
2015-04-21 04:55:21 +08:00
|
|
|
|
2018-09-24 20:10:22 +08:00
|
|
|
if (del_timer(&ring->fence_drv.fallback_timer) &&
|
|
|
|
seq != ring->fence_drv.sync_seq)
|
2018-09-22 02:48:50 +08:00
|
|
|
amdgpu_fence_schedule_fallback(ring);
|
|
|
|
|
2016-07-12 19:57:03 +08:00
|
|
|
if (unlikely(seq == last_seq))
|
2018-09-25 22:24:16 +08:00
|
|
|
return false;
|
2016-07-12 19:57:03 +08:00
|
|
|
|
2016-06-25 03:11:51 +08:00
|
|
|
last_seq &= drv->num_fences_mask;
|
|
|
|
seq &= drv->num_fences_mask;
|
|
|
|
|
2016-07-12 19:57:03 +08:00
|
|
|
do {
|
2016-10-25 20:00:45 +08:00
|
|
|
struct dma_fence *fence, **ptr;
|
2016-03-14 21:29:46 +08:00
|
|
|
|
2016-06-25 03:11:51 +08:00
|
|
|
++last_seq;
|
|
|
|
last_seq &= drv->num_fences_mask;
|
|
|
|
ptr = &drv->fences[last_seq];
|
2016-03-14 21:29:46 +08:00
|
|
|
|
|
|
|
/* There is always exactly one thread signaling this fence slot */
|
|
|
|
fence = rcu_dereference_protected(*ptr, 1);
|
2016-05-01 03:00:24 +08:00
|
|
|
RCU_INIT_POINTER(*ptr, NULL);
|
2016-03-14 21:29:46 +08:00
|
|
|
|
2016-06-25 03:11:51 +08:00
|
|
|
if (!fence)
|
|
|
|
continue;
|
2016-03-14 21:29:46 +08:00
|
|
|
|
2016-10-25 20:00:45 +08:00
|
|
|
r = dma_fence_signal(fence);
|
2016-03-14 21:29:46 +08:00
|
|
|
if (!r)
|
2016-10-25 20:00:45 +08:00
|
|
|
DMA_FENCE_TRACE(fence, "signaled from irq context\n");
|
2016-03-14 21:29:46 +08:00
|
|
|
else
|
|
|
|
BUG();
|
|
|
|
|
2016-10-25 20:00:45 +08:00
|
|
|
dma_fence_put(fence);
|
2019-12-13 06:43:36 +08:00
|
|
|
pm_runtime_mark_last_busy(adev->ddev->dev);
|
|
|
|
pm_runtime_put_autosuspend(adev->ddev->dev);
|
2016-07-12 19:57:03 +08:00
|
|
|
} while (last_seq != seq);
|
2018-09-25 22:24:16 +08:00
|
|
|
|
|
|
|
return true;
|
2015-04-21 04:55:21 +08:00
|
|
|
}
|
|
|
|
|
2018-09-22 02:48:50 +08:00
|
|
|
/**
|
|
|
|
* amdgpu_fence_fallback - fallback for hardware interrupts
|
|
|
|
*
|
|
|
|
* @work: delayed work item
|
|
|
|
*
|
|
|
|
* Checks for fence activity.
|
|
|
|
*/
|
|
|
|
static void amdgpu_fence_fallback(struct timer_list *t)
|
|
|
|
{
|
|
|
|
struct amdgpu_ring *ring = from_timer(ring, t,
|
|
|
|
fence_drv.fallback_timer);
|
|
|
|
|
2018-09-25 22:24:16 +08:00
|
|
|
if (amdgpu_fence_process(ring))
|
|
|
|
DRM_WARN("Fence fallback timer expired on ring %s\n", ring->name);
|
2018-09-22 02:48:50 +08:00
|
|
|
}
|
|
|
|
|
2015-04-21 04:55:21 +08:00
|
|
|
/**
|
|
|
|
* amdgpu_fence_wait_empty - wait for all fences to signal
|
|
|
|
*
|
|
|
|
* @adev: amdgpu device pointer
|
|
|
|
* @ring: ring index the fence is associated with
|
|
|
|
*
|
|
|
|
* Wait for all fences on the requested ring to signal (all asics).
|
|
|
|
* Returns 0 if the fences have passed, error for all other cases.
|
|
|
|
*/
|
|
|
|
int amdgpu_fence_wait_empty(struct amdgpu_ring *ring)
|
|
|
|
{
|
locking/atomics: COCCINELLE/treewide: Convert trivial ACCESS_ONCE() patterns to READ_ONCE()/WRITE_ONCE()
Please do not apply this to mainline directly, instead please re-run the
coccinelle script shown below and apply its output.
For several reasons, it is desirable to use {READ,WRITE}_ONCE() in
preference to ACCESS_ONCE(), and new code is expected to use one of the
former. So far, there's been no reason to change most existing uses of
ACCESS_ONCE(), as these aren't harmful, and changing them results in
churn.
However, for some features, the read/write distinction is critical to
correct operation. To distinguish these cases, separate read/write
accessors must be used. This patch migrates (most) remaining
ACCESS_ONCE() instances to {READ,WRITE}_ONCE(), using the following
coccinelle script:
----
// Convert trivial ACCESS_ONCE() uses to equivalent READ_ONCE() and
// WRITE_ONCE()
// $ make coccicheck COCCI=/home/mark/once.cocci SPFLAGS="--include-headers" MODE=patch
virtual patch
@ depends on patch @
expression E1, E2;
@@
- ACCESS_ONCE(E1) = E2
+ WRITE_ONCE(E1, E2)
@ depends on patch @
expression E;
@@
- ACCESS_ONCE(E)
+ READ_ONCE(E)
----
Signed-off-by: Mark Rutland <mark.rutland@arm.com>
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: davem@davemloft.net
Cc: linux-arch@vger.kernel.org
Cc: mpe@ellerman.id.au
Cc: shuah@kernel.org
Cc: snitzer@redhat.com
Cc: thor.thayer@linux.intel.com
Cc: tj@kernel.org
Cc: viro@zeniv.linux.org.uk
Cc: will.deacon@arm.com
Link: http://lkml.kernel.org/r/1508792849-3115-19-git-send-email-paulmck@linux.vnet.ibm.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
2017-10-24 05:07:29 +08:00
|
|
|
uint64_t seq = READ_ONCE(ring->fence_drv.sync_seq);
|
2016-10-25 20:00:45 +08:00
|
|
|
struct dma_fence *fence, **ptr;
|
2016-03-14 02:37:01 +08:00
|
|
|
int r;
|
2015-08-07 22:15:36 +08:00
|
|
|
|
2015-07-30 18:28:12 +08:00
|
|
|
if (!seq)
|
2015-04-21 04:55:21 +08:00
|
|
|
return 0;
|
|
|
|
|
2016-03-14 02:37:01 +08:00
|
|
|
ptr = &ring->fence_drv.fences[seq & ring->fence_drv.num_fences_mask];
|
|
|
|
rcu_read_lock();
|
|
|
|
fence = rcu_dereference(*ptr);
|
2016-10-25 20:00:45 +08:00
|
|
|
if (!fence || !dma_fence_get_rcu(fence)) {
|
2016-03-14 02:37:01 +08:00
|
|
|
rcu_read_unlock();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
rcu_read_unlock();
|
|
|
|
|
2016-10-25 20:00:45 +08:00
|
|
|
r = dma_fence_wait(fence, false);
|
|
|
|
dma_fence_put(fence);
|
2016-03-14 02:37:01 +08:00
|
|
|
return r;
|
2015-04-21 04:55:21 +08:00
|
|
|
}
|
|
|
|
|
2017-10-13 15:38:35 +08:00
|
|
|
/**
|
|
|
|
* amdgpu_fence_wait_polling - busy wait for givn sequence number
|
|
|
|
*
|
|
|
|
* @ring: ring index the fence is associated with
|
|
|
|
* @wait_seq: sequence number to wait
|
|
|
|
* @timeout: the timeout for waiting in usecs
|
|
|
|
*
|
|
|
|
* Wait for all fences on the requested ring to signal (all asics).
|
|
|
|
* Returns left time if no timeout, 0 or minus if timeout.
|
|
|
|
*/
|
|
|
|
signed long amdgpu_fence_wait_polling(struct amdgpu_ring *ring,
|
|
|
|
uint32_t wait_seq,
|
|
|
|
signed long timeout)
|
|
|
|
{
|
|
|
|
uint32_t seq;
|
|
|
|
|
|
|
|
do {
|
|
|
|
seq = amdgpu_fence_read(ring);
|
|
|
|
udelay(5);
|
|
|
|
timeout -= 5;
|
|
|
|
} while ((int32_t)(wait_seq - seq) > 0 && timeout > 0);
|
|
|
|
|
|
|
|
return timeout > 0 ? timeout : 0;
|
|
|
|
}
|
2015-04-21 04:55:21 +08:00
|
|
|
/**
|
|
|
|
* amdgpu_fence_count_emitted - get the count of emitted fences
|
|
|
|
*
|
|
|
|
* @ring: ring the fence is associated with
|
|
|
|
*
|
|
|
|
* Get the number of fences emitted on the requested ring (all asics).
|
|
|
|
* Returns the number of emitted fences on the ring. Used by the
|
|
|
|
* dynpm code to ring track activity.
|
|
|
|
*/
|
|
|
|
unsigned amdgpu_fence_count_emitted(struct amdgpu_ring *ring)
|
|
|
|
{
|
|
|
|
uint64_t emitted;
|
|
|
|
|
|
|
|
/* We are not protected by ring lock when reading the last sequence
|
|
|
|
* but it's ok to report slightly wrong fence count here.
|
|
|
|
*/
|
|
|
|
amdgpu_fence_process(ring);
|
2016-03-14 22:46:06 +08:00
|
|
|
emitted = 0x100000000ull;
|
|
|
|
emitted -= atomic_read(&ring->fence_drv.last_seq);
|
locking/atomics: COCCINELLE/treewide: Convert trivial ACCESS_ONCE() patterns to READ_ONCE()/WRITE_ONCE()
Please do not apply this to mainline directly, instead please re-run the
coccinelle script shown below and apply its output.
For several reasons, it is desirable to use {READ,WRITE}_ONCE() in
preference to ACCESS_ONCE(), and new code is expected to use one of the
former. So far, there's been no reason to change most existing uses of
ACCESS_ONCE(), as these aren't harmful, and changing them results in
churn.
However, for some features, the read/write distinction is critical to
correct operation. To distinguish these cases, separate read/write
accessors must be used. This patch migrates (most) remaining
ACCESS_ONCE() instances to {READ,WRITE}_ONCE(), using the following
coccinelle script:
----
// Convert trivial ACCESS_ONCE() uses to equivalent READ_ONCE() and
// WRITE_ONCE()
// $ make coccicheck COCCI=/home/mark/once.cocci SPFLAGS="--include-headers" MODE=patch
virtual patch
@ depends on patch @
expression E1, E2;
@@
- ACCESS_ONCE(E1) = E2
+ WRITE_ONCE(E1, E2)
@ depends on patch @
expression E;
@@
- ACCESS_ONCE(E)
+ READ_ONCE(E)
----
Signed-off-by: Mark Rutland <mark.rutland@arm.com>
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: davem@davemloft.net
Cc: linux-arch@vger.kernel.org
Cc: mpe@ellerman.id.au
Cc: shuah@kernel.org
Cc: snitzer@redhat.com
Cc: thor.thayer@linux.intel.com
Cc: tj@kernel.org
Cc: viro@zeniv.linux.org.uk
Cc: will.deacon@arm.com
Link: http://lkml.kernel.org/r/1508792849-3115-19-git-send-email-paulmck@linux.vnet.ibm.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
2017-10-24 05:07:29 +08:00
|
|
|
emitted += READ_ONCE(ring->fence_drv.sync_seq);
|
2016-03-14 22:46:06 +08:00
|
|
|
return lower_32_bits(emitted);
|
2015-04-21 04:55:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* amdgpu_fence_driver_start_ring - make the fence driver
|
|
|
|
* ready for use on the requested ring.
|
|
|
|
*
|
|
|
|
* @ring: ring to start the fence driver on
|
|
|
|
* @irq_src: interrupt source to use for this ring
|
|
|
|
* @irq_type: interrupt type to use for this ring
|
|
|
|
*
|
|
|
|
* Make the fence driver ready for processing (all asics).
|
|
|
|
* Not all asics have all rings, so each asic will only
|
|
|
|
* start the fence driver on the rings it has.
|
|
|
|
* Returns 0 for success, errors for failure.
|
|
|
|
*/
|
|
|
|
int amdgpu_fence_driver_start_ring(struct amdgpu_ring *ring,
|
|
|
|
struct amdgpu_irq_src *irq_src,
|
|
|
|
unsigned irq_type)
|
|
|
|
{
|
|
|
|
struct amdgpu_device *adev = ring->adev;
|
|
|
|
uint64_t index;
|
|
|
|
|
2018-06-26 02:56:06 +08:00
|
|
|
if (ring->funcs->type != AMDGPU_RING_TYPE_UVD) {
|
2015-04-21 04:55:21 +08:00
|
|
|
ring->fence_drv.cpu_addr = &adev->wb.wb[ring->fence_offs];
|
|
|
|
ring->fence_drv.gpu_addr = adev->wb.gpu_addr + (ring->fence_offs * 4);
|
|
|
|
} else {
|
|
|
|
/* put fence directly behind firmware */
|
|
|
|
index = ALIGN(adev->uvd.fw->size, 8);
|
2018-05-16 03:31:24 +08:00
|
|
|
ring->fence_drv.cpu_addr = adev->uvd.inst[ring->me].cpu_addr + index;
|
|
|
|
ring->fence_drv.gpu_addr = adev->uvd.inst[ring->me].gpu_addr + index;
|
2015-04-21 04:55:21 +08:00
|
|
|
}
|
2016-03-14 22:46:06 +08:00
|
|
|
amdgpu_fence_write(ring, atomic_read(&ring->fence_drv.last_seq));
|
2019-06-05 16:30:13 +08:00
|
|
|
|
|
|
|
if (irq_src)
|
|
|
|
amdgpu_irq_get(adev, irq_src, irq_type);
|
2015-06-01 14:14:32 +08:00
|
|
|
|
2015-04-21 04:55:21 +08:00
|
|
|
ring->fence_drv.irq_src = irq_src;
|
|
|
|
ring->fence_drv.irq_type = irq_type;
|
2015-06-01 14:14:32 +08:00
|
|
|
ring->fence_drv.initialized = true;
|
|
|
|
|
2018-10-30 20:16:28 +08:00
|
|
|
DRM_DEV_DEBUG(adev->dev, "fence driver on ring %s use gpu addr "
|
|
|
|
"0x%016llx, cpu addr 0x%p\n", ring->name,
|
|
|
|
ring->fence_drv.gpu_addr, ring->fence_drv.cpu_addr);
|
2015-04-21 04:55:21 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* amdgpu_fence_driver_init_ring - init the fence driver
|
|
|
|
* for the requested ring.
|
|
|
|
*
|
|
|
|
* @ring: ring to init the fence driver on
|
2016-03-15 21:52:26 +08:00
|
|
|
* @num_hw_submission: number of entries on the hardware queue
|
2015-04-21 04:55:21 +08:00
|
|
|
*
|
|
|
|
* Init the fence driver for the requested ring (all asics).
|
|
|
|
* Helper function for amdgpu_fence_driver_init().
|
|
|
|
*/
|
2016-03-15 21:52:26 +08:00
|
|
|
int amdgpu_fence_driver_init_ring(struct amdgpu_ring *ring,
|
|
|
|
unsigned num_hw_submission)
|
2015-04-21 04:55:21 +08:00
|
|
|
{
|
2019-04-29 16:51:17 +08:00
|
|
|
struct amdgpu_device *adev = ring->adev;
|
2018-03-27 09:53:15 +08:00
|
|
|
long timeout;
|
2016-01-18 22:16:53 +08:00
|
|
|
int r;
|
2015-04-21 04:55:21 +08:00
|
|
|
|
2019-04-29 16:51:17 +08:00
|
|
|
if (!adev)
|
|
|
|
return -EINVAL;
|
|
|
|
|
2016-03-15 21:52:26 +08:00
|
|
|
/* Check that num_hw_submission is a power of two */
|
|
|
|
if ((num_hw_submission & (num_hw_submission - 1)) != 0)
|
|
|
|
return -EINVAL;
|
|
|
|
|
2015-04-21 04:55:21 +08:00
|
|
|
ring->fence_drv.cpu_addr = NULL;
|
|
|
|
ring->fence_drv.gpu_addr = 0;
|
2016-01-18 22:16:53 +08:00
|
|
|
ring->fence_drv.sync_seq = 0;
|
2016-03-14 22:46:06 +08:00
|
|
|
atomic_set(&ring->fence_drv.last_seq, 0);
|
2015-04-21 04:55:21 +08:00
|
|
|
ring->fence_drv.initialized = false;
|
|
|
|
|
2018-09-22 02:48:50 +08:00
|
|
|
timer_setup(&ring->fence_drv.fallback_timer, amdgpu_fence_fallback, 0);
|
|
|
|
|
2016-04-14 10:27:28 +08:00
|
|
|
ring->fence_drv.num_fences_mask = num_hw_submission * 2 - 1;
|
2016-03-14 21:29:46 +08:00
|
|
|
spin_lock_init(&ring->fence_drv.lock);
|
2016-04-14 10:27:28 +08:00
|
|
|
ring->fence_drv.fences = kcalloc(num_hw_submission * 2, sizeof(void *),
|
2016-03-14 02:19:48 +08:00
|
|
|
GFP_KERNEL);
|
|
|
|
if (!ring->fence_drv.fences)
|
|
|
|
return -ENOMEM;
|
2015-09-08 00:43:02 +08:00
|
|
|
|
2020-06-03 02:51:36 +08:00
|
|
|
/* No need to setup the GPU scheduler for rings that don't need it */
|
|
|
|
if (!ring->no_scheduler) {
|
2019-04-29 16:51:17 +08:00
|
|
|
switch (ring->funcs->type) {
|
|
|
|
case AMDGPU_RING_TYPE_GFX:
|
|
|
|
timeout = adev->gfx_timeout;
|
|
|
|
break;
|
|
|
|
case AMDGPU_RING_TYPE_COMPUTE:
|
2019-07-30 19:15:42 +08:00
|
|
|
timeout = adev->compute_timeout;
|
2019-04-29 16:51:17 +08:00
|
|
|
break;
|
|
|
|
case AMDGPU_RING_TYPE_SDMA:
|
|
|
|
timeout = adev->sdma_timeout;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
timeout = adev->video_timeout;
|
|
|
|
break;
|
|
|
|
}
|
2018-03-27 09:53:15 +08:00
|
|
|
|
2017-12-07 00:49:39 +08:00
|
|
|
r = drm_sched_init(&ring->sched, &amdgpu_sched_ops,
|
2017-10-17 13:40:54 +08:00
|
|
|
num_hw_submission, amdgpu_job_hang_limit,
|
2018-03-27 09:53:15 +08:00
|
|
|
timeout, ring->name);
|
2016-11-02 17:43:44 +08:00
|
|
|
if (r) {
|
|
|
|
DRM_ERROR("Failed to create scheduler on ring %s.\n",
|
|
|
|
ring->name);
|
|
|
|
return r;
|
|
|
|
}
|
2015-08-17 10:55:02 +08:00
|
|
|
}
|
2015-09-09 02:22:31 +08:00
|
|
|
|
|
|
|
return 0;
|
2015-04-21 04:55:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* amdgpu_fence_driver_init - init the fence driver
|
|
|
|
* for all possible rings.
|
|
|
|
*
|
|
|
|
* @adev: amdgpu device pointer
|
|
|
|
*
|
|
|
|
* Init the fence driver for all possible rings (all asics).
|
|
|
|
* Not all asics have all rings, so each asic will only
|
|
|
|
* start the fence driver on the rings it has using
|
|
|
|
* amdgpu_fence_driver_start_ring().
|
|
|
|
* Returns 0 for success.
|
|
|
|
*/
|
|
|
|
int amdgpu_fence_driver_init(struct amdgpu_device *adev)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* amdgpu_fence_driver_fini - tear down the fence driver
|
|
|
|
* for all possible rings.
|
|
|
|
*
|
|
|
|
* @adev: amdgpu device pointer
|
|
|
|
*
|
|
|
|
* Tear down the fence driver for all possible rings (all asics).
|
|
|
|
*/
|
|
|
|
void amdgpu_fence_driver_fini(struct amdgpu_device *adev)
|
|
|
|
{
|
2016-03-14 02:19:48 +08:00
|
|
|
unsigned i, j;
|
|
|
|
int r;
|
2015-04-21 04:55:21 +08:00
|
|
|
|
|
|
|
for (i = 0; i < AMDGPU_MAX_RINGS; i++) {
|
|
|
|
struct amdgpu_ring *ring = adev->rings[i];
|
2015-11-03 20:27:39 +08:00
|
|
|
|
2015-04-21 04:55:21 +08:00
|
|
|
if (!ring || !ring->fence_drv.initialized)
|
|
|
|
continue;
|
|
|
|
r = amdgpu_fence_wait_empty(ring);
|
|
|
|
if (r) {
|
|
|
|
/* no need to trigger GPU reset as we are unloading */
|
2017-10-16 14:38:10 +08:00
|
|
|
amdgpu_fence_driver_force_completion(ring);
|
2015-04-21 04:55:21 +08:00
|
|
|
}
|
2019-06-05 16:30:13 +08:00
|
|
|
if (ring->fence_drv.irq_src)
|
|
|
|
amdgpu_irq_put(adev, ring->fence_drv.irq_src,
|
|
|
|
ring->fence_drv.irq_type);
|
2020-06-03 02:51:36 +08:00
|
|
|
if (!ring->no_scheduler)
|
|
|
|
drm_sched_fini(&ring->sched);
|
2018-09-22 02:48:50 +08:00
|
|
|
del_timer_sync(&ring->fence_drv.fallback_timer);
|
2016-03-14 02:19:48 +08:00
|
|
|
for (j = 0; j <= ring->fence_drv.num_fences_mask; ++j)
|
2016-10-25 20:00:45 +08:00
|
|
|
dma_fence_put(ring->fence_drv.fences[j]);
|
2016-03-14 02:19:48 +08:00
|
|
|
kfree(ring->fence_drv.fences);
|
2016-09-26 04:34:46 +08:00
|
|
|
ring->fence_drv.fences = NULL;
|
2015-04-21 04:55:21 +08:00
|
|
|
ring->fence_drv.initialized = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-06 00:41:48 +08:00
|
|
|
/**
|
|
|
|
* amdgpu_fence_driver_suspend - suspend the fence driver
|
|
|
|
* for all possible rings.
|
|
|
|
*
|
|
|
|
* @adev: amdgpu device pointer
|
|
|
|
*
|
|
|
|
* Suspend the fence driver for all possible rings (all asics).
|
|
|
|
*/
|
|
|
|
void amdgpu_fence_driver_suspend(struct amdgpu_device *adev)
|
|
|
|
{
|
|
|
|
int i, r;
|
|
|
|
|
|
|
|
for (i = 0; i < AMDGPU_MAX_RINGS; i++) {
|
|
|
|
struct amdgpu_ring *ring = adev->rings[i];
|
|
|
|
if (!ring || !ring->fence_drv.initialized)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* wait for gpu to finish processing current batch */
|
|
|
|
r = amdgpu_fence_wait_empty(ring);
|
|
|
|
if (r) {
|
|
|
|
/* delay GPU reset to resume */
|
2017-10-16 14:38:10 +08:00
|
|
|
amdgpu_fence_driver_force_completion(ring);
|
2015-08-06 00:41:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* disable the interrupt */
|
2019-06-05 16:30:13 +08:00
|
|
|
if (ring->fence_drv.irq_src)
|
|
|
|
amdgpu_irq_put(adev, ring->fence_drv.irq_src,
|
|
|
|
ring->fence_drv.irq_type);
|
2015-08-06 00:41:48 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* amdgpu_fence_driver_resume - resume the fence driver
|
|
|
|
* for all possible rings.
|
|
|
|
*
|
|
|
|
* @adev: amdgpu device pointer
|
|
|
|
*
|
|
|
|
* Resume the fence driver for all possible rings (all asics).
|
|
|
|
* Not all asics have all rings, so each asic will only
|
|
|
|
* start the fence driver on the rings it has using
|
|
|
|
* amdgpu_fence_driver_start_ring().
|
|
|
|
* Returns 0 for success.
|
|
|
|
*/
|
|
|
|
void amdgpu_fence_driver_resume(struct amdgpu_device *adev)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < AMDGPU_MAX_RINGS; i++) {
|
|
|
|
struct amdgpu_ring *ring = adev->rings[i];
|
|
|
|
if (!ring || !ring->fence_drv.initialized)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* enable the interrupt */
|
2019-06-05 16:30:13 +08:00
|
|
|
if (ring->fence_drv.irq_src)
|
|
|
|
amdgpu_irq_get(adev, ring->fence_drv.irq_src,
|
|
|
|
ring->fence_drv.irq_type);
|
2015-08-06 00:41:48 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-21 04:55:21 +08:00
|
|
|
/**
|
2017-10-16 14:38:10 +08:00
|
|
|
* amdgpu_fence_driver_force_completion - force signal latest fence of ring
|
2015-04-21 04:55:21 +08:00
|
|
|
*
|
2017-10-16 14:38:10 +08:00
|
|
|
* @ring: fence of the ring to signal
|
2015-04-21 04:55:21 +08:00
|
|
|
*
|
|
|
|
*/
|
2017-10-16 14:38:10 +08:00
|
|
|
void amdgpu_fence_driver_force_completion(struct amdgpu_ring *ring)
|
2015-04-21 04:55:21 +08:00
|
|
|
{
|
2017-10-16 14:38:10 +08:00
|
|
|
amdgpu_fence_write(ring, ring->fence_drv.sync_seq);
|
|
|
|
amdgpu_fence_process(ring);
|
drm/amdgpu/SRIOV:implement guilty job TDR for(V2)
1,TDR will kickout guilty job if it hang exceed the threshold
of the given one from kernel paramter "job_hang_limit", that
way a bad command stream will not infinitly cause GPU hang.
by default this threshold is 1 so a job will be kicked out
after it hang.
2,if a job timeout TDR routine will not reset all sched/ring,
instead if will only reset on the givn one which is indicated
by @job of amdgpu_sriov_gpu_reset, that way we don't need to
reset and recover each sched/ring if we already know which job
cause GPU hang.
3,unblock sriov_gpu_reset for AI family.
V2:
1:put kickout guilty job after sched parked.
2:since parking scheduler prior to kickout already occupies a
while, we can do last check on the in question job before
doing hw_reset.
TODO:
1:when a job is considered as guilty, we should mark some flag
in its fence status flag, and let UMD side aware that this
fence signaling is not due to job complete but job hang.
2:if gpu reset cause all video memory lost, we need introduce
a new policy to implement TDR, like drop all jobs not yet
signaled, and all IOCTL on this device will return ERROR
DEVICE_LOST.
this will be implemented later.
Signed-off-by: Monk Liu <Monk.Liu@amd.com>
Reviewed-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
2017-05-11 13:36:44 +08:00
|
|
|
}
|
|
|
|
|
2015-11-03 19:21:57 +08:00
|
|
|
/*
|
|
|
|
* Common fence implementation
|
|
|
|
*/
|
|
|
|
|
2016-10-25 20:00:45 +08:00
|
|
|
static const char *amdgpu_fence_get_driver_name(struct dma_fence *fence)
|
2015-11-03 19:21:57 +08:00
|
|
|
{
|
|
|
|
return "amdgpu";
|
|
|
|
}
|
|
|
|
|
2016-10-25 20:00:45 +08:00
|
|
|
static const char *amdgpu_fence_get_timeline_name(struct dma_fence *f)
|
2015-11-03 19:21:57 +08:00
|
|
|
{
|
|
|
|
struct amdgpu_fence *fence = to_amdgpu_fence(f);
|
|
|
|
return (const char *)fence->ring->name;
|
|
|
|
}
|
|
|
|
|
2018-09-22 02:48:50 +08:00
|
|
|
/**
|
|
|
|
* amdgpu_fence_enable_signaling - enable signalling on fence
|
|
|
|
* @fence: fence
|
|
|
|
*
|
|
|
|
* This function is called with fence_queue lock held, and adds a callback
|
|
|
|
* to fence_queue that checks if this fence is signaled, and if so it
|
|
|
|
* signals the fence and removes itself.
|
|
|
|
*/
|
|
|
|
static bool amdgpu_fence_enable_signaling(struct dma_fence *f)
|
|
|
|
{
|
|
|
|
struct amdgpu_fence *fence = to_amdgpu_fence(f);
|
|
|
|
struct amdgpu_ring *ring = fence->ring;
|
|
|
|
|
|
|
|
if (!timer_pending(&ring->fence_drv.fallback_timer))
|
|
|
|
amdgpu_fence_schedule_fallback(ring);
|
|
|
|
|
|
|
|
DMA_FENCE_TRACE(&fence->base, "armed on ring %i!\n", ring->idx);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-03-15 20:40:17 +08:00
|
|
|
/**
|
|
|
|
* amdgpu_fence_free - free up the fence memory
|
|
|
|
*
|
|
|
|
* @rcu: RCU callback head
|
|
|
|
*
|
|
|
|
* Free up the fence memory after the RCU grace period.
|
|
|
|
*/
|
|
|
|
static void amdgpu_fence_free(struct rcu_head *rcu)
|
2015-11-05 11:28:28 +08:00
|
|
|
{
|
2016-10-25 20:00:45 +08:00
|
|
|
struct dma_fence *f = container_of(rcu, struct dma_fence, rcu);
|
2015-11-05 11:28:28 +08:00
|
|
|
struct amdgpu_fence *fence = to_amdgpu_fence(f);
|
|
|
|
kmem_cache_free(amdgpu_fence_slab, fence);
|
|
|
|
}
|
|
|
|
|
2016-03-15 20:40:17 +08:00
|
|
|
/**
|
|
|
|
* amdgpu_fence_release - callback that fence can be freed
|
|
|
|
*
|
|
|
|
* @fence: fence
|
|
|
|
*
|
|
|
|
* This function is called when the reference count becomes zero.
|
|
|
|
* It just RCU schedules freeing up the fence.
|
|
|
|
*/
|
2016-10-25 20:00:45 +08:00
|
|
|
static void amdgpu_fence_release(struct dma_fence *f)
|
2016-03-15 20:40:17 +08:00
|
|
|
{
|
|
|
|
call_rcu(&f->rcu, amdgpu_fence_free);
|
|
|
|
}
|
|
|
|
|
2016-10-25 20:00:45 +08:00
|
|
|
static const struct dma_fence_ops amdgpu_fence_ops = {
|
2015-11-03 19:21:57 +08:00
|
|
|
.get_driver_name = amdgpu_fence_get_driver_name,
|
|
|
|
.get_timeline_name = amdgpu_fence_get_timeline_name,
|
2018-09-22 02:48:50 +08:00
|
|
|
.enable_signaling = amdgpu_fence_enable_signaling,
|
2015-11-05 11:28:28 +08:00
|
|
|
.release = amdgpu_fence_release,
|
2015-11-03 19:21:57 +08:00
|
|
|
};
|
2015-04-21 04:55:21 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Fence debugfs
|
|
|
|
*/
|
|
|
|
#if defined(CONFIG_DEBUG_FS)
|
|
|
|
static int amdgpu_debugfs_fence_info(struct seq_file *m, void *data)
|
|
|
|
{
|
|
|
|
struct drm_info_node *node = (struct drm_info_node *)m->private;
|
|
|
|
struct drm_device *dev = node->minor->dev;
|
|
|
|
struct amdgpu_device *adev = dev->dev_private;
|
2016-01-18 22:16:53 +08:00
|
|
|
int i;
|
2015-04-21 04:55:21 +08:00
|
|
|
|
|
|
|
for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
|
|
|
|
struct amdgpu_ring *ring = adev->rings[i];
|
|
|
|
if (!ring || !ring->fence_drv.initialized)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
amdgpu_fence_process(ring);
|
|
|
|
|
2015-06-02 21:47:16 +08:00
|
|
|
seq_printf(m, "--- ring %d (%s) ---\n", i, ring->name);
|
2019-01-10 14:28:08 +08:00
|
|
|
seq_printf(m, "Last signaled fence 0x%08x\n",
|
2016-03-14 22:46:06 +08:00
|
|
|
atomic_read(&ring->fence_drv.last_seq));
|
2019-01-10 14:28:08 +08:00
|
|
|
seq_printf(m, "Last emitted 0x%08x\n",
|
2016-01-18 22:16:53 +08:00
|
|
|
ring->fence_drv.sync_seq);
|
2017-10-12 13:53:20 +08:00
|
|
|
|
2019-01-10 14:28:08 +08:00
|
|
|
if (ring->funcs->type == AMDGPU_RING_TYPE_GFX ||
|
|
|
|
ring->funcs->type == AMDGPU_RING_TYPE_SDMA) {
|
|
|
|
seq_printf(m, "Last signaled trailing fence 0x%08x\n",
|
|
|
|
le32_to_cpu(*ring->trail_fence_cpu_addr));
|
|
|
|
seq_printf(m, "Last emitted 0x%08x\n",
|
|
|
|
ring->trail_seq);
|
|
|
|
}
|
|
|
|
|
2017-10-12 13:53:20 +08:00
|
|
|
if (ring->funcs->type != AMDGPU_RING_TYPE_GFX)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* set in CP_VMID_PREEMPT and preemption occurred */
|
2019-01-10 14:28:08 +08:00
|
|
|
seq_printf(m, "Last preempted 0x%08x\n",
|
2017-10-12 13:53:20 +08:00
|
|
|
le32_to_cpu(*(ring->fence_drv.cpu_addr + 2)));
|
|
|
|
/* set in CP_VMID_RESET and reset occurred */
|
2019-01-10 14:28:08 +08:00
|
|
|
seq_printf(m, "Last reset 0x%08x\n",
|
2017-10-12 13:53:20 +08:00
|
|
|
le32_to_cpu(*(ring->fence_drv.cpu_addr + 4)));
|
|
|
|
/* Both preemption and reset occurred */
|
2019-01-10 14:28:08 +08:00
|
|
|
seq_printf(m, "Last both 0x%08x\n",
|
2017-10-12 13:53:20 +08:00
|
|
|
le32_to_cpu(*(ring->fence_drv.cpu_addr + 6)));
|
2015-04-21 04:55:21 +08:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-01-14 23:25:22 +08:00
|
|
|
/**
|
2017-10-25 16:37:02 +08:00
|
|
|
* amdgpu_debugfs_gpu_recover - manually trigger a gpu reset & recover
|
2016-01-14 23:25:22 +08:00
|
|
|
*
|
|
|
|
* Manually trigger a gpu reset at the next fence wait.
|
|
|
|
*/
|
2017-10-25 16:37:02 +08:00
|
|
|
static int amdgpu_debugfs_gpu_recover(struct seq_file *m, void *data)
|
2016-01-14 23:25:22 +08:00
|
|
|
{
|
|
|
|
struct drm_info_node *node = (struct drm_info_node *) m->private;
|
|
|
|
struct drm_device *dev = node->minor->dev;
|
|
|
|
struct amdgpu_device *adev = dev->dev_private;
|
2020-01-11 04:58:52 +08:00
|
|
|
int r;
|
|
|
|
|
|
|
|
r = pm_runtime_get_sync(dev->dev);
|
|
|
|
if (r < 0)
|
|
|
|
return 0;
|
2016-01-14 23:25:22 +08:00
|
|
|
|
2017-10-25 16:37:02 +08:00
|
|
|
seq_printf(m, "gpu recover\n");
|
2018-08-21 16:45:29 +08:00
|
|
|
amdgpu_device_gpu_recover(adev, NULL);
|
2016-01-14 23:25:22 +08:00
|
|
|
|
2020-01-11 04:58:52 +08:00
|
|
|
pm_runtime_mark_last_busy(dev->dev);
|
|
|
|
pm_runtime_put_autosuspend(dev->dev);
|
|
|
|
|
2016-01-14 23:25:22 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-05-03 00:46:15 +08:00
|
|
|
static const struct drm_info_list amdgpu_debugfs_fence_list[] = {
|
2015-04-21 04:55:21 +08:00
|
|
|
{"amdgpu_fence_info", &amdgpu_debugfs_fence_info, 0, NULL},
|
2017-10-25 16:37:02 +08:00
|
|
|
{"amdgpu_gpu_recover", &amdgpu_debugfs_gpu_recover, 0, NULL}
|
2015-04-21 04:55:21 +08:00
|
|
|
};
|
2017-05-05 15:09:42 +08:00
|
|
|
|
|
|
|
static const struct drm_info_list amdgpu_debugfs_fence_list_sriov[] = {
|
|
|
|
{"amdgpu_fence_info", &amdgpu_debugfs_fence_info, 0, NULL},
|
|
|
|
};
|
2015-04-21 04:55:21 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
int amdgpu_debugfs_fence_init(struct amdgpu_device *adev)
|
|
|
|
{
|
|
|
|
#if defined(CONFIG_DEBUG_FS)
|
2017-05-05 15:09:42 +08:00
|
|
|
if (amdgpu_sriov_vf(adev))
|
|
|
|
return amdgpu_debugfs_add_files(adev, amdgpu_debugfs_fence_list_sriov, 1);
|
2016-01-14 23:25:22 +08:00
|
|
|
return amdgpu_debugfs_add_files(adev, amdgpu_debugfs_fence_list, 2);
|
2015-04-21 04:55:21 +08:00
|
|
|
#else
|
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|