blob: 504ae09d3991dcd9306ceba3c614b26f281695c5 [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önigaa290402016-09-09 11:21:43 +020094 unsigned long size;
Christian König91acbeb2015-12-14 16:42:31 +010095
Chris Wilsona8ad0bd2016-05-09 11:04:54 +010096 gobj = drm_gem_object_lookup(p->filp, data->handle);
Christian König91acbeb2015-12-14 16:42:31 +010097 if (gobj == NULL)
98 return -EINVAL;
99
Christian König758ac172016-05-06 22:14:00 +0200100 p->uf_entry.robj = amdgpu_bo_ref(gem_to_amdgpu_bo(gobj));
Christian König91acbeb2015-12-14 16:42:31 +0100101 p->uf_entry.priority = 0;
102 p->uf_entry.tv.bo = &p->uf_entry.robj->tbo;
103 p->uf_entry.tv.shared = true;
Christian König2f568db2016-02-23 12:36:59 +0100104 p->uf_entry.user_pages = NULL;
Christian Königaa290402016-09-09 11:21:43 +0200105
106 size = amdgpu_bo_size(p->uf_entry.robj);
107 if (size != PAGE_SIZE || (data->offset + 8) > size)
108 return -EINVAL;
109
Christian König758ac172016-05-06 22:14:00 +0200110 *offset = data->offset;
Christian König91acbeb2015-12-14 16:42:31 +0100111
112 drm_gem_object_unreference_unlocked(gobj);
Christian König758ac172016-05-06 22:14:00 +0200113
114 if (amdgpu_ttm_tt_get_usermm(p->uf_entry.robj->tbo.ttm)) {
115 amdgpu_bo_unref(&p->uf_entry.robj);
116 return -EINVAL;
117 }
118
Christian König91acbeb2015-12-14 16:42:31 +0100119 return 0;
120}
121
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400122int amdgpu_cs_parser_init(struct amdgpu_cs_parser *p, void *data)
123{
Christian König4c0b2422016-02-01 11:20:37 +0100124 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
Monk Liuc5637832016-04-19 20:11:32 +0800125 struct amdgpu_vm *vm = &fpriv->vm;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400126 union drm_amdgpu_cs *cs = data;
127 uint64_t *chunk_array_user;
Dan Carpenter1d263472015-09-23 13:59:28 +0300128 uint64_t *chunk_array;
Christian König50838c82016-02-03 13:44:52 +0100129 unsigned size, num_ibs = 0;
Christian König758ac172016-05-06 22:14:00 +0200130 uint32_t uf_offset = 0;
Dan Carpenter54313502015-09-25 14:36:55 +0300131 int i;
Dan Carpenter1d263472015-09-23 13:59:28 +0300132 int ret;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400133
Dan Carpenter1d263472015-09-23 13:59:28 +0300134 if (cs->in.num_chunks == 0)
135 return 0;
136
137 chunk_array = kmalloc_array(cs->in.num_chunks, sizeof(uint64_t), GFP_KERNEL);
138 if (!chunk_array)
139 return -ENOMEM;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400140
Christian König3cb485f2015-05-11 15:34:59 +0200141 p->ctx = amdgpu_ctx_get(fpriv, cs->in.ctx_id);
142 if (!p->ctx) {
Dan Carpenter1d263472015-09-23 13:59:28 +0300143 ret = -EINVAL;
144 goto free_chunk;
Christian König3cb485f2015-05-11 15:34:59 +0200145 }
Dan Carpenter1d263472015-09-23 13:59:28 +0300146
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400147 /* get chunks */
Arnd Bergmann028423b2015-10-07 09:41:27 +0200148 chunk_array_user = (uint64_t __user *)(unsigned long)(cs->in.chunks);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400149 if (copy_from_user(chunk_array, chunk_array_user,
150 sizeof(uint64_t)*cs->in.num_chunks)) {
Dan Carpenter1d263472015-09-23 13:59:28 +0300151 ret = -EFAULT;
Christian König2a7d9bd2015-12-18 20:33:52 +0100152 goto put_ctx;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400153 }
154
155 p->nchunks = cs->in.num_chunks;
monk.liue60b3442015-07-17 18:39:25 +0800156 p->chunks = kmalloc_array(p->nchunks, sizeof(struct amdgpu_cs_chunk),
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400157 GFP_KERNEL);
Dan Carpenter1d263472015-09-23 13:59:28 +0300158 if (!p->chunks) {
159 ret = -ENOMEM;
Christian König2a7d9bd2015-12-18 20:33:52 +0100160 goto put_ctx;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400161 }
162
163 for (i = 0; i < p->nchunks; i++) {
164 struct drm_amdgpu_cs_chunk __user **chunk_ptr = NULL;
165 struct drm_amdgpu_cs_chunk user_chunk;
166 uint32_t __user *cdata;
167
Arnd Bergmann028423b2015-10-07 09:41:27 +0200168 chunk_ptr = (void __user *)(unsigned long)chunk_array[i];
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400169 if (copy_from_user(&user_chunk, chunk_ptr,
170 sizeof(struct drm_amdgpu_cs_chunk))) {
Dan Carpenter1d263472015-09-23 13:59:28 +0300171 ret = -EFAULT;
172 i--;
173 goto free_partial_kdata;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400174 }
175 p->chunks[i].chunk_id = user_chunk.chunk_id;
176 p->chunks[i].length_dw = user_chunk.length_dw;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400177
178 size = p->chunks[i].length_dw;
Arnd Bergmann028423b2015-10-07 09:41:27 +0200179 cdata = (void __user *)(unsigned long)user_chunk.chunk_data;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400180
181 p->chunks[i].kdata = drm_malloc_ab(size, sizeof(uint32_t));
182 if (p->chunks[i].kdata == NULL) {
Dan Carpenter1d263472015-09-23 13:59:28 +0300183 ret = -ENOMEM;
184 i--;
185 goto free_partial_kdata;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400186 }
187 size *= sizeof(uint32_t);
188 if (copy_from_user(p->chunks[i].kdata, cdata, size)) {
Dan Carpenter1d263472015-09-23 13:59:28 +0300189 ret = -EFAULT;
190 goto free_partial_kdata;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400191 }
192
Christian König9a5e8fb2015-06-23 17:07:03 +0200193 switch (p->chunks[i].chunk_id) {
194 case AMDGPU_CHUNK_ID_IB:
Christian König50838c82016-02-03 13:44:52 +0100195 ++num_ibs;
Christian König9a5e8fb2015-06-23 17:07:03 +0200196 break;
197
198 case AMDGPU_CHUNK_ID_FENCE:
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400199 size = sizeof(struct drm_amdgpu_cs_chunk_fence);
Christian König91acbeb2015-12-14 16:42:31 +0100200 if (p->chunks[i].length_dw * sizeof(uint32_t) < size) {
Dan Carpenter1d263472015-09-23 13:59:28 +0300201 ret = -EINVAL;
202 goto free_partial_kdata;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400203 }
Christian König91acbeb2015-12-14 16:42:31 +0100204
Christian König758ac172016-05-06 22:14:00 +0200205 ret = amdgpu_cs_user_fence_chunk(p, p->chunks[i].kdata,
206 &uf_offset);
Christian König91acbeb2015-12-14 16:42:31 +0100207 if (ret)
208 goto free_partial_kdata;
209
Christian König9a5e8fb2015-06-23 17:07:03 +0200210 break;
211
Christian König2b48d322015-06-19 17:31:29 +0200212 case AMDGPU_CHUNK_ID_DEPENDENCIES:
213 break;
214
Christian König9a5e8fb2015-06-23 17:07:03 +0200215 default:
Dan Carpenter1d263472015-09-23 13:59:28 +0300216 ret = -EINVAL;
217 goto free_partial_kdata;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400218 }
219 }
220
Monk Liuc5637832016-04-19 20:11:32 +0800221 ret = amdgpu_job_alloc(p->adev, num_ibs, &p->job, vm);
Christian König50838c82016-02-03 13:44:52 +0100222 if (ret)
Christian König4acabfe2016-01-31 11:32:04 +0100223 goto free_all_kdata;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400224
Christian Königb5f5acb2016-06-29 13:26:41 +0200225 if (p->uf_entry.robj)
226 p->job->uf_addr = uf_offset;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400227 kfree(chunk_array);
Dan Carpenter1d263472015-09-23 13:59:28 +0300228 return 0;
229
230free_all_kdata:
231 i = p->nchunks - 1;
232free_partial_kdata:
233 for (; i >= 0; i--)
234 drm_free_large(p->chunks[i].kdata);
235 kfree(p->chunks);
Christian König2a7d9bd2015-12-18 20:33:52 +0100236put_ctx:
Dan Carpenter1d263472015-09-23 13:59:28 +0300237 amdgpu_ctx_put(p->ctx);
238free_chunk:
239 kfree(chunk_array);
240
241 return ret;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400242}
243
Marek Olšák95844d22016-08-17 23:49:27 +0200244/* Convert microseconds to bytes. */
245static u64 us_to_bytes(struct amdgpu_device *adev, s64 us)
246{
247 if (us <= 0 || !adev->mm_stats.log2_max_MBps)
248 return 0;
249
250 /* Since accum_us is incremented by a million per second, just
251 * multiply it by the number of MB/s to get the number of bytes.
252 */
253 return us << adev->mm_stats.log2_max_MBps;
254}
255
256static s64 bytes_to_us(struct amdgpu_device *adev, u64 bytes)
257{
258 if (!adev->mm_stats.log2_max_MBps)
259 return 0;
260
261 return bytes >> adev->mm_stats.log2_max_MBps;
262}
263
264/* Returns how many bytes TTM can move right now. If no bytes can be moved,
265 * it returns 0. If it returns non-zero, it's OK to move at least one buffer,
266 * which means it can go over the threshold once. If that happens, the driver
267 * will be in debt and no other buffer migrations can be done until that debt
268 * is repaid.
269 *
270 * This approach allows moving a buffer of any size (it's important to allow
271 * that).
272 *
273 * The currency is simply time in microseconds and it increases as the clock
274 * ticks. The accumulated microseconds (us) are converted to bytes and
275 * returned.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400276 */
277static u64 amdgpu_cs_get_threshold_for_moves(struct amdgpu_device *adev)
278{
Marek Olšák95844d22016-08-17 23:49:27 +0200279 s64 time_us, increment_us;
280 u64 max_bytes;
281 u64 free_vram, total_vram, used_vram;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400282
Marek Olšák95844d22016-08-17 23:49:27 +0200283 /* Allow a maximum of 200 accumulated ms. This is basically per-IB
284 * throttling.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400285 *
Marek Olšák95844d22016-08-17 23:49:27 +0200286 * It means that in order to get full max MBps, at least 5 IBs per
287 * second must be submitted and not more than 200ms apart from each
288 * other.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400289 */
Marek Olšák95844d22016-08-17 23:49:27 +0200290 const s64 us_upper_bound = 200000;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400291
Marek Olšák95844d22016-08-17 23:49:27 +0200292 if (!adev->mm_stats.log2_max_MBps)
293 return 0;
294
295 total_vram = adev->mc.real_vram_size - adev->vram_pin_size;
296 used_vram = atomic64_read(&adev->vram_usage);
297 free_vram = used_vram >= total_vram ? 0 : total_vram - used_vram;
298
299 spin_lock(&adev->mm_stats.lock);
300
301 /* Increase the amount of accumulated us. */
302 time_us = ktime_to_us(ktime_get());
303 increment_us = time_us - adev->mm_stats.last_update_us;
304 adev->mm_stats.last_update_us = time_us;
305 adev->mm_stats.accum_us = min(adev->mm_stats.accum_us + increment_us,
306 us_upper_bound);
307
308 /* This prevents the short period of low performance when the VRAM
309 * usage is low and the driver is in debt or doesn't have enough
310 * accumulated us to fill VRAM quickly.
311 *
312 * The situation can occur in these cases:
313 * - a lot of VRAM is freed by userspace
314 * - the presence of a big buffer causes a lot of evictions
315 * (solution: split buffers into smaller ones)
316 *
317 * If 128 MB or 1/8th of VRAM is free, start filling it now by setting
318 * accum_us to a positive number.
319 */
320 if (free_vram >= 128 * 1024 * 1024 || free_vram >= total_vram / 8) {
321 s64 min_us;
322
323 /* Be more aggresive on dGPUs. Try to fill a portion of free
324 * VRAM now.
325 */
326 if (!(adev->flags & AMD_IS_APU))
327 min_us = bytes_to_us(adev, free_vram / 4);
328 else
329 min_us = 0; /* Reset accum_us on APUs. */
330
331 adev->mm_stats.accum_us = max(min_us, adev->mm_stats.accum_us);
332 }
333
334 /* This returns 0 if the driver is in debt to disallow (optional)
335 * buffer moves.
336 */
337 max_bytes = us_to_bytes(adev, adev->mm_stats.accum_us);
338
339 spin_unlock(&adev->mm_stats.lock);
340 return max_bytes;
341}
342
343/* Report how many bytes have really been moved for the last command
344 * submission. This can result in a debt that can stop buffer migrations
345 * temporarily.
346 */
347static void amdgpu_cs_report_moved_bytes(struct amdgpu_device *adev,
348 u64 num_bytes)
349{
350 spin_lock(&adev->mm_stats.lock);
351 adev->mm_stats.accum_us -= bytes_to_us(adev, num_bytes);
352 spin_unlock(&adev->mm_stats.lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400353}
354
Chunming Zhou14fd8332016-08-04 13:05:46 +0800355static int amdgpu_cs_bo_validate(struct amdgpu_cs_parser *p,
356 struct amdgpu_bo *bo)
357{
Christian Königa7d64de2016-09-15 14:58:48 +0200358 struct amdgpu_device *adev = amdgpu_ttm_adev(bo->tbo.bdev);
Chunming Zhou14fd8332016-08-04 13:05:46 +0800359 u64 initial_bytes_moved;
360 uint32_t domain;
361 int r;
362
363 if (bo->pin_count)
364 return 0;
365
Marek Olšák95844d22016-08-17 23:49:27 +0200366 /* Don't move this buffer if we have depleted our allowance
367 * to move it. Don't move anything if the threshold is zero.
Chunming Zhou14fd8332016-08-04 13:05:46 +0800368 */
Marek Olšák95844d22016-08-17 23:49:27 +0200369 if (p->bytes_moved < p->bytes_moved_threshold)
Chunming Zhou14fd8332016-08-04 13:05:46 +0800370 domain = bo->prefered_domains;
371 else
372 domain = bo->allowed_domains;
373
374retry:
375 amdgpu_ttm_placement_from_domain(bo, domain);
Christian Königa7d64de2016-09-15 14:58:48 +0200376 initial_bytes_moved = atomic64_read(&adev->num_bytes_moved);
Chunming Zhou14fd8332016-08-04 13:05:46 +0800377 r = ttm_bo_validate(&bo->tbo, &bo->placement, true, false);
Christian Königa7d64de2016-09-15 14:58:48 +0200378 p->bytes_moved += atomic64_read(&adev->num_bytes_moved) -
Chunming Zhou14fd8332016-08-04 13:05:46 +0800379 initial_bytes_moved;
380
Christian König1abdc3d2016-08-31 17:28:11 +0200381 if (unlikely(r == -ENOMEM) && domain != bo->allowed_domains) {
382 domain = bo->allowed_domains;
383 goto retry;
Chunming Zhou14fd8332016-08-04 13:05:46 +0800384 }
385
386 return r;
387}
388
Christian König662bfa62016-09-01 12:13:18 +0200389/* Last resort, try to evict something from the current working set */
390static bool amdgpu_cs_try_evict(struct amdgpu_cs_parser *p,
391 struct amdgpu_bo_list_entry *lobj)
392{
393 uint32_t domain = lobj->robj->allowed_domains;
394 int r;
395
396 if (!p->evictable)
397 return false;
398
399 for (;&p->evictable->tv.head != &p->validated;
400 p->evictable = list_prev_entry(p->evictable, tv.head)) {
401
402 struct amdgpu_bo_list_entry *candidate = p->evictable;
403 struct amdgpu_bo *bo = candidate->robj;
Christian Königa7d64de2016-09-15 14:58:48 +0200404 struct amdgpu_device *adev = amdgpu_ttm_adev(bo->tbo.bdev);
Christian König662bfa62016-09-01 12:13:18 +0200405 u64 initial_bytes_moved;
406 uint32_t other;
407
408 /* If we reached our current BO we can forget it */
409 if (candidate == lobj)
410 break;
411
412 other = amdgpu_mem_type_to_domain(bo->tbo.mem.mem_type);
413
414 /* Check if this BO is in one of the domains we need space for */
415 if (!(other & domain))
416 continue;
417
418 /* Check if we can move this BO somewhere else */
419 other = bo->allowed_domains & ~domain;
420 if (!other)
421 continue;
422
423 /* Good we can try to move this BO somewhere else */
424 amdgpu_ttm_placement_from_domain(bo, other);
Christian Königa7d64de2016-09-15 14:58:48 +0200425 initial_bytes_moved = atomic64_read(&adev->num_bytes_moved);
Christian König662bfa62016-09-01 12:13:18 +0200426 r = ttm_bo_validate(&bo->tbo, &bo->placement, true, false);
Christian Königa7d64de2016-09-15 14:58:48 +0200427 p->bytes_moved += atomic64_read(&adev->num_bytes_moved) -
Christian König662bfa62016-09-01 12:13:18 +0200428 initial_bytes_moved;
429
430 if (unlikely(r))
431 break;
432
433 p->evictable = list_prev_entry(p->evictable, tv.head);
434 list_move(&candidate->tv.head, &p->validated);
435
436 return true;
437 }
438
439 return false;
440}
441
Baoyou Xie761c2e82016-09-03 13:57:14 +0800442static int amdgpu_cs_list_validate(struct amdgpu_cs_parser *p,
Christian Königa5b75052015-09-03 16:40:39 +0200443 struct list_head *validated)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400444{
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400445 struct amdgpu_bo_list_entry *lobj;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400446 int r;
447
Christian Königa5b75052015-09-03 16:40:39 +0200448 list_for_each_entry(lobj, validated, tv.head) {
Christian König36409d122015-12-21 20:31:35 +0100449 struct amdgpu_bo *bo = lobj->robj;
Christian König2f568db2016-02-23 12:36:59 +0100450 bool binding_userptr = false;
Christian Königcc325d12016-02-08 11:08:35 +0100451 struct mm_struct *usermm;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400452
Christian Königcc325d12016-02-08 11:08:35 +0100453 usermm = amdgpu_ttm_tt_get_usermm(bo->tbo.ttm);
454 if (usermm && usermm != current->mm)
455 return -EPERM;
456
Christian König2f568db2016-02-23 12:36:59 +0100457 /* Check if we have user pages and nobody bound the BO already */
458 if (lobj->user_pages && bo->tbo.ttm->state != tt_bound) {
459 size_t size = sizeof(struct page *);
460
461 size *= bo->tbo.ttm->num_pages;
462 memcpy(bo->tbo.ttm->pages, lobj->user_pages, size);
463 binding_userptr = true;
464 }
465
Christian König662bfa62016-09-01 12:13:18 +0200466 if (p->evictable == lobj)
467 p->evictable = NULL;
468
469 do {
470 r = amdgpu_cs_bo_validate(p, bo);
471 } while (r == -ENOMEM && amdgpu_cs_try_evict(p, lobj));
Chunming Zhou14fd8332016-08-04 13:05:46 +0800472 if (r)
Christian König36409d122015-12-21 20:31:35 +0100473 return r;
Christian König662bfa62016-09-01 12:13:18 +0200474
Chunming Zhou14fd8332016-08-04 13:05:46 +0800475 if (bo->shadow) {
476 r = amdgpu_cs_bo_validate(p, bo);
477 if (r)
478 return r;
Christian König36409d122015-12-21 20:31:35 +0100479 }
Christian König2f568db2016-02-23 12:36:59 +0100480
481 if (binding_userptr) {
482 drm_free_large(lobj->user_pages);
483 lobj->user_pages = NULL;
484 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400485 }
486 return 0;
487}
488
Christian König2a7d9bd2015-12-18 20:33:52 +0100489static int amdgpu_cs_parser_bos(struct amdgpu_cs_parser *p,
490 union drm_amdgpu_cs *cs)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400491{
492 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
Christian König2f568db2016-02-23 12:36:59 +0100493 struct amdgpu_bo_list_entry *e;
Christian Königa5b75052015-09-03 16:40:39 +0200494 struct list_head duplicates;
monk.liu840d5142015-04-27 15:19:20 +0800495 bool need_mmap_lock = false;
Christian König2f568db2016-02-23 12:36:59 +0100496 unsigned i, tries = 10;
Christian König636ce252015-12-18 21:26:47 +0100497 int r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400498
Christian König2a7d9bd2015-12-18 20:33:52 +0100499 INIT_LIST_HEAD(&p->validated);
500
501 p->bo_list = amdgpu_bo_list_get(fpriv, cs->in.bo_list_handle);
monk.liu840d5142015-04-27 15:19:20 +0800502 if (p->bo_list) {
Christian König211dff52016-02-22 15:40:59 +0100503 need_mmap_lock = p->bo_list->first_userptr !=
504 p->bo_list->num_entries;
Christian König636ce252015-12-18 21:26:47 +0100505 amdgpu_bo_list_get_list(p->bo_list, &p->validated);
monk.liu840d5142015-04-27 15:19:20 +0800506 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400507
Christian König3c0eea62015-12-11 14:39:05 +0100508 INIT_LIST_HEAD(&duplicates);
Christian König56467eb2015-12-11 15:16:32 +0100509 amdgpu_vm_get_pd_bo(&fpriv->vm, &p->validated, &p->vm_pd);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400510
Christian König758ac172016-05-06 22:14:00 +0200511 if (p->uf_entry.robj)
Christian König91acbeb2015-12-14 16:42:31 +0100512 list_add(&p->uf_entry.tv.head, &p->validated);
513
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400514 if (need_mmap_lock)
515 down_read(&current->mm->mmap_sem);
516
Christian König2f568db2016-02-23 12:36:59 +0100517 while (1) {
518 struct list_head need_pages;
519 unsigned i;
520
521 r = ttm_eu_reserve_buffers(&p->ticket, &p->validated, true,
522 &duplicates);
Marek Olšákf1037952016-07-30 00:48:39 +0200523 if (unlikely(r != 0)) {
524 DRM_ERROR("ttm_eu_reserve_buffers failed.\n");
Christian König2f568db2016-02-23 12:36:59 +0100525 goto error_free_pages;
Marek Olšákf1037952016-07-30 00:48:39 +0200526 }
Christian König2f568db2016-02-23 12:36:59 +0100527
528 /* Without a BO list we don't have userptr BOs */
529 if (!p->bo_list)
530 break;
531
532 INIT_LIST_HEAD(&need_pages);
533 for (i = p->bo_list->first_userptr;
534 i < p->bo_list->num_entries; ++i) {
535
536 e = &p->bo_list->array[i];
537
538 if (amdgpu_ttm_tt_userptr_invalidated(e->robj->tbo.ttm,
539 &e->user_invalidated) && e->user_pages) {
540
541 /* We acquired a page array, but somebody
542 * invalidated it. Free it an try again
543 */
544 release_pages(e->user_pages,
545 e->robj->tbo.ttm->num_pages,
546 false);
547 drm_free_large(e->user_pages);
548 e->user_pages = NULL;
549 }
550
551 if (e->robj->tbo.ttm->state != tt_bound &&
552 !e->user_pages) {
553 list_del(&e->tv.head);
554 list_add(&e->tv.head, &need_pages);
555
556 amdgpu_bo_unreserve(e->robj);
557 }
558 }
559
560 if (list_empty(&need_pages))
561 break;
562
563 /* Unreserve everything again. */
564 ttm_eu_backoff_reservation(&p->ticket, &p->validated);
565
Marek Olšákf1037952016-07-30 00:48:39 +0200566 /* We tried too many times, just abort */
Christian König2f568db2016-02-23 12:36:59 +0100567 if (!--tries) {
568 r = -EDEADLK;
Marek Olšákf1037952016-07-30 00:48:39 +0200569 DRM_ERROR("deadlock in %s\n", __func__);
Christian König2f568db2016-02-23 12:36:59 +0100570 goto error_free_pages;
571 }
572
573 /* Fill the page arrays for all useptrs. */
574 list_for_each_entry(e, &need_pages, tv.head) {
575 struct ttm_tt *ttm = e->robj->tbo.ttm;
576
577 e->user_pages = drm_calloc_large(ttm->num_pages,
578 sizeof(struct page*));
579 if (!e->user_pages) {
580 r = -ENOMEM;
Marek Olšákf1037952016-07-30 00:48:39 +0200581 DRM_ERROR("calloc failure in %s\n", __func__);
Christian König2f568db2016-02-23 12:36:59 +0100582 goto error_free_pages;
583 }
584
585 r = amdgpu_ttm_tt_get_user_pages(ttm, e->user_pages);
586 if (r) {
Marek Olšákf1037952016-07-30 00:48:39 +0200587 DRM_ERROR("amdgpu_ttm_tt_get_user_pages failed.\n");
Christian König2f568db2016-02-23 12:36:59 +0100588 drm_free_large(e->user_pages);
589 e->user_pages = NULL;
590 goto error_free_pages;
591 }
592 }
593
594 /* And try again. */
595 list_splice(&need_pages, &p->validated);
596 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400597
Christian König5a712a82016-06-21 16:28:15 +0200598 amdgpu_vm_get_pt_bos(p->adev, &fpriv->vm, &duplicates);
Christian König56467eb2015-12-11 15:16:32 +0100599
Christian Königf69f90a12015-12-21 19:47:42 +0100600 p->bytes_moved_threshold = amdgpu_cs_get_threshold_for_moves(p->adev);
601 p->bytes_moved = 0;
Christian König662bfa62016-09-01 12:13:18 +0200602 p->evictable = list_last_entry(&p->validated,
603 struct amdgpu_bo_list_entry,
604 tv.head);
Christian Königf69f90a12015-12-21 19:47:42 +0100605
606 r = amdgpu_cs_list_validate(p, &duplicates);
Marek Olšákf1037952016-07-30 00:48:39 +0200607 if (r) {
608 DRM_ERROR("amdgpu_cs_list_validate(duplicates) failed.\n");
Christian Königa5b75052015-09-03 16:40:39 +0200609 goto error_validate;
Marek Olšákf1037952016-07-30 00:48:39 +0200610 }
Christian Königa5b75052015-09-03 16:40:39 +0200611
Christian Königf69f90a12015-12-21 19:47:42 +0100612 r = amdgpu_cs_list_validate(p, &p->validated);
Marek Olšákf1037952016-07-30 00:48:39 +0200613 if (r) {
614 DRM_ERROR("amdgpu_cs_list_validate(validated) failed.\n");
Christian Königa8480302016-01-05 16:03:39 +0100615 goto error_validate;
Marek Olšákf1037952016-07-30 00:48:39 +0200616 }
Christian Königa8480302016-01-05 16:03:39 +0100617
Marek Olšák95844d22016-08-17 23:49:27 +0200618 amdgpu_cs_report_moved_bytes(p->adev, p->bytes_moved);
619
Christian König5a712a82016-06-21 16:28:15 +0200620 fpriv->vm.last_eviction_counter =
621 atomic64_read(&p->adev->num_evictions);
622
Christian Königa8480302016-01-05 16:03:39 +0100623 if (p->bo_list) {
Christian Königd88bf582016-05-06 17:50:03 +0200624 struct amdgpu_bo *gds = p->bo_list->gds_obj;
625 struct amdgpu_bo *gws = p->bo_list->gws_obj;
626 struct amdgpu_bo *oa = p->bo_list->oa_obj;
Christian Königa8480302016-01-05 16:03:39 +0100627 struct amdgpu_vm *vm = &fpriv->vm;
628 unsigned i;
629
630 for (i = 0; i < p->bo_list->num_entries; i++) {
631 struct amdgpu_bo *bo = p->bo_list->array[i].robj;
632
633 p->bo_list->array[i].bo_va = amdgpu_vm_bo_find(vm, bo);
634 }
Christian Königd88bf582016-05-06 17:50:03 +0200635
636 if (gds) {
637 p->job->gds_base = amdgpu_bo_gpu_offset(gds);
638 p->job->gds_size = amdgpu_bo_size(gds);
639 }
640 if (gws) {
641 p->job->gws_base = amdgpu_bo_gpu_offset(gws);
642 p->job->gws_size = amdgpu_bo_size(gws);
643 }
644 if (oa) {
645 p->job->oa_base = amdgpu_bo_gpu_offset(oa);
646 p->job->oa_size = amdgpu_bo_size(oa);
647 }
Christian Königa8480302016-01-05 16:03:39 +0100648 }
Christian Königa5b75052015-09-03 16:40:39 +0200649
Christian Königc855e252016-09-05 17:00:57 +0200650 if (!r && p->uf_entry.robj) {
651 struct amdgpu_bo *uf = p->uf_entry.robj;
652
Christian Königbb990bb2016-09-09 16:32:33 +0200653 r = amdgpu_ttm_bind(&uf->tbo, &uf->tbo.mem);
Christian Königc855e252016-09-05 17:00:57 +0200654 p->job->uf_addr += amdgpu_bo_gpu_offset(uf);
655 }
Christian Königb5f5acb2016-06-29 13:26:41 +0200656
Christian Königa5b75052015-09-03 16:40:39 +0200657error_validate:
Christian Königeceb8a12016-01-11 15:35:21 +0100658 if (r) {
659 amdgpu_vm_move_pt_bos_in_lru(p->adev, &fpriv->vm);
Christian Königa5b75052015-09-03 16:40:39 +0200660 ttm_eu_backoff_reservation(&p->ticket, &p->validated);
Christian Königeceb8a12016-01-11 15:35:21 +0100661 }
Christian Königa5b75052015-09-03 16:40:39 +0200662
Christian König2f568db2016-02-23 12:36:59 +0100663error_free_pages:
664
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400665 if (need_mmap_lock)
666 up_read(&current->mm->mmap_sem);
667
Christian König2f568db2016-02-23 12:36:59 +0100668 if (p->bo_list) {
669 for (i = p->bo_list->first_userptr;
670 i < p->bo_list->num_entries; ++i) {
671 e = &p->bo_list->array[i];
672
673 if (!e->user_pages)
674 continue;
675
676 release_pages(e->user_pages,
677 e->robj->tbo.ttm->num_pages,
678 false);
679 drm_free_large(e->user_pages);
680 }
681 }
682
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400683 return r;
684}
685
686static int amdgpu_cs_sync_rings(struct amdgpu_cs_parser *p)
687{
688 struct amdgpu_bo_list_entry *e;
689 int r;
690
691 list_for_each_entry(e, &p->validated, tv.head) {
692 struct reservation_object *resv = e->robj->tbo.resv;
Christian Könige86f9ce2016-02-08 12:13:05 +0100693 r = amdgpu_sync_resv(p->adev, &p->job->sync, resv, p->filp);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400694
695 if (r)
696 return r;
697 }
698 return 0;
699}
700
Christian König984810f2015-11-14 21:05:35 +0100701/**
702 * cs_parser_fini() - clean parser states
703 * @parser: parser structure holding parsing context.
704 * @error: error number
705 *
706 * If error is set than unvalidate buffer, otherwise just free memory
707 * used by parsing context.
708 **/
709static void amdgpu_cs_parser_fini(struct amdgpu_cs_parser *parser, int error, bool backoff)
Chunming Zhou049fc522015-07-21 14:36:51 +0800710{
Christian Königeceb8a12016-01-11 15:35:21 +0100711 struct amdgpu_fpriv *fpriv = parser->filp->driver_priv;
Christian König984810f2015-11-14 21:05:35 +0100712 unsigned i;
713
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400714 if (!error) {
Nicolai Hähnle28b8d662016-01-27 11:04:19 -0500715 amdgpu_vm_move_pt_bos_in_lru(parser->adev, &fpriv->vm);
716
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400717 ttm_eu_fence_buffer_objects(&parser->ticket,
Christian König984810f2015-11-14 21:05:35 +0100718 &parser->validated,
719 parser->fence);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400720 } else if (backoff) {
721 ttm_eu_backoff_reservation(&parser->ticket,
722 &parser->validated);
723 }
Christian König984810f2015-11-14 21:05:35 +0100724 fence_put(parser->fence);
Christian König7e52a812015-11-04 15:44:39 +0100725
Christian König3cb485f2015-05-11 15:34:59 +0200726 if (parser->ctx)
727 amdgpu_ctx_put(parser->ctx);
Chunming Zhoua3348bb2015-08-18 16:25:46 +0800728 if (parser->bo_list)
729 amdgpu_bo_list_put(parser->bo_list);
730
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400731 for (i = 0; i < parser->nchunks; i++)
732 drm_free_large(parser->chunks[i].kdata);
733 kfree(parser->chunks);
Christian König50838c82016-02-03 13:44:52 +0100734 if (parser->job)
735 amdgpu_job_free(parser->job);
Christian König91acbeb2015-12-14 16:42:31 +0100736 amdgpu_bo_unref(&parser->uf_entry.robj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400737}
738
739static int amdgpu_bo_vm_update_pte(struct amdgpu_cs_parser *p,
740 struct amdgpu_vm *vm)
741{
742 struct amdgpu_device *adev = p->adev;
743 struct amdgpu_bo_va *bo_va;
744 struct amdgpu_bo *bo;
745 int i, r;
746
747 r = amdgpu_vm_update_page_directory(adev, vm);
748 if (r)
749 return r;
750
Christian Könige86f9ce2016-02-08 12:13:05 +0100751 r = amdgpu_sync_fence(adev, &p->job->sync, vm->page_directory_fence);
Bas Nieuwenhuizen05906de2015-08-14 20:08:40 +0200752 if (r)
753 return r;
754
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400755 r = amdgpu_vm_clear_freed(adev, vm);
756 if (r)
757 return r;
758
759 if (p->bo_list) {
760 for (i = 0; i < p->bo_list->num_entries; i++) {
Christian König91e1a522015-07-06 22:06:40 +0200761 struct fence *f;
762
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400763 /* ignore duplicates */
764 bo = p->bo_list->array[i].robj;
765 if (!bo)
766 continue;
767
768 bo_va = p->bo_list->array[i].bo_va;
769 if (bo_va == NULL)
770 continue;
771
Christian König99e124f2016-08-16 14:43:17 +0200772 r = amdgpu_vm_bo_update(adev, bo_va, false);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400773 if (r)
774 return r;
775
Chunming Zhoubb1e38a42015-08-03 18:19:38 +0800776 f = bo_va->last_pt_update;
Christian Könige86f9ce2016-02-08 12:13:05 +0100777 r = amdgpu_sync_fence(adev, &p->job->sync, f);
Christian König91e1a522015-07-06 22:06:40 +0200778 if (r)
779 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400780 }
Christian Königb495bd32015-09-10 14:00:35 +0200781
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400782 }
783
Christian Könige86f9ce2016-02-08 12:13:05 +0100784 r = amdgpu_vm_clear_invalids(adev, vm, &p->job->sync);
Christian Königb495bd32015-09-10 14:00:35 +0200785
786 if (amdgpu_vm_debug && p->bo_list) {
787 /* Invalidate all BOs to test for userspace bugs */
788 for (i = 0; i < p->bo_list->num_entries; i++) {
789 /* ignore duplicates */
790 bo = p->bo_list->array[i].robj;
791 if (!bo)
792 continue;
793
794 amdgpu_vm_bo_invalidate(adev, bo);
795 }
796 }
797
798 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400799}
800
801static int amdgpu_cs_ib_vm_chunk(struct amdgpu_device *adev,
Christian Königb07c60c2016-01-31 12:29:04 +0100802 struct amdgpu_cs_parser *p)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400803{
Christian Königb07c60c2016-01-31 12:29:04 +0100804 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400805 struct amdgpu_vm *vm = &fpriv->vm;
Christian Königb07c60c2016-01-31 12:29:04 +0100806 struct amdgpu_ring *ring = p->job->ring;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400807 int i, r;
808
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400809 /* Only for UVD/VCE VM emulation */
Christian Königb07c60c2016-01-31 12:29:04 +0100810 if (ring->funcs->parse_cs) {
Christian König9a795882016-06-22 14:25:55 +0200811 p->job->vm = NULL;
Christian Königb07c60c2016-01-31 12:29:04 +0100812 for (i = 0; i < p->job->num_ibs; i++) {
813 r = amdgpu_ring_parse_cs(ring, p, i);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400814 if (r)
815 return r;
816 }
Christian König9a795882016-06-22 14:25:55 +0200817 } else {
818 p->job->vm_pd_addr = amdgpu_bo_gpu_offset(vm->page_directory);
819
820 r = amdgpu_bo_vm_update_pte(p, vm);
821 if (r)
822 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400823 }
824
Christian König9a795882016-06-22 14:25:55 +0200825 return amdgpu_cs_sync_rings(p);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400826}
827
828static int amdgpu_cs_handle_lockup(struct amdgpu_device *adev, int r)
829{
830 if (r == -EDEADLK) {
831 r = amdgpu_gpu_reset(adev);
832 if (!r)
833 r = -EAGAIN;
834 }
835 return r;
836}
837
838static int amdgpu_cs_ib_fill(struct amdgpu_device *adev,
839 struct amdgpu_cs_parser *parser)
840{
841 struct amdgpu_fpriv *fpriv = parser->filp->driver_priv;
842 struct amdgpu_vm *vm = &fpriv->vm;
843 int i, j;
844 int r;
845
Christian König50838c82016-02-03 13:44:52 +0100846 for (i = 0, j = 0; i < parser->nchunks && j < parser->job->num_ibs; i++) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400847 struct amdgpu_cs_chunk *chunk;
848 struct amdgpu_ib *ib;
849 struct drm_amdgpu_cs_chunk_ib *chunk_ib;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400850 struct amdgpu_ring *ring;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400851
852 chunk = &parser->chunks[i];
Christian König50838c82016-02-03 13:44:52 +0100853 ib = &parser->job->ibs[j];
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400854 chunk_ib = (struct drm_amdgpu_cs_chunk_ib *)chunk->kdata;
855
856 if (chunk->chunk_id != AMDGPU_CHUNK_ID_IB)
857 continue;
858
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400859 r = amdgpu_cs_get_ring(adev, chunk_ib->ip_type,
860 chunk_ib->ip_instance, chunk_ib->ring,
861 &ring);
Marek Olšák3ccec532015-06-02 17:44:49 +0200862 if (r)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400863 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400864
Monk Liu753ad492016-08-26 13:28:28 +0800865 if (ib->flags & AMDGPU_IB_FLAG_PREAMBLE) {
866 parser->job->preamble_status |= AMDGPU_PREAMBLE_IB_PRESENT;
867 if (!parser->ctx->preamble_presented) {
868 parser->job->preamble_status |= AMDGPU_PREAMBLE_IB_PRESENT_FIRST;
869 parser->ctx->preamble_presented = true;
870 }
871 }
872
Christian Königb07c60c2016-01-31 12:29:04 +0100873 if (parser->job->ring && parser->job->ring != ring)
874 return -EINVAL;
875
876 parser->job->ring = ring;
877
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400878 if (ring->funcs->parse_cs) {
Christian König4802ce12015-06-10 17:20:11 +0200879 struct amdgpu_bo_va_mapping *m;
Marek Olšák3ccec532015-06-02 17:44:49 +0200880 struct amdgpu_bo *aobj = NULL;
Christian König4802ce12015-06-10 17:20:11 +0200881 uint64_t offset;
882 uint8_t *kptr;
Marek Olšák3ccec532015-06-02 17:44:49 +0200883
Christian König4802ce12015-06-10 17:20:11 +0200884 m = amdgpu_cs_find_mapping(parser, chunk_ib->va_start,
885 &aobj);
Marek Olšák3ccec532015-06-02 17:44:49 +0200886 if (!aobj) {
887 DRM_ERROR("IB va_start is invalid\n");
888 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400889 }
890
Christian König4802ce12015-06-10 17:20:11 +0200891 if ((chunk_ib->va_start + chunk_ib->ib_bytes) >
892 (m->it.last + 1) * AMDGPU_GPU_PAGE_SIZE) {
893 DRM_ERROR("IB va_start+ib_bytes is invalid\n");
894 return -EINVAL;
895 }
896
Marek Olšák3ccec532015-06-02 17:44:49 +0200897 /* the IB should be reserved at this point */
Christian König4802ce12015-06-10 17:20:11 +0200898 r = amdgpu_bo_kmap(aobj, (void **)&kptr);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400899 if (r) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400900 return r;
901 }
902
Christian König4802ce12015-06-10 17:20:11 +0200903 offset = ((uint64_t)m->it.start) * AMDGPU_GPU_PAGE_SIZE;
904 kptr += chunk_ib->va_start - offset;
905
Christian Königb07c60c2016-01-31 12:29:04 +0100906 r = amdgpu_ib_get(adev, NULL, chunk_ib->ib_bytes, ib);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400907 if (r) {
908 DRM_ERROR("Failed to get ib !\n");
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400909 return r;
910 }
911
912 memcpy(ib->ptr, kptr, chunk_ib->ib_bytes);
913 amdgpu_bo_kunmap(aobj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400914 } else {
Christian Königb07c60c2016-01-31 12:29:04 +0100915 r = amdgpu_ib_get(adev, vm, 0, ib);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400916 if (r) {
917 DRM_ERROR("Failed to get ib !\n");
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400918 return r;
919 }
920
921 ib->gpu_addr = chunk_ib->va_start;
922 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400923
Marek Olšák3ccec532015-06-02 17:44:49 +0200924 ib->length_dw = chunk_ib->ib_bytes / 4;
Jammy Zhoude807f82015-05-11 23:41:41 +0800925 ib->flags = chunk_ib->flags;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400926 j++;
927 }
928
Christian König758ac172016-05-06 22:14:00 +0200929 /* UVD & VCE fw doesn't support user fences */
Christian Königb5f5acb2016-06-29 13:26:41 +0200930 if (parser->job->uf_addr && (
Christian König758ac172016-05-06 22:14:00 +0200931 parser->job->ring->type == AMDGPU_RING_TYPE_UVD ||
932 parser->job->ring->type == AMDGPU_RING_TYPE_VCE))
933 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400934
935 return 0;
936}
937
Christian König2b48d322015-06-19 17:31:29 +0200938static int amdgpu_cs_dependencies(struct amdgpu_device *adev,
939 struct amdgpu_cs_parser *p)
940{
Christian König76a1ea62015-07-06 19:42:10 +0200941 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
Christian König2b48d322015-06-19 17:31:29 +0200942 int i, j, r;
943
Christian König2b48d322015-06-19 17:31:29 +0200944 for (i = 0; i < p->nchunks; ++i) {
945 struct drm_amdgpu_cs_chunk_dep *deps;
946 struct amdgpu_cs_chunk *chunk;
947 unsigned num_deps;
948
949 chunk = &p->chunks[i];
950
951 if (chunk->chunk_id != AMDGPU_CHUNK_ID_DEPENDENCIES)
952 continue;
953
954 deps = (struct drm_amdgpu_cs_chunk_dep *)chunk->kdata;
955 num_deps = chunk->length_dw * 4 /
956 sizeof(struct drm_amdgpu_cs_chunk_dep);
957
958 for (j = 0; j < num_deps; ++j) {
Christian König2b48d322015-06-19 17:31:29 +0200959 struct amdgpu_ring *ring;
Christian König76a1ea62015-07-06 19:42:10 +0200960 struct amdgpu_ctx *ctx;
Christian König21c16bf2015-07-07 17:24:49 +0200961 struct fence *fence;
Christian König2b48d322015-06-19 17:31:29 +0200962
963 r = amdgpu_cs_get_ring(adev, deps[j].ip_type,
964 deps[j].ip_instance,
965 deps[j].ring, &ring);
966 if (r)
967 return r;
968
Christian König76a1ea62015-07-06 19:42:10 +0200969 ctx = amdgpu_ctx_get(fpriv, deps[j].ctx_id);
970 if (ctx == NULL)
971 return -EINVAL;
972
Christian König21c16bf2015-07-07 17:24:49 +0200973 fence = amdgpu_ctx_get_fence(ctx, ring,
974 deps[j].handle);
975 if (IS_ERR(fence)) {
976 r = PTR_ERR(fence);
Christian König76a1ea62015-07-06 19:42:10 +0200977 amdgpu_ctx_put(ctx);
Christian König2b48d322015-06-19 17:31:29 +0200978 return r;
Christian König21c16bf2015-07-07 17:24:49 +0200979
980 } else if (fence) {
Christian Könige86f9ce2016-02-08 12:13:05 +0100981 r = amdgpu_sync_fence(adev, &p->job->sync,
982 fence);
Christian König21c16bf2015-07-07 17:24:49 +0200983 fence_put(fence);
984 amdgpu_ctx_put(ctx);
985 if (r)
986 return r;
Christian König76a1ea62015-07-06 19:42:10 +0200987 }
Christian König2b48d322015-06-19 17:31:29 +0200988 }
989 }
990
991 return 0;
992}
993
Christian Königcd75dc62016-01-31 11:30:55 +0100994static int amdgpu_cs_submit(struct amdgpu_cs_parser *p,
995 union drm_amdgpu_cs *cs)
996{
Christian Königb07c60c2016-01-31 12:29:04 +0100997 struct amdgpu_ring *ring = p->job->ring;
Christian König92f25092016-05-06 15:57:42 +0200998 struct amd_sched_entity *entity = &p->ctx->rings[ring->idx].entity;
Christian Königcd75dc62016-01-31 11:30:55 +0100999 struct amdgpu_job *job;
Monk Liue6869412016-03-07 12:49:55 +08001000 int r;
Christian Königcd75dc62016-01-31 11:30:55 +01001001
Christian König50838c82016-02-03 13:44:52 +01001002 job = p->job;
1003 p->job = NULL;
Christian Königcd75dc62016-01-31 11:30:55 +01001004
Christian König595a9cd2016-06-30 10:52:03 +02001005 r = amd_sched_job_init(&job->base, &ring->sched, entity, p->filp);
Monk Liue6869412016-03-07 12:49:55 +08001006 if (r) {
Christian Königd71518b2016-02-01 12:20:25 +01001007 amdgpu_job_free(job);
Monk Liue6869412016-03-07 12:49:55 +08001008 return r;
Christian Königcd75dc62016-01-31 11:30:55 +01001009 }
1010
Monk Liue6869412016-03-07 12:49:55 +08001011 job->owner = p->filp;
Monk Liu3aecd242016-08-25 15:40:48 +08001012 job->fence_ctx = entity->fence_context;
Christian König595a9cd2016-06-30 10:52:03 +02001013 p->fence = fence_get(&job->base.s_fence->finished);
1014 cs->out.handle = amdgpu_ctx_add_fence(p->ctx, ring, p->fence);
Christian König758ac172016-05-06 22:14:00 +02001015 job->uf_sequence = cs->out.handle;
Christian Königa5fb4ec2016-06-29 15:10:31 +02001016 amdgpu_job_free_resources(job);
Christian Königcd75dc62016-01-31 11:30:55 +01001017
1018 trace_amdgpu_cs_ioctl(job);
1019 amd_sched_entity_push_job(&job->base);
1020
1021 return 0;
1022}
1023
Chunming Zhou049fc522015-07-21 14:36:51 +08001024int amdgpu_cs_ioctl(struct drm_device *dev, void *data, struct drm_file *filp)
1025{
1026 struct amdgpu_device *adev = dev->dev_private;
1027 union drm_amdgpu_cs *cs = data;
Christian König7e52a812015-11-04 15:44:39 +01001028 struct amdgpu_cs_parser parser = {};
Christian König26a69802015-08-18 21:09:33 +02001029 bool reserved_buffers = false;
1030 int i, r;
Chunming Zhou049fc522015-07-21 14:36:51 +08001031
Christian König0c418f12015-09-01 15:13:53 +02001032 if (!adev->accel_working)
Chunming Zhou049fc522015-07-21 14:36:51 +08001033 return -EBUSY;
Chunming Zhou049fc522015-07-21 14:36:51 +08001034
Christian König7e52a812015-11-04 15:44:39 +01001035 parser.adev = adev;
1036 parser.filp = filp;
1037
1038 r = amdgpu_cs_parser_init(&parser, data);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001039 if (r) {
Chunming Zhou049fc522015-07-21 14:36:51 +08001040 DRM_ERROR("Failed to initialize parser !\n");
Christian König7e52a812015-11-04 15:44:39 +01001041 amdgpu_cs_parser_fini(&parser, r, false);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001042 r = amdgpu_cs_handle_lockup(adev, r);
1043 return r;
1044 }
Christian König2a7d9bd2015-12-18 20:33:52 +01001045 r = amdgpu_cs_parser_bos(&parser, data);
Christian König26a69802015-08-18 21:09:33 +02001046 if (r == -ENOMEM)
1047 DRM_ERROR("Not enough memory for command submission!\n");
1048 else if (r && r != -ERESTARTSYS)
1049 DRM_ERROR("Failed to process the buffer list %d!\n", r);
1050 else if (!r) {
1051 reserved_buffers = true;
Christian König7e52a812015-11-04 15:44:39 +01001052 r = amdgpu_cs_ib_fill(adev, &parser);
Christian König26a69802015-08-18 21:09:33 +02001053 }
1054
1055 if (!r) {
Christian König7e52a812015-11-04 15:44:39 +01001056 r = amdgpu_cs_dependencies(adev, &parser);
Christian König26a69802015-08-18 21:09:33 +02001057 if (r)
1058 DRM_ERROR("Failed in the dependencies handling %d!\n", r);
1059 }
1060
1061 if (r)
1062 goto out;
1063
Christian König50838c82016-02-03 13:44:52 +01001064 for (i = 0; i < parser.job->num_ibs; i++)
Christian König7e52a812015-11-04 15:44:39 +01001065 trace_amdgpu_cs(&parser, i);
Christian König26a69802015-08-18 21:09:33 +02001066
Christian König7e52a812015-11-04 15:44:39 +01001067 r = amdgpu_cs_ib_vm_chunk(adev, &parser);
Chunming Zhou4fe63112015-08-18 16:12:15 +08001068 if (r)
1069 goto out;
1070
Christian König4acabfe2016-01-31 11:32:04 +01001071 r = amdgpu_cs_submit(&parser, cs);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001072
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001073out:
Christian König7e52a812015-11-04 15:44:39 +01001074 amdgpu_cs_parser_fini(&parser, r, reserved_buffers);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001075 r = amdgpu_cs_handle_lockup(adev, r);
1076 return r;
1077}
1078
1079/**
1080 * amdgpu_cs_wait_ioctl - wait for a command submission to finish
1081 *
1082 * @dev: drm device
1083 * @data: data from userspace
1084 * @filp: file private
1085 *
1086 * Wait for the command submission identified by handle to finish.
1087 */
1088int amdgpu_cs_wait_ioctl(struct drm_device *dev, void *data,
1089 struct drm_file *filp)
1090{
1091 union drm_amdgpu_wait_cs *wait = data;
1092 struct amdgpu_device *adev = dev->dev_private;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001093 unsigned long timeout = amdgpu_gem_timeout(wait->in.timeout);
Christian König03507c42015-06-19 17:00:19 +02001094 struct amdgpu_ring *ring = NULL;
Jammy Zhou66b3cf22015-05-08 17:29:40 +08001095 struct amdgpu_ctx *ctx;
Christian König21c16bf2015-07-07 17:24:49 +02001096 struct fence *fence;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001097 long r;
1098
Christian König21c16bf2015-07-07 17:24:49 +02001099 r = amdgpu_cs_get_ring(adev, wait->in.ip_type, wait->in.ip_instance,
1100 wait->in.ring, &ring);
1101 if (r)
1102 return r;
1103
Jammy Zhou66b3cf22015-05-08 17:29:40 +08001104 ctx = amdgpu_ctx_get(filp->driver_priv, wait->in.ctx_id);
1105 if (ctx == NULL)
1106 return -EINVAL;
Chunming Zhou4b559c92015-07-21 15:53:04 +08001107
1108 fence = amdgpu_ctx_get_fence(ctx, ring, wait->in.handle);
1109 if (IS_ERR(fence))
1110 r = PTR_ERR(fence);
1111 else if (fence) {
1112 r = fence_wait_timeout(fence, true, timeout);
1113 fence_put(fence);
1114 } else
Christian König21c16bf2015-07-07 17:24:49 +02001115 r = 1;
1116
Jammy Zhou66b3cf22015-05-08 17:29:40 +08001117 amdgpu_ctx_put(ctx);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001118 if (r < 0)
1119 return r;
1120
1121 memset(wait, 0, sizeof(*wait));
1122 wait->out.status = (r == 0);
1123
1124 return 0;
1125}
1126
1127/**
1128 * amdgpu_cs_find_bo_va - find bo_va for VM address
1129 *
1130 * @parser: command submission parser context
1131 * @addr: VM address
1132 * @bo: resulting BO of the mapping found
1133 *
1134 * Search the buffer objects in the command submission context for a certain
1135 * virtual memory address. Returns allocation structure when found, NULL
1136 * otherwise.
1137 */
1138struct amdgpu_bo_va_mapping *
1139amdgpu_cs_find_mapping(struct amdgpu_cs_parser *parser,
1140 uint64_t addr, struct amdgpu_bo **bo)
1141{
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001142 struct amdgpu_bo_va_mapping *mapping;
Christian König15486fd22015-12-22 16:06:12 +01001143 unsigned i;
1144
1145 if (!parser->bo_list)
1146 return NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001147
1148 addr /= AMDGPU_GPU_PAGE_SIZE;
1149
Christian König15486fd22015-12-22 16:06:12 +01001150 for (i = 0; i < parser->bo_list->num_entries; i++) {
1151 struct amdgpu_bo_list_entry *lobj;
1152
1153 lobj = &parser->bo_list->array[i];
1154 if (!lobj->bo_va)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001155 continue;
1156
Christian König15486fd22015-12-22 16:06:12 +01001157 list_for_each_entry(mapping, &lobj->bo_va->valids, list) {
Christian König7fc11952015-07-30 11:53:42 +02001158 if (mapping->it.start > addr ||
1159 addr > mapping->it.last)
1160 continue;
1161
Christian König15486fd22015-12-22 16:06:12 +01001162 *bo = lobj->bo_va->bo;
Christian König7fc11952015-07-30 11:53:42 +02001163 return mapping;
1164 }
1165
Christian König15486fd22015-12-22 16:06:12 +01001166 list_for_each_entry(mapping, &lobj->bo_va->invalids, list) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001167 if (mapping->it.start > addr ||
1168 addr > mapping->it.last)
1169 continue;
1170
Christian König15486fd22015-12-22 16:06:12 +01001171 *bo = lobj->bo_va->bo;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001172 return mapping;
1173 }
1174 }
1175
1176 return NULL;
1177}
Christian Königc855e252016-09-05 17:00:57 +02001178
1179/**
1180 * amdgpu_cs_sysvm_access_required - make BOs accessible by the system VM
1181 *
1182 * @parser: command submission parser context
1183 *
1184 * Helper for UVD/VCE VM emulation, make sure BOs are accessible by the system VM.
1185 */
1186int amdgpu_cs_sysvm_access_required(struct amdgpu_cs_parser *parser)
1187{
1188 unsigned i;
1189 int r;
1190
1191 if (!parser->bo_list)
1192 return 0;
1193
1194 for (i = 0; i < parser->bo_list->num_entries; i++) {
1195 struct amdgpu_bo *bo = parser->bo_list->array[i].robj;
1196
Christian Königbb990bb2016-09-09 16:32:33 +02001197 r = amdgpu_ttm_bind(&bo->tbo, &bo->tbo.mem);
Christian Königc855e252016-09-05 17:00:57 +02001198 if (unlikely(r))
1199 return r;
Christian König03f48dd2016-08-15 17:00:22 +02001200
1201 if (bo->flags & AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS)
1202 continue;
1203
1204 bo->flags |= AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS;
1205 amdgpu_ttm_placement_from_domain(bo, bo->allowed_domains);
1206 r = ttm_bo_validate(&bo->tbo, &bo->placement, false, false);
1207 if (unlikely(r))
1208 return r;
Christian Königc855e252016-09-05 17:00:57 +02001209 }
1210
1211 return 0;
1212}