blob: c5bb36275e9379e2ecf36318233b7fc98f44483a [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,
Lucas Stach1b1f42d2017-12-06 17:49:39 +010031 enum drm_sched_priority priority)
Andres Rodriguezc2636dc2016-12-22 17:06:50 -050032{
33 /* NORMAL and below are accessible by everyone */
Lucas Stach1b1f42d2017-12-06 17:49:39 +010034 if (priority <= DRM_SCHED_PRIORITY_NORMAL)
Andres Rodriguezc2636dc2016-12-22 17:06:50 -050035 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,
Lucas Stach1b1f42d2017-12-06 17:49:39 +010047 enum drm_sched_priority priority,
Andres Rodriguezc2636dc2016-12-22 17:06:50 -050048 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
Lucas Stach1b1f42d2017-12-06 17:49:39 +010054 if (priority < 0 || priority >= DRM_SCHED_PRIORITY_MAX)
Andres Rodriguezc2636dc2016-12-22 17:06:50 -050055 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);
Monk Liu668ca1b2017-10-17 14:39:23 +080078 ctx->reset_counter_query = ctx->reset_counter;
Christian Könige55f2b62017-10-09 15:18:43 +020079 ctx->vram_lost_counter = atomic_read(&adev->vram_lost_counter);
Andres Rodriguezc23be4a2017-06-06 20:20:38 -040080 ctx->init_priority = priority;
Lucas Stach1b1f42d2017-12-06 17:49:39 +010081 ctx->override_priority = DRM_SCHED_PRIORITY_UNSET;
Nicolai Hähnlece199ad2016-10-04 09:43:30 +020082
Chunming Zhoucadf97b2016-01-15 11:25:00 +080083 /* create context entity for each ring */
84 for (i = 0; i < adev->num_rings; i++) {
Christian König20874172016-02-11 09:56:44 +010085 struct amdgpu_ring *ring = adev->rings[i];
Lucas Stach1b1f42d2017-12-06 17:49:39 +010086 struct drm_sched_rq *rq;
Christian König20874172016-02-11 09:56:44 +010087
Andres Rodriguezc2636dc2016-12-22 17:06:50 -050088 rq = &ring->sched.sched_rq[priority];
Monk Liu75fbed22017-05-11 13:36:33 +080089
90 if (ring == &adev->gfx.kiq.ring)
91 continue;
92
Lucas Stach1b1f42d2017-12-06 17:49:39 +010093 r = drm_sched_entity_init(&ring->sched, &ctx->rings[i].entity,
Nayan Deshmukh8344c532018-03-29 22:36:32 +053094 rq, &ctx->guilty);
Chunming Zhoucadf97b2016-01-15 11:25:00 +080095 if (r)
Huang Rui8ed81472016-10-26 17:07:03 +080096 goto failed;
Chunming Zhoucadf97b2016-01-15 11:25:00 +080097 }
98
Andres Rodriguezeffd9242017-02-16 00:47:32 -050099 r = amdgpu_queue_mgr_init(adev, &ctx->queue_mgr);
100 if (r)
101 goto failed;
102
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400103 return 0;
Huang Rui8ed81472016-10-26 17:07:03 +0800104
105failed:
106 for (j = 0; j < i; j++)
Lucas Stach1b1f42d2017-12-06 17:49:39 +0100107 drm_sched_entity_fini(&adev->rings[j]->sched,
Huang Rui8ed81472016-10-26 17:07:03 +0800108 &ctx->rings[j].entity);
109 kfree(ctx->fences);
110 ctx->fences = NULL;
111 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400112}
113
Emily Deng8ee3a522018-04-16 10:07:02 +0800114static void amdgpu_ctx_fini(struct kref *ref)
Christian König47f38502015-08-04 17:51:05 +0200115{
Emily Deng8ee3a522018-04-16 10:07:02 +0800116 struct amdgpu_ctx *ctx = container_of(ref, struct amdgpu_ctx, refcount);
Christian König47f38502015-08-04 17:51:05 +0200117 struct amdgpu_device *adev = ctx->adev;
118 unsigned i, j;
119
Dave Airliefe295b22015-11-03 11:07:11 -0500120 if (!adev)
121 return;
122
Christian König47f38502015-08-04 17:51:05 +0200123 for (i = 0; i < AMDGPU_MAX_RINGS; ++i)
Chunming Zhou37cd0ca2015-12-10 15:45:11 +0800124 for (j = 0; j < amdgpu_sched_jobs; ++j)
Chris Wilsonf54d1862016-10-25 13:00:45 +0100125 dma_fence_put(ctx->rings[i].fences[j]);
Chunming Zhou37cd0ca2015-12-10 15:45:11 +0800126 kfree(ctx->fences);
Grazvydas Ignotas54ddf3a2016-09-25 23:34:46 +0300127 ctx->fences = NULL;
Christian König47f38502015-08-04 17:51:05 +0200128
Andres Rodriguezeffd9242017-02-16 00:47:32 -0500129 amdgpu_queue_mgr_fini(adev, &ctx->queue_mgr);
Andrey Grodzovsky0ae94442017-10-10 16:50:17 -0400130
131 mutex_destroy(&ctx->lock);
Emily Deng8ee3a522018-04-16 10:07:02 +0800132
133 kfree(ctx);
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,
Lucas Stach1b1f42d2017-12-06 17:49:39 +0100139 enum drm_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;
Emily Deng8ee3a522018-04-16 10:07:02 +0800172 u32 i;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400173
Christian König47f38502015-08-04 17:51:05 +0200174 ctx = container_of(ref, struct amdgpu_ctx, refcount);
175
Andrey Grodzovsky20b6b782018-05-15 14:12:21 -0400176 for (i = 0; i < ctx->adev->num_rings; i++) {
177
178 if (ctx->adev->rings[i] == &ctx->adev->gfx.kiq.ring)
179 continue;
180
Emily Deng8ee3a522018-04-16 10:07:02 +0800181 drm_sched_entity_fini(&ctx->adev->rings[i]->sched,
182 &ctx->rings[i].entity);
Andrey Grodzovsky20b6b782018-05-15 14:12:21 -0400183 }
Christian König47f38502015-08-04 17:51:05 +0200184
Emily Deng8ee3a522018-04-16 10:07:02 +0800185 amdgpu_ctx_fini(ref);
Christian König47f38502015-08-04 17:51:05 +0200186}
187
188static int amdgpu_ctx_free(struct amdgpu_fpriv *fpriv, uint32_t id)
189{
190 struct amdgpu_ctx_mgr *mgr = &fpriv->ctx_mgr;
191 struct amdgpu_ctx *ctx;
192
193 mutex_lock(&mgr->lock);
Matthew Wilcoxd3e709e2016-12-22 13:30:22 -0500194 ctx = idr_remove(&mgr->ctx_handles, id);
195 if (ctx)
Chunming Zhou23ca0e42015-07-06 13:42:58 +0800196 kref_put(&ctx->refcount, amdgpu_ctx_do_release);
Christian König47f38502015-08-04 17:51:05 +0200197 mutex_unlock(&mgr->lock);
Matthew Wilcoxd3e709e2016-12-22 13:30:22 -0500198 return ctx ? 0 : -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400199}
200
Marek Olšákd94aed52015-05-05 21:13:49 +0200201static int amdgpu_ctx_query(struct amdgpu_device *adev,
202 struct amdgpu_fpriv *fpriv, uint32_t id,
203 union drm_amdgpu_ctx_out *out)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400204{
205 struct amdgpu_ctx *ctx;
Chunming Zhou23ca0e42015-07-06 13:42:58 +0800206 struct amdgpu_ctx_mgr *mgr;
Marek Olšákd94aed52015-05-05 21:13:49 +0200207 unsigned reset_counter;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400208
Chunming Zhou23ca0e42015-07-06 13:42:58 +0800209 if (!fpriv)
210 return -EINVAL;
211
212 mgr = &fpriv->ctx_mgr;
Marek Olšák0147ee02015-05-05 20:52:00 +0200213 mutex_lock(&mgr->lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400214 ctx = idr_find(&mgr->ctx_handles, id);
Marek Olšákd94aed52015-05-05 21:13:49 +0200215 if (!ctx) {
Marek Olšák0147ee02015-05-05 20:52:00 +0200216 mutex_unlock(&mgr->lock);
Marek Olšákd94aed52015-05-05 21:13:49 +0200217 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400218 }
Marek Olšákd94aed52015-05-05 21:13:49 +0200219
220 /* TODO: these two are always zero */
Alex Deucher0b492a42015-08-16 22:48:26 -0400221 out->state.flags = 0x0;
222 out->state.hangs = 0x0;
Marek Olšákd94aed52015-05-05 21:13:49 +0200223
224 /* determine if a GPU reset has occured since the last call */
225 reset_counter = atomic_read(&adev->gpu_reset_counter);
226 /* TODO: this should ideally return NO, GUILTY, or INNOCENT. */
Monk Liu668ca1b2017-10-17 14:39:23 +0800227 if (ctx->reset_counter_query == reset_counter)
Marek Olšákd94aed52015-05-05 21:13:49 +0200228 out->state.reset_status = AMDGPU_CTX_NO_RESET;
229 else
230 out->state.reset_status = AMDGPU_CTX_UNKNOWN_RESET;
Monk Liu668ca1b2017-10-17 14:39:23 +0800231 ctx->reset_counter_query = reset_counter;
Marek Olšákd94aed52015-05-05 21:13:49 +0200232
Marek Olšák0147ee02015-05-05 20:52:00 +0200233 mutex_unlock(&mgr->lock);
Marek Olšákd94aed52015-05-05 21:13:49 +0200234 return 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400235}
236
Monk Liubc1b1bf2017-10-17 14:58:01 +0800237static int amdgpu_ctx_query2(struct amdgpu_device *adev,
238 struct amdgpu_fpriv *fpriv, uint32_t id,
239 union drm_amdgpu_ctx_out *out)
240{
241 struct amdgpu_ctx *ctx;
242 struct amdgpu_ctx_mgr *mgr;
243
244 if (!fpriv)
245 return -EINVAL;
246
247 mgr = &fpriv->ctx_mgr;
248 mutex_lock(&mgr->lock);
249 ctx = idr_find(&mgr->ctx_handles, id);
250 if (!ctx) {
251 mutex_unlock(&mgr->lock);
252 return -EINVAL;
253 }
254
255 out->state.flags = 0x0;
256 out->state.hangs = 0x0;
257
258 if (ctx->reset_counter != atomic_read(&adev->gpu_reset_counter))
259 out->state.flags |= AMDGPU_CTX_QUERY2_FLAGS_RESET;
260
261 if (ctx->vram_lost_counter != atomic_read(&adev->vram_lost_counter))
262 out->state.flags |= AMDGPU_CTX_QUERY2_FLAGS_VRAMLOST;
263
264 if (atomic_read(&ctx->guilty))
265 out->state.flags |= AMDGPU_CTX_QUERY2_FLAGS_GUILTY;
266
267 mutex_unlock(&mgr->lock);
268 return 0;
269}
270
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400271int amdgpu_ctx_ioctl(struct drm_device *dev, void *data,
Marek Olšákd94aed52015-05-05 21:13:49 +0200272 struct drm_file *filp)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400273{
274 int r;
275 uint32_t id;
Lucas Stach1b1f42d2017-12-06 17:49:39 +0100276 enum drm_sched_priority priority;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400277
278 union drm_amdgpu_ctx *args = data;
279 struct amdgpu_device *adev = dev->dev_private;
280 struct amdgpu_fpriv *fpriv = filp->driver_priv;
281
282 r = 0;
283 id = args->in.ctx_id;
Andres Rodriguezc2636dc2016-12-22 17:06:50 -0500284 priority = amdgpu_to_sched_priority(args->in.priority);
285
Andres Rodriguezb6d8a432017-05-24 17:00:10 -0400286 /* For backwards compatibility reasons, we need to accept
287 * ioctls with garbage in the priority field */
Lucas Stach1b1f42d2017-12-06 17:49:39 +0100288 if (priority == DRM_SCHED_PRIORITY_INVALID)
289 priority = DRM_SCHED_PRIORITY_NORMAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400290
291 switch (args->in.op) {
Christian Königa750b472016-02-11 10:20:53 +0100292 case AMDGPU_CTX_OP_ALLOC_CTX:
Andres Rodriguezc2636dc2016-12-22 17:06:50 -0500293 r = amdgpu_ctx_alloc(adev, fpriv, filp, priority, &id);
Christian Königa750b472016-02-11 10:20:53 +0100294 args->out.alloc.ctx_id = id;
295 break;
296 case AMDGPU_CTX_OP_FREE_CTX:
297 r = amdgpu_ctx_free(fpriv, id);
298 break;
299 case AMDGPU_CTX_OP_QUERY_STATE:
300 r = amdgpu_ctx_query(adev, fpriv, id, &args->out);
301 break;
Monk Liubc1b1bf2017-10-17 14:58:01 +0800302 case AMDGPU_CTX_OP_QUERY_STATE2:
303 r = amdgpu_ctx_query2(adev, fpriv, id, &args->out);
304 break;
Christian Königa750b472016-02-11 10:20:53 +0100305 default:
306 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400307 }
308
309 return r;
310}
Jammy Zhou66b3cf22015-05-08 17:29:40 +0800311
312struct amdgpu_ctx *amdgpu_ctx_get(struct amdgpu_fpriv *fpriv, uint32_t id)
313{
314 struct amdgpu_ctx *ctx;
Chunming Zhou23ca0e42015-07-06 13:42:58 +0800315 struct amdgpu_ctx_mgr *mgr;
316
317 if (!fpriv)
318 return NULL;
319
320 mgr = &fpriv->ctx_mgr;
Jammy Zhou66b3cf22015-05-08 17:29:40 +0800321
322 mutex_lock(&mgr->lock);
323 ctx = idr_find(&mgr->ctx_handles, id);
324 if (ctx)
325 kref_get(&ctx->refcount);
326 mutex_unlock(&mgr->lock);
327 return ctx;
328}
329
330int amdgpu_ctx_put(struct amdgpu_ctx *ctx)
331{
Jammy Zhou66b3cf22015-05-08 17:29:40 +0800332 if (ctx == NULL)
333 return -EINVAL;
334
Jammy Zhou66b3cf22015-05-08 17:29:40 +0800335 kref_put(&ctx->refcount, amdgpu_ctx_do_release);
Jammy Zhou66b3cf22015-05-08 17:29:40 +0800336 return 0;
337}
Christian König21c16bf2015-07-07 17:24:49 +0200338
Monk Liueb01abc2017-09-15 13:40:31 +0800339int amdgpu_ctx_add_fence(struct amdgpu_ctx *ctx, struct amdgpu_ring *ring,
340 struct dma_fence *fence, uint64_t* handler)
Christian König21c16bf2015-07-07 17:24:49 +0200341{
342 struct amdgpu_ctx_ring *cring = & ctx->rings[ring->idx];
Christian Königce882e62015-08-19 15:00:55 +0200343 uint64_t seq = cring->sequence;
Chunming Zhoub43a9a72015-07-21 15:13:53 +0800344 unsigned idx = 0;
Chris Wilsonf54d1862016-10-25 13:00:45 +0100345 struct dma_fence *other = NULL;
Christian König21c16bf2015-07-07 17:24:49 +0200346
Chunming Zhou5b011232015-12-10 17:34:33 +0800347 idx = seq & (amdgpu_sched_jobs - 1);
Chunming Zhoub43a9a72015-07-21 15:13:53 +0800348 other = cring->fences[idx];
Andrey Grodzovsky0ae94442017-10-10 16:50:17 -0400349 if (other)
350 BUG_ON(!dma_fence_is_signaled(other));
Christian König21c16bf2015-07-07 17:24:49 +0200351
Chris Wilsonf54d1862016-10-25 13:00:45 +0100352 dma_fence_get(fence);
Christian König21c16bf2015-07-07 17:24:49 +0200353
354 spin_lock(&ctx->ring_lock);
355 cring->fences[idx] = fence;
Christian Königce882e62015-08-19 15:00:55 +0200356 cring->sequence++;
Christian König21c16bf2015-07-07 17:24:49 +0200357 spin_unlock(&ctx->ring_lock);
358
Chris Wilsonf54d1862016-10-25 13:00:45 +0100359 dma_fence_put(other);
Monk Liueb01abc2017-09-15 13:40:31 +0800360 if (handler)
361 *handler = seq;
Christian König21c16bf2015-07-07 17:24:49 +0200362
Monk Liueb01abc2017-09-15 13:40:31 +0800363 return 0;
Christian König21c16bf2015-07-07 17:24:49 +0200364}
365
Chris Wilsonf54d1862016-10-25 13:00:45 +0100366struct dma_fence *amdgpu_ctx_get_fence(struct amdgpu_ctx *ctx,
367 struct amdgpu_ring *ring, uint64_t seq)
Christian König21c16bf2015-07-07 17:24:49 +0200368{
369 struct amdgpu_ctx_ring *cring = & ctx->rings[ring->idx];
Chris Wilsonf54d1862016-10-25 13:00:45 +0100370 struct dma_fence *fence;
Christian König21c16bf2015-07-07 17:24:49 +0200371
372 spin_lock(&ctx->ring_lock);
Chunming Zhoub43a9a72015-07-21 15:13:53 +0800373
Monk Liud7b1eeb2017-04-07 18:39:07 +0800374 if (seq == ~0ull)
375 seq = ctx->rings[ring->idx].sequence - 1;
376
Christian Königce882e62015-08-19 15:00:55 +0200377 if (seq >= cring->sequence) {
Christian König21c16bf2015-07-07 17:24:49 +0200378 spin_unlock(&ctx->ring_lock);
379 return ERR_PTR(-EINVAL);
380 }
381
Chunming Zhoub43a9a72015-07-21 15:13:53 +0800382
Chunming Zhou37cd0ca2015-12-10 15:45:11 +0800383 if (seq + amdgpu_sched_jobs < cring->sequence) {
Christian König21c16bf2015-07-07 17:24:49 +0200384 spin_unlock(&ctx->ring_lock);
385 return NULL;
386 }
387
Chris Wilsonf54d1862016-10-25 13:00:45 +0100388 fence = dma_fence_get(cring->fences[seq & (amdgpu_sched_jobs - 1)]);
Christian König21c16bf2015-07-07 17:24:49 +0200389 spin_unlock(&ctx->ring_lock);
390
391 return fence;
392}
Christian Königefd4ccb2015-08-04 16:20:31 +0200393
Andres Rodriguezc23be4a2017-06-06 20:20:38 -0400394void amdgpu_ctx_priority_override(struct amdgpu_ctx *ctx,
Lucas Stach1b1f42d2017-12-06 17:49:39 +0100395 enum drm_sched_priority priority)
Andres Rodriguezc23be4a2017-06-06 20:20:38 -0400396{
397 int i;
398 struct amdgpu_device *adev = ctx->adev;
Lucas Stach1b1f42d2017-12-06 17:49:39 +0100399 struct drm_sched_rq *rq;
400 struct drm_sched_entity *entity;
Andres Rodriguezc23be4a2017-06-06 20:20:38 -0400401 struct amdgpu_ring *ring;
Lucas Stach1b1f42d2017-12-06 17:49:39 +0100402 enum drm_sched_priority ctx_prio;
Andres Rodriguezc23be4a2017-06-06 20:20:38 -0400403
404 ctx->override_priority = priority;
405
Lucas Stach1b1f42d2017-12-06 17:49:39 +0100406 ctx_prio = (ctx->override_priority == DRM_SCHED_PRIORITY_UNSET) ?
Andres Rodriguezc23be4a2017-06-06 20:20:38 -0400407 ctx->init_priority : ctx->override_priority;
408
409 for (i = 0; i < adev->num_rings; i++) {
410 ring = adev->rings[i];
411 entity = &ctx->rings[i].entity;
412 rq = &ring->sched.sched_rq[ctx_prio];
413
414 if (ring->funcs->type == AMDGPU_RING_TYPE_KIQ)
415 continue;
416
Lucas Stach1b1f42d2017-12-06 17:49:39 +0100417 drm_sched_entity_set_rq(entity, rq);
Andres Rodriguezc23be4a2017-06-06 20:20:38 -0400418 }
419}
420
Andrey Grodzovsky0ae94442017-10-10 16:50:17 -0400421int amdgpu_ctx_wait_prev_fence(struct amdgpu_ctx *ctx, unsigned ring_id)
422{
423 struct amdgpu_ctx_ring *cring = &ctx->rings[ring_id];
424 unsigned idx = cring->sequence & (amdgpu_sched_jobs - 1);
425 struct dma_fence *other = cring->fences[idx];
426
427 if (other) {
428 signed long r;
Andrey Grodzovsky719a39a2018-04-30 10:04:42 -0400429 r = dma_fence_wait(other, true);
Andrey Grodzovsky0ae94442017-10-10 16:50:17 -0400430 if (r < 0) {
Andrey Grodzovsky719a39a2018-04-30 10:04:42 -0400431 if (r != -ERESTARTSYS)
432 DRM_ERROR("Error (%ld) waiting for fence!\n", r);
433
Andrey Grodzovsky0ae94442017-10-10 16:50:17 -0400434 return r;
435 }
436 }
437
438 return 0;
439}
440
Christian Königefd4ccb2015-08-04 16:20:31 +0200441void amdgpu_ctx_mgr_init(struct amdgpu_ctx_mgr *mgr)
442{
443 mutex_init(&mgr->lock);
444 idr_init(&mgr->ctx_handles);
445}
446
Emily Deng8ee3a522018-04-16 10:07:02 +0800447void amdgpu_ctx_mgr_entity_fini(struct amdgpu_ctx_mgr *mgr)
448{
449 struct amdgpu_ctx *ctx;
450 struct idr *idp;
451 uint32_t id, i;
452
453 idp = &mgr->ctx_handles;
454
455 idr_for_each_entry(idp, ctx, id) {
456
457 if (!ctx->adev)
458 return;
459
Andrey Grodzovsky20b6b782018-05-15 14:12:21 -0400460 for (i = 0; i < ctx->adev->num_rings; i++) {
461
462 if (ctx->adev->rings[i] == &ctx->adev->gfx.kiq.ring)
463 continue;
464
Emily Deng8ee3a522018-04-16 10:07:02 +0800465 if (kref_read(&ctx->refcount) == 1)
466 drm_sched_entity_do_release(&ctx->adev->rings[i]->sched,
467 &ctx->rings[i].entity);
468 else
469 DRM_ERROR("ctx %p is still alive\n", ctx);
Andrey Grodzovsky20b6b782018-05-15 14:12:21 -0400470 }
Emily Deng8ee3a522018-04-16 10:07:02 +0800471 }
472}
473
474void amdgpu_ctx_mgr_entity_cleanup(struct amdgpu_ctx_mgr *mgr)
475{
476 struct amdgpu_ctx *ctx;
477 struct idr *idp;
478 uint32_t id, i;
479
480 idp = &mgr->ctx_handles;
481
482 idr_for_each_entry(idp, ctx, id) {
483
484 if (!ctx->adev)
485 return;
486
Andrey Grodzovsky20b6b782018-05-15 14:12:21 -0400487 for (i = 0; i < ctx->adev->num_rings; i++) {
488
489 if (ctx->adev->rings[i] == &ctx->adev->gfx.kiq.ring)
490 continue;
491
Emily Deng8ee3a522018-04-16 10:07:02 +0800492 if (kref_read(&ctx->refcount) == 1)
493 drm_sched_entity_cleanup(&ctx->adev->rings[i]->sched,
494 &ctx->rings[i].entity);
495 else
496 DRM_ERROR("ctx %p is still alive\n", ctx);
Andrey Grodzovsky20b6b782018-05-15 14:12:21 -0400497 }
Emily Deng8ee3a522018-04-16 10:07:02 +0800498 }
499}
500
Christian Königefd4ccb2015-08-04 16:20:31 +0200501void amdgpu_ctx_mgr_fini(struct amdgpu_ctx_mgr *mgr)
502{
503 struct amdgpu_ctx *ctx;
504 struct idr *idp;
505 uint32_t id;
506
Emily Deng8ee3a522018-04-16 10:07:02 +0800507 amdgpu_ctx_mgr_entity_cleanup(mgr);
508
Christian Königefd4ccb2015-08-04 16:20:31 +0200509 idp = &mgr->ctx_handles;
510
511 idr_for_each_entry(idp, ctx, id) {
Emily Deng8ee3a522018-04-16 10:07:02 +0800512 if (kref_put(&ctx->refcount, amdgpu_ctx_fini) != 1)
Christian Königefd4ccb2015-08-04 16:20:31 +0200513 DRM_ERROR("ctx %p is still alive\n", ctx);
514 }
515
516 idr_destroy(&mgr->ctx_handles);
517 mutex_destroy(&mgr->lock);
518}