Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1 | /* |
| 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önig | 2087417 | 2016-02-11 09:56:44 +0100 | [diff] [blame] | 28 | static int amdgpu_ctx_init(struct amdgpu_device *adev, struct amdgpu_ctx *ctx) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 29 | { |
Christian König | 21c16bf | 2015-07-07 17:24:49 +0200 | [diff] [blame] | 30 | unsigned i, j; |
Christian König | 47f3850 | 2015-08-04 17:51:05 +0200 | [diff] [blame] | 31 | int r; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 32 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 33 | memset(ctx, 0, sizeof(*ctx)); |
Chunming Zhou | 9cb7e5a | 2015-07-21 13:17:19 +0800 | [diff] [blame] | 34 | ctx->adev = adev; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 35 | kref_init(&ctx->refcount); |
Christian König | 21c16bf | 2015-07-07 17:24:49 +0200 | [diff] [blame] | 36 | spin_lock_init(&ctx->ring_lock); |
Christian König | a750b47 | 2016-02-11 10:20:53 +0100 | [diff] [blame] | 37 | ctx->fences = kcalloc(amdgpu_sched_jobs * AMDGPU_MAX_RINGS, |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 38 | sizeof(struct dma_fence*), GFP_KERNEL); |
Chunming Zhou | 37cd0ca | 2015-12-10 15:45:11 +0800 | [diff] [blame] | 39 | if (!ctx->fences) |
| 40 | return -ENOMEM; |
Chunming Zhou | 23ca0e4 | 2015-07-06 13:42:58 +0800 | [diff] [blame] | 41 | |
Chunming Zhou | 37cd0ca | 2015-12-10 15:45:11 +0800 | [diff] [blame] | 42 | for (i = 0; i < AMDGPU_MAX_RINGS; ++i) { |
| 43 | ctx->rings[i].sequence = 1; |
Christian König | a750b47 | 2016-02-11 10:20:53 +0100 | [diff] [blame] | 44 | ctx->rings[i].fences = &ctx->fences[amdgpu_sched_jobs * i]; |
Chunming Zhou | 37cd0ca | 2015-12-10 15:45:11 +0800 | [diff] [blame] | 45 | } |
Nicolai Hähnle | ce199ad | 2016-10-04 09:43:30 +0200 | [diff] [blame] | 46 | |
| 47 | ctx->reset_counter = atomic_read(&adev->gpu_reset_counter); |
| 48 | |
Chunming Zhou | cadf97b | 2016-01-15 11:25:00 +0800 | [diff] [blame] | 49 | /* create context entity for each ring */ |
| 50 | for (i = 0; i < adev->num_rings; i++) { |
Christian König | 2087417 | 2016-02-11 09:56:44 +0100 | [diff] [blame] | 51 | struct amdgpu_ring *ring = adev->rings[i]; |
Chunming Zhou | cadf97b | 2016-01-15 11:25:00 +0800 | [diff] [blame] | 52 | struct amd_sched_rq *rq; |
Christian König | 2087417 | 2016-02-11 09:56:44 +0100 | [diff] [blame] | 53 | |
| 54 | rq = &ring->sched.sched_rq[AMD_SCHED_PRIORITY_NORMAL]; |
Monk Liu | 75fbed2 | 2017-05-11 13:36:33 +0800 | [diff] [blame] | 55 | |
| 56 | if (ring == &adev->gfx.kiq.ring) |
| 57 | continue; |
| 58 | |
Christian König | 2087417 | 2016-02-11 09:56:44 +0100 | [diff] [blame] | 59 | r = amd_sched_entity_init(&ring->sched, &ctx->rings[i].entity, |
Chunming Zhou | cadf97b | 2016-01-15 11:25:00 +0800 | [diff] [blame] | 60 | rq, amdgpu_sched_jobs); |
| 61 | if (r) |
Huang Rui | 8ed8147 | 2016-10-26 17:07:03 +0800 | [diff] [blame] | 62 | goto failed; |
Chunming Zhou | cadf97b | 2016-01-15 11:25:00 +0800 | [diff] [blame] | 63 | } |
| 64 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 65 | return 0; |
Huang Rui | 8ed8147 | 2016-10-26 17:07:03 +0800 | [diff] [blame] | 66 | |
| 67 | failed: |
| 68 | for (j = 0; j < i; j++) |
| 69 | amd_sched_entity_fini(&adev->rings[j]->sched, |
| 70 | &ctx->rings[j].entity); |
| 71 | kfree(ctx->fences); |
| 72 | ctx->fences = NULL; |
| 73 | return r; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 74 | } |
| 75 | |
Christian König | 2087417 | 2016-02-11 09:56:44 +0100 | [diff] [blame] | 76 | static void amdgpu_ctx_fini(struct amdgpu_ctx *ctx) |
Christian König | 47f3850 | 2015-08-04 17:51:05 +0200 | [diff] [blame] | 77 | { |
| 78 | struct amdgpu_device *adev = ctx->adev; |
| 79 | unsigned i, j; |
| 80 | |
Dave Airlie | fe295b2 | 2015-11-03 11:07:11 -0500 | [diff] [blame] | 81 | if (!adev) |
| 82 | return; |
| 83 | |
Christian König | 47f3850 | 2015-08-04 17:51:05 +0200 | [diff] [blame] | 84 | for (i = 0; i < AMDGPU_MAX_RINGS; ++i) |
Chunming Zhou | 37cd0ca | 2015-12-10 15:45:11 +0800 | [diff] [blame] | 85 | for (j = 0; j < amdgpu_sched_jobs; ++j) |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 86 | dma_fence_put(ctx->rings[i].fences[j]); |
Chunming Zhou | 37cd0ca | 2015-12-10 15:45:11 +0800 | [diff] [blame] | 87 | kfree(ctx->fences); |
Grazvydas Ignotas | 54ddf3a | 2016-09-25 23:34:46 +0300 | [diff] [blame] | 88 | ctx->fences = NULL; |
Christian König | 47f3850 | 2015-08-04 17:51:05 +0200 | [diff] [blame] | 89 | |
Chunming Zhou | cadf97b | 2016-01-15 11:25:00 +0800 | [diff] [blame] | 90 | for (i = 0; i < adev->num_rings; i++) |
| 91 | amd_sched_entity_fini(&adev->rings[i]->sched, |
| 92 | &ctx->rings[i].entity); |
Christian König | 47f3850 | 2015-08-04 17:51:05 +0200 | [diff] [blame] | 93 | } |
| 94 | |
| 95 | static int amdgpu_ctx_alloc(struct amdgpu_device *adev, |
| 96 | struct amdgpu_fpriv *fpriv, |
| 97 | uint32_t *id) |
| 98 | { |
| 99 | struct amdgpu_ctx_mgr *mgr = &fpriv->ctx_mgr; |
| 100 | struct amdgpu_ctx *ctx; |
| 101 | int r; |
| 102 | |
| 103 | ctx = kmalloc(sizeof(*ctx), GFP_KERNEL); |
| 104 | if (!ctx) |
| 105 | return -ENOMEM; |
| 106 | |
| 107 | mutex_lock(&mgr->lock); |
| 108 | r = idr_alloc(&mgr->ctx_handles, ctx, 1, 0, GFP_KERNEL); |
| 109 | if (r < 0) { |
| 110 | mutex_unlock(&mgr->lock); |
| 111 | kfree(ctx); |
| 112 | return r; |
| 113 | } |
| 114 | *id = (uint32_t)r; |
Christian König | 2087417 | 2016-02-11 09:56:44 +0100 | [diff] [blame] | 115 | r = amdgpu_ctx_init(adev, ctx); |
Chunming Zhou | c648ed7 | 2015-12-10 15:50:02 +0800 | [diff] [blame] | 116 | if (r) { |
| 117 | idr_remove(&mgr->ctx_handles, *id); |
| 118 | *id = 0; |
| 119 | kfree(ctx); |
| 120 | } |
Christian König | 47f3850 | 2015-08-04 17:51:05 +0200 | [diff] [blame] | 121 | mutex_unlock(&mgr->lock); |
Christian König | 47f3850 | 2015-08-04 17:51:05 +0200 | [diff] [blame] | 122 | return r; |
| 123 | } |
| 124 | |
| 125 | static void amdgpu_ctx_do_release(struct kref *ref) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 126 | { |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 127 | struct amdgpu_ctx *ctx; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 128 | |
Christian König | 47f3850 | 2015-08-04 17:51:05 +0200 | [diff] [blame] | 129 | ctx = container_of(ref, struct amdgpu_ctx, refcount); |
| 130 | |
| 131 | amdgpu_ctx_fini(ctx); |
| 132 | |
| 133 | kfree(ctx); |
| 134 | } |
| 135 | |
| 136 | static int amdgpu_ctx_free(struct amdgpu_fpriv *fpriv, uint32_t id) |
| 137 | { |
| 138 | struct amdgpu_ctx_mgr *mgr = &fpriv->ctx_mgr; |
| 139 | struct amdgpu_ctx *ctx; |
| 140 | |
| 141 | mutex_lock(&mgr->lock); |
Matthew Wilcox | d3e709e | 2016-12-22 13:30:22 -0500 | [diff] [blame] | 142 | ctx = idr_remove(&mgr->ctx_handles, id); |
| 143 | if (ctx) |
Chunming Zhou | 23ca0e4 | 2015-07-06 13:42:58 +0800 | [diff] [blame] | 144 | kref_put(&ctx->refcount, amdgpu_ctx_do_release); |
Christian König | 47f3850 | 2015-08-04 17:51:05 +0200 | [diff] [blame] | 145 | mutex_unlock(&mgr->lock); |
Matthew Wilcox | d3e709e | 2016-12-22 13:30:22 -0500 | [diff] [blame] | 146 | return ctx ? 0 : -EINVAL; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 147 | } |
| 148 | |
Marek Olšák | d94aed5 | 2015-05-05 21:13:49 +0200 | [diff] [blame] | 149 | static int amdgpu_ctx_query(struct amdgpu_device *adev, |
| 150 | struct amdgpu_fpriv *fpriv, uint32_t id, |
| 151 | union drm_amdgpu_ctx_out *out) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 152 | { |
| 153 | struct amdgpu_ctx *ctx; |
Chunming Zhou | 23ca0e4 | 2015-07-06 13:42:58 +0800 | [diff] [blame] | 154 | struct amdgpu_ctx_mgr *mgr; |
Marek Olšák | d94aed5 | 2015-05-05 21:13:49 +0200 | [diff] [blame] | 155 | unsigned reset_counter; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 156 | |
Chunming Zhou | 23ca0e4 | 2015-07-06 13:42:58 +0800 | [diff] [blame] | 157 | if (!fpriv) |
| 158 | return -EINVAL; |
| 159 | |
| 160 | mgr = &fpriv->ctx_mgr; |
Marek Olšák | 0147ee0 | 2015-05-05 20:52:00 +0200 | [diff] [blame] | 161 | mutex_lock(&mgr->lock); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 162 | ctx = idr_find(&mgr->ctx_handles, id); |
Marek Olšák | d94aed5 | 2015-05-05 21:13:49 +0200 | [diff] [blame] | 163 | if (!ctx) { |
Marek Olšák | 0147ee0 | 2015-05-05 20:52:00 +0200 | [diff] [blame] | 164 | mutex_unlock(&mgr->lock); |
Marek Olšák | d94aed5 | 2015-05-05 21:13:49 +0200 | [diff] [blame] | 165 | return -EINVAL; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 166 | } |
Marek Olšák | d94aed5 | 2015-05-05 21:13:49 +0200 | [diff] [blame] | 167 | |
| 168 | /* TODO: these two are always zero */ |
Alex Deucher | 0b492a4 | 2015-08-16 22:48:26 -0400 | [diff] [blame] | 169 | out->state.flags = 0x0; |
| 170 | out->state.hangs = 0x0; |
Marek Olšák | d94aed5 | 2015-05-05 21:13:49 +0200 | [diff] [blame] | 171 | |
| 172 | /* determine if a GPU reset has occured since the last call */ |
| 173 | reset_counter = atomic_read(&adev->gpu_reset_counter); |
| 174 | /* TODO: this should ideally return NO, GUILTY, or INNOCENT. */ |
| 175 | if (ctx->reset_counter == reset_counter) |
| 176 | out->state.reset_status = AMDGPU_CTX_NO_RESET; |
| 177 | else |
| 178 | out->state.reset_status = AMDGPU_CTX_UNKNOWN_RESET; |
| 179 | ctx->reset_counter = reset_counter; |
| 180 | |
Marek Olšák | 0147ee0 | 2015-05-05 20:52:00 +0200 | [diff] [blame] | 181 | mutex_unlock(&mgr->lock); |
Marek Olšák | d94aed5 | 2015-05-05 21:13:49 +0200 | [diff] [blame] | 182 | return 0; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 183 | } |
| 184 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 185 | int amdgpu_ctx_ioctl(struct drm_device *dev, void *data, |
Marek Olšák | d94aed5 | 2015-05-05 21:13:49 +0200 | [diff] [blame] | 186 | struct drm_file *filp) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 187 | { |
| 188 | int r; |
| 189 | uint32_t id; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 190 | |
| 191 | union drm_amdgpu_ctx *args = data; |
| 192 | struct amdgpu_device *adev = dev->dev_private; |
| 193 | struct amdgpu_fpriv *fpriv = filp->driver_priv; |
| 194 | |
| 195 | r = 0; |
| 196 | id = args->in.ctx_id; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 197 | |
| 198 | switch (args->in.op) { |
Christian König | a750b47 | 2016-02-11 10:20:53 +0100 | [diff] [blame] | 199 | case AMDGPU_CTX_OP_ALLOC_CTX: |
| 200 | r = amdgpu_ctx_alloc(adev, fpriv, &id); |
| 201 | args->out.alloc.ctx_id = id; |
| 202 | break; |
| 203 | case AMDGPU_CTX_OP_FREE_CTX: |
| 204 | r = amdgpu_ctx_free(fpriv, id); |
| 205 | break; |
| 206 | case AMDGPU_CTX_OP_QUERY_STATE: |
| 207 | r = amdgpu_ctx_query(adev, fpriv, id, &args->out); |
| 208 | break; |
| 209 | default: |
| 210 | return -EINVAL; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 211 | } |
| 212 | |
| 213 | return r; |
| 214 | } |
Jammy Zhou | 66b3cf2 | 2015-05-08 17:29:40 +0800 | [diff] [blame] | 215 | |
| 216 | struct amdgpu_ctx *amdgpu_ctx_get(struct amdgpu_fpriv *fpriv, uint32_t id) |
| 217 | { |
| 218 | struct amdgpu_ctx *ctx; |
Chunming Zhou | 23ca0e4 | 2015-07-06 13:42:58 +0800 | [diff] [blame] | 219 | struct amdgpu_ctx_mgr *mgr; |
| 220 | |
| 221 | if (!fpriv) |
| 222 | return NULL; |
| 223 | |
| 224 | mgr = &fpriv->ctx_mgr; |
Jammy Zhou | 66b3cf2 | 2015-05-08 17:29:40 +0800 | [diff] [blame] | 225 | |
| 226 | mutex_lock(&mgr->lock); |
| 227 | ctx = idr_find(&mgr->ctx_handles, id); |
| 228 | if (ctx) |
| 229 | kref_get(&ctx->refcount); |
| 230 | mutex_unlock(&mgr->lock); |
| 231 | return ctx; |
| 232 | } |
| 233 | |
| 234 | int amdgpu_ctx_put(struct amdgpu_ctx *ctx) |
| 235 | { |
Jammy Zhou | 66b3cf2 | 2015-05-08 17:29:40 +0800 | [diff] [blame] | 236 | if (ctx == NULL) |
| 237 | return -EINVAL; |
| 238 | |
Jammy Zhou | 66b3cf2 | 2015-05-08 17:29:40 +0800 | [diff] [blame] | 239 | kref_put(&ctx->refcount, amdgpu_ctx_do_release); |
Jammy Zhou | 66b3cf2 | 2015-05-08 17:29:40 +0800 | [diff] [blame] | 240 | return 0; |
| 241 | } |
Christian König | 21c16bf | 2015-07-07 17:24:49 +0200 | [diff] [blame] | 242 | |
| 243 | uint64_t amdgpu_ctx_add_fence(struct amdgpu_ctx *ctx, struct amdgpu_ring *ring, |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 244 | struct dma_fence *fence) |
Christian König | 21c16bf | 2015-07-07 17:24:49 +0200 | [diff] [blame] | 245 | { |
| 246 | struct amdgpu_ctx_ring *cring = & ctx->rings[ring->idx]; |
Christian König | ce882e6 | 2015-08-19 15:00:55 +0200 | [diff] [blame] | 247 | uint64_t seq = cring->sequence; |
Chunming Zhou | b43a9a7 | 2015-07-21 15:13:53 +0800 | [diff] [blame] | 248 | unsigned idx = 0; |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 249 | struct dma_fence *other = NULL; |
Christian König | 21c16bf | 2015-07-07 17:24:49 +0200 | [diff] [blame] | 250 | |
Chunming Zhou | 5b01123 | 2015-12-10 17:34:33 +0800 | [diff] [blame] | 251 | idx = seq & (amdgpu_sched_jobs - 1); |
Chunming Zhou | b43a9a7 | 2015-07-21 15:13:53 +0800 | [diff] [blame] | 252 | other = cring->fences[idx]; |
Christian König | 21c16bf | 2015-07-07 17:24:49 +0200 | [diff] [blame] | 253 | if (other) { |
| 254 | signed long r; |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 255 | r = dma_fence_wait_timeout(other, false, MAX_SCHEDULE_TIMEOUT); |
Christian König | 21c16bf | 2015-07-07 17:24:49 +0200 | [diff] [blame] | 256 | if (r < 0) |
| 257 | DRM_ERROR("Error (%ld) waiting for fence!\n", r); |
| 258 | } |
| 259 | |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 260 | dma_fence_get(fence); |
Christian König | 21c16bf | 2015-07-07 17:24:49 +0200 | [diff] [blame] | 261 | |
| 262 | spin_lock(&ctx->ring_lock); |
| 263 | cring->fences[idx] = fence; |
Christian König | ce882e6 | 2015-08-19 15:00:55 +0200 | [diff] [blame] | 264 | cring->sequence++; |
Christian König | 21c16bf | 2015-07-07 17:24:49 +0200 | [diff] [blame] | 265 | spin_unlock(&ctx->ring_lock); |
| 266 | |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 267 | dma_fence_put(other); |
Christian König | 21c16bf | 2015-07-07 17:24:49 +0200 | [diff] [blame] | 268 | |
| 269 | return seq; |
| 270 | } |
| 271 | |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 272 | struct dma_fence *amdgpu_ctx_get_fence(struct amdgpu_ctx *ctx, |
| 273 | struct amdgpu_ring *ring, uint64_t seq) |
Christian König | 21c16bf | 2015-07-07 17:24:49 +0200 | [diff] [blame] | 274 | { |
| 275 | struct amdgpu_ctx_ring *cring = & ctx->rings[ring->idx]; |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 276 | struct dma_fence *fence; |
Christian König | 21c16bf | 2015-07-07 17:24:49 +0200 | [diff] [blame] | 277 | |
| 278 | spin_lock(&ctx->ring_lock); |
Chunming Zhou | b43a9a7 | 2015-07-21 15:13:53 +0800 | [diff] [blame] | 279 | |
Monk Liu | d7b1eeb | 2017-04-07 18:39:07 +0800 | [diff] [blame] | 280 | if (seq == ~0ull) |
| 281 | seq = ctx->rings[ring->idx].sequence - 1; |
| 282 | |
Christian König | ce882e6 | 2015-08-19 15:00:55 +0200 | [diff] [blame] | 283 | if (seq >= cring->sequence) { |
Christian König | 21c16bf | 2015-07-07 17:24:49 +0200 | [diff] [blame] | 284 | spin_unlock(&ctx->ring_lock); |
| 285 | return ERR_PTR(-EINVAL); |
| 286 | } |
| 287 | |
Chunming Zhou | b43a9a7 | 2015-07-21 15:13:53 +0800 | [diff] [blame] | 288 | |
Chunming Zhou | 37cd0ca | 2015-12-10 15:45:11 +0800 | [diff] [blame] | 289 | if (seq + amdgpu_sched_jobs < cring->sequence) { |
Christian König | 21c16bf | 2015-07-07 17:24:49 +0200 | [diff] [blame] | 290 | spin_unlock(&ctx->ring_lock); |
| 291 | return NULL; |
| 292 | } |
| 293 | |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 294 | fence = dma_fence_get(cring->fences[seq & (amdgpu_sched_jobs - 1)]); |
Christian König | 21c16bf | 2015-07-07 17:24:49 +0200 | [diff] [blame] | 295 | spin_unlock(&ctx->ring_lock); |
| 296 | |
| 297 | return fence; |
| 298 | } |
Christian König | efd4ccb | 2015-08-04 16:20:31 +0200 | [diff] [blame] | 299 | |
| 300 | void amdgpu_ctx_mgr_init(struct amdgpu_ctx_mgr *mgr) |
| 301 | { |
| 302 | mutex_init(&mgr->lock); |
| 303 | idr_init(&mgr->ctx_handles); |
| 304 | } |
| 305 | |
| 306 | void amdgpu_ctx_mgr_fini(struct amdgpu_ctx_mgr *mgr) |
| 307 | { |
| 308 | struct amdgpu_ctx *ctx; |
| 309 | struct idr *idp; |
| 310 | uint32_t id; |
| 311 | |
| 312 | idp = &mgr->ctx_handles; |
| 313 | |
| 314 | idr_for_each_entry(idp, ctx, id) { |
| 315 | if (kref_put(&ctx->refcount, amdgpu_ctx_do_release) != 1) |
| 316 | DRM_ERROR("ctx %p is still alive\n", ctx); |
| 317 | } |
| 318 | |
| 319 | idr_destroy(&mgr->ctx_handles); |
| 320 | mutex_destroy(&mgr->lock); |
| 321 | } |