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 = NULL; 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 /* Don't unreserve system mem limit twice */ 1510 goto err_reserve_limit; 1511 err_bo_create: 1512 unreserve_mem_limit(adev, size, alloc_domain, !!sg); 1513 err_reserve_limit: 1514 mutex_destroy(&(*mem)->lock); 1515 if (gobj) 1516 drm_gem_object_put(gobj); 1517 else 1518 kfree(*mem); 1519 err: 1520 if (sg) { 1521 sg_free_table(sg); 1522 kfree(sg); 1523 } 1524 return ret; 1525 } 1526 1527 int amdgpu_amdkfd_gpuvm_free_memory_of_gpu( 1528 struct kgd_dev *kgd, struct kgd_mem *mem, void *drm_priv, 1529 uint64_t *size) 1530 { 1531 struct amdkfd_process_info *process_info = mem->process_info; 1532 unsigned long bo_size = mem->bo->tbo.base.size; 1533 struct kfd_mem_attachment *entry, *tmp; 1534 struct bo_vm_reservation_context ctx; 1535 struct ttm_validate_buffer *bo_list_entry; 1536 unsigned int mapped_to_gpu_memory; 1537 int ret; 1538 bool is_imported = false; 1539 1540 mutex_lock(&mem->lock); 1541 mapped_to_gpu_memory = mem->mapped_to_gpu_memory; 1542 is_imported = mem->is_imported; 1543 mutex_unlock(&mem->lock); 1544 /* lock is not needed after this, since mem is unused and will 1545 * be freed anyway 1546 */ 1547 1548 if (mapped_to_gpu_memory > 0) { 1549 pr_debug("BO VA 0x%llx size 0x%lx is still mapped.\n", 1550 mem->va, bo_size); 1551 return -EBUSY; 1552 } 1553 1554 /* Make sure restore workers don't access the BO any more */ 1555 bo_list_entry = &mem->validate_list; 1556 mutex_lock(&process_info->lock); 1557 list_del(&bo_list_entry->head); 1558 mutex_unlock(&process_info->lock); 1559 1560 /* No more MMU notifiers */ 1561 amdgpu_mn_unregister(mem->bo); 1562 1563 ret = reserve_bo_and_cond_vms(mem, NULL, BO_VM_ALL, &ctx); 1564 if (unlikely(ret)) 1565 return ret; 1566 1567 /* The eviction fence should be removed by the last unmap. 1568 * TODO: Log an error condition if the bo still has the eviction fence 1569 * attached 1570 */ 1571 amdgpu_amdkfd_remove_eviction_fence(mem->bo, 1572 process_info->eviction_fence); 1573 pr_debug("Release VA 0x%llx - 0x%llx\n", mem->va, 1574 mem->va + bo_size * (1 + mem->aql_queue)); 1575 1576 /* Remove from VM internal data structures */ 1577 list_for_each_entry_safe(entry, tmp, &mem->attachments, list) 1578 kfd_mem_detach(entry); 1579 1580 ret = unreserve_bo_and_vms(&ctx, false, false); 1581 1582 /* Free the sync object */ 1583 amdgpu_sync_free(&mem->sync); 1584 1585 /* If the SG is not NULL, it's one we created for a doorbell or mmio 1586 * remap BO. We need to free it. 1587 */ 1588 if (mem->bo->tbo.sg) { 1589 sg_free_table(mem->bo->tbo.sg); 1590 kfree(mem->bo->tbo.sg); 1591 } 1592 1593 /* Update the size of the BO being freed if it was allocated from 1594 * VRAM and is not imported. 1595 */ 1596 if (size) { 1597 if ((mem->bo->preferred_domains == AMDGPU_GEM_DOMAIN_VRAM) && 1598 (!is_imported)) 1599 *size = bo_size; 1600 else 1601 *size = 0; 1602 } 1603 1604 /* Free the BO*/ 1605 drm_vma_node_revoke(&mem->bo->tbo.base.vma_node, drm_priv); 1606 if (mem->dmabuf) 1607 dma_buf_put(mem->dmabuf); 1608 mutex_destroy(&mem->lock); 1609 1610 /* If this releases the last reference, it will end up calling 1611 * amdgpu_amdkfd_release_notify and kfree the mem struct. That's why 1612 * this needs to be the last call here. 1613 */ 1614 drm_gem_object_put(&mem->bo->tbo.base); 1615 1616 return ret; 1617 } 1618 1619 int amdgpu_amdkfd_gpuvm_map_memory_to_gpu( 1620 struct kgd_dev *kgd, struct kgd_mem *mem, 1621 void *drm_priv, bool *table_freed) 1622 { 1623 struct amdgpu_device *adev = get_amdgpu_device(kgd); 1624 struct amdgpu_vm *avm = drm_priv_to_vm(drm_priv); 1625 int ret; 1626 struct amdgpu_bo *bo; 1627 uint32_t domain; 1628 struct kfd_mem_attachment *entry; 1629 struct bo_vm_reservation_context ctx; 1630 unsigned long bo_size; 1631 bool is_invalid_userptr = false; 1632 1633 bo = mem->bo; 1634 if (!bo) { 1635 pr_err("Invalid BO when mapping memory to GPU\n"); 1636 return -EINVAL; 1637 } 1638 1639 /* Make sure restore is not running concurrently. Since we 1640 * don't map invalid userptr BOs, we rely on the next restore 1641 * worker to do the mapping 1642 */ 1643 mutex_lock(&mem->process_info->lock); 1644 1645 /* Lock mmap-sem. If we find an invalid userptr BO, we can be 1646 * sure that the MMU notifier is no longer running 1647 * concurrently and the queues are actually stopped 1648 */ 1649 if (amdgpu_ttm_tt_get_usermm(bo->tbo.ttm)) { 1650 mmap_write_lock(current->mm); 1651 is_invalid_userptr = atomic_read(&mem->invalid); 1652 mmap_write_unlock(current->mm); 1653 } 1654 1655 mutex_lock(&mem->lock); 1656 1657 domain = mem->domain; 1658 bo_size = bo->tbo.base.size; 1659 1660 pr_debug("Map VA 0x%llx - 0x%llx to vm %p domain %s\n", 1661 mem->va, 1662 mem->va + bo_size * (1 + mem->aql_queue), 1663 avm, domain_string(domain)); 1664 1665 if (!kfd_mem_is_attached(avm, mem)) { 1666 ret = kfd_mem_attach(adev, mem, avm, mem->aql_queue); 1667 if (ret) 1668 goto out; 1669 } 1670 1671 ret = reserve_bo_and_vm(mem, avm, &ctx); 1672 if (unlikely(ret)) 1673 goto out; 1674 1675 /* Userptr can be marked as "not invalid", but not actually be 1676 * validated yet (still in the system domain). In that case 1677 * the queues are still stopped and we can leave mapping for 1678 * the next restore worker 1679 */ 1680 if (amdgpu_ttm_tt_get_usermm(bo->tbo.ttm) && 1681 bo->tbo.resource->mem_type == TTM_PL_SYSTEM) 1682 is_invalid_userptr = true; 1683 1684 ret = vm_validate_pt_pd_bos(avm); 1685 if (unlikely(ret)) 1686 goto out_unreserve; 1687 1688 if (mem->mapped_to_gpu_memory == 0 && 1689 !amdgpu_ttm_tt_get_usermm(bo->tbo.ttm)) { 1690 /* Validate BO only once. The eviction fence gets added to BO 1691 * the first time it is mapped. Validate will wait for all 1692 * background evictions to complete. 1693 */ 1694 ret = amdgpu_amdkfd_bo_validate(bo, domain, true); 1695 if (ret) { 1696 pr_debug("Validate failed\n"); 1697 goto out_unreserve; 1698 } 1699 } 1700 1701 list_for_each_entry(entry, &mem->attachments, list) { 1702 if (entry->bo_va->base.vm != avm || entry->is_mapped) 1703 continue; 1704 1705 pr_debug("\t map VA 0x%llx - 0x%llx in entry %p\n", 1706 entry->va, entry->va + bo_size, entry); 1707 1708 ret = map_bo_to_gpuvm(mem, entry, ctx.sync, 1709 is_invalid_userptr, table_freed); 1710 if (ret) { 1711 pr_err("Failed to map bo to gpuvm\n"); 1712 goto out_unreserve; 1713 } 1714 1715 ret = vm_update_pds(avm, ctx.sync); 1716 if (ret) { 1717 pr_err("Failed to update page directories\n"); 1718 goto out_unreserve; 1719 } 1720 1721 entry->is_mapped = true; 1722 mem->mapped_to_gpu_memory++; 1723 pr_debug("\t INC mapping count %d\n", 1724 mem->mapped_to_gpu_memory); 1725 } 1726 1727 if (!amdgpu_ttm_tt_get_usermm(bo->tbo.ttm) && !bo->tbo.pin_count) 1728 amdgpu_bo_fence(bo, 1729 &avm->process_info->eviction_fence->base, 1730 true); 1731 ret = unreserve_bo_and_vms(&ctx, false, false); 1732 1733 /* Only apply no TLB flush on Aldebaran to 1734 * workaround regressions on other Asics. 1735 */ 1736 if (table_freed && (adev->asic_type != CHIP_ALDEBARAN)) 1737 *table_freed = true; 1738 1739 goto out; 1740 1741 out_unreserve: 1742 unreserve_bo_and_vms(&ctx, false, false); 1743 out: 1744 mutex_unlock(&mem->process_info->lock); 1745 mutex_unlock(&mem->lock); 1746 return ret; 1747 } 1748 1749 int amdgpu_amdkfd_gpuvm_unmap_memory_from_gpu( 1750 struct kgd_dev *kgd, struct kgd_mem *mem, void *drm_priv) 1751 { 1752 struct amdgpu_vm *avm = drm_priv_to_vm(drm_priv); 1753 struct amdkfd_process_info *process_info = avm->process_info; 1754 unsigned long bo_size = mem->bo->tbo.base.size; 1755 struct kfd_mem_attachment *entry; 1756 struct bo_vm_reservation_context ctx; 1757 int ret; 1758 1759 mutex_lock(&mem->lock); 1760 1761 ret = reserve_bo_and_cond_vms(mem, avm, BO_VM_MAPPED, &ctx); 1762 if (unlikely(ret)) 1763 goto out; 1764 /* If no VMs were reserved, it means the BO wasn't actually mapped */ 1765 if (ctx.n_vms == 0) { 1766 ret = -EINVAL; 1767 goto unreserve_out; 1768 } 1769 1770 ret = vm_validate_pt_pd_bos(avm); 1771 if (unlikely(ret)) 1772 goto unreserve_out; 1773 1774 pr_debug("Unmap VA 0x%llx - 0x%llx from vm %p\n", 1775 mem->va, 1776 mem->va + bo_size * (1 + mem->aql_queue), 1777 avm); 1778 1779 list_for_each_entry(entry, &mem->attachments, list) { 1780 if (entry->bo_va->base.vm != avm || !entry->is_mapped) 1781 continue; 1782 1783 pr_debug("\t unmap VA 0x%llx - 0x%llx from entry %p\n", 1784 entry->va, entry->va + bo_size, entry); 1785 1786 unmap_bo_from_gpuvm(mem, entry, ctx.sync); 1787 entry->is_mapped = false; 1788 1789 mem->mapped_to_gpu_memory--; 1790 pr_debug("\t DEC mapping count %d\n", 1791 mem->mapped_to_gpu_memory); 1792 } 1793 1794 /* If BO is unmapped from all VMs, unfence it. It can be evicted if 1795 * required. 1796 */ 1797 if (mem->mapped_to_gpu_memory == 0 && 1798 !amdgpu_ttm_tt_get_usermm(mem->bo->tbo.ttm) && 1799 !mem->bo->tbo.pin_count) 1800 amdgpu_amdkfd_remove_eviction_fence(mem->bo, 1801 process_info->eviction_fence); 1802 1803 unreserve_out: 1804 unreserve_bo_and_vms(&ctx, false, false); 1805 out: 1806 mutex_unlock(&mem->lock); 1807 return ret; 1808 } 1809 1810 int amdgpu_amdkfd_gpuvm_sync_memory( 1811 struct kgd_dev *kgd, struct kgd_mem *mem, bool intr) 1812 { 1813 struct amdgpu_sync sync; 1814 int ret; 1815 1816 amdgpu_sync_create(&sync); 1817 1818 mutex_lock(&mem->lock); 1819 amdgpu_sync_clone(&mem->sync, &sync); 1820 mutex_unlock(&mem->lock); 1821 1822 ret = amdgpu_sync_wait(&sync, intr); 1823 amdgpu_sync_free(&sync); 1824 return ret; 1825 } 1826 1827 int amdgpu_amdkfd_gpuvm_map_gtt_bo_to_kernel(struct kgd_dev *kgd, 1828 struct kgd_mem *mem, void **kptr, uint64_t *size) 1829 { 1830 int ret; 1831 struct amdgpu_bo *bo = mem->bo; 1832 1833 if (amdgpu_ttm_tt_get_usermm(bo->tbo.ttm)) { 1834 pr_err("userptr can't be mapped to kernel\n"); 1835 return -EINVAL; 1836 } 1837 1838 /* delete kgd_mem from kfd_bo_list to avoid re-validating 1839 * this BO in BO's restoring after eviction. 1840 */ 1841 mutex_lock(&mem->process_info->lock); 1842 1843 ret = amdgpu_bo_reserve(bo, true); 1844 if (ret) { 1845 pr_err("Failed to reserve bo. ret %d\n", ret); 1846 goto bo_reserve_failed; 1847 } 1848 1849 ret = amdgpu_bo_pin(bo, AMDGPU_GEM_DOMAIN_GTT); 1850 if (ret) { 1851 pr_err("Failed to pin bo. ret %d\n", ret); 1852 goto pin_failed; 1853 } 1854 1855 ret = amdgpu_bo_kmap(bo, kptr); 1856 if (ret) { 1857 pr_err("Failed to map bo to kernel. ret %d\n", ret); 1858 goto kmap_failed; 1859 } 1860 1861 amdgpu_amdkfd_remove_eviction_fence( 1862 bo, mem->process_info->eviction_fence); 1863 list_del_init(&mem->validate_list.head); 1864 1865 if (size) 1866 *size = amdgpu_bo_size(bo); 1867 1868 amdgpu_bo_unreserve(bo); 1869 1870 mutex_unlock(&mem->process_info->lock); 1871 return 0; 1872 1873 kmap_failed: 1874 amdgpu_bo_unpin(bo); 1875 pin_failed: 1876 amdgpu_bo_unreserve(bo); 1877 bo_reserve_failed: 1878 mutex_unlock(&mem->process_info->lock); 1879 1880 return ret; 1881 } 1882 1883 void amdgpu_amdkfd_gpuvm_unmap_gtt_bo_from_kernel(struct kgd_dev *kgd, struct kgd_mem *mem) 1884 { 1885 struct amdgpu_bo *bo = mem->bo; 1886 1887 amdgpu_bo_reserve(bo, true); 1888 amdgpu_bo_kunmap(bo); 1889 amdgpu_bo_unpin(bo); 1890 amdgpu_bo_unreserve(bo); 1891 } 1892 1893 int amdgpu_amdkfd_gpuvm_get_vm_fault_info(struct kgd_dev *kgd, 1894 struct kfd_vm_fault_info *mem) 1895 { 1896 struct amdgpu_device *adev; 1897 1898 adev = (struct amdgpu_device *)kgd; 1899 if (atomic_read(&adev->gmc.vm_fault_info_updated) == 1) { 1900 *mem = *adev->gmc.vm_fault_info; 1901 mb(); 1902 atomic_set(&adev->gmc.vm_fault_info_updated, 0); 1903 } 1904 return 0; 1905 } 1906 1907 int amdgpu_amdkfd_gpuvm_import_dmabuf(struct kgd_dev *kgd, 1908 struct dma_buf *dma_buf, 1909 uint64_t va, void *drm_priv, 1910 struct kgd_mem **mem, uint64_t *size, 1911 uint64_t *mmap_offset) 1912 { 1913 struct amdgpu_device *adev = (struct amdgpu_device *)kgd; 1914 struct amdgpu_vm *avm = drm_priv_to_vm(drm_priv); 1915 struct drm_gem_object *obj; 1916 struct amdgpu_bo *bo; 1917 int ret; 1918 1919 if (dma_buf->ops != &amdgpu_dmabuf_ops) 1920 /* Can't handle non-graphics buffers */ 1921 return -EINVAL; 1922 1923 obj = dma_buf->priv; 1924 if (drm_to_adev(obj->dev) != adev) 1925 /* Can't handle buffers from other devices */ 1926 return -EINVAL; 1927 1928 bo = gem_to_amdgpu_bo(obj); 1929 if (!(bo->preferred_domains & (AMDGPU_GEM_DOMAIN_VRAM | 1930 AMDGPU_GEM_DOMAIN_GTT))) 1931 /* Only VRAM and GTT BOs are supported */ 1932 return -EINVAL; 1933 1934 *mem = kzalloc(sizeof(struct kgd_mem), GFP_KERNEL); 1935 if (!*mem) 1936 return -ENOMEM; 1937 1938 ret = drm_vma_node_allow(&obj->vma_node, drm_priv); 1939 if (ret) { 1940 kfree(mem); 1941 return ret; 1942 } 1943 1944 if (size) 1945 *size = amdgpu_bo_size(bo); 1946 1947 if (mmap_offset) 1948 *mmap_offset = amdgpu_bo_mmap_offset(bo); 1949 1950 INIT_LIST_HEAD(&(*mem)->attachments); 1951 mutex_init(&(*mem)->lock); 1952 1953 (*mem)->alloc_flags = 1954 ((bo->preferred_domains & AMDGPU_GEM_DOMAIN_VRAM) ? 1955 KFD_IOC_ALLOC_MEM_FLAGS_VRAM : KFD_IOC_ALLOC_MEM_FLAGS_GTT) 1956 | KFD_IOC_ALLOC_MEM_FLAGS_WRITABLE 1957 | KFD_IOC_ALLOC_MEM_FLAGS_EXECUTABLE; 1958 1959 drm_gem_object_get(&bo->tbo.base); 1960 (*mem)->bo = bo; 1961 (*mem)->va = va; 1962 (*mem)->domain = (bo->preferred_domains & AMDGPU_GEM_DOMAIN_VRAM) ? 1963 AMDGPU_GEM_DOMAIN_VRAM : AMDGPU_GEM_DOMAIN_GTT; 1964 (*mem)->mapped_to_gpu_memory = 0; 1965 (*mem)->process_info = avm->process_info; 1966 add_kgd_mem_to_kfd_bo_list(*mem, avm->process_info, false); 1967 amdgpu_sync_create(&(*mem)->sync); 1968 (*mem)->is_imported = true; 1969 1970 return 0; 1971 } 1972 1973 /* Evict a userptr BO by stopping the queues if necessary 1974 * 1975 * Runs in MMU notifier, may be in RECLAIM_FS context. This means it 1976 * cannot do any memory allocations, and cannot take any locks that 1977 * are held elsewhere while allocating memory. Therefore this is as 1978 * simple as possible, using atomic counters. 1979 * 1980 * It doesn't do anything to the BO itself. The real work happens in 1981 * restore, where we get updated page addresses. This function only 1982 * ensures that GPU access to the BO is stopped. 1983 */ 1984 int amdgpu_amdkfd_evict_userptr(struct kgd_mem *mem, 1985 struct mm_struct *mm) 1986 { 1987 struct amdkfd_process_info *process_info = mem->process_info; 1988 int evicted_bos; 1989 int r = 0; 1990 1991 atomic_inc(&mem->invalid); 1992 evicted_bos = atomic_inc_return(&process_info->evicted_bos); 1993 if (evicted_bos == 1) { 1994 /* First eviction, stop the queues */ 1995 r = kgd2kfd_quiesce_mm(mm); 1996 if (r) 1997 pr_err("Failed to quiesce KFD\n"); 1998 schedule_delayed_work(&process_info->restore_userptr_work, 1999 msecs_to_jiffies(AMDGPU_USERPTR_RESTORE_DELAY_MS)); 2000 } 2001 2002 return r; 2003 } 2004 2005 /* Update invalid userptr BOs 2006 * 2007 * Moves invalidated (evicted) userptr BOs from userptr_valid_list to 2008 * userptr_inval_list and updates user pages for all BOs that have 2009 * been invalidated since their last update. 2010 */ 2011 static int update_invalid_user_pages(struct amdkfd_process_info *process_info, 2012 struct mm_struct *mm) 2013 { 2014 struct kgd_mem *mem, *tmp_mem; 2015 struct amdgpu_bo *bo; 2016 struct ttm_operation_ctx ctx = { false, false }; 2017 int invalid, ret; 2018 2019 /* Move all invalidated BOs to the userptr_inval_list and 2020 * release their user pages by migration to the CPU domain 2021 */ 2022 list_for_each_entry_safe(mem, tmp_mem, 2023 &process_info->userptr_valid_list, 2024 validate_list.head) { 2025 if (!atomic_read(&mem->invalid)) 2026 continue; /* BO is still valid */ 2027 2028 bo = mem->bo; 2029 2030 if (amdgpu_bo_reserve(bo, true)) 2031 return -EAGAIN; 2032 amdgpu_bo_placement_from_domain(bo, AMDGPU_GEM_DOMAIN_CPU); 2033 ret = ttm_bo_validate(&bo->tbo, &bo->placement, &ctx); 2034 amdgpu_bo_unreserve(bo); 2035 if (ret) { 2036 pr_err("%s: Failed to invalidate userptr BO\n", 2037 __func__); 2038 return -EAGAIN; 2039 } 2040 2041 list_move_tail(&mem->validate_list.head, 2042 &process_info->userptr_inval_list); 2043 } 2044 2045 if (list_empty(&process_info->userptr_inval_list)) 2046 return 0; /* All evicted userptr BOs were freed */ 2047 2048 /* Go through userptr_inval_list and update any invalid user_pages */ 2049 list_for_each_entry(mem, &process_info->userptr_inval_list, 2050 validate_list.head) { 2051 invalid = atomic_read(&mem->invalid); 2052 if (!invalid) 2053 /* BO hasn't been invalidated since the last 2054 * revalidation attempt. Keep its BO list. 2055 */ 2056 continue; 2057 2058 bo = mem->bo; 2059 2060 /* Get updated user pages */ 2061 ret = amdgpu_ttm_tt_get_user_pages(bo, bo->tbo.ttm->pages); 2062 if (ret) { 2063 pr_debug("Failed %d to get user pages\n", ret); 2064 2065 /* Return -EFAULT bad address error as success. It will 2066 * fail later with a VM fault if the GPU tries to access 2067 * it. Better than hanging indefinitely with stalled 2068 * user mode queues. 2069 * 2070 * Return other error -EBUSY or -ENOMEM to retry restore 2071 */ 2072 if (ret != -EFAULT) 2073 return ret; 2074 } else { 2075 2076 /* 2077 * FIXME: Cannot ignore the return code, must hold 2078 * notifier_lock 2079 */ 2080 amdgpu_ttm_tt_get_user_pages_done(bo->tbo.ttm); 2081 } 2082 2083 /* Mark the BO as valid unless it was invalidated 2084 * again concurrently. 2085 */ 2086 if (atomic_cmpxchg(&mem->invalid, invalid, 0) != invalid) 2087 return -EAGAIN; 2088 } 2089 2090 return 0; 2091 } 2092 2093 /* Validate invalid userptr BOs 2094 * 2095 * Validates BOs on the userptr_inval_list, and moves them back to the 2096 * userptr_valid_list. Also updates GPUVM page tables with new page 2097 * addresses and waits for the page table updates to complete. 2098 */ 2099 static int validate_invalid_user_pages(struct amdkfd_process_info *process_info) 2100 { 2101 struct amdgpu_bo_list_entry *pd_bo_list_entries; 2102 struct list_head resv_list, duplicates; 2103 struct ww_acquire_ctx ticket; 2104 struct amdgpu_sync sync; 2105 2106 struct amdgpu_vm *peer_vm; 2107 struct kgd_mem *mem, *tmp_mem; 2108 struct amdgpu_bo *bo; 2109 struct ttm_operation_ctx ctx = { false, false }; 2110 int i, ret; 2111 2112 pd_bo_list_entries = kcalloc(process_info->n_vms, 2113 sizeof(struct amdgpu_bo_list_entry), 2114 GFP_KERNEL); 2115 if (!pd_bo_list_entries) { 2116 pr_err("%s: Failed to allocate PD BO list entries\n", __func__); 2117 ret = -ENOMEM; 2118 goto out_no_mem; 2119 } 2120 2121 INIT_LIST_HEAD(&resv_list); 2122 INIT_LIST_HEAD(&duplicates); 2123 2124 /* Get all the page directory BOs that need to be reserved */ 2125 i = 0; 2126 list_for_each_entry(peer_vm, &process_info->vm_list_head, 2127 vm_list_node) 2128 amdgpu_vm_get_pd_bo(peer_vm, &resv_list, 2129 &pd_bo_list_entries[i++]); 2130 /* Add the userptr_inval_list entries to resv_list */ 2131 list_for_each_entry(mem, &process_info->userptr_inval_list, 2132 validate_list.head) { 2133 list_add_tail(&mem->resv_list.head, &resv_list); 2134 mem->resv_list.bo = mem->validate_list.bo; 2135 mem->resv_list.num_shared = mem->validate_list.num_shared; 2136 } 2137 2138 /* Reserve all BOs and page tables for validation */ 2139 ret = ttm_eu_reserve_buffers(&ticket, &resv_list, false, &duplicates); 2140 WARN(!list_empty(&duplicates), "Duplicates should be empty"); 2141 if (ret) 2142 goto out_free; 2143 2144 amdgpu_sync_create(&sync); 2145 2146 ret = process_validate_vms(process_info); 2147 if (ret) 2148 goto unreserve_out; 2149 2150 /* Validate BOs and update GPUVM page tables */ 2151 list_for_each_entry_safe(mem, tmp_mem, 2152 &process_info->userptr_inval_list, 2153 validate_list.head) { 2154 struct kfd_mem_attachment *attachment; 2155 2156 bo = mem->bo; 2157 2158 /* Validate the BO if we got user pages */ 2159 if (bo->tbo.ttm->pages[0]) { 2160 amdgpu_bo_placement_from_domain(bo, mem->domain); 2161 ret = ttm_bo_validate(&bo->tbo, &bo->placement, &ctx); 2162 if (ret) { 2163 pr_err("%s: failed to validate BO\n", __func__); 2164 goto unreserve_out; 2165 } 2166 } 2167 2168 list_move_tail(&mem->validate_list.head, 2169 &process_info->userptr_valid_list); 2170 2171 /* Update mapping. If the BO was not validated 2172 * (because we couldn't get user pages), this will 2173 * clear the page table entries, which will result in 2174 * VM faults if the GPU tries to access the invalid 2175 * memory. 2176 */ 2177 list_for_each_entry(attachment, &mem->attachments, list) { 2178 if (!attachment->is_mapped) 2179 continue; 2180 2181 kfd_mem_dmaunmap_attachment(mem, attachment); 2182 ret = update_gpuvm_pte(mem, attachment, &sync, NULL); 2183 if (ret) { 2184 pr_err("%s: update PTE failed\n", __func__); 2185 /* make sure this gets validated again */ 2186 atomic_inc(&mem->invalid); 2187 goto unreserve_out; 2188 } 2189 } 2190 } 2191 2192 /* Update page directories */ 2193 ret = process_update_pds(process_info, &sync); 2194 2195 unreserve_out: 2196 ttm_eu_backoff_reservation(&ticket, &resv_list); 2197 amdgpu_sync_wait(&sync, false); 2198 amdgpu_sync_free(&sync); 2199 out_free: 2200 kfree(pd_bo_list_entries); 2201 out_no_mem: 2202 2203 return ret; 2204 } 2205 2206 /* Worker callback to restore evicted userptr BOs 2207 * 2208 * Tries to update and validate all userptr BOs. If successful and no 2209 * concurrent evictions happened, the queues are restarted. Otherwise, 2210 * reschedule for another attempt later. 2211 */ 2212 static void amdgpu_amdkfd_restore_userptr_worker(struct work_struct *work) 2213 { 2214 struct delayed_work *dwork = to_delayed_work(work); 2215 struct amdkfd_process_info *process_info = 2216 container_of(dwork, struct amdkfd_process_info, 2217 restore_userptr_work); 2218 struct task_struct *usertask; 2219 struct mm_struct *mm; 2220 int evicted_bos; 2221 2222 evicted_bos = atomic_read(&process_info->evicted_bos); 2223 if (!evicted_bos) 2224 return; 2225 2226 /* Reference task and mm in case of concurrent process termination */ 2227 usertask = get_pid_task(process_info->pid, PIDTYPE_PID); 2228 if (!usertask) 2229 return; 2230 mm = get_task_mm(usertask); 2231 if (!mm) { 2232 put_task_struct(usertask); 2233 return; 2234 } 2235 2236 mutex_lock(&process_info->lock); 2237 2238 if (update_invalid_user_pages(process_info, mm)) 2239 goto unlock_out; 2240 /* userptr_inval_list can be empty if all evicted userptr BOs 2241 * have been freed. In that case there is nothing to validate 2242 * and we can just restart the queues. 2243 */ 2244 if (!list_empty(&process_info->userptr_inval_list)) { 2245 if (atomic_read(&process_info->evicted_bos) != evicted_bos) 2246 goto unlock_out; /* Concurrent eviction, try again */ 2247 2248 if (validate_invalid_user_pages(process_info)) 2249 goto unlock_out; 2250 } 2251 /* Final check for concurrent evicton and atomic update. If 2252 * another eviction happens after successful update, it will 2253 * be a first eviction that calls quiesce_mm. The eviction 2254 * reference counting inside KFD will handle this case. 2255 */ 2256 if (atomic_cmpxchg(&process_info->evicted_bos, evicted_bos, 0) != 2257 evicted_bos) 2258 goto unlock_out; 2259 evicted_bos = 0; 2260 if (kgd2kfd_resume_mm(mm)) { 2261 pr_err("%s: Failed to resume KFD\n", __func__); 2262 /* No recovery from this failure. Probably the CP is 2263 * hanging. No point trying again. 2264 */ 2265 } 2266 2267 unlock_out: 2268 mutex_unlock(&process_info->lock); 2269 mmput(mm); 2270 put_task_struct(usertask); 2271 2272 /* If validation failed, reschedule another attempt */ 2273 if (evicted_bos) 2274 schedule_delayed_work(&process_info->restore_userptr_work, 2275 msecs_to_jiffies(AMDGPU_USERPTR_RESTORE_DELAY_MS)); 2276 } 2277 2278 /** amdgpu_amdkfd_gpuvm_restore_process_bos - Restore all BOs for the given 2279 * KFD process identified by process_info 2280 * 2281 * @process_info: amdkfd_process_info of the KFD process 2282 * 2283 * After memory eviction, restore thread calls this function. The function 2284 * should be called when the Process is still valid. BO restore involves - 2285 * 2286 * 1. Release old eviction fence and create new one 2287 * 2. Get two copies of PD BO list from all the VMs. Keep one copy as pd_list. 2288 * 3 Use the second PD list and kfd_bo_list to create a list (ctx.list) of 2289 * BOs that need to be reserved. 2290 * 4. Reserve all the BOs 2291 * 5. Validate of PD and PT BOs. 2292 * 6. Validate all KFD BOs using kfd_bo_list and Map them and add new fence 2293 * 7. Add fence to all PD and PT BOs. 2294 * 8. Unreserve all BOs 2295 */ 2296 int amdgpu_amdkfd_gpuvm_restore_process_bos(void *info, struct dma_fence **ef) 2297 { 2298 struct amdgpu_bo_list_entry *pd_bo_list; 2299 struct amdkfd_process_info *process_info = info; 2300 struct amdgpu_vm *peer_vm; 2301 struct kgd_mem *mem; 2302 struct bo_vm_reservation_context ctx; 2303 struct amdgpu_amdkfd_fence *new_fence; 2304 int ret = 0, i; 2305 struct list_head duplicate_save; 2306 struct amdgpu_sync sync_obj; 2307 unsigned long failed_size = 0; 2308 unsigned long total_size = 0; 2309 2310 INIT_LIST_HEAD(&duplicate_save); 2311 INIT_LIST_HEAD(&ctx.list); 2312 INIT_LIST_HEAD(&ctx.duplicates); 2313 2314 pd_bo_list = kcalloc(process_info->n_vms, 2315 sizeof(struct amdgpu_bo_list_entry), 2316 GFP_KERNEL); 2317 if (!pd_bo_list) 2318 return -ENOMEM; 2319 2320 i = 0; 2321 mutex_lock(&process_info->lock); 2322 list_for_each_entry(peer_vm, &process_info->vm_list_head, 2323 vm_list_node) 2324 amdgpu_vm_get_pd_bo(peer_vm, &ctx.list, &pd_bo_list[i++]); 2325 2326 /* Reserve all BOs and page tables/directory. Add all BOs from 2327 * kfd_bo_list to ctx.list 2328 */ 2329 list_for_each_entry(mem, &process_info->kfd_bo_list, 2330 validate_list.head) { 2331 2332 list_add_tail(&mem->resv_list.head, &ctx.list); 2333 mem->resv_list.bo = mem->validate_list.bo; 2334 mem->resv_list.num_shared = mem->validate_list.num_shared; 2335 } 2336 2337 ret = ttm_eu_reserve_buffers(&ctx.ticket, &ctx.list, 2338 false, &duplicate_save); 2339 if (ret) { 2340 pr_debug("Memory eviction: TTM Reserve Failed. Try again\n"); 2341 goto ttm_reserve_fail; 2342 } 2343 2344 amdgpu_sync_create(&sync_obj); 2345 2346 /* Validate PDs and PTs */ 2347 ret = process_validate_vms(process_info); 2348 if (ret) 2349 goto validate_map_fail; 2350 2351 ret = process_sync_pds_resv(process_info, &sync_obj); 2352 if (ret) { 2353 pr_debug("Memory eviction: Failed to sync to PD BO moving fence. Try again\n"); 2354 goto validate_map_fail; 2355 } 2356 2357 /* Validate BOs and map them to GPUVM (update VM page tables). */ 2358 list_for_each_entry(mem, &process_info->kfd_bo_list, 2359 validate_list.head) { 2360 2361 struct amdgpu_bo *bo = mem->bo; 2362 uint32_t domain = mem->domain; 2363 struct kfd_mem_attachment *attachment; 2364 2365 total_size += amdgpu_bo_size(bo); 2366 2367 ret = amdgpu_amdkfd_bo_validate(bo, domain, false); 2368 if (ret) { 2369 pr_debug("Memory eviction: Validate BOs failed\n"); 2370 failed_size += amdgpu_bo_size(bo); 2371 ret = amdgpu_amdkfd_bo_validate(bo, 2372 AMDGPU_GEM_DOMAIN_GTT, false); 2373 if (ret) { 2374 pr_debug("Memory eviction: Try again\n"); 2375 goto validate_map_fail; 2376 } 2377 } 2378 ret = amdgpu_sync_fence(&sync_obj, bo->tbo.moving); 2379 if (ret) { 2380 pr_debug("Memory eviction: Sync BO fence failed. Try again\n"); 2381 goto validate_map_fail; 2382 } 2383 list_for_each_entry(attachment, &mem->attachments, list) { 2384 if (!attachment->is_mapped) 2385 continue; 2386 2387 kfd_mem_dmaunmap_attachment(mem, attachment); 2388 ret = update_gpuvm_pte(mem, attachment, &sync_obj, NULL); 2389 if (ret) { 2390 pr_debug("Memory eviction: update PTE failed. Try again\n"); 2391 goto validate_map_fail; 2392 } 2393 } 2394 } 2395 2396 if (failed_size) 2397 pr_debug("0x%lx/0x%lx in system\n", failed_size, total_size); 2398 2399 /* Update page directories */ 2400 ret = process_update_pds(process_info, &sync_obj); 2401 if (ret) { 2402 pr_debug("Memory eviction: update PDs failed. Try again\n"); 2403 goto validate_map_fail; 2404 } 2405 2406 /* Wait for validate and PT updates to finish */ 2407 amdgpu_sync_wait(&sync_obj, false); 2408 2409 /* Release old eviction fence and create new one, because fence only 2410 * goes from unsignaled to signaled, fence cannot be reused. 2411 * Use context and mm from the old fence. 2412 */ 2413 new_fence = amdgpu_amdkfd_fence_create( 2414 process_info->eviction_fence->base.context, 2415 process_info->eviction_fence->mm, 2416 NULL); 2417 if (!new_fence) { 2418 pr_err("Failed to create eviction fence\n"); 2419 ret = -ENOMEM; 2420 goto validate_map_fail; 2421 } 2422 dma_fence_put(&process_info->eviction_fence->base); 2423 process_info->eviction_fence = new_fence; 2424 *ef = dma_fence_get(&new_fence->base); 2425 2426 /* Attach new eviction fence to all BOs */ 2427 list_for_each_entry(mem, &process_info->kfd_bo_list, 2428 validate_list.head) 2429 amdgpu_bo_fence(mem->bo, 2430 &process_info->eviction_fence->base, true); 2431 2432 /* Attach eviction fence to PD / PT BOs */ 2433 list_for_each_entry(peer_vm, &process_info->vm_list_head, 2434 vm_list_node) { 2435 struct amdgpu_bo *bo = peer_vm->root.bo; 2436 2437 amdgpu_bo_fence(bo, &process_info->eviction_fence->base, true); 2438 } 2439 2440 validate_map_fail: 2441 ttm_eu_backoff_reservation(&ctx.ticket, &ctx.list); 2442 amdgpu_sync_free(&sync_obj); 2443 ttm_reserve_fail: 2444 mutex_unlock(&process_info->lock); 2445 kfree(pd_bo_list); 2446 return ret; 2447 } 2448 2449 int amdgpu_amdkfd_add_gws_to_process(void *info, void *gws, struct kgd_mem **mem) 2450 { 2451 struct amdkfd_process_info *process_info = (struct amdkfd_process_info *)info; 2452 struct amdgpu_bo *gws_bo = (struct amdgpu_bo *)gws; 2453 int ret; 2454 2455 if (!info || !gws) 2456 return -EINVAL; 2457 2458 *mem = kzalloc(sizeof(struct kgd_mem), GFP_KERNEL); 2459 if (!*mem) 2460 return -ENOMEM; 2461 2462 mutex_init(&(*mem)->lock); 2463 INIT_LIST_HEAD(&(*mem)->attachments); 2464 (*mem)->bo = amdgpu_bo_ref(gws_bo); 2465 (*mem)->domain = AMDGPU_GEM_DOMAIN_GWS; 2466 (*mem)->process_info = process_info; 2467 add_kgd_mem_to_kfd_bo_list(*mem, process_info, false); 2468 amdgpu_sync_create(&(*mem)->sync); 2469 2470 2471 /* Validate gws bo the first time it is added to process */ 2472 mutex_lock(&(*mem)->process_info->lock); 2473 ret = amdgpu_bo_reserve(gws_bo, false); 2474 if (unlikely(ret)) { 2475 pr_err("Reserve gws bo failed %d\n", ret); 2476 goto bo_reservation_failure; 2477 } 2478 2479 ret = amdgpu_amdkfd_bo_validate(gws_bo, AMDGPU_GEM_DOMAIN_GWS, true); 2480 if (ret) { 2481 pr_err("GWS BO validate failed %d\n", ret); 2482 goto bo_validation_failure; 2483 } 2484 /* GWS resource is shared b/t amdgpu and amdkfd 2485 * Add process eviction fence to bo so they can 2486 * evict each other. 2487 */ 2488 ret = dma_resv_reserve_shared(gws_bo->tbo.base.resv, 1); 2489 if (ret) 2490 goto reserve_shared_fail; 2491 amdgpu_bo_fence(gws_bo, &process_info->eviction_fence->base, true); 2492 amdgpu_bo_unreserve(gws_bo); 2493 mutex_unlock(&(*mem)->process_info->lock); 2494 2495 return ret; 2496 2497 reserve_shared_fail: 2498 bo_validation_failure: 2499 amdgpu_bo_unreserve(gws_bo); 2500 bo_reservation_failure: 2501 mutex_unlock(&(*mem)->process_info->lock); 2502 amdgpu_sync_free(&(*mem)->sync); 2503 remove_kgd_mem_from_kfd_bo_list(*mem, process_info); 2504 amdgpu_bo_unref(&gws_bo); 2505 mutex_destroy(&(*mem)->lock); 2506 kfree(*mem); 2507 *mem = NULL; 2508 return ret; 2509 } 2510 2511 int amdgpu_amdkfd_remove_gws_from_process(void *info, void *mem) 2512 { 2513 int ret; 2514 struct amdkfd_process_info *process_info = (struct amdkfd_process_info *)info; 2515 struct kgd_mem *kgd_mem = (struct kgd_mem *)mem; 2516 struct amdgpu_bo *gws_bo = kgd_mem->bo; 2517 2518 /* Remove BO from process's validate list so restore worker won't touch 2519 * it anymore 2520 */ 2521 remove_kgd_mem_from_kfd_bo_list(kgd_mem, process_info); 2522 2523 ret = amdgpu_bo_reserve(gws_bo, false); 2524 if (unlikely(ret)) { 2525 pr_err("Reserve gws bo failed %d\n", ret); 2526 //TODO add BO back to validate_list? 2527 return ret; 2528 } 2529 amdgpu_amdkfd_remove_eviction_fence(gws_bo, 2530 process_info->eviction_fence); 2531 amdgpu_bo_unreserve(gws_bo); 2532 amdgpu_sync_free(&kgd_mem->sync); 2533 amdgpu_bo_unref(&gws_bo); 2534 mutex_destroy(&kgd_mem->lock); 2535 kfree(mem); 2536 return 0; 2537 } 2538 2539 /* Returns GPU-specific tiling mode information */ 2540 int amdgpu_amdkfd_get_tile_config(struct kgd_dev *kgd, 2541 struct tile_config *config) 2542 { 2543 struct amdgpu_device *adev = (struct amdgpu_device *)kgd; 2544 2545 config->gb_addr_config = adev->gfx.config.gb_addr_config; 2546 config->tile_config_ptr = adev->gfx.config.tile_mode_array; 2547 config->num_tile_configs = 2548 ARRAY_SIZE(adev->gfx.config.tile_mode_array); 2549 config->macro_tile_config_ptr = 2550 adev->gfx.config.macrotile_mode_array; 2551 config->num_macro_tile_configs = 2552 ARRAY_SIZE(adev->gfx.config.macrotile_mode_array); 2553 2554 /* Those values are not set from GFX9 onwards */ 2555 config->num_banks = adev->gfx.config.num_banks; 2556 config->num_ranks = adev->gfx.config.num_ranks; 2557 2558 return 0; 2559 } 2560