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 | */ |
Stephen Rothwell | 568d7c7 | 2016-03-17 15:30:49 +1100 | [diff] [blame] | 27 | #include <linux/pagemap.h> |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 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, |
Christian König | 758ac17 | 2016-05-06 22:14:00 +0200 | [diff] [blame] | 90 | struct drm_amdgpu_cs_chunk_fence *data, |
| 91 | uint32_t *offset) |
Christian König | 91acbeb | 2015-12-14 16:42:31 +0100 | [diff] [blame] | 92 | { |
| 93 | struct drm_gem_object *gobj; |
Christian König | aa29040 | 2016-09-09 11:21:43 +0200 | [diff] [blame] | 94 | unsigned long size; |
Christian König | 91acbeb | 2015-12-14 16:42:31 +0100 | [diff] [blame] | 95 | |
Chris Wilson | a8ad0bd | 2016-05-09 11:04:54 +0100 | [diff] [blame] | 96 | gobj = drm_gem_object_lookup(p->filp, data->handle); |
Christian König | 91acbeb | 2015-12-14 16:42:31 +0100 | [diff] [blame] | 97 | if (gobj == NULL) |
| 98 | return -EINVAL; |
| 99 | |
Christian König | 758ac17 | 2016-05-06 22:14:00 +0200 | [diff] [blame] | 100 | p->uf_entry.robj = amdgpu_bo_ref(gem_to_amdgpu_bo(gobj)); |
Christian König | 91acbeb | 2015-12-14 16:42:31 +0100 | [diff] [blame] | 101 | p->uf_entry.priority = 0; |
| 102 | p->uf_entry.tv.bo = &p->uf_entry.robj->tbo; |
| 103 | p->uf_entry.tv.shared = true; |
Christian König | 2f568db | 2016-02-23 12:36:59 +0100 | [diff] [blame] | 104 | p->uf_entry.user_pages = NULL; |
Christian König | aa29040 | 2016-09-09 11:21:43 +0200 | [diff] [blame] | 105 | |
| 106 | size = amdgpu_bo_size(p->uf_entry.robj); |
| 107 | if (size != PAGE_SIZE || (data->offset + 8) > size) |
| 108 | return -EINVAL; |
| 109 | |
Christian König | 758ac17 | 2016-05-06 22:14:00 +0200 | [diff] [blame] | 110 | *offset = data->offset; |
Christian König | 91acbeb | 2015-12-14 16:42:31 +0100 | [diff] [blame] | 111 | |
| 112 | drm_gem_object_unreference_unlocked(gobj); |
Christian König | 758ac17 | 2016-05-06 22:14:00 +0200 | [diff] [blame] | 113 | |
| 114 | if (amdgpu_ttm_tt_get_usermm(p->uf_entry.robj->tbo.ttm)) { |
| 115 | amdgpu_bo_unref(&p->uf_entry.robj); |
| 116 | return -EINVAL; |
| 117 | } |
| 118 | |
Christian König | 91acbeb | 2015-12-14 16:42:31 +0100 | [diff] [blame] | 119 | return 0; |
| 120 | } |
| 121 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 122 | int amdgpu_cs_parser_init(struct amdgpu_cs_parser *p, void *data) |
| 123 | { |
Christian König | 4c0b242 | 2016-02-01 11:20:37 +0100 | [diff] [blame] | 124 | struct amdgpu_fpriv *fpriv = p->filp->driver_priv; |
Monk Liu | c563783 | 2016-04-19 20:11:32 +0800 | [diff] [blame] | 125 | struct amdgpu_vm *vm = &fpriv->vm; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 126 | union drm_amdgpu_cs *cs = data; |
| 127 | uint64_t *chunk_array_user; |
Dan Carpenter | 1d26347 | 2015-09-23 13:59:28 +0300 | [diff] [blame] | 128 | uint64_t *chunk_array; |
Christian König | 50838c8 | 2016-02-03 13:44:52 +0100 | [diff] [blame] | 129 | unsigned size, num_ibs = 0; |
Christian König | 758ac17 | 2016-05-06 22:14:00 +0200 | [diff] [blame] | 130 | uint32_t uf_offset = 0; |
Dan Carpenter | 5431350 | 2015-09-25 14:36:55 +0300 | [diff] [blame] | 131 | int i; |
Dan Carpenter | 1d26347 | 2015-09-23 13:59:28 +0300 | [diff] [blame] | 132 | int ret; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 133 | |
Dan Carpenter | 1d26347 | 2015-09-23 13:59:28 +0300 | [diff] [blame] | 134 | if (cs->in.num_chunks == 0) |
| 135 | return 0; |
| 136 | |
| 137 | chunk_array = kmalloc_array(cs->in.num_chunks, sizeof(uint64_t), GFP_KERNEL); |
| 138 | if (!chunk_array) |
| 139 | return -ENOMEM; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 140 | |
Christian König | 3cb485f | 2015-05-11 15:34:59 +0200 | [diff] [blame] | 141 | p->ctx = amdgpu_ctx_get(fpriv, cs->in.ctx_id); |
| 142 | if (!p->ctx) { |
Dan Carpenter | 1d26347 | 2015-09-23 13:59:28 +0300 | [diff] [blame] | 143 | ret = -EINVAL; |
| 144 | goto free_chunk; |
Christian König | 3cb485f | 2015-05-11 15:34:59 +0200 | [diff] [blame] | 145 | } |
Dan Carpenter | 1d26347 | 2015-09-23 13:59:28 +0300 | [diff] [blame] | 146 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 147 | /* get chunks */ |
Arnd Bergmann | 028423b | 2015-10-07 09:41:27 +0200 | [diff] [blame] | 148 | chunk_array_user = (uint64_t __user *)(unsigned long)(cs->in.chunks); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 149 | if (copy_from_user(chunk_array, chunk_array_user, |
| 150 | sizeof(uint64_t)*cs->in.num_chunks)) { |
Dan Carpenter | 1d26347 | 2015-09-23 13:59:28 +0300 | [diff] [blame] | 151 | ret = -EFAULT; |
Christian König | 2a7d9bd | 2015-12-18 20:33:52 +0100 | [diff] [blame] | 152 | goto put_ctx; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 153 | } |
| 154 | |
| 155 | p->nchunks = cs->in.num_chunks; |
monk.liu | e60b344 | 2015-07-17 18:39:25 +0800 | [diff] [blame] | 156 | p->chunks = kmalloc_array(p->nchunks, sizeof(struct amdgpu_cs_chunk), |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 157 | GFP_KERNEL); |
Dan Carpenter | 1d26347 | 2015-09-23 13:59:28 +0300 | [diff] [blame] | 158 | if (!p->chunks) { |
| 159 | ret = -ENOMEM; |
Christian König | 2a7d9bd | 2015-12-18 20:33:52 +0100 | [diff] [blame] | 160 | goto put_ctx; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 161 | } |
| 162 | |
| 163 | for (i = 0; i < p->nchunks; i++) { |
| 164 | struct drm_amdgpu_cs_chunk __user **chunk_ptr = NULL; |
| 165 | struct drm_amdgpu_cs_chunk user_chunk; |
| 166 | uint32_t __user *cdata; |
| 167 | |
Arnd Bergmann | 028423b | 2015-10-07 09:41:27 +0200 | [diff] [blame] | 168 | chunk_ptr = (void __user *)(unsigned long)chunk_array[i]; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 169 | if (copy_from_user(&user_chunk, chunk_ptr, |
| 170 | sizeof(struct drm_amdgpu_cs_chunk))) { |
Dan Carpenter | 1d26347 | 2015-09-23 13:59:28 +0300 | [diff] [blame] | 171 | ret = -EFAULT; |
| 172 | i--; |
| 173 | goto free_partial_kdata; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 174 | } |
| 175 | p->chunks[i].chunk_id = user_chunk.chunk_id; |
| 176 | p->chunks[i].length_dw = user_chunk.length_dw; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 177 | |
| 178 | size = p->chunks[i].length_dw; |
Arnd Bergmann | 028423b | 2015-10-07 09:41:27 +0200 | [diff] [blame] | 179 | cdata = (void __user *)(unsigned long)user_chunk.chunk_data; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 180 | |
| 181 | p->chunks[i].kdata = drm_malloc_ab(size, sizeof(uint32_t)); |
| 182 | if (p->chunks[i].kdata == NULL) { |
Dan Carpenter | 1d26347 | 2015-09-23 13:59:28 +0300 | [diff] [blame] | 183 | ret = -ENOMEM; |
| 184 | i--; |
| 185 | goto free_partial_kdata; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 186 | } |
| 187 | size *= sizeof(uint32_t); |
| 188 | if (copy_from_user(p->chunks[i].kdata, cdata, size)) { |
Dan Carpenter | 1d26347 | 2015-09-23 13:59:28 +0300 | [diff] [blame] | 189 | ret = -EFAULT; |
| 190 | goto free_partial_kdata; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 191 | } |
| 192 | |
Christian König | 9a5e8fb | 2015-06-23 17:07:03 +0200 | [diff] [blame] | 193 | switch (p->chunks[i].chunk_id) { |
| 194 | case AMDGPU_CHUNK_ID_IB: |
Christian König | 50838c8 | 2016-02-03 13:44:52 +0100 | [diff] [blame] | 195 | ++num_ibs; |
Christian König | 9a5e8fb | 2015-06-23 17:07:03 +0200 | [diff] [blame] | 196 | break; |
| 197 | |
| 198 | case AMDGPU_CHUNK_ID_FENCE: |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 199 | size = sizeof(struct drm_amdgpu_cs_chunk_fence); |
Christian König | 91acbeb | 2015-12-14 16:42:31 +0100 | [diff] [blame] | 200 | if (p->chunks[i].length_dw * sizeof(uint32_t) < size) { |
Dan Carpenter | 1d26347 | 2015-09-23 13:59:28 +0300 | [diff] [blame] | 201 | ret = -EINVAL; |
| 202 | goto free_partial_kdata; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 203 | } |
Christian König | 91acbeb | 2015-12-14 16:42:31 +0100 | [diff] [blame] | 204 | |
Christian König | 758ac17 | 2016-05-06 22:14:00 +0200 | [diff] [blame] | 205 | ret = amdgpu_cs_user_fence_chunk(p, p->chunks[i].kdata, |
| 206 | &uf_offset); |
Christian König | 91acbeb | 2015-12-14 16:42:31 +0100 | [diff] [blame] | 207 | if (ret) |
| 208 | goto free_partial_kdata; |
| 209 | |
Christian König | 9a5e8fb | 2015-06-23 17:07:03 +0200 | [diff] [blame] | 210 | break; |
| 211 | |
Christian König | 2b48d32 | 2015-06-19 17:31:29 +0200 | [diff] [blame] | 212 | case AMDGPU_CHUNK_ID_DEPENDENCIES: |
| 213 | break; |
| 214 | |
Christian König | 9a5e8fb | 2015-06-23 17:07:03 +0200 | [diff] [blame] | 215 | default: |
Dan Carpenter | 1d26347 | 2015-09-23 13:59:28 +0300 | [diff] [blame] | 216 | ret = -EINVAL; |
| 217 | goto free_partial_kdata; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 218 | } |
| 219 | } |
| 220 | |
Monk Liu | c563783 | 2016-04-19 20:11:32 +0800 | [diff] [blame] | 221 | ret = amdgpu_job_alloc(p->adev, num_ibs, &p->job, vm); |
Christian König | 50838c8 | 2016-02-03 13:44:52 +0100 | [diff] [blame] | 222 | if (ret) |
Christian König | 4acabfe | 2016-01-31 11:32:04 +0100 | [diff] [blame] | 223 | goto free_all_kdata; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 224 | |
Christian König | b5f5acb | 2016-06-29 13:26:41 +0200 | [diff] [blame] | 225 | if (p->uf_entry.robj) |
| 226 | p->job->uf_addr = uf_offset; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 227 | kfree(chunk_array); |
Dan Carpenter | 1d26347 | 2015-09-23 13:59:28 +0300 | [diff] [blame] | 228 | return 0; |
| 229 | |
| 230 | free_all_kdata: |
| 231 | i = p->nchunks - 1; |
| 232 | free_partial_kdata: |
| 233 | for (; i >= 0; i--) |
| 234 | drm_free_large(p->chunks[i].kdata); |
| 235 | kfree(p->chunks); |
Christian König | 2a7d9bd | 2015-12-18 20:33:52 +0100 | [diff] [blame] | 236 | put_ctx: |
Dan Carpenter | 1d26347 | 2015-09-23 13:59:28 +0300 | [diff] [blame] | 237 | amdgpu_ctx_put(p->ctx); |
| 238 | free_chunk: |
| 239 | kfree(chunk_array); |
| 240 | |
| 241 | return ret; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 242 | } |
| 243 | |
Marek Olšák | 95844d2 | 2016-08-17 23:49:27 +0200 | [diff] [blame] | 244 | /* Convert microseconds to bytes. */ |
| 245 | static u64 us_to_bytes(struct amdgpu_device *adev, s64 us) |
| 246 | { |
| 247 | if (us <= 0 || !adev->mm_stats.log2_max_MBps) |
| 248 | return 0; |
| 249 | |
| 250 | /* Since accum_us is incremented by a million per second, just |
| 251 | * multiply it by the number of MB/s to get the number of bytes. |
| 252 | */ |
| 253 | return us << adev->mm_stats.log2_max_MBps; |
| 254 | } |
| 255 | |
| 256 | static s64 bytes_to_us(struct amdgpu_device *adev, u64 bytes) |
| 257 | { |
| 258 | if (!adev->mm_stats.log2_max_MBps) |
| 259 | return 0; |
| 260 | |
| 261 | return bytes >> adev->mm_stats.log2_max_MBps; |
| 262 | } |
| 263 | |
| 264 | /* Returns how many bytes TTM can move right now. If no bytes can be moved, |
| 265 | * it returns 0. If it returns non-zero, it's OK to move at least one buffer, |
| 266 | * which means it can go over the threshold once. If that happens, the driver |
| 267 | * will be in debt and no other buffer migrations can be done until that debt |
| 268 | * is repaid. |
| 269 | * |
| 270 | * This approach allows moving a buffer of any size (it's important to allow |
| 271 | * that). |
| 272 | * |
| 273 | * The currency is simply time in microseconds and it increases as the clock |
| 274 | * ticks. The accumulated microseconds (us) are converted to bytes and |
| 275 | * returned. |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 276 | */ |
| 277 | static u64 amdgpu_cs_get_threshold_for_moves(struct amdgpu_device *adev) |
| 278 | { |
Marek Olšák | 95844d2 | 2016-08-17 23:49:27 +0200 | [diff] [blame] | 279 | s64 time_us, increment_us; |
| 280 | u64 max_bytes; |
| 281 | u64 free_vram, total_vram, used_vram; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 282 | |
Marek Olšák | 95844d2 | 2016-08-17 23:49:27 +0200 | [diff] [blame] | 283 | /* Allow a maximum of 200 accumulated ms. This is basically per-IB |
| 284 | * throttling. |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 285 | * |
Marek Olšák | 95844d2 | 2016-08-17 23:49:27 +0200 | [diff] [blame] | 286 | * It means that in order to get full max MBps, at least 5 IBs per |
| 287 | * second must be submitted and not more than 200ms apart from each |
| 288 | * other. |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 289 | */ |
Marek Olšák | 95844d2 | 2016-08-17 23:49:27 +0200 | [diff] [blame] | 290 | const s64 us_upper_bound = 200000; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 291 | |
Marek Olšák | 95844d2 | 2016-08-17 23:49:27 +0200 | [diff] [blame] | 292 | if (!adev->mm_stats.log2_max_MBps) |
| 293 | return 0; |
| 294 | |
| 295 | total_vram = adev->mc.real_vram_size - adev->vram_pin_size; |
| 296 | used_vram = atomic64_read(&adev->vram_usage); |
| 297 | free_vram = used_vram >= total_vram ? 0 : total_vram - used_vram; |
| 298 | |
| 299 | spin_lock(&adev->mm_stats.lock); |
| 300 | |
| 301 | /* Increase the amount of accumulated us. */ |
| 302 | time_us = ktime_to_us(ktime_get()); |
| 303 | increment_us = time_us - adev->mm_stats.last_update_us; |
| 304 | adev->mm_stats.last_update_us = time_us; |
| 305 | adev->mm_stats.accum_us = min(adev->mm_stats.accum_us + increment_us, |
| 306 | us_upper_bound); |
| 307 | |
| 308 | /* This prevents the short period of low performance when the VRAM |
| 309 | * usage is low and the driver is in debt or doesn't have enough |
| 310 | * accumulated us to fill VRAM quickly. |
| 311 | * |
| 312 | * The situation can occur in these cases: |
| 313 | * - a lot of VRAM is freed by userspace |
| 314 | * - the presence of a big buffer causes a lot of evictions |
| 315 | * (solution: split buffers into smaller ones) |
| 316 | * |
| 317 | * If 128 MB or 1/8th of VRAM is free, start filling it now by setting |
| 318 | * accum_us to a positive number. |
| 319 | */ |
| 320 | if (free_vram >= 128 * 1024 * 1024 || free_vram >= total_vram / 8) { |
| 321 | s64 min_us; |
| 322 | |
| 323 | /* Be more aggresive on dGPUs. Try to fill a portion of free |
| 324 | * VRAM now. |
| 325 | */ |
| 326 | if (!(adev->flags & AMD_IS_APU)) |
| 327 | min_us = bytes_to_us(adev, free_vram / 4); |
| 328 | else |
| 329 | min_us = 0; /* Reset accum_us on APUs. */ |
| 330 | |
| 331 | adev->mm_stats.accum_us = max(min_us, adev->mm_stats.accum_us); |
| 332 | } |
| 333 | |
| 334 | /* This returns 0 if the driver is in debt to disallow (optional) |
| 335 | * buffer moves. |
| 336 | */ |
| 337 | max_bytes = us_to_bytes(adev, adev->mm_stats.accum_us); |
| 338 | |
| 339 | spin_unlock(&adev->mm_stats.lock); |
| 340 | return max_bytes; |
| 341 | } |
| 342 | |
| 343 | /* Report how many bytes have really been moved for the last command |
| 344 | * submission. This can result in a debt that can stop buffer migrations |
| 345 | * temporarily. |
| 346 | */ |
| 347 | static void amdgpu_cs_report_moved_bytes(struct amdgpu_device *adev, |
| 348 | u64 num_bytes) |
| 349 | { |
| 350 | spin_lock(&adev->mm_stats.lock); |
| 351 | adev->mm_stats.accum_us -= bytes_to_us(adev, num_bytes); |
| 352 | spin_unlock(&adev->mm_stats.lock); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 353 | } |
| 354 | |
Chunming Zhou | 14fd833 | 2016-08-04 13:05:46 +0800 | [diff] [blame] | 355 | static int amdgpu_cs_bo_validate(struct amdgpu_cs_parser *p, |
| 356 | struct amdgpu_bo *bo) |
| 357 | { |
Christian König | a7d64de | 2016-09-15 14:58:48 +0200 | [diff] [blame] | 358 | struct amdgpu_device *adev = amdgpu_ttm_adev(bo->tbo.bdev); |
Chunming Zhou | 14fd833 | 2016-08-04 13:05:46 +0800 | [diff] [blame] | 359 | u64 initial_bytes_moved; |
| 360 | uint32_t domain; |
| 361 | int r; |
| 362 | |
| 363 | if (bo->pin_count) |
| 364 | return 0; |
| 365 | |
Marek Olšák | 95844d2 | 2016-08-17 23:49:27 +0200 | [diff] [blame] | 366 | /* Don't move this buffer if we have depleted our allowance |
| 367 | * to move it. Don't move anything if the threshold is zero. |
Chunming Zhou | 14fd833 | 2016-08-04 13:05:46 +0800 | [diff] [blame] | 368 | */ |
Marek Olšák | 95844d2 | 2016-08-17 23:49:27 +0200 | [diff] [blame] | 369 | if (p->bytes_moved < p->bytes_moved_threshold) |
Chunming Zhou | 14fd833 | 2016-08-04 13:05:46 +0800 | [diff] [blame] | 370 | domain = bo->prefered_domains; |
| 371 | else |
| 372 | domain = bo->allowed_domains; |
| 373 | |
| 374 | retry: |
| 375 | amdgpu_ttm_placement_from_domain(bo, domain); |
Christian König | a7d64de | 2016-09-15 14:58:48 +0200 | [diff] [blame] | 376 | initial_bytes_moved = atomic64_read(&adev->num_bytes_moved); |
Chunming Zhou | 14fd833 | 2016-08-04 13:05:46 +0800 | [diff] [blame] | 377 | r = ttm_bo_validate(&bo->tbo, &bo->placement, true, false); |
Christian König | a7d64de | 2016-09-15 14:58:48 +0200 | [diff] [blame] | 378 | p->bytes_moved += atomic64_read(&adev->num_bytes_moved) - |
Chunming Zhou | 14fd833 | 2016-08-04 13:05:46 +0800 | [diff] [blame] | 379 | initial_bytes_moved; |
| 380 | |
Christian König | 1abdc3d | 2016-08-31 17:28:11 +0200 | [diff] [blame] | 381 | if (unlikely(r == -ENOMEM) && domain != bo->allowed_domains) { |
| 382 | domain = bo->allowed_domains; |
| 383 | goto retry; |
Chunming Zhou | 14fd833 | 2016-08-04 13:05:46 +0800 | [diff] [blame] | 384 | } |
| 385 | |
| 386 | return r; |
| 387 | } |
| 388 | |
Christian König | 662bfa6 | 2016-09-01 12:13:18 +0200 | [diff] [blame] | 389 | /* Last resort, try to evict something from the current working set */ |
| 390 | static bool amdgpu_cs_try_evict(struct amdgpu_cs_parser *p, |
Christian König | f7da30d | 2016-09-28 12:03:04 +0200 | [diff] [blame] | 391 | struct amdgpu_bo *validated) |
Christian König | 662bfa6 | 2016-09-01 12:13:18 +0200 | [diff] [blame] | 392 | { |
Christian König | f7da30d | 2016-09-28 12:03:04 +0200 | [diff] [blame] | 393 | uint32_t domain = validated->allowed_domains; |
Christian König | 662bfa6 | 2016-09-01 12:13:18 +0200 | [diff] [blame] | 394 | int r; |
| 395 | |
| 396 | if (!p->evictable) |
| 397 | return false; |
| 398 | |
| 399 | for (;&p->evictable->tv.head != &p->validated; |
| 400 | p->evictable = list_prev_entry(p->evictable, tv.head)) { |
| 401 | |
| 402 | struct amdgpu_bo_list_entry *candidate = p->evictable; |
| 403 | struct amdgpu_bo *bo = candidate->robj; |
Christian König | a7d64de | 2016-09-15 14:58:48 +0200 | [diff] [blame] | 404 | struct amdgpu_device *adev = amdgpu_ttm_adev(bo->tbo.bdev); |
Christian König | 662bfa6 | 2016-09-01 12:13:18 +0200 | [diff] [blame] | 405 | u64 initial_bytes_moved; |
| 406 | uint32_t other; |
| 407 | |
| 408 | /* If we reached our current BO we can forget it */ |
Christian König | f7da30d | 2016-09-28 12:03:04 +0200 | [diff] [blame] | 409 | if (candidate->robj == validated) |
Christian König | 662bfa6 | 2016-09-01 12:13:18 +0200 | [diff] [blame] | 410 | break; |
| 411 | |
| 412 | other = amdgpu_mem_type_to_domain(bo->tbo.mem.mem_type); |
| 413 | |
| 414 | /* Check if this BO is in one of the domains we need space for */ |
| 415 | if (!(other & domain)) |
| 416 | continue; |
| 417 | |
| 418 | /* Check if we can move this BO somewhere else */ |
| 419 | other = bo->allowed_domains & ~domain; |
| 420 | if (!other) |
| 421 | continue; |
| 422 | |
| 423 | /* Good we can try to move this BO somewhere else */ |
| 424 | amdgpu_ttm_placement_from_domain(bo, other); |
Christian König | a7d64de | 2016-09-15 14:58:48 +0200 | [diff] [blame] | 425 | initial_bytes_moved = atomic64_read(&adev->num_bytes_moved); |
Christian König | 662bfa6 | 2016-09-01 12:13:18 +0200 | [diff] [blame] | 426 | r = ttm_bo_validate(&bo->tbo, &bo->placement, true, false); |
Christian König | a7d64de | 2016-09-15 14:58:48 +0200 | [diff] [blame] | 427 | p->bytes_moved += atomic64_read(&adev->num_bytes_moved) - |
Christian König | 662bfa6 | 2016-09-01 12:13:18 +0200 | [diff] [blame] | 428 | initial_bytes_moved; |
| 429 | |
| 430 | if (unlikely(r)) |
| 431 | break; |
| 432 | |
| 433 | p->evictable = list_prev_entry(p->evictable, tv.head); |
| 434 | list_move(&candidate->tv.head, &p->validated); |
| 435 | |
| 436 | return true; |
| 437 | } |
| 438 | |
| 439 | return false; |
| 440 | } |
| 441 | |
Christian König | f7da30d | 2016-09-28 12:03:04 +0200 | [diff] [blame] | 442 | static int amdgpu_cs_validate(void *param, struct amdgpu_bo *bo) |
| 443 | { |
| 444 | struct amdgpu_cs_parser *p = param; |
| 445 | int r; |
| 446 | |
| 447 | do { |
| 448 | r = amdgpu_cs_bo_validate(p, bo); |
| 449 | } while (r == -ENOMEM && amdgpu_cs_try_evict(p, bo)); |
| 450 | if (r) |
| 451 | return r; |
| 452 | |
| 453 | if (bo->shadow) |
Alex Xie | 1cd99a8 | 2016-11-30 17:19:40 -0500 | [diff] [blame] | 454 | r = amdgpu_cs_bo_validate(p, bo->shadow); |
Christian König | f7da30d | 2016-09-28 12:03:04 +0200 | [diff] [blame] | 455 | |
| 456 | return r; |
| 457 | } |
| 458 | |
Baoyou Xie | 761c2e8 | 2016-09-03 13:57:14 +0800 | [diff] [blame] | 459 | static int amdgpu_cs_list_validate(struct amdgpu_cs_parser *p, |
Christian König | a5b7505 | 2015-09-03 16:40:39 +0200 | [diff] [blame] | 460 | struct list_head *validated) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 461 | { |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 462 | struct amdgpu_bo_list_entry *lobj; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 463 | int r; |
| 464 | |
Christian König | a5b7505 | 2015-09-03 16:40:39 +0200 | [diff] [blame] | 465 | list_for_each_entry(lobj, validated, tv.head) { |
Christian König | 36409d12 | 2015-12-21 20:31:35 +0100 | [diff] [blame] | 466 | struct amdgpu_bo *bo = lobj->robj; |
Christian König | 2f568db | 2016-02-23 12:36:59 +0100 | [diff] [blame] | 467 | bool binding_userptr = false; |
Christian König | cc325d1 | 2016-02-08 11:08:35 +0100 | [diff] [blame] | 468 | struct mm_struct *usermm; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 469 | |
Christian König | cc325d1 | 2016-02-08 11:08:35 +0100 | [diff] [blame] | 470 | usermm = amdgpu_ttm_tt_get_usermm(bo->tbo.ttm); |
| 471 | if (usermm && usermm != current->mm) |
| 472 | return -EPERM; |
| 473 | |
Christian König | 2f568db | 2016-02-23 12:36:59 +0100 | [diff] [blame] | 474 | /* Check if we have user pages and nobody bound the BO already */ |
| 475 | if (lobj->user_pages && bo->tbo.ttm->state != tt_bound) { |
| 476 | size_t size = sizeof(struct page *); |
| 477 | |
| 478 | size *= bo->tbo.ttm->num_pages; |
| 479 | memcpy(bo->tbo.ttm->pages, lobj->user_pages, size); |
| 480 | binding_userptr = true; |
| 481 | } |
| 482 | |
Christian König | 662bfa6 | 2016-09-01 12:13:18 +0200 | [diff] [blame] | 483 | if (p->evictable == lobj) |
| 484 | p->evictable = NULL; |
| 485 | |
Christian König | f7da30d | 2016-09-28 12:03:04 +0200 | [diff] [blame] | 486 | r = amdgpu_cs_validate(p, bo); |
Chunming Zhou | 14fd833 | 2016-08-04 13:05:46 +0800 | [diff] [blame] | 487 | if (r) |
Christian König | 36409d12 | 2015-12-21 20:31:35 +0100 | [diff] [blame] | 488 | return r; |
Christian König | 662bfa6 | 2016-09-01 12:13:18 +0200 | [diff] [blame] | 489 | |
Christian König | 2f568db | 2016-02-23 12:36:59 +0100 | [diff] [blame] | 490 | if (binding_userptr) { |
| 491 | drm_free_large(lobj->user_pages); |
| 492 | lobj->user_pages = NULL; |
| 493 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 494 | } |
| 495 | return 0; |
| 496 | } |
| 497 | |
Christian König | 2a7d9bd | 2015-12-18 20:33:52 +0100 | [diff] [blame] | 498 | static int amdgpu_cs_parser_bos(struct amdgpu_cs_parser *p, |
| 499 | union drm_amdgpu_cs *cs) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 500 | { |
| 501 | struct amdgpu_fpriv *fpriv = p->filp->driver_priv; |
Christian König | 2f568db | 2016-02-23 12:36:59 +0100 | [diff] [blame] | 502 | struct amdgpu_bo_list_entry *e; |
Christian König | a5b7505 | 2015-09-03 16:40:39 +0200 | [diff] [blame] | 503 | struct list_head duplicates; |
monk.liu | 840d514 | 2015-04-27 15:19:20 +0800 | [diff] [blame] | 504 | bool need_mmap_lock = false; |
Christian König | 2f568db | 2016-02-23 12:36:59 +0100 | [diff] [blame] | 505 | unsigned i, tries = 10; |
Christian König | 636ce25 | 2015-12-18 21:26:47 +0100 | [diff] [blame] | 506 | int r; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 507 | |
Christian König | 2a7d9bd | 2015-12-18 20:33:52 +0100 | [diff] [blame] | 508 | INIT_LIST_HEAD(&p->validated); |
| 509 | |
| 510 | 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] | 511 | if (p->bo_list) { |
Christian König | 211dff5 | 2016-02-22 15:40:59 +0100 | [diff] [blame] | 512 | need_mmap_lock = p->bo_list->first_userptr != |
| 513 | p->bo_list->num_entries; |
Christian König | 636ce25 | 2015-12-18 21:26:47 +0100 | [diff] [blame] | 514 | amdgpu_bo_list_get_list(p->bo_list, &p->validated); |
monk.liu | 840d514 | 2015-04-27 15:19:20 +0800 | [diff] [blame] | 515 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 516 | |
Christian König | 3c0eea6 | 2015-12-11 14:39:05 +0100 | [diff] [blame] | 517 | INIT_LIST_HEAD(&duplicates); |
Christian König | 56467eb | 2015-12-11 15:16:32 +0100 | [diff] [blame] | 518 | amdgpu_vm_get_pd_bo(&fpriv->vm, &p->validated, &p->vm_pd); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 519 | |
Christian König | 758ac17 | 2016-05-06 22:14:00 +0200 | [diff] [blame] | 520 | if (p->uf_entry.robj) |
Christian König | 91acbeb | 2015-12-14 16:42:31 +0100 | [diff] [blame] | 521 | list_add(&p->uf_entry.tv.head, &p->validated); |
| 522 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 523 | if (need_mmap_lock) |
| 524 | down_read(¤t->mm->mmap_sem); |
| 525 | |
Christian König | 2f568db | 2016-02-23 12:36:59 +0100 | [diff] [blame] | 526 | while (1) { |
| 527 | struct list_head need_pages; |
| 528 | unsigned i; |
| 529 | |
| 530 | r = ttm_eu_reserve_buffers(&p->ticket, &p->validated, true, |
| 531 | &duplicates); |
Marek Olšák | f103795 | 2016-07-30 00:48:39 +0200 | [diff] [blame] | 532 | if (unlikely(r != 0)) { |
jimqu | 57d7f9b | 2016-10-20 14:58:04 +0800 | [diff] [blame] | 533 | if (r != -ERESTARTSYS) |
| 534 | DRM_ERROR("ttm_eu_reserve_buffers failed.\n"); |
Christian König | 2f568db | 2016-02-23 12:36:59 +0100 | [diff] [blame] | 535 | goto error_free_pages; |
Marek Olšák | f103795 | 2016-07-30 00:48:39 +0200 | [diff] [blame] | 536 | } |
Christian König | 2f568db | 2016-02-23 12:36:59 +0100 | [diff] [blame] | 537 | |
| 538 | /* Without a BO list we don't have userptr BOs */ |
| 539 | if (!p->bo_list) |
| 540 | break; |
| 541 | |
| 542 | INIT_LIST_HEAD(&need_pages); |
| 543 | for (i = p->bo_list->first_userptr; |
| 544 | i < p->bo_list->num_entries; ++i) { |
| 545 | |
| 546 | e = &p->bo_list->array[i]; |
| 547 | |
| 548 | if (amdgpu_ttm_tt_userptr_invalidated(e->robj->tbo.ttm, |
| 549 | &e->user_invalidated) && e->user_pages) { |
| 550 | |
| 551 | /* We acquired a page array, but somebody |
| 552 | * invalidated it. Free it an try again |
| 553 | */ |
| 554 | release_pages(e->user_pages, |
| 555 | e->robj->tbo.ttm->num_pages, |
| 556 | false); |
| 557 | drm_free_large(e->user_pages); |
| 558 | e->user_pages = NULL; |
| 559 | } |
| 560 | |
| 561 | if (e->robj->tbo.ttm->state != tt_bound && |
| 562 | !e->user_pages) { |
| 563 | list_del(&e->tv.head); |
| 564 | list_add(&e->tv.head, &need_pages); |
| 565 | |
| 566 | amdgpu_bo_unreserve(e->robj); |
| 567 | } |
| 568 | } |
| 569 | |
| 570 | if (list_empty(&need_pages)) |
| 571 | break; |
| 572 | |
| 573 | /* Unreserve everything again. */ |
| 574 | ttm_eu_backoff_reservation(&p->ticket, &p->validated); |
| 575 | |
Marek Olšák | f103795 | 2016-07-30 00:48:39 +0200 | [diff] [blame] | 576 | /* We tried too many times, just abort */ |
Christian König | 2f568db | 2016-02-23 12:36:59 +0100 | [diff] [blame] | 577 | if (!--tries) { |
| 578 | r = -EDEADLK; |
Marek Olšák | f103795 | 2016-07-30 00:48:39 +0200 | [diff] [blame] | 579 | DRM_ERROR("deadlock in %s\n", __func__); |
Christian König | 2f568db | 2016-02-23 12:36:59 +0100 | [diff] [blame] | 580 | goto error_free_pages; |
| 581 | } |
| 582 | |
| 583 | /* Fill the page arrays for all useptrs. */ |
| 584 | list_for_each_entry(e, &need_pages, tv.head) { |
| 585 | struct ttm_tt *ttm = e->robj->tbo.ttm; |
| 586 | |
| 587 | e->user_pages = drm_calloc_large(ttm->num_pages, |
| 588 | sizeof(struct page*)); |
| 589 | if (!e->user_pages) { |
| 590 | r = -ENOMEM; |
Marek Olšák | f103795 | 2016-07-30 00:48:39 +0200 | [diff] [blame] | 591 | DRM_ERROR("calloc failure in %s\n", __func__); |
Christian König | 2f568db | 2016-02-23 12:36:59 +0100 | [diff] [blame] | 592 | goto error_free_pages; |
| 593 | } |
| 594 | |
| 595 | r = amdgpu_ttm_tt_get_user_pages(ttm, e->user_pages); |
| 596 | if (r) { |
Marek Olšák | f103795 | 2016-07-30 00:48:39 +0200 | [diff] [blame] | 597 | DRM_ERROR("amdgpu_ttm_tt_get_user_pages failed.\n"); |
Christian König | 2f568db | 2016-02-23 12:36:59 +0100 | [diff] [blame] | 598 | drm_free_large(e->user_pages); |
| 599 | e->user_pages = NULL; |
| 600 | goto error_free_pages; |
| 601 | } |
| 602 | } |
| 603 | |
| 604 | /* And try again. */ |
| 605 | list_splice(&need_pages, &p->validated); |
| 606 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 607 | |
Christian König | f69f90a1 | 2015-12-21 19:47:42 +0100 | [diff] [blame] | 608 | p->bytes_moved_threshold = amdgpu_cs_get_threshold_for_moves(p->adev); |
| 609 | p->bytes_moved = 0; |
Christian König | 662bfa6 | 2016-09-01 12:13:18 +0200 | [diff] [blame] | 610 | p->evictable = list_last_entry(&p->validated, |
| 611 | struct amdgpu_bo_list_entry, |
| 612 | tv.head); |
Christian König | f69f90a1 | 2015-12-21 19:47:42 +0100 | [diff] [blame] | 613 | |
Christian König | f7da30d | 2016-09-28 12:03:04 +0200 | [diff] [blame] | 614 | r = amdgpu_vm_validate_pt_bos(p->adev, &fpriv->vm, |
| 615 | amdgpu_cs_validate, p); |
| 616 | if (r) { |
| 617 | DRM_ERROR("amdgpu_vm_validate_pt_bos() failed.\n"); |
| 618 | goto error_validate; |
| 619 | } |
| 620 | |
Christian König | f69f90a1 | 2015-12-21 19:47:42 +0100 | [diff] [blame] | 621 | r = amdgpu_cs_list_validate(p, &duplicates); |
Marek Olšák | f103795 | 2016-07-30 00:48:39 +0200 | [diff] [blame] | 622 | if (r) { |
| 623 | DRM_ERROR("amdgpu_cs_list_validate(duplicates) failed.\n"); |
Christian König | a5b7505 | 2015-09-03 16:40:39 +0200 | [diff] [blame] | 624 | goto error_validate; |
Marek Olšák | f103795 | 2016-07-30 00:48:39 +0200 | [diff] [blame] | 625 | } |
Christian König | a5b7505 | 2015-09-03 16:40:39 +0200 | [diff] [blame] | 626 | |
Christian König | f69f90a1 | 2015-12-21 19:47:42 +0100 | [diff] [blame] | 627 | r = amdgpu_cs_list_validate(p, &p->validated); |
Marek Olšák | f103795 | 2016-07-30 00:48:39 +0200 | [diff] [blame] | 628 | if (r) { |
| 629 | DRM_ERROR("amdgpu_cs_list_validate(validated) failed.\n"); |
Christian König | a848030 | 2016-01-05 16:03:39 +0100 | [diff] [blame] | 630 | goto error_validate; |
Marek Olšák | f103795 | 2016-07-30 00:48:39 +0200 | [diff] [blame] | 631 | } |
Christian König | a848030 | 2016-01-05 16:03:39 +0100 | [diff] [blame] | 632 | |
Marek Olšák | 95844d2 | 2016-08-17 23:49:27 +0200 | [diff] [blame] | 633 | amdgpu_cs_report_moved_bytes(p->adev, p->bytes_moved); |
| 634 | |
Christian König | 5a712a8 | 2016-06-21 16:28:15 +0200 | [diff] [blame] | 635 | fpriv->vm.last_eviction_counter = |
| 636 | atomic64_read(&p->adev->num_evictions); |
| 637 | |
Christian König | a848030 | 2016-01-05 16:03:39 +0100 | [diff] [blame] | 638 | if (p->bo_list) { |
Christian König | d88bf58 | 2016-05-06 17:50:03 +0200 | [diff] [blame] | 639 | struct amdgpu_bo *gds = p->bo_list->gds_obj; |
| 640 | struct amdgpu_bo *gws = p->bo_list->gws_obj; |
| 641 | struct amdgpu_bo *oa = p->bo_list->oa_obj; |
Christian König | a848030 | 2016-01-05 16:03:39 +0100 | [diff] [blame] | 642 | struct amdgpu_vm *vm = &fpriv->vm; |
| 643 | unsigned i; |
| 644 | |
| 645 | for (i = 0; i < p->bo_list->num_entries; i++) { |
| 646 | struct amdgpu_bo *bo = p->bo_list->array[i].robj; |
| 647 | |
| 648 | p->bo_list->array[i].bo_va = amdgpu_vm_bo_find(vm, bo); |
| 649 | } |
Christian König | d88bf58 | 2016-05-06 17:50:03 +0200 | [diff] [blame] | 650 | |
| 651 | if (gds) { |
| 652 | p->job->gds_base = amdgpu_bo_gpu_offset(gds); |
| 653 | p->job->gds_size = amdgpu_bo_size(gds); |
| 654 | } |
| 655 | if (gws) { |
| 656 | p->job->gws_base = amdgpu_bo_gpu_offset(gws); |
| 657 | p->job->gws_size = amdgpu_bo_size(gws); |
| 658 | } |
| 659 | if (oa) { |
| 660 | p->job->oa_base = amdgpu_bo_gpu_offset(oa); |
| 661 | p->job->oa_size = amdgpu_bo_size(oa); |
| 662 | } |
Christian König | a848030 | 2016-01-05 16:03:39 +0100 | [diff] [blame] | 663 | } |
Christian König | a5b7505 | 2015-09-03 16:40:39 +0200 | [diff] [blame] | 664 | |
Christian König | c855e25 | 2016-09-05 17:00:57 +0200 | [diff] [blame] | 665 | if (!r && p->uf_entry.robj) { |
| 666 | struct amdgpu_bo *uf = p->uf_entry.robj; |
| 667 | |
Christian König | bb990bb | 2016-09-09 16:32:33 +0200 | [diff] [blame] | 668 | r = amdgpu_ttm_bind(&uf->tbo, &uf->tbo.mem); |
Christian König | c855e25 | 2016-09-05 17:00:57 +0200 | [diff] [blame] | 669 | p->job->uf_addr += amdgpu_bo_gpu_offset(uf); |
| 670 | } |
Christian König | b5f5acb | 2016-06-29 13:26:41 +0200 | [diff] [blame] | 671 | |
Christian König | a5b7505 | 2015-09-03 16:40:39 +0200 | [diff] [blame] | 672 | error_validate: |
Christian König | eceb8a1 | 2016-01-11 15:35:21 +0100 | [diff] [blame] | 673 | if (r) { |
| 674 | amdgpu_vm_move_pt_bos_in_lru(p->adev, &fpriv->vm); |
Christian König | a5b7505 | 2015-09-03 16:40:39 +0200 | [diff] [blame] | 675 | ttm_eu_backoff_reservation(&p->ticket, &p->validated); |
Christian König | eceb8a1 | 2016-01-11 15:35:21 +0100 | [diff] [blame] | 676 | } |
Christian König | a5b7505 | 2015-09-03 16:40:39 +0200 | [diff] [blame] | 677 | |
Christian König | 2f568db | 2016-02-23 12:36:59 +0100 | [diff] [blame] | 678 | error_free_pages: |
| 679 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 680 | if (need_mmap_lock) |
| 681 | up_read(¤t->mm->mmap_sem); |
| 682 | |
Christian König | 2f568db | 2016-02-23 12:36:59 +0100 | [diff] [blame] | 683 | if (p->bo_list) { |
| 684 | for (i = p->bo_list->first_userptr; |
| 685 | i < p->bo_list->num_entries; ++i) { |
| 686 | e = &p->bo_list->array[i]; |
| 687 | |
| 688 | if (!e->user_pages) |
| 689 | continue; |
| 690 | |
| 691 | release_pages(e->user_pages, |
| 692 | e->robj->tbo.ttm->num_pages, |
| 693 | false); |
| 694 | drm_free_large(e->user_pages); |
| 695 | } |
| 696 | } |
| 697 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 698 | return r; |
| 699 | } |
| 700 | |
| 701 | static int amdgpu_cs_sync_rings(struct amdgpu_cs_parser *p) |
| 702 | { |
| 703 | struct amdgpu_bo_list_entry *e; |
| 704 | int r; |
| 705 | |
| 706 | list_for_each_entry(e, &p->validated, tv.head) { |
| 707 | struct reservation_object *resv = e->robj->tbo.resv; |
Christian König | e86f9ce | 2016-02-08 12:13:05 +0100 | [diff] [blame] | 708 | r = amdgpu_sync_resv(p->adev, &p->job->sync, resv, p->filp); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 709 | |
| 710 | if (r) |
| 711 | return r; |
| 712 | } |
| 713 | return 0; |
| 714 | } |
| 715 | |
Christian König | 984810f | 2015-11-14 21:05:35 +0100 | [diff] [blame] | 716 | /** |
| 717 | * cs_parser_fini() - clean parser states |
| 718 | * @parser: parser structure holding parsing context. |
| 719 | * @error: error number |
| 720 | * |
| 721 | * If error is set than unvalidate buffer, otherwise just free memory |
| 722 | * used by parsing context. |
| 723 | **/ |
| 724 | 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] | 725 | { |
Christian König | eceb8a1 | 2016-01-11 15:35:21 +0100 | [diff] [blame] | 726 | struct amdgpu_fpriv *fpriv = parser->filp->driver_priv; |
Christian König | 984810f | 2015-11-14 21:05:35 +0100 | [diff] [blame] | 727 | unsigned i; |
| 728 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 729 | if (!error) { |
Nicolai Hähnle | 28b8d66 | 2016-01-27 11:04:19 -0500 | [diff] [blame] | 730 | amdgpu_vm_move_pt_bos_in_lru(parser->adev, &fpriv->vm); |
| 731 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 732 | ttm_eu_fence_buffer_objects(&parser->ticket, |
Christian König | 984810f | 2015-11-14 21:05:35 +0100 | [diff] [blame] | 733 | &parser->validated, |
| 734 | parser->fence); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 735 | } else if (backoff) { |
| 736 | ttm_eu_backoff_reservation(&parser->ticket, |
| 737 | &parser->validated); |
| 738 | } |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 739 | dma_fence_put(parser->fence); |
Christian König | 7e52a81 | 2015-11-04 15:44:39 +0100 | [diff] [blame] | 740 | |
Christian König | 3cb485f | 2015-05-11 15:34:59 +0200 | [diff] [blame] | 741 | if (parser->ctx) |
| 742 | amdgpu_ctx_put(parser->ctx); |
Chunming Zhou | a3348bb | 2015-08-18 16:25:46 +0800 | [diff] [blame] | 743 | if (parser->bo_list) |
| 744 | amdgpu_bo_list_put(parser->bo_list); |
| 745 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 746 | for (i = 0; i < parser->nchunks; i++) |
| 747 | drm_free_large(parser->chunks[i].kdata); |
| 748 | kfree(parser->chunks); |
Christian König | 50838c8 | 2016-02-03 13:44:52 +0100 | [diff] [blame] | 749 | if (parser->job) |
| 750 | amdgpu_job_free(parser->job); |
Christian König | 91acbeb | 2015-12-14 16:42:31 +0100 | [diff] [blame] | 751 | amdgpu_bo_unref(&parser->uf_entry.robj); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 752 | } |
| 753 | |
| 754 | static int amdgpu_bo_vm_update_pte(struct amdgpu_cs_parser *p, |
| 755 | struct amdgpu_vm *vm) |
| 756 | { |
| 757 | struct amdgpu_device *adev = p->adev; |
| 758 | struct amdgpu_bo_va *bo_va; |
| 759 | struct amdgpu_bo *bo; |
| 760 | int i, r; |
| 761 | |
| 762 | r = amdgpu_vm_update_page_directory(adev, vm); |
| 763 | if (r) |
| 764 | return r; |
| 765 | |
Christian König | e86f9ce | 2016-02-08 12:13:05 +0100 | [diff] [blame] | 766 | r = amdgpu_sync_fence(adev, &p->job->sync, vm->page_directory_fence); |
Bas Nieuwenhuizen | 05906de | 2015-08-14 20:08:40 +0200 | [diff] [blame] | 767 | if (r) |
| 768 | return r; |
| 769 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 770 | r = amdgpu_vm_clear_freed(adev, vm); |
| 771 | if (r) |
| 772 | return r; |
| 773 | |
Monk Liu | 2493664 | 2017-01-09 15:54:32 +0800 | [diff] [blame^] | 774 | if (amdgpu_sriov_vf(adev)) { |
| 775 | struct dma_fence *f; |
| 776 | bo_va = vm->csa_bo_va; |
| 777 | BUG_ON(!bo_va); |
| 778 | r = amdgpu_vm_bo_update(adev, bo_va, false); |
| 779 | if (r) |
| 780 | return r; |
| 781 | |
| 782 | f = bo_va->last_pt_update; |
| 783 | r = amdgpu_sync_fence(adev, &p->job->sync, f); |
| 784 | if (r) |
| 785 | return r; |
| 786 | } |
| 787 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 788 | if (p->bo_list) { |
| 789 | for (i = 0; i < p->bo_list->num_entries; i++) { |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 790 | struct dma_fence *f; |
Christian König | 91e1a52 | 2015-07-06 22:06:40 +0200 | [diff] [blame] | 791 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 792 | /* ignore duplicates */ |
| 793 | bo = p->bo_list->array[i].robj; |
| 794 | if (!bo) |
| 795 | continue; |
| 796 | |
| 797 | bo_va = p->bo_list->array[i].bo_va; |
| 798 | if (bo_va == NULL) |
| 799 | continue; |
| 800 | |
Christian König | 99e124f | 2016-08-16 14:43:17 +0200 | [diff] [blame] | 801 | r = amdgpu_vm_bo_update(adev, bo_va, false); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 802 | if (r) |
| 803 | return r; |
| 804 | |
Chunming Zhou | bb1e38a4 | 2015-08-03 18:19:38 +0800 | [diff] [blame] | 805 | f = bo_va->last_pt_update; |
Christian König | e86f9ce | 2016-02-08 12:13:05 +0100 | [diff] [blame] | 806 | r = amdgpu_sync_fence(adev, &p->job->sync, f); |
Christian König | 91e1a52 | 2015-07-06 22:06:40 +0200 | [diff] [blame] | 807 | if (r) |
| 808 | return r; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 809 | } |
Christian König | b495bd3 | 2015-09-10 14:00:35 +0200 | [diff] [blame] | 810 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 811 | } |
| 812 | |
Christian König | e86f9ce | 2016-02-08 12:13:05 +0100 | [diff] [blame] | 813 | r = amdgpu_vm_clear_invalids(adev, vm, &p->job->sync); |
Christian König | b495bd3 | 2015-09-10 14:00:35 +0200 | [diff] [blame] | 814 | |
| 815 | if (amdgpu_vm_debug && p->bo_list) { |
| 816 | /* Invalidate all BOs to test for userspace bugs */ |
| 817 | for (i = 0; i < p->bo_list->num_entries; i++) { |
| 818 | /* ignore duplicates */ |
| 819 | bo = p->bo_list->array[i].robj; |
| 820 | if (!bo) |
| 821 | continue; |
| 822 | |
| 823 | amdgpu_vm_bo_invalidate(adev, bo); |
| 824 | } |
| 825 | } |
| 826 | |
| 827 | return r; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 828 | } |
| 829 | |
| 830 | static int amdgpu_cs_ib_vm_chunk(struct amdgpu_device *adev, |
Christian König | b07c60c | 2016-01-31 12:29:04 +0100 | [diff] [blame] | 831 | struct amdgpu_cs_parser *p) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 832 | { |
Christian König | b07c60c | 2016-01-31 12:29:04 +0100 | [diff] [blame] | 833 | struct amdgpu_fpriv *fpriv = p->filp->driver_priv; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 834 | struct amdgpu_vm *vm = &fpriv->vm; |
Christian König | b07c60c | 2016-01-31 12:29:04 +0100 | [diff] [blame] | 835 | struct amdgpu_ring *ring = p->job->ring; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 836 | int i, r; |
| 837 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 838 | /* Only for UVD/VCE VM emulation */ |
Christian König | b07c60c | 2016-01-31 12:29:04 +0100 | [diff] [blame] | 839 | if (ring->funcs->parse_cs) { |
| 840 | for (i = 0; i < p->job->num_ibs; i++) { |
| 841 | r = amdgpu_ring_parse_cs(ring, p, i); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 842 | if (r) |
| 843 | return r; |
| 844 | } |
Christian König | 45088ef | 2016-10-05 16:49:19 +0200 | [diff] [blame] | 845 | } |
| 846 | |
| 847 | if (p->job->vm) { |
Christian König | 9a79588 | 2016-06-22 14:25:55 +0200 | [diff] [blame] | 848 | p->job->vm_pd_addr = amdgpu_bo_gpu_offset(vm->page_directory); |
| 849 | |
| 850 | r = amdgpu_bo_vm_update_pte(p, vm); |
| 851 | if (r) |
| 852 | return r; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 853 | } |
| 854 | |
Christian König | 9a79588 | 2016-06-22 14:25:55 +0200 | [diff] [blame] | 855 | return amdgpu_cs_sync_rings(p); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 856 | } |
| 857 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 858 | static int amdgpu_cs_ib_fill(struct amdgpu_device *adev, |
| 859 | struct amdgpu_cs_parser *parser) |
| 860 | { |
| 861 | struct amdgpu_fpriv *fpriv = parser->filp->driver_priv; |
| 862 | struct amdgpu_vm *vm = &fpriv->vm; |
| 863 | int i, j; |
| 864 | int r; |
| 865 | |
Christian König | 50838c8 | 2016-02-03 13:44:52 +0100 | [diff] [blame] | 866 | for (i = 0, j = 0; i < parser->nchunks && j < parser->job->num_ibs; i++) { |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 867 | struct amdgpu_cs_chunk *chunk; |
| 868 | struct amdgpu_ib *ib; |
| 869 | struct drm_amdgpu_cs_chunk_ib *chunk_ib; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 870 | struct amdgpu_ring *ring; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 871 | |
| 872 | chunk = &parser->chunks[i]; |
Christian König | 50838c8 | 2016-02-03 13:44:52 +0100 | [diff] [blame] | 873 | ib = &parser->job->ibs[j]; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 874 | chunk_ib = (struct drm_amdgpu_cs_chunk_ib *)chunk->kdata; |
| 875 | |
| 876 | if (chunk->chunk_id != AMDGPU_CHUNK_ID_IB) |
| 877 | continue; |
| 878 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 879 | r = amdgpu_cs_get_ring(adev, chunk_ib->ip_type, |
| 880 | chunk_ib->ip_instance, chunk_ib->ring, |
| 881 | &ring); |
Marek Olšák | 3ccec53 | 2015-06-02 17:44:49 +0200 | [diff] [blame] | 882 | if (r) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 883 | return r; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 884 | |
Monk Liu | 753ad49 | 2016-08-26 13:28:28 +0800 | [diff] [blame] | 885 | if (ib->flags & AMDGPU_IB_FLAG_PREAMBLE) { |
| 886 | parser->job->preamble_status |= AMDGPU_PREAMBLE_IB_PRESENT; |
| 887 | if (!parser->ctx->preamble_presented) { |
| 888 | parser->job->preamble_status |= AMDGPU_PREAMBLE_IB_PRESENT_FIRST; |
| 889 | parser->ctx->preamble_presented = true; |
| 890 | } |
| 891 | } |
| 892 | |
Christian König | b07c60c | 2016-01-31 12:29:04 +0100 | [diff] [blame] | 893 | if (parser->job->ring && parser->job->ring != ring) |
| 894 | return -EINVAL; |
| 895 | |
| 896 | parser->job->ring = ring; |
| 897 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 898 | if (ring->funcs->parse_cs) { |
Christian König | 4802ce1 | 2015-06-10 17:20:11 +0200 | [diff] [blame] | 899 | struct amdgpu_bo_va_mapping *m; |
Marek Olšák | 3ccec53 | 2015-06-02 17:44:49 +0200 | [diff] [blame] | 900 | struct amdgpu_bo *aobj = NULL; |
Christian König | 4802ce1 | 2015-06-10 17:20:11 +0200 | [diff] [blame] | 901 | uint64_t offset; |
| 902 | uint8_t *kptr; |
Marek Olšák | 3ccec53 | 2015-06-02 17:44:49 +0200 | [diff] [blame] | 903 | |
Christian König | 4802ce1 | 2015-06-10 17:20:11 +0200 | [diff] [blame] | 904 | m = amdgpu_cs_find_mapping(parser, chunk_ib->va_start, |
| 905 | &aobj); |
Marek Olšák | 3ccec53 | 2015-06-02 17:44:49 +0200 | [diff] [blame] | 906 | if (!aobj) { |
| 907 | DRM_ERROR("IB va_start is invalid\n"); |
| 908 | return -EINVAL; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 909 | } |
| 910 | |
Christian König | 4802ce1 | 2015-06-10 17:20:11 +0200 | [diff] [blame] | 911 | if ((chunk_ib->va_start + chunk_ib->ib_bytes) > |
| 912 | (m->it.last + 1) * AMDGPU_GPU_PAGE_SIZE) { |
| 913 | DRM_ERROR("IB va_start+ib_bytes is invalid\n"); |
| 914 | return -EINVAL; |
| 915 | } |
| 916 | |
Marek Olšák | 3ccec53 | 2015-06-02 17:44:49 +0200 | [diff] [blame] | 917 | /* the IB should be reserved at this point */ |
Christian König | 4802ce1 | 2015-06-10 17:20:11 +0200 | [diff] [blame] | 918 | r = amdgpu_bo_kmap(aobj, (void **)&kptr); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 919 | if (r) { |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 920 | return r; |
| 921 | } |
| 922 | |
Christian König | 4802ce1 | 2015-06-10 17:20:11 +0200 | [diff] [blame] | 923 | offset = ((uint64_t)m->it.start) * AMDGPU_GPU_PAGE_SIZE; |
| 924 | kptr += chunk_ib->va_start - offset; |
| 925 | |
Christian König | 45088ef | 2016-10-05 16:49:19 +0200 | [diff] [blame] | 926 | r = amdgpu_ib_get(adev, vm, chunk_ib->ib_bytes, ib); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 927 | if (r) { |
| 928 | DRM_ERROR("Failed to get ib !\n"); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 929 | return r; |
| 930 | } |
| 931 | |
| 932 | memcpy(ib->ptr, kptr, chunk_ib->ib_bytes); |
| 933 | amdgpu_bo_kunmap(aobj); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 934 | } else { |
Christian König | b07c60c | 2016-01-31 12:29:04 +0100 | [diff] [blame] | 935 | r = amdgpu_ib_get(adev, vm, 0, ib); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 936 | if (r) { |
| 937 | DRM_ERROR("Failed to get ib !\n"); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 938 | return r; |
| 939 | } |
| 940 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 941 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 942 | |
Christian König | 45088ef | 2016-10-05 16:49:19 +0200 | [diff] [blame] | 943 | ib->gpu_addr = chunk_ib->va_start; |
Marek Olšák | 3ccec53 | 2015-06-02 17:44:49 +0200 | [diff] [blame] | 944 | ib->length_dw = chunk_ib->ib_bytes / 4; |
Jammy Zhou | de807f8 | 2015-05-11 23:41:41 +0800 | [diff] [blame] | 945 | ib->flags = chunk_ib->flags; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 946 | j++; |
| 947 | } |
| 948 | |
Christian König | 758ac17 | 2016-05-06 22:14:00 +0200 | [diff] [blame] | 949 | /* UVD & VCE fw doesn't support user fences */ |
Christian König | b5f5acb | 2016-06-29 13:26:41 +0200 | [diff] [blame] | 950 | if (parser->job->uf_addr && ( |
Christian König | 21cd942 | 2016-10-05 15:36:39 +0200 | [diff] [blame] | 951 | parser->job->ring->funcs->type == AMDGPU_RING_TYPE_UVD || |
| 952 | parser->job->ring->funcs->type == AMDGPU_RING_TYPE_VCE)) |
Christian König | 758ac17 | 2016-05-06 22:14:00 +0200 | [diff] [blame] | 953 | return -EINVAL; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 954 | |
| 955 | return 0; |
| 956 | } |
| 957 | |
Christian König | 2b48d32 | 2015-06-19 17:31:29 +0200 | [diff] [blame] | 958 | static int amdgpu_cs_dependencies(struct amdgpu_device *adev, |
| 959 | struct amdgpu_cs_parser *p) |
| 960 | { |
Christian König | 76a1ea6 | 2015-07-06 19:42:10 +0200 | [diff] [blame] | 961 | struct amdgpu_fpriv *fpriv = p->filp->driver_priv; |
Christian König | 2b48d32 | 2015-06-19 17:31:29 +0200 | [diff] [blame] | 962 | int i, j, r; |
| 963 | |
Christian König | 2b48d32 | 2015-06-19 17:31:29 +0200 | [diff] [blame] | 964 | for (i = 0; i < p->nchunks; ++i) { |
| 965 | struct drm_amdgpu_cs_chunk_dep *deps; |
| 966 | struct amdgpu_cs_chunk *chunk; |
| 967 | unsigned num_deps; |
| 968 | |
| 969 | chunk = &p->chunks[i]; |
| 970 | |
| 971 | if (chunk->chunk_id != AMDGPU_CHUNK_ID_DEPENDENCIES) |
| 972 | continue; |
| 973 | |
| 974 | deps = (struct drm_amdgpu_cs_chunk_dep *)chunk->kdata; |
| 975 | num_deps = chunk->length_dw * 4 / |
| 976 | sizeof(struct drm_amdgpu_cs_chunk_dep); |
| 977 | |
| 978 | for (j = 0; j < num_deps; ++j) { |
Christian König | 2b48d32 | 2015-06-19 17:31:29 +0200 | [diff] [blame] | 979 | struct amdgpu_ring *ring; |
Christian König | 76a1ea6 | 2015-07-06 19:42:10 +0200 | [diff] [blame] | 980 | struct amdgpu_ctx *ctx; |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 981 | struct dma_fence *fence; |
Christian König | 2b48d32 | 2015-06-19 17:31:29 +0200 | [diff] [blame] | 982 | |
| 983 | r = amdgpu_cs_get_ring(adev, deps[j].ip_type, |
| 984 | deps[j].ip_instance, |
| 985 | deps[j].ring, &ring); |
| 986 | if (r) |
| 987 | return r; |
| 988 | |
Christian König | 76a1ea6 | 2015-07-06 19:42:10 +0200 | [diff] [blame] | 989 | ctx = amdgpu_ctx_get(fpriv, deps[j].ctx_id); |
| 990 | if (ctx == NULL) |
| 991 | return -EINVAL; |
| 992 | |
Christian König | 21c16bf | 2015-07-07 17:24:49 +0200 | [diff] [blame] | 993 | fence = amdgpu_ctx_get_fence(ctx, ring, |
| 994 | deps[j].handle); |
| 995 | if (IS_ERR(fence)) { |
| 996 | r = PTR_ERR(fence); |
Christian König | 76a1ea6 | 2015-07-06 19:42:10 +0200 | [diff] [blame] | 997 | amdgpu_ctx_put(ctx); |
Christian König | 2b48d32 | 2015-06-19 17:31:29 +0200 | [diff] [blame] | 998 | return r; |
Christian König | 21c16bf | 2015-07-07 17:24:49 +0200 | [diff] [blame] | 999 | |
| 1000 | } else if (fence) { |
Christian König | e86f9ce | 2016-02-08 12:13:05 +0100 | [diff] [blame] | 1001 | r = amdgpu_sync_fence(adev, &p->job->sync, |
| 1002 | fence); |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 1003 | dma_fence_put(fence); |
Christian König | 21c16bf | 2015-07-07 17:24:49 +0200 | [diff] [blame] | 1004 | amdgpu_ctx_put(ctx); |
| 1005 | if (r) |
| 1006 | return r; |
Christian König | 76a1ea6 | 2015-07-06 19:42:10 +0200 | [diff] [blame] | 1007 | } |
Christian König | 2b48d32 | 2015-06-19 17:31:29 +0200 | [diff] [blame] | 1008 | } |
| 1009 | } |
| 1010 | |
| 1011 | return 0; |
| 1012 | } |
| 1013 | |
Christian König | cd75dc6 | 2016-01-31 11:30:55 +0100 | [diff] [blame] | 1014 | static int amdgpu_cs_submit(struct amdgpu_cs_parser *p, |
| 1015 | union drm_amdgpu_cs *cs) |
| 1016 | { |
Christian König | b07c60c | 2016-01-31 12:29:04 +0100 | [diff] [blame] | 1017 | struct amdgpu_ring *ring = p->job->ring; |
Christian König | 92f2509 | 2016-05-06 15:57:42 +0200 | [diff] [blame] | 1018 | struct amd_sched_entity *entity = &p->ctx->rings[ring->idx].entity; |
Christian König | cd75dc6 | 2016-01-31 11:30:55 +0100 | [diff] [blame] | 1019 | struct amdgpu_job *job; |
Monk Liu | e686941 | 2016-03-07 12:49:55 +0800 | [diff] [blame] | 1020 | int r; |
Christian König | cd75dc6 | 2016-01-31 11:30:55 +0100 | [diff] [blame] | 1021 | |
Christian König | 50838c8 | 2016-02-03 13:44:52 +0100 | [diff] [blame] | 1022 | job = p->job; |
| 1023 | p->job = NULL; |
Christian König | cd75dc6 | 2016-01-31 11:30:55 +0100 | [diff] [blame] | 1024 | |
Christian König | 595a9cd | 2016-06-30 10:52:03 +0200 | [diff] [blame] | 1025 | r = amd_sched_job_init(&job->base, &ring->sched, entity, p->filp); |
Monk Liu | e686941 | 2016-03-07 12:49:55 +0800 | [diff] [blame] | 1026 | if (r) { |
Christian König | d71518b | 2016-02-01 12:20:25 +0100 | [diff] [blame] | 1027 | amdgpu_job_free(job); |
Monk Liu | e686941 | 2016-03-07 12:49:55 +0800 | [diff] [blame] | 1028 | return r; |
Christian König | cd75dc6 | 2016-01-31 11:30:55 +0100 | [diff] [blame] | 1029 | } |
| 1030 | |
Monk Liu | e686941 | 2016-03-07 12:49:55 +0800 | [diff] [blame] | 1031 | job->owner = p->filp; |
Monk Liu | 3aecd24 | 2016-08-25 15:40:48 +0800 | [diff] [blame] | 1032 | job->fence_ctx = entity->fence_context; |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 1033 | p->fence = dma_fence_get(&job->base.s_fence->finished); |
Christian König | 595a9cd | 2016-06-30 10:52:03 +0200 | [diff] [blame] | 1034 | cs->out.handle = amdgpu_ctx_add_fence(p->ctx, ring, p->fence); |
Christian König | 758ac17 | 2016-05-06 22:14:00 +0200 | [diff] [blame] | 1035 | job->uf_sequence = cs->out.handle; |
Christian König | a5fb4ec | 2016-06-29 15:10:31 +0200 | [diff] [blame] | 1036 | amdgpu_job_free_resources(job); |
Christian König | cd75dc6 | 2016-01-31 11:30:55 +0100 | [diff] [blame] | 1037 | |
| 1038 | trace_amdgpu_cs_ioctl(job); |
| 1039 | amd_sched_entity_push_job(&job->base); |
| 1040 | |
| 1041 | return 0; |
| 1042 | } |
| 1043 | |
Chunming Zhou | 049fc52 | 2015-07-21 14:36:51 +0800 | [diff] [blame] | 1044 | int amdgpu_cs_ioctl(struct drm_device *dev, void *data, struct drm_file *filp) |
| 1045 | { |
| 1046 | struct amdgpu_device *adev = dev->dev_private; |
| 1047 | union drm_amdgpu_cs *cs = data; |
Christian König | 7e52a81 | 2015-11-04 15:44:39 +0100 | [diff] [blame] | 1048 | struct amdgpu_cs_parser parser = {}; |
Christian König | 26a6980 | 2015-08-18 21:09:33 +0200 | [diff] [blame] | 1049 | bool reserved_buffers = false; |
| 1050 | int i, r; |
Chunming Zhou | 049fc52 | 2015-07-21 14:36:51 +0800 | [diff] [blame] | 1051 | |
Christian König | 0c418f1 | 2015-09-01 15:13:53 +0200 | [diff] [blame] | 1052 | if (!adev->accel_working) |
Chunming Zhou | 049fc52 | 2015-07-21 14:36:51 +0800 | [diff] [blame] | 1053 | return -EBUSY; |
Chunming Zhou | 049fc52 | 2015-07-21 14:36:51 +0800 | [diff] [blame] | 1054 | |
Christian König | 7e52a81 | 2015-11-04 15:44:39 +0100 | [diff] [blame] | 1055 | parser.adev = adev; |
| 1056 | parser.filp = filp; |
| 1057 | |
| 1058 | r = amdgpu_cs_parser_init(&parser, data); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1059 | if (r) { |
Chunming Zhou | 049fc52 | 2015-07-21 14:36:51 +0800 | [diff] [blame] | 1060 | DRM_ERROR("Failed to initialize parser !\n"); |
Huang Rui | a414cd7 | 2016-10-30 23:05:47 +0800 | [diff] [blame] | 1061 | goto out; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1062 | } |
Huang Rui | a414cd7 | 2016-10-30 23:05:47 +0800 | [diff] [blame] | 1063 | |
Christian König | 2a7d9bd | 2015-12-18 20:33:52 +0100 | [diff] [blame] | 1064 | r = amdgpu_cs_parser_bos(&parser, data); |
Huang Rui | a414cd7 | 2016-10-30 23:05:47 +0800 | [diff] [blame] | 1065 | if (r) { |
| 1066 | if (r == -ENOMEM) |
| 1067 | DRM_ERROR("Not enough memory for command submission!\n"); |
| 1068 | else if (r != -ERESTARTSYS) |
| 1069 | DRM_ERROR("Failed to process the buffer list %d!\n", r); |
| 1070 | goto out; |
Christian König | 26a6980 | 2015-08-18 21:09:33 +0200 | [diff] [blame] | 1071 | } |
| 1072 | |
Huang Rui | a414cd7 | 2016-10-30 23:05:47 +0800 | [diff] [blame] | 1073 | reserved_buffers = true; |
| 1074 | r = amdgpu_cs_ib_fill(adev, &parser); |
Christian König | 26a6980 | 2015-08-18 21:09:33 +0200 | [diff] [blame] | 1075 | if (r) |
| 1076 | goto out; |
| 1077 | |
Huang Rui | a414cd7 | 2016-10-30 23:05:47 +0800 | [diff] [blame] | 1078 | r = amdgpu_cs_dependencies(adev, &parser); |
| 1079 | if (r) { |
| 1080 | DRM_ERROR("Failed in the dependencies handling %d!\n", r); |
| 1081 | goto out; |
| 1082 | } |
| 1083 | |
Christian König | 50838c8 | 2016-02-03 13:44:52 +0100 | [diff] [blame] | 1084 | for (i = 0; i < parser.job->num_ibs; i++) |
Christian König | 7e52a81 | 2015-11-04 15:44:39 +0100 | [diff] [blame] | 1085 | trace_amdgpu_cs(&parser, i); |
Christian König | 26a6980 | 2015-08-18 21:09:33 +0200 | [diff] [blame] | 1086 | |
Christian König | 7e52a81 | 2015-11-04 15:44:39 +0100 | [diff] [blame] | 1087 | r = amdgpu_cs_ib_vm_chunk(adev, &parser); |
Chunming Zhou | 4fe6311 | 2015-08-18 16:12:15 +0800 | [diff] [blame] | 1088 | if (r) |
| 1089 | goto out; |
| 1090 | |
Christian König | 4acabfe | 2016-01-31 11:32:04 +0100 | [diff] [blame] | 1091 | r = amdgpu_cs_submit(&parser, cs); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1092 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1093 | out: |
Christian König | 7e52a81 | 2015-11-04 15:44:39 +0100 | [diff] [blame] | 1094 | amdgpu_cs_parser_fini(&parser, r, reserved_buffers); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1095 | return r; |
| 1096 | } |
| 1097 | |
| 1098 | /** |
| 1099 | * amdgpu_cs_wait_ioctl - wait for a command submission to finish |
| 1100 | * |
| 1101 | * @dev: drm device |
| 1102 | * @data: data from userspace |
| 1103 | * @filp: file private |
| 1104 | * |
| 1105 | * Wait for the command submission identified by handle to finish. |
| 1106 | */ |
| 1107 | int amdgpu_cs_wait_ioctl(struct drm_device *dev, void *data, |
| 1108 | struct drm_file *filp) |
| 1109 | { |
| 1110 | union drm_amdgpu_wait_cs *wait = data; |
| 1111 | struct amdgpu_device *adev = dev->dev_private; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1112 | unsigned long timeout = amdgpu_gem_timeout(wait->in.timeout); |
Christian König | 03507c4 | 2015-06-19 17:00:19 +0200 | [diff] [blame] | 1113 | struct amdgpu_ring *ring = NULL; |
Jammy Zhou | 66b3cf2 | 2015-05-08 17:29:40 +0800 | [diff] [blame] | 1114 | struct amdgpu_ctx *ctx; |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 1115 | struct dma_fence *fence; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1116 | long r; |
| 1117 | |
Christian König | 21c16bf | 2015-07-07 17:24:49 +0200 | [diff] [blame] | 1118 | r = amdgpu_cs_get_ring(adev, wait->in.ip_type, wait->in.ip_instance, |
| 1119 | wait->in.ring, &ring); |
| 1120 | if (r) |
| 1121 | return r; |
| 1122 | |
Jammy Zhou | 66b3cf2 | 2015-05-08 17:29:40 +0800 | [diff] [blame] | 1123 | ctx = amdgpu_ctx_get(filp->driver_priv, wait->in.ctx_id); |
| 1124 | if (ctx == NULL) |
| 1125 | return -EINVAL; |
Chunming Zhou | 4b559c9 | 2015-07-21 15:53:04 +0800 | [diff] [blame] | 1126 | |
| 1127 | fence = amdgpu_ctx_get_fence(ctx, ring, wait->in.handle); |
| 1128 | if (IS_ERR(fence)) |
| 1129 | r = PTR_ERR(fence); |
| 1130 | else if (fence) { |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 1131 | r = dma_fence_wait_timeout(fence, true, timeout); |
| 1132 | dma_fence_put(fence); |
Chunming Zhou | 4b559c9 | 2015-07-21 15:53:04 +0800 | [diff] [blame] | 1133 | } else |
Christian König | 21c16bf | 2015-07-07 17:24:49 +0200 | [diff] [blame] | 1134 | r = 1; |
| 1135 | |
Jammy Zhou | 66b3cf2 | 2015-05-08 17:29:40 +0800 | [diff] [blame] | 1136 | amdgpu_ctx_put(ctx); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1137 | if (r < 0) |
| 1138 | return r; |
| 1139 | |
| 1140 | memset(wait, 0, sizeof(*wait)); |
| 1141 | wait->out.status = (r == 0); |
| 1142 | |
| 1143 | return 0; |
| 1144 | } |
| 1145 | |
| 1146 | /** |
Junwei Zhang | eef18a8 | 2016-11-04 16:16:10 -0400 | [diff] [blame] | 1147 | * amdgpu_cs_get_fence - helper to get fence from drm_amdgpu_fence |
| 1148 | * |
| 1149 | * @adev: amdgpu device |
| 1150 | * @filp: file private |
| 1151 | * @user: drm_amdgpu_fence copied from user space |
| 1152 | */ |
| 1153 | static struct dma_fence *amdgpu_cs_get_fence(struct amdgpu_device *adev, |
| 1154 | struct drm_file *filp, |
| 1155 | struct drm_amdgpu_fence *user) |
| 1156 | { |
| 1157 | struct amdgpu_ring *ring; |
| 1158 | struct amdgpu_ctx *ctx; |
| 1159 | struct dma_fence *fence; |
| 1160 | int r; |
| 1161 | |
| 1162 | r = amdgpu_cs_get_ring(adev, user->ip_type, user->ip_instance, |
| 1163 | user->ring, &ring); |
| 1164 | if (r) |
| 1165 | return ERR_PTR(r); |
| 1166 | |
| 1167 | ctx = amdgpu_ctx_get(filp->driver_priv, user->ctx_id); |
| 1168 | if (ctx == NULL) |
| 1169 | return ERR_PTR(-EINVAL); |
| 1170 | |
| 1171 | fence = amdgpu_ctx_get_fence(ctx, ring, user->seq_no); |
| 1172 | amdgpu_ctx_put(ctx); |
| 1173 | |
| 1174 | return fence; |
| 1175 | } |
| 1176 | |
| 1177 | /** |
| 1178 | * amdgpu_cs_wait_all_fence - wait on all fences to signal |
| 1179 | * |
| 1180 | * @adev: amdgpu device |
| 1181 | * @filp: file private |
| 1182 | * @wait: wait parameters |
| 1183 | * @fences: array of drm_amdgpu_fence |
| 1184 | */ |
| 1185 | static int amdgpu_cs_wait_all_fences(struct amdgpu_device *adev, |
| 1186 | struct drm_file *filp, |
| 1187 | union drm_amdgpu_wait_fences *wait, |
| 1188 | struct drm_amdgpu_fence *fences) |
| 1189 | { |
| 1190 | uint32_t fence_count = wait->in.fence_count; |
| 1191 | unsigned int i; |
| 1192 | long r = 1; |
| 1193 | |
| 1194 | for (i = 0; i < fence_count; i++) { |
| 1195 | struct dma_fence *fence; |
| 1196 | unsigned long timeout = amdgpu_gem_timeout(wait->in.timeout_ns); |
| 1197 | |
| 1198 | fence = amdgpu_cs_get_fence(adev, filp, &fences[i]); |
| 1199 | if (IS_ERR(fence)) |
| 1200 | return PTR_ERR(fence); |
| 1201 | else if (!fence) |
| 1202 | continue; |
| 1203 | |
| 1204 | r = dma_fence_wait_timeout(fence, true, timeout); |
| 1205 | if (r < 0) |
| 1206 | return r; |
| 1207 | |
| 1208 | if (r == 0) |
| 1209 | break; |
| 1210 | } |
| 1211 | |
| 1212 | memset(wait, 0, sizeof(*wait)); |
| 1213 | wait->out.status = (r > 0); |
| 1214 | |
| 1215 | return 0; |
| 1216 | } |
| 1217 | |
| 1218 | /** |
| 1219 | * amdgpu_cs_wait_any_fence - wait on any fence to signal |
| 1220 | * |
| 1221 | * @adev: amdgpu device |
| 1222 | * @filp: file private |
| 1223 | * @wait: wait parameters |
| 1224 | * @fences: array of drm_amdgpu_fence |
| 1225 | */ |
| 1226 | static int amdgpu_cs_wait_any_fence(struct amdgpu_device *adev, |
| 1227 | struct drm_file *filp, |
| 1228 | union drm_amdgpu_wait_fences *wait, |
| 1229 | struct drm_amdgpu_fence *fences) |
| 1230 | { |
| 1231 | unsigned long timeout = amdgpu_gem_timeout(wait->in.timeout_ns); |
| 1232 | uint32_t fence_count = wait->in.fence_count; |
| 1233 | uint32_t first = ~0; |
| 1234 | struct dma_fence **array; |
| 1235 | unsigned int i; |
| 1236 | long r; |
| 1237 | |
| 1238 | /* Prepare the fence array */ |
| 1239 | array = kcalloc(fence_count, sizeof(struct dma_fence *), GFP_KERNEL); |
| 1240 | |
| 1241 | if (array == NULL) |
| 1242 | return -ENOMEM; |
| 1243 | |
| 1244 | for (i = 0; i < fence_count; i++) { |
| 1245 | struct dma_fence *fence; |
| 1246 | |
| 1247 | fence = amdgpu_cs_get_fence(adev, filp, &fences[i]); |
| 1248 | if (IS_ERR(fence)) { |
| 1249 | r = PTR_ERR(fence); |
| 1250 | goto err_free_fence_array; |
| 1251 | } else if (fence) { |
| 1252 | array[i] = fence; |
| 1253 | } else { /* NULL, the fence has been already signaled */ |
| 1254 | r = 1; |
| 1255 | goto out; |
| 1256 | } |
| 1257 | } |
| 1258 | |
| 1259 | r = dma_fence_wait_any_timeout(array, fence_count, true, timeout, |
| 1260 | &first); |
| 1261 | if (r < 0) |
| 1262 | goto err_free_fence_array; |
| 1263 | |
| 1264 | out: |
| 1265 | memset(wait, 0, sizeof(*wait)); |
| 1266 | wait->out.status = (r > 0); |
| 1267 | wait->out.first_signaled = first; |
| 1268 | /* set return value 0 to indicate success */ |
| 1269 | r = 0; |
| 1270 | |
| 1271 | err_free_fence_array: |
| 1272 | for (i = 0; i < fence_count; i++) |
| 1273 | dma_fence_put(array[i]); |
| 1274 | kfree(array); |
| 1275 | |
| 1276 | return r; |
| 1277 | } |
| 1278 | |
| 1279 | /** |
| 1280 | * amdgpu_cs_wait_fences_ioctl - wait for multiple command submissions to finish |
| 1281 | * |
| 1282 | * @dev: drm device |
| 1283 | * @data: data from userspace |
| 1284 | * @filp: file private |
| 1285 | */ |
| 1286 | int amdgpu_cs_wait_fences_ioctl(struct drm_device *dev, void *data, |
| 1287 | struct drm_file *filp) |
| 1288 | { |
| 1289 | struct amdgpu_device *adev = dev->dev_private; |
| 1290 | union drm_amdgpu_wait_fences *wait = data; |
| 1291 | uint32_t fence_count = wait->in.fence_count; |
| 1292 | struct drm_amdgpu_fence *fences_user; |
| 1293 | struct drm_amdgpu_fence *fences; |
| 1294 | int r; |
| 1295 | |
| 1296 | /* Get the fences from userspace */ |
| 1297 | fences = kmalloc_array(fence_count, sizeof(struct drm_amdgpu_fence), |
| 1298 | GFP_KERNEL); |
| 1299 | if (fences == NULL) |
| 1300 | return -ENOMEM; |
| 1301 | |
| 1302 | fences_user = (void __user *)(unsigned long)(wait->in.fences); |
| 1303 | if (copy_from_user(fences, fences_user, |
| 1304 | sizeof(struct drm_amdgpu_fence) * fence_count)) { |
| 1305 | r = -EFAULT; |
| 1306 | goto err_free_fences; |
| 1307 | } |
| 1308 | |
| 1309 | if (wait->in.wait_all) |
| 1310 | r = amdgpu_cs_wait_all_fences(adev, filp, wait, fences); |
| 1311 | else |
| 1312 | r = amdgpu_cs_wait_any_fence(adev, filp, wait, fences); |
| 1313 | |
| 1314 | err_free_fences: |
| 1315 | kfree(fences); |
| 1316 | |
| 1317 | return r; |
| 1318 | } |
| 1319 | |
| 1320 | /** |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1321 | * amdgpu_cs_find_bo_va - find bo_va for VM address |
| 1322 | * |
| 1323 | * @parser: command submission parser context |
| 1324 | * @addr: VM address |
| 1325 | * @bo: resulting BO of the mapping found |
| 1326 | * |
| 1327 | * Search the buffer objects in the command submission context for a certain |
| 1328 | * virtual memory address. Returns allocation structure when found, NULL |
| 1329 | * otherwise. |
| 1330 | */ |
| 1331 | struct amdgpu_bo_va_mapping * |
| 1332 | amdgpu_cs_find_mapping(struct amdgpu_cs_parser *parser, |
| 1333 | uint64_t addr, struct amdgpu_bo **bo) |
| 1334 | { |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1335 | struct amdgpu_bo_va_mapping *mapping; |
Christian König | 15486fd2 | 2015-12-22 16:06:12 +0100 | [diff] [blame] | 1336 | unsigned i; |
| 1337 | |
| 1338 | if (!parser->bo_list) |
| 1339 | return NULL; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1340 | |
| 1341 | addr /= AMDGPU_GPU_PAGE_SIZE; |
| 1342 | |
Christian König | 15486fd2 | 2015-12-22 16:06:12 +0100 | [diff] [blame] | 1343 | for (i = 0; i < parser->bo_list->num_entries; i++) { |
| 1344 | struct amdgpu_bo_list_entry *lobj; |
| 1345 | |
| 1346 | lobj = &parser->bo_list->array[i]; |
| 1347 | if (!lobj->bo_va) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1348 | continue; |
| 1349 | |
Christian König | 15486fd2 | 2015-12-22 16:06:12 +0100 | [diff] [blame] | 1350 | list_for_each_entry(mapping, &lobj->bo_va->valids, list) { |
Christian König | 7fc1195 | 2015-07-30 11:53:42 +0200 | [diff] [blame] | 1351 | if (mapping->it.start > addr || |
| 1352 | addr > mapping->it.last) |
| 1353 | continue; |
| 1354 | |
Christian König | 15486fd2 | 2015-12-22 16:06:12 +0100 | [diff] [blame] | 1355 | *bo = lobj->bo_va->bo; |
Christian König | 7fc1195 | 2015-07-30 11:53:42 +0200 | [diff] [blame] | 1356 | return mapping; |
| 1357 | } |
| 1358 | |
Christian König | 15486fd2 | 2015-12-22 16:06:12 +0100 | [diff] [blame] | 1359 | list_for_each_entry(mapping, &lobj->bo_va->invalids, list) { |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1360 | if (mapping->it.start > addr || |
| 1361 | addr > mapping->it.last) |
| 1362 | continue; |
| 1363 | |
Christian König | 15486fd2 | 2015-12-22 16:06:12 +0100 | [diff] [blame] | 1364 | *bo = lobj->bo_va->bo; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1365 | return mapping; |
| 1366 | } |
| 1367 | } |
| 1368 | |
| 1369 | return NULL; |
| 1370 | } |
Christian König | c855e25 | 2016-09-05 17:00:57 +0200 | [diff] [blame] | 1371 | |
| 1372 | /** |
| 1373 | * amdgpu_cs_sysvm_access_required - make BOs accessible by the system VM |
| 1374 | * |
| 1375 | * @parser: command submission parser context |
| 1376 | * |
| 1377 | * Helper for UVD/VCE VM emulation, make sure BOs are accessible by the system VM. |
| 1378 | */ |
| 1379 | int amdgpu_cs_sysvm_access_required(struct amdgpu_cs_parser *parser) |
| 1380 | { |
| 1381 | unsigned i; |
| 1382 | int r; |
| 1383 | |
| 1384 | if (!parser->bo_list) |
| 1385 | return 0; |
| 1386 | |
| 1387 | for (i = 0; i < parser->bo_list->num_entries; i++) { |
| 1388 | struct amdgpu_bo *bo = parser->bo_list->array[i].robj; |
| 1389 | |
Christian König | bb990bb | 2016-09-09 16:32:33 +0200 | [diff] [blame] | 1390 | r = amdgpu_ttm_bind(&bo->tbo, &bo->tbo.mem); |
Christian König | c855e25 | 2016-09-05 17:00:57 +0200 | [diff] [blame] | 1391 | if (unlikely(r)) |
| 1392 | return r; |
Christian König | 03f48dd | 2016-08-15 17:00:22 +0200 | [diff] [blame] | 1393 | |
| 1394 | if (bo->flags & AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS) |
| 1395 | continue; |
| 1396 | |
| 1397 | bo->flags |= AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS; |
| 1398 | amdgpu_ttm_placement_from_domain(bo, bo->allowed_domains); |
| 1399 | r = ttm_bo_validate(&bo->tbo, &bo->placement, false, false); |
| 1400 | if (unlikely(r)) |
| 1401 | return r; |
Christian König | c855e25 | 2016-09-05 17:00:57 +0200 | [diff] [blame] | 1402 | } |
| 1403 | |
| 1404 | return 0; |
| 1405 | } |