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