2 * Copyright 2015 Advanced Micro Devices, Inc.
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
28 static int amdgpu_ctx_init(struct amdgpu_device *adev, struct amdgpu_ctx *ctx)
33 memset(ctx, 0, sizeof(*ctx));
35 kref_init(&ctx->refcount);
36 spin_lock_init(&ctx->ring_lock);
37 ctx->fences = kcalloc(amdgpu_sched_jobs * AMDGPU_MAX_RINGS,
38 sizeof(struct dma_fence*), GFP_KERNEL);
42 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
43 ctx->rings[i].sequence = 1;
44 ctx->rings[i].fences = &ctx->fences[amdgpu_sched_jobs * i];
47 ctx->reset_counter = atomic_read(&adev->gpu_reset_counter);
49 /* create context entity for each ring */
50 for (i = 0; i < adev->num_rings; i++) {
51 struct amdgpu_ring *ring = adev->rings[i];
52 struct amd_sched_rq *rq;
54 rq = &ring->sched.sched_rq[AMD_SCHED_PRIORITY_NORMAL];
55 r = amd_sched_entity_init(&ring->sched, &ctx->rings[i].entity,
56 rq, amdgpu_sched_jobs);
64 for (j = 0; j < i; j++)
65 amd_sched_entity_fini(&adev->rings[j]->sched,
66 &ctx->rings[j].entity);
72 static void amdgpu_ctx_fini(struct amdgpu_ctx *ctx)
74 struct amdgpu_device *adev = ctx->adev;
80 for (i = 0; i < AMDGPU_MAX_RINGS; ++i)
81 for (j = 0; j < amdgpu_sched_jobs; ++j)
82 dma_fence_put(ctx->rings[i].fences[j]);
86 for (i = 0; i < adev->num_rings; i++)
87 amd_sched_entity_fini(&adev->rings[i]->sched,
88 &ctx->rings[i].entity);
91 static int amdgpu_ctx_alloc(struct amdgpu_device *adev,
92 struct amdgpu_fpriv *fpriv,
95 struct amdgpu_ctx_mgr *mgr = &fpriv->ctx_mgr;
96 struct amdgpu_ctx *ctx;
99 ctx = kmalloc(sizeof(*ctx), GFP_KERNEL);
103 mutex_lock(&mgr->lock);
104 r = idr_alloc(&mgr->ctx_handles, ctx, 1, 0, GFP_KERNEL);
106 mutex_unlock(&mgr->lock);
111 r = amdgpu_ctx_init(adev, ctx);
113 idr_remove(&mgr->ctx_handles, *id);
117 mutex_unlock(&mgr->lock);
121 static void amdgpu_ctx_do_release(struct kref *ref)
123 struct amdgpu_ctx *ctx;
125 ctx = container_of(ref, struct amdgpu_ctx, refcount);
127 amdgpu_ctx_fini(ctx);
132 static int amdgpu_ctx_free(struct amdgpu_fpriv *fpriv, uint32_t id)
134 struct amdgpu_ctx_mgr *mgr = &fpriv->ctx_mgr;
135 struct amdgpu_ctx *ctx;
137 mutex_lock(&mgr->lock);
138 ctx = idr_remove(&mgr->ctx_handles, id);
140 kref_put(&ctx->refcount, amdgpu_ctx_do_release);
141 mutex_unlock(&mgr->lock);
142 return ctx ? 0 : -EINVAL;
145 static int amdgpu_ctx_query(struct amdgpu_device *adev,
146 struct amdgpu_fpriv *fpriv, uint32_t id,
147 union drm_amdgpu_ctx_out *out)
149 struct amdgpu_ctx *ctx;
150 struct amdgpu_ctx_mgr *mgr;
151 unsigned reset_counter;
156 mgr = &fpriv->ctx_mgr;
157 mutex_lock(&mgr->lock);
158 ctx = idr_find(&mgr->ctx_handles, id);
160 mutex_unlock(&mgr->lock);
164 /* TODO: these two are always zero */
165 out->state.flags = 0x0;
166 out->state.hangs = 0x0;
168 /* determine if a GPU reset has occured since the last call */
169 reset_counter = atomic_read(&adev->gpu_reset_counter);
170 /* TODO: this should ideally return NO, GUILTY, or INNOCENT. */
171 if (ctx->reset_counter == reset_counter)
172 out->state.reset_status = AMDGPU_CTX_NO_RESET;
174 out->state.reset_status = AMDGPU_CTX_UNKNOWN_RESET;
175 ctx->reset_counter = reset_counter;
177 mutex_unlock(&mgr->lock);
181 int amdgpu_ctx_ioctl(struct drm_device *dev, void *data,
182 struct drm_file *filp)
187 union drm_amdgpu_ctx *args = data;
188 struct amdgpu_device *adev = dev->dev_private;
189 struct amdgpu_fpriv *fpriv = filp->driver_priv;
192 id = args->in.ctx_id;
194 switch (args->in.op) {
195 case AMDGPU_CTX_OP_ALLOC_CTX:
196 r = amdgpu_ctx_alloc(adev, fpriv, &id);
197 args->out.alloc.ctx_id = id;
199 case AMDGPU_CTX_OP_FREE_CTX:
200 r = amdgpu_ctx_free(fpriv, id);
202 case AMDGPU_CTX_OP_QUERY_STATE:
203 r = amdgpu_ctx_query(adev, fpriv, id, &args->out);
212 struct amdgpu_ctx *amdgpu_ctx_get(struct amdgpu_fpriv *fpriv, uint32_t id)
214 struct amdgpu_ctx *ctx;
215 struct amdgpu_ctx_mgr *mgr;
220 mgr = &fpriv->ctx_mgr;
222 mutex_lock(&mgr->lock);
223 ctx = idr_find(&mgr->ctx_handles, id);
225 kref_get(&ctx->refcount);
226 mutex_unlock(&mgr->lock);
230 int amdgpu_ctx_put(struct amdgpu_ctx *ctx)
235 kref_put(&ctx->refcount, amdgpu_ctx_do_release);
239 uint64_t amdgpu_ctx_add_fence(struct amdgpu_ctx *ctx, struct amdgpu_ring *ring,
240 struct dma_fence *fence)
242 struct amdgpu_ctx_ring *cring = & ctx->rings[ring->idx];
243 uint64_t seq = cring->sequence;
245 struct dma_fence *other = NULL;
247 idx = seq & (amdgpu_sched_jobs - 1);
248 other = cring->fences[idx];
251 r = dma_fence_wait_timeout(other, false, MAX_SCHEDULE_TIMEOUT);
253 DRM_ERROR("Error (%ld) waiting for fence!\n", r);
256 dma_fence_get(fence);
258 spin_lock(&ctx->ring_lock);
259 cring->fences[idx] = fence;
261 spin_unlock(&ctx->ring_lock);
263 dma_fence_put(other);
268 struct dma_fence *amdgpu_ctx_get_fence(struct amdgpu_ctx *ctx,
269 struct amdgpu_ring *ring, uint64_t seq)
271 struct amdgpu_ctx_ring *cring = & ctx->rings[ring->idx];
272 struct dma_fence *fence;
274 spin_lock(&ctx->ring_lock);
276 if (seq >= cring->sequence) {
277 spin_unlock(&ctx->ring_lock);
278 return ERR_PTR(-EINVAL);
282 if (seq + amdgpu_sched_jobs < cring->sequence) {
283 spin_unlock(&ctx->ring_lock);
287 fence = dma_fence_get(cring->fences[seq & (amdgpu_sched_jobs - 1)]);
288 spin_unlock(&ctx->ring_lock);
293 void amdgpu_ctx_mgr_init(struct amdgpu_ctx_mgr *mgr)
295 mutex_init(&mgr->lock);
296 idr_init(&mgr->ctx_handles);
299 void amdgpu_ctx_mgr_fini(struct amdgpu_ctx_mgr *mgr)
301 struct amdgpu_ctx *ctx;
305 idp = &mgr->ctx_handles;
307 idr_for_each_entry(idp, ctx, id) {
308 if (kref_put(&ctx->refcount, amdgpu_ctx_do_release) != 1)
309 DRM_ERROR("ctx %p is still alive\n", ctx);
312 idr_destroy(&mgr->ctx_handles);
313 mutex_destroy(&mgr->lock);