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