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