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