diff options
author | Christian König <christian.koenig@amd.com> | 2016-02-16 11:39:39 -0500 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2016-03-08 11:01:48 -0500 |
commit | 364beb2cc45247e980a097e53d0932e143873333 (patch) | |
tree | 01aa4a62683d8d35a5c7908b1774e02bbb62dcf3 /drivers/gpu/drm/amd/amdgpu/amdgpu_fence.c | |
parent | 257bf15a4b9795f8b352beb6e72a7e3e5aab8d27 (diff) |
drm/amdgpu: return the common fence from amdgpu_fence_emit
Try to avoid using the hardware specific fences even more.
Signed-off-by: Christian König <christian.koenig@amd.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Reviewed-by: Chunming Zhou <david1.zhou@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_fence.c')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_fence.c | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_fence.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_fence.c index d94b13ac290f..83599f2a0387 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_fence.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_fence.c | |||
@@ -91,28 +91,29 @@ static u32 amdgpu_fence_read(struct amdgpu_ring *ring) | |||
91 | * amdgpu_fence_emit - emit a fence on the requested ring | 91 | * amdgpu_fence_emit - emit a fence on the requested ring |
92 | * | 92 | * |
93 | * @ring: ring the fence is associated with | 93 | * @ring: ring the fence is associated with |
94 | * @fence: amdgpu fence object | 94 | * @f: resulting fence object |
95 | * | 95 | * |
96 | * Emits a fence command on the requested ring (all asics). | 96 | * Emits a fence command on the requested ring (all asics). |
97 | * Returns 0 on success, -ENOMEM on failure. | 97 | * Returns 0 on success, -ENOMEM on failure. |
98 | */ | 98 | */ |
99 | int amdgpu_fence_emit(struct amdgpu_ring *ring, struct amdgpu_fence **fence) | 99 | int amdgpu_fence_emit(struct amdgpu_ring *ring, struct fence **f) |
100 | { | 100 | { |
101 | struct amdgpu_device *adev = ring->adev; | 101 | struct amdgpu_device *adev = ring->adev; |
102 | struct amdgpu_fence *fence; | ||
102 | 103 | ||
103 | *fence = kmem_cache_alloc(amdgpu_fence_slab, GFP_KERNEL); | 104 | fence = kmem_cache_alloc(amdgpu_fence_slab, GFP_KERNEL); |
104 | if ((*fence) == NULL) { | 105 | if (fence == NULL) |
105 | return -ENOMEM; | 106 | return -ENOMEM; |
106 | } | 107 | |
107 | (*fence)->seq = ++ring->fence_drv.sync_seq; | 108 | fence->seq = ++ring->fence_drv.sync_seq; |
108 | (*fence)->ring = ring; | 109 | fence->ring = ring; |
109 | fence_init(&(*fence)->base, &amdgpu_fence_ops, | 110 | fence_init(&fence->base, &amdgpu_fence_ops, |
110 | &ring->fence_drv.fence_queue.lock, | 111 | &ring->fence_drv.fence_queue.lock, |
111 | adev->fence_context + ring->idx, | 112 | adev->fence_context + ring->idx, |
112 | (*fence)->seq); | 113 | fence->seq); |
113 | amdgpu_ring_emit_fence(ring, ring->fence_drv.gpu_addr, | 114 | amdgpu_ring_emit_fence(ring, ring->fence_drv.gpu_addr, |
114 | (*fence)->seq, | 115 | fence->seq, AMDGPU_FENCE_FLAG_INT); |
115 | AMDGPU_FENCE_FLAG_INT); | 116 | *f = &fence->base; |
116 | return 0; | 117 | return 0; |
117 | } | 118 | } |
118 | 119 | ||