blob: e203e5561107146badbb45a2260763c87e06f8e0 [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 }
Chunming Zhoucadf97b2016-01-15 11:25:00 +080046 /* create context entity for each ring */
47 for (i = 0; i < adev->num_rings; i++) {
Christian König20874172016-02-11 09:56:44 +010048 struct amdgpu_ring *ring = adev->rings[i];
Chunming Zhoucadf97b2016-01-15 11:25:00 +080049 struct amd_sched_rq *rq;
Christian König20874172016-02-11 09:56:44 +010050
51 rq = &ring->sched.sched_rq[AMD_SCHED_PRIORITY_NORMAL];
52 r = amd_sched_entity_init(&ring->sched, &ctx->rings[i].entity,
Chunming Zhoucadf97b2016-01-15 11:25:00 +080053 rq, amdgpu_sched_jobs);
54 if (r)
55 break;
56 }
57
58 if (i < adev->num_rings) {
59 for (j = 0; j < i; j++)
60 amd_sched_entity_fini(&adev->rings[j]->sched,
61 &ctx->rings[j].entity);
62 kfree(ctx->fences);
Grazvydas Ignotas54ddf3a2016-09-25 23:34:46 +030063 ctx->fences = NULL;
Chunming Zhoucadf97b2016-01-15 11:25:00 +080064 return r;
Chunming Zhou9cb7e5a2015-07-21 13:17:19 +080065 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -040066 return 0;
67}
68
Christian König20874172016-02-11 09:56:44 +010069static void amdgpu_ctx_fini(struct amdgpu_ctx *ctx)
Christian König47f38502015-08-04 17:51:05 +020070{
71 struct amdgpu_device *adev = ctx->adev;
72 unsigned i, j;
73
Dave Airliefe295b22015-11-03 11:07:11 -050074 if (!adev)
75 return;
76
Christian König47f38502015-08-04 17:51:05 +020077 for (i = 0; i < AMDGPU_MAX_RINGS; ++i)
Chunming Zhou37cd0ca2015-12-10 15:45:11 +080078 for (j = 0; j < amdgpu_sched_jobs; ++j)
Christian König47f38502015-08-04 17:51:05 +020079 fence_put(ctx->rings[i].fences[j]);
Chunming Zhou37cd0ca2015-12-10 15:45:11 +080080 kfree(ctx->fences);
Grazvydas Ignotas54ddf3a2016-09-25 23:34:46 +030081 ctx->fences = NULL;
Christian König47f38502015-08-04 17:51:05 +020082
Chunming Zhoucadf97b2016-01-15 11:25:00 +080083 for (i = 0; i < adev->num_rings; i++)
84 amd_sched_entity_fini(&adev->rings[i]->sched,
85 &ctx->rings[i].entity);
Christian König47f38502015-08-04 17:51:05 +020086}
87
88static int amdgpu_ctx_alloc(struct amdgpu_device *adev,
89 struct amdgpu_fpriv *fpriv,
90 uint32_t *id)
91{
92 struct amdgpu_ctx_mgr *mgr = &fpriv->ctx_mgr;
93 struct amdgpu_ctx *ctx;
94 int r;
95
96 ctx = kmalloc(sizeof(*ctx), GFP_KERNEL);
97 if (!ctx)
98 return -ENOMEM;
99
100 mutex_lock(&mgr->lock);
101 r = idr_alloc(&mgr->ctx_handles, ctx, 1, 0, GFP_KERNEL);
102 if (r < 0) {
103 mutex_unlock(&mgr->lock);
104 kfree(ctx);
105 return r;
106 }
107 *id = (uint32_t)r;
Christian König20874172016-02-11 09:56:44 +0100108 r = amdgpu_ctx_init(adev, ctx);
Chunming Zhouc648ed72015-12-10 15:50:02 +0800109 if (r) {
110 idr_remove(&mgr->ctx_handles, *id);
111 *id = 0;
112 kfree(ctx);
113 }
Christian König47f38502015-08-04 17:51:05 +0200114 mutex_unlock(&mgr->lock);
Christian König47f38502015-08-04 17:51:05 +0200115 return r;
116}
117
118static void amdgpu_ctx_do_release(struct kref *ref)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400119{
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400120 struct amdgpu_ctx *ctx;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400121
Christian König47f38502015-08-04 17:51:05 +0200122 ctx = container_of(ref, struct amdgpu_ctx, refcount);
123
124 amdgpu_ctx_fini(ctx);
125
126 kfree(ctx);
127}
128
129static int amdgpu_ctx_free(struct amdgpu_fpriv *fpriv, uint32_t id)
130{
131 struct amdgpu_ctx_mgr *mgr = &fpriv->ctx_mgr;
132 struct amdgpu_ctx *ctx;
133
134 mutex_lock(&mgr->lock);
135 ctx = idr_find(&mgr->ctx_handles, id);
136 if (ctx) {
137 idr_remove(&mgr->ctx_handles, id);
Chunming Zhou23ca0e42015-07-06 13:42:58 +0800138 kref_put(&ctx->refcount, amdgpu_ctx_do_release);
Christian König47f38502015-08-04 17:51:05 +0200139 mutex_unlock(&mgr->lock);
Marek Olšákf11358d2015-05-05 00:56:45 +0200140 return 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400141 }
Christian König47f38502015-08-04 17:51:05 +0200142 mutex_unlock(&mgr->lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400143 return -EINVAL;
144}
145
Marek Olšákd94aed52015-05-05 21:13:49 +0200146static int amdgpu_ctx_query(struct amdgpu_device *adev,
147 struct amdgpu_fpriv *fpriv, uint32_t id,
148 union drm_amdgpu_ctx_out *out)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400149{
150 struct amdgpu_ctx *ctx;
Chunming Zhou23ca0e42015-07-06 13:42:58 +0800151 struct amdgpu_ctx_mgr *mgr;
Marek Olšákd94aed52015-05-05 21:13:49 +0200152 unsigned reset_counter;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400153
Chunming Zhou23ca0e42015-07-06 13:42:58 +0800154 if (!fpriv)
155 return -EINVAL;
156
157 mgr = &fpriv->ctx_mgr;
Marek Olšák0147ee02015-05-05 20:52:00 +0200158 mutex_lock(&mgr->lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400159 ctx = idr_find(&mgr->ctx_handles, id);
Marek Olšákd94aed52015-05-05 21:13:49 +0200160 if (!ctx) {
Marek Olšák0147ee02015-05-05 20:52:00 +0200161 mutex_unlock(&mgr->lock);
Marek Olšákd94aed52015-05-05 21:13:49 +0200162 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400163 }
Marek Olšákd94aed52015-05-05 21:13:49 +0200164
165 /* TODO: these two are always zero */
Alex Deucher0b492a42015-08-16 22:48:26 -0400166 out->state.flags = 0x0;
167 out->state.hangs = 0x0;
Marek Olšákd94aed52015-05-05 21:13:49 +0200168
169 /* determine if a GPU reset has occured since the last call */
170 reset_counter = atomic_read(&adev->gpu_reset_counter);
171 /* TODO: this should ideally return NO, GUILTY, or INNOCENT. */
172 if (ctx->reset_counter == reset_counter)
173 out->state.reset_status = AMDGPU_CTX_NO_RESET;
174 else
175 out->state.reset_status = AMDGPU_CTX_UNKNOWN_RESET;
176 ctx->reset_counter = reset_counter;
177
Marek Olšák0147ee02015-05-05 20:52:00 +0200178 mutex_unlock(&mgr->lock);
Marek Olšákd94aed52015-05-05 21:13:49 +0200179 return 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400180}
181
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400182int amdgpu_ctx_ioctl(struct drm_device *dev, void *data,
Marek Olšákd94aed52015-05-05 21:13:49 +0200183 struct drm_file *filp)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400184{
185 int r;
186 uint32_t id;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400187
188 union drm_amdgpu_ctx *args = data;
189 struct amdgpu_device *adev = dev->dev_private;
190 struct amdgpu_fpriv *fpriv = filp->driver_priv;
191
192 r = 0;
193 id = args->in.ctx_id;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400194
195 switch (args->in.op) {
Christian Königa750b472016-02-11 10:20:53 +0100196 case AMDGPU_CTX_OP_ALLOC_CTX:
197 r = amdgpu_ctx_alloc(adev, fpriv, &id);
198 args->out.alloc.ctx_id = id;
199 break;
200 case AMDGPU_CTX_OP_FREE_CTX:
201 r = amdgpu_ctx_free(fpriv, id);
202 break;
203 case AMDGPU_CTX_OP_QUERY_STATE:
204 r = amdgpu_ctx_query(adev, fpriv, id, &args->out);
205 break;
206 default:
207 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400208 }
209
210 return r;
211}
Jammy Zhou66b3cf22015-05-08 17:29:40 +0800212
213struct amdgpu_ctx *amdgpu_ctx_get(struct amdgpu_fpriv *fpriv, uint32_t id)
214{
215 struct amdgpu_ctx *ctx;
Chunming Zhou23ca0e42015-07-06 13:42:58 +0800216 struct amdgpu_ctx_mgr *mgr;
217
218 if (!fpriv)
219 return NULL;
220
221 mgr = &fpriv->ctx_mgr;
Jammy Zhou66b3cf22015-05-08 17:29:40 +0800222
223 mutex_lock(&mgr->lock);
224 ctx = idr_find(&mgr->ctx_handles, id);
225 if (ctx)
226 kref_get(&ctx->refcount);
227 mutex_unlock(&mgr->lock);
228 return ctx;
229}
230
231int amdgpu_ctx_put(struct amdgpu_ctx *ctx)
232{
Jammy Zhou66b3cf22015-05-08 17:29:40 +0800233 if (ctx == NULL)
234 return -EINVAL;
235
Jammy Zhou66b3cf22015-05-08 17:29:40 +0800236 kref_put(&ctx->refcount, amdgpu_ctx_do_release);
Jammy Zhou66b3cf22015-05-08 17:29:40 +0800237 return 0;
238}
Christian König21c16bf2015-07-07 17:24:49 +0200239
240uint64_t amdgpu_ctx_add_fence(struct amdgpu_ctx *ctx, struct amdgpu_ring *ring,
Christian Königce882e62015-08-19 15:00:55 +0200241 struct fence *fence)
Christian König21c16bf2015-07-07 17:24:49 +0200242{
243 struct amdgpu_ctx_ring *cring = & ctx->rings[ring->idx];
Christian Königce882e62015-08-19 15:00:55 +0200244 uint64_t seq = cring->sequence;
Chunming Zhoub43a9a72015-07-21 15:13:53 +0800245 unsigned idx = 0;
246 struct fence *other = NULL;
Christian König21c16bf2015-07-07 17:24:49 +0200247
Chunming Zhou5b011232015-12-10 17:34:33 +0800248 idx = seq & (amdgpu_sched_jobs - 1);
Chunming Zhoub43a9a72015-07-21 15:13:53 +0800249 other = cring->fences[idx];
Christian König21c16bf2015-07-07 17:24:49 +0200250 if (other) {
251 signed long r;
252 r = fence_wait_timeout(other, false, MAX_SCHEDULE_TIMEOUT);
253 if (r < 0)
254 DRM_ERROR("Error (%ld) waiting for fence!\n", r);
255 }
256
257 fence_get(fence);
258
259 spin_lock(&ctx->ring_lock);
260 cring->fences[idx] = fence;
Christian Königce882e62015-08-19 15:00:55 +0200261 cring->sequence++;
Christian König21c16bf2015-07-07 17:24:49 +0200262 spin_unlock(&ctx->ring_lock);
263
264 fence_put(other);
265
266 return seq;
267}
268
269struct fence *amdgpu_ctx_get_fence(struct amdgpu_ctx *ctx,
270 struct amdgpu_ring *ring, uint64_t seq)
271{
272 struct amdgpu_ctx_ring *cring = & ctx->rings[ring->idx];
273 struct fence *fence;
274
275 spin_lock(&ctx->ring_lock);
Chunming Zhoub43a9a72015-07-21 15:13:53 +0800276
Christian Königce882e62015-08-19 15:00:55 +0200277 if (seq >= cring->sequence) {
Christian König21c16bf2015-07-07 17:24:49 +0200278 spin_unlock(&ctx->ring_lock);
279 return ERR_PTR(-EINVAL);
280 }
281
Chunming Zhoub43a9a72015-07-21 15:13:53 +0800282
Chunming Zhou37cd0ca2015-12-10 15:45:11 +0800283 if (seq + amdgpu_sched_jobs < cring->sequence) {
Christian König21c16bf2015-07-07 17:24:49 +0200284 spin_unlock(&ctx->ring_lock);
285 return NULL;
286 }
287
Chunming Zhou5b011232015-12-10 17:34:33 +0800288 fence = fence_get(cring->fences[seq & (amdgpu_sched_jobs - 1)]);
Christian König21c16bf2015-07-07 17:24:49 +0200289 spin_unlock(&ctx->ring_lock);
290
291 return fence;
292}
Christian Königefd4ccb2015-08-04 16:20:31 +0200293
294void amdgpu_ctx_mgr_init(struct amdgpu_ctx_mgr *mgr)
295{
296 mutex_init(&mgr->lock);
297 idr_init(&mgr->ctx_handles);
298}
299
300void amdgpu_ctx_mgr_fini(struct amdgpu_ctx_mgr *mgr)
301{
302 struct amdgpu_ctx *ctx;
303 struct idr *idp;
304 uint32_t id;
305
306 idp = &mgr->ctx_handles;
307
308 idr_for_each_entry(idp, ctx, id) {
309 if (kref_put(&ctx->refcount, amdgpu_ctx_do_release) != 1)
310 DRM_ERROR("ctx %p is still alive\n", ctx);
311 }
312
313 idr_destroy(&mgr->ctx_handles);
314 mutex_destroy(&mgr->lock);
315}