blob: a78b03f65c6913e1bf56ebd300621e528e27fdec [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>
Andres Rodriguezc2636dc2016-12-22 17:06:50 -050026#include <drm/drm_auth.h>
Alex Deucherd38ceaf2015-04-20 16:55:21 -040027#include "amdgpu.h"
Andres Rodriguez52c6a622017-06-26 16:17:13 -040028#include "amdgpu_sched.h"
Alex Deucherd38ceaf2015-04-20 16:55:21 -040029
Andres Rodriguezc2636dc2016-12-22 17:06:50 -050030static int amdgpu_ctx_priority_permit(struct drm_file *filp,
31 enum amd_sched_priority priority)
32{
33 /* NORMAL and below are accessible by everyone */
34 if (priority <= AMD_SCHED_PRIORITY_NORMAL)
35 return 0;
36
37 if (capable(CAP_SYS_NICE))
38 return 0;
39
40 if (drm_is_current_master(filp))
41 return 0;
42
43 return -EACCES;
44}
45
46static int amdgpu_ctx_init(struct amdgpu_device *adev,
47 enum amd_sched_priority priority,
48 struct drm_file *filp,
49 struct amdgpu_ctx *ctx)
Alex Deucherd38ceaf2015-04-20 16:55:21 -040050{
Christian König21c16bf2015-07-07 17:24:49 +020051 unsigned i, j;
Christian König47f38502015-08-04 17:51:05 +020052 int r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -040053
Andres Rodriguezc2636dc2016-12-22 17:06:50 -050054 if (priority < 0 || priority >= AMD_SCHED_PRIORITY_MAX)
55 return -EINVAL;
56
57 r = amdgpu_ctx_priority_permit(filp, priority);
58 if (r)
59 return r;
60
Alex Deucherd38ceaf2015-04-20 16:55:21 -040061 memset(ctx, 0, sizeof(*ctx));
Chunming Zhou9cb7e5a2015-07-21 13:17:19 +080062 ctx->adev = adev;
Alex Deucherd38ceaf2015-04-20 16:55:21 -040063 kref_init(&ctx->refcount);
Christian König21c16bf2015-07-07 17:24:49 +020064 spin_lock_init(&ctx->ring_lock);
Christian Königa750b472016-02-11 10:20:53 +010065 ctx->fences = kcalloc(amdgpu_sched_jobs * AMDGPU_MAX_RINGS,
Chris Wilsonf54d1862016-10-25 13:00:45 +010066 sizeof(struct dma_fence*), GFP_KERNEL);
Chunming Zhou37cd0ca2015-12-10 15:45:11 +080067 if (!ctx->fences)
68 return -ENOMEM;
Chunming Zhou23ca0e42015-07-06 13:42:58 +080069
Chunming Zhou37cd0ca2015-12-10 15:45:11 +080070 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
71 ctx->rings[i].sequence = 1;
Christian Königa750b472016-02-11 10:20:53 +010072 ctx->rings[i].fences = &ctx->fences[amdgpu_sched_jobs * i];
Chunming Zhou37cd0ca2015-12-10 15:45:11 +080073 }
Nicolai Hähnlece199ad2016-10-04 09:43:30 +020074
75 ctx->reset_counter = atomic_read(&adev->gpu_reset_counter);
Andres Rodriguezc23be4a2017-06-06 20:20:38 -040076 ctx->init_priority = priority;
77 ctx->override_priority = AMD_SCHED_PRIORITY_UNSET;
Nicolai Hähnlece199ad2016-10-04 09:43:30 +020078
Chunming Zhoucadf97b2016-01-15 11:25:00 +080079 /* create context entity for each ring */
80 for (i = 0; i < adev->num_rings; i++) {
Christian König20874172016-02-11 09:56:44 +010081 struct amdgpu_ring *ring = adev->rings[i];
Chunming Zhoucadf97b2016-01-15 11:25:00 +080082 struct amd_sched_rq *rq;
Christian König20874172016-02-11 09:56:44 +010083
Andres Rodriguezc2636dc2016-12-22 17:06:50 -050084 rq = &ring->sched.sched_rq[priority];
Monk Liu75fbed22017-05-11 13:36:33 +080085
86 if (ring == &adev->gfx.kiq.ring)
87 continue;
88
Christian König20874172016-02-11 09:56:44 +010089 r = amd_sched_entity_init(&ring->sched, &ctx->rings[i].entity,
Chunming Zhoucadf97b2016-01-15 11:25:00 +080090 rq, amdgpu_sched_jobs);
91 if (r)
Huang Rui8ed81472016-10-26 17:07:03 +080092 goto failed;
Chunming Zhoucadf97b2016-01-15 11:25:00 +080093 }
94
Andres Rodriguezeffd9242017-02-16 00:47:32 -050095 r = amdgpu_queue_mgr_init(adev, &ctx->queue_mgr);
96 if (r)
97 goto failed;
98
Alex Deucherd38ceaf2015-04-20 16:55:21 -040099 return 0;
Huang Rui8ed81472016-10-26 17:07:03 +0800100
101failed:
102 for (j = 0; j < i; j++)
103 amd_sched_entity_fini(&adev->rings[j]->sched,
104 &ctx->rings[j].entity);
105 kfree(ctx->fences);
106 ctx->fences = NULL;
107 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400108}
109
Christian König20874172016-02-11 09:56:44 +0100110static void amdgpu_ctx_fini(struct amdgpu_ctx *ctx)
Christian König47f38502015-08-04 17:51:05 +0200111{
112 struct amdgpu_device *adev = ctx->adev;
113 unsigned i, j;
114
Dave Airliefe295b22015-11-03 11:07:11 -0500115 if (!adev)
116 return;
117
Christian König47f38502015-08-04 17:51:05 +0200118 for (i = 0; i < AMDGPU_MAX_RINGS; ++i)
Chunming Zhou37cd0ca2015-12-10 15:45:11 +0800119 for (j = 0; j < amdgpu_sched_jobs; ++j)
Chris Wilsonf54d1862016-10-25 13:00:45 +0100120 dma_fence_put(ctx->rings[i].fences[j]);
Chunming Zhou37cd0ca2015-12-10 15:45:11 +0800121 kfree(ctx->fences);
Grazvydas Ignotas54ddf3a2016-09-25 23:34:46 +0300122 ctx->fences = NULL;
Christian König47f38502015-08-04 17:51:05 +0200123
Chunming Zhoucadf97b2016-01-15 11:25:00 +0800124 for (i = 0; i < adev->num_rings; i++)
125 amd_sched_entity_fini(&adev->rings[i]->sched,
126 &ctx->rings[i].entity);
Andres Rodriguezeffd9242017-02-16 00:47:32 -0500127
128 amdgpu_queue_mgr_fini(adev, &ctx->queue_mgr);
Christian König47f38502015-08-04 17:51:05 +0200129}
130
131static int amdgpu_ctx_alloc(struct amdgpu_device *adev,
132 struct amdgpu_fpriv *fpriv,
Andres Rodriguezc2636dc2016-12-22 17:06:50 -0500133 struct drm_file *filp,
134 enum amd_sched_priority priority,
Christian König47f38502015-08-04 17:51:05 +0200135 uint32_t *id)
136{
137 struct amdgpu_ctx_mgr *mgr = &fpriv->ctx_mgr;
138 struct amdgpu_ctx *ctx;
139 int r;
140
141 ctx = kmalloc(sizeof(*ctx), GFP_KERNEL);
142 if (!ctx)
143 return -ENOMEM;
144
145 mutex_lock(&mgr->lock);
146 r = idr_alloc(&mgr->ctx_handles, ctx, 1, 0, GFP_KERNEL);
147 if (r < 0) {
148 mutex_unlock(&mgr->lock);
149 kfree(ctx);
150 return r;
151 }
Andres Rodriguezc2636dc2016-12-22 17:06:50 -0500152
Christian König47f38502015-08-04 17:51:05 +0200153 *id = (uint32_t)r;
Andres Rodriguezc2636dc2016-12-22 17:06:50 -0500154 r = amdgpu_ctx_init(adev, priority, filp, ctx);
Chunming Zhouc648ed72015-12-10 15:50:02 +0800155 if (r) {
156 idr_remove(&mgr->ctx_handles, *id);
157 *id = 0;
158 kfree(ctx);
159 }
Christian König47f38502015-08-04 17:51:05 +0200160 mutex_unlock(&mgr->lock);
Christian König47f38502015-08-04 17:51:05 +0200161 return r;
162}
163
164static void amdgpu_ctx_do_release(struct kref *ref)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400165{
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400166 struct amdgpu_ctx *ctx;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400167
Christian König47f38502015-08-04 17:51:05 +0200168 ctx = container_of(ref, struct amdgpu_ctx, refcount);
169
170 amdgpu_ctx_fini(ctx);
171
172 kfree(ctx);
173}
174
175static int amdgpu_ctx_free(struct amdgpu_fpriv *fpriv, uint32_t id)
176{
177 struct amdgpu_ctx_mgr *mgr = &fpriv->ctx_mgr;
178 struct amdgpu_ctx *ctx;
179
180 mutex_lock(&mgr->lock);
Matthew Wilcoxd3e709e2016-12-22 13:30:22 -0500181 ctx = idr_remove(&mgr->ctx_handles, id);
182 if (ctx)
Chunming Zhou23ca0e42015-07-06 13:42:58 +0800183 kref_put(&ctx->refcount, amdgpu_ctx_do_release);
Christian König47f38502015-08-04 17:51:05 +0200184 mutex_unlock(&mgr->lock);
Matthew Wilcoxd3e709e2016-12-22 13:30:22 -0500185 return ctx ? 0 : -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400186}
187
Marek Olšákd94aed52015-05-05 21:13:49 +0200188static int amdgpu_ctx_query(struct amdgpu_device *adev,
189 struct amdgpu_fpriv *fpriv, uint32_t id,
190 union drm_amdgpu_ctx_out *out)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400191{
192 struct amdgpu_ctx *ctx;
Chunming Zhou23ca0e42015-07-06 13:42:58 +0800193 struct amdgpu_ctx_mgr *mgr;
Marek Olšákd94aed52015-05-05 21:13:49 +0200194 unsigned reset_counter;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400195
Chunming Zhou23ca0e42015-07-06 13:42:58 +0800196 if (!fpriv)
197 return -EINVAL;
198
199 mgr = &fpriv->ctx_mgr;
Marek Olšák0147ee02015-05-05 20:52:00 +0200200 mutex_lock(&mgr->lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400201 ctx = idr_find(&mgr->ctx_handles, id);
Marek Olšákd94aed52015-05-05 21:13:49 +0200202 if (!ctx) {
Marek Olšák0147ee02015-05-05 20:52:00 +0200203 mutex_unlock(&mgr->lock);
Marek Olšákd94aed52015-05-05 21:13:49 +0200204 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400205 }
Marek Olšákd94aed52015-05-05 21:13:49 +0200206
207 /* TODO: these two are always zero */
Alex Deucher0b492a42015-08-16 22:48:26 -0400208 out->state.flags = 0x0;
209 out->state.hangs = 0x0;
Marek Olšákd94aed52015-05-05 21:13:49 +0200210
211 /* determine if a GPU reset has occured since the last call */
212 reset_counter = atomic_read(&adev->gpu_reset_counter);
213 /* TODO: this should ideally return NO, GUILTY, or INNOCENT. */
214 if (ctx->reset_counter == reset_counter)
215 out->state.reset_status = AMDGPU_CTX_NO_RESET;
216 else
217 out->state.reset_status = AMDGPU_CTX_UNKNOWN_RESET;
218 ctx->reset_counter = reset_counter;
219
Marek Olšák0147ee02015-05-05 20:52:00 +0200220 mutex_unlock(&mgr->lock);
Marek Olšákd94aed52015-05-05 21:13:49 +0200221 return 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400222}
223
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400224int amdgpu_ctx_ioctl(struct drm_device *dev, void *data,
Marek Olšákd94aed52015-05-05 21:13:49 +0200225 struct drm_file *filp)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400226{
227 int r;
228 uint32_t id;
Andres Rodriguezc2636dc2016-12-22 17:06:50 -0500229 enum amd_sched_priority priority;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400230
231 union drm_amdgpu_ctx *args = data;
232 struct amdgpu_device *adev = dev->dev_private;
233 struct amdgpu_fpriv *fpriv = filp->driver_priv;
234
235 r = 0;
236 id = args->in.ctx_id;
Andres Rodriguezc2636dc2016-12-22 17:06:50 -0500237 priority = amdgpu_to_sched_priority(args->in.priority);
238
Andres Rodriguezb6d8a432017-05-24 17:00:10 -0400239 /* For backwards compatibility reasons, we need to accept
240 * ioctls with garbage in the priority field */
241 if (priority == AMD_SCHED_PRIORITY_INVALID)
242 priority = AMD_SCHED_PRIORITY_NORMAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400243
244 switch (args->in.op) {
Christian Königa750b472016-02-11 10:20:53 +0100245 case AMDGPU_CTX_OP_ALLOC_CTX:
Andres Rodriguezc2636dc2016-12-22 17:06:50 -0500246 r = amdgpu_ctx_alloc(adev, fpriv, filp, priority, &id);
Christian Königa750b472016-02-11 10:20:53 +0100247 args->out.alloc.ctx_id = id;
248 break;
249 case AMDGPU_CTX_OP_FREE_CTX:
250 r = amdgpu_ctx_free(fpriv, id);
251 break;
252 case AMDGPU_CTX_OP_QUERY_STATE:
253 r = amdgpu_ctx_query(adev, fpriv, id, &args->out);
254 break;
255 default:
256 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400257 }
258
259 return r;
260}
Jammy Zhou66b3cf22015-05-08 17:29:40 +0800261
262struct amdgpu_ctx *amdgpu_ctx_get(struct amdgpu_fpriv *fpriv, uint32_t id)
263{
264 struct amdgpu_ctx *ctx;
Chunming Zhou23ca0e42015-07-06 13:42:58 +0800265 struct amdgpu_ctx_mgr *mgr;
266
267 if (!fpriv)
268 return NULL;
269
270 mgr = &fpriv->ctx_mgr;
Jammy Zhou66b3cf22015-05-08 17:29:40 +0800271
272 mutex_lock(&mgr->lock);
273 ctx = idr_find(&mgr->ctx_handles, id);
274 if (ctx)
275 kref_get(&ctx->refcount);
276 mutex_unlock(&mgr->lock);
277 return ctx;
278}
279
280int amdgpu_ctx_put(struct amdgpu_ctx *ctx)
281{
Jammy Zhou66b3cf22015-05-08 17:29:40 +0800282 if (ctx == NULL)
283 return -EINVAL;
284
Jammy Zhou66b3cf22015-05-08 17:29:40 +0800285 kref_put(&ctx->refcount, amdgpu_ctx_do_release);
Jammy Zhou66b3cf22015-05-08 17:29:40 +0800286 return 0;
287}
Christian König21c16bf2015-07-07 17:24:49 +0200288
Monk Liueb01abc2017-09-15 13:40:31 +0800289int amdgpu_ctx_add_fence(struct amdgpu_ctx *ctx, struct amdgpu_ring *ring,
290 struct dma_fence *fence, uint64_t* handler)
Christian König21c16bf2015-07-07 17:24:49 +0200291{
292 struct amdgpu_ctx_ring *cring = & ctx->rings[ring->idx];
Christian Königce882e62015-08-19 15:00:55 +0200293 uint64_t seq = cring->sequence;
Chunming Zhoub43a9a72015-07-21 15:13:53 +0800294 unsigned idx = 0;
Chris Wilsonf54d1862016-10-25 13:00:45 +0100295 struct dma_fence *other = NULL;
Christian König21c16bf2015-07-07 17:24:49 +0200296
Chunming Zhou5b011232015-12-10 17:34:33 +0800297 idx = seq & (amdgpu_sched_jobs - 1);
Chunming Zhoub43a9a72015-07-21 15:13:53 +0800298 other = cring->fences[idx];
Christian König21c16bf2015-07-07 17:24:49 +0200299 if (other) {
300 signed long r;
Monk Liueb01abc2017-09-15 13:40:31 +0800301 r = dma_fence_wait_timeout(other, true, MAX_SCHEDULE_TIMEOUT);
Christian König21c16bf2015-07-07 17:24:49 +0200302 if (r < 0)
Monk Liueb01abc2017-09-15 13:40:31 +0800303 return r;
Christian König21c16bf2015-07-07 17:24:49 +0200304 }
305
Chris Wilsonf54d1862016-10-25 13:00:45 +0100306 dma_fence_get(fence);
Christian König21c16bf2015-07-07 17:24:49 +0200307
308 spin_lock(&ctx->ring_lock);
309 cring->fences[idx] = fence;
Christian Königce882e62015-08-19 15:00:55 +0200310 cring->sequence++;
Christian König21c16bf2015-07-07 17:24:49 +0200311 spin_unlock(&ctx->ring_lock);
312
Chris Wilsonf54d1862016-10-25 13:00:45 +0100313 dma_fence_put(other);
Monk Liueb01abc2017-09-15 13:40:31 +0800314 if (handler)
315 *handler = seq;
Christian König21c16bf2015-07-07 17:24:49 +0200316
Monk Liueb01abc2017-09-15 13:40:31 +0800317 return 0;
Christian König21c16bf2015-07-07 17:24:49 +0200318}
319
Chris Wilsonf54d1862016-10-25 13:00:45 +0100320struct dma_fence *amdgpu_ctx_get_fence(struct amdgpu_ctx *ctx,
321 struct amdgpu_ring *ring, uint64_t seq)
Christian König21c16bf2015-07-07 17:24:49 +0200322{
323 struct amdgpu_ctx_ring *cring = & ctx->rings[ring->idx];
Chris Wilsonf54d1862016-10-25 13:00:45 +0100324 struct dma_fence *fence;
Christian König21c16bf2015-07-07 17:24:49 +0200325
326 spin_lock(&ctx->ring_lock);
Chunming Zhoub43a9a72015-07-21 15:13:53 +0800327
Monk Liud7b1eeb2017-04-07 18:39:07 +0800328 if (seq == ~0ull)
329 seq = ctx->rings[ring->idx].sequence - 1;
330
Christian Königce882e62015-08-19 15:00:55 +0200331 if (seq >= cring->sequence) {
Christian König21c16bf2015-07-07 17:24:49 +0200332 spin_unlock(&ctx->ring_lock);
333 return ERR_PTR(-EINVAL);
334 }
335
Chunming Zhoub43a9a72015-07-21 15:13:53 +0800336
Chunming Zhou37cd0ca2015-12-10 15:45:11 +0800337 if (seq + amdgpu_sched_jobs < cring->sequence) {
Christian König21c16bf2015-07-07 17:24:49 +0200338 spin_unlock(&ctx->ring_lock);
339 return NULL;
340 }
341
Chris Wilsonf54d1862016-10-25 13:00:45 +0100342 fence = dma_fence_get(cring->fences[seq & (amdgpu_sched_jobs - 1)]);
Christian König21c16bf2015-07-07 17:24:49 +0200343 spin_unlock(&ctx->ring_lock);
344
345 return fence;
346}
Christian Königefd4ccb2015-08-04 16:20:31 +0200347
Andres Rodriguezc23be4a2017-06-06 20:20:38 -0400348void amdgpu_ctx_priority_override(struct amdgpu_ctx *ctx,
349 enum amd_sched_priority priority)
350{
351 int i;
352 struct amdgpu_device *adev = ctx->adev;
353 struct amd_sched_rq *rq;
354 struct amd_sched_entity *entity;
355 struct amdgpu_ring *ring;
356 enum amd_sched_priority ctx_prio;
357
358 ctx->override_priority = priority;
359
360 ctx_prio = (ctx->override_priority == AMD_SCHED_PRIORITY_UNSET) ?
361 ctx->init_priority : ctx->override_priority;
362
363 for (i = 0; i < adev->num_rings; i++) {
364 ring = adev->rings[i];
365 entity = &ctx->rings[i].entity;
366 rq = &ring->sched.sched_rq[ctx_prio];
367
368 if (ring->funcs->type == AMDGPU_RING_TYPE_KIQ)
369 continue;
370
371 amd_sched_entity_set_rq(entity, rq);
372 }
373}
374
Christian Königefd4ccb2015-08-04 16:20:31 +0200375void amdgpu_ctx_mgr_init(struct amdgpu_ctx_mgr *mgr)
376{
377 mutex_init(&mgr->lock);
378 idr_init(&mgr->ctx_handles);
379}
380
381void amdgpu_ctx_mgr_fini(struct amdgpu_ctx_mgr *mgr)
382{
383 struct amdgpu_ctx *ctx;
384 struct idr *idp;
385 uint32_t id;
386
387 idp = &mgr->ctx_handles;
388
389 idr_for_each_entry(idp, ctx, id) {
390 if (kref_put(&ctx->refcount, amdgpu_ctx_do_release) != 1)
391 DRM_ERROR("ctx %p is still alive\n", ctx);
392 }
393
394 idr_destroy(&mgr->ctx_handles);
395 mutex_destroy(&mgr->lock);
396}