blob: 4877df83b801de151df7afc44bc9af1cc4843008 [file] [log] [blame]
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001/*
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 Rothwell568d7c72016-03-17 15:30:49 +110027#include <linux/pagemap.h>
Alex Deucherd38ceaf2015-04-20 16:55:21 -040028#include <drm/drmP.h>
29#include <drm/amdgpu_drm.h>
Dave Airlie660e8552017-03-13 22:18:15 +000030#include <drm/drm_syncobj.h>
Alex Deucherd38ceaf2015-04-20 16:55:21 -040031#include "amdgpu.h"
32#include "amdgpu_trace.h"
33
Christian König91acbeb2015-12-14 16:42:31 +010034static int amdgpu_cs_user_fence_chunk(struct amdgpu_cs_parser *p,
Christian König758ac172016-05-06 22:14:00 +020035 struct drm_amdgpu_cs_chunk_fence *data,
36 uint32_t *offset)
Christian König91acbeb2015-12-14 16:42:31 +010037{
38 struct drm_gem_object *gobj;
Christian Königaa290402016-09-09 11:21:43 +020039 unsigned long size;
Christian König91acbeb2015-12-14 16:42:31 +010040
Chris Wilsona8ad0bd2016-05-09 11:04:54 +010041 gobj = drm_gem_object_lookup(p->filp, data->handle);
Christian König91acbeb2015-12-14 16:42:31 +010042 if (gobj == NULL)
43 return -EINVAL;
44
Christian König758ac172016-05-06 22:14:00 +020045 p->uf_entry.robj = amdgpu_bo_ref(gem_to_amdgpu_bo(gobj));
Christian König91acbeb2015-12-14 16:42:31 +010046 p->uf_entry.priority = 0;
47 p->uf_entry.tv.bo = &p->uf_entry.robj->tbo;
48 p->uf_entry.tv.shared = true;
Christian König2f568db2016-02-23 12:36:59 +010049 p->uf_entry.user_pages = NULL;
Christian Königaa290402016-09-09 11:21:43 +020050
51 size = amdgpu_bo_size(p->uf_entry.robj);
52 if (size != PAGE_SIZE || (data->offset + 8) > size)
53 return -EINVAL;
54
Christian König758ac172016-05-06 22:14:00 +020055 *offset = data->offset;
Christian König91acbeb2015-12-14 16:42:31 +010056
Cihangir Akturkf62facc2017-08-03 14:58:16 +030057 drm_gem_object_put_unlocked(gobj);
Christian König758ac172016-05-06 22:14:00 +020058
59 if (amdgpu_ttm_tt_get_usermm(p->uf_entry.robj->tbo.ttm)) {
60 amdgpu_bo_unref(&p->uf_entry.robj);
61 return -EINVAL;
62 }
63
Christian König91acbeb2015-12-14 16:42:31 +010064 return 0;
65}
66
Alex Xie9211c782017-06-20 16:35:04 -040067static int amdgpu_cs_parser_init(struct amdgpu_cs_parser *p, void *data)
Alex Deucherd38ceaf2015-04-20 16:55:21 -040068{
Christian König4c0b2422016-02-01 11:20:37 +010069 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
Monk Liuc5637832016-04-19 20:11:32 +080070 struct amdgpu_vm *vm = &fpriv->vm;
Alex Deucherd38ceaf2015-04-20 16:55:21 -040071 union drm_amdgpu_cs *cs = data;
72 uint64_t *chunk_array_user;
Dan Carpenter1d263472015-09-23 13:59:28 +030073 uint64_t *chunk_array;
Christian König50838c82016-02-03 13:44:52 +010074 unsigned size, num_ibs = 0;
Christian König758ac172016-05-06 22:14:00 +020075 uint32_t uf_offset = 0;
Dan Carpenter54313502015-09-25 14:36:55 +030076 int i;
Dan Carpenter1d263472015-09-23 13:59:28 +030077 int ret;
Alex Deucherd38ceaf2015-04-20 16:55:21 -040078
Dan Carpenter1d263472015-09-23 13:59:28 +030079 if (cs->in.num_chunks == 0)
80 return 0;
81
82 chunk_array = kmalloc_array(cs->in.num_chunks, sizeof(uint64_t), GFP_KERNEL);
83 if (!chunk_array)
84 return -ENOMEM;
Alex Deucherd38ceaf2015-04-20 16:55:21 -040085
Christian König3cb485f2015-05-11 15:34:59 +020086 p->ctx = amdgpu_ctx_get(fpriv, cs->in.ctx_id);
87 if (!p->ctx) {
Dan Carpenter1d263472015-09-23 13:59:28 +030088 ret = -EINVAL;
89 goto free_chunk;
Christian König3cb485f2015-05-11 15:34:59 +020090 }
Dan Carpenter1d263472015-09-23 13:59:28 +030091
Alex Deucherd38ceaf2015-04-20 16:55:21 -040092 /* get chunks */
Christian König7ecc2452017-07-26 17:02:52 +020093 chunk_array_user = u64_to_user_ptr(cs->in.chunks);
Alex Deucherd38ceaf2015-04-20 16:55:21 -040094 if (copy_from_user(chunk_array, chunk_array_user,
95 sizeof(uint64_t)*cs->in.num_chunks)) {
Dan Carpenter1d263472015-09-23 13:59:28 +030096 ret = -EFAULT;
Christian König2a7d9bd2015-12-18 20:33:52 +010097 goto put_ctx;
Alex Deucherd38ceaf2015-04-20 16:55:21 -040098 }
99
100 p->nchunks = cs->in.num_chunks;
monk.liue60b3442015-07-17 18:39:25 +0800101 p->chunks = kmalloc_array(p->nchunks, sizeof(struct amdgpu_cs_chunk),
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400102 GFP_KERNEL);
Dan Carpenter1d263472015-09-23 13:59:28 +0300103 if (!p->chunks) {
104 ret = -ENOMEM;
Christian König2a7d9bd2015-12-18 20:33:52 +0100105 goto put_ctx;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400106 }
107
108 for (i = 0; i < p->nchunks; i++) {
109 struct drm_amdgpu_cs_chunk __user **chunk_ptr = NULL;
110 struct drm_amdgpu_cs_chunk user_chunk;
111 uint32_t __user *cdata;
112
Christian König7ecc2452017-07-26 17:02:52 +0200113 chunk_ptr = u64_to_user_ptr(chunk_array[i]);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400114 if (copy_from_user(&user_chunk, chunk_ptr,
115 sizeof(struct drm_amdgpu_cs_chunk))) {
Dan Carpenter1d263472015-09-23 13:59:28 +0300116 ret = -EFAULT;
117 i--;
118 goto free_partial_kdata;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400119 }
120 p->chunks[i].chunk_id = user_chunk.chunk_id;
121 p->chunks[i].length_dw = user_chunk.length_dw;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400122
123 size = p->chunks[i].length_dw;
Christian König7ecc2452017-07-26 17:02:52 +0200124 cdata = u64_to_user_ptr(user_chunk.chunk_data);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400125
Michal Hocko20981052017-05-17 14:23:12 +0200126 p->chunks[i].kdata = kvmalloc_array(size, sizeof(uint32_t), GFP_KERNEL);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400127 if (p->chunks[i].kdata == NULL) {
Dan Carpenter1d263472015-09-23 13:59:28 +0300128 ret = -ENOMEM;
129 i--;
130 goto free_partial_kdata;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400131 }
132 size *= sizeof(uint32_t);
133 if (copy_from_user(p->chunks[i].kdata, cdata, size)) {
Dan Carpenter1d263472015-09-23 13:59:28 +0300134 ret = -EFAULT;
135 goto free_partial_kdata;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400136 }
137
Christian König9a5e8fb2015-06-23 17:07:03 +0200138 switch (p->chunks[i].chunk_id) {
139 case AMDGPU_CHUNK_ID_IB:
Christian König50838c82016-02-03 13:44:52 +0100140 ++num_ibs;
Christian König9a5e8fb2015-06-23 17:07:03 +0200141 break;
142
143 case AMDGPU_CHUNK_ID_FENCE:
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400144 size = sizeof(struct drm_amdgpu_cs_chunk_fence);
Christian König91acbeb2015-12-14 16:42:31 +0100145 if (p->chunks[i].length_dw * sizeof(uint32_t) < size) {
Dan Carpenter1d263472015-09-23 13:59:28 +0300146 ret = -EINVAL;
147 goto free_partial_kdata;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400148 }
Christian König91acbeb2015-12-14 16:42:31 +0100149
Christian König758ac172016-05-06 22:14:00 +0200150 ret = amdgpu_cs_user_fence_chunk(p, p->chunks[i].kdata,
151 &uf_offset);
Christian König91acbeb2015-12-14 16:42:31 +0100152 if (ret)
153 goto free_partial_kdata;
154
Christian König9a5e8fb2015-06-23 17:07:03 +0200155 break;
156
Christian König2b48d322015-06-19 17:31:29 +0200157 case AMDGPU_CHUNK_ID_DEPENDENCIES:
Dave Airlie660e8552017-03-13 22:18:15 +0000158 case AMDGPU_CHUNK_ID_SYNCOBJ_IN:
159 case AMDGPU_CHUNK_ID_SYNCOBJ_OUT:
Christian König2b48d322015-06-19 17:31:29 +0200160 break;
161
Christian König9a5e8fb2015-06-23 17:07:03 +0200162 default:
Dan Carpenter1d263472015-09-23 13:59:28 +0300163 ret = -EINVAL;
164 goto free_partial_kdata;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400165 }
166 }
167
Monk Liuc5637832016-04-19 20:11:32 +0800168 ret = amdgpu_job_alloc(p->adev, num_ibs, &p->job, vm);
Christian König50838c82016-02-03 13:44:52 +0100169 if (ret)
Christian König4acabfe2016-01-31 11:32:04 +0100170 goto free_all_kdata;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400171
Christian Königb5f5acb2016-06-29 13:26:41 +0200172 if (p->uf_entry.robj)
173 p->job->uf_addr = uf_offset;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400174 kfree(chunk_array);
Dan Carpenter1d263472015-09-23 13:59:28 +0300175 return 0;
176
177free_all_kdata:
178 i = p->nchunks - 1;
179free_partial_kdata:
180 for (; i >= 0; i--)
Michal Hocko20981052017-05-17 14:23:12 +0200181 kvfree(p->chunks[i].kdata);
Dan Carpenter1d263472015-09-23 13:59:28 +0300182 kfree(p->chunks);
Dave Airlie607523d2017-03-10 12:13:04 +1000183 p->chunks = NULL;
184 p->nchunks = 0;
Christian König2a7d9bd2015-12-18 20:33:52 +0100185put_ctx:
Dan Carpenter1d263472015-09-23 13:59:28 +0300186 amdgpu_ctx_put(p->ctx);
187free_chunk:
188 kfree(chunk_array);
189
190 return ret;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400191}
192
Marek Olšák95844d22016-08-17 23:49:27 +0200193/* Convert microseconds to bytes. */
194static u64 us_to_bytes(struct amdgpu_device *adev, s64 us)
195{
196 if (us <= 0 || !adev->mm_stats.log2_max_MBps)
197 return 0;
198
199 /* Since accum_us is incremented by a million per second, just
200 * multiply it by the number of MB/s to get the number of bytes.
201 */
202 return us << adev->mm_stats.log2_max_MBps;
203}
204
205static s64 bytes_to_us(struct amdgpu_device *adev, u64 bytes)
206{
207 if (!adev->mm_stats.log2_max_MBps)
208 return 0;
209
210 return bytes >> adev->mm_stats.log2_max_MBps;
211}
212
213/* Returns how many bytes TTM can move right now. If no bytes can be moved,
214 * it returns 0. If it returns non-zero, it's OK to move at least one buffer,
215 * which means it can go over the threshold once. If that happens, the driver
216 * will be in debt and no other buffer migrations can be done until that debt
217 * is repaid.
218 *
219 * This approach allows moving a buffer of any size (it's important to allow
220 * that).
221 *
222 * The currency is simply time in microseconds and it increases as the clock
223 * ticks. The accumulated microseconds (us) are converted to bytes and
224 * returned.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400225 */
John Brooks00f06b22017-06-27 22:33:18 -0400226static void amdgpu_cs_get_threshold_for_moves(struct amdgpu_device *adev,
227 u64 *max_bytes,
228 u64 *max_vis_bytes)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400229{
Marek Olšák95844d22016-08-17 23:49:27 +0200230 s64 time_us, increment_us;
Marek Olšák95844d22016-08-17 23:49:27 +0200231 u64 free_vram, total_vram, used_vram;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400232
Marek Olšák95844d22016-08-17 23:49:27 +0200233 /* Allow a maximum of 200 accumulated ms. This is basically per-IB
234 * throttling.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400235 *
Marek Olšák95844d22016-08-17 23:49:27 +0200236 * It means that in order to get full max MBps, at least 5 IBs per
237 * second must be submitted and not more than 200ms apart from each
238 * other.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400239 */
Marek Olšák95844d22016-08-17 23:49:27 +0200240 const s64 us_upper_bound = 200000;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400241
John Brooks00f06b22017-06-27 22:33:18 -0400242 if (!adev->mm_stats.log2_max_MBps) {
243 *max_bytes = 0;
244 *max_vis_bytes = 0;
245 return;
246 }
Marek Olšák95844d22016-08-17 23:49:27 +0200247
248 total_vram = adev->mc.real_vram_size - adev->vram_pin_size;
Christian König3c848bb2017-08-07 17:46:49 +0200249 used_vram = amdgpu_vram_mgr_usage(&adev->mman.bdev.man[TTM_PL_VRAM]);
Marek Olšák95844d22016-08-17 23:49:27 +0200250 free_vram = used_vram >= total_vram ? 0 : total_vram - used_vram;
251
252 spin_lock(&adev->mm_stats.lock);
253
254 /* Increase the amount of accumulated us. */
255 time_us = ktime_to_us(ktime_get());
256 increment_us = time_us - adev->mm_stats.last_update_us;
257 adev->mm_stats.last_update_us = time_us;
258 adev->mm_stats.accum_us = min(adev->mm_stats.accum_us + increment_us,
259 us_upper_bound);
260
261 /* This prevents the short period of low performance when the VRAM
262 * usage is low and the driver is in debt or doesn't have enough
263 * accumulated us to fill VRAM quickly.
264 *
265 * The situation can occur in these cases:
266 * - a lot of VRAM is freed by userspace
267 * - the presence of a big buffer causes a lot of evictions
268 * (solution: split buffers into smaller ones)
269 *
270 * If 128 MB or 1/8th of VRAM is free, start filling it now by setting
271 * accum_us to a positive number.
272 */
273 if (free_vram >= 128 * 1024 * 1024 || free_vram >= total_vram / 8) {
274 s64 min_us;
275
276 /* Be more aggresive on dGPUs. Try to fill a portion of free
277 * VRAM now.
278 */
279 if (!(adev->flags & AMD_IS_APU))
280 min_us = bytes_to_us(adev, free_vram / 4);
281 else
282 min_us = 0; /* Reset accum_us on APUs. */
283
284 adev->mm_stats.accum_us = max(min_us, adev->mm_stats.accum_us);
285 }
286
John Brooks00f06b22017-06-27 22:33:18 -0400287 /* This is set to 0 if the driver is in debt to disallow (optional)
Marek Olšák95844d22016-08-17 23:49:27 +0200288 * buffer moves.
289 */
John Brooks00f06b22017-06-27 22:33:18 -0400290 *max_bytes = us_to_bytes(adev, adev->mm_stats.accum_us);
291
292 /* Do the same for visible VRAM if half of it is free */
293 if (adev->mc.visible_vram_size < adev->mc.real_vram_size) {
294 u64 total_vis_vram = adev->mc.visible_vram_size;
Christian König3c848bb2017-08-07 17:46:49 +0200295 u64 used_vis_vram =
296 amdgpu_vram_mgr_vis_usage(&adev->mman.bdev.man[TTM_PL_VRAM]);
John Brooks00f06b22017-06-27 22:33:18 -0400297
298 if (used_vis_vram < total_vis_vram) {
299 u64 free_vis_vram = total_vis_vram - used_vis_vram;
300 adev->mm_stats.accum_us_vis = min(adev->mm_stats.accum_us_vis +
301 increment_us, us_upper_bound);
302
303 if (free_vis_vram >= total_vis_vram / 2)
304 adev->mm_stats.accum_us_vis =
305 max(bytes_to_us(adev, free_vis_vram / 2),
306 adev->mm_stats.accum_us_vis);
307 }
308
309 *max_vis_bytes = us_to_bytes(adev, adev->mm_stats.accum_us_vis);
310 } else {
311 *max_vis_bytes = 0;
312 }
Marek Olšák95844d22016-08-17 23:49:27 +0200313
314 spin_unlock(&adev->mm_stats.lock);
Marek Olšák95844d22016-08-17 23:49:27 +0200315}
316
317/* Report how many bytes have really been moved for the last command
318 * submission. This can result in a debt that can stop buffer migrations
319 * temporarily.
320 */
John Brooks00f06b22017-06-27 22:33:18 -0400321void amdgpu_cs_report_moved_bytes(struct amdgpu_device *adev, u64 num_bytes,
322 u64 num_vis_bytes)
Marek Olšák95844d22016-08-17 23:49:27 +0200323{
324 spin_lock(&adev->mm_stats.lock);
325 adev->mm_stats.accum_us -= bytes_to_us(adev, num_bytes);
John Brooks00f06b22017-06-27 22:33:18 -0400326 adev->mm_stats.accum_us_vis -= bytes_to_us(adev, num_vis_bytes);
Marek Olšák95844d22016-08-17 23:49:27 +0200327 spin_unlock(&adev->mm_stats.lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400328}
329
Chunming Zhou14fd8332016-08-04 13:05:46 +0800330static int amdgpu_cs_bo_validate(struct amdgpu_cs_parser *p,
331 struct amdgpu_bo *bo)
332{
Christian Königa7d64de2016-09-15 14:58:48 +0200333 struct amdgpu_device *adev = amdgpu_ttm_adev(bo->tbo.bdev);
John Brooks00f06b22017-06-27 22:33:18 -0400334 u64 initial_bytes_moved, bytes_moved;
Chunming Zhou14fd8332016-08-04 13:05:46 +0800335 uint32_t domain;
336 int r;
337
338 if (bo->pin_count)
339 return 0;
340
Marek Olšák95844d22016-08-17 23:49:27 +0200341 /* Don't move this buffer if we have depleted our allowance
342 * to move it. Don't move anything if the threshold is zero.
Chunming Zhou14fd8332016-08-04 13:05:46 +0800343 */
John Brooks00f06b22017-06-27 22:33:18 -0400344 if (p->bytes_moved < p->bytes_moved_threshold) {
345 if (adev->mc.visible_vram_size < adev->mc.real_vram_size &&
346 (bo->flags & AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED)) {
347 /* And don't move a CPU_ACCESS_REQUIRED BO to limited
348 * visible VRAM if we've depleted our allowance to do
349 * that.
350 */
351 if (p->bytes_moved_vis < p->bytes_moved_vis_threshold)
Kent Russell6d7d9c52017-08-08 07:58:01 -0400352 domain = bo->preferred_domains;
John Brooks00f06b22017-06-27 22:33:18 -0400353 else
354 domain = bo->allowed_domains;
355 } else {
Kent Russell6d7d9c52017-08-08 07:58:01 -0400356 domain = bo->preferred_domains;
John Brooks00f06b22017-06-27 22:33:18 -0400357 }
358 } else {
Chunming Zhou14fd8332016-08-04 13:05:46 +0800359 domain = bo->allowed_domains;
John Brooks00f06b22017-06-27 22:33:18 -0400360 }
Chunming Zhou14fd8332016-08-04 13:05:46 +0800361
362retry:
363 amdgpu_ttm_placement_from_domain(bo, domain);
Christian Königa7d64de2016-09-15 14:58:48 +0200364 initial_bytes_moved = atomic64_read(&adev->num_bytes_moved);
Chunming Zhou14fd8332016-08-04 13:05:46 +0800365 r = ttm_bo_validate(&bo->tbo, &bo->placement, true, false);
John Brooks00f06b22017-06-27 22:33:18 -0400366 bytes_moved = atomic64_read(&adev->num_bytes_moved) -
367 initial_bytes_moved;
368 p->bytes_moved += bytes_moved;
369 if (adev->mc.visible_vram_size < adev->mc.real_vram_size &&
370 bo->tbo.mem.mem_type == TTM_PL_VRAM &&
371 bo->tbo.mem.start < adev->mc.visible_vram_size >> PAGE_SHIFT)
372 p->bytes_moved_vis += bytes_moved;
Chunming Zhou14fd8332016-08-04 13:05:46 +0800373
Christian König1abdc3d2016-08-31 17:28:11 +0200374 if (unlikely(r == -ENOMEM) && domain != bo->allowed_domains) {
375 domain = bo->allowed_domains;
376 goto retry;
Chunming Zhou14fd8332016-08-04 13:05:46 +0800377 }
378
379 return r;
380}
381
Christian König662bfa62016-09-01 12:13:18 +0200382/* Last resort, try to evict something from the current working set */
383static bool amdgpu_cs_try_evict(struct amdgpu_cs_parser *p,
Christian Königf7da30d2016-09-28 12:03:04 +0200384 struct amdgpu_bo *validated)
Christian König662bfa62016-09-01 12:13:18 +0200385{
Christian Königf7da30d2016-09-28 12:03:04 +0200386 uint32_t domain = validated->allowed_domains;
Christian König662bfa62016-09-01 12:13:18 +0200387 int r;
388
389 if (!p->evictable)
390 return false;
391
392 for (;&p->evictable->tv.head != &p->validated;
393 p->evictable = list_prev_entry(p->evictable, tv.head)) {
394
395 struct amdgpu_bo_list_entry *candidate = p->evictable;
396 struct amdgpu_bo *bo = candidate->robj;
Christian Königa7d64de2016-09-15 14:58:48 +0200397 struct amdgpu_device *adev = amdgpu_ttm_adev(bo->tbo.bdev);
John Brooks00f06b22017-06-27 22:33:18 -0400398 u64 initial_bytes_moved, bytes_moved;
399 bool update_bytes_moved_vis;
Christian König662bfa62016-09-01 12:13:18 +0200400 uint32_t other;
401
402 /* If we reached our current BO we can forget it */
Christian Königf7da30d2016-09-28 12:03:04 +0200403 if (candidate->robj == validated)
Christian König662bfa62016-09-01 12:13:18 +0200404 break;
405
406 other = amdgpu_mem_type_to_domain(bo->tbo.mem.mem_type);
407
408 /* Check if this BO is in one of the domains we need space for */
409 if (!(other & domain))
410 continue;
411
412 /* Check if we can move this BO somewhere else */
413 other = bo->allowed_domains & ~domain;
414 if (!other)
415 continue;
416
417 /* Good we can try to move this BO somewhere else */
418 amdgpu_ttm_placement_from_domain(bo, other);
John Brooks00f06b22017-06-27 22:33:18 -0400419 update_bytes_moved_vis =
420 adev->mc.visible_vram_size < adev->mc.real_vram_size &&
421 bo->tbo.mem.mem_type == TTM_PL_VRAM &&
422 bo->tbo.mem.start < adev->mc.visible_vram_size >> PAGE_SHIFT;
Christian Königa7d64de2016-09-15 14:58:48 +0200423 initial_bytes_moved = atomic64_read(&adev->num_bytes_moved);
Christian König662bfa62016-09-01 12:13:18 +0200424 r = ttm_bo_validate(&bo->tbo, &bo->placement, true, false);
John Brooks00f06b22017-06-27 22:33:18 -0400425 bytes_moved = atomic64_read(&adev->num_bytes_moved) -
Christian König662bfa62016-09-01 12:13:18 +0200426 initial_bytes_moved;
John Brooks00f06b22017-06-27 22:33:18 -0400427 p->bytes_moved += bytes_moved;
428 if (update_bytes_moved_vis)
429 p->bytes_moved_vis += bytes_moved;
Christian König662bfa62016-09-01 12:13:18 +0200430
431 if (unlikely(r))
432 break;
433
434 p->evictable = list_prev_entry(p->evictable, tv.head);
435 list_move(&candidate->tv.head, &p->validated);
436
437 return true;
438 }
439
440 return false;
441}
442
Christian Königf7da30d2016-09-28 12:03:04 +0200443static int amdgpu_cs_validate(void *param, struct amdgpu_bo *bo)
444{
445 struct amdgpu_cs_parser *p = param;
446 int r;
447
448 do {
449 r = amdgpu_cs_bo_validate(p, bo);
450 } while (r == -ENOMEM && amdgpu_cs_try_evict(p, bo));
451 if (r)
452 return r;
453
454 if (bo->shadow)
Alex Xie1cd99a82016-11-30 17:19:40 -0500455 r = amdgpu_cs_bo_validate(p, bo->shadow);
Christian Königf7da30d2016-09-28 12:03:04 +0200456
457 return r;
458}
459
Baoyou Xie761c2e82016-09-03 13:57:14 +0800460static int amdgpu_cs_list_validate(struct amdgpu_cs_parser *p,
Christian Königa5b75052015-09-03 16:40:39 +0200461 struct list_head *validated)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400462{
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400463 struct amdgpu_bo_list_entry *lobj;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400464 int r;
465
Christian Königa5b75052015-09-03 16:40:39 +0200466 list_for_each_entry(lobj, validated, tv.head) {
Christian König36409d122015-12-21 20:31:35 +0100467 struct amdgpu_bo *bo = lobj->robj;
Christian König2f568db2016-02-23 12:36:59 +0100468 bool binding_userptr = false;
Christian Königcc325d12016-02-08 11:08:35 +0100469 struct mm_struct *usermm;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400470
Christian Königcc325d12016-02-08 11:08:35 +0100471 usermm = amdgpu_ttm_tt_get_usermm(bo->tbo.ttm);
472 if (usermm && usermm != current->mm)
473 return -EPERM;
474
Christian König2f568db2016-02-23 12:36:59 +0100475 /* Check if we have user pages and nobody bound the BO already */
Christian Königca666a32017-09-05 14:30:05 +0200476 if (amdgpu_ttm_tt_userptr_needs_pages(bo->tbo.ttm) &&
477 lobj->user_pages) {
Christian König1b0c0f92017-09-05 14:36:44 +0200478 amdgpu_ttm_placement_from_domain(bo,
479 AMDGPU_GEM_DOMAIN_CPU);
480 r = ttm_bo_validate(&bo->tbo, &bo->placement, true,
481 false);
482 if (r)
483 return r;
Christian Königa216ab02017-09-02 13:21:31 +0200484 amdgpu_ttm_tt_set_user_pages(bo->tbo.ttm,
485 lobj->user_pages);
Christian König2f568db2016-02-23 12:36:59 +0100486 binding_userptr = true;
487 }
488
Christian König662bfa62016-09-01 12:13:18 +0200489 if (p->evictable == lobj)
490 p->evictable = NULL;
491
Christian Königf7da30d2016-09-28 12:03:04 +0200492 r = amdgpu_cs_validate(p, bo);
Chunming Zhou14fd8332016-08-04 13:05:46 +0800493 if (r)
Christian König36409d122015-12-21 20:31:35 +0100494 return r;
Christian König662bfa62016-09-01 12:13:18 +0200495
Christian König2f568db2016-02-23 12:36:59 +0100496 if (binding_userptr) {
Michal Hocko20981052017-05-17 14:23:12 +0200497 kvfree(lobj->user_pages);
Christian König2f568db2016-02-23 12:36:59 +0100498 lobj->user_pages = NULL;
499 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400500 }
501 return 0;
502}
503
Christian König2a7d9bd2015-12-18 20:33:52 +0100504static int amdgpu_cs_parser_bos(struct amdgpu_cs_parser *p,
505 union drm_amdgpu_cs *cs)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400506{
507 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
Christian König2f568db2016-02-23 12:36:59 +0100508 struct amdgpu_bo_list_entry *e;
Christian Königa5b75052015-09-03 16:40:39 +0200509 struct list_head duplicates;
Christian König2f568db2016-02-23 12:36:59 +0100510 unsigned i, tries = 10;
Christian König636ce252015-12-18 21:26:47 +0100511 int r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400512
Christian König2a7d9bd2015-12-18 20:33:52 +0100513 INIT_LIST_HEAD(&p->validated);
514
515 p->bo_list = amdgpu_bo_list_get(fpriv, cs->in.bo_list_handle);
Christian Königb72cf4f2017-09-03 15:22:06 +0200516 if (p->bo_list)
Christian König636ce252015-12-18 21:26:47 +0100517 amdgpu_bo_list_get_list(p->bo_list, &p->validated);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400518
Christian König3c0eea62015-12-11 14:39:05 +0100519 INIT_LIST_HEAD(&duplicates);
Christian König56467eb2015-12-11 15:16:32 +0100520 amdgpu_vm_get_pd_bo(&fpriv->vm, &p->validated, &p->vm_pd);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400521
Christian König758ac172016-05-06 22:14:00 +0200522 if (p->uf_entry.robj)
Christian König91acbeb2015-12-14 16:42:31 +0100523 list_add(&p->uf_entry.tv.head, &p->validated);
524
Christian König2f568db2016-02-23 12:36:59 +0100525 while (1) {
526 struct list_head need_pages;
527 unsigned i;
528
529 r = ttm_eu_reserve_buffers(&p->ticket, &p->validated, true,
530 &duplicates);
Marek Olšákf1037952016-07-30 00:48:39 +0200531 if (unlikely(r != 0)) {
jimqu57d7f9b2016-10-20 14:58:04 +0800532 if (r != -ERESTARTSYS)
533 DRM_ERROR("ttm_eu_reserve_buffers failed.\n");
Christian König2f568db2016-02-23 12:36:59 +0100534 goto error_free_pages;
Marek Olšákf1037952016-07-30 00:48:39 +0200535 }
Christian König2f568db2016-02-23 12:36:59 +0100536
537 /* Without a BO list we don't have userptr BOs */
538 if (!p->bo_list)
539 break;
540
541 INIT_LIST_HEAD(&need_pages);
542 for (i = p->bo_list->first_userptr;
543 i < p->bo_list->num_entries; ++i) {
Christian Königca666a32017-09-05 14:30:05 +0200544 struct amdgpu_bo *bo;
Christian König2f568db2016-02-23 12:36:59 +0100545
546 e = &p->bo_list->array[i];
Christian Königca666a32017-09-05 14:30:05 +0200547 bo = e->robj;
Christian König2f568db2016-02-23 12:36:59 +0100548
Christian Königca666a32017-09-05 14:30:05 +0200549 if (amdgpu_ttm_tt_userptr_invalidated(bo->tbo.ttm,
Christian König2f568db2016-02-23 12:36:59 +0100550 &e->user_invalidated) && e->user_pages) {
551
552 /* We acquired a page array, but somebody
Alex Xie9f69c0f2017-06-20 16:33:02 -0400553 * invalidated it. Free it and try again
Christian König2f568db2016-02-23 12:36:59 +0100554 */
555 release_pages(e->user_pages,
Christian Königca666a32017-09-05 14:30:05 +0200556 bo->tbo.ttm->num_pages,
Christian König2f568db2016-02-23 12:36:59 +0100557 false);
Michal Hocko20981052017-05-17 14:23:12 +0200558 kvfree(e->user_pages);
Christian König2f568db2016-02-23 12:36:59 +0100559 e->user_pages = NULL;
560 }
561
Christian Königca666a32017-09-05 14:30:05 +0200562 if (amdgpu_ttm_tt_userptr_needs_pages(bo->tbo.ttm) &&
Christian König2f568db2016-02-23 12:36:59 +0100563 !e->user_pages) {
564 list_del(&e->tv.head);
565 list_add(&e->tv.head, &need_pages);
566
567 amdgpu_bo_unreserve(e->robj);
568 }
569 }
570
571 if (list_empty(&need_pages))
572 break;
573
574 /* Unreserve everything again. */
575 ttm_eu_backoff_reservation(&p->ticket, &p->validated);
576
Marek Olšákf1037952016-07-30 00:48:39 +0200577 /* We tried too many times, just abort */
Christian König2f568db2016-02-23 12:36:59 +0100578 if (!--tries) {
579 r = -EDEADLK;
Marek Olšákf1037952016-07-30 00:48:39 +0200580 DRM_ERROR("deadlock in %s\n", __func__);
Christian König2f568db2016-02-23 12:36:59 +0100581 goto error_free_pages;
582 }
583
Alex Xieeb0f0372017-06-08 14:53:26 -0400584 /* Fill the page arrays for all userptrs. */
Christian König2f568db2016-02-23 12:36:59 +0100585 list_for_each_entry(e, &need_pages, tv.head) {
586 struct ttm_tt *ttm = e->robj->tbo.ttm;
587
Michal Hocko20981052017-05-17 14:23:12 +0200588 e->user_pages = kvmalloc_array(ttm->num_pages,
589 sizeof(struct page*),
590 GFP_KERNEL | __GFP_ZERO);
Christian König2f568db2016-02-23 12:36:59 +0100591 if (!e->user_pages) {
592 r = -ENOMEM;
Marek Olšákf1037952016-07-30 00:48:39 +0200593 DRM_ERROR("calloc failure in %s\n", __func__);
Christian König2f568db2016-02-23 12:36:59 +0100594 goto error_free_pages;
595 }
596
597 r = amdgpu_ttm_tt_get_user_pages(ttm, e->user_pages);
598 if (r) {
Marek Olšákf1037952016-07-30 00:48:39 +0200599 DRM_ERROR("amdgpu_ttm_tt_get_user_pages failed.\n");
Michal Hocko20981052017-05-17 14:23:12 +0200600 kvfree(e->user_pages);
Christian König2f568db2016-02-23 12:36:59 +0100601 e->user_pages = NULL;
602 goto error_free_pages;
603 }
604 }
605
606 /* And try again. */
607 list_splice(&need_pages, &p->validated);
608 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400609
John Brooks00f06b22017-06-27 22:33:18 -0400610 amdgpu_cs_get_threshold_for_moves(p->adev, &p->bytes_moved_threshold,
611 &p->bytes_moved_vis_threshold);
Christian Königf69f90a12015-12-21 19:47:42 +0100612 p->bytes_moved = 0;
John Brooks00f06b22017-06-27 22:33:18 -0400613 p->bytes_moved_vis = 0;
Christian König662bfa62016-09-01 12:13:18 +0200614 p->evictable = list_last_entry(&p->validated,
615 struct amdgpu_bo_list_entry,
616 tv.head);
Christian Königf69f90a12015-12-21 19:47:42 +0100617
Christian Königf7da30d2016-09-28 12:03:04 +0200618 r = amdgpu_vm_validate_pt_bos(p->adev, &fpriv->vm,
619 amdgpu_cs_validate, p);
620 if (r) {
621 DRM_ERROR("amdgpu_vm_validate_pt_bos() failed.\n");
622 goto error_validate;
623 }
624
Christian Königf69f90a12015-12-21 19:47:42 +0100625 r = amdgpu_cs_list_validate(p, &duplicates);
Marek Olšákf1037952016-07-30 00:48:39 +0200626 if (r) {
627 DRM_ERROR("amdgpu_cs_list_validate(duplicates) failed.\n");
Christian Königa5b75052015-09-03 16:40:39 +0200628 goto error_validate;
Marek Olšákf1037952016-07-30 00:48:39 +0200629 }
Christian Königa5b75052015-09-03 16:40:39 +0200630
Christian Königf69f90a12015-12-21 19:47:42 +0100631 r = amdgpu_cs_list_validate(p, &p->validated);
Marek Olšákf1037952016-07-30 00:48:39 +0200632 if (r) {
633 DRM_ERROR("amdgpu_cs_list_validate(validated) failed.\n");
Christian Königa8480302016-01-05 16:03:39 +0100634 goto error_validate;
Marek Olšákf1037952016-07-30 00:48:39 +0200635 }
Christian Königa8480302016-01-05 16:03:39 +0100636
John Brooks00f06b22017-06-27 22:33:18 -0400637 amdgpu_cs_report_moved_bytes(p->adev, p->bytes_moved,
638 p->bytes_moved_vis);
Christian Königa8480302016-01-05 16:03:39 +0100639 if (p->bo_list) {
Christian Königd88bf582016-05-06 17:50:03 +0200640 struct amdgpu_bo *gds = p->bo_list->gds_obj;
641 struct amdgpu_bo *gws = p->bo_list->gws_obj;
642 struct amdgpu_bo *oa = p->bo_list->oa_obj;
Christian Königa8480302016-01-05 16:03:39 +0100643 struct amdgpu_vm *vm = &fpriv->vm;
644 unsigned i;
645
646 for (i = 0; i < p->bo_list->num_entries; i++) {
647 struct amdgpu_bo *bo = p->bo_list->array[i].robj;
648
649 p->bo_list->array[i].bo_va = amdgpu_vm_bo_find(vm, bo);
650 }
Christian Königd88bf582016-05-06 17:50:03 +0200651
652 if (gds) {
653 p->job->gds_base = amdgpu_bo_gpu_offset(gds);
654 p->job->gds_size = amdgpu_bo_size(gds);
655 }
656 if (gws) {
657 p->job->gws_base = amdgpu_bo_gpu_offset(gws);
658 p->job->gws_size = amdgpu_bo_size(gws);
659 }
660 if (oa) {
661 p->job->oa_base = amdgpu_bo_gpu_offset(oa);
662 p->job->oa_size = amdgpu_bo_size(oa);
663 }
Christian Königa8480302016-01-05 16:03:39 +0100664 }
Christian Königa5b75052015-09-03 16:40:39 +0200665
Christian Königc855e252016-09-05 17:00:57 +0200666 if (!r && p->uf_entry.robj) {
667 struct amdgpu_bo *uf = p->uf_entry.robj;
668
Christian Königbb990bb2016-09-09 16:32:33 +0200669 r = amdgpu_ttm_bind(&uf->tbo, &uf->tbo.mem);
Christian Königc855e252016-09-05 17:00:57 +0200670 p->job->uf_addr += amdgpu_bo_gpu_offset(uf);
671 }
Christian Königb5f5acb2016-06-29 13:26:41 +0200672
Christian Königa5b75052015-09-03 16:40:39 +0200673error_validate:
Christian Königb6369222017-08-03 11:44:01 -0400674 if (r)
Christian Königa5b75052015-09-03 16:40:39 +0200675 ttm_eu_backoff_reservation(&p->ticket, &p->validated);
676
Christian König2f568db2016-02-23 12:36:59 +0100677error_free_pages:
678
Christian König2f568db2016-02-23 12:36:59 +0100679 if (p->bo_list) {
680 for (i = p->bo_list->first_userptr;
681 i < p->bo_list->num_entries; ++i) {
682 e = &p->bo_list->array[i];
683
684 if (!e->user_pages)
685 continue;
686
687 release_pages(e->user_pages,
688 e->robj->tbo.ttm->num_pages,
689 false);
Michal Hocko20981052017-05-17 14:23:12 +0200690 kvfree(e->user_pages);
Christian König2f568db2016-02-23 12:36:59 +0100691 }
692 }
693
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400694 return r;
695}
696
697static int amdgpu_cs_sync_rings(struct amdgpu_cs_parser *p)
698{
699 struct amdgpu_bo_list_entry *e;
700 int r;
701
702 list_for_each_entry(e, &p->validated, tv.head) {
703 struct reservation_object *resv = e->robj->tbo.resv;
Christian Könige86f9ce2016-02-08 12:13:05 +0100704 r = amdgpu_sync_resv(p->adev, &p->job->sync, resv, p->filp);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400705
706 if (r)
707 return r;
708 }
709 return 0;
710}
711
Christian König984810f2015-11-14 21:05:35 +0100712/**
713 * cs_parser_fini() - clean parser states
714 * @parser: parser structure holding parsing context.
715 * @error: error number
716 *
717 * If error is set than unvalidate buffer, otherwise just free memory
718 * used by parsing context.
719 **/
Christian Königb6369222017-08-03 11:44:01 -0400720static void amdgpu_cs_parser_fini(struct amdgpu_cs_parser *parser, int error,
721 bool backoff)
Chunming Zhou049fc522015-07-21 14:36:51 +0800722{
Christian König984810f2015-11-14 21:05:35 +0100723 unsigned i;
724
Christian Königb6369222017-08-03 11:44:01 -0400725 if (!error)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400726 ttm_eu_fence_buffer_objects(&parser->ticket,
Christian König984810f2015-11-14 21:05:35 +0100727 &parser->validated,
728 parser->fence);
Christian Königb6369222017-08-03 11:44:01 -0400729 else if (backoff)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400730 ttm_eu_backoff_reservation(&parser->ticket,
731 &parser->validated);
Dave Airlie660e8552017-03-13 22:18:15 +0000732
733 for (i = 0; i < parser->num_post_dep_syncobjs; i++)
734 drm_syncobj_put(parser->post_dep_syncobjs[i]);
735 kfree(parser->post_dep_syncobjs);
736
Chris Wilsonf54d1862016-10-25 13:00:45 +0100737 dma_fence_put(parser->fence);
Christian König7e52a812015-11-04 15:44:39 +0100738
Christian König3cb485f2015-05-11 15:34:59 +0200739 if (parser->ctx)
740 amdgpu_ctx_put(parser->ctx);
Chunming Zhoua3348bb2015-08-18 16:25:46 +0800741 if (parser->bo_list)
742 amdgpu_bo_list_put(parser->bo_list);
743
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400744 for (i = 0; i < parser->nchunks; i++)
Michal Hocko20981052017-05-17 14:23:12 +0200745 kvfree(parser->chunks[i].kdata);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400746 kfree(parser->chunks);
Christian König50838c82016-02-03 13:44:52 +0100747 if (parser->job)
748 amdgpu_job_free(parser->job);
Christian König91acbeb2015-12-14 16:42:31 +0100749 amdgpu_bo_unref(&parser->uf_entry.robj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400750}
751
Junwei Zhangb85891b2017-01-16 13:59:01 +0800752static int amdgpu_bo_vm_update_pte(struct amdgpu_cs_parser *p)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400753{
754 struct amdgpu_device *adev = p->adev;
Junwei Zhangb85891b2017-01-16 13:59:01 +0800755 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
756 struct amdgpu_vm *vm = &fpriv->vm;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400757 struct amdgpu_bo_va *bo_va;
758 struct amdgpu_bo *bo;
759 int i, r;
760
Christian König194d2162016-10-12 15:13:52 +0200761 r = amdgpu_vm_update_directories(adev, vm);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400762 if (r)
763 return r;
764
Christian Königa24960f2016-10-12 13:20:52 +0200765 r = amdgpu_sync_fence(adev, &p->job->sync, vm->last_dir_update);
Bas Nieuwenhuizen05906de2015-08-14 20:08:40 +0200766 if (r)
767 return r;
768
Nicolai Hähnlef3467812017-03-23 19:36:31 +0100769 r = amdgpu_vm_clear_freed(adev, vm, NULL);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400770 if (r)
771 return r;
772
Junwei Zhangb85891b2017-01-16 13:59:01 +0800773 r = amdgpu_vm_bo_update(adev, fpriv->prt_va, false);
774 if (r)
775 return r;
776
777 r = amdgpu_sync_fence(adev, &p->job->sync,
778 fpriv->prt_va->last_pt_update);
779 if (r)
780 return r;
781
Monk Liu24936642017-01-09 15:54:32 +0800782 if (amdgpu_sriov_vf(adev)) {
783 struct dma_fence *f;
Christian König0f4b3c62017-07-31 15:32:40 +0200784
785 bo_va = fpriv->csa_va;
Monk Liu24936642017-01-09 15:54:32 +0800786 BUG_ON(!bo_va);
787 r = amdgpu_vm_bo_update(adev, bo_va, false);
788 if (r)
789 return r;
790
791 f = bo_va->last_pt_update;
792 r = amdgpu_sync_fence(adev, &p->job->sync, f);
793 if (r)
794 return r;
795 }
796
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400797 if (p->bo_list) {
798 for (i = 0; i < p->bo_list->num_entries; i++) {
Chris Wilsonf54d1862016-10-25 13:00:45 +0100799 struct dma_fence *f;
Christian König91e1a522015-07-06 22:06:40 +0200800
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400801 /* ignore duplicates */
802 bo = p->bo_list->array[i].robj;
803 if (!bo)
804 continue;
805
806 bo_va = p->bo_list->array[i].bo_va;
807 if (bo_va == NULL)
808 continue;
809
Christian König99e124f2016-08-16 14:43:17 +0200810 r = amdgpu_vm_bo_update(adev, bo_va, false);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400811 if (r)
812 return r;
813
Chunming Zhoubb1e38a42015-08-03 18:19:38 +0800814 f = bo_va->last_pt_update;
Christian Könige86f9ce2016-02-08 12:13:05 +0100815 r = amdgpu_sync_fence(adev, &p->job->sync, f);
Christian König91e1a522015-07-06 22:06:40 +0200816 if (r)
817 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400818 }
Christian Königb495bd32015-09-10 14:00:35 +0200819
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400820 }
821
Christian König73fb16e2017-08-16 11:13:48 +0200822 r = amdgpu_vm_handle_moved(adev, vm, &p->job->sync);
Christian Königb495bd32015-09-10 14:00:35 +0200823
824 if (amdgpu_vm_debug && p->bo_list) {
825 /* Invalidate all BOs to test for userspace bugs */
826 for (i = 0; i < p->bo_list->num_entries; i++) {
827 /* ignore duplicates */
828 bo = p->bo_list->array[i].robj;
829 if (!bo)
830 continue;
831
Christian König3f3333f2017-08-03 14:02:13 +0200832 amdgpu_vm_bo_invalidate(adev, bo, false);
Christian Königb495bd32015-09-10 14:00:35 +0200833 }
834 }
835
836 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400837}
838
839static int amdgpu_cs_ib_vm_chunk(struct amdgpu_device *adev,
Christian Königb07c60c2016-01-31 12:29:04 +0100840 struct amdgpu_cs_parser *p)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400841{
Christian Königb07c60c2016-01-31 12:29:04 +0100842 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400843 struct amdgpu_vm *vm = &fpriv->vm;
Christian Königb07c60c2016-01-31 12:29:04 +0100844 struct amdgpu_ring *ring = p->job->ring;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400845 int i, r;
846
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400847 /* Only for UVD/VCE VM emulation */
Christian Königb07c60c2016-01-31 12:29:04 +0100848 if (ring->funcs->parse_cs) {
849 for (i = 0; i < p->job->num_ibs; i++) {
850 r = amdgpu_ring_parse_cs(ring, p, i);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400851 if (r)
852 return r;
853 }
Christian König45088ef2016-10-05 16:49:19 +0200854 }
855
856 if (p->job->vm) {
Christian König3f3333f2017-08-03 14:02:13 +0200857 p->job->vm_pd_addr = amdgpu_bo_gpu_offset(vm->root.base.bo);
Christian König9a795882016-06-22 14:25:55 +0200858
Junwei Zhangb85891b2017-01-16 13:59:01 +0800859 r = amdgpu_bo_vm_update_pte(p);
Christian König9a795882016-06-22 14:25:55 +0200860 if (r)
861 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400862 }
863
Christian König9a795882016-06-22 14:25:55 +0200864 return amdgpu_cs_sync_rings(p);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400865}
866
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400867static int amdgpu_cs_ib_fill(struct amdgpu_device *adev,
868 struct amdgpu_cs_parser *parser)
869{
870 struct amdgpu_fpriv *fpriv = parser->filp->driver_priv;
871 struct amdgpu_vm *vm = &fpriv->vm;
872 int i, j;
Monk Liu9a1b3af2017-03-08 15:51:13 +0800873 int r, ce_preempt = 0, de_preempt = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400874
Christian König50838c82016-02-03 13:44:52 +0100875 for (i = 0, j = 0; i < parser->nchunks && j < parser->job->num_ibs; i++) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400876 struct amdgpu_cs_chunk *chunk;
877 struct amdgpu_ib *ib;
878 struct drm_amdgpu_cs_chunk_ib *chunk_ib;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400879 struct amdgpu_ring *ring;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400880
881 chunk = &parser->chunks[i];
Christian König50838c82016-02-03 13:44:52 +0100882 ib = &parser->job->ibs[j];
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400883 chunk_ib = (struct drm_amdgpu_cs_chunk_ib *)chunk->kdata;
884
885 if (chunk->chunk_id != AMDGPU_CHUNK_ID_IB)
886 continue;
887
Monk Liu65333e42017-03-27 15:14:53 +0800888 if (chunk_ib->ip_type == AMDGPU_HW_IP_GFX && amdgpu_sriov_vf(adev)) {
Harry Wentlande51a3222017-03-28 11:29:53 -0400889 if (chunk_ib->flags & AMDGPU_IB_FLAG_PREEMPT) {
Monk Liu65333e42017-03-27 15:14:53 +0800890 if (chunk_ib->flags & AMDGPU_IB_FLAG_CE)
891 ce_preempt++;
892 else
893 de_preempt++;
Harry Wentlande51a3222017-03-28 11:29:53 -0400894 }
Monk Liu9a1b3af2017-03-08 15:51:13 +0800895
Monk Liu65333e42017-03-27 15:14:53 +0800896 /* each GFX command submit allows 0 or 1 IB preemptible for CE & DE */
897 if (ce_preempt > 1 || de_preempt > 1)
Monk Liue9d672b2017-03-15 12:18:57 +0800898 return -EINVAL;
Monk Liu65333e42017-03-27 15:14:53 +0800899 }
Monk Liu9a1b3af2017-03-08 15:51:13 +0800900
Andres Rodriguezeffd9242017-02-16 00:47:32 -0500901 r = amdgpu_queue_mgr_map(adev, &parser->ctx->queue_mgr, chunk_ib->ip_type,
902 chunk_ib->ip_instance, chunk_ib->ring, &ring);
Marek Olšák3ccec532015-06-02 17:44:49 +0200903 if (r)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400904 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400905
Monk Liu2a9ceb82017-03-28 11:00:03 +0800906 if (chunk_ib->flags & AMDGPU_IB_FLAG_PREAMBLE) {
Monk Liu753ad492016-08-26 13:28:28 +0800907 parser->job->preamble_status |= AMDGPU_PREAMBLE_IB_PRESENT;
908 if (!parser->ctx->preamble_presented) {
909 parser->job->preamble_status |= AMDGPU_PREAMBLE_IB_PRESENT_FIRST;
910 parser->ctx->preamble_presented = true;
911 }
912 }
913
Christian Königb07c60c2016-01-31 12:29:04 +0100914 if (parser->job->ring && parser->job->ring != ring)
915 return -EINVAL;
916
917 parser->job->ring = ring;
918
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400919 if (ring->funcs->parse_cs) {
Christian König4802ce12015-06-10 17:20:11 +0200920 struct amdgpu_bo_va_mapping *m;
Marek Olšák3ccec532015-06-02 17:44:49 +0200921 struct amdgpu_bo *aobj = NULL;
Christian König4802ce12015-06-10 17:20:11 +0200922 uint64_t offset;
923 uint8_t *kptr;
Marek Olšák3ccec532015-06-02 17:44:49 +0200924
Christian König4802ce12015-06-10 17:20:11 +0200925 m = amdgpu_cs_find_mapping(parser, chunk_ib->va_start,
926 &aobj);
Marek Olšák3ccec532015-06-02 17:44:49 +0200927 if (!aobj) {
928 DRM_ERROR("IB va_start is invalid\n");
929 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400930 }
931
Christian König4802ce12015-06-10 17:20:11 +0200932 if ((chunk_ib->va_start + chunk_ib->ib_bytes) >
Christian Königa9f87f62017-03-30 14:03:59 +0200933 (m->last + 1) * AMDGPU_GPU_PAGE_SIZE) {
Christian König4802ce12015-06-10 17:20:11 +0200934 DRM_ERROR("IB va_start+ib_bytes is invalid\n");
935 return -EINVAL;
936 }
937
Marek Olšák3ccec532015-06-02 17:44:49 +0200938 /* the IB should be reserved at this point */
Christian König4802ce12015-06-10 17:20:11 +0200939 r = amdgpu_bo_kmap(aobj, (void **)&kptr);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400940 if (r) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400941 return r;
942 }
943
Christian Königa9f87f62017-03-30 14:03:59 +0200944 offset = m->start * AMDGPU_GPU_PAGE_SIZE;
Christian König4802ce12015-06-10 17:20:11 +0200945 kptr += chunk_ib->va_start - offset;
946
Christian König45088ef2016-10-05 16:49:19 +0200947 r = amdgpu_ib_get(adev, vm, chunk_ib->ib_bytes, ib);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400948 if (r) {
949 DRM_ERROR("Failed to get ib !\n");
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400950 return r;
951 }
952
953 memcpy(ib->ptr, kptr, chunk_ib->ib_bytes);
954 amdgpu_bo_kunmap(aobj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400955 } else {
Christian Königb07c60c2016-01-31 12:29:04 +0100956 r = amdgpu_ib_get(adev, vm, 0, ib);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400957 if (r) {
958 DRM_ERROR("Failed to get ib !\n");
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400959 return r;
960 }
961
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400962 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400963
Christian König45088ef2016-10-05 16:49:19 +0200964 ib->gpu_addr = chunk_ib->va_start;
Marek Olšák3ccec532015-06-02 17:44:49 +0200965 ib->length_dw = chunk_ib->ib_bytes / 4;
Jammy Zhoude807f82015-05-11 23:41:41 +0800966 ib->flags = chunk_ib->flags;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400967 j++;
968 }
969
Christian König758ac172016-05-06 22:14:00 +0200970 /* UVD & VCE fw doesn't support user fences */
Christian Königb5f5acb2016-06-29 13:26:41 +0200971 if (parser->job->uf_addr && (
Christian König21cd9422016-10-05 15:36:39 +0200972 parser->job->ring->funcs->type == AMDGPU_RING_TYPE_UVD ||
973 parser->job->ring->funcs->type == AMDGPU_RING_TYPE_VCE))
Christian König758ac172016-05-06 22:14:00 +0200974 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400975
976 return 0;
977}
978
Dave Airlie6f0308e2017-03-09 03:45:52 +0000979static int amdgpu_cs_process_fence_dep(struct amdgpu_cs_parser *p,
980 struct amdgpu_cs_chunk *chunk)
981{
982 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
983 unsigned num_deps;
984 int i, r;
985 struct drm_amdgpu_cs_chunk_dep *deps;
986
987 deps = (struct drm_amdgpu_cs_chunk_dep *)chunk->kdata;
988 num_deps = chunk->length_dw * 4 /
989 sizeof(struct drm_amdgpu_cs_chunk_dep);
990
991 for (i = 0; i < num_deps; ++i) {
992 struct amdgpu_ring *ring;
993 struct amdgpu_ctx *ctx;
994 struct dma_fence *fence;
995
996 ctx = amdgpu_ctx_get(fpriv, deps[i].ctx_id);
997 if (ctx == NULL)
998 return -EINVAL;
999
1000 r = amdgpu_queue_mgr_map(p->adev, &ctx->queue_mgr,
1001 deps[i].ip_type,
1002 deps[i].ip_instance,
1003 deps[i].ring, &ring);
1004 if (r) {
1005 amdgpu_ctx_put(ctx);
1006 return r;
1007 }
1008
1009 fence = amdgpu_ctx_get_fence(ctx, ring,
1010 deps[i].handle);
1011 if (IS_ERR(fence)) {
1012 r = PTR_ERR(fence);
1013 amdgpu_ctx_put(ctx);
1014 return r;
1015 } else if (fence) {
1016 r = amdgpu_sync_fence(p->adev, &p->job->sync,
1017 fence);
1018 dma_fence_put(fence);
1019 amdgpu_ctx_put(ctx);
1020 if (r)
1021 return r;
1022 }
1023 }
1024 return 0;
1025}
1026
Dave Airlie660e8552017-03-13 22:18:15 +00001027static int amdgpu_syncobj_lookup_and_add_to_sync(struct amdgpu_cs_parser *p,
1028 uint32_t handle)
1029{
1030 int r;
1031 struct dma_fence *fence;
Jason Ekstrandafaf5922017-08-25 10:52:19 -07001032 r = drm_syncobj_find_fence(p->filp, handle, &fence);
Dave Airlie660e8552017-03-13 22:18:15 +00001033 if (r)
1034 return r;
1035
1036 r = amdgpu_sync_fence(p->adev, &p->job->sync, fence);
1037 dma_fence_put(fence);
1038
1039 return r;
1040}
1041
1042static int amdgpu_cs_process_syncobj_in_dep(struct amdgpu_cs_parser *p,
1043 struct amdgpu_cs_chunk *chunk)
1044{
1045 unsigned num_deps;
1046 int i, r;
1047 struct drm_amdgpu_cs_chunk_sem *deps;
1048
1049 deps = (struct drm_amdgpu_cs_chunk_sem *)chunk->kdata;
1050 num_deps = chunk->length_dw * 4 /
1051 sizeof(struct drm_amdgpu_cs_chunk_sem);
1052
1053 for (i = 0; i < num_deps; ++i) {
1054 r = amdgpu_syncobj_lookup_and_add_to_sync(p, deps[i].handle);
1055 if (r)
1056 return r;
1057 }
1058 return 0;
1059}
1060
1061static int amdgpu_cs_process_syncobj_out_dep(struct amdgpu_cs_parser *p,
1062 struct amdgpu_cs_chunk *chunk)
1063{
1064 unsigned num_deps;
1065 int i;
1066 struct drm_amdgpu_cs_chunk_sem *deps;
1067 deps = (struct drm_amdgpu_cs_chunk_sem *)chunk->kdata;
1068 num_deps = chunk->length_dw * 4 /
1069 sizeof(struct drm_amdgpu_cs_chunk_sem);
1070
1071 p->post_dep_syncobjs = kmalloc_array(num_deps,
1072 sizeof(struct drm_syncobj *),
1073 GFP_KERNEL);
1074 p->num_post_dep_syncobjs = 0;
1075
Christophe JAILLET06f10a52017-08-23 07:52:36 +02001076 if (!p->post_dep_syncobjs)
1077 return -ENOMEM;
1078
Dave Airlie660e8552017-03-13 22:18:15 +00001079 for (i = 0; i < num_deps; ++i) {
1080 p->post_dep_syncobjs[i] = drm_syncobj_find(p->filp, deps[i].handle);
1081 if (!p->post_dep_syncobjs[i])
1082 return -EINVAL;
1083 p->num_post_dep_syncobjs++;
1084 }
1085 return 0;
1086}
1087
Christian König2b48d322015-06-19 17:31:29 +02001088static int amdgpu_cs_dependencies(struct amdgpu_device *adev,
1089 struct amdgpu_cs_parser *p)
1090{
Dave Airlie6f0308e2017-03-09 03:45:52 +00001091 int i, r;
Christian König2b48d322015-06-19 17:31:29 +02001092
Christian König2b48d322015-06-19 17:31:29 +02001093 for (i = 0; i < p->nchunks; ++i) {
Christian König2b48d322015-06-19 17:31:29 +02001094 struct amdgpu_cs_chunk *chunk;
Christian König2b48d322015-06-19 17:31:29 +02001095
1096 chunk = &p->chunks[i];
1097
Dave Airlie6f0308e2017-03-09 03:45:52 +00001098 if (chunk->chunk_id == AMDGPU_CHUNK_ID_DEPENDENCIES) {
1099 r = amdgpu_cs_process_fence_dep(p, chunk);
1100 if (r)
Andres Rodriguezeffd9242017-02-16 00:47:32 -05001101 return r;
Dave Airlie660e8552017-03-13 22:18:15 +00001102 } else if (chunk->chunk_id == AMDGPU_CHUNK_ID_SYNCOBJ_IN) {
1103 r = amdgpu_cs_process_syncobj_in_dep(p, chunk);
1104 if (r)
1105 return r;
1106 } else if (chunk->chunk_id == AMDGPU_CHUNK_ID_SYNCOBJ_OUT) {
1107 r = amdgpu_cs_process_syncobj_out_dep(p, chunk);
1108 if (r)
1109 return r;
Christian König2b48d322015-06-19 17:31:29 +02001110 }
1111 }
1112
1113 return 0;
1114}
1115
Dave Airlie660e8552017-03-13 22:18:15 +00001116static void amdgpu_cs_post_dependencies(struct amdgpu_cs_parser *p)
1117{
1118 int i;
1119
Chris Wilson00fc2c22017-07-05 21:12:44 +01001120 for (i = 0; i < p->num_post_dep_syncobjs; ++i)
1121 drm_syncobj_replace_fence(p->post_dep_syncobjs[i], p->fence);
Dave Airlie660e8552017-03-13 22:18:15 +00001122}
1123
Christian Königcd75dc62016-01-31 11:30:55 +01001124static int amdgpu_cs_submit(struct amdgpu_cs_parser *p,
1125 union drm_amdgpu_cs *cs)
1126{
Christian Königb07c60c2016-01-31 12:29:04 +01001127 struct amdgpu_ring *ring = p->job->ring;
Christian König92f25092016-05-06 15:57:42 +02001128 struct amd_sched_entity *entity = &p->ctx->rings[ring->idx].entity;
Christian Königcd75dc62016-01-31 11:30:55 +01001129 struct amdgpu_job *job;
Monk Liue6869412016-03-07 12:49:55 +08001130 int r;
Christian Königcd75dc62016-01-31 11:30:55 +01001131
Christian König50838c82016-02-03 13:44:52 +01001132 job = p->job;
1133 p->job = NULL;
Christian Königcd75dc62016-01-31 11:30:55 +01001134
Christian König595a9cd2016-06-30 10:52:03 +02001135 r = amd_sched_job_init(&job->base, &ring->sched, entity, p->filp);
Monk Liue6869412016-03-07 12:49:55 +08001136 if (r) {
Christian Königd71518b2016-02-01 12:20:25 +01001137 amdgpu_job_free(job);
Monk Liue6869412016-03-07 12:49:55 +08001138 return r;
Christian Königcd75dc62016-01-31 11:30:55 +01001139 }
1140
Monk Liue6869412016-03-07 12:49:55 +08001141 job->owner = p->filp;
Monk Liu3aecd242016-08-25 15:40:48 +08001142 job->fence_ctx = entity->fence_context;
Chris Wilsonf54d1862016-10-25 13:00:45 +01001143 p->fence = dma_fence_get(&job->base.s_fence->finished);
Dave Airlie660e8552017-03-13 22:18:15 +00001144
1145 amdgpu_cs_post_dependencies(p);
1146
Christian König595a9cd2016-06-30 10:52:03 +02001147 cs->out.handle = amdgpu_ctx_add_fence(p->ctx, ring, p->fence);
Christian König758ac172016-05-06 22:14:00 +02001148 job->uf_sequence = cs->out.handle;
Christian Königa5fb4ec2016-06-29 15:10:31 +02001149 amdgpu_job_free_resources(job);
Christian Königcd75dc62016-01-31 11:30:55 +01001150
1151 trace_amdgpu_cs_ioctl(job);
1152 amd_sched_entity_push_job(&job->base);
Christian Königcd75dc62016-01-31 11:30:55 +01001153 return 0;
1154}
1155
Chunming Zhou049fc522015-07-21 14:36:51 +08001156int amdgpu_cs_ioctl(struct drm_device *dev, void *data, struct drm_file *filp)
1157{
1158 struct amdgpu_device *adev = dev->dev_private;
Chunming Zhouf1892132017-05-15 16:48:27 +08001159 struct amdgpu_fpriv *fpriv = filp->driver_priv;
Chunming Zhou049fc522015-07-21 14:36:51 +08001160 union drm_amdgpu_cs *cs = data;
Christian König7e52a812015-11-04 15:44:39 +01001161 struct amdgpu_cs_parser parser = {};
Christian König26a69802015-08-18 21:09:33 +02001162 bool reserved_buffers = false;
1163 int i, r;
Chunming Zhou049fc522015-07-21 14:36:51 +08001164
Christian König0c418f12015-09-01 15:13:53 +02001165 if (!adev->accel_working)
Chunming Zhou049fc522015-07-21 14:36:51 +08001166 return -EBUSY;
Chunming Zhouf1892132017-05-15 16:48:27 +08001167 if (amdgpu_kms_vram_lost(adev, fpriv))
1168 return -ENODEV;
Chunming Zhou049fc522015-07-21 14:36:51 +08001169
Christian König7e52a812015-11-04 15:44:39 +01001170 parser.adev = adev;
1171 parser.filp = filp;
1172
1173 r = amdgpu_cs_parser_init(&parser, data);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001174 if (r) {
Chunming Zhou049fc522015-07-21 14:36:51 +08001175 DRM_ERROR("Failed to initialize parser !\n");
Huang Ruia414cd72016-10-30 23:05:47 +08001176 goto out;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001177 }
Huang Ruia414cd72016-10-30 23:05:47 +08001178
Christian König2a7d9bd2015-12-18 20:33:52 +01001179 r = amdgpu_cs_parser_bos(&parser, data);
Huang Ruia414cd72016-10-30 23:05:47 +08001180 if (r) {
1181 if (r == -ENOMEM)
1182 DRM_ERROR("Not enough memory for command submission!\n");
1183 else if (r != -ERESTARTSYS)
1184 DRM_ERROR("Failed to process the buffer list %d!\n", r);
1185 goto out;
Christian König26a69802015-08-18 21:09:33 +02001186 }
1187
Huang Ruia414cd72016-10-30 23:05:47 +08001188 reserved_buffers = true;
1189 r = amdgpu_cs_ib_fill(adev, &parser);
Christian König26a69802015-08-18 21:09:33 +02001190 if (r)
1191 goto out;
1192
Huang Ruia414cd72016-10-30 23:05:47 +08001193 r = amdgpu_cs_dependencies(adev, &parser);
1194 if (r) {
1195 DRM_ERROR("Failed in the dependencies handling %d!\n", r);
1196 goto out;
1197 }
1198
Christian König50838c82016-02-03 13:44:52 +01001199 for (i = 0; i < parser.job->num_ibs; i++)
Christian König7e52a812015-11-04 15:44:39 +01001200 trace_amdgpu_cs(&parser, i);
Christian König26a69802015-08-18 21:09:33 +02001201
Christian König7e52a812015-11-04 15:44:39 +01001202 r = amdgpu_cs_ib_vm_chunk(adev, &parser);
Chunming Zhou4fe63112015-08-18 16:12:15 +08001203 if (r)
1204 goto out;
1205
Christian König4acabfe2016-01-31 11:32:04 +01001206 r = amdgpu_cs_submit(&parser, cs);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001207
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001208out:
Christian König7e52a812015-11-04 15:44:39 +01001209 amdgpu_cs_parser_fini(&parser, r, reserved_buffers);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001210 return r;
1211}
1212
1213/**
1214 * amdgpu_cs_wait_ioctl - wait for a command submission to finish
1215 *
1216 * @dev: drm device
1217 * @data: data from userspace
1218 * @filp: file private
1219 *
1220 * Wait for the command submission identified by handle to finish.
1221 */
1222int amdgpu_cs_wait_ioctl(struct drm_device *dev, void *data,
1223 struct drm_file *filp)
1224{
1225 union drm_amdgpu_wait_cs *wait = data;
1226 struct amdgpu_device *adev = dev->dev_private;
Chunming Zhouf1892132017-05-15 16:48:27 +08001227 struct amdgpu_fpriv *fpriv = filp->driver_priv;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001228 unsigned long timeout = amdgpu_gem_timeout(wait->in.timeout);
Christian König03507c42015-06-19 17:00:19 +02001229 struct amdgpu_ring *ring = NULL;
Jammy Zhou66b3cf22015-05-08 17:29:40 +08001230 struct amdgpu_ctx *ctx;
Chris Wilsonf54d1862016-10-25 13:00:45 +01001231 struct dma_fence *fence;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001232 long r;
1233
Chunming Zhouf1892132017-05-15 16:48:27 +08001234 if (amdgpu_kms_vram_lost(adev, fpriv))
1235 return -ENODEV;
Christian König21c16bf2015-07-07 17:24:49 +02001236
Jammy Zhou66b3cf22015-05-08 17:29:40 +08001237 ctx = amdgpu_ctx_get(filp->driver_priv, wait->in.ctx_id);
1238 if (ctx == NULL)
1239 return -EINVAL;
Chunming Zhou4b559c92015-07-21 15:53:04 +08001240
Andres Rodriguezeffd9242017-02-16 00:47:32 -05001241 r = amdgpu_queue_mgr_map(adev, &ctx->queue_mgr,
1242 wait->in.ip_type, wait->in.ip_instance,
1243 wait->in.ring, &ring);
1244 if (r) {
1245 amdgpu_ctx_put(ctx);
1246 return r;
1247 }
1248
Chunming Zhou4b559c92015-07-21 15:53:04 +08001249 fence = amdgpu_ctx_get_fence(ctx, ring, wait->in.handle);
1250 if (IS_ERR(fence))
1251 r = PTR_ERR(fence);
1252 else if (fence) {
Chris Wilsonf54d1862016-10-25 13:00:45 +01001253 r = dma_fence_wait_timeout(fence, true, timeout);
1254 dma_fence_put(fence);
Chunming Zhou4b559c92015-07-21 15:53:04 +08001255 } else
Christian König21c16bf2015-07-07 17:24:49 +02001256 r = 1;
1257
Jammy Zhou66b3cf22015-05-08 17:29:40 +08001258 amdgpu_ctx_put(ctx);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001259 if (r < 0)
1260 return r;
1261
1262 memset(wait, 0, sizeof(*wait));
1263 wait->out.status = (r == 0);
1264
1265 return 0;
1266}
1267
1268/**
Junwei Zhangeef18a82016-11-04 16:16:10 -04001269 * amdgpu_cs_get_fence - helper to get fence from drm_amdgpu_fence
1270 *
1271 * @adev: amdgpu device
1272 * @filp: file private
1273 * @user: drm_amdgpu_fence copied from user space
1274 */
1275static struct dma_fence *amdgpu_cs_get_fence(struct amdgpu_device *adev,
1276 struct drm_file *filp,
1277 struct drm_amdgpu_fence *user)
1278{
1279 struct amdgpu_ring *ring;
1280 struct amdgpu_ctx *ctx;
1281 struct dma_fence *fence;
1282 int r;
1283
Junwei Zhangeef18a82016-11-04 16:16:10 -04001284 ctx = amdgpu_ctx_get(filp->driver_priv, user->ctx_id);
1285 if (ctx == NULL)
1286 return ERR_PTR(-EINVAL);
1287
Andres Rodriguezeffd9242017-02-16 00:47:32 -05001288 r = amdgpu_queue_mgr_map(adev, &ctx->queue_mgr, user->ip_type,
1289 user->ip_instance, user->ring, &ring);
1290 if (r) {
1291 amdgpu_ctx_put(ctx);
1292 return ERR_PTR(r);
1293 }
1294
Junwei Zhangeef18a82016-11-04 16:16:10 -04001295 fence = amdgpu_ctx_get_fence(ctx, ring, user->seq_no);
1296 amdgpu_ctx_put(ctx);
1297
1298 return fence;
1299}
1300
1301/**
1302 * amdgpu_cs_wait_all_fence - wait on all fences to signal
1303 *
1304 * @adev: amdgpu device
1305 * @filp: file private
1306 * @wait: wait parameters
1307 * @fences: array of drm_amdgpu_fence
1308 */
1309static int amdgpu_cs_wait_all_fences(struct amdgpu_device *adev,
1310 struct drm_file *filp,
1311 union drm_amdgpu_wait_fences *wait,
1312 struct drm_amdgpu_fence *fences)
1313{
1314 uint32_t fence_count = wait->in.fence_count;
1315 unsigned int i;
1316 long r = 1;
1317
1318 for (i = 0; i < fence_count; i++) {
1319 struct dma_fence *fence;
1320 unsigned long timeout = amdgpu_gem_timeout(wait->in.timeout_ns);
1321
1322 fence = amdgpu_cs_get_fence(adev, filp, &fences[i]);
1323 if (IS_ERR(fence))
1324 return PTR_ERR(fence);
1325 else if (!fence)
1326 continue;
1327
1328 r = dma_fence_wait_timeout(fence, true, timeout);
Chunming Zhou32df87d2017-04-07 17:05:45 +08001329 dma_fence_put(fence);
Junwei Zhangeef18a82016-11-04 16:16:10 -04001330 if (r < 0)
1331 return r;
1332
1333 if (r == 0)
1334 break;
1335 }
1336
1337 memset(wait, 0, sizeof(*wait));
1338 wait->out.status = (r > 0);
1339
1340 return 0;
1341}
1342
1343/**
1344 * amdgpu_cs_wait_any_fence - wait on any fence to signal
1345 *
1346 * @adev: amdgpu device
1347 * @filp: file private
1348 * @wait: wait parameters
1349 * @fences: array of drm_amdgpu_fence
1350 */
1351static int amdgpu_cs_wait_any_fence(struct amdgpu_device *adev,
1352 struct drm_file *filp,
1353 union drm_amdgpu_wait_fences *wait,
1354 struct drm_amdgpu_fence *fences)
1355{
1356 unsigned long timeout = amdgpu_gem_timeout(wait->in.timeout_ns);
1357 uint32_t fence_count = wait->in.fence_count;
1358 uint32_t first = ~0;
1359 struct dma_fence **array;
1360 unsigned int i;
1361 long r;
1362
1363 /* Prepare the fence array */
1364 array = kcalloc(fence_count, sizeof(struct dma_fence *), GFP_KERNEL);
1365
1366 if (array == NULL)
1367 return -ENOMEM;
1368
1369 for (i = 0; i < fence_count; i++) {
1370 struct dma_fence *fence;
1371
1372 fence = amdgpu_cs_get_fence(adev, filp, &fences[i]);
1373 if (IS_ERR(fence)) {
1374 r = PTR_ERR(fence);
1375 goto err_free_fence_array;
1376 } else if (fence) {
1377 array[i] = fence;
1378 } else { /* NULL, the fence has been already signaled */
1379 r = 1;
Monk Liua2138ea2017-08-11 17:49:48 +08001380 first = i;
Junwei Zhangeef18a82016-11-04 16:16:10 -04001381 goto out;
1382 }
1383 }
1384
1385 r = dma_fence_wait_any_timeout(array, fence_count, true, timeout,
1386 &first);
1387 if (r < 0)
1388 goto err_free_fence_array;
1389
1390out:
1391 memset(wait, 0, sizeof(*wait));
1392 wait->out.status = (r > 0);
1393 wait->out.first_signaled = first;
1394 /* set return value 0 to indicate success */
1395 r = 0;
1396
1397err_free_fence_array:
1398 for (i = 0; i < fence_count; i++)
1399 dma_fence_put(array[i]);
1400 kfree(array);
1401
1402 return r;
1403}
1404
1405/**
1406 * amdgpu_cs_wait_fences_ioctl - wait for multiple command submissions to finish
1407 *
1408 * @dev: drm device
1409 * @data: data from userspace
1410 * @filp: file private
1411 */
1412int amdgpu_cs_wait_fences_ioctl(struct drm_device *dev, void *data,
1413 struct drm_file *filp)
1414{
1415 struct amdgpu_device *adev = dev->dev_private;
Chunming Zhouf1892132017-05-15 16:48:27 +08001416 struct amdgpu_fpriv *fpriv = filp->driver_priv;
Junwei Zhangeef18a82016-11-04 16:16:10 -04001417 union drm_amdgpu_wait_fences *wait = data;
1418 uint32_t fence_count = wait->in.fence_count;
1419 struct drm_amdgpu_fence *fences_user;
1420 struct drm_amdgpu_fence *fences;
1421 int r;
1422
Chunming Zhouf1892132017-05-15 16:48:27 +08001423 if (amdgpu_kms_vram_lost(adev, fpriv))
1424 return -ENODEV;
Junwei Zhangeef18a82016-11-04 16:16:10 -04001425 /* Get the fences from userspace */
1426 fences = kmalloc_array(fence_count, sizeof(struct drm_amdgpu_fence),
1427 GFP_KERNEL);
1428 if (fences == NULL)
1429 return -ENOMEM;
1430
Christian König7ecc2452017-07-26 17:02:52 +02001431 fences_user = u64_to_user_ptr(wait->in.fences);
Junwei Zhangeef18a82016-11-04 16:16:10 -04001432 if (copy_from_user(fences, fences_user,
1433 sizeof(struct drm_amdgpu_fence) * fence_count)) {
1434 r = -EFAULT;
1435 goto err_free_fences;
1436 }
1437
1438 if (wait->in.wait_all)
1439 r = amdgpu_cs_wait_all_fences(adev, filp, wait, fences);
1440 else
1441 r = amdgpu_cs_wait_any_fence(adev, filp, wait, fences);
1442
1443err_free_fences:
1444 kfree(fences);
1445
1446 return r;
1447}
1448
1449/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001450 * amdgpu_cs_find_bo_va - find bo_va for VM address
1451 *
1452 * @parser: command submission parser context
1453 * @addr: VM address
1454 * @bo: resulting BO of the mapping found
1455 *
1456 * Search the buffer objects in the command submission context for a certain
1457 * virtual memory address. Returns allocation structure when found, NULL
1458 * otherwise.
1459 */
1460struct amdgpu_bo_va_mapping *
1461amdgpu_cs_find_mapping(struct amdgpu_cs_parser *parser,
1462 uint64_t addr, struct amdgpu_bo **bo)
1463{
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001464 struct amdgpu_bo_va_mapping *mapping;
Christian König15486fd22015-12-22 16:06:12 +01001465 unsigned i;
1466
1467 if (!parser->bo_list)
1468 return NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001469
1470 addr /= AMDGPU_GPU_PAGE_SIZE;
1471
Christian König15486fd22015-12-22 16:06:12 +01001472 for (i = 0; i < parser->bo_list->num_entries; i++) {
1473 struct amdgpu_bo_list_entry *lobj;
1474
1475 lobj = &parser->bo_list->array[i];
1476 if (!lobj->bo_va)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001477 continue;
1478
Christian König15486fd22015-12-22 16:06:12 +01001479 list_for_each_entry(mapping, &lobj->bo_va->valids, list) {
Christian Königa9f87f62017-03-30 14:03:59 +02001480 if (mapping->start > addr ||
1481 addr > mapping->last)
Christian König7fc11952015-07-30 11:53:42 +02001482 continue;
1483
Christian Königec681542017-08-01 10:51:43 +02001484 *bo = lobj->bo_va->base.bo;
Christian König7fc11952015-07-30 11:53:42 +02001485 return mapping;
1486 }
1487
Christian König15486fd22015-12-22 16:06:12 +01001488 list_for_each_entry(mapping, &lobj->bo_va->invalids, list) {
Christian Königa9f87f62017-03-30 14:03:59 +02001489 if (mapping->start > addr ||
1490 addr > mapping->last)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001491 continue;
1492
Christian Königec681542017-08-01 10:51:43 +02001493 *bo = lobj->bo_va->base.bo;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001494 return mapping;
1495 }
1496 }
1497
1498 return NULL;
1499}
Christian Königc855e252016-09-05 17:00:57 +02001500
1501/**
1502 * amdgpu_cs_sysvm_access_required - make BOs accessible by the system VM
1503 *
1504 * @parser: command submission parser context
1505 *
1506 * Helper for UVD/VCE VM emulation, make sure BOs are accessible by the system VM.
1507 */
1508int amdgpu_cs_sysvm_access_required(struct amdgpu_cs_parser *parser)
1509{
1510 unsigned i;
1511 int r;
1512
1513 if (!parser->bo_list)
1514 return 0;
1515
1516 for (i = 0; i < parser->bo_list->num_entries; i++) {
1517 struct amdgpu_bo *bo = parser->bo_list->array[i].robj;
1518
Christian Königbb990bb2016-09-09 16:32:33 +02001519 r = amdgpu_ttm_bind(&bo->tbo, &bo->tbo.mem);
Christian Königc855e252016-09-05 17:00:57 +02001520 if (unlikely(r))
1521 return r;
Christian König03f48dd2016-08-15 17:00:22 +02001522
1523 if (bo->flags & AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS)
1524 continue;
1525
1526 bo->flags |= AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS;
1527 amdgpu_ttm_placement_from_domain(bo, bo->allowed_domains);
1528 r = ttm_bo_validate(&bo->tbo, &bo->placement, false, false);
1529 if (unlikely(r))
1530 return r;
Christian Königc855e252016-09-05 17:00:57 +02001531 }
1532
1533 return 0;
1534}