blob: 7b4823deef3348cad60fd9d393cb3ebac590dd8b [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 */
27#include <linux/list_sort.h>
28#include <drm/drmP.h>
29#include <drm/amdgpu_drm.h>
30#include "amdgpu.h"
31#include "amdgpu_trace.h"
32
33#define AMDGPU_CS_MAX_PRIORITY 32u
34#define AMDGPU_CS_NUM_BUCKETS (AMDGPU_CS_MAX_PRIORITY + 1)
35
36/* This is based on the bucket sort with O(n) time complexity.
37 * An item with priority "i" is added to bucket[i]. The lists are then
38 * concatenated in descending order.
39 */
40struct amdgpu_cs_buckets {
41 struct list_head bucket[AMDGPU_CS_NUM_BUCKETS];
42};
43
44static void amdgpu_cs_buckets_init(struct amdgpu_cs_buckets *b)
45{
46 unsigned i;
47
48 for (i = 0; i < AMDGPU_CS_NUM_BUCKETS; i++)
49 INIT_LIST_HEAD(&b->bucket[i]);
50}
51
52static void amdgpu_cs_buckets_add(struct amdgpu_cs_buckets *b,
53 struct list_head *item, unsigned priority)
54{
55 /* Since buffers which appear sooner in the relocation list are
56 * likely to be used more often than buffers which appear later
57 * in the list, the sort mustn't change the ordering of buffers
58 * with the same priority, i.e. it must be stable.
59 */
60 list_add_tail(item, &b->bucket[min(priority, AMDGPU_CS_MAX_PRIORITY)]);
61}
62
63static void amdgpu_cs_buckets_get_list(struct amdgpu_cs_buckets *b,
64 struct list_head *out_list)
65{
66 unsigned i;
67
68 /* Connect the sorted buckets in the output list. */
69 for (i = 0; i < AMDGPU_CS_NUM_BUCKETS; i++) {
70 list_splice(&b->bucket[i], out_list);
71 }
72}
73
74int amdgpu_cs_get_ring(struct amdgpu_device *adev, u32 ip_type,
75 u32 ip_instance, u32 ring,
76 struct amdgpu_ring **out_ring)
77{
78 /* Right now all IPs have only one instance - multiple rings. */
79 if (ip_instance != 0) {
80 DRM_ERROR("invalid ip instance: %d\n", ip_instance);
81 return -EINVAL;
82 }
83
84 switch (ip_type) {
85 default:
86 DRM_ERROR("unknown ip type: %d\n", ip_type);
87 return -EINVAL;
88 case AMDGPU_HW_IP_GFX:
89 if (ring < adev->gfx.num_gfx_rings) {
90 *out_ring = &adev->gfx.gfx_ring[ring];
91 } else {
92 DRM_ERROR("only %d gfx rings are supported now\n",
93 adev->gfx.num_gfx_rings);
94 return -EINVAL;
95 }
96 break;
97 case AMDGPU_HW_IP_COMPUTE:
98 if (ring < adev->gfx.num_compute_rings) {
99 *out_ring = &adev->gfx.compute_ring[ring];
100 } else {
101 DRM_ERROR("only %d compute rings are supported now\n",
102 adev->gfx.num_compute_rings);
103 return -EINVAL;
104 }
105 break;
106 case AMDGPU_HW_IP_DMA:
107 if (ring < 2) {
108 *out_ring = &adev->sdma[ring].ring;
109 } else {
110 DRM_ERROR("only two SDMA rings are supported\n");
111 return -EINVAL;
112 }
113 break;
114 case AMDGPU_HW_IP_UVD:
115 *out_ring = &adev->uvd.ring;
116 break;
117 case AMDGPU_HW_IP_VCE:
118 if (ring < 2){
119 *out_ring = &adev->vce.ring[ring];
120 } else {
121 DRM_ERROR("only two VCE rings are supported\n");
122 return -EINVAL;
123 }
124 break;
125 }
126 return 0;
127}
128
Chunming Zhou049fc522015-07-21 14:36:51 +0800129struct amdgpu_cs_parser *amdgpu_cs_parser_create(struct amdgpu_device *adev,
130 struct drm_file *filp,
131 struct amdgpu_ctx *ctx,
132 struct amdgpu_ib *ibs,
133 uint32_t num_ibs)
134{
135 struct amdgpu_cs_parser *parser;
136 int i;
137
138 parser = kzalloc(sizeof(struct amdgpu_cs_parser), GFP_KERNEL);
139 if (!parser)
140 return NULL;
141
142 parser->adev = adev;
143 parser->filp = filp;
144 parser->ctx = ctx;
145 parser->ibs = ibs;
146 parser->num_ibs = num_ibs;
Chunming Zhou049fc522015-07-21 14:36:51 +0800147 for (i = 0; i < num_ibs; i++)
148 ibs[i].ctx = ctx;
149
150 return parser;
151}
152
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400153int amdgpu_cs_parser_init(struct amdgpu_cs_parser *p, void *data)
154{
155 union drm_amdgpu_cs *cs = data;
156 uint64_t *chunk_array_user;
157 uint64_t *chunk_array = NULL;
158 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
Chunming Zhou049fc522015-07-21 14:36:51 +0800159 struct amdgpu_bo_list *bo_list = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400160 unsigned size, i;
161 int r = 0;
162
163 if (!cs->in.num_chunks)
164 goto out;
165
Christian König3cb485f2015-05-11 15:34:59 +0200166 p->ctx = amdgpu_ctx_get(fpriv, cs->in.ctx_id);
167 if (!p->ctx) {
168 r = -EINVAL;
169 goto out;
170 }
Chunming Zhou049fc522015-07-21 14:36:51 +0800171 bo_list = amdgpu_bo_list_get(fpriv, cs->in.bo_list_handle);
monk.liu1939e3e2015-08-13 16:19:54 +0800172 if (!amdgpu_enable_scheduler)
Chunming Zhou049fc522015-07-21 14:36:51 +0800173 p->bo_list = bo_list;
monk.liu1939e3e2015-08-13 16:19:54 +0800174 else {
175 if (bo_list && !bo_list->has_userptr) {
176 p->bo_list = amdgpu_bo_list_clone(bo_list);
177 amdgpu_bo_list_put(bo_list);
178 if (!p->bo_list)
179 return -ENOMEM;
180 } else if (bo_list && bo_list->has_userptr)
181 p->bo_list = bo_list;
182 else
183 p->bo_list = NULL;
184 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400185
186 /* get chunks */
187 INIT_LIST_HEAD(&p->validated);
monk.liue60b3442015-07-17 18:39:25 +0800188 chunk_array = kmalloc_array(cs->in.num_chunks, sizeof(uint64_t), GFP_KERNEL);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400189 if (chunk_array == NULL) {
190 r = -ENOMEM;
191 goto out;
192 }
193
monk.liue60b3442015-07-17 18:39:25 +0800194 chunk_array_user = (uint64_t __user *)(cs->in.chunks);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400195 if (copy_from_user(chunk_array, chunk_array_user,
196 sizeof(uint64_t)*cs->in.num_chunks)) {
197 r = -EFAULT;
198 goto out;
199 }
200
201 p->nchunks = cs->in.num_chunks;
monk.liue60b3442015-07-17 18:39:25 +0800202 p->chunks = kmalloc_array(p->nchunks, sizeof(struct amdgpu_cs_chunk),
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400203 GFP_KERNEL);
204 if (p->chunks == NULL) {
205 r = -ENOMEM;
206 goto out;
207 }
208
209 for (i = 0; i < p->nchunks; i++) {
210 struct drm_amdgpu_cs_chunk __user **chunk_ptr = NULL;
211 struct drm_amdgpu_cs_chunk user_chunk;
212 uint32_t __user *cdata;
213
monk.liue60b3442015-07-17 18:39:25 +0800214 chunk_ptr = (void __user *)chunk_array[i];
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400215 if (copy_from_user(&user_chunk, chunk_ptr,
216 sizeof(struct drm_amdgpu_cs_chunk))) {
217 r = -EFAULT;
218 goto out;
219 }
220 p->chunks[i].chunk_id = user_chunk.chunk_id;
221 p->chunks[i].length_dw = user_chunk.length_dw;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400222
223 size = p->chunks[i].length_dw;
monk.liue60b3442015-07-17 18:39:25 +0800224 cdata = (void __user *)user_chunk.chunk_data;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400225 p->chunks[i].user_ptr = cdata;
226
227 p->chunks[i].kdata = drm_malloc_ab(size, sizeof(uint32_t));
228 if (p->chunks[i].kdata == NULL) {
229 r = -ENOMEM;
230 goto out;
231 }
232 size *= sizeof(uint32_t);
233 if (copy_from_user(p->chunks[i].kdata, cdata, size)) {
234 r = -EFAULT;
235 goto out;
236 }
237
Christian König9a5e8fb2015-06-23 17:07:03 +0200238 switch (p->chunks[i].chunk_id) {
239 case AMDGPU_CHUNK_ID_IB:
240 p->num_ibs++;
241 break;
242
243 case AMDGPU_CHUNK_ID_FENCE:
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400244 size = sizeof(struct drm_amdgpu_cs_chunk_fence);
245 if (p->chunks[i].length_dw * sizeof(uint32_t) >= size) {
246 uint32_t handle;
247 struct drm_gem_object *gobj;
248 struct drm_amdgpu_cs_chunk_fence *fence_data;
249
250 fence_data = (void *)p->chunks[i].kdata;
251 handle = fence_data->handle;
252 gobj = drm_gem_object_lookup(p->adev->ddev,
253 p->filp, handle);
254 if (gobj == NULL) {
255 r = -EINVAL;
256 goto out;
257 }
258
259 p->uf.bo = gem_to_amdgpu_bo(gobj);
260 p->uf.offset = fence_data->offset;
261 } else {
262 r = -EINVAL;
263 goto out;
264 }
Christian König9a5e8fb2015-06-23 17:07:03 +0200265 break;
266
Christian König2b48d322015-06-19 17:31:29 +0200267 case AMDGPU_CHUNK_ID_DEPENDENCIES:
268 break;
269
Christian König9a5e8fb2015-06-23 17:07:03 +0200270 default:
271 r = -EINVAL;
272 goto out;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400273 }
274 }
275
monk.liue60b3442015-07-17 18:39:25 +0800276
277 p->ibs = kmalloc_array(p->num_ibs, sizeof(struct amdgpu_ib), GFP_KERNEL);
278 if (!p->ibs)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400279 r = -ENOMEM;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400280
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400281out:
282 kfree(chunk_array);
283 return r;
284}
285
286/* Returns how many bytes TTM can move per IB.
287 */
288static u64 amdgpu_cs_get_threshold_for_moves(struct amdgpu_device *adev)
289{
290 u64 real_vram_size = adev->mc.real_vram_size;
291 u64 vram_usage = atomic64_read(&adev->vram_usage);
292
293 /* This function is based on the current VRAM usage.
294 *
295 * - If all of VRAM is free, allow relocating the number of bytes that
296 * is equal to 1/4 of the size of VRAM for this IB.
297
298 * - If more than one half of VRAM is occupied, only allow relocating
299 * 1 MB of data for this IB.
300 *
301 * - From 0 to one half of used VRAM, the threshold decreases
302 * linearly.
303 * __________________
304 * 1/4 of -|\ |
305 * VRAM | \ |
306 * | \ |
307 * | \ |
308 * | \ |
309 * | \ |
310 * | \ |
311 * | \________|1 MB
312 * |----------------|
313 * VRAM 0 % 100 %
314 * used used
315 *
316 * Note: It's a threshold, not a limit. The threshold must be crossed
317 * for buffer relocations to stop, so any buffer of an arbitrary size
318 * can be moved as long as the threshold isn't crossed before
319 * the relocation takes place. We don't want to disable buffer
320 * relocations completely.
321 *
322 * The idea is that buffers should be placed in VRAM at creation time
323 * and TTM should only do a minimum number of relocations during
324 * command submission. In practice, you need to submit at least
325 * a dozen IBs to move all buffers to VRAM if they are in GTT.
326 *
327 * Also, things can get pretty crazy under memory pressure and actual
328 * VRAM usage can change a lot, so playing safe even at 50% does
329 * consistently increase performance.
330 */
331
332 u64 half_vram = real_vram_size >> 1;
333 u64 half_free_vram = vram_usage >= half_vram ? 0 : half_vram - vram_usage;
334 u64 bytes_moved_threshold = half_free_vram >> 1;
335 return max(bytes_moved_threshold, 1024*1024ull);
336}
337
338int amdgpu_cs_list_validate(struct amdgpu_cs_parser *p)
339{
340 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
341 struct amdgpu_vm *vm = &fpriv->vm;
342 struct amdgpu_device *adev = p->adev;
343 struct amdgpu_bo_list_entry *lobj;
344 struct list_head duplicates;
345 struct amdgpu_bo *bo;
346 u64 bytes_moved = 0, initial_bytes_moved;
347 u64 bytes_moved_threshold = amdgpu_cs_get_threshold_for_moves(adev);
348 int r;
349
350 INIT_LIST_HEAD(&duplicates);
351 r = ttm_eu_reserve_buffers(&p->ticket, &p->validated, true, &duplicates);
352 if (unlikely(r != 0)) {
353 return r;
354 }
355
356 list_for_each_entry(lobj, &p->validated, tv.head) {
357 bo = lobj->robj;
358 if (!bo->pin_count) {
359 u32 domain = lobj->prefered_domains;
360 u32 current_domain =
361 amdgpu_mem_type_to_domain(bo->tbo.mem.mem_type);
362
363 /* Check if this buffer will be moved and don't move it
364 * if we have moved too many buffers for this IB already.
365 *
366 * Note that this allows moving at least one buffer of
367 * any size, because it doesn't take the current "bo"
368 * into account. We don't want to disallow buffer moves
369 * completely.
370 */
371 if (current_domain != AMDGPU_GEM_DOMAIN_CPU &&
372 (domain & current_domain) == 0 && /* will be moved */
373 bytes_moved > bytes_moved_threshold) {
374 /* don't move it */
375 domain = current_domain;
376 }
377
378 retry:
379 amdgpu_ttm_placement_from_domain(bo, domain);
380 initial_bytes_moved = atomic64_read(&adev->num_bytes_moved);
381 r = ttm_bo_validate(&bo->tbo, &bo->placement, true, false);
382 bytes_moved += atomic64_read(&adev->num_bytes_moved) -
383 initial_bytes_moved;
384
385 if (unlikely(r)) {
386 if (r != -ERESTARTSYS && domain != lobj->allowed_domains) {
387 domain = lobj->allowed_domains;
388 goto retry;
389 }
390 ttm_eu_backoff_reservation(&p->ticket, &p->validated);
391 return r;
392 }
393 }
394 lobj->bo_va = amdgpu_vm_bo_find(vm, bo);
395 }
396 return 0;
397}
398
399static int amdgpu_cs_parser_relocs(struct amdgpu_cs_parser *p)
400{
401 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
402 struct amdgpu_cs_buckets buckets;
monk.liu840d5142015-04-27 15:19:20 +0800403 bool need_mmap_lock = false;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400404 int i, r;
405
monk.liu840d5142015-04-27 15:19:20 +0800406 if (p->bo_list) {
407 need_mmap_lock = p->bo_list->has_userptr;
408 amdgpu_cs_buckets_init(&buckets);
409 for (i = 0; i < p->bo_list->num_entries; i++)
410 amdgpu_cs_buckets_add(&buckets, &p->bo_list->array[i].tv.head,
411 p->bo_list->array[i].priority);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400412
monk.liu840d5142015-04-27 15:19:20 +0800413 amdgpu_cs_buckets_get_list(&buckets, &p->validated);
414 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400415
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400416 p->vm_bos = amdgpu_vm_get_bos(p->adev, &fpriv->vm,
417 &p->validated);
418
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400419 if (need_mmap_lock)
420 down_read(&current->mm->mmap_sem);
421
422 r = amdgpu_cs_list_validate(p);
423
424 if (need_mmap_lock)
425 up_read(&current->mm->mmap_sem);
426
427 return r;
428}
429
430static int amdgpu_cs_sync_rings(struct amdgpu_cs_parser *p)
431{
432 struct amdgpu_bo_list_entry *e;
433 int r;
434
435 list_for_each_entry(e, &p->validated, tv.head) {
436 struct reservation_object *resv = e->robj->tbo.resv;
437 r = amdgpu_sync_resv(p->adev, &p->ibs[0].sync, resv, p->filp);
438
439 if (r)
440 return r;
441 }
442 return 0;
443}
444
445static int cmp_size_smaller_first(void *priv, struct list_head *a,
446 struct list_head *b)
447{
448 struct amdgpu_bo_list_entry *la = list_entry(a, struct amdgpu_bo_list_entry, tv.head);
449 struct amdgpu_bo_list_entry *lb = list_entry(b, struct amdgpu_bo_list_entry, tv.head);
450
451 /* Sort A before B if A is smaller. */
452 return (int)la->robj->tbo.num_pages - (int)lb->robj->tbo.num_pages;
453}
454
Chunming Zhou049fc522015-07-21 14:36:51 +0800455static void amdgpu_cs_parser_fini_early(struct amdgpu_cs_parser *parser, int error, bool backoff)
456{
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400457 if (!error) {
458 /* Sort the buffer list from the smallest to largest buffer,
459 * which affects the order of buffers in the LRU list.
460 * This assures that the smallest buffers are added first
461 * to the LRU list, so they are likely to be later evicted
462 * first, instead of large buffers whose eviction is more
463 * expensive.
464 *
465 * This slightly lowers the number of bytes moved by TTM
466 * per frame under memory pressure.
467 */
468 list_sort(NULL, &parser->validated, cmp_size_smaller_first);
469
470 ttm_eu_fence_buffer_objects(&parser->ticket,
471 &parser->validated,
472 &parser->ibs[parser->num_ibs-1].fence->base);
473 } else if (backoff) {
474 ttm_eu_backoff_reservation(&parser->ticket,
475 &parser->validated);
476 }
Chunming Zhou049fc522015-07-21 14:36:51 +0800477}
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400478
Chunming Zhou049fc522015-07-21 14:36:51 +0800479static void amdgpu_cs_parser_fini_late(struct amdgpu_cs_parser *parser)
480{
481 unsigned i;
Christian König3cb485f2015-05-11 15:34:59 +0200482 if (parser->ctx)
483 amdgpu_ctx_put(parser->ctx);
Chunming Zhou049fc522015-07-21 14:36:51 +0800484 if (parser->bo_list) {
monk.liu1939e3e2015-08-13 16:19:54 +0800485 if (amdgpu_enable_scheduler && !parser->bo_list->has_userptr)
Chunming Zhou049fc522015-07-21 14:36:51 +0800486 amdgpu_bo_list_free(parser->bo_list);
487 else
488 amdgpu_bo_list_put(parser->bo_list);
489 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400490 drm_free_large(parser->vm_bos);
491 for (i = 0; i < parser->nchunks; i++)
492 drm_free_large(parser->chunks[i].kdata);
493 kfree(parser->chunks);
Chunming Zhou049fc522015-07-21 14:36:51 +0800494 if (!amdgpu_enable_scheduler)
Chunming Zhoubb977d32015-08-18 15:16:40 +0800495 {
496 if (parser->ibs)
497 for (i = 0; i < parser->num_ibs; i++)
498 amdgpu_ib_free(parser->adev, &parser->ibs[i]);
499 kfree(parser->ibs);
500 if (parser->uf.bo)
501 drm_gem_object_unreference_unlocked(&parser->uf.bo->gem_base);
502 }
503
504 kfree(parser);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400505}
506
Christian König351dba72015-08-03 20:39:12 +0200507/**
508 * cs_parser_fini() - clean parser states
509 * @parser: parser structure holding parsing context.
510 * @error: error number
511 *
512 * If error is set than unvalidate buffer, otherwise just free memory
513 * used by parsing context.
514 **/
515static void amdgpu_cs_parser_fini(struct amdgpu_cs_parser *parser, int error, bool backoff)
516{
517 amdgpu_cs_parser_fini_early(parser, error, backoff);
518 amdgpu_cs_parser_fini_late(parser);
519}
520
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400521static int amdgpu_bo_vm_update_pte(struct amdgpu_cs_parser *p,
522 struct amdgpu_vm *vm)
523{
524 struct amdgpu_device *adev = p->adev;
525 struct amdgpu_bo_va *bo_va;
526 struct amdgpu_bo *bo;
527 int i, r;
528
529 r = amdgpu_vm_update_page_directory(adev, vm);
530 if (r)
531 return r;
532
Bas Nieuwenhuizen05906de2015-08-14 20:08:40 +0200533 r = amdgpu_sync_fence(adev, &p->ibs[0].sync, vm->page_directory_fence);
534 if (r)
535 return r;
536
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400537 r = amdgpu_vm_clear_freed(adev, vm);
538 if (r)
539 return r;
540
541 if (p->bo_list) {
542 for (i = 0; i < p->bo_list->num_entries; i++) {
Christian König91e1a522015-07-06 22:06:40 +0200543 struct fence *f;
544
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400545 /* ignore duplicates */
546 bo = p->bo_list->array[i].robj;
547 if (!bo)
548 continue;
549
550 bo_va = p->bo_list->array[i].bo_va;
551 if (bo_va == NULL)
552 continue;
553
554 r = amdgpu_vm_bo_update(adev, bo_va, &bo->tbo.mem);
555 if (r)
556 return r;
557
Chunming Zhoubb1e38a42015-08-03 18:19:38 +0800558 f = bo_va->last_pt_update;
Christian König91e1a522015-07-06 22:06:40 +0200559 r = amdgpu_sync_fence(adev, &p->ibs[0].sync, f);
560 if (r)
561 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400562 }
563 }
564
monk.liucfe2c972015-05-26 15:01:54 +0800565 return amdgpu_vm_clear_invalids(adev, vm, &p->ibs[0].sync);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400566}
567
568static int amdgpu_cs_ib_vm_chunk(struct amdgpu_device *adev,
569 struct amdgpu_cs_parser *parser)
570{
571 struct amdgpu_fpriv *fpriv = parser->filp->driver_priv;
572 struct amdgpu_vm *vm = &fpriv->vm;
573 struct amdgpu_ring *ring;
574 int i, r;
575
576 if (parser->num_ibs == 0)
577 return 0;
578
579 /* Only for UVD/VCE VM emulation */
580 for (i = 0; i < parser->num_ibs; i++) {
581 ring = parser->ibs[i].ring;
582 if (ring->funcs->parse_cs) {
583 r = amdgpu_ring_parse_cs(ring, parser, i);
584 if (r)
585 return r;
586 }
587 }
588
589 mutex_lock(&vm->mutex);
590 r = amdgpu_bo_vm_update_pte(parser, vm);
591 if (r) {
592 goto out;
593 }
594 amdgpu_cs_sync_rings(parser);
Chunming Zhou049fc522015-07-21 14:36:51 +0800595 if (!amdgpu_enable_scheduler)
596 r = amdgpu_ib_schedule(adev, parser->num_ibs, parser->ibs,
597 parser->filp);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400598
599out:
600 mutex_unlock(&vm->mutex);
601 return r;
602}
603
604static int amdgpu_cs_handle_lockup(struct amdgpu_device *adev, int r)
605{
606 if (r == -EDEADLK) {
607 r = amdgpu_gpu_reset(adev);
608 if (!r)
609 r = -EAGAIN;
610 }
611 return r;
612}
613
614static int amdgpu_cs_ib_fill(struct amdgpu_device *adev,
615 struct amdgpu_cs_parser *parser)
616{
617 struct amdgpu_fpriv *fpriv = parser->filp->driver_priv;
618 struct amdgpu_vm *vm = &fpriv->vm;
619 int i, j;
620 int r;
621
622 for (i = 0, j = 0; i < parser->nchunks && j < parser->num_ibs; i++) {
623 struct amdgpu_cs_chunk *chunk;
624 struct amdgpu_ib *ib;
625 struct drm_amdgpu_cs_chunk_ib *chunk_ib;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400626 struct amdgpu_ring *ring;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400627
628 chunk = &parser->chunks[i];
629 ib = &parser->ibs[j];
630 chunk_ib = (struct drm_amdgpu_cs_chunk_ib *)chunk->kdata;
631
632 if (chunk->chunk_id != AMDGPU_CHUNK_ID_IB)
633 continue;
634
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400635 r = amdgpu_cs_get_ring(adev, chunk_ib->ip_type,
636 chunk_ib->ip_instance, chunk_ib->ring,
637 &ring);
Marek Olšák3ccec532015-06-02 17:44:49 +0200638 if (r)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400639 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400640
641 if (ring->funcs->parse_cs) {
Christian König4802ce12015-06-10 17:20:11 +0200642 struct amdgpu_bo_va_mapping *m;
Marek Olšák3ccec532015-06-02 17:44:49 +0200643 struct amdgpu_bo *aobj = NULL;
Christian König4802ce12015-06-10 17:20:11 +0200644 uint64_t offset;
645 uint8_t *kptr;
Marek Olšák3ccec532015-06-02 17:44:49 +0200646
Christian König4802ce12015-06-10 17:20:11 +0200647 m = amdgpu_cs_find_mapping(parser, chunk_ib->va_start,
648 &aobj);
Marek Olšák3ccec532015-06-02 17:44:49 +0200649 if (!aobj) {
650 DRM_ERROR("IB va_start is invalid\n");
651 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400652 }
653
Christian König4802ce12015-06-10 17:20:11 +0200654 if ((chunk_ib->va_start + chunk_ib->ib_bytes) >
655 (m->it.last + 1) * AMDGPU_GPU_PAGE_SIZE) {
656 DRM_ERROR("IB va_start+ib_bytes is invalid\n");
657 return -EINVAL;
658 }
659
Marek Olšák3ccec532015-06-02 17:44:49 +0200660 /* the IB should be reserved at this point */
Christian König4802ce12015-06-10 17:20:11 +0200661 r = amdgpu_bo_kmap(aobj, (void **)&kptr);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400662 if (r) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400663 return r;
664 }
665
Christian König4802ce12015-06-10 17:20:11 +0200666 offset = ((uint64_t)m->it.start) * AMDGPU_GPU_PAGE_SIZE;
667 kptr += chunk_ib->va_start - offset;
668
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400669 r = amdgpu_ib_get(ring, NULL, chunk_ib->ib_bytes, ib);
670 if (r) {
671 DRM_ERROR("Failed to get ib !\n");
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400672 return r;
673 }
674
675 memcpy(ib->ptr, kptr, chunk_ib->ib_bytes);
676 amdgpu_bo_kunmap(aobj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400677 } else {
678 r = amdgpu_ib_get(ring, vm, 0, ib);
679 if (r) {
680 DRM_ERROR("Failed to get ib !\n");
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400681 return r;
682 }
683
684 ib->gpu_addr = chunk_ib->va_start;
685 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400686
Marek Olšák3ccec532015-06-02 17:44:49 +0200687 ib->length_dw = chunk_ib->ib_bytes / 4;
Jammy Zhoude807f82015-05-11 23:41:41 +0800688 ib->flags = chunk_ib->flags;
Christian König3cb485f2015-05-11 15:34:59 +0200689 ib->ctx = parser->ctx;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400690 j++;
691 }
692
693 if (!parser->num_ibs)
694 return 0;
695
696 /* add GDS resources to first IB */
697 if (parser->bo_list) {
698 struct amdgpu_bo *gds = parser->bo_list->gds_obj;
699 struct amdgpu_bo *gws = parser->bo_list->gws_obj;
700 struct amdgpu_bo *oa = parser->bo_list->oa_obj;
701 struct amdgpu_ib *ib = &parser->ibs[0];
702
703 if (gds) {
704 ib->gds_base = amdgpu_bo_gpu_offset(gds);
705 ib->gds_size = amdgpu_bo_size(gds);
706 }
707 if (gws) {
708 ib->gws_base = amdgpu_bo_gpu_offset(gws);
709 ib->gws_size = amdgpu_bo_size(gws);
710 }
711 if (oa) {
712 ib->oa_base = amdgpu_bo_gpu_offset(oa);
713 ib->oa_size = amdgpu_bo_size(oa);
714 }
715 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400716 /* wrap the last IB with user fence */
717 if (parser->uf.bo) {
718 struct amdgpu_ib *ib = &parser->ibs[parser->num_ibs - 1];
719
720 /* UVD & VCE fw doesn't support user fences */
721 if (ib->ring->type == AMDGPU_RING_TYPE_UVD ||
722 ib->ring->type == AMDGPU_RING_TYPE_VCE)
723 return -EINVAL;
724
725 ib->user = &parser->uf;
726 }
727
728 return 0;
729}
730
Christian König2b48d322015-06-19 17:31:29 +0200731static int amdgpu_cs_dependencies(struct amdgpu_device *adev,
732 struct amdgpu_cs_parser *p)
733{
Christian König76a1ea62015-07-06 19:42:10 +0200734 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
Christian König2b48d322015-06-19 17:31:29 +0200735 struct amdgpu_ib *ib;
736 int i, j, r;
737
738 if (!p->num_ibs)
739 return 0;
740
741 /* Add dependencies to first IB */
742 ib = &p->ibs[0];
743 for (i = 0; i < p->nchunks; ++i) {
744 struct drm_amdgpu_cs_chunk_dep *deps;
745 struct amdgpu_cs_chunk *chunk;
746 unsigned num_deps;
747
748 chunk = &p->chunks[i];
749
750 if (chunk->chunk_id != AMDGPU_CHUNK_ID_DEPENDENCIES)
751 continue;
752
753 deps = (struct drm_amdgpu_cs_chunk_dep *)chunk->kdata;
754 num_deps = chunk->length_dw * 4 /
755 sizeof(struct drm_amdgpu_cs_chunk_dep);
756
757 for (j = 0; j < num_deps; ++j) {
Christian König2b48d322015-06-19 17:31:29 +0200758 struct amdgpu_ring *ring;
Christian König76a1ea62015-07-06 19:42:10 +0200759 struct amdgpu_ctx *ctx;
Christian König21c16bf2015-07-07 17:24:49 +0200760 struct fence *fence;
Christian König2b48d322015-06-19 17:31:29 +0200761
762 r = amdgpu_cs_get_ring(adev, deps[j].ip_type,
763 deps[j].ip_instance,
764 deps[j].ring, &ring);
765 if (r)
766 return r;
767
Christian König76a1ea62015-07-06 19:42:10 +0200768 ctx = amdgpu_ctx_get(fpriv, deps[j].ctx_id);
769 if (ctx == NULL)
770 return -EINVAL;
771
Christian König21c16bf2015-07-07 17:24:49 +0200772 fence = amdgpu_ctx_get_fence(ctx, ring,
773 deps[j].handle);
774 if (IS_ERR(fence)) {
775 r = PTR_ERR(fence);
Christian König76a1ea62015-07-06 19:42:10 +0200776 amdgpu_ctx_put(ctx);
Christian König2b48d322015-06-19 17:31:29 +0200777 return r;
Christian König21c16bf2015-07-07 17:24:49 +0200778
779 } else if (fence) {
780 r = amdgpu_sync_fence(adev, &ib->sync, fence);
781 fence_put(fence);
782 amdgpu_ctx_put(ctx);
783 if (r)
784 return r;
Christian König76a1ea62015-07-06 19:42:10 +0200785 }
Christian König2b48d322015-06-19 17:31:29 +0200786 }
787 }
788
789 return 0;
790}
791
Chunming Zhou049fc522015-07-21 14:36:51 +0800792static int amdgpu_cs_parser_prepare_job(struct amdgpu_cs_parser *sched_job)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400793{
Jammy Zhoudd01d072015-07-30 17:19:52 +0800794 int r, i;
Chunming Zhou049fc522015-07-21 14:36:51 +0800795 struct amdgpu_cs_parser *parser = sched_job;
796 struct amdgpu_device *adev = sched_job->adev;
Jammy Zhoudd01d072015-07-30 17:19:52 +0800797 bool reserved_buffers = false;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400798
Jammy Zhoudd01d072015-07-30 17:19:52 +0800799 r = amdgpu_cs_parser_relocs(parser);
800 if (r) {
801 if (r != -ERESTARTSYS) {
Marek Olšák3ccec532015-06-02 17:44:49 +0200802 if (r == -ENOMEM)
803 DRM_ERROR("Not enough memory for command submission!\n");
804 else
805 DRM_ERROR("Failed to process the buffer list %d!\n", r);
806 }
Christian König2b48d322015-06-19 17:31:29 +0200807 }
808
809 if (!r) {
Marek Olšák3ccec532015-06-02 17:44:49 +0200810 reserved_buffers = true;
Chunming Zhou049fc522015-07-21 14:36:51 +0800811 r = amdgpu_cs_ib_fill(adev, parser);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400812 }
Christian König21c16bf2015-07-07 17:24:49 +0200813 if (!r) {
Chunming Zhou049fc522015-07-21 14:36:51 +0800814 r = amdgpu_cs_dependencies(adev, parser);
Christian König21c16bf2015-07-07 17:24:49 +0200815 if (r)
816 DRM_ERROR("Failed in the dependencies handling %d!\n", r);
817 }
Jammy Zhoudd01d072015-07-30 17:19:52 +0800818 if (r) {
819 amdgpu_cs_parser_fini(parser, r, reserved_buffers);
820 return r;
821 }
Christian König2b48d322015-06-19 17:31:29 +0200822
Jammy Zhoudd01d072015-07-30 17:19:52 +0800823 for (i = 0; i < parser->num_ibs; i++)
824 trace_amdgpu_cs(parser, i);
Chunming Zhou049fc522015-07-21 14:36:51 +0800825
Jammy Zhoudd01d072015-07-30 17:19:52 +0800826 r = amdgpu_cs_ib_vm_chunk(adev, parser);
827 return r;
Chunming Zhou049fc522015-07-21 14:36:51 +0800828}
829
830static struct amdgpu_ring *amdgpu_cs_parser_get_ring(
831 struct amdgpu_device *adev,
832 struct amdgpu_cs_parser *parser)
833{
834 int i, r;
835
836 struct amdgpu_cs_chunk *chunk;
837 struct drm_amdgpu_cs_chunk_ib *chunk_ib;
838 struct amdgpu_ring *ring;
839 for (i = 0; i < parser->nchunks; i++) {
840 chunk = &parser->chunks[i];
841 chunk_ib = (struct drm_amdgpu_cs_chunk_ib *)chunk->kdata;
842
843 if (chunk->chunk_id != AMDGPU_CHUNK_ID_IB)
844 continue;
845
846 r = amdgpu_cs_get_ring(adev, chunk_ib->ip_type,
847 chunk_ib->ip_instance, chunk_ib->ring,
848 &ring);
849 if (r)
850 return NULL;
851 break;
852 }
853 return ring;
854}
855
Chunming Zhoubb977d32015-08-18 15:16:40 +0800856static int amdgpu_cs_free_job(struct amdgpu_job *sched_job)
857{
858 int i;
859 amdgpu_ctx_put(sched_job->ctx);
860 if (sched_job->ibs)
861 for (i = 0; i < sched_job->num_ibs; i++)
862 amdgpu_ib_free(sched_job->adev, &sched_job->ibs[i]);
863 kfree(sched_job->ibs);
864 if (sched_job->uf.bo)
865 drm_gem_object_unreference_unlocked(&sched_job->uf.bo->gem_base);
866 return 0;
867}
868
Chunming Zhou049fc522015-07-21 14:36:51 +0800869int amdgpu_cs_ioctl(struct drm_device *dev, void *data, struct drm_file *filp)
870{
871 struct amdgpu_device *adev = dev->dev_private;
872 union drm_amdgpu_cs *cs = data;
873 struct amdgpu_cs_parser *parser;
874 int r;
875
876 down_read(&adev->exclusive_lock);
877 if (!adev->accel_working) {
878 up_read(&adev->exclusive_lock);
879 return -EBUSY;
880 }
881
882 parser = amdgpu_cs_parser_create(adev, filp, NULL, NULL, 0);
883 if (!parser)
884 return -ENOMEM;
885 r = amdgpu_cs_parser_init(parser, data);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400886 if (r) {
Chunming Zhou049fc522015-07-21 14:36:51 +0800887 DRM_ERROR("Failed to initialize parser !\n");
888 amdgpu_cs_parser_fini(parser, r, false);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400889 up_read(&adev->exclusive_lock);
890 r = amdgpu_cs_handle_lockup(adev, r);
891 return r;
892 }
893
Chunming Zhou4fe63112015-08-18 16:12:15 +0800894 r = amdgpu_cs_parser_prepare_job(parser);
895 if (r)
896 goto out;
897
Chunming Zhou049fc522015-07-21 14:36:51 +0800898 if (amdgpu_enable_scheduler && parser->num_ibs) {
Chunming Zhoubb977d32015-08-18 15:16:40 +0800899 struct amdgpu_job *job;
Chunming Zhou049fc522015-07-21 14:36:51 +0800900 struct amdgpu_ring * ring =
901 amdgpu_cs_parser_get_ring(adev, parser);
Chunming Zhoubb977d32015-08-18 15:16:40 +0800902 job = kzalloc(sizeof(struct amdgpu_job), GFP_KERNEL);
903 if (!job)
904 return -ENOMEM;
905 job->base.sched = ring->scheduler;
906 job->base.s_entity = &parser->ctx->rings[ring->idx].entity;
907 job->adev = parser->adev;
908 job->ibs = parser->ibs;
909 job->num_ibs = parser->num_ibs;
910 job->owner = parser->filp;
911 job->ctx = amdgpu_ctx_get_ref(parser->ctx);
912 mutex_init(&job->job_lock);
913 if (job->ibs[job->num_ibs - 1].user) {
914 memcpy(&job->uf, &parser->uf,
915 sizeof(struct amdgpu_user_fence));
916 job->ibs[job->num_ibs - 1].user = &job->uf;
917 }
918
919 job->free_job = amdgpu_cs_free_job;
920 mutex_lock(&job->job_lock);
921 r = amd_sched_push_job((struct amd_sched_job *)job);
Chunming Zhouf556cb0c2015-08-02 11:18:04 +0800922 if (r) {
Chunming Zhoubb977d32015-08-18 15:16:40 +0800923 mutex_unlock(&job->job_lock);
924 amdgpu_cs_free_job(job);
925 kfree(job);
Chunming Zhouf556cb0c2015-08-02 11:18:04 +0800926 goto out;
927 }
Chunming Zhoubb977d32015-08-18 15:16:40 +0800928 job->ibs[parser->num_ibs - 1].sequence =
929 amdgpu_ctx_add_fence(job->ctx, ring,
930 &job->base.s_fence->base,
931 job->base.s_fence->v_seq);
932 cs->out.handle = job->base.s_fence->v_seq;
Chunming Zhouc3b95d42015-08-14 14:55:27 +0800933 list_sort(NULL, &parser->validated, cmp_size_smaller_first);
934 ttm_eu_fence_buffer_objects(&parser->ticket,
935 &parser->validated,
Chunming Zhoubb977d32015-08-18 15:16:40 +0800936 &job->base.s_fence->base);
Chunming Zhouc3b95d42015-08-14 14:55:27 +0800937
Chunming Zhoubb977d32015-08-18 15:16:40 +0800938 mutex_unlock(&job->job_lock);
939 amdgpu_cs_parser_fini_late(parser);
Chunming Zhou049fc522015-07-21 14:36:51 +0800940 up_read(&adev->exclusive_lock);
941 return 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400942 }
943
Chunming Zhou049fc522015-07-21 14:36:51 +0800944 cs->out.handle = parser->ibs[parser->num_ibs - 1].sequence;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400945out:
Chunming Zhou049fc522015-07-21 14:36:51 +0800946 amdgpu_cs_parser_fini(parser, r, true);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400947 up_read(&adev->exclusive_lock);
948 r = amdgpu_cs_handle_lockup(adev, r);
949 return r;
950}
951
952/**
953 * amdgpu_cs_wait_ioctl - wait for a command submission to finish
954 *
955 * @dev: drm device
956 * @data: data from userspace
957 * @filp: file private
958 *
959 * Wait for the command submission identified by handle to finish.
960 */
961int amdgpu_cs_wait_ioctl(struct drm_device *dev, void *data,
962 struct drm_file *filp)
963{
964 union drm_amdgpu_wait_cs *wait = data;
965 struct amdgpu_device *adev = dev->dev_private;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400966 unsigned long timeout = amdgpu_gem_timeout(wait->in.timeout);
Christian König03507c42015-06-19 17:00:19 +0200967 struct amdgpu_ring *ring = NULL;
Jammy Zhou66b3cf22015-05-08 17:29:40 +0800968 struct amdgpu_ctx *ctx;
Christian König21c16bf2015-07-07 17:24:49 +0200969 struct fence *fence;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400970 long r;
971
Christian König21c16bf2015-07-07 17:24:49 +0200972 r = amdgpu_cs_get_ring(adev, wait->in.ip_type, wait->in.ip_instance,
973 wait->in.ring, &ring);
974 if (r)
975 return r;
976
Jammy Zhou66b3cf22015-05-08 17:29:40 +0800977 ctx = amdgpu_ctx_get(filp->driver_priv, wait->in.ctx_id);
978 if (ctx == NULL)
979 return -EINVAL;
Chunming Zhou4b559c92015-07-21 15:53:04 +0800980
981 fence = amdgpu_ctx_get_fence(ctx, ring, wait->in.handle);
982 if (IS_ERR(fence))
983 r = PTR_ERR(fence);
984 else if (fence) {
985 r = fence_wait_timeout(fence, true, timeout);
986 fence_put(fence);
987 } else
Christian König21c16bf2015-07-07 17:24:49 +0200988 r = 1;
989
Jammy Zhou66b3cf22015-05-08 17:29:40 +0800990 amdgpu_ctx_put(ctx);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400991 if (r < 0)
992 return r;
993
994 memset(wait, 0, sizeof(*wait));
995 wait->out.status = (r == 0);
996
997 return 0;
998}
999
1000/**
1001 * amdgpu_cs_find_bo_va - find bo_va for VM address
1002 *
1003 * @parser: command submission parser context
1004 * @addr: VM address
1005 * @bo: resulting BO of the mapping found
1006 *
1007 * Search the buffer objects in the command submission context for a certain
1008 * virtual memory address. Returns allocation structure when found, NULL
1009 * otherwise.
1010 */
1011struct amdgpu_bo_va_mapping *
1012amdgpu_cs_find_mapping(struct amdgpu_cs_parser *parser,
1013 uint64_t addr, struct amdgpu_bo **bo)
1014{
1015 struct amdgpu_bo_list_entry *reloc;
1016 struct amdgpu_bo_va_mapping *mapping;
1017
1018 addr /= AMDGPU_GPU_PAGE_SIZE;
1019
1020 list_for_each_entry(reloc, &parser->validated, tv.head) {
1021 if (!reloc->bo_va)
1022 continue;
1023
Christian König7fc11952015-07-30 11:53:42 +02001024 list_for_each_entry(mapping, &reloc->bo_va->valids, list) {
1025 if (mapping->it.start > addr ||
1026 addr > mapping->it.last)
1027 continue;
1028
1029 *bo = reloc->bo_va->bo;
1030 return mapping;
1031 }
1032
1033 list_for_each_entry(mapping, &reloc->bo_va->invalids, list) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001034 if (mapping->it.start > addr ||
1035 addr > mapping->it.last)
1036 continue;
1037
1038 *bo = reloc->bo_va->bo;
1039 return mapping;
1040 }
1041 }
1042
1043 return NULL;
1044}