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
28 #include <linux/dma-fence-array.h>
29 #include <linux/interval_tree_generic.h>
31 #include <drm/amdgpu_drm.h>
33 #include "amdgpu_trace.h"
37 * GPUVM is similar to the legacy gart on older asics, however
38 * rather than there being a single global gart table
39 * for the entire GPU, there are multiple VM page tables active
40 * at any given time. The VM page tables can contain a mix
41 * vram pages and system memory pages and system memory pages
42 * can be mapped as snooped (cached system pages) or unsnooped
43 * (uncached system pages).
44 * Each VM has an ID associated with it and there is a page table
45 * associated with each VMID. When execting a command buffer,
46 * the kernel tells the the ring what VMID to use for that command
47 * buffer. VMIDs are allocated dynamically as commands are submitted.
48 * The userspace drivers maintain their own address space and the kernel
49 * sets up their pages tables accordingly when they submit their
50 * command buffers and a VMID is assigned.
51 * Cayman/Trinity support up to 8 active VMs at any given time;
55 #define START(node) ((node)->start)
56 #define LAST(node) ((node)->last)
58 INTERVAL_TREE_DEFINE(struct amdgpu_bo_va_mapping, rb, uint64_t, __subtree_last,
59 START, LAST, static, amdgpu_vm_it)
64 /* Local structure. Encapsulate some VM table update parameters to reduce
65 * the number of function parameters
67 struct amdgpu_pte_update_params {
68 /* amdgpu device we do this update for */
69 struct amdgpu_device *adev;
70 /* optional amdgpu_vm we do this update for */
72 /* address where to copy page table entries from */
74 /* indirect buffer to fill with commands */
76 /* Function which actually does the update */
77 void (*func)(struct amdgpu_pte_update_params *params, uint64_t pe,
78 uint64_t addr, unsigned count, uint32_t incr,
80 /* indicate update pt or its shadow */
84 /* Helper to disable partial resident texture feature from a fence callback */
85 struct amdgpu_prt_cb {
86 struct amdgpu_device *adev;
87 struct dma_fence_cb cb;
91 * amdgpu_vm_num_entries - return the number of entries in a PD/PT
93 * @adev: amdgpu_device pointer
95 * Calculate the number of entries in a page directory or page table.
97 static unsigned amdgpu_vm_num_entries(struct amdgpu_device *adev,
101 /* For the root directory */
102 return adev->vm_manager.max_pfn >>
103 (adev->vm_manager.block_size *
104 adev->vm_manager.num_level);
105 else if (level == adev->vm_manager.num_level)
106 /* For the page tables on the leaves */
107 return AMDGPU_VM_PTE_COUNT(adev);
109 /* Everything in between */
110 return 1 << adev->vm_manager.block_size;
114 * amdgpu_vm_bo_size - returns the size of the BOs in bytes
116 * @adev: amdgpu_device pointer
118 * Calculate the size of the BO for a page directory or page table in bytes.
120 static unsigned amdgpu_vm_bo_size(struct amdgpu_device *adev, unsigned level)
122 return AMDGPU_GPU_PAGE_ALIGN(amdgpu_vm_num_entries(adev, level) * 8);
126 * amdgpu_vm_get_pd_bo - add the VM PD to a validation list
128 * @vm: vm providing the BOs
129 * @validated: head of validation list
130 * @entry: entry to add
132 * Add the page directory to the list of BOs to
133 * validate for command submission.
135 void amdgpu_vm_get_pd_bo(struct amdgpu_vm *vm,
136 struct list_head *validated,
137 struct amdgpu_bo_list_entry *entry)
139 entry->robj = vm->root.bo;
141 entry->tv.bo = &entry->robj->tbo;
142 entry->tv.shared = true;
143 entry->user_pages = NULL;
144 list_add(&entry->tv.head, validated);
148 * amdgpu_vm_validate_layer - validate a single page table level
150 * @parent: parent page table level
151 * @validate: callback to do the validation
152 * @param: parameter for the validation callback
154 * Validate the page table BOs on command submission if neccessary.
156 static int amdgpu_vm_validate_level(struct amdgpu_vm_pt *parent,
157 int (*validate)(void *, struct amdgpu_bo *),
163 if (!parent->entries)
166 for (i = 0; i <= parent->last_entry_used; ++i) {
167 struct amdgpu_vm_pt *entry = &parent->entries[i];
172 r = validate(param, entry->bo);
177 * Recurse into the sub directory. This is harmless because we
178 * have only a maximum of 5 layers.
180 r = amdgpu_vm_validate_level(entry, validate, param);
189 * amdgpu_vm_validate_pt_bos - validate the page table BOs
191 * @adev: amdgpu device pointer
192 * @vm: vm providing the BOs
193 * @validate: callback to do the validation
194 * @param: parameter for the validation callback
196 * Validate the page table BOs on command submission if neccessary.
198 int amdgpu_vm_validate_pt_bos(struct amdgpu_device *adev, struct amdgpu_vm *vm,
199 int (*validate)(void *p, struct amdgpu_bo *bo),
202 uint64_t num_evictions;
204 /* We only need to validate the page tables
205 * if they aren't already valid.
207 num_evictions = atomic64_read(&adev->num_evictions);
208 if (num_evictions == vm->last_eviction_counter)
211 return amdgpu_vm_validate_level(&vm->root, validate, param);
215 * amdgpu_vm_move_level_in_lru - move one level of PT BOs to the LRU tail
217 * @adev: amdgpu device instance
218 * @vm: vm providing the BOs
220 * Move the PT BOs to the tail of the LRU.
222 static void amdgpu_vm_move_level_in_lru(struct amdgpu_vm_pt *parent)
226 if (!parent->entries)
229 for (i = 0; i <= parent->last_entry_used; ++i) {
230 struct amdgpu_vm_pt *entry = &parent->entries[i];
235 ttm_bo_move_to_lru_tail(&entry->bo->tbo);
236 amdgpu_vm_move_level_in_lru(entry);
241 * amdgpu_vm_move_pt_bos_in_lru - move the PT BOs to the LRU tail
243 * @adev: amdgpu device instance
244 * @vm: vm providing the BOs
246 * Move the PT BOs to the tail of the LRU.
248 void amdgpu_vm_move_pt_bos_in_lru(struct amdgpu_device *adev,
249 struct amdgpu_vm *vm)
251 struct ttm_bo_global *glob = adev->mman.bdev.glob;
253 spin_lock(&glob->lru_lock);
254 amdgpu_vm_move_level_in_lru(&vm->root);
255 spin_unlock(&glob->lru_lock);
259 * amdgpu_vm_alloc_levels - allocate the PD/PT levels
261 * @adev: amdgpu_device pointer
263 * @saddr: start of the address range
264 * @eaddr: end of the address range
266 * Make sure the page directories and page tables are allocated
268 static int amdgpu_vm_alloc_levels(struct amdgpu_device *adev,
269 struct amdgpu_vm *vm,
270 struct amdgpu_vm_pt *parent,
271 uint64_t saddr, uint64_t eaddr,
274 unsigned shift = (adev->vm_manager.num_level - level) *
275 adev->vm_manager.block_size;
276 unsigned pt_idx, from, to;
279 if (!parent->entries) {
280 unsigned num_entries = amdgpu_vm_num_entries(adev, level);
282 parent->entries = drm_calloc_large(num_entries,
283 sizeof(struct amdgpu_vm_pt));
284 if (!parent->entries)
286 memset(parent->entries, 0 , sizeof(struct amdgpu_vm_pt));
289 from = saddr >> shift;
291 if (from >= amdgpu_vm_num_entries(adev, level) ||
292 to >= amdgpu_vm_num_entries(adev, level))
295 if (to > parent->last_entry_used)
296 parent->last_entry_used = to;
299 saddr = saddr & ((1 << shift) - 1);
300 eaddr = eaddr & ((1 << shift) - 1);
302 /* walk over the address space and allocate the page tables */
303 for (pt_idx = from; pt_idx <= to; ++pt_idx) {
304 struct reservation_object *resv = vm->root.bo->tbo.resv;
305 struct amdgpu_vm_pt *entry = &parent->entries[pt_idx];
306 struct amdgpu_bo *pt;
309 r = amdgpu_bo_create(adev,
310 amdgpu_vm_bo_size(adev, level),
311 AMDGPU_GPU_PAGE_SIZE, true,
312 AMDGPU_GEM_DOMAIN_VRAM,
313 AMDGPU_GEM_CREATE_NO_CPU_ACCESS |
314 AMDGPU_GEM_CREATE_SHADOW |
315 AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS |
316 AMDGPU_GEM_CREATE_VRAM_CLEARED,
321 /* Keep a reference to the root directory to avoid
322 * freeing them up in the wrong order.
324 pt->parent = amdgpu_bo_ref(vm->root.bo);
330 if (level < adev->vm_manager.num_level) {
331 uint64_t sub_saddr = (pt_idx == from) ? saddr : 0;
332 uint64_t sub_eaddr = (pt_idx == to) ? eaddr :
334 r = amdgpu_vm_alloc_levels(adev, vm, entry, sub_saddr,
345 * amdgpu_vm_alloc_pts - Allocate page tables.
347 * @adev: amdgpu_device pointer
348 * @vm: VM to allocate page tables for
349 * @saddr: Start address which needs to be allocated
350 * @size: Size from start address we need.
352 * Make sure the page tables are allocated.
354 int amdgpu_vm_alloc_pts(struct amdgpu_device *adev,
355 struct amdgpu_vm *vm,
356 uint64_t saddr, uint64_t size)
361 /* validate the parameters */
362 if (saddr & AMDGPU_GPU_PAGE_MASK || size & AMDGPU_GPU_PAGE_MASK)
365 eaddr = saddr + size - 1;
366 last_pfn = eaddr / AMDGPU_GPU_PAGE_SIZE;
367 if (last_pfn >= adev->vm_manager.max_pfn) {
368 dev_err(adev->dev, "va above limit (0x%08llX >= 0x%08llX)\n",
369 last_pfn, adev->vm_manager.max_pfn);
373 saddr /= AMDGPU_GPU_PAGE_SIZE;
374 eaddr /= AMDGPU_GPU_PAGE_SIZE;
376 return amdgpu_vm_alloc_levels(adev, vm, &vm->root, saddr, eaddr, 0);
380 * amdgpu_vm_had_gpu_reset - check if reset occured since last use
382 * @adev: amdgpu_device pointer
383 * @id: VMID structure
385 * Check if GPU reset occured since last use of the VMID.
387 static bool amdgpu_vm_had_gpu_reset(struct amdgpu_device *adev,
388 struct amdgpu_vm_id *id)
390 return id->current_gpu_reset_count !=
391 atomic_read(&adev->gpu_reset_counter);
394 static bool amdgpu_vm_reserved_vmid_ready(struct amdgpu_vm *vm, unsigned vmhub)
396 return !!vm->reserved_vmid[vmhub];
399 /* idr_mgr->lock must be held */
400 static int amdgpu_vm_grab_reserved_vmid_locked(struct amdgpu_vm *vm,
401 struct amdgpu_ring *ring,
402 struct amdgpu_sync *sync,
403 struct dma_fence *fence,
404 struct amdgpu_job *job)
406 struct amdgpu_device *adev = ring->adev;
407 unsigned vmhub = ring->funcs->vmhub;
408 uint64_t fence_context = adev->fence_context + ring->idx;
409 struct amdgpu_vm_id *id = vm->reserved_vmid[vmhub];
410 struct amdgpu_vm_id_manager *id_mgr = &adev->vm_manager.id_mgr[vmhub];
411 struct dma_fence *updates = sync->last_vm_update;
413 struct dma_fence *flushed, *tmp;
414 bool needs_flush = false;
416 flushed = id->flushed_updates;
417 if ((amdgpu_vm_had_gpu_reset(adev, id)) ||
418 (atomic64_read(&id->owner) != vm->client_id) ||
419 (job->vm_pd_addr != id->pd_gpu_addr) ||
420 (updates && (!flushed || updates->context != flushed->context ||
421 dma_fence_is_later(updates, flushed))) ||
422 (!id->last_flush || (id->last_flush->context != fence_context &&
423 !dma_fence_is_signaled(id->last_flush)))) {
425 /* to prevent one context starved by another context */
427 tmp = amdgpu_sync_peek_fence(&id->active, ring);
429 r = amdgpu_sync_fence(adev, sync, tmp);
434 /* Good we can use this VMID. Remember this submission as
437 r = amdgpu_sync_fence(ring->adev, &id->active, fence);
441 if (updates && (!flushed || updates->context != flushed->context ||
442 dma_fence_is_later(updates, flushed))) {
443 dma_fence_put(id->flushed_updates);
444 id->flushed_updates = dma_fence_get(updates);
446 id->pd_gpu_addr = job->vm_pd_addr;
447 id->current_gpu_reset_count = atomic_read(&adev->gpu_reset_counter);
448 atomic64_set(&id->owner, vm->client_id);
449 job->vm_needs_flush = needs_flush;
451 dma_fence_put(id->last_flush);
452 id->last_flush = NULL;
454 job->vm_id = id - id_mgr->ids;
455 trace_amdgpu_vm_grab_id(vm, ring, job);
461 * amdgpu_vm_grab_id - allocate the next free VMID
463 * @vm: vm to allocate id for
464 * @ring: ring we want to submit job to
465 * @sync: sync object where we add dependencies
466 * @fence: fence protecting ID from reuse
468 * Allocate an id for the vm, adding fences to the sync obj as necessary.
470 int amdgpu_vm_grab_id(struct amdgpu_vm *vm, struct amdgpu_ring *ring,
471 struct amdgpu_sync *sync, struct dma_fence *fence,
472 struct amdgpu_job *job)
474 struct amdgpu_device *adev = ring->adev;
475 unsigned vmhub = ring->funcs->vmhub;
476 struct amdgpu_vm_id_manager *id_mgr = &adev->vm_manager.id_mgr[vmhub];
477 uint64_t fence_context = adev->fence_context + ring->idx;
478 struct dma_fence *updates = sync->last_vm_update;
479 struct amdgpu_vm_id *id, *idle;
480 struct dma_fence **fences;
484 mutex_lock(&id_mgr->lock);
485 if (amdgpu_vm_reserved_vmid_ready(vm, vmhub)) {
486 r = amdgpu_vm_grab_reserved_vmid_locked(vm, ring, sync, fence, job);
487 mutex_unlock(&id_mgr->lock);
490 fences = kmalloc_array(sizeof(void *), id_mgr->num_ids, GFP_KERNEL);
492 mutex_unlock(&id_mgr->lock);
495 /* Check if we have an idle VMID */
497 list_for_each_entry(idle, &id_mgr->ids_lru, list) {
498 fences[i] = amdgpu_sync_peek_fence(&idle->active, ring);
504 /* If we can't find a idle VMID to use, wait till one becomes available */
505 if (&idle->list == &id_mgr->ids_lru) {
506 u64 fence_context = adev->vm_manager.fence_context + ring->idx;
507 unsigned seqno = ++adev->vm_manager.seqno[ring->idx];
508 struct dma_fence_array *array;
511 for (j = 0; j < i; ++j)
512 dma_fence_get(fences[j]);
514 array = dma_fence_array_create(i, fences, fence_context,
517 for (j = 0; j < i; ++j)
518 dma_fence_put(fences[j]);
525 r = amdgpu_sync_fence(ring->adev, sync, &array->base);
526 dma_fence_put(&array->base);
530 mutex_unlock(&id_mgr->lock);
536 job->vm_needs_flush = false;
537 /* Check if we can use a VMID already assigned to this VM */
538 list_for_each_entry_reverse(id, &id_mgr->ids_lru, list) {
539 struct dma_fence *flushed;
540 bool needs_flush = false;
542 /* Check all the prerequisites to using this VMID */
543 if (amdgpu_vm_had_gpu_reset(adev, id))
546 if (atomic64_read(&id->owner) != vm->client_id)
549 if (job->vm_pd_addr != id->pd_gpu_addr)
552 if (!id->last_flush ||
553 (id->last_flush->context != fence_context &&
554 !dma_fence_is_signaled(id->last_flush)))
557 flushed = id->flushed_updates;
558 if (updates && (!flushed || dma_fence_is_later(updates, flushed)))
561 /* Concurrent flushes are only possible starting with Vega10 */
562 if (adev->asic_type < CHIP_VEGA10 && needs_flush)
565 /* Good we can use this VMID. Remember this submission as
568 r = amdgpu_sync_fence(ring->adev, &id->active, fence);
572 if (updates && (!flushed || dma_fence_is_later(updates, flushed))) {
573 dma_fence_put(id->flushed_updates);
574 id->flushed_updates = dma_fence_get(updates);
580 goto no_flush_needed;
584 /* Still no ID to use? Then use the idle one found earlier */
587 /* Remember this submission as user of the VMID */
588 r = amdgpu_sync_fence(ring->adev, &id->active, fence);
592 id->pd_gpu_addr = job->vm_pd_addr;
593 dma_fence_put(id->flushed_updates);
594 id->flushed_updates = dma_fence_get(updates);
595 id->current_gpu_reset_count = atomic_read(&adev->gpu_reset_counter);
596 atomic64_set(&id->owner, vm->client_id);
599 job->vm_needs_flush = true;
600 dma_fence_put(id->last_flush);
601 id->last_flush = NULL;
604 list_move_tail(&id->list, &id_mgr->ids_lru);
606 job->vm_id = id - id_mgr->ids;
607 trace_amdgpu_vm_grab_id(vm, ring, job);
610 mutex_unlock(&id_mgr->lock);
614 static void amdgpu_vm_free_reserved_vmid(struct amdgpu_device *adev,
615 struct amdgpu_vm *vm,
618 struct amdgpu_vm_id_manager *id_mgr = &adev->vm_manager.id_mgr[vmhub];
620 mutex_lock(&id_mgr->lock);
621 if (vm->reserved_vmid[vmhub]) {
622 list_add(&vm->reserved_vmid[vmhub]->list,
624 vm->reserved_vmid[vmhub] = NULL;
625 atomic_dec(&id_mgr->reserved_vmid_num);
627 mutex_unlock(&id_mgr->lock);
630 static int amdgpu_vm_alloc_reserved_vmid(struct amdgpu_device *adev,
631 struct amdgpu_vm *vm,
634 struct amdgpu_vm_id_manager *id_mgr;
635 struct amdgpu_vm_id *idle;
638 id_mgr = &adev->vm_manager.id_mgr[vmhub];
639 mutex_lock(&id_mgr->lock);
640 if (vm->reserved_vmid[vmhub])
642 if (atomic_inc_return(&id_mgr->reserved_vmid_num) >
643 AMDGPU_VM_MAX_RESERVED_VMID) {
644 DRM_ERROR("Over limitation of reserved vmid\n");
645 atomic_dec(&id_mgr->reserved_vmid_num);
649 /* Select the first entry VMID */
650 idle = list_first_entry(&id_mgr->ids_lru, struct amdgpu_vm_id, list);
651 list_del_init(&idle->list);
652 vm->reserved_vmid[vmhub] = idle;
653 mutex_unlock(&id_mgr->lock);
657 mutex_unlock(&id_mgr->lock);
661 static bool amdgpu_vm_ring_has_compute_vm_bug(struct amdgpu_ring *ring)
663 struct amdgpu_device *adev = ring->adev;
664 const struct amdgpu_ip_block *ip_block;
666 if (ring->funcs->type != AMDGPU_RING_TYPE_COMPUTE)
667 /* only compute rings */
670 ip_block = amdgpu_get_ip_block(adev, AMD_IP_BLOCK_TYPE_GFX);
674 if (ip_block->version->major <= 7) {
675 /* gfx7 has no workaround */
677 } else if (ip_block->version->major == 8) {
678 if (adev->gfx.mec_fw_version >= 673)
679 /* gfx8 is fixed in MEC firmware 673 */
687 static u64 amdgpu_vm_adjust_mc_addr(struct amdgpu_device *adev, u64 mc_addr)
691 if (adev->gart.gart_funcs->adjust_mc_addr)
692 addr = adev->gart.gart_funcs->adjust_mc_addr(adev, addr);
698 * amdgpu_vm_flush - hardware flush the vm
700 * @ring: ring to use for flush
701 * @vm_id: vmid number to use
702 * @pd_addr: address of the page directory
704 * Emit a VM flush when it is necessary.
706 int amdgpu_vm_flush(struct amdgpu_ring *ring, struct amdgpu_job *job)
708 struct amdgpu_device *adev = ring->adev;
709 unsigned vmhub = ring->funcs->vmhub;
710 struct amdgpu_vm_id_manager *id_mgr = &adev->vm_manager.id_mgr[vmhub];
711 struct amdgpu_vm_id *id = &id_mgr->ids[job->vm_id];
712 bool gds_switch_needed = ring->funcs->emit_gds_switch && (
713 id->gds_base != job->gds_base ||
714 id->gds_size != job->gds_size ||
715 id->gws_base != job->gws_base ||
716 id->gws_size != job->gws_size ||
717 id->oa_base != job->oa_base ||
718 id->oa_size != job->oa_size);
719 bool vm_flush_needed = job->vm_needs_flush ||
720 amdgpu_vm_ring_has_compute_vm_bug(ring);
721 unsigned patch_offset = 0;
724 if (amdgpu_vm_had_gpu_reset(adev, id)) {
725 gds_switch_needed = true;
726 vm_flush_needed = true;
729 if (!vm_flush_needed && !gds_switch_needed)
732 if (ring->funcs->init_cond_exec)
733 patch_offset = amdgpu_ring_init_cond_exec(ring);
735 if (ring->funcs->emit_pipeline_sync && !job->need_pipeline_sync)
736 amdgpu_ring_emit_pipeline_sync(ring);
738 if (ring->funcs->emit_vm_flush && vm_flush_needed) {
739 u64 pd_addr = amdgpu_vm_adjust_mc_addr(adev, job->vm_pd_addr);
740 struct dma_fence *fence;
742 trace_amdgpu_vm_flush(ring, job->vm_id, pd_addr);
743 amdgpu_ring_emit_vm_flush(ring, job->vm_id, pd_addr);
745 r = amdgpu_fence_emit(ring, &fence);
749 mutex_lock(&id_mgr->lock);
750 dma_fence_put(id->last_flush);
751 id->last_flush = fence;
752 mutex_unlock(&id_mgr->lock);
755 if (ring->funcs->emit_gds_switch && gds_switch_needed) {
756 id->gds_base = job->gds_base;
757 id->gds_size = job->gds_size;
758 id->gws_base = job->gws_base;
759 id->gws_size = job->gws_size;
760 id->oa_base = job->oa_base;
761 id->oa_size = job->oa_size;
762 amdgpu_ring_emit_gds_switch(ring, job->vm_id, job->gds_base,
763 job->gds_size, job->gws_base,
764 job->gws_size, job->oa_base,
768 if (ring->funcs->patch_cond_exec)
769 amdgpu_ring_patch_cond_exec(ring, patch_offset);
771 /* the double SWITCH_BUFFER here *cannot* be skipped by COND_EXEC */
772 if (ring->funcs->emit_switch_buffer) {
773 amdgpu_ring_emit_switch_buffer(ring);
774 amdgpu_ring_emit_switch_buffer(ring);
780 * amdgpu_vm_reset_id - reset VMID to zero
782 * @adev: amdgpu device structure
783 * @vm_id: vmid number to use
785 * Reset saved GDW, GWS and OA to force switch on next flush.
787 void amdgpu_vm_reset_id(struct amdgpu_device *adev, unsigned vmhub,
790 struct amdgpu_vm_id_manager *id_mgr = &adev->vm_manager.id_mgr[vmhub];
791 struct amdgpu_vm_id *id = &id_mgr->ids[vmid];
793 atomic64_set(&id->owner, 0);
803 * amdgpu_vm_reset_all_id - reset VMID to zero
805 * @adev: amdgpu device structure
807 * Reset VMID to force flush on next use
809 void amdgpu_vm_reset_all_ids(struct amdgpu_device *adev)
813 for (i = 0; i < AMDGPU_MAX_VMHUBS; ++i) {
814 struct amdgpu_vm_id_manager *id_mgr =
815 &adev->vm_manager.id_mgr[i];
817 for (j = 1; j < id_mgr->num_ids; ++j)
818 amdgpu_vm_reset_id(adev, i, j);
823 * amdgpu_vm_bo_find - find the bo_va for a specific vm & bo
826 * @bo: requested buffer object
828 * Find @bo inside the requested vm.
829 * Search inside the @bos vm list for the requested vm
830 * Returns the found bo_va or NULL if none is found
832 * Object has to be reserved!
834 struct amdgpu_bo_va *amdgpu_vm_bo_find(struct amdgpu_vm *vm,
835 struct amdgpu_bo *bo)
837 struct amdgpu_bo_va *bo_va;
839 list_for_each_entry(bo_va, &bo->va, bo_list) {
840 if (bo_va->vm == vm) {
848 * amdgpu_vm_do_set_ptes - helper to call the right asic function
850 * @params: see amdgpu_pte_update_params definition
851 * @pe: addr of the page entry
852 * @addr: dst addr to write into pe
853 * @count: number of page entries to update
854 * @incr: increase next addr by incr bytes
855 * @flags: hw access flags
857 * Traces the parameters and calls the right asic functions
858 * to setup the page table using the DMA.
860 static void amdgpu_vm_do_set_ptes(struct amdgpu_pte_update_params *params,
861 uint64_t pe, uint64_t addr,
862 unsigned count, uint32_t incr,
865 trace_amdgpu_vm_set_ptes(pe, addr, count, incr, flags);
868 amdgpu_vm_write_pte(params->adev, params->ib, pe,
869 addr | flags, count, incr);
872 amdgpu_vm_set_pte_pde(params->adev, params->ib, pe, addr,
878 * amdgpu_vm_do_copy_ptes - copy the PTEs from the GART
880 * @params: see amdgpu_pte_update_params definition
881 * @pe: addr of the page entry
882 * @addr: dst addr to write into pe
883 * @count: number of page entries to update
884 * @incr: increase next addr by incr bytes
885 * @flags: hw access flags
887 * Traces the parameters and calls the DMA function to copy the PTEs.
889 static void amdgpu_vm_do_copy_ptes(struct amdgpu_pte_update_params *params,
890 uint64_t pe, uint64_t addr,
891 unsigned count, uint32_t incr,
894 uint64_t src = (params->src + (addr >> 12) * 8);
897 trace_amdgpu_vm_copy_ptes(pe, src, count);
899 amdgpu_vm_copy_pte(params->adev, params->ib, pe, src, count);
903 * amdgpu_vm_map_gart - Resolve gart mapping of addr
905 * @pages_addr: optional DMA address to use for lookup
906 * @addr: the unmapped addr
908 * Look up the physical address of the page that the pte resolves
909 * to and return the pointer for the page table entry.
911 static uint64_t amdgpu_vm_map_gart(const dma_addr_t *pages_addr, uint64_t addr)
915 /* page table offset */
916 result = pages_addr[addr >> PAGE_SHIFT];
918 /* in case cpu page size != gpu page size*/
919 result |= addr & (~PAGE_MASK);
921 result &= 0xFFFFFFFFFFFFF000ULL;
927 * amdgpu_vm_update_level - update a single level in the hierarchy
929 * @adev: amdgpu_device pointer
931 * @parent: parent directory
933 * Makes sure all entries in @parent are up to date.
934 * Returns 0 for success, error for failure.
936 static int amdgpu_vm_update_level(struct amdgpu_device *adev,
937 struct amdgpu_vm *vm,
938 struct amdgpu_vm_pt *parent,
941 struct amdgpu_bo *shadow;
942 struct amdgpu_ring *ring;
943 uint64_t pd_addr, shadow_addr;
944 uint32_t incr = amdgpu_vm_bo_size(adev, level + 1);
945 uint64_t last_pde = ~0, last_pt = ~0, last_shadow = ~0;
946 unsigned count = 0, pt_idx, ndw;
947 struct amdgpu_job *job;
948 struct amdgpu_pte_update_params params;
949 struct dma_fence *fence = NULL;
953 if (!parent->entries)
955 ring = container_of(vm->entity.sched, struct amdgpu_ring, sched);
960 /* assume the worst case */
961 ndw += parent->last_entry_used * 6;
963 pd_addr = amdgpu_bo_gpu_offset(parent->bo);
965 shadow = parent->bo->shadow;
967 r = amdgpu_ttm_bind(&shadow->tbo, &shadow->tbo.mem);
970 shadow_addr = amdgpu_bo_gpu_offset(shadow);
976 r = amdgpu_job_alloc_with_ib(adev, ndw * 4, &job);
980 memset(¶ms, 0, sizeof(params));
982 params.ib = &job->ibs[0];
984 /* walk over the address space and update the directory */
985 for (pt_idx = 0; pt_idx <= parent->last_entry_used; ++pt_idx) {
986 struct amdgpu_bo *bo = parent->entries[pt_idx].bo;
993 struct amdgpu_bo *pt_shadow = bo->shadow;
995 r = amdgpu_ttm_bind(&pt_shadow->tbo,
996 &pt_shadow->tbo.mem);
1001 pt = amdgpu_bo_gpu_offset(bo);
1002 if (parent->entries[pt_idx].addr == pt)
1005 parent->entries[pt_idx].addr = pt;
1007 pde = pd_addr + pt_idx * 8;
1008 if (((last_pde + 8 * count) != pde) ||
1009 ((last_pt + incr * count) != pt) ||
1010 (count == AMDGPU_VM_MAX_UPDATE_SIZE)) {
1014 amdgpu_vm_adjust_mc_addr(adev, last_pt);
1017 amdgpu_vm_do_set_ptes(¶ms,
1023 amdgpu_vm_do_set_ptes(¶ms, last_pde,
1024 pt_addr, count, incr,
1030 last_shadow = shadow_addr + pt_idx * 8;
1038 uint64_t pt_addr = amdgpu_vm_adjust_mc_addr(adev, last_pt);
1040 if (vm->root.bo->shadow)
1041 amdgpu_vm_do_set_ptes(¶ms, last_shadow, pt_addr,
1042 count, incr, AMDGPU_PTE_VALID);
1044 amdgpu_vm_do_set_ptes(¶ms, last_pde, pt_addr,
1045 count, incr, AMDGPU_PTE_VALID);
1048 if (params.ib->length_dw == 0) {
1049 amdgpu_job_free(job);
1051 amdgpu_ring_pad_ib(ring, params.ib);
1052 amdgpu_sync_resv(adev, &job->sync, parent->bo->tbo.resv,
1053 AMDGPU_FENCE_OWNER_VM);
1055 amdgpu_sync_resv(adev, &job->sync, shadow->tbo.resv,
1056 AMDGPU_FENCE_OWNER_VM);
1058 WARN_ON(params.ib->length_dw > ndw);
1059 r = amdgpu_job_submit(job, ring, &vm->entity,
1060 AMDGPU_FENCE_OWNER_VM, &fence);
1064 amdgpu_bo_fence(parent->bo, fence, true);
1065 dma_fence_put(vm->last_dir_update);
1066 vm->last_dir_update = dma_fence_get(fence);
1067 dma_fence_put(fence);
1070 * Recurse into the subdirectories. This recursion is harmless because
1071 * we only have a maximum of 5 layers.
1073 for (pt_idx = 0; pt_idx <= parent->last_entry_used; ++pt_idx) {
1074 struct amdgpu_vm_pt *entry = &parent->entries[pt_idx];
1079 r = amdgpu_vm_update_level(adev, vm, entry, level + 1);
1087 amdgpu_job_free(job);
1092 * amdgpu_vm_update_directories - make sure that all directories are valid
1094 * @adev: amdgpu_device pointer
1097 * Makes sure all directories are up to date.
1098 * Returns 0 for success, error for failure.
1100 int amdgpu_vm_update_directories(struct amdgpu_device *adev,
1101 struct amdgpu_vm *vm)
1103 return amdgpu_vm_update_level(adev, vm, &vm->root, 0);
1107 * amdgpu_vm_find_pt - find the page table for an address
1109 * @p: see amdgpu_pte_update_params definition
1110 * @addr: virtual address in question
1112 * Find the page table BO for a virtual address, return NULL when none found.
1114 static struct amdgpu_bo *amdgpu_vm_get_pt(struct amdgpu_pte_update_params *p,
1117 struct amdgpu_vm_pt *entry = &p->vm->root;
1118 unsigned idx, level = p->adev->vm_manager.num_level;
1120 while (entry->entries) {
1121 idx = addr >> (p->adev->vm_manager.block_size * level--);
1122 idx %= amdgpu_bo_size(entry->bo) / 8;
1123 entry = &entry->entries[idx];
1133 * amdgpu_vm_update_ptes - make sure that page tables are valid
1135 * @params: see amdgpu_pte_update_params definition
1137 * @start: start of GPU address range
1138 * @end: end of GPU address range
1139 * @dst: destination address to map to, the next dst inside the function
1140 * @flags: mapping flags
1142 * Update the page tables in the range @start - @end.
1144 static void amdgpu_vm_update_ptes(struct amdgpu_pte_update_params *params,
1145 uint64_t start, uint64_t end,
1146 uint64_t dst, uint64_t flags)
1148 struct amdgpu_device *adev = params->adev;
1149 const uint64_t mask = AMDGPU_VM_PTE_COUNT(adev) - 1;
1151 uint64_t cur_pe_start, cur_nptes, cur_dst;
1152 uint64_t addr; /* next GPU address to be updated */
1153 struct amdgpu_bo *pt;
1154 unsigned nptes; /* next number of ptes to be updated */
1155 uint64_t next_pe_start;
1157 /* initialize the variables */
1159 pt = amdgpu_vm_get_pt(params, addr);
1161 pr_err("PT not found, aborting update_ptes\n");
1165 if (params->shadow) {
1170 if ((addr & ~mask) == (end & ~mask))
1173 nptes = AMDGPU_VM_PTE_COUNT(adev) - (addr & mask);
1175 cur_pe_start = amdgpu_bo_gpu_offset(pt);
1176 cur_pe_start += (addr & mask) * 8;
1182 dst += nptes * AMDGPU_GPU_PAGE_SIZE;
1184 /* walk over the address space and update the page tables */
1185 while (addr < end) {
1186 pt = amdgpu_vm_get_pt(params, addr);
1188 pr_err("PT not found, aborting update_ptes\n");
1192 if (params->shadow) {
1198 if ((addr & ~mask) == (end & ~mask))
1201 nptes = AMDGPU_VM_PTE_COUNT(adev) - (addr & mask);
1203 next_pe_start = amdgpu_bo_gpu_offset(pt);
1204 next_pe_start += (addr & mask) * 8;
1206 if ((cur_pe_start + 8 * cur_nptes) == next_pe_start &&
1207 ((cur_nptes + nptes) <= AMDGPU_VM_MAX_UPDATE_SIZE)) {
1208 /* The next ptb is consecutive to current ptb.
1209 * Don't call the update function now.
1210 * Will update two ptbs together in future.
1214 params->func(params, cur_pe_start, cur_dst, cur_nptes,
1215 AMDGPU_GPU_PAGE_SIZE, flags);
1217 cur_pe_start = next_pe_start;
1224 dst += nptes * AMDGPU_GPU_PAGE_SIZE;
1227 params->func(params, cur_pe_start, cur_dst, cur_nptes,
1228 AMDGPU_GPU_PAGE_SIZE, flags);
1232 * amdgpu_vm_frag_ptes - add fragment information to PTEs
1234 * @params: see amdgpu_pte_update_params definition
1236 * @start: first PTE to handle
1237 * @end: last PTE to handle
1238 * @dst: addr those PTEs should point to
1239 * @flags: hw mapping flags
1241 static void amdgpu_vm_frag_ptes(struct amdgpu_pte_update_params *params,
1242 uint64_t start, uint64_t end,
1243 uint64_t dst, uint64_t flags)
1246 * The MC L1 TLB supports variable sized pages, based on a fragment
1247 * field in the PTE. When this field is set to a non-zero value, page
1248 * granularity is increased from 4KB to (1 << (12 + frag)). The PTE
1249 * flags are considered valid for all PTEs within the fragment range
1250 * and corresponding mappings are assumed to be physically contiguous.
1252 * The L1 TLB can store a single PTE for the whole fragment,
1253 * significantly increasing the space available for translation
1254 * caching. This leads to large improvements in throughput when the
1255 * TLB is under pressure.
1257 * The L2 TLB distributes small and large fragments into two
1258 * asymmetric partitions. The large fragment cache is significantly
1259 * larger. Thus, we try to use large fragments wherever possible.
1260 * Userspace can support this by aligning virtual base address and
1261 * allocation size to the fragment size.
1264 /* SI and newer are optimized for 64KB */
1265 uint64_t frag_flags = AMDGPU_PTE_FRAG(AMDGPU_LOG2_PAGES_PER_FRAG);
1266 uint64_t frag_align = 1 << AMDGPU_LOG2_PAGES_PER_FRAG;
1268 uint64_t frag_start = ALIGN(start, frag_align);
1269 uint64_t frag_end = end & ~(frag_align - 1);
1271 /* system pages are non continuously */
1272 if (params->src || !(flags & AMDGPU_PTE_VALID) ||
1273 (frag_start >= frag_end)) {
1275 amdgpu_vm_update_ptes(params, start, end, dst, flags);
1279 /* handle the 4K area at the beginning */
1280 if (start != frag_start) {
1281 amdgpu_vm_update_ptes(params, start, frag_start,
1283 dst += (frag_start - start) * AMDGPU_GPU_PAGE_SIZE;
1286 /* handle the area in the middle */
1287 amdgpu_vm_update_ptes(params, frag_start, frag_end, dst,
1288 flags | frag_flags);
1290 /* handle the 4K area at the end */
1291 if (frag_end != end) {
1292 dst += (frag_end - frag_start) * AMDGPU_GPU_PAGE_SIZE;
1293 amdgpu_vm_update_ptes(params, frag_end, end, dst, flags);
1298 * amdgpu_vm_bo_update_mapping - update a mapping in the vm page table
1300 * @adev: amdgpu_device pointer
1301 * @exclusive: fence we need to sync to
1302 * @src: address where to copy page table entries from
1303 * @pages_addr: DMA addresses to use for mapping
1305 * @start: start of mapped range
1306 * @last: last mapped entry
1307 * @flags: flags for the entries
1308 * @addr: addr to set the area to
1309 * @fence: optional resulting fence
1311 * Fill in the page table entries between @start and @last.
1312 * Returns 0 for success, -EINVAL for failure.
1314 static int amdgpu_vm_bo_update_mapping(struct amdgpu_device *adev,
1315 struct dma_fence *exclusive,
1317 dma_addr_t *pages_addr,
1318 struct amdgpu_vm *vm,
1319 uint64_t start, uint64_t last,
1320 uint64_t flags, uint64_t addr,
1321 struct dma_fence **fence)
1323 struct amdgpu_ring *ring;
1324 void *owner = AMDGPU_FENCE_OWNER_VM;
1325 unsigned nptes, ncmds, ndw;
1326 struct amdgpu_job *job;
1327 struct amdgpu_pte_update_params params;
1328 struct dma_fence *f = NULL;
1331 memset(¶ms, 0, sizeof(params));
1336 ring = container_of(vm->entity.sched, struct amdgpu_ring, sched);
1338 /* sync to everything on unmapping */
1339 if (!(flags & AMDGPU_PTE_VALID))
1340 owner = AMDGPU_FENCE_OWNER_UNDEFINED;
1342 nptes = last - start + 1;
1345 * reserve space for one command every (1 << BLOCK_SIZE)
1346 * entries or 2k dwords (whatever is smaller)
1348 ncmds = (nptes >> min(adev->vm_manager.block_size, 11u)) + 1;
1354 /* only copy commands needed */
1357 params.func = amdgpu_vm_do_copy_ptes;
1359 } else if (pages_addr) {
1360 /* copy commands needed */
1366 params.func = amdgpu_vm_do_copy_ptes;
1369 /* set page commands needed */
1372 /* two extra commands for begin/end of fragment */
1375 params.func = amdgpu_vm_do_set_ptes;
1378 r = amdgpu_job_alloc_with_ib(adev, ndw * 4, &job);
1382 params.ib = &job->ibs[0];
1384 if (!src && pages_addr) {
1388 /* Put the PTEs at the end of the IB. */
1389 i = ndw - nptes * 2;
1390 pte= (uint64_t *)&(job->ibs->ptr[i]);
1391 params.src = job->ibs->gpu_addr + i * 4;
1393 for (i = 0; i < nptes; ++i) {
1394 pte[i] = amdgpu_vm_map_gart(pages_addr, addr + i *
1395 AMDGPU_GPU_PAGE_SIZE);
1401 r = amdgpu_sync_fence(adev, &job->sync, exclusive);
1405 r = amdgpu_sync_resv(adev, &job->sync, vm->root.bo->tbo.resv,
1410 r = reservation_object_reserve_shared(vm->root.bo->tbo.resv);
1414 params.shadow = true;
1415 amdgpu_vm_frag_ptes(¶ms, start, last + 1, addr, flags);
1416 params.shadow = false;
1417 amdgpu_vm_frag_ptes(¶ms, start, last + 1, addr, flags);
1419 amdgpu_ring_pad_ib(ring, params.ib);
1420 WARN_ON(params.ib->length_dw > ndw);
1421 r = amdgpu_job_submit(job, ring, &vm->entity,
1422 AMDGPU_FENCE_OWNER_VM, &f);
1426 amdgpu_bo_fence(vm->root.bo, f, true);
1427 dma_fence_put(*fence);
1432 amdgpu_job_free(job);
1437 * amdgpu_vm_bo_split_mapping - split a mapping into smaller chunks
1439 * @adev: amdgpu_device pointer
1440 * @exclusive: fence we need to sync to
1441 * @gtt_flags: flags as they are used for GTT
1442 * @pages_addr: DMA addresses to use for mapping
1444 * @mapping: mapped range and flags to use for the update
1445 * @flags: HW flags for the mapping
1446 * @nodes: array of drm_mm_nodes with the MC addresses
1447 * @fence: optional resulting fence
1449 * Split the mapping into smaller chunks so that each update fits
1451 * Returns 0 for success, -EINVAL for failure.
1453 static int amdgpu_vm_bo_split_mapping(struct amdgpu_device *adev,
1454 struct dma_fence *exclusive,
1456 dma_addr_t *pages_addr,
1457 struct amdgpu_vm *vm,
1458 struct amdgpu_bo_va_mapping *mapping,
1460 struct drm_mm_node *nodes,
1461 struct dma_fence **fence)
1463 uint64_t pfn, src = 0, start = mapping->start;
1466 /* normally,bo_va->flags only contians READABLE and WIRTEABLE bit go here
1467 * but in case of something, we filter the flags in first place
1469 if (!(mapping->flags & AMDGPU_PTE_READABLE))
1470 flags &= ~AMDGPU_PTE_READABLE;
1471 if (!(mapping->flags & AMDGPU_PTE_WRITEABLE))
1472 flags &= ~AMDGPU_PTE_WRITEABLE;
1474 flags &= ~AMDGPU_PTE_EXECUTABLE;
1475 flags |= mapping->flags & AMDGPU_PTE_EXECUTABLE;
1477 flags &= ~AMDGPU_PTE_MTYPE_MASK;
1478 flags |= (mapping->flags & AMDGPU_PTE_MTYPE_MASK);
1480 if ((mapping->flags & AMDGPU_PTE_PRT) &&
1481 (adev->asic_type >= CHIP_VEGA10)) {
1482 flags |= AMDGPU_PTE_PRT;
1483 flags &= ~AMDGPU_PTE_VALID;
1486 trace_amdgpu_vm_bo_update(mapping);
1488 pfn = mapping->offset >> PAGE_SHIFT;
1490 while (pfn >= nodes->size) {
1497 uint64_t max_entries;
1498 uint64_t addr, last;
1501 addr = nodes->start << PAGE_SHIFT;
1502 max_entries = (nodes->size - pfn) *
1503 (PAGE_SIZE / AMDGPU_GPU_PAGE_SIZE);
1506 max_entries = S64_MAX;
1510 if (flags == gtt_flags)
1511 src = adev->gart.table_addr +
1512 (addr >> AMDGPU_GPU_PAGE_SHIFT) * 8;
1514 max_entries = min(max_entries, 16ull * 1024ull);
1516 } else if (flags & AMDGPU_PTE_VALID) {
1517 addr += adev->vm_manager.vram_base_offset;
1519 addr += pfn << PAGE_SHIFT;
1521 last = min((uint64_t)mapping->last, start + max_entries - 1);
1522 r = amdgpu_vm_bo_update_mapping(adev, exclusive,
1523 src, pages_addr, vm,
1524 start, last, flags, addr,
1529 pfn += last - start + 1;
1530 if (nodes && nodes->size == pfn) {
1536 } while (unlikely(start != mapping->last + 1));
1542 * amdgpu_vm_bo_update - update all BO mappings in the vm page table
1544 * @adev: amdgpu_device pointer
1545 * @bo_va: requested BO and VM object
1546 * @clear: if true clear the entries
1548 * Fill in the page table entries for @bo_va.
1549 * Returns 0 for success, -EINVAL for failure.
1551 int amdgpu_vm_bo_update(struct amdgpu_device *adev,
1552 struct amdgpu_bo_va *bo_va,
1555 struct amdgpu_vm *vm = bo_va->vm;
1556 struct amdgpu_bo_va_mapping *mapping;
1557 dma_addr_t *pages_addr = NULL;
1558 uint64_t gtt_flags, flags;
1559 struct ttm_mem_reg *mem;
1560 struct drm_mm_node *nodes;
1561 struct dma_fence *exclusive;
1564 if (clear || !bo_va->bo) {
1569 struct ttm_dma_tt *ttm;
1571 mem = &bo_va->bo->tbo.mem;
1572 nodes = mem->mm_node;
1573 if (mem->mem_type == TTM_PL_TT) {
1574 ttm = container_of(bo_va->bo->tbo.ttm, struct
1576 pages_addr = ttm->dma_address;
1578 exclusive = reservation_object_get_excl(bo_va->bo->tbo.resv);
1582 flags = amdgpu_ttm_tt_pte_flags(adev, bo_va->bo->tbo.ttm, mem);
1583 gtt_flags = (amdgpu_ttm_is_bound(bo_va->bo->tbo.ttm) &&
1584 adev == amdgpu_ttm_adev(bo_va->bo->tbo.bdev)) ?
1591 spin_lock(&vm->status_lock);
1592 if (!list_empty(&bo_va->vm_status))
1593 list_splice_init(&bo_va->valids, &bo_va->invalids);
1594 spin_unlock(&vm->status_lock);
1596 list_for_each_entry(mapping, &bo_va->invalids, list) {
1597 r = amdgpu_vm_bo_split_mapping(adev, exclusive,
1598 gtt_flags, pages_addr, vm,
1599 mapping, flags, nodes,
1600 &bo_va->last_pt_update);
1605 if (trace_amdgpu_vm_bo_mapping_enabled()) {
1606 list_for_each_entry(mapping, &bo_va->valids, list)
1607 trace_amdgpu_vm_bo_mapping(mapping);
1609 list_for_each_entry(mapping, &bo_va->invalids, list)
1610 trace_amdgpu_vm_bo_mapping(mapping);
1613 spin_lock(&vm->status_lock);
1614 list_splice_init(&bo_va->invalids, &bo_va->valids);
1615 list_del_init(&bo_va->vm_status);
1617 list_add(&bo_va->vm_status, &vm->cleared);
1618 spin_unlock(&vm->status_lock);
1624 * amdgpu_vm_update_prt_state - update the global PRT state
1626 static void amdgpu_vm_update_prt_state(struct amdgpu_device *adev)
1628 unsigned long flags;
1631 spin_lock_irqsave(&adev->vm_manager.prt_lock, flags);
1632 enable = !!atomic_read(&adev->vm_manager.num_prt_users);
1633 adev->gart.gart_funcs->set_prt(adev, enable);
1634 spin_unlock_irqrestore(&adev->vm_manager.prt_lock, flags);
1638 * amdgpu_vm_prt_get - add a PRT user
1640 static void amdgpu_vm_prt_get(struct amdgpu_device *adev)
1642 if (!adev->gart.gart_funcs->set_prt)
1645 if (atomic_inc_return(&adev->vm_manager.num_prt_users) == 1)
1646 amdgpu_vm_update_prt_state(adev);
1650 * amdgpu_vm_prt_put - drop a PRT user
1652 static void amdgpu_vm_prt_put(struct amdgpu_device *adev)
1654 if (atomic_dec_return(&adev->vm_manager.num_prt_users) == 0)
1655 amdgpu_vm_update_prt_state(adev);
1659 * amdgpu_vm_prt_cb - callback for updating the PRT status
1661 static void amdgpu_vm_prt_cb(struct dma_fence *fence, struct dma_fence_cb *_cb)
1663 struct amdgpu_prt_cb *cb = container_of(_cb, struct amdgpu_prt_cb, cb);
1665 amdgpu_vm_prt_put(cb->adev);
1670 * amdgpu_vm_add_prt_cb - add callback for updating the PRT status
1672 static void amdgpu_vm_add_prt_cb(struct amdgpu_device *adev,
1673 struct dma_fence *fence)
1675 struct amdgpu_prt_cb *cb;
1677 if (!adev->gart.gart_funcs->set_prt)
1680 cb = kmalloc(sizeof(struct amdgpu_prt_cb), GFP_KERNEL);
1682 /* Last resort when we are OOM */
1684 dma_fence_wait(fence, false);
1686 amdgpu_vm_prt_put(adev);
1689 if (!fence || dma_fence_add_callback(fence, &cb->cb,
1691 amdgpu_vm_prt_cb(fence, &cb->cb);
1696 * amdgpu_vm_free_mapping - free a mapping
1698 * @adev: amdgpu_device pointer
1700 * @mapping: mapping to be freed
1701 * @fence: fence of the unmap operation
1703 * Free a mapping and make sure we decrease the PRT usage count if applicable.
1705 static void amdgpu_vm_free_mapping(struct amdgpu_device *adev,
1706 struct amdgpu_vm *vm,
1707 struct amdgpu_bo_va_mapping *mapping,
1708 struct dma_fence *fence)
1710 if (mapping->flags & AMDGPU_PTE_PRT)
1711 amdgpu_vm_add_prt_cb(adev, fence);
1716 * amdgpu_vm_prt_fini - finish all prt mappings
1718 * @adev: amdgpu_device pointer
1721 * Register a cleanup callback to disable PRT support after VM dies.
1723 static void amdgpu_vm_prt_fini(struct amdgpu_device *adev, struct amdgpu_vm *vm)
1725 struct reservation_object *resv = vm->root.bo->tbo.resv;
1726 struct dma_fence *excl, **shared;
1727 unsigned i, shared_count;
1730 r = reservation_object_get_fences_rcu(resv, &excl,
1731 &shared_count, &shared);
1733 /* Not enough memory to grab the fence list, as last resort
1734 * block for all the fences to complete.
1736 reservation_object_wait_timeout_rcu(resv, true, false,
1737 MAX_SCHEDULE_TIMEOUT);
1741 /* Add a callback for each fence in the reservation object */
1742 amdgpu_vm_prt_get(adev);
1743 amdgpu_vm_add_prt_cb(adev, excl);
1745 for (i = 0; i < shared_count; ++i) {
1746 amdgpu_vm_prt_get(adev);
1747 amdgpu_vm_add_prt_cb(adev, shared[i]);
1754 * amdgpu_vm_clear_freed - clear freed BOs in the PT
1756 * @adev: amdgpu_device pointer
1758 * @fence: optional resulting fence (unchanged if no work needed to be done
1759 * or if an error occurred)
1761 * Make sure all freed BOs are cleared in the PT.
1762 * Returns 0 for success.
1764 * PTs have to be reserved and mutex must be locked!
1766 int amdgpu_vm_clear_freed(struct amdgpu_device *adev,
1767 struct amdgpu_vm *vm,
1768 struct dma_fence **fence)
1770 struct amdgpu_bo_va_mapping *mapping;
1771 struct dma_fence *f = NULL;
1774 while (!list_empty(&vm->freed)) {
1775 mapping = list_first_entry(&vm->freed,
1776 struct amdgpu_bo_va_mapping, list);
1777 list_del(&mapping->list);
1779 r = amdgpu_vm_bo_update_mapping(adev, NULL, 0, NULL, vm,
1780 mapping->start, mapping->last,
1782 amdgpu_vm_free_mapping(adev, vm, mapping, f);
1790 dma_fence_put(*fence);
1801 * amdgpu_vm_clear_invalids - clear invalidated BOs in the PT
1803 * @adev: amdgpu_device pointer
1806 * Make sure all invalidated BOs are cleared in the PT.
1807 * Returns 0 for success.
1809 * PTs have to be reserved and mutex must be locked!
1811 int amdgpu_vm_clear_invalids(struct amdgpu_device *adev,
1812 struct amdgpu_vm *vm, struct amdgpu_sync *sync)
1814 struct amdgpu_bo_va *bo_va = NULL;
1817 spin_lock(&vm->status_lock);
1818 while (!list_empty(&vm->invalidated)) {
1819 bo_va = list_first_entry(&vm->invalidated,
1820 struct amdgpu_bo_va, vm_status);
1821 spin_unlock(&vm->status_lock);
1823 r = amdgpu_vm_bo_update(adev, bo_va, true);
1827 spin_lock(&vm->status_lock);
1829 spin_unlock(&vm->status_lock);
1832 r = amdgpu_sync_fence(adev, sync, bo_va->last_pt_update);
1838 * amdgpu_vm_bo_add - add a bo to a specific vm
1840 * @adev: amdgpu_device pointer
1842 * @bo: amdgpu buffer object
1844 * Add @bo into the requested vm.
1845 * Add @bo to the list of bos associated with the vm
1846 * Returns newly added bo_va or NULL for failure
1848 * Object has to be reserved!
1850 struct amdgpu_bo_va *amdgpu_vm_bo_add(struct amdgpu_device *adev,
1851 struct amdgpu_vm *vm,
1852 struct amdgpu_bo *bo)
1854 struct amdgpu_bo_va *bo_va;
1856 bo_va = kzalloc(sizeof(struct amdgpu_bo_va), GFP_KERNEL);
1857 if (bo_va == NULL) {
1862 bo_va->ref_count = 1;
1863 INIT_LIST_HEAD(&bo_va->bo_list);
1864 INIT_LIST_HEAD(&bo_va->valids);
1865 INIT_LIST_HEAD(&bo_va->invalids);
1866 INIT_LIST_HEAD(&bo_va->vm_status);
1869 list_add_tail(&bo_va->bo_list, &bo->va);
1875 * amdgpu_vm_bo_map - map bo inside a vm
1877 * @adev: amdgpu_device pointer
1878 * @bo_va: bo_va to store the address
1879 * @saddr: where to map the BO
1880 * @offset: requested offset in the BO
1881 * @flags: attributes of pages (read/write/valid/etc.)
1883 * Add a mapping of the BO at the specefied addr into the VM.
1884 * Returns 0 for success, error for failure.
1886 * Object has to be reserved and unreserved outside!
1888 int amdgpu_vm_bo_map(struct amdgpu_device *adev,
1889 struct amdgpu_bo_va *bo_va,
1890 uint64_t saddr, uint64_t offset,
1891 uint64_t size, uint64_t flags)
1893 struct amdgpu_bo_va_mapping *mapping, *tmp;
1894 struct amdgpu_vm *vm = bo_va->vm;
1897 /* validate the parameters */
1898 if (saddr & AMDGPU_GPU_PAGE_MASK || offset & AMDGPU_GPU_PAGE_MASK ||
1899 size == 0 || size & AMDGPU_GPU_PAGE_MASK)
1902 /* make sure object fit at this offset */
1903 eaddr = saddr + size - 1;
1904 if (saddr >= eaddr ||
1905 (bo_va->bo && offset + size > amdgpu_bo_size(bo_va->bo)))
1908 saddr /= AMDGPU_GPU_PAGE_SIZE;
1909 eaddr /= AMDGPU_GPU_PAGE_SIZE;
1911 tmp = amdgpu_vm_it_iter_first(&vm->va, saddr, eaddr);
1913 /* bo and tmp overlap, invalid addr */
1914 dev_err(adev->dev, "bo %p va 0x%010Lx-0x%010Lx conflict with "
1915 "0x%010Lx-0x%010Lx\n", bo_va->bo, saddr, eaddr,
1916 tmp->start, tmp->last + 1);
1920 mapping = kmalloc(sizeof(*mapping), GFP_KERNEL);
1924 INIT_LIST_HEAD(&mapping->list);
1925 mapping->start = saddr;
1926 mapping->last = eaddr;
1927 mapping->offset = offset;
1928 mapping->flags = flags;
1930 list_add(&mapping->list, &bo_va->invalids);
1931 amdgpu_vm_it_insert(mapping, &vm->va);
1933 if (flags & AMDGPU_PTE_PRT)
1934 amdgpu_vm_prt_get(adev);
1940 * amdgpu_vm_bo_replace_map - map bo inside a vm, replacing existing mappings
1942 * @adev: amdgpu_device pointer
1943 * @bo_va: bo_va to store the address
1944 * @saddr: where to map the BO
1945 * @offset: requested offset in the BO
1946 * @flags: attributes of pages (read/write/valid/etc.)
1948 * Add a mapping of the BO at the specefied addr into the VM. Replace existing
1949 * mappings as we do so.
1950 * Returns 0 for success, error for failure.
1952 * Object has to be reserved and unreserved outside!
1954 int amdgpu_vm_bo_replace_map(struct amdgpu_device *adev,
1955 struct amdgpu_bo_va *bo_va,
1956 uint64_t saddr, uint64_t offset,
1957 uint64_t size, uint64_t flags)
1959 struct amdgpu_bo_va_mapping *mapping;
1960 struct amdgpu_vm *vm = bo_va->vm;
1964 /* validate the parameters */
1965 if (saddr & AMDGPU_GPU_PAGE_MASK || offset & AMDGPU_GPU_PAGE_MASK ||
1966 size == 0 || size & AMDGPU_GPU_PAGE_MASK)
1969 /* make sure object fit at this offset */
1970 eaddr = saddr + size - 1;
1971 if (saddr >= eaddr ||
1972 (bo_va->bo && offset + size > amdgpu_bo_size(bo_va->bo)))
1975 /* Allocate all the needed memory */
1976 mapping = kmalloc(sizeof(*mapping), GFP_KERNEL);
1980 r = amdgpu_vm_bo_clear_mappings(adev, bo_va->vm, saddr, size);
1986 saddr /= AMDGPU_GPU_PAGE_SIZE;
1987 eaddr /= AMDGPU_GPU_PAGE_SIZE;
1989 mapping->start = saddr;
1990 mapping->last = eaddr;
1991 mapping->offset = offset;
1992 mapping->flags = flags;
1994 list_add(&mapping->list, &bo_va->invalids);
1995 amdgpu_vm_it_insert(mapping, &vm->va);
1997 if (flags & AMDGPU_PTE_PRT)
1998 amdgpu_vm_prt_get(adev);
2004 * amdgpu_vm_bo_unmap - remove bo mapping from vm
2006 * @adev: amdgpu_device pointer
2007 * @bo_va: bo_va to remove the address from
2008 * @saddr: where to the BO is mapped
2010 * Remove a mapping of the BO at the specefied addr from the VM.
2011 * Returns 0 for success, error for failure.
2013 * Object has to be reserved and unreserved outside!
2015 int amdgpu_vm_bo_unmap(struct amdgpu_device *adev,
2016 struct amdgpu_bo_va *bo_va,
2019 struct amdgpu_bo_va_mapping *mapping;
2020 struct amdgpu_vm *vm = bo_va->vm;
2023 saddr /= AMDGPU_GPU_PAGE_SIZE;
2025 list_for_each_entry(mapping, &bo_va->valids, list) {
2026 if (mapping->start == saddr)
2030 if (&mapping->list == &bo_va->valids) {
2033 list_for_each_entry(mapping, &bo_va->invalids, list) {
2034 if (mapping->start == saddr)
2038 if (&mapping->list == &bo_va->invalids)
2042 list_del(&mapping->list);
2043 amdgpu_vm_it_remove(mapping, &vm->va);
2044 trace_amdgpu_vm_bo_unmap(bo_va, mapping);
2047 list_add(&mapping->list, &vm->freed);
2049 amdgpu_vm_free_mapping(adev, vm, mapping,
2050 bo_va->last_pt_update);
2056 * amdgpu_vm_bo_clear_mappings - remove all mappings in a specific range
2058 * @adev: amdgpu_device pointer
2059 * @vm: VM structure to use
2060 * @saddr: start of the range
2061 * @size: size of the range
2063 * Remove all mappings in a range, split them as appropriate.
2064 * Returns 0 for success, error for failure.
2066 int amdgpu_vm_bo_clear_mappings(struct amdgpu_device *adev,
2067 struct amdgpu_vm *vm,
2068 uint64_t saddr, uint64_t size)
2070 struct amdgpu_bo_va_mapping *before, *after, *tmp, *next;
2074 eaddr = saddr + size - 1;
2075 saddr /= AMDGPU_GPU_PAGE_SIZE;
2076 eaddr /= AMDGPU_GPU_PAGE_SIZE;
2078 /* Allocate all the needed memory */
2079 before = kzalloc(sizeof(*before), GFP_KERNEL);
2082 INIT_LIST_HEAD(&before->list);
2084 after = kzalloc(sizeof(*after), GFP_KERNEL);
2089 INIT_LIST_HEAD(&after->list);
2091 /* Now gather all removed mappings */
2092 tmp = amdgpu_vm_it_iter_first(&vm->va, saddr, eaddr);
2094 /* Remember mapping split at the start */
2095 if (tmp->start < saddr) {
2096 before->start = tmp->start;
2097 before->last = saddr - 1;
2098 before->offset = tmp->offset;
2099 before->flags = tmp->flags;
2100 list_add(&before->list, &tmp->list);
2103 /* Remember mapping split at the end */
2104 if (tmp->last > eaddr) {
2105 after->start = eaddr + 1;
2106 after->last = tmp->last;
2107 after->offset = tmp->offset;
2108 after->offset += after->start - tmp->start;
2109 after->flags = tmp->flags;
2110 list_add(&after->list, &tmp->list);
2113 list_del(&tmp->list);
2114 list_add(&tmp->list, &removed);
2116 tmp = amdgpu_vm_it_iter_next(tmp, saddr, eaddr);
2119 /* And free them up */
2120 list_for_each_entry_safe(tmp, next, &removed, list) {
2121 amdgpu_vm_it_remove(tmp, &vm->va);
2122 list_del(&tmp->list);
2124 if (tmp->start < saddr)
2126 if (tmp->last > eaddr)
2129 list_add(&tmp->list, &vm->freed);
2130 trace_amdgpu_vm_bo_unmap(NULL, tmp);
2133 /* Insert partial mapping before the range */
2134 if (!list_empty(&before->list)) {
2135 amdgpu_vm_it_insert(before, &vm->va);
2136 if (before->flags & AMDGPU_PTE_PRT)
2137 amdgpu_vm_prt_get(adev);
2142 /* Insert partial mapping after the range */
2143 if (!list_empty(&after->list)) {
2144 amdgpu_vm_it_insert(after, &vm->va);
2145 if (after->flags & AMDGPU_PTE_PRT)
2146 amdgpu_vm_prt_get(adev);
2155 * amdgpu_vm_bo_rmv - remove a bo to a specific vm
2157 * @adev: amdgpu_device pointer
2158 * @bo_va: requested bo_va
2160 * Remove @bo_va->bo from the requested vm.
2162 * Object have to be reserved!
2164 void amdgpu_vm_bo_rmv(struct amdgpu_device *adev,
2165 struct amdgpu_bo_va *bo_va)
2167 struct amdgpu_bo_va_mapping *mapping, *next;
2168 struct amdgpu_vm *vm = bo_va->vm;
2170 list_del(&bo_va->bo_list);
2172 spin_lock(&vm->status_lock);
2173 list_del(&bo_va->vm_status);
2174 spin_unlock(&vm->status_lock);
2176 list_for_each_entry_safe(mapping, next, &bo_va->valids, list) {
2177 list_del(&mapping->list);
2178 amdgpu_vm_it_remove(mapping, &vm->va);
2179 trace_amdgpu_vm_bo_unmap(bo_va, mapping);
2180 list_add(&mapping->list, &vm->freed);
2182 list_for_each_entry_safe(mapping, next, &bo_va->invalids, list) {
2183 list_del(&mapping->list);
2184 amdgpu_vm_it_remove(mapping, &vm->va);
2185 amdgpu_vm_free_mapping(adev, vm, mapping,
2186 bo_va->last_pt_update);
2189 dma_fence_put(bo_va->last_pt_update);
2194 * amdgpu_vm_bo_invalidate - mark the bo as invalid
2196 * @adev: amdgpu_device pointer
2198 * @bo: amdgpu buffer object
2200 * Mark @bo as invalid.
2202 void amdgpu_vm_bo_invalidate(struct amdgpu_device *adev,
2203 struct amdgpu_bo *bo)
2205 struct amdgpu_bo_va *bo_va;
2207 list_for_each_entry(bo_va, &bo->va, bo_list) {
2208 spin_lock(&bo_va->vm->status_lock);
2209 if (list_empty(&bo_va->vm_status))
2210 list_add(&bo_va->vm_status, &bo_va->vm->invalidated);
2211 spin_unlock(&bo_va->vm->status_lock);
2215 static uint32_t amdgpu_vm_get_block_size(uint64_t vm_size)
2217 /* Total bits covered by PD + PTs */
2218 unsigned bits = ilog2(vm_size) + 18;
2220 /* Make sure the PD is 4K in size up to 8GB address space.
2221 Above that split equal between PD and PTs */
2225 return ((bits + 3) / 2);
2229 * amdgpu_vm_adjust_size - adjust vm size and block size
2231 * @adev: amdgpu_device pointer
2232 * @vm_size: the default vm size if it's set auto
2234 void amdgpu_vm_adjust_size(struct amdgpu_device *adev, uint64_t vm_size)
2236 /* adjust vm size firstly */
2237 if (amdgpu_vm_size == -1)
2238 adev->vm_manager.vm_size = vm_size;
2240 adev->vm_manager.vm_size = amdgpu_vm_size;
2242 /* block size depends on vm size */
2243 if (amdgpu_vm_block_size == -1)
2244 adev->vm_manager.block_size =
2245 amdgpu_vm_get_block_size(adev->vm_manager.vm_size);
2247 adev->vm_manager.block_size = amdgpu_vm_block_size;
2249 DRM_INFO("vm size is %llu GB, block size is %u-bit\n",
2250 adev->vm_manager.vm_size, adev->vm_manager.block_size);
2254 * amdgpu_vm_init - initialize a vm instance
2256 * @adev: amdgpu_device pointer
2261 int amdgpu_vm_init(struct amdgpu_device *adev, struct amdgpu_vm *vm)
2263 const unsigned align = min(AMDGPU_VM_PTB_ALIGN_SIZE,
2264 AMDGPU_VM_PTE_COUNT(adev) * 8);
2265 unsigned ring_instance;
2266 struct amdgpu_ring *ring;
2267 struct amd_sched_rq *rq;
2271 vm->client_id = atomic64_inc_return(&adev->vm_manager.client_counter);
2272 for (i = 0; i < AMDGPU_MAX_VMHUBS; i++)
2273 vm->reserved_vmid[i] = NULL;
2274 spin_lock_init(&vm->status_lock);
2275 INIT_LIST_HEAD(&vm->invalidated);
2276 INIT_LIST_HEAD(&vm->cleared);
2277 INIT_LIST_HEAD(&vm->freed);
2279 /* create scheduler entity for page table updates */
2281 ring_instance = atomic_inc_return(&adev->vm_manager.vm_pte_next_ring);
2282 ring_instance %= adev->vm_manager.vm_pte_num_rings;
2283 ring = adev->vm_manager.vm_pte_rings[ring_instance];
2284 rq = &ring->sched.sched_rq[AMD_SCHED_PRIORITY_KERNEL];
2285 r = amd_sched_entity_init(&ring->sched, &vm->entity,
2286 rq, amdgpu_sched_jobs);
2290 vm->last_dir_update = NULL;
2292 r = amdgpu_bo_create(adev, amdgpu_vm_bo_size(adev, 0), align, true,
2293 AMDGPU_GEM_DOMAIN_VRAM,
2294 AMDGPU_GEM_CREATE_NO_CPU_ACCESS |
2295 AMDGPU_GEM_CREATE_SHADOW |
2296 AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS |
2297 AMDGPU_GEM_CREATE_VRAM_CLEARED,
2298 NULL, NULL, &vm->root.bo);
2300 goto error_free_sched_entity;
2302 r = amdgpu_bo_reserve(vm->root.bo, false);
2304 goto error_free_root;
2306 vm->last_eviction_counter = atomic64_read(&adev->num_evictions);
2307 amdgpu_bo_unreserve(vm->root.bo);
2312 amdgpu_bo_unref(&vm->root.bo->shadow);
2313 amdgpu_bo_unref(&vm->root.bo);
2316 error_free_sched_entity:
2317 amd_sched_entity_fini(&ring->sched, &vm->entity);
2323 * amdgpu_vm_free_levels - free PD/PT levels
2325 * @level: PD/PT starting level to free
2327 * Free the page directory or page table level and all sub levels.
2329 static void amdgpu_vm_free_levels(struct amdgpu_vm_pt *level)
2334 amdgpu_bo_unref(&level->bo->shadow);
2335 amdgpu_bo_unref(&level->bo);
2339 for (i = 0; i <= level->last_entry_used; i++)
2340 amdgpu_vm_free_levels(&level->entries[i]);
2342 drm_free_large(level->entries);
2346 * amdgpu_vm_fini - tear down a vm instance
2348 * @adev: amdgpu_device pointer
2352 * Unbind the VM and remove all bos from the vm bo list
2354 void amdgpu_vm_fini(struct amdgpu_device *adev, struct amdgpu_vm *vm)
2356 struct amdgpu_bo_va_mapping *mapping, *tmp;
2357 bool prt_fini_needed = !!adev->gart.gart_funcs->set_prt;
2360 amd_sched_entity_fini(vm->entity.sched, &vm->entity);
2362 if (!RB_EMPTY_ROOT(&vm->va)) {
2363 dev_err(adev->dev, "still active bo inside vm\n");
2365 rbtree_postorder_for_each_entry_safe(mapping, tmp, &vm->va, rb) {
2366 list_del(&mapping->list);
2367 amdgpu_vm_it_remove(mapping, &vm->va);
2370 list_for_each_entry_safe(mapping, tmp, &vm->freed, list) {
2371 if (mapping->flags & AMDGPU_PTE_PRT && prt_fini_needed) {
2372 amdgpu_vm_prt_fini(adev, vm);
2373 prt_fini_needed = false;
2376 list_del(&mapping->list);
2377 amdgpu_vm_free_mapping(adev, vm, mapping, NULL);
2380 amdgpu_vm_free_levels(&vm->root);
2381 dma_fence_put(vm->last_dir_update);
2382 for (i = 0; i < AMDGPU_MAX_VMHUBS; i++)
2383 amdgpu_vm_free_reserved_vmid(adev, vm, i);
2387 * amdgpu_vm_manager_init - init the VM manager
2389 * @adev: amdgpu_device pointer
2391 * Initialize the VM manager structures
2393 void amdgpu_vm_manager_init(struct amdgpu_device *adev)
2397 for (i = 0; i < AMDGPU_MAX_VMHUBS; ++i) {
2398 struct amdgpu_vm_id_manager *id_mgr =
2399 &adev->vm_manager.id_mgr[i];
2401 mutex_init(&id_mgr->lock);
2402 INIT_LIST_HEAD(&id_mgr->ids_lru);
2403 atomic_set(&id_mgr->reserved_vmid_num, 0);
2405 /* skip over VMID 0, since it is the system VM */
2406 for (j = 1; j < id_mgr->num_ids; ++j) {
2407 amdgpu_vm_reset_id(adev, i, j);
2408 amdgpu_sync_create(&id_mgr->ids[i].active);
2409 list_add_tail(&id_mgr->ids[j].list, &id_mgr->ids_lru);
2413 adev->vm_manager.fence_context =
2414 dma_fence_context_alloc(AMDGPU_MAX_RINGS);
2415 for (i = 0; i < AMDGPU_MAX_RINGS; ++i)
2416 adev->vm_manager.seqno[i] = 0;
2418 atomic_set(&adev->vm_manager.vm_pte_next_ring, 0);
2419 atomic64_set(&adev->vm_manager.client_counter, 0);
2420 spin_lock_init(&adev->vm_manager.prt_lock);
2421 atomic_set(&adev->vm_manager.num_prt_users, 0);
2425 * amdgpu_vm_manager_fini - cleanup VM manager
2427 * @adev: amdgpu_device pointer
2429 * Cleanup the VM manager and free resources.
2431 void amdgpu_vm_manager_fini(struct amdgpu_device *adev)
2435 for (i = 0; i < AMDGPU_MAX_VMHUBS; ++i) {
2436 struct amdgpu_vm_id_manager *id_mgr =
2437 &adev->vm_manager.id_mgr[i];
2439 mutex_destroy(&id_mgr->lock);
2440 for (j = 0; j < AMDGPU_NUM_VM; ++j) {
2441 struct amdgpu_vm_id *id = &id_mgr->ids[j];
2443 amdgpu_sync_free(&id->active);
2444 dma_fence_put(id->flushed_updates);
2445 dma_fence_put(id->last_flush);
2450 int amdgpu_vm_ioctl(struct drm_device *dev, void *data, struct drm_file *filp)
2452 union drm_amdgpu_vm *args = data;
2453 struct amdgpu_device *adev = dev->dev_private;
2454 struct amdgpu_fpriv *fpriv = filp->driver_priv;
2457 switch (args->in.op) {
2458 case AMDGPU_VM_OP_RESERVE_VMID:
2459 /* current, we only have requirement to reserve vmid from gfxhub */
2460 r = amdgpu_vm_alloc_reserved_vmid(adev, &fpriv->vm,
2465 case AMDGPU_VM_OP_UNRESERVE_VMID:
2466 amdgpu_vm_free_reserved_vmid(adev, &fpriv->vm, AMDGPU_GFXHUB);