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