blob: d249e9e0a4ea32c2cd3c2e7a1c1d341cba28c442 [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);
110 p->uf_entry.prefered_domains = AMDGPU_GEM_DOMAIN_GTT;
111 p->uf_entry.allowed_domains = AMDGPU_GEM_DOMAIN_GTT;
112 p->uf_entry.priority = 0;
113 p->uf_entry.tv.bo = &p->uf_entry.robj->tbo;
114 p->uf_entry.tv.shared = true;
115
116 drm_gem_object_unreference_unlocked(gobj);
117 return 0;
118}
119
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400120int amdgpu_cs_parser_init(struct amdgpu_cs_parser *p, void *data)
121{
122 union drm_amdgpu_cs *cs = data;
123 uint64_t *chunk_array_user;
Dan Carpenter1d263472015-09-23 13:59:28 +0300124 uint64_t *chunk_array;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400125 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
Dan Carpenter54313502015-09-25 14:36:55 +0300126 unsigned size;
127 int i;
Dan Carpenter1d263472015-09-23 13:59:28 +0300128 int ret;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400129
Dan Carpenter1d263472015-09-23 13:59:28 +0300130 if (cs->in.num_chunks == 0)
131 return 0;
132
133 chunk_array = kmalloc_array(cs->in.num_chunks, sizeof(uint64_t), GFP_KERNEL);
134 if (!chunk_array)
135 return -ENOMEM;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400136
Christian König3cb485f2015-05-11 15:34:59 +0200137 p->ctx = amdgpu_ctx_get(fpriv, cs->in.ctx_id);
138 if (!p->ctx) {
Dan Carpenter1d263472015-09-23 13:59:28 +0300139 ret = -EINVAL;
140 goto free_chunk;
Christian König3cb485f2015-05-11 15:34:59 +0200141 }
Dan Carpenter1d263472015-09-23 13:59:28 +0300142
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400143 /* get chunks */
Arnd Bergmann028423b2015-10-07 09:41:27 +0200144 chunk_array_user = (uint64_t __user *)(unsigned long)(cs->in.chunks);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400145 if (copy_from_user(chunk_array, chunk_array_user,
146 sizeof(uint64_t)*cs->in.num_chunks)) {
Dan Carpenter1d263472015-09-23 13:59:28 +0300147 ret = -EFAULT;
Christian König2a7d9bd2015-12-18 20:33:52 +0100148 goto put_ctx;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400149 }
150
151 p->nchunks = cs->in.num_chunks;
monk.liue60b3442015-07-17 18:39:25 +0800152 p->chunks = kmalloc_array(p->nchunks, sizeof(struct amdgpu_cs_chunk),
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400153 GFP_KERNEL);
Dan Carpenter1d263472015-09-23 13:59:28 +0300154 if (!p->chunks) {
155 ret = -ENOMEM;
Christian König2a7d9bd2015-12-18 20:33:52 +0100156 goto put_ctx;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400157 }
158
159 for (i = 0; i < p->nchunks; i++) {
160 struct drm_amdgpu_cs_chunk __user **chunk_ptr = NULL;
161 struct drm_amdgpu_cs_chunk user_chunk;
162 uint32_t __user *cdata;
163
Arnd Bergmann028423b2015-10-07 09:41:27 +0200164 chunk_ptr = (void __user *)(unsigned long)chunk_array[i];
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400165 if (copy_from_user(&user_chunk, chunk_ptr,
166 sizeof(struct drm_amdgpu_cs_chunk))) {
Dan Carpenter1d263472015-09-23 13:59:28 +0300167 ret = -EFAULT;
168 i--;
169 goto free_partial_kdata;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400170 }
171 p->chunks[i].chunk_id = user_chunk.chunk_id;
172 p->chunks[i].length_dw = user_chunk.length_dw;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400173
174 size = p->chunks[i].length_dw;
Arnd Bergmann028423b2015-10-07 09:41:27 +0200175 cdata = (void __user *)(unsigned long)user_chunk.chunk_data;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400176
177 p->chunks[i].kdata = drm_malloc_ab(size, sizeof(uint32_t));
178 if (p->chunks[i].kdata == NULL) {
Dan Carpenter1d263472015-09-23 13:59:28 +0300179 ret = -ENOMEM;
180 i--;
181 goto free_partial_kdata;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400182 }
183 size *= sizeof(uint32_t);
184 if (copy_from_user(p->chunks[i].kdata, cdata, size)) {
Dan Carpenter1d263472015-09-23 13:59:28 +0300185 ret = -EFAULT;
186 goto free_partial_kdata;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400187 }
188
Christian König9a5e8fb2015-06-23 17:07:03 +0200189 switch (p->chunks[i].chunk_id) {
190 case AMDGPU_CHUNK_ID_IB:
191 p->num_ibs++;
192 break;
193
194 case AMDGPU_CHUNK_ID_FENCE:
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400195 size = sizeof(struct drm_amdgpu_cs_chunk_fence);
Christian König91acbeb2015-12-14 16:42:31 +0100196 if (p->chunks[i].length_dw * sizeof(uint32_t) < size) {
Dan Carpenter1d263472015-09-23 13:59:28 +0300197 ret = -EINVAL;
198 goto free_partial_kdata;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400199 }
Christian König91acbeb2015-12-14 16:42:31 +0100200
201 ret = amdgpu_cs_user_fence_chunk(p, (void *)p->chunks[i].kdata);
202 if (ret)
203 goto free_partial_kdata;
204
Christian König9a5e8fb2015-06-23 17:07:03 +0200205 break;
206
Christian König2b48d322015-06-19 17:31:29 +0200207 case AMDGPU_CHUNK_ID_DEPENDENCIES:
208 break;
209
Christian König9a5e8fb2015-06-23 17:07:03 +0200210 default:
Dan Carpenter1d263472015-09-23 13:59:28 +0300211 ret = -EINVAL;
212 goto free_partial_kdata;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400213 }
214 }
215
monk.liue60b3442015-07-17 18:39:25 +0800216
Christian Königb203dd92015-08-18 18:23:16 +0200217 p->ibs = kcalloc(p->num_ibs, sizeof(struct amdgpu_ib), GFP_KERNEL);
Dan Carpenter1d263472015-09-23 13:59:28 +0300218 if (!p->ibs) {
219 ret = -ENOMEM;
220 goto free_all_kdata;
221 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400222
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400223 kfree(chunk_array);
Dan Carpenter1d263472015-09-23 13:59:28 +0300224 return 0;
225
226free_all_kdata:
227 i = p->nchunks - 1;
228free_partial_kdata:
229 for (; i >= 0; i--)
230 drm_free_large(p->chunks[i].kdata);
231 kfree(p->chunks);
Christian König2a7d9bd2015-12-18 20:33:52 +0100232put_ctx:
Dan Carpenter1d263472015-09-23 13:59:28 +0300233 amdgpu_ctx_put(p->ctx);
234free_chunk:
235 kfree(chunk_array);
236
237 return ret;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400238}
239
240/* Returns how many bytes TTM can move per IB.
241 */
242static u64 amdgpu_cs_get_threshold_for_moves(struct amdgpu_device *adev)
243{
244 u64 real_vram_size = adev->mc.real_vram_size;
245 u64 vram_usage = atomic64_read(&adev->vram_usage);
246
247 /* This function is based on the current VRAM usage.
248 *
249 * - If all of VRAM is free, allow relocating the number of bytes that
250 * is equal to 1/4 of the size of VRAM for this IB.
251
252 * - If more than one half of VRAM is occupied, only allow relocating
253 * 1 MB of data for this IB.
254 *
255 * - From 0 to one half of used VRAM, the threshold decreases
256 * linearly.
257 * __________________
258 * 1/4 of -|\ |
259 * VRAM | \ |
260 * | \ |
261 * | \ |
262 * | \ |
263 * | \ |
264 * | \ |
265 * | \________|1 MB
266 * |----------------|
267 * VRAM 0 % 100 %
268 * used used
269 *
270 * Note: It's a threshold, not a limit. The threshold must be crossed
271 * for buffer relocations to stop, so any buffer of an arbitrary size
272 * can be moved as long as the threshold isn't crossed before
273 * the relocation takes place. We don't want to disable buffer
274 * relocations completely.
275 *
276 * The idea is that buffers should be placed in VRAM at creation time
277 * and TTM should only do a minimum number of relocations during
278 * command submission. In practice, you need to submit at least
279 * a dozen IBs to move all buffers to VRAM if they are in GTT.
280 *
281 * Also, things can get pretty crazy under memory pressure and actual
282 * VRAM usage can change a lot, so playing safe even at 50% does
283 * consistently increase performance.
284 */
285
286 u64 half_vram = real_vram_size >> 1;
287 u64 half_free_vram = vram_usage >= half_vram ? 0 : half_vram - vram_usage;
288 u64 bytes_moved_threshold = half_free_vram >> 1;
289 return max(bytes_moved_threshold, 1024*1024ull);
290}
291
Christian Königf69f90a12015-12-21 19:47:42 +0100292int amdgpu_cs_list_validate(struct amdgpu_cs_parser *p,
Christian Königa5b75052015-09-03 16:40:39 +0200293 struct list_head *validated)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400294{
Christian Königf69f90a12015-12-21 19:47:42 +0100295 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
296 struct amdgpu_vm *vm = &fpriv->vm;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400297 struct amdgpu_bo_list_entry *lobj;
Christian Königf69f90a12015-12-21 19:47:42 +0100298 u64 initial_bytes_moved;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400299 int r;
300
Christian Königa5b75052015-09-03 16:40:39 +0200301 list_for_each_entry(lobj, validated, tv.head) {
Christian König36409d122015-12-21 20:31:35 +0100302 struct amdgpu_bo *bo = lobj->robj;
303 uint32_t domain;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400304
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400305 lobj->bo_va = amdgpu_vm_bo_find(vm, bo);
Christian König36409d122015-12-21 20:31:35 +0100306 if (bo->pin_count)
307 continue;
308
309 /* Avoid moving this one if we have moved too many buffers
310 * for this IB already.
311 *
312 * Note that this allows moving at least one buffer of
313 * any size, because it doesn't take the current "bo"
314 * into account. We don't want to disallow buffer moves
315 * completely.
316 */
317 if (p->bytes_moved <= p->bytes_moved_threshold)
318 domain = lobj->prefered_domains;
319 else
320 domain = lobj->allowed_domains;
321
322 retry:
323 amdgpu_ttm_placement_from_domain(bo, domain);
324 initial_bytes_moved = atomic64_read(&bo->adev->num_bytes_moved);
325 r = ttm_bo_validate(&bo->tbo, &bo->placement, true, false);
326 p->bytes_moved += atomic64_read(&bo->adev->num_bytes_moved) -
327 initial_bytes_moved;
328
329 if (unlikely(r)) {
330 if (r != -ERESTARTSYS && domain != lobj->allowed_domains) {
331 domain = lobj->allowed_domains;
332 goto retry;
333 }
334 return r;
335 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400336 }
337 return 0;
338}
339
Christian König2a7d9bd2015-12-18 20:33:52 +0100340static int amdgpu_cs_parser_bos(struct amdgpu_cs_parser *p,
341 union drm_amdgpu_cs *cs)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400342{
343 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
Christian Königa5b75052015-09-03 16:40:39 +0200344 struct list_head duplicates;
monk.liu840d5142015-04-27 15:19:20 +0800345 bool need_mmap_lock = false;
Christian König636ce252015-12-18 21:26:47 +0100346 int r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400347
Christian König2a7d9bd2015-12-18 20:33:52 +0100348 INIT_LIST_HEAD(&p->validated);
349
350 p->bo_list = amdgpu_bo_list_get(fpriv, cs->in.bo_list_handle);
monk.liu840d5142015-04-27 15:19:20 +0800351 if (p->bo_list) {
352 need_mmap_lock = p->bo_list->has_userptr;
Christian König636ce252015-12-18 21:26:47 +0100353 amdgpu_bo_list_get_list(p->bo_list, &p->validated);
monk.liu840d5142015-04-27 15:19:20 +0800354 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400355
Christian König3c0eea62015-12-11 14:39:05 +0100356 INIT_LIST_HEAD(&duplicates);
Christian König56467eb2015-12-11 15:16:32 +0100357 amdgpu_vm_get_pd_bo(&fpriv->vm, &p->validated, &p->vm_pd);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400358
Christian König91acbeb2015-12-14 16:42:31 +0100359 if (p->uf.bo)
360 list_add(&p->uf_entry.tv.head, &p->validated);
361
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400362 if (need_mmap_lock)
363 down_read(&current->mm->mmap_sem);
364
Christian Königa5b75052015-09-03 16:40:39 +0200365 r = ttm_eu_reserve_buffers(&p->ticket, &p->validated, true, &duplicates);
366 if (unlikely(r != 0))
367 goto error_reserve;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400368
Christian Königee1782c2015-12-11 21:01:23 +0100369 amdgpu_vm_get_pt_bos(&fpriv->vm, &duplicates);
Christian König56467eb2015-12-11 15:16:32 +0100370
Christian Königf69f90a12015-12-21 19:47:42 +0100371 p->bytes_moved_threshold = amdgpu_cs_get_threshold_for_moves(p->adev);
372 p->bytes_moved = 0;
373
374 r = amdgpu_cs_list_validate(p, &duplicates);
Christian Königa5b75052015-09-03 16:40:39 +0200375 if (r)
376 goto error_validate;
377
Christian Königf69f90a12015-12-21 19:47:42 +0100378 r = amdgpu_cs_list_validate(p, &p->validated);
Christian Königa5b75052015-09-03 16:40:39 +0200379
380error_validate:
Christian Königeceb8a12016-01-11 15:35:21 +0100381 if (r) {
382 amdgpu_vm_move_pt_bos_in_lru(p->adev, &fpriv->vm);
Christian Königa5b75052015-09-03 16:40:39 +0200383 ttm_eu_backoff_reservation(&p->ticket, &p->validated);
Christian Königeceb8a12016-01-11 15:35:21 +0100384 }
Christian Königa5b75052015-09-03 16:40:39 +0200385
386error_reserve:
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400387 if (need_mmap_lock)
388 up_read(&current->mm->mmap_sem);
389
390 return r;
391}
392
393static int amdgpu_cs_sync_rings(struct amdgpu_cs_parser *p)
394{
395 struct amdgpu_bo_list_entry *e;
396 int r;
397
398 list_for_each_entry(e, &p->validated, tv.head) {
399 struct reservation_object *resv = e->robj->tbo.resv;
400 r = amdgpu_sync_resv(p->adev, &p->ibs[0].sync, resv, p->filp);
401
402 if (r)
403 return r;
404 }
405 return 0;
406}
407
408static int cmp_size_smaller_first(void *priv, struct list_head *a,
409 struct list_head *b)
410{
411 struct amdgpu_bo_list_entry *la = list_entry(a, struct amdgpu_bo_list_entry, tv.head);
412 struct amdgpu_bo_list_entry *lb = list_entry(b, struct amdgpu_bo_list_entry, tv.head);
413
414 /* Sort A before B if A is smaller. */
415 return (int)la->robj->tbo.num_pages - (int)lb->robj->tbo.num_pages;
416}
417
Christian König984810f2015-11-14 21:05:35 +0100418/**
419 * cs_parser_fini() - clean parser states
420 * @parser: parser structure holding parsing context.
421 * @error: error number
422 *
423 * If error is set than unvalidate buffer, otherwise just free memory
424 * used by parsing context.
425 **/
426static void amdgpu_cs_parser_fini(struct amdgpu_cs_parser *parser, int error, bool backoff)
Chunming Zhou049fc522015-07-21 14:36:51 +0800427{
Christian Königeceb8a12016-01-11 15:35:21 +0100428 struct amdgpu_fpriv *fpriv = parser->filp->driver_priv;
Christian König984810f2015-11-14 21:05:35 +0100429 unsigned i;
430
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400431 if (!error) {
Nicolai Hähnle28b8d662016-01-27 11:04:19 -0500432 amdgpu_vm_move_pt_bos_in_lru(parser->adev, &fpriv->vm);
433
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400434 /* Sort the buffer list from the smallest to largest buffer,
435 * which affects the order of buffers in the LRU list.
436 * This assures that the smallest buffers are added first
437 * to the LRU list, so they are likely to be later evicted
438 * first, instead of large buffers whose eviction is more
439 * expensive.
440 *
441 * This slightly lowers the number of bytes moved by TTM
442 * per frame under memory pressure.
443 */
444 list_sort(NULL, &parser->validated, cmp_size_smaller_first);
445
446 ttm_eu_fence_buffer_objects(&parser->ticket,
Christian König984810f2015-11-14 21:05:35 +0100447 &parser->validated,
448 parser->fence);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400449 } else if (backoff) {
450 ttm_eu_backoff_reservation(&parser->ticket,
451 &parser->validated);
452 }
Christian König984810f2015-11-14 21:05:35 +0100453 fence_put(parser->fence);
Christian König7e52a812015-11-04 15:44:39 +0100454
Christian König3cb485f2015-05-11 15:34:59 +0200455 if (parser->ctx)
456 amdgpu_ctx_put(parser->ctx);
Chunming Zhoua3348bb2015-08-18 16:25:46 +0800457 if (parser->bo_list)
458 amdgpu_bo_list_put(parser->bo_list);
459
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400460 for (i = 0; i < parser->nchunks; i++)
461 drm_free_large(parser->chunks[i].kdata);
462 kfree(parser->chunks);
Christian Könige4a58a22015-11-05 17:00:25 +0100463 if (parser->ibs)
464 for (i = 0; i < parser->num_ibs; i++)
465 amdgpu_ib_free(parser->adev, &parser->ibs[i]);
466 kfree(parser->ibs);
Christian König91acbeb2015-12-14 16:42:31 +0100467 amdgpu_bo_unref(&parser->uf.bo);
468 amdgpu_bo_unref(&parser->uf_entry.robj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400469}
470
471static int amdgpu_bo_vm_update_pte(struct amdgpu_cs_parser *p,
472 struct amdgpu_vm *vm)
473{
474 struct amdgpu_device *adev = p->adev;
475 struct amdgpu_bo_va *bo_va;
476 struct amdgpu_bo *bo;
477 int i, r;
478
479 r = amdgpu_vm_update_page_directory(adev, vm);
480 if (r)
481 return r;
482
Bas Nieuwenhuizen05906de2015-08-14 20:08:40 +0200483 r = amdgpu_sync_fence(adev, &p->ibs[0].sync, vm->page_directory_fence);
484 if (r)
485 return r;
486
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400487 r = amdgpu_vm_clear_freed(adev, vm);
488 if (r)
489 return r;
490
491 if (p->bo_list) {
492 for (i = 0; i < p->bo_list->num_entries; i++) {
Christian König91e1a522015-07-06 22:06:40 +0200493 struct fence *f;
494
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400495 /* ignore duplicates */
496 bo = p->bo_list->array[i].robj;
497 if (!bo)
498 continue;
499
500 bo_va = p->bo_list->array[i].bo_va;
501 if (bo_va == NULL)
502 continue;
503
504 r = amdgpu_vm_bo_update(adev, bo_va, &bo->tbo.mem);
505 if (r)
506 return r;
507
Chunming Zhoubb1e38a42015-08-03 18:19:38 +0800508 f = bo_va->last_pt_update;
Christian König91e1a522015-07-06 22:06:40 +0200509 r = amdgpu_sync_fence(adev, &p->ibs[0].sync, f);
510 if (r)
511 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400512 }
Christian Königb495bd32015-09-10 14:00:35 +0200513
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400514 }
515
Christian Königb495bd32015-09-10 14:00:35 +0200516 r = amdgpu_vm_clear_invalids(adev, vm, &p->ibs[0].sync);
517
518 if (amdgpu_vm_debug && p->bo_list) {
519 /* Invalidate all BOs to test for userspace bugs */
520 for (i = 0; i < p->bo_list->num_entries; i++) {
521 /* ignore duplicates */
522 bo = p->bo_list->array[i].robj;
523 if (!bo)
524 continue;
525
526 amdgpu_vm_bo_invalidate(adev, bo);
527 }
528 }
529
530 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400531}
532
533static int amdgpu_cs_ib_vm_chunk(struct amdgpu_device *adev,
534 struct amdgpu_cs_parser *parser)
535{
536 struct amdgpu_fpriv *fpriv = parser->filp->driver_priv;
537 struct amdgpu_vm *vm = &fpriv->vm;
538 struct amdgpu_ring *ring;
539 int i, r;
540
541 if (parser->num_ibs == 0)
542 return 0;
543
544 /* Only for UVD/VCE VM emulation */
545 for (i = 0; i < parser->num_ibs; i++) {
546 ring = parser->ibs[i].ring;
547 if (ring->funcs->parse_cs) {
548 r = amdgpu_ring_parse_cs(ring, parser, i);
549 if (r)
550 return r;
551 }
552 }
553
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400554 r = amdgpu_bo_vm_update_pte(parser, vm);
Christian König984810f2015-11-14 21:05:35 +0100555 if (!r)
556 amdgpu_cs_sync_rings(parser);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400557
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400558 return r;
559}
560
561static int amdgpu_cs_handle_lockup(struct amdgpu_device *adev, int r)
562{
563 if (r == -EDEADLK) {
564 r = amdgpu_gpu_reset(adev);
565 if (!r)
566 r = -EAGAIN;
567 }
568 return r;
569}
570
571static int amdgpu_cs_ib_fill(struct amdgpu_device *adev,
572 struct amdgpu_cs_parser *parser)
573{
574 struct amdgpu_fpriv *fpriv = parser->filp->driver_priv;
575 struct amdgpu_vm *vm = &fpriv->vm;
576 int i, j;
577 int r;
578
579 for (i = 0, j = 0; i < parser->nchunks && j < parser->num_ibs; i++) {
580 struct amdgpu_cs_chunk *chunk;
581 struct amdgpu_ib *ib;
582 struct drm_amdgpu_cs_chunk_ib *chunk_ib;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400583 struct amdgpu_ring *ring;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400584
585 chunk = &parser->chunks[i];
586 ib = &parser->ibs[j];
587 chunk_ib = (struct drm_amdgpu_cs_chunk_ib *)chunk->kdata;
588
589 if (chunk->chunk_id != AMDGPU_CHUNK_ID_IB)
590 continue;
591
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400592 r = amdgpu_cs_get_ring(adev, chunk_ib->ip_type,
593 chunk_ib->ip_instance, chunk_ib->ring,
594 &ring);
Marek Olšák3ccec532015-06-02 17:44:49 +0200595 if (r)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400596 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400597
598 if (ring->funcs->parse_cs) {
Christian König4802ce12015-06-10 17:20:11 +0200599 struct amdgpu_bo_va_mapping *m;
Marek Olšák3ccec532015-06-02 17:44:49 +0200600 struct amdgpu_bo *aobj = NULL;
Christian König4802ce12015-06-10 17:20:11 +0200601 uint64_t offset;
602 uint8_t *kptr;
Marek Olšák3ccec532015-06-02 17:44:49 +0200603
Christian König4802ce12015-06-10 17:20:11 +0200604 m = amdgpu_cs_find_mapping(parser, chunk_ib->va_start,
605 &aobj);
Marek Olšák3ccec532015-06-02 17:44:49 +0200606 if (!aobj) {
607 DRM_ERROR("IB va_start is invalid\n");
608 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400609 }
610
Christian König4802ce12015-06-10 17:20:11 +0200611 if ((chunk_ib->va_start + chunk_ib->ib_bytes) >
612 (m->it.last + 1) * AMDGPU_GPU_PAGE_SIZE) {
613 DRM_ERROR("IB va_start+ib_bytes is invalid\n");
614 return -EINVAL;
615 }
616
Marek Olšák3ccec532015-06-02 17:44:49 +0200617 /* the IB should be reserved at this point */
Christian König4802ce12015-06-10 17:20:11 +0200618 r = amdgpu_bo_kmap(aobj, (void **)&kptr);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400619 if (r) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400620 return r;
621 }
622
Christian König4802ce12015-06-10 17:20:11 +0200623 offset = ((uint64_t)m->it.start) * AMDGPU_GPU_PAGE_SIZE;
624 kptr += chunk_ib->va_start - offset;
625
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400626 r = amdgpu_ib_get(ring, NULL, chunk_ib->ib_bytes, ib);
627 if (r) {
628 DRM_ERROR("Failed to get ib !\n");
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400629 return r;
630 }
631
632 memcpy(ib->ptr, kptr, chunk_ib->ib_bytes);
633 amdgpu_bo_kunmap(aobj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400634 } else {
635 r = amdgpu_ib_get(ring, vm, 0, ib);
636 if (r) {
637 DRM_ERROR("Failed to get ib !\n");
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400638 return r;
639 }
640
641 ib->gpu_addr = chunk_ib->va_start;
642 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400643
Marek Olšák3ccec532015-06-02 17:44:49 +0200644 ib->length_dw = chunk_ib->ib_bytes / 4;
Jammy Zhoude807f82015-05-11 23:41:41 +0800645 ib->flags = chunk_ib->flags;
Christian König3cb485f2015-05-11 15:34:59 +0200646 ib->ctx = parser->ctx;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400647 j++;
648 }
649
650 if (!parser->num_ibs)
651 return 0;
652
653 /* add GDS resources to first IB */
654 if (parser->bo_list) {
655 struct amdgpu_bo *gds = parser->bo_list->gds_obj;
656 struct amdgpu_bo *gws = parser->bo_list->gws_obj;
657 struct amdgpu_bo *oa = parser->bo_list->oa_obj;
658 struct amdgpu_ib *ib = &parser->ibs[0];
659
660 if (gds) {
661 ib->gds_base = amdgpu_bo_gpu_offset(gds);
662 ib->gds_size = amdgpu_bo_size(gds);
663 }
664 if (gws) {
665 ib->gws_base = amdgpu_bo_gpu_offset(gws);
666 ib->gws_size = amdgpu_bo_size(gws);
667 }
668 if (oa) {
669 ib->oa_base = amdgpu_bo_gpu_offset(oa);
670 ib->oa_size = amdgpu_bo_size(oa);
671 }
672 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400673 /* wrap the last IB with user fence */
674 if (parser->uf.bo) {
675 struct amdgpu_ib *ib = &parser->ibs[parser->num_ibs - 1];
676
677 /* UVD & VCE fw doesn't support user fences */
678 if (ib->ring->type == AMDGPU_RING_TYPE_UVD ||
679 ib->ring->type == AMDGPU_RING_TYPE_VCE)
680 return -EINVAL;
681
682 ib->user = &parser->uf;
683 }
684
685 return 0;
686}
687
Christian König2b48d322015-06-19 17:31:29 +0200688static int amdgpu_cs_dependencies(struct amdgpu_device *adev,
689 struct amdgpu_cs_parser *p)
690{
Christian König76a1ea62015-07-06 19:42:10 +0200691 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
Christian König2b48d322015-06-19 17:31:29 +0200692 struct amdgpu_ib *ib;
693 int i, j, r;
694
695 if (!p->num_ibs)
696 return 0;
697
698 /* Add dependencies to first IB */
699 ib = &p->ibs[0];
700 for (i = 0; i < p->nchunks; ++i) {
701 struct drm_amdgpu_cs_chunk_dep *deps;
702 struct amdgpu_cs_chunk *chunk;
703 unsigned num_deps;
704
705 chunk = &p->chunks[i];
706
707 if (chunk->chunk_id != AMDGPU_CHUNK_ID_DEPENDENCIES)
708 continue;
709
710 deps = (struct drm_amdgpu_cs_chunk_dep *)chunk->kdata;
711 num_deps = chunk->length_dw * 4 /
712 sizeof(struct drm_amdgpu_cs_chunk_dep);
713
714 for (j = 0; j < num_deps; ++j) {
Christian König2b48d322015-06-19 17:31:29 +0200715 struct amdgpu_ring *ring;
Christian König76a1ea62015-07-06 19:42:10 +0200716 struct amdgpu_ctx *ctx;
Christian König21c16bf2015-07-07 17:24:49 +0200717 struct fence *fence;
Christian König2b48d322015-06-19 17:31:29 +0200718
719 r = amdgpu_cs_get_ring(adev, deps[j].ip_type,
720 deps[j].ip_instance,
721 deps[j].ring, &ring);
722 if (r)
723 return r;
724
Christian König76a1ea62015-07-06 19:42:10 +0200725 ctx = amdgpu_ctx_get(fpriv, deps[j].ctx_id);
726 if (ctx == NULL)
727 return -EINVAL;
728
Christian König21c16bf2015-07-07 17:24:49 +0200729 fence = amdgpu_ctx_get_fence(ctx, ring,
730 deps[j].handle);
731 if (IS_ERR(fence)) {
732 r = PTR_ERR(fence);
Christian König76a1ea62015-07-06 19:42:10 +0200733 amdgpu_ctx_put(ctx);
Christian König2b48d322015-06-19 17:31:29 +0200734 return r;
Christian König21c16bf2015-07-07 17:24:49 +0200735
736 } else if (fence) {
737 r = amdgpu_sync_fence(adev, &ib->sync, fence);
738 fence_put(fence);
739 amdgpu_ctx_put(ctx);
740 if (r)
741 return r;
Christian König76a1ea62015-07-06 19:42:10 +0200742 }
Christian König2b48d322015-06-19 17:31:29 +0200743 }
744 }
745
746 return 0;
747}
748
Junwei Zhang4c7eb912015-09-09 09:05:55 +0800749static int amdgpu_cs_free_job(struct amdgpu_job *job)
Chunming Zhoubb977d32015-08-18 15:16:40 +0800750{
751 int i;
Junwei Zhang4c7eb912015-09-09 09:05:55 +0800752 if (job->ibs)
753 for (i = 0; i < job->num_ibs; i++)
754 amdgpu_ib_free(job->adev, &job->ibs[i]);
755 kfree(job->ibs);
756 if (job->uf.bo)
Christian Königf3f17692015-12-03 19:55:52 +0100757 amdgpu_bo_unref(&job->uf.bo);
Chunming Zhoubb977d32015-08-18 15:16:40 +0800758 return 0;
759}
760
Chunming Zhou049fc522015-07-21 14:36:51 +0800761int amdgpu_cs_ioctl(struct drm_device *dev, void *data, struct drm_file *filp)
762{
763 struct amdgpu_device *adev = dev->dev_private;
764 union drm_amdgpu_cs *cs = data;
Christian König7e52a812015-11-04 15:44:39 +0100765 struct amdgpu_cs_parser parser = {};
Christian König26a69802015-08-18 21:09:33 +0200766 bool reserved_buffers = false;
767 int i, r;
Chunming Zhou049fc522015-07-21 14:36:51 +0800768
Christian König0c418f12015-09-01 15:13:53 +0200769 if (!adev->accel_working)
Chunming Zhou049fc522015-07-21 14:36:51 +0800770 return -EBUSY;
Chunming Zhou049fc522015-07-21 14:36:51 +0800771
Christian König7e52a812015-11-04 15:44:39 +0100772 parser.adev = adev;
773 parser.filp = filp;
774
775 r = amdgpu_cs_parser_init(&parser, data);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400776 if (r) {
Chunming Zhou049fc522015-07-21 14:36:51 +0800777 DRM_ERROR("Failed to initialize parser !\n");
Christian König7e52a812015-11-04 15:44:39 +0100778 amdgpu_cs_parser_fini(&parser, r, false);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400779 r = amdgpu_cs_handle_lockup(adev, r);
780 return r;
781 }
Christian König2a7d9bd2015-12-18 20:33:52 +0100782 r = amdgpu_cs_parser_bos(&parser, data);
Christian König26a69802015-08-18 21:09:33 +0200783 if (r == -ENOMEM)
784 DRM_ERROR("Not enough memory for command submission!\n");
785 else if (r && r != -ERESTARTSYS)
786 DRM_ERROR("Failed to process the buffer list %d!\n", r);
787 else if (!r) {
788 reserved_buffers = true;
Christian König7e52a812015-11-04 15:44:39 +0100789 r = amdgpu_cs_ib_fill(adev, &parser);
Christian König26a69802015-08-18 21:09:33 +0200790 }
791
792 if (!r) {
Christian König7e52a812015-11-04 15:44:39 +0100793 r = amdgpu_cs_dependencies(adev, &parser);
Christian König26a69802015-08-18 21:09:33 +0200794 if (r)
795 DRM_ERROR("Failed in the dependencies handling %d!\n", r);
796 }
797
798 if (r)
799 goto out;
800
Christian König7e52a812015-11-04 15:44:39 +0100801 for (i = 0; i < parser.num_ibs; i++)
802 trace_amdgpu_cs(&parser, i);
Christian König26a69802015-08-18 21:09:33 +0200803
Christian König7e52a812015-11-04 15:44:39 +0100804 r = amdgpu_cs_ib_vm_chunk(adev, &parser);
Chunming Zhou4fe63112015-08-18 16:12:15 +0800805 if (r)
806 goto out;
807
Christian König7e52a812015-11-04 15:44:39 +0100808 if (amdgpu_enable_scheduler && parser.num_ibs) {
Christian König7e52a812015-11-04 15:44:39 +0100809 struct amdgpu_ring * ring = parser.ibs->ring;
Christian Könige2840222015-11-05 19:49:48 +0100810 struct amd_sched_fence *fence;
811 struct amdgpu_job *job;
Christian König7e52a812015-11-04 15:44:39 +0100812
Chunming Zhoubb977d32015-08-18 15:16:40 +0800813 job = kzalloc(sizeof(struct amdgpu_job), GFP_KERNEL);
Dan Carpenter4cfdcd92015-11-04 16:25:09 +0300814 if (!job) {
815 r = -ENOMEM;
816 goto out;
817 }
Christian König7e52a812015-11-04 15:44:39 +0100818
Christian König4f839a22015-09-08 20:22:31 +0200819 job->base.sched = &ring->sched;
Christian König7e52a812015-11-04 15:44:39 +0100820 job->base.s_entity = &parser.ctx->rings[ring->idx].entity;
821 job->adev = parser.adev;
Christian Könige2840222015-11-05 19:49:48 +0100822 job->owner = parser.filp;
823 job->free_job = amdgpu_cs_free_job;
824
Christian König5d827302015-11-13 13:04:50 +0100825 job->ibs = parser.ibs;
826 job->num_ibs = parser.num_ibs;
827 parser.ibs = NULL;
828 parser.num_ibs = 0;
829
Chunming Zhoubb977d32015-08-18 15:16:40 +0800830 if (job->ibs[job->num_ibs - 1].user) {
Christian König7e52a812015-11-04 15:44:39 +0100831 job->uf = parser.uf;
Chunming Zhoubb977d32015-08-18 15:16:40 +0800832 job->ibs[job->num_ibs - 1].user = &job->uf;
Christian König7e52a812015-11-04 15:44:39 +0100833 parser.uf.bo = NULL;
Chunming Zhoubb977d32015-08-18 15:16:40 +0800834 }
835
Christian Könige2840222015-11-05 19:49:48 +0100836 fence = amd_sched_fence_create(job->base.s_entity,
837 parser.filp);
838 if (!fence) {
839 r = -ENOMEM;
Chunming Zhoubb977d32015-08-18 15:16:40 +0800840 amdgpu_cs_free_job(job);
841 kfree(job);
Chunming Zhouf556cb0c2015-08-02 11:18:04 +0800842 goto out;
843 }
Christian Könige2840222015-11-05 19:49:48 +0100844 job->base.s_fence = fence;
Christian König984810f2015-11-14 21:05:35 +0100845 parser.fence = fence_get(&fence->base);
Christian Könige2840222015-11-05 19:49:48 +0100846
847 cs->out.handle = amdgpu_ctx_add_fence(parser.ctx, ring,
848 &fence->base);
Christian Könige4a58a22015-11-05 17:00:25 +0100849 job->ibs[job->num_ibs - 1].sequence = cs->out.handle;
Christian Königeb98d1c2015-08-20 17:28:36 +0200850
Chunming Zhou7034dec2015-11-11 14:56:00 +0800851 trace_amdgpu_cs_ioctl(job);
Christian Könige2840222015-11-05 19:49:48 +0100852 amd_sched_entity_push_job(&job->base);
853
Christian König984810f2015-11-14 21:05:35 +0100854 } else {
855 struct amdgpu_fence *fence;
Christian Könige2840222015-11-05 19:49:48 +0100856
Christian König984810f2015-11-14 21:05:35 +0100857 r = amdgpu_ib_schedule(adev, parser.num_ibs, parser.ibs,
858 parser.filp);
859 fence = parser.ibs[parser.num_ibs - 1].fence;
860 parser.fence = fence_get(&fence->base);
861 cs->out.handle = parser.ibs[parser.num_ibs - 1].sequence;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400862 }
863
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400864out:
Christian König7e52a812015-11-04 15:44:39 +0100865 amdgpu_cs_parser_fini(&parser, r, reserved_buffers);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400866 r = amdgpu_cs_handle_lockup(adev, r);
867 return r;
868}
869
870/**
871 * amdgpu_cs_wait_ioctl - wait for a command submission to finish
872 *
873 * @dev: drm device
874 * @data: data from userspace
875 * @filp: file private
876 *
877 * Wait for the command submission identified by handle to finish.
878 */
879int amdgpu_cs_wait_ioctl(struct drm_device *dev, void *data,
880 struct drm_file *filp)
881{
882 union drm_amdgpu_wait_cs *wait = data;
883 struct amdgpu_device *adev = dev->dev_private;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400884 unsigned long timeout = amdgpu_gem_timeout(wait->in.timeout);
Christian König03507c42015-06-19 17:00:19 +0200885 struct amdgpu_ring *ring = NULL;
Jammy Zhou66b3cf22015-05-08 17:29:40 +0800886 struct amdgpu_ctx *ctx;
Christian König21c16bf2015-07-07 17:24:49 +0200887 struct fence *fence;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400888 long r;
889
Christian König21c16bf2015-07-07 17:24:49 +0200890 r = amdgpu_cs_get_ring(adev, wait->in.ip_type, wait->in.ip_instance,
891 wait->in.ring, &ring);
892 if (r)
893 return r;
894
Jammy Zhou66b3cf22015-05-08 17:29:40 +0800895 ctx = amdgpu_ctx_get(filp->driver_priv, wait->in.ctx_id);
896 if (ctx == NULL)
897 return -EINVAL;
Chunming Zhou4b559c92015-07-21 15:53:04 +0800898
899 fence = amdgpu_ctx_get_fence(ctx, ring, wait->in.handle);
900 if (IS_ERR(fence))
901 r = PTR_ERR(fence);
902 else if (fence) {
903 r = fence_wait_timeout(fence, true, timeout);
904 fence_put(fence);
905 } else
Christian König21c16bf2015-07-07 17:24:49 +0200906 r = 1;
907
Jammy Zhou66b3cf22015-05-08 17:29:40 +0800908 amdgpu_ctx_put(ctx);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400909 if (r < 0)
910 return r;
911
912 memset(wait, 0, sizeof(*wait));
913 wait->out.status = (r == 0);
914
915 return 0;
916}
917
918/**
919 * amdgpu_cs_find_bo_va - find bo_va for VM address
920 *
921 * @parser: command submission parser context
922 * @addr: VM address
923 * @bo: resulting BO of the mapping found
924 *
925 * Search the buffer objects in the command submission context for a certain
926 * virtual memory address. Returns allocation structure when found, NULL
927 * otherwise.
928 */
929struct amdgpu_bo_va_mapping *
930amdgpu_cs_find_mapping(struct amdgpu_cs_parser *parser,
931 uint64_t addr, struct amdgpu_bo **bo)
932{
933 struct amdgpu_bo_list_entry *reloc;
934 struct amdgpu_bo_va_mapping *mapping;
935
936 addr /= AMDGPU_GPU_PAGE_SIZE;
937
938 list_for_each_entry(reloc, &parser->validated, tv.head) {
939 if (!reloc->bo_va)
940 continue;
941
Christian König7fc11952015-07-30 11:53:42 +0200942 list_for_each_entry(mapping, &reloc->bo_va->valids, list) {
943 if (mapping->it.start > addr ||
944 addr > mapping->it.last)
945 continue;
946
947 *bo = reloc->bo_va->bo;
948 return mapping;
949 }
950
951 list_for_each_entry(mapping, &reloc->bo_va->invalids, list) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400952 if (mapping->it.start > addr ||
953 addr > mapping->it.last)
954 continue;
955
956 *bo = reloc->bo_va->bo;
957 return mapping;
958 }
959 }
960
961 return NULL;
962}