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