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