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>
36 #include <drm/ttm/ttm_tt.h>
38 #include "amdgpu_trace.h"
39 #include "amdgpu_amdkfd.h"
40 #include "amdgpu_gmc.h"
41 #include "amdgpu_xgmi.h"
42 #include "amdgpu_dma_buf.h"
43 #include "amdgpu_res_cursor.h"
49 * GPUVM is the MMU functionality provided on the GPU.
50 * GPUVM is similar to the legacy GART on older asics, however
51 * rather than there being a single global GART table
52 * for the entire GPU, there can be multiple GPUVM page tables active
53 * at any given time. The GPUVM page tables can contain a mix
54 * VRAM pages and system pages (both memory and MMIO) and system pages
55 * can be mapped as snooped (cached system pages) or unsnooped
56 * (uncached system pages).
58 * Each active GPUVM has an ID associated with it and there is a page table
59 * linked with each VMID. When executing a command buffer,
60 * the kernel tells the engine what VMID to use for that command
61 * buffer. VMIDs are allocated dynamically as commands are submitted.
62 * The userspace drivers maintain their own address space and the kernel
63 * sets up their pages tables accordingly when they submit their
64 * command buffers and a VMID is assigned.
65 * The hardware supports up to 16 active GPUVMs at any given time.
67 * Each GPUVM is represented by a 1-2 or 1-5 level page table, depending
68 * on the ASIC family. GPUVM supports RWX attributes on each page as well
69 * as other features such as encryption and caching attributes.
71 * VMID 0 is special. It is the GPUVM used for the kernel driver. In
72 * addition to an aperture managed by a page table, VMID 0 also has
73 * several other apertures. There is an aperture for direct access to VRAM
74 * and there is a legacy AGP aperture which just forwards accesses directly
75 * to the matching system physical addresses (or IOVAs when an IOMMU is
76 * present). These apertures provide direct access to these memories without
77 * incurring the overhead of a page table. VMID 0 is used by the kernel
78 * driver for tasks like memory management.
80 * GPU clients (i.e., engines on the GPU) use GPUVM VMIDs to access memory.
81 * For user applications, each application can have their own unique GPUVM
82 * address space. The application manages the address space and the kernel
83 * driver manages the GPUVM page tables for each process. If an GPU client
84 * accesses an invalid page, it will generate a GPU page fault, similar to
85 * accessing an invalid page on a CPU.
88 #define START(node) ((node)->start)
89 #define LAST(node) ((node)->last)
91 INTERVAL_TREE_DEFINE(struct amdgpu_bo_va_mapping, rb, uint64_t, __subtree_last,
92 START, LAST, static, amdgpu_vm_it)
98 * struct amdgpu_prt_cb - Helper to disable partial resident texture feature from a fence callback
100 struct amdgpu_prt_cb {
103 * @adev: amdgpu device
105 struct amdgpu_device *adev;
110 struct dma_fence_cb cb;
114 * struct amdgpu_vm_tlb_seq_cb - Helper to increment the TLB flush sequence
116 struct amdgpu_vm_tlb_seq_cb {
118 * @vm: pointer to the amdgpu_vm structure to set the fence sequence on
120 struct amdgpu_vm *vm;
125 struct dma_fence_cb cb;
129 * amdgpu_vm_set_pasid - manage pasid and vm ptr mapping
131 * @adev: amdgpu_device pointer
132 * @vm: amdgpu_vm pointer
133 * @pasid: the pasid the VM is using on this GPU
135 * Set the pasid this VM is using on this GPU, can also be used to remove the
136 * pasid by passing in zero.
139 int amdgpu_vm_set_pasid(struct amdgpu_device *adev, struct amdgpu_vm *vm,
144 if (vm->pasid == pasid)
148 r = xa_err(xa_erase_irq(&adev->vm_manager.pasids, vm->pasid));
156 r = xa_err(xa_store_irq(&adev->vm_manager.pasids, pasid, vm,
169 * amdgpu_vm_bo_evicted - vm_bo is evicted
171 * @vm_bo: vm_bo which is evicted
173 * State for PDs/PTs and per VM BOs which are not at the location they should
176 static void amdgpu_vm_bo_evicted(struct amdgpu_vm_bo_base *vm_bo)
178 struct amdgpu_vm *vm = vm_bo->vm;
179 struct amdgpu_bo *bo = vm_bo->bo;
182 spin_lock(&vm_bo->vm->status_lock);
183 if (bo->tbo.type == ttm_bo_type_kernel)
184 list_move(&vm_bo->vm_status, &vm->evicted);
186 list_move_tail(&vm_bo->vm_status, &vm->evicted);
187 spin_unlock(&vm_bo->vm->status_lock);
190 * amdgpu_vm_bo_moved - vm_bo is moved
192 * @vm_bo: vm_bo which is moved
194 * State for per VM BOs which are moved, but that change is not yet reflected
195 * in the page tables.
197 static void amdgpu_vm_bo_moved(struct amdgpu_vm_bo_base *vm_bo)
199 spin_lock(&vm_bo->vm->status_lock);
200 list_move(&vm_bo->vm_status, &vm_bo->vm->moved);
201 spin_unlock(&vm_bo->vm->status_lock);
205 * amdgpu_vm_bo_idle - vm_bo is idle
207 * @vm_bo: vm_bo which is now idle
209 * State for PDs/PTs and per VM BOs which have gone through the state machine
212 static void amdgpu_vm_bo_idle(struct amdgpu_vm_bo_base *vm_bo)
214 spin_lock(&vm_bo->vm->status_lock);
215 list_move(&vm_bo->vm_status, &vm_bo->vm->idle);
216 spin_unlock(&vm_bo->vm->status_lock);
217 vm_bo->moved = false;
221 * amdgpu_vm_bo_invalidated - vm_bo is invalidated
223 * @vm_bo: vm_bo which is now invalidated
225 * State for normal BOs which are invalidated and that change not yet reflected
228 static void amdgpu_vm_bo_invalidated(struct amdgpu_vm_bo_base *vm_bo)
230 spin_lock(&vm_bo->vm->status_lock);
231 list_move(&vm_bo->vm_status, &vm_bo->vm->invalidated);
232 spin_unlock(&vm_bo->vm->status_lock);
236 * amdgpu_vm_bo_relocated - vm_bo is reloacted
238 * @vm_bo: vm_bo which is relocated
240 * State for PDs/PTs which needs to update their parent PD.
241 * For the root PD, just move to idle state.
243 static void amdgpu_vm_bo_relocated(struct amdgpu_vm_bo_base *vm_bo)
245 if (vm_bo->bo->parent) {
246 spin_lock(&vm_bo->vm->status_lock);
247 list_move(&vm_bo->vm_status, &vm_bo->vm->relocated);
248 spin_unlock(&vm_bo->vm->status_lock);
250 amdgpu_vm_bo_idle(vm_bo);
255 * amdgpu_vm_bo_done - vm_bo is done
257 * @vm_bo: vm_bo which is now done
259 * State for normal BOs which are invalidated and that change has been updated
262 static void amdgpu_vm_bo_done(struct amdgpu_vm_bo_base *vm_bo)
264 spin_lock(&vm_bo->vm->status_lock);
265 list_move(&vm_bo->vm_status, &vm_bo->vm->done);
266 spin_unlock(&vm_bo->vm->status_lock);
270 * amdgpu_vm_bo_base_init - Adds bo to the list of bos associated with the vm
272 * @base: base structure for tracking BO usage in a VM
273 * @vm: vm to which bo is to be added
274 * @bo: amdgpu buffer object
276 * Initialize a bo_va_base structure and add it to the appropriate lists
279 void amdgpu_vm_bo_base_init(struct amdgpu_vm_bo_base *base,
280 struct amdgpu_vm *vm, struct amdgpu_bo *bo)
285 INIT_LIST_HEAD(&base->vm_status);
289 base->next = bo->vm_bo;
292 if (bo->tbo.base.resv != vm->root.bo->tbo.base.resv)
295 dma_resv_assert_held(vm->root.bo->tbo.base.resv);
297 ttm_bo_set_bulk_move(&bo->tbo, &vm->lru_bulk_move);
298 if (bo->tbo.type == ttm_bo_type_kernel && bo->parent)
299 amdgpu_vm_bo_relocated(base);
301 amdgpu_vm_bo_idle(base);
303 if (bo->preferred_domains &
304 amdgpu_mem_type_to_domain(bo->tbo.resource->mem_type))
308 * we checked all the prerequisites, but it looks like this per vm bo
309 * is currently evicted. add the bo to the evicted list to make sure it
310 * is validated on next vm use to avoid fault.
312 amdgpu_vm_bo_evicted(base);
316 * amdgpu_vm_get_pd_bo - add the VM PD to a validation list
318 * @vm: vm providing the BOs
319 * @validated: head of validation list
320 * @entry: entry to add
322 * Add the page directory to the list of BOs to
323 * validate for command submission.
325 void amdgpu_vm_get_pd_bo(struct amdgpu_vm *vm,
326 struct list_head *validated,
327 struct amdgpu_bo_list_entry *entry)
330 entry->tv.bo = &vm->root.bo->tbo;
331 /* Two for VM updates, one for TTM and one for the CS job */
332 entry->tv.num_shared = 4;
333 entry->user_pages = NULL;
334 list_add(&entry->tv.head, validated);
338 * amdgpu_vm_move_to_lru_tail - move all BOs to the end of LRU
340 * @adev: amdgpu device pointer
341 * @vm: vm providing the BOs
343 * Move all BOs to the end of LRU and remember their positions to put them
346 void amdgpu_vm_move_to_lru_tail(struct amdgpu_device *adev,
347 struct amdgpu_vm *vm)
349 spin_lock(&adev->mman.bdev.lru_lock);
350 ttm_lru_bulk_move_tail(&vm->lru_bulk_move);
351 spin_unlock(&adev->mman.bdev.lru_lock);
355 * amdgpu_vm_validate_pt_bos - validate the page table BOs
357 * @adev: amdgpu device pointer
358 * @vm: vm providing the BOs
359 * @validate: callback to do the validation
360 * @param: parameter for the validation callback
362 * Validate the page table BOs on command submission if neccessary.
367 int amdgpu_vm_validate_pt_bos(struct amdgpu_device *adev, struct amdgpu_vm *vm,
368 int (*validate)(void *p, struct amdgpu_bo *bo),
371 struct amdgpu_vm_bo_base *bo_base;
372 struct amdgpu_bo *shadow;
373 struct amdgpu_bo *bo;
376 spin_lock(&vm->status_lock);
377 while (!list_empty(&vm->evicted)) {
378 bo_base = list_first_entry(&vm->evicted,
379 struct amdgpu_vm_bo_base,
381 spin_unlock(&vm->status_lock);
384 shadow = amdgpu_bo_shadowed(bo);
386 r = validate(param, bo);
390 r = validate(param, shadow);
395 if (bo->tbo.type != ttm_bo_type_kernel) {
396 amdgpu_vm_bo_moved(bo_base);
398 vm->update_funcs->map_table(to_amdgpu_bo_vm(bo));
399 amdgpu_vm_bo_relocated(bo_base);
401 spin_lock(&vm->status_lock);
403 spin_unlock(&vm->status_lock);
405 amdgpu_vm_eviction_lock(vm);
406 vm->evicting = false;
407 amdgpu_vm_eviction_unlock(vm);
413 * amdgpu_vm_ready - check VM is ready for updates
417 * Check if all VM PDs/PTs are ready for updates
420 * True if VM is not evicting.
422 bool amdgpu_vm_ready(struct amdgpu_vm *vm)
427 amdgpu_vm_eviction_lock(vm);
429 amdgpu_vm_eviction_unlock(vm);
431 spin_lock(&vm->status_lock);
432 empty = list_empty(&vm->evicted);
433 spin_unlock(&vm->status_lock);
439 * amdgpu_vm_check_compute_bug - check whether asic has compute vm bug
441 * @adev: amdgpu_device pointer
443 void amdgpu_vm_check_compute_bug(struct amdgpu_device *adev)
445 const struct amdgpu_ip_block *ip_block;
446 bool has_compute_vm_bug;
447 struct amdgpu_ring *ring;
450 has_compute_vm_bug = false;
452 ip_block = amdgpu_device_ip_get_ip_block(adev, AMD_IP_BLOCK_TYPE_GFX);
454 /* Compute has a VM bug for GFX version < 7.
455 Compute has a VM bug for GFX 8 MEC firmware version < 673.*/
456 if (ip_block->version->major <= 7)
457 has_compute_vm_bug = true;
458 else if (ip_block->version->major == 8)
459 if (adev->gfx.mec_fw_version < 673)
460 has_compute_vm_bug = true;
463 for (i = 0; i < adev->num_rings; i++) {
464 ring = adev->rings[i];
465 if (ring->funcs->type == AMDGPU_RING_TYPE_COMPUTE)
466 /* only compute rings */
467 ring->has_compute_vm_bug = has_compute_vm_bug;
469 ring->has_compute_vm_bug = false;
474 * amdgpu_vm_need_pipeline_sync - Check if pipe sync is needed for job.
476 * @ring: ring on which the job will be submitted
477 * @job: job to submit
480 * True if sync is needed.
482 bool amdgpu_vm_need_pipeline_sync(struct amdgpu_ring *ring,
483 struct amdgpu_job *job)
485 struct amdgpu_device *adev = ring->adev;
486 unsigned vmhub = ring->funcs->vmhub;
487 struct amdgpu_vmid_mgr *id_mgr = &adev->vm_manager.id_mgr[vmhub];
492 if (job->vm_needs_flush || ring->has_compute_vm_bug)
495 if (ring->funcs->emit_gds_switch && job->gds_switch_needed)
498 if (amdgpu_vmid_had_gpu_reset(adev, &id_mgr->ids[job->vmid]))
505 * amdgpu_vm_flush - hardware flush the vm
507 * @ring: ring to use for flush
509 * @need_pipe_sync: is pipe sync needed
511 * Emit a VM flush when it is necessary.
514 * 0 on success, errno otherwise.
516 int amdgpu_vm_flush(struct amdgpu_ring *ring, struct amdgpu_job *job,
519 struct amdgpu_device *adev = ring->adev;
520 unsigned vmhub = ring->funcs->vmhub;
521 struct amdgpu_vmid_mgr *id_mgr = &adev->vm_manager.id_mgr[vmhub];
522 struct amdgpu_vmid *id = &id_mgr->ids[job->vmid];
523 bool spm_update_needed = job->spm_update_needed;
524 bool gds_switch_needed = ring->funcs->emit_gds_switch &&
525 job->gds_switch_needed;
526 bool vm_flush_needed = job->vm_needs_flush;
527 struct dma_fence *fence = NULL;
528 bool pasid_mapping_needed = false;
529 unsigned patch_offset = 0;
532 if (amdgpu_vmid_had_gpu_reset(adev, id)) {
533 gds_switch_needed = true;
534 vm_flush_needed = true;
535 pasid_mapping_needed = true;
536 spm_update_needed = true;
539 mutex_lock(&id_mgr->lock);
540 if (id->pasid != job->pasid || !id->pasid_mapping ||
541 !dma_fence_is_signaled(id->pasid_mapping))
542 pasid_mapping_needed = true;
543 mutex_unlock(&id_mgr->lock);
545 gds_switch_needed &= !!ring->funcs->emit_gds_switch;
546 vm_flush_needed &= !!ring->funcs->emit_vm_flush &&
547 job->vm_pd_addr != AMDGPU_BO_INVALID_OFFSET;
548 pasid_mapping_needed &= adev->gmc.gmc_funcs->emit_pasid_mapping &&
549 ring->funcs->emit_wreg;
551 if (!vm_flush_needed && !gds_switch_needed && !need_pipe_sync)
554 amdgpu_ring_ib_begin(ring);
555 if (ring->funcs->init_cond_exec)
556 patch_offset = amdgpu_ring_init_cond_exec(ring);
559 amdgpu_ring_emit_pipeline_sync(ring);
561 if (vm_flush_needed) {
562 trace_amdgpu_vm_flush(ring, job->vmid, job->vm_pd_addr);
563 amdgpu_ring_emit_vm_flush(ring, job->vmid, job->vm_pd_addr);
566 if (pasid_mapping_needed)
567 amdgpu_gmc_emit_pasid_mapping(ring, job->vmid, job->pasid);
569 if (spm_update_needed && adev->gfx.rlc.funcs->update_spm_vmid)
570 adev->gfx.rlc.funcs->update_spm_vmid(adev, job->vmid);
572 if (!ring->is_mes_queue && ring->funcs->emit_gds_switch &&
574 amdgpu_ring_emit_gds_switch(ring, job->vmid, job->gds_base,
575 job->gds_size, job->gws_base,
576 job->gws_size, job->oa_base,
580 if (vm_flush_needed || pasid_mapping_needed) {
581 r = amdgpu_fence_emit(ring, &fence, NULL, 0);
586 if (vm_flush_needed) {
587 mutex_lock(&id_mgr->lock);
588 dma_fence_put(id->last_flush);
589 id->last_flush = dma_fence_get(fence);
590 id->current_gpu_reset_count =
591 atomic_read(&adev->gpu_reset_counter);
592 mutex_unlock(&id_mgr->lock);
595 if (pasid_mapping_needed) {
596 mutex_lock(&id_mgr->lock);
597 id->pasid = job->pasid;
598 dma_fence_put(id->pasid_mapping);
599 id->pasid_mapping = dma_fence_get(fence);
600 mutex_unlock(&id_mgr->lock);
602 dma_fence_put(fence);
604 if (ring->funcs->patch_cond_exec)
605 amdgpu_ring_patch_cond_exec(ring, patch_offset);
607 /* the double SWITCH_BUFFER here *cannot* be skipped by COND_EXEC */
608 if (ring->funcs->emit_switch_buffer) {
609 amdgpu_ring_emit_switch_buffer(ring);
610 amdgpu_ring_emit_switch_buffer(ring);
612 amdgpu_ring_ib_end(ring);
617 * amdgpu_vm_bo_find - find the bo_va for a specific vm & bo
620 * @bo: requested buffer object
622 * Find @bo inside the requested vm.
623 * Search inside the @bos vm list for the requested vm
624 * Returns the found bo_va or NULL if none is found
626 * Object has to be reserved!
629 * Found bo_va or NULL.
631 struct amdgpu_bo_va *amdgpu_vm_bo_find(struct amdgpu_vm *vm,
632 struct amdgpu_bo *bo)
634 struct amdgpu_vm_bo_base *base;
636 for (base = bo->vm_bo; base; base = base->next) {
640 return container_of(base, struct amdgpu_bo_va, base);
646 * amdgpu_vm_map_gart - Resolve gart mapping of addr
648 * @pages_addr: optional DMA address to use for lookup
649 * @addr: the unmapped addr
651 * Look up the physical address of the page that the pte resolves
655 * The pointer for the page table entry.
657 uint64_t amdgpu_vm_map_gart(const dma_addr_t *pages_addr, uint64_t addr)
661 /* page table offset */
662 result = pages_addr[addr >> PAGE_SHIFT];
664 /* in case cpu page size != gpu page size*/
665 result |= addr & (~PAGE_MASK);
667 result &= 0xFFFFFFFFFFFFF000ULL;
673 * amdgpu_vm_update_pdes - make sure that all directories are valid
675 * @adev: amdgpu_device pointer
677 * @immediate: submit immediately to the paging queue
679 * Makes sure all directories are up to date.
682 * 0 for success, error for failure.
684 int amdgpu_vm_update_pdes(struct amdgpu_device *adev,
685 struct amdgpu_vm *vm, bool immediate)
687 struct amdgpu_vm_update_params params;
688 struct amdgpu_vm_bo_base *entry;
689 bool flush_tlb_needed = false;
690 LIST_HEAD(relocated);
693 spin_lock(&vm->status_lock);
694 list_splice_init(&vm->relocated, &relocated);
695 spin_unlock(&vm->status_lock);
697 if (list_empty(&relocated))
700 if (!drm_dev_enter(adev_to_drm(adev), &idx))
703 memset(¶ms, 0, sizeof(params));
706 params.immediate = immediate;
708 r = vm->update_funcs->prepare(¶ms, NULL, AMDGPU_SYNC_EXPLICIT);
712 list_for_each_entry(entry, &relocated, vm_status) {
713 /* vm_flush_needed after updating moved PDEs */
714 flush_tlb_needed |= entry->moved;
716 r = amdgpu_vm_pde_update(¶ms, entry);
721 r = vm->update_funcs->commit(¶ms, &vm->last_update);
725 if (flush_tlb_needed)
726 atomic64_inc(&vm->tlb_seq);
728 while (!list_empty(&relocated)) {
729 entry = list_first_entry(&relocated, struct amdgpu_vm_bo_base,
731 amdgpu_vm_bo_idle(entry);
740 * amdgpu_vm_tlb_seq_cb - make sure to increment tlb sequence
742 * @cb: the callback structure
744 * Increments the tlb sequence to make sure that future CS execute a VM flush.
746 static void amdgpu_vm_tlb_seq_cb(struct dma_fence *fence,
747 struct dma_fence_cb *cb)
749 struct amdgpu_vm_tlb_seq_cb *tlb_cb;
751 tlb_cb = container_of(cb, typeof(*tlb_cb), cb);
752 atomic64_inc(&tlb_cb->vm->tlb_seq);
757 * amdgpu_vm_update_range - update a range in the vm page table
759 * @adev: amdgpu_device pointer to use for commands
760 * @vm: the VM to update the range
761 * @immediate: immediate submission in a page fault
762 * @unlocked: unlocked invalidation during MM callback
763 * @flush_tlb: trigger tlb invalidation after update completed
764 * @resv: fences we need to sync to
765 * @start: start of mapped range
766 * @last: last mapped entry
767 * @flags: flags for the entries
768 * @offset: offset into nodes and pages_addr
769 * @vram_base: base for vram mappings
770 * @res: ttm_resource to map
771 * @pages_addr: DMA addresses to use for mapping
772 * @fence: optional resulting fence
774 * Fill in the page table entries between @start and @last.
777 * 0 for success, negative erro code for failure.
779 int amdgpu_vm_update_range(struct amdgpu_device *adev, struct amdgpu_vm *vm,
780 bool immediate, bool unlocked, bool flush_tlb,
781 struct dma_resv *resv, uint64_t start, uint64_t last,
782 uint64_t flags, uint64_t offset, uint64_t vram_base,
783 struct ttm_resource *res, dma_addr_t *pages_addr,
784 struct dma_fence **fence)
786 struct amdgpu_vm_update_params params;
787 struct amdgpu_vm_tlb_seq_cb *tlb_cb;
788 struct amdgpu_res_cursor cursor;
789 enum amdgpu_sync_mode sync_mode;
792 if (!drm_dev_enter(adev_to_drm(adev), &idx))
795 tlb_cb = kmalloc(sizeof(*tlb_cb), GFP_KERNEL);
801 /* Vega20+XGMI where PTEs get inadvertently cached in L2 texture cache,
802 * heavy-weight flush TLB unconditionally.
804 flush_tlb |= adev->gmc.xgmi.num_physical_nodes &&
805 adev->ip_versions[GC_HWIP][0] == IP_VERSION(9, 4, 0);
808 * On GFX8 and older any 8 PTE block with a valid bit set enters the TLB
810 flush_tlb |= adev->ip_versions[GC_HWIP][0] < IP_VERSION(9, 0, 0);
812 memset(¶ms, 0, sizeof(params));
815 params.immediate = immediate;
816 params.pages_addr = pages_addr;
817 params.unlocked = unlocked;
819 /* Implicitly sync to command submissions in the same VM before
820 * unmapping. Sync to moving fences before mapping.
822 if (!(flags & AMDGPU_PTE_VALID))
823 sync_mode = AMDGPU_SYNC_EQ_OWNER;
825 sync_mode = AMDGPU_SYNC_EXPLICIT;
827 amdgpu_vm_eviction_lock(vm);
833 if (!unlocked && !dma_fence_is_signaled(vm->last_unlocked)) {
834 struct dma_fence *tmp = dma_fence_get_stub();
836 amdgpu_bo_fence(vm->root.bo, vm->last_unlocked, true);
837 swap(vm->last_unlocked, tmp);
841 r = vm->update_funcs->prepare(¶ms, resv, sync_mode);
845 amdgpu_res_first(pages_addr ? NULL : res, offset,
846 (last - start + 1) * AMDGPU_GPU_PAGE_SIZE, &cursor);
847 while (cursor.remaining) {
848 uint64_t tmp, num_entries, addr;
850 num_entries = cursor.size >> AMDGPU_GPU_PAGE_SHIFT;
852 bool contiguous = true;
854 if (num_entries > AMDGPU_GPU_PAGES_IN_CPU_PAGE) {
855 uint64_t pfn = cursor.start >> PAGE_SHIFT;
858 contiguous = pages_addr[pfn + 1] ==
859 pages_addr[pfn] + PAGE_SIZE;
862 AMDGPU_GPU_PAGES_IN_CPU_PAGE;
863 for (count = 2; count < tmp; ++count) {
864 uint64_t idx = pfn + count;
866 if (contiguous != (pages_addr[idx] ==
867 pages_addr[idx - 1] + PAGE_SIZE))
870 num_entries = count *
871 AMDGPU_GPU_PAGES_IN_CPU_PAGE;
876 params.pages_addr = pages_addr;
878 addr = pages_addr[cursor.start >> PAGE_SHIFT];
879 params.pages_addr = NULL;
882 } else if (flags & (AMDGPU_PTE_VALID | AMDGPU_PTE_PRT)) {
883 addr = vram_base + cursor.start;
888 tmp = start + num_entries;
889 r = amdgpu_vm_ptes_update(¶ms, start, tmp, addr, flags);
893 amdgpu_res_next(&cursor, num_entries * AMDGPU_GPU_PAGE_SIZE);
897 r = vm->update_funcs->commit(¶ms, fence);
899 if (flush_tlb || params.table_freed) {
901 if (fence && *fence &&
902 !dma_fence_add_callback(*fence, &tlb_cb->cb,
903 amdgpu_vm_tlb_seq_cb)) {
904 dma_fence_put(vm->last_tlb_flush);
905 vm->last_tlb_flush = dma_fence_get(*fence);
907 amdgpu_vm_tlb_seq_cb(NULL, &tlb_cb->cb);
916 amdgpu_vm_eviction_unlock(vm);
921 void amdgpu_vm_get_memory(struct amdgpu_vm *vm, uint64_t *vram_mem,
922 uint64_t *gtt_mem, uint64_t *cpu_mem)
924 struct amdgpu_bo_va *bo_va, *tmp;
926 spin_lock(&vm->status_lock);
927 list_for_each_entry_safe(bo_va, tmp, &vm->idle, base.vm_status) {
930 amdgpu_bo_get_memory(bo_va->base.bo, vram_mem,
933 list_for_each_entry_safe(bo_va, tmp, &vm->evicted, base.vm_status) {
936 amdgpu_bo_get_memory(bo_va->base.bo, vram_mem,
939 list_for_each_entry_safe(bo_va, tmp, &vm->relocated, base.vm_status) {
942 amdgpu_bo_get_memory(bo_va->base.bo, vram_mem,
945 list_for_each_entry_safe(bo_va, tmp, &vm->moved, base.vm_status) {
948 amdgpu_bo_get_memory(bo_va->base.bo, vram_mem,
951 list_for_each_entry_safe(bo_va, tmp, &vm->invalidated, base.vm_status) {
954 amdgpu_bo_get_memory(bo_va->base.bo, vram_mem,
957 list_for_each_entry_safe(bo_va, tmp, &vm->done, base.vm_status) {
960 amdgpu_bo_get_memory(bo_va->base.bo, vram_mem,
963 spin_unlock(&vm->status_lock);
966 * amdgpu_vm_bo_update - update all BO mappings in the vm page table
968 * @adev: amdgpu_device pointer
969 * @bo_va: requested BO and VM object
970 * @clear: if true clear the entries
972 * Fill in the page table entries for @bo_va.
975 * 0 for success, -EINVAL for failure.
977 int amdgpu_vm_bo_update(struct amdgpu_device *adev, struct amdgpu_bo_va *bo_va,
980 struct amdgpu_bo *bo = bo_va->base.bo;
981 struct amdgpu_vm *vm = bo_va->base.vm;
982 struct amdgpu_bo_va_mapping *mapping;
983 dma_addr_t *pages_addr = NULL;
984 struct ttm_resource *mem;
985 struct dma_fence **last_update;
986 bool flush_tlb = clear;
987 struct dma_resv *resv;
994 resv = vm->root.bo->tbo.base.resv;
996 struct drm_gem_object *obj = &bo->tbo.base;
998 resv = bo->tbo.base.resv;
999 if (obj->import_attach && bo_va->is_xgmi) {
1000 struct dma_buf *dma_buf = obj->import_attach->dmabuf;
1001 struct drm_gem_object *gobj = dma_buf->priv;
1002 struct amdgpu_bo *abo = gem_to_amdgpu_bo(gobj);
1004 if (abo->tbo.resource->mem_type == TTM_PL_VRAM)
1005 bo = gem_to_amdgpu_bo(gobj);
1007 mem = bo->tbo.resource;
1008 if (mem->mem_type == TTM_PL_TT ||
1009 mem->mem_type == AMDGPU_PL_PREEMPT)
1010 pages_addr = bo->tbo.ttm->dma_address;
1014 struct amdgpu_device *bo_adev;
1016 flags = amdgpu_ttm_tt_pte_flags(adev, bo->tbo.ttm, mem);
1018 if (amdgpu_bo_encrypted(bo))
1019 flags |= AMDGPU_PTE_TMZ;
1021 bo_adev = amdgpu_ttm_adev(bo->tbo.bdev);
1022 vram_base = bo_adev->vm_manager.vram_base_offset;
1028 if (clear || (bo && bo->tbo.base.resv ==
1029 vm->root.bo->tbo.base.resv))
1030 last_update = &vm->last_update;
1032 last_update = &bo_va->last_pt_update;
1034 if (!clear && bo_va->base.moved) {
1036 list_splice_init(&bo_va->valids, &bo_va->invalids);
1038 } else if (bo_va->cleared != clear) {
1039 list_splice_init(&bo_va->valids, &bo_va->invalids);
1042 list_for_each_entry(mapping, &bo_va->invalids, list) {
1043 uint64_t update_flags = flags;
1045 /* normally,bo_va->flags only contians READABLE and WIRTEABLE bit go here
1046 * but in case of something, we filter the flags in first place
1048 if (!(mapping->flags & AMDGPU_PTE_READABLE))
1049 update_flags &= ~AMDGPU_PTE_READABLE;
1050 if (!(mapping->flags & AMDGPU_PTE_WRITEABLE))
1051 update_flags &= ~AMDGPU_PTE_WRITEABLE;
1053 /* Apply ASIC specific mapping flags */
1054 amdgpu_gmc_get_vm_pte(adev, mapping, &update_flags);
1056 trace_amdgpu_vm_bo_update(mapping);
1058 r = amdgpu_vm_update_range(adev, vm, false, false, flush_tlb,
1059 resv, mapping->start, mapping->last,
1060 update_flags, mapping->offset,
1061 vram_base, mem, pages_addr,
1067 /* If the BO is not in its preferred location add it back to
1068 * the evicted list so that it gets validated again on the
1069 * next command submission.
1071 if (bo && bo->tbo.base.resv == vm->root.bo->tbo.base.resv) {
1072 uint32_t mem_type = bo->tbo.resource->mem_type;
1074 if (!(bo->preferred_domains &
1075 amdgpu_mem_type_to_domain(mem_type)))
1076 amdgpu_vm_bo_evicted(&bo_va->base);
1078 amdgpu_vm_bo_idle(&bo_va->base);
1080 amdgpu_vm_bo_done(&bo_va->base);
1083 list_splice_init(&bo_va->invalids, &bo_va->valids);
1084 bo_va->cleared = clear;
1085 bo_va->base.moved = false;
1087 if (trace_amdgpu_vm_bo_mapping_enabled()) {
1088 list_for_each_entry(mapping, &bo_va->valids, list)
1089 trace_amdgpu_vm_bo_mapping(mapping);
1096 * amdgpu_vm_update_prt_state - update the global PRT state
1098 * @adev: amdgpu_device pointer
1100 static void amdgpu_vm_update_prt_state(struct amdgpu_device *adev)
1102 unsigned long flags;
1105 spin_lock_irqsave(&adev->vm_manager.prt_lock, flags);
1106 enable = !!atomic_read(&adev->vm_manager.num_prt_users);
1107 adev->gmc.gmc_funcs->set_prt(adev, enable);
1108 spin_unlock_irqrestore(&adev->vm_manager.prt_lock, flags);
1112 * amdgpu_vm_prt_get - add a PRT user
1114 * @adev: amdgpu_device pointer
1116 static void amdgpu_vm_prt_get(struct amdgpu_device *adev)
1118 if (!adev->gmc.gmc_funcs->set_prt)
1121 if (atomic_inc_return(&adev->vm_manager.num_prt_users) == 1)
1122 amdgpu_vm_update_prt_state(adev);
1126 * amdgpu_vm_prt_put - drop a PRT user
1128 * @adev: amdgpu_device pointer
1130 static void amdgpu_vm_prt_put(struct amdgpu_device *adev)
1132 if (atomic_dec_return(&adev->vm_manager.num_prt_users) == 0)
1133 amdgpu_vm_update_prt_state(adev);
1137 * amdgpu_vm_prt_cb - callback for updating the PRT status
1139 * @fence: fence for the callback
1140 * @_cb: the callback function
1142 static void amdgpu_vm_prt_cb(struct dma_fence *fence, struct dma_fence_cb *_cb)
1144 struct amdgpu_prt_cb *cb = container_of(_cb, struct amdgpu_prt_cb, cb);
1146 amdgpu_vm_prt_put(cb->adev);
1151 * amdgpu_vm_add_prt_cb - add callback for updating the PRT status
1153 * @adev: amdgpu_device pointer
1154 * @fence: fence for the callback
1156 static void amdgpu_vm_add_prt_cb(struct amdgpu_device *adev,
1157 struct dma_fence *fence)
1159 struct amdgpu_prt_cb *cb;
1161 if (!adev->gmc.gmc_funcs->set_prt)
1164 cb = kmalloc(sizeof(struct amdgpu_prt_cb), GFP_KERNEL);
1166 /* Last resort when we are OOM */
1168 dma_fence_wait(fence, false);
1170 amdgpu_vm_prt_put(adev);
1173 if (!fence || dma_fence_add_callback(fence, &cb->cb,
1175 amdgpu_vm_prt_cb(fence, &cb->cb);
1180 * amdgpu_vm_free_mapping - free a mapping
1182 * @adev: amdgpu_device pointer
1184 * @mapping: mapping to be freed
1185 * @fence: fence of the unmap operation
1187 * Free a mapping and make sure we decrease the PRT usage count if applicable.
1189 static void amdgpu_vm_free_mapping(struct amdgpu_device *adev,
1190 struct amdgpu_vm *vm,
1191 struct amdgpu_bo_va_mapping *mapping,
1192 struct dma_fence *fence)
1194 if (mapping->flags & AMDGPU_PTE_PRT)
1195 amdgpu_vm_add_prt_cb(adev, fence);
1200 * amdgpu_vm_prt_fini - finish all prt mappings
1202 * @adev: amdgpu_device pointer
1205 * Register a cleanup callback to disable PRT support after VM dies.
1207 static void amdgpu_vm_prt_fini(struct amdgpu_device *adev, struct amdgpu_vm *vm)
1209 struct dma_resv *resv = vm->root.bo->tbo.base.resv;
1210 struct dma_resv_iter cursor;
1211 struct dma_fence *fence;
1213 dma_resv_for_each_fence(&cursor, resv, DMA_RESV_USAGE_BOOKKEEP, fence) {
1214 /* Add a callback for each fence in the reservation object */
1215 amdgpu_vm_prt_get(adev);
1216 amdgpu_vm_add_prt_cb(adev, fence);
1221 * amdgpu_vm_clear_freed - clear freed BOs in the PT
1223 * @adev: amdgpu_device pointer
1225 * @fence: optional resulting fence (unchanged if no work needed to be done
1226 * or if an error occurred)
1228 * Make sure all freed BOs are cleared in the PT.
1229 * PTs have to be reserved and mutex must be locked!
1235 int amdgpu_vm_clear_freed(struct amdgpu_device *adev,
1236 struct amdgpu_vm *vm,
1237 struct dma_fence **fence)
1239 struct dma_resv *resv = vm->root.bo->tbo.base.resv;
1240 struct amdgpu_bo_va_mapping *mapping;
1241 uint64_t init_pte_value = 0;
1242 struct dma_fence *f = NULL;
1245 while (!list_empty(&vm->freed)) {
1246 mapping = list_first_entry(&vm->freed,
1247 struct amdgpu_bo_va_mapping, list);
1248 list_del(&mapping->list);
1250 if (vm->pte_support_ats &&
1251 mapping->start < AMDGPU_GMC_HOLE_START)
1252 init_pte_value = AMDGPU_PTE_DEFAULT_ATC;
1254 r = amdgpu_vm_update_range(adev, vm, false, false, true, resv,
1255 mapping->start, mapping->last,
1256 init_pte_value, 0, 0, NULL, NULL,
1258 amdgpu_vm_free_mapping(adev, vm, mapping, f);
1266 dma_fence_put(*fence);
1277 * amdgpu_vm_handle_moved - handle moved BOs in the PT
1279 * @adev: amdgpu_device pointer
1282 * Make sure all BOs which are moved are updated in the PTs.
1287 * PTs have to be reserved!
1289 int amdgpu_vm_handle_moved(struct amdgpu_device *adev,
1290 struct amdgpu_vm *vm)
1292 struct amdgpu_bo_va *bo_va;
1293 struct dma_resv *resv;
1297 spin_lock(&vm->status_lock);
1298 while (!list_empty(&vm->moved)) {
1299 bo_va = list_first_entry(&vm->moved, struct amdgpu_bo_va,
1301 spin_unlock(&vm->status_lock);
1303 /* Per VM BOs never need to bo cleared in the page tables */
1304 r = amdgpu_vm_bo_update(adev, bo_va, false);
1307 spin_lock(&vm->status_lock);
1310 while (!list_empty(&vm->invalidated)) {
1311 bo_va = list_first_entry(&vm->invalidated, struct amdgpu_bo_va,
1313 resv = bo_va->base.bo->tbo.base.resv;
1314 spin_unlock(&vm->status_lock);
1316 /* Try to reserve the BO to avoid clearing its ptes */
1317 if (!amdgpu_vm_debug && dma_resv_trylock(resv))
1319 /* Somebody else is using the BO right now */
1323 r = amdgpu_vm_bo_update(adev, bo_va, clear);
1328 dma_resv_unlock(resv);
1329 spin_lock(&vm->status_lock);
1331 spin_unlock(&vm->status_lock);
1337 * amdgpu_vm_bo_add - add a bo to a specific vm
1339 * @adev: amdgpu_device pointer
1341 * @bo: amdgpu buffer object
1343 * Add @bo into the requested vm.
1344 * Add @bo to the list of bos associated with the vm
1347 * Newly added bo_va or NULL for failure
1349 * Object has to be reserved!
1351 struct amdgpu_bo_va *amdgpu_vm_bo_add(struct amdgpu_device *adev,
1352 struct amdgpu_vm *vm,
1353 struct amdgpu_bo *bo)
1355 struct amdgpu_bo_va *bo_va;
1357 bo_va = kzalloc(sizeof(struct amdgpu_bo_va), GFP_KERNEL);
1358 if (bo_va == NULL) {
1361 amdgpu_vm_bo_base_init(&bo_va->base, vm, bo);
1363 bo_va->ref_count = 1;
1364 INIT_LIST_HEAD(&bo_va->valids);
1365 INIT_LIST_HEAD(&bo_va->invalids);
1370 dma_resv_assert_held(bo->tbo.base.resv);
1371 if (amdgpu_dmabuf_is_xgmi_accessible(adev, bo)) {
1372 bo_va->is_xgmi = true;
1373 /* Power up XGMI if it can be potentially used */
1374 amdgpu_xgmi_set_pstate(adev, AMDGPU_XGMI_PSTATE_MAX_VEGA20);
1382 * amdgpu_vm_bo_insert_map - insert a new mapping
1384 * @adev: amdgpu_device pointer
1385 * @bo_va: bo_va to store the address
1386 * @mapping: the mapping to insert
1388 * Insert a new mapping into all structures.
1390 static void amdgpu_vm_bo_insert_map(struct amdgpu_device *adev,
1391 struct amdgpu_bo_va *bo_va,
1392 struct amdgpu_bo_va_mapping *mapping)
1394 struct amdgpu_vm *vm = bo_va->base.vm;
1395 struct amdgpu_bo *bo = bo_va->base.bo;
1397 mapping->bo_va = bo_va;
1398 list_add(&mapping->list, &bo_va->invalids);
1399 amdgpu_vm_it_insert(mapping, &vm->va);
1401 if (mapping->flags & AMDGPU_PTE_PRT)
1402 amdgpu_vm_prt_get(adev);
1404 if (bo && bo->tbo.base.resv == vm->root.bo->tbo.base.resv &&
1405 !bo_va->base.moved) {
1406 amdgpu_vm_bo_moved(&bo_va->base);
1408 trace_amdgpu_vm_bo_map(bo_va, mapping);
1412 * amdgpu_vm_bo_map - map bo inside a vm
1414 * @adev: amdgpu_device pointer
1415 * @bo_va: bo_va to store the address
1416 * @saddr: where to map the BO
1417 * @offset: requested offset in the BO
1418 * @size: BO size in bytes
1419 * @flags: attributes of pages (read/write/valid/etc.)
1421 * Add a mapping of the BO at the specefied addr into the VM.
1424 * 0 for success, error for failure.
1426 * Object has to be reserved and unreserved outside!
1428 int amdgpu_vm_bo_map(struct amdgpu_device *adev,
1429 struct amdgpu_bo_va *bo_va,
1430 uint64_t saddr, uint64_t offset,
1431 uint64_t size, uint64_t flags)
1433 struct amdgpu_bo_va_mapping *mapping, *tmp;
1434 struct amdgpu_bo *bo = bo_va->base.bo;
1435 struct amdgpu_vm *vm = bo_va->base.vm;
1438 /* validate the parameters */
1439 if (saddr & ~PAGE_MASK || offset & ~PAGE_MASK ||
1440 size == 0 || size & ~PAGE_MASK)
1443 /* make sure object fit at this offset */
1444 eaddr = saddr + size - 1;
1445 if (saddr >= eaddr ||
1446 (bo && offset + size > amdgpu_bo_size(bo)) ||
1447 (eaddr >= adev->vm_manager.max_pfn << AMDGPU_GPU_PAGE_SHIFT))
1450 saddr /= AMDGPU_GPU_PAGE_SIZE;
1451 eaddr /= AMDGPU_GPU_PAGE_SIZE;
1453 tmp = amdgpu_vm_it_iter_first(&vm->va, saddr, eaddr);
1455 /* bo and tmp overlap, invalid addr */
1456 dev_err(adev->dev, "bo %p va 0x%010Lx-0x%010Lx conflict with "
1457 "0x%010Lx-0x%010Lx\n", bo, saddr, eaddr,
1458 tmp->start, tmp->last + 1);
1462 mapping = kmalloc(sizeof(*mapping), GFP_KERNEL);
1466 mapping->start = saddr;
1467 mapping->last = eaddr;
1468 mapping->offset = offset;
1469 mapping->flags = flags;
1471 amdgpu_vm_bo_insert_map(adev, bo_va, mapping);
1477 * amdgpu_vm_bo_replace_map - map bo inside a vm, replacing existing mappings
1479 * @adev: amdgpu_device pointer
1480 * @bo_va: bo_va to store the address
1481 * @saddr: where to map the BO
1482 * @offset: requested offset in the BO
1483 * @size: BO size in bytes
1484 * @flags: attributes of pages (read/write/valid/etc.)
1486 * Add a mapping of the BO at the specefied addr into the VM. Replace existing
1487 * mappings as we do so.
1490 * 0 for success, error for failure.
1492 * Object has to be reserved and unreserved outside!
1494 int amdgpu_vm_bo_replace_map(struct amdgpu_device *adev,
1495 struct amdgpu_bo_va *bo_va,
1496 uint64_t saddr, uint64_t offset,
1497 uint64_t size, uint64_t flags)
1499 struct amdgpu_bo_va_mapping *mapping;
1500 struct amdgpu_bo *bo = bo_va->base.bo;
1504 /* validate the parameters */
1505 if (saddr & ~PAGE_MASK || offset & ~PAGE_MASK ||
1506 size == 0 || size & ~PAGE_MASK)
1509 /* make sure object fit at this offset */
1510 eaddr = saddr + size - 1;
1511 if (saddr >= eaddr ||
1512 (bo && offset + size > amdgpu_bo_size(bo)) ||
1513 (eaddr >= adev->vm_manager.max_pfn << AMDGPU_GPU_PAGE_SHIFT))
1516 /* Allocate all the needed memory */
1517 mapping = kmalloc(sizeof(*mapping), GFP_KERNEL);
1521 r = amdgpu_vm_bo_clear_mappings(adev, bo_va->base.vm, saddr, size);
1527 saddr /= AMDGPU_GPU_PAGE_SIZE;
1528 eaddr /= AMDGPU_GPU_PAGE_SIZE;
1530 mapping->start = saddr;
1531 mapping->last = eaddr;
1532 mapping->offset = offset;
1533 mapping->flags = flags;
1535 amdgpu_vm_bo_insert_map(adev, bo_va, mapping);
1541 * amdgpu_vm_bo_unmap - remove bo mapping from vm
1543 * @adev: amdgpu_device pointer
1544 * @bo_va: bo_va to remove the address from
1545 * @saddr: where to the BO is mapped
1547 * Remove a mapping of the BO at the specefied addr from the VM.
1550 * 0 for success, error for failure.
1552 * Object has to be reserved and unreserved outside!
1554 int amdgpu_vm_bo_unmap(struct amdgpu_device *adev,
1555 struct amdgpu_bo_va *bo_va,
1558 struct amdgpu_bo_va_mapping *mapping;
1559 struct amdgpu_vm *vm = bo_va->base.vm;
1562 saddr /= AMDGPU_GPU_PAGE_SIZE;
1564 list_for_each_entry(mapping, &bo_va->valids, list) {
1565 if (mapping->start == saddr)
1569 if (&mapping->list == &bo_va->valids) {
1572 list_for_each_entry(mapping, &bo_va->invalids, list) {
1573 if (mapping->start == saddr)
1577 if (&mapping->list == &bo_va->invalids)
1581 list_del(&mapping->list);
1582 amdgpu_vm_it_remove(mapping, &vm->va);
1583 mapping->bo_va = NULL;
1584 trace_amdgpu_vm_bo_unmap(bo_va, mapping);
1587 list_add(&mapping->list, &vm->freed);
1589 amdgpu_vm_free_mapping(adev, vm, mapping,
1590 bo_va->last_pt_update);
1596 * amdgpu_vm_bo_clear_mappings - remove all mappings in a specific range
1598 * @adev: amdgpu_device pointer
1599 * @vm: VM structure to use
1600 * @saddr: start of the range
1601 * @size: size of the range
1603 * Remove all mappings in a range, split them as appropriate.
1606 * 0 for success, error for failure.
1608 int amdgpu_vm_bo_clear_mappings(struct amdgpu_device *adev,
1609 struct amdgpu_vm *vm,
1610 uint64_t saddr, uint64_t size)
1612 struct amdgpu_bo_va_mapping *before, *after, *tmp, *next;
1616 eaddr = saddr + size - 1;
1617 saddr /= AMDGPU_GPU_PAGE_SIZE;
1618 eaddr /= AMDGPU_GPU_PAGE_SIZE;
1620 /* Allocate all the needed memory */
1621 before = kzalloc(sizeof(*before), GFP_KERNEL);
1624 INIT_LIST_HEAD(&before->list);
1626 after = kzalloc(sizeof(*after), GFP_KERNEL);
1631 INIT_LIST_HEAD(&after->list);
1633 /* Now gather all removed mappings */
1634 tmp = amdgpu_vm_it_iter_first(&vm->va, saddr, eaddr);
1636 /* Remember mapping split at the start */
1637 if (tmp->start < saddr) {
1638 before->start = tmp->start;
1639 before->last = saddr - 1;
1640 before->offset = tmp->offset;
1641 before->flags = tmp->flags;
1642 before->bo_va = tmp->bo_va;
1643 list_add(&before->list, &tmp->bo_va->invalids);
1646 /* Remember mapping split at the end */
1647 if (tmp->last > eaddr) {
1648 after->start = eaddr + 1;
1649 after->last = tmp->last;
1650 after->offset = tmp->offset;
1651 after->offset += (after->start - tmp->start) << PAGE_SHIFT;
1652 after->flags = tmp->flags;
1653 after->bo_va = tmp->bo_va;
1654 list_add(&after->list, &tmp->bo_va->invalids);
1657 list_del(&tmp->list);
1658 list_add(&tmp->list, &removed);
1660 tmp = amdgpu_vm_it_iter_next(tmp, saddr, eaddr);
1663 /* And free them up */
1664 list_for_each_entry_safe(tmp, next, &removed, list) {
1665 amdgpu_vm_it_remove(tmp, &vm->va);
1666 list_del(&tmp->list);
1668 if (tmp->start < saddr)
1670 if (tmp->last > eaddr)
1674 list_add(&tmp->list, &vm->freed);
1675 trace_amdgpu_vm_bo_unmap(NULL, tmp);
1678 /* Insert partial mapping before the range */
1679 if (!list_empty(&before->list)) {
1680 amdgpu_vm_it_insert(before, &vm->va);
1681 if (before->flags & AMDGPU_PTE_PRT)
1682 amdgpu_vm_prt_get(adev);
1687 /* Insert partial mapping after the range */
1688 if (!list_empty(&after->list)) {
1689 amdgpu_vm_it_insert(after, &vm->va);
1690 if (after->flags & AMDGPU_PTE_PRT)
1691 amdgpu_vm_prt_get(adev);
1700 * amdgpu_vm_bo_lookup_mapping - find mapping by address
1702 * @vm: the requested VM
1703 * @addr: the address
1705 * Find a mapping by it's address.
1708 * The amdgpu_bo_va_mapping matching for addr or NULL
1711 struct amdgpu_bo_va_mapping *amdgpu_vm_bo_lookup_mapping(struct amdgpu_vm *vm,
1714 return amdgpu_vm_it_iter_first(&vm->va, addr, addr);
1718 * amdgpu_vm_bo_trace_cs - trace all reserved mappings
1720 * @vm: the requested vm
1721 * @ticket: CS ticket
1723 * Trace all mappings of BOs reserved during a command submission.
1725 void amdgpu_vm_bo_trace_cs(struct amdgpu_vm *vm, struct ww_acquire_ctx *ticket)
1727 struct amdgpu_bo_va_mapping *mapping;
1729 if (!trace_amdgpu_vm_bo_cs_enabled())
1732 for (mapping = amdgpu_vm_it_iter_first(&vm->va, 0, U64_MAX); mapping;
1733 mapping = amdgpu_vm_it_iter_next(mapping, 0, U64_MAX)) {
1734 if (mapping->bo_va && mapping->bo_va->base.bo) {
1735 struct amdgpu_bo *bo;
1737 bo = mapping->bo_va->base.bo;
1738 if (dma_resv_locking_ctx(bo->tbo.base.resv) !=
1743 trace_amdgpu_vm_bo_cs(mapping);
1748 * amdgpu_vm_bo_del - remove a bo from a specific vm
1750 * @adev: amdgpu_device pointer
1751 * @bo_va: requested bo_va
1753 * Remove @bo_va->bo from the requested vm.
1755 * Object have to be reserved!
1757 void amdgpu_vm_bo_del(struct amdgpu_device *adev,
1758 struct amdgpu_bo_va *bo_va)
1760 struct amdgpu_bo_va_mapping *mapping, *next;
1761 struct amdgpu_bo *bo = bo_va->base.bo;
1762 struct amdgpu_vm *vm = bo_va->base.vm;
1763 struct amdgpu_vm_bo_base **base;
1765 dma_resv_assert_held(vm->root.bo->tbo.base.resv);
1768 dma_resv_assert_held(bo->tbo.base.resv);
1769 if (bo->tbo.base.resv == vm->root.bo->tbo.base.resv)
1770 ttm_bo_set_bulk_move(&bo->tbo, NULL);
1772 for (base = &bo_va->base.bo->vm_bo; *base;
1773 base = &(*base)->next) {
1774 if (*base != &bo_va->base)
1777 *base = bo_va->base.next;
1782 spin_lock(&vm->status_lock);
1783 list_del(&bo_va->base.vm_status);
1784 spin_unlock(&vm->status_lock);
1786 list_for_each_entry_safe(mapping, next, &bo_va->valids, list) {
1787 list_del(&mapping->list);
1788 amdgpu_vm_it_remove(mapping, &vm->va);
1789 mapping->bo_va = NULL;
1790 trace_amdgpu_vm_bo_unmap(bo_va, mapping);
1791 list_add(&mapping->list, &vm->freed);
1793 list_for_each_entry_safe(mapping, next, &bo_va->invalids, list) {
1794 list_del(&mapping->list);
1795 amdgpu_vm_it_remove(mapping, &vm->va);
1796 amdgpu_vm_free_mapping(adev, vm, mapping,
1797 bo_va->last_pt_update);
1800 dma_fence_put(bo_va->last_pt_update);
1802 if (bo && bo_va->is_xgmi)
1803 amdgpu_xgmi_set_pstate(adev, AMDGPU_XGMI_PSTATE_MIN);
1809 * amdgpu_vm_evictable - check if we can evict a VM
1811 * @bo: A page table of the VM.
1813 * Check if it is possible to evict a VM.
1815 bool amdgpu_vm_evictable(struct amdgpu_bo *bo)
1817 struct amdgpu_vm_bo_base *bo_base = bo->vm_bo;
1819 /* Page tables of a destroyed VM can go away immediately */
1820 if (!bo_base || !bo_base->vm)
1823 /* Don't evict VM page tables while they are busy */
1824 if (!dma_resv_test_signaled(bo->tbo.base.resv, DMA_RESV_USAGE_BOOKKEEP))
1827 /* Try to block ongoing updates */
1828 if (!amdgpu_vm_eviction_trylock(bo_base->vm))
1831 /* Don't evict VM page tables while they are updated */
1832 if (!dma_fence_is_signaled(bo_base->vm->last_unlocked)) {
1833 amdgpu_vm_eviction_unlock(bo_base->vm);
1837 bo_base->vm->evicting = true;
1838 amdgpu_vm_eviction_unlock(bo_base->vm);
1843 * amdgpu_vm_bo_invalidate - mark the bo as invalid
1845 * @adev: amdgpu_device pointer
1846 * @bo: amdgpu buffer object
1847 * @evicted: is the BO evicted
1849 * Mark @bo as invalid.
1851 void amdgpu_vm_bo_invalidate(struct amdgpu_device *adev,
1852 struct amdgpu_bo *bo, bool evicted)
1854 struct amdgpu_vm_bo_base *bo_base;
1856 /* shadow bo doesn't have bo base, its validation needs its parent */
1857 if (bo->parent && (amdgpu_bo_shadowed(bo->parent) == bo))
1860 for (bo_base = bo->vm_bo; bo_base; bo_base = bo_base->next) {
1861 struct amdgpu_vm *vm = bo_base->vm;
1863 if (evicted && bo->tbo.base.resv == vm->root.bo->tbo.base.resv) {
1864 amdgpu_vm_bo_evicted(bo_base);
1870 bo_base->moved = true;
1872 if (bo->tbo.type == ttm_bo_type_kernel)
1873 amdgpu_vm_bo_relocated(bo_base);
1874 else if (bo->tbo.base.resv == vm->root.bo->tbo.base.resv)
1875 amdgpu_vm_bo_moved(bo_base);
1877 amdgpu_vm_bo_invalidated(bo_base);
1882 * amdgpu_vm_get_block_size - calculate VM page table size as power of two
1887 * VM page table as power of two
1889 static uint32_t amdgpu_vm_get_block_size(uint64_t vm_size)
1891 /* Total bits covered by PD + PTs */
1892 unsigned bits = ilog2(vm_size) + 18;
1894 /* Make sure the PD is 4K in size up to 8GB address space.
1895 Above that split equal between PD and PTs */
1899 return ((bits + 3) / 2);
1903 * amdgpu_vm_adjust_size - adjust vm size, block size and fragment size
1905 * @adev: amdgpu_device pointer
1906 * @min_vm_size: the minimum vm size in GB if it's set auto
1907 * @fragment_size_default: Default PTE fragment size
1908 * @max_level: max VMPT level
1909 * @max_bits: max address space size in bits
1912 void amdgpu_vm_adjust_size(struct amdgpu_device *adev, uint32_t min_vm_size,
1913 uint32_t fragment_size_default, unsigned max_level,
1916 unsigned int max_size = 1 << (max_bits - 30);
1917 unsigned int vm_size;
1920 /* adjust vm size first */
1921 if (amdgpu_vm_size != -1) {
1922 vm_size = amdgpu_vm_size;
1923 if (vm_size > max_size) {
1924 dev_warn(adev->dev, "VM size (%d) too large, max is %u GB\n",
1925 amdgpu_vm_size, max_size);
1930 unsigned int phys_ram_gb;
1932 /* Optimal VM size depends on the amount of physical
1933 * RAM available. Underlying requirements and
1936 * - Need to map system memory and VRAM from all GPUs
1937 * - VRAM from other GPUs not known here
1938 * - Assume VRAM <= system memory
1939 * - On GFX8 and older, VM space can be segmented for
1941 * - Need to allow room for fragmentation, guard pages etc.
1943 * This adds up to a rough guess of system memory x3.
1944 * Round up to power of two to maximize the available
1945 * VM size with the given page table size.
1948 phys_ram_gb = ((uint64_t)si.totalram * si.mem_unit +
1949 (1 << 30) - 1) >> 30;
1950 vm_size = roundup_pow_of_two(
1951 min(max(phys_ram_gb * 3, min_vm_size), max_size));
1954 adev->vm_manager.max_pfn = (uint64_t)vm_size << 18;
1956 tmp = roundup_pow_of_two(adev->vm_manager.max_pfn);
1957 if (amdgpu_vm_block_size != -1)
1958 tmp >>= amdgpu_vm_block_size - 9;
1959 tmp = DIV_ROUND_UP(fls64(tmp) - 1, 9) - 1;
1960 adev->vm_manager.num_level = min(max_level, (unsigned)tmp);
1961 switch (adev->vm_manager.num_level) {
1963 adev->vm_manager.root_level = AMDGPU_VM_PDB2;
1966 adev->vm_manager.root_level = AMDGPU_VM_PDB1;
1969 adev->vm_manager.root_level = AMDGPU_VM_PDB0;
1972 dev_err(adev->dev, "VMPT only supports 2~4+1 levels\n");
1974 /* block size depends on vm size and hw setup*/
1975 if (amdgpu_vm_block_size != -1)
1976 adev->vm_manager.block_size =
1977 min((unsigned)amdgpu_vm_block_size, max_bits
1978 - AMDGPU_GPU_PAGE_SHIFT
1979 - 9 * adev->vm_manager.num_level);
1980 else if (adev->vm_manager.num_level > 1)
1981 adev->vm_manager.block_size = 9;
1983 adev->vm_manager.block_size = amdgpu_vm_get_block_size(tmp);
1985 if (amdgpu_vm_fragment_size == -1)
1986 adev->vm_manager.fragment_size = fragment_size_default;
1988 adev->vm_manager.fragment_size = amdgpu_vm_fragment_size;
1990 DRM_INFO("vm size is %u GB, %u levels, block size is %u-bit, fragment size is %u-bit\n",
1991 vm_size, adev->vm_manager.num_level + 1,
1992 adev->vm_manager.block_size,
1993 adev->vm_manager.fragment_size);
1997 * amdgpu_vm_wait_idle - wait for the VM to become idle
1999 * @vm: VM object to wait for
2000 * @timeout: timeout to wait for VM to become idle
2002 long amdgpu_vm_wait_idle(struct amdgpu_vm *vm, long timeout)
2004 timeout = dma_resv_wait_timeout(vm->root.bo->tbo.base.resv,
2005 DMA_RESV_USAGE_BOOKKEEP,
2010 return dma_fence_wait_timeout(vm->last_unlocked, true, timeout);
2014 * amdgpu_vm_init - initialize a vm instance
2016 * @adev: amdgpu_device pointer
2022 * 0 for success, error for failure.
2024 int amdgpu_vm_init(struct amdgpu_device *adev, struct amdgpu_vm *vm)
2026 struct amdgpu_bo *root_bo;
2027 struct amdgpu_bo_vm *root;
2030 vm->va = RB_ROOT_CACHED;
2031 for (i = 0; i < AMDGPU_MAX_VMHUBS; i++)
2032 vm->reserved_vmid[i] = NULL;
2033 INIT_LIST_HEAD(&vm->evicted);
2034 INIT_LIST_HEAD(&vm->relocated);
2035 INIT_LIST_HEAD(&vm->moved);
2036 INIT_LIST_HEAD(&vm->idle);
2037 INIT_LIST_HEAD(&vm->invalidated);
2038 spin_lock_init(&vm->status_lock);
2039 INIT_LIST_HEAD(&vm->freed);
2040 INIT_LIST_HEAD(&vm->done);
2041 INIT_LIST_HEAD(&vm->pt_freed);
2042 INIT_WORK(&vm->pt_free_work, amdgpu_vm_pt_free_work);
2044 /* create scheduler entities for page table updates */
2045 r = drm_sched_entity_init(&vm->immediate, DRM_SCHED_PRIORITY_NORMAL,
2046 adev->vm_manager.vm_pte_scheds,
2047 adev->vm_manager.vm_pte_num_scheds, NULL);
2051 r = drm_sched_entity_init(&vm->delayed, DRM_SCHED_PRIORITY_NORMAL,
2052 adev->vm_manager.vm_pte_scheds,
2053 adev->vm_manager.vm_pte_num_scheds, NULL);
2055 goto error_free_immediate;
2057 vm->pte_support_ats = false;
2058 vm->is_compute_context = false;
2060 vm->use_cpu_for_update = !!(adev->vm_manager.vm_update_mode &
2061 AMDGPU_VM_USE_CPU_FOR_GFX);
2063 DRM_DEBUG_DRIVER("VM update mode is %s\n",
2064 vm->use_cpu_for_update ? "CPU" : "SDMA");
2065 WARN_ONCE((vm->use_cpu_for_update &&
2066 !amdgpu_gmc_vram_full_visible(&adev->gmc)),
2067 "CPU update of VM recommended only for large BAR system\n");
2069 if (vm->use_cpu_for_update)
2070 vm->update_funcs = &amdgpu_vm_cpu_funcs;
2072 vm->update_funcs = &amdgpu_vm_sdma_funcs;
2073 vm->last_update = NULL;
2074 vm->last_unlocked = dma_fence_get_stub();
2075 vm->last_tlb_flush = dma_fence_get_stub();
2077 mutex_init(&vm->eviction_lock);
2078 vm->evicting = false;
2080 r = amdgpu_vm_pt_create(adev, vm, adev->vm_manager.root_level,
2083 goto error_free_delayed;
2084 root_bo = &root->bo;
2085 r = amdgpu_bo_reserve(root_bo, true);
2087 goto error_free_root;
2089 r = dma_resv_reserve_fences(root_bo->tbo.base.resv, 1);
2091 goto error_unreserve;
2093 amdgpu_vm_bo_base_init(&vm->root, vm, root_bo);
2095 r = amdgpu_vm_pt_clear(adev, vm, root, false);
2097 goto error_unreserve;
2099 amdgpu_bo_unreserve(vm->root.bo);
2101 INIT_KFIFO(vm->faults);
2106 amdgpu_bo_unreserve(vm->root.bo);
2109 amdgpu_bo_unref(&root->shadow);
2110 amdgpu_bo_unref(&root_bo);
2114 dma_fence_put(vm->last_tlb_flush);
2115 dma_fence_put(vm->last_unlocked);
2116 drm_sched_entity_destroy(&vm->delayed);
2118 error_free_immediate:
2119 drm_sched_entity_destroy(&vm->immediate);
2125 * amdgpu_vm_make_compute - Turn a GFX VM into a compute VM
2127 * @adev: amdgpu_device pointer
2130 * This only works on GFX VMs that don't have any BOs added and no
2131 * page tables allocated yet.
2133 * Changes the following VM parameters:
2134 * - use_cpu_for_update
2135 * - pte_supports_ats
2137 * Reinitializes the page directory to reflect the changed ATS
2141 * 0 for success, -errno for errors.
2143 int amdgpu_vm_make_compute(struct amdgpu_device *adev, struct amdgpu_vm *vm)
2145 bool pte_support_ats = (adev->asic_type == CHIP_RAVEN);
2148 r = amdgpu_bo_reserve(vm->root.bo, true);
2153 if (!amdgpu_vm_pt_is_root_clean(adev, vm)) {
2158 /* Check if PD needs to be reinitialized and do it before
2159 * changing any other state, in case it fails.
2161 if (pte_support_ats != vm->pte_support_ats) {
2162 vm->pte_support_ats = pte_support_ats;
2163 r = amdgpu_vm_pt_clear(adev, vm, to_amdgpu_bo_vm(vm->root.bo),
2169 /* Update VM state */
2170 vm->use_cpu_for_update = !!(adev->vm_manager.vm_update_mode &
2171 AMDGPU_VM_USE_CPU_FOR_COMPUTE);
2172 DRM_DEBUG_DRIVER("VM update mode is %s\n",
2173 vm->use_cpu_for_update ? "CPU" : "SDMA");
2174 WARN_ONCE((vm->use_cpu_for_update &&
2175 !amdgpu_gmc_vram_full_visible(&adev->gmc)),
2176 "CPU update of VM recommended only for large BAR system\n");
2178 if (vm->use_cpu_for_update) {
2179 /* Sync with last SDMA update/clear before switching to CPU */
2180 r = amdgpu_bo_sync_wait(vm->root.bo,
2181 AMDGPU_FENCE_OWNER_UNDEFINED, true);
2185 vm->update_funcs = &amdgpu_vm_cpu_funcs;
2187 vm->update_funcs = &amdgpu_vm_sdma_funcs;
2190 * Make sure root PD gets mapped. As vm_update_mode could be changed
2191 * when turning a GFX VM into a compute VM.
2193 r = vm->update_funcs->map_table(to_amdgpu_bo_vm(vm->root.bo));
2197 dma_fence_put(vm->last_update);
2198 vm->last_update = NULL;
2199 vm->is_compute_context = true;
2201 /* Free the shadow bo for compute VM */
2202 amdgpu_bo_unref(&to_amdgpu_bo_vm(vm->root.bo)->shadow);
2207 amdgpu_bo_unreserve(vm->root.bo);
2212 * amdgpu_vm_release_compute - release a compute vm
2213 * @adev: amdgpu_device pointer
2214 * @vm: a vm turned into compute vm by calling amdgpu_vm_make_compute
2216 * This is a correspondant of amdgpu_vm_make_compute. It decouples compute
2217 * pasid from vm. Compute should stop use of vm after this call.
2219 void amdgpu_vm_release_compute(struct amdgpu_device *adev, struct amdgpu_vm *vm)
2221 amdgpu_vm_set_pasid(adev, vm, 0);
2222 vm->is_compute_context = false;
2226 * amdgpu_vm_fini - tear down a vm instance
2228 * @adev: amdgpu_device pointer
2232 * Unbind the VM and remove all bos from the vm bo list
2234 void amdgpu_vm_fini(struct amdgpu_device *adev, struct amdgpu_vm *vm)
2236 struct amdgpu_bo_va_mapping *mapping, *tmp;
2237 bool prt_fini_needed = !!adev->gmc.gmc_funcs->set_prt;
2238 struct amdgpu_bo *root;
2239 unsigned long flags;
2242 amdgpu_amdkfd_gpuvm_destroy_cb(adev, vm);
2244 flush_work(&vm->pt_free_work);
2246 root = amdgpu_bo_ref(vm->root.bo);
2247 amdgpu_bo_reserve(root, true);
2248 amdgpu_vm_set_pasid(adev, vm, 0);
2249 dma_fence_wait(vm->last_unlocked, false);
2250 dma_fence_put(vm->last_unlocked);
2251 dma_fence_wait(vm->last_tlb_flush, false);
2252 /* Make sure that all fence callbacks have completed */
2253 spin_lock_irqsave(vm->last_tlb_flush->lock, flags);
2254 spin_unlock_irqrestore(vm->last_tlb_flush->lock, flags);
2255 dma_fence_put(vm->last_tlb_flush);
2257 list_for_each_entry_safe(mapping, tmp, &vm->freed, list) {
2258 if (mapping->flags & AMDGPU_PTE_PRT && prt_fini_needed) {
2259 amdgpu_vm_prt_fini(adev, vm);
2260 prt_fini_needed = false;
2263 list_del(&mapping->list);
2264 amdgpu_vm_free_mapping(adev, vm, mapping, NULL);
2267 amdgpu_vm_pt_free_root(adev, vm);
2268 amdgpu_bo_unreserve(root);
2269 amdgpu_bo_unref(&root);
2270 WARN_ON(vm->root.bo);
2272 drm_sched_entity_destroy(&vm->immediate);
2273 drm_sched_entity_destroy(&vm->delayed);
2275 if (!RB_EMPTY_ROOT(&vm->va.rb_root)) {
2276 dev_err(adev->dev, "still active bo inside vm\n");
2278 rbtree_postorder_for_each_entry_safe(mapping, tmp,
2279 &vm->va.rb_root, rb) {
2280 /* Don't remove the mapping here, we don't want to trigger a
2281 * rebalance and the tree is about to be destroyed anyway.
2283 list_del(&mapping->list);
2287 dma_fence_put(vm->last_update);
2288 for (i = 0; i < AMDGPU_MAX_VMHUBS; i++)
2289 amdgpu_vmid_free_reserved(adev, vm, i);
2293 * amdgpu_vm_manager_init - init the VM manager
2295 * @adev: amdgpu_device pointer
2297 * Initialize the VM manager structures
2299 void amdgpu_vm_manager_init(struct amdgpu_device *adev)
2303 /* Concurrent flushes are only possible starting with Vega10 and
2304 * are broken on Navi10 and Navi14.
2306 adev->vm_manager.concurrent_flush = !(adev->asic_type < CHIP_VEGA10 ||
2307 adev->asic_type == CHIP_NAVI10 ||
2308 adev->asic_type == CHIP_NAVI14);
2309 amdgpu_vmid_mgr_init(adev);
2311 adev->vm_manager.fence_context =
2312 dma_fence_context_alloc(AMDGPU_MAX_RINGS);
2313 for (i = 0; i < AMDGPU_MAX_RINGS; ++i)
2314 adev->vm_manager.seqno[i] = 0;
2316 spin_lock_init(&adev->vm_manager.prt_lock);
2317 atomic_set(&adev->vm_manager.num_prt_users, 0);
2319 /* If not overridden by the user, by default, only in large BAR systems
2320 * Compute VM tables will be updated by CPU
2322 #ifdef CONFIG_X86_64
2323 if (amdgpu_vm_update_mode == -1) {
2324 /* For asic with VF MMIO access protection
2325 * avoid using CPU for VM table updates
2327 if (amdgpu_gmc_vram_full_visible(&adev->gmc) &&
2328 !amdgpu_sriov_vf_mmio_access_protection(adev))
2329 adev->vm_manager.vm_update_mode =
2330 AMDGPU_VM_USE_CPU_FOR_COMPUTE;
2332 adev->vm_manager.vm_update_mode = 0;
2334 adev->vm_manager.vm_update_mode = amdgpu_vm_update_mode;
2336 adev->vm_manager.vm_update_mode = 0;
2339 xa_init_flags(&adev->vm_manager.pasids, XA_FLAGS_LOCK_IRQ);
2343 * amdgpu_vm_manager_fini - cleanup VM manager
2345 * @adev: amdgpu_device pointer
2347 * Cleanup the VM manager and free resources.
2349 void amdgpu_vm_manager_fini(struct amdgpu_device *adev)
2351 WARN_ON(!xa_empty(&adev->vm_manager.pasids));
2352 xa_destroy(&adev->vm_manager.pasids);
2354 amdgpu_vmid_mgr_fini(adev);
2358 * amdgpu_vm_ioctl - Manages VMID reservation for vm hubs.
2360 * @dev: drm device pointer
2361 * @data: drm_amdgpu_vm
2362 * @filp: drm file pointer
2365 * 0 for success, -errno for errors.
2367 int amdgpu_vm_ioctl(struct drm_device *dev, void *data, struct drm_file *filp)
2369 union drm_amdgpu_vm *args = data;
2370 struct amdgpu_device *adev = drm_to_adev(dev);
2371 struct amdgpu_fpriv *fpriv = filp->driver_priv;
2374 switch (args->in.op) {
2375 case AMDGPU_VM_OP_RESERVE_VMID:
2376 /* We only have requirement to reserve vmid from gfxhub */
2377 r = amdgpu_vmid_alloc_reserved(adev, &fpriv->vm,
2382 case AMDGPU_VM_OP_UNRESERVE_VMID:
2383 amdgpu_vmid_free_reserved(adev, &fpriv->vm, AMDGPU_GFXHUB_0);
2393 * amdgpu_vm_get_task_info - Extracts task info for a PASID.
2395 * @adev: drm device pointer
2396 * @pasid: PASID identifier for VM
2397 * @task_info: task_info to fill.
2399 void amdgpu_vm_get_task_info(struct amdgpu_device *adev, u32 pasid,
2400 struct amdgpu_task_info *task_info)
2402 struct amdgpu_vm *vm;
2403 unsigned long flags;
2405 xa_lock_irqsave(&adev->vm_manager.pasids, flags);
2407 vm = xa_load(&adev->vm_manager.pasids, pasid);
2409 *task_info = vm->task_info;
2411 xa_unlock_irqrestore(&adev->vm_manager.pasids, flags);
2415 * amdgpu_vm_set_task_info - Sets VMs task info.
2417 * @vm: vm for which to set the info
2419 void amdgpu_vm_set_task_info(struct amdgpu_vm *vm)
2421 if (vm->task_info.pid)
2424 vm->task_info.pid = current->pid;
2425 get_task_comm(vm->task_info.task_name, current);
2427 if (current->group_leader->mm != current->mm)
2430 vm->task_info.tgid = current->group_leader->pid;
2431 get_task_comm(vm->task_info.process_name, current->group_leader);
2435 * amdgpu_vm_handle_fault - graceful handling of VM faults.
2436 * @adev: amdgpu device pointer
2437 * @pasid: PASID of the VM
2438 * @addr: Address of the fault
2439 * @write_fault: true is write fault, false is read fault
2441 * Try to gracefully handle a VM fault. Return true if the fault was handled and
2442 * shouldn't be reported any more.
2444 bool amdgpu_vm_handle_fault(struct amdgpu_device *adev, u32 pasid,
2445 uint64_t addr, bool write_fault)
2447 bool is_compute_context = false;
2448 struct amdgpu_bo *root;
2449 unsigned long irqflags;
2450 uint64_t value, flags;
2451 struct amdgpu_vm *vm;
2454 xa_lock_irqsave(&adev->vm_manager.pasids, irqflags);
2455 vm = xa_load(&adev->vm_manager.pasids, pasid);
2457 root = amdgpu_bo_ref(vm->root.bo);
2458 is_compute_context = vm->is_compute_context;
2462 xa_unlock_irqrestore(&adev->vm_manager.pasids, irqflags);
2467 addr /= AMDGPU_GPU_PAGE_SIZE;
2469 if (is_compute_context &&
2470 !svm_range_restore_pages(adev, pasid, addr, write_fault)) {
2471 amdgpu_bo_unref(&root);
2475 r = amdgpu_bo_reserve(root, true);
2479 /* Double check that the VM still exists */
2480 xa_lock_irqsave(&adev->vm_manager.pasids, irqflags);
2481 vm = xa_load(&adev->vm_manager.pasids, pasid);
2482 if (vm && vm->root.bo != root)
2484 xa_unlock_irqrestore(&adev->vm_manager.pasids, irqflags);
2488 flags = AMDGPU_PTE_VALID | AMDGPU_PTE_SNOOPED |
2491 if (is_compute_context) {
2492 /* Intentionally setting invalid PTE flag
2493 * combination to force a no-retry-fault
2495 flags = AMDGPU_PTE_SNOOPED | AMDGPU_PTE_PRT;
2497 } else if (amdgpu_vm_fault_stop == AMDGPU_VM_FAULT_STOP_NEVER) {
2498 /* Redirect the access to the dummy page */
2499 value = adev->dummy_page_addr;
2500 flags |= AMDGPU_PTE_EXECUTABLE | AMDGPU_PTE_READABLE |
2501 AMDGPU_PTE_WRITEABLE;
2504 /* Let the hw retry silently on the PTE */
2508 r = dma_resv_reserve_fences(root->tbo.base.resv, 1);
2510 pr_debug("failed %d to reserve fence slot\n", r);
2514 r = amdgpu_vm_update_range(adev, vm, true, false, false, NULL, addr,
2515 addr, flags, value, 0, NULL, NULL, NULL);
2519 r = amdgpu_vm_update_pdes(adev, vm, true);
2522 amdgpu_bo_unreserve(root);
2524 DRM_ERROR("Can't handle page fault (%d)\n", r);
2527 amdgpu_bo_unref(&root);
2532 #if defined(CONFIG_DEBUG_FS)
2534 * amdgpu_debugfs_vm_bo_info - print BO info for the VM
2536 * @vm: Requested VM for printing BO info
2539 * Print BO information in debugfs file for the VM
2541 void amdgpu_debugfs_vm_bo_info(struct amdgpu_vm *vm, struct seq_file *m)
2543 struct amdgpu_bo_va *bo_va, *tmp;
2545 u64 total_evicted = 0;
2546 u64 total_relocated = 0;
2547 u64 total_moved = 0;
2548 u64 total_invalidated = 0;
2550 unsigned int total_idle_objs = 0;
2551 unsigned int total_evicted_objs = 0;
2552 unsigned int total_relocated_objs = 0;
2553 unsigned int total_moved_objs = 0;
2554 unsigned int total_invalidated_objs = 0;
2555 unsigned int total_done_objs = 0;
2556 unsigned int id = 0;
2558 spin_lock(&vm->status_lock);
2559 seq_puts(m, "\tIdle BOs:\n");
2560 list_for_each_entry_safe(bo_va, tmp, &vm->idle, base.vm_status) {
2561 if (!bo_va->base.bo)
2563 total_idle += amdgpu_bo_print_info(id++, bo_va->base.bo, m);
2565 total_idle_objs = id;
2568 seq_puts(m, "\tEvicted BOs:\n");
2569 list_for_each_entry_safe(bo_va, tmp, &vm->evicted, base.vm_status) {
2570 if (!bo_va->base.bo)
2572 total_evicted += amdgpu_bo_print_info(id++, bo_va->base.bo, m);
2574 total_evicted_objs = id;
2577 seq_puts(m, "\tRelocated BOs:\n");
2578 list_for_each_entry_safe(bo_va, tmp, &vm->relocated, base.vm_status) {
2579 if (!bo_va->base.bo)
2581 total_relocated += amdgpu_bo_print_info(id++, bo_va->base.bo, m);
2583 total_relocated_objs = id;
2586 seq_puts(m, "\tMoved BOs:\n");
2587 list_for_each_entry_safe(bo_va, tmp, &vm->moved, base.vm_status) {
2588 if (!bo_va->base.bo)
2590 total_moved += amdgpu_bo_print_info(id++, bo_va->base.bo, m);
2592 total_moved_objs = id;
2595 seq_puts(m, "\tInvalidated BOs:\n");
2596 list_for_each_entry_safe(bo_va, tmp, &vm->invalidated, base.vm_status) {
2597 if (!bo_va->base.bo)
2599 total_invalidated += amdgpu_bo_print_info(id++, bo_va->base.bo, m);
2601 total_invalidated_objs = id;
2604 seq_puts(m, "\tDone BOs:\n");
2605 list_for_each_entry_safe(bo_va, tmp, &vm->done, base.vm_status) {
2606 if (!bo_va->base.bo)
2608 total_done += amdgpu_bo_print_info(id++, bo_va->base.bo, m);
2610 spin_unlock(&vm->status_lock);
2611 total_done_objs = id;
2613 seq_printf(m, "\tTotal idle size: %12lld\tobjs:\t%d\n", total_idle,
2615 seq_printf(m, "\tTotal evicted size: %12lld\tobjs:\t%d\n", total_evicted,
2616 total_evicted_objs);
2617 seq_printf(m, "\tTotal relocated size: %12lld\tobjs:\t%d\n", total_relocated,
2618 total_relocated_objs);
2619 seq_printf(m, "\tTotal moved size: %12lld\tobjs:\t%d\n", total_moved,
2621 seq_printf(m, "\tTotal invalidated size: %12lld\tobjs:\t%d\n", total_invalidated,
2622 total_invalidated_objs);
2623 seq_printf(m, "\tTotal done size: %12lld\tobjs:\t%d\n", total_done,