blob: 78da52f900993253eb42601c3f159bf0167b8746 [file] [log] [blame]
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001/*
2 * Copyright 2008 Jerome Glisse.
3 * All Rights Reserved.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
14 * Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 * DEALINGS IN THE SOFTWARE.
23 *
24 * Authors:
25 * Jerome Glisse <glisse@freedesktop.org>
26 */
Stephen Rothwell568d7c72016-03-17 15:30:49 +110027#include <linux/pagemap.h>
Alex Deucherd38ceaf2015-04-20 16:55:21 -040028#include <drm/drmP.h>
29#include <drm/amdgpu_drm.h>
30#include "amdgpu.h"
31#include "amdgpu_trace.h"
32
Alex Deucherd38ceaf2015-04-20 16:55:21 -040033int amdgpu_cs_get_ring(struct amdgpu_device *adev, u32 ip_type,
34 u32 ip_instance, u32 ring,
35 struct amdgpu_ring **out_ring)
36{
37 /* Right now all IPs have only one instance - multiple rings. */
38 if (ip_instance != 0) {
39 DRM_ERROR("invalid ip instance: %d\n", ip_instance);
40 return -EINVAL;
41 }
42
43 switch (ip_type) {
44 default:
45 DRM_ERROR("unknown ip type: %d\n", ip_type);
46 return -EINVAL;
47 case AMDGPU_HW_IP_GFX:
48 if (ring < adev->gfx.num_gfx_rings) {
49 *out_ring = &adev->gfx.gfx_ring[ring];
50 } else {
51 DRM_ERROR("only %d gfx rings are supported now\n",
52 adev->gfx.num_gfx_rings);
53 return -EINVAL;
54 }
55 break;
56 case AMDGPU_HW_IP_COMPUTE:
57 if (ring < adev->gfx.num_compute_rings) {
58 *out_ring = &adev->gfx.compute_ring[ring];
59 } else {
60 DRM_ERROR("only %d compute rings are supported now\n",
61 adev->gfx.num_compute_rings);
62 return -EINVAL;
63 }
64 break;
65 case AMDGPU_HW_IP_DMA:
Alex Deucherc113ea12015-10-08 16:30:37 -040066 if (ring < adev->sdma.num_instances) {
67 *out_ring = &adev->sdma.instance[ring].ring;
Alex Deucherd38ceaf2015-04-20 16:55:21 -040068 } else {
Alex Deucherc113ea12015-10-08 16:30:37 -040069 DRM_ERROR("only %d SDMA rings are supported\n",
70 adev->sdma.num_instances);
Alex Deucherd38ceaf2015-04-20 16:55:21 -040071 return -EINVAL;
72 }
73 break;
74 case AMDGPU_HW_IP_UVD:
75 *out_ring = &adev->uvd.ring;
76 break;
77 case AMDGPU_HW_IP_VCE:
78 if (ring < 2){
79 *out_ring = &adev->vce.ring[ring];
80 } else {
81 DRM_ERROR("only two VCE rings are supported\n");
82 return -EINVAL;
83 }
84 break;
85 }
86 return 0;
87}
88
Christian König91acbeb2015-12-14 16:42:31 +010089static int amdgpu_cs_user_fence_chunk(struct amdgpu_cs_parser *p,
Christian König758ac172016-05-06 22:14:00 +020090 struct drm_amdgpu_cs_chunk_fence *data,
91 uint32_t *offset)
Christian König91acbeb2015-12-14 16:42:31 +010092{
93 struct drm_gem_object *gobj;
Christian Königaa290402016-09-09 11:21:43 +020094 unsigned long size;
Christian König91acbeb2015-12-14 16:42:31 +010095
Chris Wilsona8ad0bd2016-05-09 11:04:54 +010096 gobj = drm_gem_object_lookup(p->filp, data->handle);
Christian König91acbeb2015-12-14 16:42:31 +010097 if (gobj == NULL)
98 return -EINVAL;
99
Christian König758ac172016-05-06 22:14:00 +0200100 p->uf_entry.robj = amdgpu_bo_ref(gem_to_amdgpu_bo(gobj));
Christian König91acbeb2015-12-14 16:42:31 +0100101 p->uf_entry.priority = 0;
102 p->uf_entry.tv.bo = &p->uf_entry.robj->tbo;
103 p->uf_entry.tv.shared = true;
Christian König2f568db2016-02-23 12:36:59 +0100104 p->uf_entry.user_pages = NULL;
Christian Königaa290402016-09-09 11:21:43 +0200105
106 size = amdgpu_bo_size(p->uf_entry.robj);
107 if (size != PAGE_SIZE || (data->offset + 8) > size)
108 return -EINVAL;
109
Christian König758ac172016-05-06 22:14:00 +0200110 *offset = data->offset;
Christian König91acbeb2015-12-14 16:42:31 +0100111
112 drm_gem_object_unreference_unlocked(gobj);
Christian König758ac172016-05-06 22:14:00 +0200113
114 if (amdgpu_ttm_tt_get_usermm(p->uf_entry.robj->tbo.ttm)) {
115 amdgpu_bo_unref(&p->uf_entry.robj);
116 return -EINVAL;
117 }
118
Christian König91acbeb2015-12-14 16:42:31 +0100119 return 0;
120}
121
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400122int amdgpu_cs_parser_init(struct amdgpu_cs_parser *p, void *data)
123{
Christian König4c0b2422016-02-01 11:20:37 +0100124 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
Monk Liuc5637832016-04-19 20:11:32 +0800125 struct amdgpu_vm *vm = &fpriv->vm;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400126 union drm_amdgpu_cs *cs = data;
127 uint64_t *chunk_array_user;
Dan Carpenter1d263472015-09-23 13:59:28 +0300128 uint64_t *chunk_array;
Christian König50838c82016-02-03 13:44:52 +0100129 unsigned size, num_ibs = 0;
Christian König758ac172016-05-06 22:14:00 +0200130 uint32_t uf_offset = 0;
Dan Carpenter54313502015-09-25 14:36:55 +0300131 int i;
Dan Carpenter1d263472015-09-23 13:59:28 +0300132 int ret;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400133
Dan Carpenter1d263472015-09-23 13:59:28 +0300134 if (cs->in.num_chunks == 0)
135 return 0;
136
137 chunk_array = kmalloc_array(cs->in.num_chunks, sizeof(uint64_t), GFP_KERNEL);
138 if (!chunk_array)
139 return -ENOMEM;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400140
Christian König3cb485f2015-05-11 15:34:59 +0200141 p->ctx = amdgpu_ctx_get(fpriv, cs->in.ctx_id);
142 if (!p->ctx) {
Dan Carpenter1d263472015-09-23 13:59:28 +0300143 ret = -EINVAL;
144 goto free_chunk;
Christian König3cb485f2015-05-11 15:34:59 +0200145 }
Dan Carpenter1d263472015-09-23 13:59:28 +0300146
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400147 /* get chunks */
Arnd Bergmann028423b2015-10-07 09:41:27 +0200148 chunk_array_user = (uint64_t __user *)(unsigned long)(cs->in.chunks);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400149 if (copy_from_user(chunk_array, chunk_array_user,
150 sizeof(uint64_t)*cs->in.num_chunks)) {
Dan Carpenter1d263472015-09-23 13:59:28 +0300151 ret = -EFAULT;
Christian König2a7d9bd2015-12-18 20:33:52 +0100152 goto put_ctx;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400153 }
154
155 p->nchunks = cs->in.num_chunks;
monk.liue60b3442015-07-17 18:39:25 +0800156 p->chunks = kmalloc_array(p->nchunks, sizeof(struct amdgpu_cs_chunk),
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400157 GFP_KERNEL);
Dan Carpenter1d263472015-09-23 13:59:28 +0300158 if (!p->chunks) {
159 ret = -ENOMEM;
Christian König2a7d9bd2015-12-18 20:33:52 +0100160 goto put_ctx;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400161 }
162
163 for (i = 0; i < p->nchunks; i++) {
164 struct drm_amdgpu_cs_chunk __user **chunk_ptr = NULL;
165 struct drm_amdgpu_cs_chunk user_chunk;
166 uint32_t __user *cdata;
167
Arnd Bergmann028423b2015-10-07 09:41:27 +0200168 chunk_ptr = (void __user *)(unsigned long)chunk_array[i];
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400169 if (copy_from_user(&user_chunk, chunk_ptr,
170 sizeof(struct drm_amdgpu_cs_chunk))) {
Dan Carpenter1d263472015-09-23 13:59:28 +0300171 ret = -EFAULT;
172 i--;
173 goto free_partial_kdata;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400174 }
175 p->chunks[i].chunk_id = user_chunk.chunk_id;
176 p->chunks[i].length_dw = user_chunk.length_dw;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400177
178 size = p->chunks[i].length_dw;
Arnd Bergmann028423b2015-10-07 09:41:27 +0200179 cdata = (void __user *)(unsigned long)user_chunk.chunk_data;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400180
181 p->chunks[i].kdata = drm_malloc_ab(size, sizeof(uint32_t));
182 if (p->chunks[i].kdata == NULL) {
Dan Carpenter1d263472015-09-23 13:59:28 +0300183 ret = -ENOMEM;
184 i--;
185 goto free_partial_kdata;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400186 }
187 size *= sizeof(uint32_t);
188 if (copy_from_user(p->chunks[i].kdata, cdata, size)) {
Dan Carpenter1d263472015-09-23 13:59:28 +0300189 ret = -EFAULT;
190 goto free_partial_kdata;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400191 }
192
Christian König9a5e8fb2015-06-23 17:07:03 +0200193 switch (p->chunks[i].chunk_id) {
194 case AMDGPU_CHUNK_ID_IB:
Christian König50838c82016-02-03 13:44:52 +0100195 ++num_ibs;
Christian König9a5e8fb2015-06-23 17:07:03 +0200196 break;
197
198 case AMDGPU_CHUNK_ID_FENCE:
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400199 size = sizeof(struct drm_amdgpu_cs_chunk_fence);
Christian König91acbeb2015-12-14 16:42:31 +0100200 if (p->chunks[i].length_dw * sizeof(uint32_t) < size) {
Dan Carpenter1d263472015-09-23 13:59:28 +0300201 ret = -EINVAL;
202 goto free_partial_kdata;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400203 }
Christian König91acbeb2015-12-14 16:42:31 +0100204
Christian König758ac172016-05-06 22:14:00 +0200205 ret = amdgpu_cs_user_fence_chunk(p, p->chunks[i].kdata,
206 &uf_offset);
Christian König91acbeb2015-12-14 16:42:31 +0100207 if (ret)
208 goto free_partial_kdata;
209
Christian König9a5e8fb2015-06-23 17:07:03 +0200210 break;
211
Christian König2b48d322015-06-19 17:31:29 +0200212 case AMDGPU_CHUNK_ID_DEPENDENCIES:
213 break;
214
Christian König9a5e8fb2015-06-23 17:07:03 +0200215 default:
Dan Carpenter1d263472015-09-23 13:59:28 +0300216 ret = -EINVAL;
217 goto free_partial_kdata;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400218 }
219 }
220
Monk Liuc5637832016-04-19 20:11:32 +0800221 ret = amdgpu_job_alloc(p->adev, num_ibs, &p->job, vm);
Christian König50838c82016-02-03 13:44:52 +0100222 if (ret)
Christian König4acabfe2016-01-31 11:32:04 +0100223 goto free_all_kdata;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400224
Christian Königb5f5acb2016-06-29 13:26:41 +0200225 if (p->uf_entry.robj)
226 p->job->uf_addr = uf_offset;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400227 kfree(chunk_array);
Dan Carpenter1d263472015-09-23 13:59:28 +0300228 return 0;
229
230free_all_kdata:
231 i = p->nchunks - 1;
232free_partial_kdata:
233 for (; i >= 0; i--)
234 drm_free_large(p->chunks[i].kdata);
235 kfree(p->chunks);
Christian König2a7d9bd2015-12-18 20:33:52 +0100236put_ctx:
Dan Carpenter1d263472015-09-23 13:59:28 +0300237 amdgpu_ctx_put(p->ctx);
238free_chunk:
239 kfree(chunk_array);
240
241 return ret;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400242}
243
Marek Olšák95844d22016-08-17 23:49:27 +0200244/* Convert microseconds to bytes. */
245static u64 us_to_bytes(struct amdgpu_device *adev, s64 us)
246{
247 if (us <= 0 || !adev->mm_stats.log2_max_MBps)
248 return 0;
249
250 /* Since accum_us is incremented by a million per second, just
251 * multiply it by the number of MB/s to get the number of bytes.
252 */
253 return us << adev->mm_stats.log2_max_MBps;
254}
255
256static s64 bytes_to_us(struct amdgpu_device *adev, u64 bytes)
257{
258 if (!adev->mm_stats.log2_max_MBps)
259 return 0;
260
261 return bytes >> adev->mm_stats.log2_max_MBps;
262}
263
264/* Returns how many bytes TTM can move right now. If no bytes can be moved,
265 * it returns 0. If it returns non-zero, it's OK to move at least one buffer,
266 * which means it can go over the threshold once. If that happens, the driver
267 * will be in debt and no other buffer migrations can be done until that debt
268 * is repaid.
269 *
270 * This approach allows moving a buffer of any size (it's important to allow
271 * that).
272 *
273 * The currency is simply time in microseconds and it increases as the clock
274 * ticks. The accumulated microseconds (us) are converted to bytes and
275 * returned.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400276 */
277static u64 amdgpu_cs_get_threshold_for_moves(struct amdgpu_device *adev)
278{
Marek Olšák95844d22016-08-17 23:49:27 +0200279 s64 time_us, increment_us;
280 u64 max_bytes;
281 u64 free_vram, total_vram, used_vram;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400282
Marek Olšák95844d22016-08-17 23:49:27 +0200283 /* Allow a maximum of 200 accumulated ms. This is basically per-IB
284 * throttling.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400285 *
Marek Olšák95844d22016-08-17 23:49:27 +0200286 * It means that in order to get full max MBps, at least 5 IBs per
287 * second must be submitted and not more than 200ms apart from each
288 * other.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400289 */
Marek Olšák95844d22016-08-17 23:49:27 +0200290 const s64 us_upper_bound = 200000;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400291
Marek Olšák95844d22016-08-17 23:49:27 +0200292 if (!adev->mm_stats.log2_max_MBps)
293 return 0;
294
295 total_vram = adev->mc.real_vram_size - adev->vram_pin_size;
296 used_vram = atomic64_read(&adev->vram_usage);
297 free_vram = used_vram >= total_vram ? 0 : total_vram - used_vram;
298
299 spin_lock(&adev->mm_stats.lock);
300
301 /* Increase the amount of accumulated us. */
302 time_us = ktime_to_us(ktime_get());
303 increment_us = time_us - adev->mm_stats.last_update_us;
304 adev->mm_stats.last_update_us = time_us;
305 adev->mm_stats.accum_us = min(adev->mm_stats.accum_us + increment_us,
306 us_upper_bound);
307
308 /* This prevents the short period of low performance when the VRAM
309 * usage is low and the driver is in debt or doesn't have enough
310 * accumulated us to fill VRAM quickly.
311 *
312 * The situation can occur in these cases:
313 * - a lot of VRAM is freed by userspace
314 * - the presence of a big buffer causes a lot of evictions
315 * (solution: split buffers into smaller ones)
316 *
317 * If 128 MB or 1/8th of VRAM is free, start filling it now by setting
318 * accum_us to a positive number.
319 */
320 if (free_vram >= 128 * 1024 * 1024 || free_vram >= total_vram / 8) {
321 s64 min_us;
322
323 /* Be more aggresive on dGPUs. Try to fill a portion of free
324 * VRAM now.
325 */
326 if (!(adev->flags & AMD_IS_APU))
327 min_us = bytes_to_us(adev, free_vram / 4);
328 else
329 min_us = 0; /* Reset accum_us on APUs. */
330
331 adev->mm_stats.accum_us = max(min_us, adev->mm_stats.accum_us);
332 }
333
334 /* This returns 0 if the driver is in debt to disallow (optional)
335 * buffer moves.
336 */
337 max_bytes = us_to_bytes(adev, adev->mm_stats.accum_us);
338
339 spin_unlock(&adev->mm_stats.lock);
340 return max_bytes;
341}
342
343/* Report how many bytes have really been moved for the last command
344 * submission. This can result in a debt that can stop buffer migrations
345 * temporarily.
346 */
347static void amdgpu_cs_report_moved_bytes(struct amdgpu_device *adev,
348 u64 num_bytes)
349{
350 spin_lock(&adev->mm_stats.lock);
351 adev->mm_stats.accum_us -= bytes_to_us(adev, num_bytes);
352 spin_unlock(&adev->mm_stats.lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400353}
354
Chunming Zhou14fd8332016-08-04 13:05:46 +0800355static int amdgpu_cs_bo_validate(struct amdgpu_cs_parser *p,
356 struct amdgpu_bo *bo)
357{
Christian Königa7d64de2016-09-15 14:58:48 +0200358 struct amdgpu_device *adev = amdgpu_ttm_adev(bo->tbo.bdev);
Chunming Zhou14fd8332016-08-04 13:05:46 +0800359 u64 initial_bytes_moved;
360 uint32_t domain;
361 int r;
362
363 if (bo->pin_count)
364 return 0;
365
Marek Olšák95844d22016-08-17 23:49:27 +0200366 /* Don't move this buffer if we have depleted our allowance
367 * to move it. Don't move anything if the threshold is zero.
Chunming Zhou14fd8332016-08-04 13:05:46 +0800368 */
Marek Olšák95844d22016-08-17 23:49:27 +0200369 if (p->bytes_moved < p->bytes_moved_threshold)
Chunming Zhou14fd8332016-08-04 13:05:46 +0800370 domain = bo->prefered_domains;
371 else
372 domain = bo->allowed_domains;
373
374retry:
375 amdgpu_ttm_placement_from_domain(bo, domain);
Christian Königa7d64de2016-09-15 14:58:48 +0200376 initial_bytes_moved = atomic64_read(&adev->num_bytes_moved);
Chunming Zhou14fd8332016-08-04 13:05:46 +0800377 r = ttm_bo_validate(&bo->tbo, &bo->placement, true, false);
Christian Königa7d64de2016-09-15 14:58:48 +0200378 p->bytes_moved += atomic64_read(&adev->num_bytes_moved) -
Chunming Zhou14fd8332016-08-04 13:05:46 +0800379 initial_bytes_moved;
380
Christian König1abdc3d2016-08-31 17:28:11 +0200381 if (unlikely(r == -ENOMEM) && domain != bo->allowed_domains) {
382 domain = bo->allowed_domains;
383 goto retry;
Chunming Zhou14fd8332016-08-04 13:05:46 +0800384 }
385
386 return r;
387}
388
Christian König662bfa62016-09-01 12:13:18 +0200389/* Last resort, try to evict something from the current working set */
390static bool amdgpu_cs_try_evict(struct amdgpu_cs_parser *p,
Christian Königf7da30d2016-09-28 12:03:04 +0200391 struct amdgpu_bo *validated)
Christian König662bfa62016-09-01 12:13:18 +0200392{
Christian Königf7da30d2016-09-28 12:03:04 +0200393 uint32_t domain = validated->allowed_domains;
Christian König662bfa62016-09-01 12:13:18 +0200394 int r;
395
396 if (!p->evictable)
397 return false;
398
399 for (;&p->evictable->tv.head != &p->validated;
400 p->evictable = list_prev_entry(p->evictable, tv.head)) {
401
402 struct amdgpu_bo_list_entry *candidate = p->evictable;
403 struct amdgpu_bo *bo = candidate->robj;
Christian Königa7d64de2016-09-15 14:58:48 +0200404 struct amdgpu_device *adev = amdgpu_ttm_adev(bo->tbo.bdev);
Christian König662bfa62016-09-01 12:13:18 +0200405 u64 initial_bytes_moved;
406 uint32_t other;
407
408 /* If we reached our current BO we can forget it */
Christian Königf7da30d2016-09-28 12:03:04 +0200409 if (candidate->robj == validated)
Christian König662bfa62016-09-01 12:13:18 +0200410 break;
411
412 other = amdgpu_mem_type_to_domain(bo->tbo.mem.mem_type);
413
414 /* Check if this BO is in one of the domains we need space for */
415 if (!(other & domain))
416 continue;
417
418 /* Check if we can move this BO somewhere else */
419 other = bo->allowed_domains & ~domain;
420 if (!other)
421 continue;
422
423 /* Good we can try to move this BO somewhere else */
424 amdgpu_ttm_placement_from_domain(bo, other);
Christian Königa7d64de2016-09-15 14:58:48 +0200425 initial_bytes_moved = atomic64_read(&adev->num_bytes_moved);
Christian König662bfa62016-09-01 12:13:18 +0200426 r = ttm_bo_validate(&bo->tbo, &bo->placement, true, false);
Christian Königa7d64de2016-09-15 14:58:48 +0200427 p->bytes_moved += atomic64_read(&adev->num_bytes_moved) -
Christian König662bfa62016-09-01 12:13:18 +0200428 initial_bytes_moved;
429
430 if (unlikely(r))
431 break;
432
433 p->evictable = list_prev_entry(p->evictable, tv.head);
434 list_move(&candidate->tv.head, &p->validated);
435
436 return true;
437 }
438
439 return false;
440}
441
Christian Königf7da30d2016-09-28 12:03:04 +0200442static int amdgpu_cs_validate(void *param, struct amdgpu_bo *bo)
443{
444 struct amdgpu_cs_parser *p = param;
445 int r;
446
447 do {
448 r = amdgpu_cs_bo_validate(p, bo);
449 } while (r == -ENOMEM && amdgpu_cs_try_evict(p, bo));
450 if (r)
451 return r;
452
453 if (bo->shadow)
454 r = amdgpu_cs_bo_validate(p, bo);
455
456 return r;
457}
458
Baoyou Xie761c2e82016-09-03 13:57:14 +0800459static int amdgpu_cs_list_validate(struct amdgpu_cs_parser *p,
Christian Königa5b75052015-09-03 16:40:39 +0200460 struct list_head *validated)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400461{
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400462 struct amdgpu_bo_list_entry *lobj;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400463 int r;
464
Christian Königa5b75052015-09-03 16:40:39 +0200465 list_for_each_entry(lobj, validated, tv.head) {
Christian König36409d122015-12-21 20:31:35 +0100466 struct amdgpu_bo *bo = lobj->robj;
Christian König2f568db2016-02-23 12:36:59 +0100467 bool binding_userptr = false;
Christian Königcc325d12016-02-08 11:08:35 +0100468 struct mm_struct *usermm;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400469
Christian Königcc325d12016-02-08 11:08:35 +0100470 usermm = amdgpu_ttm_tt_get_usermm(bo->tbo.ttm);
471 if (usermm && usermm != current->mm)
472 return -EPERM;
473
Christian König2f568db2016-02-23 12:36:59 +0100474 /* Check if we have user pages and nobody bound the BO already */
475 if (lobj->user_pages && bo->tbo.ttm->state != tt_bound) {
476 size_t size = sizeof(struct page *);
477
478 size *= bo->tbo.ttm->num_pages;
479 memcpy(bo->tbo.ttm->pages, lobj->user_pages, size);
480 binding_userptr = true;
481 }
482
Christian König662bfa62016-09-01 12:13:18 +0200483 if (p->evictable == lobj)
484 p->evictable = NULL;
485
Christian Königf7da30d2016-09-28 12:03:04 +0200486 r = amdgpu_cs_validate(p, bo);
Chunming Zhou14fd8332016-08-04 13:05:46 +0800487 if (r)
Christian König36409d122015-12-21 20:31:35 +0100488 return r;
Christian König662bfa62016-09-01 12:13:18 +0200489
Christian König2f568db2016-02-23 12:36:59 +0100490 if (binding_userptr) {
491 drm_free_large(lobj->user_pages);
492 lobj->user_pages = NULL;
493 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400494 }
495 return 0;
496}
497
Christian König2a7d9bd2015-12-18 20:33:52 +0100498static int amdgpu_cs_parser_bos(struct amdgpu_cs_parser *p,
499 union drm_amdgpu_cs *cs)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400500{
501 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
Christian König2f568db2016-02-23 12:36:59 +0100502 struct amdgpu_bo_list_entry *e;
Christian Königa5b75052015-09-03 16:40:39 +0200503 struct list_head duplicates;
monk.liu840d5142015-04-27 15:19:20 +0800504 bool need_mmap_lock = false;
Christian König2f568db2016-02-23 12:36:59 +0100505 unsigned i, tries = 10;
Christian König636ce252015-12-18 21:26:47 +0100506 int r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400507
Christian König2a7d9bd2015-12-18 20:33:52 +0100508 INIT_LIST_HEAD(&p->validated);
509
510 p->bo_list = amdgpu_bo_list_get(fpriv, cs->in.bo_list_handle);
monk.liu840d5142015-04-27 15:19:20 +0800511 if (p->bo_list) {
Christian König211dff52016-02-22 15:40:59 +0100512 need_mmap_lock = p->bo_list->first_userptr !=
513 p->bo_list->num_entries;
Christian König636ce252015-12-18 21:26:47 +0100514 amdgpu_bo_list_get_list(p->bo_list, &p->validated);
monk.liu840d5142015-04-27 15:19:20 +0800515 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400516
Christian König3c0eea62015-12-11 14:39:05 +0100517 INIT_LIST_HEAD(&duplicates);
Christian König56467eb2015-12-11 15:16:32 +0100518 amdgpu_vm_get_pd_bo(&fpriv->vm, &p->validated, &p->vm_pd);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400519
Christian König758ac172016-05-06 22:14:00 +0200520 if (p->uf_entry.robj)
Christian König91acbeb2015-12-14 16:42:31 +0100521 list_add(&p->uf_entry.tv.head, &p->validated);
522
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400523 if (need_mmap_lock)
524 down_read(&current->mm->mmap_sem);
525
Christian König2f568db2016-02-23 12:36:59 +0100526 while (1) {
527 struct list_head need_pages;
528 unsigned i;
529
530 r = ttm_eu_reserve_buffers(&p->ticket, &p->validated, true,
531 &duplicates);
Marek Olšákf1037952016-07-30 00:48:39 +0200532 if (unlikely(r != 0)) {
jimqu57d7f9b2016-10-20 14:58:04 +0800533 if (r != -ERESTARTSYS)
534 DRM_ERROR("ttm_eu_reserve_buffers failed.\n");
Christian König2f568db2016-02-23 12:36:59 +0100535 goto error_free_pages;
Marek Olšákf1037952016-07-30 00:48:39 +0200536 }
Christian König2f568db2016-02-23 12:36:59 +0100537
538 /* Without a BO list we don't have userptr BOs */
539 if (!p->bo_list)
540 break;
541
542 INIT_LIST_HEAD(&need_pages);
543 for (i = p->bo_list->first_userptr;
544 i < p->bo_list->num_entries; ++i) {
545
546 e = &p->bo_list->array[i];
547
548 if (amdgpu_ttm_tt_userptr_invalidated(e->robj->tbo.ttm,
549 &e->user_invalidated) && e->user_pages) {
550
551 /* We acquired a page array, but somebody
552 * invalidated it. Free it an try again
553 */
554 release_pages(e->user_pages,
555 e->robj->tbo.ttm->num_pages,
556 false);
557 drm_free_large(e->user_pages);
558 e->user_pages = NULL;
559 }
560
561 if (e->robj->tbo.ttm->state != tt_bound &&
562 !e->user_pages) {
563 list_del(&e->tv.head);
564 list_add(&e->tv.head, &need_pages);
565
566 amdgpu_bo_unreserve(e->robj);
567 }
568 }
569
570 if (list_empty(&need_pages))
571 break;
572
573 /* Unreserve everything again. */
574 ttm_eu_backoff_reservation(&p->ticket, &p->validated);
575
Marek Olšákf1037952016-07-30 00:48:39 +0200576 /* We tried too many times, just abort */
Christian König2f568db2016-02-23 12:36:59 +0100577 if (!--tries) {
578 r = -EDEADLK;
Marek Olšákf1037952016-07-30 00:48:39 +0200579 DRM_ERROR("deadlock in %s\n", __func__);
Christian König2f568db2016-02-23 12:36:59 +0100580 goto error_free_pages;
581 }
582
583 /* Fill the page arrays for all useptrs. */
584 list_for_each_entry(e, &need_pages, tv.head) {
585 struct ttm_tt *ttm = e->robj->tbo.ttm;
586
587 e->user_pages = drm_calloc_large(ttm->num_pages,
588 sizeof(struct page*));
589 if (!e->user_pages) {
590 r = -ENOMEM;
Marek Olšákf1037952016-07-30 00:48:39 +0200591 DRM_ERROR("calloc failure in %s\n", __func__);
Christian König2f568db2016-02-23 12:36:59 +0100592 goto error_free_pages;
593 }
594
595 r = amdgpu_ttm_tt_get_user_pages(ttm, e->user_pages);
596 if (r) {
Marek Olšákf1037952016-07-30 00:48:39 +0200597 DRM_ERROR("amdgpu_ttm_tt_get_user_pages failed.\n");
Christian König2f568db2016-02-23 12:36:59 +0100598 drm_free_large(e->user_pages);
599 e->user_pages = NULL;
600 goto error_free_pages;
601 }
602 }
603
604 /* And try again. */
605 list_splice(&need_pages, &p->validated);
606 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400607
Christian Königf69f90a12015-12-21 19:47:42 +0100608 p->bytes_moved_threshold = amdgpu_cs_get_threshold_for_moves(p->adev);
609 p->bytes_moved = 0;
Christian König662bfa62016-09-01 12:13:18 +0200610 p->evictable = list_last_entry(&p->validated,
611 struct amdgpu_bo_list_entry,
612 tv.head);
Christian Königf69f90a12015-12-21 19:47:42 +0100613
Christian Königf7da30d2016-09-28 12:03:04 +0200614 r = amdgpu_vm_validate_pt_bos(p->adev, &fpriv->vm,
615 amdgpu_cs_validate, p);
616 if (r) {
617 DRM_ERROR("amdgpu_vm_validate_pt_bos() failed.\n");
618 goto error_validate;
619 }
620
Christian Königf69f90a12015-12-21 19:47:42 +0100621 r = amdgpu_cs_list_validate(p, &duplicates);
Marek Olšákf1037952016-07-30 00:48:39 +0200622 if (r) {
623 DRM_ERROR("amdgpu_cs_list_validate(duplicates) failed.\n");
Christian Königa5b75052015-09-03 16:40:39 +0200624 goto error_validate;
Marek Olšákf1037952016-07-30 00:48:39 +0200625 }
Christian Königa5b75052015-09-03 16:40:39 +0200626
Christian Königf69f90a12015-12-21 19:47:42 +0100627 r = amdgpu_cs_list_validate(p, &p->validated);
Marek Olšákf1037952016-07-30 00:48:39 +0200628 if (r) {
629 DRM_ERROR("amdgpu_cs_list_validate(validated) failed.\n");
Christian Königa8480302016-01-05 16:03:39 +0100630 goto error_validate;
Marek Olšákf1037952016-07-30 00:48:39 +0200631 }
Christian Königa8480302016-01-05 16:03:39 +0100632
Marek Olšák95844d22016-08-17 23:49:27 +0200633 amdgpu_cs_report_moved_bytes(p->adev, p->bytes_moved);
634
Christian König5a712a82016-06-21 16:28:15 +0200635 fpriv->vm.last_eviction_counter =
636 atomic64_read(&p->adev->num_evictions);
637
Christian Königa8480302016-01-05 16:03:39 +0100638 if (p->bo_list) {
Christian Königd88bf582016-05-06 17:50:03 +0200639 struct amdgpu_bo *gds = p->bo_list->gds_obj;
640 struct amdgpu_bo *gws = p->bo_list->gws_obj;
641 struct amdgpu_bo *oa = p->bo_list->oa_obj;
Christian Königa8480302016-01-05 16:03:39 +0100642 struct amdgpu_vm *vm = &fpriv->vm;
643 unsigned i;
644
645 for (i = 0; i < p->bo_list->num_entries; i++) {
646 struct amdgpu_bo *bo = p->bo_list->array[i].robj;
647
648 p->bo_list->array[i].bo_va = amdgpu_vm_bo_find(vm, bo);
649 }
Christian Königd88bf582016-05-06 17:50:03 +0200650
651 if (gds) {
652 p->job->gds_base = amdgpu_bo_gpu_offset(gds);
653 p->job->gds_size = amdgpu_bo_size(gds);
654 }
655 if (gws) {
656 p->job->gws_base = amdgpu_bo_gpu_offset(gws);
657 p->job->gws_size = amdgpu_bo_size(gws);
658 }
659 if (oa) {
660 p->job->oa_base = amdgpu_bo_gpu_offset(oa);
661 p->job->oa_size = amdgpu_bo_size(oa);
662 }
Christian Königa8480302016-01-05 16:03:39 +0100663 }
Christian Königa5b75052015-09-03 16:40:39 +0200664
Christian Königc855e252016-09-05 17:00:57 +0200665 if (!r && p->uf_entry.robj) {
666 struct amdgpu_bo *uf = p->uf_entry.robj;
667
Christian Königbb990bb2016-09-09 16:32:33 +0200668 r = amdgpu_ttm_bind(&uf->tbo, &uf->tbo.mem);
Christian Königc855e252016-09-05 17:00:57 +0200669 p->job->uf_addr += amdgpu_bo_gpu_offset(uf);
670 }
Christian Königb5f5acb2016-06-29 13:26:41 +0200671
Christian Königa5b75052015-09-03 16:40:39 +0200672error_validate:
Christian Königeceb8a12016-01-11 15:35:21 +0100673 if (r) {
674 amdgpu_vm_move_pt_bos_in_lru(p->adev, &fpriv->vm);
Christian Königa5b75052015-09-03 16:40:39 +0200675 ttm_eu_backoff_reservation(&p->ticket, &p->validated);
Christian Königeceb8a12016-01-11 15:35:21 +0100676 }
Christian Königa5b75052015-09-03 16:40:39 +0200677
Christian König2f568db2016-02-23 12:36:59 +0100678error_free_pages:
679
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400680 if (need_mmap_lock)
681 up_read(&current->mm->mmap_sem);
682
Christian König2f568db2016-02-23 12:36:59 +0100683 if (p->bo_list) {
684 for (i = p->bo_list->first_userptr;
685 i < p->bo_list->num_entries; ++i) {
686 e = &p->bo_list->array[i];
687
688 if (!e->user_pages)
689 continue;
690
691 release_pages(e->user_pages,
692 e->robj->tbo.ttm->num_pages,
693 false);
694 drm_free_large(e->user_pages);
695 }
696 }
697
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400698 return r;
699}
700
701static int amdgpu_cs_sync_rings(struct amdgpu_cs_parser *p)
702{
703 struct amdgpu_bo_list_entry *e;
704 int r;
705
706 list_for_each_entry(e, &p->validated, tv.head) {
707 struct reservation_object *resv = e->robj->tbo.resv;
Christian Könige86f9ce2016-02-08 12:13:05 +0100708 r = amdgpu_sync_resv(p->adev, &p->job->sync, resv, p->filp);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400709
710 if (r)
711 return r;
712 }
713 return 0;
714}
715
Christian König984810f2015-11-14 21:05:35 +0100716/**
717 * cs_parser_fini() - clean parser states
718 * @parser: parser structure holding parsing context.
719 * @error: error number
720 *
721 * If error is set than unvalidate buffer, otherwise just free memory
722 * used by parsing context.
723 **/
724static void amdgpu_cs_parser_fini(struct amdgpu_cs_parser *parser, int error, bool backoff)
Chunming Zhou049fc522015-07-21 14:36:51 +0800725{
Christian Königeceb8a12016-01-11 15:35:21 +0100726 struct amdgpu_fpriv *fpriv = parser->filp->driver_priv;
Christian König984810f2015-11-14 21:05:35 +0100727 unsigned i;
728
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400729 if (!error) {
Nicolai Hähnle28b8d662016-01-27 11:04:19 -0500730 amdgpu_vm_move_pt_bos_in_lru(parser->adev, &fpriv->vm);
731
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400732 ttm_eu_fence_buffer_objects(&parser->ticket,
Christian König984810f2015-11-14 21:05:35 +0100733 &parser->validated,
734 parser->fence);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400735 } else if (backoff) {
736 ttm_eu_backoff_reservation(&parser->ticket,
737 &parser->validated);
738 }
Chris Wilsonf54d1862016-10-25 13:00:45 +0100739 dma_fence_put(parser->fence);
Christian König7e52a812015-11-04 15:44:39 +0100740
Christian König3cb485f2015-05-11 15:34:59 +0200741 if (parser->ctx)
742 amdgpu_ctx_put(parser->ctx);
Chunming Zhoua3348bb2015-08-18 16:25:46 +0800743 if (parser->bo_list)
744 amdgpu_bo_list_put(parser->bo_list);
745
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400746 for (i = 0; i < parser->nchunks; i++)
747 drm_free_large(parser->chunks[i].kdata);
748 kfree(parser->chunks);
Christian König50838c82016-02-03 13:44:52 +0100749 if (parser->job)
750 amdgpu_job_free(parser->job);
Christian König91acbeb2015-12-14 16:42:31 +0100751 amdgpu_bo_unref(&parser->uf_entry.robj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400752}
753
754static int amdgpu_bo_vm_update_pte(struct amdgpu_cs_parser *p,
755 struct amdgpu_vm *vm)
756{
757 struct amdgpu_device *adev = p->adev;
758 struct amdgpu_bo_va *bo_va;
759 struct amdgpu_bo *bo;
760 int i, r;
761
762 r = amdgpu_vm_update_page_directory(adev, vm);
763 if (r)
764 return r;
765
Christian Könige86f9ce2016-02-08 12:13:05 +0100766 r = amdgpu_sync_fence(adev, &p->job->sync, vm->page_directory_fence);
Bas Nieuwenhuizen05906de2015-08-14 20:08:40 +0200767 if (r)
768 return r;
769
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400770 r = amdgpu_vm_clear_freed(adev, vm);
771 if (r)
772 return r;
773
774 if (p->bo_list) {
775 for (i = 0; i < p->bo_list->num_entries; i++) {
Chris Wilsonf54d1862016-10-25 13:00:45 +0100776 struct dma_fence *f;
Christian König91e1a522015-07-06 22:06:40 +0200777
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400778 /* ignore duplicates */
779 bo = p->bo_list->array[i].robj;
780 if (!bo)
781 continue;
782
783 bo_va = p->bo_list->array[i].bo_va;
784 if (bo_va == NULL)
785 continue;
786
Christian König99e124f2016-08-16 14:43:17 +0200787 r = amdgpu_vm_bo_update(adev, bo_va, false);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400788 if (r)
789 return r;
790
Chunming Zhoubb1e38a42015-08-03 18:19:38 +0800791 f = bo_va->last_pt_update;
Christian Könige86f9ce2016-02-08 12:13:05 +0100792 r = amdgpu_sync_fence(adev, &p->job->sync, f);
Christian König91e1a522015-07-06 22:06:40 +0200793 if (r)
794 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400795 }
Christian Königb495bd32015-09-10 14:00:35 +0200796
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400797 }
798
Christian Könige86f9ce2016-02-08 12:13:05 +0100799 r = amdgpu_vm_clear_invalids(adev, vm, &p->job->sync);
Christian Königb495bd32015-09-10 14:00:35 +0200800
801 if (amdgpu_vm_debug && p->bo_list) {
802 /* Invalidate all BOs to test for userspace bugs */
803 for (i = 0; i < p->bo_list->num_entries; i++) {
804 /* ignore duplicates */
805 bo = p->bo_list->array[i].robj;
806 if (!bo)
807 continue;
808
809 amdgpu_vm_bo_invalidate(adev, bo);
810 }
811 }
812
813 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400814}
815
816static int amdgpu_cs_ib_vm_chunk(struct amdgpu_device *adev,
Christian Königb07c60c2016-01-31 12:29:04 +0100817 struct amdgpu_cs_parser *p)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400818{
Christian Königb07c60c2016-01-31 12:29:04 +0100819 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400820 struct amdgpu_vm *vm = &fpriv->vm;
Christian Königb07c60c2016-01-31 12:29:04 +0100821 struct amdgpu_ring *ring = p->job->ring;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400822 int i, r;
823
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400824 /* Only for UVD/VCE VM emulation */
Christian Königb07c60c2016-01-31 12:29:04 +0100825 if (ring->funcs->parse_cs) {
826 for (i = 0; i < p->job->num_ibs; i++) {
827 r = amdgpu_ring_parse_cs(ring, p, i);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400828 if (r)
829 return r;
830 }
Christian König45088ef2016-10-05 16:49:19 +0200831 }
832
833 if (p->job->vm) {
Christian König9a795882016-06-22 14:25:55 +0200834 p->job->vm_pd_addr = amdgpu_bo_gpu_offset(vm->page_directory);
835
836 r = amdgpu_bo_vm_update_pte(p, vm);
837 if (r)
838 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400839 }
840
Christian König9a795882016-06-22 14:25:55 +0200841 return amdgpu_cs_sync_rings(p);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400842}
843
844static int amdgpu_cs_handle_lockup(struct amdgpu_device *adev, int r)
845{
846 if (r == -EDEADLK) {
847 r = amdgpu_gpu_reset(adev);
848 if (!r)
849 r = -EAGAIN;
850 }
851 return r;
852}
853
854static int amdgpu_cs_ib_fill(struct amdgpu_device *adev,
855 struct amdgpu_cs_parser *parser)
856{
857 struct amdgpu_fpriv *fpriv = parser->filp->driver_priv;
858 struct amdgpu_vm *vm = &fpriv->vm;
859 int i, j;
860 int r;
861
Christian König50838c82016-02-03 13:44:52 +0100862 for (i = 0, j = 0; i < parser->nchunks && j < parser->job->num_ibs; i++) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400863 struct amdgpu_cs_chunk *chunk;
864 struct amdgpu_ib *ib;
865 struct drm_amdgpu_cs_chunk_ib *chunk_ib;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400866 struct amdgpu_ring *ring;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400867
868 chunk = &parser->chunks[i];
Christian König50838c82016-02-03 13:44:52 +0100869 ib = &parser->job->ibs[j];
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400870 chunk_ib = (struct drm_amdgpu_cs_chunk_ib *)chunk->kdata;
871
872 if (chunk->chunk_id != AMDGPU_CHUNK_ID_IB)
873 continue;
874
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400875 r = amdgpu_cs_get_ring(adev, chunk_ib->ip_type,
876 chunk_ib->ip_instance, chunk_ib->ring,
877 &ring);
Marek Olšák3ccec532015-06-02 17:44:49 +0200878 if (r)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400879 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400880
Monk Liu753ad492016-08-26 13:28:28 +0800881 if (ib->flags & AMDGPU_IB_FLAG_PREAMBLE) {
882 parser->job->preamble_status |= AMDGPU_PREAMBLE_IB_PRESENT;
883 if (!parser->ctx->preamble_presented) {
884 parser->job->preamble_status |= AMDGPU_PREAMBLE_IB_PRESENT_FIRST;
885 parser->ctx->preamble_presented = true;
886 }
887 }
888
Christian Königb07c60c2016-01-31 12:29:04 +0100889 if (parser->job->ring && parser->job->ring != ring)
890 return -EINVAL;
891
892 parser->job->ring = ring;
893
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400894 if (ring->funcs->parse_cs) {
Christian König4802ce12015-06-10 17:20:11 +0200895 struct amdgpu_bo_va_mapping *m;
Marek Olšák3ccec532015-06-02 17:44:49 +0200896 struct amdgpu_bo *aobj = NULL;
Christian König4802ce12015-06-10 17:20:11 +0200897 uint64_t offset;
898 uint8_t *kptr;
Marek Olšák3ccec532015-06-02 17:44:49 +0200899
Christian König4802ce12015-06-10 17:20:11 +0200900 m = amdgpu_cs_find_mapping(parser, chunk_ib->va_start,
901 &aobj);
Marek Olšák3ccec532015-06-02 17:44:49 +0200902 if (!aobj) {
903 DRM_ERROR("IB va_start is invalid\n");
904 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400905 }
906
Christian König4802ce12015-06-10 17:20:11 +0200907 if ((chunk_ib->va_start + chunk_ib->ib_bytes) >
908 (m->it.last + 1) * AMDGPU_GPU_PAGE_SIZE) {
909 DRM_ERROR("IB va_start+ib_bytes is invalid\n");
910 return -EINVAL;
911 }
912
Marek Olšák3ccec532015-06-02 17:44:49 +0200913 /* the IB should be reserved at this point */
Christian König4802ce12015-06-10 17:20:11 +0200914 r = amdgpu_bo_kmap(aobj, (void **)&kptr);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400915 if (r) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400916 return r;
917 }
918
Christian König4802ce12015-06-10 17:20:11 +0200919 offset = ((uint64_t)m->it.start) * AMDGPU_GPU_PAGE_SIZE;
920 kptr += chunk_ib->va_start - offset;
921
Christian König45088ef2016-10-05 16:49:19 +0200922 r = amdgpu_ib_get(adev, vm, chunk_ib->ib_bytes, ib);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400923 if (r) {
924 DRM_ERROR("Failed to get ib !\n");
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400925 return r;
926 }
927
928 memcpy(ib->ptr, kptr, chunk_ib->ib_bytes);
929 amdgpu_bo_kunmap(aobj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400930 } else {
Christian Königb07c60c2016-01-31 12:29:04 +0100931 r = amdgpu_ib_get(adev, vm, 0, ib);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400932 if (r) {
933 DRM_ERROR("Failed to get ib !\n");
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400934 return r;
935 }
936
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400937 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400938
Christian König45088ef2016-10-05 16:49:19 +0200939 ib->gpu_addr = chunk_ib->va_start;
Marek Olšák3ccec532015-06-02 17:44:49 +0200940 ib->length_dw = chunk_ib->ib_bytes / 4;
Jammy Zhoude807f82015-05-11 23:41:41 +0800941 ib->flags = chunk_ib->flags;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400942 j++;
943 }
944
Christian König758ac172016-05-06 22:14:00 +0200945 /* UVD & VCE fw doesn't support user fences */
Christian Königb5f5acb2016-06-29 13:26:41 +0200946 if (parser->job->uf_addr && (
Christian König21cd9422016-10-05 15:36:39 +0200947 parser->job->ring->funcs->type == AMDGPU_RING_TYPE_UVD ||
948 parser->job->ring->funcs->type == AMDGPU_RING_TYPE_VCE))
Christian König758ac172016-05-06 22:14:00 +0200949 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400950
951 return 0;
952}
953
Christian König2b48d322015-06-19 17:31:29 +0200954static int amdgpu_cs_dependencies(struct amdgpu_device *adev,
955 struct amdgpu_cs_parser *p)
956{
Christian König76a1ea62015-07-06 19:42:10 +0200957 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
Christian König2b48d322015-06-19 17:31:29 +0200958 int i, j, r;
959
Christian König2b48d322015-06-19 17:31:29 +0200960 for (i = 0; i < p->nchunks; ++i) {
961 struct drm_amdgpu_cs_chunk_dep *deps;
962 struct amdgpu_cs_chunk *chunk;
963 unsigned num_deps;
964
965 chunk = &p->chunks[i];
966
967 if (chunk->chunk_id != AMDGPU_CHUNK_ID_DEPENDENCIES)
968 continue;
969
970 deps = (struct drm_amdgpu_cs_chunk_dep *)chunk->kdata;
971 num_deps = chunk->length_dw * 4 /
972 sizeof(struct drm_amdgpu_cs_chunk_dep);
973
974 for (j = 0; j < num_deps; ++j) {
Christian König2b48d322015-06-19 17:31:29 +0200975 struct amdgpu_ring *ring;
Christian König76a1ea62015-07-06 19:42:10 +0200976 struct amdgpu_ctx *ctx;
Chris Wilsonf54d1862016-10-25 13:00:45 +0100977 struct dma_fence *fence;
Christian König2b48d322015-06-19 17:31:29 +0200978
979 r = amdgpu_cs_get_ring(adev, deps[j].ip_type,
980 deps[j].ip_instance,
981 deps[j].ring, &ring);
982 if (r)
983 return r;
984
Christian König76a1ea62015-07-06 19:42:10 +0200985 ctx = amdgpu_ctx_get(fpriv, deps[j].ctx_id);
986 if (ctx == NULL)
987 return -EINVAL;
988
Christian König21c16bf2015-07-07 17:24:49 +0200989 fence = amdgpu_ctx_get_fence(ctx, ring,
990 deps[j].handle);
991 if (IS_ERR(fence)) {
992 r = PTR_ERR(fence);
Christian König76a1ea62015-07-06 19:42:10 +0200993 amdgpu_ctx_put(ctx);
Christian König2b48d322015-06-19 17:31:29 +0200994 return r;
Christian König21c16bf2015-07-07 17:24:49 +0200995
996 } else if (fence) {
Christian Könige86f9ce2016-02-08 12:13:05 +0100997 r = amdgpu_sync_fence(adev, &p->job->sync,
998 fence);
Chris Wilsonf54d1862016-10-25 13:00:45 +0100999 dma_fence_put(fence);
Christian König21c16bf2015-07-07 17:24:49 +02001000 amdgpu_ctx_put(ctx);
1001 if (r)
1002 return r;
Christian König76a1ea62015-07-06 19:42:10 +02001003 }
Christian König2b48d322015-06-19 17:31:29 +02001004 }
1005 }
1006
1007 return 0;
1008}
1009
Christian Königcd75dc62016-01-31 11:30:55 +01001010static int amdgpu_cs_submit(struct amdgpu_cs_parser *p,
1011 union drm_amdgpu_cs *cs)
1012{
Christian Königb07c60c2016-01-31 12:29:04 +01001013 struct amdgpu_ring *ring = p->job->ring;
Christian König92f25092016-05-06 15:57:42 +02001014 struct amd_sched_entity *entity = &p->ctx->rings[ring->idx].entity;
Christian Königcd75dc62016-01-31 11:30:55 +01001015 struct amdgpu_job *job;
Monk Liue6869412016-03-07 12:49:55 +08001016 int r;
Christian Königcd75dc62016-01-31 11:30:55 +01001017
Christian König50838c82016-02-03 13:44:52 +01001018 job = p->job;
1019 p->job = NULL;
Christian Königcd75dc62016-01-31 11:30:55 +01001020
Christian König595a9cd2016-06-30 10:52:03 +02001021 r = amd_sched_job_init(&job->base, &ring->sched, entity, p->filp);
Monk Liue6869412016-03-07 12:49:55 +08001022 if (r) {
Christian Königd71518b2016-02-01 12:20:25 +01001023 amdgpu_job_free(job);
Monk Liue6869412016-03-07 12:49:55 +08001024 return r;
Christian Königcd75dc62016-01-31 11:30:55 +01001025 }
1026
Monk Liue6869412016-03-07 12:49:55 +08001027 job->owner = p->filp;
Monk Liu3aecd242016-08-25 15:40:48 +08001028 job->fence_ctx = entity->fence_context;
Chris Wilsonf54d1862016-10-25 13:00:45 +01001029 p->fence = dma_fence_get(&job->base.s_fence->finished);
Christian König595a9cd2016-06-30 10:52:03 +02001030 cs->out.handle = amdgpu_ctx_add_fence(p->ctx, ring, p->fence);
Christian König758ac172016-05-06 22:14:00 +02001031 job->uf_sequence = cs->out.handle;
Christian Königa5fb4ec2016-06-29 15:10:31 +02001032 amdgpu_job_free_resources(job);
Christian Königcd75dc62016-01-31 11:30:55 +01001033
1034 trace_amdgpu_cs_ioctl(job);
1035 amd_sched_entity_push_job(&job->base);
1036
1037 return 0;
1038}
1039
Chunming Zhou049fc522015-07-21 14:36:51 +08001040int amdgpu_cs_ioctl(struct drm_device *dev, void *data, struct drm_file *filp)
1041{
1042 struct amdgpu_device *adev = dev->dev_private;
1043 union drm_amdgpu_cs *cs = data;
Christian König7e52a812015-11-04 15:44:39 +01001044 struct amdgpu_cs_parser parser = {};
Christian König26a69802015-08-18 21:09:33 +02001045 bool reserved_buffers = false;
1046 int i, r;
Chunming Zhou049fc522015-07-21 14:36:51 +08001047
Christian König0c418f12015-09-01 15:13:53 +02001048 if (!adev->accel_working)
Chunming Zhou049fc522015-07-21 14:36:51 +08001049 return -EBUSY;
Chunming Zhou049fc522015-07-21 14:36:51 +08001050
Christian König7e52a812015-11-04 15:44:39 +01001051 parser.adev = adev;
1052 parser.filp = filp;
1053
1054 r = amdgpu_cs_parser_init(&parser, data);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001055 if (r) {
Chunming Zhou049fc522015-07-21 14:36:51 +08001056 DRM_ERROR("Failed to initialize parser !\n");
Christian König7e52a812015-11-04 15:44:39 +01001057 amdgpu_cs_parser_fini(&parser, r, false);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001058 r = amdgpu_cs_handle_lockup(adev, r);
1059 return r;
1060 }
Christian König2a7d9bd2015-12-18 20:33:52 +01001061 r = amdgpu_cs_parser_bos(&parser, data);
Christian König26a69802015-08-18 21:09:33 +02001062 if (r == -ENOMEM)
1063 DRM_ERROR("Not enough memory for command submission!\n");
1064 else if (r && r != -ERESTARTSYS)
1065 DRM_ERROR("Failed to process the buffer list %d!\n", r);
1066 else if (!r) {
1067 reserved_buffers = true;
Christian König7e52a812015-11-04 15:44:39 +01001068 r = amdgpu_cs_ib_fill(adev, &parser);
Christian König26a69802015-08-18 21:09:33 +02001069 }
1070
1071 if (!r) {
Christian König7e52a812015-11-04 15:44:39 +01001072 r = amdgpu_cs_dependencies(adev, &parser);
Christian König26a69802015-08-18 21:09:33 +02001073 if (r)
1074 DRM_ERROR("Failed in the dependencies handling %d!\n", r);
1075 }
1076
1077 if (r)
1078 goto out;
1079
Christian König50838c82016-02-03 13:44:52 +01001080 for (i = 0; i < parser.job->num_ibs; i++)
Christian König7e52a812015-11-04 15:44:39 +01001081 trace_amdgpu_cs(&parser, i);
Christian König26a69802015-08-18 21:09:33 +02001082
Christian König7e52a812015-11-04 15:44:39 +01001083 r = amdgpu_cs_ib_vm_chunk(adev, &parser);
Chunming Zhou4fe63112015-08-18 16:12:15 +08001084 if (r)
1085 goto out;
1086
Christian König4acabfe2016-01-31 11:32:04 +01001087 r = amdgpu_cs_submit(&parser, cs);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001088
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001089out:
Christian König7e52a812015-11-04 15:44:39 +01001090 amdgpu_cs_parser_fini(&parser, r, reserved_buffers);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001091 r = amdgpu_cs_handle_lockup(adev, r);
1092 return r;
1093}
1094
1095/**
1096 * amdgpu_cs_wait_ioctl - wait for a command submission to finish
1097 *
1098 * @dev: drm device
1099 * @data: data from userspace
1100 * @filp: file private
1101 *
1102 * Wait for the command submission identified by handle to finish.
1103 */
1104int amdgpu_cs_wait_ioctl(struct drm_device *dev, void *data,
1105 struct drm_file *filp)
1106{
1107 union drm_amdgpu_wait_cs *wait = data;
1108 struct amdgpu_device *adev = dev->dev_private;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001109 unsigned long timeout = amdgpu_gem_timeout(wait->in.timeout);
Christian König03507c42015-06-19 17:00:19 +02001110 struct amdgpu_ring *ring = NULL;
Jammy Zhou66b3cf22015-05-08 17:29:40 +08001111 struct amdgpu_ctx *ctx;
Chris Wilsonf54d1862016-10-25 13:00:45 +01001112 struct dma_fence *fence;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001113 long r;
1114
Christian König21c16bf2015-07-07 17:24:49 +02001115 r = amdgpu_cs_get_ring(adev, wait->in.ip_type, wait->in.ip_instance,
1116 wait->in.ring, &ring);
1117 if (r)
1118 return r;
1119
Jammy Zhou66b3cf22015-05-08 17:29:40 +08001120 ctx = amdgpu_ctx_get(filp->driver_priv, wait->in.ctx_id);
1121 if (ctx == NULL)
1122 return -EINVAL;
Chunming Zhou4b559c92015-07-21 15:53:04 +08001123
1124 fence = amdgpu_ctx_get_fence(ctx, ring, wait->in.handle);
1125 if (IS_ERR(fence))
1126 r = PTR_ERR(fence);
1127 else if (fence) {
Chris Wilsonf54d1862016-10-25 13:00:45 +01001128 r = dma_fence_wait_timeout(fence, true, timeout);
1129 dma_fence_put(fence);
Chunming Zhou4b559c92015-07-21 15:53:04 +08001130 } else
Christian König21c16bf2015-07-07 17:24:49 +02001131 r = 1;
1132
Jammy Zhou66b3cf22015-05-08 17:29:40 +08001133 amdgpu_ctx_put(ctx);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001134 if (r < 0)
1135 return r;
1136
1137 memset(wait, 0, sizeof(*wait));
1138 wait->out.status = (r == 0);
1139
1140 return 0;
1141}
1142
1143/**
Junwei Zhangeef18a82016-11-04 16:16:10 -04001144 * amdgpu_cs_get_fence - helper to get fence from drm_amdgpu_fence
1145 *
1146 * @adev: amdgpu device
1147 * @filp: file private
1148 * @user: drm_amdgpu_fence copied from user space
1149 */
1150static struct dma_fence *amdgpu_cs_get_fence(struct amdgpu_device *adev,
1151 struct drm_file *filp,
1152 struct drm_amdgpu_fence *user)
1153{
1154 struct amdgpu_ring *ring;
1155 struct amdgpu_ctx *ctx;
1156 struct dma_fence *fence;
1157 int r;
1158
1159 r = amdgpu_cs_get_ring(adev, user->ip_type, user->ip_instance,
1160 user->ring, &ring);
1161 if (r)
1162 return ERR_PTR(r);
1163
1164 ctx = amdgpu_ctx_get(filp->driver_priv, user->ctx_id);
1165 if (ctx == NULL)
1166 return ERR_PTR(-EINVAL);
1167
1168 fence = amdgpu_ctx_get_fence(ctx, ring, user->seq_no);
1169 amdgpu_ctx_put(ctx);
1170
1171 return fence;
1172}
1173
1174/**
1175 * amdgpu_cs_wait_all_fence - wait on all fences to signal
1176 *
1177 * @adev: amdgpu device
1178 * @filp: file private
1179 * @wait: wait parameters
1180 * @fences: array of drm_amdgpu_fence
1181 */
1182static int amdgpu_cs_wait_all_fences(struct amdgpu_device *adev,
1183 struct drm_file *filp,
1184 union drm_amdgpu_wait_fences *wait,
1185 struct drm_amdgpu_fence *fences)
1186{
1187 uint32_t fence_count = wait->in.fence_count;
1188 unsigned int i;
1189 long r = 1;
1190
1191 for (i = 0; i < fence_count; i++) {
1192 struct dma_fence *fence;
1193 unsigned long timeout = amdgpu_gem_timeout(wait->in.timeout_ns);
1194
1195 fence = amdgpu_cs_get_fence(adev, filp, &fences[i]);
1196 if (IS_ERR(fence))
1197 return PTR_ERR(fence);
1198 else if (!fence)
1199 continue;
1200
1201 r = dma_fence_wait_timeout(fence, true, timeout);
1202 if (r < 0)
1203 return r;
1204
1205 if (r == 0)
1206 break;
1207 }
1208
1209 memset(wait, 0, sizeof(*wait));
1210 wait->out.status = (r > 0);
1211
1212 return 0;
1213}
1214
1215/**
1216 * amdgpu_cs_wait_any_fence - wait on any fence to signal
1217 *
1218 * @adev: amdgpu device
1219 * @filp: file private
1220 * @wait: wait parameters
1221 * @fences: array of drm_amdgpu_fence
1222 */
1223static int amdgpu_cs_wait_any_fence(struct amdgpu_device *adev,
1224 struct drm_file *filp,
1225 union drm_amdgpu_wait_fences *wait,
1226 struct drm_amdgpu_fence *fences)
1227{
1228 unsigned long timeout = amdgpu_gem_timeout(wait->in.timeout_ns);
1229 uint32_t fence_count = wait->in.fence_count;
1230 uint32_t first = ~0;
1231 struct dma_fence **array;
1232 unsigned int i;
1233 long r;
1234
1235 /* Prepare the fence array */
1236 array = kcalloc(fence_count, sizeof(struct dma_fence *), GFP_KERNEL);
1237
1238 if (array == NULL)
1239 return -ENOMEM;
1240
1241 for (i = 0; i < fence_count; i++) {
1242 struct dma_fence *fence;
1243
1244 fence = amdgpu_cs_get_fence(adev, filp, &fences[i]);
1245 if (IS_ERR(fence)) {
1246 r = PTR_ERR(fence);
1247 goto err_free_fence_array;
1248 } else if (fence) {
1249 array[i] = fence;
1250 } else { /* NULL, the fence has been already signaled */
1251 r = 1;
1252 goto out;
1253 }
1254 }
1255
1256 r = dma_fence_wait_any_timeout(array, fence_count, true, timeout,
1257 &first);
1258 if (r < 0)
1259 goto err_free_fence_array;
1260
1261out:
1262 memset(wait, 0, sizeof(*wait));
1263 wait->out.status = (r > 0);
1264 wait->out.first_signaled = first;
1265 /* set return value 0 to indicate success */
1266 r = 0;
1267
1268err_free_fence_array:
1269 for (i = 0; i < fence_count; i++)
1270 dma_fence_put(array[i]);
1271 kfree(array);
1272
1273 return r;
1274}
1275
1276/**
1277 * amdgpu_cs_wait_fences_ioctl - wait for multiple command submissions to finish
1278 *
1279 * @dev: drm device
1280 * @data: data from userspace
1281 * @filp: file private
1282 */
1283int amdgpu_cs_wait_fences_ioctl(struct drm_device *dev, void *data,
1284 struct drm_file *filp)
1285{
1286 struct amdgpu_device *adev = dev->dev_private;
1287 union drm_amdgpu_wait_fences *wait = data;
1288 uint32_t fence_count = wait->in.fence_count;
1289 struct drm_amdgpu_fence *fences_user;
1290 struct drm_amdgpu_fence *fences;
1291 int r;
1292
1293 /* Get the fences from userspace */
1294 fences = kmalloc_array(fence_count, sizeof(struct drm_amdgpu_fence),
1295 GFP_KERNEL);
1296 if (fences == NULL)
1297 return -ENOMEM;
1298
1299 fences_user = (void __user *)(unsigned long)(wait->in.fences);
1300 if (copy_from_user(fences, fences_user,
1301 sizeof(struct drm_amdgpu_fence) * fence_count)) {
1302 r = -EFAULT;
1303 goto err_free_fences;
1304 }
1305
1306 if (wait->in.wait_all)
1307 r = amdgpu_cs_wait_all_fences(adev, filp, wait, fences);
1308 else
1309 r = amdgpu_cs_wait_any_fence(adev, filp, wait, fences);
1310
1311err_free_fences:
1312 kfree(fences);
1313
1314 return r;
1315}
1316
1317/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001318 * amdgpu_cs_find_bo_va - find bo_va for VM address
1319 *
1320 * @parser: command submission parser context
1321 * @addr: VM address
1322 * @bo: resulting BO of the mapping found
1323 *
1324 * Search the buffer objects in the command submission context for a certain
1325 * virtual memory address. Returns allocation structure when found, NULL
1326 * otherwise.
1327 */
1328struct amdgpu_bo_va_mapping *
1329amdgpu_cs_find_mapping(struct amdgpu_cs_parser *parser,
1330 uint64_t addr, struct amdgpu_bo **bo)
1331{
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001332 struct amdgpu_bo_va_mapping *mapping;
Christian König15486fd22015-12-22 16:06:12 +01001333 unsigned i;
1334
1335 if (!parser->bo_list)
1336 return NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001337
1338 addr /= AMDGPU_GPU_PAGE_SIZE;
1339
Christian König15486fd22015-12-22 16:06:12 +01001340 for (i = 0; i < parser->bo_list->num_entries; i++) {
1341 struct amdgpu_bo_list_entry *lobj;
1342
1343 lobj = &parser->bo_list->array[i];
1344 if (!lobj->bo_va)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001345 continue;
1346
Christian König15486fd22015-12-22 16:06:12 +01001347 list_for_each_entry(mapping, &lobj->bo_va->valids, list) {
Christian König7fc11952015-07-30 11:53:42 +02001348 if (mapping->it.start > addr ||
1349 addr > mapping->it.last)
1350 continue;
1351
Christian König15486fd22015-12-22 16:06:12 +01001352 *bo = lobj->bo_va->bo;
Christian König7fc11952015-07-30 11:53:42 +02001353 return mapping;
1354 }
1355
Christian König15486fd22015-12-22 16:06:12 +01001356 list_for_each_entry(mapping, &lobj->bo_va->invalids, list) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001357 if (mapping->it.start > addr ||
1358 addr > mapping->it.last)
1359 continue;
1360
Christian König15486fd22015-12-22 16:06:12 +01001361 *bo = lobj->bo_va->bo;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001362 return mapping;
1363 }
1364 }
1365
1366 return NULL;
1367}
Christian Königc855e252016-09-05 17:00:57 +02001368
1369/**
1370 * amdgpu_cs_sysvm_access_required - make BOs accessible by the system VM
1371 *
1372 * @parser: command submission parser context
1373 *
1374 * Helper for UVD/VCE VM emulation, make sure BOs are accessible by the system VM.
1375 */
1376int amdgpu_cs_sysvm_access_required(struct amdgpu_cs_parser *parser)
1377{
1378 unsigned i;
1379 int r;
1380
1381 if (!parser->bo_list)
1382 return 0;
1383
1384 for (i = 0; i < parser->bo_list->num_entries; i++) {
1385 struct amdgpu_bo *bo = parser->bo_list->array[i].robj;
1386
Christian Königbb990bb2016-09-09 16:32:33 +02001387 r = amdgpu_ttm_bind(&bo->tbo, &bo->tbo.mem);
Christian Königc855e252016-09-05 17:00:57 +02001388 if (unlikely(r))
1389 return r;
Christian König03f48dd2016-08-15 17:00:22 +02001390
1391 if (bo->flags & AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS)
1392 continue;
1393
1394 bo->flags |= AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS;
1395 amdgpu_ttm_placement_from_domain(bo, bo->allowed_domains);
1396 r = ttm_bo_validate(&bo->tbo, &bo->placement, false, false);
1397 if (unlikely(r))
1398 return r;
Christian Königc855e252016-09-05 17:00:57 +02001399 }
1400
1401 return 0;
1402}