blob: 82927570333a2fd7c24147b4a6b0bc0c59ee24dd [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>
30#include "amdgpu.h"
31#include "amdgpu_trace.h"
32
Alex Deucherd38ceaf2015-04-20 16:55:21 -040033int 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 Deucherc113ea12015-10-08 16:30:37 -040066 if (ring < adev->sdma.num_instances) {
67 *out_ring = &adev->sdma.instance[ring].ring;
Alex Deucherd38ceaf2015-04-20 16:55:21 -040068 } else {
Alex Deucherc113ea12015-10-08 16:30:37 -040069 DRM_ERROR("only %d SDMA rings are supported\n",
70 adev->sdma.num_instances);
Alex Deucherd38ceaf2015-04-20 16:55:21 -040071 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önig91acbeb2015-12-14 16:42:31 +010089static int amdgpu_cs_user_fence_chunk(struct amdgpu_cs_parser *p,
Christian König758ac172016-05-06 22:14:00 +020090 struct drm_amdgpu_cs_chunk_fence *data,
91 uint32_t *offset)
Christian König91acbeb2015-12-14 16:42:31 +010092{
93 struct drm_gem_object *gobj;
Christian König91acbeb2015-12-14 16:42:31 +010094
Chris Wilsona8ad0bd2016-05-09 11:04:54 +010095 gobj = drm_gem_object_lookup(p->filp, data->handle);
Christian König91acbeb2015-12-14 16:42:31 +010096 if (gobj == NULL)
97 return -EINVAL;
98
Christian König758ac172016-05-06 22:14:00 +020099 p->uf_entry.robj = amdgpu_bo_ref(gem_to_amdgpu_bo(gobj));
Christian König91acbeb2015-12-14 16:42:31 +0100100 p->uf_entry.priority = 0;
101 p->uf_entry.tv.bo = &p->uf_entry.robj->tbo;
102 p->uf_entry.tv.shared = true;
Christian König2f568db2016-02-23 12:36:59 +0100103 p->uf_entry.user_pages = NULL;
Christian König758ac172016-05-06 22:14:00 +0200104 *offset = data->offset;
Christian König91acbeb2015-12-14 16:42:31 +0100105
106 drm_gem_object_unreference_unlocked(gobj);
Christian König758ac172016-05-06 22:14:00 +0200107
108 if (amdgpu_ttm_tt_get_usermm(p->uf_entry.robj->tbo.ttm)) {
109 amdgpu_bo_unref(&p->uf_entry.robj);
110 return -EINVAL;
111 }
112
Christian König91acbeb2015-12-14 16:42:31 +0100113 return 0;
114}
115
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400116int amdgpu_cs_parser_init(struct amdgpu_cs_parser *p, void *data)
117{
Christian König4c0b2422016-02-01 11:20:37 +0100118 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
Monk Liuc5637832016-04-19 20:11:32 +0800119 struct amdgpu_vm *vm = &fpriv->vm;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400120 union drm_amdgpu_cs *cs = data;
121 uint64_t *chunk_array_user;
Dan Carpenter1d263472015-09-23 13:59:28 +0300122 uint64_t *chunk_array;
Christian König50838c82016-02-03 13:44:52 +0100123 unsigned size, num_ibs = 0;
Christian König758ac172016-05-06 22:14:00 +0200124 uint32_t uf_offset = 0;
Dan Carpenter54313502015-09-25 14:36:55 +0300125 int i;
Dan Carpenter1d263472015-09-23 13:59:28 +0300126 int ret;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400127
Dan Carpenter1d263472015-09-23 13:59:28 +0300128 if (cs->in.num_chunks == 0)
129 return 0;
130
131 chunk_array = kmalloc_array(cs->in.num_chunks, sizeof(uint64_t), GFP_KERNEL);
132 if (!chunk_array)
133 return -ENOMEM;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400134
Christian König3cb485f2015-05-11 15:34:59 +0200135 p->ctx = amdgpu_ctx_get(fpriv, cs->in.ctx_id);
136 if (!p->ctx) {
Dan Carpenter1d263472015-09-23 13:59:28 +0300137 ret = -EINVAL;
138 goto free_chunk;
Christian König3cb485f2015-05-11 15:34:59 +0200139 }
Dan Carpenter1d263472015-09-23 13:59:28 +0300140
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400141 /* get chunks */
Arnd Bergmann028423b2015-10-07 09:41:27 +0200142 chunk_array_user = (uint64_t __user *)(unsigned long)(cs->in.chunks);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400143 if (copy_from_user(chunk_array, chunk_array_user,
144 sizeof(uint64_t)*cs->in.num_chunks)) {
Dan Carpenter1d263472015-09-23 13:59:28 +0300145 ret = -EFAULT;
Christian König2a7d9bd2015-12-18 20:33:52 +0100146 goto put_ctx;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400147 }
148
149 p->nchunks = cs->in.num_chunks;
monk.liue60b3442015-07-17 18:39:25 +0800150 p->chunks = kmalloc_array(p->nchunks, sizeof(struct amdgpu_cs_chunk),
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400151 GFP_KERNEL);
Dan Carpenter1d263472015-09-23 13:59:28 +0300152 if (!p->chunks) {
153 ret = -ENOMEM;
Christian König2a7d9bd2015-12-18 20:33:52 +0100154 goto put_ctx;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400155 }
156
157 for (i = 0; i < p->nchunks; i++) {
158 struct drm_amdgpu_cs_chunk __user **chunk_ptr = NULL;
159 struct drm_amdgpu_cs_chunk user_chunk;
160 uint32_t __user *cdata;
161
Arnd Bergmann028423b2015-10-07 09:41:27 +0200162 chunk_ptr = (void __user *)(unsigned long)chunk_array[i];
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400163 if (copy_from_user(&user_chunk, chunk_ptr,
164 sizeof(struct drm_amdgpu_cs_chunk))) {
Dan Carpenter1d263472015-09-23 13:59:28 +0300165 ret = -EFAULT;
166 i--;
167 goto free_partial_kdata;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400168 }
169 p->chunks[i].chunk_id = user_chunk.chunk_id;
170 p->chunks[i].length_dw = user_chunk.length_dw;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400171
172 size = p->chunks[i].length_dw;
Arnd Bergmann028423b2015-10-07 09:41:27 +0200173 cdata = (void __user *)(unsigned long)user_chunk.chunk_data;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400174
175 p->chunks[i].kdata = drm_malloc_ab(size, sizeof(uint32_t));
176 if (p->chunks[i].kdata == NULL) {
Dan Carpenter1d263472015-09-23 13:59:28 +0300177 ret = -ENOMEM;
178 i--;
179 goto free_partial_kdata;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400180 }
181 size *= sizeof(uint32_t);
182 if (copy_from_user(p->chunks[i].kdata, cdata, size)) {
Dan Carpenter1d263472015-09-23 13:59:28 +0300183 ret = -EFAULT;
184 goto free_partial_kdata;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400185 }
186
Christian König9a5e8fb2015-06-23 17:07:03 +0200187 switch (p->chunks[i].chunk_id) {
188 case AMDGPU_CHUNK_ID_IB:
Christian König50838c82016-02-03 13:44:52 +0100189 ++num_ibs;
Christian König9a5e8fb2015-06-23 17:07:03 +0200190 break;
191
192 case AMDGPU_CHUNK_ID_FENCE:
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400193 size = sizeof(struct drm_amdgpu_cs_chunk_fence);
Christian König91acbeb2015-12-14 16:42:31 +0100194 if (p->chunks[i].length_dw * sizeof(uint32_t) < size) {
Dan Carpenter1d263472015-09-23 13:59:28 +0300195 ret = -EINVAL;
196 goto free_partial_kdata;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400197 }
Christian König91acbeb2015-12-14 16:42:31 +0100198
Christian König758ac172016-05-06 22:14:00 +0200199 ret = amdgpu_cs_user_fence_chunk(p, p->chunks[i].kdata,
200 &uf_offset);
Christian König91acbeb2015-12-14 16:42:31 +0100201 if (ret)
202 goto free_partial_kdata;
203
Christian König9a5e8fb2015-06-23 17:07:03 +0200204 break;
205
Christian König2b48d322015-06-19 17:31:29 +0200206 case AMDGPU_CHUNK_ID_DEPENDENCIES:
207 break;
208
Christian König9a5e8fb2015-06-23 17:07:03 +0200209 default:
Dan Carpenter1d263472015-09-23 13:59:28 +0300210 ret = -EINVAL;
211 goto free_partial_kdata;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400212 }
213 }
214
Monk Liuc5637832016-04-19 20:11:32 +0800215 ret = amdgpu_job_alloc(p->adev, num_ibs, &p->job, vm);
Christian König50838c82016-02-03 13:44:52 +0100216 if (ret)
Christian König4acabfe2016-01-31 11:32:04 +0100217 goto free_all_kdata;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400218
Christian Königb5f5acb2016-06-29 13:26:41 +0200219 if (p->uf_entry.robj)
220 p->job->uf_addr = uf_offset;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400221 kfree(chunk_array);
Dan Carpenter1d263472015-09-23 13:59:28 +0300222 return 0;
223
224free_all_kdata:
225 i = p->nchunks - 1;
226free_partial_kdata:
227 for (; i >= 0; i--)
228 drm_free_large(p->chunks[i].kdata);
229 kfree(p->chunks);
Christian König2a7d9bd2015-12-18 20:33:52 +0100230put_ctx:
Dan Carpenter1d263472015-09-23 13:59:28 +0300231 amdgpu_ctx_put(p->ctx);
232free_chunk:
233 kfree(chunk_array);
234
235 return ret;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400236}
237
Marek Olšák95844d22016-08-17 23:49:27 +0200238/* Convert microseconds to bytes. */
239static u64 us_to_bytes(struct amdgpu_device *adev, s64 us)
240{
241 if (us <= 0 || !adev->mm_stats.log2_max_MBps)
242 return 0;
243
244 /* Since accum_us is incremented by a million per second, just
245 * multiply it by the number of MB/s to get the number of bytes.
246 */
247 return us << adev->mm_stats.log2_max_MBps;
248}
249
250static s64 bytes_to_us(struct amdgpu_device *adev, u64 bytes)
251{
252 if (!adev->mm_stats.log2_max_MBps)
253 return 0;
254
255 return bytes >> adev->mm_stats.log2_max_MBps;
256}
257
258/* Returns how many bytes TTM can move right now. If no bytes can be moved,
259 * it returns 0. If it returns non-zero, it's OK to move at least one buffer,
260 * which means it can go over the threshold once. If that happens, the driver
261 * will be in debt and no other buffer migrations can be done until that debt
262 * is repaid.
263 *
264 * This approach allows moving a buffer of any size (it's important to allow
265 * that).
266 *
267 * The currency is simply time in microseconds and it increases as the clock
268 * ticks. The accumulated microseconds (us) are converted to bytes and
269 * returned.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400270 */
271static u64 amdgpu_cs_get_threshold_for_moves(struct amdgpu_device *adev)
272{
Marek Olšák95844d22016-08-17 23:49:27 +0200273 s64 time_us, increment_us;
274 u64 max_bytes;
275 u64 free_vram, total_vram, used_vram;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400276
Marek Olšák95844d22016-08-17 23:49:27 +0200277 /* Allow a maximum of 200 accumulated ms. This is basically per-IB
278 * throttling.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400279 *
Marek Olšák95844d22016-08-17 23:49:27 +0200280 * It means that in order to get full max MBps, at least 5 IBs per
281 * second must be submitted and not more than 200ms apart from each
282 * other.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400283 */
Marek Olšák95844d22016-08-17 23:49:27 +0200284 const s64 us_upper_bound = 200000;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400285
Marek Olšák95844d22016-08-17 23:49:27 +0200286 if (!adev->mm_stats.log2_max_MBps)
287 return 0;
288
289 total_vram = adev->mc.real_vram_size - adev->vram_pin_size;
290 used_vram = atomic64_read(&adev->vram_usage);
291 free_vram = used_vram >= total_vram ? 0 : total_vram - used_vram;
292
293 spin_lock(&adev->mm_stats.lock);
294
295 /* Increase the amount of accumulated us. */
296 time_us = ktime_to_us(ktime_get());
297 increment_us = time_us - adev->mm_stats.last_update_us;
298 adev->mm_stats.last_update_us = time_us;
299 adev->mm_stats.accum_us = min(adev->mm_stats.accum_us + increment_us,
300 us_upper_bound);
301
302 /* This prevents the short period of low performance when the VRAM
303 * usage is low and the driver is in debt or doesn't have enough
304 * accumulated us to fill VRAM quickly.
305 *
306 * The situation can occur in these cases:
307 * - a lot of VRAM is freed by userspace
308 * - the presence of a big buffer causes a lot of evictions
309 * (solution: split buffers into smaller ones)
310 *
311 * If 128 MB or 1/8th of VRAM is free, start filling it now by setting
312 * accum_us to a positive number.
313 */
314 if (free_vram >= 128 * 1024 * 1024 || free_vram >= total_vram / 8) {
315 s64 min_us;
316
317 /* Be more aggresive on dGPUs. Try to fill a portion of free
318 * VRAM now.
319 */
320 if (!(adev->flags & AMD_IS_APU))
321 min_us = bytes_to_us(adev, free_vram / 4);
322 else
323 min_us = 0; /* Reset accum_us on APUs. */
324
325 adev->mm_stats.accum_us = max(min_us, adev->mm_stats.accum_us);
326 }
327
328 /* This returns 0 if the driver is in debt to disallow (optional)
329 * buffer moves.
330 */
331 max_bytes = us_to_bytes(adev, adev->mm_stats.accum_us);
332
333 spin_unlock(&adev->mm_stats.lock);
334 return max_bytes;
335}
336
337/* Report how many bytes have really been moved for the last command
338 * submission. This can result in a debt that can stop buffer migrations
339 * temporarily.
340 */
341static void amdgpu_cs_report_moved_bytes(struct amdgpu_device *adev,
342 u64 num_bytes)
343{
344 spin_lock(&adev->mm_stats.lock);
345 adev->mm_stats.accum_us -= bytes_to_us(adev, num_bytes);
346 spin_unlock(&adev->mm_stats.lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400347}
348
Chunming Zhou14fd8332016-08-04 13:05:46 +0800349static int amdgpu_cs_bo_validate(struct amdgpu_cs_parser *p,
350 struct amdgpu_bo *bo)
351{
352 u64 initial_bytes_moved;
353 uint32_t domain;
354 int r;
355
356 if (bo->pin_count)
357 return 0;
358
Marek Olšák95844d22016-08-17 23:49:27 +0200359 /* Don't move this buffer if we have depleted our allowance
360 * to move it. Don't move anything if the threshold is zero.
Chunming Zhou14fd8332016-08-04 13:05:46 +0800361 */
Marek Olšák95844d22016-08-17 23:49:27 +0200362 if (p->bytes_moved < p->bytes_moved_threshold)
Chunming Zhou14fd8332016-08-04 13:05:46 +0800363 domain = bo->prefered_domains;
364 else
365 domain = bo->allowed_domains;
366
367retry:
368 amdgpu_ttm_placement_from_domain(bo, domain);
369 initial_bytes_moved = atomic64_read(&bo->adev->num_bytes_moved);
370 r = ttm_bo_validate(&bo->tbo, &bo->placement, true, false);
371 p->bytes_moved += atomic64_read(&bo->adev->num_bytes_moved) -
372 initial_bytes_moved;
373
374 if (unlikely(r)) {
375 if (r != -ERESTARTSYS && domain != bo->allowed_domains) {
376 domain = bo->allowed_domains;
377 goto retry;
378 }
379 }
380
381 return r;
382}
383
Christian Königf69f90a12015-12-21 19:47:42 +0100384int amdgpu_cs_list_validate(struct amdgpu_cs_parser *p,
Christian Königa5b75052015-09-03 16:40:39 +0200385 struct list_head *validated)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400386{
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400387 struct amdgpu_bo_list_entry *lobj;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400388 int r;
389
Christian Königa5b75052015-09-03 16:40:39 +0200390 list_for_each_entry(lobj, validated, tv.head) {
Christian König36409d122015-12-21 20:31:35 +0100391 struct amdgpu_bo *bo = lobj->robj;
Christian König2f568db2016-02-23 12:36:59 +0100392 bool binding_userptr = false;
Christian Königcc325d12016-02-08 11:08:35 +0100393 struct mm_struct *usermm;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400394
Christian Königcc325d12016-02-08 11:08:35 +0100395 usermm = amdgpu_ttm_tt_get_usermm(bo->tbo.ttm);
396 if (usermm && usermm != current->mm)
397 return -EPERM;
398
Christian König2f568db2016-02-23 12:36:59 +0100399 /* Check if we have user pages and nobody bound the BO already */
400 if (lobj->user_pages && bo->tbo.ttm->state != tt_bound) {
401 size_t size = sizeof(struct page *);
402
403 size *= bo->tbo.ttm->num_pages;
404 memcpy(bo->tbo.ttm->pages, lobj->user_pages, size);
405 binding_userptr = true;
406 }
407
Chunming Zhou14fd8332016-08-04 13:05:46 +0800408 r = amdgpu_cs_bo_validate(p, bo);
409 if (r)
Christian König36409d122015-12-21 20:31:35 +0100410 return r;
Chunming Zhou14fd8332016-08-04 13:05:46 +0800411 if (bo->shadow) {
412 r = amdgpu_cs_bo_validate(p, bo);
413 if (r)
414 return r;
Christian König36409d122015-12-21 20:31:35 +0100415 }
Christian König2f568db2016-02-23 12:36:59 +0100416
417 if (binding_userptr) {
418 drm_free_large(lobj->user_pages);
419 lobj->user_pages = NULL;
420 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400421 }
422 return 0;
423}
424
Christian König2a7d9bd2015-12-18 20:33:52 +0100425static int amdgpu_cs_parser_bos(struct amdgpu_cs_parser *p,
426 union drm_amdgpu_cs *cs)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400427{
428 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
Christian König2f568db2016-02-23 12:36:59 +0100429 struct amdgpu_bo_list_entry *e;
Christian Königa5b75052015-09-03 16:40:39 +0200430 struct list_head duplicates;
monk.liu840d5142015-04-27 15:19:20 +0800431 bool need_mmap_lock = false;
Christian König2f568db2016-02-23 12:36:59 +0100432 unsigned i, tries = 10;
Christian König636ce252015-12-18 21:26:47 +0100433 int r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400434
Christian König2a7d9bd2015-12-18 20:33:52 +0100435 INIT_LIST_HEAD(&p->validated);
436
437 p->bo_list = amdgpu_bo_list_get(fpriv, cs->in.bo_list_handle);
monk.liu840d5142015-04-27 15:19:20 +0800438 if (p->bo_list) {
Christian König211dff52016-02-22 15:40:59 +0100439 need_mmap_lock = p->bo_list->first_userptr !=
440 p->bo_list->num_entries;
Christian König636ce252015-12-18 21:26:47 +0100441 amdgpu_bo_list_get_list(p->bo_list, &p->validated);
monk.liu840d5142015-04-27 15:19:20 +0800442 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400443
Christian König3c0eea62015-12-11 14:39:05 +0100444 INIT_LIST_HEAD(&duplicates);
Christian König56467eb2015-12-11 15:16:32 +0100445 amdgpu_vm_get_pd_bo(&fpriv->vm, &p->validated, &p->vm_pd);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400446
Christian König758ac172016-05-06 22:14:00 +0200447 if (p->uf_entry.robj)
Christian König91acbeb2015-12-14 16:42:31 +0100448 list_add(&p->uf_entry.tv.head, &p->validated);
449
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400450 if (need_mmap_lock)
451 down_read(&current->mm->mmap_sem);
452
Christian König2f568db2016-02-23 12:36:59 +0100453 while (1) {
454 struct list_head need_pages;
455 unsigned i;
456
457 r = ttm_eu_reserve_buffers(&p->ticket, &p->validated, true,
458 &duplicates);
Marek Olšákf1037952016-07-30 00:48:39 +0200459 if (unlikely(r != 0)) {
460 DRM_ERROR("ttm_eu_reserve_buffers failed.\n");
Christian König2f568db2016-02-23 12:36:59 +0100461 goto error_free_pages;
Marek Olšákf1037952016-07-30 00:48:39 +0200462 }
Christian König2f568db2016-02-23 12:36:59 +0100463
464 /* Without a BO list we don't have userptr BOs */
465 if (!p->bo_list)
466 break;
467
468 INIT_LIST_HEAD(&need_pages);
469 for (i = p->bo_list->first_userptr;
470 i < p->bo_list->num_entries; ++i) {
471
472 e = &p->bo_list->array[i];
473
474 if (amdgpu_ttm_tt_userptr_invalidated(e->robj->tbo.ttm,
475 &e->user_invalidated) && e->user_pages) {
476
477 /* We acquired a page array, but somebody
478 * invalidated it. Free it an try again
479 */
480 release_pages(e->user_pages,
481 e->robj->tbo.ttm->num_pages,
482 false);
483 drm_free_large(e->user_pages);
484 e->user_pages = NULL;
485 }
486
487 if (e->robj->tbo.ttm->state != tt_bound &&
488 !e->user_pages) {
489 list_del(&e->tv.head);
490 list_add(&e->tv.head, &need_pages);
491
492 amdgpu_bo_unreserve(e->robj);
493 }
494 }
495
496 if (list_empty(&need_pages))
497 break;
498
499 /* Unreserve everything again. */
500 ttm_eu_backoff_reservation(&p->ticket, &p->validated);
501
Marek Olšákf1037952016-07-30 00:48:39 +0200502 /* We tried too many times, just abort */
Christian König2f568db2016-02-23 12:36:59 +0100503 if (!--tries) {
504 r = -EDEADLK;
Marek Olšákf1037952016-07-30 00:48:39 +0200505 DRM_ERROR("deadlock in %s\n", __func__);
Christian König2f568db2016-02-23 12:36:59 +0100506 goto error_free_pages;
507 }
508
509 /* Fill the page arrays for all useptrs. */
510 list_for_each_entry(e, &need_pages, tv.head) {
511 struct ttm_tt *ttm = e->robj->tbo.ttm;
512
513 e->user_pages = drm_calloc_large(ttm->num_pages,
514 sizeof(struct page*));
515 if (!e->user_pages) {
516 r = -ENOMEM;
Marek Olšákf1037952016-07-30 00:48:39 +0200517 DRM_ERROR("calloc failure in %s\n", __func__);
Christian König2f568db2016-02-23 12:36:59 +0100518 goto error_free_pages;
519 }
520
521 r = amdgpu_ttm_tt_get_user_pages(ttm, e->user_pages);
522 if (r) {
Marek Olšákf1037952016-07-30 00:48:39 +0200523 DRM_ERROR("amdgpu_ttm_tt_get_user_pages failed.\n");
Christian König2f568db2016-02-23 12:36:59 +0100524 drm_free_large(e->user_pages);
525 e->user_pages = NULL;
526 goto error_free_pages;
527 }
528 }
529
530 /* And try again. */
531 list_splice(&need_pages, &p->validated);
532 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400533
Christian König5a712a82016-06-21 16:28:15 +0200534 amdgpu_vm_get_pt_bos(p->adev, &fpriv->vm, &duplicates);
Christian König56467eb2015-12-11 15:16:32 +0100535
Christian Königf69f90a12015-12-21 19:47:42 +0100536 p->bytes_moved_threshold = amdgpu_cs_get_threshold_for_moves(p->adev);
537 p->bytes_moved = 0;
538
539 r = amdgpu_cs_list_validate(p, &duplicates);
Marek Olšákf1037952016-07-30 00:48:39 +0200540 if (r) {
541 DRM_ERROR("amdgpu_cs_list_validate(duplicates) failed.\n");
Christian Königa5b75052015-09-03 16:40:39 +0200542 goto error_validate;
Marek Olšákf1037952016-07-30 00:48:39 +0200543 }
Christian Königa5b75052015-09-03 16:40:39 +0200544
Christian Königf69f90a12015-12-21 19:47:42 +0100545 r = amdgpu_cs_list_validate(p, &p->validated);
Marek Olšákf1037952016-07-30 00:48:39 +0200546 if (r) {
547 DRM_ERROR("amdgpu_cs_list_validate(validated) failed.\n");
Christian Königa8480302016-01-05 16:03:39 +0100548 goto error_validate;
Marek Olšákf1037952016-07-30 00:48:39 +0200549 }
Christian Königa8480302016-01-05 16:03:39 +0100550
Marek Olšák95844d22016-08-17 23:49:27 +0200551 amdgpu_cs_report_moved_bytes(p->adev, p->bytes_moved);
552
Christian König5a712a82016-06-21 16:28:15 +0200553 fpriv->vm.last_eviction_counter =
554 atomic64_read(&p->adev->num_evictions);
555
Christian Königa8480302016-01-05 16:03:39 +0100556 if (p->bo_list) {
Christian Königd88bf582016-05-06 17:50:03 +0200557 struct amdgpu_bo *gds = p->bo_list->gds_obj;
558 struct amdgpu_bo *gws = p->bo_list->gws_obj;
559 struct amdgpu_bo *oa = p->bo_list->oa_obj;
Christian Königa8480302016-01-05 16:03:39 +0100560 struct amdgpu_vm *vm = &fpriv->vm;
561 unsigned i;
562
563 for (i = 0; i < p->bo_list->num_entries; i++) {
564 struct amdgpu_bo *bo = p->bo_list->array[i].robj;
565
566 p->bo_list->array[i].bo_va = amdgpu_vm_bo_find(vm, bo);
567 }
Christian Königd88bf582016-05-06 17:50:03 +0200568
569 if (gds) {
570 p->job->gds_base = amdgpu_bo_gpu_offset(gds);
571 p->job->gds_size = amdgpu_bo_size(gds);
572 }
573 if (gws) {
574 p->job->gws_base = amdgpu_bo_gpu_offset(gws);
575 p->job->gws_size = amdgpu_bo_size(gws);
576 }
577 if (oa) {
578 p->job->oa_base = amdgpu_bo_gpu_offset(oa);
579 p->job->oa_size = amdgpu_bo_size(oa);
580 }
Christian Königa8480302016-01-05 16:03:39 +0100581 }
Christian Königa5b75052015-09-03 16:40:39 +0200582
Christian Königb5f5acb2016-06-29 13:26:41 +0200583 if (p->uf_entry.robj)
584 p->job->uf_addr += amdgpu_bo_gpu_offset(p->uf_entry.robj);
585
Christian Königa5b75052015-09-03 16:40:39 +0200586error_validate:
Christian Königeceb8a12016-01-11 15:35:21 +0100587 if (r) {
588 amdgpu_vm_move_pt_bos_in_lru(p->adev, &fpriv->vm);
Christian Königa5b75052015-09-03 16:40:39 +0200589 ttm_eu_backoff_reservation(&p->ticket, &p->validated);
Christian Königeceb8a12016-01-11 15:35:21 +0100590 }
Christian Königa5b75052015-09-03 16:40:39 +0200591
Christian König2f568db2016-02-23 12:36:59 +0100592error_free_pages:
593
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400594 if (need_mmap_lock)
595 up_read(&current->mm->mmap_sem);
596
Christian König2f568db2016-02-23 12:36:59 +0100597 if (p->bo_list) {
598 for (i = p->bo_list->first_userptr;
599 i < p->bo_list->num_entries; ++i) {
600 e = &p->bo_list->array[i];
601
602 if (!e->user_pages)
603 continue;
604
605 release_pages(e->user_pages,
606 e->robj->tbo.ttm->num_pages,
607 false);
608 drm_free_large(e->user_pages);
609 }
610 }
611
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400612 return r;
613}
614
615static int amdgpu_cs_sync_rings(struct amdgpu_cs_parser *p)
616{
617 struct amdgpu_bo_list_entry *e;
618 int r;
619
620 list_for_each_entry(e, &p->validated, tv.head) {
621 struct reservation_object *resv = e->robj->tbo.resv;
Christian Könige86f9ce2016-02-08 12:13:05 +0100622 r = amdgpu_sync_resv(p->adev, &p->job->sync, resv, p->filp);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400623
624 if (r)
625 return r;
626 }
627 return 0;
628}
629
Christian König984810f2015-11-14 21:05:35 +0100630/**
631 * cs_parser_fini() - clean parser states
632 * @parser: parser structure holding parsing context.
633 * @error: error number
634 *
635 * If error is set than unvalidate buffer, otherwise just free memory
636 * used by parsing context.
637 **/
638static void amdgpu_cs_parser_fini(struct amdgpu_cs_parser *parser, int error, bool backoff)
Chunming Zhou049fc522015-07-21 14:36:51 +0800639{
Christian Königeceb8a12016-01-11 15:35:21 +0100640 struct amdgpu_fpriv *fpriv = parser->filp->driver_priv;
Christian König984810f2015-11-14 21:05:35 +0100641 unsigned i;
642
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400643 if (!error) {
Nicolai Hähnle28b8d662016-01-27 11:04:19 -0500644 amdgpu_vm_move_pt_bos_in_lru(parser->adev, &fpriv->vm);
645
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400646 ttm_eu_fence_buffer_objects(&parser->ticket,
Christian König984810f2015-11-14 21:05:35 +0100647 &parser->validated,
648 parser->fence);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400649 } else if (backoff) {
650 ttm_eu_backoff_reservation(&parser->ticket,
651 &parser->validated);
652 }
Christian König984810f2015-11-14 21:05:35 +0100653 fence_put(parser->fence);
Christian König7e52a812015-11-04 15:44:39 +0100654
Christian König3cb485f2015-05-11 15:34:59 +0200655 if (parser->ctx)
656 amdgpu_ctx_put(parser->ctx);
Chunming Zhoua3348bb2015-08-18 16:25:46 +0800657 if (parser->bo_list)
658 amdgpu_bo_list_put(parser->bo_list);
659
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400660 for (i = 0; i < parser->nchunks; i++)
661 drm_free_large(parser->chunks[i].kdata);
662 kfree(parser->chunks);
Christian König50838c82016-02-03 13:44:52 +0100663 if (parser->job)
664 amdgpu_job_free(parser->job);
Christian König91acbeb2015-12-14 16:42:31 +0100665 amdgpu_bo_unref(&parser->uf_entry.robj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400666}
667
668static int amdgpu_bo_vm_update_pte(struct amdgpu_cs_parser *p,
669 struct amdgpu_vm *vm)
670{
671 struct amdgpu_device *adev = p->adev;
672 struct amdgpu_bo_va *bo_va;
673 struct amdgpu_bo *bo;
674 int i, r;
675
676 r = amdgpu_vm_update_page_directory(adev, vm);
677 if (r)
678 return r;
679
Christian Könige86f9ce2016-02-08 12:13:05 +0100680 r = amdgpu_sync_fence(adev, &p->job->sync, vm->page_directory_fence);
Bas Nieuwenhuizen05906de2015-08-14 20:08:40 +0200681 if (r)
682 return r;
683
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400684 r = amdgpu_vm_clear_freed(adev, vm);
685 if (r)
686 return r;
687
688 if (p->bo_list) {
689 for (i = 0; i < p->bo_list->num_entries; i++) {
Christian König91e1a522015-07-06 22:06:40 +0200690 struct fence *f;
691
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400692 /* ignore duplicates */
693 bo = p->bo_list->array[i].robj;
694 if (!bo)
695 continue;
696
697 bo_va = p->bo_list->array[i].bo_va;
698 if (bo_va == NULL)
699 continue;
700
Christian König99e124f2016-08-16 14:43:17 +0200701 r = amdgpu_vm_bo_update(adev, bo_va, false);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400702 if (r)
703 return r;
704
Chunming Zhoubb1e38a42015-08-03 18:19:38 +0800705 f = bo_va->last_pt_update;
Christian Könige86f9ce2016-02-08 12:13:05 +0100706 r = amdgpu_sync_fence(adev, &p->job->sync, f);
Christian König91e1a522015-07-06 22:06:40 +0200707 if (r)
708 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400709 }
Christian Königb495bd32015-09-10 14:00:35 +0200710
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400711 }
712
Christian Könige86f9ce2016-02-08 12:13:05 +0100713 r = amdgpu_vm_clear_invalids(adev, vm, &p->job->sync);
Christian Königb495bd32015-09-10 14:00:35 +0200714
715 if (amdgpu_vm_debug && p->bo_list) {
716 /* Invalidate all BOs to test for userspace bugs */
717 for (i = 0; i < p->bo_list->num_entries; i++) {
718 /* ignore duplicates */
719 bo = p->bo_list->array[i].robj;
720 if (!bo)
721 continue;
722
723 amdgpu_vm_bo_invalidate(adev, bo);
724 }
725 }
726
727 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400728}
729
730static int amdgpu_cs_ib_vm_chunk(struct amdgpu_device *adev,
Christian Königb07c60c2016-01-31 12:29:04 +0100731 struct amdgpu_cs_parser *p)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400732{
Christian Königb07c60c2016-01-31 12:29:04 +0100733 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400734 struct amdgpu_vm *vm = &fpriv->vm;
Christian Königb07c60c2016-01-31 12:29:04 +0100735 struct amdgpu_ring *ring = p->job->ring;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400736 int i, r;
737
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400738 /* Only for UVD/VCE VM emulation */
Christian Königb07c60c2016-01-31 12:29:04 +0100739 if (ring->funcs->parse_cs) {
Christian König9a795882016-06-22 14:25:55 +0200740 p->job->vm = NULL;
Christian Königb07c60c2016-01-31 12:29:04 +0100741 for (i = 0; i < p->job->num_ibs; i++) {
742 r = amdgpu_ring_parse_cs(ring, p, i);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400743 if (r)
744 return r;
745 }
Christian König9a795882016-06-22 14:25:55 +0200746 } else {
747 p->job->vm_pd_addr = amdgpu_bo_gpu_offset(vm->page_directory);
748
749 r = amdgpu_bo_vm_update_pte(p, vm);
750 if (r)
751 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400752 }
753
Christian König9a795882016-06-22 14:25:55 +0200754 return amdgpu_cs_sync_rings(p);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400755}
756
757static int amdgpu_cs_handle_lockup(struct amdgpu_device *adev, int r)
758{
759 if (r == -EDEADLK) {
760 r = amdgpu_gpu_reset(adev);
761 if (!r)
762 r = -EAGAIN;
763 }
764 return r;
765}
766
767static int amdgpu_cs_ib_fill(struct amdgpu_device *adev,
768 struct amdgpu_cs_parser *parser)
769{
770 struct amdgpu_fpriv *fpriv = parser->filp->driver_priv;
771 struct amdgpu_vm *vm = &fpriv->vm;
772 int i, j;
773 int r;
774
Christian König50838c82016-02-03 13:44:52 +0100775 for (i = 0, j = 0; i < parser->nchunks && j < parser->job->num_ibs; i++) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400776 struct amdgpu_cs_chunk *chunk;
777 struct amdgpu_ib *ib;
778 struct drm_amdgpu_cs_chunk_ib *chunk_ib;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400779 struct amdgpu_ring *ring;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400780
781 chunk = &parser->chunks[i];
Christian König50838c82016-02-03 13:44:52 +0100782 ib = &parser->job->ibs[j];
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400783 chunk_ib = (struct drm_amdgpu_cs_chunk_ib *)chunk->kdata;
784
785 if (chunk->chunk_id != AMDGPU_CHUNK_ID_IB)
786 continue;
787
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400788 r = amdgpu_cs_get_ring(adev, chunk_ib->ip_type,
789 chunk_ib->ip_instance, chunk_ib->ring,
790 &ring);
Marek Olšák3ccec532015-06-02 17:44:49 +0200791 if (r)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400792 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400793
Christian Königb07c60c2016-01-31 12:29:04 +0100794 if (parser->job->ring && parser->job->ring != ring)
795 return -EINVAL;
796
797 parser->job->ring = ring;
798
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400799 if (ring->funcs->parse_cs) {
Christian König4802ce12015-06-10 17:20:11 +0200800 struct amdgpu_bo_va_mapping *m;
Marek Olšák3ccec532015-06-02 17:44:49 +0200801 struct amdgpu_bo *aobj = NULL;
Christian König4802ce12015-06-10 17:20:11 +0200802 uint64_t offset;
803 uint8_t *kptr;
Marek Olšák3ccec532015-06-02 17:44:49 +0200804
Christian König4802ce12015-06-10 17:20:11 +0200805 m = amdgpu_cs_find_mapping(parser, chunk_ib->va_start,
806 &aobj);
Marek Olšák3ccec532015-06-02 17:44:49 +0200807 if (!aobj) {
808 DRM_ERROR("IB va_start is invalid\n");
809 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400810 }
811
Christian König4802ce12015-06-10 17:20:11 +0200812 if ((chunk_ib->va_start + chunk_ib->ib_bytes) >
813 (m->it.last + 1) * AMDGPU_GPU_PAGE_SIZE) {
814 DRM_ERROR("IB va_start+ib_bytes is invalid\n");
815 return -EINVAL;
816 }
817
Marek Olšák3ccec532015-06-02 17:44:49 +0200818 /* the IB should be reserved at this point */
Christian König4802ce12015-06-10 17:20:11 +0200819 r = amdgpu_bo_kmap(aobj, (void **)&kptr);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400820 if (r) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400821 return r;
822 }
823
Christian König4802ce12015-06-10 17:20:11 +0200824 offset = ((uint64_t)m->it.start) * AMDGPU_GPU_PAGE_SIZE;
825 kptr += chunk_ib->va_start - offset;
826
Christian Königb07c60c2016-01-31 12:29:04 +0100827 r = amdgpu_ib_get(adev, NULL, chunk_ib->ib_bytes, ib);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400828 if (r) {
829 DRM_ERROR("Failed to get ib !\n");
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400830 return r;
831 }
832
833 memcpy(ib->ptr, kptr, chunk_ib->ib_bytes);
834 amdgpu_bo_kunmap(aobj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400835 } else {
Christian Königb07c60c2016-01-31 12:29:04 +0100836 r = amdgpu_ib_get(adev, vm, 0, ib);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400837 if (r) {
838 DRM_ERROR("Failed to get ib !\n");
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400839 return r;
840 }
841
842 ib->gpu_addr = chunk_ib->va_start;
843 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400844
Marek Olšák3ccec532015-06-02 17:44:49 +0200845 ib->length_dw = chunk_ib->ib_bytes / 4;
Jammy Zhoude807f82015-05-11 23:41:41 +0800846 ib->flags = chunk_ib->flags;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400847 j++;
848 }
849
Christian König758ac172016-05-06 22:14:00 +0200850 /* UVD & VCE fw doesn't support user fences */
Christian Königb5f5acb2016-06-29 13:26:41 +0200851 if (parser->job->uf_addr && (
Christian König758ac172016-05-06 22:14:00 +0200852 parser->job->ring->type == AMDGPU_RING_TYPE_UVD ||
853 parser->job->ring->type == AMDGPU_RING_TYPE_VCE))
854 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400855
856 return 0;
857}
858
Christian König2b48d322015-06-19 17:31:29 +0200859static int amdgpu_cs_dependencies(struct amdgpu_device *adev,
860 struct amdgpu_cs_parser *p)
861{
Christian König76a1ea62015-07-06 19:42:10 +0200862 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
Christian König2b48d322015-06-19 17:31:29 +0200863 int i, j, r;
864
Christian König2b48d322015-06-19 17:31:29 +0200865 for (i = 0; i < p->nchunks; ++i) {
866 struct drm_amdgpu_cs_chunk_dep *deps;
867 struct amdgpu_cs_chunk *chunk;
868 unsigned num_deps;
869
870 chunk = &p->chunks[i];
871
872 if (chunk->chunk_id != AMDGPU_CHUNK_ID_DEPENDENCIES)
873 continue;
874
875 deps = (struct drm_amdgpu_cs_chunk_dep *)chunk->kdata;
876 num_deps = chunk->length_dw * 4 /
877 sizeof(struct drm_amdgpu_cs_chunk_dep);
878
879 for (j = 0; j < num_deps; ++j) {
Christian König2b48d322015-06-19 17:31:29 +0200880 struct amdgpu_ring *ring;
Christian König76a1ea62015-07-06 19:42:10 +0200881 struct amdgpu_ctx *ctx;
Christian König21c16bf2015-07-07 17:24:49 +0200882 struct fence *fence;
Christian König2b48d322015-06-19 17:31:29 +0200883
884 r = amdgpu_cs_get_ring(adev, deps[j].ip_type,
885 deps[j].ip_instance,
886 deps[j].ring, &ring);
887 if (r)
888 return r;
889
Christian König76a1ea62015-07-06 19:42:10 +0200890 ctx = amdgpu_ctx_get(fpriv, deps[j].ctx_id);
891 if (ctx == NULL)
892 return -EINVAL;
893
Christian König21c16bf2015-07-07 17:24:49 +0200894 fence = amdgpu_ctx_get_fence(ctx, ring,
895 deps[j].handle);
896 if (IS_ERR(fence)) {
897 r = PTR_ERR(fence);
Christian König76a1ea62015-07-06 19:42:10 +0200898 amdgpu_ctx_put(ctx);
Christian König2b48d322015-06-19 17:31:29 +0200899 return r;
Christian König21c16bf2015-07-07 17:24:49 +0200900
901 } else if (fence) {
Christian Könige86f9ce2016-02-08 12:13:05 +0100902 r = amdgpu_sync_fence(adev, &p->job->sync,
903 fence);
Christian König21c16bf2015-07-07 17:24:49 +0200904 fence_put(fence);
905 amdgpu_ctx_put(ctx);
906 if (r)
907 return r;
Christian König76a1ea62015-07-06 19:42:10 +0200908 }
Christian König2b48d322015-06-19 17:31:29 +0200909 }
910 }
911
912 return 0;
913}
914
Christian Königcd75dc62016-01-31 11:30:55 +0100915static int amdgpu_cs_submit(struct amdgpu_cs_parser *p,
916 union drm_amdgpu_cs *cs)
917{
Christian Königb07c60c2016-01-31 12:29:04 +0100918 struct amdgpu_ring *ring = p->job->ring;
Christian König92f25092016-05-06 15:57:42 +0200919 struct amd_sched_entity *entity = &p->ctx->rings[ring->idx].entity;
Christian Königcd75dc62016-01-31 11:30:55 +0100920 struct amdgpu_job *job;
Monk Liue6869412016-03-07 12:49:55 +0800921 int r;
Christian Königcd75dc62016-01-31 11:30:55 +0100922
Christian König50838c82016-02-03 13:44:52 +0100923 job = p->job;
924 p->job = NULL;
Christian Königcd75dc62016-01-31 11:30:55 +0100925
Christian König595a9cd2016-06-30 10:52:03 +0200926 r = amd_sched_job_init(&job->base, &ring->sched, entity, p->filp);
Monk Liue6869412016-03-07 12:49:55 +0800927 if (r) {
Christian Königd71518b2016-02-01 12:20:25 +0100928 amdgpu_job_free(job);
Monk Liue6869412016-03-07 12:49:55 +0800929 return r;
Christian Königcd75dc62016-01-31 11:30:55 +0100930 }
931
Monk Liue6869412016-03-07 12:49:55 +0800932 job->owner = p->filp;
Christian König92f25092016-05-06 15:57:42 +0200933 job->ctx = entity->fence_context;
Christian König595a9cd2016-06-30 10:52:03 +0200934 p->fence = fence_get(&job->base.s_fence->finished);
935 cs->out.handle = amdgpu_ctx_add_fence(p->ctx, ring, p->fence);
Christian König758ac172016-05-06 22:14:00 +0200936 job->uf_sequence = cs->out.handle;
Christian Königa5fb4ec2016-06-29 15:10:31 +0200937 amdgpu_job_free_resources(job);
Christian Königcd75dc62016-01-31 11:30:55 +0100938
939 trace_amdgpu_cs_ioctl(job);
940 amd_sched_entity_push_job(&job->base);
941
942 return 0;
943}
944
Chunming Zhou049fc522015-07-21 14:36:51 +0800945int amdgpu_cs_ioctl(struct drm_device *dev, void *data, struct drm_file *filp)
946{
947 struct amdgpu_device *adev = dev->dev_private;
948 union drm_amdgpu_cs *cs = data;
Christian König7e52a812015-11-04 15:44:39 +0100949 struct amdgpu_cs_parser parser = {};
Christian König26a69802015-08-18 21:09:33 +0200950 bool reserved_buffers = false;
951 int i, r;
Chunming Zhou049fc522015-07-21 14:36:51 +0800952
Christian König0c418f12015-09-01 15:13:53 +0200953 if (!adev->accel_working)
Chunming Zhou049fc522015-07-21 14:36:51 +0800954 return -EBUSY;
Chunming Zhou049fc522015-07-21 14:36:51 +0800955
Christian König7e52a812015-11-04 15:44:39 +0100956 parser.adev = adev;
957 parser.filp = filp;
958
959 r = amdgpu_cs_parser_init(&parser, data);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400960 if (r) {
Chunming Zhou049fc522015-07-21 14:36:51 +0800961 DRM_ERROR("Failed to initialize parser !\n");
Christian König7e52a812015-11-04 15:44:39 +0100962 amdgpu_cs_parser_fini(&parser, r, false);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400963 r = amdgpu_cs_handle_lockup(adev, r);
964 return r;
965 }
Christian König2a7d9bd2015-12-18 20:33:52 +0100966 r = amdgpu_cs_parser_bos(&parser, data);
Christian König26a69802015-08-18 21:09:33 +0200967 if (r == -ENOMEM)
968 DRM_ERROR("Not enough memory for command submission!\n");
969 else if (r && r != -ERESTARTSYS)
970 DRM_ERROR("Failed to process the buffer list %d!\n", r);
971 else if (!r) {
972 reserved_buffers = true;
Christian König7e52a812015-11-04 15:44:39 +0100973 r = amdgpu_cs_ib_fill(adev, &parser);
Christian König26a69802015-08-18 21:09:33 +0200974 }
975
976 if (!r) {
Christian König7e52a812015-11-04 15:44:39 +0100977 r = amdgpu_cs_dependencies(adev, &parser);
Christian König26a69802015-08-18 21:09:33 +0200978 if (r)
979 DRM_ERROR("Failed in the dependencies handling %d!\n", r);
980 }
981
982 if (r)
983 goto out;
984
Christian König50838c82016-02-03 13:44:52 +0100985 for (i = 0; i < parser.job->num_ibs; i++)
Christian König7e52a812015-11-04 15:44:39 +0100986 trace_amdgpu_cs(&parser, i);
Christian König26a69802015-08-18 21:09:33 +0200987
Christian König7e52a812015-11-04 15:44:39 +0100988 r = amdgpu_cs_ib_vm_chunk(adev, &parser);
Chunming Zhou4fe63112015-08-18 16:12:15 +0800989 if (r)
990 goto out;
991
Christian König4acabfe2016-01-31 11:32:04 +0100992 r = amdgpu_cs_submit(&parser, cs);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400993
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400994out:
Christian König7e52a812015-11-04 15:44:39 +0100995 amdgpu_cs_parser_fini(&parser, r, reserved_buffers);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400996 r = amdgpu_cs_handle_lockup(adev, r);
997 return r;
998}
999
1000/**
1001 * amdgpu_cs_wait_ioctl - wait for a command submission to finish
1002 *
1003 * @dev: drm device
1004 * @data: data from userspace
1005 * @filp: file private
1006 *
1007 * Wait for the command submission identified by handle to finish.
1008 */
1009int amdgpu_cs_wait_ioctl(struct drm_device *dev, void *data,
1010 struct drm_file *filp)
1011{
1012 union drm_amdgpu_wait_cs *wait = data;
1013 struct amdgpu_device *adev = dev->dev_private;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001014 unsigned long timeout = amdgpu_gem_timeout(wait->in.timeout);
Christian König03507c42015-06-19 17:00:19 +02001015 struct amdgpu_ring *ring = NULL;
Jammy Zhou66b3cf22015-05-08 17:29:40 +08001016 struct amdgpu_ctx *ctx;
Christian König21c16bf2015-07-07 17:24:49 +02001017 struct fence *fence;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001018 long r;
1019
Christian König21c16bf2015-07-07 17:24:49 +02001020 r = amdgpu_cs_get_ring(adev, wait->in.ip_type, wait->in.ip_instance,
1021 wait->in.ring, &ring);
1022 if (r)
1023 return r;
1024
Jammy Zhou66b3cf22015-05-08 17:29:40 +08001025 ctx = amdgpu_ctx_get(filp->driver_priv, wait->in.ctx_id);
1026 if (ctx == NULL)
1027 return -EINVAL;
Chunming Zhou4b559c92015-07-21 15:53:04 +08001028
1029 fence = amdgpu_ctx_get_fence(ctx, ring, wait->in.handle);
1030 if (IS_ERR(fence))
1031 r = PTR_ERR(fence);
1032 else if (fence) {
1033 r = fence_wait_timeout(fence, true, timeout);
1034 fence_put(fence);
1035 } else
Christian König21c16bf2015-07-07 17:24:49 +02001036 r = 1;
1037
Jammy Zhou66b3cf22015-05-08 17:29:40 +08001038 amdgpu_ctx_put(ctx);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001039 if (r < 0)
1040 return r;
1041
1042 memset(wait, 0, sizeof(*wait));
1043 wait->out.status = (r == 0);
1044
1045 return 0;
1046}
1047
1048/**
1049 * amdgpu_cs_find_bo_va - find bo_va for VM address
1050 *
1051 * @parser: command submission parser context
1052 * @addr: VM address
1053 * @bo: resulting BO of the mapping found
1054 *
1055 * Search the buffer objects in the command submission context for a certain
1056 * virtual memory address. Returns allocation structure when found, NULL
1057 * otherwise.
1058 */
1059struct amdgpu_bo_va_mapping *
1060amdgpu_cs_find_mapping(struct amdgpu_cs_parser *parser,
1061 uint64_t addr, struct amdgpu_bo **bo)
1062{
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001063 struct amdgpu_bo_va_mapping *mapping;
Christian König15486fd22015-12-22 16:06:12 +01001064 unsigned i;
1065
1066 if (!parser->bo_list)
1067 return NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001068
1069 addr /= AMDGPU_GPU_PAGE_SIZE;
1070
Christian König15486fd22015-12-22 16:06:12 +01001071 for (i = 0; i < parser->bo_list->num_entries; i++) {
1072 struct amdgpu_bo_list_entry *lobj;
1073
1074 lobj = &parser->bo_list->array[i];
1075 if (!lobj->bo_va)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001076 continue;
1077
Christian König15486fd22015-12-22 16:06:12 +01001078 list_for_each_entry(mapping, &lobj->bo_va->valids, list) {
Christian König7fc11952015-07-30 11:53:42 +02001079 if (mapping->it.start > addr ||
1080 addr > mapping->it.last)
1081 continue;
1082
Christian König15486fd22015-12-22 16:06:12 +01001083 *bo = lobj->bo_va->bo;
Christian König7fc11952015-07-30 11:53:42 +02001084 return mapping;
1085 }
1086
Christian König15486fd22015-12-22 16:06:12 +01001087 list_for_each_entry(mapping, &lobj->bo_va->invalids, list) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001088 if (mapping->it.start > addr ||
1089 addr > mapping->it.last)
1090 continue;
1091
Christian König15486fd22015-12-22 16:06:12 +01001092 *bo = lobj->bo_va->bo;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001093 return mapping;
1094 }
1095 }
1096
1097 return NULL;
1098}