1 /* 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 28 #include <linux/file.h> 29 #include <linux/pagemap.h> 30 #include <linux/sync_file.h> 31 #include <linux/dma-buf.h> 32 33 #include <drm/amdgpu_drm.h> 34 #include <drm/drm_syncobj.h> 35 #include "amdgpu_cs.h" 36 #include "amdgpu.h" 37 #include "amdgpu_trace.h" 38 #include "amdgpu_gmc.h" 39 #include "amdgpu_gem.h" 40 #include "amdgpu_ras.h" 41 42 static int amdgpu_cs_parser_init(struct amdgpu_cs_parser *p, 43 struct amdgpu_device *adev, 44 struct drm_file *filp, 45 union drm_amdgpu_cs *cs) 46 { 47 struct amdgpu_fpriv *fpriv = filp->driver_priv; 48 49 if (cs->in.num_chunks == 0) 50 return -EINVAL; 51 52 memset(p, 0, sizeof(*p)); 53 p->adev = adev; 54 p->filp = filp; 55 56 p->ctx = amdgpu_ctx_get(fpriv, cs->in.ctx_id); 57 if (!p->ctx) 58 return -EINVAL; 59 60 if (atomic_read(&p->ctx->guilty)) { 61 amdgpu_ctx_put(p->ctx); 62 return -ECANCELED; 63 } 64 return 0; 65 } 66 67 static int amdgpu_cs_job_idx(struct amdgpu_cs_parser *p, 68 struct drm_amdgpu_cs_chunk_ib *chunk_ib) 69 { 70 struct drm_sched_entity *entity; 71 unsigned int i; 72 int r; 73 74 r = amdgpu_ctx_get_entity(p->ctx, chunk_ib->ip_type, 75 chunk_ib->ip_instance, 76 chunk_ib->ring, &entity); 77 if (r) 78 return r; 79 80 /* 81 * Abort if there is no run queue associated with this entity. 82 * Possibly because of disabled HW IP. 83 */ 84 if (entity->rq == NULL) 85 return -EINVAL; 86 87 /* Check if we can add this IB to some existing job */ 88 for (i = 0; i < p->gang_size; ++i) 89 if (p->entities[i] == entity) 90 return i; 91 92 /* If not increase the gang size if possible */ 93 if (i == AMDGPU_CS_GANG_SIZE) 94 return -EINVAL; 95 96 p->entities[i] = entity; 97 p->gang_size = i + 1; 98 return i; 99 } 100 101 static int amdgpu_cs_p1_ib(struct amdgpu_cs_parser *p, 102 struct drm_amdgpu_cs_chunk_ib *chunk_ib, 103 unsigned int *num_ibs) 104 { 105 int r; 106 107 r = amdgpu_cs_job_idx(p, chunk_ib); 108 if (r < 0) 109 return r; 110 111 ++(num_ibs[r]); 112 return 0; 113 } 114 115 static int amdgpu_cs_p1_user_fence(struct amdgpu_cs_parser *p, 116 struct drm_amdgpu_cs_chunk_fence *data, 117 uint32_t *offset) 118 { 119 struct drm_gem_object *gobj; 120 struct amdgpu_bo *bo; 121 unsigned long size; 122 int r; 123 124 gobj = drm_gem_object_lookup(p->filp, data->handle); 125 if (gobj == NULL) 126 return -EINVAL; 127 128 bo = amdgpu_bo_ref(gem_to_amdgpu_bo(gobj)); 129 p->uf_entry.priority = 0; 130 p->uf_entry.tv.bo = &bo->tbo; 131 /* One for TTM and two for the CS job */ 132 p->uf_entry.tv.num_shared = 3; 133 134 drm_gem_object_put(gobj); 135 136 size = amdgpu_bo_size(bo); 137 if (size != PAGE_SIZE || (data->offset + 8) > size) { 138 r = -EINVAL; 139 goto error_unref; 140 } 141 142 if (amdgpu_ttm_tt_get_usermm(bo->tbo.ttm)) { 143 r = -EINVAL; 144 goto error_unref; 145 } 146 147 *offset = data->offset; 148 149 return 0; 150 151 error_unref: 152 amdgpu_bo_unref(&bo); 153 return r; 154 } 155 156 static int amdgpu_cs_p1_bo_handles(struct amdgpu_cs_parser *p, 157 struct drm_amdgpu_bo_list_in *data) 158 { 159 struct drm_amdgpu_bo_list_entry *info; 160 int r; 161 162 r = amdgpu_bo_create_list_entry_array(data, &info); 163 if (r) 164 return r; 165 166 r = amdgpu_bo_list_create(p->adev, p->filp, info, data->bo_number, 167 &p->bo_list); 168 if (r) 169 goto error_free; 170 171 kvfree(info); 172 return 0; 173 174 error_free: 175 kvfree(info); 176 177 return r; 178 } 179 180 /* Copy the data from userspace and go over it the first time */ 181 static int amdgpu_cs_pass1(struct amdgpu_cs_parser *p, 182 union drm_amdgpu_cs *cs) 183 { 184 struct amdgpu_fpriv *fpriv = p->filp->driver_priv; 185 unsigned int num_ibs[AMDGPU_CS_GANG_SIZE] = { }; 186 struct amdgpu_vm *vm = &fpriv->vm; 187 uint64_t *chunk_array_user; 188 uint64_t *chunk_array; 189 uint32_t uf_offset = 0; 190 unsigned int size; 191 int ret; 192 int i; 193 194 chunk_array = kvmalloc_array(cs->in.num_chunks, sizeof(uint64_t), 195 GFP_KERNEL); 196 if (!chunk_array) 197 return -ENOMEM; 198 199 /* get chunks */ 200 chunk_array_user = u64_to_user_ptr(cs->in.chunks); 201 if (copy_from_user(chunk_array, chunk_array_user, 202 sizeof(uint64_t)*cs->in.num_chunks)) { 203 ret = -EFAULT; 204 goto free_chunk; 205 } 206 207 p->nchunks = cs->in.num_chunks; 208 p->chunks = kvmalloc_array(p->nchunks, sizeof(struct amdgpu_cs_chunk), 209 GFP_KERNEL); 210 if (!p->chunks) { 211 ret = -ENOMEM; 212 goto free_chunk; 213 } 214 215 for (i = 0; i < p->nchunks; i++) { 216 struct drm_amdgpu_cs_chunk __user **chunk_ptr = NULL; 217 struct drm_amdgpu_cs_chunk user_chunk; 218 uint32_t __user *cdata; 219 220 chunk_ptr = u64_to_user_ptr(chunk_array[i]); 221 if (copy_from_user(&user_chunk, chunk_ptr, 222 sizeof(struct drm_amdgpu_cs_chunk))) { 223 ret = -EFAULT; 224 i--; 225 goto free_partial_kdata; 226 } 227 p->chunks[i].chunk_id = user_chunk.chunk_id; 228 p->chunks[i].length_dw = user_chunk.length_dw; 229 230 size = p->chunks[i].length_dw; 231 cdata = u64_to_user_ptr(user_chunk.chunk_data); 232 233 p->chunks[i].kdata = kvmalloc_array(size, sizeof(uint32_t), 234 GFP_KERNEL); 235 if (p->chunks[i].kdata == NULL) { 236 ret = -ENOMEM; 237 i--; 238 goto free_partial_kdata; 239 } 240 size *= sizeof(uint32_t); 241 if (copy_from_user(p->chunks[i].kdata, cdata, size)) { 242 ret = -EFAULT; 243 goto free_partial_kdata; 244 } 245 246 /* Assume the worst on the following checks */ 247 ret = -EINVAL; 248 switch (p->chunks[i].chunk_id) { 249 case AMDGPU_CHUNK_ID_IB: 250 if (size < sizeof(struct drm_amdgpu_cs_chunk_ib)) 251 goto free_partial_kdata; 252 253 ret = amdgpu_cs_p1_ib(p, p->chunks[i].kdata, num_ibs); 254 if (ret) 255 goto free_partial_kdata; 256 break; 257 258 case AMDGPU_CHUNK_ID_FENCE: 259 if (size < sizeof(struct drm_amdgpu_cs_chunk_fence)) 260 goto free_partial_kdata; 261 262 ret = amdgpu_cs_p1_user_fence(p, p->chunks[i].kdata, 263 &uf_offset); 264 if (ret) 265 goto free_partial_kdata; 266 break; 267 268 case AMDGPU_CHUNK_ID_BO_HANDLES: 269 if (size < sizeof(struct drm_amdgpu_bo_list_in)) 270 goto free_partial_kdata; 271 272 ret = amdgpu_cs_p1_bo_handles(p, p->chunks[i].kdata); 273 if (ret) 274 goto free_partial_kdata; 275 break; 276 277 case AMDGPU_CHUNK_ID_DEPENDENCIES: 278 case AMDGPU_CHUNK_ID_SYNCOBJ_IN: 279 case AMDGPU_CHUNK_ID_SYNCOBJ_OUT: 280 case AMDGPU_CHUNK_ID_SCHEDULED_DEPENDENCIES: 281 case AMDGPU_CHUNK_ID_SYNCOBJ_TIMELINE_WAIT: 282 case AMDGPU_CHUNK_ID_SYNCOBJ_TIMELINE_SIGNAL: 283 break; 284 285 default: 286 goto free_partial_kdata; 287 } 288 } 289 290 if (!p->gang_size) { 291 ret = -EINVAL; 292 goto free_partial_kdata; 293 } 294 295 for (i = 0; i < p->gang_size; ++i) { 296 ret = amdgpu_job_alloc(p->adev, num_ibs[i], &p->jobs[i], vm); 297 if (ret) 298 goto free_all_kdata; 299 300 ret = drm_sched_job_init(&p->jobs[i]->base, p->entities[i], 301 &fpriv->vm); 302 if (ret) 303 goto free_all_kdata; 304 } 305 p->gang_leader = p->jobs[p->gang_size - 1]; 306 307 if (p->ctx->vram_lost_counter != p->gang_leader->vram_lost_counter) { 308 ret = -ECANCELED; 309 goto free_all_kdata; 310 } 311 312 if (p->uf_entry.tv.bo) 313 p->gang_leader->uf_addr = uf_offset; 314 kvfree(chunk_array); 315 316 /* Use this opportunity to fill in task info for the vm */ 317 amdgpu_vm_set_task_info(vm); 318 319 return 0; 320 321 free_all_kdata: 322 i = p->nchunks - 1; 323 free_partial_kdata: 324 for (; i >= 0; i--) 325 kvfree(p->chunks[i].kdata); 326 kvfree(p->chunks); 327 p->chunks = NULL; 328 p->nchunks = 0; 329 free_chunk: 330 kvfree(chunk_array); 331 332 return ret; 333 } 334 335 static int amdgpu_cs_p2_ib(struct amdgpu_cs_parser *p, 336 struct amdgpu_cs_chunk *chunk, 337 unsigned int *ce_preempt, 338 unsigned int *de_preempt) 339 { 340 struct drm_amdgpu_cs_chunk_ib *chunk_ib = chunk->kdata; 341 struct amdgpu_fpriv *fpriv = p->filp->driver_priv; 342 struct amdgpu_vm *vm = &fpriv->vm; 343 struct amdgpu_ring *ring; 344 struct amdgpu_job *job; 345 struct amdgpu_ib *ib; 346 int r; 347 348 r = amdgpu_cs_job_idx(p, chunk_ib); 349 if (r < 0) 350 return r; 351 352 job = p->jobs[r]; 353 ring = amdgpu_job_ring(job); 354 ib = &job->ibs[job->num_ibs++]; 355 356 /* MM engine doesn't support user fences */ 357 if (p->uf_entry.tv.bo && ring->funcs->no_user_fence) 358 return -EINVAL; 359 360 if (chunk_ib->ip_type == AMDGPU_HW_IP_GFX && 361 chunk_ib->flags & AMDGPU_IB_FLAG_PREEMPT) { 362 if (chunk_ib->flags & AMDGPU_IB_FLAG_CE) 363 (*ce_preempt)++; 364 else 365 (*de_preempt)++; 366 367 /* Each GFX command submit allows only 1 IB max 368 * preemptible for CE & DE */ 369 if (*ce_preempt > 1 || *de_preempt > 1) 370 return -EINVAL; 371 } 372 373 if (chunk_ib->flags & AMDGPU_IB_FLAG_PREAMBLE) 374 job->preamble_status |= AMDGPU_PREAMBLE_IB_PRESENT; 375 376 r = amdgpu_ib_get(p->adev, vm, ring->funcs->parse_cs ? 377 chunk_ib->ib_bytes : 0, 378 AMDGPU_IB_POOL_DELAYED, ib); 379 if (r) { 380 DRM_ERROR("Failed to get ib !\n"); 381 return r; 382 } 383 384 ib->gpu_addr = chunk_ib->va_start; 385 ib->length_dw = chunk_ib->ib_bytes / 4; 386 ib->flags = chunk_ib->flags; 387 return 0; 388 } 389 390 static int amdgpu_cs_p2_dependencies(struct amdgpu_cs_parser *p, 391 struct amdgpu_cs_chunk *chunk) 392 { 393 struct drm_amdgpu_cs_chunk_dep *deps = chunk->kdata; 394 struct amdgpu_fpriv *fpriv = p->filp->driver_priv; 395 unsigned num_deps; 396 int i, r; 397 398 num_deps = chunk->length_dw * 4 / 399 sizeof(struct drm_amdgpu_cs_chunk_dep); 400 401 for (i = 0; i < num_deps; ++i) { 402 struct amdgpu_ctx *ctx; 403 struct drm_sched_entity *entity; 404 struct dma_fence *fence; 405 406 ctx = amdgpu_ctx_get(fpriv, deps[i].ctx_id); 407 if (ctx == NULL) 408 return -EINVAL; 409 410 r = amdgpu_ctx_get_entity(ctx, deps[i].ip_type, 411 deps[i].ip_instance, 412 deps[i].ring, &entity); 413 if (r) { 414 amdgpu_ctx_put(ctx); 415 return r; 416 } 417 418 fence = amdgpu_ctx_get_fence(ctx, entity, deps[i].handle); 419 amdgpu_ctx_put(ctx); 420 421 if (IS_ERR(fence)) 422 return PTR_ERR(fence); 423 else if (!fence) 424 continue; 425 426 if (chunk->chunk_id == AMDGPU_CHUNK_ID_SCHEDULED_DEPENDENCIES) { 427 struct drm_sched_fence *s_fence; 428 struct dma_fence *old = fence; 429 430 s_fence = to_drm_sched_fence(fence); 431 fence = dma_fence_get(&s_fence->scheduled); 432 dma_fence_put(old); 433 } 434 435 r = amdgpu_sync_fence(&p->gang_leader->sync, fence); 436 dma_fence_put(fence); 437 if (r) 438 return r; 439 } 440 return 0; 441 } 442 443 static int amdgpu_syncobj_lookup_and_add(struct amdgpu_cs_parser *p, 444 uint32_t handle, u64 point, 445 u64 flags) 446 { 447 struct dma_fence *fence; 448 int r; 449 450 r = drm_syncobj_find_fence(p->filp, handle, point, flags, &fence); 451 if (r) { 452 DRM_ERROR("syncobj %u failed to find fence @ %llu (%d)!\n", 453 handle, point, r); 454 return r; 455 } 456 457 r = amdgpu_sync_fence(&p->gang_leader->sync, fence); 458 dma_fence_put(fence); 459 460 return r; 461 } 462 463 static int amdgpu_cs_p2_syncobj_in(struct amdgpu_cs_parser *p, 464 struct amdgpu_cs_chunk *chunk) 465 { 466 struct drm_amdgpu_cs_chunk_sem *deps = chunk->kdata; 467 unsigned num_deps; 468 int i, r; 469 470 num_deps = chunk->length_dw * 4 / 471 sizeof(struct drm_amdgpu_cs_chunk_sem); 472 for (i = 0; i < num_deps; ++i) { 473 r = amdgpu_syncobj_lookup_and_add(p, deps[i].handle, 0, 0); 474 if (r) 475 return r; 476 } 477 478 return 0; 479 } 480 481 static int amdgpu_cs_p2_syncobj_timeline_wait(struct amdgpu_cs_parser *p, 482 struct amdgpu_cs_chunk *chunk) 483 { 484 struct drm_amdgpu_cs_chunk_syncobj *syncobj_deps = chunk->kdata; 485 unsigned num_deps; 486 int i, r; 487 488 num_deps = chunk->length_dw * 4 / 489 sizeof(struct drm_amdgpu_cs_chunk_syncobj); 490 for (i = 0; i < num_deps; ++i) { 491 r = amdgpu_syncobj_lookup_and_add(p, syncobj_deps[i].handle, 492 syncobj_deps[i].point, 493 syncobj_deps[i].flags); 494 if (r) 495 return r; 496 } 497 498 return 0; 499 } 500 501 static int amdgpu_cs_p2_syncobj_out(struct amdgpu_cs_parser *p, 502 struct amdgpu_cs_chunk *chunk) 503 { 504 struct drm_amdgpu_cs_chunk_sem *deps = chunk->kdata; 505 unsigned num_deps; 506 int i; 507 508 num_deps = chunk->length_dw * 4 / 509 sizeof(struct drm_amdgpu_cs_chunk_sem); 510 511 if (p->post_deps) 512 return -EINVAL; 513 514 p->post_deps = kmalloc_array(num_deps, sizeof(*p->post_deps), 515 GFP_KERNEL); 516 p->num_post_deps = 0; 517 518 if (!p->post_deps) 519 return -ENOMEM; 520 521 522 for (i = 0; i < num_deps; ++i) { 523 p->post_deps[i].syncobj = 524 drm_syncobj_find(p->filp, deps[i].handle); 525 if (!p->post_deps[i].syncobj) 526 return -EINVAL; 527 p->post_deps[i].chain = NULL; 528 p->post_deps[i].point = 0; 529 p->num_post_deps++; 530 } 531 532 return 0; 533 } 534 535 static int amdgpu_cs_p2_syncobj_timeline_signal(struct amdgpu_cs_parser *p, 536 struct amdgpu_cs_chunk *chunk) 537 { 538 struct drm_amdgpu_cs_chunk_syncobj *syncobj_deps = chunk->kdata; 539 unsigned num_deps; 540 int i; 541 542 num_deps = chunk->length_dw * 4 / 543 sizeof(struct drm_amdgpu_cs_chunk_syncobj); 544 545 if (p->post_deps) 546 return -EINVAL; 547 548 p->post_deps = kmalloc_array(num_deps, sizeof(*p->post_deps), 549 GFP_KERNEL); 550 p->num_post_deps = 0; 551 552 if (!p->post_deps) 553 return -ENOMEM; 554 555 for (i = 0; i < num_deps; ++i) { 556 struct amdgpu_cs_post_dep *dep = &p->post_deps[i]; 557 558 dep->chain = NULL; 559 if (syncobj_deps[i].point) { 560 dep->chain = dma_fence_chain_alloc(); 561 if (!dep->chain) 562 return -ENOMEM; 563 } 564 565 dep->syncobj = drm_syncobj_find(p->filp, 566 syncobj_deps[i].handle); 567 if (!dep->syncobj) { 568 dma_fence_chain_free(dep->chain); 569 return -EINVAL; 570 } 571 dep->point = syncobj_deps[i].point; 572 p->num_post_deps++; 573 } 574 575 return 0; 576 } 577 578 static int amdgpu_cs_pass2(struct amdgpu_cs_parser *p) 579 { 580 unsigned int ce_preempt = 0, de_preempt = 0; 581 int i, r; 582 583 for (i = 0; i < p->nchunks; ++i) { 584 struct amdgpu_cs_chunk *chunk; 585 586 chunk = &p->chunks[i]; 587 588 switch (chunk->chunk_id) { 589 case AMDGPU_CHUNK_ID_IB: 590 r = amdgpu_cs_p2_ib(p, chunk, &ce_preempt, &de_preempt); 591 if (r) 592 return r; 593 break; 594 case AMDGPU_CHUNK_ID_DEPENDENCIES: 595 case AMDGPU_CHUNK_ID_SCHEDULED_DEPENDENCIES: 596 r = amdgpu_cs_p2_dependencies(p, chunk); 597 if (r) 598 return r; 599 break; 600 case AMDGPU_CHUNK_ID_SYNCOBJ_IN: 601 r = amdgpu_cs_p2_syncobj_in(p, chunk); 602 if (r) 603 return r; 604 break; 605 case AMDGPU_CHUNK_ID_SYNCOBJ_OUT: 606 r = amdgpu_cs_p2_syncobj_out(p, chunk); 607 if (r) 608 return r; 609 break; 610 case AMDGPU_CHUNK_ID_SYNCOBJ_TIMELINE_WAIT: 611 r = amdgpu_cs_p2_syncobj_timeline_wait(p, chunk); 612 if (r) 613 return r; 614 break; 615 case AMDGPU_CHUNK_ID_SYNCOBJ_TIMELINE_SIGNAL: 616 r = amdgpu_cs_p2_syncobj_timeline_signal(p, chunk); 617 if (r) 618 return r; 619 break; 620 } 621 } 622 623 return 0; 624 } 625 626 /* Convert microseconds to bytes. */ 627 static u64 us_to_bytes(struct amdgpu_device *adev, s64 us) 628 { 629 if (us <= 0 || !adev->mm_stats.log2_max_MBps) 630 return 0; 631 632 /* Since accum_us is incremented by a million per second, just 633 * multiply it by the number of MB/s to get the number of bytes. 634 */ 635 return us << adev->mm_stats.log2_max_MBps; 636 } 637 638 static s64 bytes_to_us(struct amdgpu_device *adev, u64 bytes) 639 { 640 if (!adev->mm_stats.log2_max_MBps) 641 return 0; 642 643 return bytes >> adev->mm_stats.log2_max_MBps; 644 } 645 646 /* Returns how many bytes TTM can move right now. If no bytes can be moved, 647 * it returns 0. If it returns non-zero, it's OK to move at least one buffer, 648 * which means it can go over the threshold once. If that happens, the driver 649 * will be in debt and no other buffer migrations can be done until that debt 650 * is repaid. 651 * 652 * This approach allows moving a buffer of any size (it's important to allow 653 * that). 654 * 655 * The currency is simply time in microseconds and it increases as the clock 656 * ticks. The accumulated microseconds (us) are converted to bytes and 657 * returned. 658 */ 659 static void amdgpu_cs_get_threshold_for_moves(struct amdgpu_device *adev, 660 u64 *max_bytes, 661 u64 *max_vis_bytes) 662 { 663 s64 time_us, increment_us; 664 u64 free_vram, total_vram, used_vram; 665 /* Allow a maximum of 200 accumulated ms. This is basically per-IB 666 * throttling. 667 * 668 * It means that in order to get full max MBps, at least 5 IBs per 669 * second must be submitted and not more than 200ms apart from each 670 * other. 671 */ 672 const s64 us_upper_bound = 200000; 673 674 if (!adev->mm_stats.log2_max_MBps) { 675 *max_bytes = 0; 676 *max_vis_bytes = 0; 677 return; 678 } 679 680 total_vram = adev->gmc.real_vram_size - atomic64_read(&adev->vram_pin_size); 681 used_vram = ttm_resource_manager_usage(&adev->mman.vram_mgr.manager); 682 free_vram = used_vram >= total_vram ? 0 : total_vram - used_vram; 683 684 spin_lock(&adev->mm_stats.lock); 685 686 /* Increase the amount of accumulated us. */ 687 time_us = ktime_to_us(ktime_get()); 688 increment_us = time_us - adev->mm_stats.last_update_us; 689 adev->mm_stats.last_update_us = time_us; 690 adev->mm_stats.accum_us = min(adev->mm_stats.accum_us + increment_us, 691 us_upper_bound); 692 693 /* This prevents the short period of low performance when the VRAM 694 * usage is low and the driver is in debt or doesn't have enough 695 * accumulated us to fill VRAM quickly. 696 * 697 * The situation can occur in these cases: 698 * - a lot of VRAM is freed by userspace 699 * - the presence of a big buffer causes a lot of evictions 700 * (solution: split buffers into smaller ones) 701 * 702 * If 128 MB or 1/8th of VRAM is free, start filling it now by setting 703 * accum_us to a positive number. 704 */ 705 if (free_vram >= 128 * 1024 * 1024 || free_vram >= total_vram / 8) { 706 s64 min_us; 707 708 /* Be more aggressive on dGPUs. Try to fill a portion of free 709 * VRAM now. 710 */ 711 if (!(adev->flags & AMD_IS_APU)) 712 min_us = bytes_to_us(adev, free_vram / 4); 713 else 714 min_us = 0; /* Reset accum_us on APUs. */ 715 716 adev->mm_stats.accum_us = max(min_us, adev->mm_stats.accum_us); 717 } 718 719 /* This is set to 0 if the driver is in debt to disallow (optional) 720 * buffer moves. 721 */ 722 *max_bytes = us_to_bytes(adev, adev->mm_stats.accum_us); 723 724 /* Do the same for visible VRAM if half of it is free */ 725 if (!amdgpu_gmc_vram_full_visible(&adev->gmc)) { 726 u64 total_vis_vram = adev->gmc.visible_vram_size; 727 u64 used_vis_vram = 728 amdgpu_vram_mgr_vis_usage(&adev->mman.vram_mgr); 729 730 if (used_vis_vram < total_vis_vram) { 731 u64 free_vis_vram = total_vis_vram - used_vis_vram; 732 adev->mm_stats.accum_us_vis = min(adev->mm_stats.accum_us_vis + 733 increment_us, us_upper_bound); 734 735 if (free_vis_vram >= total_vis_vram / 2) 736 adev->mm_stats.accum_us_vis = 737 max(bytes_to_us(adev, free_vis_vram / 2), 738 adev->mm_stats.accum_us_vis); 739 } 740 741 *max_vis_bytes = us_to_bytes(adev, adev->mm_stats.accum_us_vis); 742 } else { 743 *max_vis_bytes = 0; 744 } 745 746 spin_unlock(&adev->mm_stats.lock); 747 } 748 749 /* Report how many bytes have really been moved for the last command 750 * submission. This can result in a debt that can stop buffer migrations 751 * temporarily. 752 */ 753 void amdgpu_cs_report_moved_bytes(struct amdgpu_device *adev, u64 num_bytes, 754 u64 num_vis_bytes) 755 { 756 spin_lock(&adev->mm_stats.lock); 757 adev->mm_stats.accum_us -= bytes_to_us(adev, num_bytes); 758 adev->mm_stats.accum_us_vis -= bytes_to_us(adev, num_vis_bytes); 759 spin_unlock(&adev->mm_stats.lock); 760 } 761 762 static int amdgpu_cs_bo_validate(void *param, struct amdgpu_bo *bo) 763 { 764 struct amdgpu_device *adev = amdgpu_ttm_adev(bo->tbo.bdev); 765 struct amdgpu_cs_parser *p = param; 766 struct ttm_operation_ctx ctx = { 767 .interruptible = true, 768 .no_wait_gpu = false, 769 .resv = bo->tbo.base.resv 770 }; 771 uint32_t domain; 772 int r; 773 774 if (bo->tbo.pin_count) 775 return 0; 776 777 /* Don't move this buffer if we have depleted our allowance 778 * to move it. Don't move anything if the threshold is zero. 779 */ 780 if (p->bytes_moved < p->bytes_moved_threshold && 781 (!bo->tbo.base.dma_buf || 782 list_empty(&bo->tbo.base.dma_buf->attachments))) { 783 if (!amdgpu_gmc_vram_full_visible(&adev->gmc) && 784 (bo->flags & AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED)) { 785 /* And don't move a CPU_ACCESS_REQUIRED BO to limited 786 * visible VRAM if we've depleted our allowance to do 787 * that. 788 */ 789 if (p->bytes_moved_vis < p->bytes_moved_vis_threshold) 790 domain = bo->preferred_domains; 791 else 792 domain = bo->allowed_domains; 793 } else { 794 domain = bo->preferred_domains; 795 } 796 } else { 797 domain = bo->allowed_domains; 798 } 799 800 retry: 801 amdgpu_bo_placement_from_domain(bo, domain); 802 r = ttm_bo_validate(&bo->tbo, &bo->placement, &ctx); 803 804 p->bytes_moved += ctx.bytes_moved; 805 if (!amdgpu_gmc_vram_full_visible(&adev->gmc) && 806 amdgpu_bo_in_cpu_visible_vram(bo)) 807 p->bytes_moved_vis += ctx.bytes_moved; 808 809 if (unlikely(r == -ENOMEM) && domain != bo->allowed_domains) { 810 domain = bo->allowed_domains; 811 goto retry; 812 } 813 814 return r; 815 } 816 817 static int amdgpu_cs_list_validate(struct amdgpu_cs_parser *p, 818 struct list_head *validated) 819 { 820 struct ttm_operation_ctx ctx = { true, false }; 821 struct amdgpu_bo_list_entry *lobj; 822 int r; 823 824 list_for_each_entry(lobj, validated, tv.head) { 825 struct amdgpu_bo *bo = ttm_to_amdgpu_bo(lobj->tv.bo); 826 struct mm_struct *usermm; 827 828 usermm = amdgpu_ttm_tt_get_usermm(bo->tbo.ttm); 829 if (usermm && usermm != current->mm) 830 return -EPERM; 831 832 if (amdgpu_ttm_tt_is_userptr(bo->tbo.ttm) && 833 lobj->user_invalidated && lobj->user_pages) { 834 amdgpu_bo_placement_from_domain(bo, 835 AMDGPU_GEM_DOMAIN_CPU); 836 r = ttm_bo_validate(&bo->tbo, &bo->placement, &ctx); 837 if (r) 838 return r; 839 840 amdgpu_ttm_tt_set_user_pages(bo->tbo.ttm, 841 lobj->user_pages); 842 } 843 844 r = amdgpu_cs_bo_validate(p, bo); 845 if (r) 846 return r; 847 848 kvfree(lobj->user_pages); 849 lobj->user_pages = NULL; 850 } 851 return 0; 852 } 853 854 static int amdgpu_cs_parser_bos(struct amdgpu_cs_parser *p, 855 union drm_amdgpu_cs *cs) 856 { 857 struct amdgpu_fpriv *fpriv = p->filp->driver_priv; 858 struct amdgpu_vm *vm = &fpriv->vm; 859 struct amdgpu_bo_list_entry *e; 860 struct list_head duplicates; 861 unsigned int i; 862 int r; 863 864 INIT_LIST_HEAD(&p->validated); 865 866 /* p->bo_list could already be assigned if AMDGPU_CHUNK_ID_BO_HANDLES is present */ 867 if (cs->in.bo_list_handle) { 868 if (p->bo_list) 869 return -EINVAL; 870 871 r = amdgpu_bo_list_get(fpriv, cs->in.bo_list_handle, 872 &p->bo_list); 873 if (r) 874 return r; 875 } else if (!p->bo_list) { 876 /* Create a empty bo_list when no handle is provided */ 877 r = amdgpu_bo_list_create(p->adev, p->filp, NULL, 0, 878 &p->bo_list); 879 if (r) 880 return r; 881 } 882 883 mutex_lock(&p->bo_list->bo_list_mutex); 884 885 /* One for TTM and one for the CS job */ 886 amdgpu_bo_list_for_each_entry(e, p->bo_list) 887 e->tv.num_shared = 2; 888 889 amdgpu_bo_list_get_list(p->bo_list, &p->validated); 890 891 INIT_LIST_HEAD(&duplicates); 892 amdgpu_vm_get_pd_bo(&fpriv->vm, &p->validated, &p->vm_pd); 893 894 if (p->uf_entry.tv.bo && !ttm_to_amdgpu_bo(p->uf_entry.tv.bo)->parent) 895 list_add(&p->uf_entry.tv.head, &p->validated); 896 897 /* Get userptr backing pages. If pages are updated after registered 898 * in amdgpu_gem_userptr_ioctl(), amdgpu_cs_list_validate() will do 899 * amdgpu_ttm_backend_bind() to flush and invalidate new pages 900 */ 901 amdgpu_bo_list_for_each_userptr_entry(e, p->bo_list) { 902 struct amdgpu_bo *bo = ttm_to_amdgpu_bo(e->tv.bo); 903 bool userpage_invalidated = false; 904 int i; 905 906 e->user_pages = kvmalloc_array(bo->tbo.ttm->num_pages, 907 sizeof(struct page *), 908 GFP_KERNEL | __GFP_ZERO); 909 if (!e->user_pages) { 910 DRM_ERROR("kvmalloc_array failure\n"); 911 r = -ENOMEM; 912 goto out_free_user_pages; 913 } 914 915 r = amdgpu_ttm_tt_get_user_pages(bo, e->user_pages); 916 if (r) { 917 kvfree(e->user_pages); 918 e->user_pages = NULL; 919 goto out_free_user_pages; 920 } 921 922 for (i = 0; i < bo->tbo.ttm->num_pages; i++) { 923 if (bo->tbo.ttm->pages[i] != e->user_pages[i]) { 924 userpage_invalidated = true; 925 break; 926 } 927 } 928 e->user_invalidated = userpage_invalidated; 929 } 930 931 r = ttm_eu_reserve_buffers(&p->ticket, &p->validated, true, 932 &duplicates); 933 if (unlikely(r != 0)) { 934 if (r != -ERESTARTSYS) 935 DRM_ERROR("ttm_eu_reserve_buffers failed.\n"); 936 goto out_free_user_pages; 937 } 938 939 amdgpu_bo_list_for_each_entry(e, p->bo_list) { 940 struct amdgpu_bo *bo = ttm_to_amdgpu_bo(e->tv.bo); 941 942 e->bo_va = amdgpu_vm_bo_find(vm, bo); 943 } 944 945 amdgpu_cs_get_threshold_for_moves(p->adev, &p->bytes_moved_threshold, 946 &p->bytes_moved_vis_threshold); 947 p->bytes_moved = 0; 948 p->bytes_moved_vis = 0; 949 950 r = amdgpu_vm_validate_pt_bos(p->adev, &fpriv->vm, 951 amdgpu_cs_bo_validate, p); 952 if (r) { 953 DRM_ERROR("amdgpu_vm_validate_pt_bos() failed.\n"); 954 goto error_validate; 955 } 956 957 r = amdgpu_cs_list_validate(p, &duplicates); 958 if (r) 959 goto error_validate; 960 961 r = amdgpu_cs_list_validate(p, &p->validated); 962 if (r) 963 goto error_validate; 964 965 if (p->uf_entry.tv.bo) { 966 struct amdgpu_bo *uf = ttm_to_amdgpu_bo(p->uf_entry.tv.bo); 967 968 r = amdgpu_ttm_alloc_gart(&uf->tbo); 969 if (r) 970 goto error_validate; 971 972 p->gang_leader->uf_addr += amdgpu_bo_gpu_offset(uf); 973 } 974 975 amdgpu_cs_report_moved_bytes(p->adev, p->bytes_moved, 976 p->bytes_moved_vis); 977 978 for (i = 0; i < p->gang_size; ++i) 979 amdgpu_job_set_resources(p->jobs[i], p->bo_list->gds_obj, 980 p->bo_list->gws_obj, 981 p->bo_list->oa_obj); 982 return 0; 983 984 error_validate: 985 ttm_eu_backoff_reservation(&p->ticket, &p->validated); 986 987 out_free_user_pages: 988 amdgpu_bo_list_for_each_userptr_entry(e, p->bo_list) { 989 struct amdgpu_bo *bo = ttm_to_amdgpu_bo(e->tv.bo); 990 991 if (!e->user_pages) 992 continue; 993 amdgpu_ttm_tt_get_user_pages_done(bo->tbo.ttm); 994 kvfree(e->user_pages); 995 e->user_pages = NULL; 996 } 997 mutex_unlock(&p->bo_list->bo_list_mutex); 998 return r; 999 } 1000 1001 static void trace_amdgpu_cs_ibs(struct amdgpu_cs_parser *p) 1002 { 1003 int i, j; 1004 1005 if (!trace_amdgpu_cs_enabled()) 1006 return; 1007 1008 for (i = 0; i < p->gang_size; ++i) { 1009 struct amdgpu_job *job = p->jobs[i]; 1010 1011 for (j = 0; j < job->num_ibs; ++j) 1012 trace_amdgpu_cs(p, job, &job->ibs[j]); 1013 } 1014 } 1015 1016 static int amdgpu_cs_patch_ibs(struct amdgpu_cs_parser *p, 1017 struct amdgpu_job *job) 1018 { 1019 struct amdgpu_ring *ring = amdgpu_job_ring(job); 1020 unsigned int i; 1021 int r; 1022 1023 /* Only for UVD/VCE VM emulation */ 1024 if (!ring->funcs->parse_cs && !ring->funcs->patch_cs_in_place) 1025 return 0; 1026 1027 for (i = 0; i < job->num_ibs; ++i) { 1028 struct amdgpu_ib *ib = &job->ibs[i]; 1029 struct amdgpu_bo_va_mapping *m; 1030 struct amdgpu_bo *aobj; 1031 uint64_t va_start; 1032 uint8_t *kptr; 1033 1034 va_start = ib->gpu_addr & AMDGPU_GMC_HOLE_MASK; 1035 r = amdgpu_cs_find_mapping(p, va_start, &aobj, &m); 1036 if (r) { 1037 DRM_ERROR("IB va_start is invalid\n"); 1038 return r; 1039 } 1040 1041 if ((va_start + ib->length_dw * 4) > 1042 (m->last + 1) * AMDGPU_GPU_PAGE_SIZE) { 1043 DRM_ERROR("IB va_start+ib_bytes is invalid\n"); 1044 return -EINVAL; 1045 } 1046 1047 /* the IB should be reserved at this point */ 1048 r = amdgpu_bo_kmap(aobj, (void **)&kptr); 1049 if (r) { 1050 return r; 1051 } 1052 1053 kptr += va_start - (m->start * AMDGPU_GPU_PAGE_SIZE); 1054 1055 if (ring->funcs->parse_cs) { 1056 memcpy(ib->ptr, kptr, ib->length_dw * 4); 1057 amdgpu_bo_kunmap(aobj); 1058 1059 r = amdgpu_ring_parse_cs(ring, p, job, ib); 1060 if (r) 1061 return r; 1062 } else { 1063 ib->ptr = (uint32_t *)kptr; 1064 r = amdgpu_ring_patch_cs_in_place(ring, p, job, ib); 1065 amdgpu_bo_kunmap(aobj); 1066 if (r) 1067 return r; 1068 } 1069 } 1070 1071 return 0; 1072 } 1073 1074 static int amdgpu_cs_patch_jobs(struct amdgpu_cs_parser *p) 1075 { 1076 unsigned int i; 1077 int r; 1078 1079 for (i = 0; i < p->gang_size; ++i) { 1080 r = amdgpu_cs_patch_ibs(p, p->jobs[i]); 1081 if (r) 1082 return r; 1083 } 1084 return 0; 1085 } 1086 1087 static int amdgpu_cs_vm_handling(struct amdgpu_cs_parser *p) 1088 { 1089 struct amdgpu_fpriv *fpriv = p->filp->driver_priv; 1090 struct amdgpu_job *job = p->gang_leader; 1091 struct amdgpu_device *adev = p->adev; 1092 struct amdgpu_vm *vm = &fpriv->vm; 1093 struct amdgpu_bo_list_entry *e; 1094 struct amdgpu_bo_va *bo_va; 1095 struct amdgpu_bo *bo; 1096 unsigned int i; 1097 int r; 1098 1099 r = amdgpu_vm_clear_freed(adev, vm, NULL); 1100 if (r) 1101 return r; 1102 1103 r = amdgpu_vm_bo_update(adev, fpriv->prt_va, false); 1104 if (r) 1105 return r; 1106 1107 r = amdgpu_sync_fence(&job->sync, fpriv->prt_va->last_pt_update); 1108 if (r) 1109 return r; 1110 1111 if (fpriv->csa_va) { 1112 bo_va = fpriv->csa_va; 1113 BUG_ON(!bo_va); 1114 r = amdgpu_vm_bo_update(adev, bo_va, false); 1115 if (r) 1116 return r; 1117 1118 r = amdgpu_sync_fence(&job->sync, bo_va->last_pt_update); 1119 if (r) 1120 return r; 1121 } 1122 1123 amdgpu_bo_list_for_each_entry(e, p->bo_list) { 1124 /* ignore duplicates */ 1125 bo = ttm_to_amdgpu_bo(e->tv.bo); 1126 if (!bo) 1127 continue; 1128 1129 bo_va = e->bo_va; 1130 if (bo_va == NULL) 1131 continue; 1132 1133 r = amdgpu_vm_bo_update(adev, bo_va, false); 1134 if (r) 1135 return r; 1136 1137 r = amdgpu_sync_fence(&job->sync, bo_va->last_pt_update); 1138 if (r) 1139 return r; 1140 } 1141 1142 r = amdgpu_vm_handle_moved(adev, vm); 1143 if (r) 1144 return r; 1145 1146 r = amdgpu_vm_update_pdes(adev, vm, false); 1147 if (r) 1148 return r; 1149 1150 r = amdgpu_sync_fence(&job->sync, vm->last_update); 1151 if (r) 1152 return r; 1153 1154 for (i = 0; i < p->gang_size; ++i) { 1155 job = p->jobs[i]; 1156 1157 if (!job->vm) 1158 continue; 1159 1160 job->vm_pd_addr = amdgpu_gmc_pd_addr(vm->root.bo); 1161 } 1162 1163 if (amdgpu_vm_debug) { 1164 /* Invalidate all BOs to test for userspace bugs */ 1165 amdgpu_bo_list_for_each_entry(e, p->bo_list) { 1166 struct amdgpu_bo *bo = ttm_to_amdgpu_bo(e->tv.bo); 1167 1168 /* ignore duplicates */ 1169 if (!bo) 1170 continue; 1171 1172 amdgpu_vm_bo_invalidate(adev, bo, false); 1173 } 1174 } 1175 1176 return 0; 1177 } 1178 1179 static int amdgpu_cs_sync_rings(struct amdgpu_cs_parser *p) 1180 { 1181 struct amdgpu_fpriv *fpriv = p->filp->driver_priv; 1182 struct amdgpu_job *leader = p->gang_leader; 1183 struct amdgpu_bo_list_entry *e; 1184 unsigned int i; 1185 int r; 1186 1187 list_for_each_entry(e, &p->validated, tv.head) { 1188 struct amdgpu_bo *bo = ttm_to_amdgpu_bo(e->tv.bo); 1189 struct dma_resv *resv = bo->tbo.base.resv; 1190 enum amdgpu_sync_mode sync_mode; 1191 1192 sync_mode = amdgpu_bo_explicit_sync(bo) ? 1193 AMDGPU_SYNC_EXPLICIT : AMDGPU_SYNC_NE_OWNER; 1194 r = amdgpu_sync_resv(p->adev, &leader->sync, resv, sync_mode, 1195 &fpriv->vm); 1196 if (r) 1197 return r; 1198 } 1199 1200 for (i = 0; i < p->gang_size - 1; ++i) { 1201 r = amdgpu_sync_clone(&leader->sync, &p->jobs[i]->sync); 1202 if (r) 1203 return r; 1204 } 1205 1206 r = amdgpu_ctx_wait_prev_fence(p->ctx, p->entities[p->gang_size - 1]); 1207 if (r && r != -ERESTARTSYS) 1208 DRM_ERROR("amdgpu_ctx_wait_prev_fence failed.\n"); 1209 1210 return r; 1211 } 1212 1213 static void amdgpu_cs_post_dependencies(struct amdgpu_cs_parser *p) 1214 { 1215 int i; 1216 1217 for (i = 0; i < p->num_post_deps; ++i) { 1218 if (p->post_deps[i].chain && p->post_deps[i].point) { 1219 drm_syncobj_add_point(p->post_deps[i].syncobj, 1220 p->post_deps[i].chain, 1221 p->fence, p->post_deps[i].point); 1222 p->post_deps[i].chain = NULL; 1223 } else { 1224 drm_syncobj_replace_fence(p->post_deps[i].syncobj, 1225 p->fence); 1226 } 1227 } 1228 } 1229 1230 static int amdgpu_cs_submit(struct amdgpu_cs_parser *p, 1231 union drm_amdgpu_cs *cs) 1232 { 1233 struct amdgpu_fpriv *fpriv = p->filp->driver_priv; 1234 struct amdgpu_job *leader = p->gang_leader; 1235 struct amdgpu_bo_list_entry *e; 1236 unsigned int i; 1237 uint64_t seq; 1238 int r; 1239 1240 for (i = 0; i < p->gang_size; ++i) 1241 drm_sched_job_arm(&p->jobs[i]->base); 1242 1243 for (i = 0; i < (p->gang_size - 1); ++i) { 1244 struct dma_fence *fence; 1245 1246 fence = &p->jobs[i]->base.s_fence->scheduled; 1247 r = amdgpu_sync_fence(&leader->sync, fence); 1248 if (r) 1249 goto error_cleanup; 1250 } 1251 1252 if (p->gang_size > 1) { 1253 for (i = 0; i < p->gang_size; ++i) 1254 amdgpu_job_set_gang_leader(p->jobs[i], leader); 1255 } 1256 1257 /* No memory allocation is allowed while holding the notifier lock. 1258 * The lock is held until amdgpu_cs_submit is finished and fence is 1259 * added to BOs. 1260 */ 1261 mutex_lock(&p->adev->notifier_lock); 1262 1263 /* If userptr are invalidated after amdgpu_cs_parser_bos(), return 1264 * -EAGAIN, drmIoctl in libdrm will restart the amdgpu_cs_ioctl. 1265 */ 1266 r = 0; 1267 amdgpu_bo_list_for_each_userptr_entry(e, p->bo_list) { 1268 struct amdgpu_bo *bo = ttm_to_amdgpu_bo(e->tv.bo); 1269 1270 r |= !amdgpu_ttm_tt_get_user_pages_done(bo->tbo.ttm); 1271 } 1272 if (r) { 1273 r = -EAGAIN; 1274 goto error_unlock; 1275 } 1276 1277 p->fence = dma_fence_get(&leader->base.s_fence->finished); 1278 list_for_each_entry(e, &p->validated, tv.head) { 1279 1280 /* Everybody except for the gang leader uses READ */ 1281 for (i = 0; i < (p->gang_size - 1); ++i) { 1282 dma_resv_add_fence(e->tv.bo->base.resv, 1283 &p->jobs[i]->base.s_fence->finished, 1284 DMA_RESV_USAGE_READ); 1285 } 1286 1287 /* The gang leader is remembered as writer */ 1288 e->tv.num_shared = 0; 1289 } 1290 1291 seq = amdgpu_ctx_add_fence(p->ctx, p->entities[p->gang_size - 1], 1292 p->fence); 1293 amdgpu_cs_post_dependencies(p); 1294 1295 if ((leader->preamble_status & AMDGPU_PREAMBLE_IB_PRESENT) && 1296 !p->ctx->preamble_presented) { 1297 leader->preamble_status |= AMDGPU_PREAMBLE_IB_PRESENT_FIRST; 1298 p->ctx->preamble_presented = true; 1299 } 1300 1301 cs->out.handle = seq; 1302 leader->uf_sequence = seq; 1303 1304 amdgpu_vm_bo_trace_cs(&fpriv->vm, &p->ticket); 1305 for (i = 0; i < p->gang_size; ++i) { 1306 amdgpu_job_free_resources(p->jobs[i]); 1307 trace_amdgpu_cs_ioctl(p->jobs[i]); 1308 drm_sched_entity_push_job(&p->jobs[i]->base); 1309 p->jobs[i] = NULL; 1310 } 1311 1312 amdgpu_vm_move_to_lru_tail(p->adev, &fpriv->vm); 1313 ttm_eu_fence_buffer_objects(&p->ticket, &p->validated, p->fence); 1314 1315 mutex_unlock(&p->adev->notifier_lock); 1316 mutex_unlock(&p->bo_list->bo_list_mutex); 1317 return 0; 1318 1319 error_unlock: 1320 mutex_unlock(&p->adev->notifier_lock); 1321 1322 error_cleanup: 1323 for (i = 0; i < p->gang_size; ++i) 1324 drm_sched_job_cleanup(&p->jobs[i]->base); 1325 return r; 1326 } 1327 1328 /* Cleanup the parser structure */ 1329 static void amdgpu_cs_parser_fini(struct amdgpu_cs_parser *parser) 1330 { 1331 unsigned i; 1332 1333 for (i = 0; i < parser->num_post_deps; i++) { 1334 drm_syncobj_put(parser->post_deps[i].syncobj); 1335 kfree(parser->post_deps[i].chain); 1336 } 1337 kfree(parser->post_deps); 1338 1339 dma_fence_put(parser->fence); 1340 1341 if (parser->ctx) 1342 amdgpu_ctx_put(parser->ctx); 1343 if (parser->bo_list) 1344 amdgpu_bo_list_put(parser->bo_list); 1345 1346 for (i = 0; i < parser->nchunks; i++) 1347 kvfree(parser->chunks[i].kdata); 1348 kvfree(parser->chunks); 1349 for (i = 0; i < parser->gang_size; ++i) { 1350 if (parser->jobs[i]) 1351 amdgpu_job_free(parser->jobs[i]); 1352 } 1353 if (parser->uf_entry.tv.bo) { 1354 struct amdgpu_bo *uf = ttm_to_amdgpu_bo(parser->uf_entry.tv.bo); 1355 1356 amdgpu_bo_unref(&uf); 1357 } 1358 } 1359 1360 int amdgpu_cs_ioctl(struct drm_device *dev, void *data, struct drm_file *filp) 1361 { 1362 struct amdgpu_device *adev = drm_to_adev(dev); 1363 struct amdgpu_cs_parser parser; 1364 int r; 1365 1366 if (amdgpu_ras_intr_triggered()) 1367 return -EHWPOISON; 1368 1369 if (!adev->accel_working) 1370 return -EBUSY; 1371 1372 r = amdgpu_cs_parser_init(&parser, adev, filp, data); 1373 if (r) { 1374 if (printk_ratelimit()) 1375 DRM_ERROR("Failed to initialize parser %d!\n", r); 1376 return r; 1377 } 1378 1379 r = amdgpu_cs_pass1(&parser, data); 1380 if (r) 1381 goto error_fini; 1382 1383 r = amdgpu_cs_pass2(&parser); 1384 if (r) 1385 goto error_fini; 1386 1387 r = amdgpu_cs_parser_bos(&parser, data); 1388 if (r) { 1389 if (r == -ENOMEM) 1390 DRM_ERROR("Not enough memory for command submission!\n"); 1391 else if (r != -ERESTARTSYS && r != -EAGAIN) 1392 DRM_ERROR("Failed to process the buffer list %d!\n", r); 1393 goto error_fini; 1394 } 1395 1396 r = amdgpu_cs_patch_jobs(&parser); 1397 if (r) 1398 goto error_backoff; 1399 1400 r = amdgpu_cs_vm_handling(&parser); 1401 if (r) 1402 goto error_backoff; 1403 1404 r = amdgpu_cs_sync_rings(&parser); 1405 if (r) 1406 goto error_backoff; 1407 1408 trace_amdgpu_cs_ibs(&parser); 1409 1410 r = amdgpu_cs_submit(&parser, data); 1411 if (r) 1412 goto error_backoff; 1413 1414 amdgpu_cs_parser_fini(&parser); 1415 return 0; 1416 1417 error_backoff: 1418 ttm_eu_backoff_reservation(&parser.ticket, &parser.validated); 1419 mutex_unlock(&parser.bo_list->bo_list_mutex); 1420 1421 error_fini: 1422 amdgpu_cs_parser_fini(&parser); 1423 return r; 1424 } 1425 1426 /** 1427 * amdgpu_cs_wait_ioctl - wait for a command submission to finish 1428 * 1429 * @dev: drm device 1430 * @data: data from userspace 1431 * @filp: file private 1432 * 1433 * Wait for the command submission identified by handle to finish. 1434 */ 1435 int amdgpu_cs_wait_ioctl(struct drm_device *dev, void *data, 1436 struct drm_file *filp) 1437 { 1438 union drm_amdgpu_wait_cs *wait = data; 1439 unsigned long timeout = amdgpu_gem_timeout(wait->in.timeout); 1440 struct drm_sched_entity *entity; 1441 struct amdgpu_ctx *ctx; 1442 struct dma_fence *fence; 1443 long r; 1444 1445 ctx = amdgpu_ctx_get(filp->driver_priv, wait->in.ctx_id); 1446 if (ctx == NULL) 1447 return -EINVAL; 1448 1449 r = amdgpu_ctx_get_entity(ctx, wait->in.ip_type, wait->in.ip_instance, 1450 wait->in.ring, &entity); 1451 if (r) { 1452 amdgpu_ctx_put(ctx); 1453 return r; 1454 } 1455 1456 fence = amdgpu_ctx_get_fence(ctx, entity, wait->in.handle); 1457 if (IS_ERR(fence)) 1458 r = PTR_ERR(fence); 1459 else if (fence) { 1460 r = dma_fence_wait_timeout(fence, true, timeout); 1461 if (r > 0 && fence->error) 1462 r = fence->error; 1463 dma_fence_put(fence); 1464 } else 1465 r = 1; 1466 1467 amdgpu_ctx_put(ctx); 1468 if (r < 0) 1469 return r; 1470 1471 memset(wait, 0, sizeof(*wait)); 1472 wait->out.status = (r == 0); 1473 1474 return 0; 1475 } 1476 1477 /** 1478 * amdgpu_cs_get_fence - helper to get fence from drm_amdgpu_fence 1479 * 1480 * @adev: amdgpu device 1481 * @filp: file private 1482 * @user: drm_amdgpu_fence copied from user space 1483 */ 1484 static struct dma_fence *amdgpu_cs_get_fence(struct amdgpu_device *adev, 1485 struct drm_file *filp, 1486 struct drm_amdgpu_fence *user) 1487 { 1488 struct drm_sched_entity *entity; 1489 struct amdgpu_ctx *ctx; 1490 struct dma_fence *fence; 1491 int r; 1492 1493 ctx = amdgpu_ctx_get(filp->driver_priv, user->ctx_id); 1494 if (ctx == NULL) 1495 return ERR_PTR(-EINVAL); 1496 1497 r = amdgpu_ctx_get_entity(ctx, user->ip_type, user->ip_instance, 1498 user->ring, &entity); 1499 if (r) { 1500 amdgpu_ctx_put(ctx); 1501 return ERR_PTR(r); 1502 } 1503 1504 fence = amdgpu_ctx_get_fence(ctx, entity, user->seq_no); 1505 amdgpu_ctx_put(ctx); 1506 1507 return fence; 1508 } 1509 1510 int amdgpu_cs_fence_to_handle_ioctl(struct drm_device *dev, void *data, 1511 struct drm_file *filp) 1512 { 1513 struct amdgpu_device *adev = drm_to_adev(dev); 1514 union drm_amdgpu_fence_to_handle *info = data; 1515 struct dma_fence *fence; 1516 struct drm_syncobj *syncobj; 1517 struct sync_file *sync_file; 1518 int fd, r; 1519 1520 fence = amdgpu_cs_get_fence(adev, filp, &info->in.fence); 1521 if (IS_ERR(fence)) 1522 return PTR_ERR(fence); 1523 1524 if (!fence) 1525 fence = dma_fence_get_stub(); 1526 1527 switch (info->in.what) { 1528 case AMDGPU_FENCE_TO_HANDLE_GET_SYNCOBJ: 1529 r = drm_syncobj_create(&syncobj, 0, fence); 1530 dma_fence_put(fence); 1531 if (r) 1532 return r; 1533 r = drm_syncobj_get_handle(filp, syncobj, &info->out.handle); 1534 drm_syncobj_put(syncobj); 1535 return r; 1536 1537 case AMDGPU_FENCE_TO_HANDLE_GET_SYNCOBJ_FD: 1538 r = drm_syncobj_create(&syncobj, 0, fence); 1539 dma_fence_put(fence); 1540 if (r) 1541 return r; 1542 r = drm_syncobj_get_fd(syncobj, (int *)&info->out.handle); 1543 drm_syncobj_put(syncobj); 1544 return r; 1545 1546 case AMDGPU_FENCE_TO_HANDLE_GET_SYNC_FILE_FD: 1547 fd = get_unused_fd_flags(O_CLOEXEC); 1548 if (fd < 0) { 1549 dma_fence_put(fence); 1550 return fd; 1551 } 1552 1553 sync_file = sync_file_create(fence); 1554 dma_fence_put(fence); 1555 if (!sync_file) { 1556 put_unused_fd(fd); 1557 return -ENOMEM; 1558 } 1559 1560 fd_install(fd, sync_file->file); 1561 info->out.handle = fd; 1562 return 0; 1563 1564 default: 1565 dma_fence_put(fence); 1566 return -EINVAL; 1567 } 1568 } 1569 1570 /** 1571 * amdgpu_cs_wait_all_fences - wait on all fences to signal 1572 * 1573 * @adev: amdgpu device 1574 * @filp: file private 1575 * @wait: wait parameters 1576 * @fences: array of drm_amdgpu_fence 1577 */ 1578 static int amdgpu_cs_wait_all_fences(struct amdgpu_device *adev, 1579 struct drm_file *filp, 1580 union drm_amdgpu_wait_fences *wait, 1581 struct drm_amdgpu_fence *fences) 1582 { 1583 uint32_t fence_count = wait->in.fence_count; 1584 unsigned int i; 1585 long r = 1; 1586 1587 for (i = 0; i < fence_count; i++) { 1588 struct dma_fence *fence; 1589 unsigned long timeout = amdgpu_gem_timeout(wait->in.timeout_ns); 1590 1591 fence = amdgpu_cs_get_fence(adev, filp, &fences[i]); 1592 if (IS_ERR(fence)) 1593 return PTR_ERR(fence); 1594 else if (!fence) 1595 continue; 1596 1597 r = dma_fence_wait_timeout(fence, true, timeout); 1598 dma_fence_put(fence); 1599 if (r < 0) 1600 return r; 1601 1602 if (r == 0) 1603 break; 1604 1605 if (fence->error) 1606 return fence->error; 1607 } 1608 1609 memset(wait, 0, sizeof(*wait)); 1610 wait->out.status = (r > 0); 1611 1612 return 0; 1613 } 1614 1615 /** 1616 * amdgpu_cs_wait_any_fence - wait on any fence to signal 1617 * 1618 * @adev: amdgpu device 1619 * @filp: file private 1620 * @wait: wait parameters 1621 * @fences: array of drm_amdgpu_fence 1622 */ 1623 static int amdgpu_cs_wait_any_fence(struct amdgpu_device *adev, 1624 struct drm_file *filp, 1625 union drm_amdgpu_wait_fences *wait, 1626 struct drm_amdgpu_fence *fences) 1627 { 1628 unsigned long timeout = amdgpu_gem_timeout(wait->in.timeout_ns); 1629 uint32_t fence_count = wait->in.fence_count; 1630 uint32_t first = ~0; 1631 struct dma_fence **array; 1632 unsigned int i; 1633 long r; 1634 1635 /* Prepare the fence array */ 1636 array = kcalloc(fence_count, sizeof(struct dma_fence *), GFP_KERNEL); 1637 1638 if (array == NULL) 1639 return -ENOMEM; 1640 1641 for (i = 0; i < fence_count; i++) { 1642 struct dma_fence *fence; 1643 1644 fence = amdgpu_cs_get_fence(adev, filp, &fences[i]); 1645 if (IS_ERR(fence)) { 1646 r = PTR_ERR(fence); 1647 goto err_free_fence_array; 1648 } else if (fence) { 1649 array[i] = fence; 1650 } else { /* NULL, the fence has been already signaled */ 1651 r = 1; 1652 first = i; 1653 goto out; 1654 } 1655 } 1656 1657 r = dma_fence_wait_any_timeout(array, fence_count, true, timeout, 1658 &first); 1659 if (r < 0) 1660 goto err_free_fence_array; 1661 1662 out: 1663 memset(wait, 0, sizeof(*wait)); 1664 wait->out.status = (r > 0); 1665 wait->out.first_signaled = first; 1666 1667 if (first < fence_count && array[first]) 1668 r = array[first]->error; 1669 else 1670 r = 0; 1671 1672 err_free_fence_array: 1673 for (i = 0; i < fence_count; i++) 1674 dma_fence_put(array[i]); 1675 kfree(array); 1676 1677 return r; 1678 } 1679 1680 /** 1681 * amdgpu_cs_wait_fences_ioctl - wait for multiple command submissions to finish 1682 * 1683 * @dev: drm device 1684 * @data: data from userspace 1685 * @filp: file private 1686 */ 1687 int amdgpu_cs_wait_fences_ioctl(struct drm_device *dev, void *data, 1688 struct drm_file *filp) 1689 { 1690 struct amdgpu_device *adev = drm_to_adev(dev); 1691 union drm_amdgpu_wait_fences *wait = data; 1692 uint32_t fence_count = wait->in.fence_count; 1693 struct drm_amdgpu_fence *fences_user; 1694 struct drm_amdgpu_fence *fences; 1695 int r; 1696 1697 /* Get the fences from userspace */ 1698 fences = kmalloc_array(fence_count, sizeof(struct drm_amdgpu_fence), 1699 GFP_KERNEL); 1700 if (fences == NULL) 1701 return -ENOMEM; 1702 1703 fences_user = u64_to_user_ptr(wait->in.fences); 1704 if (copy_from_user(fences, fences_user, 1705 sizeof(struct drm_amdgpu_fence) * fence_count)) { 1706 r = -EFAULT; 1707 goto err_free_fences; 1708 } 1709 1710 if (wait->in.wait_all) 1711 r = amdgpu_cs_wait_all_fences(adev, filp, wait, fences); 1712 else 1713 r = amdgpu_cs_wait_any_fence(adev, filp, wait, fences); 1714 1715 err_free_fences: 1716 kfree(fences); 1717 1718 return r; 1719 } 1720 1721 /** 1722 * amdgpu_cs_find_mapping - find bo_va for VM address 1723 * 1724 * @parser: command submission parser context 1725 * @addr: VM address 1726 * @bo: resulting BO of the mapping found 1727 * @map: Placeholder to return found BO mapping 1728 * 1729 * Search the buffer objects in the command submission context for a certain 1730 * virtual memory address. Returns allocation structure when found, NULL 1731 * otherwise. 1732 */ 1733 int amdgpu_cs_find_mapping(struct amdgpu_cs_parser *parser, 1734 uint64_t addr, struct amdgpu_bo **bo, 1735 struct amdgpu_bo_va_mapping **map) 1736 { 1737 struct amdgpu_fpriv *fpriv = parser->filp->driver_priv; 1738 struct ttm_operation_ctx ctx = { false, false }; 1739 struct amdgpu_vm *vm = &fpriv->vm; 1740 struct amdgpu_bo_va_mapping *mapping; 1741 int r; 1742 1743 addr /= AMDGPU_GPU_PAGE_SIZE; 1744 1745 mapping = amdgpu_vm_bo_lookup_mapping(vm, addr); 1746 if (!mapping || !mapping->bo_va || !mapping->bo_va->base.bo) 1747 return -EINVAL; 1748 1749 *bo = mapping->bo_va->base.bo; 1750 *map = mapping; 1751 1752 /* Double check that the BO is reserved by this CS */ 1753 if (dma_resv_locking_ctx((*bo)->tbo.base.resv) != &parser->ticket) 1754 return -EINVAL; 1755 1756 if (!((*bo)->flags & AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS)) { 1757 (*bo)->flags |= AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS; 1758 amdgpu_bo_placement_from_domain(*bo, (*bo)->allowed_domains); 1759 r = ttm_bo_validate(&(*bo)->tbo, &(*bo)->placement, &ctx); 1760 if (r) 1761 return r; 1762 } 1763 1764 return amdgpu_ttm_alloc_gart(&(*bo)->tbo); 1765 } 1766