blob: 0479ad5a66edde023da726044a4a229e1f27f309 [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
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,
90 struct drm_amdgpu_cs_chunk_fence *fence_data)
91{
92 struct drm_gem_object *gobj;
93 uint32_t handle;
94
95 handle = fence_data->handle;
96 gobj = drm_gem_object_lookup(p->adev->ddev, p->filp,
97 fence_data->handle);
98 if (gobj == NULL)
99 return -EINVAL;
100
101 p->uf.bo = amdgpu_bo_ref(gem_to_amdgpu_bo(gobj));
102 p->uf.offset = fence_data->offset;
103
104 if (amdgpu_ttm_tt_has_userptr(p->uf.bo->tbo.ttm)) {
105 drm_gem_object_unreference_unlocked(gobj);
106 return -EINVAL;
107 }
108
109 p->uf_entry.robj = amdgpu_bo_ref(p->uf.bo);
Christian König91acbeb2015-12-14 16:42:31 +0100110 p->uf_entry.priority = 0;
111 p->uf_entry.tv.bo = &p->uf_entry.robj->tbo;
112 p->uf_entry.tv.shared = true;
113
114 drm_gem_object_unreference_unlocked(gobj);
115 return 0;
116}
117
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400118int amdgpu_cs_parser_init(struct amdgpu_cs_parser *p, void *data)
119{
120 union drm_amdgpu_cs *cs = data;
121 uint64_t *chunk_array_user;
Dan Carpenter1d263472015-09-23 13:59:28 +0300122 uint64_t *chunk_array;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400123 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
Dan Carpenter54313502015-09-25 14:36:55 +0300124 unsigned size;
125 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:
189 p->num_ibs++;
190 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
199 ret = amdgpu_cs_user_fence_chunk(p, (void *)p->chunks[i].kdata);
200 if (ret)
201 goto free_partial_kdata;
202
Christian König9a5e8fb2015-06-23 17:07:03 +0200203 break;
204
Christian König2b48d322015-06-19 17:31:29 +0200205 case AMDGPU_CHUNK_ID_DEPENDENCIES:
206 break;
207
Christian König9a5e8fb2015-06-23 17:07:03 +0200208 default:
Dan Carpenter1d263472015-09-23 13:59:28 +0300209 ret = -EINVAL;
210 goto free_partial_kdata;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400211 }
212 }
213
monk.liue60b3442015-07-17 18:39:25 +0800214
Christian Königb203dd92015-08-18 18:23:16 +0200215 p->ibs = kcalloc(p->num_ibs, sizeof(struct amdgpu_ib), GFP_KERNEL);
Dan Carpenter1d263472015-09-23 13:59:28 +0300216 if (!p->ibs) {
217 ret = -ENOMEM;
218 goto free_all_kdata;
219 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400220
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
238/* Returns how many bytes TTM can move per IB.
239 */
240static u64 amdgpu_cs_get_threshold_for_moves(struct amdgpu_device *adev)
241{
242 u64 real_vram_size = adev->mc.real_vram_size;
243 u64 vram_usage = atomic64_read(&adev->vram_usage);
244
245 /* This function is based on the current VRAM usage.
246 *
247 * - If all of VRAM is free, allow relocating the number of bytes that
248 * is equal to 1/4 of the size of VRAM for this IB.
249
250 * - If more than one half of VRAM is occupied, only allow relocating
251 * 1 MB of data for this IB.
252 *
253 * - From 0 to one half of used VRAM, the threshold decreases
254 * linearly.
255 * __________________
256 * 1/4 of -|\ |
257 * VRAM | \ |
258 * | \ |
259 * | \ |
260 * | \ |
261 * | \ |
262 * | \ |
263 * | \________|1 MB
264 * |----------------|
265 * VRAM 0 % 100 %
266 * used used
267 *
268 * Note: It's a threshold, not a limit. The threshold must be crossed
269 * for buffer relocations to stop, so any buffer of an arbitrary size
270 * can be moved as long as the threshold isn't crossed before
271 * the relocation takes place. We don't want to disable buffer
272 * relocations completely.
273 *
274 * The idea is that buffers should be placed in VRAM at creation time
275 * and TTM should only do a minimum number of relocations during
276 * command submission. In practice, you need to submit at least
277 * a dozen IBs to move all buffers to VRAM if they are in GTT.
278 *
279 * Also, things can get pretty crazy under memory pressure and actual
280 * VRAM usage can change a lot, so playing safe even at 50% does
281 * consistently increase performance.
282 */
283
284 u64 half_vram = real_vram_size >> 1;
285 u64 half_free_vram = vram_usage >= half_vram ? 0 : half_vram - vram_usage;
286 u64 bytes_moved_threshold = half_free_vram >> 1;
287 return max(bytes_moved_threshold, 1024*1024ull);
288}
289
Christian Königf69f90a12015-12-21 19:47:42 +0100290int amdgpu_cs_list_validate(struct amdgpu_cs_parser *p,
Christian Königa5b75052015-09-03 16:40:39 +0200291 struct list_head *validated)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400292{
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400293 struct amdgpu_bo_list_entry *lobj;
Christian Königf69f90a12015-12-21 19:47:42 +0100294 u64 initial_bytes_moved;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400295 int r;
296
Christian Königa5b75052015-09-03 16:40:39 +0200297 list_for_each_entry(lobj, validated, tv.head) {
Christian König36409d122015-12-21 20:31:35 +0100298 struct amdgpu_bo *bo = lobj->robj;
299 uint32_t domain;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400300
Christian König36409d122015-12-21 20:31:35 +0100301 if (bo->pin_count)
302 continue;
303
304 /* Avoid moving this one if we have moved too many buffers
305 * for this IB already.
306 *
307 * Note that this allows moving at least one buffer of
308 * any size, because it doesn't take the current "bo"
309 * into account. We don't want to disallow buffer moves
310 * completely.
311 */
312 if (p->bytes_moved <= p->bytes_moved_threshold)
Christian König1ea863f2015-12-18 22:13:12 +0100313 domain = bo->prefered_domains;
Christian König36409d122015-12-21 20:31:35 +0100314 else
Christian König1ea863f2015-12-18 22:13:12 +0100315 domain = bo->allowed_domains;
Christian König36409d122015-12-21 20:31:35 +0100316
317 retry:
318 amdgpu_ttm_placement_from_domain(bo, domain);
319 initial_bytes_moved = atomic64_read(&bo->adev->num_bytes_moved);
320 r = ttm_bo_validate(&bo->tbo, &bo->placement, true, false);
321 p->bytes_moved += atomic64_read(&bo->adev->num_bytes_moved) -
322 initial_bytes_moved;
323
324 if (unlikely(r)) {
Christian König1ea863f2015-12-18 22:13:12 +0100325 if (r != -ERESTARTSYS && domain != bo->allowed_domains) {
326 domain = bo->allowed_domains;
Christian König36409d122015-12-21 20:31:35 +0100327 goto retry;
328 }
329 return r;
330 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400331 }
332 return 0;
333}
334
Christian König2a7d9bd2015-12-18 20:33:52 +0100335static int amdgpu_cs_parser_bos(struct amdgpu_cs_parser *p,
336 union drm_amdgpu_cs *cs)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400337{
338 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
Christian Königa5b75052015-09-03 16:40:39 +0200339 struct list_head duplicates;
monk.liu840d5142015-04-27 15:19:20 +0800340 bool need_mmap_lock = false;
Christian König636ce252015-12-18 21:26:47 +0100341 int r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400342
Christian König2a7d9bd2015-12-18 20:33:52 +0100343 INIT_LIST_HEAD(&p->validated);
344
345 p->bo_list = amdgpu_bo_list_get(fpriv, cs->in.bo_list_handle);
monk.liu840d5142015-04-27 15:19:20 +0800346 if (p->bo_list) {
347 need_mmap_lock = p->bo_list->has_userptr;
Christian König636ce252015-12-18 21:26:47 +0100348 amdgpu_bo_list_get_list(p->bo_list, &p->validated);
monk.liu840d5142015-04-27 15:19:20 +0800349 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400350
Christian König3c0eea62015-12-11 14:39:05 +0100351 INIT_LIST_HEAD(&duplicates);
Christian König56467eb2015-12-11 15:16:32 +0100352 amdgpu_vm_get_pd_bo(&fpriv->vm, &p->validated, &p->vm_pd);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400353
Christian König91acbeb2015-12-14 16:42:31 +0100354 if (p->uf.bo)
355 list_add(&p->uf_entry.tv.head, &p->validated);
356
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400357 if (need_mmap_lock)
358 down_read(&current->mm->mmap_sem);
359
Christian Königa5b75052015-09-03 16:40:39 +0200360 r = ttm_eu_reserve_buffers(&p->ticket, &p->validated, true, &duplicates);
361 if (unlikely(r != 0))
362 goto error_reserve;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400363
Christian Königee1782c2015-12-11 21:01:23 +0100364 amdgpu_vm_get_pt_bos(&fpriv->vm, &duplicates);
Christian König56467eb2015-12-11 15:16:32 +0100365
Christian Königf69f90a12015-12-21 19:47:42 +0100366 p->bytes_moved_threshold = amdgpu_cs_get_threshold_for_moves(p->adev);
367 p->bytes_moved = 0;
368
369 r = amdgpu_cs_list_validate(p, &duplicates);
Christian Königa5b75052015-09-03 16:40:39 +0200370 if (r)
371 goto error_validate;
372
Christian Königf69f90a12015-12-21 19:47:42 +0100373 r = amdgpu_cs_list_validate(p, &p->validated);
Christian Königa8480302016-01-05 16:03:39 +0100374 if (r)
375 goto error_validate;
376
377 if (p->bo_list) {
378 struct amdgpu_vm *vm = &fpriv->vm;
379 unsigned i;
380
381 for (i = 0; i < p->bo_list->num_entries; i++) {
382 struct amdgpu_bo *bo = p->bo_list->array[i].robj;
383
384 p->bo_list->array[i].bo_va = amdgpu_vm_bo_find(vm, bo);
385 }
386 }
Christian Königa5b75052015-09-03 16:40:39 +0200387
388error_validate:
Christian Königeceb8a12016-01-11 15:35:21 +0100389 if (r) {
390 amdgpu_vm_move_pt_bos_in_lru(p->adev, &fpriv->vm);
Christian Königa5b75052015-09-03 16:40:39 +0200391 ttm_eu_backoff_reservation(&p->ticket, &p->validated);
Christian Königeceb8a12016-01-11 15:35:21 +0100392 }
Christian Königa5b75052015-09-03 16:40:39 +0200393
394error_reserve:
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400395 if (need_mmap_lock)
396 up_read(&current->mm->mmap_sem);
397
398 return r;
399}
400
401static int amdgpu_cs_sync_rings(struct amdgpu_cs_parser *p)
402{
403 struct amdgpu_bo_list_entry *e;
404 int r;
405
406 list_for_each_entry(e, &p->validated, tv.head) {
407 struct reservation_object *resv = e->robj->tbo.resv;
408 r = amdgpu_sync_resv(p->adev, &p->ibs[0].sync, resv, p->filp);
409
410 if (r)
411 return r;
412 }
413 return 0;
414}
415
416static int cmp_size_smaller_first(void *priv, struct list_head *a,
417 struct list_head *b)
418{
419 struct amdgpu_bo_list_entry *la = list_entry(a, struct amdgpu_bo_list_entry, tv.head);
420 struct amdgpu_bo_list_entry *lb = list_entry(b, struct amdgpu_bo_list_entry, tv.head);
421
422 /* Sort A before B if A is smaller. */
423 return (int)la->robj->tbo.num_pages - (int)lb->robj->tbo.num_pages;
424}
425
Christian König984810f2015-11-14 21:05:35 +0100426/**
427 * cs_parser_fini() - clean parser states
428 * @parser: parser structure holding parsing context.
429 * @error: error number
430 *
431 * If error is set than unvalidate buffer, otherwise just free memory
432 * used by parsing context.
433 **/
434static void amdgpu_cs_parser_fini(struct amdgpu_cs_parser *parser, int error, bool backoff)
Chunming Zhou049fc522015-07-21 14:36:51 +0800435{
Christian Königeceb8a12016-01-11 15:35:21 +0100436 struct amdgpu_fpriv *fpriv = parser->filp->driver_priv;
Christian König984810f2015-11-14 21:05:35 +0100437 unsigned i;
438
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400439 if (!error) {
Nicolai Hähnle28b8d662016-01-27 11:04:19 -0500440 amdgpu_vm_move_pt_bos_in_lru(parser->adev, &fpriv->vm);
441
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400442 /* Sort the buffer list from the smallest to largest buffer,
443 * which affects the order of buffers in the LRU list.
444 * This assures that the smallest buffers are added first
445 * to the LRU list, so they are likely to be later evicted
446 * first, instead of large buffers whose eviction is more
447 * expensive.
448 *
449 * This slightly lowers the number of bytes moved by TTM
450 * per frame under memory pressure.
451 */
452 list_sort(NULL, &parser->validated, cmp_size_smaller_first);
453
454 ttm_eu_fence_buffer_objects(&parser->ticket,
Christian König984810f2015-11-14 21:05:35 +0100455 &parser->validated,
456 parser->fence);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400457 } else if (backoff) {
458 ttm_eu_backoff_reservation(&parser->ticket,
459 &parser->validated);
460 }
Christian König984810f2015-11-14 21:05:35 +0100461 fence_put(parser->fence);
Christian König7e52a812015-11-04 15:44:39 +0100462
Christian König3cb485f2015-05-11 15:34:59 +0200463 if (parser->ctx)
464 amdgpu_ctx_put(parser->ctx);
Chunming Zhoua3348bb2015-08-18 16:25:46 +0800465 if (parser->bo_list)
466 amdgpu_bo_list_put(parser->bo_list);
467
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400468 for (i = 0; i < parser->nchunks; i++)
469 drm_free_large(parser->chunks[i].kdata);
470 kfree(parser->chunks);
Christian Könige4a58a22015-11-05 17:00:25 +0100471 if (parser->ibs)
472 for (i = 0; i < parser->num_ibs; i++)
473 amdgpu_ib_free(parser->adev, &parser->ibs[i]);
474 kfree(parser->ibs);
Christian König91acbeb2015-12-14 16:42:31 +0100475 amdgpu_bo_unref(&parser->uf.bo);
476 amdgpu_bo_unref(&parser->uf_entry.robj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400477}
478
479static int amdgpu_bo_vm_update_pte(struct amdgpu_cs_parser *p,
480 struct amdgpu_vm *vm)
481{
482 struct amdgpu_device *adev = p->adev;
483 struct amdgpu_bo_va *bo_va;
484 struct amdgpu_bo *bo;
485 int i, r;
486
487 r = amdgpu_vm_update_page_directory(adev, vm);
488 if (r)
489 return r;
490
Bas Nieuwenhuizen05906de2015-08-14 20:08:40 +0200491 r = amdgpu_sync_fence(adev, &p->ibs[0].sync, vm->page_directory_fence);
492 if (r)
493 return r;
494
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400495 r = amdgpu_vm_clear_freed(adev, vm);
496 if (r)
497 return r;
498
499 if (p->bo_list) {
500 for (i = 0; i < p->bo_list->num_entries; i++) {
Christian König91e1a522015-07-06 22:06:40 +0200501 struct fence *f;
502
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400503 /* ignore duplicates */
504 bo = p->bo_list->array[i].robj;
505 if (!bo)
506 continue;
507
508 bo_va = p->bo_list->array[i].bo_va;
509 if (bo_va == NULL)
510 continue;
511
512 r = amdgpu_vm_bo_update(adev, bo_va, &bo->tbo.mem);
513 if (r)
514 return r;
515
Chunming Zhoubb1e38a42015-08-03 18:19:38 +0800516 f = bo_va->last_pt_update;
Christian König91e1a522015-07-06 22:06:40 +0200517 r = amdgpu_sync_fence(adev, &p->ibs[0].sync, f);
518 if (r)
519 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400520 }
Christian Königb495bd32015-09-10 14:00:35 +0200521
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400522 }
523
Christian Königb495bd32015-09-10 14:00:35 +0200524 r = amdgpu_vm_clear_invalids(adev, vm, &p->ibs[0].sync);
525
526 if (amdgpu_vm_debug && p->bo_list) {
527 /* Invalidate all BOs to test for userspace bugs */
528 for (i = 0; i < p->bo_list->num_entries; i++) {
529 /* ignore duplicates */
530 bo = p->bo_list->array[i].robj;
531 if (!bo)
532 continue;
533
534 amdgpu_vm_bo_invalidate(adev, bo);
535 }
536 }
537
538 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400539}
540
541static int amdgpu_cs_ib_vm_chunk(struct amdgpu_device *adev,
542 struct amdgpu_cs_parser *parser)
543{
544 struct amdgpu_fpriv *fpriv = parser->filp->driver_priv;
545 struct amdgpu_vm *vm = &fpriv->vm;
546 struct amdgpu_ring *ring;
547 int i, r;
548
549 if (parser->num_ibs == 0)
550 return 0;
551
552 /* Only for UVD/VCE VM emulation */
553 for (i = 0; i < parser->num_ibs; i++) {
554 ring = parser->ibs[i].ring;
555 if (ring->funcs->parse_cs) {
556 r = amdgpu_ring_parse_cs(ring, parser, i);
557 if (r)
558 return r;
559 }
560 }
561
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400562 r = amdgpu_bo_vm_update_pte(parser, vm);
Christian König984810f2015-11-14 21:05:35 +0100563 if (!r)
564 amdgpu_cs_sync_rings(parser);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400565
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400566 return r;
567}
568
569static int amdgpu_cs_handle_lockup(struct amdgpu_device *adev, int r)
570{
571 if (r == -EDEADLK) {
572 r = amdgpu_gpu_reset(adev);
573 if (!r)
574 r = -EAGAIN;
575 }
576 return r;
577}
578
579static int amdgpu_cs_ib_fill(struct amdgpu_device *adev,
580 struct amdgpu_cs_parser *parser)
581{
582 struct amdgpu_fpriv *fpriv = parser->filp->driver_priv;
583 struct amdgpu_vm *vm = &fpriv->vm;
584 int i, j;
585 int r;
586
587 for (i = 0, j = 0; i < parser->nchunks && j < parser->num_ibs; i++) {
588 struct amdgpu_cs_chunk *chunk;
589 struct amdgpu_ib *ib;
590 struct drm_amdgpu_cs_chunk_ib *chunk_ib;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400591 struct amdgpu_ring *ring;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400592
593 chunk = &parser->chunks[i];
594 ib = &parser->ibs[j];
595 chunk_ib = (struct drm_amdgpu_cs_chunk_ib *)chunk->kdata;
596
597 if (chunk->chunk_id != AMDGPU_CHUNK_ID_IB)
598 continue;
599
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400600 r = amdgpu_cs_get_ring(adev, chunk_ib->ip_type,
601 chunk_ib->ip_instance, chunk_ib->ring,
602 &ring);
Marek Olšák3ccec532015-06-02 17:44:49 +0200603 if (r)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400604 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400605
606 if (ring->funcs->parse_cs) {
Christian König4802ce12015-06-10 17:20:11 +0200607 struct amdgpu_bo_va_mapping *m;
Marek Olšák3ccec532015-06-02 17:44:49 +0200608 struct amdgpu_bo *aobj = NULL;
Christian König4802ce12015-06-10 17:20:11 +0200609 uint64_t offset;
610 uint8_t *kptr;
Marek Olšák3ccec532015-06-02 17:44:49 +0200611
Christian König4802ce12015-06-10 17:20:11 +0200612 m = amdgpu_cs_find_mapping(parser, chunk_ib->va_start,
613 &aobj);
Marek Olšák3ccec532015-06-02 17:44:49 +0200614 if (!aobj) {
615 DRM_ERROR("IB va_start is invalid\n");
616 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400617 }
618
Christian König4802ce12015-06-10 17:20:11 +0200619 if ((chunk_ib->va_start + chunk_ib->ib_bytes) >
620 (m->it.last + 1) * AMDGPU_GPU_PAGE_SIZE) {
621 DRM_ERROR("IB va_start+ib_bytes is invalid\n");
622 return -EINVAL;
623 }
624
Marek Olšák3ccec532015-06-02 17:44:49 +0200625 /* the IB should be reserved at this point */
Christian König4802ce12015-06-10 17:20:11 +0200626 r = amdgpu_bo_kmap(aobj, (void **)&kptr);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400627 if (r) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400628 return r;
629 }
630
Christian König4802ce12015-06-10 17:20:11 +0200631 offset = ((uint64_t)m->it.start) * AMDGPU_GPU_PAGE_SIZE;
632 kptr += chunk_ib->va_start - offset;
633
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400634 r = amdgpu_ib_get(ring, NULL, chunk_ib->ib_bytes, ib);
635 if (r) {
636 DRM_ERROR("Failed to get ib !\n");
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400637 return r;
638 }
639
640 memcpy(ib->ptr, kptr, chunk_ib->ib_bytes);
641 amdgpu_bo_kunmap(aobj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400642 } else {
643 r = amdgpu_ib_get(ring, vm, 0, ib);
644 if (r) {
645 DRM_ERROR("Failed to get ib !\n");
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400646 return r;
647 }
648
649 ib->gpu_addr = chunk_ib->va_start;
650 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400651
Marek Olšák3ccec532015-06-02 17:44:49 +0200652 ib->length_dw = chunk_ib->ib_bytes / 4;
Jammy Zhoude807f82015-05-11 23:41:41 +0800653 ib->flags = chunk_ib->flags;
Christian König3cb485f2015-05-11 15:34:59 +0200654 ib->ctx = parser->ctx;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400655 j++;
656 }
657
658 if (!parser->num_ibs)
659 return 0;
660
661 /* add GDS resources to first IB */
662 if (parser->bo_list) {
663 struct amdgpu_bo *gds = parser->bo_list->gds_obj;
664 struct amdgpu_bo *gws = parser->bo_list->gws_obj;
665 struct amdgpu_bo *oa = parser->bo_list->oa_obj;
666 struct amdgpu_ib *ib = &parser->ibs[0];
667
668 if (gds) {
669 ib->gds_base = amdgpu_bo_gpu_offset(gds);
670 ib->gds_size = amdgpu_bo_size(gds);
671 }
672 if (gws) {
673 ib->gws_base = amdgpu_bo_gpu_offset(gws);
674 ib->gws_size = amdgpu_bo_size(gws);
675 }
676 if (oa) {
677 ib->oa_base = amdgpu_bo_gpu_offset(oa);
678 ib->oa_size = amdgpu_bo_size(oa);
679 }
680 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400681 /* wrap the last IB with user fence */
682 if (parser->uf.bo) {
683 struct amdgpu_ib *ib = &parser->ibs[parser->num_ibs - 1];
684
685 /* UVD & VCE fw doesn't support user fences */
686 if (ib->ring->type == AMDGPU_RING_TYPE_UVD ||
687 ib->ring->type == AMDGPU_RING_TYPE_VCE)
688 return -EINVAL;
689
690 ib->user = &parser->uf;
691 }
692
693 return 0;
694}
695
Christian König2b48d322015-06-19 17:31:29 +0200696static int amdgpu_cs_dependencies(struct amdgpu_device *adev,
697 struct amdgpu_cs_parser *p)
698{
Christian König76a1ea62015-07-06 19:42:10 +0200699 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
Christian König2b48d322015-06-19 17:31:29 +0200700 struct amdgpu_ib *ib;
701 int i, j, r;
702
703 if (!p->num_ibs)
704 return 0;
705
706 /* Add dependencies to first IB */
707 ib = &p->ibs[0];
708 for (i = 0; i < p->nchunks; ++i) {
709 struct drm_amdgpu_cs_chunk_dep *deps;
710 struct amdgpu_cs_chunk *chunk;
711 unsigned num_deps;
712
713 chunk = &p->chunks[i];
714
715 if (chunk->chunk_id != AMDGPU_CHUNK_ID_DEPENDENCIES)
716 continue;
717
718 deps = (struct drm_amdgpu_cs_chunk_dep *)chunk->kdata;
719 num_deps = chunk->length_dw * 4 /
720 sizeof(struct drm_amdgpu_cs_chunk_dep);
721
722 for (j = 0; j < num_deps; ++j) {
Christian König2b48d322015-06-19 17:31:29 +0200723 struct amdgpu_ring *ring;
Christian König76a1ea62015-07-06 19:42:10 +0200724 struct amdgpu_ctx *ctx;
Christian König21c16bf2015-07-07 17:24:49 +0200725 struct fence *fence;
Christian König2b48d322015-06-19 17:31:29 +0200726
727 r = amdgpu_cs_get_ring(adev, deps[j].ip_type,
728 deps[j].ip_instance,
729 deps[j].ring, &ring);
730 if (r)
731 return r;
732
Christian König76a1ea62015-07-06 19:42:10 +0200733 ctx = amdgpu_ctx_get(fpriv, deps[j].ctx_id);
734 if (ctx == NULL)
735 return -EINVAL;
736
Christian König21c16bf2015-07-07 17:24:49 +0200737 fence = amdgpu_ctx_get_fence(ctx, ring,
738 deps[j].handle);
739 if (IS_ERR(fence)) {
740 r = PTR_ERR(fence);
Christian König76a1ea62015-07-06 19:42:10 +0200741 amdgpu_ctx_put(ctx);
Christian König2b48d322015-06-19 17:31:29 +0200742 return r;
Christian König21c16bf2015-07-07 17:24:49 +0200743
744 } else if (fence) {
745 r = amdgpu_sync_fence(adev, &ib->sync, fence);
746 fence_put(fence);
747 amdgpu_ctx_put(ctx);
748 if (r)
749 return r;
Christian König76a1ea62015-07-06 19:42:10 +0200750 }
Christian König2b48d322015-06-19 17:31:29 +0200751 }
752 }
753
754 return 0;
755}
756
Junwei Zhang4c7eb912015-09-09 09:05:55 +0800757static int amdgpu_cs_free_job(struct amdgpu_job *job)
Chunming Zhoubb977d32015-08-18 15:16:40 +0800758{
759 int i;
Junwei Zhang4c7eb912015-09-09 09:05:55 +0800760 if (job->ibs)
761 for (i = 0; i < job->num_ibs; i++)
762 amdgpu_ib_free(job->adev, &job->ibs[i]);
763 kfree(job->ibs);
764 if (job->uf.bo)
Christian Königf3f17692015-12-03 19:55:52 +0100765 amdgpu_bo_unref(&job->uf.bo);
Chunming Zhoubb977d32015-08-18 15:16:40 +0800766 return 0;
767}
768
Chunming Zhou049fc522015-07-21 14:36:51 +0800769int amdgpu_cs_ioctl(struct drm_device *dev, void *data, struct drm_file *filp)
770{
771 struct amdgpu_device *adev = dev->dev_private;
772 union drm_amdgpu_cs *cs = data;
Christian König7e52a812015-11-04 15:44:39 +0100773 struct amdgpu_cs_parser parser = {};
Christian König26a69802015-08-18 21:09:33 +0200774 bool reserved_buffers = false;
775 int i, r;
Chunming Zhou049fc522015-07-21 14:36:51 +0800776
Christian König0c418f12015-09-01 15:13:53 +0200777 if (!adev->accel_working)
Chunming Zhou049fc522015-07-21 14:36:51 +0800778 return -EBUSY;
Chunming Zhou049fc522015-07-21 14:36:51 +0800779
Christian König7e52a812015-11-04 15:44:39 +0100780 parser.adev = adev;
781 parser.filp = filp;
782
783 r = amdgpu_cs_parser_init(&parser, data);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400784 if (r) {
Chunming Zhou049fc522015-07-21 14:36:51 +0800785 DRM_ERROR("Failed to initialize parser !\n");
Christian König7e52a812015-11-04 15:44:39 +0100786 amdgpu_cs_parser_fini(&parser, r, false);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400787 r = amdgpu_cs_handle_lockup(adev, r);
788 return r;
789 }
Christian König2a7d9bd2015-12-18 20:33:52 +0100790 r = amdgpu_cs_parser_bos(&parser, data);
Christian König26a69802015-08-18 21:09:33 +0200791 if (r == -ENOMEM)
792 DRM_ERROR("Not enough memory for command submission!\n");
793 else if (r && r != -ERESTARTSYS)
794 DRM_ERROR("Failed to process the buffer list %d!\n", r);
795 else if (!r) {
796 reserved_buffers = true;
Christian König7e52a812015-11-04 15:44:39 +0100797 r = amdgpu_cs_ib_fill(adev, &parser);
Christian König26a69802015-08-18 21:09:33 +0200798 }
799
800 if (!r) {
Christian König7e52a812015-11-04 15:44:39 +0100801 r = amdgpu_cs_dependencies(adev, &parser);
Christian König26a69802015-08-18 21:09:33 +0200802 if (r)
803 DRM_ERROR("Failed in the dependencies handling %d!\n", r);
804 }
805
806 if (r)
807 goto out;
808
Christian König7e52a812015-11-04 15:44:39 +0100809 for (i = 0; i < parser.num_ibs; i++)
810 trace_amdgpu_cs(&parser, i);
Christian König26a69802015-08-18 21:09:33 +0200811
Christian König7e52a812015-11-04 15:44:39 +0100812 r = amdgpu_cs_ib_vm_chunk(adev, &parser);
Chunming Zhou4fe63112015-08-18 16:12:15 +0800813 if (r)
814 goto out;
815
Christian König7e52a812015-11-04 15:44:39 +0100816 if (amdgpu_enable_scheduler && parser.num_ibs) {
Christian König7e52a812015-11-04 15:44:39 +0100817 struct amdgpu_ring * ring = parser.ibs->ring;
Christian Könige2840222015-11-05 19:49:48 +0100818 struct amd_sched_fence *fence;
819 struct amdgpu_job *job;
Christian König7e52a812015-11-04 15:44:39 +0100820
Chunming Zhoubb977d32015-08-18 15:16:40 +0800821 job = kzalloc(sizeof(struct amdgpu_job), GFP_KERNEL);
Dan Carpenter4cfdcd92015-11-04 16:25:09 +0300822 if (!job) {
823 r = -ENOMEM;
824 goto out;
825 }
Christian König7e52a812015-11-04 15:44:39 +0100826
Christian König4f839a22015-09-08 20:22:31 +0200827 job->base.sched = &ring->sched;
Christian König7e52a812015-11-04 15:44:39 +0100828 job->base.s_entity = &parser.ctx->rings[ring->idx].entity;
829 job->adev = parser.adev;
Christian Könige2840222015-11-05 19:49:48 +0100830 job->owner = parser.filp;
831 job->free_job = amdgpu_cs_free_job;
832
Christian König5d827302015-11-13 13:04:50 +0100833 job->ibs = parser.ibs;
834 job->num_ibs = parser.num_ibs;
835 parser.ibs = NULL;
836 parser.num_ibs = 0;
837
Chunming Zhoubb977d32015-08-18 15:16:40 +0800838 if (job->ibs[job->num_ibs - 1].user) {
Christian König7e52a812015-11-04 15:44:39 +0100839 job->uf = parser.uf;
Chunming Zhoubb977d32015-08-18 15:16:40 +0800840 job->ibs[job->num_ibs - 1].user = &job->uf;
Christian König7e52a812015-11-04 15:44:39 +0100841 parser.uf.bo = NULL;
Chunming Zhoubb977d32015-08-18 15:16:40 +0800842 }
843
Christian Könige2840222015-11-05 19:49:48 +0100844 fence = amd_sched_fence_create(job->base.s_entity,
845 parser.filp);
846 if (!fence) {
847 r = -ENOMEM;
Chunming Zhoubb977d32015-08-18 15:16:40 +0800848 amdgpu_cs_free_job(job);
849 kfree(job);
Chunming Zhouf556cb0c2015-08-02 11:18:04 +0800850 goto out;
851 }
Christian Könige2840222015-11-05 19:49:48 +0100852 job->base.s_fence = fence;
Christian König984810f2015-11-14 21:05:35 +0100853 parser.fence = fence_get(&fence->base);
Christian Könige2840222015-11-05 19:49:48 +0100854
855 cs->out.handle = amdgpu_ctx_add_fence(parser.ctx, ring,
856 &fence->base);
Christian Könige4a58a22015-11-05 17:00:25 +0100857 job->ibs[job->num_ibs - 1].sequence = cs->out.handle;
Christian Königeb98d1c2015-08-20 17:28:36 +0200858
Chunming Zhou7034dec2015-11-11 14:56:00 +0800859 trace_amdgpu_cs_ioctl(job);
Christian Könige2840222015-11-05 19:49:48 +0100860 amd_sched_entity_push_job(&job->base);
861
Christian König984810f2015-11-14 21:05:35 +0100862 } else {
863 struct amdgpu_fence *fence;
Christian Könige2840222015-11-05 19:49:48 +0100864
Christian König984810f2015-11-14 21:05:35 +0100865 r = amdgpu_ib_schedule(adev, parser.num_ibs, parser.ibs,
866 parser.filp);
867 fence = parser.ibs[parser.num_ibs - 1].fence;
868 parser.fence = fence_get(&fence->base);
869 cs->out.handle = parser.ibs[parser.num_ibs - 1].sequence;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400870 }
871
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400872out:
Christian König7e52a812015-11-04 15:44:39 +0100873 amdgpu_cs_parser_fini(&parser, r, reserved_buffers);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400874 r = amdgpu_cs_handle_lockup(adev, r);
875 return r;
876}
877
878/**
879 * amdgpu_cs_wait_ioctl - wait for a command submission to finish
880 *
881 * @dev: drm device
882 * @data: data from userspace
883 * @filp: file private
884 *
885 * Wait for the command submission identified by handle to finish.
886 */
887int amdgpu_cs_wait_ioctl(struct drm_device *dev, void *data,
888 struct drm_file *filp)
889{
890 union drm_amdgpu_wait_cs *wait = data;
891 struct amdgpu_device *adev = dev->dev_private;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400892 unsigned long timeout = amdgpu_gem_timeout(wait->in.timeout);
Christian König03507c42015-06-19 17:00:19 +0200893 struct amdgpu_ring *ring = NULL;
Jammy Zhou66b3cf22015-05-08 17:29:40 +0800894 struct amdgpu_ctx *ctx;
Christian König21c16bf2015-07-07 17:24:49 +0200895 struct fence *fence;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400896 long r;
897
Christian König21c16bf2015-07-07 17:24:49 +0200898 r = amdgpu_cs_get_ring(adev, wait->in.ip_type, wait->in.ip_instance,
899 wait->in.ring, &ring);
900 if (r)
901 return r;
902
Jammy Zhou66b3cf22015-05-08 17:29:40 +0800903 ctx = amdgpu_ctx_get(filp->driver_priv, wait->in.ctx_id);
904 if (ctx == NULL)
905 return -EINVAL;
Chunming Zhou4b559c92015-07-21 15:53:04 +0800906
907 fence = amdgpu_ctx_get_fence(ctx, ring, wait->in.handle);
908 if (IS_ERR(fence))
909 r = PTR_ERR(fence);
910 else if (fence) {
911 r = fence_wait_timeout(fence, true, timeout);
912 fence_put(fence);
913 } else
Christian König21c16bf2015-07-07 17:24:49 +0200914 r = 1;
915
Jammy Zhou66b3cf22015-05-08 17:29:40 +0800916 amdgpu_ctx_put(ctx);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400917 if (r < 0)
918 return r;
919
920 memset(wait, 0, sizeof(*wait));
921 wait->out.status = (r == 0);
922
923 return 0;
924}
925
926/**
927 * amdgpu_cs_find_bo_va - find bo_va for VM address
928 *
929 * @parser: command submission parser context
930 * @addr: VM address
931 * @bo: resulting BO of the mapping found
932 *
933 * Search the buffer objects in the command submission context for a certain
934 * virtual memory address. Returns allocation structure when found, NULL
935 * otherwise.
936 */
937struct amdgpu_bo_va_mapping *
938amdgpu_cs_find_mapping(struct amdgpu_cs_parser *parser,
939 uint64_t addr, struct amdgpu_bo **bo)
940{
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400941 struct amdgpu_bo_va_mapping *mapping;
Christian König15486fd22015-12-22 16:06:12 +0100942 unsigned i;
943
944 if (!parser->bo_list)
945 return NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400946
947 addr /= AMDGPU_GPU_PAGE_SIZE;
948
Christian König15486fd22015-12-22 16:06:12 +0100949 for (i = 0; i < parser->bo_list->num_entries; i++) {
950 struct amdgpu_bo_list_entry *lobj;
951
952 lobj = &parser->bo_list->array[i];
953 if (!lobj->bo_va)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400954 continue;
955
Christian König15486fd22015-12-22 16:06:12 +0100956 list_for_each_entry(mapping, &lobj->bo_va->valids, list) {
Christian König7fc11952015-07-30 11:53:42 +0200957 if (mapping->it.start > addr ||
958 addr > mapping->it.last)
959 continue;
960
Christian König15486fd22015-12-22 16:06:12 +0100961 *bo = lobj->bo_va->bo;
Christian König7fc11952015-07-30 11:53:42 +0200962 return mapping;
963 }
964
Christian König15486fd22015-12-22 16:06:12 +0100965 list_for_each_entry(mapping, &lobj->bo_va->invalids, list) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400966 if (mapping->it.start > addr ||
967 addr > mapping->it.last)
968 continue;
969
Christian König15486fd22015-12-22 16:06:12 +0100970 *bo = lobj->bo_va->bo;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400971 return mapping;
972 }
973 }
974
975 return NULL;
976}