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 *bo = gem_to_amdgpu_bo(gobj);
650 (*bo)->flags |= AMDGPU_GEM_CREATE_PREEMPTIBLE;
651 (*bo)->parent = amdgpu_bo_ref(mem->bo);
656 /* kfd_mem_attach - Add a BO to a VM
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.
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
669 static int kfd_mem_attach(struct amdgpu_device *adev, struct kgd_mem *mem,
670 struct amdgpu_vm *vm, bool is_aql)
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};
680 pr_err("Invalid VA when adding BO to VM\n");
684 for (i = 0; i <= is_aql; i++) {
685 attachment[i] = kzalloc(sizeof(*attachment[i]), GFP_KERNEL);
686 if (unlikely(!attachment[i])) {
691 pr_debug("\t add VA 0x%llx - 0x%llx to vm %p\n", va,
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
699 attachment[i]->type = KFD_MEM_ATT_SHARED;
701 drm_gem_object_get(&bo[i]->tbo.base);
703 /* Multiple mappings on the same GPU share the BO */
704 attachment[i]->type = KFD_MEM_ATT_SHARED;
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]);
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
719 attachment[i]->type = KFD_MEM_ATT_DMABUF;
720 ret = kfd_mem_attach_dmabuf(adev, mem, &bo[i]);
724 /* FIXME: Need to DMA-map other BO types:
725 * large-BAR VRAM, doorbells, MMIO remap
727 attachment[i]->type = KFD_MEM_ATT_SHARED;
729 drm_gem_object_get(&bo[i]->tbo.base);
732 /* Add BO to VM internal data structures */
733 ret = amdgpu_bo_reserve(bo[i], false);
735 pr_debug("Unable to reserve BO during memory attach");
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)) {
742 pr_err("Failed to add BO object to VM. ret == %d\n",
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);
757 for (; i >= 0; i--) {
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);
767 drm_gem_object_put(&bo[i]->tbo.base);
768 kfree(attachment[i]);
773 static void kfd_mem_detach(struct kfd_mem_attachment *attachment)
775 struct amdgpu_bo *bo = attachment->bo_va->base.bo;
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);
785 static void add_kgd_mem_to_kfd_bo_list(struct kgd_mem *mem,
786 struct amdkfd_process_info *process_info,
789 struct ttm_validate_buffer *entry = &mem->validate_list;
790 struct amdgpu_bo *bo = mem->bo;
792 INIT_LIST_HEAD(&entry->head);
793 entry->num_shared = 1;
794 entry->bo = &bo->tbo;
795 mutex_lock(&process_info->lock);
797 list_add_tail(&entry->head, &process_info->userptr_valid_list);
799 list_add_tail(&entry->head, &process_info->kfd_bo_list);
800 mutex_unlock(&process_info->lock);
803 static void remove_kgd_mem_from_kfd_bo_list(struct kgd_mem *mem,
804 struct amdkfd_process_info *process_info)
806 struct ttm_validate_buffer *bo_list_entry;
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);
814 /* Initializes user pages. It registers the MMU notifier and validates
815 * the userptr BO in the GTT domain.
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.
821 * Takes the process_info->lock to protect against concurrent restore
824 * Returns 0 for success, negative errno for errors.
826 static int init_user_pages(struct kgd_mem *mem, uint64_t user_addr)
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 };
833 mutex_lock(&process_info->lock);
835 ret = amdgpu_ttm_tt_set_userptr(&bo->tbo, user_addr, 0);
837 pr_err("%s: Failed to set userptr: %d\n", __func__, ret);
841 ret = amdgpu_mn_register(bo, user_addr);
843 pr_err("%s: Failed to register MMU notifier: %d\n",
848 ret = amdgpu_ttm_tt_get_user_pages(bo, bo->tbo.ttm->pages);
850 pr_err("%s: Failed to get user pages: %d\n", __func__, ret);
854 ret = amdgpu_bo_reserve(bo, true);
856 pr_err("%s: Failed to reserve BO\n", __func__);
859 amdgpu_bo_placement_from_domain(bo, mem->domain);
860 ret = ttm_bo_validate(&bo->tbo, &bo->placement, &ctx);
862 pr_err("%s: failed to validate BO\n", __func__);
863 amdgpu_bo_unreserve(bo);
866 amdgpu_ttm_tt_get_user_pages_done(bo->tbo.ttm);
869 amdgpu_mn_unregister(bo);
871 mutex_unlock(&process_info->lock);
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.
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 */
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 */
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().
902 static int reserve_bo_and_vm(struct kgd_mem *mem,
903 struct amdgpu_vm *vm,
904 struct bo_vm_reservation_context *ctx)
906 struct amdgpu_bo *bo = mem->bo;
911 ctx->reserved = false;
913 ctx->sync = &mem->sync;
915 INIT_LIST_HEAD(&ctx->list);
916 INIT_LIST_HEAD(&ctx->duplicates);
918 ctx->vm_pd = kcalloc(ctx->n_vms, sizeof(*ctx->vm_pd), GFP_KERNEL);
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);
927 amdgpu_vm_get_pd_bo(vm, &ctx->list, &ctx->vm_pd[0]);
929 ret = ttm_eu_reserve_buffers(&ctx->ticket, &ctx->list,
930 false, &ctx->duplicates);
932 pr_err("Failed to reserve buffers in ttm.\n");
938 ctx->reserved = true;
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().
950 * Returns 0 for success, negative for failure.
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)
956 struct amdgpu_bo *bo = mem->bo;
957 struct kfd_mem_attachment *entry;
961 ctx->reserved = false;
964 ctx->sync = &mem->sync;
966 INIT_LIST_HEAD(&ctx->list);
967 INIT_LIST_HEAD(&ctx->duplicates);
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))
978 if (ctx->n_vms != 0) {
979 ctx->vm_pd = kcalloc(ctx->n_vms, sizeof(*ctx->vm_pd),
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);
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))
997 amdgpu_vm_get_pd_bo(entry->bo_va->base.vm, &ctx->list,
1002 ret = ttm_eu_reserve_buffers(&ctx->ticket, &ctx->list,
1003 false, &ctx->duplicates);
1005 pr_err("Failed to reserve buffers in ttm.\n");
1011 ctx->reserved = true;
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
1021 * Also frees any resources allocated in
1022 * reserve_bo_and_(cond_)vm(s). Returns the status from
1025 static int unreserve_bo_and_vms(struct bo_vm_reservation_context *ctx,
1026 bool wait, bool intr)
1031 ret = amdgpu_sync_wait(ctx->sync, intr);
1034 ttm_eu_backoff_reservation(&ctx->ticket, &ctx->list);
1039 ctx->reserved = false;
1045 static void unmap_bo_from_gpuvm(struct kgd_mem *mem,
1046 struct kfd_mem_attachment *entry,
1047 struct amdgpu_sync *sync)
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;
1053 amdgpu_vm_bo_unmap(adev, bo_va, entry->va);
1055 amdgpu_vm_clear_freed(adev, vm, &bo_va->last_pt_update);
1057 amdgpu_sync_fence(sync, bo_va->last_pt_update);
1059 kfd_mem_dmaunmap_attachment(mem, entry);
1062 static int update_gpuvm_pte(struct kgd_mem *mem,
1063 struct kfd_mem_attachment *entry,
1064 struct amdgpu_sync *sync,
1067 struct amdgpu_bo_va *bo_va = entry->bo_va;
1068 struct amdgpu_device *adev = entry->adev;
1071 ret = kfd_mem_dmamap_attachment(mem, entry);
1075 /* Update the page tables */
1076 ret = amdgpu_vm_bo_update(adev, bo_va, false, table_freed);
1078 pr_err("amdgpu_vm_bo_update failed\n");
1082 return amdgpu_sync_fence(sync, bo_va->last_pt_update);
1085 static int map_bo_to_gpuvm(struct kgd_mem *mem,
1086 struct kfd_mem_attachment *entry,
1087 struct amdgpu_sync *sync,
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),
1098 pr_err("Failed to map VA 0x%llx in vm. ret %d\n",
1106 ret = update_gpuvm_pte(mem, entry, sync, table_freed);
1108 pr_err("update_gpuvm_pte() failed\n");
1109 goto update_gpuvm_pte_failed;
1114 update_gpuvm_pte_failed:
1115 unmap_bo_from_gpuvm(mem, entry, sync);
1119 static struct sg_table *create_doorbell_sg(uint64_t addr, uint32_t size)
1121 struct sg_table *sg = kmalloc(sizeof(*sg), GFP_KERNEL);
1125 if (sg_alloc_table(sg, 1, GFP_KERNEL)) {
1129 sg->sgl->dma_address = addr;
1130 sg->sgl->length = size;
1131 #ifdef CONFIG_NEED_SG_DMA_LENGTH
1132 sg->sgl->dma_length = size;
1137 static int process_validate_vms(struct amdkfd_process_info *process_info)
1139 struct amdgpu_vm *peer_vm;
1142 list_for_each_entry(peer_vm, &process_info->vm_list_head,
1144 ret = vm_validate_pt_pd_bos(peer_vm);
1152 static int process_sync_pds_resv(struct amdkfd_process_info *process_info,
1153 struct amdgpu_sync *sync)
1155 struct amdgpu_vm *peer_vm;
1158 list_for_each_entry(peer_vm, &process_info->vm_list_head,
1160 struct amdgpu_bo *pd = peer_vm->root.bo;
1162 ret = amdgpu_sync_resv(NULL, sync, pd->tbo.base.resv,
1163 AMDGPU_SYNC_NE_OWNER,
1164 AMDGPU_FENCE_OWNER_KFD);
1172 static int process_update_pds(struct amdkfd_process_info *process_info,
1173 struct amdgpu_sync *sync)
1175 struct amdgpu_vm *peer_vm;
1178 list_for_each_entry(peer_vm, &process_info->vm_list_head,
1180 ret = vm_update_pds(peer_vm, sync);
1188 static int init_kfd_vm(struct amdgpu_vm *vm, void **process_info,
1189 struct dma_fence **ef)
1191 struct amdkfd_process_info *info = NULL;
1194 if (!*process_info) {
1195 info = kzalloc(sizeof(*info), GFP_KERNEL);
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);
1205 info->eviction_fence =
1206 amdgpu_amdkfd_fence_create(dma_fence_context_alloc(1),
1209 if (!info->eviction_fence) {
1210 pr_err("Failed to create eviction fence\n");
1212 goto create_evict_fence_fail;
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);
1220 *process_info = info;
1221 *ef = dma_fence_get(&info->eviction_fence->base);
1224 vm->process_info = *process_info;
1226 /* Validate page directory and attach eviction fence */
1227 ret = amdgpu_bo_reserve(vm->root.bo, true);
1229 goto reserve_pd_fail;
1230 ret = vm_validate_pt_pd_bos(vm);
1232 pr_err("validate_pt_pd_bos() failed\n");
1233 goto validate_pd_fail;
1235 ret = amdgpu_bo_sync_wait(vm->root.bo,
1236 AMDGPU_FENCE_OWNER_KFD, false);
1239 ret = dma_resv_reserve_shared(vm->root.bo->tbo.base.resv, 1);
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);
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);
1255 reserve_shared_fail:
1258 amdgpu_bo_unreserve(vm->root.bo);
1260 vm->process_info = NULL;
1262 /* Two fence references: one in info and one in *ef */
1263 dma_fence_put(&info->eviction_fence->base);
1266 *process_info = NULL;
1268 create_evict_fence_fail:
1269 mutex_destroy(&info->lock);
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)
1280 struct amdgpu_device *adev = get_amdgpu_device(kgd);
1281 struct amdgpu_fpriv *drv_priv;
1282 struct amdgpu_vm *avm;
1285 ret = amdgpu_file_to_fpriv(filp, &drv_priv);
1288 avm = &drv_priv->vm;
1290 /* Already a compute VM? */
1291 if (avm->process_info)
1294 /* Free the original amdgpu allocated pasid,
1295 * will be replaced with kfd allocated pasid.
1298 amdgpu_pasid_free(avm->pasid);
1299 amdgpu_vm_set_pasid(adev, avm, 0);
1302 /* Convert VM into a compute VM */
1303 ret = amdgpu_vm_make_compute(adev, avm);
1307 ret = amdgpu_vm_set_pasid(adev, avm, pasid);
1310 /* Initialize KFD part of the VM and process info */
1311 ret = init_kfd_vm(avm, process_info, ef);
1315 amdgpu_vm_set_task_info(avm);
1320 void amdgpu_amdkfd_gpuvm_destroy_cb(struct amdgpu_device *adev,
1321 struct amdgpu_vm *vm)
1323 struct amdkfd_process_info *process_info = vm->process_info;
1324 struct amdgpu_bo *pd = vm->root.bo;
1329 /* Release eviction fence from PD */
1330 amdgpu_bo_reserve(pd, false);
1331 amdgpu_bo_fence(pd, NULL, false);
1332 amdgpu_bo_unreserve(pd);
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);
1340 vm->process_info = NULL;
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));
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);
1356 void amdgpu_amdkfd_gpuvm_release_process_vm(struct kgd_dev *kgd, void *drm_priv)
1358 struct amdgpu_device *adev = get_amdgpu_device(kgd);
1359 struct amdgpu_vm *avm;
1361 if (WARN_ON(!kgd || !drm_priv))
1364 avm = drm_priv_to_vm(drm_priv);
1366 pr_debug("Releasing process vm %p\n", avm);
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.
1374 amdgpu_vm_release_compute(adev, avm);
1377 uint64_t amdgpu_amdkfd_gpuvm_get_process_page_dir(void *drm_priv)
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);
1383 if (adev->asic_type < CHIP_VEGA10)
1384 return avm->pd_phys_addr >> AMDGPU_GPU_PAGE_SHIFT;
1385 return avm->pd_phys_addr;
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)
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;
1405 * Check on which domain to allocate BO
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;
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)
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;
1428 if (size > UINT_MAX)
1430 sg = create_doorbell_sg(*offset, size);
1437 *mem = kzalloc(sizeof(struct kgd_mem), GFP_KERNEL);
1442 INIT_LIST_HEAD(&(*mem)->attachments);
1443 mutex_init(&(*mem)->lock);
1444 (*mem)->aql_queue = !!(flags & KFD_IOC_ALLOC_MEM_FLAGS_AQL_QUEUE_MEM);
1446 /* Workaround for AQL queue wraparound bug. Map the same
1447 * memory twice. That means we only actually allocate half
1450 if ((*mem)->aql_queue)
1453 (*mem)->alloc_flags = flags;
1455 amdgpu_sync_create(&(*mem)->sync);
1457 ret = amdgpu_amdkfd_reserve_mem_limit(adev, size, alloc_domain, !!sg);
1459 pr_debug("Insufficient memory\n");
1460 goto err_reserve_limit;
1463 pr_debug("\tcreate BO VA 0x%llx size 0x%llx domain %s\n",
1464 va, size, domain_string(alloc_domain));
1466 ret = amdgpu_gem_object_create(adev, size, 1, alloc_domain, alloc_flags,
1467 bo_type, NULL, &gobj);
1469 pr_debug("Failed to create BO on domain %s. ret %d\n",
1470 domain_string(alloc_domain), ret);
1473 ret = drm_vma_node_allow(&gobj->vma_node, drm_priv);
1475 pr_debug("Failed to allow vma node access. ret %d\n", ret);
1476 goto err_node_allow;
1478 bo = gem_to_amdgpu_bo(gobj);
1479 if (bo_type == ttm_bo_type_sg) {
1481 bo->tbo.ttm->sg = sg;
1486 bo->flags |= AMDGPU_AMDKFD_CREATE_USERPTR_BO;
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);
1495 ret = init_user_pages(*mem, user_addr);
1497 goto allocate_init_user_pages_failed;
1501 *offset = amdgpu_bo_mmap_offset(bo);
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);
1509 /* Don't unreserve system mem limit twice */
1510 goto err_reserve_limit;
1512 unreserve_mem_limit(adev, size, alloc_domain, !!sg);
1514 mutex_destroy(&(*mem)->lock);
1516 drm_gem_object_put(gobj);
1527 int amdgpu_amdkfd_gpuvm_free_memory_of_gpu(
1528 struct kgd_dev *kgd, struct kgd_mem *mem, void *drm_priv,
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;
1538 bool is_imported = false;
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
1548 if (mapped_to_gpu_memory > 0) {
1549 pr_debug("BO VA 0x%llx size 0x%lx is still mapped.\n",
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);
1560 /* No more MMU notifiers */
1561 amdgpu_mn_unregister(mem->bo);
1563 ret = reserve_bo_and_cond_vms(mem, NULL, BO_VM_ALL, &ctx);
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
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));
1576 /* Remove from VM internal data structures */
1577 list_for_each_entry_safe(entry, tmp, &mem->attachments, list)
1578 kfd_mem_detach(entry);
1580 ret = unreserve_bo_and_vms(&ctx, false, false);
1582 /* Free the sync object */
1583 amdgpu_sync_free(&mem->sync);
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.
1588 if (mem->bo->tbo.sg) {
1589 sg_free_table(mem->bo->tbo.sg);
1590 kfree(mem->bo->tbo.sg);
1593 /* Update the size of the BO being freed if it was allocated from
1594 * VRAM and is not imported.
1597 if ((mem->bo->preferred_domains == AMDGPU_GEM_DOMAIN_VRAM) &&
1605 drm_vma_node_revoke(&mem->bo->tbo.base.vma_node, drm_priv);
1607 dma_buf_put(mem->dmabuf);
1608 mutex_destroy(&mem->lock);
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.
1614 drm_gem_object_put(&mem->bo->tbo.base);
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)
1623 struct amdgpu_device *adev = get_amdgpu_device(kgd);
1624 struct amdgpu_vm *avm = drm_priv_to_vm(drm_priv);
1626 struct amdgpu_bo *bo;
1628 struct kfd_mem_attachment *entry;
1629 struct bo_vm_reservation_context ctx;
1630 unsigned long bo_size;
1631 bool is_invalid_userptr = false;
1635 pr_err("Invalid BO when mapping memory to GPU\n");
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
1643 mutex_lock(&mem->process_info->lock);
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
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);
1655 mutex_lock(&mem->lock);
1657 domain = mem->domain;
1658 bo_size = bo->tbo.base.size;
1660 pr_debug("Map VA 0x%llx - 0x%llx to vm %p domain %s\n",
1662 mem->va + bo_size * (1 + mem->aql_queue),
1663 avm, domain_string(domain));
1665 if (!kfd_mem_is_attached(avm, mem)) {
1666 ret = kfd_mem_attach(adev, mem, avm, mem->aql_queue);
1671 ret = reserve_bo_and_vm(mem, avm, &ctx);
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
1680 if (amdgpu_ttm_tt_get_usermm(bo->tbo.ttm) &&
1681 bo->tbo.resource->mem_type == TTM_PL_SYSTEM)
1682 is_invalid_userptr = true;
1684 ret = vm_validate_pt_pd_bos(avm);
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.
1694 ret = amdgpu_amdkfd_bo_validate(bo, domain, true);
1696 pr_debug("Validate failed\n");
1701 list_for_each_entry(entry, &mem->attachments, list) {
1702 if (entry->bo_va->base.vm != avm || entry->is_mapped)
1705 pr_debug("\t map VA 0x%llx - 0x%llx in entry %p\n",
1706 entry->va, entry->va + bo_size, entry);
1708 ret = map_bo_to_gpuvm(mem, entry, ctx.sync,
1709 is_invalid_userptr, table_freed);
1711 pr_err("Failed to map bo to gpuvm\n");
1715 ret = vm_update_pds(avm, ctx.sync);
1717 pr_err("Failed to update page directories\n");
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);
1727 if (!amdgpu_ttm_tt_get_usermm(bo->tbo.ttm) && !bo->tbo.pin_count)
1729 &avm->process_info->eviction_fence->base,
1731 ret = unreserve_bo_and_vms(&ctx, false, false);
1733 /* Only apply no TLB flush on Aldebaran to
1734 * workaround regressions on other Asics.
1736 if (table_freed && (adev->asic_type != CHIP_ALDEBARAN))
1737 *table_freed = true;
1742 unreserve_bo_and_vms(&ctx, false, false);
1744 mutex_unlock(&mem->process_info->lock);
1745 mutex_unlock(&mem->lock);
1749 int amdgpu_amdkfd_gpuvm_unmap_memory_from_gpu(
1750 struct kgd_dev *kgd, struct kgd_mem *mem, void *drm_priv)
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;
1759 mutex_lock(&mem->lock);
1761 ret = reserve_bo_and_cond_vms(mem, avm, BO_VM_MAPPED, &ctx);
1764 /* If no VMs were reserved, it means the BO wasn't actually mapped */
1765 if (ctx.n_vms == 0) {
1770 ret = vm_validate_pt_pd_bos(avm);
1774 pr_debug("Unmap VA 0x%llx - 0x%llx from vm %p\n",
1776 mem->va + bo_size * (1 + mem->aql_queue),
1779 list_for_each_entry(entry, &mem->attachments, list) {
1780 if (entry->bo_va->base.vm != avm || !entry->is_mapped)
1783 pr_debug("\t unmap VA 0x%llx - 0x%llx from entry %p\n",
1784 entry->va, entry->va + bo_size, entry);
1786 unmap_bo_from_gpuvm(mem, entry, ctx.sync);
1787 entry->is_mapped = false;
1789 mem->mapped_to_gpu_memory--;
1790 pr_debug("\t DEC mapping count %d\n",
1791 mem->mapped_to_gpu_memory);
1794 /* If BO is unmapped from all VMs, unfence it. It can be evicted if
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);
1804 unreserve_bo_and_vms(&ctx, false, false);
1806 mutex_unlock(&mem->lock);
1810 int amdgpu_amdkfd_gpuvm_sync_memory(
1811 struct kgd_dev *kgd, struct kgd_mem *mem, bool intr)
1813 struct amdgpu_sync sync;
1816 amdgpu_sync_create(&sync);
1818 mutex_lock(&mem->lock);
1819 amdgpu_sync_clone(&mem->sync, &sync);
1820 mutex_unlock(&mem->lock);
1822 ret = amdgpu_sync_wait(&sync, intr);
1823 amdgpu_sync_free(&sync);
1827 int amdgpu_amdkfd_gpuvm_map_gtt_bo_to_kernel(struct kgd_dev *kgd,
1828 struct kgd_mem *mem, void **kptr, uint64_t *size)
1831 struct amdgpu_bo *bo = mem->bo;
1833 if (amdgpu_ttm_tt_get_usermm(bo->tbo.ttm)) {
1834 pr_err("userptr can't be mapped to kernel\n");
1838 /* delete kgd_mem from kfd_bo_list to avoid re-validating
1839 * this BO in BO's restoring after eviction.
1841 mutex_lock(&mem->process_info->lock);
1843 ret = amdgpu_bo_reserve(bo, true);
1845 pr_err("Failed to reserve bo. ret %d\n", ret);
1846 goto bo_reserve_failed;
1849 ret = amdgpu_bo_pin(bo, AMDGPU_GEM_DOMAIN_GTT);
1851 pr_err("Failed to pin bo. ret %d\n", ret);
1855 ret = amdgpu_bo_kmap(bo, kptr);
1857 pr_err("Failed to map bo to kernel. ret %d\n", ret);
1861 amdgpu_amdkfd_remove_eviction_fence(
1862 bo, mem->process_info->eviction_fence);
1863 list_del_init(&mem->validate_list.head);
1866 *size = amdgpu_bo_size(bo);
1868 amdgpu_bo_unreserve(bo);
1870 mutex_unlock(&mem->process_info->lock);
1874 amdgpu_bo_unpin(bo);
1876 amdgpu_bo_unreserve(bo);
1878 mutex_unlock(&mem->process_info->lock);
1883 void amdgpu_amdkfd_gpuvm_unmap_gtt_bo_from_kernel(struct kgd_dev *kgd, struct kgd_mem *mem)
1885 struct amdgpu_bo *bo = mem->bo;
1887 amdgpu_bo_reserve(bo, true);
1888 amdgpu_bo_kunmap(bo);
1889 amdgpu_bo_unpin(bo);
1890 amdgpu_bo_unreserve(bo);
1893 int amdgpu_amdkfd_gpuvm_get_vm_fault_info(struct kgd_dev *kgd,
1894 struct kfd_vm_fault_info *mem)
1896 struct amdgpu_device *adev;
1898 adev = (struct amdgpu_device *)kgd;
1899 if (atomic_read(&adev->gmc.vm_fault_info_updated) == 1) {
1900 *mem = *adev->gmc.vm_fault_info;
1902 atomic_set(&adev->gmc.vm_fault_info_updated, 0);
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)
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;
1919 if (dma_buf->ops != &amdgpu_dmabuf_ops)
1920 /* Can't handle non-graphics buffers */
1923 obj = dma_buf->priv;
1924 if (drm_to_adev(obj->dev) != adev)
1925 /* Can't handle buffers from other devices */
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 */
1934 *mem = kzalloc(sizeof(struct kgd_mem), GFP_KERNEL);
1938 ret = drm_vma_node_allow(&obj->vma_node, drm_priv);
1945 *size = amdgpu_bo_size(bo);
1948 *mmap_offset = amdgpu_bo_mmap_offset(bo);
1950 INIT_LIST_HEAD(&(*mem)->attachments);
1951 mutex_init(&(*mem)->lock);
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;
1959 drm_gem_object_get(&bo->tbo.base);
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;
1973 /* Evict a userptr BO by stopping the queues if necessary
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.
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.
1984 int amdgpu_amdkfd_evict_userptr(struct kgd_mem *mem,
1985 struct mm_struct *mm)
1987 struct amdkfd_process_info *process_info = mem->process_info;
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);
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));
2005 /* Update invalid userptr BOs
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.
2011 static int update_invalid_user_pages(struct amdkfd_process_info *process_info,
2012 struct mm_struct *mm)
2014 struct kgd_mem *mem, *tmp_mem;
2015 struct amdgpu_bo *bo;
2016 struct ttm_operation_ctx ctx = { false, false };
2019 /* Move all invalidated BOs to the userptr_inval_list and
2020 * release their user pages by migration to the CPU domain
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 */
2030 if (amdgpu_bo_reserve(bo, true))
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);
2036 pr_err("%s: Failed to invalidate userptr BO\n",
2041 list_move_tail(&mem->validate_list.head,
2042 &process_info->userptr_inval_list);
2045 if (list_empty(&process_info->userptr_inval_list))
2046 return 0; /* All evicted userptr BOs were freed */
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);
2053 /* BO hasn't been invalidated since the last
2054 * revalidation attempt. Keep its BO list.
2060 /* Get updated user pages */
2061 ret = amdgpu_ttm_tt_get_user_pages(bo, bo->tbo.ttm->pages);
2063 pr_debug("Failed %d to get user pages\n", ret);
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
2070 * Return other error -EBUSY or -ENOMEM to retry restore
2077 * FIXME: Cannot ignore the return code, must hold
2080 amdgpu_ttm_tt_get_user_pages_done(bo->tbo.ttm);
2083 /* Mark the BO as valid unless it was invalidated
2084 * again concurrently.
2086 if (atomic_cmpxchg(&mem->invalid, invalid, 0) != invalid)
2093 /* Validate invalid userptr BOs
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.
2099 static int validate_invalid_user_pages(struct amdkfd_process_info *process_info)
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;
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 };
2112 pd_bo_list_entries = kcalloc(process_info->n_vms,
2113 sizeof(struct amdgpu_bo_list_entry),
2115 if (!pd_bo_list_entries) {
2116 pr_err("%s: Failed to allocate PD BO list entries\n", __func__);
2121 INIT_LIST_HEAD(&resv_list);
2122 INIT_LIST_HEAD(&duplicates);
2124 /* Get all the page directory BOs that need to be reserved */
2126 list_for_each_entry(peer_vm, &process_info->vm_list_head,
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;
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");
2144 amdgpu_sync_create(&sync);
2146 ret = process_validate_vms(process_info);
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;
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);
2163 pr_err("%s: failed to validate BO\n", __func__);
2168 list_move_tail(&mem->validate_list.head,
2169 &process_info->userptr_valid_list);
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
2177 list_for_each_entry(attachment, &mem->attachments, list) {
2178 if (!attachment->is_mapped)
2181 kfd_mem_dmaunmap_attachment(mem, attachment);
2182 ret = update_gpuvm_pte(mem, attachment, &sync, NULL);
2184 pr_err("%s: update PTE failed\n", __func__);
2185 /* make sure this gets validated again */
2186 atomic_inc(&mem->invalid);
2192 /* Update page directories */
2193 ret = process_update_pds(process_info, &sync);
2196 ttm_eu_backoff_reservation(&ticket, &resv_list);
2197 amdgpu_sync_wait(&sync, false);
2198 amdgpu_sync_free(&sync);
2200 kfree(pd_bo_list_entries);
2206 /* Worker callback to restore evicted userptr BOs
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.
2212 static void amdgpu_amdkfd_restore_userptr_worker(struct work_struct *work)
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;
2222 evicted_bos = atomic_read(&process_info->evicted_bos);
2226 /* Reference task and mm in case of concurrent process termination */
2227 usertask = get_pid_task(process_info->pid, PIDTYPE_PID);
2230 mm = get_task_mm(usertask);
2232 put_task_struct(usertask);
2236 mutex_lock(&process_info->lock);
2238 if (update_invalid_user_pages(process_info, mm))
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.
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 */
2248 if (validate_invalid_user_pages(process_info))
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.
2256 if (atomic_cmpxchg(&process_info->evicted_bos, 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.
2268 mutex_unlock(&process_info->lock);
2270 put_task_struct(usertask);
2272 /* If validation failed, reschedule another attempt */
2274 schedule_delayed_work(&process_info->restore_userptr_work,
2275 msecs_to_jiffies(AMDGPU_USERPTR_RESTORE_DELAY_MS));
2278 /** amdgpu_amdkfd_gpuvm_restore_process_bos - Restore all BOs for the given
2279 * KFD process identified by process_info
2281 * @process_info: amdkfd_process_info of the KFD process
2283 * After memory eviction, restore thread calls this function. The function
2284 * should be called when the Process is still valid. BO restore involves -
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
2296 int amdgpu_amdkfd_gpuvm_restore_process_bos(void *info, struct dma_fence **ef)
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;
2305 struct list_head duplicate_save;
2306 struct amdgpu_sync sync_obj;
2307 unsigned long failed_size = 0;
2308 unsigned long total_size = 0;
2310 INIT_LIST_HEAD(&duplicate_save);
2311 INIT_LIST_HEAD(&ctx.list);
2312 INIT_LIST_HEAD(&ctx.duplicates);
2314 pd_bo_list = kcalloc(process_info->n_vms,
2315 sizeof(struct amdgpu_bo_list_entry),
2321 mutex_lock(&process_info->lock);
2322 list_for_each_entry(peer_vm, &process_info->vm_list_head,
2324 amdgpu_vm_get_pd_bo(peer_vm, &ctx.list, &pd_bo_list[i++]);
2326 /* Reserve all BOs and page tables/directory. Add all BOs from
2327 * kfd_bo_list to ctx.list
2329 list_for_each_entry(mem, &process_info->kfd_bo_list,
2330 validate_list.head) {
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;
2337 ret = ttm_eu_reserve_buffers(&ctx.ticket, &ctx.list,
2338 false, &duplicate_save);
2340 pr_debug("Memory eviction: TTM Reserve Failed. Try again\n");
2341 goto ttm_reserve_fail;
2344 amdgpu_sync_create(&sync_obj);
2346 /* Validate PDs and PTs */
2347 ret = process_validate_vms(process_info);
2349 goto validate_map_fail;
2351 ret = process_sync_pds_resv(process_info, &sync_obj);
2353 pr_debug("Memory eviction: Failed to sync to PD BO moving fence. Try again\n");
2354 goto validate_map_fail;
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) {
2361 struct amdgpu_bo *bo = mem->bo;
2362 uint32_t domain = mem->domain;
2363 struct kfd_mem_attachment *attachment;
2365 total_size += amdgpu_bo_size(bo);
2367 ret = amdgpu_amdkfd_bo_validate(bo, domain, false);
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);
2374 pr_debug("Memory eviction: Try again\n");
2375 goto validate_map_fail;
2378 ret = amdgpu_sync_fence(&sync_obj, bo->tbo.moving);
2380 pr_debug("Memory eviction: Sync BO fence failed. Try again\n");
2381 goto validate_map_fail;
2383 list_for_each_entry(attachment, &mem->attachments, list) {
2384 if (!attachment->is_mapped)
2387 kfd_mem_dmaunmap_attachment(mem, attachment);
2388 ret = update_gpuvm_pte(mem, attachment, &sync_obj, NULL);
2390 pr_debug("Memory eviction: update PTE failed. Try again\n");
2391 goto validate_map_fail;
2397 pr_debug("0x%lx/0x%lx in system\n", failed_size, total_size);
2399 /* Update page directories */
2400 ret = process_update_pds(process_info, &sync_obj);
2402 pr_debug("Memory eviction: update PDs failed. Try again\n");
2403 goto validate_map_fail;
2406 /* Wait for validate and PT updates to finish */
2407 amdgpu_sync_wait(&sync_obj, false);
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.
2413 new_fence = amdgpu_amdkfd_fence_create(
2414 process_info->eviction_fence->base.context,
2415 process_info->eviction_fence->mm,
2418 pr_err("Failed to create eviction fence\n");
2420 goto validate_map_fail;
2422 dma_fence_put(&process_info->eviction_fence->base);
2423 process_info->eviction_fence = new_fence;
2424 *ef = dma_fence_get(&new_fence->base);
2426 /* Attach new eviction fence to all BOs */
2427 list_for_each_entry(mem, &process_info->kfd_bo_list,
2429 amdgpu_bo_fence(mem->bo,
2430 &process_info->eviction_fence->base, true);
2432 /* Attach eviction fence to PD / PT BOs */
2433 list_for_each_entry(peer_vm, &process_info->vm_list_head,
2435 struct amdgpu_bo *bo = peer_vm->root.bo;
2437 amdgpu_bo_fence(bo, &process_info->eviction_fence->base, true);
2441 ttm_eu_backoff_reservation(&ctx.ticket, &ctx.list);
2442 amdgpu_sync_free(&sync_obj);
2444 mutex_unlock(&process_info->lock);
2449 int amdgpu_amdkfd_add_gws_to_process(void *info, void *gws, struct kgd_mem **mem)
2451 struct amdkfd_process_info *process_info = (struct amdkfd_process_info *)info;
2452 struct amdgpu_bo *gws_bo = (struct amdgpu_bo *)gws;
2458 *mem = kzalloc(sizeof(struct kgd_mem), GFP_KERNEL);
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);
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;
2479 ret = amdgpu_amdkfd_bo_validate(gws_bo, AMDGPU_GEM_DOMAIN_GWS, true);
2481 pr_err("GWS BO validate failed %d\n", ret);
2482 goto bo_validation_failure;
2484 /* GWS resource is shared b/t amdgpu and amdkfd
2485 * Add process eviction fence to bo so they can
2488 ret = dma_resv_reserve_shared(gws_bo->tbo.base.resv, 1);
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);
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);
2511 int amdgpu_amdkfd_remove_gws_from_process(void *info, void *mem)
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;
2518 /* Remove BO from process's validate list so restore worker won't touch
2521 remove_kgd_mem_from_kfd_bo_list(kgd_mem, process_info);
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?
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);
2539 /* Returns GPU-specific tiling mode information */
2540 int amdgpu_amdkfd_get_tile_config(struct kgd_dev *kgd,
2541 struct tile_config *config)
2543 struct amdgpu_device *adev = (struct amdgpu_device *)kgd;
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);
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;