2 * Copyright 2014-2018 Advanced Micro Devices, Inc.
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:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
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.
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>
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"
36 /* Userptr restore delay, just long enough to allow consecutive VM
37 * changes to accumulate
39 #define AMDGPU_USERPTR_RESTORE_DELAY_MS 1
41 /* Impose limit on how much memory KFD can use */
43 uint64_t max_system_mem_limit;
44 uint64_t max_ttm_mem_limit;
45 int64_t system_mem_used;
47 spinlock_t mem_limit_lock;
50 static const char * const domain_bit_to_string[] = {
59 #define domain_string(domain) domain_bit_to_string[ffs(domain)-1]
61 static void amdgpu_amdkfd_restore_userptr_worker(struct work_struct *work);
64 static inline struct amdgpu_device *get_amdgpu_device(struct kgd_dev *kgd)
66 return (struct amdgpu_device *)kgd;
69 static bool kfd_mem_is_attached(struct amdgpu_vm *avm,
72 struct kfd_mem_attachment *entry;
74 list_for_each_entry(entry, &mem->attachments, list)
75 if (entry->bo_va->base.vm == avm)
81 /* Set memory usage limits. Current, limits are
82 * System (TTM + userptr) memory - 15/16th System RAM
83 * TTM memory - 3/8th System RAM
85 void amdgpu_amdkfd_gpuvm_init_mem_limits(void)
91 mem = si.freeram - si.freehigh;
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));
102 void amdgpu_amdkfd_reserve_system_mem(uint64_t size)
104 kfd_mem_limit.system_mem_used += size;
107 /* Estimate page table size needed to represent a given memory size
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).
117 #define ESTIMATE_PT_SIZE(mem_size) ((mem_size) >> 14)
119 static size_t amdgpu_amdkfd_acc_size(uint64_t size)
122 size *= sizeof(dma_addr_t) + sizeof(void *);
124 return __roundup_pow_of_two(sizeof(struct amdgpu_bo)) +
125 __roundup_pow_of_two(sizeof(struct ttm_tt)) +
129 static int amdgpu_amdkfd_reserve_mem_limit(struct amdgpu_device *adev,
130 uint64_t size, u32 domain, bool sg)
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;
137 acc_size = amdgpu_amdkfd_acc_size(size);
140 if (domain == AMDGPU_GEM_DOMAIN_GTT) {
142 system_mem_needed = acc_size + size;
143 ttm_mem_needed = acc_size + size;
144 } else if (domain == AMDGPU_GEM_DOMAIN_CPU && !sg) {
146 system_mem_needed = acc_size + size;
147 ttm_mem_needed = acc_size;
150 system_mem_needed = acc_size;
151 ttm_mem_needed = acc_size;
152 if (domain == AMDGPU_GEM_DOMAIN_VRAM)
156 spin_lock(&kfd_mem_limit.mem_limit_lock);
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");
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)) {
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;
175 spin_unlock(&kfd_mem_limit.mem_limit_lock);
179 static void unreserve_mem_limit(struct amdgpu_device *adev,
180 uint64_t size, u32 domain, bool sg)
184 acc_size = amdgpu_amdkfd_acc_size(size);
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;
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");
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");
207 spin_unlock(&kfd_mem_limit.mem_limit_lock);
210 void amdgpu_amdkfd_release_notify(struct amdgpu_bo *bo)
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);
216 if (bo->flags & AMDGPU_AMDKFD_CREATE_USERPTR_BO) {
217 domain = AMDGPU_GEM_DOMAIN_CPU;
221 unreserve_mem_limit(adev, amdgpu_bo_size(bo), domain, sg);
227 /* amdgpu_amdkfd_remove_eviction_fence - Removes eviction fence from BO's
228 * reservation object.
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.
234 * NOTE: Must be called with BO reserved i.e. bo->tbo.resv->lock held.
236 static int amdgpu_amdkfd_remove_eviction_fence(struct amdgpu_bo *bo,
237 struct amdgpu_amdkfd_fence *ef)
239 struct dma_resv *resv = bo->tbo.base.resv;
240 struct dma_resv_list *old, *new;
241 unsigned int i, j, k;
246 old = dma_resv_shared_list(resv);
250 new = kmalloc(struct_size(new, shared, old->shared_max), GFP_KERNEL);
254 /* Go through all the shared fences in the resevation object and sort
255 * the interesting ones to the end of the list.
257 for (i = 0, j = old->shared_count, k = 0; i < old->shared_count; ++i) {
260 f = rcu_dereference_protected(old->shared[i],
261 dma_resv_held(resv));
263 if (f->context == ef->base.context)
264 RCU_INIT_POINTER(new->shared[--j], f);
266 RCU_INIT_POINTER(new->shared[k++], f);
268 new->shared_max = old->shared_max;
269 new->shared_count = k;
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);
276 /* Drop the references to the removed fences or move them to ef_list */
277 for (i = j; i < old->shared_count; ++i) {
280 f = rcu_dereference_protected(new->shared[i],
281 dma_resv_held(resv));
289 int amdgpu_amdkfd_remove_fence_on_pt_pd_bos(struct amdgpu_bo *bo)
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;
298 /* we can always get vm_bo from root PD bo.*/
310 info = vm->process_info;
311 if (!info || !info->eviction_fence)
314 ef = container_of(dma_fence_get(&info->eviction_fence->base),
315 struct amdgpu_amdkfd_fence, base);
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);
321 dma_fence_put(&ef->base);
325 static int amdgpu_amdkfd_bo_validate(struct amdgpu_bo *bo, uint32_t domain,
328 struct ttm_operation_ctx ctx = { false, false };
331 if (WARN(amdgpu_ttm_tt_get_usermm(bo->tbo.ttm),
332 "Called with userptr BO"))
335 amdgpu_bo_placement_from_domain(bo, domain);
337 ret = ttm_bo_validate(&bo->tbo, &bo->placement, &ctx);
341 amdgpu_bo_sync_wait(bo, AMDGPU_FENCE_OWNER_KFD, false);
347 static int amdgpu_amdkfd_validate_vm_bo(void *_unused, struct amdgpu_bo *bo)
349 return amdgpu_amdkfd_bo_validate(bo, bo->allowed_domains, false);
352 /* vm_validate_pt_pd_bos - Validate page table and directory BOs
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
359 static int vm_validate_pt_pd_bos(struct amdgpu_vm *vm)
361 struct amdgpu_bo *pd = vm->root.bo;
362 struct amdgpu_device *adev = amdgpu_ttm_adev(pd->tbo.bdev);
365 ret = amdgpu_vm_validate_pt_bos(adev, vm, amdgpu_amdkfd_validate_vm_bo, NULL);
367 pr_err("failed to validate PT BOs\n");
371 ret = amdgpu_amdkfd_validate_vm_bo(NULL, pd);
373 pr_err("failed to validate PD\n");
377 vm->pd_phys_addr = amdgpu_gmc_pd_addr(vm->root.bo);
379 if (vm->use_cpu_for_update) {
380 ret = amdgpu_bo_kmap(pd, NULL);
382 pr_err("failed to kmap PD, ret=%d\n", ret);
390 static int vm_update_pds(struct amdgpu_vm *vm, struct amdgpu_sync *sync)
392 struct amdgpu_bo *pd = vm->root.bo;
393 struct amdgpu_device *adev = amdgpu_ttm_adev(pd->tbo.bdev);
396 ret = amdgpu_vm_update_pdes(adev, vm, false);
400 return amdgpu_sync_fence(sync, vm->last_update);
403 static uint64_t get_pte_flags(struct amdgpu_device *adev, struct kgd_mem *mem)
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;
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;
418 switch (adev->asic_type) {
420 if (mem->alloc_flags & KFD_IOC_ALLOC_MEM_FLAGS_VRAM) {
422 mapping_flags |= coherent ?
423 AMDGPU_VM_MTYPE_CC : AMDGPU_VM_MTYPE_RW;
425 mapping_flags |= coherent ?
426 AMDGPU_VM_MTYPE_UC : AMDGPU_VM_MTYPE_NC;
428 mapping_flags |= coherent ?
429 AMDGPU_VM_MTYPE_UC : AMDGPU_VM_MTYPE_NC;
433 if (coherent && uncached) {
434 if (adev->gmc.xgmi.connected_to_cpu ||
435 !(mem->alloc_flags & KFD_IOC_ALLOC_MEM_FLAGS_VRAM))
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)
445 mapping_flags |= coherent ?
446 AMDGPU_VM_MTYPE_UC : AMDGPU_VM_MTYPE_NC;
447 if (amdgpu_xgmi_same_hive(adev, bo_adev))
452 mapping_flags |= coherent ?
453 AMDGPU_VM_MTYPE_UC : AMDGPU_VM_MTYPE_NC;
457 mapping_flags |= coherent ?
458 AMDGPU_VM_MTYPE_UC : AMDGPU_VM_MTYPE_NC;
461 pte_flags = amdgpu_gem_va_map_flags(adev, mapping_flags);
462 pte_flags |= snoop ? AMDGPU_PTE_SNOOPED : 0;
468 kfd_mem_dmamap_userptr(struct kgd_mem *mem,
469 struct kfd_mem_attachment *attachment)
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;
481 ttm->sg = kmalloc(sizeof(*ttm->sg), GFP_KERNEL);
482 if (unlikely(!ttm->sg))
485 if (WARN_ON(ttm->num_pages != src_ttm->num_pages))
488 /* Same sequence as in amdgpu_ttm_tt_pin_userptr */
489 ret = sg_alloc_table_from_pages(ttm->sg, src_ttm->pages,
491 (u64)ttm->num_pages << PAGE_SHIFT,
496 ret = dma_map_sgtable(adev->dev, ttm->sg, direction, 0);
500 drm_prime_sg_to_dma_addr_array(ttm->sg, ttm->dma_address,
503 amdgpu_bo_placement_from_domain(bo, AMDGPU_GEM_DOMAIN_GTT);
504 ret = ttm_bo_validate(&bo->tbo, &bo->placement, &ctx);
511 dma_unmap_sgtable(adev->dev, ttm->sg, direction, 0);
513 pr_err("DMA map userptr failed: %d\n", ret);
514 sg_free_table(ttm->sg);
522 kfd_mem_dmamap_dmabuf(struct kfd_mem_attachment *attachment)
524 struct ttm_operation_ctx ctx = {.interruptible = true};
525 struct amdgpu_bo *bo = attachment->bo_va->base.bo;
527 amdgpu_bo_placement_from_domain(bo, AMDGPU_GEM_DOMAIN_GTT);
528 return ttm_bo_validate(&bo->tbo, &bo->placement, &ctx);
532 kfd_mem_dmamap_attachment(struct kgd_mem *mem,
533 struct kfd_mem_attachment *attachment)
535 switch (attachment->type) {
536 case KFD_MEM_ATT_SHARED:
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);
549 kfd_mem_dmaunmap_userptr(struct kgd_mem *mem,
550 struct kfd_mem_attachment *attachment)
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;
560 if (unlikely(!ttm->sg))
563 amdgpu_bo_placement_from_domain(bo, AMDGPU_GEM_DOMAIN_CPU);
564 ttm_bo_validate(&bo->tbo, &bo->placement, &ctx);
566 dma_unmap_sgtable(adev->dev, ttm->sg, direction, 0);
567 sg_free_table(ttm->sg);
573 kfd_mem_dmaunmap_dmabuf(struct kfd_mem_attachment *attachment)
575 struct ttm_operation_ctx ctx = {.interruptible = true};
576 struct amdgpu_bo *bo = attachment->bo_va->base.bo;
578 amdgpu_bo_placement_from_domain(bo, AMDGPU_GEM_DOMAIN_CPU);
579 ttm_bo_validate(&bo->tbo, &bo->placement, &ctx);
583 kfd_mem_dmaunmap_attachment(struct kgd_mem *mem,
584 struct kfd_mem_attachment *attachment)
586 switch (attachment->type) {
587 case KFD_MEM_ATT_SHARED:
589 case KFD_MEM_ATT_USERPTR:
590 kfd_mem_dmaunmap_userptr(mem, attachment);
592 case KFD_MEM_ATT_DMABUF:
593 kfd_mem_dmaunmap_dmabuf(attachment);
601 kfd_mem_attach_userptr(struct amdgpu_device *adev, struct kgd_mem *mem,
602 struct amdgpu_bo **bo)
604 unsigned long bo_size = mem->bo->tbo.base.size;
605 struct drm_gem_object *gobj;
608 ret = amdgpu_bo_reserve(mem->bo, false);
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,
617 amdgpu_bo_unreserve(mem->bo);
621 *bo = gem_to_amdgpu_bo(gobj);
622 (*bo)->parent = amdgpu_bo_ref(mem->bo);
628 kfd_mem_attach_dmabuf(struct amdgpu_device *adev, struct kgd_mem *mem,
629 struct amdgpu_bo **bo)
631 struct drm_gem_object *gobj;
635 mem->dmabuf = amdgpu_gem_prime_export(&mem->bo->tbo.base,
636 mem->alloc_flags & KFD_IOC_ALLOC_MEM_FLAGS_WRITABLE ?
638 if (IS_ERR(mem->dmabuf)) {
639 ret = PTR_ERR(mem->dmabuf);
645 gobj = amdgpu_gem_prime_import(adev_to_drm(adev), mem->dmabuf);
647 return PTR_ERR(gobj);
649 /* Import takes an extra reference on the dmabuf. Drop it now to
650 * avoid leaking it. We only need the one reference in
653 dma_buf_put(mem->dmabuf);
655 *bo = gem_to_amdgpu_bo(gobj);
656 (*bo)->flags |= AMDGPU_GEM_CREATE_PREEMPTIBLE;
657 (*bo)->parent = amdgpu_bo_ref(mem->bo);
662 /* kfd_mem_attach - Add a BO to a VM
664 * Everything that needs to bo done only once when a BO is first added
665 * to a VM. It can later be mapped and unmapped many times without
666 * repeating these steps.
668 * 0. Create BO for DMA mapping, if needed
669 * 1. Allocate and initialize BO VA entry data structure
670 * 2. Add BO to the VM
671 * 3. Determine ASIC-specific PTE flags
672 * 4. Alloc page tables and directories if needed
673 * 4a. Validate new page tables and directories
675 static int kfd_mem_attach(struct amdgpu_device *adev, struct kgd_mem *mem,
676 struct amdgpu_vm *vm, bool is_aql)
678 struct amdgpu_device *bo_adev = amdgpu_ttm_adev(mem->bo->tbo.bdev);
679 unsigned long bo_size = mem->bo->tbo.base.size;
680 uint64_t va = mem->va;
681 struct kfd_mem_attachment *attachment[2] = {NULL, NULL};
682 struct amdgpu_bo *bo[2] = {NULL, NULL};
686 pr_err("Invalid VA when adding BO to VM\n");
690 for (i = 0; i <= is_aql; i++) {
691 attachment[i] = kzalloc(sizeof(*attachment[i]), GFP_KERNEL);
692 if (unlikely(!attachment[i])) {
697 pr_debug("\t add VA 0x%llx - 0x%llx to vm %p\n", va,
700 if (adev == bo_adev || (mem->domain == AMDGPU_GEM_DOMAIN_VRAM &&
701 amdgpu_xgmi_same_hive(adev, bo_adev))) {
702 /* Mappings on the local GPU and VRAM mappings in the
703 * local hive share the original BO
705 attachment[i]->type = KFD_MEM_ATT_SHARED;
707 drm_gem_object_get(&bo[i]->tbo.base);
709 /* Multiple mappings on the same GPU share the BO */
710 attachment[i]->type = KFD_MEM_ATT_SHARED;
712 drm_gem_object_get(&bo[i]->tbo.base);
713 } else if (amdgpu_ttm_tt_get_usermm(mem->bo->tbo.ttm)) {
714 /* Create an SG BO to DMA-map userptrs on other GPUs */
715 attachment[i]->type = KFD_MEM_ATT_USERPTR;
716 ret = kfd_mem_attach_userptr(adev, mem, &bo[i]);
719 } else if (mem->domain == AMDGPU_GEM_DOMAIN_GTT &&
720 mem->bo->tbo.type != ttm_bo_type_sg) {
721 /* GTT BOs use DMA-mapping ability of dynamic-attach
722 * DMA bufs. TODO: The same should work for VRAM on
725 attachment[i]->type = KFD_MEM_ATT_DMABUF;
726 ret = kfd_mem_attach_dmabuf(adev, mem, &bo[i]);
730 /* FIXME: Need to DMA-map other BO types:
731 * large-BAR VRAM, doorbells, MMIO remap
733 attachment[i]->type = KFD_MEM_ATT_SHARED;
735 drm_gem_object_get(&bo[i]->tbo.base);
738 /* Add BO to VM internal data structures */
739 ret = amdgpu_bo_reserve(bo[i], false);
741 pr_debug("Unable to reserve BO during memory attach");
744 attachment[i]->bo_va = amdgpu_vm_bo_add(adev, vm, bo[i]);
745 amdgpu_bo_unreserve(bo[i]);
746 if (unlikely(!attachment[i]->bo_va)) {
748 pr_err("Failed to add BO object to VM. ret == %d\n",
752 attachment[i]->va = va;
753 attachment[i]->pte_flags = get_pte_flags(adev, mem);
754 attachment[i]->adev = adev;
755 list_add(&attachment[i]->list, &mem->attachments);
763 for (; i >= 0; i--) {
766 if (attachment[i]->bo_va) {
767 amdgpu_bo_reserve(bo[i], true);
768 amdgpu_vm_bo_rmv(adev, attachment[i]->bo_va);
769 amdgpu_bo_unreserve(bo[i]);
770 list_del(&attachment[i]->list);
773 drm_gem_object_put(&bo[i]->tbo.base);
774 kfree(attachment[i]);
779 static void kfd_mem_detach(struct kfd_mem_attachment *attachment)
781 struct amdgpu_bo *bo = attachment->bo_va->base.bo;
783 pr_debug("\t remove VA 0x%llx in entry %p\n",
784 attachment->va, attachment);
785 amdgpu_vm_bo_rmv(attachment->adev, attachment->bo_va);
786 drm_gem_object_put(&bo->tbo.base);
787 list_del(&attachment->list);
791 static void add_kgd_mem_to_kfd_bo_list(struct kgd_mem *mem,
792 struct amdkfd_process_info *process_info,
795 struct ttm_validate_buffer *entry = &mem->validate_list;
796 struct amdgpu_bo *bo = mem->bo;
798 INIT_LIST_HEAD(&entry->head);
799 entry->num_shared = 1;
800 entry->bo = &bo->tbo;
801 mutex_lock(&process_info->lock);
803 list_add_tail(&entry->head, &process_info->userptr_valid_list);
805 list_add_tail(&entry->head, &process_info->kfd_bo_list);
806 mutex_unlock(&process_info->lock);
809 static void remove_kgd_mem_from_kfd_bo_list(struct kgd_mem *mem,
810 struct amdkfd_process_info *process_info)
812 struct ttm_validate_buffer *bo_list_entry;
814 bo_list_entry = &mem->validate_list;
815 mutex_lock(&process_info->lock);
816 list_del(&bo_list_entry->head);
817 mutex_unlock(&process_info->lock);
820 /* Initializes user pages. It registers the MMU notifier and validates
821 * the userptr BO in the GTT domain.
823 * The BO must already be on the userptr_valid_list. Otherwise an
824 * eviction and restore may happen that leaves the new BO unmapped
825 * with the user mode queues running.
827 * Takes the process_info->lock to protect against concurrent restore
830 * Returns 0 for success, negative errno for errors.
832 static int init_user_pages(struct kgd_mem *mem, uint64_t user_addr)
834 struct amdkfd_process_info *process_info = mem->process_info;
835 struct amdgpu_bo *bo = mem->bo;
836 struct ttm_operation_ctx ctx = { true, false };
839 mutex_lock(&process_info->lock);
841 ret = amdgpu_ttm_tt_set_userptr(&bo->tbo, user_addr, 0);
843 pr_err("%s: Failed to set userptr: %d\n", __func__, ret);
847 ret = amdgpu_mn_register(bo, user_addr);
849 pr_err("%s: Failed to register MMU notifier: %d\n",
854 ret = amdgpu_ttm_tt_get_user_pages(bo, bo->tbo.ttm->pages);
856 pr_err("%s: Failed to get user pages: %d\n", __func__, ret);
860 ret = amdgpu_bo_reserve(bo, true);
862 pr_err("%s: Failed to reserve BO\n", __func__);
865 amdgpu_bo_placement_from_domain(bo, mem->domain);
866 ret = ttm_bo_validate(&bo->tbo, &bo->placement, &ctx);
868 pr_err("%s: failed to validate BO\n", __func__);
869 amdgpu_bo_unreserve(bo);
872 amdgpu_ttm_tt_get_user_pages_done(bo->tbo.ttm);
875 amdgpu_mn_unregister(bo);
877 mutex_unlock(&process_info->lock);
881 /* Reserving a BO and its page table BOs must happen atomically to
882 * avoid deadlocks. Some operations update multiple VMs at once. Track
883 * all the reservation info in a context structure. Optionally a sync
884 * object can track VM updates.
886 struct bo_vm_reservation_context {
887 struct amdgpu_bo_list_entry kfd_bo; /* BO list entry for the KFD BO */
888 unsigned int n_vms; /* Number of VMs reserved */
889 struct amdgpu_bo_list_entry *vm_pd; /* Array of VM BO list entries */
890 struct ww_acquire_ctx ticket; /* Reservation ticket */
891 struct list_head list, duplicates; /* BO lists */
892 struct amdgpu_sync *sync; /* Pointer to sync object */
893 bool reserved; /* Whether BOs are reserved */
897 BO_VM_NOT_MAPPED = 0, /* Match VMs where a BO is not mapped */
898 BO_VM_MAPPED, /* Match VMs where a BO is mapped */
899 BO_VM_ALL, /* Match all VMs a BO was added to */
903 * reserve_bo_and_vm - reserve a BO and a VM unconditionally.
904 * @mem: KFD BO structure.
905 * @vm: the VM to reserve.
906 * @ctx: the struct that will be used in unreserve_bo_and_vms().
908 static int reserve_bo_and_vm(struct kgd_mem *mem,
909 struct amdgpu_vm *vm,
910 struct bo_vm_reservation_context *ctx)
912 struct amdgpu_bo *bo = mem->bo;
917 ctx->reserved = false;
919 ctx->sync = &mem->sync;
921 INIT_LIST_HEAD(&ctx->list);
922 INIT_LIST_HEAD(&ctx->duplicates);
924 ctx->vm_pd = kcalloc(ctx->n_vms, sizeof(*ctx->vm_pd), GFP_KERNEL);
928 ctx->kfd_bo.priority = 0;
929 ctx->kfd_bo.tv.bo = &bo->tbo;
930 ctx->kfd_bo.tv.num_shared = 1;
931 list_add(&ctx->kfd_bo.tv.head, &ctx->list);
933 amdgpu_vm_get_pd_bo(vm, &ctx->list, &ctx->vm_pd[0]);
935 ret = ttm_eu_reserve_buffers(&ctx->ticket, &ctx->list,
936 false, &ctx->duplicates);
938 pr_err("Failed to reserve buffers in ttm.\n");
944 ctx->reserved = true;
949 * reserve_bo_and_cond_vms - reserve a BO and some VMs conditionally
950 * @mem: KFD BO structure.
951 * @vm: the VM to reserve. If NULL, then all VMs associated with the BO
952 * is used. Otherwise, a single VM associated with the BO.
953 * @map_type: the mapping status that will be used to filter the VMs.
954 * @ctx: the struct that will be used in unreserve_bo_and_vms().
956 * Returns 0 for success, negative for failure.
958 static int reserve_bo_and_cond_vms(struct kgd_mem *mem,
959 struct amdgpu_vm *vm, enum bo_vm_match map_type,
960 struct bo_vm_reservation_context *ctx)
962 struct amdgpu_bo *bo = mem->bo;
963 struct kfd_mem_attachment *entry;
967 ctx->reserved = false;
970 ctx->sync = &mem->sync;
972 INIT_LIST_HEAD(&ctx->list);
973 INIT_LIST_HEAD(&ctx->duplicates);
975 list_for_each_entry(entry, &mem->attachments, list) {
976 if ((vm && vm != entry->bo_va->base.vm) ||
977 (entry->is_mapped != map_type
978 && map_type != BO_VM_ALL))
984 if (ctx->n_vms != 0) {
985 ctx->vm_pd = kcalloc(ctx->n_vms, sizeof(*ctx->vm_pd),
991 ctx->kfd_bo.priority = 0;
992 ctx->kfd_bo.tv.bo = &bo->tbo;
993 ctx->kfd_bo.tv.num_shared = 1;
994 list_add(&ctx->kfd_bo.tv.head, &ctx->list);
997 list_for_each_entry(entry, &mem->attachments, list) {
998 if ((vm && vm != entry->bo_va->base.vm) ||
999 (entry->is_mapped != map_type
1000 && map_type != BO_VM_ALL))
1003 amdgpu_vm_get_pd_bo(entry->bo_va->base.vm, &ctx->list,
1008 ret = ttm_eu_reserve_buffers(&ctx->ticket, &ctx->list,
1009 false, &ctx->duplicates);
1011 pr_err("Failed to reserve buffers in ttm.\n");
1017 ctx->reserved = true;
1022 * unreserve_bo_and_vms - Unreserve BO and VMs from a reservation context
1023 * @ctx: Reservation context to unreserve
1024 * @wait: Optionally wait for a sync object representing pending VM updates
1025 * @intr: Whether the wait is interruptible
1027 * Also frees any resources allocated in
1028 * reserve_bo_and_(cond_)vm(s). Returns the status from
1031 static int unreserve_bo_and_vms(struct bo_vm_reservation_context *ctx,
1032 bool wait, bool intr)
1037 ret = amdgpu_sync_wait(ctx->sync, intr);
1040 ttm_eu_backoff_reservation(&ctx->ticket, &ctx->list);
1045 ctx->reserved = false;
1051 static void unmap_bo_from_gpuvm(struct kgd_mem *mem,
1052 struct kfd_mem_attachment *entry,
1053 struct amdgpu_sync *sync)
1055 struct amdgpu_bo_va *bo_va = entry->bo_va;
1056 struct amdgpu_device *adev = entry->adev;
1057 struct amdgpu_vm *vm = bo_va->base.vm;
1059 amdgpu_vm_bo_unmap(adev, bo_va, entry->va);
1061 amdgpu_vm_clear_freed(adev, vm, &bo_va->last_pt_update);
1063 amdgpu_sync_fence(sync, bo_va->last_pt_update);
1065 kfd_mem_dmaunmap_attachment(mem, entry);
1068 static int update_gpuvm_pte(struct kgd_mem *mem,
1069 struct kfd_mem_attachment *entry,
1070 struct amdgpu_sync *sync,
1073 struct amdgpu_bo_va *bo_va = entry->bo_va;
1074 struct amdgpu_device *adev = entry->adev;
1077 ret = kfd_mem_dmamap_attachment(mem, entry);
1081 /* Update the page tables */
1082 ret = amdgpu_vm_bo_update(adev, bo_va, false, table_freed);
1084 pr_err("amdgpu_vm_bo_update failed\n");
1088 return amdgpu_sync_fence(sync, bo_va->last_pt_update);
1091 static int map_bo_to_gpuvm(struct kgd_mem *mem,
1092 struct kfd_mem_attachment *entry,
1093 struct amdgpu_sync *sync,
1099 /* Set virtual address for the allocation */
1100 ret = amdgpu_vm_bo_map(entry->adev, entry->bo_va, entry->va, 0,
1101 amdgpu_bo_size(entry->bo_va->base.bo),
1104 pr_err("Failed to map VA 0x%llx in vm. ret %d\n",
1112 ret = update_gpuvm_pte(mem, entry, sync, table_freed);
1114 pr_err("update_gpuvm_pte() failed\n");
1115 goto update_gpuvm_pte_failed;
1120 update_gpuvm_pte_failed:
1121 unmap_bo_from_gpuvm(mem, entry, sync);
1125 static struct sg_table *create_doorbell_sg(uint64_t addr, uint32_t size)
1127 struct sg_table *sg = kmalloc(sizeof(*sg), GFP_KERNEL);
1131 if (sg_alloc_table(sg, 1, GFP_KERNEL)) {
1135 sg->sgl->dma_address = addr;
1136 sg->sgl->length = size;
1137 #ifdef CONFIG_NEED_SG_DMA_LENGTH
1138 sg->sgl->dma_length = size;
1143 static int process_validate_vms(struct amdkfd_process_info *process_info)
1145 struct amdgpu_vm *peer_vm;
1148 list_for_each_entry(peer_vm, &process_info->vm_list_head,
1150 ret = vm_validate_pt_pd_bos(peer_vm);
1158 static int process_sync_pds_resv(struct amdkfd_process_info *process_info,
1159 struct amdgpu_sync *sync)
1161 struct amdgpu_vm *peer_vm;
1164 list_for_each_entry(peer_vm, &process_info->vm_list_head,
1166 struct amdgpu_bo *pd = peer_vm->root.bo;
1168 ret = amdgpu_sync_resv(NULL, sync, pd->tbo.base.resv,
1169 AMDGPU_SYNC_NE_OWNER,
1170 AMDGPU_FENCE_OWNER_KFD);
1178 static int process_update_pds(struct amdkfd_process_info *process_info,
1179 struct amdgpu_sync *sync)
1181 struct amdgpu_vm *peer_vm;
1184 list_for_each_entry(peer_vm, &process_info->vm_list_head,
1186 ret = vm_update_pds(peer_vm, sync);
1194 static int init_kfd_vm(struct amdgpu_vm *vm, void **process_info,
1195 struct dma_fence **ef)
1197 struct amdkfd_process_info *info = NULL;
1200 if (!*process_info) {
1201 info = kzalloc(sizeof(*info), GFP_KERNEL);
1205 mutex_init(&info->lock);
1206 INIT_LIST_HEAD(&info->vm_list_head);
1207 INIT_LIST_HEAD(&info->kfd_bo_list);
1208 INIT_LIST_HEAD(&info->userptr_valid_list);
1209 INIT_LIST_HEAD(&info->userptr_inval_list);
1211 info->eviction_fence =
1212 amdgpu_amdkfd_fence_create(dma_fence_context_alloc(1),
1215 if (!info->eviction_fence) {
1216 pr_err("Failed to create eviction fence\n");
1218 goto create_evict_fence_fail;
1221 info->pid = get_task_pid(current->group_leader, PIDTYPE_PID);
1222 atomic_set(&info->evicted_bos, 0);
1223 INIT_DELAYED_WORK(&info->restore_userptr_work,
1224 amdgpu_amdkfd_restore_userptr_worker);
1226 *process_info = info;
1227 *ef = dma_fence_get(&info->eviction_fence->base);
1230 vm->process_info = *process_info;
1232 /* Validate page directory and attach eviction fence */
1233 ret = amdgpu_bo_reserve(vm->root.bo, true);
1235 goto reserve_pd_fail;
1236 ret = vm_validate_pt_pd_bos(vm);
1238 pr_err("validate_pt_pd_bos() failed\n");
1239 goto validate_pd_fail;
1241 ret = amdgpu_bo_sync_wait(vm->root.bo,
1242 AMDGPU_FENCE_OWNER_KFD, false);
1245 ret = dma_resv_reserve_shared(vm->root.bo->tbo.base.resv, 1);
1247 goto reserve_shared_fail;
1248 amdgpu_bo_fence(vm->root.bo,
1249 &vm->process_info->eviction_fence->base, true);
1250 amdgpu_bo_unreserve(vm->root.bo);
1252 /* Update process info */
1253 mutex_lock(&vm->process_info->lock);
1254 list_add_tail(&vm->vm_list_node,
1255 &(vm->process_info->vm_list_head));
1256 vm->process_info->n_vms++;
1257 mutex_unlock(&vm->process_info->lock);
1261 reserve_shared_fail:
1264 amdgpu_bo_unreserve(vm->root.bo);
1266 vm->process_info = NULL;
1268 /* Two fence references: one in info and one in *ef */
1269 dma_fence_put(&info->eviction_fence->base);
1272 *process_info = NULL;
1274 create_evict_fence_fail:
1275 mutex_destroy(&info->lock);
1281 int amdgpu_amdkfd_gpuvm_acquire_process_vm(struct kgd_dev *kgd,
1282 struct file *filp, u32 pasid,
1283 void **process_info,
1284 struct dma_fence **ef)
1286 struct amdgpu_device *adev = get_amdgpu_device(kgd);
1287 struct amdgpu_fpriv *drv_priv;
1288 struct amdgpu_vm *avm;
1291 ret = amdgpu_file_to_fpriv(filp, &drv_priv);
1294 avm = &drv_priv->vm;
1296 /* Already a compute VM? */
1297 if (avm->process_info)
1300 /* Free the original amdgpu allocated pasid,
1301 * will be replaced with kfd allocated pasid.
1304 amdgpu_pasid_free(avm->pasid);
1305 amdgpu_vm_set_pasid(adev, avm, 0);
1308 /* Convert VM into a compute VM */
1309 ret = amdgpu_vm_make_compute(adev, avm);
1313 ret = amdgpu_vm_set_pasid(adev, avm, pasid);
1316 /* Initialize KFD part of the VM and process info */
1317 ret = init_kfd_vm(avm, process_info, ef);
1321 amdgpu_vm_set_task_info(avm);
1326 void amdgpu_amdkfd_gpuvm_destroy_cb(struct amdgpu_device *adev,
1327 struct amdgpu_vm *vm)
1329 struct amdkfd_process_info *process_info = vm->process_info;
1330 struct amdgpu_bo *pd = vm->root.bo;
1335 /* Release eviction fence from PD */
1336 amdgpu_bo_reserve(pd, false);
1337 amdgpu_bo_fence(pd, NULL, false);
1338 amdgpu_bo_unreserve(pd);
1340 /* Update process info */
1341 mutex_lock(&process_info->lock);
1342 process_info->n_vms--;
1343 list_del(&vm->vm_list_node);
1344 mutex_unlock(&process_info->lock);
1346 vm->process_info = NULL;
1348 /* Release per-process resources when last compute VM is destroyed */
1349 if (!process_info->n_vms) {
1350 WARN_ON(!list_empty(&process_info->kfd_bo_list));
1351 WARN_ON(!list_empty(&process_info->userptr_valid_list));
1352 WARN_ON(!list_empty(&process_info->userptr_inval_list));
1354 dma_fence_put(&process_info->eviction_fence->base);
1355 cancel_delayed_work_sync(&process_info->restore_userptr_work);
1356 put_pid(process_info->pid);
1357 mutex_destroy(&process_info->lock);
1358 kfree(process_info);
1362 void amdgpu_amdkfd_gpuvm_release_process_vm(struct kgd_dev *kgd, void *drm_priv)
1364 struct amdgpu_device *adev = get_amdgpu_device(kgd);
1365 struct amdgpu_vm *avm;
1367 if (WARN_ON(!kgd || !drm_priv))
1370 avm = drm_priv_to_vm(drm_priv);
1372 pr_debug("Releasing process vm %p\n", avm);
1374 /* The original pasid of amdgpu vm has already been
1375 * released during making a amdgpu vm to a compute vm
1376 * The current pasid is managed by kfd and will be
1377 * released on kfd process destroy. Set amdgpu pasid
1378 * to 0 to avoid duplicate release.
1380 amdgpu_vm_release_compute(adev, avm);
1383 uint64_t amdgpu_amdkfd_gpuvm_get_process_page_dir(void *drm_priv)
1385 struct amdgpu_vm *avm = drm_priv_to_vm(drm_priv);
1386 struct amdgpu_bo *pd = avm->root.bo;
1387 struct amdgpu_device *adev = amdgpu_ttm_adev(pd->tbo.bdev);
1389 if (adev->asic_type < CHIP_VEGA10)
1390 return avm->pd_phys_addr >> AMDGPU_GPU_PAGE_SHIFT;
1391 return avm->pd_phys_addr;
1394 int amdgpu_amdkfd_gpuvm_alloc_memory_of_gpu(
1395 struct kgd_dev *kgd, uint64_t va, uint64_t size,
1396 void *drm_priv, struct kgd_mem **mem,
1397 uint64_t *offset, uint32_t flags)
1399 struct amdgpu_device *adev = get_amdgpu_device(kgd);
1400 struct amdgpu_vm *avm = drm_priv_to_vm(drm_priv);
1401 enum ttm_bo_type bo_type = ttm_bo_type_device;
1402 struct sg_table *sg = NULL;
1403 uint64_t user_addr = 0;
1404 struct amdgpu_bo *bo;
1405 struct drm_gem_object *gobj;
1406 u32 domain, alloc_domain;
1411 * Check on which domain to allocate BO
1413 if (flags & KFD_IOC_ALLOC_MEM_FLAGS_VRAM) {
1414 domain = alloc_domain = AMDGPU_GEM_DOMAIN_VRAM;
1415 alloc_flags = AMDGPU_GEM_CREATE_VRAM_WIPE_ON_RELEASE;
1416 alloc_flags |= (flags & KFD_IOC_ALLOC_MEM_FLAGS_PUBLIC) ?
1417 AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED : 0;
1418 } else if (flags & KFD_IOC_ALLOC_MEM_FLAGS_GTT) {
1419 domain = alloc_domain = AMDGPU_GEM_DOMAIN_GTT;
1421 } else if (flags & KFD_IOC_ALLOC_MEM_FLAGS_USERPTR) {
1422 domain = AMDGPU_GEM_DOMAIN_GTT;
1423 alloc_domain = AMDGPU_GEM_DOMAIN_CPU;
1424 alloc_flags = AMDGPU_GEM_CREATE_PREEMPTIBLE;
1425 if (!offset || !*offset)
1427 user_addr = untagged_addr(*offset);
1428 } else if (flags & (KFD_IOC_ALLOC_MEM_FLAGS_DOORBELL |
1429 KFD_IOC_ALLOC_MEM_FLAGS_MMIO_REMAP)) {
1430 domain = AMDGPU_GEM_DOMAIN_GTT;
1431 alloc_domain = AMDGPU_GEM_DOMAIN_CPU;
1432 bo_type = ttm_bo_type_sg;
1434 if (size > UINT_MAX)
1436 sg = create_doorbell_sg(*offset, size);
1443 *mem = kzalloc(sizeof(struct kgd_mem), GFP_KERNEL);
1448 INIT_LIST_HEAD(&(*mem)->attachments);
1449 mutex_init(&(*mem)->lock);
1450 (*mem)->aql_queue = !!(flags & KFD_IOC_ALLOC_MEM_FLAGS_AQL_QUEUE_MEM);
1452 /* Workaround for AQL queue wraparound bug. Map the same
1453 * memory twice. That means we only actually allocate half
1456 if ((*mem)->aql_queue)
1459 (*mem)->alloc_flags = flags;
1461 amdgpu_sync_create(&(*mem)->sync);
1463 ret = amdgpu_amdkfd_reserve_mem_limit(adev, size, alloc_domain, !!sg);
1465 pr_debug("Insufficient memory\n");
1466 goto err_reserve_limit;
1469 pr_debug("\tcreate BO VA 0x%llx size 0x%llx domain %s\n",
1470 va, size, domain_string(alloc_domain));
1472 ret = amdgpu_gem_object_create(adev, size, 1, alloc_domain, alloc_flags,
1473 bo_type, NULL, &gobj);
1475 pr_debug("Failed to create BO on domain %s. ret %d\n",
1476 domain_string(alloc_domain), ret);
1479 ret = drm_vma_node_allow(&gobj->vma_node, drm_priv);
1481 pr_debug("Failed to allow vma node access. ret %d\n", ret);
1482 goto err_node_allow;
1484 bo = gem_to_amdgpu_bo(gobj);
1485 if (bo_type == ttm_bo_type_sg) {
1487 bo->tbo.ttm->sg = sg;
1492 bo->flags |= AMDGPU_AMDKFD_CREATE_USERPTR_BO;
1495 (*mem)->domain = domain;
1496 (*mem)->mapped_to_gpu_memory = 0;
1497 (*mem)->process_info = avm->process_info;
1498 add_kgd_mem_to_kfd_bo_list(*mem, avm->process_info, user_addr);
1501 ret = init_user_pages(*mem, user_addr);
1503 goto allocate_init_user_pages_failed;
1507 *offset = amdgpu_bo_mmap_offset(bo);
1511 allocate_init_user_pages_failed:
1512 remove_kgd_mem_from_kfd_bo_list(*mem, avm->process_info);
1513 drm_vma_node_revoke(&gobj->vma_node, drm_priv);
1515 drm_gem_object_put(gobj);
1516 /* Don't unreserve system mem limit twice */
1517 goto err_reserve_limit;
1519 unreserve_mem_limit(adev, size, alloc_domain, !!sg);
1521 mutex_destroy(&(*mem)->lock);
1531 int amdgpu_amdkfd_gpuvm_free_memory_of_gpu(
1532 struct kgd_dev *kgd, struct kgd_mem *mem, void *drm_priv,
1535 struct amdkfd_process_info *process_info = mem->process_info;
1536 unsigned long bo_size = mem->bo->tbo.base.size;
1537 struct kfd_mem_attachment *entry, *tmp;
1538 struct bo_vm_reservation_context ctx;
1539 struct ttm_validate_buffer *bo_list_entry;
1540 unsigned int mapped_to_gpu_memory;
1542 bool is_imported = false;
1544 mutex_lock(&mem->lock);
1545 mapped_to_gpu_memory = mem->mapped_to_gpu_memory;
1546 is_imported = mem->is_imported;
1547 mutex_unlock(&mem->lock);
1548 /* lock is not needed after this, since mem is unused and will
1552 if (mapped_to_gpu_memory > 0) {
1553 pr_debug("BO VA 0x%llx size 0x%lx is still mapped.\n",
1558 /* Make sure restore workers don't access the BO any more */
1559 bo_list_entry = &mem->validate_list;
1560 mutex_lock(&process_info->lock);
1561 list_del(&bo_list_entry->head);
1562 mutex_unlock(&process_info->lock);
1564 /* No more MMU notifiers */
1565 amdgpu_mn_unregister(mem->bo);
1567 ret = reserve_bo_and_cond_vms(mem, NULL, BO_VM_ALL, &ctx);
1571 /* The eviction fence should be removed by the last unmap.
1572 * TODO: Log an error condition if the bo still has the eviction fence
1575 amdgpu_amdkfd_remove_eviction_fence(mem->bo,
1576 process_info->eviction_fence);
1577 pr_debug("Release VA 0x%llx - 0x%llx\n", mem->va,
1578 mem->va + bo_size * (1 + mem->aql_queue));
1580 /* Remove from VM internal data structures */
1581 list_for_each_entry_safe(entry, tmp, &mem->attachments, list)
1582 kfd_mem_detach(entry);
1584 ret = unreserve_bo_and_vms(&ctx, false, false);
1586 /* Free the sync object */
1587 amdgpu_sync_free(&mem->sync);
1589 /* If the SG is not NULL, it's one we created for a doorbell or mmio
1590 * remap BO. We need to free it.
1592 if (mem->bo->tbo.sg) {
1593 sg_free_table(mem->bo->tbo.sg);
1594 kfree(mem->bo->tbo.sg);
1597 /* Update the size of the BO being freed if it was allocated from
1598 * VRAM and is not imported.
1601 if ((mem->bo->preferred_domains == AMDGPU_GEM_DOMAIN_VRAM) &&
1609 drm_vma_node_revoke(&mem->bo->tbo.base.vma_node, drm_priv);
1611 dma_buf_put(mem->dmabuf);
1612 mutex_destroy(&mem->lock);
1614 /* If this releases the last reference, it will end up calling
1615 * amdgpu_amdkfd_release_notify and kfree the mem struct. That's why
1616 * this needs to be the last call here.
1618 drm_gem_object_put(&mem->bo->tbo.base);
1623 int amdgpu_amdkfd_gpuvm_map_memory_to_gpu(
1624 struct kgd_dev *kgd, struct kgd_mem *mem,
1625 void *drm_priv, bool *table_freed)
1627 struct amdgpu_device *adev = get_amdgpu_device(kgd);
1628 struct amdgpu_vm *avm = drm_priv_to_vm(drm_priv);
1630 struct amdgpu_bo *bo;
1632 struct kfd_mem_attachment *entry;
1633 struct bo_vm_reservation_context ctx;
1634 unsigned long bo_size;
1635 bool is_invalid_userptr = false;
1639 pr_err("Invalid BO when mapping memory to GPU\n");
1643 /* Make sure restore is not running concurrently. Since we
1644 * don't map invalid userptr BOs, we rely on the next restore
1645 * worker to do the mapping
1647 mutex_lock(&mem->process_info->lock);
1649 /* Lock mmap-sem. If we find an invalid userptr BO, we can be
1650 * sure that the MMU notifier is no longer running
1651 * concurrently and the queues are actually stopped
1653 if (amdgpu_ttm_tt_get_usermm(bo->tbo.ttm)) {
1654 mmap_write_lock(current->mm);
1655 is_invalid_userptr = atomic_read(&mem->invalid);
1656 mmap_write_unlock(current->mm);
1659 mutex_lock(&mem->lock);
1661 domain = mem->domain;
1662 bo_size = bo->tbo.base.size;
1664 pr_debug("Map VA 0x%llx - 0x%llx to vm %p domain %s\n",
1666 mem->va + bo_size * (1 + mem->aql_queue),
1667 avm, domain_string(domain));
1669 if (!kfd_mem_is_attached(avm, mem)) {
1670 ret = kfd_mem_attach(adev, mem, avm, mem->aql_queue);
1675 ret = reserve_bo_and_vm(mem, avm, &ctx);
1679 /* Userptr can be marked as "not invalid", but not actually be
1680 * validated yet (still in the system domain). In that case
1681 * the queues are still stopped and we can leave mapping for
1682 * the next restore worker
1684 if (amdgpu_ttm_tt_get_usermm(bo->tbo.ttm) &&
1685 bo->tbo.resource->mem_type == TTM_PL_SYSTEM)
1686 is_invalid_userptr = true;
1688 ret = vm_validate_pt_pd_bos(avm);
1692 if (mem->mapped_to_gpu_memory == 0 &&
1693 !amdgpu_ttm_tt_get_usermm(bo->tbo.ttm)) {
1694 /* Validate BO only once. The eviction fence gets added to BO
1695 * the first time it is mapped. Validate will wait for all
1696 * background evictions to complete.
1698 ret = amdgpu_amdkfd_bo_validate(bo, domain, true);
1700 pr_debug("Validate failed\n");
1705 list_for_each_entry(entry, &mem->attachments, list) {
1706 if (entry->bo_va->base.vm != avm || entry->is_mapped)
1709 pr_debug("\t map VA 0x%llx - 0x%llx in entry %p\n",
1710 entry->va, entry->va + bo_size, entry);
1712 ret = map_bo_to_gpuvm(mem, entry, ctx.sync,
1713 is_invalid_userptr, table_freed);
1715 pr_err("Failed to map bo to gpuvm\n");
1719 ret = vm_update_pds(avm, ctx.sync);
1721 pr_err("Failed to update page directories\n");
1725 entry->is_mapped = true;
1726 mem->mapped_to_gpu_memory++;
1727 pr_debug("\t INC mapping count %d\n",
1728 mem->mapped_to_gpu_memory);
1731 if (!amdgpu_ttm_tt_get_usermm(bo->tbo.ttm) && !bo->tbo.pin_count)
1733 &avm->process_info->eviction_fence->base,
1735 ret = unreserve_bo_and_vms(&ctx, false, false);
1737 /* Only apply no TLB flush on Aldebaran to
1738 * workaround regressions on other Asics.
1740 if (table_freed && (adev->asic_type != CHIP_ALDEBARAN))
1741 *table_freed = true;
1746 unreserve_bo_and_vms(&ctx, false, false);
1748 mutex_unlock(&mem->process_info->lock);
1749 mutex_unlock(&mem->lock);
1753 int amdgpu_amdkfd_gpuvm_unmap_memory_from_gpu(
1754 struct kgd_dev *kgd, struct kgd_mem *mem, void *drm_priv)
1756 struct amdgpu_vm *avm = drm_priv_to_vm(drm_priv);
1757 struct amdkfd_process_info *process_info = avm->process_info;
1758 unsigned long bo_size = mem->bo->tbo.base.size;
1759 struct kfd_mem_attachment *entry;
1760 struct bo_vm_reservation_context ctx;
1763 mutex_lock(&mem->lock);
1765 ret = reserve_bo_and_cond_vms(mem, avm, BO_VM_MAPPED, &ctx);
1768 /* If no VMs were reserved, it means the BO wasn't actually mapped */
1769 if (ctx.n_vms == 0) {
1774 ret = vm_validate_pt_pd_bos(avm);
1778 pr_debug("Unmap VA 0x%llx - 0x%llx from vm %p\n",
1780 mem->va + bo_size * (1 + mem->aql_queue),
1783 list_for_each_entry(entry, &mem->attachments, list) {
1784 if (entry->bo_va->base.vm != avm || !entry->is_mapped)
1787 pr_debug("\t unmap VA 0x%llx - 0x%llx from entry %p\n",
1788 entry->va, entry->va + bo_size, entry);
1790 unmap_bo_from_gpuvm(mem, entry, ctx.sync);
1791 entry->is_mapped = false;
1793 mem->mapped_to_gpu_memory--;
1794 pr_debug("\t DEC mapping count %d\n",
1795 mem->mapped_to_gpu_memory);
1798 /* If BO is unmapped from all VMs, unfence it. It can be evicted if
1801 if (mem->mapped_to_gpu_memory == 0 &&
1802 !amdgpu_ttm_tt_get_usermm(mem->bo->tbo.ttm) &&
1803 !mem->bo->tbo.pin_count)
1804 amdgpu_amdkfd_remove_eviction_fence(mem->bo,
1805 process_info->eviction_fence);
1808 unreserve_bo_and_vms(&ctx, false, false);
1810 mutex_unlock(&mem->lock);
1814 int amdgpu_amdkfd_gpuvm_sync_memory(
1815 struct kgd_dev *kgd, struct kgd_mem *mem, bool intr)
1817 struct amdgpu_sync sync;
1820 amdgpu_sync_create(&sync);
1822 mutex_lock(&mem->lock);
1823 amdgpu_sync_clone(&mem->sync, &sync);
1824 mutex_unlock(&mem->lock);
1826 ret = amdgpu_sync_wait(&sync, intr);
1827 amdgpu_sync_free(&sync);
1831 int amdgpu_amdkfd_gpuvm_map_gtt_bo_to_kernel(struct kgd_dev *kgd,
1832 struct kgd_mem *mem, void **kptr, uint64_t *size)
1835 struct amdgpu_bo *bo = mem->bo;
1837 if (amdgpu_ttm_tt_get_usermm(bo->tbo.ttm)) {
1838 pr_err("userptr can't be mapped to kernel\n");
1842 /* delete kgd_mem from kfd_bo_list to avoid re-validating
1843 * this BO in BO's restoring after eviction.
1845 mutex_lock(&mem->process_info->lock);
1847 ret = amdgpu_bo_reserve(bo, true);
1849 pr_err("Failed to reserve bo. ret %d\n", ret);
1850 goto bo_reserve_failed;
1853 ret = amdgpu_bo_pin(bo, AMDGPU_GEM_DOMAIN_GTT);
1855 pr_err("Failed to pin bo. ret %d\n", ret);
1859 ret = amdgpu_bo_kmap(bo, kptr);
1861 pr_err("Failed to map bo to kernel. ret %d\n", ret);
1865 amdgpu_amdkfd_remove_eviction_fence(
1866 bo, mem->process_info->eviction_fence);
1867 list_del_init(&mem->validate_list.head);
1870 *size = amdgpu_bo_size(bo);
1872 amdgpu_bo_unreserve(bo);
1874 mutex_unlock(&mem->process_info->lock);
1878 amdgpu_bo_unpin(bo);
1880 amdgpu_bo_unreserve(bo);
1882 mutex_unlock(&mem->process_info->lock);
1887 void amdgpu_amdkfd_gpuvm_unmap_gtt_bo_from_kernel(struct kgd_dev *kgd, struct kgd_mem *mem)
1889 struct amdgpu_bo *bo = mem->bo;
1891 amdgpu_bo_reserve(bo, true);
1892 amdgpu_bo_kunmap(bo);
1893 amdgpu_bo_unpin(bo);
1894 amdgpu_bo_unreserve(bo);
1897 int amdgpu_amdkfd_gpuvm_get_vm_fault_info(struct kgd_dev *kgd,
1898 struct kfd_vm_fault_info *mem)
1900 struct amdgpu_device *adev;
1902 adev = (struct amdgpu_device *)kgd;
1903 if (atomic_read(&adev->gmc.vm_fault_info_updated) == 1) {
1904 *mem = *adev->gmc.vm_fault_info;
1906 atomic_set(&adev->gmc.vm_fault_info_updated, 0);
1911 int amdgpu_amdkfd_gpuvm_import_dmabuf(struct kgd_dev *kgd,
1912 struct dma_buf *dma_buf,
1913 uint64_t va, void *drm_priv,
1914 struct kgd_mem **mem, uint64_t *size,
1915 uint64_t *mmap_offset)
1917 struct amdgpu_device *adev = (struct amdgpu_device *)kgd;
1918 struct amdgpu_vm *avm = drm_priv_to_vm(drm_priv);
1919 struct drm_gem_object *obj;
1920 struct amdgpu_bo *bo;
1923 if (dma_buf->ops != &amdgpu_dmabuf_ops)
1924 /* Can't handle non-graphics buffers */
1927 obj = dma_buf->priv;
1928 if (drm_to_adev(obj->dev) != adev)
1929 /* Can't handle buffers from other devices */
1932 bo = gem_to_amdgpu_bo(obj);
1933 if (!(bo->preferred_domains & (AMDGPU_GEM_DOMAIN_VRAM |
1934 AMDGPU_GEM_DOMAIN_GTT)))
1935 /* Only VRAM and GTT BOs are supported */
1938 *mem = kzalloc(sizeof(struct kgd_mem), GFP_KERNEL);
1942 ret = drm_vma_node_allow(&obj->vma_node, drm_priv);
1949 *size = amdgpu_bo_size(bo);
1952 *mmap_offset = amdgpu_bo_mmap_offset(bo);
1954 INIT_LIST_HEAD(&(*mem)->attachments);
1955 mutex_init(&(*mem)->lock);
1957 (*mem)->alloc_flags =
1958 ((bo->preferred_domains & AMDGPU_GEM_DOMAIN_VRAM) ?
1959 KFD_IOC_ALLOC_MEM_FLAGS_VRAM : KFD_IOC_ALLOC_MEM_FLAGS_GTT)
1960 | KFD_IOC_ALLOC_MEM_FLAGS_WRITABLE
1961 | KFD_IOC_ALLOC_MEM_FLAGS_EXECUTABLE;
1963 drm_gem_object_get(&bo->tbo.base);
1966 (*mem)->domain = (bo->preferred_domains & AMDGPU_GEM_DOMAIN_VRAM) ?
1967 AMDGPU_GEM_DOMAIN_VRAM : AMDGPU_GEM_DOMAIN_GTT;
1968 (*mem)->mapped_to_gpu_memory = 0;
1969 (*mem)->process_info = avm->process_info;
1970 add_kgd_mem_to_kfd_bo_list(*mem, avm->process_info, false);
1971 amdgpu_sync_create(&(*mem)->sync);
1972 (*mem)->is_imported = true;
1977 /* Evict a userptr BO by stopping the queues if necessary
1979 * Runs in MMU notifier, may be in RECLAIM_FS context. This means it
1980 * cannot do any memory allocations, and cannot take any locks that
1981 * are held elsewhere while allocating memory. Therefore this is as
1982 * simple as possible, using atomic counters.
1984 * It doesn't do anything to the BO itself. The real work happens in
1985 * restore, where we get updated page addresses. This function only
1986 * ensures that GPU access to the BO is stopped.
1988 int amdgpu_amdkfd_evict_userptr(struct kgd_mem *mem,
1989 struct mm_struct *mm)
1991 struct amdkfd_process_info *process_info = mem->process_info;
1995 atomic_inc(&mem->invalid);
1996 evicted_bos = atomic_inc_return(&process_info->evicted_bos);
1997 if (evicted_bos == 1) {
1998 /* First eviction, stop the queues */
1999 r = kgd2kfd_quiesce_mm(mm);
2001 pr_err("Failed to quiesce KFD\n");
2002 schedule_delayed_work(&process_info->restore_userptr_work,
2003 msecs_to_jiffies(AMDGPU_USERPTR_RESTORE_DELAY_MS));
2009 /* Update invalid userptr BOs
2011 * Moves invalidated (evicted) userptr BOs from userptr_valid_list to
2012 * userptr_inval_list and updates user pages for all BOs that have
2013 * been invalidated since their last update.
2015 static int update_invalid_user_pages(struct amdkfd_process_info *process_info,
2016 struct mm_struct *mm)
2018 struct kgd_mem *mem, *tmp_mem;
2019 struct amdgpu_bo *bo;
2020 struct ttm_operation_ctx ctx = { false, false };
2023 /* Move all invalidated BOs to the userptr_inval_list and
2024 * release their user pages by migration to the CPU domain
2026 list_for_each_entry_safe(mem, tmp_mem,
2027 &process_info->userptr_valid_list,
2028 validate_list.head) {
2029 if (!atomic_read(&mem->invalid))
2030 continue; /* BO is still valid */
2034 if (amdgpu_bo_reserve(bo, true))
2036 amdgpu_bo_placement_from_domain(bo, AMDGPU_GEM_DOMAIN_CPU);
2037 ret = ttm_bo_validate(&bo->tbo, &bo->placement, &ctx);
2038 amdgpu_bo_unreserve(bo);
2040 pr_err("%s: Failed to invalidate userptr BO\n",
2045 list_move_tail(&mem->validate_list.head,
2046 &process_info->userptr_inval_list);
2049 if (list_empty(&process_info->userptr_inval_list))
2050 return 0; /* All evicted userptr BOs were freed */
2052 /* Go through userptr_inval_list and update any invalid user_pages */
2053 list_for_each_entry(mem, &process_info->userptr_inval_list,
2054 validate_list.head) {
2055 invalid = atomic_read(&mem->invalid);
2057 /* BO hasn't been invalidated since the last
2058 * revalidation attempt. Keep its BO list.
2064 /* Get updated user pages */
2065 ret = amdgpu_ttm_tt_get_user_pages(bo, bo->tbo.ttm->pages);
2067 pr_debug("Failed %d to get user pages\n", ret);
2069 /* Return -EFAULT bad address error as success. It will
2070 * fail later with a VM fault if the GPU tries to access
2071 * it. Better than hanging indefinitely with stalled
2074 * Return other error -EBUSY or -ENOMEM to retry restore
2081 * FIXME: Cannot ignore the return code, must hold
2084 amdgpu_ttm_tt_get_user_pages_done(bo->tbo.ttm);
2087 /* Mark the BO as valid unless it was invalidated
2088 * again concurrently.
2090 if (atomic_cmpxchg(&mem->invalid, invalid, 0) != invalid)
2097 /* Validate invalid userptr BOs
2099 * Validates BOs on the userptr_inval_list, and moves them back to the
2100 * userptr_valid_list. Also updates GPUVM page tables with new page
2101 * addresses and waits for the page table updates to complete.
2103 static int validate_invalid_user_pages(struct amdkfd_process_info *process_info)
2105 struct amdgpu_bo_list_entry *pd_bo_list_entries;
2106 struct list_head resv_list, duplicates;
2107 struct ww_acquire_ctx ticket;
2108 struct amdgpu_sync sync;
2110 struct amdgpu_vm *peer_vm;
2111 struct kgd_mem *mem, *tmp_mem;
2112 struct amdgpu_bo *bo;
2113 struct ttm_operation_ctx ctx = { false, false };
2116 pd_bo_list_entries = kcalloc(process_info->n_vms,
2117 sizeof(struct amdgpu_bo_list_entry),
2119 if (!pd_bo_list_entries) {
2120 pr_err("%s: Failed to allocate PD BO list entries\n", __func__);
2125 INIT_LIST_HEAD(&resv_list);
2126 INIT_LIST_HEAD(&duplicates);
2128 /* Get all the page directory BOs that need to be reserved */
2130 list_for_each_entry(peer_vm, &process_info->vm_list_head,
2132 amdgpu_vm_get_pd_bo(peer_vm, &resv_list,
2133 &pd_bo_list_entries[i++]);
2134 /* Add the userptr_inval_list entries to resv_list */
2135 list_for_each_entry(mem, &process_info->userptr_inval_list,
2136 validate_list.head) {
2137 list_add_tail(&mem->resv_list.head, &resv_list);
2138 mem->resv_list.bo = mem->validate_list.bo;
2139 mem->resv_list.num_shared = mem->validate_list.num_shared;
2142 /* Reserve all BOs and page tables for validation */
2143 ret = ttm_eu_reserve_buffers(&ticket, &resv_list, false, &duplicates);
2144 WARN(!list_empty(&duplicates), "Duplicates should be empty");
2148 amdgpu_sync_create(&sync);
2150 ret = process_validate_vms(process_info);
2154 /* Validate BOs and update GPUVM page tables */
2155 list_for_each_entry_safe(mem, tmp_mem,
2156 &process_info->userptr_inval_list,
2157 validate_list.head) {
2158 struct kfd_mem_attachment *attachment;
2162 /* Validate the BO if we got user pages */
2163 if (bo->tbo.ttm->pages[0]) {
2164 amdgpu_bo_placement_from_domain(bo, mem->domain);
2165 ret = ttm_bo_validate(&bo->tbo, &bo->placement, &ctx);
2167 pr_err("%s: failed to validate BO\n", __func__);
2172 list_move_tail(&mem->validate_list.head,
2173 &process_info->userptr_valid_list);
2175 /* Update mapping. If the BO was not validated
2176 * (because we couldn't get user pages), this will
2177 * clear the page table entries, which will result in
2178 * VM faults if the GPU tries to access the invalid
2181 list_for_each_entry(attachment, &mem->attachments, list) {
2182 if (!attachment->is_mapped)
2185 kfd_mem_dmaunmap_attachment(mem, attachment);
2186 ret = update_gpuvm_pte(mem, attachment, &sync, NULL);
2188 pr_err("%s: update PTE failed\n", __func__);
2189 /* make sure this gets validated again */
2190 atomic_inc(&mem->invalid);
2196 /* Update page directories */
2197 ret = process_update_pds(process_info, &sync);
2200 ttm_eu_backoff_reservation(&ticket, &resv_list);
2201 amdgpu_sync_wait(&sync, false);
2202 amdgpu_sync_free(&sync);
2204 kfree(pd_bo_list_entries);
2210 /* Worker callback to restore evicted userptr BOs
2212 * Tries to update and validate all userptr BOs. If successful and no
2213 * concurrent evictions happened, the queues are restarted. Otherwise,
2214 * reschedule for another attempt later.
2216 static void amdgpu_amdkfd_restore_userptr_worker(struct work_struct *work)
2218 struct delayed_work *dwork = to_delayed_work(work);
2219 struct amdkfd_process_info *process_info =
2220 container_of(dwork, struct amdkfd_process_info,
2221 restore_userptr_work);
2222 struct task_struct *usertask;
2223 struct mm_struct *mm;
2226 evicted_bos = atomic_read(&process_info->evicted_bos);
2230 /* Reference task and mm in case of concurrent process termination */
2231 usertask = get_pid_task(process_info->pid, PIDTYPE_PID);
2234 mm = get_task_mm(usertask);
2236 put_task_struct(usertask);
2240 mutex_lock(&process_info->lock);
2242 if (update_invalid_user_pages(process_info, mm))
2244 /* userptr_inval_list can be empty if all evicted userptr BOs
2245 * have been freed. In that case there is nothing to validate
2246 * and we can just restart the queues.
2248 if (!list_empty(&process_info->userptr_inval_list)) {
2249 if (atomic_read(&process_info->evicted_bos) != evicted_bos)
2250 goto unlock_out; /* Concurrent eviction, try again */
2252 if (validate_invalid_user_pages(process_info))
2255 /* Final check for concurrent evicton and atomic update. If
2256 * another eviction happens after successful update, it will
2257 * be a first eviction that calls quiesce_mm. The eviction
2258 * reference counting inside KFD will handle this case.
2260 if (atomic_cmpxchg(&process_info->evicted_bos, evicted_bos, 0) !=
2264 if (kgd2kfd_resume_mm(mm)) {
2265 pr_err("%s: Failed to resume KFD\n", __func__);
2266 /* No recovery from this failure. Probably the CP is
2267 * hanging. No point trying again.
2272 mutex_unlock(&process_info->lock);
2274 put_task_struct(usertask);
2276 /* If validation failed, reschedule another attempt */
2278 schedule_delayed_work(&process_info->restore_userptr_work,
2279 msecs_to_jiffies(AMDGPU_USERPTR_RESTORE_DELAY_MS));
2282 /** amdgpu_amdkfd_gpuvm_restore_process_bos - Restore all BOs for the given
2283 * KFD process identified by process_info
2285 * @process_info: amdkfd_process_info of the KFD process
2287 * After memory eviction, restore thread calls this function. The function
2288 * should be called when the Process is still valid. BO restore involves -
2290 * 1. Release old eviction fence and create new one
2291 * 2. Get two copies of PD BO list from all the VMs. Keep one copy as pd_list.
2292 * 3 Use the second PD list and kfd_bo_list to create a list (ctx.list) of
2293 * BOs that need to be reserved.
2294 * 4. Reserve all the BOs
2295 * 5. Validate of PD and PT BOs.
2296 * 6. Validate all KFD BOs using kfd_bo_list and Map them and add new fence
2297 * 7. Add fence to all PD and PT BOs.
2298 * 8. Unreserve all BOs
2300 int amdgpu_amdkfd_gpuvm_restore_process_bos(void *info, struct dma_fence **ef)
2302 struct amdgpu_bo_list_entry *pd_bo_list;
2303 struct amdkfd_process_info *process_info = info;
2304 struct amdgpu_vm *peer_vm;
2305 struct kgd_mem *mem;
2306 struct bo_vm_reservation_context ctx;
2307 struct amdgpu_amdkfd_fence *new_fence;
2309 struct list_head duplicate_save;
2310 struct amdgpu_sync sync_obj;
2311 unsigned long failed_size = 0;
2312 unsigned long total_size = 0;
2314 INIT_LIST_HEAD(&duplicate_save);
2315 INIT_LIST_HEAD(&ctx.list);
2316 INIT_LIST_HEAD(&ctx.duplicates);
2318 pd_bo_list = kcalloc(process_info->n_vms,
2319 sizeof(struct amdgpu_bo_list_entry),
2325 mutex_lock(&process_info->lock);
2326 list_for_each_entry(peer_vm, &process_info->vm_list_head,
2328 amdgpu_vm_get_pd_bo(peer_vm, &ctx.list, &pd_bo_list[i++]);
2330 /* Reserve all BOs and page tables/directory. Add all BOs from
2331 * kfd_bo_list to ctx.list
2333 list_for_each_entry(mem, &process_info->kfd_bo_list,
2334 validate_list.head) {
2336 list_add_tail(&mem->resv_list.head, &ctx.list);
2337 mem->resv_list.bo = mem->validate_list.bo;
2338 mem->resv_list.num_shared = mem->validate_list.num_shared;
2341 ret = ttm_eu_reserve_buffers(&ctx.ticket, &ctx.list,
2342 false, &duplicate_save);
2344 pr_debug("Memory eviction: TTM Reserve Failed. Try again\n");
2345 goto ttm_reserve_fail;
2348 amdgpu_sync_create(&sync_obj);
2350 /* Validate PDs and PTs */
2351 ret = process_validate_vms(process_info);
2353 goto validate_map_fail;
2355 ret = process_sync_pds_resv(process_info, &sync_obj);
2357 pr_debug("Memory eviction: Failed to sync to PD BO moving fence. Try again\n");
2358 goto validate_map_fail;
2361 /* Validate BOs and map them to GPUVM (update VM page tables). */
2362 list_for_each_entry(mem, &process_info->kfd_bo_list,
2363 validate_list.head) {
2365 struct amdgpu_bo *bo = mem->bo;
2366 uint32_t domain = mem->domain;
2367 struct kfd_mem_attachment *attachment;
2369 total_size += amdgpu_bo_size(bo);
2371 ret = amdgpu_amdkfd_bo_validate(bo, domain, false);
2373 pr_debug("Memory eviction: Validate BOs failed\n");
2374 failed_size += amdgpu_bo_size(bo);
2375 ret = amdgpu_amdkfd_bo_validate(bo,
2376 AMDGPU_GEM_DOMAIN_GTT, false);
2378 pr_debug("Memory eviction: Try again\n");
2379 goto validate_map_fail;
2382 ret = amdgpu_sync_fence(&sync_obj, bo->tbo.moving);
2384 pr_debug("Memory eviction: Sync BO fence failed. Try again\n");
2385 goto validate_map_fail;
2387 list_for_each_entry(attachment, &mem->attachments, list) {
2388 if (!attachment->is_mapped)
2391 kfd_mem_dmaunmap_attachment(mem, attachment);
2392 ret = update_gpuvm_pte(mem, attachment, &sync_obj, NULL);
2394 pr_debug("Memory eviction: update PTE failed. Try again\n");
2395 goto validate_map_fail;
2401 pr_debug("0x%lx/0x%lx in system\n", failed_size, total_size);
2403 /* Update page directories */
2404 ret = process_update_pds(process_info, &sync_obj);
2406 pr_debug("Memory eviction: update PDs failed. Try again\n");
2407 goto validate_map_fail;
2410 /* Wait for validate and PT updates to finish */
2411 amdgpu_sync_wait(&sync_obj, false);
2413 /* Release old eviction fence and create new one, because fence only
2414 * goes from unsignaled to signaled, fence cannot be reused.
2415 * Use context and mm from the old fence.
2417 new_fence = amdgpu_amdkfd_fence_create(
2418 process_info->eviction_fence->base.context,
2419 process_info->eviction_fence->mm,
2422 pr_err("Failed to create eviction fence\n");
2424 goto validate_map_fail;
2426 dma_fence_put(&process_info->eviction_fence->base);
2427 process_info->eviction_fence = new_fence;
2428 *ef = dma_fence_get(&new_fence->base);
2430 /* Attach new eviction fence to all BOs */
2431 list_for_each_entry(mem, &process_info->kfd_bo_list,
2433 amdgpu_bo_fence(mem->bo,
2434 &process_info->eviction_fence->base, true);
2436 /* Attach eviction fence to PD / PT BOs */
2437 list_for_each_entry(peer_vm, &process_info->vm_list_head,
2439 struct amdgpu_bo *bo = peer_vm->root.bo;
2441 amdgpu_bo_fence(bo, &process_info->eviction_fence->base, true);
2445 ttm_eu_backoff_reservation(&ctx.ticket, &ctx.list);
2446 amdgpu_sync_free(&sync_obj);
2448 mutex_unlock(&process_info->lock);
2453 int amdgpu_amdkfd_add_gws_to_process(void *info, void *gws, struct kgd_mem **mem)
2455 struct amdkfd_process_info *process_info = (struct amdkfd_process_info *)info;
2456 struct amdgpu_bo *gws_bo = (struct amdgpu_bo *)gws;
2462 *mem = kzalloc(sizeof(struct kgd_mem), GFP_KERNEL);
2466 mutex_init(&(*mem)->lock);
2467 INIT_LIST_HEAD(&(*mem)->attachments);
2468 (*mem)->bo = amdgpu_bo_ref(gws_bo);
2469 (*mem)->domain = AMDGPU_GEM_DOMAIN_GWS;
2470 (*mem)->process_info = process_info;
2471 add_kgd_mem_to_kfd_bo_list(*mem, process_info, false);
2472 amdgpu_sync_create(&(*mem)->sync);
2475 /* Validate gws bo the first time it is added to process */
2476 mutex_lock(&(*mem)->process_info->lock);
2477 ret = amdgpu_bo_reserve(gws_bo, false);
2478 if (unlikely(ret)) {
2479 pr_err("Reserve gws bo failed %d\n", ret);
2480 goto bo_reservation_failure;
2483 ret = amdgpu_amdkfd_bo_validate(gws_bo, AMDGPU_GEM_DOMAIN_GWS, true);
2485 pr_err("GWS BO validate failed %d\n", ret);
2486 goto bo_validation_failure;
2488 /* GWS resource is shared b/t amdgpu and amdkfd
2489 * Add process eviction fence to bo so they can
2492 ret = dma_resv_reserve_shared(gws_bo->tbo.base.resv, 1);
2494 goto reserve_shared_fail;
2495 amdgpu_bo_fence(gws_bo, &process_info->eviction_fence->base, true);
2496 amdgpu_bo_unreserve(gws_bo);
2497 mutex_unlock(&(*mem)->process_info->lock);
2501 reserve_shared_fail:
2502 bo_validation_failure:
2503 amdgpu_bo_unreserve(gws_bo);
2504 bo_reservation_failure:
2505 mutex_unlock(&(*mem)->process_info->lock);
2506 amdgpu_sync_free(&(*mem)->sync);
2507 remove_kgd_mem_from_kfd_bo_list(*mem, process_info);
2508 amdgpu_bo_unref(&gws_bo);
2509 mutex_destroy(&(*mem)->lock);
2515 int amdgpu_amdkfd_remove_gws_from_process(void *info, void *mem)
2518 struct amdkfd_process_info *process_info = (struct amdkfd_process_info *)info;
2519 struct kgd_mem *kgd_mem = (struct kgd_mem *)mem;
2520 struct amdgpu_bo *gws_bo = kgd_mem->bo;
2522 /* Remove BO from process's validate list so restore worker won't touch
2525 remove_kgd_mem_from_kfd_bo_list(kgd_mem, process_info);
2527 ret = amdgpu_bo_reserve(gws_bo, false);
2528 if (unlikely(ret)) {
2529 pr_err("Reserve gws bo failed %d\n", ret);
2530 //TODO add BO back to validate_list?
2533 amdgpu_amdkfd_remove_eviction_fence(gws_bo,
2534 process_info->eviction_fence);
2535 amdgpu_bo_unreserve(gws_bo);
2536 amdgpu_sync_free(&kgd_mem->sync);
2537 amdgpu_bo_unref(&gws_bo);
2538 mutex_destroy(&kgd_mem->lock);
2543 /* Returns GPU-specific tiling mode information */
2544 int amdgpu_amdkfd_get_tile_config(struct kgd_dev *kgd,
2545 struct tile_config *config)
2547 struct amdgpu_device *adev = (struct amdgpu_device *)kgd;
2549 config->gb_addr_config = adev->gfx.config.gb_addr_config;
2550 config->tile_config_ptr = adev->gfx.config.tile_mode_array;
2551 config->num_tile_configs =
2552 ARRAY_SIZE(adev->gfx.config.tile_mode_array);
2553 config->macro_tile_config_ptr =
2554 adev->gfx.config.macrotile_mode_array;
2555 config->num_macro_tile_configs =
2556 ARRAY_SIZE(adev->gfx.config.macrotile_mode_array);
2558 /* Those values are not set from GFX9 onwards */
2559 config->num_banks = adev->gfx.config.num_banks;
2560 config->num_ranks = adev->gfx.config.num_ranks;