xref: /linux/drivers/gpu/drm/amd/amdgpu/amdgpu_vm.c (revision 237f1bbfe3d84a74ad8e6e207660bdb3e6d9a84d)
1 /*
2  * Copyright 2008 Advanced Micro Devices, Inc.
3  * Copyright 2008 Red Hat Inc.
4  * Copyright 2009 Jerome Glisse.
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a
7  * copy of this software and associated documentation files (the "Software"),
8  * to deal in the Software without restriction, including without limitation
9  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10  * and/or sell copies of the Software, and to permit persons to whom the
11  * Software is furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in
14  * all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
19  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
20  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22  * OTHER DEALINGS IN THE SOFTWARE.
23  *
24  * Authors: Dave Airlie
25  *          Alex Deucher
26  *          Jerome Glisse
27  */
28 
29 #include <linux/dma-fence-array.h>
30 #include <linux/interval_tree_generic.h>
31 #include <linux/idr.h>
32 #include <linux/dma-buf.h>
33 
34 #include <drm/amdgpu_drm.h>
35 #include <drm/drm_drv.h>
36 #include <drm/ttm/ttm_tt.h>
37 #include <drm/drm_exec.h>
38 #include "amdgpu.h"
39 #include "amdgpu_vm.h"
40 #include "amdgpu_trace.h"
41 #include "amdgpu_amdkfd.h"
42 #include "amdgpu_gmc.h"
43 #include "amdgpu_xgmi.h"
44 #include "amdgpu_dma_buf.h"
45 #include "amdgpu_res_cursor.h"
46 #include "kfd_svm.h"
47 
48 /**
49  * DOC: GPUVM
50  *
51  * GPUVM is the MMU functionality provided on the GPU.
52  * GPUVM is similar to the legacy GART on older asics, however
53  * rather than there being a single global GART table
54  * for the entire GPU, there can be multiple GPUVM page tables active
55  * at any given time.  The GPUVM page tables can contain a mix
56  * VRAM pages and system pages (both memory and MMIO) and system pages
57  * can be mapped as snooped (cached system pages) or unsnooped
58  * (uncached system pages).
59  *
60  * Each active GPUVM has an ID associated with it and there is a page table
61  * linked with each VMID.  When executing a command buffer,
62  * the kernel tells the engine what VMID to use for that command
63  * buffer.  VMIDs are allocated dynamically as commands are submitted.
64  * The userspace drivers maintain their own address space and the kernel
65  * sets up their pages tables accordingly when they submit their
66  * command buffers and a VMID is assigned.
67  * The hardware supports up to 16 active GPUVMs at any given time.
68  *
69  * Each GPUVM is represented by a 1-2 or 1-5 level page table, depending
70  * on the ASIC family.  GPUVM supports RWX attributes on each page as well
71  * as other features such as encryption and caching attributes.
72  *
73  * VMID 0 is special.  It is the GPUVM used for the kernel driver.  In
74  * addition to an aperture managed by a page table, VMID 0 also has
75  * several other apertures.  There is an aperture for direct access to VRAM
76  * and there is a legacy AGP aperture which just forwards accesses directly
77  * to the matching system physical addresses (or IOVAs when an IOMMU is
78  * present).  These apertures provide direct access to these memories without
79  * incurring the overhead of a page table.  VMID 0 is used by the kernel
80  * driver for tasks like memory management.
81  *
82  * GPU clients (i.e., engines on the GPU) use GPUVM VMIDs to access memory.
83  * For user applications, each application can have their own unique GPUVM
84  * address space.  The application manages the address space and the kernel
85  * driver manages the GPUVM page tables for each process.  If an GPU client
86  * accesses an invalid page, it will generate a GPU page fault, similar to
87  * accessing an invalid page on a CPU.
88  */
89 
90 #define START(node) ((node)->start)
91 #define LAST(node) ((node)->last)
92 
93 INTERVAL_TREE_DEFINE(struct amdgpu_bo_va_mapping, rb, uint64_t, __subtree_last,
94 		     START, LAST, static, amdgpu_vm_it)
95 
96 #undef START
97 #undef LAST
98 
99 /**
100  * struct amdgpu_prt_cb - Helper to disable partial resident texture feature from a fence callback
101  */
102 struct amdgpu_prt_cb {
103 
104 	/**
105 	 * @adev: amdgpu device
106 	 */
107 	struct amdgpu_device *adev;
108 
109 	/**
110 	 * @cb: callback
111 	 */
112 	struct dma_fence_cb cb;
113 };
114 
115 /**
116  * struct amdgpu_vm_tlb_seq_struct - Helper to increment the TLB flush sequence
117  */
118 struct amdgpu_vm_tlb_seq_struct {
119 	/**
120 	 * @vm: pointer to the amdgpu_vm structure to set the fence sequence on
121 	 */
122 	struct amdgpu_vm *vm;
123 
124 	/**
125 	 * @cb: callback
126 	 */
127 	struct dma_fence_cb cb;
128 };
129 
130 /**
131  * amdgpu_vm_assert_locked - check if VM is correctly locked
132  * @vm: the VM which schould be tested
133  *
134  * Asserts that the VM root PD is locked.
135  */
amdgpu_vm_assert_locked(struct amdgpu_vm * vm)136 static void amdgpu_vm_assert_locked(struct amdgpu_vm *vm)
137 {
138 	dma_resv_assert_held(vm->root.bo->tbo.base.resv);
139 }
140 
141 /**
142  * amdgpu_vm_bo_evicted - vm_bo is evicted
143  *
144  * @vm_bo: vm_bo which is evicted
145  *
146  * State for PDs/PTs and per VM BOs which are not at the location they should
147  * be.
148  */
amdgpu_vm_bo_evicted(struct amdgpu_vm_bo_base * vm_bo)149 static void amdgpu_vm_bo_evicted(struct amdgpu_vm_bo_base *vm_bo)
150 {
151 	struct amdgpu_vm *vm = vm_bo->vm;
152 	struct amdgpu_bo *bo = vm_bo->bo;
153 
154 	vm_bo->moved = true;
155 	amdgpu_vm_assert_locked(vm);
156 	spin_lock(&vm_bo->vm->status_lock);
157 	if (bo->tbo.type == ttm_bo_type_kernel)
158 		list_move(&vm_bo->vm_status, &vm->evicted);
159 	else
160 		list_move_tail(&vm_bo->vm_status, &vm->evicted);
161 	spin_unlock(&vm_bo->vm->status_lock);
162 }
163 /**
164  * amdgpu_vm_bo_moved - vm_bo is moved
165  *
166  * @vm_bo: vm_bo which is moved
167  *
168  * State for per VM BOs which are moved, but that change is not yet reflected
169  * in the page tables.
170  */
amdgpu_vm_bo_moved(struct amdgpu_vm_bo_base * vm_bo)171 static void amdgpu_vm_bo_moved(struct amdgpu_vm_bo_base *vm_bo)
172 {
173 	amdgpu_vm_assert_locked(vm_bo->vm);
174 	spin_lock(&vm_bo->vm->status_lock);
175 	list_move(&vm_bo->vm_status, &vm_bo->vm->moved);
176 	spin_unlock(&vm_bo->vm->status_lock);
177 }
178 
179 /**
180  * amdgpu_vm_bo_idle - vm_bo is idle
181  *
182  * @vm_bo: vm_bo which is now idle
183  *
184  * State for PDs/PTs and per VM BOs which have gone through the state machine
185  * and are now idle.
186  */
amdgpu_vm_bo_idle(struct amdgpu_vm_bo_base * vm_bo)187 static void amdgpu_vm_bo_idle(struct amdgpu_vm_bo_base *vm_bo)
188 {
189 	amdgpu_vm_assert_locked(vm_bo->vm);
190 	spin_lock(&vm_bo->vm->status_lock);
191 	list_move(&vm_bo->vm_status, &vm_bo->vm->idle);
192 	spin_unlock(&vm_bo->vm->status_lock);
193 	vm_bo->moved = false;
194 }
195 
196 /**
197  * amdgpu_vm_bo_invalidated - vm_bo is invalidated
198  *
199  * @vm_bo: vm_bo which is now invalidated
200  *
201  * State for normal BOs which are invalidated and that change not yet reflected
202  * in the PTs.
203  */
amdgpu_vm_bo_invalidated(struct amdgpu_vm_bo_base * vm_bo)204 static void amdgpu_vm_bo_invalidated(struct amdgpu_vm_bo_base *vm_bo)
205 {
206 	spin_lock(&vm_bo->vm->status_lock);
207 	list_move(&vm_bo->vm_status, &vm_bo->vm->invalidated);
208 	spin_unlock(&vm_bo->vm->status_lock);
209 }
210 
211 /**
212  * amdgpu_vm_bo_evicted_user - vm_bo is evicted
213  *
214  * @vm_bo: vm_bo which is evicted
215  *
216  * State for BOs used by user mode queues which are not at the location they
217  * should be.
218  */
amdgpu_vm_bo_evicted_user(struct amdgpu_vm_bo_base * vm_bo)219 static void amdgpu_vm_bo_evicted_user(struct amdgpu_vm_bo_base *vm_bo)
220 {
221 	vm_bo->moved = true;
222 	spin_lock(&vm_bo->vm->status_lock);
223 	list_move(&vm_bo->vm_status, &vm_bo->vm->evicted_user);
224 	spin_unlock(&vm_bo->vm->status_lock);
225 }
226 
227 /**
228  * amdgpu_vm_bo_relocated - vm_bo is reloacted
229  *
230  * @vm_bo: vm_bo which is relocated
231  *
232  * State for PDs/PTs which needs to update their parent PD.
233  * For the root PD, just move to idle state.
234  */
amdgpu_vm_bo_relocated(struct amdgpu_vm_bo_base * vm_bo)235 static void amdgpu_vm_bo_relocated(struct amdgpu_vm_bo_base *vm_bo)
236 {
237 	amdgpu_vm_assert_locked(vm_bo->vm);
238 	if (vm_bo->bo->parent) {
239 		spin_lock(&vm_bo->vm->status_lock);
240 		list_move(&vm_bo->vm_status, &vm_bo->vm->relocated);
241 		spin_unlock(&vm_bo->vm->status_lock);
242 	} else {
243 		amdgpu_vm_bo_idle(vm_bo);
244 	}
245 }
246 
247 /**
248  * amdgpu_vm_bo_done - vm_bo is done
249  *
250  * @vm_bo: vm_bo which is now done
251  *
252  * State for normal BOs which are invalidated and that change has been updated
253  * in the PTs.
254  */
amdgpu_vm_bo_done(struct amdgpu_vm_bo_base * vm_bo)255 static void amdgpu_vm_bo_done(struct amdgpu_vm_bo_base *vm_bo)
256 {
257 	amdgpu_vm_assert_locked(vm_bo->vm);
258 	spin_lock(&vm_bo->vm->status_lock);
259 	list_move(&vm_bo->vm_status, &vm_bo->vm->done);
260 	spin_unlock(&vm_bo->vm->status_lock);
261 }
262 
263 /**
264  * amdgpu_vm_bo_reset_state_machine - reset the vm_bo state machine
265  * @vm: the VM which state machine to reset
266  *
267  * Move all vm_bo object in the VM into a state where they will be updated
268  * again during validation.
269  */
amdgpu_vm_bo_reset_state_machine(struct amdgpu_vm * vm)270 static void amdgpu_vm_bo_reset_state_machine(struct amdgpu_vm *vm)
271 {
272 	struct amdgpu_vm_bo_base *vm_bo, *tmp;
273 
274 	amdgpu_vm_assert_locked(vm);
275 
276 	spin_lock(&vm->status_lock);
277 	list_splice_init(&vm->done, &vm->invalidated);
278 	list_for_each_entry(vm_bo, &vm->invalidated, vm_status)
279 		vm_bo->moved = true;
280 
281 	list_for_each_entry_safe(vm_bo, tmp, &vm->idle, vm_status) {
282 		struct amdgpu_bo *bo = vm_bo->bo;
283 
284 		vm_bo->moved = true;
285 		if (!bo || bo->tbo.type != ttm_bo_type_kernel)
286 			list_move(&vm_bo->vm_status, &vm_bo->vm->moved);
287 		else if (bo->parent)
288 			list_move(&vm_bo->vm_status, &vm_bo->vm->relocated);
289 	}
290 	spin_unlock(&vm->status_lock);
291 }
292 
293 /**
294  * amdgpu_vm_update_shared - helper to update shared memory stat
295  * @base: base structure for tracking BO usage in a VM
296  *
297  * Takes the vm status_lock and updates the shared memory stat. If the basic
298  * stat changed (e.g. buffer was moved) amdgpu_vm_update_stats need to be called
299  * as well.
300  */
amdgpu_vm_update_shared(struct amdgpu_vm_bo_base * base)301 static void amdgpu_vm_update_shared(struct amdgpu_vm_bo_base *base)
302 {
303 	struct amdgpu_vm *vm = base->vm;
304 	struct amdgpu_bo *bo = base->bo;
305 	uint64_t size = amdgpu_bo_size(bo);
306 	uint32_t bo_memtype = amdgpu_bo_mem_stats_placement(bo);
307 	bool shared;
308 
309 	dma_resv_assert_held(bo->tbo.base.resv);
310 	spin_lock(&vm->status_lock);
311 	shared = drm_gem_object_is_shared_for_memory_stats(&bo->tbo.base);
312 	if (base->shared != shared) {
313 		base->shared = shared;
314 		if (shared) {
315 			vm->stats[bo_memtype].drm.shared += size;
316 			vm->stats[bo_memtype].drm.private -= size;
317 		} else {
318 			vm->stats[bo_memtype].drm.shared -= size;
319 			vm->stats[bo_memtype].drm.private += size;
320 		}
321 	}
322 	spin_unlock(&vm->status_lock);
323 }
324 
325 /**
326  * amdgpu_vm_bo_update_shared - callback when bo gets shared/unshared
327  * @bo: amdgpu buffer object
328  *
329  * Update the per VM stats for all the vm if needed from private to shared or
330  * vice versa.
331  */
amdgpu_vm_bo_update_shared(struct amdgpu_bo * bo)332 void amdgpu_vm_bo_update_shared(struct amdgpu_bo *bo)
333 {
334 	struct amdgpu_vm_bo_base *base;
335 
336 	for (base = bo->vm_bo; base; base = base->next)
337 		amdgpu_vm_update_shared(base);
338 }
339 
340 /**
341  * amdgpu_vm_update_stats_locked - helper to update normal memory stat
342  * @base: base structure for tracking BO usage in a VM
343  * @res:  the ttm_resource to use for the purpose of accounting, may or may not
344  *        be bo->tbo.resource
345  * @sign: if we should add (+1) or subtract (-1) from the stat
346  *
347  * Caller need to have the vm status_lock held. Useful for when multiple update
348  * need to happen at the same time.
349  */
amdgpu_vm_update_stats_locked(struct amdgpu_vm_bo_base * base,struct ttm_resource * res,int sign)350 static void amdgpu_vm_update_stats_locked(struct amdgpu_vm_bo_base *base,
351 			    struct ttm_resource *res, int sign)
352 {
353 	struct amdgpu_vm *vm = base->vm;
354 	struct amdgpu_bo *bo = base->bo;
355 	int64_t size = sign * amdgpu_bo_size(bo);
356 	uint32_t bo_memtype = amdgpu_bo_mem_stats_placement(bo);
357 
358 	/* For drm-total- and drm-shared-, BO are accounted by their preferred
359 	 * placement, see also amdgpu_bo_mem_stats_placement.
360 	 */
361 	if (base->shared)
362 		vm->stats[bo_memtype].drm.shared += size;
363 	else
364 		vm->stats[bo_memtype].drm.private += size;
365 
366 	if (res && res->mem_type < __AMDGPU_PL_NUM) {
367 		uint32_t res_memtype = res->mem_type;
368 
369 		vm->stats[res_memtype].drm.resident += size;
370 		/* BO only count as purgeable if it is resident,
371 		 * since otherwise there's nothing to purge.
372 		 */
373 		if (bo->flags & AMDGPU_GEM_CREATE_DISCARDABLE)
374 			vm->stats[res_memtype].drm.purgeable += size;
375 		if (!(bo->preferred_domains & amdgpu_mem_type_to_domain(res_memtype)))
376 			vm->stats[bo_memtype].evicted += size;
377 	}
378 }
379 
380 /**
381  * amdgpu_vm_update_stats - helper to update normal memory stat
382  * @base: base structure for tracking BO usage in a VM
383  * @res:  the ttm_resource to use for the purpose of accounting, may or may not
384  *        be bo->tbo.resource
385  * @sign: if we should add (+1) or subtract (-1) from the stat
386  *
387  * Updates the basic memory stat when bo is added/deleted/moved.
388  */
amdgpu_vm_update_stats(struct amdgpu_vm_bo_base * base,struct ttm_resource * res,int sign)389 void amdgpu_vm_update_stats(struct amdgpu_vm_bo_base *base,
390 			    struct ttm_resource *res, int sign)
391 {
392 	struct amdgpu_vm *vm = base->vm;
393 
394 	spin_lock(&vm->status_lock);
395 	amdgpu_vm_update_stats_locked(base, res, sign);
396 	spin_unlock(&vm->status_lock);
397 }
398 
399 /**
400  * amdgpu_vm_bo_base_init - Adds bo to the list of bos associated with the vm
401  *
402  * @base: base structure for tracking BO usage in a VM
403  * @vm: vm to which bo is to be added
404  * @bo: amdgpu buffer object
405  *
406  * Initialize a bo_va_base structure and add it to the appropriate lists
407  *
408  */
amdgpu_vm_bo_base_init(struct amdgpu_vm_bo_base * base,struct amdgpu_vm * vm,struct amdgpu_bo * bo)409 void amdgpu_vm_bo_base_init(struct amdgpu_vm_bo_base *base,
410 			    struct amdgpu_vm *vm, struct amdgpu_bo *bo)
411 {
412 	base->vm = vm;
413 	base->bo = bo;
414 	base->next = NULL;
415 	INIT_LIST_HEAD(&base->vm_status);
416 
417 	if (!bo)
418 		return;
419 	base->next = bo->vm_bo;
420 	bo->vm_bo = base;
421 
422 	spin_lock(&vm->status_lock);
423 	base->shared = drm_gem_object_is_shared_for_memory_stats(&bo->tbo.base);
424 	amdgpu_vm_update_stats_locked(base, bo->tbo.resource, +1);
425 	spin_unlock(&vm->status_lock);
426 
427 	if (!amdgpu_vm_is_bo_always_valid(vm, bo))
428 		return;
429 
430 	dma_resv_assert_held(vm->root.bo->tbo.base.resv);
431 
432 	ttm_bo_set_bulk_move(&bo->tbo, &vm->lru_bulk_move);
433 	if (bo->tbo.type == ttm_bo_type_kernel && bo->parent)
434 		amdgpu_vm_bo_relocated(base);
435 	else
436 		amdgpu_vm_bo_idle(base);
437 
438 	if (bo->preferred_domains &
439 	    amdgpu_mem_type_to_domain(bo->tbo.resource->mem_type))
440 		return;
441 
442 	/*
443 	 * we checked all the prerequisites, but it looks like this per vm bo
444 	 * is currently evicted. add the bo to the evicted list to make sure it
445 	 * is validated on next vm use to avoid fault.
446 	 * */
447 	amdgpu_vm_bo_evicted(base);
448 }
449 
450 /**
451  * amdgpu_vm_lock_pd - lock PD in drm_exec
452  *
453  * @vm: vm providing the BOs
454  * @exec: drm execution context
455  * @num_fences: number of extra fences to reserve
456  *
457  * Lock the VM root PD in the DRM execution context.
458  */
amdgpu_vm_lock_pd(struct amdgpu_vm * vm,struct drm_exec * exec,unsigned int num_fences)459 int amdgpu_vm_lock_pd(struct amdgpu_vm *vm, struct drm_exec *exec,
460 		      unsigned int num_fences)
461 {
462 	/* We need at least two fences for the VM PD/PT updates */
463 	return drm_exec_prepare_obj(exec, &vm->root.bo->tbo.base,
464 				    2 + num_fences);
465 }
466 
467 /**
468  * amdgpu_vm_lock_done_list - lock all BOs on the done list
469  * @vm: vm providing the BOs
470  * @exec: drm execution context
471  * @num_fences: number of extra fences to reserve
472  *
473  * Lock the BOs on the done list in the DRM execution context.
474  */
amdgpu_vm_lock_done_list(struct amdgpu_vm * vm,struct drm_exec * exec,unsigned int num_fences)475 int amdgpu_vm_lock_done_list(struct amdgpu_vm *vm, struct drm_exec *exec,
476 			     unsigned int num_fences)
477 {
478 	struct list_head *prev = &vm->done;
479 	struct amdgpu_bo_va *bo_va;
480 	struct amdgpu_bo *bo;
481 	int ret;
482 
483 	/* We can only trust prev->next while holding the lock */
484 	spin_lock(&vm->status_lock);
485 	while (!list_is_head(prev->next, &vm->done)) {
486 		bo_va = list_entry(prev->next, typeof(*bo_va), base.vm_status);
487 
488 		bo = bo_va->base.bo;
489 		if (bo) {
490 			amdgpu_bo_ref(bo);
491 			spin_unlock(&vm->status_lock);
492 
493 			ret = drm_exec_prepare_obj(exec, &bo->tbo.base, 1);
494 			amdgpu_bo_unref(&bo);
495 			if (unlikely(ret))
496 				return ret;
497 
498 			spin_lock(&vm->status_lock);
499 		}
500 		prev = prev->next;
501 	}
502 	spin_unlock(&vm->status_lock);
503 
504 	return 0;
505 }
506 
507 /**
508  * amdgpu_vm_move_to_lru_tail - move all BOs to the end of LRU
509  *
510  * @adev: amdgpu device pointer
511  * @vm: vm providing the BOs
512  *
513  * Move all BOs to the end of LRU and remember their positions to put them
514  * together.
515  */
amdgpu_vm_move_to_lru_tail(struct amdgpu_device * adev,struct amdgpu_vm * vm)516 void amdgpu_vm_move_to_lru_tail(struct amdgpu_device *adev,
517 				struct amdgpu_vm *vm)
518 {
519 	spin_lock(&adev->mman.bdev.lru_lock);
520 	ttm_lru_bulk_move_tail(&vm->lru_bulk_move);
521 	spin_unlock(&adev->mman.bdev.lru_lock);
522 }
523 
524 /* Create scheduler entities for page table updates */
amdgpu_vm_init_entities(struct amdgpu_device * adev,struct amdgpu_vm * vm)525 static int amdgpu_vm_init_entities(struct amdgpu_device *adev,
526 				   struct amdgpu_vm *vm)
527 {
528 	int r;
529 
530 	r = drm_sched_entity_init(&vm->immediate, DRM_SCHED_PRIORITY_NORMAL,
531 				  adev->vm_manager.vm_pte_scheds,
532 				  adev->vm_manager.vm_pte_num_scheds, NULL);
533 	if (r)
534 		goto error;
535 
536 	return drm_sched_entity_init(&vm->delayed, DRM_SCHED_PRIORITY_NORMAL,
537 				     adev->vm_manager.vm_pte_scheds,
538 				     adev->vm_manager.vm_pte_num_scheds, NULL);
539 
540 error:
541 	drm_sched_entity_destroy(&vm->immediate);
542 	return r;
543 }
544 
545 /* Destroy the entities for page table updates again */
amdgpu_vm_fini_entities(struct amdgpu_vm * vm)546 static void amdgpu_vm_fini_entities(struct amdgpu_vm *vm)
547 {
548 	drm_sched_entity_destroy(&vm->immediate);
549 	drm_sched_entity_destroy(&vm->delayed);
550 }
551 
552 /**
553  * amdgpu_vm_generation - return the page table re-generation counter
554  * @adev: the amdgpu_device
555  * @vm: optional VM to check, might be NULL
556  *
557  * Returns a page table re-generation token to allow checking if submissions
558  * are still valid to use this VM. The VM parameter might be NULL in which case
559  * just the VRAM lost counter will be used.
560  */
amdgpu_vm_generation(struct amdgpu_device * adev,struct amdgpu_vm * vm)561 uint64_t amdgpu_vm_generation(struct amdgpu_device *adev, struct amdgpu_vm *vm)
562 {
563 	uint64_t result = (u64)atomic_read(&adev->vram_lost_counter) << 32;
564 
565 	if (!vm)
566 		return result;
567 
568 	result += lower_32_bits(vm->generation);
569 	/* Add one if the page tables will be re-generated on next CS */
570 	if (drm_sched_entity_error(&vm->delayed))
571 		++result;
572 
573 	return result;
574 }
575 
576 /**
577  * amdgpu_vm_validate - validate evicted BOs tracked in the VM
578  *
579  * @adev: amdgpu device pointer
580  * @vm: vm providing the BOs
581  * @ticket: optional reservation ticket used to reserve the VM
582  * @validate: callback to do the validation
583  * @param: parameter for the validation callback
584  *
585  * Validate the page table BOs and per-VM BOs on command submission if
586  * necessary. If a ticket is given, also try to validate evicted user queue
587  * BOs. They must already be reserved with the given ticket.
588  *
589  * Returns:
590  * Validation result.
591  */
amdgpu_vm_validate(struct amdgpu_device * adev,struct amdgpu_vm * vm,struct ww_acquire_ctx * ticket,int (* validate)(void * p,struct amdgpu_bo * bo),void * param)592 int amdgpu_vm_validate(struct amdgpu_device *adev, struct amdgpu_vm *vm,
593 		       struct ww_acquire_ctx *ticket,
594 		       int (*validate)(void *p, struct amdgpu_bo *bo),
595 		       void *param)
596 {
597 	uint64_t new_vm_generation = amdgpu_vm_generation(adev, vm);
598 	struct amdgpu_vm_bo_base *bo_base;
599 	struct amdgpu_bo *bo;
600 	int r;
601 
602 	if (vm->generation != new_vm_generation) {
603 		vm->generation = new_vm_generation;
604 		amdgpu_vm_bo_reset_state_machine(vm);
605 		amdgpu_vm_fini_entities(vm);
606 		r = amdgpu_vm_init_entities(adev, vm);
607 		if (r)
608 			return r;
609 	}
610 
611 	spin_lock(&vm->status_lock);
612 	while (!list_empty(&vm->evicted)) {
613 		bo_base = list_first_entry(&vm->evicted,
614 					   struct amdgpu_vm_bo_base,
615 					   vm_status);
616 		spin_unlock(&vm->status_lock);
617 
618 		bo = bo_base->bo;
619 
620 		r = validate(param, bo);
621 		if (r)
622 			return r;
623 
624 		if (bo->tbo.type != ttm_bo_type_kernel) {
625 			amdgpu_vm_bo_moved(bo_base);
626 		} else {
627 			vm->update_funcs->map_table(to_amdgpu_bo_vm(bo));
628 			amdgpu_vm_bo_relocated(bo_base);
629 		}
630 		spin_lock(&vm->status_lock);
631 	}
632 	while (ticket && !list_empty(&vm->evicted_user)) {
633 		bo_base = list_first_entry(&vm->evicted_user,
634 					   struct amdgpu_vm_bo_base,
635 					   vm_status);
636 		spin_unlock(&vm->status_lock);
637 
638 		bo = bo_base->bo;
639 		dma_resv_assert_held(bo->tbo.base.resv);
640 
641 		r = validate(param, bo);
642 		if (r)
643 			return r;
644 
645 		amdgpu_vm_bo_invalidated(bo_base);
646 
647 		spin_lock(&vm->status_lock);
648 	}
649 	spin_unlock(&vm->status_lock);
650 
651 	amdgpu_vm_eviction_lock(vm);
652 	vm->evicting = false;
653 	amdgpu_vm_eviction_unlock(vm);
654 
655 	return 0;
656 }
657 
658 /**
659  * amdgpu_vm_ready - check VM is ready for updates
660  *
661  * @vm: VM to check
662  *
663  * Check if all VM PDs/PTs are ready for updates
664  *
665  * Returns:
666  * True if VM is not evicting and all VM entities are not stopped
667  */
amdgpu_vm_ready(struct amdgpu_vm * vm)668 bool amdgpu_vm_ready(struct amdgpu_vm *vm)
669 {
670 	bool ret;
671 
672 	amdgpu_vm_assert_locked(vm);
673 
674 	amdgpu_vm_eviction_lock(vm);
675 	ret = !vm->evicting;
676 	amdgpu_vm_eviction_unlock(vm);
677 
678 	spin_lock(&vm->status_lock);
679 	ret &= list_empty(&vm->evicted);
680 	spin_unlock(&vm->status_lock);
681 
682 	spin_lock(&vm->immediate.lock);
683 	ret &= !vm->immediate.stopped;
684 	spin_unlock(&vm->immediate.lock);
685 
686 	spin_lock(&vm->delayed.lock);
687 	ret &= !vm->delayed.stopped;
688 	spin_unlock(&vm->delayed.lock);
689 
690 	return ret;
691 }
692 
693 /**
694  * amdgpu_vm_check_compute_bug - check whether asic has compute vm bug
695  *
696  * @adev: amdgpu_device pointer
697  */
amdgpu_vm_check_compute_bug(struct amdgpu_device * adev)698 void amdgpu_vm_check_compute_bug(struct amdgpu_device *adev)
699 {
700 	const struct amdgpu_ip_block *ip_block;
701 	bool has_compute_vm_bug;
702 	struct amdgpu_ring *ring;
703 	int i;
704 
705 	has_compute_vm_bug = false;
706 
707 	ip_block = amdgpu_device_ip_get_ip_block(adev, AMD_IP_BLOCK_TYPE_GFX);
708 	if (ip_block) {
709 		/* Compute has a VM bug for GFX version < 7.
710 		   Compute has a VM bug for GFX 8 MEC firmware version < 673.*/
711 		if (ip_block->version->major <= 7)
712 			has_compute_vm_bug = true;
713 		else if (ip_block->version->major == 8)
714 			if (adev->gfx.mec_fw_version < 673)
715 				has_compute_vm_bug = true;
716 	}
717 
718 	for (i = 0; i < adev->num_rings; i++) {
719 		ring = adev->rings[i];
720 		if (ring->funcs->type == AMDGPU_RING_TYPE_COMPUTE)
721 			/* only compute rings */
722 			ring->has_compute_vm_bug = has_compute_vm_bug;
723 		else
724 			ring->has_compute_vm_bug = false;
725 	}
726 }
727 
728 /**
729  * amdgpu_vm_need_pipeline_sync - Check if pipe sync is needed for job.
730  *
731  * @ring: ring on which the job will be submitted
732  * @job: job to submit
733  *
734  * Returns:
735  * True if sync is needed.
736  */
amdgpu_vm_need_pipeline_sync(struct amdgpu_ring * ring,struct amdgpu_job * job)737 bool amdgpu_vm_need_pipeline_sync(struct amdgpu_ring *ring,
738 				  struct amdgpu_job *job)
739 {
740 	struct amdgpu_device *adev = ring->adev;
741 	unsigned vmhub = ring->vm_hub;
742 	struct amdgpu_vmid_mgr *id_mgr = &adev->vm_manager.id_mgr[vmhub];
743 
744 	if (job->vmid == 0)
745 		return false;
746 
747 	if (job->vm_needs_flush || ring->has_compute_vm_bug)
748 		return true;
749 
750 	if (ring->funcs->emit_gds_switch && job->gds_switch_needed)
751 		return true;
752 
753 	if (amdgpu_vmid_had_gpu_reset(adev, &id_mgr->ids[job->vmid]))
754 		return true;
755 
756 	return false;
757 }
758 
759 /**
760  * amdgpu_vm_flush - hardware flush the vm
761  *
762  * @ring: ring to use for flush
763  * @job:  related job
764  * @need_pipe_sync: is pipe sync needed
765  *
766  * Emit a VM flush when it is necessary.
767  *
768  * Returns:
769  * 0 on success, errno otherwise.
770  */
amdgpu_vm_flush(struct amdgpu_ring * ring,struct amdgpu_job * job,bool need_pipe_sync)771 int amdgpu_vm_flush(struct amdgpu_ring *ring, struct amdgpu_job *job,
772 		    bool need_pipe_sync)
773 {
774 	struct amdgpu_device *adev = ring->adev;
775 	struct amdgpu_isolation *isolation = &adev->isolation[ring->xcp_id];
776 	unsigned vmhub = ring->vm_hub;
777 	struct amdgpu_vmid_mgr *id_mgr = &adev->vm_manager.id_mgr[vmhub];
778 	struct amdgpu_vmid *id = &id_mgr->ids[job->vmid];
779 	bool spm_update_needed = job->spm_update_needed;
780 	bool gds_switch_needed = ring->funcs->emit_gds_switch &&
781 		job->gds_switch_needed;
782 	bool vm_flush_needed = job->vm_needs_flush;
783 	bool cleaner_shader_needed = false;
784 	bool pasid_mapping_needed = false;
785 	struct dma_fence *fence = NULL;
786 	unsigned int patch;
787 	int r;
788 
789 	if (amdgpu_vmid_had_gpu_reset(adev, id)) {
790 		gds_switch_needed = true;
791 		vm_flush_needed = true;
792 		pasid_mapping_needed = true;
793 		spm_update_needed = true;
794 	}
795 
796 	mutex_lock(&id_mgr->lock);
797 	if (id->pasid != job->pasid || !id->pasid_mapping ||
798 	    !dma_fence_is_signaled(id->pasid_mapping))
799 		pasid_mapping_needed = true;
800 	mutex_unlock(&id_mgr->lock);
801 
802 	gds_switch_needed &= !!ring->funcs->emit_gds_switch;
803 	vm_flush_needed &= !!ring->funcs->emit_vm_flush  &&
804 			job->vm_pd_addr != AMDGPU_BO_INVALID_OFFSET;
805 	pasid_mapping_needed &= adev->gmc.gmc_funcs->emit_pasid_mapping &&
806 		ring->funcs->emit_wreg;
807 
808 	cleaner_shader_needed = job->run_cleaner_shader &&
809 		adev->gfx.enable_cleaner_shader &&
810 		ring->funcs->emit_cleaner_shader && job->base.s_fence &&
811 		&job->base.s_fence->scheduled == isolation->spearhead;
812 
813 	if (!vm_flush_needed && !gds_switch_needed && !need_pipe_sync &&
814 	    !cleaner_shader_needed)
815 		return 0;
816 
817 	amdgpu_ring_ib_begin(ring);
818 	if (ring->funcs->init_cond_exec)
819 		patch = amdgpu_ring_init_cond_exec(ring,
820 						   ring->cond_exe_gpu_addr);
821 
822 	if (need_pipe_sync)
823 		amdgpu_ring_emit_pipeline_sync(ring);
824 
825 	if (cleaner_shader_needed)
826 		ring->funcs->emit_cleaner_shader(ring);
827 
828 	if (vm_flush_needed) {
829 		trace_amdgpu_vm_flush(ring, job->vmid, job->vm_pd_addr);
830 		amdgpu_ring_emit_vm_flush(ring, job->vmid, job->vm_pd_addr);
831 	}
832 
833 	if (pasid_mapping_needed)
834 		amdgpu_gmc_emit_pasid_mapping(ring, job->vmid, job->pasid);
835 
836 	if (spm_update_needed && adev->gfx.rlc.funcs->update_spm_vmid)
837 		adev->gfx.rlc.funcs->update_spm_vmid(adev, ring, job->vmid);
838 
839 	if (ring->funcs->emit_gds_switch &&
840 	    gds_switch_needed) {
841 		amdgpu_ring_emit_gds_switch(ring, job->vmid, job->gds_base,
842 					    job->gds_size, job->gws_base,
843 					    job->gws_size, job->oa_base,
844 					    job->oa_size);
845 	}
846 
847 	if (vm_flush_needed || pasid_mapping_needed || cleaner_shader_needed) {
848 		r = amdgpu_fence_emit(ring, job->hw_vm_fence, 0);
849 		if (r)
850 			return r;
851 		fence = &job->hw_vm_fence->base;
852 		/* get a ref for the job */
853 		dma_fence_get(fence);
854 	}
855 
856 	if (vm_flush_needed) {
857 		mutex_lock(&id_mgr->lock);
858 		dma_fence_put(id->last_flush);
859 		id->last_flush = dma_fence_get(fence);
860 		id->current_gpu_reset_count =
861 			atomic_read(&adev->gpu_reset_counter);
862 		mutex_unlock(&id_mgr->lock);
863 	}
864 
865 	if (pasid_mapping_needed) {
866 		mutex_lock(&id_mgr->lock);
867 		id->pasid = job->pasid;
868 		dma_fence_put(id->pasid_mapping);
869 		id->pasid_mapping = dma_fence_get(fence);
870 		mutex_unlock(&id_mgr->lock);
871 	}
872 
873 	/*
874 	 * Make sure that all other submissions wait for the cleaner shader to
875 	 * finish before we push them to the HW.
876 	 */
877 	if (cleaner_shader_needed) {
878 		trace_amdgpu_cleaner_shader(ring, fence);
879 		mutex_lock(&adev->enforce_isolation_mutex);
880 		dma_fence_put(isolation->spearhead);
881 		isolation->spearhead = dma_fence_get(fence);
882 		mutex_unlock(&adev->enforce_isolation_mutex);
883 	}
884 	dma_fence_put(fence);
885 
886 	amdgpu_ring_patch_cond_exec(ring, patch);
887 
888 	/* the double SWITCH_BUFFER here *cannot* be skipped by COND_EXEC */
889 	if (ring->funcs->emit_switch_buffer) {
890 		amdgpu_ring_emit_switch_buffer(ring);
891 		amdgpu_ring_emit_switch_buffer(ring);
892 	}
893 
894 	amdgpu_ring_ib_end(ring);
895 	return 0;
896 }
897 
898 /**
899  * amdgpu_vm_bo_find - find the bo_va for a specific vm & bo
900  *
901  * @vm: requested vm
902  * @bo: requested buffer object
903  *
904  * Find @bo inside the requested vm.
905  * Search inside the @bos vm list for the requested vm
906  * Returns the found bo_va or NULL if none is found
907  *
908  * Object has to be reserved!
909  *
910  * Returns:
911  * Found bo_va or NULL.
912  */
amdgpu_vm_bo_find(struct amdgpu_vm * vm,struct amdgpu_bo * bo)913 struct amdgpu_bo_va *amdgpu_vm_bo_find(struct amdgpu_vm *vm,
914 				       struct amdgpu_bo *bo)
915 {
916 	struct amdgpu_vm_bo_base *base;
917 
918 	for (base = bo->vm_bo; base; base = base->next) {
919 		if (base->vm != vm)
920 			continue;
921 
922 		return container_of(base, struct amdgpu_bo_va, base);
923 	}
924 	return NULL;
925 }
926 
927 /**
928  * amdgpu_vm_map_gart - Resolve gart mapping of addr
929  *
930  * @pages_addr: optional DMA address to use for lookup
931  * @addr: the unmapped addr
932  *
933  * Look up the physical address of the page that the pte resolves
934  * to.
935  *
936  * Returns:
937  * The pointer for the page table entry.
938  */
amdgpu_vm_map_gart(const dma_addr_t * pages_addr,uint64_t addr)939 uint64_t amdgpu_vm_map_gart(const dma_addr_t *pages_addr, uint64_t addr)
940 {
941 	uint64_t result;
942 
943 	/* page table offset */
944 	result = pages_addr[addr >> PAGE_SHIFT];
945 
946 	/* in case cpu page size != gpu page size*/
947 	result |= addr & (~PAGE_MASK);
948 
949 	result &= 0xFFFFFFFFFFFFF000ULL;
950 
951 	return result;
952 }
953 
954 /**
955  * amdgpu_vm_update_pdes - make sure that all directories are valid
956  *
957  * @adev: amdgpu_device pointer
958  * @vm: requested vm
959  * @immediate: submit immediately to the paging queue
960  *
961  * Makes sure all directories are up to date.
962  *
963  * Returns:
964  * 0 for success, error for failure.
965  */
amdgpu_vm_update_pdes(struct amdgpu_device * adev,struct amdgpu_vm * vm,bool immediate)966 int amdgpu_vm_update_pdes(struct amdgpu_device *adev,
967 			  struct amdgpu_vm *vm, bool immediate)
968 {
969 	struct amdgpu_vm_update_params params;
970 	struct amdgpu_vm_bo_base *entry;
971 	bool flush_tlb_needed = false;
972 	LIST_HEAD(relocated);
973 	int r, idx;
974 
975 	amdgpu_vm_assert_locked(vm);
976 
977 	spin_lock(&vm->status_lock);
978 	list_splice_init(&vm->relocated, &relocated);
979 	spin_unlock(&vm->status_lock);
980 
981 	if (list_empty(&relocated))
982 		return 0;
983 
984 	if (!drm_dev_enter(adev_to_drm(adev), &idx))
985 		return -ENODEV;
986 
987 	memset(&params, 0, sizeof(params));
988 	params.adev = adev;
989 	params.vm = vm;
990 	params.immediate = immediate;
991 
992 	r = vm->update_funcs->prepare(&params, NULL,
993 				      AMDGPU_KERNEL_JOB_ID_VM_UPDATE_PDES);
994 	if (r)
995 		goto error;
996 
997 	list_for_each_entry(entry, &relocated, vm_status) {
998 		/* vm_flush_needed after updating moved PDEs */
999 		flush_tlb_needed |= entry->moved;
1000 
1001 		r = amdgpu_vm_pde_update(&params, entry);
1002 		if (r)
1003 			goto error;
1004 	}
1005 
1006 	r = vm->update_funcs->commit(&params, &vm->last_update);
1007 	if (r)
1008 		goto error;
1009 
1010 	if (flush_tlb_needed)
1011 		atomic64_inc(&vm->tlb_seq);
1012 
1013 	while (!list_empty(&relocated)) {
1014 		entry = list_first_entry(&relocated, struct amdgpu_vm_bo_base,
1015 					 vm_status);
1016 		amdgpu_vm_bo_idle(entry);
1017 	}
1018 
1019 error:
1020 	drm_dev_exit(idx);
1021 	return r;
1022 }
1023 
1024 /**
1025  * amdgpu_vm_tlb_seq_cb - make sure to increment tlb sequence
1026  * @fence: unused
1027  * @cb: the callback structure
1028  *
1029  * Increments the tlb sequence to make sure that future CS execute a VM flush.
1030  */
amdgpu_vm_tlb_seq_cb(struct dma_fence * fence,struct dma_fence_cb * cb)1031 static void amdgpu_vm_tlb_seq_cb(struct dma_fence *fence,
1032 				 struct dma_fence_cb *cb)
1033 {
1034 	struct amdgpu_vm_tlb_seq_struct *tlb_cb;
1035 
1036 	tlb_cb = container_of(cb, typeof(*tlb_cb), cb);
1037 	atomic64_inc(&tlb_cb->vm->tlb_seq);
1038 	kfree(tlb_cb);
1039 }
1040 
1041 /**
1042  * amdgpu_vm_tlb_flush - prepare TLB flush
1043  *
1044  * @params: parameters for update
1045  * @fence: input fence to sync TLB flush with
1046  * @tlb_cb: the callback structure
1047  *
1048  * Increments the tlb sequence to make sure that future CS execute a VM flush.
1049  */
1050 static void
amdgpu_vm_tlb_flush(struct amdgpu_vm_update_params * params,struct dma_fence ** fence,struct amdgpu_vm_tlb_seq_struct * tlb_cb)1051 amdgpu_vm_tlb_flush(struct amdgpu_vm_update_params *params,
1052 		    struct dma_fence **fence,
1053 		    struct amdgpu_vm_tlb_seq_struct *tlb_cb)
1054 {
1055 	struct amdgpu_vm *vm = params->vm;
1056 
1057 	tlb_cb->vm = vm;
1058 	if (!fence || !*fence) {
1059 		amdgpu_vm_tlb_seq_cb(NULL, &tlb_cb->cb);
1060 		return;
1061 	}
1062 
1063 	if (!dma_fence_add_callback(*fence, &tlb_cb->cb,
1064 				    amdgpu_vm_tlb_seq_cb)) {
1065 		dma_fence_put(vm->last_tlb_flush);
1066 		vm->last_tlb_flush = dma_fence_get(*fence);
1067 	} else {
1068 		amdgpu_vm_tlb_seq_cb(NULL, &tlb_cb->cb);
1069 	}
1070 
1071 	/* Prepare a TLB flush fence to be attached to PTs */
1072 	if (!params->unlocked &&
1073 	    /* SI doesn't support pasid or KIQ/MES */
1074 	    params->adev->family > AMDGPU_FAMILY_SI) {
1075 		amdgpu_vm_tlb_fence_create(params->adev, vm, fence);
1076 
1077 		/* Makes sure no PD/PT is freed before the flush */
1078 		dma_resv_add_fence(vm->root.bo->tbo.base.resv, *fence,
1079 				   DMA_RESV_USAGE_BOOKKEEP);
1080 	}
1081 }
1082 
1083 /**
1084  * amdgpu_vm_update_range - update a range in the vm page table
1085  *
1086  * @adev: amdgpu_device pointer to use for commands
1087  * @vm: the VM to update the range
1088  * @immediate: immediate submission in a page fault
1089  * @unlocked: unlocked invalidation during MM callback
1090  * @flush_tlb: trigger tlb invalidation after update completed
1091  * @allow_override: change MTYPE for local NUMA nodes
1092  * @sync: fences we need to sync to
1093  * @start: start of mapped range
1094  * @last: last mapped entry
1095  * @flags: flags for the entries
1096  * @offset: offset into nodes and pages_addr
1097  * @vram_base: base for vram mappings
1098  * @res: ttm_resource to map
1099  * @pages_addr: DMA addresses to use for mapping
1100  * @fence: optional resulting fence
1101  *
1102  * Fill in the page table entries between @start and @last.
1103  *
1104  * Returns:
1105  * 0 for success, negative erro code for failure.
1106  */
amdgpu_vm_update_range(struct amdgpu_device * adev,struct amdgpu_vm * vm,bool immediate,bool unlocked,bool flush_tlb,bool allow_override,struct amdgpu_sync * sync,uint64_t start,uint64_t last,uint64_t flags,uint64_t offset,uint64_t vram_base,struct ttm_resource * res,dma_addr_t * pages_addr,struct dma_fence ** fence)1107 int amdgpu_vm_update_range(struct amdgpu_device *adev, struct amdgpu_vm *vm,
1108 			   bool immediate, bool unlocked, bool flush_tlb,
1109 			   bool allow_override, struct amdgpu_sync *sync,
1110 			   uint64_t start, uint64_t last, uint64_t flags,
1111 			   uint64_t offset, uint64_t vram_base,
1112 			   struct ttm_resource *res, dma_addr_t *pages_addr,
1113 			   struct dma_fence **fence)
1114 {
1115 	struct amdgpu_vm_tlb_seq_struct *tlb_cb;
1116 	struct amdgpu_vm_update_params params;
1117 	struct amdgpu_res_cursor cursor;
1118 	int r, idx;
1119 
1120 	if (!drm_dev_enter(adev_to_drm(adev), &idx))
1121 		return -ENODEV;
1122 
1123 	tlb_cb = kmalloc(sizeof(*tlb_cb), GFP_KERNEL);
1124 	if (!tlb_cb) {
1125 		drm_dev_exit(idx);
1126 		return -ENOMEM;
1127 	}
1128 
1129 	/* Vega20+XGMI where PTEs get inadvertently cached in L2 texture cache,
1130 	 * heavy-weight flush TLB unconditionally.
1131 	 */
1132 	flush_tlb |= adev->gmc.xgmi.num_physical_nodes &&
1133 		     amdgpu_ip_version(adev, GC_HWIP, 0) == IP_VERSION(9, 4, 0);
1134 
1135 	/*
1136 	 * On GFX8 and older any 8 PTE block with a valid bit set enters the TLB
1137 	 */
1138 	flush_tlb |= amdgpu_ip_version(adev, GC_HWIP, 0) < IP_VERSION(9, 0, 0);
1139 
1140 	memset(&params, 0, sizeof(params));
1141 	params.adev = adev;
1142 	params.vm = vm;
1143 	params.immediate = immediate;
1144 	params.pages_addr = pages_addr;
1145 	params.unlocked = unlocked;
1146 	params.needs_flush = flush_tlb;
1147 	params.allow_override = allow_override;
1148 	INIT_LIST_HEAD(&params.tlb_flush_waitlist);
1149 
1150 	amdgpu_vm_eviction_lock(vm);
1151 	if (vm->evicting) {
1152 		r = -EBUSY;
1153 		goto error_free;
1154 	}
1155 
1156 	if (!unlocked && !dma_fence_is_signaled(vm->last_unlocked)) {
1157 		struct dma_fence *tmp = dma_fence_get_stub();
1158 
1159 		amdgpu_bo_fence(vm->root.bo, vm->last_unlocked, true);
1160 		swap(vm->last_unlocked, tmp);
1161 		dma_fence_put(tmp);
1162 	}
1163 
1164 	r = vm->update_funcs->prepare(&params, sync,
1165 				      AMDGPU_KERNEL_JOB_ID_VM_UPDATE_RANGE);
1166 	if (r)
1167 		goto error_free;
1168 
1169 	amdgpu_res_first(pages_addr ? NULL : res, offset,
1170 			 (last - start + 1) * AMDGPU_GPU_PAGE_SIZE, &cursor);
1171 	while (cursor.remaining) {
1172 		uint64_t tmp, num_entries, addr;
1173 
1174 		num_entries = cursor.size >> AMDGPU_GPU_PAGE_SHIFT;
1175 		if (pages_addr) {
1176 			bool contiguous = true;
1177 
1178 			if (num_entries > AMDGPU_GPU_PAGES_IN_CPU_PAGE) {
1179 				uint64_t pfn = cursor.start >> PAGE_SHIFT;
1180 				uint64_t count;
1181 
1182 				contiguous = pages_addr[pfn + 1] ==
1183 					pages_addr[pfn] + PAGE_SIZE;
1184 
1185 				tmp = num_entries /
1186 					AMDGPU_GPU_PAGES_IN_CPU_PAGE;
1187 				for (count = 2; count < tmp; ++count) {
1188 					uint64_t idx = pfn + count;
1189 
1190 					if (contiguous != (pages_addr[idx] ==
1191 					    pages_addr[idx - 1] + PAGE_SIZE))
1192 						break;
1193 				}
1194 				if (!contiguous)
1195 					count--;
1196 				num_entries = count *
1197 					AMDGPU_GPU_PAGES_IN_CPU_PAGE;
1198 			}
1199 
1200 			if (!contiguous) {
1201 				addr = cursor.start;
1202 				params.pages_addr = pages_addr;
1203 			} else {
1204 				addr = pages_addr[cursor.start >> PAGE_SHIFT];
1205 				params.pages_addr = NULL;
1206 			}
1207 
1208 		} else if (flags & (AMDGPU_PTE_VALID | AMDGPU_PTE_PRT_FLAG(adev))) {
1209 			addr = vram_base + cursor.start;
1210 		} else {
1211 			addr = 0;
1212 		}
1213 
1214 		tmp = start + num_entries;
1215 		r = amdgpu_vm_ptes_update(&params, start, tmp, addr, flags);
1216 		if (r)
1217 			goto error_free;
1218 
1219 		amdgpu_res_next(&cursor, num_entries * AMDGPU_GPU_PAGE_SIZE);
1220 		start = tmp;
1221 	}
1222 
1223 	r = vm->update_funcs->commit(&params, fence);
1224 	if (r)
1225 		goto error_free;
1226 
1227 	if (params.needs_flush) {
1228 		amdgpu_vm_tlb_flush(&params, fence, tlb_cb);
1229 		tlb_cb = NULL;
1230 	}
1231 
1232 	amdgpu_vm_pt_free_list(adev, &params);
1233 
1234 error_free:
1235 	kfree(tlb_cb);
1236 	amdgpu_vm_eviction_unlock(vm);
1237 	drm_dev_exit(idx);
1238 	return r;
1239 }
1240 
amdgpu_vm_get_memory(struct amdgpu_vm * vm,struct amdgpu_mem_stats stats[__AMDGPU_PL_NUM])1241 void amdgpu_vm_get_memory(struct amdgpu_vm *vm,
1242 			  struct amdgpu_mem_stats stats[__AMDGPU_PL_NUM])
1243 {
1244 	spin_lock(&vm->status_lock);
1245 	memcpy(stats, vm->stats, sizeof(*stats) * __AMDGPU_PL_NUM);
1246 	spin_unlock(&vm->status_lock);
1247 }
1248 
1249 /**
1250  * amdgpu_vm_bo_update - update all BO mappings in the vm page table
1251  *
1252  * @adev: amdgpu_device pointer
1253  * @bo_va: requested BO and VM object
1254  * @clear: if true clear the entries
1255  *
1256  * Fill in the page table entries for @bo_va.
1257  *
1258  * Returns:
1259  * 0 for success, -EINVAL for failure.
1260  */
amdgpu_vm_bo_update(struct amdgpu_device * adev,struct amdgpu_bo_va * bo_va,bool clear)1261 int amdgpu_vm_bo_update(struct amdgpu_device *adev, struct amdgpu_bo_va *bo_va,
1262 			bool clear)
1263 {
1264 	struct amdgpu_bo *bo = bo_va->base.bo;
1265 	struct amdgpu_vm *vm = bo_va->base.vm;
1266 	struct amdgpu_bo_va_mapping *mapping;
1267 	struct dma_fence **last_update;
1268 	dma_addr_t *pages_addr = NULL;
1269 	struct ttm_resource *mem;
1270 	struct amdgpu_sync sync;
1271 	bool flush_tlb = clear;
1272 	uint64_t vram_base;
1273 	uint64_t flags;
1274 	bool uncached;
1275 	int r;
1276 
1277 	amdgpu_sync_create(&sync);
1278 	if (clear) {
1279 		mem = NULL;
1280 
1281 		/* Implicitly sync to command submissions in the same VM before
1282 		 * unmapping.
1283 		 */
1284 		r = amdgpu_sync_resv(adev, &sync, vm->root.bo->tbo.base.resv,
1285 				     AMDGPU_SYNC_EQ_OWNER, vm);
1286 		if (r)
1287 			goto error_free;
1288 		if (bo) {
1289 			r = amdgpu_sync_kfd(&sync, bo->tbo.base.resv);
1290 			if (r)
1291 				goto error_free;
1292 		}
1293 	} else if (!bo) {
1294 		mem = NULL;
1295 
1296 		/* PRT map operations don't need to sync to anything. */
1297 
1298 	} else {
1299 		struct drm_gem_object *obj = &bo->tbo.base;
1300 
1301 		if (drm_gem_is_imported(obj) && bo_va->is_xgmi) {
1302 			struct dma_buf *dma_buf = obj->import_attach->dmabuf;
1303 			struct drm_gem_object *gobj = dma_buf->priv;
1304 			struct amdgpu_bo *abo = gem_to_amdgpu_bo(gobj);
1305 
1306 			if (abo->tbo.resource &&
1307 			    abo->tbo.resource->mem_type == TTM_PL_VRAM)
1308 				bo = gem_to_amdgpu_bo(gobj);
1309 		}
1310 		mem = bo->tbo.resource;
1311 		if (mem && (mem->mem_type == TTM_PL_TT ||
1312 			    mem->mem_type == AMDGPU_PL_PREEMPT))
1313 			pages_addr = bo->tbo.ttm->dma_address;
1314 
1315 		/* Implicitly sync to moving fences before mapping anything */
1316 		r = amdgpu_sync_resv(adev, &sync, bo->tbo.base.resv,
1317 				     AMDGPU_SYNC_EXPLICIT, vm);
1318 		if (r)
1319 			goto error_free;
1320 	}
1321 
1322 	if (bo) {
1323 		struct amdgpu_device *bo_adev;
1324 
1325 		flags = amdgpu_ttm_tt_pte_flags(adev, bo->tbo.ttm, mem);
1326 
1327 		if (amdgpu_bo_encrypted(bo))
1328 			flags |= AMDGPU_PTE_TMZ;
1329 
1330 		bo_adev = amdgpu_ttm_adev(bo->tbo.bdev);
1331 		vram_base = bo_adev->vm_manager.vram_base_offset;
1332 		uncached = (bo->flags & AMDGPU_GEM_CREATE_UNCACHED) != 0;
1333 	} else {
1334 		flags = 0x0;
1335 		vram_base = 0;
1336 		uncached = false;
1337 	}
1338 
1339 	if (clear || amdgpu_vm_is_bo_always_valid(vm, bo))
1340 		last_update = &vm->last_update;
1341 	else
1342 		last_update = &bo_va->last_pt_update;
1343 
1344 	if (!clear && bo_va->base.moved) {
1345 		flush_tlb = true;
1346 		list_splice_init(&bo_va->valids, &bo_va->invalids);
1347 
1348 	} else if (bo_va->cleared != clear) {
1349 		list_splice_init(&bo_va->valids, &bo_va->invalids);
1350 	}
1351 
1352 	list_for_each_entry(mapping, &bo_va->invalids, list) {
1353 		uint64_t update_flags = flags;
1354 
1355 		/* normally,bo_va->flags only contians READABLE and WIRTEABLE bit go here
1356 		 * but in case of something, we filter the flags in first place
1357 		 */
1358 		if (!(mapping->flags & AMDGPU_VM_PAGE_READABLE))
1359 			update_flags &= ~AMDGPU_PTE_READABLE;
1360 		if (!(mapping->flags & AMDGPU_VM_PAGE_WRITEABLE))
1361 			update_flags &= ~AMDGPU_PTE_WRITEABLE;
1362 
1363 		/* Apply ASIC specific mapping flags */
1364 		amdgpu_gmc_get_vm_pte(adev, vm, bo, mapping->flags,
1365 				      &update_flags);
1366 
1367 		trace_amdgpu_vm_bo_update(mapping);
1368 
1369 		r = amdgpu_vm_update_range(adev, vm, false, false, flush_tlb,
1370 					   !uncached, &sync, mapping->start,
1371 					   mapping->last, update_flags,
1372 					   mapping->offset, vram_base, mem,
1373 					   pages_addr, last_update);
1374 		if (r)
1375 			goto error_free;
1376 	}
1377 
1378 	/* If the BO is not in its preferred location add it back to
1379 	 * the evicted list so that it gets validated again on the
1380 	 * next command submission.
1381 	 */
1382 	if (amdgpu_vm_is_bo_always_valid(vm, bo)) {
1383 		if (bo->tbo.resource &&
1384 		    !(bo->preferred_domains &
1385 		      amdgpu_mem_type_to_domain(bo->tbo.resource->mem_type)))
1386 			amdgpu_vm_bo_evicted(&bo_va->base);
1387 		else
1388 			amdgpu_vm_bo_idle(&bo_va->base);
1389 	} else {
1390 		amdgpu_vm_bo_done(&bo_va->base);
1391 	}
1392 
1393 	list_splice_init(&bo_va->invalids, &bo_va->valids);
1394 	bo_va->cleared = clear;
1395 	bo_va->base.moved = false;
1396 
1397 	if (trace_amdgpu_vm_bo_mapping_enabled()) {
1398 		list_for_each_entry(mapping, &bo_va->valids, list)
1399 			trace_amdgpu_vm_bo_mapping(mapping);
1400 	}
1401 
1402 error_free:
1403 	amdgpu_sync_free(&sync);
1404 	return r;
1405 }
1406 
1407 /**
1408  * amdgpu_vm_update_prt_state - update the global PRT state
1409  *
1410  * @adev: amdgpu_device pointer
1411  */
amdgpu_vm_update_prt_state(struct amdgpu_device * adev)1412 static void amdgpu_vm_update_prt_state(struct amdgpu_device *adev)
1413 {
1414 	unsigned long flags;
1415 	bool enable;
1416 
1417 	spin_lock_irqsave(&adev->vm_manager.prt_lock, flags);
1418 	enable = !!atomic_read(&adev->vm_manager.num_prt_users);
1419 	adev->gmc.gmc_funcs->set_prt(adev, enable);
1420 	spin_unlock_irqrestore(&adev->vm_manager.prt_lock, flags);
1421 }
1422 
1423 /**
1424  * amdgpu_vm_prt_get - add a PRT user
1425  *
1426  * @adev: amdgpu_device pointer
1427  */
amdgpu_vm_prt_get(struct amdgpu_device * adev)1428 static void amdgpu_vm_prt_get(struct amdgpu_device *adev)
1429 {
1430 	if (!adev->gmc.gmc_funcs->set_prt)
1431 		return;
1432 
1433 	if (atomic_inc_return(&adev->vm_manager.num_prt_users) == 1)
1434 		amdgpu_vm_update_prt_state(adev);
1435 }
1436 
1437 /**
1438  * amdgpu_vm_prt_put - drop a PRT user
1439  *
1440  * @adev: amdgpu_device pointer
1441  */
amdgpu_vm_prt_put(struct amdgpu_device * adev)1442 static void amdgpu_vm_prt_put(struct amdgpu_device *adev)
1443 {
1444 	if (atomic_dec_return(&adev->vm_manager.num_prt_users) == 0)
1445 		amdgpu_vm_update_prt_state(adev);
1446 }
1447 
1448 /**
1449  * amdgpu_vm_prt_cb - callback for updating the PRT status
1450  *
1451  * @fence: fence for the callback
1452  * @_cb: the callback function
1453  */
amdgpu_vm_prt_cb(struct dma_fence * fence,struct dma_fence_cb * _cb)1454 static void amdgpu_vm_prt_cb(struct dma_fence *fence, struct dma_fence_cb *_cb)
1455 {
1456 	struct amdgpu_prt_cb *cb = container_of(_cb, struct amdgpu_prt_cb, cb);
1457 
1458 	amdgpu_vm_prt_put(cb->adev);
1459 	kfree(cb);
1460 }
1461 
1462 /**
1463  * amdgpu_vm_add_prt_cb - add callback for updating the PRT status
1464  *
1465  * @adev: amdgpu_device pointer
1466  * @fence: fence for the callback
1467  */
amdgpu_vm_add_prt_cb(struct amdgpu_device * adev,struct dma_fence * fence)1468 static void amdgpu_vm_add_prt_cb(struct amdgpu_device *adev,
1469 				 struct dma_fence *fence)
1470 {
1471 	struct amdgpu_prt_cb *cb;
1472 
1473 	if (!adev->gmc.gmc_funcs->set_prt)
1474 		return;
1475 
1476 	cb = kmalloc(sizeof(struct amdgpu_prt_cb), GFP_KERNEL);
1477 	if (!cb) {
1478 		/* Last resort when we are OOM */
1479 		if (fence)
1480 			dma_fence_wait(fence, false);
1481 
1482 		amdgpu_vm_prt_put(adev);
1483 	} else {
1484 		cb->adev = adev;
1485 		if (!fence || dma_fence_add_callback(fence, &cb->cb,
1486 						     amdgpu_vm_prt_cb))
1487 			amdgpu_vm_prt_cb(fence, &cb->cb);
1488 	}
1489 }
1490 
1491 /**
1492  * amdgpu_vm_free_mapping - free a mapping
1493  *
1494  * @adev: amdgpu_device pointer
1495  * @vm: requested vm
1496  * @mapping: mapping to be freed
1497  * @fence: fence of the unmap operation
1498  *
1499  * Free a mapping and make sure we decrease the PRT usage count if applicable.
1500  */
amdgpu_vm_free_mapping(struct amdgpu_device * adev,struct amdgpu_vm * vm,struct amdgpu_bo_va_mapping * mapping,struct dma_fence * fence)1501 static void amdgpu_vm_free_mapping(struct amdgpu_device *adev,
1502 				   struct amdgpu_vm *vm,
1503 				   struct amdgpu_bo_va_mapping *mapping,
1504 				   struct dma_fence *fence)
1505 {
1506 	if (mapping->flags & AMDGPU_VM_PAGE_PRT)
1507 		amdgpu_vm_add_prt_cb(adev, fence);
1508 	kfree(mapping);
1509 }
1510 
1511 /**
1512  * amdgpu_vm_prt_fini - finish all prt mappings
1513  *
1514  * @adev: amdgpu_device pointer
1515  * @vm: requested vm
1516  *
1517  * Register a cleanup callback to disable PRT support after VM dies.
1518  */
amdgpu_vm_prt_fini(struct amdgpu_device * adev,struct amdgpu_vm * vm)1519 static void amdgpu_vm_prt_fini(struct amdgpu_device *adev, struct amdgpu_vm *vm)
1520 {
1521 	struct dma_resv *resv = vm->root.bo->tbo.base.resv;
1522 	struct dma_resv_iter cursor;
1523 	struct dma_fence *fence;
1524 
1525 	dma_resv_for_each_fence(&cursor, resv, DMA_RESV_USAGE_BOOKKEEP, fence) {
1526 		/* Add a callback for each fence in the reservation object */
1527 		amdgpu_vm_prt_get(adev);
1528 		amdgpu_vm_add_prt_cb(adev, fence);
1529 	}
1530 }
1531 
1532 /**
1533  * amdgpu_vm_clear_freed - clear freed BOs in the PT
1534  *
1535  * @adev: amdgpu_device pointer
1536  * @vm: requested vm
1537  * @fence: optional resulting fence (unchanged if no work needed to be done
1538  * or if an error occurred)
1539  *
1540  * Make sure all freed BOs are cleared in the PT.
1541  * PTs have to be reserved and mutex must be locked!
1542  *
1543  * Returns:
1544  * 0 for success.
1545  *
1546  */
amdgpu_vm_clear_freed(struct amdgpu_device * adev,struct amdgpu_vm * vm,struct dma_fence ** fence)1547 int amdgpu_vm_clear_freed(struct amdgpu_device *adev,
1548 			  struct amdgpu_vm *vm,
1549 			  struct dma_fence **fence)
1550 {
1551 	struct amdgpu_bo_va_mapping *mapping;
1552 	struct dma_fence *f = NULL;
1553 	struct amdgpu_sync sync;
1554 	int r;
1555 
1556 
1557 	/*
1558 	 * Implicitly sync to command submissions in the same VM before
1559 	 * unmapping.
1560 	 */
1561 	amdgpu_sync_create(&sync);
1562 	r = amdgpu_sync_resv(adev, &sync, vm->root.bo->tbo.base.resv,
1563 			     AMDGPU_SYNC_EQ_OWNER, vm);
1564 	if (r)
1565 		goto error_free;
1566 
1567 	while (!list_empty(&vm->freed)) {
1568 		mapping = list_first_entry(&vm->freed,
1569 			struct amdgpu_bo_va_mapping, list);
1570 		list_del(&mapping->list);
1571 
1572 		r = amdgpu_vm_update_range(adev, vm, false, false, true, false,
1573 					   &sync, mapping->start, mapping->last,
1574 					   0, 0, 0, NULL, NULL, &f);
1575 		amdgpu_vm_free_mapping(adev, vm, mapping, f);
1576 		if (r) {
1577 			dma_fence_put(f);
1578 			goto error_free;
1579 		}
1580 	}
1581 
1582 	if (fence && f) {
1583 		dma_fence_put(*fence);
1584 		*fence = f;
1585 	} else {
1586 		dma_fence_put(f);
1587 	}
1588 
1589 error_free:
1590 	amdgpu_sync_free(&sync);
1591 	return r;
1592 
1593 }
1594 
1595 /**
1596  * amdgpu_vm_handle_moved - handle moved BOs in the PT
1597  *
1598  * @adev: amdgpu_device pointer
1599  * @vm: requested vm
1600  * @ticket: optional reservation ticket used to reserve the VM
1601  *
1602  * Make sure all BOs which are moved are updated in the PTs.
1603  *
1604  * Returns:
1605  * 0 for success.
1606  *
1607  * PTs have to be reserved!
1608  */
amdgpu_vm_handle_moved(struct amdgpu_device * adev,struct amdgpu_vm * vm,struct ww_acquire_ctx * ticket)1609 int amdgpu_vm_handle_moved(struct amdgpu_device *adev,
1610 			   struct amdgpu_vm *vm,
1611 			   struct ww_acquire_ctx *ticket)
1612 {
1613 	struct amdgpu_bo_va *bo_va;
1614 	struct dma_resv *resv;
1615 	bool clear, unlock;
1616 	int r;
1617 
1618 	spin_lock(&vm->status_lock);
1619 	while (!list_empty(&vm->moved)) {
1620 		bo_va = list_first_entry(&vm->moved, struct amdgpu_bo_va,
1621 					 base.vm_status);
1622 		spin_unlock(&vm->status_lock);
1623 
1624 		/* Per VM BOs never need to bo cleared in the page tables */
1625 		r = amdgpu_vm_bo_update(adev, bo_va, false);
1626 		if (r)
1627 			return r;
1628 		spin_lock(&vm->status_lock);
1629 	}
1630 
1631 	while (!list_empty(&vm->invalidated)) {
1632 		bo_va = list_first_entry(&vm->invalidated, struct amdgpu_bo_va,
1633 					 base.vm_status);
1634 		resv = bo_va->base.bo->tbo.base.resv;
1635 		spin_unlock(&vm->status_lock);
1636 
1637 		/* Try to reserve the BO to avoid clearing its ptes */
1638 		if (!adev->debug_vm && dma_resv_trylock(resv)) {
1639 			clear = false;
1640 			unlock = true;
1641 		/* The caller is already holding the reservation lock */
1642 		} else if (ticket && dma_resv_locking_ctx(resv) == ticket) {
1643 			clear = false;
1644 			unlock = false;
1645 		/* Somebody else is using the BO right now */
1646 		} else {
1647 			clear = true;
1648 			unlock = false;
1649 		}
1650 
1651 		r = amdgpu_vm_bo_update(adev, bo_va, clear);
1652 
1653 		if (unlock)
1654 			dma_resv_unlock(resv);
1655 		if (r)
1656 			return r;
1657 
1658 		/* Remember evicted DMABuf imports in compute VMs for later
1659 		 * validation
1660 		 */
1661 		if (vm->is_compute_context &&
1662 		    drm_gem_is_imported(&bo_va->base.bo->tbo.base) &&
1663 		    (!bo_va->base.bo->tbo.resource ||
1664 		     bo_va->base.bo->tbo.resource->mem_type == TTM_PL_SYSTEM))
1665 			amdgpu_vm_bo_evicted_user(&bo_va->base);
1666 
1667 		spin_lock(&vm->status_lock);
1668 	}
1669 	spin_unlock(&vm->status_lock);
1670 
1671 	return 0;
1672 }
1673 
1674 /**
1675  * amdgpu_vm_flush_compute_tlb - Flush TLB on compute VM
1676  *
1677  * @adev: amdgpu_device pointer
1678  * @vm: requested vm
1679  * @flush_type: flush type
1680  * @xcc_mask: mask of XCCs that belong to the compute partition in need of a TLB flush.
1681  *
1682  * Flush TLB if needed for a compute VM.
1683  *
1684  * Returns:
1685  * 0 for success.
1686  */
amdgpu_vm_flush_compute_tlb(struct amdgpu_device * adev,struct amdgpu_vm * vm,uint32_t flush_type,uint32_t xcc_mask)1687 int amdgpu_vm_flush_compute_tlb(struct amdgpu_device *adev,
1688 				struct amdgpu_vm *vm,
1689 				uint32_t flush_type,
1690 				uint32_t xcc_mask)
1691 {
1692 	uint64_t tlb_seq = amdgpu_vm_tlb_seq(vm);
1693 	bool all_hub = false;
1694 	int xcc = 0, r = 0;
1695 
1696 	WARN_ON_ONCE(!vm->is_compute_context);
1697 
1698 	/*
1699 	 * It can be that we race and lose here, but that is extremely unlikely
1700 	 * and the worst thing which could happen is that we flush the changes
1701 	 * into the TLB once more which is harmless.
1702 	 */
1703 	if (atomic64_xchg(&vm->kfd_last_flushed_seq, tlb_seq) == tlb_seq)
1704 		return 0;
1705 
1706 	if (adev->family == AMDGPU_FAMILY_AI ||
1707 	    adev->family == AMDGPU_FAMILY_RV)
1708 		all_hub = true;
1709 
1710 	for_each_inst(xcc, xcc_mask) {
1711 		r = amdgpu_gmc_flush_gpu_tlb_pasid(adev, vm->pasid, flush_type,
1712 						   all_hub, xcc);
1713 		if (r)
1714 			break;
1715 	}
1716 	return r;
1717 }
1718 
1719 /**
1720  * amdgpu_vm_bo_add - add a bo to a specific vm
1721  *
1722  * @adev: amdgpu_device pointer
1723  * @vm: requested vm
1724  * @bo: amdgpu buffer object
1725  *
1726  * Add @bo into the requested vm.
1727  * Add @bo to the list of bos associated with the vm
1728  *
1729  * Returns:
1730  * Newly added bo_va or NULL for failure
1731  *
1732  * Object has to be reserved!
1733  */
amdgpu_vm_bo_add(struct amdgpu_device * adev,struct amdgpu_vm * vm,struct amdgpu_bo * bo)1734 struct amdgpu_bo_va *amdgpu_vm_bo_add(struct amdgpu_device *adev,
1735 				      struct amdgpu_vm *vm,
1736 				      struct amdgpu_bo *bo)
1737 {
1738 	struct amdgpu_bo_va *bo_va;
1739 
1740 	bo_va = kzalloc(sizeof(struct amdgpu_bo_va), GFP_KERNEL);
1741 	if (bo_va == NULL) {
1742 		return NULL;
1743 	}
1744 	amdgpu_vm_bo_base_init(&bo_va->base, vm, bo);
1745 
1746 	bo_va->ref_count = 1;
1747 	bo_va->last_pt_update = dma_fence_get_stub();
1748 	INIT_LIST_HEAD(&bo_va->valids);
1749 	INIT_LIST_HEAD(&bo_va->invalids);
1750 
1751 	if (!bo)
1752 		return bo_va;
1753 
1754 	dma_resv_assert_held(bo->tbo.base.resv);
1755 	if (amdgpu_dmabuf_is_xgmi_accessible(adev, bo)) {
1756 		bo_va->is_xgmi = true;
1757 		/* Power up XGMI if it can be potentially used */
1758 		amdgpu_xgmi_set_pstate(adev, AMDGPU_XGMI_PSTATE_MAX_VEGA20);
1759 	}
1760 
1761 	return bo_va;
1762 }
1763 
1764 
1765 /**
1766  * amdgpu_vm_bo_insert_map - insert a new mapping
1767  *
1768  * @adev: amdgpu_device pointer
1769  * @bo_va: bo_va to store the address
1770  * @mapping: the mapping to insert
1771  *
1772  * Insert a new mapping into all structures.
1773  */
amdgpu_vm_bo_insert_map(struct amdgpu_device * adev,struct amdgpu_bo_va * bo_va,struct amdgpu_bo_va_mapping * mapping)1774 static void amdgpu_vm_bo_insert_map(struct amdgpu_device *adev,
1775 				    struct amdgpu_bo_va *bo_va,
1776 				    struct amdgpu_bo_va_mapping *mapping)
1777 {
1778 	struct amdgpu_vm *vm = bo_va->base.vm;
1779 	struct amdgpu_bo *bo = bo_va->base.bo;
1780 
1781 	mapping->bo_va = bo_va;
1782 	list_add(&mapping->list, &bo_va->invalids);
1783 	amdgpu_vm_it_insert(mapping, &vm->va);
1784 
1785 	if (mapping->flags & AMDGPU_VM_PAGE_PRT)
1786 		amdgpu_vm_prt_get(adev);
1787 
1788 	if (amdgpu_vm_is_bo_always_valid(vm, bo) && !bo_va->base.moved)
1789 		amdgpu_vm_bo_moved(&bo_va->base);
1790 
1791 	trace_amdgpu_vm_bo_map(bo_va, mapping);
1792 }
1793 
1794 /* Validate operation parameters to prevent potential abuse */
amdgpu_vm_verify_parameters(struct amdgpu_device * adev,struct amdgpu_bo * bo,uint64_t saddr,uint64_t offset,uint64_t size)1795 static int amdgpu_vm_verify_parameters(struct amdgpu_device *adev,
1796 					  struct amdgpu_bo *bo,
1797 					  uint64_t saddr,
1798 					  uint64_t offset,
1799 					  uint64_t size)
1800 {
1801 	uint64_t tmp, lpfn;
1802 
1803 	if (saddr & AMDGPU_GPU_PAGE_MASK
1804 	    || offset & AMDGPU_GPU_PAGE_MASK
1805 	    || size & AMDGPU_GPU_PAGE_MASK)
1806 		return -EINVAL;
1807 
1808 	if (check_add_overflow(saddr, size, &tmp)
1809 	    || check_add_overflow(offset, size, &tmp)
1810 	    || size == 0 /* which also leads to end < begin */)
1811 		return -EINVAL;
1812 
1813 	/* make sure object fit at this offset */
1814 	if (bo && offset + size > amdgpu_bo_size(bo))
1815 		return -EINVAL;
1816 
1817 	/* Ensure last pfn not exceed max_pfn */
1818 	lpfn = (saddr + size - 1) >> AMDGPU_GPU_PAGE_SHIFT;
1819 	if (lpfn >= adev->vm_manager.max_pfn)
1820 		return -EINVAL;
1821 
1822 	return 0;
1823 }
1824 
1825 /**
1826  * amdgpu_vm_bo_map - map bo inside a vm
1827  *
1828  * @adev: amdgpu_device pointer
1829  * @bo_va: bo_va to store the address
1830  * @saddr: where to map the BO
1831  * @offset: requested offset in the BO
1832  * @size: BO size in bytes
1833  * @flags: attributes of pages (read/write/valid/etc.)
1834  *
1835  * Add a mapping of the BO at the specefied addr into the VM.
1836  *
1837  * Returns:
1838  * 0 for success, error for failure.
1839  *
1840  * Object has to be reserved and unreserved outside!
1841  */
amdgpu_vm_bo_map(struct amdgpu_device * adev,struct amdgpu_bo_va * bo_va,uint64_t saddr,uint64_t offset,uint64_t size,uint32_t flags)1842 int amdgpu_vm_bo_map(struct amdgpu_device *adev,
1843 		     struct amdgpu_bo_va *bo_va,
1844 		     uint64_t saddr, uint64_t offset,
1845 		     uint64_t size, uint32_t flags)
1846 {
1847 	struct amdgpu_bo_va_mapping *mapping, *tmp;
1848 	struct amdgpu_bo *bo = bo_va->base.bo;
1849 	struct amdgpu_vm *vm = bo_va->base.vm;
1850 	uint64_t eaddr;
1851 	int r;
1852 
1853 	r = amdgpu_vm_verify_parameters(adev, bo, saddr, offset, size);
1854 	if (r)
1855 		return r;
1856 
1857 	saddr /= AMDGPU_GPU_PAGE_SIZE;
1858 	eaddr = saddr + (size - 1) / AMDGPU_GPU_PAGE_SIZE;
1859 
1860 	tmp = amdgpu_vm_it_iter_first(&vm->va, saddr, eaddr);
1861 	if (tmp) {
1862 		/* bo and tmp overlap, invalid addr */
1863 		dev_err(adev->dev, "bo %p va 0x%010Lx-0x%010Lx conflict with "
1864 			"0x%010Lx-0x%010Lx\n", bo, saddr, eaddr,
1865 			tmp->start, tmp->last + 1);
1866 		return -EINVAL;
1867 	}
1868 
1869 	mapping = kmalloc(sizeof(*mapping), GFP_KERNEL);
1870 	if (!mapping)
1871 		return -ENOMEM;
1872 
1873 	mapping->start = saddr;
1874 	mapping->last = eaddr;
1875 	mapping->offset = offset;
1876 	mapping->flags = flags;
1877 
1878 	amdgpu_vm_bo_insert_map(adev, bo_va, mapping);
1879 
1880 	return 0;
1881 }
1882 
1883 /**
1884  * amdgpu_vm_bo_replace_map - map bo inside a vm, replacing existing mappings
1885  *
1886  * @adev: amdgpu_device pointer
1887  * @bo_va: bo_va to store the address
1888  * @saddr: where to map the BO
1889  * @offset: requested offset in the BO
1890  * @size: BO size in bytes
1891  * @flags: attributes of pages (read/write/valid/etc.)
1892  *
1893  * Add a mapping of the BO at the specefied addr into the VM. Replace existing
1894  * mappings as we do so.
1895  *
1896  * Returns:
1897  * 0 for success, error for failure.
1898  *
1899  * Object has to be reserved and unreserved outside!
1900  */
amdgpu_vm_bo_replace_map(struct amdgpu_device * adev,struct amdgpu_bo_va * bo_va,uint64_t saddr,uint64_t offset,uint64_t size,uint32_t flags)1901 int amdgpu_vm_bo_replace_map(struct amdgpu_device *adev,
1902 			     struct amdgpu_bo_va *bo_va,
1903 			     uint64_t saddr, uint64_t offset,
1904 			     uint64_t size, uint32_t flags)
1905 {
1906 	struct amdgpu_bo_va_mapping *mapping;
1907 	struct amdgpu_bo *bo = bo_va->base.bo;
1908 	uint64_t eaddr;
1909 	int r;
1910 
1911 	r = amdgpu_vm_verify_parameters(adev, bo, saddr, offset, size);
1912 	if (r)
1913 		return r;
1914 
1915 	/* Allocate all the needed memory */
1916 	mapping = kmalloc(sizeof(*mapping), GFP_KERNEL);
1917 	if (!mapping)
1918 		return -ENOMEM;
1919 
1920 	r = amdgpu_vm_bo_clear_mappings(adev, bo_va->base.vm, saddr, size);
1921 	if (r) {
1922 		kfree(mapping);
1923 		return r;
1924 	}
1925 
1926 	saddr /= AMDGPU_GPU_PAGE_SIZE;
1927 	eaddr = saddr + (size - 1) / AMDGPU_GPU_PAGE_SIZE;
1928 
1929 	mapping->start = saddr;
1930 	mapping->last = eaddr;
1931 	mapping->offset = offset;
1932 	mapping->flags = flags;
1933 
1934 	amdgpu_vm_bo_insert_map(adev, bo_va, mapping);
1935 
1936 	return 0;
1937 }
1938 
1939 /**
1940  * amdgpu_vm_bo_unmap - remove bo mapping from vm
1941  *
1942  * @adev: amdgpu_device pointer
1943  * @bo_va: bo_va to remove the address from
1944  * @saddr: where to the BO is mapped
1945  *
1946  * Remove a mapping of the BO at the specefied addr from the VM.
1947  *
1948  * Returns:
1949  * 0 for success, error for failure.
1950  *
1951  * Object has to be reserved and unreserved outside!
1952  */
amdgpu_vm_bo_unmap(struct amdgpu_device * adev,struct amdgpu_bo_va * bo_va,uint64_t saddr)1953 int amdgpu_vm_bo_unmap(struct amdgpu_device *adev,
1954 		       struct amdgpu_bo_va *bo_va,
1955 		       uint64_t saddr)
1956 {
1957 	struct amdgpu_bo_va_mapping *mapping;
1958 	struct amdgpu_vm *vm = bo_va->base.vm;
1959 	bool valid = true;
1960 	int r;
1961 
1962 	saddr /= AMDGPU_GPU_PAGE_SIZE;
1963 
1964 	list_for_each_entry(mapping, &bo_va->valids, list) {
1965 		if (mapping->start == saddr)
1966 			break;
1967 	}
1968 
1969 	if (&mapping->list == &bo_va->valids) {
1970 		valid = false;
1971 
1972 		list_for_each_entry(mapping, &bo_va->invalids, list) {
1973 			if (mapping->start == saddr)
1974 				break;
1975 		}
1976 
1977 		if (&mapping->list == &bo_va->invalids)
1978 			return -ENOENT;
1979 	}
1980 
1981 	/* It's unlikely to happen that the mapping userq hasn't been idled
1982 	 * during user requests GEM unmap IOCTL except for forcing the unmap
1983 	 * from user space.
1984 	 */
1985 	if (unlikely(atomic_read(&bo_va->userq_va_mapped) > 0)) {
1986 		r = amdgpu_userq_gem_va_unmap_validate(adev, mapping, saddr);
1987 		if (unlikely(r == -EBUSY))
1988 			dev_warn_once(adev->dev,
1989 				      "Attempt to unmap an active userq buffer\n");
1990 	}
1991 
1992 	list_del(&mapping->list);
1993 	amdgpu_vm_it_remove(mapping, &vm->va);
1994 	mapping->bo_va = NULL;
1995 	trace_amdgpu_vm_bo_unmap(bo_va, mapping);
1996 
1997 	if (valid)
1998 		list_add(&mapping->list, &vm->freed);
1999 	else
2000 		amdgpu_vm_free_mapping(adev, vm, mapping,
2001 				       bo_va->last_pt_update);
2002 
2003 	return 0;
2004 }
2005 
2006 /**
2007  * amdgpu_vm_bo_clear_mappings - remove all mappings in a specific range
2008  *
2009  * @adev: amdgpu_device pointer
2010  * @vm: VM structure to use
2011  * @saddr: start of the range
2012  * @size: size of the range
2013  *
2014  * Remove all mappings in a range, split them as appropriate.
2015  *
2016  * Returns:
2017  * 0 for success, error for failure.
2018  */
amdgpu_vm_bo_clear_mappings(struct amdgpu_device * adev,struct amdgpu_vm * vm,uint64_t saddr,uint64_t size)2019 int amdgpu_vm_bo_clear_mappings(struct amdgpu_device *adev,
2020 				struct amdgpu_vm *vm,
2021 				uint64_t saddr, uint64_t size)
2022 {
2023 	struct amdgpu_bo_va_mapping *before, *after, *tmp, *next;
2024 	LIST_HEAD(removed);
2025 	uint64_t eaddr;
2026 	int r;
2027 
2028 	r = amdgpu_vm_verify_parameters(adev, NULL, saddr, 0, size);
2029 	if (r)
2030 		return r;
2031 
2032 	saddr /= AMDGPU_GPU_PAGE_SIZE;
2033 	eaddr = saddr + (size - 1) / AMDGPU_GPU_PAGE_SIZE;
2034 
2035 	/* Allocate all the needed memory */
2036 	before = kzalloc(sizeof(*before), GFP_KERNEL);
2037 	if (!before)
2038 		return -ENOMEM;
2039 	INIT_LIST_HEAD(&before->list);
2040 
2041 	after = kzalloc(sizeof(*after), GFP_KERNEL);
2042 	if (!after) {
2043 		kfree(before);
2044 		return -ENOMEM;
2045 	}
2046 	INIT_LIST_HEAD(&after->list);
2047 
2048 	/* Now gather all removed mappings */
2049 	tmp = amdgpu_vm_it_iter_first(&vm->va, saddr, eaddr);
2050 	while (tmp) {
2051 		/* Remember mapping split at the start */
2052 		if (tmp->start < saddr) {
2053 			before->start = tmp->start;
2054 			before->last = saddr - 1;
2055 			before->offset = tmp->offset;
2056 			before->flags = tmp->flags;
2057 			before->bo_va = tmp->bo_va;
2058 			list_add(&before->list, &tmp->bo_va->invalids);
2059 		}
2060 
2061 		/* Remember mapping split at the end */
2062 		if (tmp->last > eaddr) {
2063 			after->start = eaddr + 1;
2064 			after->last = tmp->last;
2065 			after->offset = tmp->offset;
2066 			after->offset += (after->start - tmp->start) << PAGE_SHIFT;
2067 			after->flags = tmp->flags;
2068 			after->bo_va = tmp->bo_va;
2069 			list_add(&after->list, &tmp->bo_va->invalids);
2070 		}
2071 
2072 		list_del(&tmp->list);
2073 		list_add(&tmp->list, &removed);
2074 
2075 		tmp = amdgpu_vm_it_iter_next(tmp, saddr, eaddr);
2076 	}
2077 
2078 	/* And free them up */
2079 	list_for_each_entry_safe(tmp, next, &removed, list) {
2080 		amdgpu_vm_it_remove(tmp, &vm->va);
2081 		list_del(&tmp->list);
2082 
2083 		if (tmp->start < saddr)
2084 		    tmp->start = saddr;
2085 		if (tmp->last > eaddr)
2086 		    tmp->last = eaddr;
2087 
2088 		tmp->bo_va = NULL;
2089 		list_add(&tmp->list, &vm->freed);
2090 		trace_amdgpu_vm_bo_unmap(NULL, tmp);
2091 	}
2092 
2093 	/* Insert partial mapping before the range */
2094 	if (!list_empty(&before->list)) {
2095 		struct amdgpu_bo *bo = before->bo_va->base.bo;
2096 
2097 		amdgpu_vm_it_insert(before, &vm->va);
2098 		if (before->flags & AMDGPU_VM_PAGE_PRT)
2099 			amdgpu_vm_prt_get(adev);
2100 
2101 		if (amdgpu_vm_is_bo_always_valid(vm, bo) &&
2102 		    !before->bo_va->base.moved)
2103 			amdgpu_vm_bo_moved(&before->bo_va->base);
2104 	} else {
2105 		kfree(before);
2106 	}
2107 
2108 	/* Insert partial mapping after the range */
2109 	if (!list_empty(&after->list)) {
2110 		struct amdgpu_bo *bo = after->bo_va->base.bo;
2111 
2112 		amdgpu_vm_it_insert(after, &vm->va);
2113 		if (after->flags & AMDGPU_VM_PAGE_PRT)
2114 			amdgpu_vm_prt_get(adev);
2115 
2116 		if (amdgpu_vm_is_bo_always_valid(vm, bo) &&
2117 		    !after->bo_va->base.moved)
2118 			amdgpu_vm_bo_moved(&after->bo_va->base);
2119 	} else {
2120 		kfree(after);
2121 	}
2122 
2123 	return 0;
2124 }
2125 
2126 /**
2127  * amdgpu_vm_bo_lookup_mapping - find mapping by address
2128  *
2129  * @vm: the requested VM
2130  * @addr: the address
2131  *
2132  * Find a mapping by it's address.
2133  *
2134  * Returns:
2135  * The amdgpu_bo_va_mapping matching for addr or NULL
2136  *
2137  */
amdgpu_vm_bo_lookup_mapping(struct amdgpu_vm * vm,uint64_t addr)2138 struct amdgpu_bo_va_mapping *amdgpu_vm_bo_lookup_mapping(struct amdgpu_vm *vm,
2139 							 uint64_t addr)
2140 {
2141 	return amdgpu_vm_it_iter_first(&vm->va, addr, addr);
2142 }
2143 
2144 /**
2145  * amdgpu_vm_bo_trace_cs - trace all reserved mappings
2146  *
2147  * @vm: the requested vm
2148  * @ticket: CS ticket
2149  *
2150  * Trace all mappings of BOs reserved during a command submission.
2151  */
amdgpu_vm_bo_trace_cs(struct amdgpu_vm * vm,struct ww_acquire_ctx * ticket)2152 void amdgpu_vm_bo_trace_cs(struct amdgpu_vm *vm, struct ww_acquire_ctx *ticket)
2153 {
2154 	struct amdgpu_bo_va_mapping *mapping;
2155 
2156 	if (!trace_amdgpu_vm_bo_cs_enabled())
2157 		return;
2158 
2159 	for (mapping = amdgpu_vm_it_iter_first(&vm->va, 0, U64_MAX); mapping;
2160 	     mapping = amdgpu_vm_it_iter_next(mapping, 0, U64_MAX)) {
2161 		if (mapping->bo_va && mapping->bo_va->base.bo) {
2162 			struct amdgpu_bo *bo;
2163 
2164 			bo = mapping->bo_va->base.bo;
2165 			if (dma_resv_locking_ctx(bo->tbo.base.resv) !=
2166 			    ticket)
2167 				continue;
2168 		}
2169 
2170 		trace_amdgpu_vm_bo_cs(mapping);
2171 	}
2172 }
2173 
2174 /**
2175  * amdgpu_vm_bo_del - remove a bo from a specific vm
2176  *
2177  * @adev: amdgpu_device pointer
2178  * @bo_va: requested bo_va
2179  *
2180  * Remove @bo_va->bo from the requested vm.
2181  *
2182  * Object have to be reserved!
2183  */
amdgpu_vm_bo_del(struct amdgpu_device * adev,struct amdgpu_bo_va * bo_va)2184 void amdgpu_vm_bo_del(struct amdgpu_device *adev,
2185 		      struct amdgpu_bo_va *bo_va)
2186 {
2187 	struct amdgpu_bo_va_mapping *mapping, *next;
2188 	struct amdgpu_bo *bo = bo_va->base.bo;
2189 	struct amdgpu_vm *vm = bo_va->base.vm;
2190 	struct amdgpu_vm_bo_base **base;
2191 
2192 	dma_resv_assert_held(vm->root.bo->tbo.base.resv);
2193 
2194 	if (bo) {
2195 		dma_resv_assert_held(bo->tbo.base.resv);
2196 		if (amdgpu_vm_is_bo_always_valid(vm, bo))
2197 			ttm_bo_set_bulk_move(&bo->tbo, NULL);
2198 
2199 		for (base = &bo_va->base.bo->vm_bo; *base;
2200 		     base = &(*base)->next) {
2201 			if (*base != &bo_va->base)
2202 				continue;
2203 
2204 			amdgpu_vm_update_stats(*base, bo->tbo.resource, -1);
2205 			*base = bo_va->base.next;
2206 			break;
2207 		}
2208 	}
2209 
2210 	spin_lock(&vm->status_lock);
2211 	list_del(&bo_va->base.vm_status);
2212 	spin_unlock(&vm->status_lock);
2213 
2214 	list_for_each_entry_safe(mapping, next, &bo_va->valids, list) {
2215 		list_del(&mapping->list);
2216 		amdgpu_vm_it_remove(mapping, &vm->va);
2217 		mapping->bo_va = NULL;
2218 		trace_amdgpu_vm_bo_unmap(bo_va, mapping);
2219 		list_add(&mapping->list, &vm->freed);
2220 	}
2221 	list_for_each_entry_safe(mapping, next, &bo_va->invalids, list) {
2222 		list_del(&mapping->list);
2223 		amdgpu_vm_it_remove(mapping, &vm->va);
2224 		amdgpu_vm_free_mapping(adev, vm, mapping,
2225 				       bo_va->last_pt_update);
2226 	}
2227 
2228 	dma_fence_put(bo_va->last_pt_update);
2229 
2230 	if (bo && bo_va->is_xgmi)
2231 		amdgpu_xgmi_set_pstate(adev, AMDGPU_XGMI_PSTATE_MIN);
2232 
2233 	kfree(bo_va);
2234 }
2235 
2236 /**
2237  * amdgpu_vm_evictable - check if we can evict a VM
2238  *
2239  * @bo: A page table of the VM.
2240  *
2241  * Check if it is possible to evict a VM.
2242  */
amdgpu_vm_evictable(struct amdgpu_bo * bo)2243 bool amdgpu_vm_evictable(struct amdgpu_bo *bo)
2244 {
2245 	struct amdgpu_vm_bo_base *bo_base = bo->vm_bo;
2246 
2247 	/* Page tables of a destroyed VM can go away immediately */
2248 	if (!bo_base || !bo_base->vm)
2249 		return true;
2250 
2251 	/* Don't evict VM page tables while they are busy */
2252 	if (!dma_resv_test_signaled(bo->tbo.base.resv, DMA_RESV_USAGE_BOOKKEEP))
2253 		return false;
2254 
2255 	/* Try to block ongoing updates */
2256 	if (!amdgpu_vm_eviction_trylock(bo_base->vm))
2257 		return false;
2258 
2259 	/* Don't evict VM page tables while they are updated */
2260 	if (!dma_fence_is_signaled(bo_base->vm->last_unlocked)) {
2261 		amdgpu_vm_eviction_unlock(bo_base->vm);
2262 		return false;
2263 	}
2264 
2265 	bo_base->vm->evicting = true;
2266 	amdgpu_vm_eviction_unlock(bo_base->vm);
2267 	return true;
2268 }
2269 
2270 /**
2271  * amdgpu_vm_bo_invalidate - mark the bo as invalid
2272  *
2273  * @bo: amdgpu buffer object
2274  * @evicted: is the BO evicted
2275  *
2276  * Mark @bo as invalid.
2277  */
amdgpu_vm_bo_invalidate(struct amdgpu_bo * bo,bool evicted)2278 void amdgpu_vm_bo_invalidate(struct amdgpu_bo *bo, bool evicted)
2279 {
2280 	struct amdgpu_vm_bo_base *bo_base;
2281 
2282 	for (bo_base = bo->vm_bo; bo_base; bo_base = bo_base->next) {
2283 		struct amdgpu_vm *vm = bo_base->vm;
2284 
2285 		if (evicted && amdgpu_vm_is_bo_always_valid(vm, bo)) {
2286 			amdgpu_vm_bo_evicted(bo_base);
2287 			continue;
2288 		}
2289 
2290 		if (bo_base->moved)
2291 			continue;
2292 		bo_base->moved = true;
2293 
2294 		if (bo->tbo.type == ttm_bo_type_kernel)
2295 			amdgpu_vm_bo_relocated(bo_base);
2296 		else if (amdgpu_vm_is_bo_always_valid(vm, bo))
2297 			amdgpu_vm_bo_moved(bo_base);
2298 		else
2299 			amdgpu_vm_bo_invalidated(bo_base);
2300 	}
2301 }
2302 
2303 /**
2304  * amdgpu_vm_bo_move - handle BO move
2305  *
2306  * @bo: amdgpu buffer object
2307  * @new_mem: the new placement of the BO move
2308  * @evicted: is the BO evicted
2309  *
2310  * Update the memory stats for the new placement and mark @bo as invalid.
2311  */
amdgpu_vm_bo_move(struct amdgpu_bo * bo,struct ttm_resource * new_mem,bool evicted)2312 void amdgpu_vm_bo_move(struct amdgpu_bo *bo, struct ttm_resource *new_mem,
2313 		       bool evicted)
2314 {
2315 	struct amdgpu_vm_bo_base *bo_base;
2316 
2317 	for (bo_base = bo->vm_bo; bo_base; bo_base = bo_base->next) {
2318 		struct amdgpu_vm *vm = bo_base->vm;
2319 
2320 		spin_lock(&vm->status_lock);
2321 		amdgpu_vm_update_stats_locked(bo_base, bo->tbo.resource, -1);
2322 		amdgpu_vm_update_stats_locked(bo_base, new_mem, +1);
2323 		spin_unlock(&vm->status_lock);
2324 	}
2325 
2326 	amdgpu_vm_bo_invalidate(bo, evicted);
2327 }
2328 
2329 /**
2330  * amdgpu_vm_get_block_size - calculate VM page table size as power of two
2331  *
2332  * @vm_size: VM size
2333  *
2334  * Returns:
2335  * VM page table as power of two
2336  */
amdgpu_vm_get_block_size(uint64_t vm_size)2337 static uint32_t amdgpu_vm_get_block_size(uint64_t vm_size)
2338 {
2339 	/* Total bits covered by PD + PTs */
2340 	unsigned bits = ilog2(vm_size) + 18;
2341 
2342 	/* Make sure the PD is 4K in size up to 8GB address space.
2343 	   Above that split equal between PD and PTs */
2344 	if (vm_size <= 8)
2345 		return (bits - 9);
2346 	else
2347 		return ((bits + 3) / 2);
2348 }
2349 
2350 /**
2351  * amdgpu_vm_adjust_size - adjust vm size, block size and fragment size
2352  *
2353  * @adev: amdgpu_device pointer
2354  * @min_vm_size: the minimum vm size in GB if it's set auto
2355  * @fragment_size_default: Default PTE fragment size
2356  * @max_level: max VMPT level
2357  * @max_bits: max address space size in bits
2358  *
2359  */
amdgpu_vm_adjust_size(struct amdgpu_device * adev,uint32_t min_vm_size,uint32_t fragment_size_default,unsigned max_level,unsigned max_bits)2360 void amdgpu_vm_adjust_size(struct amdgpu_device *adev, uint32_t min_vm_size,
2361 			   uint32_t fragment_size_default, unsigned max_level,
2362 			   unsigned max_bits)
2363 {
2364 	unsigned int max_size = 1 << (max_bits - 30);
2365 	unsigned int vm_size;
2366 	uint64_t tmp;
2367 
2368 	/* adjust vm size first */
2369 	if (amdgpu_vm_size != -1) {
2370 		vm_size = amdgpu_vm_size;
2371 		if (vm_size > max_size) {
2372 			dev_warn(adev->dev, "VM size (%d) too large, max is %u GB\n",
2373 				 amdgpu_vm_size, max_size);
2374 			vm_size = max_size;
2375 		}
2376 	} else {
2377 		struct sysinfo si;
2378 		unsigned int phys_ram_gb;
2379 
2380 		/* Optimal VM size depends on the amount of physical
2381 		 * RAM available. Underlying requirements and
2382 		 * assumptions:
2383 		 *
2384 		 *  - Need to map system memory and VRAM from all GPUs
2385 		 *     - VRAM from other GPUs not known here
2386 		 *     - Assume VRAM <= system memory
2387 		 *  - On GFX8 and older, VM space can be segmented for
2388 		 *    different MTYPEs
2389 		 *  - Need to allow room for fragmentation, guard pages etc.
2390 		 *
2391 		 * This adds up to a rough guess of system memory x3.
2392 		 * Round up to power of two to maximize the available
2393 		 * VM size with the given page table size.
2394 		 */
2395 		si_meminfo(&si);
2396 		phys_ram_gb = ((uint64_t)si.totalram * si.mem_unit +
2397 			       (1 << 30) - 1) >> 30;
2398 		vm_size = roundup_pow_of_two(
2399 			clamp(phys_ram_gb * 3, min_vm_size, max_size));
2400 	}
2401 
2402 	adev->vm_manager.max_pfn = (uint64_t)vm_size << 18;
2403 
2404 	tmp = roundup_pow_of_two(adev->vm_manager.max_pfn);
2405 	if (amdgpu_vm_block_size != -1)
2406 		tmp >>= amdgpu_vm_block_size - 9;
2407 	tmp = DIV_ROUND_UP(fls64(tmp) - 1, 9) - 1;
2408 	adev->vm_manager.num_level = min_t(unsigned int, max_level, tmp);
2409 	switch (adev->vm_manager.num_level) {
2410 	case 3:
2411 		adev->vm_manager.root_level = AMDGPU_VM_PDB2;
2412 		break;
2413 	case 2:
2414 		adev->vm_manager.root_level = AMDGPU_VM_PDB1;
2415 		break;
2416 	case 1:
2417 		adev->vm_manager.root_level = AMDGPU_VM_PDB0;
2418 		break;
2419 	default:
2420 		dev_err(adev->dev, "VMPT only supports 2~4+1 levels\n");
2421 	}
2422 	/* block size depends on vm size and hw setup*/
2423 	if (amdgpu_vm_block_size != -1)
2424 		adev->vm_manager.block_size =
2425 			min((unsigned)amdgpu_vm_block_size, max_bits
2426 			    - AMDGPU_GPU_PAGE_SHIFT
2427 			    - 9 * adev->vm_manager.num_level);
2428 	else if (adev->vm_manager.num_level > 1)
2429 		adev->vm_manager.block_size = 9;
2430 	else
2431 		adev->vm_manager.block_size = amdgpu_vm_get_block_size(tmp);
2432 
2433 	if (amdgpu_vm_fragment_size == -1)
2434 		adev->vm_manager.fragment_size = fragment_size_default;
2435 	else
2436 		adev->vm_manager.fragment_size = amdgpu_vm_fragment_size;
2437 
2438 	dev_info(
2439 		adev->dev,
2440 		"vm size is %u GB, %u levels, block size is %u-bit, fragment size is %u-bit\n",
2441 		vm_size, adev->vm_manager.num_level + 1,
2442 		adev->vm_manager.block_size, adev->vm_manager.fragment_size);
2443 }
2444 
2445 /**
2446  * amdgpu_vm_wait_idle - wait for the VM to become idle
2447  *
2448  * @vm: VM object to wait for
2449  * @timeout: timeout to wait for VM to become idle
2450  */
amdgpu_vm_wait_idle(struct amdgpu_vm * vm,long timeout)2451 long amdgpu_vm_wait_idle(struct amdgpu_vm *vm, long timeout)
2452 {
2453 	timeout = drm_sched_entity_flush(&vm->immediate, timeout);
2454 	if (timeout <= 0)
2455 		return timeout;
2456 
2457 	return drm_sched_entity_flush(&vm->delayed, timeout);
2458 }
2459 
amdgpu_vm_destroy_task_info(struct kref * kref)2460 static void amdgpu_vm_destroy_task_info(struct kref *kref)
2461 {
2462 	struct amdgpu_task_info *ti = container_of(kref, struct amdgpu_task_info, refcount);
2463 
2464 	kfree(ti);
2465 }
2466 
2467 static inline struct amdgpu_vm *
amdgpu_vm_get_vm_from_pasid(struct amdgpu_device * adev,u32 pasid)2468 amdgpu_vm_get_vm_from_pasid(struct amdgpu_device *adev, u32 pasid)
2469 {
2470 	struct amdgpu_vm *vm;
2471 	unsigned long flags;
2472 
2473 	xa_lock_irqsave(&adev->vm_manager.pasids, flags);
2474 	vm = xa_load(&adev->vm_manager.pasids, pasid);
2475 	xa_unlock_irqrestore(&adev->vm_manager.pasids, flags);
2476 
2477 	return vm;
2478 }
2479 
2480 /**
2481  * amdgpu_vm_put_task_info - reference down the vm task_info ptr
2482  *
2483  * @task_info: task_info struct under discussion.
2484  *
2485  * frees the vm task_info ptr at the last put
2486  */
amdgpu_vm_put_task_info(struct amdgpu_task_info * task_info)2487 void amdgpu_vm_put_task_info(struct amdgpu_task_info *task_info)
2488 {
2489 	if (task_info)
2490 		kref_put(&task_info->refcount, amdgpu_vm_destroy_task_info);
2491 }
2492 
2493 /**
2494  * amdgpu_vm_get_task_info_vm - Extracts task info for a vm.
2495  *
2496  * @vm: VM to get info from
2497  *
2498  * Returns the reference counted task_info structure, which must be
2499  * referenced down with amdgpu_vm_put_task_info.
2500  */
2501 struct amdgpu_task_info *
amdgpu_vm_get_task_info_vm(struct amdgpu_vm * vm)2502 amdgpu_vm_get_task_info_vm(struct amdgpu_vm *vm)
2503 {
2504 	struct amdgpu_task_info *ti = NULL;
2505 
2506 	if (vm) {
2507 		ti = vm->task_info;
2508 		kref_get(&vm->task_info->refcount);
2509 	}
2510 
2511 	return ti;
2512 }
2513 
2514 /**
2515  * amdgpu_vm_get_task_info_pasid - Extracts task info for a PASID.
2516  *
2517  * @adev: drm device pointer
2518  * @pasid: PASID identifier for VM
2519  *
2520  * Returns the reference counted task_info structure, which must be
2521  * referenced down with amdgpu_vm_put_task_info.
2522  */
2523 struct amdgpu_task_info *
amdgpu_vm_get_task_info_pasid(struct amdgpu_device * adev,u32 pasid)2524 amdgpu_vm_get_task_info_pasid(struct amdgpu_device *adev, u32 pasid)
2525 {
2526 	return amdgpu_vm_get_task_info_vm(
2527 			amdgpu_vm_get_vm_from_pasid(adev, pasid));
2528 }
2529 
amdgpu_vm_create_task_info(struct amdgpu_vm * vm)2530 static int amdgpu_vm_create_task_info(struct amdgpu_vm *vm)
2531 {
2532 	vm->task_info = kzalloc(sizeof(struct amdgpu_task_info), GFP_KERNEL);
2533 	if (!vm->task_info)
2534 		return -ENOMEM;
2535 
2536 	kref_init(&vm->task_info->refcount);
2537 	return 0;
2538 }
2539 
2540 /**
2541  * amdgpu_vm_set_task_info - Sets VMs task info.
2542  *
2543  * @vm: vm for which to set the info
2544  */
amdgpu_vm_set_task_info(struct amdgpu_vm * vm)2545 void amdgpu_vm_set_task_info(struct amdgpu_vm *vm)
2546 {
2547 	if (!vm->task_info)
2548 		return;
2549 
2550 	if (vm->task_info->task.pid == current->pid)
2551 		return;
2552 
2553 	vm->task_info->task.pid = current->pid;
2554 	get_task_comm(vm->task_info->task.comm, current);
2555 
2556 	if (current->group_leader->mm != current->mm)
2557 		return;
2558 
2559 	vm->task_info->tgid = current->group_leader->pid;
2560 	get_task_comm(vm->task_info->process_name, current->group_leader);
2561 }
2562 
2563 /**
2564  * amdgpu_vm_init - initialize a vm instance
2565  *
2566  * @adev: amdgpu_device pointer
2567  * @vm: requested vm
2568  * @xcp_id: GPU partition selection id
2569  * @pasid: the pasid the VM is using on this GPU
2570  *
2571  * Init @vm fields.
2572  *
2573  * Returns:
2574  * 0 for success, error for failure.
2575  */
amdgpu_vm_init(struct amdgpu_device * adev,struct amdgpu_vm * vm,int32_t xcp_id,uint32_t pasid)2576 int amdgpu_vm_init(struct amdgpu_device *adev, struct amdgpu_vm *vm,
2577 		   int32_t xcp_id, uint32_t pasid)
2578 {
2579 	struct amdgpu_bo *root_bo;
2580 	struct amdgpu_bo_vm *root;
2581 	int r, i;
2582 
2583 	vm->va = RB_ROOT_CACHED;
2584 	for (i = 0; i < AMDGPU_MAX_VMHUBS; i++)
2585 		vm->reserved_vmid[i] = NULL;
2586 	INIT_LIST_HEAD(&vm->evicted);
2587 	INIT_LIST_HEAD(&vm->evicted_user);
2588 	INIT_LIST_HEAD(&vm->relocated);
2589 	INIT_LIST_HEAD(&vm->moved);
2590 	INIT_LIST_HEAD(&vm->idle);
2591 	INIT_LIST_HEAD(&vm->invalidated);
2592 	spin_lock_init(&vm->status_lock);
2593 	INIT_LIST_HEAD(&vm->freed);
2594 	INIT_LIST_HEAD(&vm->done);
2595 	INIT_KFIFO(vm->faults);
2596 
2597 	r = amdgpu_vm_init_entities(adev, vm);
2598 	if (r)
2599 		return r;
2600 
2601 	ttm_lru_bulk_move_init(&vm->lru_bulk_move);
2602 
2603 	vm->is_compute_context = false;
2604 
2605 	vm->use_cpu_for_update = !!(adev->vm_manager.vm_update_mode &
2606 				    AMDGPU_VM_USE_CPU_FOR_GFX);
2607 
2608 	dev_dbg(adev->dev, "VM update mode is %s\n",
2609 		vm->use_cpu_for_update ? "CPU" : "SDMA");
2610 	WARN_ONCE((vm->use_cpu_for_update &&
2611 		   !amdgpu_gmc_vram_full_visible(&adev->gmc)),
2612 		  "CPU update of VM recommended only for large BAR system\n");
2613 
2614 	if (vm->use_cpu_for_update)
2615 		vm->update_funcs = &amdgpu_vm_cpu_funcs;
2616 	else
2617 		vm->update_funcs = &amdgpu_vm_sdma_funcs;
2618 
2619 	vm->last_update = dma_fence_get_stub();
2620 	vm->last_unlocked = dma_fence_get_stub();
2621 	vm->last_tlb_flush = dma_fence_get_stub();
2622 	vm->generation = amdgpu_vm_generation(adev, NULL);
2623 
2624 	mutex_init(&vm->eviction_lock);
2625 	vm->evicting = false;
2626 	vm->tlb_fence_context = dma_fence_context_alloc(1);
2627 
2628 	r = amdgpu_vm_pt_create(adev, vm, adev->vm_manager.root_level,
2629 				false, &root, xcp_id);
2630 	if (r)
2631 		goto error_free_delayed;
2632 
2633 	root_bo = amdgpu_bo_ref(&root->bo);
2634 	r = amdgpu_bo_reserve(root_bo, true);
2635 	if (r) {
2636 		amdgpu_bo_unref(&root_bo);
2637 		goto error_free_delayed;
2638 	}
2639 
2640 	amdgpu_vm_bo_base_init(&vm->root, vm, root_bo);
2641 	r = dma_resv_reserve_fences(root_bo->tbo.base.resv, 1);
2642 	if (r)
2643 		goto error_free_root;
2644 
2645 	r = amdgpu_vm_pt_clear(adev, vm, root, false);
2646 	if (r)
2647 		goto error_free_root;
2648 
2649 	r = amdgpu_vm_create_task_info(vm);
2650 	if (r)
2651 		dev_dbg(adev->dev, "Failed to create task info for VM\n");
2652 
2653 	/* Store new PASID in XArray (if non-zero) */
2654 	if (pasid != 0) {
2655 		r = xa_err(xa_store_irq(&adev->vm_manager.pasids, pasid, vm, GFP_KERNEL));
2656 		if (r < 0)
2657 			goto error_free_root;
2658 
2659 		vm->pasid = pasid;
2660 	}
2661 
2662 	amdgpu_bo_unreserve(vm->root.bo);
2663 	amdgpu_bo_unref(&root_bo);
2664 
2665 	return 0;
2666 
2667 error_free_root:
2668 	/* If PASID was partially set, erase it from XArray before failing */
2669 	if (vm->pasid != 0) {
2670 		xa_erase_irq(&adev->vm_manager.pasids, vm->pasid);
2671 		vm->pasid = 0;
2672 	}
2673 	amdgpu_vm_pt_free_root(adev, vm);
2674 	amdgpu_bo_unreserve(vm->root.bo);
2675 	amdgpu_bo_unref(&root_bo);
2676 
2677 error_free_delayed:
2678 	dma_fence_put(vm->last_tlb_flush);
2679 	dma_fence_put(vm->last_unlocked);
2680 	ttm_lru_bulk_move_fini(&adev->mman.bdev, &vm->lru_bulk_move);
2681 	amdgpu_vm_fini_entities(vm);
2682 
2683 	return r;
2684 }
2685 
2686 /**
2687  * amdgpu_vm_make_compute - Turn a GFX VM into a compute VM
2688  *
2689  * @adev: amdgpu_device pointer
2690  * @vm: requested vm
2691  *
2692  * This only works on GFX VMs that don't have any BOs added and no
2693  * page tables allocated yet.
2694  *
2695  * Changes the following VM parameters:
2696  * - use_cpu_for_update
2697  * - pte_supports_ats
2698  *
2699  * Reinitializes the page directory to reflect the changed ATS
2700  * setting.
2701  *
2702  * Returns:
2703  * 0 for success, -errno for errors.
2704  */
amdgpu_vm_make_compute(struct amdgpu_device * adev,struct amdgpu_vm * vm)2705 int amdgpu_vm_make_compute(struct amdgpu_device *adev, struct amdgpu_vm *vm)
2706 {
2707 	int r;
2708 
2709 	r = amdgpu_bo_reserve(vm->root.bo, true);
2710 	if (r)
2711 		return r;
2712 
2713 	/* Update VM state */
2714 	vm->use_cpu_for_update = !!(adev->vm_manager.vm_update_mode &
2715 				    AMDGPU_VM_USE_CPU_FOR_COMPUTE);
2716 	dev_dbg(adev->dev, "VM update mode is %s\n",
2717 		vm->use_cpu_for_update ? "CPU" : "SDMA");
2718 	WARN_ONCE((vm->use_cpu_for_update &&
2719 		   !amdgpu_gmc_vram_full_visible(&adev->gmc)),
2720 		  "CPU update of VM recommended only for large BAR system\n");
2721 
2722 	if (vm->use_cpu_for_update) {
2723 		/* Sync with last SDMA update/clear before switching to CPU */
2724 		r = amdgpu_bo_sync_wait(vm->root.bo,
2725 					AMDGPU_FENCE_OWNER_UNDEFINED, true);
2726 		if (r)
2727 			goto unreserve_bo;
2728 
2729 		vm->update_funcs = &amdgpu_vm_cpu_funcs;
2730 		r = amdgpu_vm_pt_map_tables(adev, vm);
2731 		if (r)
2732 			goto unreserve_bo;
2733 
2734 	} else {
2735 		vm->update_funcs = &amdgpu_vm_sdma_funcs;
2736 	}
2737 
2738 	dma_fence_put(vm->last_update);
2739 	vm->last_update = dma_fence_get_stub();
2740 	vm->is_compute_context = true;
2741 
2742 unreserve_bo:
2743 	amdgpu_bo_unreserve(vm->root.bo);
2744 	return r;
2745 }
2746 
amdgpu_vm_stats_is_zero(struct amdgpu_vm * vm)2747 static int amdgpu_vm_stats_is_zero(struct amdgpu_vm *vm)
2748 {
2749 	for (int i = 0; i < __AMDGPU_PL_NUM; ++i) {
2750 		if (!(drm_memory_stats_is_zero(&vm->stats[i].drm) &&
2751 		      vm->stats[i].evicted == 0))
2752 			return false;
2753 	}
2754 	return true;
2755 }
2756 
2757 /**
2758  * amdgpu_vm_fini - tear down a vm instance
2759  *
2760  * @adev: amdgpu_device pointer
2761  * @vm: requested vm
2762  *
2763  * Tear down @vm.
2764  * Unbind the VM and remove all bos from the vm bo list
2765  */
amdgpu_vm_fini(struct amdgpu_device * adev,struct amdgpu_vm * vm)2766 void amdgpu_vm_fini(struct amdgpu_device *adev, struct amdgpu_vm *vm)
2767 {
2768 	struct amdgpu_bo_va_mapping *mapping, *tmp;
2769 	bool prt_fini_needed = !!adev->gmc.gmc_funcs->set_prt;
2770 	struct amdgpu_bo *root;
2771 	unsigned long flags;
2772 	int i;
2773 
2774 	amdgpu_amdkfd_gpuvm_destroy_cb(adev, vm);
2775 
2776 	root = amdgpu_bo_ref(vm->root.bo);
2777 	amdgpu_bo_reserve(root, true);
2778 	/* Remove PASID mapping before destroying VM */
2779 	if (vm->pasid != 0) {
2780 		xa_erase_irq(&adev->vm_manager.pasids, vm->pasid);
2781 		vm->pasid = 0;
2782 	}
2783 	dma_fence_wait(vm->last_unlocked, false);
2784 	dma_fence_put(vm->last_unlocked);
2785 	dma_fence_wait(vm->last_tlb_flush, false);
2786 	/* Make sure that all fence callbacks have completed */
2787 	spin_lock_irqsave(vm->last_tlb_flush->lock, flags);
2788 	spin_unlock_irqrestore(vm->last_tlb_flush->lock, flags);
2789 	dma_fence_put(vm->last_tlb_flush);
2790 
2791 	list_for_each_entry_safe(mapping, tmp, &vm->freed, list) {
2792 		if (mapping->flags & AMDGPU_VM_PAGE_PRT && prt_fini_needed) {
2793 			amdgpu_vm_prt_fini(adev, vm);
2794 			prt_fini_needed = false;
2795 		}
2796 
2797 		list_del(&mapping->list);
2798 		amdgpu_vm_free_mapping(adev, vm, mapping, NULL);
2799 	}
2800 
2801 	amdgpu_vm_pt_free_root(adev, vm);
2802 	amdgpu_bo_unreserve(root);
2803 	amdgpu_bo_unref(&root);
2804 	WARN_ON(vm->root.bo);
2805 
2806 	amdgpu_vm_fini_entities(vm);
2807 
2808 	if (!RB_EMPTY_ROOT(&vm->va.rb_root)) {
2809 		dev_err(adev->dev, "still active bo inside vm\n");
2810 	}
2811 	rbtree_postorder_for_each_entry_safe(mapping, tmp,
2812 					     &vm->va.rb_root, rb) {
2813 		/* Don't remove the mapping here, we don't want to trigger a
2814 		 * rebalance and the tree is about to be destroyed anyway.
2815 		 */
2816 		list_del(&mapping->list);
2817 		kfree(mapping);
2818 	}
2819 
2820 	dma_fence_put(vm->last_update);
2821 
2822 	for (i = 0; i < AMDGPU_MAX_VMHUBS; i++) {
2823 		amdgpu_vmid_free_reserved(adev, vm, i);
2824 	}
2825 
2826 	ttm_lru_bulk_move_fini(&adev->mman.bdev, &vm->lru_bulk_move);
2827 
2828 	if (!amdgpu_vm_stats_is_zero(vm)) {
2829 		struct amdgpu_task_info *ti = vm->task_info;
2830 
2831 		dev_warn(adev->dev,
2832 			 "VM memory stats for proc %s(%d) task %s(%d) is non-zero when fini\n",
2833 			 ti->process_name, ti->task.pid, ti->task.comm, ti->tgid);
2834 	}
2835 
2836 	amdgpu_vm_put_task_info(vm->task_info);
2837 }
2838 
2839 /**
2840  * amdgpu_vm_manager_init - init the VM manager
2841  *
2842  * @adev: amdgpu_device pointer
2843  *
2844  * Initialize the VM manager structures
2845  */
amdgpu_vm_manager_init(struct amdgpu_device * adev)2846 void amdgpu_vm_manager_init(struct amdgpu_device *adev)
2847 {
2848 	/* Concurrent flushes are only possible starting with Vega10 and
2849 	 * are broken on Navi10 and Navi14.
2850 	 */
2851 	adev->vm_manager.concurrent_flush = !(adev->asic_type < CHIP_VEGA10 ||
2852 					      adev->asic_type == CHIP_NAVI10 ||
2853 					      adev->asic_type == CHIP_NAVI14);
2854 	amdgpu_vmid_mgr_init(adev);
2855 
2856 	spin_lock_init(&adev->vm_manager.prt_lock);
2857 	atomic_set(&adev->vm_manager.num_prt_users, 0);
2858 
2859 	/* If not overridden by the user, by default, only in large BAR systems
2860 	 * Compute VM tables will be updated by CPU
2861 	 */
2862 #ifdef CONFIG_X86_64
2863 	if (amdgpu_vm_update_mode == -1) {
2864 		/* For asic with VF MMIO access protection
2865 		 * avoid using CPU for VM table updates
2866 		 */
2867 		if (amdgpu_gmc_vram_full_visible(&adev->gmc) &&
2868 		    !amdgpu_sriov_vf_mmio_access_protection(adev))
2869 			adev->vm_manager.vm_update_mode =
2870 				AMDGPU_VM_USE_CPU_FOR_COMPUTE;
2871 		else
2872 			adev->vm_manager.vm_update_mode = 0;
2873 	} else
2874 		adev->vm_manager.vm_update_mode = amdgpu_vm_update_mode;
2875 #else
2876 	adev->vm_manager.vm_update_mode = 0;
2877 #endif
2878 
2879 	xa_init_flags(&adev->vm_manager.pasids, XA_FLAGS_LOCK_IRQ);
2880 }
2881 
2882 /**
2883  * amdgpu_vm_manager_fini - cleanup VM manager
2884  *
2885  * @adev: amdgpu_device pointer
2886  *
2887  * Cleanup the VM manager and free resources.
2888  */
amdgpu_vm_manager_fini(struct amdgpu_device * adev)2889 void amdgpu_vm_manager_fini(struct amdgpu_device *adev)
2890 {
2891 	WARN_ON(!xa_empty(&adev->vm_manager.pasids));
2892 	xa_destroy(&adev->vm_manager.pasids);
2893 
2894 	amdgpu_vmid_mgr_fini(adev);
2895 }
2896 
2897 /**
2898  * amdgpu_vm_ioctl - Manages VMID reservation for vm hubs.
2899  *
2900  * @dev: drm device pointer
2901  * @data: drm_amdgpu_vm
2902  * @filp: drm file pointer
2903  *
2904  * Returns:
2905  * 0 for success, -errno for errors.
2906  */
amdgpu_vm_ioctl(struct drm_device * dev,void * data,struct drm_file * filp)2907 int amdgpu_vm_ioctl(struct drm_device *dev, void *data, struct drm_file *filp)
2908 {
2909 	union drm_amdgpu_vm *args = data;
2910 	struct amdgpu_device *adev = drm_to_adev(dev);
2911 	struct amdgpu_fpriv *fpriv = filp->driver_priv;
2912 	struct amdgpu_vm *vm = &fpriv->vm;
2913 
2914 	/* No valid flags defined yet */
2915 	if (args->in.flags)
2916 		return -EINVAL;
2917 
2918 	switch (args->in.op) {
2919 	case AMDGPU_VM_OP_RESERVE_VMID:
2920 		/* We only have requirement to reserve vmid from gfxhub */
2921 		return amdgpu_vmid_alloc_reserved(adev, vm, AMDGPU_GFXHUB(0));
2922 	case AMDGPU_VM_OP_UNRESERVE_VMID:
2923 		amdgpu_vmid_free_reserved(adev, vm, AMDGPU_GFXHUB(0));
2924 		break;
2925 	default:
2926 		return -EINVAL;
2927 	}
2928 
2929 	return 0;
2930 }
2931 
2932 /**
2933  * amdgpu_vm_handle_fault - graceful handling of VM faults.
2934  * @adev: amdgpu device pointer
2935  * @pasid: PASID of the VM
2936  * @ts: Timestamp of the fault
2937  * @vmid: VMID, only used for GFX 9.4.3.
2938  * @node_id: Node_id received in IH cookie. Only applicable for
2939  *           GFX 9.4.3.
2940  * @addr: Address of the fault
2941  * @write_fault: true is write fault, false is read fault
2942  *
2943  * Try to gracefully handle a VM fault. Return true if the fault was handled and
2944  * shouldn't be reported any more.
2945  */
amdgpu_vm_handle_fault(struct amdgpu_device * adev,u32 pasid,u32 vmid,u32 node_id,uint64_t addr,uint64_t ts,bool write_fault)2946 bool amdgpu_vm_handle_fault(struct amdgpu_device *adev, u32 pasid,
2947 			    u32 vmid, u32 node_id, uint64_t addr, uint64_t ts,
2948 			    bool write_fault)
2949 {
2950 	bool is_compute_context = false;
2951 	struct amdgpu_bo *root;
2952 	unsigned long irqflags;
2953 	uint64_t value, flags;
2954 	struct amdgpu_vm *vm;
2955 	int r;
2956 
2957 	xa_lock_irqsave(&adev->vm_manager.pasids, irqflags);
2958 	vm = xa_load(&adev->vm_manager.pasids, pasid);
2959 	if (vm) {
2960 		root = amdgpu_bo_ref(vm->root.bo);
2961 		is_compute_context = vm->is_compute_context;
2962 	} else {
2963 		root = NULL;
2964 	}
2965 	xa_unlock_irqrestore(&adev->vm_manager.pasids, irqflags);
2966 
2967 	if (!root)
2968 		return false;
2969 
2970 	addr /= AMDGPU_GPU_PAGE_SIZE;
2971 
2972 	if (is_compute_context && !svm_range_restore_pages(adev, pasid, vmid,
2973 	    node_id, addr, ts, write_fault)) {
2974 		amdgpu_bo_unref(&root);
2975 		return true;
2976 	}
2977 
2978 	r = amdgpu_bo_reserve(root, true);
2979 	if (r)
2980 		goto error_unref;
2981 
2982 	/* Double check that the VM still exists */
2983 	xa_lock_irqsave(&adev->vm_manager.pasids, irqflags);
2984 	vm = xa_load(&adev->vm_manager.pasids, pasid);
2985 	if (vm && vm->root.bo != root)
2986 		vm = NULL;
2987 	xa_unlock_irqrestore(&adev->vm_manager.pasids, irqflags);
2988 	if (!vm)
2989 		goto error_unlock;
2990 
2991 	flags = AMDGPU_PTE_VALID | AMDGPU_PTE_SNOOPED |
2992 		AMDGPU_PTE_SYSTEM;
2993 
2994 	if (is_compute_context) {
2995 		/* Intentionally setting invalid PTE flag
2996 		 * combination to force a no-retry-fault
2997 		 */
2998 		flags = AMDGPU_VM_NORETRY_FLAGS;
2999 		value = 0;
3000 	} else if (amdgpu_vm_fault_stop == AMDGPU_VM_FAULT_STOP_NEVER) {
3001 		/* Redirect the access to the dummy page */
3002 		value = adev->dummy_page_addr;
3003 		flags |= AMDGPU_PTE_EXECUTABLE | AMDGPU_PTE_READABLE |
3004 			AMDGPU_PTE_WRITEABLE;
3005 
3006 	} else {
3007 		/* Let the hw retry silently on the PTE */
3008 		value = 0;
3009 	}
3010 
3011 	r = dma_resv_reserve_fences(root->tbo.base.resv, 1);
3012 	if (r) {
3013 		pr_debug("failed %d to reserve fence slot\n", r);
3014 		goto error_unlock;
3015 	}
3016 
3017 	r = amdgpu_vm_update_range(adev, vm, true, false, false, false,
3018 				   NULL, addr, addr, flags, value, 0, NULL, NULL, NULL);
3019 	if (r)
3020 		goto error_unlock;
3021 
3022 	r = amdgpu_vm_update_pdes(adev, vm, true);
3023 
3024 error_unlock:
3025 	amdgpu_bo_unreserve(root);
3026 	if (r < 0)
3027 		dev_err(adev->dev, "Can't handle page fault (%d)\n", r);
3028 
3029 error_unref:
3030 	amdgpu_bo_unref(&root);
3031 
3032 	return false;
3033 }
3034 
3035 #if defined(CONFIG_DEBUG_FS)
3036 /**
3037  * amdgpu_debugfs_vm_bo_info  - print BO info for the VM
3038  *
3039  * @vm: Requested VM for printing BO info
3040  * @m: debugfs file
3041  *
3042  * Print BO information in debugfs file for the VM
3043  */
amdgpu_debugfs_vm_bo_info(struct amdgpu_vm * vm,struct seq_file * m)3044 void amdgpu_debugfs_vm_bo_info(struct amdgpu_vm *vm, struct seq_file *m)
3045 {
3046 	struct amdgpu_bo_va *bo_va, *tmp;
3047 	u64 total_idle = 0;
3048 	u64 total_evicted = 0;
3049 	u64 total_relocated = 0;
3050 	u64 total_moved = 0;
3051 	u64 total_invalidated = 0;
3052 	u64 total_done = 0;
3053 	unsigned int total_idle_objs = 0;
3054 	unsigned int total_evicted_objs = 0;
3055 	unsigned int total_relocated_objs = 0;
3056 	unsigned int total_moved_objs = 0;
3057 	unsigned int total_invalidated_objs = 0;
3058 	unsigned int total_done_objs = 0;
3059 	unsigned int id = 0;
3060 
3061 	amdgpu_vm_assert_locked(vm);
3062 
3063 	spin_lock(&vm->status_lock);
3064 	seq_puts(m, "\tIdle BOs:\n");
3065 	list_for_each_entry_safe(bo_va, tmp, &vm->idle, base.vm_status) {
3066 		if (!bo_va->base.bo)
3067 			continue;
3068 		total_idle += amdgpu_bo_print_info(id++, bo_va->base.bo, m);
3069 	}
3070 	total_idle_objs = id;
3071 	id = 0;
3072 
3073 	seq_puts(m, "\tEvicted BOs:\n");
3074 	list_for_each_entry_safe(bo_va, tmp, &vm->evicted, base.vm_status) {
3075 		if (!bo_va->base.bo)
3076 			continue;
3077 		total_evicted += amdgpu_bo_print_info(id++, bo_va->base.bo, m);
3078 	}
3079 	total_evicted_objs = id;
3080 	id = 0;
3081 
3082 	seq_puts(m, "\tRelocated BOs:\n");
3083 	list_for_each_entry_safe(bo_va, tmp, &vm->relocated, base.vm_status) {
3084 		if (!bo_va->base.bo)
3085 			continue;
3086 		total_relocated += amdgpu_bo_print_info(id++, bo_va->base.bo, m);
3087 	}
3088 	total_relocated_objs = id;
3089 	id = 0;
3090 
3091 	seq_puts(m, "\tMoved BOs:\n");
3092 	list_for_each_entry_safe(bo_va, tmp, &vm->moved, base.vm_status) {
3093 		if (!bo_va->base.bo)
3094 			continue;
3095 		total_moved += amdgpu_bo_print_info(id++, bo_va->base.bo, m);
3096 	}
3097 	total_moved_objs = id;
3098 	id = 0;
3099 
3100 	seq_puts(m, "\tInvalidated BOs:\n");
3101 	list_for_each_entry_safe(bo_va, tmp, &vm->invalidated, base.vm_status) {
3102 		if (!bo_va->base.bo)
3103 			continue;
3104 		total_invalidated += amdgpu_bo_print_info(id++,	bo_va->base.bo, m);
3105 	}
3106 	total_invalidated_objs = id;
3107 	id = 0;
3108 
3109 	seq_puts(m, "\tDone BOs:\n");
3110 	list_for_each_entry_safe(bo_va, tmp, &vm->done, base.vm_status) {
3111 		if (!bo_va->base.bo)
3112 			continue;
3113 		total_done += amdgpu_bo_print_info(id++, bo_va->base.bo, m);
3114 	}
3115 	spin_unlock(&vm->status_lock);
3116 	total_done_objs = id;
3117 
3118 	seq_printf(m, "\tTotal idle size:        %12lld\tobjs:\t%d\n", total_idle,
3119 		   total_idle_objs);
3120 	seq_printf(m, "\tTotal evicted size:     %12lld\tobjs:\t%d\n", total_evicted,
3121 		   total_evicted_objs);
3122 	seq_printf(m, "\tTotal relocated size:   %12lld\tobjs:\t%d\n", total_relocated,
3123 		   total_relocated_objs);
3124 	seq_printf(m, "\tTotal moved size:       %12lld\tobjs:\t%d\n", total_moved,
3125 		   total_moved_objs);
3126 	seq_printf(m, "\tTotal invalidated size: %12lld\tobjs:\t%d\n", total_invalidated,
3127 		   total_invalidated_objs);
3128 	seq_printf(m, "\tTotal done size:        %12lld\tobjs:\t%d\n", total_done,
3129 		   total_done_objs);
3130 }
3131 #endif
3132 
3133 /**
3134  * amdgpu_vm_update_fault_cache - update cached fault into.
3135  * @adev: amdgpu device pointer
3136  * @pasid: PASID of the VM
3137  * @addr: Address of the fault
3138  * @status: GPUVM fault status register
3139  * @vmhub: which vmhub got the fault
3140  *
3141  * Cache the fault info for later use by userspace in debugging.
3142  */
amdgpu_vm_update_fault_cache(struct amdgpu_device * adev,unsigned int pasid,uint64_t addr,uint32_t status,unsigned int vmhub)3143 void amdgpu_vm_update_fault_cache(struct amdgpu_device *adev,
3144 				  unsigned int pasid,
3145 				  uint64_t addr,
3146 				  uint32_t status,
3147 				  unsigned int vmhub)
3148 {
3149 	struct amdgpu_vm *vm;
3150 	unsigned long flags;
3151 
3152 	xa_lock_irqsave(&adev->vm_manager.pasids, flags);
3153 
3154 	vm = xa_load(&adev->vm_manager.pasids, pasid);
3155 	/* Don't update the fault cache if status is 0.  In the multiple
3156 	 * fault case, subsequent faults will return a 0 status which is
3157 	 * useless for userspace and replaces the useful fault status, so
3158 	 * only update if status is non-0.
3159 	 */
3160 	if (vm && status) {
3161 		vm->fault_info.addr = addr;
3162 		vm->fault_info.status = status;
3163 		/*
3164 		 * Update the fault information globally for later usage
3165 		 * when vm could be stale or freed.
3166 		 */
3167 		adev->vm_manager.fault_info.addr = addr;
3168 		adev->vm_manager.fault_info.vmhub = vmhub;
3169 		adev->vm_manager.fault_info.status = status;
3170 
3171 		if (AMDGPU_IS_GFXHUB(vmhub)) {
3172 			vm->fault_info.vmhub = AMDGPU_VMHUB_TYPE_GFX;
3173 			vm->fault_info.vmhub |=
3174 				(vmhub - AMDGPU_GFXHUB_START) << AMDGPU_VMHUB_IDX_SHIFT;
3175 		} else if (AMDGPU_IS_MMHUB0(vmhub)) {
3176 			vm->fault_info.vmhub = AMDGPU_VMHUB_TYPE_MM0;
3177 			vm->fault_info.vmhub |=
3178 				(vmhub - AMDGPU_MMHUB0_START) << AMDGPU_VMHUB_IDX_SHIFT;
3179 		} else if (AMDGPU_IS_MMHUB1(vmhub)) {
3180 			vm->fault_info.vmhub = AMDGPU_VMHUB_TYPE_MM1;
3181 			vm->fault_info.vmhub |=
3182 				(vmhub - AMDGPU_MMHUB1_START) << AMDGPU_VMHUB_IDX_SHIFT;
3183 		} else {
3184 			WARN_ONCE(1, "Invalid vmhub %u\n", vmhub);
3185 		}
3186 	}
3187 	xa_unlock_irqrestore(&adev->vm_manager.pasids, flags);
3188 }
3189 
3190 /**
3191  * amdgpu_vm_is_bo_always_valid - check if the BO is VM always valid
3192  *
3193  * @vm: VM to test against.
3194  * @bo: BO to be tested.
3195  *
3196  * Returns true if the BO shares the dma_resv object with the root PD and is
3197  * always guaranteed to be valid inside the VM.
3198  */
amdgpu_vm_is_bo_always_valid(struct amdgpu_vm * vm,struct amdgpu_bo * bo)3199 bool amdgpu_vm_is_bo_always_valid(struct amdgpu_vm *vm, struct amdgpu_bo *bo)
3200 {
3201 	return bo && bo->tbo.base.resv == vm->root.bo->tbo.base.resv;
3202 }
3203 
amdgpu_vm_print_task_info(struct amdgpu_device * adev,struct amdgpu_task_info * task_info)3204 void amdgpu_vm_print_task_info(struct amdgpu_device *adev,
3205 			       struct amdgpu_task_info *task_info)
3206 {
3207 	dev_err(adev->dev,
3208 		" Process %s pid %d thread %s pid %d\n",
3209 		task_info->process_name, task_info->tgid,
3210 		task_info->task.comm, task_info->task.pid);
3211 }
3212