summaryrefslogtreecommitdiff
path: root/drivers/gpu
diff options
context:
space:
mode:
authorChunming Zhou <david1.zhou@amd.com>2015-07-21 15:13:53 +0800
committerAlex Deucher <alexander.deucher@amd.com>2015-08-17 16:50:35 -0400
commitb43a9a7e87d2bbb8d0c6ae4ff06dcc604f00e31a (patch)
treec6ba7b019408e5fb541a26e852cecbd38f73f0a2 /drivers/gpu
parent049fc527b4641f99e573b26f1a726a3eadd0cc25 (diff)
drm/amdgpu: use scheduler user seq instead of previous user seq
Signed-off-by: Chunming Zhou <david1.zhou@amd.com> Acked-by: Christian K?nig <christian.koenig@amd.com> Reviewed-by: Jammy Zhou <Jammy.Zhou@amd.com>
Diffstat (limited to 'drivers/gpu')
-rw-r--r--drivers/gpu/drm/amd/amdgpu/amdgpu_ctx.c26
1 files changed, 20 insertions, 6 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ctx.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_ctx.c
index 557fb60f416b..b9be250cb206 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_ctx.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_ctx.c
@@ -225,10 +225,16 @@ uint64_t amdgpu_ctx_add_fence(struct amdgpu_ctx *ctx, struct amdgpu_ring *ring,
struct fence *fence)
{
struct amdgpu_ctx_ring *cring = & ctx->rings[ring->idx];
- uint64_t seq = cring->sequence;
- unsigned idx = seq % AMDGPU_CTX_MAX_CS_PENDING;
- struct fence *other = cring->fences[idx];
+ uint64_t seq = 0;
+ unsigned idx = 0;
+ struct fence *other = NULL;
+ if (amdgpu_enable_scheduler)
+ seq = atomic64_read(&cring->c_entity.last_queued_v_seq);
+ else
+ seq = cring->sequence;
+ idx = seq % AMDGPU_CTX_MAX_CS_PENDING;
+ other = cring->fences[idx];
if (other) {
signed long r;
r = fence_wait_timeout(other, false, MAX_SCHEDULE_TIMEOUT);
@@ -240,7 +246,8 @@ uint64_t amdgpu_ctx_add_fence(struct amdgpu_ctx *ctx, struct amdgpu_ring *ring,
spin_lock(&ctx->ring_lock);
cring->fences[idx] = fence;
- cring->sequence++;
+ if (!amdgpu_enable_scheduler)
+ cring->sequence++;
spin_unlock(&ctx->ring_lock);
fence_put(other);
@@ -253,14 +260,21 @@ struct fence *amdgpu_ctx_get_fence(struct amdgpu_ctx *ctx,
{
struct amdgpu_ctx_ring *cring = & ctx->rings[ring->idx];
struct fence *fence;
+ uint64_t queued_seq;
spin_lock(&ctx->ring_lock);
- if (seq >= cring->sequence) {
+ if (amdgpu_enable_scheduler)
+ queued_seq = atomic64_read(&cring->c_entity.last_queued_v_seq) + 1;
+ else
+ queued_seq = cring->sequence;
+
+ if (seq >= queued_seq) {
spin_unlock(&ctx->ring_lock);
return ERR_PTR(-EINVAL);
}
- if (seq + AMDGPU_CTX_MAX_CS_PENDING < cring->sequence) {
+
+ if (seq + AMDGPU_CTX_MAX_CS_PENDING < queued_seq) {
spin_unlock(&ctx->ring_lock);
return NULL;
}