1 /* 2 * Copyright 2014-2018 Advanced Micro Devices, Inc. 3 * 4 * Permission is hereby granted, free of charge, to any person obtaining a 5 * copy of this software and associated documentation files (the "Software"), 6 * to deal in the Software without restriction, including without limitation 7 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 8 * and/or sell copies of the Software, and to permit persons to whom the 9 * Software is furnished to do so, subject to the following conditions: 10 * 11 * The above copyright notice and this permission notice shall be included in 12 * all copies or substantial portions of the Software. 13 * 14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR 18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 20 * OTHER DEALINGS IN THE SOFTWARE. 21 */ 22 #include <linux/dma-buf.h> 23 #include <linux/list.h> 24 #include <linux/pagemap.h> 25 #include <linux/sched/mm.h> 26 #include <linux/sched/task.h> 27 28 #include "amdgpu_object.h" 29 #include "amdgpu_gem.h" 30 #include "amdgpu_vm.h" 31 #include "amdgpu_amdkfd.h" 32 #include "amdgpu_dma_buf.h" 33 #include <uapi/linux/kfd_ioctl.h> 34 #include "amdgpu_xgmi.h" 35 36 /* Userptr restore delay, just long enough to allow consecutive VM 37 * changes to accumulate 38 */ 39 #define AMDGPU_USERPTR_RESTORE_DELAY_MS 1 40 41 /* Impose limit on how much memory KFD can use */ 42 static struct { 43 uint64_t max_system_mem_limit; 44 uint64_t max_ttm_mem_limit; 45 int64_t system_mem_used; 46 int64_t ttm_mem_used; 47 spinlock_t mem_limit_lock; 48 } kfd_mem_limit; 49 50 static const char * const domain_bit_to_string[] = { 51 "CPU", 52 "GTT", 53 "VRAM", 54 "GDS", 55 "GWS", 56 "OA" 57 }; 58 59 #define domain_string(domain) domain_bit_to_string[ffs(domain)-1] 60 61 static void amdgpu_amdkfd_restore_userptr_worker(struct work_struct *work); 62 63 64 static inline struct amdgpu_device *get_amdgpu_device(struct kgd_dev *kgd) 65 { 66 return (struct amdgpu_device *)kgd; 67 } 68 69 static bool kfd_mem_is_attached(struct amdgpu_vm *avm, 70 struct kgd_mem *mem) 71 { 72 struct kfd_mem_attachment *entry; 73 74 list_for_each_entry(entry, &mem->attachments, list) 75 if (entry->bo_va->base.vm == avm) 76 return true; 77 78 return false; 79 } 80 81 /* Set memory usage limits. Current, limits are 82 * System (TTM + userptr) memory - 15/16th System RAM 83 * TTM memory - 3/8th System RAM 84 */ 85 void amdgpu_amdkfd_gpuvm_init_mem_limits(void) 86 { 87 struct sysinfo si; 88 uint64_t mem; 89 90 si_meminfo(&si); 91 mem = si.freeram - si.freehigh; 92 mem *= si.mem_unit; 93 94 spin_lock_init(&kfd_mem_limit.mem_limit_lock); 95 kfd_mem_limit.max_system_mem_limit = mem - (mem >> 4); 96 kfd_mem_limit.max_ttm_mem_limit = (mem >> 1) - (mem >> 3); 97 pr_debug("Kernel memory limit %lluM, TTM limit %lluM\n", 98 (kfd_mem_limit.max_system_mem_limit >> 20), 99 (kfd_mem_limit.max_ttm_mem_limit >> 20)); 100 } 101 102 void amdgpu_amdkfd_reserve_system_mem(uint64_t size) 103 { 104 kfd_mem_limit.system_mem_used += size; 105 } 106 107 /* Estimate page table size needed to represent a given memory size 108 * 109 * With 4KB pages, we need one 8 byte PTE for each 4KB of memory 110 * (factor 512, >> 9). With 2MB pages, we need one 8 byte PTE for 2MB 111 * of memory (factor 256K, >> 18). ROCm user mode tries to optimize 112 * for 2MB pages for TLB efficiency. However, small allocations and 113 * fragmented system memory still need some 4KB pages. We choose a 114 * compromise that should work in most cases without reserving too 115 * much memory for page tables unnecessarily (factor 16K, >> 14). 116 */ 117 #define ESTIMATE_PT_SIZE(mem_size) ((mem_size) >> 14) 118 119 static size_t amdgpu_amdkfd_acc_size(uint64_t size) 120 { 121 size >>= PAGE_SHIFT; 122 size *= sizeof(dma_addr_t) + sizeof(void *); 123 124 return __roundup_pow_of_two(sizeof(struct amdgpu_bo)) + 125 __roundup_pow_of_two(sizeof(struct ttm_tt)) + 126 PAGE_ALIGN(size); 127 } 128 129 static int amdgpu_amdkfd_reserve_mem_limit(struct amdgpu_device *adev, 130 uint64_t size, u32 domain, bool sg) 131 { 132 uint64_t reserved_for_pt = 133 ESTIMATE_PT_SIZE(amdgpu_amdkfd_total_mem_size); 134 size_t acc_size, system_mem_needed, ttm_mem_needed, vram_needed; 135 int ret = 0; 136 137 acc_size = amdgpu_amdkfd_acc_size(size); 138 139 vram_needed = 0; 140 if (domain == AMDGPU_GEM_DOMAIN_GTT) { 141 /* TTM GTT memory */ 142 system_mem_needed = acc_size + size; 143 ttm_mem_needed = acc_size + size; 144 } else if (domain == AMDGPU_GEM_DOMAIN_CPU && !sg) { 145 /* Userptr */ 146 system_mem_needed = acc_size + size; 147 ttm_mem_needed = acc_size; 148 } else { 149 /* VRAM and SG */ 150 system_mem_needed = acc_size; 151 ttm_mem_needed = acc_size; 152 if (domain == AMDGPU_GEM_DOMAIN_VRAM) 153 vram_needed = size; 154 } 155 156 spin_lock(&kfd_mem_limit.mem_limit_lock); 157 158 if (kfd_mem_limit.system_mem_used + system_mem_needed > 159 kfd_mem_limit.max_system_mem_limit) 160 pr_debug("Set no_system_mem_limit=1 if using shared memory\n"); 161 162 if ((kfd_mem_limit.system_mem_used + system_mem_needed > 163 kfd_mem_limit.max_system_mem_limit && !no_system_mem_limit) || 164 (kfd_mem_limit.ttm_mem_used + ttm_mem_needed > 165 kfd_mem_limit.max_ttm_mem_limit) || 166 (adev->kfd.vram_used + vram_needed > 167 adev->gmc.real_vram_size - reserved_for_pt)) { 168 ret = -ENOMEM; 169 } else { 170 kfd_mem_limit.system_mem_used += system_mem_needed; 171 kfd_mem_limit.ttm_mem_used += ttm_mem_needed; 172 adev->kfd.vram_used += vram_needed; 173 } 174 175 spin_unlock(&kfd_mem_limit.mem_limit_lock); 176 return ret; 177 } 178 179 static void unreserve_mem_limit(struct amdgpu_device *adev, 180 uint64_t size, u32 domain, bool sg) 181 { 182 size_t acc_size; 183 184 acc_size = amdgpu_amdkfd_acc_size(size); 185 186 spin_lock(&kfd_mem_limit.mem_limit_lock); 187 if (domain == AMDGPU_GEM_DOMAIN_GTT) { 188 kfd_mem_limit.system_mem_used -= (acc_size + size); 189 kfd_mem_limit.ttm_mem_used -= (acc_size + size); 190 } else if (domain == AMDGPU_GEM_DOMAIN_CPU && !sg) { 191 kfd_mem_limit.system_mem_used -= (acc_size + size); 192 kfd_mem_limit.ttm_mem_used -= acc_size; 193 } else { 194 kfd_mem_limit.system_mem_used -= acc_size; 195 kfd_mem_limit.ttm_mem_used -= acc_size; 196 if (domain == AMDGPU_GEM_DOMAIN_VRAM) { 197 adev->kfd.vram_used -= size; 198 WARN_ONCE(adev->kfd.vram_used < 0, 199 "kfd VRAM memory accounting unbalanced"); 200 } 201 } 202 WARN_ONCE(kfd_mem_limit.system_mem_used < 0, 203 "kfd system memory accounting unbalanced"); 204 WARN_ONCE(kfd_mem_limit.ttm_mem_used < 0, 205 "kfd TTM memory accounting unbalanced"); 206 207 spin_unlock(&kfd_mem_limit.mem_limit_lock); 208 } 209 210 void amdgpu_amdkfd_release_notify(struct amdgpu_bo *bo) 211 { 212 struct amdgpu_device *adev = amdgpu_ttm_adev(bo->tbo.bdev); 213 u32 domain = bo->preferred_domains; 214 bool sg = (bo->preferred_domains == AMDGPU_GEM_DOMAIN_CPU); 215 216 if (bo->flags & AMDGPU_AMDKFD_CREATE_USERPTR_BO) { 217 domain = AMDGPU_GEM_DOMAIN_CPU; 218 sg = false; 219 } 220 221 unreserve_mem_limit(adev, amdgpu_bo_size(bo), domain, sg); 222 223 kfree(bo->kfd_bo); 224 } 225 226 227 /* amdgpu_amdkfd_remove_eviction_fence - Removes eviction fence from BO's 228 * reservation object. 229 * 230 * @bo: [IN] Remove eviction fence(s) from this BO 231 * @ef: [IN] This eviction fence is removed if it 232 * is present in the shared list. 233 * 234 * NOTE: Must be called with BO reserved i.e. bo->tbo.resv->lock held. 235 */ 236 static int amdgpu_amdkfd_remove_eviction_fence(struct amdgpu_bo *bo, 237 struct amdgpu_amdkfd_fence *ef) 238 { 239 struct dma_resv *resv = bo->tbo.base.resv; 240 struct dma_resv_list *old, *new; 241 unsigned int i, j, k; 242 243 if (!ef) 244 return -EINVAL; 245 246 old = dma_resv_shared_list(resv); 247 if (!old) 248 return 0; 249 250 new = kmalloc(struct_size(new, shared, old->shared_max), GFP_KERNEL); 251 if (!new) 252 return -ENOMEM; 253 254 /* Go through all the shared fences in the resevation object and sort 255 * the interesting ones to the end of the list. 256 */ 257 for (i = 0, j = old->shared_count, k = 0; i < old->shared_count; ++i) { 258 struct dma_fence *f; 259 260 f = rcu_dereference_protected(old->shared[i], 261 dma_resv_held(resv)); 262 263 if (f->context == ef->base.context) 264 RCU_INIT_POINTER(new->shared[--j], f); 265 else 266 RCU_INIT_POINTER(new->shared[k++], f); 267 } 268 new->shared_max = old->shared_max; 269 new->shared_count = k; 270 271 /* Install the new fence list, seqcount provides the barriers */ 272 write_seqcount_begin(&resv->seq); 273 RCU_INIT_POINTER(resv->fence, new); 274 write_seqcount_end(&resv->seq); 275 276 /* Drop the references to the removed fences or move them to ef_list */ 277 for (i = j; i < old->shared_count; ++i) { 278 struct dma_fence *f; 279 280 f = rcu_dereference_protected(new->shared[i], 281 dma_resv_held(resv)); 282 dma_fence_put(f); 283 } 284 kfree_rcu(old, rcu); 285 286 return 0; 287 } 288 289 int amdgpu_amdkfd_remove_fence_on_pt_pd_bos(struct amdgpu_bo *bo) 290 { 291 struct amdgpu_bo *root = bo; 292 struct amdgpu_vm_bo_base *vm_bo; 293 struct amdgpu_vm *vm; 294 struct amdkfd_process_info *info; 295 struct amdgpu_amdkfd_fence *ef; 296 int ret; 297 298 /* we can always get vm_bo from root PD bo.*/ 299 while (root->parent) 300 root = root->parent; 301 302 vm_bo = root->vm_bo; 303 if (!vm_bo) 304 return 0; 305 306 vm = vm_bo->vm; 307 if (!vm) 308 return 0; 309 310 info = vm->process_info; 311 if (!info || !info->eviction_fence) 312 return 0; 313 314 ef = container_of(dma_fence_get(&info->eviction_fence->base), 315 struct amdgpu_amdkfd_fence, base); 316 317 BUG_ON(!dma_resv_trylock(bo->tbo.base.resv)); 318 ret = amdgpu_amdkfd_remove_eviction_fence(bo, ef); 319 dma_resv_unlock(bo->tbo.base.resv); 320 321 dma_fence_put(&ef->base); 322 return ret; 323 } 324 325 static int amdgpu_amdkfd_bo_validate(struct amdgpu_bo *bo, uint32_t domain, 326 bool wait) 327 { 328 struct ttm_operation_ctx ctx = { false, false }; 329 int ret; 330 331 if (WARN(amdgpu_ttm_tt_get_usermm(bo->tbo.ttm), 332 "Called with userptr BO")) 333 return -EINVAL; 334 335 amdgpu_bo_placement_from_domain(bo, domain); 336 337 ret = ttm_bo_validate(&bo->tbo, &bo->placement, &ctx); 338 if (ret) 339 goto validate_fail; 340 if (wait) 341 amdgpu_bo_sync_wait(bo, AMDGPU_FENCE_OWNER_KFD, false); 342 343 validate_fail: 344 return ret; 345 } 346 347 static int amdgpu_amdkfd_validate_vm_bo(void *_unused, struct amdgpu_bo *bo) 348 { 349 return amdgpu_amdkfd_bo_validate(bo, bo->allowed_domains, false); 350 } 351 352 /* vm_validate_pt_pd_bos - Validate page table and directory BOs 353 * 354 * Page directories are not updated here because huge page handling 355 * during page table updates can invalidate page directory entries 356 * again. Page directories are only updated after updating page 357 * tables. 358 */ 359 static int vm_validate_pt_pd_bos(struct amdgpu_vm *vm) 360 { 361 struct amdgpu_bo *pd = vm->root.bo; 362 struct amdgpu_device *adev = amdgpu_ttm_adev(pd->tbo.bdev); 363 int ret; 364 365 ret = amdgpu_vm_validate_pt_bos(adev, vm, amdgpu_amdkfd_validate_vm_bo, NULL); 366 if (ret) { 367 pr_err("failed to validate PT BOs\n"); 368 return ret; 369 } 370 371 ret = amdgpu_amdkfd_validate_vm_bo(NULL, pd); 372 if (ret) { 373 pr_err("failed to validate PD\n"); 374 return ret; 375 } 376 377 vm->pd_phys_addr = amdgpu_gmc_pd_addr(vm->root.bo); 378 379 if (vm->use_cpu_for_update) { 380 ret = amdgpu_bo_kmap(pd, NULL); 381 if (ret) { 382 pr_err("failed to kmap PD, ret=%d\n", ret); 383 return ret; 384 } 385 } 386 387 return 0; 388 } 389 390 static int vm_update_pds(struct amdgpu_vm *vm, struct amdgpu_sync *sync) 391 { 392 struct amdgpu_bo *pd = vm->root.bo; 393 struct amdgpu_device *adev = amdgpu_ttm_adev(pd->tbo.bdev); 394 int ret; 395 396 ret = amdgpu_vm_update_pdes(adev, vm, false); 397 if (ret) 398 return ret; 399 400 return amdgpu_sync_fence(sync, vm->last_update); 401 } 402 403 static uint64_t get_pte_flags(struct amdgpu_device *adev, struct kgd_mem *mem) 404 { 405 struct amdgpu_device *bo_adev = amdgpu_ttm_adev(mem->bo->tbo.bdev); 406 bool coherent = mem->alloc_flags & KFD_IOC_ALLOC_MEM_FLAGS_COHERENT; 407 bool uncached = mem->alloc_flags & KFD_IOC_ALLOC_MEM_FLAGS_UNCACHED; 408 uint32_t mapping_flags; 409 uint64_t pte_flags; 410 bool snoop = false; 411 412 mapping_flags = AMDGPU_VM_PAGE_READABLE; 413 if (mem->alloc_flags & KFD_IOC_ALLOC_MEM_FLAGS_WRITABLE) 414 mapping_flags |= AMDGPU_VM_PAGE_WRITEABLE; 415 if (mem->alloc_flags & KFD_IOC_ALLOC_MEM_FLAGS_EXECUTABLE) 416 mapping_flags |= AMDGPU_VM_PAGE_EXECUTABLE; 417 418 switch (adev->asic_type) { 419 case CHIP_ARCTURUS: 420 if (mem->alloc_flags & KFD_IOC_ALLOC_MEM_FLAGS_VRAM) { 421 if (bo_adev == adev) 422 mapping_flags |= coherent ? 423 AMDGPU_VM_MTYPE_CC : AMDGPU_VM_MTYPE_RW; 424 else 425 mapping_flags |= coherent ? 426 AMDGPU_VM_MTYPE_UC : AMDGPU_VM_MTYPE_NC; 427 } else { 428 mapping_flags |= coherent ? 429 AMDGPU_VM_MTYPE_UC : AMDGPU_VM_MTYPE_NC; 430 } 431 break; 432 case CHIP_ALDEBARAN: 433 if (coherent && uncached) { 434 if (adev->gmc.xgmi.connected_to_cpu || 435 !(mem->alloc_flags & KFD_IOC_ALLOC_MEM_FLAGS_VRAM)) 436 snoop = true; 437 mapping_flags |= AMDGPU_VM_MTYPE_UC; 438 } else if (mem->alloc_flags & KFD_IOC_ALLOC_MEM_FLAGS_VRAM) { 439 if (bo_adev == adev) { 440 mapping_flags |= coherent ? 441 AMDGPU_VM_MTYPE_CC : AMDGPU_VM_MTYPE_RW; 442 if (adev->gmc.xgmi.connected_to_cpu) 443 snoop = true; 444 } else { 445 mapping_flags |= coherent ? 446 AMDGPU_VM_MTYPE_UC : AMDGPU_VM_MTYPE_NC; 447 if (amdgpu_xgmi_same_hive(adev, bo_adev)) 448 snoop = true; 449 } 450 } else { 451 snoop = true; 452 mapping_flags |= coherent ? 453 AMDGPU_VM_MTYPE_UC : AMDGPU_VM_MTYPE_NC; 454 } 455 break; 456 default: 457 mapping_flags |= coherent ? 458 AMDGPU_VM_MTYPE_UC : AMDGPU_VM_MTYPE_NC; 459 } 460 461 pte_flags = amdgpu_gem_va_map_flags(adev, mapping_flags); 462 pte_flags |= snoop ? AMDGPU_PTE_SNOOPED : 0; 463 464 return pte_flags; 465 } 466 467 static int 468 kfd_mem_dmamap_userptr(struct kgd_mem *mem, 469 struct kfd_mem_attachment *attachment) 470 { 471 enum dma_data_direction direction = 472 mem->alloc_flags & KFD_IOC_ALLOC_MEM_FLAGS_WRITABLE ? 473 DMA_BIDIRECTIONAL : DMA_TO_DEVICE; 474 struct ttm_operation_ctx ctx = {.interruptible = true}; 475 struct amdgpu_bo *bo = attachment->bo_va->base.bo; 476 struct amdgpu_device *adev = attachment->adev; 477 struct ttm_tt *src_ttm = mem->bo->tbo.ttm; 478 struct ttm_tt *ttm = bo->tbo.ttm; 479 int ret; 480 481 ttm->sg = kmalloc(sizeof(*ttm->sg), GFP_KERNEL); 482 if (unlikely(!ttm->sg)) 483 return -ENOMEM; 484 485 if (WARN_ON(ttm->num_pages != src_ttm->num_pages)) 486 return -EINVAL; 487 488 /* Same sequence as in amdgpu_ttm_tt_pin_userptr */ 489 ret = sg_alloc_table_from_pages(ttm->sg, src_ttm->pages, 490 ttm->num_pages, 0, 491 (u64)ttm->num_pages << PAGE_SHIFT, 492 GFP_KERNEL); 493 if (unlikely(ret)) 494 goto free_sg; 495 496 ret = dma_map_sgtable(adev->dev, ttm->sg, direction, 0); 497 if (unlikely(ret)) 498 goto release_sg; 499 500 drm_prime_sg_to_dma_addr_array(ttm->sg, ttm->dma_address, 501 ttm->num_pages); 502 503 amdgpu_bo_placement_from_domain(bo, AMDGPU_GEM_DOMAIN_GTT); 504 ret = ttm_bo_validate(&bo->tbo, &bo->placement, &ctx); 505 if (ret) 506 goto unmap_sg; 507 508 return 0; 509 510 unmap_sg: 511 dma_unmap_sgtable(adev->dev, ttm->sg, direction, 0); 512 release_sg: 513 pr_err("DMA map userptr failed: %d\n", ret); 514 sg_free_table(ttm->sg); 515 free_sg: 516 kfree(ttm->sg); 517 ttm->sg = NULL; 518 return ret; 519 } 520 521 static int 522 kfd_mem_dmamap_dmabuf(struct kfd_mem_attachment *attachment) 523 { 524 struct ttm_operation_ctx ctx = {.interruptible = true}; 525 struct amdgpu_bo *bo = attachment->bo_va->base.bo; 526 527 amdgpu_bo_placement_from_domain(bo, AMDGPU_GEM_DOMAIN_GTT); 528 return ttm_bo_validate(&bo->tbo, &bo->placement, &ctx); 529 } 530 531 static int 532 kfd_mem_dmamap_attachment(struct kgd_mem *mem, 533 struct kfd_mem_attachment *attachment) 534 { 535 switch (attachment->type) { 536 case KFD_MEM_ATT_SHARED: 537 return 0; 538 case KFD_MEM_ATT_USERPTR: 539 return kfd_mem_dmamap_userptr(mem, attachment); 540 case KFD_MEM_ATT_DMABUF: 541 return kfd_mem_dmamap_dmabuf(attachment); 542 default: 543 WARN_ON_ONCE(1); 544 } 545 return -EINVAL; 546 } 547 548 static void 549 kfd_mem_dmaunmap_userptr(struct kgd_mem *mem, 550 struct kfd_mem_attachment *attachment) 551 { 552 enum dma_data_direction direction = 553 mem->alloc_flags & KFD_IOC_ALLOC_MEM_FLAGS_WRITABLE ? 554 DMA_BIDIRECTIONAL : DMA_TO_DEVICE; 555 struct ttm_operation_ctx ctx = {.interruptible = false}; 556 struct amdgpu_bo *bo = attachment->bo_va->base.bo; 557 struct amdgpu_device *adev = attachment->adev; 558 struct ttm_tt *ttm = bo->tbo.ttm; 559 560 if (unlikely(!ttm->sg)) 561 return; 562 563 amdgpu_bo_placement_from_domain(bo, AMDGPU_GEM_DOMAIN_CPU); 564 ttm_bo_validate(&bo->tbo, &bo->placement, &ctx); 565 566 dma_unmap_sgtable(adev->dev, ttm->sg, direction, 0); 567 sg_free_table(ttm->sg); 568 kfree(ttm->sg); 569 ttm->sg = NULL; 570 } 571 572 static void 573 kfd_mem_dmaunmap_dmabuf(struct kfd_mem_attachment *attachment) 574 { 575 struct ttm_operation_ctx ctx = {.interruptible = true}; 576 struct amdgpu_bo *bo = attachment->bo_va->base.bo; 577 578 amdgpu_bo_placement_from_domain(bo, AMDGPU_GEM_DOMAIN_CPU); 579 ttm_bo_validate(&bo->tbo, &bo->placement, &ctx); 580 } 581 582 static void 583 kfd_mem_dmaunmap_attachment(struct kgd_mem *mem, 584 struct kfd_mem_attachment *attachment) 585 { 586 switch (attachment->type) { 587 case KFD_MEM_ATT_SHARED: 588 break; 589 case KFD_MEM_ATT_USERPTR: 590 kfd_mem_dmaunmap_userptr(mem, attachment); 591 break; 592 case KFD_MEM_ATT_DMABUF: 593 kfd_mem_dmaunmap_dmabuf(attachment); 594 break; 595 default: 596 WARN_ON_ONCE(1); 597 } 598 } 599 600 static int 601 kfd_mem_attach_userptr(struct amdgpu_device *adev, struct kgd_mem *mem, 602 struct amdgpu_bo **bo) 603 { 604 unsigned long bo_size = mem->bo->tbo.base.size; 605 struct drm_gem_object *gobj; 606 int ret; 607 608 ret = amdgpu_bo_reserve(mem->bo, false); 609 if (ret) 610 return ret; 611 612 ret = amdgpu_gem_object_create(adev, bo_size, 1, 613 AMDGPU_GEM_DOMAIN_CPU, 614 AMDGPU_GEM_CREATE_PREEMPTIBLE, 615 ttm_bo_type_sg, mem->bo->tbo.base.resv, 616 &gobj); 617 amdgpu_bo_unreserve(mem->bo); 618 if (ret) 619 return ret; 620 621 *bo = gem_to_amdgpu_bo(gobj); 622 (*bo)->parent = amdgpu_bo_ref(mem->bo); 623 624 return 0; 625 } 626 627 static int 628 kfd_mem_attach_dmabuf(struct amdgpu_device *adev, struct kgd_mem *mem, 629 struct amdgpu_bo **bo) 630 { 631 struct drm_gem_object *gobj; 632 int ret; 633 634 if (!mem->dmabuf) { 635 mem->dmabuf = amdgpu_gem_prime_export(&mem->bo->tbo.base, 636 mem->alloc_flags & KFD_IOC_ALLOC_MEM_FLAGS_WRITABLE ? 637 DRM_RDWR : 0); 638 if (IS_ERR(mem->dmabuf)) { 639 ret = PTR_ERR(mem->dmabuf); 640 mem->dmabuf = NULL; 641 return ret; 642 } 643 } 644 645 gobj = amdgpu_gem_prime_import(adev_to_drm(adev), mem->dmabuf); 646 if (IS_ERR(gobj)) 647 return PTR_ERR(gobj); 648 649 *bo = gem_to_amdgpu_bo(gobj); 650 (*bo)->flags |= AMDGPU_GEM_CREATE_PREEMPTIBLE; 651 (*bo)->parent = amdgpu_bo_ref(mem->bo); 652 653 return 0; 654 } 655 656 /* kfd_mem_attach - Add a BO to a VM 657 * 658 * Everything that needs to bo done only once when a BO is first added 659 * to a VM. It can later be mapped and unmapped many times without 660 * repeating these steps. 661 * 662 * 0. Create BO for DMA mapping, if needed 663 * 1. Allocate and initialize BO VA entry data structure 664 * 2. Add BO to the VM 665 * 3. Determine ASIC-specific PTE flags 666 * 4. Alloc page tables and directories if needed 667 * 4a. Validate new page tables and directories 668 */ 669 static int kfd_mem_attach(struct amdgpu_device *adev, struct kgd_mem *mem, 670 struct amdgpu_vm *vm, bool is_aql) 671 { 672 struct amdgpu_device *bo_adev = amdgpu_ttm_adev(mem->bo->tbo.bdev); 673 unsigned long bo_size = mem->bo->tbo.base.size; 674 uint64_t va = mem->va; 675 struct kfd_mem_attachment *attachment[2] = {NULL, NULL}; 676 struct amdgpu_bo *bo[2] = {NULL, NULL}; 677 int i, ret; 678 679 if (!va) { 680 pr_err("Invalid VA when adding BO to VM\n"); 681 return -EINVAL; 682 } 683 684 for (i = 0; i <= is_aql; i++) { 685 attachment[i] = kzalloc(sizeof(*attachment[i]), GFP_KERNEL); 686 if (unlikely(!attachment[i])) { 687 ret = -ENOMEM; 688 goto unwind; 689 } 690 691 pr_debug("\t add VA 0x%llx - 0x%llx to vm %p\n", va, 692 va + bo_size, vm); 693 694 if (adev == bo_adev || (mem->domain == AMDGPU_GEM_DOMAIN_VRAM && 695 amdgpu_xgmi_same_hive(adev, bo_adev))) { 696 /* Mappings on the local GPU and VRAM mappings in the 697 * local hive share the original BO 698 */ 699 attachment[i]->type = KFD_MEM_ATT_SHARED; 700 bo[i] = mem->bo; 701 drm_gem_object_get(&bo[i]->tbo.base); 702 } else if (i > 0) { 703 /* Multiple mappings on the same GPU share the BO */ 704 attachment[i]->type = KFD_MEM_ATT_SHARED; 705 bo[i] = bo[0]; 706 drm_gem_object_get(&bo[i]->tbo.base); 707 } else if (amdgpu_ttm_tt_get_usermm(mem->bo->tbo.ttm)) { 708 /* Create an SG BO to DMA-map userptrs on other GPUs */ 709 attachment[i]->type = KFD_MEM_ATT_USERPTR; 710 ret = kfd_mem_attach_userptr(adev, mem, &bo[i]); 711 if (ret) 712 goto unwind; 713 } else if (mem->domain == AMDGPU_GEM_DOMAIN_GTT && 714 mem->bo->tbo.type != ttm_bo_type_sg) { 715 /* GTT BOs use DMA-mapping ability of dynamic-attach 716 * DMA bufs. TODO: The same should work for VRAM on 717 * large-BAR GPUs. 718 */ 719 attachment[i]->type = KFD_MEM_ATT_DMABUF; 720 ret = kfd_mem_attach_dmabuf(adev, mem, &bo[i]); 721 if (ret) 722 goto unwind; 723 } else { 724 /* FIXME: Need to DMA-map other BO types: 725 * large-BAR VRAM, doorbells, MMIO remap 726 */ 727 attachment[i]->type = KFD_MEM_ATT_SHARED; 728 bo[i] = mem->bo; 729 drm_gem_object_get(&bo[i]->tbo.base); 730 } 731 732 /* Add BO to VM internal data structures */ 733 ret = amdgpu_bo_reserve(bo[i], false); 734 if (ret) { 735 pr_debug("Unable to reserve BO during memory attach"); 736 goto unwind; 737 } 738 attachment[i]->bo_va = amdgpu_vm_bo_add(adev, vm, bo[i]); 739 amdgpu_bo_unreserve(bo[i]); 740 if (unlikely(!attachment[i]->bo_va)) { 741 ret = -ENOMEM; 742 pr_err("Failed to add BO object to VM. ret == %d\n", 743 ret); 744 goto unwind; 745 } 746 attachment[i]->va = va; 747 attachment[i]->pte_flags = get_pte_flags(adev, mem); 748 attachment[i]->adev = adev; 749 list_add(&attachment[i]->list, &mem->attachments); 750 751 va += bo_size; 752 } 753 754 return 0; 755 756 unwind: 757 for (; i >= 0; i--) { 758 if (!attachment[i]) 759 continue; 760 if (attachment[i]->bo_va) { 761 amdgpu_bo_reserve(bo[i], true); 762 amdgpu_vm_bo_rmv(adev, attachment[i]->bo_va); 763 amdgpu_bo_unreserve(bo[i]); 764 list_del(&attachment[i]->list); 765 } 766 if (bo[i]) 767 drm_gem_object_put(&bo[i]->tbo.base); 768 kfree(attachment[i]); 769 } 770 return ret; 771 } 772 773 static void kfd_mem_detach(struct kfd_mem_attachment *attachment) 774 { 775 struct amdgpu_bo *bo = attachment->bo_va->base.bo; 776 777 pr_debug("\t remove VA 0x%llx in entry %p\n", 778 attachment->va, attachment); 779 amdgpu_vm_bo_rmv(attachment->adev, attachment->bo_va); 780 drm_gem_object_put(&bo->tbo.base); 781 list_del(&attachment->list); 782 kfree(attachment); 783 } 784 785 static void add_kgd_mem_to_kfd_bo_list(struct kgd_mem *mem, 786 struct amdkfd_process_info *process_info, 787 bool userptr) 788 { 789 struct ttm_validate_buffer *entry = &mem->validate_list; 790 struct amdgpu_bo *bo = mem->bo; 791 792 INIT_LIST_HEAD(&entry->head); 793 entry->num_shared = 1; 794 entry->bo = &bo->tbo; 795 mutex_lock(&process_info->lock); 796 if (userptr) 797 list_add_tail(&entry->head, &process_info->userptr_valid_list); 798 else 799 list_add_tail(&entry->head, &process_info->kfd_bo_list); 800 mutex_unlock(&process_info->lock); 801 } 802 803 static void remove_kgd_mem_from_kfd_bo_list(struct kgd_mem *mem, 804 struct amdkfd_process_info *process_info) 805 { 806 struct ttm_validate_buffer *bo_list_entry; 807 808 bo_list_entry = &mem->validate_list; 809 mutex_lock(&process_info->lock); 810 list_del(&bo_list_entry->head); 811 mutex_unlock(&process_info->lock); 812 } 813 814 /* Initializes user pages. It registers the MMU notifier and validates 815 * the userptr BO in the GTT domain. 816 * 817 * The BO must already be on the userptr_valid_list. Otherwise an 818 * eviction and restore may happen that leaves the new BO unmapped 819 * with the user mode queues running. 820 * 821 * Takes the process_info->lock to protect against concurrent restore 822 * workers. 823 * 824 * Returns 0 for success, negative errno for errors. 825 */ 826 static int init_user_pages(struct kgd_mem *mem, uint64_t user_addr) 827 { 828 struct amdkfd_process_info *process_info = mem->process_info; 829 struct amdgpu_bo *bo = mem->bo; 830 struct ttm_operation_ctx ctx = { true, false }; 831 int ret = 0; 832 833 mutex_lock(&process_info->lock); 834 835 ret = amdgpu_ttm_tt_set_userptr(&bo->tbo, user_addr, 0); 836 if (ret) { 837 pr_err("%s: Failed to set userptr: %d\n", __func__, ret); 838 goto out; 839 } 840 841 ret = amdgpu_mn_register(bo, user_addr); 842 if (ret) { 843 pr_err("%s: Failed to register MMU notifier: %d\n", 844 __func__, ret); 845 goto out; 846 } 847 848 ret = amdgpu_ttm_tt_get_user_pages(bo, bo->tbo.ttm->pages); 849 if (ret) { 850 pr_err("%s: Failed to get user pages: %d\n", __func__, ret); 851 goto unregister_out; 852 } 853 854 ret = amdgpu_bo_reserve(bo, true); 855 if (ret) { 856 pr_err("%s: Failed to reserve BO\n", __func__); 857 goto release_out; 858 } 859 amdgpu_bo_placement_from_domain(bo, mem->domain); 860 ret = ttm_bo_validate(&bo->tbo, &bo->placement, &ctx); 861 if (ret) 862 pr_err("%s: failed to validate BO\n", __func__); 863 amdgpu_bo_unreserve(bo); 864 865 release_out: 866 amdgpu_ttm_tt_get_user_pages_done(bo->tbo.ttm); 867 unregister_out: 868 if (ret) 869 amdgpu_mn_unregister(bo); 870 out: 871 mutex_unlock(&process_info->lock); 872 return ret; 873 } 874 875 /* Reserving a BO and its page table BOs must happen atomically to 876 * avoid deadlocks. Some operations update multiple VMs at once. Track 877 * all the reservation info in a context structure. Optionally a sync 878 * object can track VM updates. 879 */ 880 struct bo_vm_reservation_context { 881 struct amdgpu_bo_list_entry kfd_bo; /* BO list entry for the KFD BO */ 882 unsigned int n_vms; /* Number of VMs reserved */ 883 struct amdgpu_bo_list_entry *vm_pd; /* Array of VM BO list entries */ 884 struct ww_acquire_ctx ticket; /* Reservation ticket */ 885 struct list_head list, duplicates; /* BO lists */ 886 struct amdgpu_sync *sync; /* Pointer to sync object */ 887 bool reserved; /* Whether BOs are reserved */ 888 }; 889 890 enum bo_vm_match { 891 BO_VM_NOT_MAPPED = 0, /* Match VMs where a BO is not mapped */ 892 BO_VM_MAPPED, /* Match VMs where a BO is mapped */ 893 BO_VM_ALL, /* Match all VMs a BO was added to */ 894 }; 895 896 /** 897 * reserve_bo_and_vm - reserve a BO and a VM unconditionally. 898 * @mem: KFD BO structure. 899 * @vm: the VM to reserve. 900 * @ctx: the struct that will be used in unreserve_bo_and_vms(). 901 */ 902 static int reserve_bo_and_vm(struct kgd_mem *mem, 903 struct amdgpu_vm *vm, 904 struct bo_vm_reservation_context *ctx) 905 { 906 struct amdgpu_bo *bo = mem->bo; 907 int ret; 908 909 WARN_ON(!vm); 910 911 ctx->reserved = false; 912 ctx->n_vms = 1; 913 ctx->sync = &mem->sync; 914 915 INIT_LIST_HEAD(&ctx->list); 916 INIT_LIST_HEAD(&ctx->duplicates); 917 918 ctx->vm_pd = kcalloc(ctx->n_vms, sizeof(*ctx->vm_pd), GFP_KERNEL); 919 if (!ctx->vm_pd) 920 return -ENOMEM; 921 922 ctx->kfd_bo.priority = 0; 923 ctx->kfd_bo.tv.bo = &bo->tbo; 924 ctx->kfd_bo.tv.num_shared = 1; 925 list_add(&ctx->kfd_bo.tv.head, &ctx->list); 926 927 amdgpu_vm_get_pd_bo(vm, &ctx->list, &ctx->vm_pd[0]); 928 929 ret = ttm_eu_reserve_buffers(&ctx->ticket, &ctx->list, 930 false, &ctx->duplicates); 931 if (ret) { 932 pr_err("Failed to reserve buffers in ttm.\n"); 933 kfree(ctx->vm_pd); 934 ctx->vm_pd = NULL; 935 return ret; 936 } 937 938 ctx->reserved = true; 939 return 0; 940 } 941 942 /** 943 * reserve_bo_and_cond_vms - reserve a BO and some VMs conditionally 944 * @mem: KFD BO structure. 945 * @vm: the VM to reserve. If NULL, then all VMs associated with the BO 946 * is used. Otherwise, a single VM associated with the BO. 947 * @map_type: the mapping status that will be used to filter the VMs. 948 * @ctx: the struct that will be used in unreserve_bo_and_vms(). 949 * 950 * Returns 0 for success, negative for failure. 951 */ 952 static int reserve_bo_and_cond_vms(struct kgd_mem *mem, 953 struct amdgpu_vm *vm, enum bo_vm_match map_type, 954 struct bo_vm_reservation_context *ctx) 955 { 956 struct amdgpu_bo *bo = mem->bo; 957 struct kfd_mem_attachment *entry; 958 unsigned int i; 959 int ret; 960 961 ctx->reserved = false; 962 ctx->n_vms = 0; 963 ctx->vm_pd = NULL; 964 ctx->sync = &mem->sync; 965 966 INIT_LIST_HEAD(&ctx->list); 967 INIT_LIST_HEAD(&ctx->duplicates); 968 969 list_for_each_entry(entry, &mem->attachments, list) { 970 if ((vm && vm != entry->bo_va->base.vm) || 971 (entry->is_mapped != map_type 972 && map_type != BO_VM_ALL)) 973 continue; 974 975 ctx->n_vms++; 976 } 977 978 if (ctx->n_vms != 0) { 979 ctx->vm_pd = kcalloc(ctx->n_vms, sizeof(*ctx->vm_pd), 980 GFP_KERNEL); 981 if (!ctx->vm_pd) 982 return -ENOMEM; 983 } 984 985 ctx->kfd_bo.priority = 0; 986 ctx->kfd_bo.tv.bo = &bo->tbo; 987 ctx->kfd_bo.tv.num_shared = 1; 988 list_add(&ctx->kfd_bo.tv.head, &ctx->list); 989 990 i = 0; 991 list_for_each_entry(entry, &mem->attachments, list) { 992 if ((vm && vm != entry->bo_va->base.vm) || 993 (entry->is_mapped != map_type 994 && map_type != BO_VM_ALL)) 995 continue; 996 997 amdgpu_vm_get_pd_bo(entry->bo_va->base.vm, &ctx->list, 998 &ctx->vm_pd[i]); 999 i++; 1000 } 1001 1002 ret = ttm_eu_reserve_buffers(&ctx->ticket, &ctx->list, 1003 false, &ctx->duplicates); 1004 if (ret) { 1005 pr_err("Failed to reserve buffers in ttm.\n"); 1006 kfree(ctx->vm_pd); 1007 ctx->vm_pd = NULL; 1008 return ret; 1009 } 1010 1011 ctx->reserved = true; 1012 return 0; 1013 } 1014 1015 /** 1016 * unreserve_bo_and_vms - Unreserve BO and VMs from a reservation context 1017 * @ctx: Reservation context to unreserve 1018 * @wait: Optionally wait for a sync object representing pending VM updates 1019 * @intr: Whether the wait is interruptible 1020 * 1021 * Also frees any resources allocated in 1022 * reserve_bo_and_(cond_)vm(s). Returns the status from 1023 * amdgpu_sync_wait. 1024 */ 1025 static int unreserve_bo_and_vms(struct bo_vm_reservation_context *ctx, 1026 bool wait, bool intr) 1027 { 1028 int ret = 0; 1029 1030 if (wait) 1031 ret = amdgpu_sync_wait(ctx->sync, intr); 1032 1033 if (ctx->reserved) 1034 ttm_eu_backoff_reservation(&ctx->ticket, &ctx->list); 1035 kfree(ctx->vm_pd); 1036 1037 ctx->sync = NULL; 1038 1039 ctx->reserved = false; 1040 ctx->vm_pd = NULL; 1041 1042 return ret; 1043 } 1044 1045 static void unmap_bo_from_gpuvm(struct kgd_mem *mem, 1046 struct kfd_mem_attachment *entry, 1047 struct amdgpu_sync *sync) 1048 { 1049 struct amdgpu_bo_va *bo_va = entry->bo_va; 1050 struct amdgpu_device *adev = entry->adev; 1051 struct amdgpu_vm *vm = bo_va->base.vm; 1052 1053 amdgpu_vm_bo_unmap(adev, bo_va, entry->va); 1054 1055 amdgpu_vm_clear_freed(adev, vm, &bo_va->last_pt_update); 1056 1057 amdgpu_sync_fence(sync, bo_va->last_pt_update); 1058 1059 kfd_mem_dmaunmap_attachment(mem, entry); 1060 } 1061 1062 static int update_gpuvm_pte(struct kgd_mem *mem, 1063 struct kfd_mem_attachment *entry, 1064 struct amdgpu_sync *sync, 1065 bool *table_freed) 1066 { 1067 struct amdgpu_bo_va *bo_va = entry->bo_va; 1068 struct amdgpu_device *adev = entry->adev; 1069 int ret; 1070 1071 ret = kfd_mem_dmamap_attachment(mem, entry); 1072 if (ret) 1073 return ret; 1074 1075 /* Update the page tables */ 1076 ret = amdgpu_vm_bo_update(adev, bo_va, false, table_freed); 1077 if (ret) { 1078 pr_err("amdgpu_vm_bo_update failed\n"); 1079 return ret; 1080 } 1081 1082 return amdgpu_sync_fence(sync, bo_va->last_pt_update); 1083 } 1084 1085 static int map_bo_to_gpuvm(struct kgd_mem *mem, 1086 struct kfd_mem_attachment *entry, 1087 struct amdgpu_sync *sync, 1088 bool no_update_pte, 1089 bool *table_freed) 1090 { 1091 int ret; 1092 1093 /* Set virtual address for the allocation */ 1094 ret = amdgpu_vm_bo_map(entry->adev, entry->bo_va, entry->va, 0, 1095 amdgpu_bo_size(entry->bo_va->base.bo), 1096 entry->pte_flags); 1097 if (ret) { 1098 pr_err("Failed to map VA 0x%llx in vm. ret %d\n", 1099 entry->va, ret); 1100 return ret; 1101 } 1102 1103 if (no_update_pte) 1104 return 0; 1105 1106 ret = update_gpuvm_pte(mem, entry, sync, table_freed); 1107 if (ret) { 1108 pr_err("update_gpuvm_pte() failed\n"); 1109 goto update_gpuvm_pte_failed; 1110 } 1111 1112 return 0; 1113 1114 update_gpuvm_pte_failed: 1115 unmap_bo_from_gpuvm(mem, entry, sync); 1116 return ret; 1117 } 1118 1119 static struct sg_table *create_doorbell_sg(uint64_t addr, uint32_t size) 1120 { 1121 struct sg_table *sg = kmalloc(sizeof(*sg), GFP_KERNEL); 1122 1123 if (!sg) 1124 return NULL; 1125 if (sg_alloc_table(sg, 1, GFP_KERNEL)) { 1126 kfree(sg); 1127 return NULL; 1128 } 1129 sg->sgl->dma_address = addr; 1130 sg->sgl->length = size; 1131 #ifdef CONFIG_NEED_SG_DMA_LENGTH 1132 sg->sgl->dma_length = size; 1133 #endif 1134 return sg; 1135 } 1136 1137 static int process_validate_vms(struct amdkfd_process_info *process_info) 1138 { 1139 struct amdgpu_vm *peer_vm; 1140 int ret; 1141 1142 list_for_each_entry(peer_vm, &process_info->vm_list_head, 1143 vm_list_node) { 1144 ret = vm_validate_pt_pd_bos(peer_vm); 1145 if (ret) 1146 return ret; 1147 } 1148 1149 return 0; 1150 } 1151 1152 static int process_sync_pds_resv(struct amdkfd_process_info *process_info, 1153 struct amdgpu_sync *sync) 1154 { 1155 struct amdgpu_vm *peer_vm; 1156 int ret; 1157 1158 list_for_each_entry(peer_vm, &process_info->vm_list_head, 1159 vm_list_node) { 1160 struct amdgpu_bo *pd = peer_vm->root.bo; 1161 1162 ret = amdgpu_sync_resv(NULL, sync, pd->tbo.base.resv, 1163 AMDGPU_SYNC_NE_OWNER, 1164 AMDGPU_FENCE_OWNER_KFD); 1165 if (ret) 1166 return ret; 1167 } 1168 1169 return 0; 1170 } 1171 1172 static int process_update_pds(struct amdkfd_process_info *process_info, 1173 struct amdgpu_sync *sync) 1174 { 1175 struct amdgpu_vm *peer_vm; 1176 int ret; 1177 1178 list_for_each_entry(peer_vm, &process_info->vm_list_head, 1179 vm_list_node) { 1180 ret = vm_update_pds(peer_vm, sync); 1181 if (ret) 1182 return ret; 1183 } 1184 1185 return 0; 1186 } 1187 1188 static int init_kfd_vm(struct amdgpu_vm *vm, void **process_info, 1189 struct dma_fence **ef) 1190 { 1191 struct amdkfd_process_info *info = NULL; 1192 int ret; 1193 1194 if (!*process_info) { 1195 info = kzalloc(sizeof(*info), GFP_KERNEL); 1196 if (!info) 1197 return -ENOMEM; 1198 1199 mutex_init(&info->lock); 1200 INIT_LIST_HEAD(&info->vm_list_head); 1201 INIT_LIST_HEAD(&info->kfd_bo_list); 1202 INIT_LIST_HEAD(&info->userptr_valid_list); 1203 INIT_LIST_HEAD(&info->userptr_inval_list); 1204 1205 info->eviction_fence = 1206 amdgpu_amdkfd_fence_create(dma_fence_context_alloc(1), 1207 current->mm, 1208 NULL); 1209 if (!info->eviction_fence) { 1210 pr_err("Failed to create eviction fence\n"); 1211 ret = -ENOMEM; 1212 goto create_evict_fence_fail; 1213 } 1214 1215 info->pid = get_task_pid(current->group_leader, PIDTYPE_PID); 1216 atomic_set(&info->evicted_bos, 0); 1217 INIT_DELAYED_WORK(&info->restore_userptr_work, 1218 amdgpu_amdkfd_restore_userptr_worker); 1219 1220 *process_info = info; 1221 *ef = dma_fence_get(&info->eviction_fence->base); 1222 } 1223 1224 vm->process_info = *process_info; 1225 1226 /* Validate page directory and attach eviction fence */ 1227 ret = amdgpu_bo_reserve(vm->root.bo, true); 1228 if (ret) 1229 goto reserve_pd_fail; 1230 ret = vm_validate_pt_pd_bos(vm); 1231 if (ret) { 1232 pr_err("validate_pt_pd_bos() failed\n"); 1233 goto validate_pd_fail; 1234 } 1235 ret = amdgpu_bo_sync_wait(vm->root.bo, 1236 AMDGPU_FENCE_OWNER_KFD, false); 1237 if (ret) 1238 goto wait_pd_fail; 1239 ret = dma_resv_reserve_shared(vm->root.bo->tbo.base.resv, 1); 1240 if (ret) 1241 goto reserve_shared_fail; 1242 amdgpu_bo_fence(vm->root.bo, 1243 &vm->process_info->eviction_fence->base, true); 1244 amdgpu_bo_unreserve(vm->root.bo); 1245 1246 /* Update process info */ 1247 mutex_lock(&vm->process_info->lock); 1248 list_add_tail(&vm->vm_list_node, 1249 &(vm->process_info->vm_list_head)); 1250 vm->process_info->n_vms++; 1251 mutex_unlock(&vm->process_info->lock); 1252 1253 return 0; 1254 1255 reserve_shared_fail: 1256 wait_pd_fail: 1257 validate_pd_fail: 1258 amdgpu_bo_unreserve(vm->root.bo); 1259 reserve_pd_fail: 1260 vm->process_info = NULL; 1261 if (info) { 1262 /* Two fence references: one in info and one in *ef */ 1263 dma_fence_put(&info->eviction_fence->base); 1264 dma_fence_put(*ef); 1265 *ef = NULL; 1266 *process_info = NULL; 1267 put_pid(info->pid); 1268 create_evict_fence_fail: 1269 mutex_destroy(&info->lock); 1270 kfree(info); 1271 } 1272 return ret; 1273 } 1274 1275 int amdgpu_amdkfd_gpuvm_acquire_process_vm(struct kgd_dev *kgd, 1276 struct file *filp, u32 pasid, 1277 void **process_info, 1278 struct dma_fence **ef) 1279 { 1280 struct amdgpu_device *adev = get_amdgpu_device(kgd); 1281 struct amdgpu_fpriv *drv_priv; 1282 struct amdgpu_vm *avm; 1283 int ret; 1284 1285 ret = amdgpu_file_to_fpriv(filp, &drv_priv); 1286 if (ret) 1287 return ret; 1288 avm = &drv_priv->vm; 1289 1290 /* Already a compute VM? */ 1291 if (avm->process_info) 1292 return -EINVAL; 1293 1294 /* Free the original amdgpu allocated pasid, 1295 * will be replaced with kfd allocated pasid. 1296 */ 1297 if (avm->pasid) { 1298 amdgpu_pasid_free(avm->pasid); 1299 amdgpu_vm_set_pasid(adev, avm, 0); 1300 } 1301 1302 /* Convert VM into a compute VM */ 1303 ret = amdgpu_vm_make_compute(adev, avm); 1304 if (ret) 1305 return ret; 1306 1307 ret = amdgpu_vm_set_pasid(adev, avm, pasid); 1308 if (ret) 1309 return ret; 1310 /* Initialize KFD part of the VM and process info */ 1311 ret = init_kfd_vm(avm, process_info, ef); 1312 if (ret) 1313 return ret; 1314 1315 amdgpu_vm_set_task_info(avm); 1316 1317 return 0; 1318 } 1319 1320 void amdgpu_amdkfd_gpuvm_destroy_cb(struct amdgpu_device *adev, 1321 struct amdgpu_vm *vm) 1322 { 1323 struct amdkfd_process_info *process_info = vm->process_info; 1324 struct amdgpu_bo *pd = vm->root.bo; 1325 1326 if (!process_info) 1327 return; 1328 1329 /* Release eviction fence from PD */ 1330 amdgpu_bo_reserve(pd, false); 1331 amdgpu_bo_fence(pd, NULL, false); 1332 amdgpu_bo_unreserve(pd); 1333 1334 /* Update process info */ 1335 mutex_lock(&process_info->lock); 1336 process_info->n_vms--; 1337 list_del(&vm->vm_list_node); 1338 mutex_unlock(&process_info->lock); 1339 1340 vm->process_info = NULL; 1341 1342 /* Release per-process resources when last compute VM is destroyed */ 1343 if (!process_info->n_vms) { 1344 WARN_ON(!list_empty(&process_info->kfd_bo_list)); 1345 WARN_ON(!list_empty(&process_info->userptr_valid_list)); 1346 WARN_ON(!list_empty(&process_info->userptr_inval_list)); 1347 1348 dma_fence_put(&process_info->eviction_fence->base); 1349 cancel_delayed_work_sync(&process_info->restore_userptr_work); 1350 put_pid(process_info->pid); 1351 mutex_destroy(&process_info->lock); 1352 kfree(process_info); 1353 } 1354 } 1355 1356 void amdgpu_amdkfd_gpuvm_release_process_vm(struct kgd_dev *kgd, void *drm_priv) 1357 { 1358 struct amdgpu_device *adev = get_amdgpu_device(kgd); 1359 struct amdgpu_vm *avm; 1360 1361 if (WARN_ON(!kgd || !drm_priv)) 1362 return; 1363 1364 avm = drm_priv_to_vm(drm_priv); 1365 1366 pr_debug("Releasing process vm %p\n", avm); 1367 1368 /* The original pasid of amdgpu vm has already been 1369 * released during making a amdgpu vm to a compute vm 1370 * The current pasid is managed by kfd and will be 1371 * released on kfd process destroy. Set amdgpu pasid 1372 * to 0 to avoid duplicate release. 1373 */ 1374 amdgpu_vm_release_compute(adev, avm); 1375 } 1376 1377 uint64_t amdgpu_amdkfd_gpuvm_get_process_page_dir(void *drm_priv) 1378 { 1379 struct amdgpu_vm *avm = drm_priv_to_vm(drm_priv); 1380 struct amdgpu_bo *pd = avm->root.bo; 1381 struct amdgpu_device *adev = amdgpu_ttm_adev(pd->tbo.bdev); 1382 1383 if (adev->asic_type < CHIP_VEGA10) 1384 return avm->pd_phys_addr >> AMDGPU_GPU_PAGE_SHIFT; 1385 return avm->pd_phys_addr; 1386 } 1387 1388 int amdgpu_amdkfd_gpuvm_alloc_memory_of_gpu( 1389 struct kgd_dev *kgd, uint64_t va, uint64_t size, 1390 void *drm_priv, struct kgd_mem **mem, 1391 uint64_t *offset, uint32_t flags) 1392 { 1393 struct amdgpu_device *adev = get_amdgpu_device(kgd); 1394 struct amdgpu_vm *avm = drm_priv_to_vm(drm_priv); 1395 enum ttm_bo_type bo_type = ttm_bo_type_device; 1396 struct sg_table *sg = NULL; 1397 uint64_t user_addr = 0; 1398 struct amdgpu_bo *bo; 1399 struct drm_gem_object *gobj; 1400 u32 domain, alloc_domain; 1401 u64 alloc_flags; 1402 int ret; 1403 1404 /* 1405 * Check on which domain to allocate BO 1406 */ 1407 if (flags & KFD_IOC_ALLOC_MEM_FLAGS_VRAM) { 1408 domain = alloc_domain = AMDGPU_GEM_DOMAIN_VRAM; 1409 alloc_flags = AMDGPU_GEM_CREATE_VRAM_WIPE_ON_RELEASE; 1410 alloc_flags |= (flags & KFD_IOC_ALLOC_MEM_FLAGS_PUBLIC) ? 1411 AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED : 0; 1412 } else if (flags & KFD_IOC_ALLOC_MEM_FLAGS_GTT) { 1413 domain = alloc_domain = AMDGPU_GEM_DOMAIN_GTT; 1414 alloc_flags = 0; 1415 } else if (flags & KFD_IOC_ALLOC_MEM_FLAGS_USERPTR) { 1416 domain = AMDGPU_GEM_DOMAIN_GTT; 1417 alloc_domain = AMDGPU_GEM_DOMAIN_CPU; 1418 alloc_flags = AMDGPU_GEM_CREATE_PREEMPTIBLE; 1419 if (!offset || !*offset) 1420 return -EINVAL; 1421 user_addr = untagged_addr(*offset); 1422 } else if (flags & (KFD_IOC_ALLOC_MEM_FLAGS_DOORBELL | 1423 KFD_IOC_ALLOC_MEM_FLAGS_MMIO_REMAP)) { 1424 domain = AMDGPU_GEM_DOMAIN_GTT; 1425 alloc_domain = AMDGPU_GEM_DOMAIN_CPU; 1426 bo_type = ttm_bo_type_sg; 1427 alloc_flags = 0; 1428 if (size > UINT_MAX) 1429 return -EINVAL; 1430 sg = create_doorbell_sg(*offset, size); 1431 if (!sg) 1432 return -ENOMEM; 1433 } else { 1434 return -EINVAL; 1435 } 1436 1437 *mem = kzalloc(sizeof(struct kgd_mem), GFP_KERNEL); 1438 if (!*mem) { 1439 ret = -ENOMEM; 1440 goto err; 1441 } 1442 INIT_LIST_HEAD(&(*mem)->attachments); 1443 mutex_init(&(*mem)->lock); 1444 (*mem)->aql_queue = !!(flags & KFD_IOC_ALLOC_MEM_FLAGS_AQL_QUEUE_MEM); 1445 1446 /* Workaround for AQL queue wraparound bug. Map the same 1447 * memory twice. That means we only actually allocate half 1448 * the memory. 1449 */ 1450 if ((*mem)->aql_queue) 1451 size = size >> 1; 1452 1453 (*mem)->alloc_flags = flags; 1454 1455 amdgpu_sync_create(&(*mem)->sync); 1456 1457 ret = amdgpu_amdkfd_reserve_mem_limit(adev, size, alloc_domain, !!sg); 1458 if (ret) { 1459 pr_debug("Insufficient memory\n"); 1460 goto err_reserve_limit; 1461 } 1462 1463 pr_debug("\tcreate BO VA 0x%llx size 0x%llx domain %s\n", 1464 va, size, domain_string(alloc_domain)); 1465 1466 ret = amdgpu_gem_object_create(adev, size, 1, alloc_domain, alloc_flags, 1467 bo_type, NULL, &gobj); 1468 if (ret) { 1469 pr_debug("Failed to create BO on domain %s. ret %d\n", 1470 domain_string(alloc_domain), ret); 1471 goto err_bo_create; 1472 } 1473 ret = drm_vma_node_allow(&gobj->vma_node, drm_priv); 1474 if (ret) { 1475 pr_debug("Failed to allow vma node access. ret %d\n", ret); 1476 goto err_node_allow; 1477 } 1478 bo = gem_to_amdgpu_bo(gobj); 1479 if (bo_type == ttm_bo_type_sg) { 1480 bo->tbo.sg = sg; 1481 bo->tbo.ttm->sg = sg; 1482 } 1483 bo->kfd_bo = *mem; 1484 (*mem)->bo = bo; 1485 if (user_addr) 1486 bo->flags |= AMDGPU_AMDKFD_CREATE_USERPTR_BO; 1487 1488 (*mem)->va = va; 1489 (*mem)->domain = domain; 1490 (*mem)->mapped_to_gpu_memory = 0; 1491 (*mem)->process_info = avm->process_info; 1492 add_kgd_mem_to_kfd_bo_list(*mem, avm->process_info, user_addr); 1493 1494 if (user_addr) { 1495 ret = init_user_pages(*mem, user_addr); 1496 if (ret) 1497 goto allocate_init_user_pages_failed; 1498 } 1499 1500 if (offset) 1501 *offset = amdgpu_bo_mmap_offset(bo); 1502 1503 return 0; 1504 1505 allocate_init_user_pages_failed: 1506 remove_kgd_mem_from_kfd_bo_list(*mem, avm->process_info); 1507 drm_vma_node_revoke(&gobj->vma_node, drm_priv); 1508 err_node_allow: 1509 drm_gem_object_put(gobj); 1510 /* Don't unreserve system mem limit twice */ 1511 goto err_reserve_limit; 1512 err_bo_create: 1513 unreserve_mem_limit(adev, size, alloc_domain, !!sg); 1514 err_reserve_limit: 1515 mutex_destroy(&(*mem)->lock); 1516 kfree(*mem); 1517 err: 1518 if (sg) { 1519 sg_free_table(sg); 1520 kfree(sg); 1521 } 1522 return ret; 1523 } 1524 1525 int amdgpu_amdkfd_gpuvm_free_memory_of_gpu( 1526 struct kgd_dev *kgd, struct kgd_mem *mem, void *drm_priv, 1527 uint64_t *size) 1528 { 1529 struct amdkfd_process_info *process_info = mem->process_info; 1530 unsigned long bo_size = mem->bo->tbo.base.size; 1531 struct kfd_mem_attachment *entry, *tmp; 1532 struct bo_vm_reservation_context ctx; 1533 struct ttm_validate_buffer *bo_list_entry; 1534 unsigned int mapped_to_gpu_memory; 1535 int ret; 1536 bool is_imported = false; 1537 1538 mutex_lock(&mem->lock); 1539 mapped_to_gpu_memory = mem->mapped_to_gpu_memory; 1540 is_imported = mem->is_imported; 1541 mutex_unlock(&mem->lock); 1542 /* lock is not needed after this, since mem is unused and will 1543 * be freed anyway 1544 */ 1545 1546 if (mapped_to_gpu_memory > 0) { 1547 pr_debug("BO VA 0x%llx size 0x%lx is still mapped.\n", 1548 mem->va, bo_size); 1549 return -EBUSY; 1550 } 1551 1552 /* Make sure restore workers don't access the BO any more */ 1553 bo_list_entry = &mem->validate_list; 1554 mutex_lock(&process_info->lock); 1555 list_del(&bo_list_entry->head); 1556 mutex_unlock(&process_info->lock); 1557 1558 /* No more MMU notifiers */ 1559 amdgpu_mn_unregister(mem->bo); 1560 1561 ret = reserve_bo_and_cond_vms(mem, NULL, BO_VM_ALL, &ctx); 1562 if (unlikely(ret)) 1563 return ret; 1564 1565 /* The eviction fence should be removed by the last unmap. 1566 * TODO: Log an error condition if the bo still has the eviction fence 1567 * attached 1568 */ 1569 amdgpu_amdkfd_remove_eviction_fence(mem->bo, 1570 process_info->eviction_fence); 1571 pr_debug("Release VA 0x%llx - 0x%llx\n", mem->va, 1572 mem->va + bo_size * (1 + mem->aql_queue)); 1573 1574 /* Remove from VM internal data structures */ 1575 list_for_each_entry_safe(entry, tmp, &mem->attachments, list) 1576 kfd_mem_detach(entry); 1577 1578 ret = unreserve_bo_and_vms(&ctx, false, false); 1579 1580 /* Free the sync object */ 1581 amdgpu_sync_free(&mem->sync); 1582 1583 /* If the SG is not NULL, it's one we created for a doorbell or mmio 1584 * remap BO. We need to free it. 1585 */ 1586 if (mem->bo->tbo.sg) { 1587 sg_free_table(mem->bo->tbo.sg); 1588 kfree(mem->bo->tbo.sg); 1589 } 1590 1591 /* Update the size of the BO being freed if it was allocated from 1592 * VRAM and is not imported. 1593 */ 1594 if (size) { 1595 if ((mem->bo->preferred_domains == AMDGPU_GEM_DOMAIN_VRAM) && 1596 (!is_imported)) 1597 *size = bo_size; 1598 else 1599 *size = 0; 1600 } 1601 1602 /* Free the BO*/ 1603 drm_vma_node_revoke(&mem->bo->tbo.base.vma_node, drm_priv); 1604 if (mem->dmabuf) 1605 dma_buf_put(mem->dmabuf); 1606 mutex_destroy(&mem->lock); 1607 1608 /* If this releases the last reference, it will end up calling 1609 * amdgpu_amdkfd_release_notify and kfree the mem struct. That's why 1610 * this needs to be the last call here. 1611 */ 1612 drm_gem_object_put(&mem->bo->tbo.base); 1613 1614 return ret; 1615 } 1616 1617 int amdgpu_amdkfd_gpuvm_map_memory_to_gpu( 1618 struct kgd_dev *kgd, struct kgd_mem *mem, 1619 void *drm_priv, bool *table_freed) 1620 { 1621 struct amdgpu_device *adev = get_amdgpu_device(kgd); 1622 struct amdgpu_vm *avm = drm_priv_to_vm(drm_priv); 1623 int ret; 1624 struct amdgpu_bo *bo; 1625 uint32_t domain; 1626 struct kfd_mem_attachment *entry; 1627 struct bo_vm_reservation_context ctx; 1628 unsigned long bo_size; 1629 bool is_invalid_userptr = false; 1630 1631 bo = mem->bo; 1632 if (!bo) { 1633 pr_err("Invalid BO when mapping memory to GPU\n"); 1634 return -EINVAL; 1635 } 1636 1637 /* Make sure restore is not running concurrently. Since we 1638 * don't map invalid userptr BOs, we rely on the next restore 1639 * worker to do the mapping 1640 */ 1641 mutex_lock(&mem->process_info->lock); 1642 1643 /* Lock mmap-sem. If we find an invalid userptr BO, we can be 1644 * sure that the MMU notifier is no longer running 1645 * concurrently and the queues are actually stopped 1646 */ 1647 if (amdgpu_ttm_tt_get_usermm(bo->tbo.ttm)) { 1648 mmap_write_lock(current->mm); 1649 is_invalid_userptr = atomic_read(&mem->invalid); 1650 mmap_write_unlock(current->mm); 1651 } 1652 1653 mutex_lock(&mem->lock); 1654 1655 domain = mem->domain; 1656 bo_size = bo->tbo.base.size; 1657 1658 pr_debug("Map VA 0x%llx - 0x%llx to vm %p domain %s\n", 1659 mem->va, 1660 mem->va + bo_size * (1 + mem->aql_queue), 1661 avm, domain_string(domain)); 1662 1663 if (!kfd_mem_is_attached(avm, mem)) { 1664 ret = kfd_mem_attach(adev, mem, avm, mem->aql_queue); 1665 if (ret) 1666 goto out; 1667 } 1668 1669 ret = reserve_bo_and_vm(mem, avm, &ctx); 1670 if (unlikely(ret)) 1671 goto out; 1672 1673 /* Userptr can be marked as "not invalid", but not actually be 1674 * validated yet (still in the system domain). In that case 1675 * the queues are still stopped and we can leave mapping for 1676 * the next restore worker 1677 */ 1678 if (amdgpu_ttm_tt_get_usermm(bo->tbo.ttm) && 1679 bo->tbo.resource->mem_type == TTM_PL_SYSTEM) 1680 is_invalid_userptr = true; 1681 1682 ret = vm_validate_pt_pd_bos(avm); 1683 if (unlikely(ret)) 1684 goto out_unreserve; 1685 1686 if (mem->mapped_to_gpu_memory == 0 && 1687 !amdgpu_ttm_tt_get_usermm(bo->tbo.ttm)) { 1688 /* Validate BO only once. The eviction fence gets added to BO 1689 * the first time it is mapped. Validate will wait for all 1690 * background evictions to complete. 1691 */ 1692 ret = amdgpu_amdkfd_bo_validate(bo, domain, true); 1693 if (ret) { 1694 pr_debug("Validate failed\n"); 1695 goto out_unreserve; 1696 } 1697 } 1698 1699 list_for_each_entry(entry, &mem->attachments, list) { 1700 if (entry->bo_va->base.vm != avm || entry->is_mapped) 1701 continue; 1702 1703 pr_debug("\t map VA 0x%llx - 0x%llx in entry %p\n", 1704 entry->va, entry->va + bo_size, entry); 1705 1706 ret = map_bo_to_gpuvm(mem, entry, ctx.sync, 1707 is_invalid_userptr, table_freed); 1708 if (ret) { 1709 pr_err("Failed to map bo to gpuvm\n"); 1710 goto out_unreserve; 1711 } 1712 1713 ret = vm_update_pds(avm, ctx.sync); 1714 if (ret) { 1715 pr_err("Failed to update page directories\n"); 1716 goto out_unreserve; 1717 } 1718 1719 entry->is_mapped = true; 1720 mem->mapped_to_gpu_memory++; 1721 pr_debug("\t INC mapping count %d\n", 1722 mem->mapped_to_gpu_memory); 1723 } 1724 1725 if (!amdgpu_ttm_tt_get_usermm(bo->tbo.ttm) && !bo->tbo.pin_count) 1726 amdgpu_bo_fence(bo, 1727 &avm->process_info->eviction_fence->base, 1728 true); 1729 ret = unreserve_bo_and_vms(&ctx, false, false); 1730 1731 /* Only apply no TLB flush on Aldebaran to 1732 * workaround regressions on other Asics. 1733 */ 1734 if (table_freed && (adev->asic_type != CHIP_ALDEBARAN)) 1735 *table_freed = true; 1736 1737 goto out; 1738 1739 out_unreserve: 1740 unreserve_bo_and_vms(&ctx, false, false); 1741 out: 1742 mutex_unlock(&mem->process_info->lock); 1743 mutex_unlock(&mem->lock); 1744 return ret; 1745 } 1746 1747 int amdgpu_amdkfd_gpuvm_unmap_memory_from_gpu( 1748 struct kgd_dev *kgd, struct kgd_mem *mem, void *drm_priv) 1749 { 1750 struct amdgpu_vm *avm = drm_priv_to_vm(drm_priv); 1751 struct amdkfd_process_info *process_info = avm->process_info; 1752 unsigned long bo_size = mem->bo->tbo.base.size; 1753 struct kfd_mem_attachment *entry; 1754 struct bo_vm_reservation_context ctx; 1755 int ret; 1756 1757 mutex_lock(&mem->lock); 1758 1759 ret = reserve_bo_and_cond_vms(mem, avm, BO_VM_MAPPED, &ctx); 1760 if (unlikely(ret)) 1761 goto out; 1762 /* If no VMs were reserved, it means the BO wasn't actually mapped */ 1763 if (ctx.n_vms == 0) { 1764 ret = -EINVAL; 1765 goto unreserve_out; 1766 } 1767 1768 ret = vm_validate_pt_pd_bos(avm); 1769 if (unlikely(ret)) 1770 goto unreserve_out; 1771 1772 pr_debug("Unmap VA 0x%llx - 0x%llx from vm %p\n", 1773 mem->va, 1774 mem->va + bo_size * (1 + mem->aql_queue), 1775 avm); 1776 1777 list_for_each_entry(entry, &mem->attachments, list) { 1778 if (entry->bo_va->base.vm != avm || !entry->is_mapped) 1779 continue; 1780 1781 pr_debug("\t unmap VA 0x%llx - 0x%llx from entry %p\n", 1782 entry->va, entry->va + bo_size, entry); 1783 1784 unmap_bo_from_gpuvm(mem, entry, ctx.sync); 1785 entry->is_mapped = false; 1786 1787 mem->mapped_to_gpu_memory--; 1788 pr_debug("\t DEC mapping count %d\n", 1789 mem->mapped_to_gpu_memory); 1790 } 1791 1792 /* If BO is unmapped from all VMs, unfence it. It can be evicted if 1793 * required. 1794 */ 1795 if (mem->mapped_to_gpu_memory == 0 && 1796 !amdgpu_ttm_tt_get_usermm(mem->bo->tbo.ttm) && 1797 !mem->bo->tbo.pin_count) 1798 amdgpu_amdkfd_remove_eviction_fence(mem->bo, 1799 process_info->eviction_fence); 1800 1801 unreserve_out: 1802 unreserve_bo_and_vms(&ctx, false, false); 1803 out: 1804 mutex_unlock(&mem->lock); 1805 return ret; 1806 } 1807 1808 int amdgpu_amdkfd_gpuvm_sync_memory( 1809 struct kgd_dev *kgd, struct kgd_mem *mem, bool intr) 1810 { 1811 struct amdgpu_sync sync; 1812 int ret; 1813 1814 amdgpu_sync_create(&sync); 1815 1816 mutex_lock(&mem->lock); 1817 amdgpu_sync_clone(&mem->sync, &sync); 1818 mutex_unlock(&mem->lock); 1819 1820 ret = amdgpu_sync_wait(&sync, intr); 1821 amdgpu_sync_free(&sync); 1822 return ret; 1823 } 1824 1825 int amdgpu_amdkfd_gpuvm_map_gtt_bo_to_kernel(struct kgd_dev *kgd, 1826 struct kgd_mem *mem, void **kptr, uint64_t *size) 1827 { 1828 int ret; 1829 struct amdgpu_bo *bo = mem->bo; 1830 1831 if (amdgpu_ttm_tt_get_usermm(bo->tbo.ttm)) { 1832 pr_err("userptr can't be mapped to kernel\n"); 1833 return -EINVAL; 1834 } 1835 1836 /* delete kgd_mem from kfd_bo_list to avoid re-validating 1837 * this BO in BO's restoring after eviction. 1838 */ 1839 mutex_lock(&mem->process_info->lock); 1840 1841 ret = amdgpu_bo_reserve(bo, true); 1842 if (ret) { 1843 pr_err("Failed to reserve bo. ret %d\n", ret); 1844 goto bo_reserve_failed; 1845 } 1846 1847 ret = amdgpu_bo_pin(bo, AMDGPU_GEM_DOMAIN_GTT); 1848 if (ret) { 1849 pr_err("Failed to pin bo. ret %d\n", ret); 1850 goto pin_failed; 1851 } 1852 1853 ret = amdgpu_bo_kmap(bo, kptr); 1854 if (ret) { 1855 pr_err("Failed to map bo to kernel. ret %d\n", ret); 1856 goto kmap_failed; 1857 } 1858 1859 amdgpu_amdkfd_remove_eviction_fence( 1860 bo, mem->process_info->eviction_fence); 1861 list_del_init(&mem->validate_list.head); 1862 1863 if (size) 1864 *size = amdgpu_bo_size(bo); 1865 1866 amdgpu_bo_unreserve(bo); 1867 1868 mutex_unlock(&mem->process_info->lock); 1869 return 0; 1870 1871 kmap_failed: 1872 amdgpu_bo_unpin(bo); 1873 pin_failed: 1874 amdgpu_bo_unreserve(bo); 1875 bo_reserve_failed: 1876 mutex_unlock(&mem->process_info->lock); 1877 1878 return ret; 1879 } 1880 1881 void amdgpu_amdkfd_gpuvm_unmap_gtt_bo_from_kernel(struct kgd_dev *kgd, struct kgd_mem *mem) 1882 { 1883 struct amdgpu_bo *bo = mem->bo; 1884 1885 amdgpu_bo_reserve(bo, true); 1886 amdgpu_bo_kunmap(bo); 1887 amdgpu_bo_unpin(bo); 1888 amdgpu_bo_unreserve(bo); 1889 } 1890 1891 int amdgpu_amdkfd_gpuvm_get_vm_fault_info(struct kgd_dev *kgd, 1892 struct kfd_vm_fault_info *mem) 1893 { 1894 struct amdgpu_device *adev; 1895 1896 adev = (struct amdgpu_device *)kgd; 1897 if (atomic_read(&adev->gmc.vm_fault_info_updated) == 1) { 1898 *mem = *adev->gmc.vm_fault_info; 1899 mb(); 1900 atomic_set(&adev->gmc.vm_fault_info_updated, 0); 1901 } 1902 return 0; 1903 } 1904 1905 int amdgpu_amdkfd_gpuvm_import_dmabuf(struct kgd_dev *kgd, 1906 struct dma_buf *dma_buf, 1907 uint64_t va, void *drm_priv, 1908 struct kgd_mem **mem, uint64_t *size, 1909 uint64_t *mmap_offset) 1910 { 1911 struct amdgpu_device *adev = (struct amdgpu_device *)kgd; 1912 struct amdgpu_vm *avm = drm_priv_to_vm(drm_priv); 1913 struct drm_gem_object *obj; 1914 struct amdgpu_bo *bo; 1915 int ret; 1916 1917 if (dma_buf->ops != &amdgpu_dmabuf_ops) 1918 /* Can't handle non-graphics buffers */ 1919 return -EINVAL; 1920 1921 obj = dma_buf->priv; 1922 if (drm_to_adev(obj->dev) != adev) 1923 /* Can't handle buffers from other devices */ 1924 return -EINVAL; 1925 1926 bo = gem_to_amdgpu_bo(obj); 1927 if (!(bo->preferred_domains & (AMDGPU_GEM_DOMAIN_VRAM | 1928 AMDGPU_GEM_DOMAIN_GTT))) 1929 /* Only VRAM and GTT BOs are supported */ 1930 return -EINVAL; 1931 1932 *mem = kzalloc(sizeof(struct kgd_mem), GFP_KERNEL); 1933 if (!*mem) 1934 return -ENOMEM; 1935 1936 ret = drm_vma_node_allow(&obj->vma_node, drm_priv); 1937 if (ret) { 1938 kfree(mem); 1939 return ret; 1940 } 1941 1942 if (size) 1943 *size = amdgpu_bo_size(bo); 1944 1945 if (mmap_offset) 1946 *mmap_offset = amdgpu_bo_mmap_offset(bo); 1947 1948 INIT_LIST_HEAD(&(*mem)->attachments); 1949 mutex_init(&(*mem)->lock); 1950 1951 (*mem)->alloc_flags = 1952 ((bo->preferred_domains & AMDGPU_GEM_DOMAIN_VRAM) ? 1953 KFD_IOC_ALLOC_MEM_FLAGS_VRAM : KFD_IOC_ALLOC_MEM_FLAGS_GTT) 1954 | KFD_IOC_ALLOC_MEM_FLAGS_WRITABLE 1955 | KFD_IOC_ALLOC_MEM_FLAGS_EXECUTABLE; 1956 1957 drm_gem_object_get(&bo->tbo.base); 1958 (*mem)->bo = bo; 1959 (*mem)->va = va; 1960 (*mem)->domain = (bo->preferred_domains & AMDGPU_GEM_DOMAIN_VRAM) ? 1961 AMDGPU_GEM_DOMAIN_VRAM : AMDGPU_GEM_DOMAIN_GTT; 1962 (*mem)->mapped_to_gpu_memory = 0; 1963 (*mem)->process_info = avm->process_info; 1964 add_kgd_mem_to_kfd_bo_list(*mem, avm->process_info, false); 1965 amdgpu_sync_create(&(*mem)->sync); 1966 (*mem)->is_imported = true; 1967 1968 return 0; 1969 } 1970 1971 /* Evict a userptr BO by stopping the queues if necessary 1972 * 1973 * Runs in MMU notifier, may be in RECLAIM_FS context. This means it 1974 * cannot do any memory allocations, and cannot take any locks that 1975 * are held elsewhere while allocating memory. Therefore this is as 1976 * simple as possible, using atomic counters. 1977 * 1978 * It doesn't do anything to the BO itself. The real work happens in 1979 * restore, where we get updated page addresses. This function only 1980 * ensures that GPU access to the BO is stopped. 1981 */ 1982 int amdgpu_amdkfd_evict_userptr(struct kgd_mem *mem, 1983 struct mm_struct *mm) 1984 { 1985 struct amdkfd_process_info *process_info = mem->process_info; 1986 int evicted_bos; 1987 int r = 0; 1988 1989 atomic_inc(&mem->invalid); 1990 evicted_bos = atomic_inc_return(&process_info->evicted_bos); 1991 if (evicted_bos == 1) { 1992 /* First eviction, stop the queues */ 1993 r = kgd2kfd_quiesce_mm(mm); 1994 if (r) 1995 pr_err("Failed to quiesce KFD\n"); 1996 schedule_delayed_work(&process_info->restore_userptr_work, 1997 msecs_to_jiffies(AMDGPU_USERPTR_RESTORE_DELAY_MS)); 1998 } 1999 2000 return r; 2001 } 2002 2003 /* Update invalid userptr BOs 2004 * 2005 * Moves invalidated (evicted) userptr BOs from userptr_valid_list to 2006 * userptr_inval_list and updates user pages for all BOs that have 2007 * been invalidated since their last update. 2008 */ 2009 static int update_invalid_user_pages(struct amdkfd_process_info *process_info, 2010 struct mm_struct *mm) 2011 { 2012 struct kgd_mem *mem, *tmp_mem; 2013 struct amdgpu_bo *bo; 2014 struct ttm_operation_ctx ctx = { false, false }; 2015 int invalid, ret; 2016 2017 /* Move all invalidated BOs to the userptr_inval_list and 2018 * release their user pages by migration to the CPU domain 2019 */ 2020 list_for_each_entry_safe(mem, tmp_mem, 2021 &process_info->userptr_valid_list, 2022 validate_list.head) { 2023 if (!atomic_read(&mem->invalid)) 2024 continue; /* BO is still valid */ 2025 2026 bo = mem->bo; 2027 2028 if (amdgpu_bo_reserve(bo, true)) 2029 return -EAGAIN; 2030 amdgpu_bo_placement_from_domain(bo, AMDGPU_GEM_DOMAIN_CPU); 2031 ret = ttm_bo_validate(&bo->tbo, &bo->placement, &ctx); 2032 amdgpu_bo_unreserve(bo); 2033 if (ret) { 2034 pr_err("%s: Failed to invalidate userptr BO\n", 2035 __func__); 2036 return -EAGAIN; 2037 } 2038 2039 list_move_tail(&mem->validate_list.head, 2040 &process_info->userptr_inval_list); 2041 } 2042 2043 if (list_empty(&process_info->userptr_inval_list)) 2044 return 0; /* All evicted userptr BOs were freed */ 2045 2046 /* Go through userptr_inval_list and update any invalid user_pages */ 2047 list_for_each_entry(mem, &process_info->userptr_inval_list, 2048 validate_list.head) { 2049 invalid = atomic_read(&mem->invalid); 2050 if (!invalid) 2051 /* BO hasn't been invalidated since the last 2052 * revalidation attempt. Keep its BO list. 2053 */ 2054 continue; 2055 2056 bo = mem->bo; 2057 2058 /* Get updated user pages */ 2059 ret = amdgpu_ttm_tt_get_user_pages(bo, bo->tbo.ttm->pages); 2060 if (ret) { 2061 pr_debug("Failed %d to get user pages\n", ret); 2062 2063 /* Return -EFAULT bad address error as success. It will 2064 * fail later with a VM fault if the GPU tries to access 2065 * it. Better than hanging indefinitely with stalled 2066 * user mode queues. 2067 * 2068 * Return other error -EBUSY or -ENOMEM to retry restore 2069 */ 2070 if (ret != -EFAULT) 2071 return ret; 2072 } else { 2073 2074 /* 2075 * FIXME: Cannot ignore the return code, must hold 2076 * notifier_lock 2077 */ 2078 amdgpu_ttm_tt_get_user_pages_done(bo->tbo.ttm); 2079 } 2080 2081 /* Mark the BO as valid unless it was invalidated 2082 * again concurrently. 2083 */ 2084 if (atomic_cmpxchg(&mem->invalid, invalid, 0) != invalid) 2085 return -EAGAIN; 2086 } 2087 2088 return 0; 2089 } 2090 2091 /* Validate invalid userptr BOs 2092 * 2093 * Validates BOs on the userptr_inval_list, and moves them back to the 2094 * userptr_valid_list. Also updates GPUVM page tables with new page 2095 * addresses and waits for the page table updates to complete. 2096 */ 2097 static int validate_invalid_user_pages(struct amdkfd_process_info *process_info) 2098 { 2099 struct amdgpu_bo_list_entry *pd_bo_list_entries; 2100 struct list_head resv_list, duplicates; 2101 struct ww_acquire_ctx ticket; 2102 struct amdgpu_sync sync; 2103 2104 struct amdgpu_vm *peer_vm; 2105 struct kgd_mem *mem, *tmp_mem; 2106 struct amdgpu_bo *bo; 2107 struct ttm_operation_ctx ctx = { false, false }; 2108 int i, ret; 2109 2110 pd_bo_list_entries = kcalloc(process_info->n_vms, 2111 sizeof(struct amdgpu_bo_list_entry), 2112 GFP_KERNEL); 2113 if (!pd_bo_list_entries) { 2114 pr_err("%s: Failed to allocate PD BO list entries\n", __func__); 2115 ret = -ENOMEM; 2116 goto out_no_mem; 2117 } 2118 2119 INIT_LIST_HEAD(&resv_list); 2120 INIT_LIST_HEAD(&duplicates); 2121 2122 /* Get all the page directory BOs that need to be reserved */ 2123 i = 0; 2124 list_for_each_entry(peer_vm, &process_info->vm_list_head, 2125 vm_list_node) 2126 amdgpu_vm_get_pd_bo(peer_vm, &resv_list, 2127 &pd_bo_list_entries[i++]); 2128 /* Add the userptr_inval_list entries to resv_list */ 2129 list_for_each_entry(mem, &process_info->userptr_inval_list, 2130 validate_list.head) { 2131 list_add_tail(&mem->resv_list.head, &resv_list); 2132 mem->resv_list.bo = mem->validate_list.bo; 2133 mem->resv_list.num_shared = mem->validate_list.num_shared; 2134 } 2135 2136 /* Reserve all BOs and page tables for validation */ 2137 ret = ttm_eu_reserve_buffers(&ticket, &resv_list, false, &duplicates); 2138 WARN(!list_empty(&duplicates), "Duplicates should be empty"); 2139 if (ret) 2140 goto out_free; 2141 2142 amdgpu_sync_create(&sync); 2143 2144 ret = process_validate_vms(process_info); 2145 if (ret) 2146 goto unreserve_out; 2147 2148 /* Validate BOs and update GPUVM page tables */ 2149 list_for_each_entry_safe(mem, tmp_mem, 2150 &process_info->userptr_inval_list, 2151 validate_list.head) { 2152 struct kfd_mem_attachment *attachment; 2153 2154 bo = mem->bo; 2155 2156 /* Validate the BO if we got user pages */ 2157 if (bo->tbo.ttm->pages[0]) { 2158 amdgpu_bo_placement_from_domain(bo, mem->domain); 2159 ret = ttm_bo_validate(&bo->tbo, &bo->placement, &ctx); 2160 if (ret) { 2161 pr_err("%s: failed to validate BO\n", __func__); 2162 goto unreserve_out; 2163 } 2164 } 2165 2166 list_move_tail(&mem->validate_list.head, 2167 &process_info->userptr_valid_list); 2168 2169 /* Update mapping. If the BO was not validated 2170 * (because we couldn't get user pages), this will 2171 * clear the page table entries, which will result in 2172 * VM faults if the GPU tries to access the invalid 2173 * memory. 2174 */ 2175 list_for_each_entry(attachment, &mem->attachments, list) { 2176 if (!attachment->is_mapped) 2177 continue; 2178 2179 kfd_mem_dmaunmap_attachment(mem, attachment); 2180 ret = update_gpuvm_pte(mem, attachment, &sync, NULL); 2181 if (ret) { 2182 pr_err("%s: update PTE failed\n", __func__); 2183 /* make sure this gets validated again */ 2184 atomic_inc(&mem->invalid); 2185 goto unreserve_out; 2186 } 2187 } 2188 } 2189 2190 /* Update page directories */ 2191 ret = process_update_pds(process_info, &sync); 2192 2193 unreserve_out: 2194 ttm_eu_backoff_reservation(&ticket, &resv_list); 2195 amdgpu_sync_wait(&sync, false); 2196 amdgpu_sync_free(&sync); 2197 out_free: 2198 kfree(pd_bo_list_entries); 2199 out_no_mem: 2200 2201 return ret; 2202 } 2203 2204 /* Worker callback to restore evicted userptr BOs 2205 * 2206 * Tries to update and validate all userptr BOs. If successful and no 2207 * concurrent evictions happened, the queues are restarted. Otherwise, 2208 * reschedule for another attempt later. 2209 */ 2210 static void amdgpu_amdkfd_restore_userptr_worker(struct work_struct *work) 2211 { 2212 struct delayed_work *dwork = to_delayed_work(work); 2213 struct amdkfd_process_info *process_info = 2214 container_of(dwork, struct amdkfd_process_info, 2215 restore_userptr_work); 2216 struct task_struct *usertask; 2217 struct mm_struct *mm; 2218 int evicted_bos; 2219 2220 evicted_bos = atomic_read(&process_info->evicted_bos); 2221 if (!evicted_bos) 2222 return; 2223 2224 /* Reference task and mm in case of concurrent process termination */ 2225 usertask = get_pid_task(process_info->pid, PIDTYPE_PID); 2226 if (!usertask) 2227 return; 2228 mm = get_task_mm(usertask); 2229 if (!mm) { 2230 put_task_struct(usertask); 2231 return; 2232 } 2233 2234 mutex_lock(&process_info->lock); 2235 2236 if (update_invalid_user_pages(process_info, mm)) 2237 goto unlock_out; 2238 /* userptr_inval_list can be empty if all evicted userptr BOs 2239 * have been freed. In that case there is nothing to validate 2240 * and we can just restart the queues. 2241 */ 2242 if (!list_empty(&process_info->userptr_inval_list)) { 2243 if (atomic_read(&process_info->evicted_bos) != evicted_bos) 2244 goto unlock_out; /* Concurrent eviction, try again */ 2245 2246 if (validate_invalid_user_pages(process_info)) 2247 goto unlock_out; 2248 } 2249 /* Final check for concurrent evicton and atomic update. If 2250 * another eviction happens after successful update, it will 2251 * be a first eviction that calls quiesce_mm. The eviction 2252 * reference counting inside KFD will handle this case. 2253 */ 2254 if (atomic_cmpxchg(&process_info->evicted_bos, evicted_bos, 0) != 2255 evicted_bos) 2256 goto unlock_out; 2257 evicted_bos = 0; 2258 if (kgd2kfd_resume_mm(mm)) { 2259 pr_err("%s: Failed to resume KFD\n", __func__); 2260 /* No recovery from this failure. Probably the CP is 2261 * hanging. No point trying again. 2262 */ 2263 } 2264 2265 unlock_out: 2266 mutex_unlock(&process_info->lock); 2267 mmput(mm); 2268 put_task_struct(usertask); 2269 2270 /* If validation failed, reschedule another attempt */ 2271 if (evicted_bos) 2272 schedule_delayed_work(&process_info->restore_userptr_work, 2273 msecs_to_jiffies(AMDGPU_USERPTR_RESTORE_DELAY_MS)); 2274 } 2275 2276 /** amdgpu_amdkfd_gpuvm_restore_process_bos - Restore all BOs for the given 2277 * KFD process identified by process_info 2278 * 2279 * @process_info: amdkfd_process_info of the KFD process 2280 * 2281 * After memory eviction, restore thread calls this function. The function 2282 * should be called when the Process is still valid. BO restore involves - 2283 * 2284 * 1. Release old eviction fence and create new one 2285 * 2. Get two copies of PD BO list from all the VMs. Keep one copy as pd_list. 2286 * 3 Use the second PD list and kfd_bo_list to create a list (ctx.list) of 2287 * BOs that need to be reserved. 2288 * 4. Reserve all the BOs 2289 * 5. Validate of PD and PT BOs. 2290 * 6. Validate all KFD BOs using kfd_bo_list and Map them and add new fence 2291 * 7. Add fence to all PD and PT BOs. 2292 * 8. Unreserve all BOs 2293 */ 2294 int amdgpu_amdkfd_gpuvm_restore_process_bos(void *info, struct dma_fence **ef) 2295 { 2296 struct amdgpu_bo_list_entry *pd_bo_list; 2297 struct amdkfd_process_info *process_info = info; 2298 struct amdgpu_vm *peer_vm; 2299 struct kgd_mem *mem; 2300 struct bo_vm_reservation_context ctx; 2301 struct amdgpu_amdkfd_fence *new_fence; 2302 int ret = 0, i; 2303 struct list_head duplicate_save; 2304 struct amdgpu_sync sync_obj; 2305 unsigned long failed_size = 0; 2306 unsigned long total_size = 0; 2307 2308 INIT_LIST_HEAD(&duplicate_save); 2309 INIT_LIST_HEAD(&ctx.list); 2310 INIT_LIST_HEAD(&ctx.duplicates); 2311 2312 pd_bo_list = kcalloc(process_info->n_vms, 2313 sizeof(struct amdgpu_bo_list_entry), 2314 GFP_KERNEL); 2315 if (!pd_bo_list) 2316 return -ENOMEM; 2317 2318 i = 0; 2319 mutex_lock(&process_info->lock); 2320 list_for_each_entry(peer_vm, &process_info->vm_list_head, 2321 vm_list_node) 2322 amdgpu_vm_get_pd_bo(peer_vm, &ctx.list, &pd_bo_list[i++]); 2323 2324 /* Reserve all BOs and page tables/directory. Add all BOs from 2325 * kfd_bo_list to ctx.list 2326 */ 2327 list_for_each_entry(mem, &process_info->kfd_bo_list, 2328 validate_list.head) { 2329 2330 list_add_tail(&mem->resv_list.head, &ctx.list); 2331 mem->resv_list.bo = mem->validate_list.bo; 2332 mem->resv_list.num_shared = mem->validate_list.num_shared; 2333 } 2334 2335 ret = ttm_eu_reserve_buffers(&ctx.ticket, &ctx.list, 2336 false, &duplicate_save); 2337 if (ret) { 2338 pr_debug("Memory eviction: TTM Reserve Failed. Try again\n"); 2339 goto ttm_reserve_fail; 2340 } 2341 2342 amdgpu_sync_create(&sync_obj); 2343 2344 /* Validate PDs and PTs */ 2345 ret = process_validate_vms(process_info); 2346 if (ret) 2347 goto validate_map_fail; 2348 2349 ret = process_sync_pds_resv(process_info, &sync_obj); 2350 if (ret) { 2351 pr_debug("Memory eviction: Failed to sync to PD BO moving fence. Try again\n"); 2352 goto validate_map_fail; 2353 } 2354 2355 /* Validate BOs and map them to GPUVM (update VM page tables). */ 2356 list_for_each_entry(mem, &process_info->kfd_bo_list, 2357 validate_list.head) { 2358 2359 struct amdgpu_bo *bo = mem->bo; 2360 uint32_t domain = mem->domain; 2361 struct kfd_mem_attachment *attachment; 2362 2363 total_size += amdgpu_bo_size(bo); 2364 2365 ret = amdgpu_amdkfd_bo_validate(bo, domain, false); 2366 if (ret) { 2367 pr_debug("Memory eviction: Validate BOs failed\n"); 2368 failed_size += amdgpu_bo_size(bo); 2369 ret = amdgpu_amdkfd_bo_validate(bo, 2370 AMDGPU_GEM_DOMAIN_GTT, false); 2371 if (ret) { 2372 pr_debug("Memory eviction: Try again\n"); 2373 goto validate_map_fail; 2374 } 2375 } 2376 ret = amdgpu_sync_fence(&sync_obj, bo->tbo.moving); 2377 if (ret) { 2378 pr_debug("Memory eviction: Sync BO fence failed. Try again\n"); 2379 goto validate_map_fail; 2380 } 2381 list_for_each_entry(attachment, &mem->attachments, list) { 2382 if (!attachment->is_mapped) 2383 continue; 2384 2385 kfd_mem_dmaunmap_attachment(mem, attachment); 2386 ret = update_gpuvm_pte(mem, attachment, &sync_obj, NULL); 2387 if (ret) { 2388 pr_debug("Memory eviction: update PTE failed. Try again\n"); 2389 goto validate_map_fail; 2390 } 2391 } 2392 } 2393 2394 if (failed_size) 2395 pr_debug("0x%lx/0x%lx in system\n", failed_size, total_size); 2396 2397 /* Update page directories */ 2398 ret = process_update_pds(process_info, &sync_obj); 2399 if (ret) { 2400 pr_debug("Memory eviction: update PDs failed. Try again\n"); 2401 goto validate_map_fail; 2402 } 2403 2404 /* Wait for validate and PT updates to finish */ 2405 amdgpu_sync_wait(&sync_obj, false); 2406 2407 /* Release old eviction fence and create new one, because fence only 2408 * goes from unsignaled to signaled, fence cannot be reused. 2409 * Use context and mm from the old fence. 2410 */ 2411 new_fence = amdgpu_amdkfd_fence_create( 2412 process_info->eviction_fence->base.context, 2413 process_info->eviction_fence->mm, 2414 NULL); 2415 if (!new_fence) { 2416 pr_err("Failed to create eviction fence\n"); 2417 ret = -ENOMEM; 2418 goto validate_map_fail; 2419 } 2420 dma_fence_put(&process_info->eviction_fence->base); 2421 process_info->eviction_fence = new_fence; 2422 *ef = dma_fence_get(&new_fence->base); 2423 2424 /* Attach new eviction fence to all BOs */ 2425 list_for_each_entry(mem, &process_info->kfd_bo_list, 2426 validate_list.head) 2427 amdgpu_bo_fence(mem->bo, 2428 &process_info->eviction_fence->base, true); 2429 2430 /* Attach eviction fence to PD / PT BOs */ 2431 list_for_each_entry(peer_vm, &process_info->vm_list_head, 2432 vm_list_node) { 2433 struct amdgpu_bo *bo = peer_vm->root.bo; 2434 2435 amdgpu_bo_fence(bo, &process_info->eviction_fence->base, true); 2436 } 2437 2438 validate_map_fail: 2439 ttm_eu_backoff_reservation(&ctx.ticket, &ctx.list); 2440 amdgpu_sync_free(&sync_obj); 2441 ttm_reserve_fail: 2442 mutex_unlock(&process_info->lock); 2443 kfree(pd_bo_list); 2444 return ret; 2445 } 2446 2447 int amdgpu_amdkfd_add_gws_to_process(void *info, void *gws, struct kgd_mem **mem) 2448 { 2449 struct amdkfd_process_info *process_info = (struct amdkfd_process_info *)info; 2450 struct amdgpu_bo *gws_bo = (struct amdgpu_bo *)gws; 2451 int ret; 2452 2453 if (!info || !gws) 2454 return -EINVAL; 2455 2456 *mem = kzalloc(sizeof(struct kgd_mem), GFP_KERNEL); 2457 if (!*mem) 2458 return -ENOMEM; 2459 2460 mutex_init(&(*mem)->lock); 2461 INIT_LIST_HEAD(&(*mem)->attachments); 2462 (*mem)->bo = amdgpu_bo_ref(gws_bo); 2463 (*mem)->domain = AMDGPU_GEM_DOMAIN_GWS; 2464 (*mem)->process_info = process_info; 2465 add_kgd_mem_to_kfd_bo_list(*mem, process_info, false); 2466 amdgpu_sync_create(&(*mem)->sync); 2467 2468 2469 /* Validate gws bo the first time it is added to process */ 2470 mutex_lock(&(*mem)->process_info->lock); 2471 ret = amdgpu_bo_reserve(gws_bo, false); 2472 if (unlikely(ret)) { 2473 pr_err("Reserve gws bo failed %d\n", ret); 2474 goto bo_reservation_failure; 2475 } 2476 2477 ret = amdgpu_amdkfd_bo_validate(gws_bo, AMDGPU_GEM_DOMAIN_GWS, true); 2478 if (ret) { 2479 pr_err("GWS BO validate failed %d\n", ret); 2480 goto bo_validation_failure; 2481 } 2482 /* GWS resource is shared b/t amdgpu and amdkfd 2483 * Add process eviction fence to bo so they can 2484 * evict each other. 2485 */ 2486 ret = dma_resv_reserve_shared(gws_bo->tbo.base.resv, 1); 2487 if (ret) 2488 goto reserve_shared_fail; 2489 amdgpu_bo_fence(gws_bo, &process_info->eviction_fence->base, true); 2490 amdgpu_bo_unreserve(gws_bo); 2491 mutex_unlock(&(*mem)->process_info->lock); 2492 2493 return ret; 2494 2495 reserve_shared_fail: 2496 bo_validation_failure: 2497 amdgpu_bo_unreserve(gws_bo); 2498 bo_reservation_failure: 2499 mutex_unlock(&(*mem)->process_info->lock); 2500 amdgpu_sync_free(&(*mem)->sync); 2501 remove_kgd_mem_from_kfd_bo_list(*mem, process_info); 2502 amdgpu_bo_unref(&gws_bo); 2503 mutex_destroy(&(*mem)->lock); 2504 kfree(*mem); 2505 *mem = NULL; 2506 return ret; 2507 } 2508 2509 int amdgpu_amdkfd_remove_gws_from_process(void *info, void *mem) 2510 { 2511 int ret; 2512 struct amdkfd_process_info *process_info = (struct amdkfd_process_info *)info; 2513 struct kgd_mem *kgd_mem = (struct kgd_mem *)mem; 2514 struct amdgpu_bo *gws_bo = kgd_mem->bo; 2515 2516 /* Remove BO from process's validate list so restore worker won't touch 2517 * it anymore 2518 */ 2519 remove_kgd_mem_from_kfd_bo_list(kgd_mem, process_info); 2520 2521 ret = amdgpu_bo_reserve(gws_bo, false); 2522 if (unlikely(ret)) { 2523 pr_err("Reserve gws bo failed %d\n", ret); 2524 //TODO add BO back to validate_list? 2525 return ret; 2526 } 2527 amdgpu_amdkfd_remove_eviction_fence(gws_bo, 2528 process_info->eviction_fence); 2529 amdgpu_bo_unreserve(gws_bo); 2530 amdgpu_sync_free(&kgd_mem->sync); 2531 amdgpu_bo_unref(&gws_bo); 2532 mutex_destroy(&kgd_mem->lock); 2533 kfree(mem); 2534 return 0; 2535 } 2536 2537 /* Returns GPU-specific tiling mode information */ 2538 int amdgpu_amdkfd_get_tile_config(struct kgd_dev *kgd, 2539 struct tile_config *config) 2540 { 2541 struct amdgpu_device *adev = (struct amdgpu_device *)kgd; 2542 2543 config->gb_addr_config = adev->gfx.config.gb_addr_config; 2544 config->tile_config_ptr = adev->gfx.config.tile_mode_array; 2545 config->num_tile_configs = 2546 ARRAY_SIZE(adev->gfx.config.tile_mode_array); 2547 config->macro_tile_config_ptr = 2548 adev->gfx.config.macrotile_mode_array; 2549 config->num_macro_tile_configs = 2550 ARRAY_SIZE(adev->gfx.config.macrotile_mode_array); 2551 2552 /* Those values are not set from GFX9 onwards */ 2553 config->num_banks = adev->gfx.config.num_banks; 2554 config->num_ranks = adev->gfx.config.num_ranks; 2555 2556 return 0; 2557 } 2558