blob: c184468e2b2b31cc196c9494e94ce31538091ae4 [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
Andrey Grodzovsky0ae94442017-10-10 16:50:17 -040070 mutex_init(&ctx->lock);
71
Chunming Zhou37cd0ca2015-12-10 15:45:11 +080072 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
73 ctx->rings[i].sequence = 1;
Christian Königa750b472016-02-11 10:20:53 +010074 ctx->rings[i].fences = &ctx->fences[amdgpu_sched_jobs * i];
Chunming Zhou37cd0ca2015-12-10 15:45:11 +080075 }
Nicolai Hähnlece199ad2016-10-04 09:43:30 +020076
77 ctx->reset_counter = atomic_read(&adev->gpu_reset_counter);
Christian Könige55f2b62017-10-09 15:18:43 +020078 ctx->vram_lost_counter = atomic_read(&adev->vram_lost_counter);
Andres Rodriguezc23be4a2017-06-06 20:20:38 -040079 ctx->init_priority = priority;
80 ctx->override_priority = AMD_SCHED_PRIORITY_UNSET;
Nicolai Hähnlece199ad2016-10-04 09:43:30 +020081
Chunming Zhoucadf97b2016-01-15 11:25:00 +080082 /* create context entity for each ring */
83 for (i = 0; i < adev->num_rings; i++) {
Christian König20874172016-02-11 09:56:44 +010084 struct amdgpu_ring *ring = adev->rings[i];
Chunming Zhoucadf97b2016-01-15 11:25:00 +080085 struct amd_sched_rq *rq;
Christian König20874172016-02-11 09:56:44 +010086
Andres Rodriguezc2636dc2016-12-22 17:06:50 -050087 rq = &ring->sched.sched_rq[priority];
Monk Liu75fbed22017-05-11 13:36:33 +080088
89 if (ring == &adev->gfx.kiq.ring)
90 continue;
91
Christian König20874172016-02-11 09:56:44 +010092 r = amd_sched_entity_init(&ring->sched, &ctx->rings[i].entity,
Chunming Zhoucadf97b2016-01-15 11:25:00 +080093 rq, amdgpu_sched_jobs);
94 if (r)
Huang Rui8ed81472016-10-26 17:07:03 +080095 goto failed;
Chunming Zhoucadf97b2016-01-15 11:25:00 +080096 }
97
Andres Rodriguezeffd9242017-02-16 00:47:32 -050098 r = amdgpu_queue_mgr_init(adev, &ctx->queue_mgr);
99 if (r)
100 goto failed;
101
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400102 return 0;
Huang Rui8ed81472016-10-26 17:07:03 +0800103
104failed:
105 for (j = 0; j < i; j++)
106 amd_sched_entity_fini(&adev->rings[j]->sched,
107 &ctx->rings[j].entity);
108 kfree(ctx->fences);
109 ctx->fences = NULL;
110 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400111}
112
Christian König20874172016-02-11 09:56:44 +0100113static void amdgpu_ctx_fini(struct amdgpu_ctx *ctx)
Christian König47f38502015-08-04 17:51:05 +0200114{
115 struct amdgpu_device *adev = ctx->adev;
116 unsigned i, j;
117
Dave Airliefe295b22015-11-03 11:07:11 -0500118 if (!adev)
119 return;
120
Christian König47f38502015-08-04 17:51:05 +0200121 for (i = 0; i < AMDGPU_MAX_RINGS; ++i)
Chunming Zhou37cd0ca2015-12-10 15:45:11 +0800122 for (j = 0; j < amdgpu_sched_jobs; ++j)
Chris Wilsonf54d1862016-10-25 13:00:45 +0100123 dma_fence_put(ctx->rings[i].fences[j]);
Chunming Zhou37cd0ca2015-12-10 15:45:11 +0800124 kfree(ctx->fences);
Grazvydas Ignotas54ddf3a2016-09-25 23:34:46 +0300125 ctx->fences = NULL;
Christian König47f38502015-08-04 17:51:05 +0200126
Chunming Zhoucadf97b2016-01-15 11:25:00 +0800127 for (i = 0; i < adev->num_rings; i++)
128 amd_sched_entity_fini(&adev->rings[i]->sched,
129 &ctx->rings[i].entity);
Andres Rodriguezeffd9242017-02-16 00:47:32 -0500130
131 amdgpu_queue_mgr_fini(adev, &ctx->queue_mgr);
Andrey Grodzovsky0ae94442017-10-10 16:50:17 -0400132
133 mutex_destroy(&ctx->lock);
Christian König47f38502015-08-04 17:51:05 +0200134}
135
136static int amdgpu_ctx_alloc(struct amdgpu_device *adev,
137 struct amdgpu_fpriv *fpriv,
Andres Rodriguezc2636dc2016-12-22 17:06:50 -0500138 struct drm_file *filp,
139 enum amd_sched_priority priority,
Christian König47f38502015-08-04 17:51:05 +0200140 uint32_t *id)
141{
142 struct amdgpu_ctx_mgr *mgr = &fpriv->ctx_mgr;
143 struct amdgpu_ctx *ctx;
144 int r;
145
146 ctx = kmalloc(sizeof(*ctx), GFP_KERNEL);
147 if (!ctx)
148 return -ENOMEM;
149
150 mutex_lock(&mgr->lock);
151 r = idr_alloc(&mgr->ctx_handles, ctx, 1, 0, GFP_KERNEL);
152 if (r < 0) {
153 mutex_unlock(&mgr->lock);
154 kfree(ctx);
155 return r;
156 }
Andres Rodriguezc2636dc2016-12-22 17:06:50 -0500157
Christian König47f38502015-08-04 17:51:05 +0200158 *id = (uint32_t)r;
Andres Rodriguezc2636dc2016-12-22 17:06:50 -0500159 r = amdgpu_ctx_init(adev, priority, filp, ctx);
Chunming Zhouc648ed72015-12-10 15:50:02 +0800160 if (r) {
161 idr_remove(&mgr->ctx_handles, *id);
162 *id = 0;
163 kfree(ctx);
164 }
Christian König47f38502015-08-04 17:51:05 +0200165 mutex_unlock(&mgr->lock);
Christian König47f38502015-08-04 17:51:05 +0200166 return r;
167}
168
169static void amdgpu_ctx_do_release(struct kref *ref)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400170{
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400171 struct amdgpu_ctx *ctx;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400172
Christian König47f38502015-08-04 17:51:05 +0200173 ctx = container_of(ref, struct amdgpu_ctx, refcount);
174
175 amdgpu_ctx_fini(ctx);
176
177 kfree(ctx);
178}
179
180static int amdgpu_ctx_free(struct amdgpu_fpriv *fpriv, uint32_t id)
181{
182 struct amdgpu_ctx_mgr *mgr = &fpriv->ctx_mgr;
183 struct amdgpu_ctx *ctx;
184
185 mutex_lock(&mgr->lock);
Matthew Wilcoxd3e709e2016-12-22 13:30:22 -0500186 ctx = idr_remove(&mgr->ctx_handles, id);
187 if (ctx)
Chunming Zhou23ca0e42015-07-06 13:42:58 +0800188 kref_put(&ctx->refcount, amdgpu_ctx_do_release);
Christian König47f38502015-08-04 17:51:05 +0200189 mutex_unlock(&mgr->lock);
Matthew Wilcoxd3e709e2016-12-22 13:30:22 -0500190 return ctx ? 0 : -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400191}
192
Marek Olšákd94aed52015-05-05 21:13:49 +0200193static int amdgpu_ctx_query(struct amdgpu_device *adev,
194 struct amdgpu_fpriv *fpriv, uint32_t id,
195 union drm_amdgpu_ctx_out *out)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400196{
197 struct amdgpu_ctx *ctx;
Chunming Zhou23ca0e42015-07-06 13:42:58 +0800198 struct amdgpu_ctx_mgr *mgr;
Marek Olšákd94aed52015-05-05 21:13:49 +0200199 unsigned reset_counter;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400200
Chunming Zhou23ca0e42015-07-06 13:42:58 +0800201 if (!fpriv)
202 return -EINVAL;
203
204 mgr = &fpriv->ctx_mgr;
Marek Olšák0147ee02015-05-05 20:52:00 +0200205 mutex_lock(&mgr->lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400206 ctx = idr_find(&mgr->ctx_handles, id);
Marek Olšákd94aed52015-05-05 21:13:49 +0200207 if (!ctx) {
Marek Olšák0147ee02015-05-05 20:52:00 +0200208 mutex_unlock(&mgr->lock);
Marek Olšákd94aed52015-05-05 21:13:49 +0200209 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400210 }
Marek Olšákd94aed52015-05-05 21:13:49 +0200211
212 /* TODO: these two are always zero */
Alex Deucher0b492a42015-08-16 22:48:26 -0400213 out->state.flags = 0x0;
214 out->state.hangs = 0x0;
Marek Olšákd94aed52015-05-05 21:13:49 +0200215
216 /* determine if a GPU reset has occured since the last call */
217 reset_counter = atomic_read(&adev->gpu_reset_counter);
218 /* TODO: this should ideally return NO, GUILTY, or INNOCENT. */
219 if (ctx->reset_counter == reset_counter)
220 out->state.reset_status = AMDGPU_CTX_NO_RESET;
221 else
222 out->state.reset_status = AMDGPU_CTX_UNKNOWN_RESET;
223 ctx->reset_counter = reset_counter;
224
Marek Olšák0147ee02015-05-05 20:52:00 +0200225 mutex_unlock(&mgr->lock);
Marek Olšákd94aed52015-05-05 21:13:49 +0200226 return 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400227}
228
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400229int amdgpu_ctx_ioctl(struct drm_device *dev, void *data,
Marek Olšákd94aed52015-05-05 21:13:49 +0200230 struct drm_file *filp)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400231{
232 int r;
233 uint32_t id;
Andres Rodriguezc2636dc2016-12-22 17:06:50 -0500234 enum amd_sched_priority priority;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400235
236 union drm_amdgpu_ctx *args = data;
237 struct amdgpu_device *adev = dev->dev_private;
238 struct amdgpu_fpriv *fpriv = filp->driver_priv;
239
240 r = 0;
241 id = args->in.ctx_id;
Andres Rodriguezc2636dc2016-12-22 17:06:50 -0500242 priority = amdgpu_to_sched_priority(args->in.priority);
243
Andres Rodriguezb6d8a432017-05-24 17:00:10 -0400244 /* For backwards compatibility reasons, we need to accept
245 * ioctls with garbage in the priority field */
246 if (priority == AMD_SCHED_PRIORITY_INVALID)
247 priority = AMD_SCHED_PRIORITY_NORMAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400248
249 switch (args->in.op) {
Christian Königa750b472016-02-11 10:20:53 +0100250 case AMDGPU_CTX_OP_ALLOC_CTX:
Andres Rodriguezc2636dc2016-12-22 17:06:50 -0500251 r = amdgpu_ctx_alloc(adev, fpriv, filp, priority, &id);
Christian Königa750b472016-02-11 10:20:53 +0100252 args->out.alloc.ctx_id = id;
253 break;
254 case AMDGPU_CTX_OP_FREE_CTX:
255 r = amdgpu_ctx_free(fpriv, id);
256 break;
257 case AMDGPU_CTX_OP_QUERY_STATE:
258 r = amdgpu_ctx_query(adev, fpriv, id, &args->out);
259 break;
260 default:
261 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400262 }
263
264 return r;
265}
Jammy Zhou66b3cf22015-05-08 17:29:40 +0800266
267struct amdgpu_ctx *amdgpu_ctx_get(struct amdgpu_fpriv *fpriv, uint32_t id)
268{
269 struct amdgpu_ctx *ctx;
Chunming Zhou23ca0e42015-07-06 13:42:58 +0800270 struct amdgpu_ctx_mgr *mgr;
271
272 if (!fpriv)
273 return NULL;
274
275 mgr = &fpriv->ctx_mgr;
Jammy Zhou66b3cf22015-05-08 17:29:40 +0800276
277 mutex_lock(&mgr->lock);
278 ctx = idr_find(&mgr->ctx_handles, id);
279 if (ctx)
280 kref_get(&ctx->refcount);
281 mutex_unlock(&mgr->lock);
282 return ctx;
283}
284
285int amdgpu_ctx_put(struct amdgpu_ctx *ctx)
286{
Jammy Zhou66b3cf22015-05-08 17:29:40 +0800287 if (ctx == NULL)
288 return -EINVAL;
289
Jammy Zhou66b3cf22015-05-08 17:29:40 +0800290 kref_put(&ctx->refcount, amdgpu_ctx_do_release);
Jammy Zhou66b3cf22015-05-08 17:29:40 +0800291 return 0;
292}
Christian König21c16bf2015-07-07 17:24:49 +0200293
Monk Liueb01abc2017-09-15 13:40:31 +0800294int amdgpu_ctx_add_fence(struct amdgpu_ctx *ctx, struct amdgpu_ring *ring,
295 struct dma_fence *fence, uint64_t* handler)
Christian König21c16bf2015-07-07 17:24:49 +0200296{
297 struct amdgpu_ctx_ring *cring = & ctx->rings[ring->idx];
Christian Königce882e62015-08-19 15:00:55 +0200298 uint64_t seq = cring->sequence;
Chunming Zhoub43a9a72015-07-21 15:13:53 +0800299 unsigned idx = 0;
Chris Wilsonf54d1862016-10-25 13:00:45 +0100300 struct dma_fence *other = NULL;
Christian König21c16bf2015-07-07 17:24:49 +0200301
Chunming Zhou5b011232015-12-10 17:34:33 +0800302 idx = seq & (amdgpu_sched_jobs - 1);
Chunming Zhoub43a9a72015-07-21 15:13:53 +0800303 other = cring->fences[idx];
Andrey Grodzovsky0ae94442017-10-10 16:50:17 -0400304 if (other)
305 BUG_ON(!dma_fence_is_signaled(other));
Christian König21c16bf2015-07-07 17:24:49 +0200306
Chris Wilsonf54d1862016-10-25 13:00:45 +0100307 dma_fence_get(fence);
Christian König21c16bf2015-07-07 17:24:49 +0200308
309 spin_lock(&ctx->ring_lock);
310 cring->fences[idx] = fence;
Christian Königce882e62015-08-19 15:00:55 +0200311 cring->sequence++;
Christian König21c16bf2015-07-07 17:24:49 +0200312 spin_unlock(&ctx->ring_lock);
313
Chris Wilsonf54d1862016-10-25 13:00:45 +0100314 dma_fence_put(other);
Monk Liueb01abc2017-09-15 13:40:31 +0800315 if (handler)
316 *handler = seq;
Christian König21c16bf2015-07-07 17:24:49 +0200317
Monk Liueb01abc2017-09-15 13:40:31 +0800318 return 0;
Christian König21c16bf2015-07-07 17:24:49 +0200319}
320
Chris Wilsonf54d1862016-10-25 13:00:45 +0100321struct dma_fence *amdgpu_ctx_get_fence(struct amdgpu_ctx *ctx,
322 struct amdgpu_ring *ring, uint64_t seq)
Christian König21c16bf2015-07-07 17:24:49 +0200323{
324 struct amdgpu_ctx_ring *cring = & ctx->rings[ring->idx];
Chris Wilsonf54d1862016-10-25 13:00:45 +0100325 struct dma_fence *fence;
Christian König21c16bf2015-07-07 17:24:49 +0200326
327 spin_lock(&ctx->ring_lock);
Chunming Zhoub43a9a72015-07-21 15:13:53 +0800328
Monk Liud7b1eeb2017-04-07 18:39:07 +0800329 if (seq == ~0ull)
330 seq = ctx->rings[ring->idx].sequence - 1;
331
Christian Königce882e62015-08-19 15:00:55 +0200332 if (seq >= cring->sequence) {
Christian König21c16bf2015-07-07 17:24:49 +0200333 spin_unlock(&ctx->ring_lock);
334 return ERR_PTR(-EINVAL);
335 }
336
Chunming Zhoub43a9a72015-07-21 15:13:53 +0800337
Chunming Zhou37cd0ca2015-12-10 15:45:11 +0800338 if (seq + amdgpu_sched_jobs < cring->sequence) {
Christian König21c16bf2015-07-07 17:24:49 +0200339 spin_unlock(&ctx->ring_lock);
340 return NULL;
341 }
342
Chris Wilsonf54d1862016-10-25 13:00:45 +0100343 fence = dma_fence_get(cring->fences[seq & (amdgpu_sched_jobs - 1)]);
Christian König21c16bf2015-07-07 17:24:49 +0200344 spin_unlock(&ctx->ring_lock);
345
346 return fence;
347}
Christian Königefd4ccb2015-08-04 16:20:31 +0200348
Andres Rodriguezc23be4a2017-06-06 20:20:38 -0400349void amdgpu_ctx_priority_override(struct amdgpu_ctx *ctx,
350 enum amd_sched_priority priority)
351{
352 int i;
353 struct amdgpu_device *adev = ctx->adev;
354 struct amd_sched_rq *rq;
355 struct amd_sched_entity *entity;
356 struct amdgpu_ring *ring;
357 enum amd_sched_priority ctx_prio;
358
359 ctx->override_priority = priority;
360
361 ctx_prio = (ctx->override_priority == AMD_SCHED_PRIORITY_UNSET) ?
362 ctx->init_priority : ctx->override_priority;
363
364 for (i = 0; i < adev->num_rings; i++) {
365 ring = adev->rings[i];
366 entity = &ctx->rings[i].entity;
367 rq = &ring->sched.sched_rq[ctx_prio];
368
369 if (ring->funcs->type == AMDGPU_RING_TYPE_KIQ)
370 continue;
371
372 amd_sched_entity_set_rq(entity, rq);
373 }
374}
375
Andrey Grodzovsky0ae94442017-10-10 16:50:17 -0400376int amdgpu_ctx_wait_prev_fence(struct amdgpu_ctx *ctx, unsigned ring_id)
377{
378 struct amdgpu_ctx_ring *cring = &ctx->rings[ring_id];
379 unsigned idx = cring->sequence & (amdgpu_sched_jobs - 1);
380 struct dma_fence *other = cring->fences[idx];
381
382 if (other) {
383 signed long r;
384 r = dma_fence_wait_timeout(other, false, MAX_SCHEDULE_TIMEOUT);
385 if (r < 0) {
386 DRM_ERROR("Error (%ld) waiting for fence!\n", r);
387 return r;
388 }
389 }
390
391 return 0;
392}
393
Christian Königefd4ccb2015-08-04 16:20:31 +0200394void amdgpu_ctx_mgr_init(struct amdgpu_ctx_mgr *mgr)
395{
396 mutex_init(&mgr->lock);
397 idr_init(&mgr->ctx_handles);
398}
399
400void amdgpu_ctx_mgr_fini(struct amdgpu_ctx_mgr *mgr)
401{
402 struct amdgpu_ctx *ctx;
403 struct idr *idp;
404 uint32_t id;
405
406 idp = &mgr->ctx_handles;
407
408 idr_for_each_entry(idp, ctx, id) {
409 if (kref_put(&ctx->refcount, amdgpu_ctx_do_release) != 1)
410 DRM_ERROR("ctx %p is still alive\n", ctx);
411 }
412
413 idr_destroy(&mgr->ctx_handles);
414 mutex_destroy(&mgr->lock);
415}