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 | |
| 28 | static void amdgpu_ctx_do_release(struct kref *ref) |
| 29 | { |
| 30 | struct amdgpu_ctx *ctx; |
Christian König | 21c16bf | 2015-07-07 17:24:49 +0200 | [diff] [blame] | 31 | unsigned i, j; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 32 | |
| 33 | ctx = container_of(ref, struct amdgpu_ctx, refcount); |
Christian König | 21c16bf | 2015-07-07 17:24:49 +0200 | [diff] [blame] | 34 | |
| 35 | for (i = 0; i < AMDGPU_MAX_RINGS; ++i) |
| 36 | for (j = 0; j < AMDGPU_CTX_MAX_CS_PENDING; ++j) |
| 37 | fence_put(ctx->rings[i].fences[j]); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 38 | kfree(ctx); |
| 39 | } |
| 40 | |
Alex Deucher | 0b492a4 | 2015-08-16 22:48:26 -0400 | [diff] [blame] | 41 | int amdgpu_ctx_alloc(struct amdgpu_device *adev, struct amdgpu_fpriv *fpriv, |
| 42 | uint32_t *id) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 43 | { |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 44 | struct amdgpu_ctx *ctx; |
| 45 | struct amdgpu_ctx_mgr *mgr = &fpriv->ctx_mgr; |
Christian König | 21c16bf | 2015-07-07 17:24:49 +0200 | [diff] [blame] | 46 | int i, r; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 47 | |
| 48 | ctx = kmalloc(sizeof(*ctx), GFP_KERNEL); |
| 49 | if (!ctx) |
| 50 | return -ENOMEM; |
| 51 | |
Marek Olšák | 0147ee0 | 2015-05-05 20:52:00 +0200 | [diff] [blame] | 52 | mutex_lock(&mgr->lock); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 53 | r = idr_alloc(&mgr->ctx_handles, ctx, 0, 0, GFP_KERNEL); |
| 54 | if (r < 0) { |
Marek Olšák | 0147ee0 | 2015-05-05 20:52:00 +0200 | [diff] [blame] | 55 | mutex_unlock(&mgr->lock); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 56 | kfree(ctx); |
| 57 | return r; |
| 58 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 59 | *id = (uint32_t)r; |
| 60 | |
| 61 | memset(ctx, 0, sizeof(*ctx)); |
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); |
| 64 | for (i = 0; i < AMDGPU_MAX_RINGS; ++i) |
| 65 | ctx->rings[i].sequence = 1; |
Marek Olšák | 0147ee0 | 2015-05-05 20:52:00 +0200 | [diff] [blame] | 66 | mutex_unlock(&mgr->lock); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 67 | |
| 68 | return 0; |
| 69 | } |
| 70 | |
| 71 | int amdgpu_ctx_free(struct amdgpu_device *adev, struct amdgpu_fpriv *fpriv, uint32_t id) |
| 72 | { |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 73 | struct amdgpu_ctx *ctx; |
| 74 | struct amdgpu_ctx_mgr *mgr = &fpriv->ctx_mgr; |
| 75 | |
Marek Olšák | 0147ee0 | 2015-05-05 20:52:00 +0200 | [diff] [blame] | 76 | mutex_lock(&mgr->lock); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 77 | ctx = idr_find(&mgr->ctx_handles, id); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 78 | if (ctx) { |
Alex Deucher | 0b492a4 | 2015-08-16 22:48:26 -0400 | [diff] [blame] | 79 | idr_remove(&mgr->ctx_handles, id); |
Marek Olšák | f11358d | 2015-05-05 00:56:45 +0200 | [diff] [blame] | 80 | kref_put(&ctx->refcount, amdgpu_ctx_do_release); |
Marek Olšák | 0147ee0 | 2015-05-05 20:52:00 +0200 | [diff] [blame] | 81 | mutex_unlock(&mgr->lock); |
Marek Olšák | f11358d | 2015-05-05 00:56:45 +0200 | [diff] [blame] | 82 | return 0; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 83 | } |
Marek Olšák | 0147ee0 | 2015-05-05 20:52:00 +0200 | [diff] [blame] | 84 | mutex_unlock(&mgr->lock); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 85 | return -EINVAL; |
| 86 | } |
| 87 | |
Marek Olšák | d94aed5 | 2015-05-05 21:13:49 +0200 | [diff] [blame] | 88 | static int amdgpu_ctx_query(struct amdgpu_device *adev, |
| 89 | struct amdgpu_fpriv *fpriv, uint32_t id, |
| 90 | union drm_amdgpu_ctx_out *out) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 91 | { |
| 92 | struct amdgpu_ctx *ctx; |
| 93 | struct amdgpu_ctx_mgr *mgr = &fpriv->ctx_mgr; |
Marek Olšák | d94aed5 | 2015-05-05 21:13:49 +0200 | [diff] [blame] | 94 | unsigned reset_counter; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 95 | |
Marek Olšák | 0147ee0 | 2015-05-05 20:52:00 +0200 | [diff] [blame] | 96 | mutex_lock(&mgr->lock); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 97 | ctx = idr_find(&mgr->ctx_handles, id); |
Marek Olšák | d94aed5 | 2015-05-05 21:13:49 +0200 | [diff] [blame] | 98 | if (!ctx) { |
Marek Olšák | 0147ee0 | 2015-05-05 20:52:00 +0200 | [diff] [blame] | 99 | mutex_unlock(&mgr->lock); |
Marek Olšák | d94aed5 | 2015-05-05 21:13:49 +0200 | [diff] [blame] | 100 | return -EINVAL; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 101 | } |
Marek Olšák | d94aed5 | 2015-05-05 21:13:49 +0200 | [diff] [blame] | 102 | |
| 103 | /* TODO: these two are always zero */ |
Alex Deucher | 0b492a4 | 2015-08-16 22:48:26 -0400 | [diff] [blame] | 104 | out->state.flags = 0x0; |
| 105 | out->state.hangs = 0x0; |
Marek Olšák | d94aed5 | 2015-05-05 21:13:49 +0200 | [diff] [blame] | 106 | |
| 107 | /* determine if a GPU reset has occured since the last call */ |
| 108 | reset_counter = atomic_read(&adev->gpu_reset_counter); |
| 109 | /* TODO: this should ideally return NO, GUILTY, or INNOCENT. */ |
| 110 | if (ctx->reset_counter == reset_counter) |
| 111 | out->state.reset_status = AMDGPU_CTX_NO_RESET; |
| 112 | else |
| 113 | out->state.reset_status = AMDGPU_CTX_UNKNOWN_RESET; |
| 114 | ctx->reset_counter = reset_counter; |
| 115 | |
Marek Olšák | 0147ee0 | 2015-05-05 20:52:00 +0200 | [diff] [blame] | 116 | mutex_unlock(&mgr->lock); |
Marek Olšák | d94aed5 | 2015-05-05 21:13:49 +0200 | [diff] [blame] | 117 | return 0; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 118 | } |
| 119 | |
| 120 | void amdgpu_ctx_fini(struct amdgpu_fpriv *fpriv) |
| 121 | { |
| 122 | struct idr *idp; |
| 123 | struct amdgpu_ctx *ctx; |
| 124 | uint32_t id; |
| 125 | struct amdgpu_ctx_mgr *mgr = &fpriv->ctx_mgr; |
| 126 | idp = &mgr->ctx_handles; |
| 127 | |
| 128 | idr_for_each_entry(idp,ctx,id) { |
| 129 | if (kref_put(&ctx->refcount, amdgpu_ctx_do_release) != 1) |
Alex Deucher | 0b492a4 | 2015-08-16 22:48:26 -0400 | [diff] [blame] | 130 | DRM_ERROR("ctx %p is still alive\n", ctx); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 131 | } |
| 132 | |
Christian König | cdecb65 | 2015-07-16 12:01:06 +0200 | [diff] [blame] | 133 | idr_destroy(&mgr->ctx_handles); |
Marek Olšák | 0147ee0 | 2015-05-05 20:52:00 +0200 | [diff] [blame] | 134 | mutex_destroy(&mgr->lock); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 135 | } |
| 136 | |
| 137 | int amdgpu_ctx_ioctl(struct drm_device *dev, void *data, |
Marek Olšák | d94aed5 | 2015-05-05 21:13:49 +0200 | [diff] [blame] | 138 | struct drm_file *filp) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 139 | { |
| 140 | int r; |
| 141 | uint32_t id; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 142 | |
| 143 | union drm_amdgpu_ctx *args = data; |
| 144 | struct amdgpu_device *adev = dev->dev_private; |
| 145 | struct amdgpu_fpriv *fpriv = filp->driver_priv; |
| 146 | |
| 147 | r = 0; |
| 148 | id = args->in.ctx_id; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 149 | |
| 150 | switch (args->in.op) { |
| 151 | case AMDGPU_CTX_OP_ALLOC_CTX: |
Alex Deucher | 0b492a4 | 2015-08-16 22:48:26 -0400 | [diff] [blame] | 152 | r = amdgpu_ctx_alloc(adev, fpriv, &id); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 153 | args->out.alloc.ctx_id = id; |
| 154 | break; |
| 155 | case AMDGPU_CTX_OP_FREE_CTX: |
| 156 | r = amdgpu_ctx_free(adev, fpriv, id); |
| 157 | break; |
| 158 | case AMDGPU_CTX_OP_QUERY_STATE: |
Marek Olšák | d94aed5 | 2015-05-05 21:13:49 +0200 | [diff] [blame] | 159 | r = amdgpu_ctx_query(adev, fpriv, id, &args->out); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 160 | break; |
| 161 | default: |
| 162 | return -EINVAL; |
| 163 | } |
| 164 | |
| 165 | return r; |
| 166 | } |
Jammy Zhou | 66b3cf2 | 2015-05-08 17:29:40 +0800 | [diff] [blame] | 167 | |
| 168 | struct amdgpu_ctx *amdgpu_ctx_get(struct amdgpu_fpriv *fpriv, uint32_t id) |
| 169 | { |
| 170 | struct amdgpu_ctx *ctx; |
| 171 | struct amdgpu_ctx_mgr *mgr = &fpriv->ctx_mgr; |
| 172 | |
| 173 | mutex_lock(&mgr->lock); |
| 174 | ctx = idr_find(&mgr->ctx_handles, id); |
| 175 | if (ctx) |
| 176 | kref_get(&ctx->refcount); |
| 177 | mutex_unlock(&mgr->lock); |
| 178 | return ctx; |
| 179 | } |
| 180 | |
| 181 | int amdgpu_ctx_put(struct amdgpu_ctx *ctx) |
| 182 | { |
Jammy Zhou | 66b3cf2 | 2015-05-08 17:29:40 +0800 | [diff] [blame] | 183 | if (ctx == NULL) |
| 184 | return -EINVAL; |
| 185 | |
Jammy Zhou | 66b3cf2 | 2015-05-08 17:29:40 +0800 | [diff] [blame] | 186 | kref_put(&ctx->refcount, amdgpu_ctx_do_release); |
Jammy Zhou | 66b3cf2 | 2015-05-08 17:29:40 +0800 | [diff] [blame] | 187 | return 0; |
| 188 | } |
Christian König | 21c16bf | 2015-07-07 17:24:49 +0200 | [diff] [blame] | 189 | |
| 190 | uint64_t amdgpu_ctx_add_fence(struct amdgpu_ctx *ctx, struct amdgpu_ring *ring, |
| 191 | struct fence *fence) |
| 192 | { |
| 193 | struct amdgpu_ctx_ring *cring = & ctx->rings[ring->idx]; |
| 194 | uint64_t seq = cring->sequence; |
| 195 | unsigned idx = seq % AMDGPU_CTX_MAX_CS_PENDING; |
| 196 | struct fence *other = cring->fences[idx]; |
| 197 | |
| 198 | if (other) { |
| 199 | signed long r; |
| 200 | r = fence_wait_timeout(other, false, MAX_SCHEDULE_TIMEOUT); |
| 201 | if (r < 0) |
| 202 | DRM_ERROR("Error (%ld) waiting for fence!\n", r); |
| 203 | } |
| 204 | |
| 205 | fence_get(fence); |
| 206 | |
| 207 | spin_lock(&ctx->ring_lock); |
| 208 | cring->fences[idx] = fence; |
| 209 | cring->sequence++; |
| 210 | spin_unlock(&ctx->ring_lock); |
| 211 | |
| 212 | fence_put(other); |
| 213 | |
| 214 | return seq; |
| 215 | } |
| 216 | |
| 217 | struct fence *amdgpu_ctx_get_fence(struct amdgpu_ctx *ctx, |
| 218 | struct amdgpu_ring *ring, uint64_t seq) |
| 219 | { |
| 220 | struct amdgpu_ctx_ring *cring = & ctx->rings[ring->idx]; |
| 221 | struct fence *fence; |
| 222 | |
| 223 | spin_lock(&ctx->ring_lock); |
| 224 | if (seq >= cring->sequence) { |
| 225 | spin_unlock(&ctx->ring_lock); |
| 226 | return ERR_PTR(-EINVAL); |
| 227 | } |
| 228 | |
Christian König | cf6f1d3 | 2015-07-18 19:20:05 +0200 | [diff] [blame] | 229 | if (seq + AMDGPU_CTX_MAX_CS_PENDING < cring->sequence) { |
Christian König | 21c16bf | 2015-07-07 17:24:49 +0200 | [diff] [blame] | 230 | spin_unlock(&ctx->ring_lock); |
| 231 | return NULL; |
| 232 | } |
| 233 | |
| 234 | fence = fence_get(cring->fences[seq % AMDGPU_CTX_MAX_CS_PENDING]); |
| 235 | spin_unlock(&ctx->ring_lock); |
| 236 | |
| 237 | return fence; |
| 238 | } |