blob: 3b99282a3307b575278e472fd7d7f9416aabafc3 [file] [log] [blame]
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001/*
2 * Copyright 2015 Advanced Micro Devices, Inc.
3 *
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:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
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.
21 *
22 * Authors: monk liu <monk.liu@amd.com>
23 */
24
25#include <drm/drmP.h>
26#include "amdgpu.h"
27
Christian König20874172016-02-11 09:56:44 +010028static int amdgpu_ctx_init(struct amdgpu_device *adev, struct amdgpu_ctx *ctx)
Alex Deucherd38ceaf2015-04-20 16:55:21 -040029{
Christian König21c16bf2015-07-07 17:24:49 +020030 unsigned i, j;
Christian König47f38502015-08-04 17:51:05 +020031 int r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -040032
Alex Deucherd38ceaf2015-04-20 16:55:21 -040033 memset(ctx, 0, sizeof(*ctx));
Chunming Zhou9cb7e5a2015-07-21 13:17:19 +080034 ctx->adev = adev;
Alex Deucherd38ceaf2015-04-20 16:55:21 -040035 kref_init(&ctx->refcount);
Christian König21c16bf2015-07-07 17:24:49 +020036 spin_lock_init(&ctx->ring_lock);
Chunming Zhou37cd0ca2015-12-10 15:45:11 +080037 ctx->fences = kzalloc(sizeof(struct fence *) * amdgpu_sched_jobs *
38 AMDGPU_MAX_RINGS, GFP_KERNEL);
39 if (!ctx->fences)
40 return -ENOMEM;
Chunming Zhou23ca0e42015-07-06 13:42:58 +080041
Chunming Zhou37cd0ca2015-12-10 15:45:11 +080042 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
43 ctx->rings[i].sequence = 1;
44 ctx->rings[i].fences = (void *)ctx->fences + sizeof(struct fence *) *
45 amdgpu_sched_jobs * i;
46 }
Chunming Zhoucadf97b2016-01-15 11:25:00 +080047 /* create context entity for each ring */
48 for (i = 0; i < adev->num_rings; i++) {
Christian König20874172016-02-11 09:56:44 +010049 struct amdgpu_ring *ring = adev->rings[i];
Chunming Zhoucadf97b2016-01-15 11:25:00 +080050 struct amd_sched_rq *rq;
Christian König20874172016-02-11 09:56:44 +010051
52 rq = &ring->sched.sched_rq[AMD_SCHED_PRIORITY_NORMAL];
53 r = amd_sched_entity_init(&ring->sched, &ctx->rings[i].entity,
Chunming Zhoucadf97b2016-01-15 11:25:00 +080054 rq, amdgpu_sched_jobs);
55 if (r)
56 break;
57 }
58
59 if (i < adev->num_rings) {
60 for (j = 0; j < i; j++)
61 amd_sched_entity_fini(&adev->rings[j]->sched,
62 &ctx->rings[j].entity);
63 kfree(ctx->fences);
64 return r;
Chunming Zhou9cb7e5a2015-07-21 13:17:19 +080065 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -040066 return 0;
67}
68
Christian König20874172016-02-11 09:56:44 +010069static void amdgpu_ctx_fini(struct amdgpu_ctx *ctx)
Christian König47f38502015-08-04 17:51:05 +020070{
71 struct amdgpu_device *adev = ctx->adev;
72 unsigned i, j;
73
Dave Airliefe295b22015-11-03 11:07:11 -050074 if (!adev)
75 return;
76
Christian König47f38502015-08-04 17:51:05 +020077 for (i = 0; i < AMDGPU_MAX_RINGS; ++i)
Chunming Zhou37cd0ca2015-12-10 15:45:11 +080078 for (j = 0; j < amdgpu_sched_jobs; ++j)
Christian König47f38502015-08-04 17:51:05 +020079 fence_put(ctx->rings[i].fences[j]);
Chunming Zhou37cd0ca2015-12-10 15:45:11 +080080 kfree(ctx->fences);
Christian König47f38502015-08-04 17:51:05 +020081
Chunming Zhoucadf97b2016-01-15 11:25:00 +080082 for (i = 0; i < adev->num_rings; i++)
83 amd_sched_entity_fini(&adev->rings[i]->sched,
84 &ctx->rings[i].entity);
Christian König47f38502015-08-04 17:51:05 +020085}
86
87static int amdgpu_ctx_alloc(struct amdgpu_device *adev,
88 struct amdgpu_fpriv *fpriv,
89 uint32_t *id)
90{
91 struct amdgpu_ctx_mgr *mgr = &fpriv->ctx_mgr;
92 struct amdgpu_ctx *ctx;
93 int r;
94
95 ctx = kmalloc(sizeof(*ctx), GFP_KERNEL);
96 if (!ctx)
97 return -ENOMEM;
98
99 mutex_lock(&mgr->lock);
100 r = idr_alloc(&mgr->ctx_handles, ctx, 1, 0, GFP_KERNEL);
101 if (r < 0) {
102 mutex_unlock(&mgr->lock);
103 kfree(ctx);
104 return r;
105 }
106 *id = (uint32_t)r;
Christian König20874172016-02-11 09:56:44 +0100107 r = amdgpu_ctx_init(adev, ctx);
Chunming Zhouc648ed72015-12-10 15:50:02 +0800108 if (r) {
109 idr_remove(&mgr->ctx_handles, *id);
110 *id = 0;
111 kfree(ctx);
112 }
Christian König47f38502015-08-04 17:51:05 +0200113 mutex_unlock(&mgr->lock);
Christian König47f38502015-08-04 17:51:05 +0200114 return r;
115}
116
117static void amdgpu_ctx_do_release(struct kref *ref)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400118{
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400119 struct amdgpu_ctx *ctx;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400120
Christian König47f38502015-08-04 17:51:05 +0200121 ctx = container_of(ref, struct amdgpu_ctx, refcount);
122
123 amdgpu_ctx_fini(ctx);
124
125 kfree(ctx);
126}
127
128static int amdgpu_ctx_free(struct amdgpu_fpriv *fpriv, uint32_t id)
129{
130 struct amdgpu_ctx_mgr *mgr = &fpriv->ctx_mgr;
131 struct amdgpu_ctx *ctx;
132
133 mutex_lock(&mgr->lock);
134 ctx = idr_find(&mgr->ctx_handles, id);
135 if (ctx) {
136 idr_remove(&mgr->ctx_handles, id);
Chunming Zhou23ca0e42015-07-06 13:42:58 +0800137 kref_put(&ctx->refcount, amdgpu_ctx_do_release);
Christian König47f38502015-08-04 17:51:05 +0200138 mutex_unlock(&mgr->lock);
Marek Olšákf11358d2015-05-05 00:56:45 +0200139 return 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400140 }
Christian König47f38502015-08-04 17:51:05 +0200141 mutex_unlock(&mgr->lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400142 return -EINVAL;
143}
144
Marek Olšákd94aed52015-05-05 21:13:49 +0200145static int amdgpu_ctx_query(struct amdgpu_device *adev,
146 struct amdgpu_fpriv *fpriv, uint32_t id,
147 union drm_amdgpu_ctx_out *out)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400148{
149 struct amdgpu_ctx *ctx;
Chunming Zhou23ca0e42015-07-06 13:42:58 +0800150 struct amdgpu_ctx_mgr *mgr;
Marek Olšákd94aed52015-05-05 21:13:49 +0200151 unsigned reset_counter;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400152
Chunming Zhou23ca0e42015-07-06 13:42:58 +0800153 if (!fpriv)
154 return -EINVAL;
155
156 mgr = &fpriv->ctx_mgr;
Marek Olšák0147ee02015-05-05 20:52:00 +0200157 mutex_lock(&mgr->lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400158 ctx = idr_find(&mgr->ctx_handles, id);
Marek Olšákd94aed52015-05-05 21:13:49 +0200159 if (!ctx) {
Marek Olšák0147ee02015-05-05 20:52:00 +0200160 mutex_unlock(&mgr->lock);
Marek Olšákd94aed52015-05-05 21:13:49 +0200161 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400162 }
Marek Olšákd94aed52015-05-05 21:13:49 +0200163
164 /* TODO: these two are always zero */
Alex Deucher0b492a42015-08-16 22:48:26 -0400165 out->state.flags = 0x0;
166 out->state.hangs = 0x0;
Marek Olšákd94aed52015-05-05 21:13:49 +0200167
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;
173 else
174 out->state.reset_status = AMDGPU_CTX_UNKNOWN_RESET;
175 ctx->reset_counter = reset_counter;
176
Marek Olšák0147ee02015-05-05 20:52:00 +0200177 mutex_unlock(&mgr->lock);
Marek Olšákd94aed52015-05-05 21:13:49 +0200178 return 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400179}
180
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400181int amdgpu_ctx_ioctl(struct drm_device *dev, void *data,
Marek Olšákd94aed52015-05-05 21:13:49 +0200182 struct drm_file *filp)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400183{
184 int r;
185 uint32_t id;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400186
187 union drm_amdgpu_ctx *args = data;
188 struct amdgpu_device *adev = dev->dev_private;
189 struct amdgpu_fpriv *fpriv = filp->driver_priv;
190
191 r = 0;
192 id = args->in.ctx_id;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400193
194 switch (args->in.op) {
195 case AMDGPU_CTX_OP_ALLOC_CTX:
Alex Deucher0b492a42015-08-16 22:48:26 -0400196 r = amdgpu_ctx_alloc(adev, fpriv, &id);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400197 args->out.alloc.ctx_id = id;
198 break;
199 case AMDGPU_CTX_OP_FREE_CTX:
Christian König47f38502015-08-04 17:51:05 +0200200 r = amdgpu_ctx_free(fpriv, id);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400201 break;
202 case AMDGPU_CTX_OP_QUERY_STATE:
Marek Olšákd94aed52015-05-05 21:13:49 +0200203 r = amdgpu_ctx_query(adev, fpriv, id, &args->out);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400204 break;
205 default:
206 return -EINVAL;
207 }
208
209 return r;
210}
Jammy Zhou66b3cf22015-05-08 17:29:40 +0800211
212struct amdgpu_ctx *amdgpu_ctx_get(struct amdgpu_fpriv *fpriv, uint32_t id)
213{
214 struct amdgpu_ctx *ctx;
Chunming Zhou23ca0e42015-07-06 13:42:58 +0800215 struct amdgpu_ctx_mgr *mgr;
216
217 if (!fpriv)
218 return NULL;
219
220 mgr = &fpriv->ctx_mgr;
Jammy Zhou66b3cf22015-05-08 17:29:40 +0800221
222 mutex_lock(&mgr->lock);
223 ctx = idr_find(&mgr->ctx_handles, id);
224 if (ctx)
225 kref_get(&ctx->refcount);
226 mutex_unlock(&mgr->lock);
227 return ctx;
228}
229
230int amdgpu_ctx_put(struct amdgpu_ctx *ctx)
231{
Jammy Zhou66b3cf22015-05-08 17:29:40 +0800232 if (ctx == NULL)
233 return -EINVAL;
234
Jammy Zhou66b3cf22015-05-08 17:29:40 +0800235 kref_put(&ctx->refcount, amdgpu_ctx_do_release);
Jammy Zhou66b3cf22015-05-08 17:29:40 +0800236 return 0;
237}
Christian König21c16bf2015-07-07 17:24:49 +0200238
239uint64_t amdgpu_ctx_add_fence(struct amdgpu_ctx *ctx, struct amdgpu_ring *ring,
Christian Königce882e62015-08-19 15:00:55 +0200240 struct fence *fence)
Christian König21c16bf2015-07-07 17:24:49 +0200241{
242 struct amdgpu_ctx_ring *cring = & ctx->rings[ring->idx];
Christian Königce882e62015-08-19 15:00:55 +0200243 uint64_t seq = cring->sequence;
Chunming Zhoub43a9a72015-07-21 15:13:53 +0800244 unsigned idx = 0;
245 struct fence *other = NULL;
Christian König21c16bf2015-07-07 17:24:49 +0200246
Chunming Zhou5b011232015-12-10 17:34:33 +0800247 idx = seq & (amdgpu_sched_jobs - 1);
Chunming Zhoub43a9a72015-07-21 15:13:53 +0800248 other = cring->fences[idx];
Christian König21c16bf2015-07-07 17:24:49 +0200249 if (other) {
250 signed long r;
251 r = fence_wait_timeout(other, false, MAX_SCHEDULE_TIMEOUT);
252 if (r < 0)
253 DRM_ERROR("Error (%ld) waiting for fence!\n", r);
254 }
255
256 fence_get(fence);
257
258 spin_lock(&ctx->ring_lock);
259 cring->fences[idx] = fence;
Christian Königce882e62015-08-19 15:00:55 +0200260 cring->sequence++;
Christian König21c16bf2015-07-07 17:24:49 +0200261 spin_unlock(&ctx->ring_lock);
262
263 fence_put(other);
264
265 return seq;
266}
267
268struct fence *amdgpu_ctx_get_fence(struct amdgpu_ctx *ctx,
269 struct amdgpu_ring *ring, uint64_t seq)
270{
271 struct amdgpu_ctx_ring *cring = & ctx->rings[ring->idx];
272 struct fence *fence;
273
274 spin_lock(&ctx->ring_lock);
Chunming Zhoub43a9a72015-07-21 15:13:53 +0800275
Christian Königce882e62015-08-19 15:00:55 +0200276 if (seq >= cring->sequence) {
Christian König21c16bf2015-07-07 17:24:49 +0200277 spin_unlock(&ctx->ring_lock);
278 return ERR_PTR(-EINVAL);
279 }
280
Chunming Zhoub43a9a72015-07-21 15:13:53 +0800281
Chunming Zhou37cd0ca2015-12-10 15:45:11 +0800282 if (seq + amdgpu_sched_jobs < cring->sequence) {
Christian König21c16bf2015-07-07 17:24:49 +0200283 spin_unlock(&ctx->ring_lock);
284 return NULL;
285 }
286
Chunming Zhou5b011232015-12-10 17:34:33 +0800287 fence = fence_get(cring->fences[seq & (amdgpu_sched_jobs - 1)]);
Christian König21c16bf2015-07-07 17:24:49 +0200288 spin_unlock(&ctx->ring_lock);
289
290 return fence;
291}
Christian Königefd4ccb2015-08-04 16:20:31 +0200292
293void amdgpu_ctx_mgr_init(struct amdgpu_ctx_mgr *mgr)
294{
295 mutex_init(&mgr->lock);
296 idr_init(&mgr->ctx_handles);
297}
298
299void amdgpu_ctx_mgr_fini(struct amdgpu_ctx_mgr *mgr)
300{
301 struct amdgpu_ctx *ctx;
302 struct idr *idp;
303 uint32_t id;
304
305 idp = &mgr->ctx_handles;
306
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);
310 }
311
312 idr_destroy(&mgr->ctx_handles);
313 mutex_destroy(&mgr->lock);
314}