Merge tag 'amd-drm-next-5.14-2021-05-21' of https://gitlab.freedesktop.org/agd5f...
[platform/kernel/linux-starfive.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 "amdgpu.h"
36 #include "amdgpu_trace.h"
37 #include "amdgpu_amdkfd.h"
38 #include "amdgpu_gmc.h"
39 #include "amdgpu_xgmi.h"
40 #include "amdgpu_dma_buf.h"
41 #include "amdgpu_res_cursor.h"
42 #include "kfd_svm.h"
43
44 /**
45  * DOC: GPUVM
46  *
47  * GPUVM is similar to the legacy gart on older asics, however
48  * rather than there being a single global gart table
49  * for the entire GPU, there are multiple VM page tables active
50  * at any given time.  The VM page tables can contain a mix
51  * vram pages and system memory pages and system memory pages
52  * can be mapped as snooped (cached system pages) or unsnooped
53  * (uncached system pages).
54  * Each VM has an ID associated with it and there is a page table
55  * associated with each VMID.  When execting a command buffer,
56  * the kernel tells the the ring what VMID to use for that command
57  * buffer.  VMIDs are allocated dynamically as commands are submitted.
58  * The userspace drivers maintain their own address space and the kernel
59  * sets up their pages tables accordingly when they submit their
60  * command buffers and a VMID is assigned.
61  * Cayman/Trinity support up to 8 active VMs at any given time;
62  * SI supports 16.
63  */
64
65 #define START(node) ((node)->start)
66 #define LAST(node) ((node)->last)
67
68 INTERVAL_TREE_DEFINE(struct amdgpu_bo_va_mapping, rb, uint64_t, __subtree_last,
69                      START, LAST, static, amdgpu_vm_it)
70
71 #undef START
72 #undef LAST
73
74 /**
75  * struct amdgpu_prt_cb - Helper to disable partial resident texture feature from a fence callback
76  */
77 struct amdgpu_prt_cb {
78
79         /**
80          * @adev: amdgpu device
81          */
82         struct amdgpu_device *adev;
83
84         /**
85          * @cb: callback
86          */
87         struct dma_fence_cb cb;
88 };
89
90 /*
91  * vm eviction_lock can be taken in MMU notifiers. Make sure no reclaim-FS
92  * happens while holding this lock anywhere to prevent deadlocks when
93  * an MMU notifier runs in reclaim-FS context.
94  */
95 static inline void amdgpu_vm_eviction_lock(struct amdgpu_vm *vm)
96 {
97         mutex_lock(&vm->eviction_lock);
98         vm->saved_flags = memalloc_noreclaim_save();
99 }
100
101 static inline int amdgpu_vm_eviction_trylock(struct amdgpu_vm *vm)
102 {
103         if (mutex_trylock(&vm->eviction_lock)) {
104                 vm->saved_flags = memalloc_noreclaim_save();
105                 return 1;
106         }
107         return 0;
108 }
109
110 static inline void amdgpu_vm_eviction_unlock(struct amdgpu_vm *vm)
111 {
112         memalloc_noreclaim_restore(vm->saved_flags);
113         mutex_unlock(&vm->eviction_lock);
114 }
115
116 /**
117  * amdgpu_vm_level_shift - return the addr shift for each level
118  *
119  * @adev: amdgpu_device pointer
120  * @level: VMPT level
121  *
122  * Returns:
123  * The number of bits the pfn needs to be right shifted for a level.
124  */
125 static unsigned amdgpu_vm_level_shift(struct amdgpu_device *adev,
126                                       unsigned level)
127 {
128         switch (level) {
129         case AMDGPU_VM_PDB2:
130         case AMDGPU_VM_PDB1:
131         case AMDGPU_VM_PDB0:
132                 return 9 * (AMDGPU_VM_PDB0 - level) +
133                         adev->vm_manager.block_size;
134         case AMDGPU_VM_PTB:
135                 return 0;
136         default:
137                 return ~0;
138         }
139 }
140
141 /**
142  * amdgpu_vm_num_entries - return the number of entries in a PD/PT
143  *
144  * @adev: amdgpu_device pointer
145  * @level: VMPT level
146  *
147  * Returns:
148  * The number of entries in a page directory or page table.
149  */
150 static unsigned amdgpu_vm_num_entries(struct amdgpu_device *adev,
151                                       unsigned level)
152 {
153         unsigned shift = amdgpu_vm_level_shift(adev,
154                                                adev->vm_manager.root_level);
155
156         if (level == adev->vm_manager.root_level)
157                 /* For the root directory */
158                 return round_up(adev->vm_manager.max_pfn, 1ULL << shift)
159                         >> shift;
160         else if (level != AMDGPU_VM_PTB)
161                 /* Everything in between */
162                 return 512;
163         else
164                 /* For the page tables on the leaves */
165                 return AMDGPU_VM_PTE_COUNT(adev);
166 }
167
168 /**
169  * amdgpu_vm_num_ats_entries - return the number of ATS entries in the root PD
170  *
171  * @adev: amdgpu_device pointer
172  *
173  * Returns:
174  * The number of entries in the root page directory which needs the ATS setting.
175  */
176 static unsigned amdgpu_vm_num_ats_entries(struct amdgpu_device *adev)
177 {
178         unsigned shift;
179
180         shift = amdgpu_vm_level_shift(adev, adev->vm_manager.root_level);
181         return AMDGPU_GMC_HOLE_START >> (shift + AMDGPU_GPU_PAGE_SHIFT);
182 }
183
184 /**
185  * amdgpu_vm_entries_mask - the mask to get the entry number of a PD/PT
186  *
187  * @adev: amdgpu_device pointer
188  * @level: VMPT level
189  *
190  * Returns:
191  * The mask to extract the entry number of a PD/PT from an address.
192  */
193 static uint32_t amdgpu_vm_entries_mask(struct amdgpu_device *adev,
194                                        unsigned int level)
195 {
196         if (level <= adev->vm_manager.root_level)
197                 return 0xffffffff;
198         else if (level != AMDGPU_VM_PTB)
199                 return 0x1ff;
200         else
201                 return AMDGPU_VM_PTE_COUNT(adev) - 1;
202 }
203
204 /**
205  * amdgpu_vm_bo_size - returns the size of the BOs in bytes
206  *
207  * @adev: amdgpu_device pointer
208  * @level: VMPT level
209  *
210  * Returns:
211  * The size of the BO for a page directory or page table in bytes.
212  */
213 static unsigned amdgpu_vm_bo_size(struct amdgpu_device *adev, unsigned level)
214 {
215         return AMDGPU_GPU_PAGE_ALIGN(amdgpu_vm_num_entries(adev, level) * 8);
216 }
217
218 /**
219  * amdgpu_vm_bo_evicted - vm_bo is evicted
220  *
221  * @vm_bo: vm_bo which is evicted
222  *
223  * State for PDs/PTs and per VM BOs which are not at the location they should
224  * be.
225  */
226 static void amdgpu_vm_bo_evicted(struct amdgpu_vm_bo_base *vm_bo)
227 {
228         struct amdgpu_vm *vm = vm_bo->vm;
229         struct amdgpu_bo *bo = vm_bo->bo;
230
231         vm_bo->moved = true;
232         if (bo->tbo.type == ttm_bo_type_kernel)
233                 list_move(&vm_bo->vm_status, &vm->evicted);
234         else
235                 list_move_tail(&vm_bo->vm_status, &vm->evicted);
236 }
237 /**
238  * amdgpu_vm_bo_moved - vm_bo is moved
239  *
240  * @vm_bo: vm_bo which is moved
241  *
242  * State for per VM BOs which are moved, but that change is not yet reflected
243  * in the page tables.
244  */
245 static void amdgpu_vm_bo_moved(struct amdgpu_vm_bo_base *vm_bo)
246 {
247         list_move(&vm_bo->vm_status, &vm_bo->vm->moved);
248 }
249
250 /**
251  * amdgpu_vm_bo_idle - vm_bo is idle
252  *
253  * @vm_bo: vm_bo which is now idle
254  *
255  * State for PDs/PTs and per VM BOs which have gone through the state machine
256  * and are now idle.
257  */
258 static void amdgpu_vm_bo_idle(struct amdgpu_vm_bo_base *vm_bo)
259 {
260         list_move(&vm_bo->vm_status, &vm_bo->vm->idle);
261         vm_bo->moved = false;
262 }
263
264 /**
265  * amdgpu_vm_bo_invalidated - vm_bo is invalidated
266  *
267  * @vm_bo: vm_bo which is now invalidated
268  *
269  * State for normal BOs which are invalidated and that change not yet reflected
270  * in the PTs.
271  */
272 static void amdgpu_vm_bo_invalidated(struct amdgpu_vm_bo_base *vm_bo)
273 {
274         spin_lock(&vm_bo->vm->invalidated_lock);
275         list_move(&vm_bo->vm_status, &vm_bo->vm->invalidated);
276         spin_unlock(&vm_bo->vm->invalidated_lock);
277 }
278
279 /**
280  * amdgpu_vm_bo_relocated - vm_bo is reloacted
281  *
282  * @vm_bo: vm_bo which is relocated
283  *
284  * State for PDs/PTs which needs to update their parent PD.
285  * For the root PD, just move to idle state.
286  */
287 static void amdgpu_vm_bo_relocated(struct amdgpu_vm_bo_base *vm_bo)
288 {
289         if (vm_bo->bo->parent)
290                 list_move(&vm_bo->vm_status, &vm_bo->vm->relocated);
291         else
292                 amdgpu_vm_bo_idle(vm_bo);
293 }
294
295 /**
296  * amdgpu_vm_bo_done - vm_bo is done
297  *
298  * @vm_bo: vm_bo which is now done
299  *
300  * State for normal BOs which are invalidated and that change has been updated
301  * in the PTs.
302  */
303 static void amdgpu_vm_bo_done(struct amdgpu_vm_bo_base *vm_bo)
304 {
305         spin_lock(&vm_bo->vm->invalidated_lock);
306         list_move(&vm_bo->vm_status, &vm_bo->vm->done);
307         spin_unlock(&vm_bo->vm->invalidated_lock);
308 }
309
310 /**
311  * amdgpu_vm_bo_base_init - Adds bo to the list of bos associated with the vm
312  *
313  * @base: base structure for tracking BO usage in a VM
314  * @vm: vm to which bo is to be added
315  * @bo: amdgpu buffer object
316  *
317  * Initialize a bo_va_base structure and add it to the appropriate lists
318  *
319  */
320 static void amdgpu_vm_bo_base_init(struct amdgpu_vm_bo_base *base,
321                                    struct amdgpu_vm *vm,
322                                    struct amdgpu_bo *bo)
323 {
324         base->vm = vm;
325         base->bo = bo;
326         base->next = NULL;
327         INIT_LIST_HEAD(&base->vm_status);
328
329         if (!bo)
330                 return;
331         base->next = bo->vm_bo;
332         bo->vm_bo = base;
333
334         if (bo->tbo.base.resv != vm->root.base.bo->tbo.base.resv)
335                 return;
336
337         vm->bulk_moveable = false;
338         if (bo->tbo.type == ttm_bo_type_kernel && bo->parent)
339                 amdgpu_vm_bo_relocated(base);
340         else
341                 amdgpu_vm_bo_idle(base);
342
343         if (bo->preferred_domains &
344             amdgpu_mem_type_to_domain(bo->tbo.mem.mem_type))
345                 return;
346
347         /*
348          * we checked all the prerequisites, but it looks like this per vm bo
349          * is currently evicted. add the bo to the evicted list to make sure it
350          * is validated on next vm use to avoid fault.
351          * */
352         amdgpu_vm_bo_evicted(base);
353 }
354
355 /**
356  * amdgpu_vm_pt_parent - get the parent page directory
357  *
358  * @pt: child page table
359  *
360  * Helper to get the parent entry for the child page table. NULL if we are at
361  * the root page directory.
362  */
363 static struct amdgpu_vm_pt *amdgpu_vm_pt_parent(struct amdgpu_vm_pt *pt)
364 {
365         struct amdgpu_bo *parent = pt->base.bo->parent;
366
367         if (!parent)
368                 return NULL;
369
370         return container_of(parent->vm_bo, struct amdgpu_vm_pt, base);
371 }
372
373 /*
374  * amdgpu_vm_pt_cursor - state for for_each_amdgpu_vm_pt
375  */
376 struct amdgpu_vm_pt_cursor {
377         uint64_t pfn;
378         struct amdgpu_vm_pt *parent;
379         struct amdgpu_vm_pt *entry;
380         unsigned level;
381 };
382
383 /**
384  * amdgpu_vm_pt_start - start PD/PT walk
385  *
386  * @adev: amdgpu_device pointer
387  * @vm: amdgpu_vm structure
388  * @start: start address of the walk
389  * @cursor: state to initialize
390  *
391  * Initialize a amdgpu_vm_pt_cursor to start a walk.
392  */
393 static void amdgpu_vm_pt_start(struct amdgpu_device *adev,
394                                struct amdgpu_vm *vm, uint64_t start,
395                                struct amdgpu_vm_pt_cursor *cursor)
396 {
397         cursor->pfn = start;
398         cursor->parent = NULL;
399         cursor->entry = &vm->root;
400         cursor->level = adev->vm_manager.root_level;
401 }
402
403 /**
404  * amdgpu_vm_pt_descendant - go to child node
405  *
406  * @adev: amdgpu_device pointer
407  * @cursor: current state
408  *
409  * Walk to the child node of the current node.
410  * Returns:
411  * True if the walk was possible, false otherwise.
412  */
413 static bool amdgpu_vm_pt_descendant(struct amdgpu_device *adev,
414                                     struct amdgpu_vm_pt_cursor *cursor)
415 {
416         unsigned mask, shift, idx;
417
418         if (!cursor->entry->entries)
419                 return false;
420
421         BUG_ON(!cursor->entry->base.bo);
422         mask = amdgpu_vm_entries_mask(adev, cursor->level);
423         shift = amdgpu_vm_level_shift(adev, cursor->level);
424
425         ++cursor->level;
426         idx = (cursor->pfn >> shift) & mask;
427         cursor->parent = cursor->entry;
428         cursor->entry = &cursor->entry->entries[idx];
429         return true;
430 }
431
432 /**
433  * amdgpu_vm_pt_sibling - go to sibling node
434  *
435  * @adev: amdgpu_device pointer
436  * @cursor: current state
437  *
438  * Walk to the sibling node of the current node.
439  * Returns:
440  * True if the walk was possible, false otherwise.
441  */
442 static bool amdgpu_vm_pt_sibling(struct amdgpu_device *adev,
443                                  struct amdgpu_vm_pt_cursor *cursor)
444 {
445         unsigned shift, num_entries;
446
447         /* Root doesn't have a sibling */
448         if (!cursor->parent)
449                 return false;
450
451         /* Go to our parents and see if we got a sibling */
452         shift = amdgpu_vm_level_shift(adev, cursor->level - 1);
453         num_entries = amdgpu_vm_num_entries(adev, cursor->level - 1);
454
455         if (cursor->entry == &cursor->parent->entries[num_entries - 1])
456                 return false;
457
458         cursor->pfn += 1ULL << shift;
459         cursor->pfn &= ~((1ULL << shift) - 1);
460         ++cursor->entry;
461         return true;
462 }
463
464 /**
465  * amdgpu_vm_pt_ancestor - go to parent node
466  *
467  * @cursor: current state
468  *
469  * Walk to the parent node of the current node.
470  * Returns:
471  * True if the walk was possible, false otherwise.
472  */
473 static bool amdgpu_vm_pt_ancestor(struct amdgpu_vm_pt_cursor *cursor)
474 {
475         if (!cursor->parent)
476                 return false;
477
478         --cursor->level;
479         cursor->entry = cursor->parent;
480         cursor->parent = amdgpu_vm_pt_parent(cursor->parent);
481         return true;
482 }
483
484 /**
485  * amdgpu_vm_pt_next - get next PD/PT in hieratchy
486  *
487  * @adev: amdgpu_device pointer
488  * @cursor: current state
489  *
490  * Walk the PD/PT tree to the next node.
491  */
492 static void amdgpu_vm_pt_next(struct amdgpu_device *adev,
493                               struct amdgpu_vm_pt_cursor *cursor)
494 {
495         /* First try a newborn child */
496         if (amdgpu_vm_pt_descendant(adev, cursor))
497                 return;
498
499         /* If that didn't worked try to find a sibling */
500         while (!amdgpu_vm_pt_sibling(adev, cursor)) {
501                 /* No sibling, go to our parents and grandparents */
502                 if (!amdgpu_vm_pt_ancestor(cursor)) {
503                         cursor->pfn = ~0ll;
504                         return;
505                 }
506         }
507 }
508
509 /**
510  * amdgpu_vm_pt_first_dfs - start a deep first search
511  *
512  * @adev: amdgpu_device structure
513  * @vm: amdgpu_vm structure
514  * @start: optional cursor to start with
515  * @cursor: state to initialize
516  *
517  * Starts a deep first traversal of the PD/PT tree.
518  */
519 static void amdgpu_vm_pt_first_dfs(struct amdgpu_device *adev,
520                                    struct amdgpu_vm *vm,
521                                    struct amdgpu_vm_pt_cursor *start,
522                                    struct amdgpu_vm_pt_cursor *cursor)
523 {
524         if (start)
525                 *cursor = *start;
526         else
527                 amdgpu_vm_pt_start(adev, vm, 0, cursor);
528         while (amdgpu_vm_pt_descendant(adev, cursor));
529 }
530
531 /**
532  * amdgpu_vm_pt_continue_dfs - check if the deep first search should continue
533  *
534  * @start: starting point for the search
535  * @entry: current entry
536  *
537  * Returns:
538  * True when the search should continue, false otherwise.
539  */
540 static bool amdgpu_vm_pt_continue_dfs(struct amdgpu_vm_pt_cursor *start,
541                                       struct amdgpu_vm_pt *entry)
542 {
543         return entry && (!start || entry != start->entry);
544 }
545
546 /**
547  * amdgpu_vm_pt_next_dfs - get the next node for a deep first search
548  *
549  * @adev: amdgpu_device structure
550  * @cursor: current state
551  *
552  * Move the cursor to the next node in a deep first search.
553  */
554 static void amdgpu_vm_pt_next_dfs(struct amdgpu_device *adev,
555                                   struct amdgpu_vm_pt_cursor *cursor)
556 {
557         if (!cursor->entry)
558                 return;
559
560         if (!cursor->parent)
561                 cursor->entry = NULL;
562         else if (amdgpu_vm_pt_sibling(adev, cursor))
563                 while (amdgpu_vm_pt_descendant(adev, cursor));
564         else
565                 amdgpu_vm_pt_ancestor(cursor);
566 }
567
568 /*
569  * for_each_amdgpu_vm_pt_dfs_safe - safe deep first search of all PDs/PTs
570  */
571 #define for_each_amdgpu_vm_pt_dfs_safe(adev, vm, start, cursor, entry)          \
572         for (amdgpu_vm_pt_first_dfs((adev), (vm), (start), &(cursor)),          \
573              (entry) = (cursor).entry, amdgpu_vm_pt_next_dfs((adev), &(cursor));\
574              amdgpu_vm_pt_continue_dfs((start), (entry));                       \
575              (entry) = (cursor).entry, amdgpu_vm_pt_next_dfs((adev), &(cursor)))
576
577 /**
578  * amdgpu_vm_get_pd_bo - add the VM PD to a validation list
579  *
580  * @vm: vm providing the BOs
581  * @validated: head of validation list
582  * @entry: entry to add
583  *
584  * Add the page directory to the list of BOs to
585  * validate for command submission.
586  */
587 void amdgpu_vm_get_pd_bo(struct amdgpu_vm *vm,
588                          struct list_head *validated,
589                          struct amdgpu_bo_list_entry *entry)
590 {
591         entry->priority = 0;
592         entry->tv.bo = &vm->root.base.bo->tbo;
593         /* Two for VM updates, one for TTM and one for the CS job */
594         entry->tv.num_shared = 4;
595         entry->user_pages = NULL;
596         list_add(&entry->tv.head, validated);
597 }
598
599 /**
600  * amdgpu_vm_del_from_lru_notify - update bulk_moveable flag
601  *
602  * @bo: BO which was removed from the LRU
603  *
604  * Make sure the bulk_moveable flag is updated when a BO is removed from the
605  * LRU.
606  */
607 void amdgpu_vm_del_from_lru_notify(struct ttm_buffer_object *bo)
608 {
609         struct amdgpu_bo *abo;
610         struct amdgpu_vm_bo_base *bo_base;
611
612         if (!amdgpu_bo_is_amdgpu_bo(bo))
613                 return;
614
615         if (bo->pin_count)
616                 return;
617
618         abo = ttm_to_amdgpu_bo(bo);
619         if (!abo->parent)
620                 return;
621         for (bo_base = abo->vm_bo; bo_base; bo_base = bo_base->next) {
622                 struct amdgpu_vm *vm = bo_base->vm;
623
624                 if (abo->tbo.base.resv == vm->root.base.bo->tbo.base.resv)
625                         vm->bulk_moveable = false;
626         }
627
628 }
629 /**
630  * amdgpu_vm_move_to_lru_tail - move all BOs to the end of LRU
631  *
632  * @adev: amdgpu device pointer
633  * @vm: vm providing the BOs
634  *
635  * Move all BOs to the end of LRU and remember their positions to put them
636  * together.
637  */
638 void amdgpu_vm_move_to_lru_tail(struct amdgpu_device *adev,
639                                 struct amdgpu_vm *vm)
640 {
641         struct amdgpu_vm_bo_base *bo_base;
642
643         if (vm->bulk_moveable) {
644                 spin_lock(&adev->mman.bdev.lru_lock);
645                 ttm_bo_bulk_move_lru_tail(&vm->lru_bulk_move);
646                 spin_unlock(&adev->mman.bdev.lru_lock);
647                 return;
648         }
649
650         memset(&vm->lru_bulk_move, 0, sizeof(vm->lru_bulk_move));
651
652         spin_lock(&adev->mman.bdev.lru_lock);
653         list_for_each_entry(bo_base, &vm->idle, vm_status) {
654                 struct amdgpu_bo *bo = bo_base->bo;
655
656                 if (!bo->parent)
657                         continue;
658
659                 ttm_bo_move_to_lru_tail(&bo->tbo, &bo->tbo.mem,
660                                         &vm->lru_bulk_move);
661                 if (bo->shadow)
662                         ttm_bo_move_to_lru_tail(&bo->shadow->tbo,
663                                                 &bo->shadow->tbo.mem,
664                                                 &vm->lru_bulk_move);
665         }
666         spin_unlock(&adev->mman.bdev.lru_lock);
667
668         vm->bulk_moveable = true;
669 }
670
671 /**
672  * amdgpu_vm_validate_pt_bos - validate the page table BOs
673  *
674  * @adev: amdgpu device pointer
675  * @vm: vm providing the BOs
676  * @validate: callback to do the validation
677  * @param: parameter for the validation callback
678  *
679  * Validate the page table BOs on command submission if neccessary.
680  *
681  * Returns:
682  * Validation result.
683  */
684 int amdgpu_vm_validate_pt_bos(struct amdgpu_device *adev, struct amdgpu_vm *vm,
685                               int (*validate)(void *p, struct amdgpu_bo *bo),
686                               void *param)
687 {
688         struct amdgpu_vm_bo_base *bo_base, *tmp;
689         int r;
690
691         vm->bulk_moveable &= list_empty(&vm->evicted);
692
693         list_for_each_entry_safe(bo_base, tmp, &vm->evicted, vm_status) {
694                 struct amdgpu_bo *bo = bo_base->bo;
695
696                 r = validate(param, bo);
697                 if (r)
698                         return r;
699
700                 if (bo->tbo.type != ttm_bo_type_kernel) {
701                         amdgpu_vm_bo_moved(bo_base);
702                 } else {
703                         vm->update_funcs->map_table(bo);
704                         amdgpu_vm_bo_relocated(bo_base);
705                 }
706         }
707
708         amdgpu_vm_eviction_lock(vm);
709         vm->evicting = false;
710         amdgpu_vm_eviction_unlock(vm);
711
712         return 0;
713 }
714
715 /**
716  * amdgpu_vm_ready - check VM is ready for updates
717  *
718  * @vm: VM to check
719  *
720  * Check if all VM PDs/PTs are ready for updates
721  *
722  * Returns:
723  * True if eviction list is empty.
724  */
725 bool amdgpu_vm_ready(struct amdgpu_vm *vm)
726 {
727         return list_empty(&vm->evicted);
728 }
729
730 /**
731  * amdgpu_vm_clear_bo - initially clear the PDs/PTs
732  *
733  * @adev: amdgpu_device pointer
734  * @vm: VM to clear BO from
735  * @bo: BO to clear
736  * @immediate: use an immediate update
737  *
738  * Root PD needs to be reserved when calling this.
739  *
740  * Returns:
741  * 0 on success, errno otherwise.
742  */
743 static int amdgpu_vm_clear_bo(struct amdgpu_device *adev,
744                               struct amdgpu_vm *vm,
745                               struct amdgpu_bo *bo,
746                               bool immediate)
747 {
748         struct ttm_operation_ctx ctx = { true, false };
749         unsigned level = adev->vm_manager.root_level;
750         struct amdgpu_vm_update_params params;
751         struct amdgpu_bo *ancestor = bo;
752         unsigned entries, ats_entries;
753         uint64_t addr;
754         int r;
755
756         /* Figure out our place in the hierarchy */
757         if (ancestor->parent) {
758                 ++level;
759                 while (ancestor->parent->parent) {
760                         ++level;
761                         ancestor = ancestor->parent;
762                 }
763         }
764
765         entries = amdgpu_bo_size(bo) / 8;
766         if (!vm->pte_support_ats) {
767                 ats_entries = 0;
768
769         } else if (!bo->parent) {
770                 ats_entries = amdgpu_vm_num_ats_entries(adev);
771                 ats_entries = min(ats_entries, entries);
772                 entries -= ats_entries;
773
774         } else {
775                 struct amdgpu_vm_pt *pt;
776
777                 pt = container_of(ancestor->vm_bo, struct amdgpu_vm_pt, base);
778                 ats_entries = amdgpu_vm_num_ats_entries(adev);
779                 if ((pt - vm->root.entries) >= ats_entries) {
780                         ats_entries = 0;
781                 } else {
782                         ats_entries = entries;
783                         entries = 0;
784                 }
785         }
786
787         r = ttm_bo_validate(&bo->tbo, &bo->placement, &ctx);
788         if (r)
789                 return r;
790
791         if (bo->shadow) {
792                 r = ttm_bo_validate(&bo->shadow->tbo, &bo->shadow->placement,
793                                     &ctx);
794                 if (r)
795                         return r;
796         }
797
798         r = vm->update_funcs->map_table(bo);
799         if (r)
800                 return r;
801
802         memset(&params, 0, sizeof(params));
803         params.adev = adev;
804         params.vm = vm;
805         params.immediate = immediate;
806
807         r = vm->update_funcs->prepare(&params, NULL, AMDGPU_SYNC_EXPLICIT);
808         if (r)
809                 return r;
810
811         addr = 0;
812         if (ats_entries) {
813                 uint64_t value = 0, flags;
814
815                 flags = AMDGPU_PTE_DEFAULT_ATC;
816                 if (level != AMDGPU_VM_PTB) {
817                         /* Handle leaf PDEs as PTEs */
818                         flags |= AMDGPU_PDE_PTE;
819                         amdgpu_gmc_get_vm_pde(adev, level, &value, &flags);
820                 }
821
822                 r = vm->update_funcs->update(&params, bo, addr, 0, ats_entries,
823                                              value, flags);
824                 if (r)
825                         return r;
826
827                 addr += ats_entries * 8;
828         }
829
830         if (entries) {
831                 uint64_t value = 0, flags = 0;
832
833                 if (adev->asic_type >= CHIP_VEGA10) {
834                         if (level != AMDGPU_VM_PTB) {
835                                 /* Handle leaf PDEs as PTEs */
836                                 flags |= AMDGPU_PDE_PTE;
837                                 amdgpu_gmc_get_vm_pde(adev, level,
838                                                       &value, &flags);
839                         } else {
840                                 /* Workaround for fault priority problem on GMC9 */
841                                 flags = AMDGPU_PTE_EXECUTABLE;
842                         }
843                 }
844
845                 r = vm->update_funcs->update(&params, bo, addr, 0, entries,
846                                              value, flags);
847                 if (r)
848                         return r;
849         }
850
851         return vm->update_funcs->commit(&params, NULL);
852 }
853
854 /**
855  * amdgpu_vm_pt_create - create bo for PD/PT
856  *
857  * @adev: amdgpu_device pointer
858  * @vm: requesting vm
859  * @level: the page table level
860  * @immediate: use a immediate update
861  * @bo: pointer to the buffer object pointer
862  */
863 static int amdgpu_vm_pt_create(struct amdgpu_device *adev,
864                                struct amdgpu_vm *vm,
865                                int level, bool immediate,
866                                struct amdgpu_bo **bo)
867 {
868         struct amdgpu_bo_param bp;
869         int r;
870
871         memset(&bp, 0, sizeof(bp));
872
873         bp.size = amdgpu_vm_bo_size(adev, level);
874         bp.byte_align = AMDGPU_GPU_PAGE_SIZE;
875         bp.domain = AMDGPU_GEM_DOMAIN_VRAM;
876         bp.domain = amdgpu_bo_get_preferred_pin_domain(adev, bp.domain);
877         bp.flags = AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS |
878                 AMDGPU_GEM_CREATE_CPU_GTT_USWC;
879         bp.bo_ptr_size = sizeof(struct amdgpu_bo);
880         if (vm->use_cpu_for_update)
881                 bp.flags |= AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED;
882
883         bp.type = ttm_bo_type_kernel;
884         bp.no_wait_gpu = immediate;
885         if (vm->root.base.bo)
886                 bp.resv = vm->root.base.bo->tbo.base.resv;
887
888         r = amdgpu_bo_create(adev, &bp, bo);
889         if (r)
890                 return r;
891
892         if (vm->is_compute_context && (adev->flags & AMD_IS_APU))
893                 return 0;
894
895         if (!bp.resv)
896                 WARN_ON(dma_resv_lock((*bo)->tbo.base.resv,
897                                       NULL));
898         r = amdgpu_bo_create_shadow(adev, bp.size, *bo);
899
900         if (!bp.resv)
901                 dma_resv_unlock((*bo)->tbo.base.resv);
902
903         if (r) {
904                 amdgpu_bo_unref(bo);
905                 return r;
906         }
907
908         return 0;
909 }
910
911 /**
912  * amdgpu_vm_alloc_pts - Allocate a specific page table
913  *
914  * @adev: amdgpu_device pointer
915  * @vm: VM to allocate page tables for
916  * @cursor: Which page table to allocate
917  * @immediate: use an immediate update
918  *
919  * Make sure a specific page table or directory is allocated.
920  *
921  * Returns:
922  * 1 if page table needed to be allocated, 0 if page table was already
923  * allocated, negative errno if an error occurred.
924  */
925 static int amdgpu_vm_alloc_pts(struct amdgpu_device *adev,
926                                struct amdgpu_vm *vm,
927                                struct amdgpu_vm_pt_cursor *cursor,
928                                bool immediate)
929 {
930         struct amdgpu_vm_pt *entry = cursor->entry;
931         struct amdgpu_bo *pt;
932         int r;
933
934         if (cursor->level < AMDGPU_VM_PTB && !entry->entries) {
935                 unsigned num_entries;
936
937                 num_entries = amdgpu_vm_num_entries(adev, cursor->level);
938                 entry->entries = kvmalloc_array(num_entries,
939                                                 sizeof(*entry->entries),
940                                                 GFP_KERNEL | __GFP_ZERO);
941                 if (!entry->entries)
942                         return -ENOMEM;
943         }
944
945         if (entry->base.bo)
946                 return 0;
947
948         r = amdgpu_vm_pt_create(adev, vm, cursor->level, immediate, &pt);
949         if (r)
950                 return r;
951
952         /* Keep a reference to the root directory to avoid
953          * freeing them up in the wrong order.
954          */
955         pt->parent = amdgpu_bo_ref(cursor->parent->base.bo);
956         amdgpu_vm_bo_base_init(&entry->base, vm, pt);
957
958         r = amdgpu_vm_clear_bo(adev, vm, pt, immediate);
959         if (r)
960                 goto error_free_pt;
961
962         return 0;
963
964 error_free_pt:
965         amdgpu_bo_unref(&pt->shadow);
966         amdgpu_bo_unref(&pt);
967         return r;
968 }
969
970 /**
971  * amdgpu_vm_free_table - fre one PD/PT
972  *
973  * @entry: PDE to free
974  */
975 static void amdgpu_vm_free_table(struct amdgpu_vm_pt *entry)
976 {
977         if (entry->base.bo) {
978                 entry->base.bo->vm_bo = NULL;
979                 list_del(&entry->base.vm_status);
980                 amdgpu_bo_unref(&entry->base.bo->shadow);
981                 amdgpu_bo_unref(&entry->base.bo);
982         }
983         kvfree(entry->entries);
984         entry->entries = NULL;
985 }
986
987 /**
988  * amdgpu_vm_free_pts - free PD/PT levels
989  *
990  * @adev: amdgpu device structure
991  * @vm: amdgpu vm structure
992  * @start: optional cursor where to start freeing PDs/PTs
993  *
994  * Free the page directory or page table level and all sub levels.
995  */
996 static void amdgpu_vm_free_pts(struct amdgpu_device *adev,
997                                struct amdgpu_vm *vm,
998                                struct amdgpu_vm_pt_cursor *start)
999 {
1000         struct amdgpu_vm_pt_cursor cursor;
1001         struct amdgpu_vm_pt *entry;
1002
1003         vm->bulk_moveable = false;
1004
1005         for_each_amdgpu_vm_pt_dfs_safe(adev, vm, start, cursor, entry)
1006                 amdgpu_vm_free_table(entry);
1007
1008         if (start)
1009                 amdgpu_vm_free_table(start->entry);
1010 }
1011
1012 /**
1013  * amdgpu_vm_check_compute_bug - check whether asic has compute vm bug
1014  *
1015  * @adev: amdgpu_device pointer
1016  */
1017 void amdgpu_vm_check_compute_bug(struct amdgpu_device *adev)
1018 {
1019         const struct amdgpu_ip_block *ip_block;
1020         bool has_compute_vm_bug;
1021         struct amdgpu_ring *ring;
1022         int i;
1023
1024         has_compute_vm_bug = false;
1025
1026         ip_block = amdgpu_device_ip_get_ip_block(adev, AMD_IP_BLOCK_TYPE_GFX);
1027         if (ip_block) {
1028                 /* Compute has a VM bug for GFX version < 7.
1029                    Compute has a VM bug for GFX 8 MEC firmware version < 673.*/
1030                 if (ip_block->version->major <= 7)
1031                         has_compute_vm_bug = true;
1032                 else if (ip_block->version->major == 8)
1033                         if (adev->gfx.mec_fw_version < 673)
1034                                 has_compute_vm_bug = true;
1035         }
1036
1037         for (i = 0; i < adev->num_rings; i++) {
1038                 ring = adev->rings[i];
1039                 if (ring->funcs->type == AMDGPU_RING_TYPE_COMPUTE)
1040                         /* only compute rings */
1041                         ring->has_compute_vm_bug = has_compute_vm_bug;
1042                 else
1043                         ring->has_compute_vm_bug = false;
1044         }
1045 }
1046
1047 /**
1048  * amdgpu_vm_need_pipeline_sync - Check if pipe sync is needed for job.
1049  *
1050  * @ring: ring on which the job will be submitted
1051  * @job: job to submit
1052  *
1053  * Returns:
1054  * True if sync is needed.
1055  */
1056 bool amdgpu_vm_need_pipeline_sync(struct amdgpu_ring *ring,
1057                                   struct amdgpu_job *job)
1058 {
1059         struct amdgpu_device *adev = ring->adev;
1060         unsigned vmhub = ring->funcs->vmhub;
1061         struct amdgpu_vmid_mgr *id_mgr = &adev->vm_manager.id_mgr[vmhub];
1062         struct amdgpu_vmid *id;
1063         bool gds_switch_needed;
1064         bool vm_flush_needed = job->vm_needs_flush || ring->has_compute_vm_bug;
1065
1066         if (job->vmid == 0)
1067                 return false;
1068         id = &id_mgr->ids[job->vmid];
1069         gds_switch_needed = ring->funcs->emit_gds_switch && (
1070                 id->gds_base != job->gds_base ||
1071                 id->gds_size != job->gds_size ||
1072                 id->gws_base != job->gws_base ||
1073                 id->gws_size != job->gws_size ||
1074                 id->oa_base != job->oa_base ||
1075                 id->oa_size != job->oa_size);
1076
1077         if (amdgpu_vmid_had_gpu_reset(adev, id))
1078                 return true;
1079
1080         return vm_flush_needed || gds_switch_needed;
1081 }
1082
1083 /**
1084  * amdgpu_vm_flush - hardware flush the vm
1085  *
1086  * @ring: ring to use for flush
1087  * @job:  related job
1088  * @need_pipe_sync: is pipe sync needed
1089  *
1090  * Emit a VM flush when it is necessary.
1091  *
1092  * Returns:
1093  * 0 on success, errno otherwise.
1094  */
1095 int amdgpu_vm_flush(struct amdgpu_ring *ring, struct amdgpu_job *job,
1096                     bool need_pipe_sync)
1097 {
1098         struct amdgpu_device *adev = ring->adev;
1099         unsigned vmhub = ring->funcs->vmhub;
1100         struct amdgpu_vmid_mgr *id_mgr = &adev->vm_manager.id_mgr[vmhub];
1101         struct amdgpu_vmid *id = &id_mgr->ids[job->vmid];
1102         bool gds_switch_needed = ring->funcs->emit_gds_switch && (
1103                 id->gds_base != job->gds_base ||
1104                 id->gds_size != job->gds_size ||
1105                 id->gws_base != job->gws_base ||
1106                 id->gws_size != job->gws_size ||
1107                 id->oa_base != job->oa_base ||
1108                 id->oa_size != job->oa_size);
1109         bool vm_flush_needed = job->vm_needs_flush;
1110         struct dma_fence *fence = NULL;
1111         bool pasid_mapping_needed = false;
1112         unsigned patch_offset = 0;
1113         bool update_spm_vmid_needed = (job->vm && (job->vm->reserved_vmid[vmhub] != NULL));
1114         int r;
1115
1116         if (update_spm_vmid_needed && adev->gfx.rlc.funcs->update_spm_vmid)
1117                 adev->gfx.rlc.funcs->update_spm_vmid(adev, job->vmid);
1118
1119         if (amdgpu_vmid_had_gpu_reset(adev, id)) {
1120                 gds_switch_needed = true;
1121                 vm_flush_needed = true;
1122                 pasid_mapping_needed = true;
1123         }
1124
1125         mutex_lock(&id_mgr->lock);
1126         if (id->pasid != job->pasid || !id->pasid_mapping ||
1127             !dma_fence_is_signaled(id->pasid_mapping))
1128                 pasid_mapping_needed = true;
1129         mutex_unlock(&id_mgr->lock);
1130
1131         gds_switch_needed &= !!ring->funcs->emit_gds_switch;
1132         vm_flush_needed &= !!ring->funcs->emit_vm_flush  &&
1133                         job->vm_pd_addr != AMDGPU_BO_INVALID_OFFSET;
1134         pasid_mapping_needed &= adev->gmc.gmc_funcs->emit_pasid_mapping &&
1135                 ring->funcs->emit_wreg;
1136
1137         if (!vm_flush_needed && !gds_switch_needed && !need_pipe_sync)
1138                 return 0;
1139
1140         if (ring->funcs->init_cond_exec)
1141                 patch_offset = amdgpu_ring_init_cond_exec(ring);
1142
1143         if (need_pipe_sync)
1144                 amdgpu_ring_emit_pipeline_sync(ring);
1145
1146         if (vm_flush_needed) {
1147                 trace_amdgpu_vm_flush(ring, job->vmid, job->vm_pd_addr);
1148                 amdgpu_ring_emit_vm_flush(ring, job->vmid, job->vm_pd_addr);
1149         }
1150
1151         if (pasid_mapping_needed)
1152                 amdgpu_gmc_emit_pasid_mapping(ring, job->vmid, job->pasid);
1153
1154         if (vm_flush_needed || pasid_mapping_needed) {
1155                 r = amdgpu_fence_emit(ring, &fence, 0);
1156                 if (r)
1157                         return r;
1158         }
1159
1160         if (vm_flush_needed) {
1161                 mutex_lock(&id_mgr->lock);
1162                 dma_fence_put(id->last_flush);
1163                 id->last_flush = dma_fence_get(fence);
1164                 id->current_gpu_reset_count =
1165                         atomic_read(&adev->gpu_reset_counter);
1166                 mutex_unlock(&id_mgr->lock);
1167         }
1168
1169         if (pasid_mapping_needed) {
1170                 mutex_lock(&id_mgr->lock);
1171                 id->pasid = job->pasid;
1172                 dma_fence_put(id->pasid_mapping);
1173                 id->pasid_mapping = dma_fence_get(fence);
1174                 mutex_unlock(&id_mgr->lock);
1175         }
1176         dma_fence_put(fence);
1177
1178         if (ring->funcs->emit_gds_switch && gds_switch_needed) {
1179                 id->gds_base = job->gds_base;
1180                 id->gds_size = job->gds_size;
1181                 id->gws_base = job->gws_base;
1182                 id->gws_size = job->gws_size;
1183                 id->oa_base = job->oa_base;
1184                 id->oa_size = job->oa_size;
1185                 amdgpu_ring_emit_gds_switch(ring, job->vmid, job->gds_base,
1186                                             job->gds_size, job->gws_base,
1187                                             job->gws_size, job->oa_base,
1188                                             job->oa_size);
1189         }
1190
1191         if (ring->funcs->patch_cond_exec)
1192                 amdgpu_ring_patch_cond_exec(ring, patch_offset);
1193
1194         /* the double SWITCH_BUFFER here *cannot* be skipped by COND_EXEC */
1195         if (ring->funcs->emit_switch_buffer) {
1196                 amdgpu_ring_emit_switch_buffer(ring);
1197                 amdgpu_ring_emit_switch_buffer(ring);
1198         }
1199         return 0;
1200 }
1201
1202 /**
1203  * amdgpu_vm_bo_find - find the bo_va for a specific vm & bo
1204  *
1205  * @vm: requested vm
1206  * @bo: requested buffer object
1207  *
1208  * Find @bo inside the requested vm.
1209  * Search inside the @bos vm list for the requested vm
1210  * Returns the found bo_va or NULL if none is found
1211  *
1212  * Object has to be reserved!
1213  *
1214  * Returns:
1215  * Found bo_va or NULL.
1216  */
1217 struct amdgpu_bo_va *amdgpu_vm_bo_find(struct amdgpu_vm *vm,
1218                                        struct amdgpu_bo *bo)
1219 {
1220         struct amdgpu_vm_bo_base *base;
1221
1222         for (base = bo->vm_bo; base; base = base->next) {
1223                 if (base->vm != vm)
1224                         continue;
1225
1226                 return container_of(base, struct amdgpu_bo_va, base);
1227         }
1228         return NULL;
1229 }
1230
1231 /**
1232  * amdgpu_vm_map_gart - Resolve gart mapping of addr
1233  *
1234  * @pages_addr: optional DMA address to use for lookup
1235  * @addr: the unmapped addr
1236  *
1237  * Look up the physical address of the page that the pte resolves
1238  * to.
1239  *
1240  * Returns:
1241  * The pointer for the page table entry.
1242  */
1243 uint64_t amdgpu_vm_map_gart(const dma_addr_t *pages_addr, uint64_t addr)
1244 {
1245         uint64_t result;
1246
1247         /* page table offset */
1248         result = pages_addr[addr >> PAGE_SHIFT];
1249
1250         /* in case cpu page size != gpu page size*/
1251         result |= addr & (~PAGE_MASK);
1252
1253         result &= 0xFFFFFFFFFFFFF000ULL;
1254
1255         return result;
1256 }
1257
1258 /**
1259  * amdgpu_vm_update_pde - update a single level in the hierarchy
1260  *
1261  * @params: parameters for the update
1262  * @vm: requested vm
1263  * @entry: entry to update
1264  *
1265  * Makes sure the requested entry in parent is up to date.
1266  */
1267 static int amdgpu_vm_update_pde(struct amdgpu_vm_update_params *params,
1268                                 struct amdgpu_vm *vm,
1269                                 struct amdgpu_vm_pt *entry)
1270 {
1271         struct amdgpu_vm_pt *parent = amdgpu_vm_pt_parent(entry);
1272         struct amdgpu_bo *bo = parent->base.bo, *pbo;
1273         uint64_t pde, pt, flags;
1274         unsigned level;
1275
1276         for (level = 0, pbo = bo->parent; pbo; ++level)
1277                 pbo = pbo->parent;
1278
1279         level += params->adev->vm_manager.root_level;
1280         amdgpu_gmc_get_pde_for_bo(entry->base.bo, level, &pt, &flags);
1281         pde = (entry - parent->entries) * 8;
1282         return vm->update_funcs->update(params, bo, pde, pt, 1, 0, flags);
1283 }
1284
1285 /**
1286  * amdgpu_vm_invalidate_pds - mark all PDs as invalid
1287  *
1288  * @adev: amdgpu_device pointer
1289  * @vm: related vm
1290  *
1291  * Mark all PD level as invalid after an error.
1292  */
1293 static void amdgpu_vm_invalidate_pds(struct amdgpu_device *adev,
1294                                      struct amdgpu_vm *vm)
1295 {
1296         struct amdgpu_vm_pt_cursor cursor;
1297         struct amdgpu_vm_pt *entry;
1298
1299         for_each_amdgpu_vm_pt_dfs_safe(adev, vm, NULL, cursor, entry)
1300                 if (entry->base.bo && !entry->base.moved)
1301                         amdgpu_vm_bo_relocated(&entry->base);
1302 }
1303
1304 /**
1305  * amdgpu_vm_update_pdes - make sure that all directories are valid
1306  *
1307  * @adev: amdgpu_device pointer
1308  * @vm: requested vm
1309  * @immediate: submit immediately to the paging queue
1310  *
1311  * Makes sure all directories are up to date.
1312  *
1313  * Returns:
1314  * 0 for success, error for failure.
1315  */
1316 int amdgpu_vm_update_pdes(struct amdgpu_device *adev,
1317                           struct amdgpu_vm *vm, bool immediate)
1318 {
1319         struct amdgpu_vm_update_params params;
1320         int r;
1321
1322         if (list_empty(&vm->relocated))
1323                 return 0;
1324
1325         memset(&params, 0, sizeof(params));
1326         params.adev = adev;
1327         params.vm = vm;
1328         params.immediate = immediate;
1329
1330         r = vm->update_funcs->prepare(&params, NULL, AMDGPU_SYNC_EXPLICIT);
1331         if (r)
1332                 return r;
1333
1334         while (!list_empty(&vm->relocated)) {
1335                 struct amdgpu_vm_pt *entry;
1336
1337                 entry = list_first_entry(&vm->relocated, struct amdgpu_vm_pt,
1338                                          base.vm_status);
1339                 amdgpu_vm_bo_idle(&entry->base);
1340
1341                 r = amdgpu_vm_update_pde(&params, vm, entry);
1342                 if (r)
1343                         goto error;
1344         }
1345
1346         r = vm->update_funcs->commit(&params, &vm->last_update);
1347         if (r)
1348                 goto error;
1349         return 0;
1350
1351 error:
1352         amdgpu_vm_invalidate_pds(adev, vm);
1353         return r;
1354 }
1355
1356 /*
1357  * amdgpu_vm_update_flags - figure out flags for PTE updates
1358  *
1359  * Make sure to set the right flags for the PTEs at the desired level.
1360  */
1361 static void amdgpu_vm_update_flags(struct amdgpu_vm_update_params *params,
1362                                    struct amdgpu_bo *bo, unsigned level,
1363                                    uint64_t pe, uint64_t addr,
1364                                    unsigned count, uint32_t incr,
1365                                    uint64_t flags)
1366
1367 {
1368         if (level != AMDGPU_VM_PTB) {
1369                 flags |= AMDGPU_PDE_PTE;
1370                 amdgpu_gmc_get_vm_pde(params->adev, level, &addr, &flags);
1371
1372         } else if (params->adev->asic_type >= CHIP_VEGA10 &&
1373                    !(flags & AMDGPU_PTE_VALID) &&
1374                    !(flags & AMDGPU_PTE_PRT)) {
1375
1376                 /* Workaround for fault priority problem on GMC9 */
1377                 flags |= AMDGPU_PTE_EXECUTABLE;
1378         }
1379
1380         params->vm->update_funcs->update(params, bo, pe, addr, count, incr,
1381                                          flags);
1382 }
1383
1384 /**
1385  * amdgpu_vm_fragment - get fragment for PTEs
1386  *
1387  * @params: see amdgpu_vm_update_params definition
1388  * @start: first PTE to handle
1389  * @end: last PTE to handle
1390  * @flags: hw mapping flags
1391  * @frag: resulting fragment size
1392  * @frag_end: end of this fragment
1393  *
1394  * Returns the first possible fragment for the start and end address.
1395  */
1396 static void amdgpu_vm_fragment(struct amdgpu_vm_update_params *params,
1397                                uint64_t start, uint64_t end, uint64_t flags,
1398                                unsigned int *frag, uint64_t *frag_end)
1399 {
1400         /**
1401          * The MC L1 TLB supports variable sized pages, based on a fragment
1402          * field in the PTE. When this field is set to a non-zero value, page
1403          * granularity is increased from 4KB to (1 << (12 + frag)). The PTE
1404          * flags are considered valid for all PTEs within the fragment range
1405          * and corresponding mappings are assumed to be physically contiguous.
1406          *
1407          * The L1 TLB can store a single PTE for the whole fragment,
1408          * significantly increasing the space available for translation
1409          * caching. This leads to large improvements in throughput when the
1410          * TLB is under pressure.
1411          *
1412          * The L2 TLB distributes small and large fragments into two
1413          * asymmetric partitions. The large fragment cache is significantly
1414          * larger. Thus, we try to use large fragments wherever possible.
1415          * Userspace can support this by aligning virtual base address and
1416          * allocation size to the fragment size.
1417          *
1418          * Starting with Vega10 the fragment size only controls the L1. The L2
1419          * is now directly feed with small/huge/giant pages from the walker.
1420          */
1421         unsigned max_frag;
1422
1423         if (params->adev->asic_type < CHIP_VEGA10)
1424                 max_frag = params->adev->vm_manager.fragment_size;
1425         else
1426                 max_frag = 31;
1427
1428         /* system pages are non continuously */
1429         if (params->pages_addr) {
1430                 *frag = 0;
1431                 *frag_end = end;
1432                 return;
1433         }
1434
1435         /* This intentionally wraps around if no bit is set */
1436         *frag = min((unsigned)ffs(start) - 1, (unsigned)fls64(end - start) - 1);
1437         if (*frag >= max_frag) {
1438                 *frag = max_frag;
1439                 *frag_end = end & ~((1ULL << max_frag) - 1);
1440         } else {
1441                 *frag_end = start + (1 << *frag);
1442         }
1443 }
1444
1445 /**
1446  * amdgpu_vm_update_ptes - make sure that page tables are valid
1447  *
1448  * @params: see amdgpu_vm_update_params definition
1449  * @start: start of GPU address range
1450  * @end: end of GPU address range
1451  * @dst: destination address to map to, the next dst inside the function
1452  * @flags: mapping flags
1453  *
1454  * Update the page tables in the range @start - @end.
1455  *
1456  * Returns:
1457  * 0 for success, -EINVAL for failure.
1458  */
1459 static int amdgpu_vm_update_ptes(struct amdgpu_vm_update_params *params,
1460                                  uint64_t start, uint64_t end,
1461                                  uint64_t dst, uint64_t flags)
1462 {
1463         struct amdgpu_device *adev = params->adev;
1464         struct amdgpu_vm_pt_cursor cursor;
1465         uint64_t frag_start = start, frag_end;
1466         unsigned int frag;
1467         int r;
1468
1469         /* figure out the initial fragment */
1470         amdgpu_vm_fragment(params, frag_start, end, flags, &frag, &frag_end);
1471
1472         /* walk over the address space and update the PTs */
1473         amdgpu_vm_pt_start(adev, params->vm, start, &cursor);
1474         while (cursor.pfn < end) {
1475                 unsigned shift, parent_shift, mask;
1476                 uint64_t incr, entry_end, pe_start;
1477                 struct amdgpu_bo *pt;
1478
1479                 if (!params->unlocked) {
1480                         /* make sure that the page tables covering the
1481                          * address range are actually allocated
1482                          */
1483                         r = amdgpu_vm_alloc_pts(params->adev, params->vm,
1484                                                 &cursor, params->immediate);
1485                         if (r)
1486                                 return r;
1487                 }
1488
1489                 shift = amdgpu_vm_level_shift(adev, cursor.level);
1490                 parent_shift = amdgpu_vm_level_shift(adev, cursor.level - 1);
1491                 if (params->unlocked) {
1492                         /* Unlocked updates are only allowed on the leaves */
1493                         if (amdgpu_vm_pt_descendant(adev, &cursor))
1494                                 continue;
1495                 } else if (adev->asic_type < CHIP_VEGA10 &&
1496                            (flags & AMDGPU_PTE_VALID)) {
1497                         /* No huge page support before GMC v9 */
1498                         if (cursor.level != AMDGPU_VM_PTB) {
1499                                 if (!amdgpu_vm_pt_descendant(adev, &cursor))
1500                                         return -ENOENT;
1501                                 continue;
1502                         }
1503                 } else if (frag < shift) {
1504                         /* We can't use this level when the fragment size is
1505                          * smaller than the address shift. Go to the next
1506                          * child entry and try again.
1507                          */
1508                         if (amdgpu_vm_pt_descendant(adev, &cursor))
1509                                 continue;
1510                 } else if (frag >= parent_shift) {
1511                         /* If the fragment size is even larger than the parent
1512                          * shift we should go up one level and check it again.
1513                          */
1514                         if (!amdgpu_vm_pt_ancestor(&cursor))
1515                                 return -EINVAL;
1516                         continue;
1517                 }
1518
1519                 pt = cursor.entry->base.bo;
1520                 if (!pt) {
1521                         /* We need all PDs and PTs for mapping something, */
1522                         if (flags & AMDGPU_PTE_VALID)
1523                                 return -ENOENT;
1524
1525                         /* but unmapping something can happen at a higher
1526                          * level.
1527                          */
1528                         if (!amdgpu_vm_pt_ancestor(&cursor))
1529                                 return -EINVAL;
1530
1531                         pt = cursor.entry->base.bo;
1532                         shift = parent_shift;
1533                         frag_end = max(frag_end, ALIGN(frag_start + 1,
1534                                    1ULL << shift));
1535                 }
1536
1537                 /* Looks good so far, calculate parameters for the update */
1538                 incr = (uint64_t)AMDGPU_GPU_PAGE_SIZE << shift;
1539                 mask = amdgpu_vm_entries_mask(adev, cursor.level);
1540                 pe_start = ((cursor.pfn >> shift) & mask) * 8;
1541                 entry_end = ((uint64_t)mask + 1) << shift;
1542                 entry_end += cursor.pfn & ~(entry_end - 1);
1543                 entry_end = min(entry_end, end);
1544
1545                 do {
1546                         struct amdgpu_vm *vm = params->vm;
1547                         uint64_t upd_end = min(entry_end, frag_end);
1548                         unsigned nptes = (upd_end - frag_start) >> shift;
1549                         uint64_t upd_flags = flags | AMDGPU_PTE_FRAG(frag);
1550
1551                         /* This can happen when we set higher level PDs to
1552                          * silent to stop fault floods.
1553                          */
1554                         nptes = max(nptes, 1u);
1555
1556                         trace_amdgpu_vm_update_ptes(params, frag_start, upd_end,
1557                                                     nptes, dst, incr, upd_flags,
1558                                                     vm->task_info.pid,
1559                                                     vm->immediate.fence_context);
1560                         amdgpu_vm_update_flags(params, pt, cursor.level,
1561                                                pe_start, dst, nptes, incr,
1562                                                upd_flags);
1563
1564                         pe_start += nptes * 8;
1565                         dst += nptes * incr;
1566
1567                         frag_start = upd_end;
1568                         if (frag_start >= frag_end) {
1569                                 /* figure out the next fragment */
1570                                 amdgpu_vm_fragment(params, frag_start, end,
1571                                                    flags, &frag, &frag_end);
1572                                 if (frag < shift)
1573                                         break;
1574                         }
1575                 } while (frag_start < entry_end);
1576
1577                 if (amdgpu_vm_pt_descendant(adev, &cursor)) {
1578                         /* Free all child entries.
1579                          * Update the tables with the flags and addresses and free up subsequent
1580                          * tables in the case of huge pages or freed up areas.
1581                          * This is the maximum you can free, because all other page tables are not
1582                          * completely covered by the range and so potentially still in use.
1583                          */
1584                         while (cursor.pfn < frag_start) {
1585                                 amdgpu_vm_free_pts(adev, params->vm, &cursor);
1586                                 amdgpu_vm_pt_next(adev, &cursor);
1587                                 params->table_freed = true;
1588                         }
1589
1590                 } else if (frag >= shift) {
1591                         /* or just move on to the next on the same level. */
1592                         amdgpu_vm_pt_next(adev, &cursor);
1593                 }
1594         }
1595
1596         return 0;
1597 }
1598
1599 /**
1600  * amdgpu_vm_bo_update_mapping - update a mapping in the vm page table
1601  *
1602  * @adev: amdgpu_device pointer of the VM
1603  * @bo_adev: amdgpu_device pointer of the mapped BO
1604  * @vm: requested vm
1605  * @immediate: immediate submission in a page fault
1606  * @unlocked: unlocked invalidation during MM callback
1607  * @resv: fences we need to sync to
1608  * @start: start of mapped range
1609  * @last: last mapped entry
1610  * @flags: flags for the entries
1611  * @offset: offset into nodes and pages_addr
1612  * @res: ttm_resource to map
1613  * @pages_addr: DMA addresses to use for mapping
1614  * @fence: optional resulting fence
1615  * @table_freed: return true if page table is freed
1616  *
1617  * Fill in the page table entries between @start and @last.
1618  *
1619  * Returns:
1620  * 0 for success, -EINVAL for failure.
1621  */
1622 int amdgpu_vm_bo_update_mapping(struct amdgpu_device *adev,
1623                                 struct amdgpu_device *bo_adev,
1624                                 struct amdgpu_vm *vm, bool immediate,
1625                                 bool unlocked, struct dma_resv *resv,
1626                                 uint64_t start, uint64_t last,
1627                                 uint64_t flags, uint64_t offset,
1628                                 struct ttm_resource *res,
1629                                 dma_addr_t *pages_addr,
1630                                 struct dma_fence **fence,
1631                                 bool *table_freed)
1632 {
1633         struct amdgpu_vm_update_params params;
1634         struct amdgpu_res_cursor cursor;
1635         enum amdgpu_sync_mode sync_mode;
1636         int r;
1637
1638         memset(&params, 0, sizeof(params));
1639         params.adev = adev;
1640         params.vm = vm;
1641         params.immediate = immediate;
1642         params.pages_addr = pages_addr;
1643         params.unlocked = unlocked;
1644
1645         /* Implicitly sync to command submissions in the same VM before
1646          * unmapping. Sync to moving fences before mapping.
1647          */
1648         if (!(flags & AMDGPU_PTE_VALID))
1649                 sync_mode = AMDGPU_SYNC_EQ_OWNER;
1650         else
1651                 sync_mode = AMDGPU_SYNC_EXPLICIT;
1652
1653         amdgpu_vm_eviction_lock(vm);
1654         if (vm->evicting) {
1655                 r = -EBUSY;
1656                 goto error_unlock;
1657         }
1658
1659         if (!unlocked && !dma_fence_is_signaled(vm->last_unlocked)) {
1660                 struct dma_fence *tmp = dma_fence_get_stub();
1661
1662                 amdgpu_bo_fence(vm->root.base.bo, vm->last_unlocked, true);
1663                 swap(vm->last_unlocked, tmp);
1664                 dma_fence_put(tmp);
1665         }
1666
1667         r = vm->update_funcs->prepare(&params, resv, sync_mode);
1668         if (r)
1669                 goto error_unlock;
1670
1671         amdgpu_res_first(res, offset, (last - start + 1) * AMDGPU_GPU_PAGE_SIZE,
1672                          &cursor);
1673         while (cursor.remaining) {
1674                 uint64_t tmp, num_entries, addr;
1675
1676                 num_entries = cursor.size >> AMDGPU_GPU_PAGE_SHIFT;
1677                 if (pages_addr) {
1678                         bool contiguous = true;
1679
1680                         if (num_entries > AMDGPU_GPU_PAGES_IN_CPU_PAGE) {
1681                                 uint64_t pfn = cursor.start >> PAGE_SHIFT;
1682                                 uint64_t count;
1683
1684                                 contiguous = pages_addr[pfn + 1] ==
1685                                         pages_addr[pfn] + PAGE_SIZE;
1686
1687                                 tmp = num_entries /
1688                                         AMDGPU_GPU_PAGES_IN_CPU_PAGE;
1689                                 for (count = 2; count < tmp; ++count) {
1690                                         uint64_t idx = pfn + count;
1691
1692                                         if (contiguous != (pages_addr[idx] ==
1693                                             pages_addr[idx - 1] + PAGE_SIZE))
1694                                                 break;
1695                                 }
1696                                 num_entries = count *
1697                                         AMDGPU_GPU_PAGES_IN_CPU_PAGE;
1698                         }
1699
1700                         if (!contiguous) {
1701                                 addr = cursor.start;
1702                                 params.pages_addr = pages_addr;
1703                         } else {
1704                                 addr = pages_addr[cursor.start >> PAGE_SHIFT];
1705                                 params.pages_addr = NULL;
1706                         }
1707
1708                 } else if (flags & (AMDGPU_PTE_VALID | AMDGPU_PTE_PRT)) {
1709                         addr = bo_adev->vm_manager.vram_base_offset +
1710                                 cursor.start;
1711                 } else {
1712                         addr = 0;
1713                 }
1714
1715                 tmp = start + num_entries;
1716                 r = amdgpu_vm_update_ptes(&params, start, tmp, addr, flags);
1717                 if (r)
1718                         goto error_unlock;
1719
1720                 amdgpu_res_next(&cursor, num_entries * AMDGPU_GPU_PAGE_SIZE);
1721                 start = tmp;
1722         };
1723
1724         r = vm->update_funcs->commit(&params, fence);
1725
1726         if (table_freed)
1727                 *table_freed = params.table_freed;
1728
1729 error_unlock:
1730         amdgpu_vm_eviction_unlock(vm);
1731         return r;
1732 }
1733
1734 void amdgpu_vm_get_memory(struct amdgpu_vm *vm, uint64_t *vram_mem,
1735                                 uint64_t *gtt_mem, uint64_t *cpu_mem)
1736 {
1737         struct amdgpu_bo_va *bo_va, *tmp;
1738
1739         list_for_each_entry_safe(bo_va, tmp, &vm->idle, base.vm_status) {
1740                 if (!bo_va->base.bo)
1741                         continue;
1742                 amdgpu_bo_get_memory(bo_va->base.bo, vram_mem,
1743                                 gtt_mem, cpu_mem);
1744         }
1745         list_for_each_entry_safe(bo_va, tmp, &vm->evicted, base.vm_status) {
1746                 if (!bo_va->base.bo)
1747                         continue;
1748                 amdgpu_bo_get_memory(bo_va->base.bo, vram_mem,
1749                                 gtt_mem, cpu_mem);
1750         }
1751         list_for_each_entry_safe(bo_va, tmp, &vm->relocated, base.vm_status) {
1752                 if (!bo_va->base.bo)
1753                         continue;
1754                 amdgpu_bo_get_memory(bo_va->base.bo, vram_mem,
1755                                 gtt_mem, cpu_mem);
1756         }
1757         list_for_each_entry_safe(bo_va, tmp, &vm->moved, base.vm_status) {
1758                 if (!bo_va->base.bo)
1759                         continue;
1760                 amdgpu_bo_get_memory(bo_va->base.bo, vram_mem,
1761                                 gtt_mem, cpu_mem);
1762         }
1763         spin_lock(&vm->invalidated_lock);
1764         list_for_each_entry_safe(bo_va, tmp, &vm->invalidated, base.vm_status) {
1765                 if (!bo_va->base.bo)
1766                         continue;
1767                 amdgpu_bo_get_memory(bo_va->base.bo, vram_mem,
1768                                 gtt_mem, cpu_mem);
1769         }
1770         list_for_each_entry_safe(bo_va, tmp, &vm->done, base.vm_status) {
1771                 if (!bo_va->base.bo)
1772                         continue;
1773                 amdgpu_bo_get_memory(bo_va->base.bo, vram_mem,
1774                                 gtt_mem, cpu_mem);
1775         }
1776         spin_unlock(&vm->invalidated_lock);
1777 }
1778 /**
1779  * amdgpu_vm_bo_update - update all BO mappings in the vm page table
1780  *
1781  * @adev: amdgpu_device pointer
1782  * @bo_va: requested BO and VM object
1783  * @clear: if true clear the entries
1784  *
1785  * Fill in the page table entries for @bo_va.
1786  *
1787  * Returns:
1788  * 0 for success, -EINVAL for failure.
1789  */
1790 int amdgpu_vm_bo_update(struct amdgpu_device *adev, struct amdgpu_bo_va *bo_va,
1791                         bool clear)
1792 {
1793         struct amdgpu_bo *bo = bo_va->base.bo;
1794         struct amdgpu_vm *vm = bo_va->base.vm;
1795         struct amdgpu_bo_va_mapping *mapping;
1796         dma_addr_t *pages_addr = NULL;
1797         struct ttm_resource *mem;
1798         struct dma_fence **last_update;
1799         struct dma_resv *resv;
1800         uint64_t flags;
1801         struct amdgpu_device *bo_adev = adev;
1802         int r;
1803
1804         if (clear || !bo) {
1805                 mem = NULL;
1806                 resv = vm->root.base.bo->tbo.base.resv;
1807         } else {
1808                 struct drm_gem_object *obj = &bo->tbo.base;
1809
1810                 resv = bo->tbo.base.resv;
1811                 if (obj->import_attach && bo_va->is_xgmi) {
1812                         struct dma_buf *dma_buf = obj->import_attach->dmabuf;
1813                         struct drm_gem_object *gobj = dma_buf->priv;
1814                         struct amdgpu_bo *abo = gem_to_amdgpu_bo(gobj);
1815
1816                         if (abo->tbo.mem.mem_type == TTM_PL_VRAM)
1817                                 bo = gem_to_amdgpu_bo(gobj);
1818                 }
1819                 mem = &bo->tbo.mem;
1820                 if (mem->mem_type == TTM_PL_TT)
1821                         pages_addr = bo->tbo.ttm->dma_address;
1822         }
1823
1824         if (bo) {
1825                 flags = amdgpu_ttm_tt_pte_flags(adev, bo->tbo.ttm, mem);
1826
1827                 if (amdgpu_bo_encrypted(bo))
1828                         flags |= AMDGPU_PTE_TMZ;
1829
1830                 bo_adev = amdgpu_ttm_adev(bo->tbo.bdev);
1831         } else {
1832                 flags = 0x0;
1833         }
1834
1835         if (clear || (bo && bo->tbo.base.resv ==
1836                       vm->root.base.bo->tbo.base.resv))
1837                 last_update = &vm->last_update;
1838         else
1839                 last_update = &bo_va->last_pt_update;
1840
1841         if (!clear && bo_va->base.moved) {
1842                 bo_va->base.moved = false;
1843                 list_splice_init(&bo_va->valids, &bo_va->invalids);
1844
1845         } else if (bo_va->cleared != clear) {
1846                 list_splice_init(&bo_va->valids, &bo_va->invalids);
1847         }
1848
1849         list_for_each_entry(mapping, &bo_va->invalids, list) {
1850                 uint64_t update_flags = flags;
1851
1852                 /* normally,bo_va->flags only contians READABLE and WIRTEABLE bit go here
1853                  * but in case of something, we filter the flags in first place
1854                  */
1855                 if (!(mapping->flags & AMDGPU_PTE_READABLE))
1856                         update_flags &= ~AMDGPU_PTE_READABLE;
1857                 if (!(mapping->flags & AMDGPU_PTE_WRITEABLE))
1858                         update_flags &= ~AMDGPU_PTE_WRITEABLE;
1859
1860                 /* Apply ASIC specific mapping flags */
1861                 amdgpu_gmc_get_vm_pte(adev, mapping, &update_flags);
1862
1863                 trace_amdgpu_vm_bo_update(mapping);
1864
1865                 r = amdgpu_vm_bo_update_mapping(adev, bo_adev, vm, false, false,
1866                                                 resv, mapping->start,
1867                                                 mapping->last, update_flags,
1868                                                 mapping->offset, mem,
1869                                                 pages_addr, last_update, NULL);
1870                 if (r)
1871                         return r;
1872         }
1873
1874         /* If the BO is not in its preferred location add it back to
1875          * the evicted list so that it gets validated again on the
1876          * next command submission.
1877          */
1878         if (bo && bo->tbo.base.resv == vm->root.base.bo->tbo.base.resv) {
1879                 uint32_t mem_type = bo->tbo.mem.mem_type;
1880
1881                 if (!(bo->preferred_domains &
1882                       amdgpu_mem_type_to_domain(mem_type)))
1883                         amdgpu_vm_bo_evicted(&bo_va->base);
1884                 else
1885                         amdgpu_vm_bo_idle(&bo_va->base);
1886         } else {
1887                 amdgpu_vm_bo_done(&bo_va->base);
1888         }
1889
1890         list_splice_init(&bo_va->invalids, &bo_va->valids);
1891         bo_va->cleared = clear;
1892
1893         if (trace_amdgpu_vm_bo_mapping_enabled()) {
1894                 list_for_each_entry(mapping, &bo_va->valids, list)
1895                         trace_amdgpu_vm_bo_mapping(mapping);
1896         }
1897
1898         return 0;
1899 }
1900
1901 /**
1902  * amdgpu_vm_update_prt_state - update the global PRT state
1903  *
1904  * @adev: amdgpu_device pointer
1905  */
1906 static void amdgpu_vm_update_prt_state(struct amdgpu_device *adev)
1907 {
1908         unsigned long flags;
1909         bool enable;
1910
1911         spin_lock_irqsave(&adev->vm_manager.prt_lock, flags);
1912         enable = !!atomic_read(&adev->vm_manager.num_prt_users);
1913         adev->gmc.gmc_funcs->set_prt(adev, enable);
1914         spin_unlock_irqrestore(&adev->vm_manager.prt_lock, flags);
1915 }
1916
1917 /**
1918  * amdgpu_vm_prt_get - add a PRT user
1919  *
1920  * @adev: amdgpu_device pointer
1921  */
1922 static void amdgpu_vm_prt_get(struct amdgpu_device *adev)
1923 {
1924         if (!adev->gmc.gmc_funcs->set_prt)
1925                 return;
1926
1927         if (atomic_inc_return(&adev->vm_manager.num_prt_users) == 1)
1928                 amdgpu_vm_update_prt_state(adev);
1929 }
1930
1931 /**
1932  * amdgpu_vm_prt_put - drop a PRT user
1933  *
1934  * @adev: amdgpu_device pointer
1935  */
1936 static void amdgpu_vm_prt_put(struct amdgpu_device *adev)
1937 {
1938         if (atomic_dec_return(&adev->vm_manager.num_prt_users) == 0)
1939                 amdgpu_vm_update_prt_state(adev);
1940 }
1941
1942 /**
1943  * amdgpu_vm_prt_cb - callback for updating the PRT status
1944  *
1945  * @fence: fence for the callback
1946  * @_cb: the callback function
1947  */
1948 static void amdgpu_vm_prt_cb(struct dma_fence *fence, struct dma_fence_cb *_cb)
1949 {
1950         struct amdgpu_prt_cb *cb = container_of(_cb, struct amdgpu_prt_cb, cb);
1951
1952         amdgpu_vm_prt_put(cb->adev);
1953         kfree(cb);
1954 }
1955
1956 /**
1957  * amdgpu_vm_add_prt_cb - add callback for updating the PRT status
1958  *
1959  * @adev: amdgpu_device pointer
1960  * @fence: fence for the callback
1961  */
1962 static void amdgpu_vm_add_prt_cb(struct amdgpu_device *adev,
1963                                  struct dma_fence *fence)
1964 {
1965         struct amdgpu_prt_cb *cb;
1966
1967         if (!adev->gmc.gmc_funcs->set_prt)
1968                 return;
1969
1970         cb = kmalloc(sizeof(struct amdgpu_prt_cb), GFP_KERNEL);
1971         if (!cb) {
1972                 /* Last resort when we are OOM */
1973                 if (fence)
1974                         dma_fence_wait(fence, false);
1975
1976                 amdgpu_vm_prt_put(adev);
1977         } else {
1978                 cb->adev = adev;
1979                 if (!fence || dma_fence_add_callback(fence, &cb->cb,
1980                                                      amdgpu_vm_prt_cb))
1981                         amdgpu_vm_prt_cb(fence, &cb->cb);
1982         }
1983 }
1984
1985 /**
1986  * amdgpu_vm_free_mapping - free a mapping
1987  *
1988  * @adev: amdgpu_device pointer
1989  * @vm: requested vm
1990  * @mapping: mapping to be freed
1991  * @fence: fence of the unmap operation
1992  *
1993  * Free a mapping and make sure we decrease the PRT usage count if applicable.
1994  */
1995 static void amdgpu_vm_free_mapping(struct amdgpu_device *adev,
1996                                    struct amdgpu_vm *vm,
1997                                    struct amdgpu_bo_va_mapping *mapping,
1998                                    struct dma_fence *fence)
1999 {
2000         if (mapping->flags & AMDGPU_PTE_PRT)
2001                 amdgpu_vm_add_prt_cb(adev, fence);
2002         kfree(mapping);
2003 }
2004
2005 /**
2006  * amdgpu_vm_prt_fini - finish all prt mappings
2007  *
2008  * @adev: amdgpu_device pointer
2009  * @vm: requested vm
2010  *
2011  * Register a cleanup callback to disable PRT support after VM dies.
2012  */
2013 static void amdgpu_vm_prt_fini(struct amdgpu_device *adev, struct amdgpu_vm *vm)
2014 {
2015         struct dma_resv *resv = vm->root.base.bo->tbo.base.resv;
2016         struct dma_fence *excl, **shared;
2017         unsigned i, shared_count;
2018         int r;
2019
2020         r = dma_resv_get_fences_rcu(resv, &excl,
2021                                               &shared_count, &shared);
2022         if (r) {
2023                 /* Not enough memory to grab the fence list, as last resort
2024                  * block for all the fences to complete.
2025                  */
2026                 dma_resv_wait_timeout_rcu(resv, true, false,
2027                                                     MAX_SCHEDULE_TIMEOUT);
2028                 return;
2029         }
2030
2031         /* Add a callback for each fence in the reservation object */
2032         amdgpu_vm_prt_get(adev);
2033         amdgpu_vm_add_prt_cb(adev, excl);
2034
2035         for (i = 0; i < shared_count; ++i) {
2036                 amdgpu_vm_prt_get(adev);
2037                 amdgpu_vm_add_prt_cb(adev, shared[i]);
2038         }
2039
2040         kfree(shared);
2041 }
2042
2043 /**
2044  * amdgpu_vm_clear_freed - clear freed BOs in the PT
2045  *
2046  * @adev: amdgpu_device pointer
2047  * @vm: requested vm
2048  * @fence: optional resulting fence (unchanged if no work needed to be done
2049  * or if an error occurred)
2050  *
2051  * Make sure all freed BOs are cleared in the PT.
2052  * PTs have to be reserved and mutex must be locked!
2053  *
2054  * Returns:
2055  * 0 for success.
2056  *
2057  */
2058 int amdgpu_vm_clear_freed(struct amdgpu_device *adev,
2059                           struct amdgpu_vm *vm,
2060                           struct dma_fence **fence)
2061 {
2062         struct dma_resv *resv = vm->root.base.bo->tbo.base.resv;
2063         struct amdgpu_bo_va_mapping *mapping;
2064         uint64_t init_pte_value = 0;
2065         struct dma_fence *f = NULL;
2066         int r;
2067
2068         while (!list_empty(&vm->freed)) {
2069                 mapping = list_first_entry(&vm->freed,
2070                         struct amdgpu_bo_va_mapping, list);
2071                 list_del(&mapping->list);
2072
2073                 if (vm->pte_support_ats &&
2074                     mapping->start < AMDGPU_GMC_HOLE_START)
2075                         init_pte_value = AMDGPU_PTE_DEFAULT_ATC;
2076
2077                 r = amdgpu_vm_bo_update_mapping(adev, adev, vm, false, false,
2078                                                 resv, mapping->start,
2079                                                 mapping->last, init_pte_value,
2080                                                 0, NULL, NULL, &f, NULL);
2081                 amdgpu_vm_free_mapping(adev, vm, mapping, f);
2082                 if (r) {
2083                         dma_fence_put(f);
2084                         return r;
2085                 }
2086         }
2087
2088         if (fence && f) {
2089                 dma_fence_put(*fence);
2090                 *fence = f;
2091         } else {
2092                 dma_fence_put(f);
2093         }
2094
2095         return 0;
2096
2097 }
2098
2099 /**
2100  * amdgpu_vm_handle_moved - handle moved BOs in the PT
2101  *
2102  * @adev: amdgpu_device pointer
2103  * @vm: requested vm
2104  *
2105  * Make sure all BOs which are moved are updated in the PTs.
2106  *
2107  * Returns:
2108  * 0 for success.
2109  *
2110  * PTs have to be reserved!
2111  */
2112 int amdgpu_vm_handle_moved(struct amdgpu_device *adev,
2113                            struct amdgpu_vm *vm)
2114 {
2115         struct amdgpu_bo_va *bo_va, *tmp;
2116         struct dma_resv *resv;
2117         bool clear;
2118         int r;
2119
2120         list_for_each_entry_safe(bo_va, tmp, &vm->moved, base.vm_status) {
2121                 /* Per VM BOs never need to bo cleared in the page tables */
2122                 r = amdgpu_vm_bo_update(adev, bo_va, false);
2123                 if (r)
2124                         return r;
2125         }
2126
2127         spin_lock(&vm->invalidated_lock);
2128         while (!list_empty(&vm->invalidated)) {
2129                 bo_va = list_first_entry(&vm->invalidated, struct amdgpu_bo_va,
2130                                          base.vm_status);
2131                 resv = bo_va->base.bo->tbo.base.resv;
2132                 spin_unlock(&vm->invalidated_lock);
2133
2134                 /* Try to reserve the BO to avoid clearing its ptes */
2135                 if (!amdgpu_vm_debug && dma_resv_trylock(resv))
2136                         clear = false;
2137                 /* Somebody else is using the BO right now */
2138                 else
2139                         clear = true;
2140
2141                 r = amdgpu_vm_bo_update(adev, bo_va, clear);
2142                 if (r)
2143                         return r;
2144
2145                 if (!clear)
2146                         dma_resv_unlock(resv);
2147                 spin_lock(&vm->invalidated_lock);
2148         }
2149         spin_unlock(&vm->invalidated_lock);
2150
2151         return 0;
2152 }
2153
2154 /**
2155  * amdgpu_vm_bo_add - add a bo to a specific vm
2156  *
2157  * @adev: amdgpu_device pointer
2158  * @vm: requested vm
2159  * @bo: amdgpu buffer object
2160  *
2161  * Add @bo into the requested vm.
2162  * Add @bo to the list of bos associated with the vm
2163  *
2164  * Returns:
2165  * Newly added bo_va or NULL for failure
2166  *
2167  * Object has to be reserved!
2168  */
2169 struct amdgpu_bo_va *amdgpu_vm_bo_add(struct amdgpu_device *adev,
2170                                       struct amdgpu_vm *vm,
2171                                       struct amdgpu_bo *bo)
2172 {
2173         struct amdgpu_bo_va *bo_va;
2174
2175         bo_va = kzalloc(sizeof(struct amdgpu_bo_va), GFP_KERNEL);
2176         if (bo_va == NULL) {
2177                 return NULL;
2178         }
2179         amdgpu_vm_bo_base_init(&bo_va->base, vm, bo);
2180
2181         bo_va->ref_count = 1;
2182         INIT_LIST_HEAD(&bo_va->valids);
2183         INIT_LIST_HEAD(&bo_va->invalids);
2184
2185         if (!bo)
2186                 return bo_va;
2187
2188         if (amdgpu_dmabuf_is_xgmi_accessible(adev, bo)) {
2189                 bo_va->is_xgmi = true;
2190                 /* Power up XGMI if it can be potentially used */
2191                 amdgpu_xgmi_set_pstate(adev, AMDGPU_XGMI_PSTATE_MAX_VEGA20);
2192         }
2193
2194         return bo_va;
2195 }
2196
2197
2198 /**
2199  * amdgpu_vm_bo_insert_map - insert a new mapping
2200  *
2201  * @adev: amdgpu_device pointer
2202  * @bo_va: bo_va to store the address
2203  * @mapping: the mapping to insert
2204  *
2205  * Insert a new mapping into all structures.
2206  */
2207 static void amdgpu_vm_bo_insert_map(struct amdgpu_device *adev,
2208                                     struct amdgpu_bo_va *bo_va,
2209                                     struct amdgpu_bo_va_mapping *mapping)
2210 {
2211         struct amdgpu_vm *vm = bo_va->base.vm;
2212         struct amdgpu_bo *bo = bo_va->base.bo;
2213
2214         mapping->bo_va = bo_va;
2215         list_add(&mapping->list, &bo_va->invalids);
2216         amdgpu_vm_it_insert(mapping, &vm->va);
2217
2218         if (mapping->flags & AMDGPU_PTE_PRT)
2219                 amdgpu_vm_prt_get(adev);
2220
2221         if (bo && bo->tbo.base.resv == vm->root.base.bo->tbo.base.resv &&
2222             !bo_va->base.moved) {
2223                 list_move(&bo_va->base.vm_status, &vm->moved);
2224         }
2225         trace_amdgpu_vm_bo_map(bo_va, mapping);
2226 }
2227
2228 /**
2229  * amdgpu_vm_bo_map - map bo inside a vm
2230  *
2231  * @adev: amdgpu_device pointer
2232  * @bo_va: bo_va to store the address
2233  * @saddr: where to map the BO
2234  * @offset: requested offset in the BO
2235  * @size: BO size in bytes
2236  * @flags: attributes of pages (read/write/valid/etc.)
2237  *
2238  * Add a mapping of the BO at the specefied addr into the VM.
2239  *
2240  * Returns:
2241  * 0 for success, error for failure.
2242  *
2243  * Object has to be reserved and unreserved outside!
2244  */
2245 int amdgpu_vm_bo_map(struct amdgpu_device *adev,
2246                      struct amdgpu_bo_va *bo_va,
2247                      uint64_t saddr, uint64_t offset,
2248                      uint64_t size, uint64_t flags)
2249 {
2250         struct amdgpu_bo_va_mapping *mapping, *tmp;
2251         struct amdgpu_bo *bo = bo_va->base.bo;
2252         struct amdgpu_vm *vm = bo_va->base.vm;
2253         uint64_t eaddr;
2254
2255         /* validate the parameters */
2256         if (saddr & ~PAGE_MASK || offset & ~PAGE_MASK ||
2257             size == 0 || size & ~PAGE_MASK)
2258                 return -EINVAL;
2259
2260         /* make sure object fit at this offset */
2261         eaddr = saddr + size - 1;
2262         if (saddr >= eaddr ||
2263             (bo && offset + size > amdgpu_bo_size(bo)) ||
2264             (eaddr >= adev->vm_manager.max_pfn << AMDGPU_GPU_PAGE_SHIFT))
2265                 return -EINVAL;
2266
2267         saddr /= AMDGPU_GPU_PAGE_SIZE;
2268         eaddr /= AMDGPU_GPU_PAGE_SIZE;
2269
2270         tmp = amdgpu_vm_it_iter_first(&vm->va, saddr, eaddr);
2271         if (tmp) {
2272                 /* bo and tmp overlap, invalid addr */
2273                 dev_err(adev->dev, "bo %p va 0x%010Lx-0x%010Lx conflict with "
2274                         "0x%010Lx-0x%010Lx\n", bo, saddr, eaddr,
2275                         tmp->start, tmp->last + 1);
2276                 return -EINVAL;
2277         }
2278
2279         mapping = kmalloc(sizeof(*mapping), GFP_KERNEL);
2280         if (!mapping)
2281                 return -ENOMEM;
2282
2283         mapping->start = saddr;
2284         mapping->last = eaddr;
2285         mapping->offset = offset;
2286         mapping->flags = flags;
2287
2288         amdgpu_vm_bo_insert_map(adev, bo_va, mapping);
2289
2290         return 0;
2291 }
2292
2293 /**
2294  * amdgpu_vm_bo_replace_map - map bo inside a vm, replacing existing mappings
2295  *
2296  * @adev: amdgpu_device pointer
2297  * @bo_va: bo_va to store the address
2298  * @saddr: where to map the BO
2299  * @offset: requested offset in the BO
2300  * @size: BO size in bytes
2301  * @flags: attributes of pages (read/write/valid/etc.)
2302  *
2303  * Add a mapping of the BO at the specefied addr into the VM. Replace existing
2304  * mappings as we do so.
2305  *
2306  * Returns:
2307  * 0 for success, error for failure.
2308  *
2309  * Object has to be reserved and unreserved outside!
2310  */
2311 int amdgpu_vm_bo_replace_map(struct amdgpu_device *adev,
2312                              struct amdgpu_bo_va *bo_va,
2313                              uint64_t saddr, uint64_t offset,
2314                              uint64_t size, uint64_t flags)
2315 {
2316         struct amdgpu_bo_va_mapping *mapping;
2317         struct amdgpu_bo *bo = bo_va->base.bo;
2318         uint64_t eaddr;
2319         int r;
2320
2321         /* validate the parameters */
2322         if (saddr & ~PAGE_MASK || offset & ~PAGE_MASK ||
2323             size == 0 || size & ~PAGE_MASK)
2324                 return -EINVAL;
2325
2326         /* make sure object fit at this offset */
2327         eaddr = saddr + size - 1;
2328         if (saddr >= eaddr ||
2329             (bo && offset + size > amdgpu_bo_size(bo)) ||
2330             (eaddr >= adev->vm_manager.max_pfn << AMDGPU_GPU_PAGE_SHIFT))
2331                 return -EINVAL;
2332
2333         /* Allocate all the needed memory */
2334         mapping = kmalloc(sizeof(*mapping), GFP_KERNEL);
2335         if (!mapping)
2336                 return -ENOMEM;
2337
2338         r = amdgpu_vm_bo_clear_mappings(adev, bo_va->base.vm, saddr, size);
2339         if (r) {
2340                 kfree(mapping);
2341                 return r;
2342         }
2343
2344         saddr /= AMDGPU_GPU_PAGE_SIZE;
2345         eaddr /= AMDGPU_GPU_PAGE_SIZE;
2346
2347         mapping->start = saddr;
2348         mapping->last = eaddr;
2349         mapping->offset = offset;
2350         mapping->flags = flags;
2351
2352         amdgpu_vm_bo_insert_map(adev, bo_va, mapping);
2353
2354         return 0;
2355 }
2356
2357 /**
2358  * amdgpu_vm_bo_unmap - remove bo mapping from vm
2359  *
2360  * @adev: amdgpu_device pointer
2361  * @bo_va: bo_va to remove the address from
2362  * @saddr: where to the BO is mapped
2363  *
2364  * Remove a mapping of the BO at the specefied addr from the VM.
2365  *
2366  * Returns:
2367  * 0 for success, error for failure.
2368  *
2369  * Object has to be reserved and unreserved outside!
2370  */
2371 int amdgpu_vm_bo_unmap(struct amdgpu_device *adev,
2372                        struct amdgpu_bo_va *bo_va,
2373                        uint64_t saddr)
2374 {
2375         struct amdgpu_bo_va_mapping *mapping;
2376         struct amdgpu_vm *vm = bo_va->base.vm;
2377         bool valid = true;
2378
2379         saddr /= AMDGPU_GPU_PAGE_SIZE;
2380
2381         list_for_each_entry(mapping, &bo_va->valids, list) {
2382                 if (mapping->start == saddr)
2383                         break;
2384         }
2385
2386         if (&mapping->list == &bo_va->valids) {
2387                 valid = false;
2388
2389                 list_for_each_entry(mapping, &bo_va->invalids, list) {
2390                         if (mapping->start == saddr)
2391                                 break;
2392                 }
2393
2394                 if (&mapping->list == &bo_va->invalids)
2395                         return -ENOENT;
2396         }
2397
2398         list_del(&mapping->list);
2399         amdgpu_vm_it_remove(mapping, &vm->va);
2400         mapping->bo_va = NULL;
2401         trace_amdgpu_vm_bo_unmap(bo_va, mapping);
2402
2403         if (valid)
2404                 list_add(&mapping->list, &vm->freed);
2405         else
2406                 amdgpu_vm_free_mapping(adev, vm, mapping,
2407                                        bo_va->last_pt_update);
2408
2409         return 0;
2410 }
2411
2412 /**
2413  * amdgpu_vm_bo_clear_mappings - remove all mappings in a specific range
2414  *
2415  * @adev: amdgpu_device pointer
2416  * @vm: VM structure to use
2417  * @saddr: start of the range
2418  * @size: size of the range
2419  *
2420  * Remove all mappings in a range, split them as appropriate.
2421  *
2422  * Returns:
2423  * 0 for success, error for failure.
2424  */
2425 int amdgpu_vm_bo_clear_mappings(struct amdgpu_device *adev,
2426                                 struct amdgpu_vm *vm,
2427                                 uint64_t saddr, uint64_t size)
2428 {
2429         struct amdgpu_bo_va_mapping *before, *after, *tmp, *next;
2430         LIST_HEAD(removed);
2431         uint64_t eaddr;
2432
2433         eaddr = saddr + size - 1;
2434         saddr /= AMDGPU_GPU_PAGE_SIZE;
2435         eaddr /= AMDGPU_GPU_PAGE_SIZE;
2436
2437         /* Allocate all the needed memory */
2438         before = kzalloc(sizeof(*before), GFP_KERNEL);
2439         if (!before)
2440                 return -ENOMEM;
2441         INIT_LIST_HEAD(&before->list);
2442
2443         after = kzalloc(sizeof(*after), GFP_KERNEL);
2444         if (!after) {
2445                 kfree(before);
2446                 return -ENOMEM;
2447         }
2448         INIT_LIST_HEAD(&after->list);
2449
2450         /* Now gather all removed mappings */
2451         tmp = amdgpu_vm_it_iter_first(&vm->va, saddr, eaddr);
2452         while (tmp) {
2453                 /* Remember mapping split at the start */
2454                 if (tmp->start < saddr) {
2455                         before->start = tmp->start;
2456                         before->last = saddr - 1;
2457                         before->offset = tmp->offset;
2458                         before->flags = tmp->flags;
2459                         before->bo_va = tmp->bo_va;
2460                         list_add(&before->list, &tmp->bo_va->invalids);
2461                 }
2462
2463                 /* Remember mapping split at the end */
2464                 if (tmp->last > eaddr) {
2465                         after->start = eaddr + 1;
2466                         after->last = tmp->last;
2467                         after->offset = tmp->offset;
2468                         after->offset += (after->start - tmp->start) << PAGE_SHIFT;
2469                         after->flags = tmp->flags;
2470                         after->bo_va = tmp->bo_va;
2471                         list_add(&after->list, &tmp->bo_va->invalids);
2472                 }
2473
2474                 list_del(&tmp->list);
2475                 list_add(&tmp->list, &removed);
2476
2477                 tmp = amdgpu_vm_it_iter_next(tmp, saddr, eaddr);
2478         }
2479
2480         /* And free them up */
2481         list_for_each_entry_safe(tmp, next, &removed, list) {
2482                 amdgpu_vm_it_remove(tmp, &vm->va);
2483                 list_del(&tmp->list);
2484
2485                 if (tmp->start < saddr)
2486                     tmp->start = saddr;
2487                 if (tmp->last > eaddr)
2488                     tmp->last = eaddr;
2489
2490                 tmp->bo_va = NULL;
2491                 list_add(&tmp->list, &vm->freed);
2492                 trace_amdgpu_vm_bo_unmap(NULL, tmp);
2493         }
2494
2495         /* Insert partial mapping before the range */
2496         if (!list_empty(&before->list)) {
2497                 amdgpu_vm_it_insert(before, &vm->va);
2498                 if (before->flags & AMDGPU_PTE_PRT)
2499                         amdgpu_vm_prt_get(adev);
2500         } else {
2501                 kfree(before);
2502         }
2503
2504         /* Insert partial mapping after the range */
2505         if (!list_empty(&after->list)) {
2506                 amdgpu_vm_it_insert(after, &vm->va);
2507                 if (after->flags & AMDGPU_PTE_PRT)
2508                         amdgpu_vm_prt_get(adev);
2509         } else {
2510                 kfree(after);
2511         }
2512
2513         return 0;
2514 }
2515
2516 /**
2517  * amdgpu_vm_bo_lookup_mapping - find mapping by address
2518  *
2519  * @vm: the requested VM
2520  * @addr: the address
2521  *
2522  * Find a mapping by it's address.
2523  *
2524  * Returns:
2525  * The amdgpu_bo_va_mapping matching for addr or NULL
2526  *
2527  */
2528 struct amdgpu_bo_va_mapping *amdgpu_vm_bo_lookup_mapping(struct amdgpu_vm *vm,
2529                                                          uint64_t addr)
2530 {
2531         return amdgpu_vm_it_iter_first(&vm->va, addr, addr);
2532 }
2533
2534 /**
2535  * amdgpu_vm_bo_trace_cs - trace all reserved mappings
2536  *
2537  * @vm: the requested vm
2538  * @ticket: CS ticket
2539  *
2540  * Trace all mappings of BOs reserved during a command submission.
2541  */
2542 void amdgpu_vm_bo_trace_cs(struct amdgpu_vm *vm, struct ww_acquire_ctx *ticket)
2543 {
2544         struct amdgpu_bo_va_mapping *mapping;
2545
2546         if (!trace_amdgpu_vm_bo_cs_enabled())
2547                 return;
2548
2549         for (mapping = amdgpu_vm_it_iter_first(&vm->va, 0, U64_MAX); mapping;
2550              mapping = amdgpu_vm_it_iter_next(mapping, 0, U64_MAX)) {
2551                 if (mapping->bo_va && mapping->bo_va->base.bo) {
2552                         struct amdgpu_bo *bo;
2553
2554                         bo = mapping->bo_va->base.bo;
2555                         if (dma_resv_locking_ctx(bo->tbo.base.resv) !=
2556                             ticket)
2557                                 continue;
2558                 }
2559
2560                 trace_amdgpu_vm_bo_cs(mapping);
2561         }
2562 }
2563
2564 /**
2565  * amdgpu_vm_bo_rmv - remove a bo to a specific vm
2566  *
2567  * @adev: amdgpu_device pointer
2568  * @bo_va: requested bo_va
2569  *
2570  * Remove @bo_va->bo from the requested vm.
2571  *
2572  * Object have to be reserved!
2573  */
2574 void amdgpu_vm_bo_rmv(struct amdgpu_device *adev,
2575                       struct amdgpu_bo_va *bo_va)
2576 {
2577         struct amdgpu_bo_va_mapping *mapping, *next;
2578         struct amdgpu_bo *bo = bo_va->base.bo;
2579         struct amdgpu_vm *vm = bo_va->base.vm;
2580         struct amdgpu_vm_bo_base **base;
2581
2582         if (bo) {
2583                 if (bo->tbo.base.resv == vm->root.base.bo->tbo.base.resv)
2584                         vm->bulk_moveable = false;
2585
2586                 for (base = &bo_va->base.bo->vm_bo; *base;
2587                      base = &(*base)->next) {
2588                         if (*base != &bo_va->base)
2589                                 continue;
2590
2591                         *base = bo_va->base.next;
2592                         break;
2593                 }
2594         }
2595
2596         spin_lock(&vm->invalidated_lock);
2597         list_del(&bo_va->base.vm_status);
2598         spin_unlock(&vm->invalidated_lock);
2599
2600         list_for_each_entry_safe(mapping, next, &bo_va->valids, list) {
2601                 list_del(&mapping->list);
2602                 amdgpu_vm_it_remove(mapping, &vm->va);
2603                 mapping->bo_va = NULL;
2604                 trace_amdgpu_vm_bo_unmap(bo_va, mapping);
2605                 list_add(&mapping->list, &vm->freed);
2606         }
2607         list_for_each_entry_safe(mapping, next, &bo_va->invalids, list) {
2608                 list_del(&mapping->list);
2609                 amdgpu_vm_it_remove(mapping, &vm->va);
2610                 amdgpu_vm_free_mapping(adev, vm, mapping,
2611                                        bo_va->last_pt_update);
2612         }
2613
2614         dma_fence_put(bo_va->last_pt_update);
2615
2616         if (bo && bo_va->is_xgmi)
2617                 amdgpu_xgmi_set_pstate(adev, AMDGPU_XGMI_PSTATE_MIN);
2618
2619         kfree(bo_va);
2620 }
2621
2622 /**
2623  * amdgpu_vm_evictable - check if we can evict a VM
2624  *
2625  * @bo: A page table of the VM.
2626  *
2627  * Check if it is possible to evict a VM.
2628  */
2629 bool amdgpu_vm_evictable(struct amdgpu_bo *bo)
2630 {
2631         struct amdgpu_vm_bo_base *bo_base = bo->vm_bo;
2632
2633         /* Page tables of a destroyed VM can go away immediately */
2634         if (!bo_base || !bo_base->vm)
2635                 return true;
2636
2637         /* Don't evict VM page tables while they are busy */
2638         if (!dma_resv_test_signaled_rcu(bo->tbo.base.resv, true))
2639                 return false;
2640
2641         /* Try to block ongoing updates */
2642         if (!amdgpu_vm_eviction_trylock(bo_base->vm))
2643                 return false;
2644
2645         /* Don't evict VM page tables while they are updated */
2646         if (!dma_fence_is_signaled(bo_base->vm->last_unlocked)) {
2647                 amdgpu_vm_eviction_unlock(bo_base->vm);
2648                 return false;
2649         }
2650
2651         bo_base->vm->evicting = true;
2652         amdgpu_vm_eviction_unlock(bo_base->vm);
2653         return true;
2654 }
2655
2656 /**
2657  * amdgpu_vm_bo_invalidate - mark the bo as invalid
2658  *
2659  * @adev: amdgpu_device pointer
2660  * @bo: amdgpu buffer object
2661  * @evicted: is the BO evicted
2662  *
2663  * Mark @bo as invalid.
2664  */
2665 void amdgpu_vm_bo_invalidate(struct amdgpu_device *adev,
2666                              struct amdgpu_bo *bo, bool evicted)
2667 {
2668         struct amdgpu_vm_bo_base *bo_base;
2669
2670         /* shadow bo doesn't have bo base, its validation needs its parent */
2671         if (bo->parent && bo->parent->shadow == bo)
2672                 bo = bo->parent;
2673
2674         for (bo_base = bo->vm_bo; bo_base; bo_base = bo_base->next) {
2675                 struct amdgpu_vm *vm = bo_base->vm;
2676
2677                 if (evicted && bo->tbo.base.resv == vm->root.base.bo->tbo.base.resv) {
2678                         amdgpu_vm_bo_evicted(bo_base);
2679                         continue;
2680                 }
2681
2682                 if (bo_base->moved)
2683                         continue;
2684                 bo_base->moved = true;
2685
2686                 if (bo->tbo.type == ttm_bo_type_kernel)
2687                         amdgpu_vm_bo_relocated(bo_base);
2688                 else if (bo->tbo.base.resv == vm->root.base.bo->tbo.base.resv)
2689                         amdgpu_vm_bo_moved(bo_base);
2690                 else
2691                         amdgpu_vm_bo_invalidated(bo_base);
2692         }
2693 }
2694
2695 /**
2696  * amdgpu_vm_get_block_size - calculate VM page table size as power of two
2697  *
2698  * @vm_size: VM size
2699  *
2700  * Returns:
2701  * VM page table as power of two
2702  */
2703 static uint32_t amdgpu_vm_get_block_size(uint64_t vm_size)
2704 {
2705         /* Total bits covered by PD + PTs */
2706         unsigned bits = ilog2(vm_size) + 18;
2707
2708         /* Make sure the PD is 4K in size up to 8GB address space.
2709            Above that split equal between PD and PTs */
2710         if (vm_size <= 8)
2711                 return (bits - 9);
2712         else
2713                 return ((bits + 3) / 2);
2714 }
2715
2716 /**
2717  * amdgpu_vm_adjust_size - adjust vm size, block size and fragment size
2718  *
2719  * @adev: amdgpu_device pointer
2720  * @min_vm_size: the minimum vm size in GB if it's set auto
2721  * @fragment_size_default: Default PTE fragment size
2722  * @max_level: max VMPT level
2723  * @max_bits: max address space size in bits
2724  *
2725  */
2726 void amdgpu_vm_adjust_size(struct amdgpu_device *adev, uint32_t min_vm_size,
2727                            uint32_t fragment_size_default, unsigned max_level,
2728                            unsigned max_bits)
2729 {
2730         unsigned int max_size = 1 << (max_bits - 30);
2731         unsigned int vm_size;
2732         uint64_t tmp;
2733
2734         /* adjust vm size first */
2735         if (amdgpu_vm_size != -1) {
2736                 vm_size = amdgpu_vm_size;
2737                 if (vm_size > max_size) {
2738                         dev_warn(adev->dev, "VM size (%d) too large, max is %u GB\n",
2739                                  amdgpu_vm_size, max_size);
2740                         vm_size = max_size;
2741                 }
2742         } else {
2743                 struct sysinfo si;
2744                 unsigned int phys_ram_gb;
2745
2746                 /* Optimal VM size depends on the amount of physical
2747                  * RAM available. Underlying requirements and
2748                  * assumptions:
2749                  *
2750                  *  - Need to map system memory and VRAM from all GPUs
2751                  *     - VRAM from other GPUs not known here
2752                  *     - Assume VRAM <= system memory
2753                  *  - On GFX8 and older, VM space can be segmented for
2754                  *    different MTYPEs
2755                  *  - Need to allow room for fragmentation, guard pages etc.
2756                  *
2757                  * This adds up to a rough guess of system memory x3.
2758                  * Round up to power of two to maximize the available
2759                  * VM size with the given page table size.
2760                  */
2761                 si_meminfo(&si);
2762                 phys_ram_gb = ((uint64_t)si.totalram * si.mem_unit +
2763                                (1 << 30) - 1) >> 30;
2764                 vm_size = roundup_pow_of_two(
2765                         min(max(phys_ram_gb * 3, min_vm_size), max_size));
2766         }
2767
2768         adev->vm_manager.max_pfn = (uint64_t)vm_size << 18;
2769
2770         tmp = roundup_pow_of_two(adev->vm_manager.max_pfn);
2771         if (amdgpu_vm_block_size != -1)
2772                 tmp >>= amdgpu_vm_block_size - 9;
2773         tmp = DIV_ROUND_UP(fls64(tmp) - 1, 9) - 1;
2774         adev->vm_manager.num_level = min(max_level, (unsigned)tmp);
2775         switch (adev->vm_manager.num_level) {
2776         case 3:
2777                 adev->vm_manager.root_level = AMDGPU_VM_PDB2;
2778                 break;
2779         case 2:
2780                 adev->vm_manager.root_level = AMDGPU_VM_PDB1;
2781                 break;
2782         case 1:
2783                 adev->vm_manager.root_level = AMDGPU_VM_PDB0;
2784                 break;
2785         default:
2786                 dev_err(adev->dev, "VMPT only supports 2~4+1 levels\n");
2787         }
2788         /* block size depends on vm size and hw setup*/
2789         if (amdgpu_vm_block_size != -1)
2790                 adev->vm_manager.block_size =
2791                         min((unsigned)amdgpu_vm_block_size, max_bits
2792                             - AMDGPU_GPU_PAGE_SHIFT
2793                             - 9 * adev->vm_manager.num_level);
2794         else if (adev->vm_manager.num_level > 1)
2795                 adev->vm_manager.block_size = 9;
2796         else
2797                 adev->vm_manager.block_size = amdgpu_vm_get_block_size(tmp);
2798
2799         if (amdgpu_vm_fragment_size == -1)
2800                 adev->vm_manager.fragment_size = fragment_size_default;
2801         else
2802                 adev->vm_manager.fragment_size = amdgpu_vm_fragment_size;
2803
2804         DRM_INFO("vm size is %u GB, %u levels, block size is %u-bit, fragment size is %u-bit\n",
2805                  vm_size, adev->vm_manager.num_level + 1,
2806                  adev->vm_manager.block_size,
2807                  adev->vm_manager.fragment_size);
2808 }
2809
2810 /**
2811  * amdgpu_vm_wait_idle - wait for the VM to become idle
2812  *
2813  * @vm: VM object to wait for
2814  * @timeout: timeout to wait for VM to become idle
2815  */
2816 long amdgpu_vm_wait_idle(struct amdgpu_vm *vm, long timeout)
2817 {
2818         timeout = dma_resv_wait_timeout_rcu(vm->root.base.bo->tbo.base.resv,
2819                                             true, true, timeout);
2820         if (timeout <= 0)
2821                 return timeout;
2822
2823         return dma_fence_wait_timeout(vm->last_unlocked, true, timeout);
2824 }
2825
2826 /**
2827  * amdgpu_vm_init - initialize a vm instance
2828  *
2829  * @adev: amdgpu_device pointer
2830  * @vm: requested vm
2831  * @pasid: Process address space identifier
2832  *
2833  * Init @vm fields.
2834  *
2835  * Returns:
2836  * 0 for success, error for failure.
2837  */
2838 int amdgpu_vm_init(struct amdgpu_device *adev, struct amdgpu_vm *vm, u32 pasid)
2839 {
2840         struct amdgpu_bo *root;
2841         int r, i;
2842
2843         vm->va = RB_ROOT_CACHED;
2844         for (i = 0; i < AMDGPU_MAX_VMHUBS; i++)
2845                 vm->reserved_vmid[i] = NULL;
2846         INIT_LIST_HEAD(&vm->evicted);
2847         INIT_LIST_HEAD(&vm->relocated);
2848         INIT_LIST_HEAD(&vm->moved);
2849         INIT_LIST_HEAD(&vm->idle);
2850         INIT_LIST_HEAD(&vm->invalidated);
2851         spin_lock_init(&vm->invalidated_lock);
2852         INIT_LIST_HEAD(&vm->freed);
2853         INIT_LIST_HEAD(&vm->done);
2854
2855         /* create scheduler entities for page table updates */
2856         r = drm_sched_entity_init(&vm->immediate, DRM_SCHED_PRIORITY_NORMAL,
2857                                   adev->vm_manager.vm_pte_scheds,
2858                                   adev->vm_manager.vm_pte_num_scheds, NULL);
2859         if (r)
2860                 return r;
2861
2862         r = drm_sched_entity_init(&vm->delayed, DRM_SCHED_PRIORITY_NORMAL,
2863                                   adev->vm_manager.vm_pte_scheds,
2864                                   adev->vm_manager.vm_pte_num_scheds, NULL);
2865         if (r)
2866                 goto error_free_immediate;
2867
2868         vm->pte_support_ats = false;
2869         vm->is_compute_context = false;
2870
2871         vm->use_cpu_for_update = !!(adev->vm_manager.vm_update_mode &
2872                                     AMDGPU_VM_USE_CPU_FOR_GFX);
2873
2874         DRM_DEBUG_DRIVER("VM update mode is %s\n",
2875                          vm->use_cpu_for_update ? "CPU" : "SDMA");
2876         WARN_ONCE((vm->use_cpu_for_update &&
2877                    !amdgpu_gmc_vram_full_visible(&adev->gmc)),
2878                   "CPU update of VM recommended only for large BAR system\n");
2879
2880         if (vm->use_cpu_for_update)
2881                 vm->update_funcs = &amdgpu_vm_cpu_funcs;
2882         else
2883                 vm->update_funcs = &amdgpu_vm_sdma_funcs;
2884         vm->last_update = NULL;
2885         vm->last_unlocked = dma_fence_get_stub();
2886
2887         mutex_init(&vm->eviction_lock);
2888         vm->evicting = false;
2889
2890         r = amdgpu_vm_pt_create(adev, vm, adev->vm_manager.root_level,
2891                                 false, &root);
2892         if (r)
2893                 goto error_free_delayed;
2894
2895         r = amdgpu_bo_reserve(root, true);
2896         if (r)
2897                 goto error_free_root;
2898
2899         r = dma_resv_reserve_shared(root->tbo.base.resv, 1);
2900         if (r)
2901                 goto error_unreserve;
2902
2903         amdgpu_vm_bo_base_init(&vm->root.base, vm, root);
2904
2905         r = amdgpu_vm_clear_bo(adev, vm, root, false);
2906         if (r)
2907                 goto error_unreserve;
2908
2909         amdgpu_bo_unreserve(vm->root.base.bo);
2910
2911         if (pasid) {
2912                 unsigned long flags;
2913
2914                 spin_lock_irqsave(&adev->vm_manager.pasid_lock, flags);
2915                 r = idr_alloc(&adev->vm_manager.pasid_idr, vm, pasid, pasid + 1,
2916                               GFP_ATOMIC);
2917                 spin_unlock_irqrestore(&adev->vm_manager.pasid_lock, flags);
2918                 if (r < 0)
2919                         goto error_free_root;
2920
2921                 vm->pasid = pasid;
2922         }
2923
2924         INIT_KFIFO(vm->faults);
2925
2926         return 0;
2927
2928 error_unreserve:
2929         amdgpu_bo_unreserve(vm->root.base.bo);
2930
2931 error_free_root:
2932         amdgpu_bo_unref(&vm->root.base.bo->shadow);
2933         amdgpu_bo_unref(&vm->root.base.bo);
2934         vm->root.base.bo = NULL;
2935
2936 error_free_delayed:
2937         dma_fence_put(vm->last_unlocked);
2938         drm_sched_entity_destroy(&vm->delayed);
2939
2940 error_free_immediate:
2941         drm_sched_entity_destroy(&vm->immediate);
2942
2943         return r;
2944 }
2945
2946 /**
2947  * amdgpu_vm_check_clean_reserved - check if a VM is clean
2948  *
2949  * @adev: amdgpu_device pointer
2950  * @vm: the VM to check
2951  *
2952  * check all entries of the root PD, if any subsequent PDs are allocated,
2953  * it means there are page table creating and filling, and is no a clean
2954  * VM
2955  *
2956  * Returns:
2957  *      0 if this VM is clean
2958  */
2959 static int amdgpu_vm_check_clean_reserved(struct amdgpu_device *adev,
2960         struct amdgpu_vm *vm)
2961 {
2962         enum amdgpu_vm_level root = adev->vm_manager.root_level;
2963         unsigned int entries = amdgpu_vm_num_entries(adev, root);
2964         unsigned int i = 0;
2965
2966         if (!(vm->root.entries))
2967                 return 0;
2968
2969         for (i = 0; i < entries; i++) {
2970                 if (vm->root.entries[i].base.bo)
2971                         return -EINVAL;
2972         }
2973
2974         return 0;
2975 }
2976
2977 /**
2978  * amdgpu_vm_make_compute - Turn a GFX VM into a compute VM
2979  *
2980  * @adev: amdgpu_device pointer
2981  * @vm: requested vm
2982  * @pasid: pasid to use
2983  *
2984  * This only works on GFX VMs that don't have any BOs added and no
2985  * page tables allocated yet.
2986  *
2987  * Changes the following VM parameters:
2988  * - use_cpu_for_update
2989  * - pte_supports_ats
2990  * - pasid (old PASID is released, because compute manages its own PASIDs)
2991  *
2992  * Reinitializes the page directory to reflect the changed ATS
2993  * setting.
2994  *
2995  * Returns:
2996  * 0 for success, -errno for errors.
2997  */
2998 int amdgpu_vm_make_compute(struct amdgpu_device *adev, struct amdgpu_vm *vm,
2999                            u32 pasid)
3000 {
3001         bool pte_support_ats = (adev->asic_type == CHIP_RAVEN);
3002         int r;
3003
3004         r = amdgpu_bo_reserve(vm->root.base.bo, true);
3005         if (r)
3006                 return r;
3007
3008         /* Sanity checks */
3009         r = amdgpu_vm_check_clean_reserved(adev, vm);
3010         if (r)
3011                 goto unreserve_bo;
3012
3013         if (pasid) {
3014                 unsigned long flags;
3015
3016                 spin_lock_irqsave(&adev->vm_manager.pasid_lock, flags);
3017                 r = idr_alloc(&adev->vm_manager.pasid_idr, vm, pasid, pasid + 1,
3018                               GFP_ATOMIC);
3019                 spin_unlock_irqrestore(&adev->vm_manager.pasid_lock, flags);
3020
3021                 if (r == -ENOSPC)
3022                         goto unreserve_bo;
3023                 r = 0;
3024         }
3025
3026         /* Check if PD needs to be reinitialized and do it before
3027          * changing any other state, in case it fails.
3028          */
3029         if (pte_support_ats != vm->pte_support_ats) {
3030                 vm->pte_support_ats = pte_support_ats;
3031                 r = amdgpu_vm_clear_bo(adev, vm, vm->root.base.bo, false);
3032                 if (r)
3033                         goto free_idr;
3034         }
3035
3036         /* Update VM state */
3037         vm->use_cpu_for_update = !!(adev->vm_manager.vm_update_mode &
3038                                     AMDGPU_VM_USE_CPU_FOR_COMPUTE);
3039         DRM_DEBUG_DRIVER("VM update mode is %s\n",
3040                          vm->use_cpu_for_update ? "CPU" : "SDMA");
3041         WARN_ONCE((vm->use_cpu_for_update &&
3042                    !amdgpu_gmc_vram_full_visible(&adev->gmc)),
3043                   "CPU update of VM recommended only for large BAR system\n");
3044
3045         if (vm->use_cpu_for_update) {
3046                 /* Sync with last SDMA update/clear before switching to CPU */
3047                 r = amdgpu_bo_sync_wait(vm->root.base.bo,
3048                                         AMDGPU_FENCE_OWNER_UNDEFINED, true);
3049                 if (r)
3050                         goto free_idr;
3051
3052                 vm->update_funcs = &amdgpu_vm_cpu_funcs;
3053         } else {
3054                 vm->update_funcs = &amdgpu_vm_sdma_funcs;
3055         }
3056         dma_fence_put(vm->last_update);
3057         vm->last_update = NULL;
3058         vm->is_compute_context = true;
3059
3060         if (vm->pasid) {
3061                 unsigned long flags;
3062
3063                 spin_lock_irqsave(&adev->vm_manager.pasid_lock, flags);
3064                 idr_remove(&adev->vm_manager.pasid_idr, vm->pasid);
3065                 spin_unlock_irqrestore(&adev->vm_manager.pasid_lock, flags);
3066
3067                 /* Free the original amdgpu allocated pasid
3068                  * Will be replaced with kfd allocated pasid
3069                  */
3070                 amdgpu_pasid_free(vm->pasid);
3071                 vm->pasid = 0;
3072         }
3073
3074         /* Free the shadow bo for compute VM */
3075         amdgpu_bo_unref(&vm->root.base.bo->shadow);
3076
3077         if (pasid)
3078                 vm->pasid = pasid;
3079
3080         goto unreserve_bo;
3081
3082 free_idr:
3083         if (pasid) {
3084                 unsigned long flags;
3085
3086                 spin_lock_irqsave(&adev->vm_manager.pasid_lock, flags);
3087                 idr_remove(&adev->vm_manager.pasid_idr, pasid);
3088                 spin_unlock_irqrestore(&adev->vm_manager.pasid_lock, flags);
3089         }
3090 unreserve_bo:
3091         amdgpu_bo_unreserve(vm->root.base.bo);
3092         return r;
3093 }
3094
3095 /**
3096  * amdgpu_vm_release_compute - release a compute vm
3097  * @adev: amdgpu_device pointer
3098  * @vm: a vm turned into compute vm by calling amdgpu_vm_make_compute
3099  *
3100  * This is a correspondant of amdgpu_vm_make_compute. It decouples compute
3101  * pasid from vm. Compute should stop use of vm after this call.
3102  */
3103 void amdgpu_vm_release_compute(struct amdgpu_device *adev, struct amdgpu_vm *vm)
3104 {
3105         if (vm->pasid) {
3106                 unsigned long flags;
3107
3108                 spin_lock_irqsave(&adev->vm_manager.pasid_lock, flags);
3109                 idr_remove(&adev->vm_manager.pasid_idr, vm->pasid);
3110                 spin_unlock_irqrestore(&adev->vm_manager.pasid_lock, flags);
3111         }
3112         vm->pasid = 0;
3113         vm->is_compute_context = false;
3114 }
3115
3116 /**
3117  * amdgpu_vm_fini - tear down a vm instance
3118  *
3119  * @adev: amdgpu_device pointer
3120  * @vm: requested vm
3121  *
3122  * Tear down @vm.
3123  * Unbind the VM and remove all bos from the vm bo list
3124  */
3125 void amdgpu_vm_fini(struct amdgpu_device *adev, struct amdgpu_vm *vm)
3126 {
3127         struct amdgpu_bo_va_mapping *mapping, *tmp;
3128         bool prt_fini_needed = !!adev->gmc.gmc_funcs->set_prt;
3129         struct amdgpu_bo *root;
3130         int i;
3131
3132         amdgpu_amdkfd_gpuvm_destroy_cb(adev, vm);
3133
3134         root = amdgpu_bo_ref(vm->root.base.bo);
3135         amdgpu_bo_reserve(root, true);
3136         if (vm->pasid) {
3137                 unsigned long flags;
3138
3139                 spin_lock_irqsave(&adev->vm_manager.pasid_lock, flags);
3140                 idr_remove(&adev->vm_manager.pasid_idr, vm->pasid);
3141                 spin_unlock_irqrestore(&adev->vm_manager.pasid_lock, flags);
3142                 vm->pasid = 0;
3143         }
3144
3145         dma_fence_wait(vm->last_unlocked, false);
3146         dma_fence_put(vm->last_unlocked);
3147
3148         list_for_each_entry_safe(mapping, tmp, &vm->freed, list) {
3149                 if (mapping->flags & AMDGPU_PTE_PRT && prt_fini_needed) {
3150                         amdgpu_vm_prt_fini(adev, vm);
3151                         prt_fini_needed = false;
3152                 }
3153
3154                 list_del(&mapping->list);
3155                 amdgpu_vm_free_mapping(adev, vm, mapping, NULL);
3156         }
3157
3158         amdgpu_vm_free_pts(adev, vm, NULL);
3159         amdgpu_bo_unreserve(root);
3160         amdgpu_bo_unref(&root);
3161         WARN_ON(vm->root.base.bo);
3162
3163         drm_sched_entity_destroy(&vm->immediate);
3164         drm_sched_entity_destroy(&vm->delayed);
3165
3166         if (!RB_EMPTY_ROOT(&vm->va.rb_root)) {
3167                 dev_err(adev->dev, "still active bo inside vm\n");
3168         }
3169         rbtree_postorder_for_each_entry_safe(mapping, tmp,
3170                                              &vm->va.rb_root, rb) {
3171                 /* Don't remove the mapping here, we don't want to trigger a
3172                  * rebalance and the tree is about to be destroyed anyway.
3173                  */
3174                 list_del(&mapping->list);
3175                 kfree(mapping);
3176         }
3177
3178         dma_fence_put(vm->last_update);
3179         for (i = 0; i < AMDGPU_MAX_VMHUBS; i++)
3180                 amdgpu_vmid_free_reserved(adev, vm, i);
3181 }
3182
3183 /**
3184  * amdgpu_vm_manager_init - init the VM manager
3185  *
3186  * @adev: amdgpu_device pointer
3187  *
3188  * Initialize the VM manager structures
3189  */
3190 void amdgpu_vm_manager_init(struct amdgpu_device *adev)
3191 {
3192         unsigned i;
3193
3194         /* Concurrent flushes are only possible starting with Vega10 and
3195          * are broken on Navi10 and Navi14.
3196          */
3197         adev->vm_manager.concurrent_flush = !(adev->asic_type < CHIP_VEGA10 ||
3198                                               adev->asic_type == CHIP_NAVI10 ||
3199                                               adev->asic_type == CHIP_NAVI14);
3200         amdgpu_vmid_mgr_init(adev);
3201
3202         adev->vm_manager.fence_context =
3203                 dma_fence_context_alloc(AMDGPU_MAX_RINGS);
3204         for (i = 0; i < AMDGPU_MAX_RINGS; ++i)
3205                 adev->vm_manager.seqno[i] = 0;
3206
3207         spin_lock_init(&adev->vm_manager.prt_lock);
3208         atomic_set(&adev->vm_manager.num_prt_users, 0);
3209
3210         /* If not overridden by the user, by default, only in large BAR systems
3211          * Compute VM tables will be updated by CPU
3212          */
3213 #ifdef CONFIG_X86_64
3214         if (amdgpu_vm_update_mode == -1) {
3215                 if (amdgpu_gmc_vram_full_visible(&adev->gmc))
3216                         adev->vm_manager.vm_update_mode =
3217                                 AMDGPU_VM_USE_CPU_FOR_COMPUTE;
3218                 else
3219                         adev->vm_manager.vm_update_mode = 0;
3220         } else
3221                 adev->vm_manager.vm_update_mode = amdgpu_vm_update_mode;
3222 #else
3223         adev->vm_manager.vm_update_mode = 0;
3224 #endif
3225
3226         idr_init(&adev->vm_manager.pasid_idr);
3227         spin_lock_init(&adev->vm_manager.pasid_lock);
3228 }
3229
3230 /**
3231  * amdgpu_vm_manager_fini - cleanup VM manager
3232  *
3233  * @adev: amdgpu_device pointer
3234  *
3235  * Cleanup the VM manager and free resources.
3236  */
3237 void amdgpu_vm_manager_fini(struct amdgpu_device *adev)
3238 {
3239         WARN_ON(!idr_is_empty(&adev->vm_manager.pasid_idr));
3240         idr_destroy(&adev->vm_manager.pasid_idr);
3241
3242         amdgpu_vmid_mgr_fini(adev);
3243 }
3244
3245 /**
3246  * amdgpu_vm_ioctl - Manages VMID reservation for vm hubs.
3247  *
3248  * @dev: drm device pointer
3249  * @data: drm_amdgpu_vm
3250  * @filp: drm file pointer
3251  *
3252  * Returns:
3253  * 0 for success, -errno for errors.
3254  */
3255 int amdgpu_vm_ioctl(struct drm_device *dev, void *data, struct drm_file *filp)
3256 {
3257         union drm_amdgpu_vm *args = data;
3258         struct amdgpu_device *adev = drm_to_adev(dev);
3259         struct amdgpu_fpriv *fpriv = filp->driver_priv;
3260         long timeout = msecs_to_jiffies(2000);
3261         int r;
3262
3263         switch (args->in.op) {
3264         case AMDGPU_VM_OP_RESERVE_VMID:
3265                 /* We only have requirement to reserve vmid from gfxhub */
3266                 r = amdgpu_vmid_alloc_reserved(adev, &fpriv->vm,
3267                                                AMDGPU_GFXHUB_0);
3268                 if (r)
3269                         return r;
3270                 break;
3271         case AMDGPU_VM_OP_UNRESERVE_VMID:
3272                 if (amdgpu_sriov_runtime(adev))
3273                         timeout = 8 * timeout;
3274
3275                 /* Wait vm idle to make sure the vmid set in SPM_VMID is
3276                  * not referenced anymore.
3277                  */
3278                 r = amdgpu_bo_reserve(fpriv->vm.root.base.bo, true);
3279                 if (r)
3280                         return r;
3281
3282                 r = amdgpu_vm_wait_idle(&fpriv->vm, timeout);
3283                 if (r < 0)
3284                         return r;
3285
3286                 amdgpu_bo_unreserve(fpriv->vm.root.base.bo);
3287                 amdgpu_vmid_free_reserved(adev, &fpriv->vm, AMDGPU_GFXHUB_0);
3288                 break;
3289         default:
3290                 return -EINVAL;
3291         }
3292
3293         return 0;
3294 }
3295
3296 /**
3297  * amdgpu_vm_get_task_info - Extracts task info for a PASID.
3298  *
3299  * @adev: drm device pointer
3300  * @pasid: PASID identifier for VM
3301  * @task_info: task_info to fill.
3302  */
3303 void amdgpu_vm_get_task_info(struct amdgpu_device *adev, u32 pasid,
3304                          struct amdgpu_task_info *task_info)
3305 {
3306         struct amdgpu_vm *vm;
3307         unsigned long flags;
3308
3309         spin_lock_irqsave(&adev->vm_manager.pasid_lock, flags);
3310
3311         vm = idr_find(&adev->vm_manager.pasid_idr, pasid);
3312         if (vm)
3313                 *task_info = vm->task_info;
3314
3315         spin_unlock_irqrestore(&adev->vm_manager.pasid_lock, flags);
3316 }
3317
3318 /**
3319  * amdgpu_vm_set_task_info - Sets VMs task info.
3320  *
3321  * @vm: vm for which to set the info
3322  */
3323 void amdgpu_vm_set_task_info(struct amdgpu_vm *vm)
3324 {
3325         if (vm->task_info.pid)
3326                 return;
3327
3328         vm->task_info.pid = current->pid;
3329         get_task_comm(vm->task_info.task_name, current);
3330
3331         if (current->group_leader->mm != current->mm)
3332                 return;
3333
3334         vm->task_info.tgid = current->group_leader->pid;
3335         get_task_comm(vm->task_info.process_name, current->group_leader);
3336 }
3337
3338 /**
3339  * amdgpu_vm_handle_fault - graceful handling of VM faults.
3340  * @adev: amdgpu device pointer
3341  * @pasid: PASID of the VM
3342  * @addr: Address of the fault
3343  *
3344  * Try to gracefully handle a VM fault. Return true if the fault was handled and
3345  * shouldn't be reported any more.
3346  */
3347 bool amdgpu_vm_handle_fault(struct amdgpu_device *adev, u32 pasid,
3348                             uint64_t addr)
3349 {
3350         bool is_compute_context = false;
3351         struct amdgpu_bo *root;
3352         uint64_t value, flags;
3353         struct amdgpu_vm *vm;
3354         int r;
3355
3356         spin_lock(&adev->vm_manager.pasid_lock);
3357         vm = idr_find(&adev->vm_manager.pasid_idr, pasid);
3358         if (vm) {
3359                 root = amdgpu_bo_ref(vm->root.base.bo);
3360                 is_compute_context = vm->is_compute_context;
3361         } else {
3362                 root = NULL;
3363         }
3364         spin_unlock(&adev->vm_manager.pasid_lock);
3365
3366         if (!root)
3367                 return false;
3368
3369         addr /= AMDGPU_GPU_PAGE_SIZE;
3370
3371         if (is_compute_context &&
3372             !svm_range_restore_pages(adev, pasid, addr)) {
3373                 amdgpu_bo_unref(&root);
3374                 return true;
3375         }
3376
3377         r = amdgpu_bo_reserve(root, true);
3378         if (r)
3379                 goto error_unref;
3380
3381         /* Double check that the VM still exists */
3382         spin_lock(&adev->vm_manager.pasid_lock);
3383         vm = idr_find(&adev->vm_manager.pasid_idr, pasid);
3384         if (vm && vm->root.base.bo != root)
3385                 vm = NULL;
3386         spin_unlock(&adev->vm_manager.pasid_lock);
3387         if (!vm)
3388                 goto error_unlock;
3389
3390         flags = AMDGPU_PTE_VALID | AMDGPU_PTE_SNOOPED |
3391                 AMDGPU_PTE_SYSTEM;
3392
3393         if (is_compute_context) {
3394                 /* Intentionally setting invalid PTE flag
3395                  * combination to force a no-retry-fault
3396                  */
3397                 flags = AMDGPU_PTE_EXECUTABLE | AMDGPU_PDE_PTE |
3398                         AMDGPU_PTE_TF;
3399                 value = 0;
3400         } else if (amdgpu_vm_fault_stop == AMDGPU_VM_FAULT_STOP_NEVER) {
3401                 /* Redirect the access to the dummy page */
3402                 value = adev->dummy_page_addr;
3403                 flags |= AMDGPU_PTE_EXECUTABLE | AMDGPU_PTE_READABLE |
3404                         AMDGPU_PTE_WRITEABLE;
3405
3406         } else {
3407                 /* Let the hw retry silently on the PTE */
3408                 value = 0;
3409         }
3410
3411         r = dma_resv_reserve_shared(root->tbo.base.resv, 1);
3412         if (r) {
3413                 pr_debug("failed %d to reserve fence slot\n", r);
3414                 goto error_unlock;
3415         }
3416
3417         r = amdgpu_vm_bo_update_mapping(adev, adev, vm, true, false, NULL, addr,
3418                                         addr, flags, value, NULL, NULL, NULL,
3419                                         NULL);
3420         if (r)
3421                 goto error_unlock;
3422
3423         r = amdgpu_vm_update_pdes(adev, vm, true);
3424
3425 error_unlock:
3426         amdgpu_bo_unreserve(root);
3427         if (r < 0)
3428                 DRM_ERROR("Can't handle page fault (%d)\n", r);
3429
3430 error_unref:
3431         amdgpu_bo_unref(&root);
3432
3433         return false;
3434 }
3435
3436 #if defined(CONFIG_DEBUG_FS)
3437 /**
3438  * amdgpu_debugfs_vm_bo_info  - print BO info for the VM
3439  *
3440  * @vm: Requested VM for printing BO info
3441  * @m: debugfs file
3442  *
3443  * Print BO information in debugfs file for the VM
3444  */
3445 void amdgpu_debugfs_vm_bo_info(struct amdgpu_vm *vm, struct seq_file *m)
3446 {
3447         struct amdgpu_bo_va *bo_va, *tmp;
3448         u64 total_idle = 0;
3449         u64 total_evicted = 0;
3450         u64 total_relocated = 0;
3451         u64 total_moved = 0;
3452         u64 total_invalidated = 0;
3453         u64 total_done = 0;
3454         unsigned int total_idle_objs = 0;
3455         unsigned int total_evicted_objs = 0;
3456         unsigned int total_relocated_objs = 0;
3457         unsigned int total_moved_objs = 0;
3458         unsigned int total_invalidated_objs = 0;
3459         unsigned int total_done_objs = 0;
3460         unsigned int id = 0;
3461
3462         seq_puts(m, "\tIdle BOs:\n");
3463         list_for_each_entry_safe(bo_va, tmp, &vm->idle, base.vm_status) {
3464                 if (!bo_va->base.bo)
3465                         continue;
3466                 total_idle += amdgpu_bo_print_info(id++, bo_va->base.bo, m);
3467         }
3468         total_idle_objs = id;
3469         id = 0;
3470
3471         seq_puts(m, "\tEvicted BOs:\n");
3472         list_for_each_entry_safe(bo_va, tmp, &vm->evicted, base.vm_status) {
3473                 if (!bo_va->base.bo)
3474                         continue;
3475                 total_evicted += amdgpu_bo_print_info(id++, bo_va->base.bo, m);
3476         }
3477         total_evicted_objs = id;
3478         id = 0;
3479
3480         seq_puts(m, "\tRelocated BOs:\n");
3481         list_for_each_entry_safe(bo_va, tmp, &vm->relocated, base.vm_status) {
3482                 if (!bo_va->base.bo)
3483                         continue;
3484                 total_relocated += amdgpu_bo_print_info(id++, bo_va->base.bo, m);
3485         }
3486         total_relocated_objs = id;
3487         id = 0;
3488
3489         seq_puts(m, "\tMoved BOs:\n");
3490         list_for_each_entry_safe(bo_va, tmp, &vm->moved, base.vm_status) {
3491                 if (!bo_va->base.bo)
3492                         continue;
3493                 total_moved += amdgpu_bo_print_info(id++, bo_va->base.bo, m);
3494         }
3495         total_moved_objs = id;
3496         id = 0;
3497
3498         seq_puts(m, "\tInvalidated BOs:\n");
3499         spin_lock(&vm->invalidated_lock);
3500         list_for_each_entry_safe(bo_va, tmp, &vm->invalidated, base.vm_status) {
3501                 if (!bo_va->base.bo)
3502                         continue;
3503                 total_invalidated += amdgpu_bo_print_info(id++, bo_va->base.bo, m);
3504         }
3505         total_invalidated_objs = id;
3506         id = 0;
3507
3508         seq_puts(m, "\tDone BOs:\n");
3509         list_for_each_entry_safe(bo_va, tmp, &vm->done, base.vm_status) {
3510                 if (!bo_va->base.bo)
3511                         continue;
3512                 total_done += amdgpu_bo_print_info(id++, bo_va->base.bo, m);
3513         }
3514         spin_unlock(&vm->invalidated_lock);
3515         total_done_objs = id;
3516
3517         seq_printf(m, "\tTotal idle size:        %12lld\tobjs:\t%d\n", total_idle,
3518                    total_idle_objs);
3519         seq_printf(m, "\tTotal evicted size:     %12lld\tobjs:\t%d\n", total_evicted,
3520                    total_evicted_objs);
3521         seq_printf(m, "\tTotal relocated size:   %12lld\tobjs:\t%d\n", total_relocated,
3522                    total_relocated_objs);
3523         seq_printf(m, "\tTotal moved size:       %12lld\tobjs:\t%d\n", total_moved,
3524                    total_moved_objs);
3525         seq_printf(m, "\tTotal invalidated size: %12lld\tobjs:\t%d\n", total_invalidated,
3526                    total_invalidated_objs);
3527         seq_printf(m, "\tTotal done size:        %12lld\tobjs:\t%d\n", total_done,
3528                    total_done_objs);
3529 }
3530 #endif