Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2008 Jerome Glisse. |
| 3 | * All Rights Reserved. |
| 4 | * |
| 5 | * Permission is hereby granted, free of charge, to any person obtaining a |
| 6 | * copy of this software and associated documentation files (the "Software"), |
| 7 | * to deal in the Software without restriction, including without limitation |
| 8 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, |
| 9 | * and/or sell copies of the Software, and to permit persons to whom the |
| 10 | * Software is furnished to do so, subject to the following conditions: |
| 11 | * |
| 12 | * The above copyright notice and this permission notice (including the next |
| 13 | * paragraph) shall be included in all copies or substantial portions of the |
| 14 | * Software. |
| 15 | * |
| 16 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 17 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 18 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 19 | * PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR |
| 20 | * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, |
| 21 | * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
| 22 | * DEALINGS IN THE SOFTWARE. |
| 23 | * |
| 24 | * Authors: |
| 25 | * Jerome Glisse <glisse@freedesktop.org> |
| 26 | */ |
| 27 | #include <linux/list_sort.h> |
| 28 | #include <drm/drmP.h> |
| 29 | #include <drm/amdgpu_drm.h> |
| 30 | #include "amdgpu.h" |
| 31 | #include "amdgpu_trace.h" |
| 32 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 33 | int amdgpu_cs_get_ring(struct amdgpu_device *adev, u32 ip_type, |
| 34 | u32 ip_instance, u32 ring, |
| 35 | struct amdgpu_ring **out_ring) |
| 36 | { |
| 37 | /* Right now all IPs have only one instance - multiple rings. */ |
| 38 | if (ip_instance != 0) { |
| 39 | DRM_ERROR("invalid ip instance: %d\n", ip_instance); |
| 40 | return -EINVAL; |
| 41 | } |
| 42 | |
| 43 | switch (ip_type) { |
| 44 | default: |
| 45 | DRM_ERROR("unknown ip type: %d\n", ip_type); |
| 46 | return -EINVAL; |
| 47 | case AMDGPU_HW_IP_GFX: |
| 48 | if (ring < adev->gfx.num_gfx_rings) { |
| 49 | *out_ring = &adev->gfx.gfx_ring[ring]; |
| 50 | } else { |
| 51 | DRM_ERROR("only %d gfx rings are supported now\n", |
| 52 | adev->gfx.num_gfx_rings); |
| 53 | return -EINVAL; |
| 54 | } |
| 55 | break; |
| 56 | case AMDGPU_HW_IP_COMPUTE: |
| 57 | if (ring < adev->gfx.num_compute_rings) { |
| 58 | *out_ring = &adev->gfx.compute_ring[ring]; |
| 59 | } else { |
| 60 | DRM_ERROR("only %d compute rings are supported now\n", |
| 61 | adev->gfx.num_compute_rings); |
| 62 | return -EINVAL; |
| 63 | } |
| 64 | break; |
| 65 | case AMDGPU_HW_IP_DMA: |
Alex Deucher | c113ea1 | 2015-10-08 16:30:37 -0400 | [diff] [blame] | 66 | if (ring < adev->sdma.num_instances) { |
| 67 | *out_ring = &adev->sdma.instance[ring].ring; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 68 | } else { |
Alex Deucher | c113ea1 | 2015-10-08 16:30:37 -0400 | [diff] [blame] | 69 | DRM_ERROR("only %d SDMA rings are supported\n", |
| 70 | adev->sdma.num_instances); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 71 | return -EINVAL; |
| 72 | } |
| 73 | break; |
| 74 | case AMDGPU_HW_IP_UVD: |
| 75 | *out_ring = &adev->uvd.ring; |
| 76 | break; |
| 77 | case AMDGPU_HW_IP_VCE: |
| 78 | if (ring < 2){ |
| 79 | *out_ring = &adev->vce.ring[ring]; |
| 80 | } else { |
| 81 | DRM_ERROR("only two VCE rings are supported\n"); |
| 82 | return -EINVAL; |
| 83 | } |
| 84 | break; |
| 85 | } |
| 86 | return 0; |
| 87 | } |
| 88 | |
Christian König | 91acbeb | 2015-12-14 16:42:31 +0100 | [diff] [blame] | 89 | static int amdgpu_cs_user_fence_chunk(struct amdgpu_cs_parser *p, |
| 90 | struct drm_amdgpu_cs_chunk_fence *fence_data) |
| 91 | { |
| 92 | struct drm_gem_object *gobj; |
| 93 | uint32_t handle; |
| 94 | |
| 95 | handle = fence_data->handle; |
| 96 | gobj = drm_gem_object_lookup(p->adev->ddev, p->filp, |
| 97 | fence_data->handle); |
| 98 | if (gobj == NULL) |
| 99 | return -EINVAL; |
| 100 | |
| 101 | p->uf.bo = amdgpu_bo_ref(gem_to_amdgpu_bo(gobj)); |
| 102 | p->uf.offset = fence_data->offset; |
| 103 | |
| 104 | if (amdgpu_ttm_tt_has_userptr(p->uf.bo->tbo.ttm)) { |
| 105 | drm_gem_object_unreference_unlocked(gobj); |
| 106 | return -EINVAL; |
| 107 | } |
| 108 | |
| 109 | p->uf_entry.robj = amdgpu_bo_ref(p->uf.bo); |
Christian König | 91acbeb | 2015-12-14 16:42:31 +0100 | [diff] [blame] | 110 | p->uf_entry.priority = 0; |
| 111 | p->uf_entry.tv.bo = &p->uf_entry.robj->tbo; |
| 112 | p->uf_entry.tv.shared = true; |
| 113 | |
| 114 | drm_gem_object_unreference_unlocked(gobj); |
| 115 | return 0; |
| 116 | } |
| 117 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 118 | int amdgpu_cs_parser_init(struct amdgpu_cs_parser *p, void *data) |
| 119 | { |
| 120 | union drm_amdgpu_cs *cs = data; |
| 121 | uint64_t *chunk_array_user; |
Dan Carpenter | 1d26347 | 2015-09-23 13:59:28 +0300 | [diff] [blame] | 122 | uint64_t *chunk_array; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 123 | struct amdgpu_fpriv *fpriv = p->filp->driver_priv; |
Dan Carpenter | 5431350 | 2015-09-25 14:36:55 +0300 | [diff] [blame] | 124 | unsigned size; |
| 125 | int i; |
Dan Carpenter | 1d26347 | 2015-09-23 13:59:28 +0300 | [diff] [blame] | 126 | int ret; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 127 | |
Dan Carpenter | 1d26347 | 2015-09-23 13:59:28 +0300 | [diff] [blame] | 128 | if (cs->in.num_chunks == 0) |
| 129 | return 0; |
| 130 | |
| 131 | chunk_array = kmalloc_array(cs->in.num_chunks, sizeof(uint64_t), GFP_KERNEL); |
| 132 | if (!chunk_array) |
| 133 | return -ENOMEM; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 134 | |
Christian König | 3cb485f | 2015-05-11 15:34:59 +0200 | [diff] [blame] | 135 | p->ctx = amdgpu_ctx_get(fpriv, cs->in.ctx_id); |
| 136 | if (!p->ctx) { |
Dan Carpenter | 1d26347 | 2015-09-23 13:59:28 +0300 | [diff] [blame] | 137 | ret = -EINVAL; |
| 138 | goto free_chunk; |
Christian König | 3cb485f | 2015-05-11 15:34:59 +0200 | [diff] [blame] | 139 | } |
Dan Carpenter | 1d26347 | 2015-09-23 13:59:28 +0300 | [diff] [blame] | 140 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 141 | /* get chunks */ |
Arnd Bergmann | 028423b | 2015-10-07 09:41:27 +0200 | [diff] [blame] | 142 | chunk_array_user = (uint64_t __user *)(unsigned long)(cs->in.chunks); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 143 | if (copy_from_user(chunk_array, chunk_array_user, |
| 144 | sizeof(uint64_t)*cs->in.num_chunks)) { |
Dan Carpenter | 1d26347 | 2015-09-23 13:59:28 +0300 | [diff] [blame] | 145 | ret = -EFAULT; |
Christian König | 2a7d9bd | 2015-12-18 20:33:52 +0100 | [diff] [blame] | 146 | goto put_ctx; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 147 | } |
| 148 | |
| 149 | p->nchunks = cs->in.num_chunks; |
monk.liu | e60b344 | 2015-07-17 18:39:25 +0800 | [diff] [blame] | 150 | p->chunks = kmalloc_array(p->nchunks, sizeof(struct amdgpu_cs_chunk), |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 151 | GFP_KERNEL); |
Dan Carpenter | 1d26347 | 2015-09-23 13:59:28 +0300 | [diff] [blame] | 152 | if (!p->chunks) { |
| 153 | ret = -ENOMEM; |
Christian König | 2a7d9bd | 2015-12-18 20:33:52 +0100 | [diff] [blame] | 154 | goto put_ctx; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 155 | } |
| 156 | |
| 157 | for (i = 0; i < p->nchunks; i++) { |
| 158 | struct drm_amdgpu_cs_chunk __user **chunk_ptr = NULL; |
| 159 | struct drm_amdgpu_cs_chunk user_chunk; |
| 160 | uint32_t __user *cdata; |
| 161 | |
Arnd Bergmann | 028423b | 2015-10-07 09:41:27 +0200 | [diff] [blame] | 162 | chunk_ptr = (void __user *)(unsigned long)chunk_array[i]; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 163 | if (copy_from_user(&user_chunk, chunk_ptr, |
| 164 | sizeof(struct drm_amdgpu_cs_chunk))) { |
Dan Carpenter | 1d26347 | 2015-09-23 13:59:28 +0300 | [diff] [blame] | 165 | ret = -EFAULT; |
| 166 | i--; |
| 167 | goto free_partial_kdata; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 168 | } |
| 169 | p->chunks[i].chunk_id = user_chunk.chunk_id; |
| 170 | p->chunks[i].length_dw = user_chunk.length_dw; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 171 | |
| 172 | size = p->chunks[i].length_dw; |
Arnd Bergmann | 028423b | 2015-10-07 09:41:27 +0200 | [diff] [blame] | 173 | cdata = (void __user *)(unsigned long)user_chunk.chunk_data; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 174 | |
| 175 | p->chunks[i].kdata = drm_malloc_ab(size, sizeof(uint32_t)); |
| 176 | if (p->chunks[i].kdata == NULL) { |
Dan Carpenter | 1d26347 | 2015-09-23 13:59:28 +0300 | [diff] [blame] | 177 | ret = -ENOMEM; |
| 178 | i--; |
| 179 | goto free_partial_kdata; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 180 | } |
| 181 | size *= sizeof(uint32_t); |
| 182 | if (copy_from_user(p->chunks[i].kdata, cdata, size)) { |
Dan Carpenter | 1d26347 | 2015-09-23 13:59:28 +0300 | [diff] [blame] | 183 | ret = -EFAULT; |
| 184 | goto free_partial_kdata; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 185 | } |
| 186 | |
Christian König | 9a5e8fb | 2015-06-23 17:07:03 +0200 | [diff] [blame] | 187 | switch (p->chunks[i].chunk_id) { |
| 188 | case AMDGPU_CHUNK_ID_IB: |
| 189 | p->num_ibs++; |
| 190 | break; |
| 191 | |
| 192 | case AMDGPU_CHUNK_ID_FENCE: |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 193 | size = sizeof(struct drm_amdgpu_cs_chunk_fence); |
Christian König | 91acbeb | 2015-12-14 16:42:31 +0100 | [diff] [blame] | 194 | if (p->chunks[i].length_dw * sizeof(uint32_t) < size) { |
Dan Carpenter | 1d26347 | 2015-09-23 13:59:28 +0300 | [diff] [blame] | 195 | ret = -EINVAL; |
| 196 | goto free_partial_kdata; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 197 | } |
Christian König | 91acbeb | 2015-12-14 16:42:31 +0100 | [diff] [blame] | 198 | |
| 199 | ret = amdgpu_cs_user_fence_chunk(p, (void *)p->chunks[i].kdata); |
| 200 | if (ret) |
| 201 | goto free_partial_kdata; |
| 202 | |
Christian König | 9a5e8fb | 2015-06-23 17:07:03 +0200 | [diff] [blame] | 203 | break; |
| 204 | |
Christian König | 2b48d32 | 2015-06-19 17:31:29 +0200 | [diff] [blame] | 205 | case AMDGPU_CHUNK_ID_DEPENDENCIES: |
| 206 | break; |
| 207 | |
Christian König | 9a5e8fb | 2015-06-23 17:07:03 +0200 | [diff] [blame] | 208 | default: |
Dan Carpenter | 1d26347 | 2015-09-23 13:59:28 +0300 | [diff] [blame] | 209 | ret = -EINVAL; |
| 210 | goto free_partial_kdata; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 211 | } |
| 212 | } |
| 213 | |
monk.liu | e60b344 | 2015-07-17 18:39:25 +0800 | [diff] [blame] | 214 | |
Christian König | b203dd9 | 2015-08-18 18:23:16 +0200 | [diff] [blame] | 215 | p->ibs = kcalloc(p->num_ibs, sizeof(struct amdgpu_ib), GFP_KERNEL); |
Dan Carpenter | 1d26347 | 2015-09-23 13:59:28 +0300 | [diff] [blame] | 216 | if (!p->ibs) { |
| 217 | ret = -ENOMEM; |
| 218 | goto free_all_kdata; |
| 219 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 220 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 221 | kfree(chunk_array); |
Dan Carpenter | 1d26347 | 2015-09-23 13:59:28 +0300 | [diff] [blame] | 222 | return 0; |
| 223 | |
| 224 | free_all_kdata: |
| 225 | i = p->nchunks - 1; |
| 226 | free_partial_kdata: |
| 227 | for (; i >= 0; i--) |
| 228 | drm_free_large(p->chunks[i].kdata); |
| 229 | kfree(p->chunks); |
Christian König | 2a7d9bd | 2015-12-18 20:33:52 +0100 | [diff] [blame] | 230 | put_ctx: |
Dan Carpenter | 1d26347 | 2015-09-23 13:59:28 +0300 | [diff] [blame] | 231 | amdgpu_ctx_put(p->ctx); |
| 232 | free_chunk: |
| 233 | kfree(chunk_array); |
| 234 | |
| 235 | return ret; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 236 | } |
| 237 | |
| 238 | /* Returns how many bytes TTM can move per IB. |
| 239 | */ |
| 240 | static u64 amdgpu_cs_get_threshold_for_moves(struct amdgpu_device *adev) |
| 241 | { |
| 242 | u64 real_vram_size = adev->mc.real_vram_size; |
| 243 | u64 vram_usage = atomic64_read(&adev->vram_usage); |
| 244 | |
| 245 | /* This function is based on the current VRAM usage. |
| 246 | * |
| 247 | * - If all of VRAM is free, allow relocating the number of bytes that |
| 248 | * is equal to 1/4 of the size of VRAM for this IB. |
| 249 | |
| 250 | * - If more than one half of VRAM is occupied, only allow relocating |
| 251 | * 1 MB of data for this IB. |
| 252 | * |
| 253 | * - From 0 to one half of used VRAM, the threshold decreases |
| 254 | * linearly. |
| 255 | * __________________ |
| 256 | * 1/4 of -|\ | |
| 257 | * VRAM | \ | |
| 258 | * | \ | |
| 259 | * | \ | |
| 260 | * | \ | |
| 261 | * | \ | |
| 262 | * | \ | |
| 263 | * | \________|1 MB |
| 264 | * |----------------| |
| 265 | * VRAM 0 % 100 % |
| 266 | * used used |
| 267 | * |
| 268 | * Note: It's a threshold, not a limit. The threshold must be crossed |
| 269 | * for buffer relocations to stop, so any buffer of an arbitrary size |
| 270 | * can be moved as long as the threshold isn't crossed before |
| 271 | * the relocation takes place. We don't want to disable buffer |
| 272 | * relocations completely. |
| 273 | * |
| 274 | * The idea is that buffers should be placed in VRAM at creation time |
| 275 | * and TTM should only do a minimum number of relocations during |
| 276 | * command submission. In practice, you need to submit at least |
| 277 | * a dozen IBs to move all buffers to VRAM if they are in GTT. |
| 278 | * |
| 279 | * Also, things can get pretty crazy under memory pressure and actual |
| 280 | * VRAM usage can change a lot, so playing safe even at 50% does |
| 281 | * consistently increase performance. |
| 282 | */ |
| 283 | |
| 284 | u64 half_vram = real_vram_size >> 1; |
| 285 | u64 half_free_vram = vram_usage >= half_vram ? 0 : half_vram - vram_usage; |
| 286 | u64 bytes_moved_threshold = half_free_vram >> 1; |
| 287 | return max(bytes_moved_threshold, 1024*1024ull); |
| 288 | } |
| 289 | |
Christian König | f69f90a1 | 2015-12-21 19:47:42 +0100 | [diff] [blame] | 290 | int amdgpu_cs_list_validate(struct amdgpu_cs_parser *p, |
Christian König | a5b7505 | 2015-09-03 16:40:39 +0200 | [diff] [blame] | 291 | struct list_head *validated) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 292 | { |
Christian König | f69f90a1 | 2015-12-21 19:47:42 +0100 | [diff] [blame] | 293 | struct amdgpu_fpriv *fpriv = p->filp->driver_priv; |
| 294 | struct amdgpu_vm *vm = &fpriv->vm; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 295 | struct amdgpu_bo_list_entry *lobj; |
Christian König | f69f90a1 | 2015-12-21 19:47:42 +0100 | [diff] [blame] | 296 | u64 initial_bytes_moved; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 297 | int r; |
| 298 | |
Christian König | a5b7505 | 2015-09-03 16:40:39 +0200 | [diff] [blame] | 299 | list_for_each_entry(lobj, validated, tv.head) { |
Christian König | 36409d12 | 2015-12-21 20:31:35 +0100 | [diff] [blame] | 300 | struct amdgpu_bo *bo = lobj->robj; |
| 301 | uint32_t domain; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 302 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 303 | lobj->bo_va = amdgpu_vm_bo_find(vm, bo); |
Christian König | 36409d12 | 2015-12-21 20:31:35 +0100 | [diff] [blame] | 304 | if (bo->pin_count) |
| 305 | continue; |
| 306 | |
| 307 | /* Avoid moving this one if we have moved too many buffers |
| 308 | * for this IB already. |
| 309 | * |
| 310 | * Note that this allows moving at least one buffer of |
| 311 | * any size, because it doesn't take the current "bo" |
| 312 | * into account. We don't want to disallow buffer moves |
| 313 | * completely. |
| 314 | */ |
| 315 | if (p->bytes_moved <= p->bytes_moved_threshold) |
Christian König | 1ea863f | 2015-12-18 22:13:12 +0100 | [diff] [blame^] | 316 | domain = bo->prefered_domains; |
Christian König | 36409d12 | 2015-12-21 20:31:35 +0100 | [diff] [blame] | 317 | else |
Christian König | 1ea863f | 2015-12-18 22:13:12 +0100 | [diff] [blame^] | 318 | domain = bo->allowed_domains; |
Christian König | 36409d12 | 2015-12-21 20:31:35 +0100 | [diff] [blame] | 319 | |
| 320 | retry: |
| 321 | amdgpu_ttm_placement_from_domain(bo, domain); |
| 322 | initial_bytes_moved = atomic64_read(&bo->adev->num_bytes_moved); |
| 323 | r = ttm_bo_validate(&bo->tbo, &bo->placement, true, false); |
| 324 | p->bytes_moved += atomic64_read(&bo->adev->num_bytes_moved) - |
| 325 | initial_bytes_moved; |
| 326 | |
| 327 | if (unlikely(r)) { |
Christian König | 1ea863f | 2015-12-18 22:13:12 +0100 | [diff] [blame^] | 328 | if (r != -ERESTARTSYS && domain != bo->allowed_domains) { |
| 329 | domain = bo->allowed_domains; |
Christian König | 36409d12 | 2015-12-21 20:31:35 +0100 | [diff] [blame] | 330 | goto retry; |
| 331 | } |
| 332 | return r; |
| 333 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 334 | } |
| 335 | return 0; |
| 336 | } |
| 337 | |
Christian König | 2a7d9bd | 2015-12-18 20:33:52 +0100 | [diff] [blame] | 338 | static int amdgpu_cs_parser_bos(struct amdgpu_cs_parser *p, |
| 339 | union drm_amdgpu_cs *cs) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 340 | { |
| 341 | struct amdgpu_fpriv *fpriv = p->filp->driver_priv; |
Christian König | a5b7505 | 2015-09-03 16:40:39 +0200 | [diff] [blame] | 342 | struct list_head duplicates; |
monk.liu | 840d514 | 2015-04-27 15:19:20 +0800 | [diff] [blame] | 343 | bool need_mmap_lock = false; |
Christian König | 636ce25 | 2015-12-18 21:26:47 +0100 | [diff] [blame] | 344 | int r; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 345 | |
Christian König | 2a7d9bd | 2015-12-18 20:33:52 +0100 | [diff] [blame] | 346 | INIT_LIST_HEAD(&p->validated); |
| 347 | |
| 348 | p->bo_list = amdgpu_bo_list_get(fpriv, cs->in.bo_list_handle); |
monk.liu | 840d514 | 2015-04-27 15:19:20 +0800 | [diff] [blame] | 349 | if (p->bo_list) { |
| 350 | need_mmap_lock = p->bo_list->has_userptr; |
Christian König | 636ce25 | 2015-12-18 21:26:47 +0100 | [diff] [blame] | 351 | amdgpu_bo_list_get_list(p->bo_list, &p->validated); |
monk.liu | 840d514 | 2015-04-27 15:19:20 +0800 | [diff] [blame] | 352 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 353 | |
Christian König | 3c0eea6 | 2015-12-11 14:39:05 +0100 | [diff] [blame] | 354 | INIT_LIST_HEAD(&duplicates); |
Christian König | 56467eb | 2015-12-11 15:16:32 +0100 | [diff] [blame] | 355 | amdgpu_vm_get_pd_bo(&fpriv->vm, &p->validated, &p->vm_pd); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 356 | |
Christian König | 91acbeb | 2015-12-14 16:42:31 +0100 | [diff] [blame] | 357 | if (p->uf.bo) |
| 358 | list_add(&p->uf_entry.tv.head, &p->validated); |
| 359 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 360 | if (need_mmap_lock) |
| 361 | down_read(¤t->mm->mmap_sem); |
| 362 | |
Christian König | a5b7505 | 2015-09-03 16:40:39 +0200 | [diff] [blame] | 363 | r = ttm_eu_reserve_buffers(&p->ticket, &p->validated, true, &duplicates); |
| 364 | if (unlikely(r != 0)) |
| 365 | goto error_reserve; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 366 | |
Christian König | ee1782c | 2015-12-11 21:01:23 +0100 | [diff] [blame] | 367 | amdgpu_vm_get_pt_bos(&fpriv->vm, &duplicates); |
Christian König | 56467eb | 2015-12-11 15:16:32 +0100 | [diff] [blame] | 368 | |
Christian König | f69f90a1 | 2015-12-21 19:47:42 +0100 | [diff] [blame] | 369 | p->bytes_moved_threshold = amdgpu_cs_get_threshold_for_moves(p->adev); |
| 370 | p->bytes_moved = 0; |
| 371 | |
| 372 | r = amdgpu_cs_list_validate(p, &duplicates); |
Christian König | a5b7505 | 2015-09-03 16:40:39 +0200 | [diff] [blame] | 373 | if (r) |
| 374 | goto error_validate; |
| 375 | |
Christian König | f69f90a1 | 2015-12-21 19:47:42 +0100 | [diff] [blame] | 376 | r = amdgpu_cs_list_validate(p, &p->validated); |
Christian König | a5b7505 | 2015-09-03 16:40:39 +0200 | [diff] [blame] | 377 | |
| 378 | error_validate: |
Christian König | eceb8a1 | 2016-01-11 15:35:21 +0100 | [diff] [blame] | 379 | if (r) { |
| 380 | amdgpu_vm_move_pt_bos_in_lru(p->adev, &fpriv->vm); |
Christian König | a5b7505 | 2015-09-03 16:40:39 +0200 | [diff] [blame] | 381 | ttm_eu_backoff_reservation(&p->ticket, &p->validated); |
Christian König | eceb8a1 | 2016-01-11 15:35:21 +0100 | [diff] [blame] | 382 | } |
Christian König | a5b7505 | 2015-09-03 16:40:39 +0200 | [diff] [blame] | 383 | |
| 384 | error_reserve: |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 385 | if (need_mmap_lock) |
| 386 | up_read(¤t->mm->mmap_sem); |
| 387 | |
| 388 | return r; |
| 389 | } |
| 390 | |
| 391 | static int amdgpu_cs_sync_rings(struct amdgpu_cs_parser *p) |
| 392 | { |
| 393 | struct amdgpu_bo_list_entry *e; |
| 394 | int r; |
| 395 | |
| 396 | list_for_each_entry(e, &p->validated, tv.head) { |
| 397 | struct reservation_object *resv = e->robj->tbo.resv; |
| 398 | r = amdgpu_sync_resv(p->adev, &p->ibs[0].sync, resv, p->filp); |
| 399 | |
| 400 | if (r) |
| 401 | return r; |
| 402 | } |
| 403 | return 0; |
| 404 | } |
| 405 | |
| 406 | static int cmp_size_smaller_first(void *priv, struct list_head *a, |
| 407 | struct list_head *b) |
| 408 | { |
| 409 | struct amdgpu_bo_list_entry *la = list_entry(a, struct amdgpu_bo_list_entry, tv.head); |
| 410 | struct amdgpu_bo_list_entry *lb = list_entry(b, struct amdgpu_bo_list_entry, tv.head); |
| 411 | |
| 412 | /* Sort A before B if A is smaller. */ |
| 413 | return (int)la->robj->tbo.num_pages - (int)lb->robj->tbo.num_pages; |
| 414 | } |
| 415 | |
Christian König | 984810f | 2015-11-14 21:05:35 +0100 | [diff] [blame] | 416 | /** |
| 417 | * cs_parser_fini() - clean parser states |
| 418 | * @parser: parser structure holding parsing context. |
| 419 | * @error: error number |
| 420 | * |
| 421 | * If error is set than unvalidate buffer, otherwise just free memory |
| 422 | * used by parsing context. |
| 423 | **/ |
| 424 | static void amdgpu_cs_parser_fini(struct amdgpu_cs_parser *parser, int error, bool backoff) |
Chunming Zhou | 049fc52 | 2015-07-21 14:36:51 +0800 | [diff] [blame] | 425 | { |
Christian König | eceb8a1 | 2016-01-11 15:35:21 +0100 | [diff] [blame] | 426 | struct amdgpu_fpriv *fpriv = parser->filp->driver_priv; |
Christian König | 984810f | 2015-11-14 21:05:35 +0100 | [diff] [blame] | 427 | unsigned i; |
| 428 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 429 | if (!error) { |
Nicolai Hähnle | 28b8d66 | 2016-01-27 11:04:19 -0500 | [diff] [blame] | 430 | amdgpu_vm_move_pt_bos_in_lru(parser->adev, &fpriv->vm); |
| 431 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 432 | /* Sort the buffer list from the smallest to largest buffer, |
| 433 | * which affects the order of buffers in the LRU list. |
| 434 | * This assures that the smallest buffers are added first |
| 435 | * to the LRU list, so they are likely to be later evicted |
| 436 | * first, instead of large buffers whose eviction is more |
| 437 | * expensive. |
| 438 | * |
| 439 | * This slightly lowers the number of bytes moved by TTM |
| 440 | * per frame under memory pressure. |
| 441 | */ |
| 442 | list_sort(NULL, &parser->validated, cmp_size_smaller_first); |
| 443 | |
| 444 | ttm_eu_fence_buffer_objects(&parser->ticket, |
Christian König | 984810f | 2015-11-14 21:05:35 +0100 | [diff] [blame] | 445 | &parser->validated, |
| 446 | parser->fence); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 447 | } else if (backoff) { |
| 448 | ttm_eu_backoff_reservation(&parser->ticket, |
| 449 | &parser->validated); |
| 450 | } |
Christian König | 984810f | 2015-11-14 21:05:35 +0100 | [diff] [blame] | 451 | fence_put(parser->fence); |
Christian König | 7e52a81 | 2015-11-04 15:44:39 +0100 | [diff] [blame] | 452 | |
Christian König | 3cb485f | 2015-05-11 15:34:59 +0200 | [diff] [blame] | 453 | if (parser->ctx) |
| 454 | amdgpu_ctx_put(parser->ctx); |
Chunming Zhou | a3348bb | 2015-08-18 16:25:46 +0800 | [diff] [blame] | 455 | if (parser->bo_list) |
| 456 | amdgpu_bo_list_put(parser->bo_list); |
| 457 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 458 | for (i = 0; i < parser->nchunks; i++) |
| 459 | drm_free_large(parser->chunks[i].kdata); |
| 460 | kfree(parser->chunks); |
Christian König | e4a58a2 | 2015-11-05 17:00:25 +0100 | [diff] [blame] | 461 | if (parser->ibs) |
| 462 | for (i = 0; i < parser->num_ibs; i++) |
| 463 | amdgpu_ib_free(parser->adev, &parser->ibs[i]); |
| 464 | kfree(parser->ibs); |
Christian König | 91acbeb | 2015-12-14 16:42:31 +0100 | [diff] [blame] | 465 | amdgpu_bo_unref(&parser->uf.bo); |
| 466 | amdgpu_bo_unref(&parser->uf_entry.robj); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 467 | } |
| 468 | |
| 469 | static int amdgpu_bo_vm_update_pte(struct amdgpu_cs_parser *p, |
| 470 | struct amdgpu_vm *vm) |
| 471 | { |
| 472 | struct amdgpu_device *adev = p->adev; |
| 473 | struct amdgpu_bo_va *bo_va; |
| 474 | struct amdgpu_bo *bo; |
| 475 | int i, r; |
| 476 | |
| 477 | r = amdgpu_vm_update_page_directory(adev, vm); |
| 478 | if (r) |
| 479 | return r; |
| 480 | |
Bas Nieuwenhuizen | 05906de | 2015-08-14 20:08:40 +0200 | [diff] [blame] | 481 | r = amdgpu_sync_fence(adev, &p->ibs[0].sync, vm->page_directory_fence); |
| 482 | if (r) |
| 483 | return r; |
| 484 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 485 | r = amdgpu_vm_clear_freed(adev, vm); |
| 486 | if (r) |
| 487 | return r; |
| 488 | |
| 489 | if (p->bo_list) { |
| 490 | for (i = 0; i < p->bo_list->num_entries; i++) { |
Christian König | 91e1a52 | 2015-07-06 22:06:40 +0200 | [diff] [blame] | 491 | struct fence *f; |
| 492 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 493 | /* ignore duplicates */ |
| 494 | bo = p->bo_list->array[i].robj; |
| 495 | if (!bo) |
| 496 | continue; |
| 497 | |
| 498 | bo_va = p->bo_list->array[i].bo_va; |
| 499 | if (bo_va == NULL) |
| 500 | continue; |
| 501 | |
| 502 | r = amdgpu_vm_bo_update(adev, bo_va, &bo->tbo.mem); |
| 503 | if (r) |
| 504 | return r; |
| 505 | |
Chunming Zhou | bb1e38a4 | 2015-08-03 18:19:38 +0800 | [diff] [blame] | 506 | f = bo_va->last_pt_update; |
Christian König | 91e1a52 | 2015-07-06 22:06:40 +0200 | [diff] [blame] | 507 | r = amdgpu_sync_fence(adev, &p->ibs[0].sync, f); |
| 508 | if (r) |
| 509 | return r; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 510 | } |
Christian König | b495bd3 | 2015-09-10 14:00:35 +0200 | [diff] [blame] | 511 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 512 | } |
| 513 | |
Christian König | b495bd3 | 2015-09-10 14:00:35 +0200 | [diff] [blame] | 514 | r = amdgpu_vm_clear_invalids(adev, vm, &p->ibs[0].sync); |
| 515 | |
| 516 | if (amdgpu_vm_debug && p->bo_list) { |
| 517 | /* Invalidate all BOs to test for userspace bugs */ |
| 518 | for (i = 0; i < p->bo_list->num_entries; i++) { |
| 519 | /* ignore duplicates */ |
| 520 | bo = p->bo_list->array[i].robj; |
| 521 | if (!bo) |
| 522 | continue; |
| 523 | |
| 524 | amdgpu_vm_bo_invalidate(adev, bo); |
| 525 | } |
| 526 | } |
| 527 | |
| 528 | return r; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 529 | } |
| 530 | |
| 531 | static int amdgpu_cs_ib_vm_chunk(struct amdgpu_device *adev, |
| 532 | struct amdgpu_cs_parser *parser) |
| 533 | { |
| 534 | struct amdgpu_fpriv *fpriv = parser->filp->driver_priv; |
| 535 | struct amdgpu_vm *vm = &fpriv->vm; |
| 536 | struct amdgpu_ring *ring; |
| 537 | int i, r; |
| 538 | |
| 539 | if (parser->num_ibs == 0) |
| 540 | return 0; |
| 541 | |
| 542 | /* Only for UVD/VCE VM emulation */ |
| 543 | for (i = 0; i < parser->num_ibs; i++) { |
| 544 | ring = parser->ibs[i].ring; |
| 545 | if (ring->funcs->parse_cs) { |
| 546 | r = amdgpu_ring_parse_cs(ring, parser, i); |
| 547 | if (r) |
| 548 | return r; |
| 549 | } |
| 550 | } |
| 551 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 552 | r = amdgpu_bo_vm_update_pte(parser, vm); |
Christian König | 984810f | 2015-11-14 21:05:35 +0100 | [diff] [blame] | 553 | if (!r) |
| 554 | amdgpu_cs_sync_rings(parser); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 555 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 556 | return r; |
| 557 | } |
| 558 | |
| 559 | static int amdgpu_cs_handle_lockup(struct amdgpu_device *adev, int r) |
| 560 | { |
| 561 | if (r == -EDEADLK) { |
| 562 | r = amdgpu_gpu_reset(adev); |
| 563 | if (!r) |
| 564 | r = -EAGAIN; |
| 565 | } |
| 566 | return r; |
| 567 | } |
| 568 | |
| 569 | static int amdgpu_cs_ib_fill(struct amdgpu_device *adev, |
| 570 | struct amdgpu_cs_parser *parser) |
| 571 | { |
| 572 | struct amdgpu_fpriv *fpriv = parser->filp->driver_priv; |
| 573 | struct amdgpu_vm *vm = &fpriv->vm; |
| 574 | int i, j; |
| 575 | int r; |
| 576 | |
| 577 | for (i = 0, j = 0; i < parser->nchunks && j < parser->num_ibs; i++) { |
| 578 | struct amdgpu_cs_chunk *chunk; |
| 579 | struct amdgpu_ib *ib; |
| 580 | struct drm_amdgpu_cs_chunk_ib *chunk_ib; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 581 | struct amdgpu_ring *ring; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 582 | |
| 583 | chunk = &parser->chunks[i]; |
| 584 | ib = &parser->ibs[j]; |
| 585 | chunk_ib = (struct drm_amdgpu_cs_chunk_ib *)chunk->kdata; |
| 586 | |
| 587 | if (chunk->chunk_id != AMDGPU_CHUNK_ID_IB) |
| 588 | continue; |
| 589 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 590 | r = amdgpu_cs_get_ring(adev, chunk_ib->ip_type, |
| 591 | chunk_ib->ip_instance, chunk_ib->ring, |
| 592 | &ring); |
Marek Olšák | 3ccec53 | 2015-06-02 17:44:49 +0200 | [diff] [blame] | 593 | if (r) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 594 | return r; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 595 | |
| 596 | if (ring->funcs->parse_cs) { |
Christian König | 4802ce1 | 2015-06-10 17:20:11 +0200 | [diff] [blame] | 597 | struct amdgpu_bo_va_mapping *m; |
Marek Olšák | 3ccec53 | 2015-06-02 17:44:49 +0200 | [diff] [blame] | 598 | struct amdgpu_bo *aobj = NULL; |
Christian König | 4802ce1 | 2015-06-10 17:20:11 +0200 | [diff] [blame] | 599 | uint64_t offset; |
| 600 | uint8_t *kptr; |
Marek Olšák | 3ccec53 | 2015-06-02 17:44:49 +0200 | [diff] [blame] | 601 | |
Christian König | 4802ce1 | 2015-06-10 17:20:11 +0200 | [diff] [blame] | 602 | m = amdgpu_cs_find_mapping(parser, chunk_ib->va_start, |
| 603 | &aobj); |
Marek Olšák | 3ccec53 | 2015-06-02 17:44:49 +0200 | [diff] [blame] | 604 | if (!aobj) { |
| 605 | DRM_ERROR("IB va_start is invalid\n"); |
| 606 | return -EINVAL; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 607 | } |
| 608 | |
Christian König | 4802ce1 | 2015-06-10 17:20:11 +0200 | [diff] [blame] | 609 | if ((chunk_ib->va_start + chunk_ib->ib_bytes) > |
| 610 | (m->it.last + 1) * AMDGPU_GPU_PAGE_SIZE) { |
| 611 | DRM_ERROR("IB va_start+ib_bytes is invalid\n"); |
| 612 | return -EINVAL; |
| 613 | } |
| 614 | |
Marek Olšák | 3ccec53 | 2015-06-02 17:44:49 +0200 | [diff] [blame] | 615 | /* the IB should be reserved at this point */ |
Christian König | 4802ce1 | 2015-06-10 17:20:11 +0200 | [diff] [blame] | 616 | r = amdgpu_bo_kmap(aobj, (void **)&kptr); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 617 | if (r) { |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 618 | return r; |
| 619 | } |
| 620 | |
Christian König | 4802ce1 | 2015-06-10 17:20:11 +0200 | [diff] [blame] | 621 | offset = ((uint64_t)m->it.start) * AMDGPU_GPU_PAGE_SIZE; |
| 622 | kptr += chunk_ib->va_start - offset; |
| 623 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 624 | r = amdgpu_ib_get(ring, NULL, chunk_ib->ib_bytes, ib); |
| 625 | if (r) { |
| 626 | DRM_ERROR("Failed to get ib !\n"); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 627 | return r; |
| 628 | } |
| 629 | |
| 630 | memcpy(ib->ptr, kptr, chunk_ib->ib_bytes); |
| 631 | amdgpu_bo_kunmap(aobj); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 632 | } else { |
| 633 | r = amdgpu_ib_get(ring, vm, 0, ib); |
| 634 | if (r) { |
| 635 | DRM_ERROR("Failed to get ib !\n"); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 636 | return r; |
| 637 | } |
| 638 | |
| 639 | ib->gpu_addr = chunk_ib->va_start; |
| 640 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 641 | |
Marek Olšák | 3ccec53 | 2015-06-02 17:44:49 +0200 | [diff] [blame] | 642 | ib->length_dw = chunk_ib->ib_bytes / 4; |
Jammy Zhou | de807f8 | 2015-05-11 23:41:41 +0800 | [diff] [blame] | 643 | ib->flags = chunk_ib->flags; |
Christian König | 3cb485f | 2015-05-11 15:34:59 +0200 | [diff] [blame] | 644 | ib->ctx = parser->ctx; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 645 | j++; |
| 646 | } |
| 647 | |
| 648 | if (!parser->num_ibs) |
| 649 | return 0; |
| 650 | |
| 651 | /* add GDS resources to first IB */ |
| 652 | if (parser->bo_list) { |
| 653 | struct amdgpu_bo *gds = parser->bo_list->gds_obj; |
| 654 | struct amdgpu_bo *gws = parser->bo_list->gws_obj; |
| 655 | struct amdgpu_bo *oa = parser->bo_list->oa_obj; |
| 656 | struct amdgpu_ib *ib = &parser->ibs[0]; |
| 657 | |
| 658 | if (gds) { |
| 659 | ib->gds_base = amdgpu_bo_gpu_offset(gds); |
| 660 | ib->gds_size = amdgpu_bo_size(gds); |
| 661 | } |
| 662 | if (gws) { |
| 663 | ib->gws_base = amdgpu_bo_gpu_offset(gws); |
| 664 | ib->gws_size = amdgpu_bo_size(gws); |
| 665 | } |
| 666 | if (oa) { |
| 667 | ib->oa_base = amdgpu_bo_gpu_offset(oa); |
| 668 | ib->oa_size = amdgpu_bo_size(oa); |
| 669 | } |
| 670 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 671 | /* wrap the last IB with user fence */ |
| 672 | if (parser->uf.bo) { |
| 673 | struct amdgpu_ib *ib = &parser->ibs[parser->num_ibs - 1]; |
| 674 | |
| 675 | /* UVD & VCE fw doesn't support user fences */ |
| 676 | if (ib->ring->type == AMDGPU_RING_TYPE_UVD || |
| 677 | ib->ring->type == AMDGPU_RING_TYPE_VCE) |
| 678 | return -EINVAL; |
| 679 | |
| 680 | ib->user = &parser->uf; |
| 681 | } |
| 682 | |
| 683 | return 0; |
| 684 | } |
| 685 | |
Christian König | 2b48d32 | 2015-06-19 17:31:29 +0200 | [diff] [blame] | 686 | static int amdgpu_cs_dependencies(struct amdgpu_device *adev, |
| 687 | struct amdgpu_cs_parser *p) |
| 688 | { |
Christian König | 76a1ea6 | 2015-07-06 19:42:10 +0200 | [diff] [blame] | 689 | struct amdgpu_fpriv *fpriv = p->filp->driver_priv; |
Christian König | 2b48d32 | 2015-06-19 17:31:29 +0200 | [diff] [blame] | 690 | struct amdgpu_ib *ib; |
| 691 | int i, j, r; |
| 692 | |
| 693 | if (!p->num_ibs) |
| 694 | return 0; |
| 695 | |
| 696 | /* Add dependencies to first IB */ |
| 697 | ib = &p->ibs[0]; |
| 698 | for (i = 0; i < p->nchunks; ++i) { |
| 699 | struct drm_amdgpu_cs_chunk_dep *deps; |
| 700 | struct amdgpu_cs_chunk *chunk; |
| 701 | unsigned num_deps; |
| 702 | |
| 703 | chunk = &p->chunks[i]; |
| 704 | |
| 705 | if (chunk->chunk_id != AMDGPU_CHUNK_ID_DEPENDENCIES) |
| 706 | continue; |
| 707 | |
| 708 | deps = (struct drm_amdgpu_cs_chunk_dep *)chunk->kdata; |
| 709 | num_deps = chunk->length_dw * 4 / |
| 710 | sizeof(struct drm_amdgpu_cs_chunk_dep); |
| 711 | |
| 712 | for (j = 0; j < num_deps; ++j) { |
Christian König | 2b48d32 | 2015-06-19 17:31:29 +0200 | [diff] [blame] | 713 | struct amdgpu_ring *ring; |
Christian König | 76a1ea6 | 2015-07-06 19:42:10 +0200 | [diff] [blame] | 714 | struct amdgpu_ctx *ctx; |
Christian König | 21c16bf | 2015-07-07 17:24:49 +0200 | [diff] [blame] | 715 | struct fence *fence; |
Christian König | 2b48d32 | 2015-06-19 17:31:29 +0200 | [diff] [blame] | 716 | |
| 717 | r = amdgpu_cs_get_ring(adev, deps[j].ip_type, |
| 718 | deps[j].ip_instance, |
| 719 | deps[j].ring, &ring); |
| 720 | if (r) |
| 721 | return r; |
| 722 | |
Christian König | 76a1ea6 | 2015-07-06 19:42:10 +0200 | [diff] [blame] | 723 | ctx = amdgpu_ctx_get(fpriv, deps[j].ctx_id); |
| 724 | if (ctx == NULL) |
| 725 | return -EINVAL; |
| 726 | |
Christian König | 21c16bf | 2015-07-07 17:24:49 +0200 | [diff] [blame] | 727 | fence = amdgpu_ctx_get_fence(ctx, ring, |
| 728 | deps[j].handle); |
| 729 | if (IS_ERR(fence)) { |
| 730 | r = PTR_ERR(fence); |
Christian König | 76a1ea6 | 2015-07-06 19:42:10 +0200 | [diff] [blame] | 731 | amdgpu_ctx_put(ctx); |
Christian König | 2b48d32 | 2015-06-19 17:31:29 +0200 | [diff] [blame] | 732 | return r; |
Christian König | 21c16bf | 2015-07-07 17:24:49 +0200 | [diff] [blame] | 733 | |
| 734 | } else if (fence) { |
| 735 | r = amdgpu_sync_fence(adev, &ib->sync, fence); |
| 736 | fence_put(fence); |
| 737 | amdgpu_ctx_put(ctx); |
| 738 | if (r) |
| 739 | return r; |
Christian König | 76a1ea6 | 2015-07-06 19:42:10 +0200 | [diff] [blame] | 740 | } |
Christian König | 2b48d32 | 2015-06-19 17:31:29 +0200 | [diff] [blame] | 741 | } |
| 742 | } |
| 743 | |
| 744 | return 0; |
| 745 | } |
| 746 | |
Junwei Zhang | 4c7eb91 | 2015-09-09 09:05:55 +0800 | [diff] [blame] | 747 | static int amdgpu_cs_free_job(struct amdgpu_job *job) |
Chunming Zhou | bb977d3 | 2015-08-18 15:16:40 +0800 | [diff] [blame] | 748 | { |
| 749 | int i; |
Junwei Zhang | 4c7eb91 | 2015-09-09 09:05:55 +0800 | [diff] [blame] | 750 | if (job->ibs) |
| 751 | for (i = 0; i < job->num_ibs; i++) |
| 752 | amdgpu_ib_free(job->adev, &job->ibs[i]); |
| 753 | kfree(job->ibs); |
| 754 | if (job->uf.bo) |
Christian König | f3f1769 | 2015-12-03 19:55:52 +0100 | [diff] [blame] | 755 | amdgpu_bo_unref(&job->uf.bo); |
Chunming Zhou | bb977d3 | 2015-08-18 15:16:40 +0800 | [diff] [blame] | 756 | return 0; |
| 757 | } |
| 758 | |
Chunming Zhou | 049fc52 | 2015-07-21 14:36:51 +0800 | [diff] [blame] | 759 | int amdgpu_cs_ioctl(struct drm_device *dev, void *data, struct drm_file *filp) |
| 760 | { |
| 761 | struct amdgpu_device *adev = dev->dev_private; |
| 762 | union drm_amdgpu_cs *cs = data; |
Christian König | 7e52a81 | 2015-11-04 15:44:39 +0100 | [diff] [blame] | 763 | struct amdgpu_cs_parser parser = {}; |
Christian König | 26a6980 | 2015-08-18 21:09:33 +0200 | [diff] [blame] | 764 | bool reserved_buffers = false; |
| 765 | int i, r; |
Chunming Zhou | 049fc52 | 2015-07-21 14:36:51 +0800 | [diff] [blame] | 766 | |
Christian König | 0c418f1 | 2015-09-01 15:13:53 +0200 | [diff] [blame] | 767 | if (!adev->accel_working) |
Chunming Zhou | 049fc52 | 2015-07-21 14:36:51 +0800 | [diff] [blame] | 768 | return -EBUSY; |
Chunming Zhou | 049fc52 | 2015-07-21 14:36:51 +0800 | [diff] [blame] | 769 | |
Christian König | 7e52a81 | 2015-11-04 15:44:39 +0100 | [diff] [blame] | 770 | parser.adev = adev; |
| 771 | parser.filp = filp; |
| 772 | |
| 773 | r = amdgpu_cs_parser_init(&parser, data); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 774 | if (r) { |
Chunming Zhou | 049fc52 | 2015-07-21 14:36:51 +0800 | [diff] [blame] | 775 | DRM_ERROR("Failed to initialize parser !\n"); |
Christian König | 7e52a81 | 2015-11-04 15:44:39 +0100 | [diff] [blame] | 776 | amdgpu_cs_parser_fini(&parser, r, false); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 777 | r = amdgpu_cs_handle_lockup(adev, r); |
| 778 | return r; |
| 779 | } |
Christian König | 2a7d9bd | 2015-12-18 20:33:52 +0100 | [diff] [blame] | 780 | r = amdgpu_cs_parser_bos(&parser, data); |
Christian König | 26a6980 | 2015-08-18 21:09:33 +0200 | [diff] [blame] | 781 | if (r == -ENOMEM) |
| 782 | DRM_ERROR("Not enough memory for command submission!\n"); |
| 783 | else if (r && r != -ERESTARTSYS) |
| 784 | DRM_ERROR("Failed to process the buffer list %d!\n", r); |
| 785 | else if (!r) { |
| 786 | reserved_buffers = true; |
Christian König | 7e52a81 | 2015-11-04 15:44:39 +0100 | [diff] [blame] | 787 | r = amdgpu_cs_ib_fill(adev, &parser); |
Christian König | 26a6980 | 2015-08-18 21:09:33 +0200 | [diff] [blame] | 788 | } |
| 789 | |
| 790 | if (!r) { |
Christian König | 7e52a81 | 2015-11-04 15:44:39 +0100 | [diff] [blame] | 791 | r = amdgpu_cs_dependencies(adev, &parser); |
Christian König | 26a6980 | 2015-08-18 21:09:33 +0200 | [diff] [blame] | 792 | if (r) |
| 793 | DRM_ERROR("Failed in the dependencies handling %d!\n", r); |
| 794 | } |
| 795 | |
| 796 | if (r) |
| 797 | goto out; |
| 798 | |
Christian König | 7e52a81 | 2015-11-04 15:44:39 +0100 | [diff] [blame] | 799 | for (i = 0; i < parser.num_ibs; i++) |
| 800 | trace_amdgpu_cs(&parser, i); |
Christian König | 26a6980 | 2015-08-18 21:09:33 +0200 | [diff] [blame] | 801 | |
Christian König | 7e52a81 | 2015-11-04 15:44:39 +0100 | [diff] [blame] | 802 | r = amdgpu_cs_ib_vm_chunk(adev, &parser); |
Chunming Zhou | 4fe6311 | 2015-08-18 16:12:15 +0800 | [diff] [blame] | 803 | if (r) |
| 804 | goto out; |
| 805 | |
Christian König | 7e52a81 | 2015-11-04 15:44:39 +0100 | [diff] [blame] | 806 | if (amdgpu_enable_scheduler && parser.num_ibs) { |
Christian König | 7e52a81 | 2015-11-04 15:44:39 +0100 | [diff] [blame] | 807 | struct amdgpu_ring * ring = parser.ibs->ring; |
Christian König | e284022 | 2015-11-05 19:49:48 +0100 | [diff] [blame] | 808 | struct amd_sched_fence *fence; |
| 809 | struct amdgpu_job *job; |
Christian König | 7e52a81 | 2015-11-04 15:44:39 +0100 | [diff] [blame] | 810 | |
Chunming Zhou | bb977d3 | 2015-08-18 15:16:40 +0800 | [diff] [blame] | 811 | job = kzalloc(sizeof(struct amdgpu_job), GFP_KERNEL); |
Dan Carpenter | 4cfdcd9 | 2015-11-04 16:25:09 +0300 | [diff] [blame] | 812 | if (!job) { |
| 813 | r = -ENOMEM; |
| 814 | goto out; |
| 815 | } |
Christian König | 7e52a81 | 2015-11-04 15:44:39 +0100 | [diff] [blame] | 816 | |
Christian König | 4f839a2 | 2015-09-08 20:22:31 +0200 | [diff] [blame] | 817 | job->base.sched = &ring->sched; |
Christian König | 7e52a81 | 2015-11-04 15:44:39 +0100 | [diff] [blame] | 818 | job->base.s_entity = &parser.ctx->rings[ring->idx].entity; |
| 819 | job->adev = parser.adev; |
Christian König | e284022 | 2015-11-05 19:49:48 +0100 | [diff] [blame] | 820 | job->owner = parser.filp; |
| 821 | job->free_job = amdgpu_cs_free_job; |
| 822 | |
Christian König | 5d82730 | 2015-11-13 13:04:50 +0100 | [diff] [blame] | 823 | job->ibs = parser.ibs; |
| 824 | job->num_ibs = parser.num_ibs; |
| 825 | parser.ibs = NULL; |
| 826 | parser.num_ibs = 0; |
| 827 | |
Chunming Zhou | bb977d3 | 2015-08-18 15:16:40 +0800 | [diff] [blame] | 828 | if (job->ibs[job->num_ibs - 1].user) { |
Christian König | 7e52a81 | 2015-11-04 15:44:39 +0100 | [diff] [blame] | 829 | job->uf = parser.uf; |
Chunming Zhou | bb977d3 | 2015-08-18 15:16:40 +0800 | [diff] [blame] | 830 | job->ibs[job->num_ibs - 1].user = &job->uf; |
Christian König | 7e52a81 | 2015-11-04 15:44:39 +0100 | [diff] [blame] | 831 | parser.uf.bo = NULL; |
Chunming Zhou | bb977d3 | 2015-08-18 15:16:40 +0800 | [diff] [blame] | 832 | } |
| 833 | |
Christian König | e284022 | 2015-11-05 19:49:48 +0100 | [diff] [blame] | 834 | fence = amd_sched_fence_create(job->base.s_entity, |
| 835 | parser.filp); |
| 836 | if (!fence) { |
| 837 | r = -ENOMEM; |
Chunming Zhou | bb977d3 | 2015-08-18 15:16:40 +0800 | [diff] [blame] | 838 | amdgpu_cs_free_job(job); |
| 839 | kfree(job); |
Chunming Zhou | f556cb0c | 2015-08-02 11:18:04 +0800 | [diff] [blame] | 840 | goto out; |
| 841 | } |
Christian König | e284022 | 2015-11-05 19:49:48 +0100 | [diff] [blame] | 842 | job->base.s_fence = fence; |
Christian König | 984810f | 2015-11-14 21:05:35 +0100 | [diff] [blame] | 843 | parser.fence = fence_get(&fence->base); |
Christian König | e284022 | 2015-11-05 19:49:48 +0100 | [diff] [blame] | 844 | |
| 845 | cs->out.handle = amdgpu_ctx_add_fence(parser.ctx, ring, |
| 846 | &fence->base); |
Christian König | e4a58a2 | 2015-11-05 17:00:25 +0100 | [diff] [blame] | 847 | job->ibs[job->num_ibs - 1].sequence = cs->out.handle; |
Christian König | eb98d1c | 2015-08-20 17:28:36 +0200 | [diff] [blame] | 848 | |
Chunming Zhou | 7034dec | 2015-11-11 14:56:00 +0800 | [diff] [blame] | 849 | trace_amdgpu_cs_ioctl(job); |
Christian König | e284022 | 2015-11-05 19:49:48 +0100 | [diff] [blame] | 850 | amd_sched_entity_push_job(&job->base); |
| 851 | |
Christian König | 984810f | 2015-11-14 21:05:35 +0100 | [diff] [blame] | 852 | } else { |
| 853 | struct amdgpu_fence *fence; |
Christian König | e284022 | 2015-11-05 19:49:48 +0100 | [diff] [blame] | 854 | |
Christian König | 984810f | 2015-11-14 21:05:35 +0100 | [diff] [blame] | 855 | r = amdgpu_ib_schedule(adev, parser.num_ibs, parser.ibs, |
| 856 | parser.filp); |
| 857 | fence = parser.ibs[parser.num_ibs - 1].fence; |
| 858 | parser.fence = fence_get(&fence->base); |
| 859 | cs->out.handle = parser.ibs[parser.num_ibs - 1].sequence; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 860 | } |
| 861 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 862 | out: |
Christian König | 7e52a81 | 2015-11-04 15:44:39 +0100 | [diff] [blame] | 863 | amdgpu_cs_parser_fini(&parser, r, reserved_buffers); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 864 | r = amdgpu_cs_handle_lockup(adev, r); |
| 865 | return r; |
| 866 | } |
| 867 | |
| 868 | /** |
| 869 | * amdgpu_cs_wait_ioctl - wait for a command submission to finish |
| 870 | * |
| 871 | * @dev: drm device |
| 872 | * @data: data from userspace |
| 873 | * @filp: file private |
| 874 | * |
| 875 | * Wait for the command submission identified by handle to finish. |
| 876 | */ |
| 877 | int amdgpu_cs_wait_ioctl(struct drm_device *dev, void *data, |
| 878 | struct drm_file *filp) |
| 879 | { |
| 880 | union drm_amdgpu_wait_cs *wait = data; |
| 881 | struct amdgpu_device *adev = dev->dev_private; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 882 | unsigned long timeout = amdgpu_gem_timeout(wait->in.timeout); |
Christian König | 03507c4 | 2015-06-19 17:00:19 +0200 | [diff] [blame] | 883 | struct amdgpu_ring *ring = NULL; |
Jammy Zhou | 66b3cf2 | 2015-05-08 17:29:40 +0800 | [diff] [blame] | 884 | struct amdgpu_ctx *ctx; |
Christian König | 21c16bf | 2015-07-07 17:24:49 +0200 | [diff] [blame] | 885 | struct fence *fence; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 886 | long r; |
| 887 | |
Christian König | 21c16bf | 2015-07-07 17:24:49 +0200 | [diff] [blame] | 888 | r = amdgpu_cs_get_ring(adev, wait->in.ip_type, wait->in.ip_instance, |
| 889 | wait->in.ring, &ring); |
| 890 | if (r) |
| 891 | return r; |
| 892 | |
Jammy Zhou | 66b3cf2 | 2015-05-08 17:29:40 +0800 | [diff] [blame] | 893 | ctx = amdgpu_ctx_get(filp->driver_priv, wait->in.ctx_id); |
| 894 | if (ctx == NULL) |
| 895 | return -EINVAL; |
Chunming Zhou | 4b559c9 | 2015-07-21 15:53:04 +0800 | [diff] [blame] | 896 | |
| 897 | fence = amdgpu_ctx_get_fence(ctx, ring, wait->in.handle); |
| 898 | if (IS_ERR(fence)) |
| 899 | r = PTR_ERR(fence); |
| 900 | else if (fence) { |
| 901 | r = fence_wait_timeout(fence, true, timeout); |
| 902 | fence_put(fence); |
| 903 | } else |
Christian König | 21c16bf | 2015-07-07 17:24:49 +0200 | [diff] [blame] | 904 | r = 1; |
| 905 | |
Jammy Zhou | 66b3cf2 | 2015-05-08 17:29:40 +0800 | [diff] [blame] | 906 | amdgpu_ctx_put(ctx); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 907 | if (r < 0) |
| 908 | return r; |
| 909 | |
| 910 | memset(wait, 0, sizeof(*wait)); |
| 911 | wait->out.status = (r == 0); |
| 912 | |
| 913 | return 0; |
| 914 | } |
| 915 | |
| 916 | /** |
| 917 | * amdgpu_cs_find_bo_va - find bo_va for VM address |
| 918 | * |
| 919 | * @parser: command submission parser context |
| 920 | * @addr: VM address |
| 921 | * @bo: resulting BO of the mapping found |
| 922 | * |
| 923 | * Search the buffer objects in the command submission context for a certain |
| 924 | * virtual memory address. Returns allocation structure when found, NULL |
| 925 | * otherwise. |
| 926 | */ |
| 927 | struct amdgpu_bo_va_mapping * |
| 928 | amdgpu_cs_find_mapping(struct amdgpu_cs_parser *parser, |
| 929 | uint64_t addr, struct amdgpu_bo **bo) |
| 930 | { |
| 931 | struct amdgpu_bo_list_entry *reloc; |
| 932 | struct amdgpu_bo_va_mapping *mapping; |
| 933 | |
| 934 | addr /= AMDGPU_GPU_PAGE_SIZE; |
| 935 | |
| 936 | list_for_each_entry(reloc, &parser->validated, tv.head) { |
| 937 | if (!reloc->bo_va) |
| 938 | continue; |
| 939 | |
Christian König | 7fc1195 | 2015-07-30 11:53:42 +0200 | [diff] [blame] | 940 | list_for_each_entry(mapping, &reloc->bo_va->valids, list) { |
| 941 | if (mapping->it.start > addr || |
| 942 | addr > mapping->it.last) |
| 943 | continue; |
| 944 | |
| 945 | *bo = reloc->bo_va->bo; |
| 946 | return mapping; |
| 947 | } |
| 948 | |
| 949 | list_for_each_entry(mapping, &reloc->bo_va->invalids, list) { |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 950 | if (mapping->it.start > addr || |
| 951 | addr > mapping->it.last) |
| 952 | continue; |
| 953 | |
| 954 | *bo = reloc->bo_va->bo; |
| 955 | return mapping; |
| 956 | } |
| 957 | } |
| 958 | |
| 959 | return NULL; |
| 960 | } |