blob: a11e44340b2398091692c2a28320b574e049d481 [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,
Chris Wilsonf54d1862016-10-25 13:00:45 +010038 sizeof(struct dma_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];
Monk Liu75fbed22017-05-11 13:36:33 +080055
56 if (ring == &adev->gfx.kiq.ring)
57 continue;
58
Christian König20874172016-02-11 09:56:44 +010059 r = amd_sched_entity_init(&ring->sched, &ctx->rings[i].entity,
Chunming Zhoucadf97b2016-01-15 11:25:00 +080060 rq, amdgpu_sched_jobs);
61 if (r)
Huang Rui8ed81472016-10-26 17:07:03 +080062 goto failed;
Chunming Zhoucadf97b2016-01-15 11:25:00 +080063 }
64
Andres Rodriguezeffd9242017-02-16 00:47:32 -050065 r = amdgpu_queue_mgr_init(adev, &ctx->queue_mgr);
66 if (r)
67 goto failed;
68
Alex Deucherd38ceaf2015-04-20 16:55:21 -040069 return 0;
Huang Rui8ed81472016-10-26 17:07:03 +080070
71failed:
72 for (j = 0; j < i; j++)
73 amd_sched_entity_fini(&adev->rings[j]->sched,
74 &ctx->rings[j].entity);
75 kfree(ctx->fences);
76 ctx->fences = NULL;
77 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -040078}
79
Christian König20874172016-02-11 09:56:44 +010080static void amdgpu_ctx_fini(struct amdgpu_ctx *ctx)
Christian König47f38502015-08-04 17:51:05 +020081{
82 struct amdgpu_device *adev = ctx->adev;
83 unsigned i, j;
84
Dave Airliefe295b22015-11-03 11:07:11 -050085 if (!adev)
86 return;
87
Christian König47f38502015-08-04 17:51:05 +020088 for (i = 0; i < AMDGPU_MAX_RINGS; ++i)
Chunming Zhou37cd0ca2015-12-10 15:45:11 +080089 for (j = 0; j < amdgpu_sched_jobs; ++j)
Chris Wilsonf54d1862016-10-25 13:00:45 +010090 dma_fence_put(ctx->rings[i].fences[j]);
Chunming Zhou37cd0ca2015-12-10 15:45:11 +080091 kfree(ctx->fences);
Grazvydas Ignotas54ddf3a2016-09-25 23:34:46 +030092 ctx->fences = NULL;
Christian König47f38502015-08-04 17:51:05 +020093
Chunming Zhoucadf97b2016-01-15 11:25:00 +080094 for (i = 0; i < adev->num_rings; i++)
95 amd_sched_entity_fini(&adev->rings[i]->sched,
96 &ctx->rings[i].entity);
Andres Rodriguezeffd9242017-02-16 00:47:32 -050097
98 amdgpu_queue_mgr_fini(adev, &ctx->queue_mgr);
Christian König47f38502015-08-04 17:51:05 +020099}
100
101static int amdgpu_ctx_alloc(struct amdgpu_device *adev,
102 struct amdgpu_fpriv *fpriv,
103 uint32_t *id)
104{
105 struct amdgpu_ctx_mgr *mgr = &fpriv->ctx_mgr;
106 struct amdgpu_ctx *ctx;
107 int r;
108
109 ctx = kmalloc(sizeof(*ctx), GFP_KERNEL);
110 if (!ctx)
111 return -ENOMEM;
112
113 mutex_lock(&mgr->lock);
114 r = idr_alloc(&mgr->ctx_handles, ctx, 1, 0, GFP_KERNEL);
115 if (r < 0) {
116 mutex_unlock(&mgr->lock);
117 kfree(ctx);
118 return r;
119 }
120 *id = (uint32_t)r;
Christian König20874172016-02-11 09:56:44 +0100121 r = amdgpu_ctx_init(adev, ctx);
Chunming Zhouc648ed72015-12-10 15:50:02 +0800122 if (r) {
123 idr_remove(&mgr->ctx_handles, *id);
124 *id = 0;
125 kfree(ctx);
126 }
Christian König47f38502015-08-04 17:51:05 +0200127 mutex_unlock(&mgr->lock);
Christian König47f38502015-08-04 17:51:05 +0200128 return r;
129}
130
131static void amdgpu_ctx_do_release(struct kref *ref)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400132{
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400133 struct amdgpu_ctx *ctx;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400134
Christian König47f38502015-08-04 17:51:05 +0200135 ctx = container_of(ref, struct amdgpu_ctx, refcount);
136
137 amdgpu_ctx_fini(ctx);
138
139 kfree(ctx);
140}
141
142static int amdgpu_ctx_free(struct amdgpu_fpriv *fpriv, uint32_t id)
143{
144 struct amdgpu_ctx_mgr *mgr = &fpriv->ctx_mgr;
145 struct amdgpu_ctx *ctx;
146
147 mutex_lock(&mgr->lock);
Matthew Wilcoxd3e709e2016-12-22 13:30:22 -0500148 ctx = idr_remove(&mgr->ctx_handles, id);
149 if (ctx)
Chunming Zhou23ca0e42015-07-06 13:42:58 +0800150 kref_put(&ctx->refcount, amdgpu_ctx_do_release);
Christian König47f38502015-08-04 17:51:05 +0200151 mutex_unlock(&mgr->lock);
Matthew Wilcoxd3e709e2016-12-22 13:30:22 -0500152 return ctx ? 0 : -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400153}
154
Marek Olšákd94aed52015-05-05 21:13:49 +0200155static int amdgpu_ctx_query(struct amdgpu_device *adev,
156 struct amdgpu_fpriv *fpriv, uint32_t id,
157 union drm_amdgpu_ctx_out *out)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400158{
159 struct amdgpu_ctx *ctx;
Chunming Zhou23ca0e42015-07-06 13:42:58 +0800160 struct amdgpu_ctx_mgr *mgr;
Marek Olšákd94aed52015-05-05 21:13:49 +0200161 unsigned reset_counter;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400162
Chunming Zhou23ca0e42015-07-06 13:42:58 +0800163 if (!fpriv)
164 return -EINVAL;
165
166 mgr = &fpriv->ctx_mgr;
Marek Olšák0147ee02015-05-05 20:52:00 +0200167 mutex_lock(&mgr->lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400168 ctx = idr_find(&mgr->ctx_handles, id);
Marek Olšákd94aed52015-05-05 21:13:49 +0200169 if (!ctx) {
Marek Olšák0147ee02015-05-05 20:52:00 +0200170 mutex_unlock(&mgr->lock);
Marek Olšákd94aed52015-05-05 21:13:49 +0200171 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400172 }
Marek Olšákd94aed52015-05-05 21:13:49 +0200173
174 /* TODO: these two are always zero */
Alex Deucher0b492a42015-08-16 22:48:26 -0400175 out->state.flags = 0x0;
176 out->state.hangs = 0x0;
Marek Olšákd94aed52015-05-05 21:13:49 +0200177
178 /* determine if a GPU reset has occured since the last call */
179 reset_counter = atomic_read(&adev->gpu_reset_counter);
180 /* TODO: this should ideally return NO, GUILTY, or INNOCENT. */
181 if (ctx->reset_counter == reset_counter)
182 out->state.reset_status = AMDGPU_CTX_NO_RESET;
183 else
184 out->state.reset_status = AMDGPU_CTX_UNKNOWN_RESET;
185 ctx->reset_counter = reset_counter;
186
Marek Olšák0147ee02015-05-05 20:52:00 +0200187 mutex_unlock(&mgr->lock);
Marek Olšákd94aed52015-05-05 21:13:49 +0200188 return 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400189}
190
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400191int amdgpu_ctx_ioctl(struct drm_device *dev, void *data,
Marek Olšákd94aed52015-05-05 21:13:49 +0200192 struct drm_file *filp)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400193{
194 int r;
195 uint32_t id;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400196
197 union drm_amdgpu_ctx *args = data;
198 struct amdgpu_device *adev = dev->dev_private;
199 struct amdgpu_fpriv *fpriv = filp->driver_priv;
200
201 r = 0;
202 id = args->in.ctx_id;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400203
204 switch (args->in.op) {
Christian Königa750b472016-02-11 10:20:53 +0100205 case AMDGPU_CTX_OP_ALLOC_CTX:
206 r = amdgpu_ctx_alloc(adev, fpriv, &id);
207 args->out.alloc.ctx_id = id;
208 break;
209 case AMDGPU_CTX_OP_FREE_CTX:
210 r = amdgpu_ctx_free(fpriv, id);
211 break;
212 case AMDGPU_CTX_OP_QUERY_STATE:
213 r = amdgpu_ctx_query(adev, fpriv, id, &args->out);
214 break;
215 default:
216 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400217 }
218
219 return r;
220}
Jammy Zhou66b3cf22015-05-08 17:29:40 +0800221
222struct amdgpu_ctx *amdgpu_ctx_get(struct amdgpu_fpriv *fpriv, uint32_t id)
223{
224 struct amdgpu_ctx *ctx;
Chunming Zhou23ca0e42015-07-06 13:42:58 +0800225 struct amdgpu_ctx_mgr *mgr;
226
227 if (!fpriv)
228 return NULL;
229
230 mgr = &fpriv->ctx_mgr;
Jammy Zhou66b3cf22015-05-08 17:29:40 +0800231
232 mutex_lock(&mgr->lock);
233 ctx = idr_find(&mgr->ctx_handles, id);
234 if (ctx)
235 kref_get(&ctx->refcount);
236 mutex_unlock(&mgr->lock);
237 return ctx;
238}
239
240int amdgpu_ctx_put(struct amdgpu_ctx *ctx)
241{
Jammy Zhou66b3cf22015-05-08 17:29:40 +0800242 if (ctx == NULL)
243 return -EINVAL;
244
Jammy Zhou66b3cf22015-05-08 17:29:40 +0800245 kref_put(&ctx->refcount, amdgpu_ctx_do_release);
Jammy Zhou66b3cf22015-05-08 17:29:40 +0800246 return 0;
247}
Christian König21c16bf2015-07-07 17:24:49 +0200248
249uint64_t amdgpu_ctx_add_fence(struct amdgpu_ctx *ctx, struct amdgpu_ring *ring,
Chris Wilsonf54d1862016-10-25 13:00:45 +0100250 struct dma_fence *fence)
Christian König21c16bf2015-07-07 17:24:49 +0200251{
252 struct amdgpu_ctx_ring *cring = & ctx->rings[ring->idx];
Christian Königce882e62015-08-19 15:00:55 +0200253 uint64_t seq = cring->sequence;
Chunming Zhoub43a9a72015-07-21 15:13:53 +0800254 unsigned idx = 0;
Chris Wilsonf54d1862016-10-25 13:00:45 +0100255 struct dma_fence *other = NULL;
Christian König21c16bf2015-07-07 17:24:49 +0200256
Chunming Zhou5b011232015-12-10 17:34:33 +0800257 idx = seq & (amdgpu_sched_jobs - 1);
Chunming Zhoub43a9a72015-07-21 15:13:53 +0800258 other = cring->fences[idx];
Christian König21c16bf2015-07-07 17:24:49 +0200259 if (other) {
260 signed long r;
Chris Wilsonf54d1862016-10-25 13:00:45 +0100261 r = dma_fence_wait_timeout(other, false, MAX_SCHEDULE_TIMEOUT);
Christian König21c16bf2015-07-07 17:24:49 +0200262 if (r < 0)
263 DRM_ERROR("Error (%ld) waiting for fence!\n", r);
264 }
265
Chris Wilsonf54d1862016-10-25 13:00:45 +0100266 dma_fence_get(fence);
Christian König21c16bf2015-07-07 17:24:49 +0200267
268 spin_lock(&ctx->ring_lock);
269 cring->fences[idx] = fence;
Christian Königce882e62015-08-19 15:00:55 +0200270 cring->sequence++;
Christian König21c16bf2015-07-07 17:24:49 +0200271 spin_unlock(&ctx->ring_lock);
272
Chris Wilsonf54d1862016-10-25 13:00:45 +0100273 dma_fence_put(other);
Christian König21c16bf2015-07-07 17:24:49 +0200274
275 return seq;
276}
277
Chris Wilsonf54d1862016-10-25 13:00:45 +0100278struct dma_fence *amdgpu_ctx_get_fence(struct amdgpu_ctx *ctx,
279 struct amdgpu_ring *ring, uint64_t seq)
Christian König21c16bf2015-07-07 17:24:49 +0200280{
281 struct amdgpu_ctx_ring *cring = & ctx->rings[ring->idx];
Chris Wilsonf54d1862016-10-25 13:00:45 +0100282 struct dma_fence *fence;
Christian König21c16bf2015-07-07 17:24:49 +0200283
284 spin_lock(&ctx->ring_lock);
Chunming Zhoub43a9a72015-07-21 15:13:53 +0800285
Monk Liud7b1eeb2017-04-07 18:39:07 +0800286 if (seq == ~0ull)
287 seq = ctx->rings[ring->idx].sequence - 1;
288
Christian Königce882e62015-08-19 15:00:55 +0200289 if (seq >= cring->sequence) {
Christian König21c16bf2015-07-07 17:24:49 +0200290 spin_unlock(&ctx->ring_lock);
291 return ERR_PTR(-EINVAL);
292 }
293
Chunming Zhoub43a9a72015-07-21 15:13:53 +0800294
Chunming Zhou37cd0ca2015-12-10 15:45:11 +0800295 if (seq + amdgpu_sched_jobs < cring->sequence) {
Christian König21c16bf2015-07-07 17:24:49 +0200296 spin_unlock(&ctx->ring_lock);
297 return NULL;
298 }
299
Chris Wilsonf54d1862016-10-25 13:00:45 +0100300 fence = dma_fence_get(cring->fences[seq & (amdgpu_sched_jobs - 1)]);
Christian König21c16bf2015-07-07 17:24:49 +0200301 spin_unlock(&ctx->ring_lock);
302
303 return fence;
304}
Christian Königefd4ccb2015-08-04 16:20:31 +0200305
306void amdgpu_ctx_mgr_init(struct amdgpu_ctx_mgr *mgr)
307{
308 mutex_init(&mgr->lock);
309 idr_init(&mgr->ctx_handles);
310}
311
312void amdgpu_ctx_mgr_fini(struct amdgpu_ctx_mgr *mgr)
313{
314 struct amdgpu_ctx *ctx;
315 struct idr *idp;
316 uint32_t id;
317
318 idp = &mgr->ctx_handles;
319
320 idr_for_each_entry(idp, ctx, id) {
321 if (kref_put(&ctx->refcount, amdgpu_ctx_do_release) != 1)
322 DRM_ERROR("ctx %p is still alive\n", ctx);
323 }
324
325 idr_destroy(&mgr->ctx_handles);
326 mutex_destroy(&mgr->lock);
327}