2 * Copyright 2008 Advanced Micro Devices, Inc.
3 * Copyright 2008 Red Hat Inc.
4 * Copyright 2009 Jerome Glisse.
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:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
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.
24 * Authors: Dave Airlie
29 #include <linux/dma-fence-array.h>
30 #include <linux/interval_tree_generic.h>
31 #include <linux/idr.h>
32 #include <linux/dma-buf.h>
34 #include <drm/amdgpu_drm.h>
35 #include <drm/drm_drv.h>
37 #include "amdgpu_trace.h"
38 #include "amdgpu_amdkfd.h"
39 #include "amdgpu_gmc.h"
40 #include "amdgpu_xgmi.h"
41 #include "amdgpu_dma_buf.h"
42 #include "amdgpu_res_cursor.h"
48 * GPUVM is similar to the legacy gart on older asics, however
49 * rather than there being a single global gart table
50 * for the entire GPU, there are multiple VM page tables active
51 * at any given time. The VM page tables can contain a mix
52 * vram pages and system memory pages and system memory pages
53 * can be mapped as snooped (cached system pages) or unsnooped
54 * (uncached system pages).
55 * Each VM has an ID associated with it and there is a page table
56 * associated with each VMID. When execting a command buffer,
57 * the kernel tells the the ring what VMID to use for that command
58 * buffer. VMIDs are allocated dynamically as commands are submitted.
59 * The userspace drivers maintain their own address space and the kernel
60 * sets up their pages tables accordingly when they submit their
61 * command buffers and a VMID is assigned.
62 * Cayman/Trinity support up to 8 active VMs at any given time;
66 #define START(node) ((node)->start)
67 #define LAST(node) ((node)->last)
69 INTERVAL_TREE_DEFINE(struct amdgpu_bo_va_mapping, rb, uint64_t, __subtree_last,
70 START, LAST, static, amdgpu_vm_it)
76 * struct amdgpu_prt_cb - Helper to disable partial resident texture feature from a fence callback
78 struct amdgpu_prt_cb {
81 * @adev: amdgpu device
83 struct amdgpu_device *adev;
88 struct dma_fence_cb cb;
92 * vm eviction_lock can be taken in MMU notifiers. Make sure no reclaim-FS
93 * happens while holding this lock anywhere to prevent deadlocks when
94 * an MMU notifier runs in reclaim-FS context.
96 static inline void amdgpu_vm_eviction_lock(struct amdgpu_vm *vm)
98 mutex_lock(&vm->eviction_lock);
99 vm->saved_flags = memalloc_noreclaim_save();
102 static inline int amdgpu_vm_eviction_trylock(struct amdgpu_vm *vm)
104 if (mutex_trylock(&vm->eviction_lock)) {
105 vm->saved_flags = memalloc_noreclaim_save();
111 static inline void amdgpu_vm_eviction_unlock(struct amdgpu_vm *vm)
113 memalloc_noreclaim_restore(vm->saved_flags);
114 mutex_unlock(&vm->eviction_lock);
118 * amdgpu_vm_level_shift - return the addr shift for each level
120 * @adev: amdgpu_device pointer
124 * The number of bits the pfn needs to be right shifted for a level.
126 static unsigned amdgpu_vm_level_shift(struct amdgpu_device *adev,
133 return 9 * (AMDGPU_VM_PDB0 - level) +
134 adev->vm_manager.block_size;
143 * amdgpu_vm_num_entries - return the number of entries in a PD/PT
145 * @adev: amdgpu_device pointer
149 * The number of entries in a page directory or page table.
151 static unsigned amdgpu_vm_num_entries(struct amdgpu_device *adev,
154 unsigned shift = amdgpu_vm_level_shift(adev,
155 adev->vm_manager.root_level);
157 if (level == adev->vm_manager.root_level)
158 /* For the root directory */
159 return round_up(adev->vm_manager.max_pfn, 1ULL << shift)
161 else if (level != AMDGPU_VM_PTB)
162 /* Everything in between */
165 /* For the page tables on the leaves */
166 return AMDGPU_VM_PTE_COUNT(adev);
170 * amdgpu_vm_num_ats_entries - return the number of ATS entries in the root PD
172 * @adev: amdgpu_device pointer
175 * The number of entries in the root page directory which needs the ATS setting.
177 static unsigned amdgpu_vm_num_ats_entries(struct amdgpu_device *adev)
181 shift = amdgpu_vm_level_shift(adev, adev->vm_manager.root_level);
182 return AMDGPU_GMC_HOLE_START >> (shift + AMDGPU_GPU_PAGE_SHIFT);
186 * amdgpu_vm_entries_mask - the mask to get the entry number of a PD/PT
188 * @adev: amdgpu_device pointer
192 * The mask to extract the entry number of a PD/PT from an address.
194 static uint32_t amdgpu_vm_entries_mask(struct amdgpu_device *adev,
197 if (level <= adev->vm_manager.root_level)
199 else if (level != AMDGPU_VM_PTB)
202 return AMDGPU_VM_PTE_COUNT(adev) - 1;
206 * amdgpu_vm_bo_size - returns the size of the BOs in bytes
208 * @adev: amdgpu_device pointer
212 * The size of the BO for a page directory or page table in bytes.
214 static unsigned amdgpu_vm_bo_size(struct amdgpu_device *adev, unsigned level)
216 return AMDGPU_GPU_PAGE_ALIGN(amdgpu_vm_num_entries(adev, level) * 8);
220 * amdgpu_vm_bo_evicted - vm_bo is evicted
222 * @vm_bo: vm_bo which is evicted
224 * State for PDs/PTs and per VM BOs which are not at the location they should
227 static void amdgpu_vm_bo_evicted(struct amdgpu_vm_bo_base *vm_bo)
229 struct amdgpu_vm *vm = vm_bo->vm;
230 struct amdgpu_bo *bo = vm_bo->bo;
233 if (bo->tbo.type == ttm_bo_type_kernel)
234 list_move(&vm_bo->vm_status, &vm->evicted);
236 list_move_tail(&vm_bo->vm_status, &vm->evicted);
239 * amdgpu_vm_bo_moved - vm_bo is moved
241 * @vm_bo: vm_bo which is moved
243 * State for per VM BOs which are moved, but that change is not yet reflected
244 * in the page tables.
246 static void amdgpu_vm_bo_moved(struct amdgpu_vm_bo_base *vm_bo)
248 list_move(&vm_bo->vm_status, &vm_bo->vm->moved);
252 * amdgpu_vm_bo_idle - vm_bo is idle
254 * @vm_bo: vm_bo which is now idle
256 * State for PDs/PTs and per VM BOs which have gone through the state machine
259 static void amdgpu_vm_bo_idle(struct amdgpu_vm_bo_base *vm_bo)
261 list_move(&vm_bo->vm_status, &vm_bo->vm->idle);
262 vm_bo->moved = false;
266 * amdgpu_vm_bo_invalidated - vm_bo is invalidated
268 * @vm_bo: vm_bo which is now invalidated
270 * State for normal BOs which are invalidated and that change not yet reflected
273 static void amdgpu_vm_bo_invalidated(struct amdgpu_vm_bo_base *vm_bo)
275 spin_lock(&vm_bo->vm->invalidated_lock);
276 list_move(&vm_bo->vm_status, &vm_bo->vm->invalidated);
277 spin_unlock(&vm_bo->vm->invalidated_lock);
281 * amdgpu_vm_bo_relocated - vm_bo is reloacted
283 * @vm_bo: vm_bo which is relocated
285 * State for PDs/PTs which needs to update their parent PD.
286 * For the root PD, just move to idle state.
288 static void amdgpu_vm_bo_relocated(struct amdgpu_vm_bo_base *vm_bo)
290 if (vm_bo->bo->parent)
291 list_move(&vm_bo->vm_status, &vm_bo->vm->relocated);
293 amdgpu_vm_bo_idle(vm_bo);
297 * amdgpu_vm_bo_done - vm_bo is done
299 * @vm_bo: vm_bo which is now done
301 * State for normal BOs which are invalidated and that change has been updated
304 static void amdgpu_vm_bo_done(struct amdgpu_vm_bo_base *vm_bo)
306 spin_lock(&vm_bo->vm->invalidated_lock);
307 list_move(&vm_bo->vm_status, &vm_bo->vm->done);
308 spin_unlock(&vm_bo->vm->invalidated_lock);
312 * amdgpu_vm_bo_base_init - Adds bo to the list of bos associated with the vm
314 * @base: base structure for tracking BO usage in a VM
315 * @vm: vm to which bo is to be added
316 * @bo: amdgpu buffer object
318 * Initialize a bo_va_base structure and add it to the appropriate lists
321 static void amdgpu_vm_bo_base_init(struct amdgpu_vm_bo_base *base,
322 struct amdgpu_vm *vm,
323 struct amdgpu_bo *bo)
328 INIT_LIST_HEAD(&base->vm_status);
332 base->next = bo->vm_bo;
335 if (bo->tbo.base.resv != vm->root.base.bo->tbo.base.resv)
338 vm->bulk_moveable = false;
339 if (bo->tbo.type == ttm_bo_type_kernel && bo->parent)
340 amdgpu_vm_bo_relocated(base);
342 amdgpu_vm_bo_idle(base);
344 if (bo->preferred_domains &
345 amdgpu_mem_type_to_domain(bo->tbo.resource->mem_type))
349 * we checked all the prerequisites, but it looks like this per vm bo
350 * is currently evicted. add the bo to the evicted list to make sure it
351 * is validated on next vm use to avoid fault.
353 amdgpu_vm_bo_evicted(base);
357 * amdgpu_vm_pt_parent - get the parent page directory
359 * @pt: child page table
361 * Helper to get the parent entry for the child page table. NULL if we are at
362 * the root page directory.
364 static struct amdgpu_vm_pt *amdgpu_vm_pt_parent(struct amdgpu_vm_pt *pt)
366 struct amdgpu_bo *parent = pt->base.bo->parent;
371 return container_of(parent->vm_bo, struct amdgpu_vm_pt, base);
375 * amdgpu_vm_pt_cursor - state for for_each_amdgpu_vm_pt
377 struct amdgpu_vm_pt_cursor {
379 struct amdgpu_vm_pt *parent;
380 struct amdgpu_vm_pt *entry;
385 * amdgpu_vm_pt_start - start PD/PT walk
387 * @adev: amdgpu_device pointer
388 * @vm: amdgpu_vm structure
389 * @start: start address of the walk
390 * @cursor: state to initialize
392 * Initialize a amdgpu_vm_pt_cursor to start a walk.
394 static void amdgpu_vm_pt_start(struct amdgpu_device *adev,
395 struct amdgpu_vm *vm, uint64_t start,
396 struct amdgpu_vm_pt_cursor *cursor)
399 cursor->parent = NULL;
400 cursor->entry = &vm->root;
401 cursor->level = adev->vm_manager.root_level;
405 * amdgpu_vm_pt_descendant - go to child node
407 * @adev: amdgpu_device pointer
408 * @cursor: current state
410 * Walk to the child node of the current node.
412 * True if the walk was possible, false otherwise.
414 static bool amdgpu_vm_pt_descendant(struct amdgpu_device *adev,
415 struct amdgpu_vm_pt_cursor *cursor)
417 unsigned mask, shift, idx;
419 if (!cursor->entry->entries)
422 BUG_ON(!cursor->entry->base.bo);
423 mask = amdgpu_vm_entries_mask(adev, cursor->level);
424 shift = amdgpu_vm_level_shift(adev, cursor->level);
427 idx = (cursor->pfn >> shift) & mask;
428 cursor->parent = cursor->entry;
429 cursor->entry = &cursor->entry->entries[idx];
434 * amdgpu_vm_pt_sibling - go to sibling node
436 * @adev: amdgpu_device pointer
437 * @cursor: current state
439 * Walk to the sibling node of the current node.
441 * True if the walk was possible, false otherwise.
443 static bool amdgpu_vm_pt_sibling(struct amdgpu_device *adev,
444 struct amdgpu_vm_pt_cursor *cursor)
446 unsigned shift, num_entries;
448 /* Root doesn't have a sibling */
452 /* Go to our parents and see if we got a sibling */
453 shift = amdgpu_vm_level_shift(adev, cursor->level - 1);
454 num_entries = amdgpu_vm_num_entries(adev, cursor->level - 1);
456 if (cursor->entry == &cursor->parent->entries[num_entries - 1])
459 cursor->pfn += 1ULL << shift;
460 cursor->pfn &= ~((1ULL << shift) - 1);
466 * amdgpu_vm_pt_ancestor - go to parent node
468 * @cursor: current state
470 * Walk to the parent node of the current node.
472 * True if the walk was possible, false otherwise.
474 static bool amdgpu_vm_pt_ancestor(struct amdgpu_vm_pt_cursor *cursor)
480 cursor->entry = cursor->parent;
481 cursor->parent = amdgpu_vm_pt_parent(cursor->parent);
486 * amdgpu_vm_pt_next - get next PD/PT in hieratchy
488 * @adev: amdgpu_device pointer
489 * @cursor: current state
491 * Walk the PD/PT tree to the next node.
493 static void amdgpu_vm_pt_next(struct amdgpu_device *adev,
494 struct amdgpu_vm_pt_cursor *cursor)
496 /* First try a newborn child */
497 if (amdgpu_vm_pt_descendant(adev, cursor))
500 /* If that didn't worked try to find a sibling */
501 while (!amdgpu_vm_pt_sibling(adev, cursor)) {
502 /* No sibling, go to our parents and grandparents */
503 if (!amdgpu_vm_pt_ancestor(cursor)) {
511 * amdgpu_vm_pt_first_dfs - start a deep first search
513 * @adev: amdgpu_device structure
514 * @vm: amdgpu_vm structure
515 * @start: optional cursor to start with
516 * @cursor: state to initialize
518 * Starts a deep first traversal of the PD/PT tree.
520 static void amdgpu_vm_pt_first_dfs(struct amdgpu_device *adev,
521 struct amdgpu_vm *vm,
522 struct amdgpu_vm_pt_cursor *start,
523 struct amdgpu_vm_pt_cursor *cursor)
528 amdgpu_vm_pt_start(adev, vm, 0, cursor);
529 while (amdgpu_vm_pt_descendant(adev, cursor));
533 * amdgpu_vm_pt_continue_dfs - check if the deep first search should continue
535 * @start: starting point for the search
536 * @entry: current entry
539 * True when the search should continue, false otherwise.
541 static bool amdgpu_vm_pt_continue_dfs(struct amdgpu_vm_pt_cursor *start,
542 struct amdgpu_vm_pt *entry)
544 return entry && (!start || entry != start->entry);
548 * amdgpu_vm_pt_next_dfs - get the next node for a deep first search
550 * @adev: amdgpu_device structure
551 * @cursor: current state
553 * Move the cursor to the next node in a deep first search.
555 static void amdgpu_vm_pt_next_dfs(struct amdgpu_device *adev,
556 struct amdgpu_vm_pt_cursor *cursor)
562 cursor->entry = NULL;
563 else if (amdgpu_vm_pt_sibling(adev, cursor))
564 while (amdgpu_vm_pt_descendant(adev, cursor));
566 amdgpu_vm_pt_ancestor(cursor);
570 * for_each_amdgpu_vm_pt_dfs_safe - safe deep first search of all PDs/PTs
572 #define for_each_amdgpu_vm_pt_dfs_safe(adev, vm, start, cursor, entry) \
573 for (amdgpu_vm_pt_first_dfs((adev), (vm), (start), &(cursor)), \
574 (entry) = (cursor).entry, amdgpu_vm_pt_next_dfs((adev), &(cursor));\
575 amdgpu_vm_pt_continue_dfs((start), (entry)); \
576 (entry) = (cursor).entry, amdgpu_vm_pt_next_dfs((adev), &(cursor)))
579 * amdgpu_vm_get_pd_bo - add the VM PD to a validation list
581 * @vm: vm providing the BOs
582 * @validated: head of validation list
583 * @entry: entry to add
585 * Add the page directory to the list of BOs to
586 * validate for command submission.
588 void amdgpu_vm_get_pd_bo(struct amdgpu_vm *vm,
589 struct list_head *validated,
590 struct amdgpu_bo_list_entry *entry)
593 entry->tv.bo = &vm->root.base.bo->tbo;
594 /* Two for VM updates, one for TTM and one for the CS job */
595 entry->tv.num_shared = 4;
596 entry->user_pages = NULL;
597 list_add(&entry->tv.head, validated);
601 * amdgpu_vm_del_from_lru_notify - update bulk_moveable flag
603 * @bo: BO which was removed from the LRU
605 * Make sure the bulk_moveable flag is updated when a BO is removed from the
608 void amdgpu_vm_del_from_lru_notify(struct ttm_buffer_object *bo)
610 struct amdgpu_bo *abo;
611 struct amdgpu_vm_bo_base *bo_base;
613 if (!amdgpu_bo_is_amdgpu_bo(bo))
619 abo = ttm_to_amdgpu_bo(bo);
622 for (bo_base = abo->vm_bo; bo_base; bo_base = bo_base->next) {
623 struct amdgpu_vm *vm = bo_base->vm;
625 if (abo->tbo.base.resv == vm->root.base.bo->tbo.base.resv)
626 vm->bulk_moveable = false;
631 * amdgpu_vm_move_to_lru_tail - move all BOs to the end of LRU
633 * @adev: amdgpu device pointer
634 * @vm: vm providing the BOs
636 * Move all BOs to the end of LRU and remember their positions to put them
639 void amdgpu_vm_move_to_lru_tail(struct amdgpu_device *adev,
640 struct amdgpu_vm *vm)
642 struct amdgpu_vm_bo_base *bo_base;
644 if (vm->bulk_moveable) {
645 spin_lock(&adev->mman.bdev.lru_lock);
646 ttm_bo_bulk_move_lru_tail(&vm->lru_bulk_move);
647 spin_unlock(&adev->mman.bdev.lru_lock);
651 memset(&vm->lru_bulk_move, 0, sizeof(vm->lru_bulk_move));
653 spin_lock(&adev->mman.bdev.lru_lock);
654 list_for_each_entry(bo_base, &vm->idle, vm_status) {
655 struct amdgpu_bo *bo = bo_base->bo;
656 struct amdgpu_bo *shadow = amdgpu_bo_shadowed(bo);
661 ttm_bo_move_to_lru_tail(&bo->tbo, bo->tbo.resource,
664 ttm_bo_move_to_lru_tail(&shadow->tbo,
665 shadow->tbo.resource,
668 spin_unlock(&adev->mman.bdev.lru_lock);
670 vm->bulk_moveable = true;
674 * amdgpu_vm_validate_pt_bos - validate the page table BOs
676 * @adev: amdgpu device pointer
677 * @vm: vm providing the BOs
678 * @validate: callback to do the validation
679 * @param: parameter for the validation callback
681 * Validate the page table BOs on command submission if neccessary.
686 int amdgpu_vm_validate_pt_bos(struct amdgpu_device *adev, struct amdgpu_vm *vm,
687 int (*validate)(void *p, struct amdgpu_bo *bo),
690 struct amdgpu_vm_bo_base *bo_base, *tmp;
693 vm->bulk_moveable &= list_empty(&vm->evicted);
695 list_for_each_entry_safe(bo_base, tmp, &vm->evicted, vm_status) {
696 struct amdgpu_bo *bo = bo_base->bo;
697 struct amdgpu_bo *shadow = amdgpu_bo_shadowed(bo);
699 r = validate(param, bo);
703 r = validate(param, shadow);
708 if (bo->tbo.type != ttm_bo_type_kernel) {
709 amdgpu_vm_bo_moved(bo_base);
711 vm->update_funcs->map_table(to_amdgpu_bo_vm(bo));
712 amdgpu_vm_bo_relocated(bo_base);
716 amdgpu_vm_eviction_lock(vm);
717 vm->evicting = false;
718 amdgpu_vm_eviction_unlock(vm);
724 * amdgpu_vm_ready - check VM is ready for updates
728 * Check if all VM PDs/PTs are ready for updates
731 * True if eviction list is empty.
733 bool amdgpu_vm_ready(struct amdgpu_vm *vm)
735 return list_empty(&vm->evicted);
739 * amdgpu_vm_clear_bo - initially clear the PDs/PTs
741 * @adev: amdgpu_device pointer
742 * @vm: VM to clear BO from
744 * @immediate: use an immediate update
746 * Root PD needs to be reserved when calling this.
749 * 0 on success, errno otherwise.
751 static int amdgpu_vm_clear_bo(struct amdgpu_device *adev,
752 struct amdgpu_vm *vm,
753 struct amdgpu_bo_vm *vmbo,
756 struct ttm_operation_ctx ctx = { true, false };
757 unsigned level = adev->vm_manager.root_level;
758 struct amdgpu_vm_update_params params;
759 struct amdgpu_bo *ancestor = &vmbo->bo;
760 struct amdgpu_bo *bo = &vmbo->bo;
761 unsigned entries, ats_entries;
765 /* Figure out our place in the hierarchy */
766 if (ancestor->parent) {
768 while (ancestor->parent->parent) {
770 ancestor = ancestor->parent;
774 entries = amdgpu_bo_size(bo) / 8;
775 if (!vm->pte_support_ats) {
778 } else if (!bo->parent) {
779 ats_entries = amdgpu_vm_num_ats_entries(adev);
780 ats_entries = min(ats_entries, entries);
781 entries -= ats_entries;
784 struct amdgpu_vm_pt *pt;
786 pt = container_of(ancestor->vm_bo, struct amdgpu_vm_pt, base);
787 ats_entries = amdgpu_vm_num_ats_entries(adev);
788 if ((pt - vm->root.entries) >= ats_entries) {
791 ats_entries = entries;
796 r = ttm_bo_validate(&bo->tbo, &bo->placement, &ctx);
801 struct amdgpu_bo *shadow = vmbo->shadow;
803 r = ttm_bo_validate(&shadow->tbo, &shadow->placement, &ctx);
808 r = vm->update_funcs->map_table(vmbo);
812 memset(¶ms, 0, sizeof(params));
815 params.immediate = immediate;
817 r = vm->update_funcs->prepare(¶ms, NULL, AMDGPU_SYNC_EXPLICIT);
823 uint64_t value = 0, flags;
825 flags = AMDGPU_PTE_DEFAULT_ATC;
826 if (level != AMDGPU_VM_PTB) {
827 /* Handle leaf PDEs as PTEs */
828 flags |= AMDGPU_PDE_PTE;
829 amdgpu_gmc_get_vm_pde(adev, level, &value, &flags);
832 r = vm->update_funcs->update(¶ms, vmbo, addr, 0, ats_entries,
837 addr += ats_entries * 8;
841 uint64_t value = 0, flags = 0;
843 if (adev->asic_type >= CHIP_VEGA10) {
844 if (level != AMDGPU_VM_PTB) {
845 /* Handle leaf PDEs as PTEs */
846 flags |= AMDGPU_PDE_PTE;
847 amdgpu_gmc_get_vm_pde(adev, level,
850 /* Workaround for fault priority problem on GMC9 */
851 flags = AMDGPU_PTE_EXECUTABLE;
855 r = vm->update_funcs->update(¶ms, vmbo, addr, 0, entries,
861 return vm->update_funcs->commit(¶ms, NULL);
865 * amdgpu_vm_pt_create - create bo for PD/PT
867 * @adev: amdgpu_device pointer
869 * @level: the page table level
870 * @immediate: use a immediate update
871 * @vmbo: pointer to the buffer object pointer
873 static int amdgpu_vm_pt_create(struct amdgpu_device *adev,
874 struct amdgpu_vm *vm,
875 int level, bool immediate,
876 struct amdgpu_bo_vm **vmbo)
878 struct amdgpu_bo_param bp;
879 struct amdgpu_bo *bo;
880 struct dma_resv *resv;
881 unsigned int num_entries;
884 memset(&bp, 0, sizeof(bp));
886 bp.size = amdgpu_vm_bo_size(adev, level);
887 bp.byte_align = AMDGPU_GPU_PAGE_SIZE;
888 bp.domain = AMDGPU_GEM_DOMAIN_VRAM;
889 bp.domain = amdgpu_bo_get_preferred_pin_domain(adev, bp.domain);
890 bp.flags = AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS |
891 AMDGPU_GEM_CREATE_CPU_GTT_USWC;
893 if (level < AMDGPU_VM_PTB)
894 num_entries = amdgpu_vm_num_entries(adev, level);
898 bp.bo_ptr_size = struct_size((*vmbo), entries, num_entries);
900 if (vm->use_cpu_for_update)
901 bp.flags |= AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED;
903 bp.type = ttm_bo_type_kernel;
904 bp.no_wait_gpu = immediate;
905 if (vm->root.base.bo)
906 bp.resv = vm->root.base.bo->tbo.base.resv;
908 r = amdgpu_bo_create_vm(adev, &bp, vmbo);
913 if (vm->is_compute_context && (adev->flags & AMD_IS_APU)) {
914 (*vmbo)->shadow = NULL;
919 WARN_ON(dma_resv_lock(bo->tbo.base.resv,
922 memset(&bp, 0, sizeof(bp));
923 bp.size = amdgpu_vm_bo_size(adev, level);
924 bp.domain = AMDGPU_GEM_DOMAIN_GTT;
925 bp.flags = AMDGPU_GEM_CREATE_CPU_GTT_USWC;
926 bp.type = ttm_bo_type_kernel;
927 bp.resv = bo->tbo.base.resv;
928 bp.bo_ptr_size = sizeof(struct amdgpu_bo);
930 r = amdgpu_bo_create(adev, &bp, &(*vmbo)->shadow);
933 dma_resv_unlock(bo->tbo.base.resv);
936 amdgpu_bo_unref(&bo);
940 (*vmbo)->shadow->parent = amdgpu_bo_ref(bo);
941 amdgpu_bo_add_to_shadow_list((*vmbo)->shadow);
947 * amdgpu_vm_alloc_pts - Allocate a specific page table
949 * @adev: amdgpu_device pointer
950 * @vm: VM to allocate page tables for
951 * @cursor: Which page table to allocate
952 * @immediate: use an immediate update
954 * Make sure a specific page table or directory is allocated.
957 * 1 if page table needed to be allocated, 0 if page table was already
958 * allocated, negative errno if an error occurred.
960 static int amdgpu_vm_alloc_pts(struct amdgpu_device *adev,
961 struct amdgpu_vm *vm,
962 struct amdgpu_vm_pt_cursor *cursor,
965 struct amdgpu_vm_pt *entry = cursor->entry;
966 struct amdgpu_bo *pt_bo;
967 struct amdgpu_bo_vm *pt;
970 if (entry->base.bo) {
971 if (cursor->level < AMDGPU_VM_PTB)
973 to_amdgpu_bo_vm(entry->base.bo)->entries;
975 entry->entries = NULL;
979 r = amdgpu_vm_pt_create(adev, vm, cursor->level, immediate, &pt);
983 /* Keep a reference to the root directory to avoid
984 * freeing them up in the wrong order.
987 pt_bo->parent = amdgpu_bo_ref(cursor->parent->base.bo);
988 amdgpu_vm_bo_base_init(&entry->base, vm, pt_bo);
989 if (cursor->level < AMDGPU_VM_PTB)
990 entry->entries = pt->entries;
992 entry->entries = NULL;
994 r = amdgpu_vm_clear_bo(adev, vm, pt, immediate);
1001 amdgpu_bo_unref(&pt->shadow);
1002 amdgpu_bo_unref(&pt_bo);
1007 * amdgpu_vm_free_table - fre one PD/PT
1009 * @entry: PDE to free
1011 static void amdgpu_vm_free_table(struct amdgpu_vm_pt *entry)
1013 struct amdgpu_bo *shadow;
1015 if (entry->base.bo) {
1016 shadow = amdgpu_bo_shadowed(entry->base.bo);
1017 entry->base.bo->vm_bo = NULL;
1018 list_del(&entry->base.vm_status);
1019 amdgpu_bo_unref(&shadow);
1020 amdgpu_bo_unref(&entry->base.bo);
1022 entry->entries = NULL;
1026 * amdgpu_vm_free_pts - free PD/PT levels
1028 * @adev: amdgpu device structure
1029 * @vm: amdgpu vm structure
1030 * @start: optional cursor where to start freeing PDs/PTs
1032 * Free the page directory or page table level and all sub levels.
1034 static void amdgpu_vm_free_pts(struct amdgpu_device *adev,
1035 struct amdgpu_vm *vm,
1036 struct amdgpu_vm_pt_cursor *start)
1038 struct amdgpu_vm_pt_cursor cursor;
1039 struct amdgpu_vm_pt *entry;
1041 vm->bulk_moveable = false;
1043 for_each_amdgpu_vm_pt_dfs_safe(adev, vm, start, cursor, entry)
1044 amdgpu_vm_free_table(entry);
1047 amdgpu_vm_free_table(start->entry);
1051 * amdgpu_vm_check_compute_bug - check whether asic has compute vm bug
1053 * @adev: amdgpu_device pointer
1055 void amdgpu_vm_check_compute_bug(struct amdgpu_device *adev)
1057 const struct amdgpu_ip_block *ip_block;
1058 bool has_compute_vm_bug;
1059 struct amdgpu_ring *ring;
1062 has_compute_vm_bug = false;
1064 ip_block = amdgpu_device_ip_get_ip_block(adev, AMD_IP_BLOCK_TYPE_GFX);
1066 /* Compute has a VM bug for GFX version < 7.
1067 Compute has a VM bug for GFX 8 MEC firmware version < 673.*/
1068 if (ip_block->version->major <= 7)
1069 has_compute_vm_bug = true;
1070 else if (ip_block->version->major == 8)
1071 if (adev->gfx.mec_fw_version < 673)
1072 has_compute_vm_bug = true;
1075 for (i = 0; i < adev->num_rings; i++) {
1076 ring = adev->rings[i];
1077 if (ring->funcs->type == AMDGPU_RING_TYPE_COMPUTE)
1078 /* only compute rings */
1079 ring->has_compute_vm_bug = has_compute_vm_bug;
1081 ring->has_compute_vm_bug = false;
1086 * amdgpu_vm_need_pipeline_sync - Check if pipe sync is needed for job.
1088 * @ring: ring on which the job will be submitted
1089 * @job: job to submit
1092 * True if sync is needed.
1094 bool amdgpu_vm_need_pipeline_sync(struct amdgpu_ring *ring,
1095 struct amdgpu_job *job)
1097 struct amdgpu_device *adev = ring->adev;
1098 unsigned vmhub = ring->funcs->vmhub;
1099 struct amdgpu_vmid_mgr *id_mgr = &adev->vm_manager.id_mgr[vmhub];
1100 struct amdgpu_vmid *id;
1101 bool gds_switch_needed;
1102 bool vm_flush_needed = job->vm_needs_flush || ring->has_compute_vm_bug;
1106 id = &id_mgr->ids[job->vmid];
1107 gds_switch_needed = ring->funcs->emit_gds_switch && (
1108 id->gds_base != job->gds_base ||
1109 id->gds_size != job->gds_size ||
1110 id->gws_base != job->gws_base ||
1111 id->gws_size != job->gws_size ||
1112 id->oa_base != job->oa_base ||
1113 id->oa_size != job->oa_size);
1115 if (amdgpu_vmid_had_gpu_reset(adev, id))
1118 return vm_flush_needed || gds_switch_needed;
1122 * amdgpu_vm_flush - hardware flush the vm
1124 * @ring: ring to use for flush
1126 * @need_pipe_sync: is pipe sync needed
1128 * Emit a VM flush when it is necessary.
1131 * 0 on success, errno otherwise.
1133 int amdgpu_vm_flush(struct amdgpu_ring *ring, struct amdgpu_job *job,
1134 bool need_pipe_sync)
1136 struct amdgpu_device *adev = ring->adev;
1137 unsigned vmhub = ring->funcs->vmhub;
1138 struct amdgpu_vmid_mgr *id_mgr = &adev->vm_manager.id_mgr[vmhub];
1139 struct amdgpu_vmid *id = &id_mgr->ids[job->vmid];
1140 bool gds_switch_needed = ring->funcs->emit_gds_switch && (
1141 id->gds_base != job->gds_base ||
1142 id->gds_size != job->gds_size ||
1143 id->gws_base != job->gws_base ||
1144 id->gws_size != job->gws_size ||
1145 id->oa_base != job->oa_base ||
1146 id->oa_size != job->oa_size);
1147 bool vm_flush_needed = job->vm_needs_flush;
1148 struct dma_fence *fence = NULL;
1149 bool pasid_mapping_needed = false;
1150 unsigned patch_offset = 0;
1151 bool update_spm_vmid_needed = (job->vm && (job->vm->reserved_vmid[vmhub] != NULL));
1154 if (update_spm_vmid_needed && adev->gfx.rlc.funcs->update_spm_vmid)
1155 adev->gfx.rlc.funcs->update_spm_vmid(adev, job->vmid);
1157 if (amdgpu_vmid_had_gpu_reset(adev, id)) {
1158 gds_switch_needed = true;
1159 vm_flush_needed = true;
1160 pasid_mapping_needed = true;
1163 mutex_lock(&id_mgr->lock);
1164 if (id->pasid != job->pasid || !id->pasid_mapping ||
1165 !dma_fence_is_signaled(id->pasid_mapping))
1166 pasid_mapping_needed = true;
1167 mutex_unlock(&id_mgr->lock);
1169 gds_switch_needed &= !!ring->funcs->emit_gds_switch;
1170 vm_flush_needed &= !!ring->funcs->emit_vm_flush &&
1171 job->vm_pd_addr != AMDGPU_BO_INVALID_OFFSET;
1172 pasid_mapping_needed &= adev->gmc.gmc_funcs->emit_pasid_mapping &&
1173 ring->funcs->emit_wreg;
1175 if (!vm_flush_needed && !gds_switch_needed && !need_pipe_sync)
1178 if (ring->funcs->init_cond_exec)
1179 patch_offset = amdgpu_ring_init_cond_exec(ring);
1182 amdgpu_ring_emit_pipeline_sync(ring);
1184 if (vm_flush_needed) {
1185 trace_amdgpu_vm_flush(ring, job->vmid, job->vm_pd_addr);
1186 amdgpu_ring_emit_vm_flush(ring, job->vmid, job->vm_pd_addr);
1189 if (pasid_mapping_needed)
1190 amdgpu_gmc_emit_pasid_mapping(ring, job->vmid, job->pasid);
1192 if (vm_flush_needed || pasid_mapping_needed) {
1193 r = amdgpu_fence_emit(ring, &fence, 0);
1198 if (vm_flush_needed) {
1199 mutex_lock(&id_mgr->lock);
1200 dma_fence_put(id->last_flush);
1201 id->last_flush = dma_fence_get(fence);
1202 id->current_gpu_reset_count =
1203 atomic_read(&adev->gpu_reset_counter);
1204 mutex_unlock(&id_mgr->lock);
1207 if (pasid_mapping_needed) {
1208 mutex_lock(&id_mgr->lock);
1209 id->pasid = job->pasid;
1210 dma_fence_put(id->pasid_mapping);
1211 id->pasid_mapping = dma_fence_get(fence);
1212 mutex_unlock(&id_mgr->lock);
1214 dma_fence_put(fence);
1216 if (ring->funcs->emit_gds_switch && gds_switch_needed) {
1217 id->gds_base = job->gds_base;
1218 id->gds_size = job->gds_size;
1219 id->gws_base = job->gws_base;
1220 id->gws_size = job->gws_size;
1221 id->oa_base = job->oa_base;
1222 id->oa_size = job->oa_size;
1223 amdgpu_ring_emit_gds_switch(ring, job->vmid, job->gds_base,
1224 job->gds_size, job->gws_base,
1225 job->gws_size, job->oa_base,
1229 if (ring->funcs->patch_cond_exec)
1230 amdgpu_ring_patch_cond_exec(ring, patch_offset);
1232 /* the double SWITCH_BUFFER here *cannot* be skipped by COND_EXEC */
1233 if (ring->funcs->emit_switch_buffer) {
1234 amdgpu_ring_emit_switch_buffer(ring);
1235 amdgpu_ring_emit_switch_buffer(ring);
1241 * amdgpu_vm_bo_find - find the bo_va for a specific vm & bo
1244 * @bo: requested buffer object
1246 * Find @bo inside the requested vm.
1247 * Search inside the @bos vm list for the requested vm
1248 * Returns the found bo_va or NULL if none is found
1250 * Object has to be reserved!
1253 * Found bo_va or NULL.
1255 struct amdgpu_bo_va *amdgpu_vm_bo_find(struct amdgpu_vm *vm,
1256 struct amdgpu_bo *bo)
1258 struct amdgpu_vm_bo_base *base;
1260 for (base = bo->vm_bo; base; base = base->next) {
1264 return container_of(base, struct amdgpu_bo_va, base);
1270 * amdgpu_vm_map_gart - Resolve gart mapping of addr
1272 * @pages_addr: optional DMA address to use for lookup
1273 * @addr: the unmapped addr
1275 * Look up the physical address of the page that the pte resolves
1279 * The pointer for the page table entry.
1281 uint64_t amdgpu_vm_map_gart(const dma_addr_t *pages_addr, uint64_t addr)
1285 /* page table offset */
1286 result = pages_addr[addr >> PAGE_SHIFT];
1288 /* in case cpu page size != gpu page size*/
1289 result |= addr & (~PAGE_MASK);
1291 result &= 0xFFFFFFFFFFFFF000ULL;
1297 * amdgpu_vm_update_pde - update a single level in the hierarchy
1299 * @params: parameters for the update
1301 * @entry: entry to update
1303 * Makes sure the requested entry in parent is up to date.
1305 static int amdgpu_vm_update_pde(struct amdgpu_vm_update_params *params,
1306 struct amdgpu_vm *vm,
1307 struct amdgpu_vm_pt *entry)
1309 struct amdgpu_vm_pt *parent = amdgpu_vm_pt_parent(entry);
1310 struct amdgpu_bo *bo = parent->base.bo, *pbo;
1311 uint64_t pde, pt, flags;
1314 for (level = 0, pbo = bo->parent; pbo; ++level)
1317 level += params->adev->vm_manager.root_level;
1318 amdgpu_gmc_get_pde_for_bo(entry->base.bo, level, &pt, &flags);
1319 pde = (entry - parent->entries) * 8;
1320 return vm->update_funcs->update(params, to_amdgpu_bo_vm(bo), pde, pt,
1325 * amdgpu_vm_invalidate_pds - mark all PDs as invalid
1327 * @adev: amdgpu_device pointer
1330 * Mark all PD level as invalid after an error.
1332 static void amdgpu_vm_invalidate_pds(struct amdgpu_device *adev,
1333 struct amdgpu_vm *vm)
1335 struct amdgpu_vm_pt_cursor cursor;
1336 struct amdgpu_vm_pt *entry;
1338 for_each_amdgpu_vm_pt_dfs_safe(adev, vm, NULL, cursor, entry)
1339 if (entry->base.bo && !entry->base.moved)
1340 amdgpu_vm_bo_relocated(&entry->base);
1344 * amdgpu_vm_update_pdes - make sure that all directories are valid
1346 * @adev: amdgpu_device pointer
1348 * @immediate: submit immediately to the paging queue
1350 * Makes sure all directories are up to date.
1353 * 0 for success, error for failure.
1355 int amdgpu_vm_update_pdes(struct amdgpu_device *adev,
1356 struct amdgpu_vm *vm, bool immediate)
1358 struct amdgpu_vm_update_params params;
1361 if (list_empty(&vm->relocated))
1364 memset(¶ms, 0, sizeof(params));
1367 params.immediate = immediate;
1369 r = vm->update_funcs->prepare(¶ms, NULL, AMDGPU_SYNC_EXPLICIT);
1373 while (!list_empty(&vm->relocated)) {
1374 struct amdgpu_vm_pt *entry;
1376 entry = list_first_entry(&vm->relocated, struct amdgpu_vm_pt,
1378 amdgpu_vm_bo_idle(&entry->base);
1380 r = amdgpu_vm_update_pde(¶ms, vm, entry);
1385 r = vm->update_funcs->commit(¶ms, &vm->last_update);
1391 amdgpu_vm_invalidate_pds(adev, vm);
1396 * amdgpu_vm_update_flags - figure out flags for PTE updates
1398 * Make sure to set the right flags for the PTEs at the desired level.
1400 static void amdgpu_vm_update_flags(struct amdgpu_vm_update_params *params,
1401 struct amdgpu_bo_vm *pt, unsigned int level,
1402 uint64_t pe, uint64_t addr,
1403 unsigned int count, uint32_t incr,
1407 if (level != AMDGPU_VM_PTB) {
1408 flags |= AMDGPU_PDE_PTE;
1409 amdgpu_gmc_get_vm_pde(params->adev, level, &addr, &flags);
1411 } else if (params->adev->asic_type >= CHIP_VEGA10 &&
1412 !(flags & AMDGPU_PTE_VALID) &&
1413 !(flags & AMDGPU_PTE_PRT)) {
1415 /* Workaround for fault priority problem on GMC9 */
1416 flags |= AMDGPU_PTE_EXECUTABLE;
1419 params->vm->update_funcs->update(params, pt, pe, addr, count, incr,
1424 * amdgpu_vm_fragment - get fragment for PTEs
1426 * @params: see amdgpu_vm_update_params definition
1427 * @start: first PTE to handle
1428 * @end: last PTE to handle
1429 * @flags: hw mapping flags
1430 * @frag: resulting fragment size
1431 * @frag_end: end of this fragment
1433 * Returns the first possible fragment for the start and end address.
1435 static void amdgpu_vm_fragment(struct amdgpu_vm_update_params *params,
1436 uint64_t start, uint64_t end, uint64_t flags,
1437 unsigned int *frag, uint64_t *frag_end)
1440 * The MC L1 TLB supports variable sized pages, based on a fragment
1441 * field in the PTE. When this field is set to a non-zero value, page
1442 * granularity is increased from 4KB to (1 << (12 + frag)). The PTE
1443 * flags are considered valid for all PTEs within the fragment range
1444 * and corresponding mappings are assumed to be physically contiguous.
1446 * The L1 TLB can store a single PTE for the whole fragment,
1447 * significantly increasing the space available for translation
1448 * caching. This leads to large improvements in throughput when the
1449 * TLB is under pressure.
1451 * The L2 TLB distributes small and large fragments into two
1452 * asymmetric partitions. The large fragment cache is significantly
1453 * larger. Thus, we try to use large fragments wherever possible.
1454 * Userspace can support this by aligning virtual base address and
1455 * allocation size to the fragment size.
1457 * Starting with Vega10 the fragment size only controls the L1. The L2
1458 * is now directly feed with small/huge/giant pages from the walker.
1462 if (params->adev->asic_type < CHIP_VEGA10)
1463 max_frag = params->adev->vm_manager.fragment_size;
1467 /* system pages are non continuously */
1468 if (params->pages_addr) {
1474 /* This intentionally wraps around if no bit is set */
1475 *frag = min((unsigned)ffs(start) - 1, (unsigned)fls64(end - start) - 1);
1476 if (*frag >= max_frag) {
1478 *frag_end = end & ~((1ULL << max_frag) - 1);
1480 *frag_end = start + (1 << *frag);
1485 * amdgpu_vm_update_ptes - make sure that page tables are valid
1487 * @params: see amdgpu_vm_update_params definition
1488 * @start: start of GPU address range
1489 * @end: end of GPU address range
1490 * @dst: destination address to map to, the next dst inside the function
1491 * @flags: mapping flags
1493 * Update the page tables in the range @start - @end.
1496 * 0 for success, -EINVAL for failure.
1498 static int amdgpu_vm_update_ptes(struct amdgpu_vm_update_params *params,
1499 uint64_t start, uint64_t end,
1500 uint64_t dst, uint64_t flags)
1502 struct amdgpu_device *adev = params->adev;
1503 struct amdgpu_vm_pt_cursor cursor;
1504 uint64_t frag_start = start, frag_end;
1508 /* figure out the initial fragment */
1509 amdgpu_vm_fragment(params, frag_start, end, flags, &frag, &frag_end);
1511 /* walk over the address space and update the PTs */
1512 amdgpu_vm_pt_start(adev, params->vm, start, &cursor);
1513 while (cursor.pfn < end) {
1514 unsigned shift, parent_shift, mask;
1515 uint64_t incr, entry_end, pe_start;
1516 struct amdgpu_bo *pt;
1518 if (!params->unlocked) {
1519 /* make sure that the page tables covering the
1520 * address range are actually allocated
1522 r = amdgpu_vm_alloc_pts(params->adev, params->vm,
1523 &cursor, params->immediate);
1528 shift = amdgpu_vm_level_shift(adev, cursor.level);
1529 parent_shift = amdgpu_vm_level_shift(adev, cursor.level - 1);
1530 if (params->unlocked) {
1531 /* Unlocked updates are only allowed on the leaves */
1532 if (amdgpu_vm_pt_descendant(adev, &cursor))
1534 } else if (adev->asic_type < CHIP_VEGA10 &&
1535 (flags & AMDGPU_PTE_VALID)) {
1536 /* No huge page support before GMC v9 */
1537 if (cursor.level != AMDGPU_VM_PTB) {
1538 if (!amdgpu_vm_pt_descendant(adev, &cursor))
1542 } else if (frag < shift) {
1543 /* We can't use this level when the fragment size is
1544 * smaller than the address shift. Go to the next
1545 * child entry and try again.
1547 if (amdgpu_vm_pt_descendant(adev, &cursor))
1549 } else if (frag >= parent_shift) {
1550 /* If the fragment size is even larger than the parent
1551 * shift we should go up one level and check it again.
1553 if (!amdgpu_vm_pt_ancestor(&cursor))
1558 pt = cursor.entry->base.bo;
1560 /* We need all PDs and PTs for mapping something, */
1561 if (flags & AMDGPU_PTE_VALID)
1564 /* but unmapping something can happen at a higher
1567 if (!amdgpu_vm_pt_ancestor(&cursor))
1570 pt = cursor.entry->base.bo;
1571 shift = parent_shift;
1572 frag_end = max(frag_end, ALIGN(frag_start + 1,
1576 /* Looks good so far, calculate parameters for the update */
1577 incr = (uint64_t)AMDGPU_GPU_PAGE_SIZE << shift;
1578 mask = amdgpu_vm_entries_mask(adev, cursor.level);
1579 pe_start = ((cursor.pfn >> shift) & mask) * 8;
1580 entry_end = ((uint64_t)mask + 1) << shift;
1581 entry_end += cursor.pfn & ~(entry_end - 1);
1582 entry_end = min(entry_end, end);
1585 struct amdgpu_vm *vm = params->vm;
1586 uint64_t upd_end = min(entry_end, frag_end);
1587 unsigned nptes = (upd_end - frag_start) >> shift;
1588 uint64_t upd_flags = flags | AMDGPU_PTE_FRAG(frag);
1590 /* This can happen when we set higher level PDs to
1591 * silent to stop fault floods.
1593 nptes = max(nptes, 1u);
1595 trace_amdgpu_vm_update_ptes(params, frag_start, upd_end,
1596 nptes, dst, incr, upd_flags,
1598 vm->immediate.fence_context);
1599 amdgpu_vm_update_flags(params, to_amdgpu_bo_vm(pt),
1600 cursor.level, pe_start, dst,
1601 nptes, incr, upd_flags);
1603 pe_start += nptes * 8;
1604 dst += nptes * incr;
1606 frag_start = upd_end;
1607 if (frag_start >= frag_end) {
1608 /* figure out the next fragment */
1609 amdgpu_vm_fragment(params, frag_start, end,
1610 flags, &frag, &frag_end);
1614 } while (frag_start < entry_end);
1616 if (amdgpu_vm_pt_descendant(adev, &cursor)) {
1617 /* Free all child entries.
1618 * Update the tables with the flags and addresses and free up subsequent
1619 * tables in the case of huge pages or freed up areas.
1620 * This is the maximum you can free, because all other page tables are not
1621 * completely covered by the range and so potentially still in use.
1623 while (cursor.pfn < frag_start) {
1624 /* Make sure previous mapping is freed */
1625 if (cursor.entry->base.bo) {
1626 params->table_freed = true;
1627 amdgpu_vm_free_pts(adev, params->vm, &cursor);
1629 amdgpu_vm_pt_next(adev, &cursor);
1632 } else if (frag >= shift) {
1633 /* or just move on to the next on the same level. */
1634 amdgpu_vm_pt_next(adev, &cursor);
1642 * amdgpu_vm_bo_update_mapping - update a mapping in the vm page table
1644 * @adev: amdgpu_device pointer of the VM
1645 * @bo_adev: amdgpu_device pointer of the mapped BO
1647 * @immediate: immediate submission in a page fault
1648 * @unlocked: unlocked invalidation during MM callback
1649 * @resv: fences we need to sync to
1650 * @start: start of mapped range
1651 * @last: last mapped entry
1652 * @flags: flags for the entries
1653 * @offset: offset into nodes and pages_addr
1654 * @res: ttm_resource to map
1655 * @pages_addr: DMA addresses to use for mapping
1656 * @fence: optional resulting fence
1657 * @table_freed: return true if page table is freed
1659 * Fill in the page table entries between @start and @last.
1662 * 0 for success, -EINVAL for failure.
1664 int amdgpu_vm_bo_update_mapping(struct amdgpu_device *adev,
1665 struct amdgpu_device *bo_adev,
1666 struct amdgpu_vm *vm, bool immediate,
1667 bool unlocked, struct dma_resv *resv,
1668 uint64_t start, uint64_t last,
1669 uint64_t flags, uint64_t offset,
1670 struct ttm_resource *res,
1671 dma_addr_t *pages_addr,
1672 struct dma_fence **fence,
1675 struct amdgpu_vm_update_params params;
1676 struct amdgpu_res_cursor cursor;
1677 enum amdgpu_sync_mode sync_mode;
1680 if (!drm_dev_enter(&adev->ddev, &idx))
1683 memset(¶ms, 0, sizeof(params));
1686 params.immediate = immediate;
1687 params.pages_addr = pages_addr;
1688 params.unlocked = unlocked;
1690 /* Implicitly sync to command submissions in the same VM before
1691 * unmapping. Sync to moving fences before mapping.
1693 if (!(flags & AMDGPU_PTE_VALID))
1694 sync_mode = AMDGPU_SYNC_EQ_OWNER;
1696 sync_mode = AMDGPU_SYNC_EXPLICIT;
1698 amdgpu_vm_eviction_lock(vm);
1704 if (!unlocked && !dma_fence_is_signaled(vm->last_unlocked)) {
1705 struct dma_fence *tmp = dma_fence_get_stub();
1707 amdgpu_bo_fence(vm->root.base.bo, vm->last_unlocked, true);
1708 swap(vm->last_unlocked, tmp);
1712 r = vm->update_funcs->prepare(¶ms, resv, sync_mode);
1716 amdgpu_res_first(res, offset, (last - start + 1) * AMDGPU_GPU_PAGE_SIZE,
1718 while (cursor.remaining) {
1719 uint64_t tmp, num_entries, addr;
1721 num_entries = cursor.size >> AMDGPU_GPU_PAGE_SHIFT;
1723 bool contiguous = true;
1725 if (num_entries > AMDGPU_GPU_PAGES_IN_CPU_PAGE) {
1726 uint64_t pfn = cursor.start >> PAGE_SHIFT;
1729 contiguous = pages_addr[pfn + 1] ==
1730 pages_addr[pfn] + PAGE_SIZE;
1733 AMDGPU_GPU_PAGES_IN_CPU_PAGE;
1734 for (count = 2; count < tmp; ++count) {
1735 uint64_t idx = pfn + count;
1737 if (contiguous != (pages_addr[idx] ==
1738 pages_addr[idx - 1] + PAGE_SIZE))
1741 num_entries = count *
1742 AMDGPU_GPU_PAGES_IN_CPU_PAGE;
1746 addr = cursor.start;
1747 params.pages_addr = pages_addr;
1749 addr = pages_addr[cursor.start >> PAGE_SHIFT];
1750 params.pages_addr = NULL;
1753 } else if (flags & (AMDGPU_PTE_VALID | AMDGPU_PTE_PRT)) {
1754 addr = bo_adev->vm_manager.vram_base_offset +
1760 tmp = start + num_entries;
1761 r = amdgpu_vm_update_ptes(¶ms, start, tmp, addr, flags);
1765 amdgpu_res_next(&cursor, num_entries * AMDGPU_GPU_PAGE_SIZE);
1769 r = vm->update_funcs->commit(¶ms, fence);
1772 *table_freed = params.table_freed;
1775 amdgpu_vm_eviction_unlock(vm);
1780 void amdgpu_vm_get_memory(struct amdgpu_vm *vm, uint64_t *vram_mem,
1781 uint64_t *gtt_mem, uint64_t *cpu_mem)
1783 struct amdgpu_bo_va *bo_va, *tmp;
1785 list_for_each_entry_safe(bo_va, tmp, &vm->idle, base.vm_status) {
1786 if (!bo_va->base.bo)
1788 amdgpu_bo_get_memory(bo_va->base.bo, vram_mem,
1791 list_for_each_entry_safe(bo_va, tmp, &vm->evicted, base.vm_status) {
1792 if (!bo_va->base.bo)
1794 amdgpu_bo_get_memory(bo_va->base.bo, vram_mem,
1797 list_for_each_entry_safe(bo_va, tmp, &vm->relocated, base.vm_status) {
1798 if (!bo_va->base.bo)
1800 amdgpu_bo_get_memory(bo_va->base.bo, vram_mem,
1803 list_for_each_entry_safe(bo_va, tmp, &vm->moved, base.vm_status) {
1804 if (!bo_va->base.bo)
1806 amdgpu_bo_get_memory(bo_va->base.bo, vram_mem,
1809 spin_lock(&vm->invalidated_lock);
1810 list_for_each_entry_safe(bo_va, tmp, &vm->invalidated, base.vm_status) {
1811 if (!bo_va->base.bo)
1813 amdgpu_bo_get_memory(bo_va->base.bo, vram_mem,
1816 list_for_each_entry_safe(bo_va, tmp, &vm->done, base.vm_status) {
1817 if (!bo_va->base.bo)
1819 amdgpu_bo_get_memory(bo_va->base.bo, vram_mem,
1822 spin_unlock(&vm->invalidated_lock);
1825 * amdgpu_vm_bo_update - update all BO mappings in the vm page table
1827 * @adev: amdgpu_device pointer
1828 * @bo_va: requested BO and VM object
1829 * @clear: if true clear the entries
1831 * Fill in the page table entries for @bo_va.
1834 * 0 for success, -EINVAL for failure.
1836 int amdgpu_vm_bo_update(struct amdgpu_device *adev, struct amdgpu_bo_va *bo_va,
1839 struct amdgpu_bo *bo = bo_va->base.bo;
1840 struct amdgpu_vm *vm = bo_va->base.vm;
1841 struct amdgpu_bo_va_mapping *mapping;
1842 dma_addr_t *pages_addr = NULL;
1843 struct ttm_resource *mem;
1844 struct dma_fence **last_update;
1845 struct dma_resv *resv;
1847 struct amdgpu_device *bo_adev = adev;
1852 resv = vm->root.base.bo->tbo.base.resv;
1854 struct drm_gem_object *obj = &bo->tbo.base;
1856 resv = bo->tbo.base.resv;
1857 if (obj->import_attach && bo_va->is_xgmi) {
1858 struct dma_buf *dma_buf = obj->import_attach->dmabuf;
1859 struct drm_gem_object *gobj = dma_buf->priv;
1860 struct amdgpu_bo *abo = gem_to_amdgpu_bo(gobj);
1862 if (abo->tbo.resource->mem_type == TTM_PL_VRAM)
1863 bo = gem_to_amdgpu_bo(gobj);
1865 mem = bo->tbo.resource;
1866 if (mem->mem_type == TTM_PL_TT ||
1867 mem->mem_type == AMDGPU_PL_PREEMPT)
1868 pages_addr = bo->tbo.ttm->dma_address;
1872 flags = amdgpu_ttm_tt_pte_flags(adev, bo->tbo.ttm, mem);
1874 if (amdgpu_bo_encrypted(bo))
1875 flags |= AMDGPU_PTE_TMZ;
1877 bo_adev = amdgpu_ttm_adev(bo->tbo.bdev);
1882 if (clear || (bo && bo->tbo.base.resv ==
1883 vm->root.base.bo->tbo.base.resv))
1884 last_update = &vm->last_update;
1886 last_update = &bo_va->last_pt_update;
1888 if (!clear && bo_va->base.moved) {
1889 bo_va->base.moved = false;
1890 list_splice_init(&bo_va->valids, &bo_va->invalids);
1892 } else if (bo_va->cleared != clear) {
1893 list_splice_init(&bo_va->valids, &bo_va->invalids);
1896 list_for_each_entry(mapping, &bo_va->invalids, list) {
1897 uint64_t update_flags = flags;
1899 /* normally,bo_va->flags only contians READABLE and WIRTEABLE bit go here
1900 * but in case of something, we filter the flags in first place
1902 if (!(mapping->flags & AMDGPU_PTE_READABLE))
1903 update_flags &= ~AMDGPU_PTE_READABLE;
1904 if (!(mapping->flags & AMDGPU_PTE_WRITEABLE))
1905 update_flags &= ~AMDGPU_PTE_WRITEABLE;
1907 /* Apply ASIC specific mapping flags */
1908 amdgpu_gmc_get_vm_pte(adev, mapping, &update_flags);
1910 trace_amdgpu_vm_bo_update(mapping);
1912 r = amdgpu_vm_bo_update_mapping(adev, bo_adev, vm, false, false,
1913 resv, mapping->start,
1914 mapping->last, update_flags,
1915 mapping->offset, mem,
1916 pages_addr, last_update, NULL);
1921 /* If the BO is not in its preferred location add it back to
1922 * the evicted list so that it gets validated again on the
1923 * next command submission.
1925 if (bo && bo->tbo.base.resv == vm->root.base.bo->tbo.base.resv) {
1926 uint32_t mem_type = bo->tbo.resource->mem_type;
1928 if (!(bo->preferred_domains &
1929 amdgpu_mem_type_to_domain(mem_type)))
1930 amdgpu_vm_bo_evicted(&bo_va->base);
1932 amdgpu_vm_bo_idle(&bo_va->base);
1934 amdgpu_vm_bo_done(&bo_va->base);
1937 list_splice_init(&bo_va->invalids, &bo_va->valids);
1938 bo_va->cleared = clear;
1940 if (trace_amdgpu_vm_bo_mapping_enabled()) {
1941 list_for_each_entry(mapping, &bo_va->valids, list)
1942 trace_amdgpu_vm_bo_mapping(mapping);
1949 * amdgpu_vm_update_prt_state - update the global PRT state
1951 * @adev: amdgpu_device pointer
1953 static void amdgpu_vm_update_prt_state(struct amdgpu_device *adev)
1955 unsigned long flags;
1958 spin_lock_irqsave(&adev->vm_manager.prt_lock, flags);
1959 enable = !!atomic_read(&adev->vm_manager.num_prt_users);
1960 adev->gmc.gmc_funcs->set_prt(adev, enable);
1961 spin_unlock_irqrestore(&adev->vm_manager.prt_lock, flags);
1965 * amdgpu_vm_prt_get - add a PRT user
1967 * @adev: amdgpu_device pointer
1969 static void amdgpu_vm_prt_get(struct amdgpu_device *adev)
1971 if (!adev->gmc.gmc_funcs->set_prt)
1974 if (atomic_inc_return(&adev->vm_manager.num_prt_users) == 1)
1975 amdgpu_vm_update_prt_state(adev);
1979 * amdgpu_vm_prt_put - drop a PRT user
1981 * @adev: amdgpu_device pointer
1983 static void amdgpu_vm_prt_put(struct amdgpu_device *adev)
1985 if (atomic_dec_return(&adev->vm_manager.num_prt_users) == 0)
1986 amdgpu_vm_update_prt_state(adev);
1990 * amdgpu_vm_prt_cb - callback for updating the PRT status
1992 * @fence: fence for the callback
1993 * @_cb: the callback function
1995 static void amdgpu_vm_prt_cb(struct dma_fence *fence, struct dma_fence_cb *_cb)
1997 struct amdgpu_prt_cb *cb = container_of(_cb, struct amdgpu_prt_cb, cb);
1999 amdgpu_vm_prt_put(cb->adev);
2004 * amdgpu_vm_add_prt_cb - add callback for updating the PRT status
2006 * @adev: amdgpu_device pointer
2007 * @fence: fence for the callback
2009 static void amdgpu_vm_add_prt_cb(struct amdgpu_device *adev,
2010 struct dma_fence *fence)
2012 struct amdgpu_prt_cb *cb;
2014 if (!adev->gmc.gmc_funcs->set_prt)
2017 cb = kmalloc(sizeof(struct amdgpu_prt_cb), GFP_KERNEL);
2019 /* Last resort when we are OOM */
2021 dma_fence_wait(fence, false);
2023 amdgpu_vm_prt_put(adev);
2026 if (!fence || dma_fence_add_callback(fence, &cb->cb,
2028 amdgpu_vm_prt_cb(fence, &cb->cb);
2033 * amdgpu_vm_free_mapping - free a mapping
2035 * @adev: amdgpu_device pointer
2037 * @mapping: mapping to be freed
2038 * @fence: fence of the unmap operation
2040 * Free a mapping and make sure we decrease the PRT usage count if applicable.
2042 static void amdgpu_vm_free_mapping(struct amdgpu_device *adev,
2043 struct amdgpu_vm *vm,
2044 struct amdgpu_bo_va_mapping *mapping,
2045 struct dma_fence *fence)
2047 if (mapping->flags & AMDGPU_PTE_PRT)
2048 amdgpu_vm_add_prt_cb(adev, fence);
2053 * amdgpu_vm_prt_fini - finish all prt mappings
2055 * @adev: amdgpu_device pointer
2058 * Register a cleanup callback to disable PRT support after VM dies.
2060 static void amdgpu_vm_prt_fini(struct amdgpu_device *adev, struct amdgpu_vm *vm)
2062 struct dma_resv *resv = vm->root.base.bo->tbo.base.resv;
2063 struct dma_fence *excl, **shared;
2064 unsigned i, shared_count;
2067 r = dma_resv_get_fences(resv, &excl, &shared_count, &shared);
2069 /* Not enough memory to grab the fence list, as last resort
2070 * block for all the fences to complete.
2072 dma_resv_wait_timeout(resv, true, false,
2073 MAX_SCHEDULE_TIMEOUT);
2077 /* Add a callback for each fence in the reservation object */
2078 amdgpu_vm_prt_get(adev);
2079 amdgpu_vm_add_prt_cb(adev, excl);
2081 for (i = 0; i < shared_count; ++i) {
2082 amdgpu_vm_prt_get(adev);
2083 amdgpu_vm_add_prt_cb(adev, shared[i]);
2090 * amdgpu_vm_clear_freed - clear freed BOs in the PT
2092 * @adev: amdgpu_device pointer
2094 * @fence: optional resulting fence (unchanged if no work needed to be done
2095 * or if an error occurred)
2097 * Make sure all freed BOs are cleared in the PT.
2098 * PTs have to be reserved and mutex must be locked!
2104 int amdgpu_vm_clear_freed(struct amdgpu_device *adev,
2105 struct amdgpu_vm *vm,
2106 struct dma_fence **fence)
2108 struct dma_resv *resv = vm->root.base.bo->tbo.base.resv;
2109 struct amdgpu_bo_va_mapping *mapping;
2110 uint64_t init_pte_value = 0;
2111 struct dma_fence *f = NULL;
2114 while (!list_empty(&vm->freed)) {
2115 mapping = list_first_entry(&vm->freed,
2116 struct amdgpu_bo_va_mapping, list);
2117 list_del(&mapping->list);
2119 if (vm->pte_support_ats &&
2120 mapping->start < AMDGPU_GMC_HOLE_START)
2121 init_pte_value = AMDGPU_PTE_DEFAULT_ATC;
2123 r = amdgpu_vm_bo_update_mapping(adev, adev, vm, false, false,
2124 resv, mapping->start,
2125 mapping->last, init_pte_value,
2126 0, NULL, NULL, &f, NULL);
2127 amdgpu_vm_free_mapping(adev, vm, mapping, f);
2135 dma_fence_put(*fence);
2146 * amdgpu_vm_handle_moved - handle moved BOs in the PT
2148 * @adev: amdgpu_device pointer
2151 * Make sure all BOs which are moved are updated in the PTs.
2156 * PTs have to be reserved!
2158 int amdgpu_vm_handle_moved(struct amdgpu_device *adev,
2159 struct amdgpu_vm *vm)
2161 struct amdgpu_bo_va *bo_va, *tmp;
2162 struct dma_resv *resv;
2166 list_for_each_entry_safe(bo_va, tmp, &vm->moved, base.vm_status) {
2167 /* Per VM BOs never need to bo cleared in the page tables */
2168 r = amdgpu_vm_bo_update(adev, bo_va, false);
2173 spin_lock(&vm->invalidated_lock);
2174 while (!list_empty(&vm->invalidated)) {
2175 bo_va = list_first_entry(&vm->invalidated, struct amdgpu_bo_va,
2177 resv = bo_va->base.bo->tbo.base.resv;
2178 spin_unlock(&vm->invalidated_lock);
2180 /* Try to reserve the BO to avoid clearing its ptes */
2181 if (!amdgpu_vm_debug && dma_resv_trylock(resv))
2183 /* Somebody else is using the BO right now */
2187 r = amdgpu_vm_bo_update(adev, bo_va, clear);
2192 dma_resv_unlock(resv);
2193 spin_lock(&vm->invalidated_lock);
2195 spin_unlock(&vm->invalidated_lock);
2201 * amdgpu_vm_bo_add - add a bo to a specific vm
2203 * @adev: amdgpu_device pointer
2205 * @bo: amdgpu buffer object
2207 * Add @bo into the requested vm.
2208 * Add @bo to the list of bos associated with the vm
2211 * Newly added bo_va or NULL for failure
2213 * Object has to be reserved!
2215 struct amdgpu_bo_va *amdgpu_vm_bo_add(struct amdgpu_device *adev,
2216 struct amdgpu_vm *vm,
2217 struct amdgpu_bo *bo)
2219 struct amdgpu_bo_va *bo_va;
2221 bo_va = kzalloc(sizeof(struct amdgpu_bo_va), GFP_KERNEL);
2222 if (bo_va == NULL) {
2225 amdgpu_vm_bo_base_init(&bo_va->base, vm, bo);
2227 bo_va->ref_count = 1;
2228 INIT_LIST_HEAD(&bo_va->valids);
2229 INIT_LIST_HEAD(&bo_va->invalids);
2234 if (amdgpu_dmabuf_is_xgmi_accessible(adev, bo)) {
2235 bo_va->is_xgmi = true;
2236 /* Power up XGMI if it can be potentially used */
2237 amdgpu_xgmi_set_pstate(adev, AMDGPU_XGMI_PSTATE_MAX_VEGA20);
2245 * amdgpu_vm_bo_insert_map - insert a new mapping
2247 * @adev: amdgpu_device pointer
2248 * @bo_va: bo_va to store the address
2249 * @mapping: the mapping to insert
2251 * Insert a new mapping into all structures.
2253 static void amdgpu_vm_bo_insert_map(struct amdgpu_device *adev,
2254 struct amdgpu_bo_va *bo_va,
2255 struct amdgpu_bo_va_mapping *mapping)
2257 struct amdgpu_vm *vm = bo_va->base.vm;
2258 struct amdgpu_bo *bo = bo_va->base.bo;
2260 mapping->bo_va = bo_va;
2261 list_add(&mapping->list, &bo_va->invalids);
2262 amdgpu_vm_it_insert(mapping, &vm->va);
2264 if (mapping->flags & AMDGPU_PTE_PRT)
2265 amdgpu_vm_prt_get(adev);
2267 if (bo && bo->tbo.base.resv == vm->root.base.bo->tbo.base.resv &&
2268 !bo_va->base.moved) {
2269 list_move(&bo_va->base.vm_status, &vm->moved);
2271 trace_amdgpu_vm_bo_map(bo_va, mapping);
2275 * amdgpu_vm_bo_map - map bo inside a vm
2277 * @adev: amdgpu_device pointer
2278 * @bo_va: bo_va to store the address
2279 * @saddr: where to map the BO
2280 * @offset: requested offset in the BO
2281 * @size: BO size in bytes
2282 * @flags: attributes of pages (read/write/valid/etc.)
2284 * Add a mapping of the BO at the specefied addr into the VM.
2287 * 0 for success, error for failure.
2289 * Object has to be reserved and unreserved outside!
2291 int amdgpu_vm_bo_map(struct amdgpu_device *adev,
2292 struct amdgpu_bo_va *bo_va,
2293 uint64_t saddr, uint64_t offset,
2294 uint64_t size, uint64_t flags)
2296 struct amdgpu_bo_va_mapping *mapping, *tmp;
2297 struct amdgpu_bo *bo = bo_va->base.bo;
2298 struct amdgpu_vm *vm = bo_va->base.vm;
2301 /* validate the parameters */
2302 if (saddr & ~PAGE_MASK || offset & ~PAGE_MASK ||
2303 size == 0 || size & ~PAGE_MASK)
2306 /* make sure object fit at this offset */
2307 eaddr = saddr + size - 1;
2308 if (saddr >= eaddr ||
2309 (bo && offset + size > amdgpu_bo_size(bo)) ||
2310 (eaddr >= adev->vm_manager.max_pfn << AMDGPU_GPU_PAGE_SHIFT))
2313 saddr /= AMDGPU_GPU_PAGE_SIZE;
2314 eaddr /= AMDGPU_GPU_PAGE_SIZE;
2316 tmp = amdgpu_vm_it_iter_first(&vm->va, saddr, eaddr);
2318 /* bo and tmp overlap, invalid addr */
2319 dev_err(adev->dev, "bo %p va 0x%010Lx-0x%010Lx conflict with "
2320 "0x%010Lx-0x%010Lx\n", bo, saddr, eaddr,
2321 tmp->start, tmp->last + 1);
2325 mapping = kmalloc(sizeof(*mapping), GFP_KERNEL);
2329 mapping->start = saddr;
2330 mapping->last = eaddr;
2331 mapping->offset = offset;
2332 mapping->flags = flags;
2334 amdgpu_vm_bo_insert_map(adev, bo_va, mapping);
2340 * amdgpu_vm_bo_replace_map - map bo inside a vm, replacing existing mappings
2342 * @adev: amdgpu_device pointer
2343 * @bo_va: bo_va to store the address
2344 * @saddr: where to map the BO
2345 * @offset: requested offset in the BO
2346 * @size: BO size in bytes
2347 * @flags: attributes of pages (read/write/valid/etc.)
2349 * Add a mapping of the BO at the specefied addr into the VM. Replace existing
2350 * mappings as we do so.
2353 * 0 for success, error for failure.
2355 * Object has to be reserved and unreserved outside!
2357 int amdgpu_vm_bo_replace_map(struct amdgpu_device *adev,
2358 struct amdgpu_bo_va *bo_va,
2359 uint64_t saddr, uint64_t offset,
2360 uint64_t size, uint64_t flags)
2362 struct amdgpu_bo_va_mapping *mapping;
2363 struct amdgpu_bo *bo = bo_va->base.bo;
2367 /* validate the parameters */
2368 if (saddr & ~PAGE_MASK || offset & ~PAGE_MASK ||
2369 size == 0 || size & ~PAGE_MASK)
2372 /* make sure object fit at this offset */
2373 eaddr = saddr + size - 1;
2374 if (saddr >= eaddr ||
2375 (bo && offset + size > amdgpu_bo_size(bo)) ||
2376 (eaddr >= adev->vm_manager.max_pfn << AMDGPU_GPU_PAGE_SHIFT))
2379 /* Allocate all the needed memory */
2380 mapping = kmalloc(sizeof(*mapping), GFP_KERNEL);
2384 r = amdgpu_vm_bo_clear_mappings(adev, bo_va->base.vm, saddr, size);
2390 saddr /= AMDGPU_GPU_PAGE_SIZE;
2391 eaddr /= AMDGPU_GPU_PAGE_SIZE;
2393 mapping->start = saddr;
2394 mapping->last = eaddr;
2395 mapping->offset = offset;
2396 mapping->flags = flags;
2398 amdgpu_vm_bo_insert_map(adev, bo_va, mapping);
2404 * amdgpu_vm_bo_unmap - remove bo mapping from vm
2406 * @adev: amdgpu_device pointer
2407 * @bo_va: bo_va to remove the address from
2408 * @saddr: where to the BO is mapped
2410 * Remove a mapping of the BO at the specefied addr from the VM.
2413 * 0 for success, error for failure.
2415 * Object has to be reserved and unreserved outside!
2417 int amdgpu_vm_bo_unmap(struct amdgpu_device *adev,
2418 struct amdgpu_bo_va *bo_va,
2421 struct amdgpu_bo_va_mapping *mapping;
2422 struct amdgpu_vm *vm = bo_va->base.vm;
2425 saddr /= AMDGPU_GPU_PAGE_SIZE;
2427 list_for_each_entry(mapping, &bo_va->valids, list) {
2428 if (mapping->start == saddr)
2432 if (&mapping->list == &bo_va->valids) {
2435 list_for_each_entry(mapping, &bo_va->invalids, list) {
2436 if (mapping->start == saddr)
2440 if (&mapping->list == &bo_va->invalids)
2444 list_del(&mapping->list);
2445 amdgpu_vm_it_remove(mapping, &vm->va);
2446 mapping->bo_va = NULL;
2447 trace_amdgpu_vm_bo_unmap(bo_va, mapping);
2450 list_add(&mapping->list, &vm->freed);
2452 amdgpu_vm_free_mapping(adev, vm, mapping,
2453 bo_va->last_pt_update);
2459 * amdgpu_vm_bo_clear_mappings - remove all mappings in a specific range
2461 * @adev: amdgpu_device pointer
2462 * @vm: VM structure to use
2463 * @saddr: start of the range
2464 * @size: size of the range
2466 * Remove all mappings in a range, split them as appropriate.
2469 * 0 for success, error for failure.
2471 int amdgpu_vm_bo_clear_mappings(struct amdgpu_device *adev,
2472 struct amdgpu_vm *vm,
2473 uint64_t saddr, uint64_t size)
2475 struct amdgpu_bo_va_mapping *before, *after, *tmp, *next;
2479 eaddr = saddr + size - 1;
2480 saddr /= AMDGPU_GPU_PAGE_SIZE;
2481 eaddr /= AMDGPU_GPU_PAGE_SIZE;
2483 /* Allocate all the needed memory */
2484 before = kzalloc(sizeof(*before), GFP_KERNEL);
2487 INIT_LIST_HEAD(&before->list);
2489 after = kzalloc(sizeof(*after), GFP_KERNEL);
2494 INIT_LIST_HEAD(&after->list);
2496 /* Now gather all removed mappings */
2497 tmp = amdgpu_vm_it_iter_first(&vm->va, saddr, eaddr);
2499 /* Remember mapping split at the start */
2500 if (tmp->start < saddr) {
2501 before->start = tmp->start;
2502 before->last = saddr - 1;
2503 before->offset = tmp->offset;
2504 before->flags = tmp->flags;
2505 before->bo_va = tmp->bo_va;
2506 list_add(&before->list, &tmp->bo_va->invalids);
2509 /* Remember mapping split at the end */
2510 if (tmp->last > eaddr) {
2511 after->start = eaddr + 1;
2512 after->last = tmp->last;
2513 after->offset = tmp->offset;
2514 after->offset += (after->start - tmp->start) << PAGE_SHIFT;
2515 after->flags = tmp->flags;
2516 after->bo_va = tmp->bo_va;
2517 list_add(&after->list, &tmp->bo_va->invalids);
2520 list_del(&tmp->list);
2521 list_add(&tmp->list, &removed);
2523 tmp = amdgpu_vm_it_iter_next(tmp, saddr, eaddr);
2526 /* And free them up */
2527 list_for_each_entry_safe(tmp, next, &removed, list) {
2528 amdgpu_vm_it_remove(tmp, &vm->va);
2529 list_del(&tmp->list);
2531 if (tmp->start < saddr)
2533 if (tmp->last > eaddr)
2537 list_add(&tmp->list, &vm->freed);
2538 trace_amdgpu_vm_bo_unmap(NULL, tmp);
2541 /* Insert partial mapping before the range */
2542 if (!list_empty(&before->list)) {
2543 amdgpu_vm_it_insert(before, &vm->va);
2544 if (before->flags & AMDGPU_PTE_PRT)
2545 amdgpu_vm_prt_get(adev);
2550 /* Insert partial mapping after the range */
2551 if (!list_empty(&after->list)) {
2552 amdgpu_vm_it_insert(after, &vm->va);
2553 if (after->flags & AMDGPU_PTE_PRT)
2554 amdgpu_vm_prt_get(adev);
2563 * amdgpu_vm_bo_lookup_mapping - find mapping by address
2565 * @vm: the requested VM
2566 * @addr: the address
2568 * Find a mapping by it's address.
2571 * The amdgpu_bo_va_mapping matching for addr or NULL
2574 struct amdgpu_bo_va_mapping *amdgpu_vm_bo_lookup_mapping(struct amdgpu_vm *vm,
2577 return amdgpu_vm_it_iter_first(&vm->va, addr, addr);
2581 * amdgpu_vm_bo_trace_cs - trace all reserved mappings
2583 * @vm: the requested vm
2584 * @ticket: CS ticket
2586 * Trace all mappings of BOs reserved during a command submission.
2588 void amdgpu_vm_bo_trace_cs(struct amdgpu_vm *vm, struct ww_acquire_ctx *ticket)
2590 struct amdgpu_bo_va_mapping *mapping;
2592 if (!trace_amdgpu_vm_bo_cs_enabled())
2595 for (mapping = amdgpu_vm_it_iter_first(&vm->va, 0, U64_MAX); mapping;
2596 mapping = amdgpu_vm_it_iter_next(mapping, 0, U64_MAX)) {
2597 if (mapping->bo_va && mapping->bo_va->base.bo) {
2598 struct amdgpu_bo *bo;
2600 bo = mapping->bo_va->base.bo;
2601 if (dma_resv_locking_ctx(bo->tbo.base.resv) !=
2606 trace_amdgpu_vm_bo_cs(mapping);
2611 * amdgpu_vm_bo_rmv - remove a bo to a specific vm
2613 * @adev: amdgpu_device pointer
2614 * @bo_va: requested bo_va
2616 * Remove @bo_va->bo from the requested vm.
2618 * Object have to be reserved!
2620 void amdgpu_vm_bo_rmv(struct amdgpu_device *adev,
2621 struct amdgpu_bo_va *bo_va)
2623 struct amdgpu_bo_va_mapping *mapping, *next;
2624 struct amdgpu_bo *bo = bo_va->base.bo;
2625 struct amdgpu_vm *vm = bo_va->base.vm;
2626 struct amdgpu_vm_bo_base **base;
2629 if (bo->tbo.base.resv == vm->root.base.bo->tbo.base.resv)
2630 vm->bulk_moveable = false;
2632 for (base = &bo_va->base.bo->vm_bo; *base;
2633 base = &(*base)->next) {
2634 if (*base != &bo_va->base)
2637 *base = bo_va->base.next;
2642 spin_lock(&vm->invalidated_lock);
2643 list_del(&bo_va->base.vm_status);
2644 spin_unlock(&vm->invalidated_lock);
2646 list_for_each_entry_safe(mapping, next, &bo_va->valids, list) {
2647 list_del(&mapping->list);
2648 amdgpu_vm_it_remove(mapping, &vm->va);
2649 mapping->bo_va = NULL;
2650 trace_amdgpu_vm_bo_unmap(bo_va, mapping);
2651 list_add(&mapping->list, &vm->freed);
2653 list_for_each_entry_safe(mapping, next, &bo_va->invalids, list) {
2654 list_del(&mapping->list);
2655 amdgpu_vm_it_remove(mapping, &vm->va);
2656 amdgpu_vm_free_mapping(adev, vm, mapping,
2657 bo_va->last_pt_update);
2660 dma_fence_put(bo_va->last_pt_update);
2662 if (bo && bo_va->is_xgmi)
2663 amdgpu_xgmi_set_pstate(adev, AMDGPU_XGMI_PSTATE_MIN);
2669 * amdgpu_vm_evictable - check if we can evict a VM
2671 * @bo: A page table of the VM.
2673 * Check if it is possible to evict a VM.
2675 bool amdgpu_vm_evictable(struct amdgpu_bo *bo)
2677 struct amdgpu_vm_bo_base *bo_base = bo->vm_bo;
2679 /* Page tables of a destroyed VM can go away immediately */
2680 if (!bo_base || !bo_base->vm)
2683 /* Don't evict VM page tables while they are busy */
2684 if (!dma_resv_test_signaled(bo->tbo.base.resv, true))
2687 /* Try to block ongoing updates */
2688 if (!amdgpu_vm_eviction_trylock(bo_base->vm))
2691 /* Don't evict VM page tables while they are updated */
2692 if (!dma_fence_is_signaled(bo_base->vm->last_unlocked)) {
2693 amdgpu_vm_eviction_unlock(bo_base->vm);
2697 bo_base->vm->evicting = true;
2698 amdgpu_vm_eviction_unlock(bo_base->vm);
2703 * amdgpu_vm_bo_invalidate - mark the bo as invalid
2705 * @adev: amdgpu_device pointer
2706 * @bo: amdgpu buffer object
2707 * @evicted: is the BO evicted
2709 * Mark @bo as invalid.
2711 void amdgpu_vm_bo_invalidate(struct amdgpu_device *adev,
2712 struct amdgpu_bo *bo, bool evicted)
2714 struct amdgpu_vm_bo_base *bo_base;
2716 /* shadow bo doesn't have bo base, its validation needs its parent */
2717 if (bo->parent && (amdgpu_bo_shadowed(bo->parent) == bo))
2720 for (bo_base = bo->vm_bo; bo_base; bo_base = bo_base->next) {
2721 struct amdgpu_vm *vm = bo_base->vm;
2723 if (evicted && bo->tbo.base.resv == vm->root.base.bo->tbo.base.resv) {
2724 amdgpu_vm_bo_evicted(bo_base);
2730 bo_base->moved = true;
2732 if (bo->tbo.type == ttm_bo_type_kernel)
2733 amdgpu_vm_bo_relocated(bo_base);
2734 else if (bo->tbo.base.resv == vm->root.base.bo->tbo.base.resv)
2735 amdgpu_vm_bo_moved(bo_base);
2737 amdgpu_vm_bo_invalidated(bo_base);
2742 * amdgpu_vm_get_block_size - calculate VM page table size as power of two
2747 * VM page table as power of two
2749 static uint32_t amdgpu_vm_get_block_size(uint64_t vm_size)
2751 /* Total bits covered by PD + PTs */
2752 unsigned bits = ilog2(vm_size) + 18;
2754 /* Make sure the PD is 4K in size up to 8GB address space.
2755 Above that split equal between PD and PTs */
2759 return ((bits + 3) / 2);
2763 * amdgpu_vm_adjust_size - adjust vm size, block size and fragment size
2765 * @adev: amdgpu_device pointer
2766 * @min_vm_size: the minimum vm size in GB if it's set auto
2767 * @fragment_size_default: Default PTE fragment size
2768 * @max_level: max VMPT level
2769 * @max_bits: max address space size in bits
2772 void amdgpu_vm_adjust_size(struct amdgpu_device *adev, uint32_t min_vm_size,
2773 uint32_t fragment_size_default, unsigned max_level,
2776 unsigned int max_size = 1 << (max_bits - 30);
2777 unsigned int vm_size;
2780 /* adjust vm size first */
2781 if (amdgpu_vm_size != -1) {
2782 vm_size = amdgpu_vm_size;
2783 if (vm_size > max_size) {
2784 dev_warn(adev->dev, "VM size (%d) too large, max is %u GB\n",
2785 amdgpu_vm_size, max_size);
2790 unsigned int phys_ram_gb;
2792 /* Optimal VM size depends on the amount of physical
2793 * RAM available. Underlying requirements and
2796 * - Need to map system memory and VRAM from all GPUs
2797 * - VRAM from other GPUs not known here
2798 * - Assume VRAM <= system memory
2799 * - On GFX8 and older, VM space can be segmented for
2801 * - Need to allow room for fragmentation, guard pages etc.
2803 * This adds up to a rough guess of system memory x3.
2804 * Round up to power of two to maximize the available
2805 * VM size with the given page table size.
2808 phys_ram_gb = ((uint64_t)si.totalram * si.mem_unit +
2809 (1 << 30) - 1) >> 30;
2810 vm_size = roundup_pow_of_two(
2811 min(max(phys_ram_gb * 3, min_vm_size), max_size));
2814 adev->vm_manager.max_pfn = (uint64_t)vm_size << 18;
2816 tmp = roundup_pow_of_two(adev->vm_manager.max_pfn);
2817 if (amdgpu_vm_block_size != -1)
2818 tmp >>= amdgpu_vm_block_size - 9;
2819 tmp = DIV_ROUND_UP(fls64(tmp) - 1, 9) - 1;
2820 adev->vm_manager.num_level = min(max_level, (unsigned)tmp);
2821 switch (adev->vm_manager.num_level) {
2823 adev->vm_manager.root_level = AMDGPU_VM_PDB2;
2826 adev->vm_manager.root_level = AMDGPU_VM_PDB1;
2829 adev->vm_manager.root_level = AMDGPU_VM_PDB0;
2832 dev_err(adev->dev, "VMPT only supports 2~4+1 levels\n");
2834 /* block size depends on vm size and hw setup*/
2835 if (amdgpu_vm_block_size != -1)
2836 adev->vm_manager.block_size =
2837 min((unsigned)amdgpu_vm_block_size, max_bits
2838 - AMDGPU_GPU_PAGE_SHIFT
2839 - 9 * adev->vm_manager.num_level);
2840 else if (adev->vm_manager.num_level > 1)
2841 adev->vm_manager.block_size = 9;
2843 adev->vm_manager.block_size = amdgpu_vm_get_block_size(tmp);
2845 if (amdgpu_vm_fragment_size == -1)
2846 adev->vm_manager.fragment_size = fragment_size_default;
2848 adev->vm_manager.fragment_size = amdgpu_vm_fragment_size;
2850 DRM_INFO("vm size is %u GB, %u levels, block size is %u-bit, fragment size is %u-bit\n",
2851 vm_size, adev->vm_manager.num_level + 1,
2852 adev->vm_manager.block_size,
2853 adev->vm_manager.fragment_size);
2857 * amdgpu_vm_wait_idle - wait for the VM to become idle
2859 * @vm: VM object to wait for
2860 * @timeout: timeout to wait for VM to become idle
2862 long amdgpu_vm_wait_idle(struct amdgpu_vm *vm, long timeout)
2864 timeout = dma_resv_wait_timeout(vm->root.base.bo->tbo.base.resv, true,
2869 return dma_fence_wait_timeout(vm->last_unlocked, true, timeout);
2873 * amdgpu_vm_init - initialize a vm instance
2875 * @adev: amdgpu_device pointer
2877 * @pasid: Process address space identifier
2882 * 0 for success, error for failure.
2884 int amdgpu_vm_init(struct amdgpu_device *adev, struct amdgpu_vm *vm, u32 pasid)
2886 struct amdgpu_bo *root_bo;
2887 struct amdgpu_bo_vm *root;
2890 vm->va = RB_ROOT_CACHED;
2891 for (i = 0; i < AMDGPU_MAX_VMHUBS; i++)
2892 vm->reserved_vmid[i] = NULL;
2893 INIT_LIST_HEAD(&vm->evicted);
2894 INIT_LIST_HEAD(&vm->relocated);
2895 INIT_LIST_HEAD(&vm->moved);
2896 INIT_LIST_HEAD(&vm->idle);
2897 INIT_LIST_HEAD(&vm->invalidated);
2898 spin_lock_init(&vm->invalidated_lock);
2899 INIT_LIST_HEAD(&vm->freed);
2900 INIT_LIST_HEAD(&vm->done);
2902 /* create scheduler entities for page table updates */
2903 r = drm_sched_entity_init(&vm->immediate, DRM_SCHED_PRIORITY_NORMAL,
2904 adev->vm_manager.vm_pte_scheds,
2905 adev->vm_manager.vm_pte_num_scheds, NULL);
2909 r = drm_sched_entity_init(&vm->delayed, DRM_SCHED_PRIORITY_NORMAL,
2910 adev->vm_manager.vm_pte_scheds,
2911 adev->vm_manager.vm_pte_num_scheds, NULL);
2913 goto error_free_immediate;
2915 vm->pte_support_ats = false;
2916 vm->is_compute_context = false;
2918 vm->use_cpu_for_update = !!(adev->vm_manager.vm_update_mode &
2919 AMDGPU_VM_USE_CPU_FOR_GFX);
2921 DRM_DEBUG_DRIVER("VM update mode is %s\n",
2922 vm->use_cpu_for_update ? "CPU" : "SDMA");
2923 WARN_ONCE((vm->use_cpu_for_update &&
2924 !amdgpu_gmc_vram_full_visible(&adev->gmc)),
2925 "CPU update of VM recommended only for large BAR system\n");
2927 if (vm->use_cpu_for_update)
2928 vm->update_funcs = &amdgpu_vm_cpu_funcs;
2930 vm->update_funcs = &amdgpu_vm_sdma_funcs;
2931 vm->last_update = NULL;
2932 vm->last_unlocked = dma_fence_get_stub();
2934 mutex_init(&vm->eviction_lock);
2935 vm->evicting = false;
2937 r = amdgpu_vm_pt_create(adev, vm, adev->vm_manager.root_level,
2940 goto error_free_delayed;
2941 root_bo = &root->bo;
2942 r = amdgpu_bo_reserve(root_bo, true);
2944 goto error_free_root;
2946 r = dma_resv_reserve_shared(root_bo->tbo.base.resv, 1);
2948 goto error_unreserve;
2950 amdgpu_vm_bo_base_init(&vm->root.base, vm, root_bo);
2952 r = amdgpu_vm_clear_bo(adev, vm, root, false);
2954 goto error_unreserve;
2956 amdgpu_bo_unreserve(vm->root.base.bo);
2959 unsigned long flags;
2961 spin_lock_irqsave(&adev->vm_manager.pasid_lock, flags);
2962 r = idr_alloc(&adev->vm_manager.pasid_idr, vm, pasid, pasid + 1,
2964 spin_unlock_irqrestore(&adev->vm_manager.pasid_lock, flags);
2966 goto error_free_root;
2971 INIT_KFIFO(vm->faults);
2976 amdgpu_bo_unreserve(vm->root.base.bo);
2979 amdgpu_bo_unref(&root->shadow);
2980 amdgpu_bo_unref(&root_bo);
2981 vm->root.base.bo = NULL;
2984 dma_fence_put(vm->last_unlocked);
2985 drm_sched_entity_destroy(&vm->delayed);
2987 error_free_immediate:
2988 drm_sched_entity_destroy(&vm->immediate);
2994 * amdgpu_vm_check_clean_reserved - check if a VM is clean
2996 * @adev: amdgpu_device pointer
2997 * @vm: the VM to check
2999 * check all entries of the root PD, if any subsequent PDs are allocated,
3000 * it means there are page table creating and filling, and is no a clean
3004 * 0 if this VM is clean
3006 static int amdgpu_vm_check_clean_reserved(struct amdgpu_device *adev,
3007 struct amdgpu_vm *vm)
3009 enum amdgpu_vm_level root = adev->vm_manager.root_level;
3010 unsigned int entries = amdgpu_vm_num_entries(adev, root);
3013 if (!(vm->root.entries))
3016 for (i = 0; i < entries; i++) {
3017 if (vm->root.entries[i].base.bo)
3025 * amdgpu_vm_make_compute - Turn a GFX VM into a compute VM
3027 * @adev: amdgpu_device pointer
3029 * @pasid: pasid to use
3031 * This only works on GFX VMs that don't have any BOs added and no
3032 * page tables allocated yet.
3034 * Changes the following VM parameters:
3035 * - use_cpu_for_update
3036 * - pte_supports_ats
3037 * - pasid (old PASID is released, because compute manages its own PASIDs)
3039 * Reinitializes the page directory to reflect the changed ATS
3043 * 0 for success, -errno for errors.
3045 int amdgpu_vm_make_compute(struct amdgpu_device *adev, struct amdgpu_vm *vm,
3048 bool pte_support_ats = (adev->asic_type == CHIP_RAVEN);
3051 r = amdgpu_bo_reserve(vm->root.base.bo, true);
3056 r = amdgpu_vm_check_clean_reserved(adev, vm);
3061 unsigned long flags;
3063 spin_lock_irqsave(&adev->vm_manager.pasid_lock, flags);
3064 r = idr_alloc(&adev->vm_manager.pasid_idr, vm, pasid, pasid + 1,
3066 spin_unlock_irqrestore(&adev->vm_manager.pasid_lock, flags);
3073 /* Check if PD needs to be reinitialized and do it before
3074 * changing any other state, in case it fails.
3076 if (pte_support_ats != vm->pte_support_ats) {
3077 vm->pte_support_ats = pte_support_ats;
3078 r = amdgpu_vm_clear_bo(adev, vm,
3079 to_amdgpu_bo_vm(vm->root.base.bo),
3085 /* Update VM state */
3086 vm->use_cpu_for_update = !!(adev->vm_manager.vm_update_mode &
3087 AMDGPU_VM_USE_CPU_FOR_COMPUTE);
3088 DRM_DEBUG_DRIVER("VM update mode is %s\n",
3089 vm->use_cpu_for_update ? "CPU" : "SDMA");
3090 WARN_ONCE((vm->use_cpu_for_update &&
3091 !amdgpu_gmc_vram_full_visible(&adev->gmc)),
3092 "CPU update of VM recommended only for large BAR system\n");
3094 if (vm->use_cpu_for_update) {
3095 /* Sync with last SDMA update/clear before switching to CPU */
3096 r = amdgpu_bo_sync_wait(vm->root.base.bo,
3097 AMDGPU_FENCE_OWNER_UNDEFINED, true);
3101 vm->update_funcs = &amdgpu_vm_cpu_funcs;
3103 vm->update_funcs = &amdgpu_vm_sdma_funcs;
3105 dma_fence_put(vm->last_update);
3106 vm->last_update = NULL;
3107 vm->is_compute_context = true;
3110 unsigned long flags;
3112 spin_lock_irqsave(&adev->vm_manager.pasid_lock, flags);
3113 idr_remove(&adev->vm_manager.pasid_idr, vm->pasid);
3114 spin_unlock_irqrestore(&adev->vm_manager.pasid_lock, flags);
3116 /* Free the original amdgpu allocated pasid
3117 * Will be replaced with kfd allocated pasid
3119 amdgpu_pasid_free(vm->pasid);
3123 /* Free the shadow bo for compute VM */
3124 amdgpu_bo_unref(&to_amdgpu_bo_vm(vm->root.base.bo)->shadow);
3133 unsigned long flags;
3135 spin_lock_irqsave(&adev->vm_manager.pasid_lock, flags);
3136 idr_remove(&adev->vm_manager.pasid_idr, pasid);
3137 spin_unlock_irqrestore(&adev->vm_manager.pasid_lock, flags);
3140 amdgpu_bo_unreserve(vm->root.base.bo);
3145 * amdgpu_vm_release_compute - release a compute vm
3146 * @adev: amdgpu_device pointer
3147 * @vm: a vm turned into compute vm by calling amdgpu_vm_make_compute
3149 * This is a correspondant of amdgpu_vm_make_compute. It decouples compute
3150 * pasid from vm. Compute should stop use of vm after this call.
3152 void amdgpu_vm_release_compute(struct amdgpu_device *adev, struct amdgpu_vm *vm)
3155 unsigned long flags;
3157 spin_lock_irqsave(&adev->vm_manager.pasid_lock, flags);
3158 idr_remove(&adev->vm_manager.pasid_idr, vm->pasid);
3159 spin_unlock_irqrestore(&adev->vm_manager.pasid_lock, flags);
3162 vm->is_compute_context = false;
3166 * amdgpu_vm_fini - tear down a vm instance
3168 * @adev: amdgpu_device pointer
3172 * Unbind the VM and remove all bos from the vm bo list
3174 void amdgpu_vm_fini(struct amdgpu_device *adev, struct amdgpu_vm *vm)
3176 struct amdgpu_bo_va_mapping *mapping, *tmp;
3177 bool prt_fini_needed = !!adev->gmc.gmc_funcs->set_prt;
3178 struct amdgpu_bo *root;
3181 amdgpu_amdkfd_gpuvm_destroy_cb(adev, vm);
3183 root = amdgpu_bo_ref(vm->root.base.bo);
3184 amdgpu_bo_reserve(root, true);
3186 unsigned long flags;
3188 spin_lock_irqsave(&adev->vm_manager.pasid_lock, flags);
3189 idr_remove(&adev->vm_manager.pasid_idr, vm->pasid);
3190 spin_unlock_irqrestore(&adev->vm_manager.pasid_lock, flags);
3194 dma_fence_wait(vm->last_unlocked, false);
3195 dma_fence_put(vm->last_unlocked);
3197 list_for_each_entry_safe(mapping, tmp, &vm->freed, list) {
3198 if (mapping->flags & AMDGPU_PTE_PRT && prt_fini_needed) {
3199 amdgpu_vm_prt_fini(adev, vm);
3200 prt_fini_needed = false;
3203 list_del(&mapping->list);
3204 amdgpu_vm_free_mapping(adev, vm, mapping, NULL);
3207 amdgpu_vm_free_pts(adev, vm, NULL);
3208 amdgpu_bo_unreserve(root);
3209 amdgpu_bo_unref(&root);
3210 WARN_ON(vm->root.base.bo);
3212 drm_sched_entity_destroy(&vm->immediate);
3213 drm_sched_entity_destroy(&vm->delayed);
3215 if (!RB_EMPTY_ROOT(&vm->va.rb_root)) {
3216 dev_err(adev->dev, "still active bo inside vm\n");
3218 rbtree_postorder_for_each_entry_safe(mapping, tmp,
3219 &vm->va.rb_root, rb) {
3220 /* Don't remove the mapping here, we don't want to trigger a
3221 * rebalance and the tree is about to be destroyed anyway.
3223 list_del(&mapping->list);
3227 dma_fence_put(vm->last_update);
3228 for (i = 0; i < AMDGPU_MAX_VMHUBS; i++)
3229 amdgpu_vmid_free_reserved(adev, vm, i);
3233 * amdgpu_vm_manager_init - init the VM manager
3235 * @adev: amdgpu_device pointer
3237 * Initialize the VM manager structures
3239 void amdgpu_vm_manager_init(struct amdgpu_device *adev)
3243 /* Concurrent flushes are only possible starting with Vega10 and
3244 * are broken on Navi10 and Navi14.
3246 adev->vm_manager.concurrent_flush = !(adev->asic_type < CHIP_VEGA10 ||
3247 adev->asic_type == CHIP_NAVI10 ||
3248 adev->asic_type == CHIP_NAVI14);
3249 amdgpu_vmid_mgr_init(adev);
3251 adev->vm_manager.fence_context =
3252 dma_fence_context_alloc(AMDGPU_MAX_RINGS);
3253 for (i = 0; i < AMDGPU_MAX_RINGS; ++i)
3254 adev->vm_manager.seqno[i] = 0;
3256 spin_lock_init(&adev->vm_manager.prt_lock);
3257 atomic_set(&adev->vm_manager.num_prt_users, 0);
3259 /* If not overridden by the user, by default, only in large BAR systems
3260 * Compute VM tables will be updated by CPU
3262 #ifdef CONFIG_X86_64
3263 if (amdgpu_vm_update_mode == -1) {
3264 if (amdgpu_gmc_vram_full_visible(&adev->gmc))
3265 adev->vm_manager.vm_update_mode =
3266 AMDGPU_VM_USE_CPU_FOR_COMPUTE;
3268 adev->vm_manager.vm_update_mode = 0;
3270 adev->vm_manager.vm_update_mode = amdgpu_vm_update_mode;
3272 adev->vm_manager.vm_update_mode = 0;
3275 idr_init(&adev->vm_manager.pasid_idr);
3276 spin_lock_init(&adev->vm_manager.pasid_lock);
3280 * amdgpu_vm_manager_fini - cleanup VM manager
3282 * @adev: amdgpu_device pointer
3284 * Cleanup the VM manager and free resources.
3286 void amdgpu_vm_manager_fini(struct amdgpu_device *adev)
3288 WARN_ON(!idr_is_empty(&adev->vm_manager.pasid_idr));
3289 idr_destroy(&adev->vm_manager.pasid_idr);
3291 amdgpu_vmid_mgr_fini(adev);
3295 * amdgpu_vm_ioctl - Manages VMID reservation for vm hubs.
3297 * @dev: drm device pointer
3298 * @data: drm_amdgpu_vm
3299 * @filp: drm file pointer
3302 * 0 for success, -errno for errors.
3304 int amdgpu_vm_ioctl(struct drm_device *dev, void *data, struct drm_file *filp)
3306 union drm_amdgpu_vm *args = data;
3307 struct amdgpu_device *adev = drm_to_adev(dev);
3308 struct amdgpu_fpriv *fpriv = filp->driver_priv;
3309 long timeout = msecs_to_jiffies(2000);
3312 switch (args->in.op) {
3313 case AMDGPU_VM_OP_RESERVE_VMID:
3314 /* We only have requirement to reserve vmid from gfxhub */
3315 r = amdgpu_vmid_alloc_reserved(adev, &fpriv->vm,
3320 case AMDGPU_VM_OP_UNRESERVE_VMID:
3321 if (amdgpu_sriov_runtime(adev))
3322 timeout = 8 * timeout;
3324 /* Wait vm idle to make sure the vmid set in SPM_VMID is
3325 * not referenced anymore.
3327 r = amdgpu_bo_reserve(fpriv->vm.root.base.bo, true);
3331 r = amdgpu_vm_wait_idle(&fpriv->vm, timeout);
3335 amdgpu_bo_unreserve(fpriv->vm.root.base.bo);
3336 amdgpu_vmid_free_reserved(adev, &fpriv->vm, AMDGPU_GFXHUB_0);
3346 * amdgpu_vm_get_task_info - Extracts task info for a PASID.
3348 * @adev: drm device pointer
3349 * @pasid: PASID identifier for VM
3350 * @task_info: task_info to fill.
3352 void amdgpu_vm_get_task_info(struct amdgpu_device *adev, u32 pasid,
3353 struct amdgpu_task_info *task_info)
3355 struct amdgpu_vm *vm;
3356 unsigned long flags;
3358 spin_lock_irqsave(&adev->vm_manager.pasid_lock, flags);
3360 vm = idr_find(&adev->vm_manager.pasid_idr, pasid);
3362 *task_info = vm->task_info;
3364 spin_unlock_irqrestore(&adev->vm_manager.pasid_lock, flags);
3368 * amdgpu_vm_set_task_info - Sets VMs task info.
3370 * @vm: vm for which to set the info
3372 void amdgpu_vm_set_task_info(struct amdgpu_vm *vm)
3374 if (vm->task_info.pid)
3377 vm->task_info.pid = current->pid;
3378 get_task_comm(vm->task_info.task_name, current);
3380 if (current->group_leader->mm != current->mm)
3383 vm->task_info.tgid = current->group_leader->pid;
3384 get_task_comm(vm->task_info.process_name, current->group_leader);
3388 * amdgpu_vm_handle_fault - graceful handling of VM faults.
3389 * @adev: amdgpu device pointer
3390 * @pasid: PASID of the VM
3391 * @addr: Address of the fault
3393 * Try to gracefully handle a VM fault. Return true if the fault was handled and
3394 * shouldn't be reported any more.
3396 bool amdgpu_vm_handle_fault(struct amdgpu_device *adev, u32 pasid,
3399 bool is_compute_context = false;
3400 struct amdgpu_bo *root;
3401 uint64_t value, flags;
3402 struct amdgpu_vm *vm;
3405 spin_lock(&adev->vm_manager.pasid_lock);
3406 vm = idr_find(&adev->vm_manager.pasid_idr, pasid);
3408 root = amdgpu_bo_ref(vm->root.base.bo);
3409 is_compute_context = vm->is_compute_context;
3413 spin_unlock(&adev->vm_manager.pasid_lock);
3418 addr /= AMDGPU_GPU_PAGE_SIZE;
3420 if (is_compute_context &&
3421 !svm_range_restore_pages(adev, pasid, addr)) {
3422 amdgpu_bo_unref(&root);
3426 r = amdgpu_bo_reserve(root, true);
3430 /* Double check that the VM still exists */
3431 spin_lock(&adev->vm_manager.pasid_lock);
3432 vm = idr_find(&adev->vm_manager.pasid_idr, pasid);
3433 if (vm && vm->root.base.bo != root)
3435 spin_unlock(&adev->vm_manager.pasid_lock);
3439 flags = AMDGPU_PTE_VALID | AMDGPU_PTE_SNOOPED |
3442 if (is_compute_context) {
3443 /* Intentionally setting invalid PTE flag
3444 * combination to force a no-retry-fault
3446 flags = AMDGPU_PTE_EXECUTABLE | AMDGPU_PDE_PTE |
3449 } else if (amdgpu_vm_fault_stop == AMDGPU_VM_FAULT_STOP_NEVER) {
3450 /* Redirect the access to the dummy page */
3451 value = adev->dummy_page_addr;
3452 flags |= AMDGPU_PTE_EXECUTABLE | AMDGPU_PTE_READABLE |
3453 AMDGPU_PTE_WRITEABLE;
3456 /* Let the hw retry silently on the PTE */
3460 r = dma_resv_reserve_shared(root->tbo.base.resv, 1);
3462 pr_debug("failed %d to reserve fence slot\n", r);
3466 r = amdgpu_vm_bo_update_mapping(adev, adev, vm, true, false, NULL, addr,
3467 addr, flags, value, NULL, NULL, NULL,
3472 r = amdgpu_vm_update_pdes(adev, vm, true);
3475 amdgpu_bo_unreserve(root);
3477 DRM_ERROR("Can't handle page fault (%d)\n", r);
3480 amdgpu_bo_unref(&root);
3485 #if defined(CONFIG_DEBUG_FS)
3487 * amdgpu_debugfs_vm_bo_info - print BO info for the VM
3489 * @vm: Requested VM for printing BO info
3492 * Print BO information in debugfs file for the VM
3494 void amdgpu_debugfs_vm_bo_info(struct amdgpu_vm *vm, struct seq_file *m)
3496 struct amdgpu_bo_va *bo_va, *tmp;
3498 u64 total_evicted = 0;
3499 u64 total_relocated = 0;
3500 u64 total_moved = 0;
3501 u64 total_invalidated = 0;
3503 unsigned int total_idle_objs = 0;
3504 unsigned int total_evicted_objs = 0;
3505 unsigned int total_relocated_objs = 0;
3506 unsigned int total_moved_objs = 0;
3507 unsigned int total_invalidated_objs = 0;
3508 unsigned int total_done_objs = 0;
3509 unsigned int id = 0;
3511 seq_puts(m, "\tIdle BOs:\n");
3512 list_for_each_entry_safe(bo_va, tmp, &vm->idle, base.vm_status) {
3513 if (!bo_va->base.bo)
3515 total_idle += amdgpu_bo_print_info(id++, bo_va->base.bo, m);
3517 total_idle_objs = id;
3520 seq_puts(m, "\tEvicted BOs:\n");
3521 list_for_each_entry_safe(bo_va, tmp, &vm->evicted, base.vm_status) {
3522 if (!bo_va->base.bo)
3524 total_evicted += amdgpu_bo_print_info(id++, bo_va->base.bo, m);
3526 total_evicted_objs = id;
3529 seq_puts(m, "\tRelocated BOs:\n");
3530 list_for_each_entry_safe(bo_va, tmp, &vm->relocated, base.vm_status) {
3531 if (!bo_va->base.bo)
3533 total_relocated += amdgpu_bo_print_info(id++, bo_va->base.bo, m);
3535 total_relocated_objs = id;
3538 seq_puts(m, "\tMoved BOs:\n");
3539 list_for_each_entry_safe(bo_va, tmp, &vm->moved, base.vm_status) {
3540 if (!bo_va->base.bo)
3542 total_moved += amdgpu_bo_print_info(id++, bo_va->base.bo, m);
3544 total_moved_objs = id;
3547 seq_puts(m, "\tInvalidated BOs:\n");
3548 spin_lock(&vm->invalidated_lock);
3549 list_for_each_entry_safe(bo_va, tmp, &vm->invalidated, base.vm_status) {
3550 if (!bo_va->base.bo)
3552 total_invalidated += amdgpu_bo_print_info(id++, bo_va->base.bo, m);
3554 total_invalidated_objs = id;
3557 seq_puts(m, "\tDone BOs:\n");
3558 list_for_each_entry_safe(bo_va, tmp, &vm->done, base.vm_status) {
3559 if (!bo_va->base.bo)
3561 total_done += amdgpu_bo_print_info(id++, bo_va->base.bo, m);
3563 spin_unlock(&vm->invalidated_lock);
3564 total_done_objs = id;
3566 seq_printf(m, "\tTotal idle size: %12lld\tobjs:\t%d\n", total_idle,
3568 seq_printf(m, "\tTotal evicted size: %12lld\tobjs:\t%d\n", total_evicted,
3569 total_evicted_objs);
3570 seq_printf(m, "\tTotal relocated size: %12lld\tobjs:\t%d\n", total_relocated,
3571 total_relocated_objs);
3572 seq_printf(m, "\tTotal moved size: %12lld\tobjs:\t%d\n", total_moved,
3574 seq_printf(m, "\tTotal invalidated size: %12lld\tobjs:\t%d\n", total_invalidated,
3575 total_invalidated_objs);
3576 seq_printf(m, "\tTotal done size: %12lld\tobjs:\t%d\n", total_done,