1 /* 2 * Copyright 2009 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 7 * "Software"), to deal in the Software without restriction, including 8 * without limitation the rights to use, copy, modify, merge, publish, 9 * distribute, sub license, and/or sell copies of the Software, and to 10 * permit persons to whom the Software is furnished to do so, subject to 11 * the following conditions: 12 * 13 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL 16 * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, 17 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR 18 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE 19 * USE OR OTHER DEALINGS IN THE SOFTWARE. 20 * 21 * The above copyright notice and this permission notice (including the 22 * next paragraph) shall be included in all copies or substantial portions 23 * of the Software. 24 * 25 */ 26 /* 27 * Authors: 28 * Jerome Glisse <glisse@freedesktop.org> 29 * Thomas Hellstrom <thomas-at-tungstengraphics-dot-com> 30 * Dave Airlie 31 */ 32 #include <linux/list.h> 33 #include <linux/slab.h> 34 35 #include <drm/amdgpu_drm.h> 36 #include <drm/drm_cache.h> 37 #include "amdgpu.h" 38 #include "amdgpu_trace.h" 39 #include "amdgpu_amdkfd.h" 40 41 /** 42 * DOC: amdgpu_object 43 * 44 * This defines the interfaces to operate on an &amdgpu_bo buffer object which 45 * represents memory used by driver (VRAM, system memory, etc.). The driver 46 * provides DRM/GEM APIs to userspace. DRM/GEM APIs then use these interfaces 47 * to create/destroy/set buffer object which are then managed by the kernel TTM 48 * memory manager. 49 * The interfaces are also used internally by kernel clients, including gfx, 50 * uvd, etc. for kernel managed allocations used by the GPU. 51 * 52 */ 53 54 /** 55 * amdgpu_bo_subtract_pin_size - Remove BO from pin_size accounting 56 * 57 * @bo: &amdgpu_bo buffer object 58 * 59 * This function is called when a BO stops being pinned, and updates the 60 * &amdgpu_device pin_size values accordingly. 61 */ 62 static void amdgpu_bo_subtract_pin_size(struct amdgpu_bo *bo) 63 { 64 struct amdgpu_device *adev = amdgpu_ttm_adev(bo->tbo.bdev); 65 66 if (bo->tbo.mem.mem_type == TTM_PL_VRAM) { 67 atomic64_sub(amdgpu_bo_size(bo), &adev->vram_pin_size); 68 atomic64_sub(amdgpu_vram_mgr_bo_visible_size(bo), 69 &adev->visible_pin_size); 70 } else if (bo->tbo.mem.mem_type == TTM_PL_TT) { 71 atomic64_sub(amdgpu_bo_size(bo), &adev->gart_pin_size); 72 } 73 } 74 75 static void amdgpu_bo_destroy(struct ttm_buffer_object *tbo) 76 { 77 struct amdgpu_device *adev = amdgpu_ttm_adev(tbo->bdev); 78 struct amdgpu_bo *bo = ttm_to_amdgpu_bo(tbo); 79 80 if (bo->pin_count > 0) 81 amdgpu_bo_subtract_pin_size(bo); 82 83 if (bo->kfd_bo) 84 amdgpu_amdkfd_unreserve_memory_limit(bo); 85 86 amdgpu_bo_kunmap(bo); 87 88 if (bo->gem_base.import_attach) 89 drm_prime_gem_destroy(&bo->gem_base, bo->tbo.sg); 90 drm_gem_object_release(&bo->gem_base); 91 /* in case amdgpu_device_recover_vram got NULL of bo->parent */ 92 if (!list_empty(&bo->shadow_list)) { 93 mutex_lock(&adev->shadow_list_lock); 94 list_del_init(&bo->shadow_list); 95 mutex_unlock(&adev->shadow_list_lock); 96 } 97 amdgpu_bo_unref(&bo->parent); 98 99 kfree(bo->metadata); 100 kfree(bo); 101 } 102 103 /** 104 * amdgpu_bo_is_amdgpu_bo - check if the buffer object is an &amdgpu_bo 105 * @bo: buffer object to be checked 106 * 107 * Uses destroy function associated with the object to determine if this is 108 * an &amdgpu_bo. 109 * 110 * Returns: 111 * true if the object belongs to &amdgpu_bo, false if not. 112 */ 113 bool amdgpu_bo_is_amdgpu_bo(struct ttm_buffer_object *bo) 114 { 115 if (bo->destroy == &amdgpu_bo_destroy) 116 return true; 117 return false; 118 } 119 120 /** 121 * amdgpu_bo_placement_from_domain - set buffer's placement 122 * @abo: &amdgpu_bo buffer object whose placement is to be set 123 * @domain: requested domain 124 * 125 * Sets buffer's placement according to requested domain and the buffer's 126 * flags. 127 */ 128 void amdgpu_bo_placement_from_domain(struct amdgpu_bo *abo, u32 domain) 129 { 130 struct amdgpu_device *adev = amdgpu_ttm_adev(abo->tbo.bdev); 131 struct ttm_placement *placement = &abo->placement; 132 struct ttm_place *places = abo->placements; 133 u64 flags = abo->flags; 134 u32 c = 0; 135 136 if (domain & AMDGPU_GEM_DOMAIN_VRAM) { 137 unsigned visible_pfn = adev->gmc.visible_vram_size >> PAGE_SHIFT; 138 139 places[c].fpfn = 0; 140 places[c].lpfn = 0; 141 places[c].flags = TTM_PL_FLAG_WC | TTM_PL_FLAG_UNCACHED | 142 TTM_PL_FLAG_VRAM; 143 144 if (flags & AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED) 145 places[c].lpfn = visible_pfn; 146 else 147 places[c].flags |= TTM_PL_FLAG_TOPDOWN; 148 149 if (flags & AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS) 150 places[c].flags |= TTM_PL_FLAG_CONTIGUOUS; 151 c++; 152 } 153 154 if (domain & AMDGPU_GEM_DOMAIN_GTT) { 155 places[c].fpfn = 0; 156 places[c].lpfn = 0; 157 places[c].flags = TTM_PL_FLAG_TT; 158 if (flags & AMDGPU_GEM_CREATE_CPU_GTT_USWC) 159 places[c].flags |= TTM_PL_FLAG_WC | 160 TTM_PL_FLAG_UNCACHED; 161 else 162 places[c].flags |= TTM_PL_FLAG_CACHED; 163 c++; 164 } 165 166 if (domain & AMDGPU_GEM_DOMAIN_CPU) { 167 places[c].fpfn = 0; 168 places[c].lpfn = 0; 169 places[c].flags = TTM_PL_FLAG_SYSTEM; 170 if (flags & AMDGPU_GEM_CREATE_CPU_GTT_USWC) 171 places[c].flags |= TTM_PL_FLAG_WC | 172 TTM_PL_FLAG_UNCACHED; 173 else 174 places[c].flags |= TTM_PL_FLAG_CACHED; 175 c++; 176 } 177 178 if (domain & AMDGPU_GEM_DOMAIN_GDS) { 179 places[c].fpfn = 0; 180 places[c].lpfn = 0; 181 places[c].flags = TTM_PL_FLAG_UNCACHED | AMDGPU_PL_FLAG_GDS; 182 c++; 183 } 184 185 if (domain & AMDGPU_GEM_DOMAIN_GWS) { 186 places[c].fpfn = 0; 187 places[c].lpfn = 0; 188 places[c].flags = TTM_PL_FLAG_UNCACHED | AMDGPU_PL_FLAG_GWS; 189 c++; 190 } 191 192 if (domain & AMDGPU_GEM_DOMAIN_OA) { 193 places[c].fpfn = 0; 194 places[c].lpfn = 0; 195 places[c].flags = TTM_PL_FLAG_UNCACHED | AMDGPU_PL_FLAG_OA; 196 c++; 197 } 198 199 if (!c) { 200 places[c].fpfn = 0; 201 places[c].lpfn = 0; 202 places[c].flags = TTM_PL_MASK_CACHING | TTM_PL_FLAG_SYSTEM; 203 c++; 204 } 205 206 BUG_ON(c >= AMDGPU_BO_MAX_PLACEMENTS); 207 208 placement->num_placement = c; 209 placement->placement = places; 210 211 placement->num_busy_placement = c; 212 placement->busy_placement = places; 213 } 214 215 /** 216 * amdgpu_bo_create_reserved - create reserved BO for kernel use 217 * 218 * @adev: amdgpu device object 219 * @size: size for the new BO 220 * @align: alignment for the new BO 221 * @domain: where to place it 222 * @bo_ptr: used to initialize BOs in structures 223 * @gpu_addr: GPU addr of the pinned BO 224 * @cpu_addr: optional CPU address mapping 225 * 226 * Allocates and pins a BO for kernel internal use, and returns it still 227 * reserved. 228 * 229 * Note: For bo_ptr new BO is only created if bo_ptr points to NULL. 230 * 231 * Returns: 232 * 0 on success, negative error code otherwise. 233 */ 234 int amdgpu_bo_create_reserved(struct amdgpu_device *adev, 235 unsigned long size, int align, 236 u32 domain, struct amdgpu_bo **bo_ptr, 237 u64 *gpu_addr, void **cpu_addr) 238 { 239 struct amdgpu_bo_param bp; 240 bool free = false; 241 int r; 242 243 if (!size) { 244 amdgpu_bo_unref(bo_ptr); 245 return 0; 246 } 247 248 memset(&bp, 0, sizeof(bp)); 249 bp.size = size; 250 bp.byte_align = align; 251 bp.domain = domain; 252 bp.flags = AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED | 253 AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS; 254 bp.type = ttm_bo_type_kernel; 255 bp.resv = NULL; 256 257 if (!*bo_ptr) { 258 r = amdgpu_bo_create(adev, &bp, bo_ptr); 259 if (r) { 260 dev_err(adev->dev, "(%d) failed to allocate kernel bo\n", 261 r); 262 return r; 263 } 264 free = true; 265 } 266 267 r = amdgpu_bo_reserve(*bo_ptr, false); 268 if (r) { 269 dev_err(adev->dev, "(%d) failed to reserve kernel bo\n", r); 270 goto error_free; 271 } 272 273 r = amdgpu_bo_pin(*bo_ptr, domain); 274 if (r) { 275 dev_err(adev->dev, "(%d) kernel bo pin failed\n", r); 276 goto error_unreserve; 277 } 278 279 r = amdgpu_ttm_alloc_gart(&(*bo_ptr)->tbo); 280 if (r) { 281 dev_err(adev->dev, "%p bind failed\n", *bo_ptr); 282 goto error_unpin; 283 } 284 285 if (gpu_addr) 286 *gpu_addr = amdgpu_bo_gpu_offset(*bo_ptr); 287 288 if (cpu_addr) { 289 r = amdgpu_bo_kmap(*bo_ptr, cpu_addr); 290 if (r) { 291 dev_err(adev->dev, "(%d) kernel bo map failed\n", r); 292 goto error_unpin; 293 } 294 } 295 296 return 0; 297 298 error_unpin: 299 amdgpu_bo_unpin(*bo_ptr); 300 error_unreserve: 301 amdgpu_bo_unreserve(*bo_ptr); 302 303 error_free: 304 if (free) 305 amdgpu_bo_unref(bo_ptr); 306 307 return r; 308 } 309 310 /** 311 * amdgpu_bo_create_kernel - create BO for kernel use 312 * 313 * @adev: amdgpu device object 314 * @size: size for the new BO 315 * @align: alignment for the new BO 316 * @domain: where to place it 317 * @bo_ptr: used to initialize BOs in structures 318 * @gpu_addr: GPU addr of the pinned BO 319 * @cpu_addr: optional CPU address mapping 320 * 321 * Allocates and pins a BO for kernel internal use. 322 * 323 * Note: For bo_ptr new BO is only created if bo_ptr points to NULL. 324 * 325 * Returns: 326 * 0 on success, negative error code otherwise. 327 */ 328 int amdgpu_bo_create_kernel(struct amdgpu_device *adev, 329 unsigned long size, int align, 330 u32 domain, struct amdgpu_bo **bo_ptr, 331 u64 *gpu_addr, void **cpu_addr) 332 { 333 int r; 334 335 r = amdgpu_bo_create_reserved(adev, size, align, domain, bo_ptr, 336 gpu_addr, cpu_addr); 337 338 if (r) 339 return r; 340 341 if (*bo_ptr) 342 amdgpu_bo_unreserve(*bo_ptr); 343 344 return 0; 345 } 346 347 /** 348 * amdgpu_bo_free_kernel - free BO for kernel use 349 * 350 * @bo: amdgpu BO to free 351 * @gpu_addr: pointer to where the BO's GPU memory space address was stored 352 * @cpu_addr: pointer to where the BO's CPU memory space address was stored 353 * 354 * unmaps and unpin a BO for kernel internal use. 355 */ 356 void amdgpu_bo_free_kernel(struct amdgpu_bo **bo, u64 *gpu_addr, 357 void **cpu_addr) 358 { 359 if (*bo == NULL) 360 return; 361 362 if (likely(amdgpu_bo_reserve(*bo, true) == 0)) { 363 if (cpu_addr) 364 amdgpu_bo_kunmap(*bo); 365 366 amdgpu_bo_unpin(*bo); 367 amdgpu_bo_unreserve(*bo); 368 } 369 amdgpu_bo_unref(bo); 370 371 if (gpu_addr) 372 *gpu_addr = 0; 373 374 if (cpu_addr) 375 *cpu_addr = NULL; 376 } 377 378 /* Validate bo size is bit bigger then the request domain */ 379 static bool amdgpu_bo_validate_size(struct amdgpu_device *adev, 380 unsigned long size, u32 domain) 381 { 382 struct ttm_mem_type_manager *man = NULL; 383 384 /* 385 * If GTT is part of requested domains the check must succeed to 386 * allow fall back to GTT 387 */ 388 if (domain & AMDGPU_GEM_DOMAIN_GTT) { 389 man = &adev->mman.bdev.man[TTM_PL_TT]; 390 391 if (size < (man->size << PAGE_SHIFT)) 392 return true; 393 else 394 goto fail; 395 } 396 397 if (domain & AMDGPU_GEM_DOMAIN_VRAM) { 398 man = &adev->mman.bdev.man[TTM_PL_VRAM]; 399 400 if (size < (man->size << PAGE_SHIFT)) 401 return true; 402 else 403 goto fail; 404 } 405 406 407 /* TODO add more domains checks, such as AMDGPU_GEM_DOMAIN_CPU */ 408 return true; 409 410 fail: 411 DRM_DEBUG("BO size %lu > total memory in domain: %llu\n", size, 412 man->size << PAGE_SHIFT); 413 return false; 414 } 415 416 bool amdgpu_bo_support_uswc(u64 bo_flags) 417 { 418 419 #ifdef CONFIG_X86_32 420 /* XXX: Write-combined CPU mappings of GTT seem broken on 32-bit 421 * See https://bugs.freedesktop.org/show_bug.cgi?id=84627 422 */ 423 return false; 424 #elif defined(CONFIG_X86) && !defined(CONFIG_X86_PAT) 425 /* Don't try to enable write-combining when it can't work, or things 426 * may be slow 427 * See https://bugs.freedesktop.org/show_bug.cgi?id=88758 428 */ 429 430 #ifndef CONFIG_COMPILE_TEST 431 #warning Please enable CONFIG_MTRR and CONFIG_X86_PAT for better performance \ 432 thanks to write-combining 433 #endif 434 435 if (bo_flags & AMDGPU_GEM_CREATE_CPU_GTT_USWC) 436 DRM_INFO_ONCE("Please enable CONFIG_MTRR and CONFIG_X86_PAT for " 437 "better performance thanks to write-combining\n"); 438 return false; 439 #else 440 /* For architectures that don't support WC memory, 441 * mask out the WC flag from the BO 442 */ 443 if (!drm_arch_can_wc_memory()) 444 return false; 445 446 return true; 447 #endif 448 } 449 450 static int amdgpu_bo_do_create(struct amdgpu_device *adev, 451 struct amdgpu_bo_param *bp, 452 struct amdgpu_bo **bo_ptr) 453 { 454 struct ttm_operation_ctx ctx = { 455 .interruptible = (bp->type != ttm_bo_type_kernel), 456 .no_wait_gpu = false, 457 .resv = bp->resv, 458 .flags = TTM_OPT_FLAG_ALLOW_RES_EVICT 459 }; 460 struct amdgpu_bo *bo; 461 unsigned long page_align, size = bp->size; 462 size_t acc_size; 463 int r; 464 465 /* Note that GDS/GWS/OA allocates 1 page per byte/resource. */ 466 if (bp->domain & (AMDGPU_GEM_DOMAIN_GWS | AMDGPU_GEM_DOMAIN_OA)) { 467 /* GWS and OA don't need any alignment. */ 468 page_align = bp->byte_align; 469 size <<= PAGE_SHIFT; 470 } else if (bp->domain & AMDGPU_GEM_DOMAIN_GDS) { 471 /* Both size and alignment must be a multiple of 4. */ 472 page_align = ALIGN(bp->byte_align, 4); 473 size = ALIGN(size, 4) << PAGE_SHIFT; 474 } else { 475 /* Memory should be aligned at least to a page size. */ 476 page_align = ALIGN(bp->byte_align, PAGE_SIZE) >> PAGE_SHIFT; 477 size = ALIGN(size, PAGE_SIZE); 478 } 479 480 if (!amdgpu_bo_validate_size(adev, size, bp->domain)) 481 return -ENOMEM; 482 483 *bo_ptr = NULL; 484 485 acc_size = ttm_bo_dma_acc_size(&adev->mman.bdev, size, 486 sizeof(struct amdgpu_bo)); 487 488 bo = kzalloc(sizeof(struct amdgpu_bo), GFP_KERNEL); 489 if (bo == NULL) 490 return -ENOMEM; 491 drm_gem_private_object_init(adev->ddev, &bo->gem_base, size); 492 INIT_LIST_HEAD(&bo->shadow_list); 493 bo->vm_bo = NULL; 494 bo->preferred_domains = bp->preferred_domain ? bp->preferred_domain : 495 bp->domain; 496 bo->allowed_domains = bo->preferred_domains; 497 if (bp->type != ttm_bo_type_kernel && 498 bo->allowed_domains == AMDGPU_GEM_DOMAIN_VRAM) 499 bo->allowed_domains |= AMDGPU_GEM_DOMAIN_GTT; 500 501 bo->flags = bp->flags; 502 503 if (!amdgpu_bo_support_uswc(bo->flags)) 504 bo->flags &= ~AMDGPU_GEM_CREATE_CPU_GTT_USWC; 505 506 bo->tbo.bdev = &adev->mman.bdev; 507 if (bp->domain & (AMDGPU_GEM_DOMAIN_GWS | AMDGPU_GEM_DOMAIN_OA | 508 AMDGPU_GEM_DOMAIN_GDS)) 509 amdgpu_bo_placement_from_domain(bo, AMDGPU_GEM_DOMAIN_CPU); 510 else 511 amdgpu_bo_placement_from_domain(bo, bp->domain); 512 if (bp->type == ttm_bo_type_kernel) 513 bo->tbo.priority = 1; 514 515 r = ttm_bo_init_reserved(&adev->mman.bdev, &bo->tbo, size, bp->type, 516 &bo->placement, page_align, &ctx, acc_size, 517 NULL, bp->resv, &amdgpu_bo_destroy); 518 if (unlikely(r != 0)) 519 return r; 520 521 if (!amdgpu_gmc_vram_full_visible(&adev->gmc) && 522 bo->tbo.mem.mem_type == TTM_PL_VRAM && 523 bo->tbo.mem.start < adev->gmc.visible_vram_size >> PAGE_SHIFT) 524 amdgpu_cs_report_moved_bytes(adev, ctx.bytes_moved, 525 ctx.bytes_moved); 526 else 527 amdgpu_cs_report_moved_bytes(adev, ctx.bytes_moved, 0); 528 529 if (bp->flags & AMDGPU_GEM_CREATE_VRAM_CLEARED && 530 bo->tbo.mem.placement & TTM_PL_FLAG_VRAM) { 531 struct dma_fence *fence; 532 533 r = amdgpu_fill_buffer(bo, 0, bo->tbo.resv, &fence); 534 if (unlikely(r)) 535 goto fail_unreserve; 536 537 amdgpu_bo_fence(bo, fence, false); 538 dma_fence_put(bo->tbo.moving); 539 bo->tbo.moving = dma_fence_get(fence); 540 dma_fence_put(fence); 541 } 542 if (!bp->resv) 543 amdgpu_bo_unreserve(bo); 544 *bo_ptr = bo; 545 546 trace_amdgpu_bo_create(bo); 547 548 /* Treat CPU_ACCESS_REQUIRED only as a hint if given by UMD */ 549 if (bp->type == ttm_bo_type_device) 550 bo->flags &= ~AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED; 551 552 return 0; 553 554 fail_unreserve: 555 if (!bp->resv) 556 ww_mutex_unlock(&bo->tbo.resv->lock); 557 amdgpu_bo_unref(&bo); 558 return r; 559 } 560 561 static int amdgpu_bo_create_shadow(struct amdgpu_device *adev, 562 unsigned long size, 563 struct amdgpu_bo *bo) 564 { 565 struct amdgpu_bo_param bp; 566 int r; 567 568 if (bo->shadow) 569 return 0; 570 571 memset(&bp, 0, sizeof(bp)); 572 bp.size = size; 573 bp.domain = AMDGPU_GEM_DOMAIN_GTT; 574 bp.flags = AMDGPU_GEM_CREATE_CPU_GTT_USWC | 575 AMDGPU_GEM_CREATE_SHADOW; 576 bp.type = ttm_bo_type_kernel; 577 bp.resv = bo->tbo.resv; 578 579 r = amdgpu_bo_do_create(adev, &bp, &bo->shadow); 580 if (!r) { 581 bo->shadow->parent = amdgpu_bo_ref(bo); 582 mutex_lock(&adev->shadow_list_lock); 583 list_add_tail(&bo->shadow->shadow_list, &adev->shadow_list); 584 mutex_unlock(&adev->shadow_list_lock); 585 } 586 587 return r; 588 } 589 590 /** 591 * amdgpu_bo_create - create an &amdgpu_bo buffer object 592 * @adev: amdgpu device object 593 * @bp: parameters to be used for the buffer object 594 * @bo_ptr: pointer to the buffer object pointer 595 * 596 * Creates an &amdgpu_bo buffer object; and if requested, also creates a 597 * shadow object. 598 * Shadow object is used to backup the original buffer object, and is always 599 * in GTT. 600 * 601 * Returns: 602 * 0 for success or a negative error code on failure. 603 */ 604 int amdgpu_bo_create(struct amdgpu_device *adev, 605 struct amdgpu_bo_param *bp, 606 struct amdgpu_bo **bo_ptr) 607 { 608 u64 flags = bp->flags; 609 int r; 610 611 bp->flags = bp->flags & ~AMDGPU_GEM_CREATE_SHADOW; 612 r = amdgpu_bo_do_create(adev, bp, bo_ptr); 613 if (r) 614 return r; 615 616 if ((flags & AMDGPU_GEM_CREATE_SHADOW) && !(adev->flags & AMD_IS_APU)) { 617 if (!bp->resv) 618 WARN_ON(reservation_object_lock((*bo_ptr)->tbo.resv, 619 NULL)); 620 621 r = amdgpu_bo_create_shadow(adev, bp->size, *bo_ptr); 622 623 if (!bp->resv) 624 reservation_object_unlock((*bo_ptr)->tbo.resv); 625 626 if (r) 627 amdgpu_bo_unref(bo_ptr); 628 } 629 630 return r; 631 } 632 633 /** 634 * amdgpu_bo_validate - validate an &amdgpu_bo buffer object 635 * @bo: pointer to the buffer object 636 * 637 * Sets placement according to domain; and changes placement and caching 638 * policy of the buffer object according to the placement. 639 * This is used for validating shadow bos. It calls ttm_bo_validate() to 640 * make sure the buffer is resident where it needs to be. 641 * 642 * Returns: 643 * 0 for success or a negative error code on failure. 644 */ 645 int amdgpu_bo_validate(struct amdgpu_bo *bo) 646 { 647 struct ttm_operation_ctx ctx = { false, false }; 648 uint32_t domain; 649 int r; 650 651 if (bo->pin_count) 652 return 0; 653 654 domain = bo->preferred_domains; 655 656 retry: 657 amdgpu_bo_placement_from_domain(bo, domain); 658 r = ttm_bo_validate(&bo->tbo, &bo->placement, &ctx); 659 if (unlikely(r == -ENOMEM) && domain != bo->allowed_domains) { 660 domain = bo->allowed_domains; 661 goto retry; 662 } 663 664 return r; 665 } 666 667 /** 668 * amdgpu_bo_restore_shadow - restore an &amdgpu_bo shadow 669 * 670 * @shadow: &amdgpu_bo shadow to be restored 671 * @fence: dma_fence associated with the operation 672 * 673 * Copies a buffer object's shadow content back to the object. 674 * This is used for recovering a buffer from its shadow in case of a gpu 675 * reset where vram context may be lost. 676 * 677 * Returns: 678 * 0 for success or a negative error code on failure. 679 */ 680 int amdgpu_bo_restore_shadow(struct amdgpu_bo *shadow, struct dma_fence **fence) 681 682 { 683 struct amdgpu_device *adev = amdgpu_ttm_adev(shadow->tbo.bdev); 684 struct amdgpu_ring *ring = adev->mman.buffer_funcs_ring; 685 uint64_t shadow_addr, parent_addr; 686 687 shadow_addr = amdgpu_bo_gpu_offset(shadow); 688 parent_addr = amdgpu_bo_gpu_offset(shadow->parent); 689 690 return amdgpu_copy_buffer(ring, shadow_addr, parent_addr, 691 amdgpu_bo_size(shadow), NULL, fence, 692 true, false); 693 } 694 695 /** 696 * amdgpu_bo_kmap - map an &amdgpu_bo buffer object 697 * @bo: &amdgpu_bo buffer object to be mapped 698 * @ptr: kernel virtual address to be returned 699 * 700 * Calls ttm_bo_kmap() to set up the kernel virtual mapping; calls 701 * amdgpu_bo_kptr() to get the kernel virtual address. 702 * 703 * Returns: 704 * 0 for success or a negative error code on failure. 705 */ 706 int amdgpu_bo_kmap(struct amdgpu_bo *bo, void **ptr) 707 { 708 void *kptr; 709 long r; 710 711 if (bo->flags & AMDGPU_GEM_CREATE_NO_CPU_ACCESS) 712 return -EPERM; 713 714 kptr = amdgpu_bo_kptr(bo); 715 if (kptr) { 716 if (ptr) 717 *ptr = kptr; 718 return 0; 719 } 720 721 r = reservation_object_wait_timeout_rcu(bo->tbo.resv, false, false, 722 MAX_SCHEDULE_TIMEOUT); 723 if (r < 0) 724 return r; 725 726 r = ttm_bo_kmap(&bo->tbo, 0, bo->tbo.num_pages, &bo->kmap); 727 if (r) 728 return r; 729 730 if (ptr) 731 *ptr = amdgpu_bo_kptr(bo); 732 733 return 0; 734 } 735 736 /** 737 * amdgpu_bo_kptr - returns a kernel virtual address of the buffer object 738 * @bo: &amdgpu_bo buffer object 739 * 740 * Calls ttm_kmap_obj_virtual() to get the kernel virtual address 741 * 742 * Returns: 743 * the virtual address of a buffer object area. 744 */ 745 void *amdgpu_bo_kptr(struct amdgpu_bo *bo) 746 { 747 bool is_iomem; 748 749 return ttm_kmap_obj_virtual(&bo->kmap, &is_iomem); 750 } 751 752 /** 753 * amdgpu_bo_kunmap - unmap an &amdgpu_bo buffer object 754 * @bo: &amdgpu_bo buffer object to be unmapped 755 * 756 * Unmaps a kernel map set up by amdgpu_bo_kmap(). 757 */ 758 void amdgpu_bo_kunmap(struct amdgpu_bo *bo) 759 { 760 if (bo->kmap.bo) 761 ttm_bo_kunmap(&bo->kmap); 762 } 763 764 /** 765 * amdgpu_bo_ref - reference an &amdgpu_bo buffer object 766 * @bo: &amdgpu_bo buffer object 767 * 768 * References the contained &ttm_buffer_object. 769 * 770 * Returns: 771 * a refcounted pointer to the &amdgpu_bo buffer object. 772 */ 773 struct amdgpu_bo *amdgpu_bo_ref(struct amdgpu_bo *bo) 774 { 775 if (bo == NULL) 776 return NULL; 777 778 ttm_bo_get(&bo->tbo); 779 return bo; 780 } 781 782 /** 783 * amdgpu_bo_unref - unreference an &amdgpu_bo buffer object 784 * @bo: &amdgpu_bo buffer object 785 * 786 * Unreferences the contained &ttm_buffer_object and clear the pointer 787 */ 788 void amdgpu_bo_unref(struct amdgpu_bo **bo) 789 { 790 struct ttm_buffer_object *tbo; 791 792 if ((*bo) == NULL) 793 return; 794 795 tbo = &((*bo)->tbo); 796 ttm_bo_put(tbo); 797 *bo = NULL; 798 } 799 800 /** 801 * amdgpu_bo_pin_restricted - pin an &amdgpu_bo buffer object 802 * @bo: &amdgpu_bo buffer object to be pinned 803 * @domain: domain to be pinned to 804 * @min_offset: the start of requested address range 805 * @max_offset: the end of requested address range 806 * 807 * Pins the buffer object according to requested domain and address range. If 808 * the memory is unbound gart memory, binds the pages into gart table. Adjusts 809 * pin_count and pin_size accordingly. 810 * 811 * Pinning means to lock pages in memory along with keeping them at a fixed 812 * offset. It is required when a buffer can not be moved, for example, when 813 * a display buffer is being scanned out. 814 * 815 * Compared with amdgpu_bo_pin(), this function gives more flexibility on 816 * where to pin a buffer if there are specific restrictions on where a buffer 817 * must be located. 818 * 819 * Returns: 820 * 0 for success or a negative error code on failure. 821 */ 822 int amdgpu_bo_pin_restricted(struct amdgpu_bo *bo, u32 domain, 823 u64 min_offset, u64 max_offset) 824 { 825 struct amdgpu_device *adev = amdgpu_ttm_adev(bo->tbo.bdev); 826 struct ttm_operation_ctx ctx = { false, false }; 827 int r, i; 828 829 if (amdgpu_ttm_tt_get_usermm(bo->tbo.ttm)) 830 return -EPERM; 831 832 if (WARN_ON_ONCE(min_offset > max_offset)) 833 return -EINVAL; 834 835 /* A shared bo cannot be migrated to VRAM */ 836 if (bo->prime_shared_count) { 837 if (domain & AMDGPU_GEM_DOMAIN_GTT) 838 domain = AMDGPU_GEM_DOMAIN_GTT; 839 else 840 return -EINVAL; 841 } 842 843 /* This assumes only APU display buffers are pinned with (VRAM|GTT). 844 * See function amdgpu_display_supported_domains() 845 */ 846 domain = amdgpu_bo_get_preferred_pin_domain(adev, domain); 847 848 if (bo->pin_count) { 849 uint32_t mem_type = bo->tbo.mem.mem_type; 850 851 if (!(domain & amdgpu_mem_type_to_domain(mem_type))) 852 return -EINVAL; 853 854 bo->pin_count++; 855 856 if (max_offset != 0) { 857 u64 domain_start = bo->tbo.bdev->man[mem_type].gpu_offset; 858 WARN_ON_ONCE(max_offset < 859 (amdgpu_bo_gpu_offset(bo) - domain_start)); 860 } 861 862 return 0; 863 } 864 865 bo->flags |= AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS; 866 /* force to pin into visible video ram */ 867 if (!(bo->flags & AMDGPU_GEM_CREATE_NO_CPU_ACCESS)) 868 bo->flags |= AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED; 869 amdgpu_bo_placement_from_domain(bo, domain); 870 for (i = 0; i < bo->placement.num_placement; i++) { 871 unsigned fpfn, lpfn; 872 873 fpfn = min_offset >> PAGE_SHIFT; 874 lpfn = max_offset >> PAGE_SHIFT; 875 876 if (fpfn > bo->placements[i].fpfn) 877 bo->placements[i].fpfn = fpfn; 878 if (!bo->placements[i].lpfn || 879 (lpfn && lpfn < bo->placements[i].lpfn)) 880 bo->placements[i].lpfn = lpfn; 881 bo->placements[i].flags |= TTM_PL_FLAG_NO_EVICT; 882 } 883 884 r = ttm_bo_validate(&bo->tbo, &bo->placement, &ctx); 885 if (unlikely(r)) { 886 dev_err(adev->dev, "%p pin failed\n", bo); 887 goto error; 888 } 889 890 bo->pin_count = 1; 891 892 domain = amdgpu_mem_type_to_domain(bo->tbo.mem.mem_type); 893 if (domain == AMDGPU_GEM_DOMAIN_VRAM) { 894 atomic64_add(amdgpu_bo_size(bo), &adev->vram_pin_size); 895 atomic64_add(amdgpu_vram_mgr_bo_visible_size(bo), 896 &adev->visible_pin_size); 897 } else if (domain == AMDGPU_GEM_DOMAIN_GTT) { 898 atomic64_add(amdgpu_bo_size(bo), &adev->gart_pin_size); 899 } 900 901 error: 902 return r; 903 } 904 905 /** 906 * amdgpu_bo_pin - pin an &amdgpu_bo buffer object 907 * @bo: &amdgpu_bo buffer object to be pinned 908 * @domain: domain to be pinned to 909 * 910 * A simple wrapper to amdgpu_bo_pin_restricted(). 911 * Provides a simpler API for buffers that do not have any strict restrictions 912 * on where a buffer must be located. 913 * 914 * Returns: 915 * 0 for success or a negative error code on failure. 916 */ 917 int amdgpu_bo_pin(struct amdgpu_bo *bo, u32 domain) 918 { 919 return amdgpu_bo_pin_restricted(bo, domain, 0, 0); 920 } 921 922 /** 923 * amdgpu_bo_unpin - unpin an &amdgpu_bo buffer object 924 * @bo: &amdgpu_bo buffer object to be unpinned 925 * 926 * Decreases the pin_count, and clears the flags if pin_count reaches 0. 927 * Changes placement and pin size accordingly. 928 * 929 * Returns: 930 * 0 for success or a negative error code on failure. 931 */ 932 int amdgpu_bo_unpin(struct amdgpu_bo *bo) 933 { 934 struct amdgpu_device *adev = amdgpu_ttm_adev(bo->tbo.bdev); 935 struct ttm_operation_ctx ctx = { false, false }; 936 int r, i; 937 938 if (WARN_ON_ONCE(!bo->pin_count)) { 939 dev_warn(adev->dev, "%p unpin not necessary\n", bo); 940 return 0; 941 } 942 bo->pin_count--; 943 if (bo->pin_count) 944 return 0; 945 946 amdgpu_bo_subtract_pin_size(bo); 947 948 for (i = 0; i < bo->placement.num_placement; i++) { 949 bo->placements[i].lpfn = 0; 950 bo->placements[i].flags &= ~TTM_PL_FLAG_NO_EVICT; 951 } 952 r = ttm_bo_validate(&bo->tbo, &bo->placement, &ctx); 953 if (unlikely(r)) 954 dev_err(adev->dev, "%p validate failed for unpin\n", bo); 955 956 return r; 957 } 958 959 /** 960 * amdgpu_bo_evict_vram - evict VRAM buffers 961 * @adev: amdgpu device object 962 * 963 * Evicts all VRAM buffers on the lru list of the memory type. 964 * Mainly used for evicting vram at suspend time. 965 * 966 * Returns: 967 * 0 for success or a negative error code on failure. 968 */ 969 int amdgpu_bo_evict_vram(struct amdgpu_device *adev) 970 { 971 /* late 2.6.33 fix IGP hibernate - we need pm ops to do this correct */ 972 #ifndef CONFIG_HIBERNATION 973 if (adev->flags & AMD_IS_APU) { 974 /* Useless to evict on IGP chips */ 975 return 0; 976 } 977 #endif 978 return ttm_bo_evict_mm(&adev->mman.bdev, TTM_PL_VRAM); 979 } 980 981 static const char *amdgpu_vram_names[] = { 982 "UNKNOWN", 983 "GDDR1", 984 "DDR2", 985 "GDDR3", 986 "GDDR4", 987 "GDDR5", 988 "HBM", 989 "DDR3", 990 "DDR4", 991 "GDDR6", 992 }; 993 994 /** 995 * amdgpu_bo_init - initialize memory manager 996 * @adev: amdgpu device object 997 * 998 * Calls amdgpu_ttm_init() to initialize amdgpu memory manager. 999 * 1000 * Returns: 1001 * 0 for success or a negative error code on failure. 1002 */ 1003 int amdgpu_bo_init(struct amdgpu_device *adev) 1004 { 1005 /* reserve PAT memory space to WC for VRAM */ 1006 arch_io_reserve_memtype_wc(adev->gmc.aper_base, 1007 adev->gmc.aper_size); 1008 1009 /* Add an MTRR for the VRAM */ 1010 adev->gmc.vram_mtrr = arch_phys_wc_add(adev->gmc.aper_base, 1011 adev->gmc.aper_size); 1012 DRM_INFO("Detected VRAM RAM=%lluM, BAR=%lluM\n", 1013 adev->gmc.mc_vram_size >> 20, 1014 (unsigned long long)adev->gmc.aper_size >> 20); 1015 DRM_INFO("RAM width %dbits %s\n", 1016 adev->gmc.vram_width, amdgpu_vram_names[adev->gmc.vram_type]); 1017 return amdgpu_ttm_init(adev); 1018 } 1019 1020 /** 1021 * amdgpu_bo_late_init - late init 1022 * @adev: amdgpu device object 1023 * 1024 * Calls amdgpu_ttm_late_init() to free resources used earlier during 1025 * initialization. 1026 * 1027 * Returns: 1028 * 0 for success or a negative error code on failure. 1029 */ 1030 int amdgpu_bo_late_init(struct amdgpu_device *adev) 1031 { 1032 amdgpu_ttm_late_init(adev); 1033 1034 return 0; 1035 } 1036 1037 /** 1038 * amdgpu_bo_fini - tear down memory manager 1039 * @adev: amdgpu device object 1040 * 1041 * Reverses amdgpu_bo_init() to tear down memory manager. 1042 */ 1043 void amdgpu_bo_fini(struct amdgpu_device *adev) 1044 { 1045 amdgpu_ttm_fini(adev); 1046 arch_phys_wc_del(adev->gmc.vram_mtrr); 1047 arch_io_free_memtype_wc(adev->gmc.aper_base, adev->gmc.aper_size); 1048 } 1049 1050 /** 1051 * amdgpu_bo_fbdev_mmap - mmap fbdev memory 1052 * @bo: &amdgpu_bo buffer object 1053 * @vma: vma as input from the fbdev mmap method 1054 * 1055 * Calls ttm_fbdev_mmap() to mmap fbdev memory if it is backed by a bo. 1056 * 1057 * Returns: 1058 * 0 for success or a negative error code on failure. 1059 */ 1060 int amdgpu_bo_fbdev_mmap(struct amdgpu_bo *bo, 1061 struct vm_area_struct *vma) 1062 { 1063 return ttm_fbdev_mmap(vma, &bo->tbo); 1064 } 1065 1066 /** 1067 * amdgpu_bo_set_tiling_flags - set tiling flags 1068 * @bo: &amdgpu_bo buffer object 1069 * @tiling_flags: new flags 1070 * 1071 * Sets buffer object's tiling flags with the new one. Used by GEM ioctl or 1072 * kernel driver to set the tiling flags on a buffer. 1073 * 1074 * Returns: 1075 * 0 for success or a negative error code on failure. 1076 */ 1077 int amdgpu_bo_set_tiling_flags(struct amdgpu_bo *bo, u64 tiling_flags) 1078 { 1079 struct amdgpu_device *adev = amdgpu_ttm_adev(bo->tbo.bdev); 1080 1081 if (adev->family <= AMDGPU_FAMILY_CZ && 1082 AMDGPU_TILING_GET(tiling_flags, TILE_SPLIT) > 6) 1083 return -EINVAL; 1084 1085 bo->tiling_flags = tiling_flags; 1086 return 0; 1087 } 1088 1089 /** 1090 * amdgpu_bo_get_tiling_flags - get tiling flags 1091 * @bo: &amdgpu_bo buffer object 1092 * @tiling_flags: returned flags 1093 * 1094 * Gets buffer object's tiling flags. Used by GEM ioctl or kernel driver to 1095 * set the tiling flags on a buffer. 1096 */ 1097 void amdgpu_bo_get_tiling_flags(struct amdgpu_bo *bo, u64 *tiling_flags) 1098 { 1099 lockdep_assert_held(&bo->tbo.resv->lock.base); 1100 1101 if (tiling_flags) 1102 *tiling_flags = bo->tiling_flags; 1103 } 1104 1105 /** 1106 * amdgpu_bo_set_metadata - set metadata 1107 * @bo: &amdgpu_bo buffer object 1108 * @metadata: new metadata 1109 * @metadata_size: size of the new metadata 1110 * @flags: flags of the new metadata 1111 * 1112 * Sets buffer object's metadata, its size and flags. 1113 * Used via GEM ioctl. 1114 * 1115 * Returns: 1116 * 0 for success or a negative error code on failure. 1117 */ 1118 int amdgpu_bo_set_metadata (struct amdgpu_bo *bo, void *metadata, 1119 uint32_t metadata_size, uint64_t flags) 1120 { 1121 void *buffer; 1122 1123 if (!metadata_size) { 1124 if (bo->metadata_size) { 1125 kfree(bo->metadata); 1126 bo->metadata = NULL; 1127 bo->metadata_size = 0; 1128 } 1129 return 0; 1130 } 1131 1132 if (metadata == NULL) 1133 return -EINVAL; 1134 1135 buffer = kmemdup(metadata, metadata_size, GFP_KERNEL); 1136 if (buffer == NULL) 1137 return -ENOMEM; 1138 1139 kfree(bo->metadata); 1140 bo->metadata_flags = flags; 1141 bo->metadata = buffer; 1142 bo->metadata_size = metadata_size; 1143 1144 return 0; 1145 } 1146 1147 /** 1148 * amdgpu_bo_get_metadata - get metadata 1149 * @bo: &amdgpu_bo buffer object 1150 * @buffer: returned metadata 1151 * @buffer_size: size of the buffer 1152 * @metadata_size: size of the returned metadata 1153 * @flags: flags of the returned metadata 1154 * 1155 * Gets buffer object's metadata, its size and flags. buffer_size shall not be 1156 * less than metadata_size. 1157 * Used via GEM ioctl. 1158 * 1159 * Returns: 1160 * 0 for success or a negative error code on failure. 1161 */ 1162 int amdgpu_bo_get_metadata(struct amdgpu_bo *bo, void *buffer, 1163 size_t buffer_size, uint32_t *metadata_size, 1164 uint64_t *flags) 1165 { 1166 if (!buffer && !metadata_size) 1167 return -EINVAL; 1168 1169 if (buffer) { 1170 if (buffer_size < bo->metadata_size) 1171 return -EINVAL; 1172 1173 if (bo->metadata_size) 1174 memcpy(buffer, bo->metadata, bo->metadata_size); 1175 } 1176 1177 if (metadata_size) 1178 *metadata_size = bo->metadata_size; 1179 if (flags) 1180 *flags = bo->metadata_flags; 1181 1182 return 0; 1183 } 1184 1185 /** 1186 * amdgpu_bo_move_notify - notification about a memory move 1187 * @bo: pointer to a buffer object 1188 * @evict: if this move is evicting the buffer from the graphics address space 1189 * @new_mem: new information of the bufer object 1190 * 1191 * Marks the corresponding &amdgpu_bo buffer object as invalid, also performs 1192 * bookkeeping. 1193 * TTM driver callback which is called when ttm moves a buffer. 1194 */ 1195 void amdgpu_bo_move_notify(struct ttm_buffer_object *bo, 1196 bool evict, 1197 struct ttm_mem_reg *new_mem) 1198 { 1199 struct amdgpu_device *adev = amdgpu_ttm_adev(bo->bdev); 1200 struct amdgpu_bo *abo; 1201 struct ttm_mem_reg *old_mem = &bo->mem; 1202 1203 if (!amdgpu_bo_is_amdgpu_bo(bo)) 1204 return; 1205 1206 abo = ttm_to_amdgpu_bo(bo); 1207 amdgpu_vm_bo_invalidate(adev, abo, evict); 1208 1209 amdgpu_bo_kunmap(abo); 1210 1211 /* remember the eviction */ 1212 if (evict) 1213 atomic64_inc(&adev->num_evictions); 1214 1215 /* update statistics */ 1216 if (!new_mem) 1217 return; 1218 1219 /* move_notify is called before move happens */ 1220 trace_amdgpu_bo_move(abo, new_mem->mem_type, old_mem->mem_type); 1221 } 1222 1223 /** 1224 * amdgpu_bo_fault_reserve_notify - notification about a memory fault 1225 * @bo: pointer to a buffer object 1226 * 1227 * Notifies the driver we are taking a fault on this BO and have reserved it, 1228 * also performs bookkeeping. 1229 * TTM driver callback for dealing with vm faults. 1230 * 1231 * Returns: 1232 * 0 for success or a negative error code on failure. 1233 */ 1234 int amdgpu_bo_fault_reserve_notify(struct ttm_buffer_object *bo) 1235 { 1236 struct amdgpu_device *adev = amdgpu_ttm_adev(bo->bdev); 1237 struct ttm_operation_ctx ctx = { false, false }; 1238 struct amdgpu_bo *abo; 1239 unsigned long offset, size; 1240 int r; 1241 1242 if (!amdgpu_bo_is_amdgpu_bo(bo)) 1243 return 0; 1244 1245 abo = ttm_to_amdgpu_bo(bo); 1246 1247 /* Remember that this BO was accessed by the CPU */ 1248 abo->flags |= AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED; 1249 1250 if (bo->mem.mem_type != TTM_PL_VRAM) 1251 return 0; 1252 1253 size = bo->mem.num_pages << PAGE_SHIFT; 1254 offset = bo->mem.start << PAGE_SHIFT; 1255 if ((offset + size) <= adev->gmc.visible_vram_size) 1256 return 0; 1257 1258 /* Can't move a pinned BO to visible VRAM */ 1259 if (abo->pin_count > 0) 1260 return -EINVAL; 1261 1262 /* hurrah the memory is not visible ! */ 1263 atomic64_inc(&adev->num_vram_cpu_page_faults); 1264 amdgpu_bo_placement_from_domain(abo, AMDGPU_GEM_DOMAIN_VRAM | 1265 AMDGPU_GEM_DOMAIN_GTT); 1266 1267 /* Avoid costly evictions; only set GTT as a busy placement */ 1268 abo->placement.num_busy_placement = 1; 1269 abo->placement.busy_placement = &abo->placements[1]; 1270 1271 r = ttm_bo_validate(bo, &abo->placement, &ctx); 1272 if (unlikely(r != 0)) 1273 return r; 1274 1275 offset = bo->mem.start << PAGE_SHIFT; 1276 /* this should never happen */ 1277 if (bo->mem.mem_type == TTM_PL_VRAM && 1278 (offset + size) > adev->gmc.visible_vram_size) 1279 return -EINVAL; 1280 1281 return 0; 1282 } 1283 1284 /** 1285 * amdgpu_bo_fence - add fence to buffer object 1286 * 1287 * @bo: buffer object in question 1288 * @fence: fence to add 1289 * @shared: true if fence should be added shared 1290 * 1291 */ 1292 void amdgpu_bo_fence(struct amdgpu_bo *bo, struct dma_fence *fence, 1293 bool shared) 1294 { 1295 struct reservation_object *resv = bo->tbo.resv; 1296 1297 if (shared) 1298 reservation_object_add_shared_fence(resv, fence); 1299 else 1300 reservation_object_add_excl_fence(resv, fence); 1301 } 1302 1303 /** 1304 * amdgpu_sync_wait_resv - Wait for BO reservation fences 1305 * 1306 * @bo: buffer object 1307 * @owner: fence owner 1308 * @intr: Whether the wait is interruptible 1309 * 1310 * Returns: 1311 * 0 on success, errno otherwise. 1312 */ 1313 int amdgpu_bo_sync_wait(struct amdgpu_bo *bo, void *owner, bool intr) 1314 { 1315 struct amdgpu_device *adev = amdgpu_ttm_adev(bo->tbo.bdev); 1316 struct amdgpu_sync sync; 1317 int r; 1318 1319 amdgpu_sync_create(&sync); 1320 amdgpu_sync_resv(adev, &sync, bo->tbo.resv, owner, false); 1321 r = amdgpu_sync_wait(&sync, intr); 1322 amdgpu_sync_free(&sync); 1323 1324 return r; 1325 } 1326 1327 /** 1328 * amdgpu_bo_gpu_offset - return GPU offset of bo 1329 * @bo: amdgpu object for which we query the offset 1330 * 1331 * Note: object should either be pinned or reserved when calling this 1332 * function, it might be useful to add check for this for debugging. 1333 * 1334 * Returns: 1335 * current GPU offset of the object. 1336 */ 1337 u64 amdgpu_bo_gpu_offset(struct amdgpu_bo *bo) 1338 { 1339 WARN_ON_ONCE(bo->tbo.mem.mem_type == TTM_PL_SYSTEM); 1340 WARN_ON_ONCE(!ww_mutex_is_locked(&bo->tbo.resv->lock) && 1341 !bo->pin_count && bo->tbo.type != ttm_bo_type_kernel); 1342 WARN_ON_ONCE(bo->tbo.mem.start == AMDGPU_BO_INVALID_OFFSET); 1343 WARN_ON_ONCE(bo->tbo.mem.mem_type == TTM_PL_VRAM && 1344 !(bo->flags & AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS)); 1345 1346 return amdgpu_gmc_sign_extend(bo->tbo.offset); 1347 } 1348 1349 /** 1350 * amdgpu_bo_get_preferred_pin_domain - get preferred domain for scanout 1351 * @adev: amdgpu device object 1352 * @domain: allowed :ref:`memory domains <amdgpu_memory_domains>` 1353 * 1354 * Returns: 1355 * Which of the allowed domains is preferred for pinning the BO for scanout. 1356 */ 1357 uint32_t amdgpu_bo_get_preferred_pin_domain(struct amdgpu_device *adev, 1358 uint32_t domain) 1359 { 1360 if (domain == (AMDGPU_GEM_DOMAIN_VRAM | AMDGPU_GEM_DOMAIN_GTT)) { 1361 domain = AMDGPU_GEM_DOMAIN_VRAM; 1362 if (adev->gmc.real_vram_size <= AMDGPU_SG_THRESHOLD) 1363 domain = AMDGPU_GEM_DOMAIN_GTT; 1364 } 1365 return domain; 1366 } 1367