6af2d3c56f388ca593be7f741527f498958a8e18
[platform/kernel/linux-rpi.git] / drivers / gpu / drm / amd / amdgpu / amdgpu_vm.c
1 /*
2  * Copyright 2008 Advanced Micro Devices, Inc.
3  * Copyright 2008 Red Hat Inc.
4  * Copyright 2009 Jerome Glisse.
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a
7  * copy of this software and associated documentation files (the "Software"),
8  * to deal in the Software without restriction, including without limitation
9  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10  * and/or sell copies of the Software, and to permit persons to whom the
11  * Software is furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in
14  * all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
19  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
20  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22  * OTHER DEALINGS IN THE SOFTWARE.
23  *
24  * Authors: Dave Airlie
25  *          Alex Deucher
26  *          Jerome Glisse
27  */
28 #include <linux/dma-fence-array.h>
29 #include <linux/interval_tree_generic.h>
30 #include <drm/drmP.h>
31 #include <drm/amdgpu_drm.h>
32 #include "amdgpu.h"
33 #include "amdgpu_trace.h"
34
35 /*
36  * GPUVM
37  * GPUVM is similar to the legacy gart on older asics, however
38  * rather than there being a single global gart table
39  * for the entire GPU, there are multiple VM page tables active
40  * at any given time.  The VM page tables can contain a mix
41  * vram pages and system memory pages and system memory pages
42  * can be mapped as snooped (cached system pages) or unsnooped
43  * (uncached system pages).
44  * Each VM has an ID associated with it and there is a page table
45  * associated with each VMID.  When execting a command buffer,
46  * the kernel tells the the ring what VMID to use for that command
47  * buffer.  VMIDs are allocated dynamically as commands are submitted.
48  * The userspace drivers maintain their own address space and the kernel
49  * sets up their pages tables accordingly when they submit their
50  * command buffers and a VMID is assigned.
51  * Cayman/Trinity support up to 8 active VMs at any given time;
52  * SI supports 16.
53  */
54
55 #define START(node) ((node)->start)
56 #define LAST(node) ((node)->last)
57
58 INTERVAL_TREE_DEFINE(struct amdgpu_bo_va_mapping, rb, uint64_t, __subtree_last,
59                      START, LAST, static, amdgpu_vm_it)
60
61 #undef START
62 #undef LAST
63
64 /* Local structure. Encapsulate some VM table update parameters to reduce
65  * the number of function parameters
66  */
67 struct amdgpu_pte_update_params {
68         /* amdgpu device we do this update for */
69         struct amdgpu_device *adev;
70         /* optional amdgpu_vm we do this update for */
71         struct amdgpu_vm *vm;
72         /* address where to copy page table entries from */
73         uint64_t src;
74         /* indirect buffer to fill with commands */
75         struct amdgpu_ib *ib;
76         /* Function which actually does the update */
77         void (*func)(struct amdgpu_pte_update_params *params, uint64_t pe,
78                      uint64_t addr, unsigned count, uint32_t incr,
79                      uint64_t flags);
80         /* indicate update pt or its shadow */
81         bool shadow;
82 };
83
84 /* Helper to disable partial resident texture feature from a fence callback */
85 struct amdgpu_prt_cb {
86         struct amdgpu_device *adev;
87         struct dma_fence_cb cb;
88 };
89
90 /**
91  * amdgpu_vm_num_entries - return the number of entries in a PD/PT
92  *
93  * @adev: amdgpu_device pointer
94  *
95  * Calculate the number of entries in a page directory or page table.
96  */
97 static unsigned amdgpu_vm_num_entries(struct amdgpu_device *adev,
98                                       unsigned level)
99 {
100         if (level == 0)
101                 /* For the root directory */
102                 return adev->vm_manager.max_pfn >>
103                         (adev->vm_manager.block_size *
104                          adev->vm_manager.num_level);
105         else if (level == adev->vm_manager.num_level)
106                 /* For the page tables on the leaves */
107                 return AMDGPU_VM_PTE_COUNT(adev);
108         else
109                 /* Everything in between */
110                 return 1 << adev->vm_manager.block_size;
111 }
112
113 /**
114  * amdgpu_vm_bo_size - returns the size of the BOs in bytes
115  *
116  * @adev: amdgpu_device pointer
117  *
118  * Calculate the size of the BO for a page directory or page table in bytes.
119  */
120 static unsigned amdgpu_vm_bo_size(struct amdgpu_device *adev, unsigned level)
121 {
122         return AMDGPU_GPU_PAGE_ALIGN(amdgpu_vm_num_entries(adev, level) * 8);
123 }
124
125 /**
126  * amdgpu_vm_get_pd_bo - add the VM PD to a validation list
127  *
128  * @vm: vm providing the BOs
129  * @validated: head of validation list
130  * @entry: entry to add
131  *
132  * Add the page directory to the list of BOs to
133  * validate for command submission.
134  */
135 void amdgpu_vm_get_pd_bo(struct amdgpu_vm *vm,
136                          struct list_head *validated,
137                          struct amdgpu_bo_list_entry *entry)
138 {
139         entry->robj = vm->root.bo;
140         entry->priority = 0;
141         entry->tv.bo = &entry->robj->tbo;
142         entry->tv.shared = true;
143         entry->user_pages = NULL;
144         list_add(&entry->tv.head, validated);
145 }
146
147 /**
148  * amdgpu_vm_validate_layer - validate a single page table level
149  *
150  * @parent: parent page table level
151  * @validate: callback to do the validation
152  * @param: parameter for the validation callback
153  *
154  * Validate the page table BOs on command submission if neccessary.
155  */
156 static int amdgpu_vm_validate_level(struct amdgpu_vm_pt *parent,
157                                     int (*validate)(void *, struct amdgpu_bo *),
158                                     void *param)
159 {
160         unsigned i;
161         int r;
162
163         if (!parent->entries)
164                 return 0;
165
166         for (i = 0; i <= parent->last_entry_used; ++i) {
167                 struct amdgpu_vm_pt *entry = &parent->entries[i];
168
169                 if (!entry->bo)
170                         continue;
171
172                 r = validate(param, entry->bo);
173                 if (r)
174                         return r;
175
176                 /*
177                  * Recurse into the sub directory. This is harmless because we
178                  * have only a maximum of 5 layers.
179                  */
180                 r = amdgpu_vm_validate_level(entry, validate, param);
181                 if (r)
182                         return r;
183         }
184
185         return r;
186 }
187
188 /**
189  * amdgpu_vm_validate_pt_bos - validate the page table BOs
190  *
191  * @adev: amdgpu device pointer
192  * @vm: vm providing the BOs
193  * @validate: callback to do the validation
194  * @param: parameter for the validation callback
195  *
196  * Validate the page table BOs on command submission if neccessary.
197  */
198 int amdgpu_vm_validate_pt_bos(struct amdgpu_device *adev, struct amdgpu_vm *vm,
199                               int (*validate)(void *p, struct amdgpu_bo *bo),
200                               void *param)
201 {
202         uint64_t num_evictions;
203
204         /* We only need to validate the page tables
205          * if they aren't already valid.
206          */
207         num_evictions = atomic64_read(&adev->num_evictions);
208         if (num_evictions == vm->last_eviction_counter)
209                 return 0;
210
211         return amdgpu_vm_validate_level(&vm->root, validate, param);
212 }
213
214 /**
215  * amdgpu_vm_move_level_in_lru - move one level of PT BOs to the LRU tail
216  *
217  * @adev: amdgpu device instance
218  * @vm: vm providing the BOs
219  *
220  * Move the PT BOs to the tail of the LRU.
221  */
222 static void amdgpu_vm_move_level_in_lru(struct amdgpu_vm_pt *parent)
223 {
224         unsigned i;
225
226         if (!parent->entries)
227                 return;
228
229         for (i = 0; i <= parent->last_entry_used; ++i) {
230                 struct amdgpu_vm_pt *entry = &parent->entries[i];
231
232                 if (!entry->bo)
233                         continue;
234
235                 ttm_bo_move_to_lru_tail(&entry->bo->tbo);
236                 amdgpu_vm_move_level_in_lru(entry);
237         }
238 }
239
240 /**
241  * amdgpu_vm_move_pt_bos_in_lru - move the PT BOs to the LRU tail
242  *
243  * @adev: amdgpu device instance
244  * @vm: vm providing the BOs
245  *
246  * Move the PT BOs to the tail of the LRU.
247  */
248 void amdgpu_vm_move_pt_bos_in_lru(struct amdgpu_device *adev,
249                                   struct amdgpu_vm *vm)
250 {
251         struct ttm_bo_global *glob = adev->mman.bdev.glob;
252
253         spin_lock(&glob->lru_lock);
254         amdgpu_vm_move_level_in_lru(&vm->root);
255         spin_unlock(&glob->lru_lock);
256 }
257
258  /**
259  * amdgpu_vm_alloc_levels - allocate the PD/PT levels
260  *
261  * @adev: amdgpu_device pointer
262  * @vm: requested vm
263  * @saddr: start of the address range
264  * @eaddr: end of the address range
265  *
266  * Make sure the page directories and page tables are allocated
267  */
268 static int amdgpu_vm_alloc_levels(struct amdgpu_device *adev,
269                                   struct amdgpu_vm *vm,
270                                   struct amdgpu_vm_pt *parent,
271                                   uint64_t saddr, uint64_t eaddr,
272                                   unsigned level)
273 {
274         unsigned shift = (adev->vm_manager.num_level - level) *
275                 adev->vm_manager.block_size;
276         unsigned pt_idx, from, to;
277         int r;
278
279         if (!parent->entries) {
280                 unsigned num_entries = amdgpu_vm_num_entries(adev, level);
281
282                 parent->entries = drm_calloc_large(num_entries,
283                                                    sizeof(struct amdgpu_vm_pt));
284                 if (!parent->entries)
285                         return -ENOMEM;
286                 memset(parent->entries, 0 , sizeof(struct amdgpu_vm_pt));
287         }
288
289         from = saddr >> shift;
290         to = eaddr >> shift;
291         if (from >= amdgpu_vm_num_entries(adev, level) ||
292             to >= amdgpu_vm_num_entries(adev, level))
293                 return -EINVAL;
294
295         if (to > parent->last_entry_used)
296                 parent->last_entry_used = to;
297
298         ++level;
299         saddr = saddr & ((1 << shift) - 1);
300         eaddr = eaddr & ((1 << shift) - 1);
301
302         /* walk over the address space and allocate the page tables */
303         for (pt_idx = from; pt_idx <= to; ++pt_idx) {
304                 struct reservation_object *resv = vm->root.bo->tbo.resv;
305                 struct amdgpu_vm_pt *entry = &parent->entries[pt_idx];
306                 struct amdgpu_bo *pt;
307
308                 if (!entry->bo) {
309                         r = amdgpu_bo_create(adev,
310                                              amdgpu_vm_bo_size(adev, level),
311                                              AMDGPU_GPU_PAGE_SIZE, true,
312                                              AMDGPU_GEM_DOMAIN_VRAM,
313                                              AMDGPU_GEM_CREATE_NO_CPU_ACCESS |
314                                              AMDGPU_GEM_CREATE_SHADOW |
315                                              AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS |
316                                              AMDGPU_GEM_CREATE_VRAM_CLEARED,
317                                              NULL, resv, &pt);
318                         if (r)
319                                 return r;
320
321                         /* Keep a reference to the root directory to avoid
322                         * freeing them up in the wrong order.
323                         */
324                         pt->parent = amdgpu_bo_ref(vm->root.bo);
325
326                         entry->bo = pt;
327                         entry->addr = 0;
328                 }
329
330                 if (level < adev->vm_manager.num_level) {
331                         uint64_t sub_saddr = (pt_idx == from) ? saddr : 0;
332                         uint64_t sub_eaddr = (pt_idx == to) ? eaddr :
333                                 ((1 << shift) - 1);
334                         r = amdgpu_vm_alloc_levels(adev, vm, entry, sub_saddr,
335                                                    sub_eaddr, level);
336                         if (r)
337                                 return r;
338                 }
339         }
340
341         return 0;
342 }
343
344 /**
345  * amdgpu_vm_alloc_pts - Allocate page tables.
346  *
347  * @adev: amdgpu_device pointer
348  * @vm: VM to allocate page tables for
349  * @saddr: Start address which needs to be allocated
350  * @size: Size from start address we need.
351  *
352  * Make sure the page tables are allocated.
353  */
354 int amdgpu_vm_alloc_pts(struct amdgpu_device *adev,
355                         struct amdgpu_vm *vm,
356                         uint64_t saddr, uint64_t size)
357 {
358         uint64_t last_pfn;
359         uint64_t eaddr;
360
361         /* validate the parameters */
362         if (saddr & AMDGPU_GPU_PAGE_MASK || size & AMDGPU_GPU_PAGE_MASK)
363                 return -EINVAL;
364
365         eaddr = saddr + size - 1;
366         last_pfn = eaddr / AMDGPU_GPU_PAGE_SIZE;
367         if (last_pfn >= adev->vm_manager.max_pfn) {
368                 dev_err(adev->dev, "va above limit (0x%08llX >= 0x%08llX)\n",
369                         last_pfn, adev->vm_manager.max_pfn);
370                 return -EINVAL;
371         }
372
373         saddr /= AMDGPU_GPU_PAGE_SIZE;
374         eaddr /= AMDGPU_GPU_PAGE_SIZE;
375
376         return amdgpu_vm_alloc_levels(adev, vm, &vm->root, saddr, eaddr, 0);
377 }
378
379 /**
380  * amdgpu_vm_had_gpu_reset - check if reset occured since last use
381  *
382  * @adev: amdgpu_device pointer
383  * @id: VMID structure
384  *
385  * Check if GPU reset occured since last use of the VMID.
386  */
387 static bool amdgpu_vm_had_gpu_reset(struct amdgpu_device *adev,
388                                     struct amdgpu_vm_id *id)
389 {
390         return id->current_gpu_reset_count !=
391                 atomic_read(&adev->gpu_reset_counter);
392 }
393
394 static bool amdgpu_vm_reserved_vmid_ready(struct amdgpu_vm *vm, unsigned vmhub)
395 {
396         return !!vm->reserved_vmid[vmhub];
397 }
398
399 /* idr_mgr->lock must be held */
400 static int amdgpu_vm_grab_reserved_vmid_locked(struct amdgpu_vm *vm,
401                                                struct amdgpu_ring *ring,
402                                                struct amdgpu_sync *sync,
403                                                struct dma_fence *fence,
404                                                struct amdgpu_job *job)
405 {
406         struct amdgpu_device *adev = ring->adev;
407         unsigned vmhub = ring->funcs->vmhub;
408         uint64_t fence_context = adev->fence_context + ring->idx;
409         struct amdgpu_vm_id *id = vm->reserved_vmid[vmhub];
410         struct amdgpu_vm_id_manager *id_mgr = &adev->vm_manager.id_mgr[vmhub];
411         struct dma_fence *updates = sync->last_vm_update;
412         int r = 0;
413         struct dma_fence *flushed, *tmp;
414         bool needs_flush = false;
415
416         flushed  = id->flushed_updates;
417         if ((amdgpu_vm_had_gpu_reset(adev, id)) ||
418             (atomic64_read(&id->owner) != vm->client_id) ||
419             (job->vm_pd_addr != id->pd_gpu_addr) ||
420             (updates && (!flushed || updates->context != flushed->context ||
421                         dma_fence_is_later(updates, flushed))) ||
422             (!id->last_flush || (id->last_flush->context != fence_context &&
423                                  !dma_fence_is_signaled(id->last_flush)))) {
424                 needs_flush = true;
425                 /* to prevent one context starved by another context */
426                 id->pd_gpu_addr = 0;
427                 tmp = amdgpu_sync_peek_fence(&id->active, ring);
428                 if (tmp) {
429                         r = amdgpu_sync_fence(adev, sync, tmp);
430                         return r;
431                 }
432         }
433
434         /* Good we can use this VMID. Remember this submission as
435         * user of the VMID.
436         */
437         r = amdgpu_sync_fence(ring->adev, &id->active, fence);
438         if (r)
439                 goto out;
440
441         if (updates && (!flushed || updates->context != flushed->context ||
442                         dma_fence_is_later(updates, flushed))) {
443                 dma_fence_put(id->flushed_updates);
444                 id->flushed_updates = dma_fence_get(updates);
445         }
446         id->pd_gpu_addr = job->vm_pd_addr;
447         atomic64_set(&id->owner, vm->client_id);
448         job->vm_needs_flush = needs_flush;
449         if (needs_flush) {
450                 dma_fence_put(id->last_flush);
451                 id->last_flush = NULL;
452         }
453         job->vm_id = id - id_mgr->ids;
454         trace_amdgpu_vm_grab_id(vm, ring, job);
455 out:
456         return r;
457 }
458
459 /**
460  * amdgpu_vm_grab_id - allocate the next free VMID
461  *
462  * @vm: vm to allocate id for
463  * @ring: ring we want to submit job to
464  * @sync: sync object where we add dependencies
465  * @fence: fence protecting ID from reuse
466  *
467  * Allocate an id for the vm, adding fences to the sync obj as necessary.
468  */
469 int amdgpu_vm_grab_id(struct amdgpu_vm *vm, struct amdgpu_ring *ring,
470                       struct amdgpu_sync *sync, struct dma_fence *fence,
471                       struct amdgpu_job *job)
472 {
473         struct amdgpu_device *adev = ring->adev;
474         unsigned vmhub = ring->funcs->vmhub;
475         struct amdgpu_vm_id_manager *id_mgr = &adev->vm_manager.id_mgr[vmhub];
476         uint64_t fence_context = adev->fence_context + ring->idx;
477         struct dma_fence *updates = sync->last_vm_update;
478         struct amdgpu_vm_id *id, *idle;
479         struct dma_fence **fences;
480         unsigned i;
481         int r = 0;
482
483         mutex_lock(&id_mgr->lock);
484         if (amdgpu_vm_reserved_vmid_ready(vm, vmhub)) {
485                 r = amdgpu_vm_grab_reserved_vmid_locked(vm, ring, sync, fence, job);
486                 mutex_unlock(&id_mgr->lock);
487                 return r;
488         }
489         fences = kmalloc_array(sizeof(void *), id_mgr->num_ids, GFP_KERNEL);
490         if (!fences) {
491                 mutex_unlock(&id_mgr->lock);
492                 return -ENOMEM;
493         }
494         /* Check if we have an idle VMID */
495         i = 0;
496         list_for_each_entry(idle, &id_mgr->ids_lru, list) {
497                 fences[i] = amdgpu_sync_peek_fence(&idle->active, ring);
498                 if (!fences[i])
499                         break;
500                 ++i;
501         }
502
503         /* If we can't find a idle VMID to use, wait till one becomes available */
504         if (&idle->list == &id_mgr->ids_lru) {
505                 u64 fence_context = adev->vm_manager.fence_context + ring->idx;
506                 unsigned seqno = ++adev->vm_manager.seqno[ring->idx];
507                 struct dma_fence_array *array;
508                 unsigned j;
509
510                 for (j = 0; j < i; ++j)
511                         dma_fence_get(fences[j]);
512
513                 array = dma_fence_array_create(i, fences, fence_context,
514                                            seqno, true);
515                 if (!array) {
516                         for (j = 0; j < i; ++j)
517                                 dma_fence_put(fences[j]);
518                         kfree(fences);
519                         r = -ENOMEM;
520                         goto error;
521                 }
522
523
524                 r = amdgpu_sync_fence(ring->adev, sync, &array->base);
525                 dma_fence_put(&array->base);
526                 if (r)
527                         goto error;
528
529                 mutex_unlock(&id_mgr->lock);
530                 return 0;
531
532         }
533         kfree(fences);
534
535         job->vm_needs_flush = false;
536         /* Check if we can use a VMID already assigned to this VM */
537         list_for_each_entry_reverse(id, &id_mgr->ids_lru, list) {
538                 struct dma_fence *flushed;
539                 bool needs_flush = false;
540
541                 /* Check all the prerequisites to using this VMID */
542                 if (amdgpu_vm_had_gpu_reset(adev, id))
543                         continue;
544
545                 if (atomic64_read(&id->owner) != vm->client_id)
546                         continue;
547
548                 if (job->vm_pd_addr != id->pd_gpu_addr)
549                         continue;
550
551                 if (!id->last_flush ||
552                     (id->last_flush->context != fence_context &&
553                      !dma_fence_is_signaled(id->last_flush)))
554                         needs_flush = true;
555
556                 flushed  = id->flushed_updates;
557                 if (updates && (!flushed || dma_fence_is_later(updates, flushed)))
558                         needs_flush = true;
559
560                 /* Concurrent flushes are only possible starting with Vega10 */
561                 if (adev->asic_type < CHIP_VEGA10 && needs_flush)
562                         continue;
563
564                 /* Good we can use this VMID. Remember this submission as
565                  * user of the VMID.
566                  */
567                 r = amdgpu_sync_fence(ring->adev, &id->active, fence);
568                 if (r)
569                         goto error;
570
571                 if (updates && (!flushed || dma_fence_is_later(updates, flushed))) {
572                         dma_fence_put(id->flushed_updates);
573                         id->flushed_updates = dma_fence_get(updates);
574                 }
575
576                 if (needs_flush)
577                         goto needs_flush;
578                 else
579                         goto no_flush_needed;
580
581         };
582
583         /* Still no ID to use? Then use the idle one found earlier */
584         id = idle;
585
586         /* Remember this submission as user of the VMID */
587         r = amdgpu_sync_fence(ring->adev, &id->active, fence);
588         if (r)
589                 goto error;
590
591         id->pd_gpu_addr = job->vm_pd_addr;
592         dma_fence_put(id->flushed_updates);
593         id->flushed_updates = dma_fence_get(updates);
594         atomic64_set(&id->owner, vm->client_id);
595
596 needs_flush:
597         job->vm_needs_flush = true;
598         dma_fence_put(id->last_flush);
599         id->last_flush = NULL;
600
601 no_flush_needed:
602         list_move_tail(&id->list, &id_mgr->ids_lru);
603
604         job->vm_id = id - id_mgr->ids;
605         trace_amdgpu_vm_grab_id(vm, ring, job);
606
607 error:
608         mutex_unlock(&id_mgr->lock);
609         return r;
610 }
611
612 static void amdgpu_vm_free_reserved_vmid(struct amdgpu_device *adev,
613                                           struct amdgpu_vm *vm,
614                                           unsigned vmhub)
615 {
616         struct amdgpu_vm_id_manager *id_mgr = &adev->vm_manager.id_mgr[vmhub];
617
618         mutex_lock(&id_mgr->lock);
619         if (vm->reserved_vmid[vmhub]) {
620                 list_add(&vm->reserved_vmid[vmhub]->list,
621                         &id_mgr->ids_lru);
622                 vm->reserved_vmid[vmhub] = NULL;
623                 atomic_dec(&id_mgr->reserved_vmid_num);
624         }
625         mutex_unlock(&id_mgr->lock);
626 }
627
628 static int amdgpu_vm_alloc_reserved_vmid(struct amdgpu_device *adev,
629                                          struct amdgpu_vm *vm,
630                                          unsigned vmhub)
631 {
632         struct amdgpu_vm_id_manager *id_mgr;
633         struct amdgpu_vm_id *idle;
634         int r = 0;
635
636         id_mgr = &adev->vm_manager.id_mgr[vmhub];
637         mutex_lock(&id_mgr->lock);
638         if (vm->reserved_vmid[vmhub])
639                 goto unlock;
640         if (atomic_inc_return(&id_mgr->reserved_vmid_num) >
641             AMDGPU_VM_MAX_RESERVED_VMID) {
642                 DRM_ERROR("Over limitation of reserved vmid\n");
643                 atomic_dec(&id_mgr->reserved_vmid_num);
644                 r = -EINVAL;
645                 goto unlock;
646         }
647         /* Select the first entry VMID */
648         idle = list_first_entry(&id_mgr->ids_lru, struct amdgpu_vm_id, list);
649         list_del_init(&idle->list);
650         vm->reserved_vmid[vmhub] = idle;
651         mutex_unlock(&id_mgr->lock);
652
653         return 0;
654 unlock:
655         mutex_unlock(&id_mgr->lock);
656         return r;
657 }
658
659 static bool amdgpu_vm_ring_has_compute_vm_bug(struct amdgpu_ring *ring)
660 {
661         struct amdgpu_device *adev = ring->adev;
662         const struct amdgpu_ip_block *ip_block;
663
664         if (ring->funcs->type != AMDGPU_RING_TYPE_COMPUTE)
665                 /* only compute rings */
666                 return false;
667
668         ip_block = amdgpu_get_ip_block(adev, AMD_IP_BLOCK_TYPE_GFX);
669         if (!ip_block)
670                 return false;
671
672         if (ip_block->version->major <= 7) {
673                 /* gfx7 has no workaround */
674                 return true;
675         } else if (ip_block->version->major == 8) {
676                 if (adev->gfx.mec_fw_version >= 673)
677                         /* gfx8 is fixed in MEC firmware 673 */
678                         return false;
679                 else
680                         return true;
681         }
682         return false;
683 }
684
685 bool amdgpu_vm_need_pipeline_sync(struct amdgpu_ring *ring,
686                                   struct amdgpu_job *job)
687 {
688         struct amdgpu_device *adev = ring->adev;
689         unsigned vmhub = ring->funcs->vmhub;
690         struct amdgpu_vm_id_manager *id_mgr = &adev->vm_manager.id_mgr[vmhub];
691         struct amdgpu_vm_id *id;
692         bool gds_switch_needed;
693         bool vm_flush_needed = job->vm_needs_flush ||
694                 amdgpu_vm_ring_has_compute_vm_bug(ring);
695
696         if (job->vm_id == 0)
697                 return false;
698         id = &id_mgr->ids[job->vm_id];
699         gds_switch_needed = ring->funcs->emit_gds_switch && (
700                 id->gds_base != job->gds_base ||
701                 id->gds_size != job->gds_size ||
702                 id->gws_base != job->gws_base ||
703                 id->gws_size != job->gws_size ||
704                 id->oa_base != job->oa_base ||
705                 id->oa_size != job->oa_size);
706
707         if (amdgpu_vm_had_gpu_reset(adev, id))
708                 return true;
709         if (!vm_flush_needed && !gds_switch_needed)
710                 return false;
711         return true;
712 }
713
714 /**
715  * amdgpu_vm_flush - hardware flush the vm
716  *
717  * @ring: ring to use for flush
718  * @vm_id: vmid number to use
719  * @pd_addr: address of the page directory
720  *
721  * Emit a VM flush when it is necessary.
722  */
723 int amdgpu_vm_flush(struct amdgpu_ring *ring, struct amdgpu_job *job)
724 {
725         struct amdgpu_device *adev = ring->adev;
726         unsigned vmhub = ring->funcs->vmhub;
727         struct amdgpu_vm_id_manager *id_mgr = &adev->vm_manager.id_mgr[vmhub];
728         struct amdgpu_vm_id *id = &id_mgr->ids[job->vm_id];
729         bool gds_switch_needed = ring->funcs->emit_gds_switch && (
730                 id->gds_base != job->gds_base ||
731                 id->gds_size != job->gds_size ||
732                 id->gws_base != job->gws_base ||
733                 id->gws_size != job->gws_size ||
734                 id->oa_base != job->oa_base ||
735                 id->oa_size != job->oa_size);
736         bool vm_flush_needed = job->vm_needs_flush;
737         unsigned patch_offset = 0;
738         int r;
739
740         if (amdgpu_vm_had_gpu_reset(adev, id)) {
741                 gds_switch_needed = true;
742                 vm_flush_needed = true;
743         }
744
745         if (!vm_flush_needed && !gds_switch_needed)
746                 return 0;
747
748         if (ring->funcs->init_cond_exec)
749                 patch_offset = amdgpu_ring_init_cond_exec(ring);
750
751         if (ring->funcs->emit_vm_flush && vm_flush_needed) {
752                 struct dma_fence *fence;
753
754                 trace_amdgpu_vm_flush(ring, job->vm_id, job->vm_pd_addr);
755                 amdgpu_ring_emit_vm_flush(ring, job->vm_id, job->vm_pd_addr);
756
757                 r = amdgpu_fence_emit(ring, &fence);
758                 if (r)
759                         return r;
760
761                 mutex_lock(&id_mgr->lock);
762                 dma_fence_put(id->last_flush);
763                 id->last_flush = fence;
764                 id->current_gpu_reset_count = atomic_read(&adev->gpu_reset_counter);
765                 mutex_unlock(&id_mgr->lock);
766         }
767
768         if (ring->funcs->emit_gds_switch && gds_switch_needed) {
769                 id->gds_base = job->gds_base;
770                 id->gds_size = job->gds_size;
771                 id->gws_base = job->gws_base;
772                 id->gws_size = job->gws_size;
773                 id->oa_base = job->oa_base;
774                 id->oa_size = job->oa_size;
775                 amdgpu_ring_emit_gds_switch(ring, job->vm_id, job->gds_base,
776                                             job->gds_size, job->gws_base,
777                                             job->gws_size, job->oa_base,
778                                             job->oa_size);
779         }
780
781         if (ring->funcs->patch_cond_exec)
782                 amdgpu_ring_patch_cond_exec(ring, patch_offset);
783
784         /* the double SWITCH_BUFFER here *cannot* be skipped by COND_EXEC */
785         if (ring->funcs->emit_switch_buffer) {
786                 amdgpu_ring_emit_switch_buffer(ring);
787                 amdgpu_ring_emit_switch_buffer(ring);
788         }
789         return 0;
790 }
791
792 /**
793  * amdgpu_vm_reset_id - reset VMID to zero
794  *
795  * @adev: amdgpu device structure
796  * @vm_id: vmid number to use
797  *
798  * Reset saved GDW, GWS and OA to force switch on next flush.
799  */
800 void amdgpu_vm_reset_id(struct amdgpu_device *adev, unsigned vmhub,
801                         unsigned vmid)
802 {
803         struct amdgpu_vm_id_manager *id_mgr = &adev->vm_manager.id_mgr[vmhub];
804         struct amdgpu_vm_id *id = &id_mgr->ids[vmid];
805
806         atomic64_set(&id->owner, 0);
807         id->gds_base = 0;
808         id->gds_size = 0;
809         id->gws_base = 0;
810         id->gws_size = 0;
811         id->oa_base = 0;
812         id->oa_size = 0;
813 }
814
815 /**
816  * amdgpu_vm_reset_all_id - reset VMID to zero
817  *
818  * @adev: amdgpu device structure
819  *
820  * Reset VMID to force flush on next use
821  */
822 void amdgpu_vm_reset_all_ids(struct amdgpu_device *adev)
823 {
824         unsigned i, j;
825
826         for (i = 0; i < AMDGPU_MAX_VMHUBS; ++i) {
827                 struct amdgpu_vm_id_manager *id_mgr =
828                         &adev->vm_manager.id_mgr[i];
829
830                 for (j = 1; j < id_mgr->num_ids; ++j)
831                         amdgpu_vm_reset_id(adev, i, j);
832         }
833 }
834
835 /**
836  * amdgpu_vm_bo_find - find the bo_va for a specific vm & bo
837  *
838  * @vm: requested vm
839  * @bo: requested buffer object
840  *
841  * Find @bo inside the requested vm.
842  * Search inside the @bos vm list for the requested vm
843  * Returns the found bo_va or NULL if none is found
844  *
845  * Object has to be reserved!
846  */
847 struct amdgpu_bo_va *amdgpu_vm_bo_find(struct amdgpu_vm *vm,
848                                        struct amdgpu_bo *bo)
849 {
850         struct amdgpu_bo_va *bo_va;
851
852         list_for_each_entry(bo_va, &bo->va, bo_list) {
853                 if (bo_va->vm == vm) {
854                         return bo_va;
855                 }
856         }
857         return NULL;
858 }
859
860 /**
861  * amdgpu_vm_do_set_ptes - helper to call the right asic function
862  *
863  * @params: see amdgpu_pte_update_params definition
864  * @pe: addr of the page entry
865  * @addr: dst addr to write into pe
866  * @count: number of page entries to update
867  * @incr: increase next addr by incr bytes
868  * @flags: hw access flags
869  *
870  * Traces the parameters and calls the right asic functions
871  * to setup the page table using the DMA.
872  */
873 static void amdgpu_vm_do_set_ptes(struct amdgpu_pte_update_params *params,
874                                   uint64_t pe, uint64_t addr,
875                                   unsigned count, uint32_t incr,
876                                   uint64_t flags)
877 {
878         trace_amdgpu_vm_set_ptes(pe, addr, count, incr, flags);
879
880         if (count < 3) {
881                 amdgpu_vm_write_pte(params->adev, params->ib, pe,
882                                     addr | flags, count, incr);
883
884         } else {
885                 amdgpu_vm_set_pte_pde(params->adev, params->ib, pe, addr,
886                                       count, incr, flags);
887         }
888 }
889
890 /**
891  * amdgpu_vm_do_copy_ptes - copy the PTEs from the GART
892  *
893  * @params: see amdgpu_pte_update_params definition
894  * @pe: addr of the page entry
895  * @addr: dst addr to write into pe
896  * @count: number of page entries to update
897  * @incr: increase next addr by incr bytes
898  * @flags: hw access flags
899  *
900  * Traces the parameters and calls the DMA function to copy the PTEs.
901  */
902 static void amdgpu_vm_do_copy_ptes(struct amdgpu_pte_update_params *params,
903                                    uint64_t pe, uint64_t addr,
904                                    unsigned count, uint32_t incr,
905                                    uint64_t flags)
906 {
907         uint64_t src = (params->src + (addr >> 12) * 8);
908
909
910         trace_amdgpu_vm_copy_ptes(pe, src, count);
911
912         amdgpu_vm_copy_pte(params->adev, params->ib, pe, src, count);
913 }
914
915 /**
916  * amdgpu_vm_map_gart - Resolve gart mapping of addr
917  *
918  * @pages_addr: optional DMA address to use for lookup
919  * @addr: the unmapped addr
920  *
921  * Look up the physical address of the page that the pte resolves
922  * to and return the pointer for the page table entry.
923  */
924 static uint64_t amdgpu_vm_map_gart(const dma_addr_t *pages_addr, uint64_t addr)
925 {
926         uint64_t result;
927
928         /* page table offset */
929         result = pages_addr[addr >> PAGE_SHIFT];
930
931         /* in case cpu page size != gpu page size*/
932         result |= addr & (~PAGE_MASK);
933
934         result &= 0xFFFFFFFFFFFFF000ULL;
935
936         return result;
937 }
938
939 /*
940  * amdgpu_vm_update_level - update a single level in the hierarchy
941  *
942  * @adev: amdgpu_device pointer
943  * @vm: requested vm
944  * @parent: parent directory
945  *
946  * Makes sure all entries in @parent are up to date.
947  * Returns 0 for success, error for failure.
948  */
949 static int amdgpu_vm_update_level(struct amdgpu_device *adev,
950                                   struct amdgpu_vm *vm,
951                                   struct amdgpu_vm_pt *parent,
952                                   unsigned level)
953 {
954         struct amdgpu_bo *shadow;
955         struct amdgpu_ring *ring;
956         uint64_t pd_addr, shadow_addr;
957         uint32_t incr = amdgpu_vm_bo_size(adev, level + 1);
958         uint64_t last_pde = ~0, last_pt = ~0, last_shadow = ~0;
959         unsigned count = 0, pt_idx, ndw;
960         struct amdgpu_job *job;
961         struct amdgpu_pte_update_params params;
962         struct dma_fence *fence = NULL;
963
964         int r;
965
966         if (!parent->entries)
967                 return 0;
968         ring = container_of(vm->entity.sched, struct amdgpu_ring, sched);
969
970         /* padding, etc. */
971         ndw = 64;
972
973         /* assume the worst case */
974         ndw += parent->last_entry_used * 6;
975
976         pd_addr = amdgpu_bo_gpu_offset(parent->bo);
977
978         shadow = parent->bo->shadow;
979         if (shadow) {
980                 r = amdgpu_ttm_bind(&shadow->tbo, &shadow->tbo.mem);
981                 if (r)
982                         return r;
983                 shadow_addr = amdgpu_bo_gpu_offset(shadow);
984                 ndw *= 2;
985         } else {
986                 shadow_addr = 0;
987         }
988
989         r = amdgpu_job_alloc_with_ib(adev, ndw * 4, &job);
990         if (r)
991                 return r;
992
993         memset(&params, 0, sizeof(params));
994         params.adev = adev;
995         params.ib = &job->ibs[0];
996
997         /* walk over the address space and update the directory */
998         for (pt_idx = 0; pt_idx <= parent->last_entry_used; ++pt_idx) {
999                 struct amdgpu_bo *bo = parent->entries[pt_idx].bo;
1000                 uint64_t pde, pt;
1001
1002                 if (bo == NULL)
1003                         continue;
1004
1005                 if (bo->shadow) {
1006                         struct amdgpu_bo *pt_shadow = bo->shadow;
1007
1008                         r = amdgpu_ttm_bind(&pt_shadow->tbo,
1009                                             &pt_shadow->tbo.mem);
1010                         if (r)
1011                                 return r;
1012                 }
1013
1014                 pt = amdgpu_bo_gpu_offset(bo);
1015                 if (parent->entries[pt_idx].addr == pt)
1016                         continue;
1017
1018                 parent->entries[pt_idx].addr = pt;
1019
1020                 pde = pd_addr + pt_idx * 8;
1021                 if (((last_pde + 8 * count) != pde) ||
1022                     ((last_pt + incr * count) != pt) ||
1023                     (count == AMDGPU_VM_MAX_UPDATE_SIZE)) {
1024
1025                         if (count) {
1026                                 uint64_t entry;
1027
1028                                 entry = amdgpu_gart_get_vm_pde(adev, last_pt);
1029                                 if (shadow)
1030                                         amdgpu_vm_do_set_ptes(&params,
1031                                                               last_shadow,
1032                                                               entry, count,
1033                                                               incr,
1034                                                               AMDGPU_PTE_VALID);
1035
1036                                 amdgpu_vm_do_set_ptes(&params, last_pde,
1037                                                       entry, count, incr,
1038                                                       AMDGPU_PTE_VALID);
1039                         }
1040
1041                         count = 1;
1042                         last_pde = pde;
1043                         last_shadow = shadow_addr + pt_idx * 8;
1044                         last_pt = pt;
1045                 } else {
1046                         ++count;
1047                 }
1048         }
1049
1050         if (count) {
1051                 uint64_t entry;
1052
1053                 entry = amdgpu_gart_get_vm_pde(adev, last_pt);
1054
1055                 if (vm->root.bo->shadow)
1056                         amdgpu_vm_do_set_ptes(&params, last_shadow, entry,
1057                                               count, incr, AMDGPU_PTE_VALID);
1058
1059                 amdgpu_vm_do_set_ptes(&params, last_pde, entry,
1060                                       count, incr, AMDGPU_PTE_VALID);
1061         }
1062
1063         if (params.ib->length_dw == 0) {
1064                 amdgpu_job_free(job);
1065         } else {
1066                 amdgpu_ring_pad_ib(ring, params.ib);
1067                 amdgpu_sync_resv(adev, &job->sync, parent->bo->tbo.resv,
1068                                  AMDGPU_FENCE_OWNER_VM);
1069                 if (shadow)
1070                         amdgpu_sync_resv(adev, &job->sync, shadow->tbo.resv,
1071                                          AMDGPU_FENCE_OWNER_VM);
1072
1073                 WARN_ON(params.ib->length_dw > ndw);
1074                 r = amdgpu_job_submit(job, ring, &vm->entity,
1075                                 AMDGPU_FENCE_OWNER_VM, &fence);
1076                 if (r)
1077                         goto error_free;
1078
1079                 amdgpu_bo_fence(parent->bo, fence, true);
1080                 dma_fence_put(vm->last_dir_update);
1081                 vm->last_dir_update = dma_fence_get(fence);
1082                 dma_fence_put(fence);
1083         }
1084         /*
1085          * Recurse into the subdirectories. This recursion is harmless because
1086          * we only have a maximum of 5 layers.
1087          */
1088         for (pt_idx = 0; pt_idx <= parent->last_entry_used; ++pt_idx) {
1089                 struct amdgpu_vm_pt *entry = &parent->entries[pt_idx];
1090
1091                 if (!entry->bo)
1092                         continue;
1093
1094                 r = amdgpu_vm_update_level(adev, vm, entry, level + 1);
1095                 if (r)
1096                         return r;
1097         }
1098
1099         return 0;
1100
1101 error_free:
1102         amdgpu_job_free(job);
1103         return r;
1104 }
1105
1106 /*
1107  * amdgpu_vm_invalidate_level - mark all PD levels as invalid
1108  *
1109  * @parent: parent PD
1110  *
1111  * Mark all PD level as invalid after an error.
1112  */
1113 static void amdgpu_vm_invalidate_level(struct amdgpu_vm_pt *parent)
1114 {
1115         unsigned pt_idx;
1116
1117         /*
1118          * Recurse into the subdirectories. This recursion is harmless because
1119          * we only have a maximum of 5 layers.
1120          */
1121         for (pt_idx = 0; pt_idx <= parent->last_entry_used; ++pt_idx) {
1122                 struct amdgpu_vm_pt *entry = &parent->entries[pt_idx];
1123
1124                 if (!entry->bo)
1125                         continue;
1126
1127                 entry->addr = ~0ULL;
1128                 amdgpu_vm_invalidate_level(entry);
1129         }
1130 }
1131
1132 /*
1133  * amdgpu_vm_update_directories - make sure that all directories are valid
1134  *
1135  * @adev: amdgpu_device pointer
1136  * @vm: requested vm
1137  *
1138  * Makes sure all directories are up to date.
1139  * Returns 0 for success, error for failure.
1140  */
1141 int amdgpu_vm_update_directories(struct amdgpu_device *adev,
1142                                  struct amdgpu_vm *vm)
1143 {
1144         int r;
1145
1146         r = amdgpu_vm_update_level(adev, vm, &vm->root, 0);
1147         if (r)
1148                 amdgpu_vm_invalidate_level(&vm->root);
1149
1150         return r;
1151 }
1152
1153 /**
1154  * amdgpu_vm_find_pt - find the page table for an address
1155  *
1156  * @p: see amdgpu_pte_update_params definition
1157  * @addr: virtual address in question
1158  *
1159  * Find the page table BO for a virtual address, return NULL when none found.
1160  */
1161 static struct amdgpu_bo *amdgpu_vm_get_pt(struct amdgpu_pte_update_params *p,
1162                                           uint64_t addr)
1163 {
1164         struct amdgpu_vm_pt *entry = &p->vm->root;
1165         unsigned idx, level = p->adev->vm_manager.num_level;
1166
1167         while (entry->entries) {
1168                 idx = addr >> (p->adev->vm_manager.block_size * level--);
1169                 idx %= amdgpu_bo_size(entry->bo) / 8;
1170                 entry = &entry->entries[idx];
1171         }
1172
1173         if (level)
1174                 return NULL;
1175
1176         return entry->bo;
1177 }
1178
1179 /**
1180  * amdgpu_vm_update_ptes - make sure that page tables are valid
1181  *
1182  * @params: see amdgpu_pte_update_params definition
1183  * @vm: requested vm
1184  * @start: start of GPU address range
1185  * @end: end of GPU address range
1186  * @dst: destination address to map to, the next dst inside the function
1187  * @flags: mapping flags
1188  *
1189  * Update the page tables in the range @start - @end.
1190  */
1191 static void amdgpu_vm_update_ptes(struct amdgpu_pte_update_params *params,
1192                                   uint64_t start, uint64_t end,
1193                                   uint64_t dst, uint64_t flags)
1194 {
1195         struct amdgpu_device *adev = params->adev;
1196         const uint64_t mask = AMDGPU_VM_PTE_COUNT(adev) - 1;
1197
1198         uint64_t cur_pe_start, cur_nptes, cur_dst;
1199         uint64_t addr; /* next GPU address to be updated */
1200         struct amdgpu_bo *pt;
1201         unsigned nptes; /* next number of ptes to be updated */
1202         uint64_t next_pe_start;
1203
1204         /* initialize the variables */
1205         addr = start;
1206         pt = amdgpu_vm_get_pt(params, addr);
1207         if (!pt) {
1208                 pr_err("PT not found, aborting update_ptes\n");
1209                 return;
1210         }
1211
1212         if (params->shadow) {
1213                 if (!pt->shadow)
1214                         return;
1215                 pt = pt->shadow;
1216         }
1217         if ((addr & ~mask) == (end & ~mask))
1218                 nptes = end - addr;
1219         else
1220                 nptes = AMDGPU_VM_PTE_COUNT(adev) - (addr & mask);
1221
1222         cur_pe_start = amdgpu_bo_gpu_offset(pt);
1223         cur_pe_start += (addr & mask) * 8;
1224         cur_nptes = nptes;
1225         cur_dst = dst;
1226
1227         /* for next ptb*/
1228         addr += nptes;
1229         dst += nptes * AMDGPU_GPU_PAGE_SIZE;
1230
1231         /* walk over the address space and update the page tables */
1232         while (addr < end) {
1233                 pt = amdgpu_vm_get_pt(params, addr);
1234                 if (!pt) {
1235                         pr_err("PT not found, aborting update_ptes\n");
1236                         return;
1237                 }
1238
1239                 if (params->shadow) {
1240                         if (!pt->shadow)
1241                                 return;
1242                         pt = pt->shadow;
1243                 }
1244
1245                 if ((addr & ~mask) == (end & ~mask))
1246                         nptes = end - addr;
1247                 else
1248                         nptes = AMDGPU_VM_PTE_COUNT(adev) - (addr & mask);
1249
1250                 next_pe_start = amdgpu_bo_gpu_offset(pt);
1251                 next_pe_start += (addr & mask) * 8;
1252
1253                 if ((cur_pe_start + 8 * cur_nptes) == next_pe_start &&
1254                     ((cur_nptes + nptes) <= AMDGPU_VM_MAX_UPDATE_SIZE)) {
1255                         /* The next ptb is consecutive to current ptb.
1256                          * Don't call the update function now.
1257                          * Will update two ptbs together in future.
1258                         */
1259                         cur_nptes += nptes;
1260                 } else {
1261                         params->func(params, cur_pe_start, cur_dst, cur_nptes,
1262                                      AMDGPU_GPU_PAGE_SIZE, flags);
1263
1264                         cur_pe_start = next_pe_start;
1265                         cur_nptes = nptes;
1266                         cur_dst = dst;
1267                 }
1268
1269                 /* for next ptb*/
1270                 addr += nptes;
1271                 dst += nptes * AMDGPU_GPU_PAGE_SIZE;
1272         }
1273
1274         params->func(params, cur_pe_start, cur_dst, cur_nptes,
1275                      AMDGPU_GPU_PAGE_SIZE, flags);
1276 }
1277
1278 /*
1279  * amdgpu_vm_frag_ptes - add fragment information to PTEs
1280  *
1281  * @params: see amdgpu_pte_update_params definition
1282  * @vm: requested vm
1283  * @start: first PTE to handle
1284  * @end: last PTE to handle
1285  * @dst: addr those PTEs should point to
1286  * @flags: hw mapping flags
1287  */
1288 static void amdgpu_vm_frag_ptes(struct amdgpu_pte_update_params *params,
1289                                 uint64_t start, uint64_t end,
1290                                 uint64_t dst, uint64_t flags)
1291 {
1292         /**
1293          * The MC L1 TLB supports variable sized pages, based on a fragment
1294          * field in the PTE. When this field is set to a non-zero value, page
1295          * granularity is increased from 4KB to (1 << (12 + frag)). The PTE
1296          * flags are considered valid for all PTEs within the fragment range
1297          * and corresponding mappings are assumed to be physically contiguous.
1298          *
1299          * The L1 TLB can store a single PTE for the whole fragment,
1300          * significantly increasing the space available for translation
1301          * caching. This leads to large improvements in throughput when the
1302          * TLB is under pressure.
1303          *
1304          * The L2 TLB distributes small and large fragments into two
1305          * asymmetric partitions. The large fragment cache is significantly
1306          * larger. Thus, we try to use large fragments wherever possible.
1307          * Userspace can support this by aligning virtual base address and
1308          * allocation size to the fragment size.
1309          */
1310
1311         /* SI and newer are optimized for 64KB */
1312         uint64_t frag_flags = AMDGPU_PTE_FRAG(AMDGPU_LOG2_PAGES_PER_FRAG);
1313         uint64_t frag_align = 1 << AMDGPU_LOG2_PAGES_PER_FRAG;
1314
1315         uint64_t frag_start = ALIGN(start, frag_align);
1316         uint64_t frag_end = end & ~(frag_align - 1);
1317
1318         /* system pages are non continuously */
1319         if (params->src || !(flags & AMDGPU_PTE_VALID) ||
1320             (frag_start >= frag_end)) {
1321
1322                 amdgpu_vm_update_ptes(params, start, end, dst, flags);
1323                 return;
1324         }
1325
1326         /* handle the 4K area at the beginning */
1327         if (start != frag_start) {
1328                 amdgpu_vm_update_ptes(params, start, frag_start,
1329                                       dst, flags);
1330                 dst += (frag_start - start) * AMDGPU_GPU_PAGE_SIZE;
1331         }
1332
1333         /* handle the area in the middle */
1334         amdgpu_vm_update_ptes(params, frag_start, frag_end, dst,
1335                               flags | frag_flags);
1336
1337         /* handle the 4K area at the end */
1338         if (frag_end != end) {
1339                 dst += (frag_end - frag_start) * AMDGPU_GPU_PAGE_SIZE;
1340                 amdgpu_vm_update_ptes(params, frag_end, end, dst, flags);
1341         }
1342 }
1343
1344 /**
1345  * amdgpu_vm_bo_update_mapping - update a mapping in the vm page table
1346  *
1347  * @adev: amdgpu_device pointer
1348  * @exclusive: fence we need to sync to
1349  * @src: address where to copy page table entries from
1350  * @pages_addr: DMA addresses to use for mapping
1351  * @vm: requested vm
1352  * @start: start of mapped range
1353  * @last: last mapped entry
1354  * @flags: flags for the entries
1355  * @addr: addr to set the area to
1356  * @fence: optional resulting fence
1357  *
1358  * Fill in the page table entries between @start and @last.
1359  * Returns 0 for success, -EINVAL for failure.
1360  */
1361 static int amdgpu_vm_bo_update_mapping(struct amdgpu_device *adev,
1362                                        struct dma_fence *exclusive,
1363                                        uint64_t src,
1364                                        dma_addr_t *pages_addr,
1365                                        struct amdgpu_vm *vm,
1366                                        uint64_t start, uint64_t last,
1367                                        uint64_t flags, uint64_t addr,
1368                                        struct dma_fence **fence)
1369 {
1370         struct amdgpu_ring *ring;
1371         void *owner = AMDGPU_FENCE_OWNER_VM;
1372         unsigned nptes, ncmds, ndw;
1373         struct amdgpu_job *job;
1374         struct amdgpu_pte_update_params params;
1375         struct dma_fence *f = NULL;
1376         int r;
1377
1378         memset(&params, 0, sizeof(params));
1379         params.adev = adev;
1380         params.vm = vm;
1381         params.src = src;
1382
1383         ring = container_of(vm->entity.sched, struct amdgpu_ring, sched);
1384
1385         /* sync to everything on unmapping */
1386         if (!(flags & AMDGPU_PTE_VALID))
1387                 owner = AMDGPU_FENCE_OWNER_UNDEFINED;
1388
1389         nptes = last - start + 1;
1390
1391         /*
1392          * reserve space for one command every (1 << BLOCK_SIZE)
1393          *  entries or 2k dwords (whatever is smaller)
1394          */
1395         ncmds = (nptes >> min(adev->vm_manager.block_size, 11u)) + 1;
1396
1397         /* padding, etc. */
1398         ndw = 64;
1399
1400         if (src) {
1401                 /* only copy commands needed */
1402                 ndw += ncmds * 7;
1403
1404                 params.func = amdgpu_vm_do_copy_ptes;
1405
1406         } else if (pages_addr) {
1407                 /* copy commands needed */
1408                 ndw += ncmds * 7;
1409
1410                 /* and also PTEs */
1411                 ndw += nptes * 2;
1412
1413                 params.func = amdgpu_vm_do_copy_ptes;
1414
1415         } else {
1416                 /* set page commands needed */
1417                 ndw += ncmds * 10;
1418
1419                 /* two extra commands for begin/end of fragment */
1420                 ndw += 2 * 10;
1421
1422                 params.func = amdgpu_vm_do_set_ptes;
1423         }
1424
1425         r = amdgpu_job_alloc_with_ib(adev, ndw * 4, &job);
1426         if (r)
1427                 return r;
1428
1429         params.ib = &job->ibs[0];
1430
1431         if (!src && pages_addr) {
1432                 uint64_t *pte;
1433                 unsigned i;
1434
1435                 /* Put the PTEs at the end of the IB. */
1436                 i = ndw - nptes * 2;
1437                 pte= (uint64_t *)&(job->ibs->ptr[i]);
1438                 params.src = job->ibs->gpu_addr + i * 4;
1439
1440                 for (i = 0; i < nptes; ++i) {
1441                         pte[i] = amdgpu_vm_map_gart(pages_addr, addr + i *
1442                                                     AMDGPU_GPU_PAGE_SIZE);
1443                         pte[i] |= flags;
1444                 }
1445                 addr = 0;
1446         }
1447
1448         r = amdgpu_sync_fence(adev, &job->sync, exclusive);
1449         if (r)
1450                 goto error_free;
1451
1452         r = amdgpu_sync_resv(adev, &job->sync, vm->root.bo->tbo.resv,
1453                              owner);
1454         if (r)
1455                 goto error_free;
1456
1457         r = reservation_object_reserve_shared(vm->root.bo->tbo.resv);
1458         if (r)
1459                 goto error_free;
1460
1461         params.shadow = true;
1462         amdgpu_vm_frag_ptes(&params, start, last + 1, addr, flags);
1463         params.shadow = false;
1464         amdgpu_vm_frag_ptes(&params, start, last + 1, addr, flags);
1465
1466         amdgpu_ring_pad_ib(ring, params.ib);
1467         WARN_ON(params.ib->length_dw > ndw);
1468         r = amdgpu_job_submit(job, ring, &vm->entity,
1469                               AMDGPU_FENCE_OWNER_VM, &f);
1470         if (r)
1471                 goto error_free;
1472
1473         amdgpu_bo_fence(vm->root.bo, f, true);
1474         dma_fence_put(*fence);
1475         *fence = f;
1476         return 0;
1477
1478 error_free:
1479         amdgpu_job_free(job);
1480         return r;
1481 }
1482
1483 /**
1484  * amdgpu_vm_bo_split_mapping - split a mapping into smaller chunks
1485  *
1486  * @adev: amdgpu_device pointer
1487  * @exclusive: fence we need to sync to
1488  * @gtt_flags: flags as they are used for GTT
1489  * @pages_addr: DMA addresses to use for mapping
1490  * @vm: requested vm
1491  * @mapping: mapped range and flags to use for the update
1492  * @flags: HW flags for the mapping
1493  * @nodes: array of drm_mm_nodes with the MC addresses
1494  * @fence: optional resulting fence
1495  *
1496  * Split the mapping into smaller chunks so that each update fits
1497  * into a SDMA IB.
1498  * Returns 0 for success, -EINVAL for failure.
1499  */
1500 static int amdgpu_vm_bo_split_mapping(struct amdgpu_device *adev,
1501                                       struct dma_fence *exclusive,
1502                                       uint64_t gtt_flags,
1503                                       dma_addr_t *pages_addr,
1504                                       struct amdgpu_vm *vm,
1505                                       struct amdgpu_bo_va_mapping *mapping,
1506                                       uint64_t flags,
1507                                       struct drm_mm_node *nodes,
1508                                       struct dma_fence **fence)
1509 {
1510         uint64_t pfn, src = 0, start = mapping->start;
1511         int r;
1512
1513         /* normally,bo_va->flags only contians READABLE and WIRTEABLE bit go here
1514          * but in case of something, we filter the flags in first place
1515          */
1516         if (!(mapping->flags & AMDGPU_PTE_READABLE))
1517                 flags &= ~AMDGPU_PTE_READABLE;
1518         if (!(mapping->flags & AMDGPU_PTE_WRITEABLE))
1519                 flags &= ~AMDGPU_PTE_WRITEABLE;
1520
1521         flags &= ~AMDGPU_PTE_EXECUTABLE;
1522         flags |= mapping->flags & AMDGPU_PTE_EXECUTABLE;
1523
1524         flags &= ~AMDGPU_PTE_MTYPE_MASK;
1525         flags |= (mapping->flags & AMDGPU_PTE_MTYPE_MASK);
1526
1527         if ((mapping->flags & AMDGPU_PTE_PRT) &&
1528             (adev->asic_type >= CHIP_VEGA10)) {
1529                 flags |= AMDGPU_PTE_PRT;
1530                 flags &= ~AMDGPU_PTE_VALID;
1531         }
1532
1533         trace_amdgpu_vm_bo_update(mapping);
1534
1535         pfn = mapping->offset >> PAGE_SHIFT;
1536         if (nodes) {
1537                 while (pfn >= nodes->size) {
1538                         pfn -= nodes->size;
1539                         ++nodes;
1540                 }
1541         }
1542
1543         do {
1544                 uint64_t max_entries;
1545                 uint64_t addr, last;
1546
1547                 if (nodes) {
1548                         addr = nodes->start << PAGE_SHIFT;
1549                         max_entries = (nodes->size - pfn) *
1550                                 (PAGE_SIZE / AMDGPU_GPU_PAGE_SIZE);
1551                 } else {
1552                         addr = 0;
1553                         max_entries = S64_MAX;
1554                 }
1555
1556                 if (pages_addr) {
1557                         if (flags == gtt_flags)
1558                                 src = adev->gart.table_addr +
1559                                         (addr >> AMDGPU_GPU_PAGE_SHIFT) * 8;
1560                         else
1561                                 max_entries = min(max_entries, 16ull * 1024ull);
1562                         addr = 0;
1563                 } else if (flags & AMDGPU_PTE_VALID) {
1564                         addr += adev->vm_manager.vram_base_offset;
1565                 }
1566                 addr += pfn << PAGE_SHIFT;
1567
1568                 last = min((uint64_t)mapping->last, start + max_entries - 1);
1569                 r = amdgpu_vm_bo_update_mapping(adev, exclusive,
1570                                                 src, pages_addr, vm,
1571                                                 start, last, flags, addr,
1572                                                 fence);
1573                 if (r)
1574                         return r;
1575
1576                 pfn += last - start + 1;
1577                 if (nodes && nodes->size == pfn) {
1578                         pfn = 0;
1579                         ++nodes;
1580                 }
1581                 start = last + 1;
1582
1583         } while (unlikely(start != mapping->last + 1));
1584
1585         return 0;
1586 }
1587
1588 /**
1589  * amdgpu_vm_bo_update - update all BO mappings in the vm page table
1590  *
1591  * @adev: amdgpu_device pointer
1592  * @bo_va: requested BO and VM object
1593  * @clear: if true clear the entries
1594  *
1595  * Fill in the page table entries for @bo_va.
1596  * Returns 0 for success, -EINVAL for failure.
1597  */
1598 int amdgpu_vm_bo_update(struct amdgpu_device *adev,
1599                         struct amdgpu_bo_va *bo_va,
1600                         bool clear)
1601 {
1602         struct amdgpu_vm *vm = bo_va->vm;
1603         struct amdgpu_bo_va_mapping *mapping;
1604         dma_addr_t *pages_addr = NULL;
1605         uint64_t gtt_flags, flags;
1606         struct ttm_mem_reg *mem;
1607         struct drm_mm_node *nodes;
1608         struct dma_fence *exclusive;
1609         int r;
1610
1611         if (clear || !bo_va->bo) {
1612                 mem = NULL;
1613                 nodes = NULL;
1614                 exclusive = NULL;
1615         } else {
1616                 struct ttm_dma_tt *ttm;
1617
1618                 mem = &bo_va->bo->tbo.mem;
1619                 nodes = mem->mm_node;
1620                 if (mem->mem_type == TTM_PL_TT) {
1621                         ttm = container_of(bo_va->bo->tbo.ttm, struct
1622                                            ttm_dma_tt, ttm);
1623                         pages_addr = ttm->dma_address;
1624                 }
1625                 exclusive = reservation_object_get_excl(bo_va->bo->tbo.resv);
1626         }
1627
1628         if (bo_va->bo) {
1629                 flags = amdgpu_ttm_tt_pte_flags(adev, bo_va->bo->tbo.ttm, mem);
1630                 gtt_flags = (amdgpu_ttm_is_bound(bo_va->bo->tbo.ttm) &&
1631                         adev == amdgpu_ttm_adev(bo_va->bo->tbo.bdev)) ?
1632                         flags : 0;
1633         } else {
1634                 flags = 0x0;
1635                 gtt_flags = ~0x0;
1636         }
1637
1638         spin_lock(&vm->status_lock);
1639         if (!list_empty(&bo_va->vm_status))
1640                 list_splice_init(&bo_va->valids, &bo_va->invalids);
1641         spin_unlock(&vm->status_lock);
1642
1643         list_for_each_entry(mapping, &bo_va->invalids, list) {
1644                 r = amdgpu_vm_bo_split_mapping(adev, exclusive,
1645                                                gtt_flags, pages_addr, vm,
1646                                                mapping, flags, nodes,
1647                                                &bo_va->last_pt_update);
1648                 if (r)
1649                         return r;
1650         }
1651
1652         if (trace_amdgpu_vm_bo_mapping_enabled()) {
1653                 list_for_each_entry(mapping, &bo_va->valids, list)
1654                         trace_amdgpu_vm_bo_mapping(mapping);
1655
1656                 list_for_each_entry(mapping, &bo_va->invalids, list)
1657                         trace_amdgpu_vm_bo_mapping(mapping);
1658         }
1659
1660         spin_lock(&vm->status_lock);
1661         list_splice_init(&bo_va->invalids, &bo_va->valids);
1662         list_del_init(&bo_va->vm_status);
1663         if (clear)
1664                 list_add(&bo_va->vm_status, &vm->cleared);
1665         spin_unlock(&vm->status_lock);
1666
1667         return 0;
1668 }
1669
1670 /**
1671  * amdgpu_vm_update_prt_state - update the global PRT state
1672  */
1673 static void amdgpu_vm_update_prt_state(struct amdgpu_device *adev)
1674 {
1675         unsigned long flags;
1676         bool enable;
1677
1678         spin_lock_irqsave(&adev->vm_manager.prt_lock, flags);
1679         enable = !!atomic_read(&adev->vm_manager.num_prt_users);
1680         adev->gart.gart_funcs->set_prt(adev, enable);
1681         spin_unlock_irqrestore(&adev->vm_manager.prt_lock, flags);
1682 }
1683
1684 /**
1685  * amdgpu_vm_prt_get - add a PRT user
1686  */
1687 static void amdgpu_vm_prt_get(struct amdgpu_device *adev)
1688 {
1689         if (!adev->gart.gart_funcs->set_prt)
1690                 return;
1691
1692         if (atomic_inc_return(&adev->vm_manager.num_prt_users) == 1)
1693                 amdgpu_vm_update_prt_state(adev);
1694 }
1695
1696 /**
1697  * amdgpu_vm_prt_put - drop a PRT user
1698  */
1699 static void amdgpu_vm_prt_put(struct amdgpu_device *adev)
1700 {
1701         if (atomic_dec_return(&adev->vm_manager.num_prt_users) == 0)
1702                 amdgpu_vm_update_prt_state(adev);
1703 }
1704
1705 /**
1706  * amdgpu_vm_prt_cb - callback for updating the PRT status
1707  */
1708 static void amdgpu_vm_prt_cb(struct dma_fence *fence, struct dma_fence_cb *_cb)
1709 {
1710         struct amdgpu_prt_cb *cb = container_of(_cb, struct amdgpu_prt_cb, cb);
1711
1712         amdgpu_vm_prt_put(cb->adev);
1713         kfree(cb);
1714 }
1715
1716 /**
1717  * amdgpu_vm_add_prt_cb - add callback for updating the PRT status
1718  */
1719 static void amdgpu_vm_add_prt_cb(struct amdgpu_device *adev,
1720                                  struct dma_fence *fence)
1721 {
1722         struct amdgpu_prt_cb *cb;
1723
1724         if (!adev->gart.gart_funcs->set_prt)
1725                 return;
1726
1727         cb = kmalloc(sizeof(struct amdgpu_prt_cb), GFP_KERNEL);
1728         if (!cb) {
1729                 /* Last resort when we are OOM */
1730                 if (fence)
1731                         dma_fence_wait(fence, false);
1732
1733                 amdgpu_vm_prt_put(adev);
1734         } else {
1735                 cb->adev = adev;
1736                 if (!fence || dma_fence_add_callback(fence, &cb->cb,
1737                                                      amdgpu_vm_prt_cb))
1738                         amdgpu_vm_prt_cb(fence, &cb->cb);
1739         }
1740 }
1741
1742 /**
1743  * amdgpu_vm_free_mapping - free a mapping
1744  *
1745  * @adev: amdgpu_device pointer
1746  * @vm: requested vm
1747  * @mapping: mapping to be freed
1748  * @fence: fence of the unmap operation
1749  *
1750  * Free a mapping and make sure we decrease the PRT usage count if applicable.
1751  */
1752 static void amdgpu_vm_free_mapping(struct amdgpu_device *adev,
1753                                    struct amdgpu_vm *vm,
1754                                    struct amdgpu_bo_va_mapping *mapping,
1755                                    struct dma_fence *fence)
1756 {
1757         if (mapping->flags & AMDGPU_PTE_PRT)
1758                 amdgpu_vm_add_prt_cb(adev, fence);
1759         kfree(mapping);
1760 }
1761
1762 /**
1763  * amdgpu_vm_prt_fini - finish all prt mappings
1764  *
1765  * @adev: amdgpu_device pointer
1766  * @vm: requested vm
1767  *
1768  * Register a cleanup callback to disable PRT support after VM dies.
1769  */
1770 static void amdgpu_vm_prt_fini(struct amdgpu_device *adev, struct amdgpu_vm *vm)
1771 {
1772         struct reservation_object *resv = vm->root.bo->tbo.resv;
1773         struct dma_fence *excl, **shared;
1774         unsigned i, shared_count;
1775         int r;
1776
1777         r = reservation_object_get_fences_rcu(resv, &excl,
1778                                               &shared_count, &shared);
1779         if (r) {
1780                 /* Not enough memory to grab the fence list, as last resort
1781                  * block for all the fences to complete.
1782                  */
1783                 reservation_object_wait_timeout_rcu(resv, true, false,
1784                                                     MAX_SCHEDULE_TIMEOUT);
1785                 return;
1786         }
1787
1788         /* Add a callback for each fence in the reservation object */
1789         amdgpu_vm_prt_get(adev);
1790         amdgpu_vm_add_prt_cb(adev, excl);
1791
1792         for (i = 0; i < shared_count; ++i) {
1793                 amdgpu_vm_prt_get(adev);
1794                 amdgpu_vm_add_prt_cb(adev, shared[i]);
1795         }
1796
1797         kfree(shared);
1798 }
1799
1800 /**
1801  * amdgpu_vm_clear_freed - clear freed BOs in the PT
1802  *
1803  * @adev: amdgpu_device pointer
1804  * @vm: requested vm
1805  * @fence: optional resulting fence (unchanged if no work needed to be done
1806  * or if an error occurred)
1807  *
1808  * Make sure all freed BOs are cleared in the PT.
1809  * Returns 0 for success.
1810  *
1811  * PTs have to be reserved and mutex must be locked!
1812  */
1813 int amdgpu_vm_clear_freed(struct amdgpu_device *adev,
1814                           struct amdgpu_vm *vm,
1815                           struct dma_fence **fence)
1816 {
1817         struct amdgpu_bo_va_mapping *mapping;
1818         struct dma_fence *f = NULL;
1819         int r;
1820
1821         while (!list_empty(&vm->freed)) {
1822                 mapping = list_first_entry(&vm->freed,
1823                         struct amdgpu_bo_va_mapping, list);
1824                 list_del(&mapping->list);
1825
1826                 r = amdgpu_vm_bo_update_mapping(adev, NULL, 0, NULL, vm,
1827                                                 mapping->start, mapping->last,
1828                                                 0, 0, &f);
1829                 amdgpu_vm_free_mapping(adev, vm, mapping, f);
1830                 if (r) {
1831                         dma_fence_put(f);
1832                         return r;
1833                 }
1834         }
1835
1836         if (fence && f) {
1837                 dma_fence_put(*fence);
1838                 *fence = f;
1839         } else {
1840                 dma_fence_put(f);
1841         }
1842
1843         return 0;
1844
1845 }
1846
1847 /**
1848  * amdgpu_vm_clear_invalids - clear invalidated BOs in the PT
1849  *
1850  * @adev: amdgpu_device pointer
1851  * @vm: requested vm
1852  *
1853  * Make sure all invalidated BOs are cleared in the PT.
1854  * Returns 0 for success.
1855  *
1856  * PTs have to be reserved and mutex must be locked!
1857  */
1858 int amdgpu_vm_clear_invalids(struct amdgpu_device *adev,
1859                              struct amdgpu_vm *vm, struct amdgpu_sync *sync)
1860 {
1861         struct amdgpu_bo_va *bo_va = NULL;
1862         int r = 0;
1863
1864         spin_lock(&vm->status_lock);
1865         while (!list_empty(&vm->invalidated)) {
1866                 bo_va = list_first_entry(&vm->invalidated,
1867                         struct amdgpu_bo_va, vm_status);
1868                 spin_unlock(&vm->status_lock);
1869
1870                 r = amdgpu_vm_bo_update(adev, bo_va, true);
1871                 if (r)
1872                         return r;
1873
1874                 spin_lock(&vm->status_lock);
1875         }
1876         spin_unlock(&vm->status_lock);
1877
1878         if (bo_va)
1879                 r = amdgpu_sync_fence(adev, sync, bo_va->last_pt_update);
1880
1881         return r;
1882 }
1883
1884 /**
1885  * amdgpu_vm_bo_add - add a bo to a specific vm
1886  *
1887  * @adev: amdgpu_device pointer
1888  * @vm: requested vm
1889  * @bo: amdgpu buffer object
1890  *
1891  * Add @bo into the requested vm.
1892  * Add @bo to the list of bos associated with the vm
1893  * Returns newly added bo_va or NULL for failure
1894  *
1895  * Object has to be reserved!
1896  */
1897 struct amdgpu_bo_va *amdgpu_vm_bo_add(struct amdgpu_device *adev,
1898                                       struct amdgpu_vm *vm,
1899                                       struct amdgpu_bo *bo)
1900 {
1901         struct amdgpu_bo_va *bo_va;
1902
1903         bo_va = kzalloc(sizeof(struct amdgpu_bo_va), GFP_KERNEL);
1904         if (bo_va == NULL) {
1905                 return NULL;
1906         }
1907         bo_va->vm = vm;
1908         bo_va->bo = bo;
1909         bo_va->ref_count = 1;
1910         INIT_LIST_HEAD(&bo_va->bo_list);
1911         INIT_LIST_HEAD(&bo_va->valids);
1912         INIT_LIST_HEAD(&bo_va->invalids);
1913         INIT_LIST_HEAD(&bo_va->vm_status);
1914
1915         if (bo)
1916                 list_add_tail(&bo_va->bo_list, &bo->va);
1917
1918         return bo_va;
1919 }
1920
1921 /**
1922  * amdgpu_vm_bo_map - map bo inside a vm
1923  *
1924  * @adev: amdgpu_device pointer
1925  * @bo_va: bo_va to store the address
1926  * @saddr: where to map the BO
1927  * @offset: requested offset in the BO
1928  * @flags: attributes of pages (read/write/valid/etc.)
1929  *
1930  * Add a mapping of the BO at the specefied addr into the VM.
1931  * Returns 0 for success, error for failure.
1932  *
1933  * Object has to be reserved and unreserved outside!
1934  */
1935 int amdgpu_vm_bo_map(struct amdgpu_device *adev,
1936                      struct amdgpu_bo_va *bo_va,
1937                      uint64_t saddr, uint64_t offset,
1938                      uint64_t size, uint64_t flags)
1939 {
1940         struct amdgpu_bo_va_mapping *mapping, *tmp;
1941         struct amdgpu_vm *vm = bo_va->vm;
1942         uint64_t eaddr;
1943
1944         /* validate the parameters */
1945         if (saddr & AMDGPU_GPU_PAGE_MASK || offset & AMDGPU_GPU_PAGE_MASK ||
1946             size == 0 || size & AMDGPU_GPU_PAGE_MASK)
1947                 return -EINVAL;
1948
1949         /* make sure object fit at this offset */
1950         eaddr = saddr + size - 1;
1951         if (saddr >= eaddr ||
1952             (bo_va->bo && offset + size > amdgpu_bo_size(bo_va->bo)))
1953                 return -EINVAL;
1954
1955         saddr /= AMDGPU_GPU_PAGE_SIZE;
1956         eaddr /= AMDGPU_GPU_PAGE_SIZE;
1957
1958         tmp = amdgpu_vm_it_iter_first(&vm->va, saddr, eaddr);
1959         if (tmp) {
1960                 /* bo and tmp overlap, invalid addr */
1961                 dev_err(adev->dev, "bo %p va 0x%010Lx-0x%010Lx conflict with "
1962                         "0x%010Lx-0x%010Lx\n", bo_va->bo, saddr, eaddr,
1963                         tmp->start, tmp->last + 1);
1964                 return -EINVAL;
1965         }
1966
1967         mapping = kmalloc(sizeof(*mapping), GFP_KERNEL);
1968         if (!mapping)
1969                 return -ENOMEM;
1970
1971         INIT_LIST_HEAD(&mapping->list);
1972         mapping->start = saddr;
1973         mapping->last = eaddr;
1974         mapping->offset = offset;
1975         mapping->flags = flags;
1976
1977         list_add(&mapping->list, &bo_va->invalids);
1978         amdgpu_vm_it_insert(mapping, &vm->va);
1979
1980         if (flags & AMDGPU_PTE_PRT)
1981                 amdgpu_vm_prt_get(adev);
1982
1983         return 0;
1984 }
1985
1986 /**
1987  * amdgpu_vm_bo_replace_map - map bo inside a vm, replacing existing mappings
1988  *
1989  * @adev: amdgpu_device pointer
1990  * @bo_va: bo_va to store the address
1991  * @saddr: where to map the BO
1992  * @offset: requested offset in the BO
1993  * @flags: attributes of pages (read/write/valid/etc.)
1994  *
1995  * Add a mapping of the BO at the specefied addr into the VM. Replace existing
1996  * mappings as we do so.
1997  * Returns 0 for success, error for failure.
1998  *
1999  * Object has to be reserved and unreserved outside!
2000  */
2001 int amdgpu_vm_bo_replace_map(struct amdgpu_device *adev,
2002                              struct amdgpu_bo_va *bo_va,
2003                              uint64_t saddr, uint64_t offset,
2004                              uint64_t size, uint64_t flags)
2005 {
2006         struct amdgpu_bo_va_mapping *mapping;
2007         struct amdgpu_vm *vm = bo_va->vm;
2008         uint64_t eaddr;
2009         int r;
2010
2011         /* validate the parameters */
2012         if (saddr & AMDGPU_GPU_PAGE_MASK || offset & AMDGPU_GPU_PAGE_MASK ||
2013             size == 0 || size & AMDGPU_GPU_PAGE_MASK)
2014                 return -EINVAL;
2015
2016         /* make sure object fit at this offset */
2017         eaddr = saddr + size - 1;
2018         if (saddr >= eaddr ||
2019             (bo_va->bo && offset + size > amdgpu_bo_size(bo_va->bo)))
2020                 return -EINVAL;
2021
2022         /* Allocate all the needed memory */
2023         mapping = kmalloc(sizeof(*mapping), GFP_KERNEL);
2024         if (!mapping)
2025                 return -ENOMEM;
2026
2027         r = amdgpu_vm_bo_clear_mappings(adev, bo_va->vm, saddr, size);
2028         if (r) {
2029                 kfree(mapping);
2030                 return r;
2031         }
2032
2033         saddr /= AMDGPU_GPU_PAGE_SIZE;
2034         eaddr /= AMDGPU_GPU_PAGE_SIZE;
2035
2036         mapping->start = saddr;
2037         mapping->last = eaddr;
2038         mapping->offset = offset;
2039         mapping->flags = flags;
2040
2041         list_add(&mapping->list, &bo_va->invalids);
2042         amdgpu_vm_it_insert(mapping, &vm->va);
2043
2044         if (flags & AMDGPU_PTE_PRT)
2045                 amdgpu_vm_prt_get(adev);
2046
2047         return 0;
2048 }
2049
2050 /**
2051  * amdgpu_vm_bo_unmap - remove bo mapping from vm
2052  *
2053  * @adev: amdgpu_device pointer
2054  * @bo_va: bo_va to remove the address from
2055  * @saddr: where to the BO is mapped
2056  *
2057  * Remove a mapping of the BO at the specefied addr from the VM.
2058  * Returns 0 for success, error for failure.
2059  *
2060  * Object has to be reserved and unreserved outside!
2061  */
2062 int amdgpu_vm_bo_unmap(struct amdgpu_device *adev,
2063                        struct amdgpu_bo_va *bo_va,
2064                        uint64_t saddr)
2065 {
2066         struct amdgpu_bo_va_mapping *mapping;
2067         struct amdgpu_vm *vm = bo_va->vm;
2068         bool valid = true;
2069
2070         saddr /= AMDGPU_GPU_PAGE_SIZE;
2071
2072         list_for_each_entry(mapping, &bo_va->valids, list) {
2073                 if (mapping->start == saddr)
2074                         break;
2075         }
2076
2077         if (&mapping->list == &bo_va->valids) {
2078                 valid = false;
2079
2080                 list_for_each_entry(mapping, &bo_va->invalids, list) {
2081                         if (mapping->start == saddr)
2082                                 break;
2083                 }
2084
2085                 if (&mapping->list == &bo_va->invalids)
2086                         return -ENOENT;
2087         }
2088
2089         list_del(&mapping->list);
2090         amdgpu_vm_it_remove(mapping, &vm->va);
2091         trace_amdgpu_vm_bo_unmap(bo_va, mapping);
2092
2093         if (valid)
2094                 list_add(&mapping->list, &vm->freed);
2095         else
2096                 amdgpu_vm_free_mapping(adev, vm, mapping,
2097                                        bo_va->last_pt_update);
2098
2099         return 0;
2100 }
2101
2102 /**
2103  * amdgpu_vm_bo_clear_mappings - remove all mappings in a specific range
2104  *
2105  * @adev: amdgpu_device pointer
2106  * @vm: VM structure to use
2107  * @saddr: start of the range
2108  * @size: size of the range
2109  *
2110  * Remove all mappings in a range, split them as appropriate.
2111  * Returns 0 for success, error for failure.
2112  */
2113 int amdgpu_vm_bo_clear_mappings(struct amdgpu_device *adev,
2114                                 struct amdgpu_vm *vm,
2115                                 uint64_t saddr, uint64_t size)
2116 {
2117         struct amdgpu_bo_va_mapping *before, *after, *tmp, *next;
2118         LIST_HEAD(removed);
2119         uint64_t eaddr;
2120
2121         eaddr = saddr + size - 1;
2122         saddr /= AMDGPU_GPU_PAGE_SIZE;
2123         eaddr /= AMDGPU_GPU_PAGE_SIZE;
2124
2125         /* Allocate all the needed memory */
2126         before = kzalloc(sizeof(*before), GFP_KERNEL);
2127         if (!before)
2128                 return -ENOMEM;
2129         INIT_LIST_HEAD(&before->list);
2130
2131         after = kzalloc(sizeof(*after), GFP_KERNEL);
2132         if (!after) {
2133                 kfree(before);
2134                 return -ENOMEM;
2135         }
2136         INIT_LIST_HEAD(&after->list);
2137
2138         /* Now gather all removed mappings */
2139         tmp = amdgpu_vm_it_iter_first(&vm->va, saddr, eaddr);
2140         while (tmp) {
2141                 /* Remember mapping split at the start */
2142                 if (tmp->start < saddr) {
2143                         before->start = tmp->start;
2144                         before->last = saddr - 1;
2145                         before->offset = tmp->offset;
2146                         before->flags = tmp->flags;
2147                         list_add(&before->list, &tmp->list);
2148                 }
2149
2150                 /* Remember mapping split at the end */
2151                 if (tmp->last > eaddr) {
2152                         after->start = eaddr + 1;
2153                         after->last = tmp->last;
2154                         after->offset = tmp->offset;
2155                         after->offset += after->start - tmp->start;
2156                         after->flags = tmp->flags;
2157                         list_add(&after->list, &tmp->list);
2158                 }
2159
2160                 list_del(&tmp->list);
2161                 list_add(&tmp->list, &removed);
2162
2163                 tmp = amdgpu_vm_it_iter_next(tmp, saddr, eaddr);
2164         }
2165
2166         /* And free them up */
2167         list_for_each_entry_safe(tmp, next, &removed, list) {
2168                 amdgpu_vm_it_remove(tmp, &vm->va);
2169                 list_del(&tmp->list);
2170
2171                 if (tmp->start < saddr)
2172                     tmp->start = saddr;
2173                 if (tmp->last > eaddr)
2174                     tmp->last = eaddr;
2175
2176                 list_add(&tmp->list, &vm->freed);
2177                 trace_amdgpu_vm_bo_unmap(NULL, tmp);
2178         }
2179
2180         /* Insert partial mapping before the range */
2181         if (!list_empty(&before->list)) {
2182                 amdgpu_vm_it_insert(before, &vm->va);
2183                 if (before->flags & AMDGPU_PTE_PRT)
2184                         amdgpu_vm_prt_get(adev);
2185         } else {
2186                 kfree(before);
2187         }
2188
2189         /* Insert partial mapping after the range */
2190         if (!list_empty(&after->list)) {
2191                 amdgpu_vm_it_insert(after, &vm->va);
2192                 if (after->flags & AMDGPU_PTE_PRT)
2193                         amdgpu_vm_prt_get(adev);
2194         } else {
2195                 kfree(after);
2196         }
2197
2198         return 0;
2199 }
2200
2201 /**
2202  * amdgpu_vm_bo_rmv - remove a bo to a specific vm
2203  *
2204  * @adev: amdgpu_device pointer
2205  * @bo_va: requested bo_va
2206  *
2207  * Remove @bo_va->bo from the requested vm.
2208  *
2209  * Object have to be reserved!
2210  */
2211 void amdgpu_vm_bo_rmv(struct amdgpu_device *adev,
2212                       struct amdgpu_bo_va *bo_va)
2213 {
2214         struct amdgpu_bo_va_mapping *mapping, *next;
2215         struct amdgpu_vm *vm = bo_va->vm;
2216
2217         list_del(&bo_va->bo_list);
2218
2219         spin_lock(&vm->status_lock);
2220         list_del(&bo_va->vm_status);
2221         spin_unlock(&vm->status_lock);
2222
2223         list_for_each_entry_safe(mapping, next, &bo_va->valids, list) {
2224                 list_del(&mapping->list);
2225                 amdgpu_vm_it_remove(mapping, &vm->va);
2226                 trace_amdgpu_vm_bo_unmap(bo_va, mapping);
2227                 list_add(&mapping->list, &vm->freed);
2228         }
2229         list_for_each_entry_safe(mapping, next, &bo_va->invalids, list) {
2230                 list_del(&mapping->list);
2231                 amdgpu_vm_it_remove(mapping, &vm->va);
2232                 amdgpu_vm_free_mapping(adev, vm, mapping,
2233                                        bo_va->last_pt_update);
2234         }
2235
2236         dma_fence_put(bo_va->last_pt_update);
2237         kfree(bo_va);
2238 }
2239
2240 /**
2241  * amdgpu_vm_bo_invalidate - mark the bo as invalid
2242  *
2243  * @adev: amdgpu_device pointer
2244  * @vm: requested vm
2245  * @bo: amdgpu buffer object
2246  *
2247  * Mark @bo as invalid.
2248  */
2249 void amdgpu_vm_bo_invalidate(struct amdgpu_device *adev,
2250                              struct amdgpu_bo *bo)
2251 {
2252         struct amdgpu_bo_va *bo_va;
2253
2254         list_for_each_entry(bo_va, &bo->va, bo_list) {
2255                 spin_lock(&bo_va->vm->status_lock);
2256                 if (list_empty(&bo_va->vm_status))
2257                         list_add(&bo_va->vm_status, &bo_va->vm->invalidated);
2258                 spin_unlock(&bo_va->vm->status_lock);
2259         }
2260 }
2261
2262 static uint32_t amdgpu_vm_get_block_size(uint64_t vm_size)
2263 {
2264         /* Total bits covered by PD + PTs */
2265         unsigned bits = ilog2(vm_size) + 18;
2266
2267         /* Make sure the PD is 4K in size up to 8GB address space.
2268            Above that split equal between PD and PTs */
2269         if (vm_size <= 8)
2270                 return (bits - 9);
2271         else
2272                 return ((bits + 3) / 2);
2273 }
2274
2275 /**
2276  * amdgpu_vm_adjust_size - adjust vm size and block size
2277  *
2278  * @adev: amdgpu_device pointer
2279  * @vm_size: the default vm size if it's set auto
2280  */
2281 void amdgpu_vm_adjust_size(struct amdgpu_device *adev, uint64_t vm_size)
2282 {
2283         /* adjust vm size firstly */
2284         if (amdgpu_vm_size == -1)
2285                 adev->vm_manager.vm_size = vm_size;
2286         else
2287                 adev->vm_manager.vm_size = amdgpu_vm_size;
2288
2289         /* block size depends on vm size */
2290         if (amdgpu_vm_block_size == -1)
2291                 adev->vm_manager.block_size =
2292                         amdgpu_vm_get_block_size(adev->vm_manager.vm_size);
2293         else
2294                 adev->vm_manager.block_size = amdgpu_vm_block_size;
2295
2296         DRM_INFO("vm size is %llu GB, block size is %u-bit\n",
2297                 adev->vm_manager.vm_size, adev->vm_manager.block_size);
2298 }
2299
2300 /**
2301  * amdgpu_vm_init - initialize a vm instance
2302  *
2303  * @adev: amdgpu_device pointer
2304  * @vm: requested vm
2305  *
2306  * Init @vm fields.
2307  */
2308 int amdgpu_vm_init(struct amdgpu_device *adev, struct amdgpu_vm *vm)
2309 {
2310         const unsigned align = min(AMDGPU_VM_PTB_ALIGN_SIZE,
2311                 AMDGPU_VM_PTE_COUNT(adev) * 8);
2312         unsigned ring_instance;
2313         struct amdgpu_ring *ring;
2314         struct amd_sched_rq *rq;
2315         int r, i;
2316
2317         vm->va = RB_ROOT;
2318         vm->client_id = atomic64_inc_return(&adev->vm_manager.client_counter);
2319         for (i = 0; i < AMDGPU_MAX_VMHUBS; i++)
2320                 vm->reserved_vmid[i] = NULL;
2321         spin_lock_init(&vm->status_lock);
2322         INIT_LIST_HEAD(&vm->invalidated);
2323         INIT_LIST_HEAD(&vm->cleared);
2324         INIT_LIST_HEAD(&vm->freed);
2325
2326         /* create scheduler entity for page table updates */
2327
2328         ring_instance = atomic_inc_return(&adev->vm_manager.vm_pte_next_ring);
2329         ring_instance %= adev->vm_manager.vm_pte_num_rings;
2330         ring = adev->vm_manager.vm_pte_rings[ring_instance];
2331         rq = &ring->sched.sched_rq[AMD_SCHED_PRIORITY_KERNEL];
2332         r = amd_sched_entity_init(&ring->sched, &vm->entity,
2333                                   rq, amdgpu_sched_jobs);
2334         if (r)
2335                 return r;
2336
2337         vm->last_dir_update = NULL;
2338
2339         r = amdgpu_bo_create(adev, amdgpu_vm_bo_size(adev, 0), align, true,
2340                              AMDGPU_GEM_DOMAIN_VRAM,
2341                              AMDGPU_GEM_CREATE_NO_CPU_ACCESS |
2342                              AMDGPU_GEM_CREATE_SHADOW |
2343                              AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS |
2344                              AMDGPU_GEM_CREATE_VRAM_CLEARED,
2345                              NULL, NULL, &vm->root.bo);
2346         if (r)
2347                 goto error_free_sched_entity;
2348
2349         r = amdgpu_bo_reserve(vm->root.bo, false);
2350         if (r)
2351                 goto error_free_root;
2352
2353         vm->last_eviction_counter = atomic64_read(&adev->num_evictions);
2354         amdgpu_bo_unreserve(vm->root.bo);
2355
2356         return 0;
2357
2358 error_free_root:
2359         amdgpu_bo_unref(&vm->root.bo->shadow);
2360         amdgpu_bo_unref(&vm->root.bo);
2361         vm->root.bo = NULL;
2362
2363 error_free_sched_entity:
2364         amd_sched_entity_fini(&ring->sched, &vm->entity);
2365
2366         return r;
2367 }
2368
2369 /**
2370  * amdgpu_vm_free_levels - free PD/PT levels
2371  *
2372  * @level: PD/PT starting level to free
2373  *
2374  * Free the page directory or page table level and all sub levels.
2375  */
2376 static void amdgpu_vm_free_levels(struct amdgpu_vm_pt *level)
2377 {
2378         unsigned i;
2379
2380         if (level->bo) {
2381                 amdgpu_bo_unref(&level->bo->shadow);
2382                 amdgpu_bo_unref(&level->bo);
2383         }
2384
2385         if (level->entries)
2386                 for (i = 0; i <= level->last_entry_used; i++)
2387                         amdgpu_vm_free_levels(&level->entries[i]);
2388
2389         drm_free_large(level->entries);
2390 }
2391
2392 /**
2393  * amdgpu_vm_fini - tear down a vm instance
2394  *
2395  * @adev: amdgpu_device pointer
2396  * @vm: requested vm
2397  *
2398  * Tear down @vm.
2399  * Unbind the VM and remove all bos from the vm bo list
2400  */
2401 void amdgpu_vm_fini(struct amdgpu_device *adev, struct amdgpu_vm *vm)
2402 {
2403         struct amdgpu_bo_va_mapping *mapping, *tmp;
2404         bool prt_fini_needed = !!adev->gart.gart_funcs->set_prt;
2405         int i;
2406
2407         amd_sched_entity_fini(vm->entity.sched, &vm->entity);
2408
2409         if (!RB_EMPTY_ROOT(&vm->va)) {
2410                 dev_err(adev->dev, "still active bo inside vm\n");
2411         }
2412         rbtree_postorder_for_each_entry_safe(mapping, tmp, &vm->va, rb) {
2413                 list_del(&mapping->list);
2414                 amdgpu_vm_it_remove(mapping, &vm->va);
2415                 kfree(mapping);
2416         }
2417         list_for_each_entry_safe(mapping, tmp, &vm->freed, list) {
2418                 if (mapping->flags & AMDGPU_PTE_PRT && prt_fini_needed) {
2419                         amdgpu_vm_prt_fini(adev, vm);
2420                         prt_fini_needed = false;
2421                 }
2422
2423                 list_del(&mapping->list);
2424                 amdgpu_vm_free_mapping(adev, vm, mapping, NULL);
2425         }
2426
2427         amdgpu_vm_free_levels(&vm->root);
2428         dma_fence_put(vm->last_dir_update);
2429         for (i = 0; i < AMDGPU_MAX_VMHUBS; i++)
2430                 amdgpu_vm_free_reserved_vmid(adev, vm, i);
2431 }
2432
2433 /**
2434  * amdgpu_vm_manager_init - init the VM manager
2435  *
2436  * @adev: amdgpu_device pointer
2437  *
2438  * Initialize the VM manager structures
2439  */
2440 void amdgpu_vm_manager_init(struct amdgpu_device *adev)
2441 {
2442         unsigned i, j;
2443
2444         for (i = 0; i < AMDGPU_MAX_VMHUBS; ++i) {
2445                 struct amdgpu_vm_id_manager *id_mgr =
2446                         &adev->vm_manager.id_mgr[i];
2447
2448                 mutex_init(&id_mgr->lock);
2449                 INIT_LIST_HEAD(&id_mgr->ids_lru);
2450                 atomic_set(&id_mgr->reserved_vmid_num, 0);
2451
2452                 /* skip over VMID 0, since it is the system VM */
2453                 for (j = 1; j < id_mgr->num_ids; ++j) {
2454                         amdgpu_vm_reset_id(adev, i, j);
2455                         amdgpu_sync_create(&id_mgr->ids[i].active);
2456                         list_add_tail(&id_mgr->ids[j].list, &id_mgr->ids_lru);
2457                 }
2458         }
2459
2460         adev->vm_manager.fence_context =
2461                 dma_fence_context_alloc(AMDGPU_MAX_RINGS);
2462         for (i = 0; i < AMDGPU_MAX_RINGS; ++i)
2463                 adev->vm_manager.seqno[i] = 0;
2464
2465         atomic_set(&adev->vm_manager.vm_pte_next_ring, 0);
2466         atomic64_set(&adev->vm_manager.client_counter, 0);
2467         spin_lock_init(&adev->vm_manager.prt_lock);
2468         atomic_set(&adev->vm_manager.num_prt_users, 0);
2469 }
2470
2471 /**
2472  * amdgpu_vm_manager_fini - cleanup VM manager
2473  *
2474  * @adev: amdgpu_device pointer
2475  *
2476  * Cleanup the VM manager and free resources.
2477  */
2478 void amdgpu_vm_manager_fini(struct amdgpu_device *adev)
2479 {
2480         unsigned i, j;
2481
2482         for (i = 0; i < AMDGPU_MAX_VMHUBS; ++i) {
2483                 struct amdgpu_vm_id_manager *id_mgr =
2484                         &adev->vm_manager.id_mgr[i];
2485
2486                 mutex_destroy(&id_mgr->lock);
2487                 for (j = 0; j < AMDGPU_NUM_VM; ++j) {
2488                         struct amdgpu_vm_id *id = &id_mgr->ids[j];
2489
2490                         amdgpu_sync_free(&id->active);
2491                         dma_fence_put(id->flushed_updates);
2492                         dma_fence_put(id->last_flush);
2493                 }
2494         }
2495 }
2496
2497 int amdgpu_vm_ioctl(struct drm_device *dev, void *data, struct drm_file *filp)
2498 {
2499         union drm_amdgpu_vm *args = data;
2500         struct amdgpu_device *adev = dev->dev_private;
2501         struct amdgpu_fpriv *fpriv = filp->driver_priv;
2502         int r;
2503
2504         switch (args->in.op) {
2505         case AMDGPU_VM_OP_RESERVE_VMID:
2506                 /* current, we only have requirement to reserve vmid from gfxhub */
2507                 r = amdgpu_vm_alloc_reserved_vmid(adev, &fpriv->vm,
2508                                                   AMDGPU_GFXHUB);
2509                 if (r)
2510                         return r;
2511                 break;
2512         case AMDGPU_VM_OP_UNRESERVE_VMID:
2513                 amdgpu_vm_free_reserved_vmid(adev, &fpriv->vm, AMDGPU_GFXHUB);
2514                 break;
2515         default:
2516                 return -EINVAL;
2517         }
2518
2519         return 0;
2520 }