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