blob: a5e2fcbef0f0f24f54bcf54164eb610c463edd49 [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);
Christian Königa750b472016-02-11 10:20:53 +010037 ctx->fences = kcalloc(amdgpu_sched_jobs * AMDGPU_MAX_RINGS,
38 sizeof(struct fence*), GFP_KERNEL);
Chunming Zhou37cd0ca2015-12-10 15:45:11 +080039 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;
Christian Königa750b472016-02-11 10:20:53 +010044 ctx->rings[i].fences = &ctx->fences[amdgpu_sched_jobs * i];
Chunming Zhou37cd0ca2015-12-10 15:45:11 +080045 }
Nicolai Hähnlece199ad2016-10-04 09:43:30 +020046
47 ctx->reset_counter = atomic_read(&adev->gpu_reset_counter);
48
Chunming Zhoucadf97b2016-01-15 11:25:00 +080049 /* create context entity for each ring */
50 for (i = 0; i < adev->num_rings; i++) {
Christian König20874172016-02-11 09:56:44 +010051 struct amdgpu_ring *ring = adev->rings[i];
Chunming Zhoucadf97b2016-01-15 11:25:00 +080052 struct amd_sched_rq *rq;
Christian König20874172016-02-11 09:56:44 +010053
54 rq = &ring->sched.sched_rq[AMD_SCHED_PRIORITY_NORMAL];
55 r = amd_sched_entity_init(&ring->sched, &ctx->rings[i].entity,
Chunming Zhoucadf97b2016-01-15 11:25:00 +080056 rq, amdgpu_sched_jobs);
57 if (r)
58 break;
59 }
60
61 if (i < adev->num_rings) {
62 for (j = 0; j < i; j++)
63 amd_sched_entity_fini(&adev->rings[j]->sched,
64 &ctx->rings[j].entity);
65 kfree(ctx->fences);
Grazvydas Ignotas54ddf3a2016-09-25 23:34:46 +030066 ctx->fences = NULL;
Chunming Zhoucadf97b2016-01-15 11:25:00 +080067 return r;
Chunming Zhou9cb7e5a2015-07-21 13:17:19 +080068 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -040069 return 0;
70}
71
Christian König20874172016-02-11 09:56:44 +010072static void amdgpu_ctx_fini(struct amdgpu_ctx *ctx)
Christian König47f38502015-08-04 17:51:05 +020073{
74 struct amdgpu_device *adev = ctx->adev;
75 unsigned i, j;
76
Dave Airliefe295b22015-11-03 11:07:11 -050077 if (!adev)
78 return;
79
Christian König47f38502015-08-04 17:51:05 +020080 for (i = 0; i < AMDGPU_MAX_RINGS; ++i)
Chunming Zhou37cd0ca2015-12-10 15:45:11 +080081 for (j = 0; j < amdgpu_sched_jobs; ++j)
Christian König47f38502015-08-04 17:51:05 +020082 fence_put(ctx->rings[i].fences[j]);
Chunming Zhou37cd0ca2015-12-10 15:45:11 +080083 kfree(ctx->fences);
Grazvydas Ignotas54ddf3a2016-09-25 23:34:46 +030084 ctx->fences = NULL;
Christian König47f38502015-08-04 17:51:05 +020085
Chunming Zhoucadf97b2016-01-15 11:25:00 +080086 for (i = 0; i < adev->num_rings; i++)
87 amd_sched_entity_fini(&adev->rings[i]->sched,
88 &ctx->rings[i].entity);
Christian König47f38502015-08-04 17:51:05 +020089}
90
91static int amdgpu_ctx_alloc(struct amdgpu_device *adev,
92 struct amdgpu_fpriv *fpriv,
93 uint32_t *id)
94{
95 struct amdgpu_ctx_mgr *mgr = &fpriv->ctx_mgr;
96 struct amdgpu_ctx *ctx;
97 int r;
98
99 ctx = kmalloc(sizeof(*ctx), GFP_KERNEL);
100 if (!ctx)
101 return -ENOMEM;
102
103 mutex_lock(&mgr->lock);
104 r = idr_alloc(&mgr->ctx_handles, ctx, 1, 0, GFP_KERNEL);
105 if (r < 0) {
106 mutex_unlock(&mgr->lock);
107 kfree(ctx);
108 return r;
109 }
110 *id = (uint32_t)r;
Christian König20874172016-02-11 09:56:44 +0100111 r = amdgpu_ctx_init(adev, ctx);
Chunming Zhouc648ed72015-12-10 15:50:02 +0800112 if (r) {
113 idr_remove(&mgr->ctx_handles, *id);
114 *id = 0;
115 kfree(ctx);
116 }
Christian König47f38502015-08-04 17:51:05 +0200117 mutex_unlock(&mgr->lock);
Christian König47f38502015-08-04 17:51:05 +0200118 return r;
119}
120
121static void amdgpu_ctx_do_release(struct kref *ref)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400122{
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400123 struct amdgpu_ctx *ctx;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400124
Christian König47f38502015-08-04 17:51:05 +0200125 ctx = container_of(ref, struct amdgpu_ctx, refcount);
126
127 amdgpu_ctx_fini(ctx);
128
129 kfree(ctx);
130}
131
132static int amdgpu_ctx_free(struct amdgpu_fpriv *fpriv, uint32_t id)
133{
134 struct amdgpu_ctx_mgr *mgr = &fpriv->ctx_mgr;
135 struct amdgpu_ctx *ctx;
136
137 mutex_lock(&mgr->lock);
138 ctx = idr_find(&mgr->ctx_handles, id);
139 if (ctx) {
140 idr_remove(&mgr->ctx_handles, id);
Chunming Zhou23ca0e42015-07-06 13:42:58 +0800141 kref_put(&ctx->refcount, amdgpu_ctx_do_release);
Christian König47f38502015-08-04 17:51:05 +0200142 mutex_unlock(&mgr->lock);
Marek Olšákf11358d2015-05-05 00:56:45 +0200143 return 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400144 }
Christian König47f38502015-08-04 17:51:05 +0200145 mutex_unlock(&mgr->lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400146 return -EINVAL;
147}
148
Marek Olšákd94aed52015-05-05 21:13:49 +0200149static int amdgpu_ctx_query(struct amdgpu_device *adev,
150 struct amdgpu_fpriv *fpriv, uint32_t id,
151 union drm_amdgpu_ctx_out *out)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400152{
153 struct amdgpu_ctx *ctx;
Chunming Zhou23ca0e42015-07-06 13:42:58 +0800154 struct amdgpu_ctx_mgr *mgr;
Marek Olšákd94aed52015-05-05 21:13:49 +0200155 unsigned reset_counter;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400156
Chunming Zhou23ca0e42015-07-06 13:42:58 +0800157 if (!fpriv)
158 return -EINVAL;
159
160 mgr = &fpriv->ctx_mgr;
Marek Olšák0147ee02015-05-05 20:52:00 +0200161 mutex_lock(&mgr->lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400162 ctx = idr_find(&mgr->ctx_handles, id);
Marek Olšákd94aed52015-05-05 21:13:49 +0200163 if (!ctx) {
Marek Olšák0147ee02015-05-05 20:52:00 +0200164 mutex_unlock(&mgr->lock);
Marek Olšákd94aed52015-05-05 21:13:49 +0200165 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400166 }
Marek Olšákd94aed52015-05-05 21:13:49 +0200167
168 /* TODO: these two are always zero */
Alex Deucher0b492a42015-08-16 22:48:26 -0400169 out->state.flags = 0x0;
170 out->state.hangs = 0x0;
Marek Olšákd94aed52015-05-05 21:13:49 +0200171
172 /* determine if a GPU reset has occured since the last call */
173 reset_counter = atomic_read(&adev->gpu_reset_counter);
174 /* TODO: this should ideally return NO, GUILTY, or INNOCENT. */
175 if (ctx->reset_counter == reset_counter)
176 out->state.reset_status = AMDGPU_CTX_NO_RESET;
177 else
178 out->state.reset_status = AMDGPU_CTX_UNKNOWN_RESET;
179 ctx->reset_counter = reset_counter;
180
Marek Olšák0147ee02015-05-05 20:52:00 +0200181 mutex_unlock(&mgr->lock);
Marek Olšákd94aed52015-05-05 21:13:49 +0200182 return 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400183}
184
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400185int amdgpu_ctx_ioctl(struct drm_device *dev, void *data,
Marek Olšákd94aed52015-05-05 21:13:49 +0200186 struct drm_file *filp)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400187{
188 int r;
189 uint32_t id;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400190
191 union drm_amdgpu_ctx *args = data;
192 struct amdgpu_device *adev = dev->dev_private;
193 struct amdgpu_fpriv *fpriv = filp->driver_priv;
194
195 r = 0;
196 id = args->in.ctx_id;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400197
198 switch (args->in.op) {
Christian Königa750b472016-02-11 10:20:53 +0100199 case AMDGPU_CTX_OP_ALLOC_CTX:
200 r = amdgpu_ctx_alloc(adev, fpriv, &id);
201 args->out.alloc.ctx_id = id;
202 break;
203 case AMDGPU_CTX_OP_FREE_CTX:
204 r = amdgpu_ctx_free(fpriv, id);
205 break;
206 case AMDGPU_CTX_OP_QUERY_STATE:
207 r = amdgpu_ctx_query(adev, fpriv, id, &args->out);
208 break;
209 default:
210 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400211 }
212
213 return r;
214}
Jammy Zhou66b3cf22015-05-08 17:29:40 +0800215
216struct amdgpu_ctx *amdgpu_ctx_get(struct amdgpu_fpriv *fpriv, uint32_t id)
217{
218 struct amdgpu_ctx *ctx;
Chunming Zhou23ca0e42015-07-06 13:42:58 +0800219 struct amdgpu_ctx_mgr *mgr;
220
221 if (!fpriv)
222 return NULL;
223
224 mgr = &fpriv->ctx_mgr;
Jammy Zhou66b3cf22015-05-08 17:29:40 +0800225
226 mutex_lock(&mgr->lock);
227 ctx = idr_find(&mgr->ctx_handles, id);
228 if (ctx)
229 kref_get(&ctx->refcount);
230 mutex_unlock(&mgr->lock);
231 return ctx;
232}
233
234int amdgpu_ctx_put(struct amdgpu_ctx *ctx)
235{
Jammy Zhou66b3cf22015-05-08 17:29:40 +0800236 if (ctx == NULL)
237 return -EINVAL;
238
Jammy Zhou66b3cf22015-05-08 17:29:40 +0800239 kref_put(&ctx->refcount, amdgpu_ctx_do_release);
Jammy Zhou66b3cf22015-05-08 17:29:40 +0800240 return 0;
241}
Christian König21c16bf2015-07-07 17:24:49 +0200242
243uint64_t amdgpu_ctx_add_fence(struct amdgpu_ctx *ctx, struct amdgpu_ring *ring,
Christian Königce882e62015-08-19 15:00:55 +0200244 struct fence *fence)
Christian König21c16bf2015-07-07 17:24:49 +0200245{
246 struct amdgpu_ctx_ring *cring = & ctx->rings[ring->idx];
Christian Königce882e62015-08-19 15:00:55 +0200247 uint64_t seq = cring->sequence;
Chunming Zhoub43a9a72015-07-21 15:13:53 +0800248 unsigned idx = 0;
249 struct fence *other = NULL;
Christian König21c16bf2015-07-07 17:24:49 +0200250
Chunming Zhou5b011232015-12-10 17:34:33 +0800251 idx = seq & (amdgpu_sched_jobs - 1);
Chunming Zhoub43a9a72015-07-21 15:13:53 +0800252 other = cring->fences[idx];
Christian König21c16bf2015-07-07 17:24:49 +0200253 if (other) {
254 signed long r;
255 r = fence_wait_timeout(other, false, MAX_SCHEDULE_TIMEOUT);
256 if (r < 0)
257 DRM_ERROR("Error (%ld) waiting for fence!\n", r);
258 }
259
260 fence_get(fence);
261
262 spin_lock(&ctx->ring_lock);
263 cring->fences[idx] = fence;
Christian Königce882e62015-08-19 15:00:55 +0200264 cring->sequence++;
Christian König21c16bf2015-07-07 17:24:49 +0200265 spin_unlock(&ctx->ring_lock);
266
267 fence_put(other);
268
269 return seq;
270}
271
272struct fence *amdgpu_ctx_get_fence(struct amdgpu_ctx *ctx,
273 struct amdgpu_ring *ring, uint64_t seq)
274{
275 struct amdgpu_ctx_ring *cring = & ctx->rings[ring->idx];
276 struct fence *fence;
277
278 spin_lock(&ctx->ring_lock);
Chunming Zhoub43a9a72015-07-21 15:13:53 +0800279
Christian Königce882e62015-08-19 15:00:55 +0200280 if (seq >= cring->sequence) {
Christian König21c16bf2015-07-07 17:24:49 +0200281 spin_unlock(&ctx->ring_lock);
282 return ERR_PTR(-EINVAL);
283 }
284
Chunming Zhoub43a9a72015-07-21 15:13:53 +0800285
Chunming Zhou37cd0ca2015-12-10 15:45:11 +0800286 if (seq + amdgpu_sched_jobs < cring->sequence) {
Christian König21c16bf2015-07-07 17:24:49 +0200287 spin_unlock(&ctx->ring_lock);
288 return NULL;
289 }
290
Chunming Zhou5b011232015-12-10 17:34:33 +0800291 fence = fence_get(cring->fences[seq & (amdgpu_sched_jobs - 1)]);
Christian König21c16bf2015-07-07 17:24:49 +0200292 spin_unlock(&ctx->ring_lock);
293
294 return fence;
295}
Christian Königefd4ccb2015-08-04 16:20:31 +0200296
297void amdgpu_ctx_mgr_init(struct amdgpu_ctx_mgr *mgr)
298{
299 mutex_init(&mgr->lock);
300 idr_init(&mgr->ctx_handles);
301}
302
303void amdgpu_ctx_mgr_fini(struct amdgpu_ctx_mgr *mgr)
304{
305 struct amdgpu_ctx *ctx;
306 struct idr *idp;
307 uint32_t id;
308
309 idp = &mgr->ctx_handles;
310
311 idr_for_each_entry(idp, ctx, id) {
312 if (kref_put(&ctx->refcount, amdgpu_ctx_do_release) != 1)
313 DRM_ERROR("ctx %p is still alive\n", ctx);
314 }
315
316 idr_destroy(&mgr->ctx_handles);
317 mutex_destroy(&mgr->lock);
318}