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