blob: 088c8504dbe7906ae84e78ec0eae69a9937847cf [file] [log] [blame]
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001/*
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 */
Chris Wilsonf54d1862016-10-25 13:00:45 +010028#include <linux/dma-fence-array.h>
Christian Königa9f87f62017-03-30 14:03:59 +020029#include <linux/interval_tree_generic.h>
Alex Deucherd38ceaf2015-04-20 16:55:21 -040030#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
Christian Königa9f87f62017-03-30 14:03:59 +020055#define START(node) ((node)->start)
56#define LAST(node) ((node)->last)
57
58INTERVAL_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
Harish Kasiviswanathanf4833c42016-04-21 10:40:18 -040064/* Local structure. Encapsulate some VM table update parameters to reduce
65 * the number of function parameters
66 */
Christian König29efc4f2016-08-04 14:52:50 +020067struct amdgpu_pte_update_params {
Christian König27c5f362016-08-04 15:02:49 +020068 /* amdgpu device we do this update for */
69 struct amdgpu_device *adev;
Christian König49ac8a22016-10-13 15:09:08 +020070 /* optional amdgpu_vm we do this update for */
71 struct amdgpu_vm *vm;
Harish Kasiviswanathanf4833c42016-04-21 10:40:18 -040072 /* address where to copy page table entries from */
73 uint64_t src;
Harish Kasiviswanathanf4833c42016-04-21 10:40:18 -040074 /* indirect buffer to fill with commands */
75 struct amdgpu_ib *ib;
Christian Königafef8b82016-08-12 13:29:18 +020076 /* 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,
Chunming Zhou6b777602016-09-21 16:19:19 +080079 uint64_t flags);
Harish Kasiviswanathanb4d42512017-05-11 19:47:22 -040080 /* The next two are used during VM update by CPU
81 * DMA addresses to use for mapping
82 * Kernel pointer of PD/PT BO that needs to be updated
83 */
84 dma_addr_t *pages_addr;
85 void *kptr;
Harish Kasiviswanathanf4833c42016-04-21 10:40:18 -040086};
87
Christian König284710f2017-01-30 11:09:31 +010088/* Helper to disable partial resident texture feature from a fence callback */
89struct amdgpu_prt_cb {
90 struct amdgpu_device *adev;
91 struct dma_fence_cb cb;
92};
93
Alex Deucherd38ceaf2015-04-20 16:55:21 -040094/**
Christian König72a7ec52016-10-19 11:03:57 +020095 * amdgpu_vm_num_entries - return the number of entries in a PD/PT
Alex Deucherd38ceaf2015-04-20 16:55:21 -040096 *
97 * @adev: amdgpu_device pointer
98 *
Christian König72a7ec52016-10-19 11:03:57 +020099 * Calculate the number of entries in a page directory or page table.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400100 */
Christian König72a7ec52016-10-19 11:03:57 +0200101static unsigned amdgpu_vm_num_entries(struct amdgpu_device *adev,
102 unsigned level)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400103{
Christian König72a7ec52016-10-19 11:03:57 +0200104 if (level == 0)
105 /* For the root directory */
106 return adev->vm_manager.max_pfn >>
Zhang, Jerry36b32a62017-03-29 16:08:32 +0800107 (adev->vm_manager.block_size *
108 adev->vm_manager.num_level);
Christian König72a7ec52016-10-19 11:03:57 +0200109 else if (level == adev->vm_manager.num_level)
110 /* For the page tables on the leaves */
Zhang, Jerry36b32a62017-03-29 16:08:32 +0800111 return AMDGPU_VM_PTE_COUNT(adev);
Christian König72a7ec52016-10-19 11:03:57 +0200112 else
113 /* Everything in between */
Zhang, Jerry36b32a62017-03-29 16:08:32 +0800114 return 1 << adev->vm_manager.block_size;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400115}
116
117/**
Christian König72a7ec52016-10-19 11:03:57 +0200118 * amdgpu_vm_bo_size - returns the size of the BOs in bytes
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400119 *
120 * @adev: amdgpu_device pointer
121 *
Christian König72a7ec52016-10-19 11:03:57 +0200122 * Calculate the size of the BO for a page directory or page table in bytes.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400123 */
Christian König72a7ec52016-10-19 11:03:57 +0200124static unsigned amdgpu_vm_bo_size(struct amdgpu_device *adev, unsigned level)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400125{
Christian König72a7ec52016-10-19 11:03:57 +0200126 return AMDGPU_GPU_PAGE_ALIGN(amdgpu_vm_num_entries(adev, level) * 8);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400127}
128
129/**
Christian König56467eb2015-12-11 15:16:32 +0100130 * amdgpu_vm_get_pd_bo - add the VM PD to a validation list
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400131 *
132 * @vm: vm providing the BOs
Christian König3c0eea62015-12-11 14:39:05 +0100133 * @validated: head of validation list
Christian König56467eb2015-12-11 15:16:32 +0100134 * @entry: entry to add
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400135 *
136 * Add the page directory to the list of BOs to
Christian König56467eb2015-12-11 15:16:32 +0100137 * validate for command submission.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400138 */
Christian König56467eb2015-12-11 15:16:32 +0100139void amdgpu_vm_get_pd_bo(struct amdgpu_vm *vm,
140 struct list_head *validated,
141 struct amdgpu_bo_list_entry *entry)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400142{
Christian König67003a12016-10-12 14:46:26 +0200143 entry->robj = vm->root.bo;
Christian König56467eb2015-12-11 15:16:32 +0100144 entry->priority = 0;
Christian König67003a12016-10-12 14:46:26 +0200145 entry->tv.bo = &entry->robj->tbo;
Christian König56467eb2015-12-11 15:16:32 +0100146 entry->tv.shared = true;
Christian König2f568db2016-02-23 12:36:59 +0100147 entry->user_pages = NULL;
Christian König56467eb2015-12-11 15:16:32 +0100148 list_add(&entry->tv.head, validated);
149}
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400150
Christian König56467eb2015-12-11 15:16:32 +0100151/**
Christian König670fecc2016-10-12 15:36:57 +0200152 * amdgpu_vm_validate_layer - validate a single page table level
153 *
154 * @parent: parent page table level
155 * @validate: callback to do the validation
156 * @param: parameter for the validation callback
157 *
158 * Validate the page table BOs on command submission if neccessary.
159 */
160static int amdgpu_vm_validate_level(struct amdgpu_vm_pt *parent,
161 int (*validate)(void *, struct amdgpu_bo *),
Christian König0a096fb2017-07-12 10:01:48 +0200162 void *param, bool use_cpu_for_update)
Christian König670fecc2016-10-12 15:36:57 +0200163{
164 unsigned i;
165 int r;
166
Christian König0a096fb2017-07-12 10:01:48 +0200167 if (use_cpu_for_update) {
168 r = amdgpu_bo_kmap(parent->bo, NULL);
169 if (r)
170 return r;
171 }
172
Christian König670fecc2016-10-12 15:36:57 +0200173 if (!parent->entries)
174 return 0;
175
176 for (i = 0; i <= parent->last_entry_used; ++i) {
177 struct amdgpu_vm_pt *entry = &parent->entries[i];
178
179 if (!entry->bo)
180 continue;
181
182 r = validate(param, entry->bo);
183 if (r)
184 return r;
185
186 /*
187 * Recurse into the sub directory. This is harmless because we
188 * have only a maximum of 5 layers.
189 */
Christian König0a096fb2017-07-12 10:01:48 +0200190 r = amdgpu_vm_validate_level(entry, validate, param,
191 use_cpu_for_update);
Christian König670fecc2016-10-12 15:36:57 +0200192 if (r)
193 return r;
194 }
195
196 return r;
197}
198
199/**
Christian Königf7da30d2016-09-28 12:03:04 +0200200 * amdgpu_vm_validate_pt_bos - validate the page table BOs
Christian König56467eb2015-12-11 15:16:32 +0100201 *
Christian König5a712a82016-06-21 16:28:15 +0200202 * @adev: amdgpu device pointer
Christian König56467eb2015-12-11 15:16:32 +0100203 * @vm: vm providing the BOs
Christian Königf7da30d2016-09-28 12:03:04 +0200204 * @validate: callback to do the validation
205 * @param: parameter for the validation callback
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400206 *
Christian Königf7da30d2016-09-28 12:03:04 +0200207 * Validate the page table BOs on command submission if neccessary.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400208 */
Christian Königf7da30d2016-09-28 12:03:04 +0200209int amdgpu_vm_validate_pt_bos(struct amdgpu_device *adev, struct amdgpu_vm *vm,
210 int (*validate)(void *p, struct amdgpu_bo *bo),
211 void *param)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400212{
Christian König5a712a82016-06-21 16:28:15 +0200213 uint64_t num_evictions;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400214
Christian König5a712a82016-06-21 16:28:15 +0200215 /* We only need to validate the page tables
216 * if they aren't already valid.
217 */
218 num_evictions = atomic64_read(&adev->num_evictions);
219 if (num_evictions == vm->last_eviction_counter)
Christian Königf7da30d2016-09-28 12:03:04 +0200220 return 0;
Christian König5a712a82016-06-21 16:28:15 +0200221
Christian König0a096fb2017-07-12 10:01:48 +0200222 return amdgpu_vm_validate_level(&vm->root, validate, param,
223 vm->use_cpu_for_update);
Christian Königeceb8a12016-01-11 15:35:21 +0100224}
225
226/**
Christian Königd711e132016-10-13 10:20:53 +0200227 * amdgpu_vm_move_level_in_lru - move one level of PT BOs to the LRU tail
228 *
229 * @adev: amdgpu device instance
230 * @vm: vm providing the BOs
231 *
232 * Move the PT BOs to the tail of the LRU.
233 */
234static void amdgpu_vm_move_level_in_lru(struct amdgpu_vm_pt *parent)
235{
236 unsigned i;
237
238 if (!parent->entries)
239 return;
240
241 for (i = 0; i <= parent->last_entry_used; ++i) {
242 struct amdgpu_vm_pt *entry = &parent->entries[i];
243
244 if (!entry->bo)
245 continue;
246
247 ttm_bo_move_to_lru_tail(&entry->bo->tbo);
248 amdgpu_vm_move_level_in_lru(entry);
249 }
250}
251
252/**
Christian Königeceb8a12016-01-11 15:35:21 +0100253 * amdgpu_vm_move_pt_bos_in_lru - move the PT BOs to the LRU tail
254 *
255 * @adev: amdgpu device instance
256 * @vm: vm providing the BOs
257 *
258 * Move the PT BOs to the tail of the LRU.
259 */
260void amdgpu_vm_move_pt_bos_in_lru(struct amdgpu_device *adev,
261 struct amdgpu_vm *vm)
262{
263 struct ttm_bo_global *glob = adev->mman.bdev.glob;
Christian Königeceb8a12016-01-11 15:35:21 +0100264
265 spin_lock(&glob->lru_lock);
Christian Königd711e132016-10-13 10:20:53 +0200266 amdgpu_vm_move_level_in_lru(&vm->root);
Christian Königeceb8a12016-01-11 15:35:21 +0100267 spin_unlock(&glob->lru_lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400268}
269
Christian Königf566ceb2016-10-27 20:04:38 +0200270 /**
271 * amdgpu_vm_alloc_levels - allocate the PD/PT levels
272 *
273 * @adev: amdgpu_device pointer
274 * @vm: requested vm
275 * @saddr: start of the address range
276 * @eaddr: end of the address range
277 *
278 * Make sure the page directories and page tables are allocated
279 */
280static int amdgpu_vm_alloc_levels(struct amdgpu_device *adev,
281 struct amdgpu_vm *vm,
282 struct amdgpu_vm_pt *parent,
283 uint64_t saddr, uint64_t eaddr,
284 unsigned level)
285{
286 unsigned shift = (adev->vm_manager.num_level - level) *
Zhang, Jerry36b32a62017-03-29 16:08:32 +0800287 adev->vm_manager.block_size;
Christian Königf566ceb2016-10-27 20:04:38 +0200288 unsigned pt_idx, from, to;
289 int r;
Harish Kasiviswanathan3c824172017-05-11 15:50:08 -0400290 u64 flags;
Christian Königf566ceb2016-10-27 20:04:38 +0200291
292 if (!parent->entries) {
293 unsigned num_entries = amdgpu_vm_num_entries(adev, level);
294
Michal Hocko20981052017-05-17 14:23:12 +0200295 parent->entries = kvmalloc_array(num_entries,
296 sizeof(struct amdgpu_vm_pt),
297 GFP_KERNEL | __GFP_ZERO);
Christian Königf566ceb2016-10-27 20:04:38 +0200298 if (!parent->entries)
299 return -ENOMEM;
300 memset(parent->entries, 0 , sizeof(struct amdgpu_vm_pt));
301 }
302
Felix Kuehling1866bac2017-03-28 20:36:12 -0400303 from = saddr >> shift;
304 to = eaddr >> shift;
305 if (from >= amdgpu_vm_num_entries(adev, level) ||
306 to >= amdgpu_vm_num_entries(adev, level))
307 return -EINVAL;
Christian Königf566ceb2016-10-27 20:04:38 +0200308
309 if (to > parent->last_entry_used)
310 parent->last_entry_used = to;
311
312 ++level;
Felix Kuehling1866bac2017-03-28 20:36:12 -0400313 saddr = saddr & ((1 << shift) - 1);
314 eaddr = eaddr & ((1 << shift) - 1);
Christian Königf566ceb2016-10-27 20:04:38 +0200315
Harish Kasiviswanathan3c824172017-05-11 15:50:08 -0400316 flags = AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS |
317 AMDGPU_GEM_CREATE_VRAM_CLEARED;
318 if (vm->use_cpu_for_update)
319 flags |= AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED;
320 else
321 flags |= (AMDGPU_GEM_CREATE_NO_CPU_ACCESS |
322 AMDGPU_GEM_CREATE_SHADOW);
323
Christian Königf566ceb2016-10-27 20:04:38 +0200324 /* walk over the address space and allocate the page tables */
325 for (pt_idx = from; pt_idx <= to; ++pt_idx) {
326 struct reservation_object *resv = vm->root.bo->tbo.resv;
327 struct amdgpu_vm_pt *entry = &parent->entries[pt_idx];
328 struct amdgpu_bo *pt;
329
330 if (!entry->bo) {
331 r = amdgpu_bo_create(adev,
332 amdgpu_vm_bo_size(adev, level),
333 AMDGPU_GPU_PAGE_SIZE, true,
334 AMDGPU_GEM_DOMAIN_VRAM,
Harish Kasiviswanathan3c824172017-05-11 15:50:08 -0400335 flags,
Christian Königf566ceb2016-10-27 20:04:38 +0200336 NULL, resv, &pt);
337 if (r)
338 return r;
339
Christian König0a096fb2017-07-12 10:01:48 +0200340 if (vm->use_cpu_for_update) {
341 r = amdgpu_bo_kmap(pt, NULL);
342 if (r) {
343 amdgpu_bo_unref(&pt);
344 return r;
345 }
346 }
347
Christian Königf566ceb2016-10-27 20:04:38 +0200348 /* Keep a reference to the root directory to avoid
349 * freeing them up in the wrong order.
350 */
351 pt->parent = amdgpu_bo_ref(vm->root.bo);
352
353 entry->bo = pt;
354 entry->addr = 0;
355 }
356
357 if (level < adev->vm_manager.num_level) {
Felix Kuehling1866bac2017-03-28 20:36:12 -0400358 uint64_t sub_saddr = (pt_idx == from) ? saddr : 0;
359 uint64_t sub_eaddr = (pt_idx == to) ? eaddr :
360 ((1 << shift) - 1);
361 r = amdgpu_vm_alloc_levels(adev, vm, entry, sub_saddr,
362 sub_eaddr, level);
Christian Königf566ceb2016-10-27 20:04:38 +0200363 if (r)
364 return r;
365 }
366 }
367
368 return 0;
369}
370
Christian König663e4572017-03-13 10:13:37 +0100371/**
372 * amdgpu_vm_alloc_pts - Allocate page tables.
373 *
374 * @adev: amdgpu_device pointer
375 * @vm: VM to allocate page tables for
376 * @saddr: Start address which needs to be allocated
377 * @size: Size from start address we need.
378 *
379 * Make sure the page tables are allocated.
380 */
381int amdgpu_vm_alloc_pts(struct amdgpu_device *adev,
382 struct amdgpu_vm *vm,
383 uint64_t saddr, uint64_t size)
384{
Felix Kuehling22770e52017-03-28 20:24:53 -0400385 uint64_t last_pfn;
Christian König663e4572017-03-13 10:13:37 +0100386 uint64_t eaddr;
Christian König663e4572017-03-13 10:13:37 +0100387
388 /* validate the parameters */
389 if (saddr & AMDGPU_GPU_PAGE_MASK || size & AMDGPU_GPU_PAGE_MASK)
390 return -EINVAL;
391
392 eaddr = saddr + size - 1;
393 last_pfn = eaddr / AMDGPU_GPU_PAGE_SIZE;
394 if (last_pfn >= adev->vm_manager.max_pfn) {
Felix Kuehling22770e52017-03-28 20:24:53 -0400395 dev_err(adev->dev, "va above limit (0x%08llX >= 0x%08llX)\n",
Christian König663e4572017-03-13 10:13:37 +0100396 last_pfn, adev->vm_manager.max_pfn);
397 return -EINVAL;
398 }
399
400 saddr /= AMDGPU_GPU_PAGE_SIZE;
401 eaddr /= AMDGPU_GPU_PAGE_SIZE;
402
Christian Königf566ceb2016-10-27 20:04:38 +0200403 return amdgpu_vm_alloc_levels(adev, vm, &vm->root, saddr, eaddr, 0);
Christian König663e4572017-03-13 10:13:37 +0100404}
405
Christian König641e9402017-04-03 13:59:25 +0200406/**
407 * amdgpu_vm_had_gpu_reset - check if reset occured since last use
408 *
409 * @adev: amdgpu_device pointer
410 * @id: VMID structure
411 *
412 * Check if GPU reset occured since last use of the VMID.
413 */
414static bool amdgpu_vm_had_gpu_reset(struct amdgpu_device *adev,
415 struct amdgpu_vm_id *id)
Chunming Zhou192b7dc2016-06-29 14:01:15 +0800416{
417 return id->current_gpu_reset_count !=
Christian König641e9402017-04-03 13:59:25 +0200418 atomic_read(&adev->gpu_reset_counter);
Chunming Zhou192b7dc2016-06-29 14:01:15 +0800419}
420
Chunming Zhou7a63eb22017-04-21 11:13:56 +0800421static bool amdgpu_vm_reserved_vmid_ready(struct amdgpu_vm *vm, unsigned vmhub)
422{
423 return !!vm->reserved_vmid[vmhub];
424}
425
426/* idr_mgr->lock must be held */
427static int amdgpu_vm_grab_reserved_vmid_locked(struct amdgpu_vm *vm,
428 struct amdgpu_ring *ring,
429 struct amdgpu_sync *sync,
430 struct dma_fence *fence,
431 struct amdgpu_job *job)
432{
433 struct amdgpu_device *adev = ring->adev;
434 unsigned vmhub = ring->funcs->vmhub;
435 uint64_t fence_context = adev->fence_context + ring->idx;
436 struct amdgpu_vm_id *id = vm->reserved_vmid[vmhub];
437 struct amdgpu_vm_id_manager *id_mgr = &adev->vm_manager.id_mgr[vmhub];
438 struct dma_fence *updates = sync->last_vm_update;
439 int r = 0;
440 struct dma_fence *flushed, *tmp;
Christian König6f1ceab2017-07-11 16:59:21 +0200441 bool needs_flush = vm->use_cpu_for_update;
Chunming Zhou7a63eb22017-04-21 11:13:56 +0800442
443 flushed = id->flushed_updates;
444 if ((amdgpu_vm_had_gpu_reset(adev, id)) ||
445 (atomic64_read(&id->owner) != vm->client_id) ||
446 (job->vm_pd_addr != id->pd_gpu_addr) ||
447 (updates && (!flushed || updates->context != flushed->context ||
448 dma_fence_is_later(updates, flushed))) ||
449 (!id->last_flush || (id->last_flush->context != fence_context &&
450 !dma_fence_is_signaled(id->last_flush)))) {
451 needs_flush = true;
452 /* to prevent one context starved by another context */
453 id->pd_gpu_addr = 0;
454 tmp = amdgpu_sync_peek_fence(&id->active, ring);
455 if (tmp) {
456 r = amdgpu_sync_fence(adev, sync, tmp);
457 return r;
458 }
459 }
460
461 /* Good we can use this VMID. Remember this submission as
462 * user of the VMID.
463 */
464 r = amdgpu_sync_fence(ring->adev, &id->active, fence);
465 if (r)
466 goto out;
467
468 if (updates && (!flushed || updates->context != flushed->context ||
469 dma_fence_is_later(updates, flushed))) {
470 dma_fence_put(id->flushed_updates);
471 id->flushed_updates = dma_fence_get(updates);
472 }
473 id->pd_gpu_addr = job->vm_pd_addr;
Chunming Zhou7a63eb22017-04-21 11:13:56 +0800474 atomic64_set(&id->owner, vm->client_id);
475 job->vm_needs_flush = needs_flush;
476 if (needs_flush) {
477 dma_fence_put(id->last_flush);
478 id->last_flush = NULL;
479 }
480 job->vm_id = id - id_mgr->ids;
481 trace_amdgpu_vm_grab_id(vm, ring, job);
482out:
483 return r;
484}
485
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400486/**
487 * amdgpu_vm_grab_id - allocate the next free VMID
488 *
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400489 * @vm: vm to allocate id for
Christian König7f8a5292015-07-20 16:09:40 +0200490 * @ring: ring we want to submit job to
491 * @sync: sync object where we add dependencies
Christian König94dd0a42016-01-18 17:01:42 +0100492 * @fence: fence protecting ID from reuse
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400493 *
Christian König7f8a5292015-07-20 16:09:40 +0200494 * Allocate an id for the vm, adding fences to the sync obj as necessary.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400495 */
Christian König7f8a5292015-07-20 16:09:40 +0200496int amdgpu_vm_grab_id(struct amdgpu_vm *vm, struct amdgpu_ring *ring,
Chris Wilsonf54d1862016-10-25 13:00:45 +0100497 struct amdgpu_sync *sync, struct dma_fence *fence,
Chunming Zhoufd53be32016-07-01 17:59:01 +0800498 struct amdgpu_job *job)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400499{
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400500 struct amdgpu_device *adev = ring->adev;
Christian König2e819842017-03-30 16:50:47 +0200501 unsigned vmhub = ring->funcs->vmhub;
Christian König76456702017-04-06 17:52:39 +0200502 struct amdgpu_vm_id_manager *id_mgr = &adev->vm_manager.id_mgr[vmhub];
Christian König090b7672016-07-08 10:21:02 +0200503 uint64_t fence_context = adev->fence_context + ring->idx;
Chris Wilsonf54d1862016-10-25 13:00:45 +0100504 struct dma_fence *updates = sync->last_vm_update;
Christian König8d76001e2016-05-23 16:00:32 +0200505 struct amdgpu_vm_id *id, *idle;
Chris Wilsonf54d1862016-10-25 13:00:45 +0100506 struct dma_fence **fences;
Christian König1fbb2e92016-06-01 10:47:36 +0200507 unsigned i;
508 int r = 0;
509
Christian König76456702017-04-06 17:52:39 +0200510 mutex_lock(&id_mgr->lock);
Chunming Zhou7a63eb22017-04-21 11:13:56 +0800511 if (amdgpu_vm_reserved_vmid_ready(vm, vmhub)) {
512 r = amdgpu_vm_grab_reserved_vmid_locked(vm, ring, sync, fence, job);
513 mutex_unlock(&id_mgr->lock);
514 return r;
515 }
516 fences = kmalloc_array(sizeof(void *), id_mgr->num_ids, GFP_KERNEL);
517 if (!fences) {
518 mutex_unlock(&id_mgr->lock);
519 return -ENOMEM;
520 }
Christian König36fd7c52016-05-23 15:30:08 +0200521 /* Check if we have an idle VMID */
Christian König1fbb2e92016-06-01 10:47:36 +0200522 i = 0;
Christian König76456702017-04-06 17:52:39 +0200523 list_for_each_entry(idle, &id_mgr->ids_lru, list) {
Christian König1fbb2e92016-06-01 10:47:36 +0200524 fences[i] = amdgpu_sync_peek_fence(&idle->active, ring);
525 if (!fences[i])
Christian König36fd7c52016-05-23 15:30:08 +0200526 break;
Christian König1fbb2e92016-06-01 10:47:36 +0200527 ++i;
Christian König36fd7c52016-05-23 15:30:08 +0200528 }
Christian Königbcb1ba32016-03-08 15:40:11 +0100529
Christian König1fbb2e92016-06-01 10:47:36 +0200530 /* If we can't find a idle VMID to use, wait till one becomes available */
Christian König76456702017-04-06 17:52:39 +0200531 if (&idle->list == &id_mgr->ids_lru) {
Christian König1fbb2e92016-06-01 10:47:36 +0200532 u64 fence_context = adev->vm_manager.fence_context + ring->idx;
533 unsigned seqno = ++adev->vm_manager.seqno[ring->idx];
Chris Wilsonf54d1862016-10-25 13:00:45 +0100534 struct dma_fence_array *array;
Christian König1fbb2e92016-06-01 10:47:36 +0200535 unsigned j;
Christian König8d76001e2016-05-23 16:00:32 +0200536
Christian König1fbb2e92016-06-01 10:47:36 +0200537 for (j = 0; j < i; ++j)
Chris Wilsonf54d1862016-10-25 13:00:45 +0100538 dma_fence_get(fences[j]);
Christian König8d76001e2016-05-23 16:00:32 +0200539
Chris Wilsonf54d1862016-10-25 13:00:45 +0100540 array = dma_fence_array_create(i, fences, fence_context,
Christian König1fbb2e92016-06-01 10:47:36 +0200541 seqno, true);
542 if (!array) {
543 for (j = 0; j < i; ++j)
Chris Wilsonf54d1862016-10-25 13:00:45 +0100544 dma_fence_put(fences[j]);
Christian König1fbb2e92016-06-01 10:47:36 +0200545 kfree(fences);
546 r = -ENOMEM;
547 goto error;
548 }
Christian König8d76001e2016-05-23 16:00:32 +0200549
Christian König8d76001e2016-05-23 16:00:32 +0200550
Christian König1fbb2e92016-06-01 10:47:36 +0200551 r = amdgpu_sync_fence(ring->adev, sync, &array->base);
Chris Wilsonf54d1862016-10-25 13:00:45 +0100552 dma_fence_put(&array->base);
Christian König1fbb2e92016-06-01 10:47:36 +0200553 if (r)
554 goto error;
Christian König8d76001e2016-05-23 16:00:32 +0200555
Christian König76456702017-04-06 17:52:39 +0200556 mutex_unlock(&id_mgr->lock);
Christian König1fbb2e92016-06-01 10:47:36 +0200557 return 0;
Christian König8d76001e2016-05-23 16:00:32 +0200558
Christian König1fbb2e92016-06-01 10:47:36 +0200559 }
560 kfree(fences);
Christian König8d76001e2016-05-23 16:00:32 +0200561
Christian König6f1ceab2017-07-11 16:59:21 +0200562 job->vm_needs_flush = vm->use_cpu_for_update;
Christian König1fbb2e92016-06-01 10:47:36 +0200563 /* Check if we can use a VMID already assigned to this VM */
Christian König76456702017-04-06 17:52:39 +0200564 list_for_each_entry_reverse(id, &id_mgr->ids_lru, list) {
Chris Wilsonf54d1862016-10-25 13:00:45 +0100565 struct dma_fence *flushed;
Christian König6f1ceab2017-07-11 16:59:21 +0200566 bool needs_flush = vm->use_cpu_for_update;
Christian König8d76001e2016-05-23 16:00:32 +0200567
Christian König1fbb2e92016-06-01 10:47:36 +0200568 /* Check all the prerequisites to using this VMID */
Christian König641e9402017-04-03 13:59:25 +0200569 if (amdgpu_vm_had_gpu_reset(adev, id))
Chunming Zhou6adb0512016-06-27 17:06:01 +0800570 continue;
Christian König1fbb2e92016-06-01 10:47:36 +0200571
572 if (atomic64_read(&id->owner) != vm->client_id)
573 continue;
574
Chunming Zhoufd53be32016-07-01 17:59:01 +0800575 if (job->vm_pd_addr != id->pd_gpu_addr)
Christian König1fbb2e92016-06-01 10:47:36 +0200576 continue;
577
Christian König87c910d2017-03-30 16:56:20 +0200578 if (!id->last_flush ||
579 (id->last_flush->context != fence_context &&
580 !dma_fence_is_signaled(id->last_flush)))
581 needs_flush = true;
Christian König1fbb2e92016-06-01 10:47:36 +0200582
583 flushed = id->flushed_updates;
Christian König87c910d2017-03-30 16:56:20 +0200584 if (updates && (!flushed || dma_fence_is_later(updates, flushed)))
585 needs_flush = true;
586
587 /* Concurrent flushes are only possible starting with Vega10 */
588 if (adev->asic_type < CHIP_VEGA10 && needs_flush)
Christian König1fbb2e92016-06-01 10:47:36 +0200589 continue;
590
Christian König3dab83b2016-06-01 13:31:17 +0200591 /* Good we can use this VMID. Remember this submission as
592 * user of the VMID.
593 */
Christian König1fbb2e92016-06-01 10:47:36 +0200594 r = amdgpu_sync_fence(ring->adev, &id->active, fence);
595 if (r)
596 goto error;
Christian König8d76001e2016-05-23 16:00:32 +0200597
Christian König87c910d2017-03-30 16:56:20 +0200598 if (updates && (!flushed || dma_fence_is_later(updates, flushed))) {
599 dma_fence_put(id->flushed_updates);
600 id->flushed_updates = dma_fence_get(updates);
601 }
Christian König8d76001e2016-05-23 16:00:32 +0200602
Christian König87c910d2017-03-30 16:56:20 +0200603 if (needs_flush)
604 goto needs_flush;
605 else
606 goto no_flush_needed;
Christian König8d76001e2016-05-23 16:00:32 +0200607
Christian König4f618e72017-04-06 15:18:21 +0200608 };
Chunming Zhou8e9fbeb2016-03-17 11:41:37 +0800609
Christian König1fbb2e92016-06-01 10:47:36 +0200610 /* Still no ID to use? Then use the idle one found earlier */
611 id = idle;
612
613 /* Remember this submission as user of the VMID */
614 r = amdgpu_sync_fence(ring->adev, &id->active, fence);
Christian König832a9022016-02-15 12:33:02 +0100615 if (r)
616 goto error;
Christian König4ff37a82016-02-26 16:18:26 +0100617
Christian König87c910d2017-03-30 16:56:20 +0200618 id->pd_gpu_addr = job->vm_pd_addr;
619 dma_fence_put(id->flushed_updates);
620 id->flushed_updates = dma_fence_get(updates);
Christian König87c910d2017-03-30 16:56:20 +0200621 atomic64_set(&id->owner, vm->client_id);
622
623needs_flush:
624 job->vm_needs_flush = true;
Chris Wilsonf54d1862016-10-25 13:00:45 +0100625 dma_fence_put(id->last_flush);
Christian König41d9eb22016-03-01 16:46:18 +0100626 id->last_flush = NULL;
627
Christian König87c910d2017-03-30 16:56:20 +0200628no_flush_needed:
Christian König76456702017-04-06 17:52:39 +0200629 list_move_tail(&id->list, &id_mgr->ids_lru);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400630
Christian König76456702017-04-06 17:52:39 +0200631 job->vm_id = id - id_mgr->ids;
Christian Königc5296d12017-04-07 15:31:13 +0200632 trace_amdgpu_vm_grab_id(vm, ring, job);
Christian König832a9022016-02-15 12:33:02 +0100633
634error:
Christian König76456702017-04-06 17:52:39 +0200635 mutex_unlock(&id_mgr->lock);
Christian Königa9a78b32016-01-21 10:19:11 +0100636 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400637}
638
Chunming Zhou1e9ef262017-04-20 16:18:48 +0800639static void amdgpu_vm_free_reserved_vmid(struct amdgpu_device *adev,
640 struct amdgpu_vm *vm,
641 unsigned vmhub)
Alex Deucher93dcc372016-06-17 17:05:15 -0400642{
Chunming Zhou1e9ef262017-04-20 16:18:48 +0800643 struct amdgpu_vm_id_manager *id_mgr = &adev->vm_manager.id_mgr[vmhub];
Alex Deucher93dcc372016-06-17 17:05:15 -0400644
Chunming Zhou1e9ef262017-04-20 16:18:48 +0800645 mutex_lock(&id_mgr->lock);
646 if (vm->reserved_vmid[vmhub]) {
647 list_add(&vm->reserved_vmid[vmhub]->list,
648 &id_mgr->ids_lru);
649 vm->reserved_vmid[vmhub] = NULL;
Chunming Zhouc3505772017-04-21 15:51:04 +0800650 atomic_dec(&id_mgr->reserved_vmid_num);
Alex Deucher93dcc372016-06-17 17:05:15 -0400651 }
Chunming Zhou1e9ef262017-04-20 16:18:48 +0800652 mutex_unlock(&id_mgr->lock);
Alex Deucher93dcc372016-06-17 17:05:15 -0400653}
654
Chunming Zhou1e9ef262017-04-20 16:18:48 +0800655static int amdgpu_vm_alloc_reserved_vmid(struct amdgpu_device *adev,
656 struct amdgpu_vm *vm,
657 unsigned vmhub)
Alex Xiee60f8db2017-03-09 11:36:26 -0500658{
Chunming Zhou1e9ef262017-04-20 16:18:48 +0800659 struct amdgpu_vm_id_manager *id_mgr;
660 struct amdgpu_vm_id *idle;
661 int r = 0;
Alex Xiee60f8db2017-03-09 11:36:26 -0500662
Chunming Zhou1e9ef262017-04-20 16:18:48 +0800663 id_mgr = &adev->vm_manager.id_mgr[vmhub];
664 mutex_lock(&id_mgr->lock);
665 if (vm->reserved_vmid[vmhub])
666 goto unlock;
Chunming Zhouc3505772017-04-21 15:51:04 +0800667 if (atomic_inc_return(&id_mgr->reserved_vmid_num) >
668 AMDGPU_VM_MAX_RESERVED_VMID) {
669 DRM_ERROR("Over limitation of reserved vmid\n");
670 atomic_dec(&id_mgr->reserved_vmid_num);
671 r = -EINVAL;
672 goto unlock;
673 }
Chunming Zhou1e9ef262017-04-20 16:18:48 +0800674 /* Select the first entry VMID */
675 idle = list_first_entry(&id_mgr->ids_lru, struct amdgpu_vm_id, list);
676 list_del_init(&idle->list);
677 vm->reserved_vmid[vmhub] = idle;
678 mutex_unlock(&id_mgr->lock);
Alex Xiee60f8db2017-03-09 11:36:26 -0500679
Chunming Zhou1e9ef262017-04-20 16:18:48 +0800680 return 0;
681unlock:
682 mutex_unlock(&id_mgr->lock);
683 return r;
684}
685
Alex Xiee59c0202017-06-01 09:42:59 -0400686/**
687 * amdgpu_vm_check_compute_bug - check whether asic has compute vm bug
688 *
689 * @adev: amdgpu_device pointer
690 */
691void amdgpu_vm_check_compute_bug(struct amdgpu_device *adev)
692{
693 const struct amdgpu_ip_block *ip_block;
694 bool has_compute_vm_bug;
695 struct amdgpu_ring *ring;
696 int i;
697
698 has_compute_vm_bug = false;
699
700 ip_block = amdgpu_get_ip_block(adev, AMD_IP_BLOCK_TYPE_GFX);
701 if (ip_block) {
702 /* Compute has a VM bug for GFX version < 7.
703 Compute has a VM bug for GFX 8 MEC firmware version < 673.*/
704 if (ip_block->version->major <= 7)
705 has_compute_vm_bug = true;
706 else if (ip_block->version->major == 8)
707 if (adev->gfx.mec_fw_version < 673)
708 has_compute_vm_bug = true;
709 }
710
711 for (i = 0; i < adev->num_rings; i++) {
712 ring = adev->rings[i];
713 if (ring->funcs->type == AMDGPU_RING_TYPE_COMPUTE)
714 /* only compute rings */
715 ring->has_compute_vm_bug = has_compute_vm_bug;
716 else
717 ring->has_compute_vm_bug = false;
718 }
719}
720
Chunming Zhoub9bf33d2017-05-11 14:52:48 -0400721bool amdgpu_vm_need_pipeline_sync(struct amdgpu_ring *ring,
722 struct amdgpu_job *job)
723{
724 struct amdgpu_device *adev = ring->adev;
725 unsigned vmhub = ring->funcs->vmhub;
726 struct amdgpu_vm_id_manager *id_mgr = &adev->vm_manager.id_mgr[vmhub];
727 struct amdgpu_vm_id *id;
728 bool gds_switch_needed;
Alex Xiee59c0202017-06-01 09:42:59 -0400729 bool vm_flush_needed = job->vm_needs_flush || ring->has_compute_vm_bug;
Chunming Zhoub9bf33d2017-05-11 14:52:48 -0400730
731 if (job->vm_id == 0)
732 return false;
733 id = &id_mgr->ids[job->vm_id];
734 gds_switch_needed = ring->funcs->emit_gds_switch && (
735 id->gds_base != job->gds_base ||
736 id->gds_size != job->gds_size ||
737 id->gws_base != job->gws_base ||
738 id->gws_size != job->gws_size ||
739 id->oa_base != job->oa_base ||
740 id->oa_size != job->oa_size);
741
742 if (amdgpu_vm_had_gpu_reset(adev, id))
743 return true;
Alex Xiebb37b672017-05-30 23:50:10 -0400744
745 return vm_flush_needed || gds_switch_needed;
Chunming Zhoub9bf33d2017-05-11 14:52:48 -0400746}
747
Harish Kasiviswanathan9a4b7d42017-06-09 11:26:57 -0400748static bool amdgpu_vm_is_large_bar(struct amdgpu_device *adev)
749{
750 return (adev->mc.real_vram_size == adev->mc.visible_vram_size);
Alex Xiee60f8db2017-03-09 11:36:26 -0500751}
752
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400753/**
754 * amdgpu_vm_flush - hardware flush the vm
755 *
756 * @ring: ring to use for flush
Christian Königcffadc82016-03-01 13:34:49 +0100757 * @vm_id: vmid number to use
Christian König4ff37a82016-02-26 16:18:26 +0100758 * @pd_addr: address of the page directory
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400759 *
Christian König4ff37a82016-02-26 16:18:26 +0100760 * Emit a VM flush when it is necessary.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400761 */
Monk Liu8fdf0742017-06-06 17:25:13 +0800762int amdgpu_vm_flush(struct amdgpu_ring *ring, struct amdgpu_job *job, bool need_pipe_sync)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400763{
Christian König971fe9a92016-03-01 15:09:25 +0100764 struct amdgpu_device *adev = ring->adev;
Christian König76456702017-04-06 17:52:39 +0200765 unsigned vmhub = ring->funcs->vmhub;
766 struct amdgpu_vm_id_manager *id_mgr = &adev->vm_manager.id_mgr[vmhub];
767 struct amdgpu_vm_id *id = &id_mgr->ids[job->vm_id];
Christian Königd564a062016-03-01 15:51:53 +0100768 bool gds_switch_needed = ring->funcs->emit_gds_switch && (
Chunming Zhoufd53be32016-07-01 17:59:01 +0800769 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);
Flora Cuide37e682017-05-18 13:56:22 +0800775 bool vm_flush_needed = job->vm_needs_flush;
Christian Königc0e51932017-04-03 14:16:07 +0200776 unsigned patch_offset = 0;
Christian König41d9eb22016-03-01 16:46:18 +0100777 int r;
Christian Königd564a062016-03-01 15:51:53 +0100778
Christian Königf7d015b2017-04-03 14:28:26 +0200779 if (amdgpu_vm_had_gpu_reset(adev, id)) {
780 gds_switch_needed = true;
781 vm_flush_needed = true;
782 }
Christian König971fe9a92016-03-01 15:09:25 +0100783
Monk Liu8fdf0742017-06-06 17:25:13 +0800784 if (!vm_flush_needed && !gds_switch_needed && !need_pipe_sync)
Christian Königf7d015b2017-04-03 14:28:26 +0200785 return 0;
Christian König41d9eb22016-03-01 16:46:18 +0100786
Christian Königc0e51932017-04-03 14:16:07 +0200787 if (ring->funcs->init_cond_exec)
788 patch_offset = amdgpu_ring_init_cond_exec(ring);
Christian König41d9eb22016-03-01 16:46:18 +0100789
Monk Liu8fdf0742017-06-06 17:25:13 +0800790 if (need_pipe_sync)
791 amdgpu_ring_emit_pipeline_sync(ring);
792
Christian Königf7d015b2017-04-03 14:28:26 +0200793 if (ring->funcs->emit_vm_flush && vm_flush_needed) {
Christian Königc0e51932017-04-03 14:16:07 +0200794 struct dma_fence *fence;
Monk Liue9d672b2017-03-15 12:18:57 +0800795
Christian König9a94f5a2017-05-12 14:46:23 +0200796 trace_amdgpu_vm_flush(ring, job->vm_id, job->vm_pd_addr);
797 amdgpu_ring_emit_vm_flush(ring, job->vm_id, job->vm_pd_addr);
Monk Liue9d672b2017-03-15 12:18:57 +0800798
Christian Königc0e51932017-04-03 14:16:07 +0200799 r = amdgpu_fence_emit(ring, &fence);
800 if (r)
801 return r;
Monk Liue9d672b2017-03-15 12:18:57 +0800802
Christian König76456702017-04-06 17:52:39 +0200803 mutex_lock(&id_mgr->lock);
Christian Königc0e51932017-04-03 14:16:07 +0200804 dma_fence_put(id->last_flush);
805 id->last_flush = fence;
Chunming Zhoubea396722017-05-10 13:02:39 +0800806 id->current_gpu_reset_count = atomic_read(&adev->gpu_reset_counter);
Christian König76456702017-04-06 17:52:39 +0200807 mutex_unlock(&id_mgr->lock);
Christian Königc0e51932017-04-03 14:16:07 +0200808 }
Monk Liue9d672b2017-03-15 12:18:57 +0800809
Chunming Zhou7c4378f2017-05-11 18:22:17 +0800810 if (ring->funcs->emit_gds_switch && gds_switch_needed) {
Christian Königc0e51932017-04-03 14:16:07 +0200811 id->gds_base = job->gds_base;
812 id->gds_size = job->gds_size;
813 id->gws_base = job->gws_base;
814 id->gws_size = job->gws_size;
815 id->oa_base = job->oa_base;
816 id->oa_size = job->oa_size;
817 amdgpu_ring_emit_gds_switch(ring, job->vm_id, job->gds_base,
818 job->gds_size, job->gws_base,
819 job->gws_size, job->oa_base,
820 job->oa_size);
821 }
822
823 if (ring->funcs->patch_cond_exec)
824 amdgpu_ring_patch_cond_exec(ring, patch_offset);
825
826 /* the double SWITCH_BUFFER here *cannot* be skipped by COND_EXEC */
827 if (ring->funcs->emit_switch_buffer) {
828 amdgpu_ring_emit_switch_buffer(ring);
829 amdgpu_ring_emit_switch_buffer(ring);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400830 }
Christian König41d9eb22016-03-01 16:46:18 +0100831 return 0;
Christian König971fe9a92016-03-01 15:09:25 +0100832}
833
834/**
835 * amdgpu_vm_reset_id - reset VMID to zero
836 *
837 * @adev: amdgpu device structure
838 * @vm_id: vmid number to use
839 *
840 * Reset saved GDW, GWS and OA to force switch on next flush.
841 */
Christian König76456702017-04-06 17:52:39 +0200842void amdgpu_vm_reset_id(struct amdgpu_device *adev, unsigned vmhub,
843 unsigned vmid)
Christian König971fe9a92016-03-01 15:09:25 +0100844{
Christian König76456702017-04-06 17:52:39 +0200845 struct amdgpu_vm_id_manager *id_mgr = &adev->vm_manager.id_mgr[vmhub];
846 struct amdgpu_vm_id *id = &id_mgr->ids[vmid];
Christian König971fe9a92016-03-01 15:09:25 +0100847
Christian Königb3c85a02017-05-10 20:06:58 +0200848 atomic64_set(&id->owner, 0);
Christian Königbcb1ba32016-03-08 15:40:11 +0100849 id->gds_base = 0;
850 id->gds_size = 0;
851 id->gws_base = 0;
852 id->gws_size = 0;
853 id->oa_base = 0;
854 id->oa_size = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400855}
856
857/**
Christian Königb3c85a02017-05-10 20:06:58 +0200858 * amdgpu_vm_reset_all_id - reset VMID to zero
859 *
860 * @adev: amdgpu device structure
861 *
862 * Reset VMID to force flush on next use
863 */
864void amdgpu_vm_reset_all_ids(struct amdgpu_device *adev)
865{
866 unsigned i, j;
867
868 for (i = 0; i < AMDGPU_MAX_VMHUBS; ++i) {
869 struct amdgpu_vm_id_manager *id_mgr =
870 &adev->vm_manager.id_mgr[i];
871
872 for (j = 1; j < id_mgr->num_ids; ++j)
873 amdgpu_vm_reset_id(adev, i, j);
874 }
875}
876
877/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400878 * amdgpu_vm_bo_find - find the bo_va for a specific vm & bo
879 *
880 * @vm: requested vm
881 * @bo: requested buffer object
882 *
Christian König8843dbb2016-01-26 12:17:11 +0100883 * Find @bo inside the requested vm.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400884 * Search inside the @bos vm list for the requested vm
885 * Returns the found bo_va or NULL if none is found
886 *
887 * Object has to be reserved!
888 */
889struct amdgpu_bo_va *amdgpu_vm_bo_find(struct amdgpu_vm *vm,
890 struct amdgpu_bo *bo)
891{
892 struct amdgpu_bo_va *bo_va;
893
894 list_for_each_entry(bo_va, &bo->va, bo_list) {
895 if (bo_va->vm == vm) {
896 return bo_va;
897 }
898 }
899 return NULL;
900}
901
902/**
Christian Königafef8b82016-08-12 13:29:18 +0200903 * amdgpu_vm_do_set_ptes - helper to call the right asic function
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400904 *
Christian König29efc4f2016-08-04 14:52:50 +0200905 * @params: see amdgpu_pte_update_params definition
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400906 * @pe: addr of the page entry
907 * @addr: dst addr to write into pe
908 * @count: number of page entries to update
909 * @incr: increase next addr by incr bytes
910 * @flags: hw access flags
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400911 *
912 * Traces the parameters and calls the right asic functions
913 * to setup the page table using the DMA.
914 */
Christian Königafef8b82016-08-12 13:29:18 +0200915static void amdgpu_vm_do_set_ptes(struct amdgpu_pte_update_params *params,
916 uint64_t pe, uint64_t addr,
917 unsigned count, uint32_t incr,
Chunming Zhou6b777602016-09-21 16:19:19 +0800918 uint64_t flags)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400919{
Christian Königec2f05f2016-09-25 16:11:52 +0200920 trace_amdgpu_vm_set_ptes(pe, addr, count, incr, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400921
Christian Königafef8b82016-08-12 13:29:18 +0200922 if (count < 3) {
Christian Königde9ea7b2016-08-12 11:33:30 +0200923 amdgpu_vm_write_pte(params->adev, params->ib, pe,
924 addr | flags, count, incr);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400925
926 } else {
Christian König27c5f362016-08-04 15:02:49 +0200927 amdgpu_vm_set_pte_pde(params->adev, params->ib, pe, addr,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400928 count, incr, flags);
929 }
930}
931
932/**
Christian Königafef8b82016-08-12 13:29:18 +0200933 * amdgpu_vm_do_copy_ptes - copy the PTEs from the GART
934 *
935 * @params: see amdgpu_pte_update_params definition
936 * @pe: addr of the page entry
937 * @addr: dst addr to write into pe
938 * @count: number of page entries to update
939 * @incr: increase next addr by incr bytes
940 * @flags: hw access flags
941 *
942 * Traces the parameters and calls the DMA function to copy the PTEs.
943 */
944static void amdgpu_vm_do_copy_ptes(struct amdgpu_pte_update_params *params,
945 uint64_t pe, uint64_t addr,
946 unsigned count, uint32_t incr,
Chunming Zhou6b777602016-09-21 16:19:19 +0800947 uint64_t flags)
Christian Königafef8b82016-08-12 13:29:18 +0200948{
Christian Königec2f05f2016-09-25 16:11:52 +0200949 uint64_t src = (params->src + (addr >> 12) * 8);
Christian Königafef8b82016-08-12 13:29:18 +0200950
Christian Königec2f05f2016-09-25 16:11:52 +0200951
952 trace_amdgpu_vm_copy_ptes(pe, src, count);
953
954 amdgpu_vm_copy_pte(params->adev, params->ib, pe, src, count);
Christian Königafef8b82016-08-12 13:29:18 +0200955}
956
957/**
Christian Königb07c9d22015-11-30 13:26:07 +0100958 * amdgpu_vm_map_gart - Resolve gart mapping of addr
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400959 *
Christian Königb07c9d22015-11-30 13:26:07 +0100960 * @pages_addr: optional DMA address to use for lookup
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400961 * @addr: the unmapped addr
962 *
963 * Look up the physical address of the page that the pte resolves
Christian Königb07c9d22015-11-30 13:26:07 +0100964 * to and return the pointer for the page table entry.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400965 */
Christian Königde9ea7b2016-08-12 11:33:30 +0200966static uint64_t amdgpu_vm_map_gart(const dma_addr_t *pages_addr, uint64_t addr)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400967{
968 uint64_t result;
969
Christian Königde9ea7b2016-08-12 11:33:30 +0200970 /* page table offset */
971 result = pages_addr[addr >> PAGE_SHIFT];
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400972
Christian Königde9ea7b2016-08-12 11:33:30 +0200973 /* in case cpu page size != gpu page size*/
974 result |= addr & (~PAGE_MASK);
Christian Königb07c9d22015-11-30 13:26:07 +0100975
976 result &= 0xFFFFFFFFFFFFF000ULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400977
978 return result;
979}
980
Harish Kasiviswanathan3c824172017-05-11 15:50:08 -0400981/**
982 * amdgpu_vm_cpu_set_ptes - helper to update page tables via CPU
983 *
984 * @params: see amdgpu_pte_update_params definition
985 * @pe: kmap addr of the page entry
986 * @addr: dst addr to write into pe
987 * @count: number of page entries to update
988 * @incr: increase next addr by incr bytes
989 * @flags: hw access flags
990 *
991 * Write count number of PT/PD entries directly.
992 */
993static void amdgpu_vm_cpu_set_ptes(struct amdgpu_pte_update_params *params,
994 uint64_t pe, uint64_t addr,
995 unsigned count, uint32_t incr,
996 uint64_t flags)
997{
998 unsigned int i;
Harish Kasiviswanathanb4d42512017-05-11 19:47:22 -0400999 uint64_t value;
Harish Kasiviswanathan3c824172017-05-11 15:50:08 -04001000
Christian König03918b32017-07-11 17:15:37 +02001001 trace_amdgpu_vm_set_ptes(pe, addr, count, incr, flags);
1002
Harish Kasiviswanathan3c824172017-05-11 15:50:08 -04001003 for (i = 0; i < count; i++) {
Harish Kasiviswanathanb4d42512017-05-11 19:47:22 -04001004 value = params->pages_addr ?
1005 amdgpu_vm_map_gart(params->pages_addr, addr) :
1006 addr;
Harish Kasiviswanathana19240052017-06-09 17:47:28 -04001007 amdgpu_gart_set_pte_pde(params->adev, (void *)(uintptr_t)pe,
Harish Kasiviswanathanb4d42512017-05-11 19:47:22 -04001008 i, value, flags);
Harish Kasiviswanathan3c824172017-05-11 15:50:08 -04001009 addr += incr;
1010 }
Harish Kasiviswanathan3c824172017-05-11 15:50:08 -04001011}
1012
Christian Königa33cab72017-07-11 17:13:00 +02001013static int amdgpu_vm_wait_pd(struct amdgpu_device *adev, struct amdgpu_vm *vm,
1014 void *owner)
Harish Kasiviswanathan3c824172017-05-11 15:50:08 -04001015{
1016 struct amdgpu_sync sync;
1017 int r;
1018
1019 amdgpu_sync_create(&sync);
Christian Königa33cab72017-07-11 17:13:00 +02001020 amdgpu_sync_resv(adev, &sync, vm->root.bo->tbo.resv, owner);
Harish Kasiviswanathan3c824172017-05-11 15:50:08 -04001021 r = amdgpu_sync_wait(&sync, true);
1022 amdgpu_sync_free(&sync);
1023
1024 return r;
1025}
1026
Christian Königf8991ba2016-09-16 15:36:49 +02001027/*
Christian König194d2162016-10-12 15:13:52 +02001028 * amdgpu_vm_update_level - update a single level in the hierarchy
Christian Königf8991ba2016-09-16 15:36:49 +02001029 *
1030 * @adev: amdgpu_device pointer
1031 * @vm: requested vm
Christian König194d2162016-10-12 15:13:52 +02001032 * @parent: parent directory
Christian Königf8991ba2016-09-16 15:36:49 +02001033 *
Christian König194d2162016-10-12 15:13:52 +02001034 * Makes sure all entries in @parent are up to date.
Christian Königf8991ba2016-09-16 15:36:49 +02001035 * Returns 0 for success, error for failure.
1036 */
Christian König194d2162016-10-12 15:13:52 +02001037static int amdgpu_vm_update_level(struct amdgpu_device *adev,
1038 struct amdgpu_vm *vm,
1039 struct amdgpu_vm_pt *parent,
1040 unsigned level)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001041{
Christian Königf8991ba2016-09-16 15:36:49 +02001042 struct amdgpu_bo *shadow;
Harish Kasiviswanathana19240052017-06-09 17:47:28 -04001043 struct amdgpu_ring *ring = NULL;
1044 uint64_t pd_addr, shadow_addr = 0;
Christian König194d2162016-10-12 15:13:52 +02001045 uint32_t incr = amdgpu_vm_bo_size(adev, level + 1);
Christian Königf8991ba2016-09-16 15:36:49 +02001046 uint64_t last_pde = ~0, last_pt = ~0, last_shadow = ~0;
Harish Kasiviswanathana19240052017-06-09 17:47:28 -04001047 unsigned count = 0, pt_idx, ndw = 0;
Christian Königd71518b2016-02-01 12:20:25 +01001048 struct amdgpu_job *job;
Christian König29efc4f2016-08-04 14:52:50 +02001049 struct amdgpu_pte_update_params params;
Dave Airlie220196b2016-10-28 11:33:52 +10001050 struct dma_fence *fence = NULL;
Chunming Zhoud5fc5e82015-07-21 16:52:10 +08001051
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001052 int r;
1053
Christian König194d2162016-10-12 15:13:52 +02001054 if (!parent->entries)
1055 return 0;
Christian Königd71518b2016-02-01 12:20:25 +01001056
Christian König27c5f362016-08-04 15:02:49 +02001057 memset(&params, 0, sizeof(params));
1058 params.adev = adev;
Harish Kasiviswanathan3c824172017-05-11 15:50:08 -04001059 shadow = parent->bo->shadow;
1060
Alex Deucher69277982017-07-13 15:37:11 -04001061 if (vm->use_cpu_for_update) {
Christian König0a096fb2017-07-12 10:01:48 +02001062 pd_addr = (unsigned long)parent->bo->kptr;
Christian Königa33cab72017-07-11 17:13:00 +02001063 r = amdgpu_vm_wait_pd(adev, vm, AMDGPU_FENCE_OWNER_VM);
Christian König0a096fb2017-07-12 10:01:48 +02001064 if (unlikely(r))
Harish Kasiviswanathan3c824172017-05-11 15:50:08 -04001065 return r;
Christian König0a096fb2017-07-12 10:01:48 +02001066
Harish Kasiviswanathan3c824172017-05-11 15:50:08 -04001067 params.func = amdgpu_vm_cpu_set_ptes;
1068 } else {
1069 if (shadow) {
1070 r = amdgpu_ttm_bind(&shadow->tbo, &shadow->tbo.mem);
1071 if (r)
1072 return r;
1073 }
1074 ring = container_of(vm->entity.sched, struct amdgpu_ring,
1075 sched);
1076
1077 /* padding, etc. */
1078 ndw = 64;
1079
1080 /* assume the worst case */
1081 ndw += parent->last_entry_used * 6;
1082
1083 pd_addr = amdgpu_bo_gpu_offset(parent->bo);
1084
1085 if (shadow) {
1086 shadow_addr = amdgpu_bo_gpu_offset(shadow);
1087 ndw *= 2;
1088 } else {
1089 shadow_addr = 0;
1090 }
1091
1092 r = amdgpu_job_alloc_with_ib(adev, ndw * 4, &job);
1093 if (r)
1094 return r;
1095
1096 params.ib = &job->ibs[0];
1097 params.func = amdgpu_vm_do_set_ptes;
1098 }
1099
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001100
Christian König194d2162016-10-12 15:13:52 +02001101 /* walk over the address space and update the directory */
1102 for (pt_idx = 0; pt_idx <= parent->last_entry_used; ++pt_idx) {
1103 struct amdgpu_bo *bo = parent->entries[pt_idx].bo;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001104 uint64_t pde, pt;
1105
1106 if (bo == NULL)
1107 continue;
1108
Christian König0fc86832016-09-16 11:46:23 +02001109 if (bo->shadow) {
Christian Königf8991ba2016-09-16 15:36:49 +02001110 struct amdgpu_bo *pt_shadow = bo->shadow;
Christian König0fc86832016-09-16 11:46:23 +02001111
Christian Königf8991ba2016-09-16 15:36:49 +02001112 r = amdgpu_ttm_bind(&pt_shadow->tbo,
1113 &pt_shadow->tbo.mem);
Christian König0fc86832016-09-16 11:46:23 +02001114 if (r)
1115 return r;
1116 }
1117
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001118 pt = amdgpu_bo_gpu_offset(bo);
Christian König53e2e912017-05-15 15:19:10 +02001119 pt = amdgpu_gart_get_vm_pde(adev, pt);
Christian König194d2162016-10-12 15:13:52 +02001120 if (parent->entries[pt_idx].addr == pt)
Christian Königf8991ba2016-09-16 15:36:49 +02001121 continue;
1122
Christian König194d2162016-10-12 15:13:52 +02001123 parent->entries[pt_idx].addr = pt;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001124
1125 pde = pd_addr + pt_idx * 8;
1126 if (((last_pde + 8 * count) != pde) ||
Christian König96105e52016-08-12 12:59:59 +02001127 ((last_pt + incr * count) != pt) ||
1128 (count == AMDGPU_VM_MAX_UPDATE_SIZE)) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001129
1130 if (count) {
Christian Königf8991ba2016-09-16 15:36:49 +02001131 if (shadow)
Harish Kasiviswanathan3c824172017-05-11 15:50:08 -04001132 params.func(&params,
1133 last_shadow,
1134 last_pt, count,
1135 incr,
1136 AMDGPU_PTE_VALID);
Christian Königf8991ba2016-09-16 15:36:49 +02001137
Harish Kasiviswanathan3c824172017-05-11 15:50:08 -04001138 params.func(&params, last_pde,
1139 last_pt, count, incr,
1140 AMDGPU_PTE_VALID);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001141 }
1142
1143 count = 1;
1144 last_pde = pde;
Christian Königf8991ba2016-09-16 15:36:49 +02001145 last_shadow = shadow_addr + pt_idx * 8;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001146 last_pt = pt;
1147 } else {
1148 ++count;
1149 }
1150 }
1151
Christian Königf8991ba2016-09-16 15:36:49 +02001152 if (count) {
Christian König67003a12016-10-12 14:46:26 +02001153 if (vm->root.bo->shadow)
Harish Kasiviswanathan3c824172017-05-11 15:50:08 -04001154 params.func(&params, last_shadow, last_pt,
1155 count, incr, AMDGPU_PTE_VALID);
Christian Königf8991ba2016-09-16 15:36:49 +02001156
Harish Kasiviswanathan3c824172017-05-11 15:50:08 -04001157 params.func(&params, last_pde, last_pt,
1158 count, incr, AMDGPU_PTE_VALID);
Chunming Zhoud5fc5e82015-07-21 16:52:10 +08001159 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001160
Christian König0a096fb2017-07-12 10:01:48 +02001161 if (!vm->use_cpu_for_update) {
1162 if (params.ib->length_dw == 0) {
1163 amdgpu_job_free(job);
1164 } else {
1165 amdgpu_ring_pad_ib(ring, params.ib);
1166 amdgpu_sync_resv(adev, &job->sync, parent->bo->tbo.resv,
Christian König194d2162016-10-12 15:13:52 +02001167 AMDGPU_FENCE_OWNER_VM);
Christian König0a096fb2017-07-12 10:01:48 +02001168 if (shadow)
1169 amdgpu_sync_resv(adev, &job->sync,
1170 shadow->tbo.resv,
1171 AMDGPU_FENCE_OWNER_VM);
Christian Königf8991ba2016-09-16 15:36:49 +02001172
Christian König0a096fb2017-07-12 10:01:48 +02001173 WARN_ON(params.ib->length_dw > ndw);
1174 r = amdgpu_job_submit(job, ring, &vm->entity,
1175 AMDGPU_FENCE_OWNER_VM, &fence);
1176 if (r)
1177 goto error_free;
Christian Königf8991ba2016-09-16 15:36:49 +02001178
Christian König0a096fb2017-07-12 10:01:48 +02001179 amdgpu_bo_fence(parent->bo, fence, true);
1180 dma_fence_put(vm->last_dir_update);
1181 vm->last_dir_update = dma_fence_get(fence);
1182 dma_fence_put(fence);
1183 }
Christian König194d2162016-10-12 15:13:52 +02001184 }
1185 /*
1186 * Recurse into the subdirectories. This recursion is harmless because
1187 * we only have a maximum of 5 layers.
1188 */
1189 for (pt_idx = 0; pt_idx <= parent->last_entry_used; ++pt_idx) {
1190 struct amdgpu_vm_pt *entry = &parent->entries[pt_idx];
1191
1192 if (!entry->bo)
1193 continue;
1194
1195 r = amdgpu_vm_update_level(adev, vm, entry, level + 1);
1196 if (r)
1197 return r;
1198 }
Christian Königf8991ba2016-09-16 15:36:49 +02001199
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001200 return 0;
Chunming Zhoud5fc5e82015-07-21 16:52:10 +08001201
1202error_free:
Christian Königd71518b2016-02-01 12:20:25 +01001203 amdgpu_job_free(job);
Chunming Zhou4af9f072015-08-03 12:57:31 +08001204 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001205}
1206
Christian König194d2162016-10-12 15:13:52 +02001207/*
Christian König92456b92017-05-12 16:09:26 +02001208 * amdgpu_vm_invalidate_level - mark all PD levels as invalid
1209 *
1210 * @parent: parent PD
1211 *
1212 * Mark all PD level as invalid after an error.
1213 */
1214static void amdgpu_vm_invalidate_level(struct amdgpu_vm_pt *parent)
1215{
1216 unsigned pt_idx;
1217
1218 /*
1219 * Recurse into the subdirectories. This recursion is harmless because
1220 * we only have a maximum of 5 layers.
1221 */
1222 for (pt_idx = 0; pt_idx <= parent->last_entry_used; ++pt_idx) {
1223 struct amdgpu_vm_pt *entry = &parent->entries[pt_idx];
1224
1225 if (!entry->bo)
1226 continue;
1227
1228 entry->addr = ~0ULL;
1229 amdgpu_vm_invalidate_level(entry);
1230 }
1231}
1232
1233/*
Christian König194d2162016-10-12 15:13:52 +02001234 * amdgpu_vm_update_directories - make sure that all directories are valid
1235 *
1236 * @adev: amdgpu_device pointer
1237 * @vm: requested vm
1238 *
1239 * Makes sure all directories are up to date.
1240 * Returns 0 for success, error for failure.
1241 */
1242int amdgpu_vm_update_directories(struct amdgpu_device *adev,
1243 struct amdgpu_vm *vm)
1244{
Christian König92456b92017-05-12 16:09:26 +02001245 int r;
1246
1247 r = amdgpu_vm_update_level(adev, vm, &vm->root, 0);
1248 if (r)
1249 amdgpu_vm_invalidate_level(&vm->root);
1250
Christian König68c62302017-07-11 17:23:29 +02001251 if (vm->use_cpu_for_update) {
1252 /* Flush HDP */
1253 mb();
1254 amdgpu_gart_flush_gpu_tlb(adev, 0);
1255 }
1256
Christian König92456b92017-05-12 16:09:26 +02001257 return r;
Christian König194d2162016-10-12 15:13:52 +02001258}
1259
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001260/**
Christian König4e2cb642016-10-25 15:52:28 +02001261 * amdgpu_vm_find_pt - find the page table for an address
1262 *
1263 * @p: see amdgpu_pte_update_params definition
1264 * @addr: virtual address in question
1265 *
1266 * Find the page table BO for a virtual address, return NULL when none found.
1267 */
1268static struct amdgpu_bo *amdgpu_vm_get_pt(struct amdgpu_pte_update_params *p,
1269 uint64_t addr)
1270{
1271 struct amdgpu_vm_pt *entry = &p->vm->root;
1272 unsigned idx, level = p->adev->vm_manager.num_level;
1273
1274 while (entry->entries) {
Zhang, Jerry36b32a62017-03-29 16:08:32 +08001275 idx = addr >> (p->adev->vm_manager.block_size * level--);
Christian König4e2cb642016-10-25 15:52:28 +02001276 idx %= amdgpu_bo_size(entry->bo) / 8;
1277 entry = &entry->entries[idx];
1278 }
1279
1280 if (level)
1281 return NULL;
1282
1283 return entry->bo;
1284}
1285
1286/**
Christian König92696dd2016-08-05 13:56:35 +02001287 * amdgpu_vm_update_ptes - make sure that page tables are valid
1288 *
1289 * @params: see amdgpu_pte_update_params definition
1290 * @vm: requested vm
1291 * @start: start of GPU address range
1292 * @end: end of GPU address range
1293 * @dst: destination address to map to, the next dst inside the function
1294 * @flags: mapping flags
1295 *
1296 * Update the page tables in the range @start - @end.
Harish Kasiviswanathancc28c4e2017-05-11 22:39:31 -04001297 * Returns 0 for success, -EINVAL for failure.
Christian König92696dd2016-08-05 13:56:35 +02001298 */
Harish Kasiviswanathancc28c4e2017-05-11 22:39:31 -04001299static int amdgpu_vm_update_ptes(struct amdgpu_pte_update_params *params,
Christian König92696dd2016-08-05 13:56:35 +02001300 uint64_t start, uint64_t end,
Chunming Zhou6b777602016-09-21 16:19:19 +08001301 uint64_t dst, uint64_t flags)
Christian König92696dd2016-08-05 13:56:35 +02001302{
Zhang, Jerry36b32a62017-03-29 16:08:32 +08001303 struct amdgpu_device *adev = params->adev;
1304 const uint64_t mask = AMDGPU_VM_PTE_COUNT(adev) - 1;
Christian König92696dd2016-08-05 13:56:35 +02001305
Christian König301654a2017-05-16 14:30:27 +02001306 uint64_t addr, pe_start;
Christian König92696dd2016-08-05 13:56:35 +02001307 struct amdgpu_bo *pt;
Christian König301654a2017-05-16 14:30:27 +02001308 unsigned nptes;
Harish Kasiviswanathan370f0922017-06-09 17:47:27 -04001309 bool use_cpu_update = (params->func == amdgpu_vm_cpu_set_ptes);
Christian König92696dd2016-08-05 13:56:35 +02001310
Christian König92696dd2016-08-05 13:56:35 +02001311
1312 /* walk over the address space and update the page tables */
Christian König301654a2017-05-16 14:30:27 +02001313 for (addr = start; addr < end; addr += nptes) {
Christian König4e2cb642016-10-25 15:52:28 +02001314 pt = amdgpu_vm_get_pt(params, addr);
Felix Kuehling1866bac2017-03-28 20:36:12 -04001315 if (!pt) {
1316 pr_err("PT not found, aborting update_ptes\n");
Harish Kasiviswanathancc28c4e2017-05-11 22:39:31 -04001317 return -EINVAL;
Felix Kuehling1866bac2017-03-28 20:36:12 -04001318 }
Christian König4e2cb642016-10-25 15:52:28 +02001319
Christian König92696dd2016-08-05 13:56:35 +02001320 if ((addr & ~mask) == (end & ~mask))
1321 nptes = end - addr;
1322 else
Zhang, Jerry36b32a62017-03-29 16:08:32 +08001323 nptes = AMDGPU_VM_PTE_COUNT(adev) - (addr & mask);
Christian König92696dd2016-08-05 13:56:35 +02001324
Harish Kasiviswanathan370f0922017-06-09 17:47:27 -04001325 if (use_cpu_update) {
Christian König0a096fb2017-07-12 10:01:48 +02001326 pe_start = (unsigned long)pt->kptr;
Christian Königdd0792c2017-06-27 14:48:15 -04001327 } else {
1328 if (pt->shadow) {
1329 pe_start = amdgpu_bo_gpu_offset(pt->shadow);
1330 pe_start += (addr & mask) * 8;
1331 params->func(params, pe_start, dst, nptes,
1332 AMDGPU_GPU_PAGE_SIZE, flags);
1333 }
Harish Kasiviswanathan370f0922017-06-09 17:47:27 -04001334 pe_start = amdgpu_bo_gpu_offset(pt);
Christian Königdd0792c2017-06-27 14:48:15 -04001335 }
Christian König92696dd2016-08-05 13:56:35 +02001336
Christian König301654a2017-05-16 14:30:27 +02001337 pe_start += (addr & mask) * 8;
Christian König301654a2017-05-16 14:30:27 +02001338 params->func(params, pe_start, dst, nptes,
1339 AMDGPU_GPU_PAGE_SIZE, flags);
Christian König92696dd2016-08-05 13:56:35 +02001340
Christian König92696dd2016-08-05 13:56:35 +02001341 dst += nptes * AMDGPU_GPU_PAGE_SIZE;
1342 }
1343
Harish Kasiviswanathancc28c4e2017-05-11 22:39:31 -04001344 return 0;
Christian König92696dd2016-08-05 13:56:35 +02001345}
1346
1347/*
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001348 * amdgpu_vm_frag_ptes - add fragment information to PTEs
1349 *
Christian König29efc4f2016-08-04 14:52:50 +02001350 * @params: see amdgpu_pte_update_params definition
Christian König92696dd2016-08-05 13:56:35 +02001351 * @vm: requested vm
1352 * @start: first PTE to handle
1353 * @end: last PTE to handle
1354 * @dst: addr those PTEs should point to
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001355 * @flags: hw mapping flags
Harish Kasiviswanathancc28c4e2017-05-11 22:39:31 -04001356 * Returns 0 for success, -EINVAL for failure.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001357 */
Harish Kasiviswanathancc28c4e2017-05-11 22:39:31 -04001358static int amdgpu_vm_frag_ptes(struct amdgpu_pte_update_params *params,
Christian König92696dd2016-08-05 13:56:35 +02001359 uint64_t start, uint64_t end,
Chunming Zhou6b777602016-09-21 16:19:19 +08001360 uint64_t dst, uint64_t flags)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001361{
Harish Kasiviswanathancc28c4e2017-05-11 22:39:31 -04001362 int r;
1363
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001364 /**
1365 * The MC L1 TLB supports variable sized pages, based on a fragment
1366 * field in the PTE. When this field is set to a non-zero value, page
1367 * granularity is increased from 4KB to (1 << (12 + frag)). The PTE
1368 * flags are considered valid for all PTEs within the fragment range
1369 * and corresponding mappings are assumed to be physically contiguous.
1370 *
1371 * The L1 TLB can store a single PTE for the whole fragment,
1372 * significantly increasing the space available for translation
1373 * caching. This leads to large improvements in throughput when the
1374 * TLB is under pressure.
1375 *
1376 * The L2 TLB distributes small and large fragments into two
1377 * asymmetric partitions. The large fragment cache is significantly
1378 * larger. Thus, we try to use large fragments wherever possible.
1379 * Userspace can support this by aligning virtual base address and
1380 * allocation size to the fragment size.
1381 */
1382
Christian König80366172016-10-04 13:39:43 +02001383 /* SI and newer are optimized for 64KB */
Christian König6be7adb2017-05-23 18:35:22 +02001384 unsigned pages_per_frag = AMDGPU_LOG2_PAGES_PER_FRAG(params->adev);
1385 uint64_t frag_flags = AMDGPU_PTE_FRAG(pages_per_frag);
1386 uint64_t frag_align = 1 << pages_per_frag;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001387
Christian König92696dd2016-08-05 13:56:35 +02001388 uint64_t frag_start = ALIGN(start, frag_align);
1389 uint64_t frag_end = end & ~(frag_align - 1);
Christian König31f6c1f2016-01-26 12:37:49 +01001390
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001391 /* system pages are non continuously */
Christian Königb7fc2cb2016-08-11 16:44:15 +02001392 if (params->src || !(flags & AMDGPU_PTE_VALID) ||
Harish Kasiviswanathancc28c4e2017-05-11 22:39:31 -04001393 (frag_start >= frag_end))
1394 return amdgpu_vm_update_ptes(params, start, end, dst, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001395
1396 /* handle the 4K area at the beginning */
Christian König92696dd2016-08-05 13:56:35 +02001397 if (start != frag_start) {
Harish Kasiviswanathancc28c4e2017-05-11 22:39:31 -04001398 r = amdgpu_vm_update_ptes(params, start, frag_start,
1399 dst, flags);
1400 if (r)
1401 return r;
Christian König92696dd2016-08-05 13:56:35 +02001402 dst += (frag_start - start) * AMDGPU_GPU_PAGE_SIZE;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001403 }
1404
1405 /* handle the area in the middle */
Harish Kasiviswanathancc28c4e2017-05-11 22:39:31 -04001406 r = amdgpu_vm_update_ptes(params, frag_start, frag_end, dst,
1407 flags | frag_flags);
1408 if (r)
1409 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001410
1411 /* handle the 4K area at the end */
Christian König92696dd2016-08-05 13:56:35 +02001412 if (frag_end != end) {
1413 dst += (frag_end - frag_start) * AMDGPU_GPU_PAGE_SIZE;
Harish Kasiviswanathancc28c4e2017-05-11 22:39:31 -04001414 r = amdgpu_vm_update_ptes(params, frag_end, end, dst, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001415 }
Harish Kasiviswanathancc28c4e2017-05-11 22:39:31 -04001416 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001417}
1418
1419/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001420 * amdgpu_vm_bo_update_mapping - update a mapping in the vm page table
1421 *
1422 * @adev: amdgpu_device pointer
Christian König3cabaa52016-06-06 10:17:58 +02001423 * @exclusive: fence we need to sync to
Christian Königfa3ab3c2016-03-18 21:00:35 +01001424 * @src: address where to copy page table entries from
1425 * @pages_addr: DMA addresses to use for mapping
Christian Königa14faa62016-01-25 14:27:31 +01001426 * @vm: requested vm
1427 * @start: start of mapped range
1428 * @last: last mapped entry
1429 * @flags: flags for the entries
1430 * @addr: addr to set the area to
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001431 * @fence: optional resulting fence
1432 *
Christian Königa14faa62016-01-25 14:27:31 +01001433 * Fill in the page table entries between @start and @last.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001434 * Returns 0 for success, -EINVAL for failure.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001435 */
1436static int amdgpu_vm_bo_update_mapping(struct amdgpu_device *adev,
Chris Wilsonf54d1862016-10-25 13:00:45 +01001437 struct dma_fence *exclusive,
Christian Königfa3ab3c2016-03-18 21:00:35 +01001438 uint64_t src,
1439 dma_addr_t *pages_addr,
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001440 struct amdgpu_vm *vm,
Christian Königa14faa62016-01-25 14:27:31 +01001441 uint64_t start, uint64_t last,
Chunming Zhou6b777602016-09-21 16:19:19 +08001442 uint64_t flags, uint64_t addr,
Chris Wilsonf54d1862016-10-25 13:00:45 +01001443 struct dma_fence **fence)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001444{
Christian König2d55e452016-02-08 17:37:38 +01001445 struct amdgpu_ring *ring;
Christian Königa1e08d32016-01-26 11:40:46 +01001446 void *owner = AMDGPU_FENCE_OWNER_VM;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001447 unsigned nptes, ncmds, ndw;
Christian Königd71518b2016-02-01 12:20:25 +01001448 struct amdgpu_job *job;
Christian König29efc4f2016-08-04 14:52:50 +02001449 struct amdgpu_pte_update_params params;
Chris Wilsonf54d1862016-10-25 13:00:45 +01001450 struct dma_fence *f = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001451 int r;
1452
Christian Königafef8b82016-08-12 13:29:18 +02001453 memset(&params, 0, sizeof(params));
1454 params.adev = adev;
Christian König49ac8a22016-10-13 15:09:08 +02001455 params.vm = vm;
Christian Königafef8b82016-08-12 13:29:18 +02001456 params.src = src;
1457
Christian Königa33cab72017-07-11 17:13:00 +02001458 /* sync to everything on unmapping */
1459 if (!(flags & AMDGPU_PTE_VALID))
1460 owner = AMDGPU_FENCE_OWNER_UNDEFINED;
1461
Harish Kasiviswanathanb4d42512017-05-11 19:47:22 -04001462 if (vm->use_cpu_for_update) {
1463 /* params.src is used as flag to indicate system Memory */
1464 if (pages_addr)
1465 params.src = ~0;
1466
1467 /* Wait for PT BOs to be free. PTs share the same resv. object
1468 * as the root PD BO
1469 */
Christian Königa33cab72017-07-11 17:13:00 +02001470 r = amdgpu_vm_wait_pd(adev, vm, owner);
Harish Kasiviswanathanb4d42512017-05-11 19:47:22 -04001471 if (unlikely(r))
1472 return r;
1473
1474 params.func = amdgpu_vm_cpu_set_ptes;
1475 params.pages_addr = pages_addr;
Harish Kasiviswanathanb4d42512017-05-11 19:47:22 -04001476 return amdgpu_vm_frag_ptes(&params, start, last + 1,
1477 addr, flags);
1478 }
1479
Christian König2d55e452016-02-08 17:37:38 +01001480 ring = container_of(vm->entity.sched, struct amdgpu_ring, sched);
Christian König27c5f362016-08-04 15:02:49 +02001481
Christian Königa14faa62016-01-25 14:27:31 +01001482 nptes = last - start + 1;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001483
1484 /*
1485 * reserve space for one command every (1 << BLOCK_SIZE)
1486 * entries or 2k dwords (whatever is smaller)
1487 */
Zhang, Jerry36b32a62017-03-29 16:08:32 +08001488 ncmds = (nptes >> min(adev->vm_manager.block_size, 11u)) + 1;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001489
1490 /* padding, etc. */
1491 ndw = 64;
1492
Christian Königb0456f92016-08-11 14:06:54 +02001493 if (src) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001494 /* only copy commands needed */
1495 ndw += ncmds * 7;
1496
Christian Königafef8b82016-08-12 13:29:18 +02001497 params.func = amdgpu_vm_do_copy_ptes;
1498
Christian Königb0456f92016-08-11 14:06:54 +02001499 } else if (pages_addr) {
1500 /* copy commands needed */
1501 ndw += ncmds * 7;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001502
Christian Königb0456f92016-08-11 14:06:54 +02001503 /* and also PTEs */
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001504 ndw += nptes * 2;
1505
Christian Königafef8b82016-08-12 13:29:18 +02001506 params.func = amdgpu_vm_do_copy_ptes;
1507
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001508 } else {
1509 /* set page commands needed */
1510 ndw += ncmds * 10;
1511
1512 /* two extra commands for begin/end of fragment */
1513 ndw += 2 * 10;
Christian Königafef8b82016-08-12 13:29:18 +02001514
1515 params.func = amdgpu_vm_do_set_ptes;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001516 }
1517
Christian Königd71518b2016-02-01 12:20:25 +01001518 r = amdgpu_job_alloc_with_ib(adev, ndw * 4, &job);
1519 if (r)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001520 return r;
Christian Königd71518b2016-02-01 12:20:25 +01001521
Christian König29efc4f2016-08-04 14:52:50 +02001522 params.ib = &job->ibs[0];
Chunming Zhoud5fc5e82015-07-21 16:52:10 +08001523
Christian Königb0456f92016-08-11 14:06:54 +02001524 if (!src && pages_addr) {
1525 uint64_t *pte;
1526 unsigned i;
1527
1528 /* Put the PTEs at the end of the IB. */
1529 i = ndw - nptes * 2;
1530 pte= (uint64_t *)&(job->ibs->ptr[i]);
1531 params.src = job->ibs->gpu_addr + i * 4;
1532
1533 for (i = 0; i < nptes; ++i) {
1534 pte[i] = amdgpu_vm_map_gart(pages_addr, addr + i *
1535 AMDGPU_GPU_PAGE_SIZE);
1536 pte[i] |= flags;
1537 }
Christian Königd7a4ac62016-09-25 11:54:00 +02001538 addr = 0;
Christian Königb0456f92016-08-11 14:06:54 +02001539 }
1540
Christian König3cabaa52016-06-06 10:17:58 +02001541 r = amdgpu_sync_fence(adev, &job->sync, exclusive);
1542 if (r)
1543 goto error_free;
1544
Christian König67003a12016-10-12 14:46:26 +02001545 r = amdgpu_sync_resv(adev, &job->sync, vm->root.bo->tbo.resv,
Christian Königa1e08d32016-01-26 11:40:46 +01001546 owner);
1547 if (r)
1548 goto error_free;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001549
Christian König67003a12016-10-12 14:46:26 +02001550 r = reservation_object_reserve_shared(vm->root.bo->tbo.resv);
Christian Königa1e08d32016-01-26 11:40:46 +01001551 if (r)
1552 goto error_free;
1553
Harish Kasiviswanathancc28c4e2017-05-11 22:39:31 -04001554 r = amdgpu_vm_frag_ptes(&params, start, last + 1, addr, flags);
1555 if (r)
1556 goto error_free;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001557
Christian König29efc4f2016-08-04 14:52:50 +02001558 amdgpu_ring_pad_ib(ring, params.ib);
1559 WARN_ON(params.ib->length_dw > ndw);
Christian König2bd9ccf2016-02-01 12:53:58 +01001560 r = amdgpu_job_submit(job, ring, &vm->entity,
1561 AMDGPU_FENCE_OWNER_VM, &f);
Chunming Zhou4af9f072015-08-03 12:57:31 +08001562 if (r)
1563 goto error_free;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001564
Christian König67003a12016-10-12 14:46:26 +02001565 amdgpu_bo_fence(vm->root.bo, f, true);
Christian König284710f2017-01-30 11:09:31 +01001566 dma_fence_put(*fence);
1567 *fence = f;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001568 return 0;
Chunming Zhoud5fc5e82015-07-21 16:52:10 +08001569
1570error_free:
Christian Königd71518b2016-02-01 12:20:25 +01001571 amdgpu_job_free(job);
Chunming Zhou4af9f072015-08-03 12:57:31 +08001572 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001573}
1574
1575/**
Christian Königa14faa62016-01-25 14:27:31 +01001576 * amdgpu_vm_bo_split_mapping - split a mapping into smaller chunks
1577 *
1578 * @adev: amdgpu_device pointer
Christian König3cabaa52016-06-06 10:17:58 +02001579 * @exclusive: fence we need to sync to
Christian König8358dce2016-03-30 10:50:25 +02001580 * @gtt_flags: flags as they are used for GTT
1581 * @pages_addr: DMA addresses to use for mapping
Christian Königa14faa62016-01-25 14:27:31 +01001582 * @vm: requested vm
1583 * @mapping: mapped range and flags to use for the update
Christian König8358dce2016-03-30 10:50:25 +02001584 * @flags: HW flags for the mapping
Christian König63e0ba42016-08-16 17:38:37 +02001585 * @nodes: array of drm_mm_nodes with the MC addresses
Christian Königa14faa62016-01-25 14:27:31 +01001586 * @fence: optional resulting fence
1587 *
1588 * Split the mapping into smaller chunks so that each update fits
1589 * into a SDMA IB.
1590 * Returns 0 for success, -EINVAL for failure.
1591 */
1592static int amdgpu_vm_bo_split_mapping(struct amdgpu_device *adev,
Chris Wilsonf54d1862016-10-25 13:00:45 +01001593 struct dma_fence *exclusive,
Chunming Zhou6b777602016-09-21 16:19:19 +08001594 uint64_t gtt_flags,
Christian König8358dce2016-03-30 10:50:25 +02001595 dma_addr_t *pages_addr,
Christian Königa14faa62016-01-25 14:27:31 +01001596 struct amdgpu_vm *vm,
1597 struct amdgpu_bo_va_mapping *mapping,
Chunming Zhou6b777602016-09-21 16:19:19 +08001598 uint64_t flags,
Christian König63e0ba42016-08-16 17:38:37 +02001599 struct drm_mm_node *nodes,
Chris Wilsonf54d1862016-10-25 13:00:45 +01001600 struct dma_fence **fence)
Christian Königa14faa62016-01-25 14:27:31 +01001601{
Christian Königa9f87f62017-03-30 14:03:59 +02001602 uint64_t pfn, src = 0, start = mapping->start;
Christian Königa14faa62016-01-25 14:27:31 +01001603 int r;
1604
1605 /* normally,bo_va->flags only contians READABLE and WIRTEABLE bit go here
1606 * but in case of something, we filter the flags in first place
1607 */
1608 if (!(mapping->flags & AMDGPU_PTE_READABLE))
1609 flags &= ~AMDGPU_PTE_READABLE;
1610 if (!(mapping->flags & AMDGPU_PTE_WRITEABLE))
1611 flags &= ~AMDGPU_PTE_WRITEABLE;
1612
Alex Xie15b31c52017-03-03 16:47:11 -05001613 flags &= ~AMDGPU_PTE_EXECUTABLE;
1614 flags |= mapping->flags & AMDGPU_PTE_EXECUTABLE;
1615
Alex Xieb0fd18b2017-03-03 16:49:39 -05001616 flags &= ~AMDGPU_PTE_MTYPE_MASK;
1617 flags |= (mapping->flags & AMDGPU_PTE_MTYPE_MASK);
1618
Zhang, Jerryd0766e92017-04-19 09:53:29 +08001619 if ((mapping->flags & AMDGPU_PTE_PRT) &&
1620 (adev->asic_type >= CHIP_VEGA10)) {
1621 flags |= AMDGPU_PTE_PRT;
1622 flags &= ~AMDGPU_PTE_VALID;
1623 }
1624
Christian Königa14faa62016-01-25 14:27:31 +01001625 trace_amdgpu_vm_bo_update(mapping);
1626
Christian König63e0ba42016-08-16 17:38:37 +02001627 pfn = mapping->offset >> PAGE_SHIFT;
1628 if (nodes) {
1629 while (pfn >= nodes->size) {
1630 pfn -= nodes->size;
1631 ++nodes;
1632 }
Christian Königfa3ab3c2016-03-18 21:00:35 +01001633 }
Christian Königa14faa62016-01-25 14:27:31 +01001634
Christian König63e0ba42016-08-16 17:38:37 +02001635 do {
1636 uint64_t max_entries;
1637 uint64_t addr, last;
Christian Königa14faa62016-01-25 14:27:31 +01001638
Christian König63e0ba42016-08-16 17:38:37 +02001639 if (nodes) {
1640 addr = nodes->start << PAGE_SHIFT;
1641 max_entries = (nodes->size - pfn) *
1642 (PAGE_SIZE / AMDGPU_GPU_PAGE_SIZE);
1643 } else {
1644 addr = 0;
1645 max_entries = S64_MAX;
1646 }
Christian Königa14faa62016-01-25 14:27:31 +01001647
Christian König63e0ba42016-08-16 17:38:37 +02001648 if (pages_addr) {
1649 if (flags == gtt_flags)
1650 src = adev->gart.table_addr +
1651 (addr >> AMDGPU_GPU_PAGE_SHIFT) * 8;
1652 else
1653 max_entries = min(max_entries, 16ull * 1024ull);
1654 addr = 0;
1655 } else if (flags & AMDGPU_PTE_VALID) {
1656 addr += adev->vm_manager.vram_base_offset;
1657 }
1658 addr += pfn << PAGE_SHIFT;
1659
Christian Königa9f87f62017-03-30 14:03:59 +02001660 last = min((uint64_t)mapping->last, start + max_entries - 1);
Christian König3cabaa52016-06-06 10:17:58 +02001661 r = amdgpu_vm_bo_update_mapping(adev, exclusive,
1662 src, pages_addr, vm,
Christian Königa14faa62016-01-25 14:27:31 +01001663 start, last, flags, addr,
1664 fence);
1665 if (r)
1666 return r;
1667
Christian König63e0ba42016-08-16 17:38:37 +02001668 pfn += last - start + 1;
1669 if (nodes && nodes->size == pfn) {
1670 pfn = 0;
1671 ++nodes;
1672 }
Christian Königa14faa62016-01-25 14:27:31 +01001673 start = last + 1;
Christian König63e0ba42016-08-16 17:38:37 +02001674
Christian Königa9f87f62017-03-30 14:03:59 +02001675 } while (unlikely(start != mapping->last + 1));
Christian Königa14faa62016-01-25 14:27:31 +01001676
1677 return 0;
1678}
1679
1680/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001681 * amdgpu_vm_bo_update - update all BO mappings in the vm page table
1682 *
1683 * @adev: amdgpu_device pointer
1684 * @bo_va: requested BO and VM object
Christian König99e124f2016-08-16 14:43:17 +02001685 * @clear: if true clear the entries
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001686 *
1687 * Fill in the page table entries for @bo_va.
1688 * Returns 0 for success, -EINVAL for failure.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001689 */
1690int amdgpu_vm_bo_update(struct amdgpu_device *adev,
1691 struct amdgpu_bo_va *bo_va,
Christian König99e124f2016-08-16 14:43:17 +02001692 bool clear)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001693{
1694 struct amdgpu_vm *vm = bo_va->vm;
1695 struct amdgpu_bo_va_mapping *mapping;
Christian König8358dce2016-03-30 10:50:25 +02001696 dma_addr_t *pages_addr = NULL;
Chunming Zhou6b777602016-09-21 16:19:19 +08001697 uint64_t gtt_flags, flags;
Christian König99e124f2016-08-16 14:43:17 +02001698 struct ttm_mem_reg *mem;
Christian König63e0ba42016-08-16 17:38:37 +02001699 struct drm_mm_node *nodes;
Chris Wilsonf54d1862016-10-25 13:00:45 +01001700 struct dma_fence *exclusive;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001701 int r;
1702
Christian Königa5f6b5b2017-01-30 11:01:38 +01001703 if (clear || !bo_va->bo) {
Christian König99e124f2016-08-16 14:43:17 +02001704 mem = NULL;
Christian König63e0ba42016-08-16 17:38:37 +02001705 nodes = NULL;
Christian König99e124f2016-08-16 14:43:17 +02001706 exclusive = NULL;
1707 } else {
Christian König8358dce2016-03-30 10:50:25 +02001708 struct ttm_dma_tt *ttm;
1709
Christian König99e124f2016-08-16 14:43:17 +02001710 mem = &bo_va->bo->tbo.mem;
Christian König63e0ba42016-08-16 17:38:37 +02001711 nodes = mem->mm_node;
1712 if (mem->mem_type == TTM_PL_TT) {
Christian König8358dce2016-03-30 10:50:25 +02001713 ttm = container_of(bo_va->bo->tbo.ttm, struct
1714 ttm_dma_tt, ttm);
1715 pages_addr = ttm->dma_address;
Christian König9ab21462015-11-30 14:19:26 +01001716 }
Christian König3cabaa52016-06-06 10:17:58 +02001717 exclusive = reservation_object_get_excl(bo_va->bo->tbo.resv);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001718 }
1719
Christian Königa5f6b5b2017-01-30 11:01:38 +01001720 if (bo_va->bo) {
1721 flags = amdgpu_ttm_tt_pte_flags(adev, bo_va->bo->tbo.ttm, mem);
1722 gtt_flags = (amdgpu_ttm_is_bound(bo_va->bo->tbo.ttm) &&
1723 adev == amdgpu_ttm_adev(bo_va->bo->tbo.bdev)) ?
1724 flags : 0;
1725 } else {
1726 flags = 0x0;
1727 gtt_flags = ~0x0;
1728 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001729
Christian König7fc11952015-07-30 11:53:42 +02001730 spin_lock(&vm->status_lock);
1731 if (!list_empty(&bo_va->vm_status))
1732 list_splice_init(&bo_va->valids, &bo_va->invalids);
1733 spin_unlock(&vm->status_lock);
1734
1735 list_for_each_entry(mapping, &bo_va->invalids, list) {
Christian König3cabaa52016-06-06 10:17:58 +02001736 r = amdgpu_vm_bo_split_mapping(adev, exclusive,
1737 gtt_flags, pages_addr, vm,
Christian König63e0ba42016-08-16 17:38:37 +02001738 mapping, flags, nodes,
Christian König8358dce2016-03-30 10:50:25 +02001739 &bo_va->last_pt_update);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001740 if (r)
1741 return r;
1742 }
1743
Christian Königd6c10f62015-09-28 12:00:23 +02001744 if (trace_amdgpu_vm_bo_mapping_enabled()) {
1745 list_for_each_entry(mapping, &bo_va->valids, list)
1746 trace_amdgpu_vm_bo_mapping(mapping);
1747
1748 list_for_each_entry(mapping, &bo_va->invalids, list)
1749 trace_amdgpu_vm_bo_mapping(mapping);
1750 }
1751
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001752 spin_lock(&vm->status_lock);
monk.liu6d1d0ef2015-08-14 13:36:41 +08001753 list_splice_init(&bo_va->invalids, &bo_va->valids);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001754 list_del_init(&bo_va->vm_status);
Christian König99e124f2016-08-16 14:43:17 +02001755 if (clear)
Christian König7fc11952015-07-30 11:53:42 +02001756 list_add(&bo_va->vm_status, &vm->cleared);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001757 spin_unlock(&vm->status_lock);
1758
Christian König68c62302017-07-11 17:23:29 +02001759 if (vm->use_cpu_for_update) {
1760 /* Flush HDP */
1761 mb();
1762 amdgpu_gart_flush_gpu_tlb(adev, 0);
1763 }
1764
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001765 return 0;
1766}
1767
1768/**
Christian König284710f2017-01-30 11:09:31 +01001769 * amdgpu_vm_update_prt_state - update the global PRT state
1770 */
1771static void amdgpu_vm_update_prt_state(struct amdgpu_device *adev)
1772{
1773 unsigned long flags;
1774 bool enable;
1775
1776 spin_lock_irqsave(&adev->vm_manager.prt_lock, flags);
Christian König451bc8e2017-02-14 16:02:52 +01001777 enable = !!atomic_read(&adev->vm_manager.num_prt_users);
Christian König284710f2017-01-30 11:09:31 +01001778 adev->gart.gart_funcs->set_prt(adev, enable);
1779 spin_unlock_irqrestore(&adev->vm_manager.prt_lock, flags);
1780}
1781
1782/**
Christian König4388fc22017-03-13 10:13:36 +01001783 * amdgpu_vm_prt_get - add a PRT user
Christian König451bc8e2017-02-14 16:02:52 +01001784 */
1785static void amdgpu_vm_prt_get(struct amdgpu_device *adev)
1786{
Christian König4388fc22017-03-13 10:13:36 +01001787 if (!adev->gart.gart_funcs->set_prt)
1788 return;
1789
Christian König451bc8e2017-02-14 16:02:52 +01001790 if (atomic_inc_return(&adev->vm_manager.num_prt_users) == 1)
1791 amdgpu_vm_update_prt_state(adev);
1792}
1793
1794/**
Christian König0b15f2f2017-02-14 15:47:03 +01001795 * amdgpu_vm_prt_put - drop a PRT user
1796 */
1797static void amdgpu_vm_prt_put(struct amdgpu_device *adev)
1798{
Christian König451bc8e2017-02-14 16:02:52 +01001799 if (atomic_dec_return(&adev->vm_manager.num_prt_users) == 0)
Christian König0b15f2f2017-02-14 15:47:03 +01001800 amdgpu_vm_update_prt_state(adev);
1801}
1802
1803/**
Christian König451bc8e2017-02-14 16:02:52 +01001804 * amdgpu_vm_prt_cb - callback for updating the PRT status
Christian König284710f2017-01-30 11:09:31 +01001805 */
1806static void amdgpu_vm_prt_cb(struct dma_fence *fence, struct dma_fence_cb *_cb)
1807{
1808 struct amdgpu_prt_cb *cb = container_of(_cb, struct amdgpu_prt_cb, cb);
1809
Christian König0b15f2f2017-02-14 15:47:03 +01001810 amdgpu_vm_prt_put(cb->adev);
Christian König284710f2017-01-30 11:09:31 +01001811 kfree(cb);
1812}
1813
1814/**
Christian König451bc8e2017-02-14 16:02:52 +01001815 * amdgpu_vm_add_prt_cb - add callback for updating the PRT status
1816 */
1817static void amdgpu_vm_add_prt_cb(struct amdgpu_device *adev,
1818 struct dma_fence *fence)
1819{
Christian König4388fc22017-03-13 10:13:36 +01001820 struct amdgpu_prt_cb *cb;
Christian König451bc8e2017-02-14 16:02:52 +01001821
Christian König4388fc22017-03-13 10:13:36 +01001822 if (!adev->gart.gart_funcs->set_prt)
1823 return;
1824
1825 cb = kmalloc(sizeof(struct amdgpu_prt_cb), GFP_KERNEL);
Christian König451bc8e2017-02-14 16:02:52 +01001826 if (!cb) {
1827 /* Last resort when we are OOM */
1828 if (fence)
1829 dma_fence_wait(fence, false);
1830
Dan Carpenter486a68f2017-04-03 21:41:39 +03001831 amdgpu_vm_prt_put(adev);
Christian König451bc8e2017-02-14 16:02:52 +01001832 } else {
1833 cb->adev = adev;
1834 if (!fence || dma_fence_add_callback(fence, &cb->cb,
1835 amdgpu_vm_prt_cb))
1836 amdgpu_vm_prt_cb(fence, &cb->cb);
1837 }
1838}
1839
1840/**
Christian König284710f2017-01-30 11:09:31 +01001841 * amdgpu_vm_free_mapping - free a mapping
1842 *
1843 * @adev: amdgpu_device pointer
1844 * @vm: requested vm
1845 * @mapping: mapping to be freed
1846 * @fence: fence of the unmap operation
1847 *
1848 * Free a mapping and make sure we decrease the PRT usage count if applicable.
1849 */
1850static void amdgpu_vm_free_mapping(struct amdgpu_device *adev,
1851 struct amdgpu_vm *vm,
1852 struct amdgpu_bo_va_mapping *mapping,
1853 struct dma_fence *fence)
1854{
Christian König451bc8e2017-02-14 16:02:52 +01001855 if (mapping->flags & AMDGPU_PTE_PRT)
1856 amdgpu_vm_add_prt_cb(adev, fence);
Christian König284710f2017-01-30 11:09:31 +01001857 kfree(mapping);
1858}
1859
1860/**
Christian König451bc8e2017-02-14 16:02:52 +01001861 * amdgpu_vm_prt_fini - finish all prt mappings
1862 *
1863 * @adev: amdgpu_device pointer
1864 * @vm: requested vm
1865 *
1866 * Register a cleanup callback to disable PRT support after VM dies.
1867 */
1868static void amdgpu_vm_prt_fini(struct amdgpu_device *adev, struct amdgpu_vm *vm)
1869{
Christian König67003a12016-10-12 14:46:26 +02001870 struct reservation_object *resv = vm->root.bo->tbo.resv;
Christian König451bc8e2017-02-14 16:02:52 +01001871 struct dma_fence *excl, **shared;
1872 unsigned i, shared_count;
1873 int r;
1874
1875 r = reservation_object_get_fences_rcu(resv, &excl,
1876 &shared_count, &shared);
1877 if (r) {
1878 /* Not enough memory to grab the fence list, as last resort
1879 * block for all the fences to complete.
1880 */
1881 reservation_object_wait_timeout_rcu(resv, true, false,
1882 MAX_SCHEDULE_TIMEOUT);
1883 return;
1884 }
1885
1886 /* Add a callback for each fence in the reservation object */
1887 amdgpu_vm_prt_get(adev);
1888 amdgpu_vm_add_prt_cb(adev, excl);
1889
1890 for (i = 0; i < shared_count; ++i) {
1891 amdgpu_vm_prt_get(adev);
1892 amdgpu_vm_add_prt_cb(adev, shared[i]);
1893 }
1894
1895 kfree(shared);
1896}
1897
1898/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001899 * amdgpu_vm_clear_freed - clear freed BOs in the PT
1900 *
1901 * @adev: amdgpu_device pointer
1902 * @vm: requested vm
Nicolai Hähnlef3467812017-03-23 19:36:31 +01001903 * @fence: optional resulting fence (unchanged if no work needed to be done
1904 * or if an error occurred)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001905 *
1906 * Make sure all freed BOs are cleared in the PT.
1907 * Returns 0 for success.
1908 *
1909 * PTs have to be reserved and mutex must be locked!
1910 */
1911int amdgpu_vm_clear_freed(struct amdgpu_device *adev,
Nicolai Hähnlef3467812017-03-23 19:36:31 +01001912 struct amdgpu_vm *vm,
1913 struct dma_fence **fence)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001914{
1915 struct amdgpu_bo_va_mapping *mapping;
Nicolai Hähnlef3467812017-03-23 19:36:31 +01001916 struct dma_fence *f = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001917 int r;
1918
1919 while (!list_empty(&vm->freed)) {
1920 mapping = list_first_entry(&vm->freed,
1921 struct amdgpu_bo_va_mapping, list);
1922 list_del(&mapping->list);
Christian Könige17841b2016-03-08 17:52:01 +01001923
Christian Königfc6aa332017-04-19 14:41:19 +02001924 r = amdgpu_vm_bo_update_mapping(adev, NULL, 0, NULL, vm,
1925 mapping->start, mapping->last,
1926 0, 0, &f);
Nicolai Hähnlef3467812017-03-23 19:36:31 +01001927 amdgpu_vm_free_mapping(adev, vm, mapping, f);
Christian König284710f2017-01-30 11:09:31 +01001928 if (r) {
Nicolai Hähnlef3467812017-03-23 19:36:31 +01001929 dma_fence_put(f);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001930 return r;
Christian König284710f2017-01-30 11:09:31 +01001931 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001932 }
Nicolai Hähnlef3467812017-03-23 19:36:31 +01001933
1934 if (fence && f) {
1935 dma_fence_put(*fence);
1936 *fence = f;
1937 } else {
1938 dma_fence_put(f);
1939 }
1940
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001941 return 0;
1942
1943}
1944
1945/**
1946 * amdgpu_vm_clear_invalids - clear invalidated BOs in the PT
1947 *
1948 * @adev: amdgpu_device pointer
1949 * @vm: requested vm
1950 *
1951 * Make sure all invalidated BOs are cleared in the PT.
1952 * Returns 0 for success.
1953 *
1954 * PTs have to be reserved and mutex must be locked!
1955 */
1956int amdgpu_vm_clear_invalids(struct amdgpu_device *adev,
monk.liucfe2c972015-05-26 15:01:54 +08001957 struct amdgpu_vm *vm, struct amdgpu_sync *sync)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001958{
monk.liucfe2c972015-05-26 15:01:54 +08001959 struct amdgpu_bo_va *bo_va = NULL;
Christian König91e1a522015-07-06 22:06:40 +02001960 int r = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001961
1962 spin_lock(&vm->status_lock);
1963 while (!list_empty(&vm->invalidated)) {
1964 bo_va = list_first_entry(&vm->invalidated,
1965 struct amdgpu_bo_va, vm_status);
1966 spin_unlock(&vm->status_lock);
Christian König32b41ac2016-03-08 18:03:27 +01001967
Christian König99e124f2016-08-16 14:43:17 +02001968 r = amdgpu_vm_bo_update(adev, bo_va, true);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001969 if (r)
1970 return r;
1971
1972 spin_lock(&vm->status_lock);
1973 }
1974 spin_unlock(&vm->status_lock);
1975
monk.liucfe2c972015-05-26 15:01:54 +08001976 if (bo_va)
Chunming Zhoubb1e38a42015-08-03 18:19:38 +08001977 r = amdgpu_sync_fence(adev, sync, bo_va->last_pt_update);
Christian König91e1a522015-07-06 22:06:40 +02001978
1979 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001980}
1981
1982/**
1983 * amdgpu_vm_bo_add - add a bo to a specific vm
1984 *
1985 * @adev: amdgpu_device pointer
1986 * @vm: requested vm
1987 * @bo: amdgpu buffer object
1988 *
Christian König8843dbb2016-01-26 12:17:11 +01001989 * Add @bo into the requested vm.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001990 * Add @bo to the list of bos associated with the vm
1991 * Returns newly added bo_va or NULL for failure
1992 *
1993 * Object has to be reserved!
1994 */
1995struct amdgpu_bo_va *amdgpu_vm_bo_add(struct amdgpu_device *adev,
1996 struct amdgpu_vm *vm,
1997 struct amdgpu_bo *bo)
1998{
1999 struct amdgpu_bo_va *bo_va;
2000
2001 bo_va = kzalloc(sizeof(struct amdgpu_bo_va), GFP_KERNEL);
2002 if (bo_va == NULL) {
2003 return NULL;
2004 }
2005 bo_va->vm = vm;
2006 bo_va->bo = bo;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002007 bo_va->ref_count = 1;
2008 INIT_LIST_HEAD(&bo_va->bo_list);
Christian König7fc11952015-07-30 11:53:42 +02002009 INIT_LIST_HEAD(&bo_va->valids);
2010 INIT_LIST_HEAD(&bo_va->invalids);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002011 INIT_LIST_HEAD(&bo_va->vm_status);
Christian König32b41ac2016-03-08 18:03:27 +01002012
Christian Königa5f6b5b2017-01-30 11:01:38 +01002013 if (bo)
2014 list_add_tail(&bo_va->bo_list, &bo->va);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002015
2016 return bo_va;
2017}
2018
2019/**
2020 * amdgpu_vm_bo_map - map bo inside a vm
2021 *
2022 * @adev: amdgpu_device pointer
2023 * @bo_va: bo_va to store the address
2024 * @saddr: where to map the BO
2025 * @offset: requested offset in the BO
2026 * @flags: attributes of pages (read/write/valid/etc.)
2027 *
2028 * Add a mapping of the BO at the specefied addr into the VM.
2029 * Returns 0 for success, error for failure.
2030 *
Chunming Zhou49b02b12015-11-13 14:18:38 +08002031 * Object has to be reserved and unreserved outside!
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002032 */
2033int amdgpu_vm_bo_map(struct amdgpu_device *adev,
2034 struct amdgpu_bo_va *bo_va,
2035 uint64_t saddr, uint64_t offset,
Christian König268c3002017-01-18 14:49:43 +01002036 uint64_t size, uint64_t flags)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002037{
Christian Königa9f87f62017-03-30 14:03:59 +02002038 struct amdgpu_bo_va_mapping *mapping, *tmp;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002039 struct amdgpu_vm *vm = bo_va->vm;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002040 uint64_t eaddr;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002041
Christian König0be52de2015-05-18 14:37:27 +02002042 /* validate the parameters */
2043 if (saddr & AMDGPU_GPU_PAGE_MASK || offset & AMDGPU_GPU_PAGE_MASK ||
Chunming Zhou49b02b12015-11-13 14:18:38 +08002044 size == 0 || size & AMDGPU_GPU_PAGE_MASK)
Christian König0be52de2015-05-18 14:37:27 +02002045 return -EINVAL;
Christian König0be52de2015-05-18 14:37:27 +02002046
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002047 /* make sure object fit at this offset */
Felix Kuehling005ae952015-11-23 17:43:48 -05002048 eaddr = saddr + size - 1;
Christian Königa5f6b5b2017-01-30 11:01:38 +01002049 if (saddr >= eaddr ||
2050 (bo_va->bo && offset + size > amdgpu_bo_size(bo_va->bo)))
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002051 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002052
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002053 saddr /= AMDGPU_GPU_PAGE_SIZE;
2054 eaddr /= AMDGPU_GPU_PAGE_SIZE;
2055
Christian Königa9f87f62017-03-30 14:03:59 +02002056 tmp = amdgpu_vm_it_iter_first(&vm->va, saddr, eaddr);
2057 if (tmp) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002058 /* bo and tmp overlap, invalid addr */
2059 dev_err(adev->dev, "bo %p va 0x%010Lx-0x%010Lx conflict with "
Christian Königa9f87f62017-03-30 14:03:59 +02002060 "0x%010Lx-0x%010Lx\n", bo_va->bo, saddr, eaddr,
2061 tmp->start, tmp->last + 1);
Christian König663e4572017-03-13 10:13:37 +01002062 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002063 }
2064
2065 mapping = kmalloc(sizeof(*mapping), GFP_KERNEL);
Christian König663e4572017-03-13 10:13:37 +01002066 if (!mapping)
2067 return -ENOMEM;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002068
2069 INIT_LIST_HEAD(&mapping->list);
Christian Königa9f87f62017-03-30 14:03:59 +02002070 mapping->start = saddr;
2071 mapping->last = eaddr;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002072 mapping->offset = offset;
2073 mapping->flags = flags;
2074
Christian König7fc11952015-07-30 11:53:42 +02002075 list_add(&mapping->list, &bo_va->invalids);
Christian Königa9f87f62017-03-30 14:03:59 +02002076 amdgpu_vm_it_insert(mapping, &vm->va);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002077
Christian König4388fc22017-03-13 10:13:36 +01002078 if (flags & AMDGPU_PTE_PRT)
2079 amdgpu_vm_prt_get(adev);
2080
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002081 return 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002082}
2083
2084/**
Christian König80f95c52017-03-13 10:13:39 +01002085 * amdgpu_vm_bo_replace_map - map bo inside a vm, replacing existing mappings
2086 *
2087 * @adev: amdgpu_device pointer
2088 * @bo_va: bo_va to store the address
2089 * @saddr: where to map the BO
2090 * @offset: requested offset in the BO
2091 * @flags: attributes of pages (read/write/valid/etc.)
2092 *
2093 * Add a mapping of the BO at the specefied addr into the VM. Replace existing
2094 * mappings as we do so.
2095 * Returns 0 for success, error for failure.
2096 *
2097 * Object has to be reserved and unreserved outside!
2098 */
2099int amdgpu_vm_bo_replace_map(struct amdgpu_device *adev,
2100 struct amdgpu_bo_va *bo_va,
2101 uint64_t saddr, uint64_t offset,
2102 uint64_t size, uint64_t flags)
2103{
2104 struct amdgpu_bo_va_mapping *mapping;
2105 struct amdgpu_vm *vm = bo_va->vm;
2106 uint64_t eaddr;
2107 int r;
2108
2109 /* validate the parameters */
2110 if (saddr & AMDGPU_GPU_PAGE_MASK || offset & AMDGPU_GPU_PAGE_MASK ||
2111 size == 0 || size & AMDGPU_GPU_PAGE_MASK)
2112 return -EINVAL;
2113
2114 /* make sure object fit at this offset */
2115 eaddr = saddr + size - 1;
2116 if (saddr >= eaddr ||
2117 (bo_va->bo && offset + size > amdgpu_bo_size(bo_va->bo)))
2118 return -EINVAL;
2119
2120 /* Allocate all the needed memory */
2121 mapping = kmalloc(sizeof(*mapping), GFP_KERNEL);
2122 if (!mapping)
2123 return -ENOMEM;
2124
2125 r = amdgpu_vm_bo_clear_mappings(adev, bo_va->vm, saddr, size);
2126 if (r) {
2127 kfree(mapping);
2128 return r;
2129 }
2130
2131 saddr /= AMDGPU_GPU_PAGE_SIZE;
2132 eaddr /= AMDGPU_GPU_PAGE_SIZE;
2133
Christian Königa9f87f62017-03-30 14:03:59 +02002134 mapping->start = saddr;
2135 mapping->last = eaddr;
Christian König80f95c52017-03-13 10:13:39 +01002136 mapping->offset = offset;
2137 mapping->flags = flags;
2138
2139 list_add(&mapping->list, &bo_va->invalids);
Christian Königa9f87f62017-03-30 14:03:59 +02002140 amdgpu_vm_it_insert(mapping, &vm->va);
Christian König80f95c52017-03-13 10:13:39 +01002141
2142 if (flags & AMDGPU_PTE_PRT)
2143 amdgpu_vm_prt_get(adev);
2144
2145 return 0;
2146}
2147
2148/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002149 * amdgpu_vm_bo_unmap - remove bo mapping from vm
2150 *
2151 * @adev: amdgpu_device pointer
2152 * @bo_va: bo_va to remove the address from
2153 * @saddr: where to the BO is mapped
2154 *
2155 * Remove a mapping of the BO at the specefied addr from the VM.
2156 * Returns 0 for success, error for failure.
2157 *
Chunming Zhou49b02b12015-11-13 14:18:38 +08002158 * Object has to be reserved and unreserved outside!
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002159 */
2160int amdgpu_vm_bo_unmap(struct amdgpu_device *adev,
2161 struct amdgpu_bo_va *bo_va,
2162 uint64_t saddr)
2163{
2164 struct amdgpu_bo_va_mapping *mapping;
2165 struct amdgpu_vm *vm = bo_va->vm;
Christian König7fc11952015-07-30 11:53:42 +02002166 bool valid = true;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002167
Christian König6c7fc502015-06-05 20:56:17 +02002168 saddr /= AMDGPU_GPU_PAGE_SIZE;
Christian König32b41ac2016-03-08 18:03:27 +01002169
Christian König7fc11952015-07-30 11:53:42 +02002170 list_for_each_entry(mapping, &bo_va->valids, list) {
Christian Königa9f87f62017-03-30 14:03:59 +02002171 if (mapping->start == saddr)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002172 break;
2173 }
2174
Christian König7fc11952015-07-30 11:53:42 +02002175 if (&mapping->list == &bo_va->valids) {
2176 valid = false;
2177
2178 list_for_each_entry(mapping, &bo_va->invalids, list) {
Christian Königa9f87f62017-03-30 14:03:59 +02002179 if (mapping->start == saddr)
Christian König7fc11952015-07-30 11:53:42 +02002180 break;
2181 }
2182
Christian König32b41ac2016-03-08 18:03:27 +01002183 if (&mapping->list == &bo_va->invalids)
Christian König7fc11952015-07-30 11:53:42 +02002184 return -ENOENT;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002185 }
Christian König32b41ac2016-03-08 18:03:27 +01002186
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002187 list_del(&mapping->list);
Christian Königa9f87f62017-03-30 14:03:59 +02002188 amdgpu_vm_it_remove(mapping, &vm->va);
Christian König93e3e432015-06-09 16:58:33 +02002189 trace_amdgpu_vm_bo_unmap(bo_va, mapping);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002190
Christian Könige17841b2016-03-08 17:52:01 +01002191 if (valid)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002192 list_add(&mapping->list, &vm->freed);
Christian Könige17841b2016-03-08 17:52:01 +01002193 else
Christian König284710f2017-01-30 11:09:31 +01002194 amdgpu_vm_free_mapping(adev, vm, mapping,
2195 bo_va->last_pt_update);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002196
2197 return 0;
2198}
2199
2200/**
Christian Königdc54d3d2017-03-13 10:13:38 +01002201 * amdgpu_vm_bo_clear_mappings - remove all mappings in a specific range
2202 *
2203 * @adev: amdgpu_device pointer
2204 * @vm: VM structure to use
2205 * @saddr: start of the range
2206 * @size: size of the range
2207 *
2208 * Remove all mappings in a range, split them as appropriate.
2209 * Returns 0 for success, error for failure.
2210 */
2211int amdgpu_vm_bo_clear_mappings(struct amdgpu_device *adev,
2212 struct amdgpu_vm *vm,
2213 uint64_t saddr, uint64_t size)
2214{
2215 struct amdgpu_bo_va_mapping *before, *after, *tmp, *next;
Christian Königdc54d3d2017-03-13 10:13:38 +01002216 LIST_HEAD(removed);
2217 uint64_t eaddr;
2218
2219 eaddr = saddr + size - 1;
2220 saddr /= AMDGPU_GPU_PAGE_SIZE;
2221 eaddr /= AMDGPU_GPU_PAGE_SIZE;
2222
2223 /* Allocate all the needed memory */
2224 before = kzalloc(sizeof(*before), GFP_KERNEL);
2225 if (!before)
2226 return -ENOMEM;
Junwei Zhang27f6d612017-03-16 16:09:24 +08002227 INIT_LIST_HEAD(&before->list);
Christian Königdc54d3d2017-03-13 10:13:38 +01002228
2229 after = kzalloc(sizeof(*after), GFP_KERNEL);
2230 if (!after) {
2231 kfree(before);
2232 return -ENOMEM;
2233 }
Junwei Zhang27f6d612017-03-16 16:09:24 +08002234 INIT_LIST_HEAD(&after->list);
Christian Königdc54d3d2017-03-13 10:13:38 +01002235
2236 /* Now gather all removed mappings */
Christian Königa9f87f62017-03-30 14:03:59 +02002237 tmp = amdgpu_vm_it_iter_first(&vm->va, saddr, eaddr);
2238 while (tmp) {
Christian Königdc54d3d2017-03-13 10:13:38 +01002239 /* Remember mapping split at the start */
Christian Königa9f87f62017-03-30 14:03:59 +02002240 if (tmp->start < saddr) {
2241 before->start = tmp->start;
2242 before->last = saddr - 1;
Christian Königdc54d3d2017-03-13 10:13:38 +01002243 before->offset = tmp->offset;
2244 before->flags = tmp->flags;
2245 list_add(&before->list, &tmp->list);
2246 }
2247
2248 /* Remember mapping split at the end */
Christian Königa9f87f62017-03-30 14:03:59 +02002249 if (tmp->last > eaddr) {
2250 after->start = eaddr + 1;
2251 after->last = tmp->last;
Christian Königdc54d3d2017-03-13 10:13:38 +01002252 after->offset = tmp->offset;
Christian Königa9f87f62017-03-30 14:03:59 +02002253 after->offset += after->start - tmp->start;
Christian Königdc54d3d2017-03-13 10:13:38 +01002254 after->flags = tmp->flags;
2255 list_add(&after->list, &tmp->list);
2256 }
2257
2258 list_del(&tmp->list);
2259 list_add(&tmp->list, &removed);
Christian Königa9f87f62017-03-30 14:03:59 +02002260
2261 tmp = amdgpu_vm_it_iter_next(tmp, saddr, eaddr);
Christian Königdc54d3d2017-03-13 10:13:38 +01002262 }
2263
2264 /* And free them up */
2265 list_for_each_entry_safe(tmp, next, &removed, list) {
Christian Königa9f87f62017-03-30 14:03:59 +02002266 amdgpu_vm_it_remove(tmp, &vm->va);
Christian Königdc54d3d2017-03-13 10:13:38 +01002267 list_del(&tmp->list);
2268
Christian Königa9f87f62017-03-30 14:03:59 +02002269 if (tmp->start < saddr)
2270 tmp->start = saddr;
2271 if (tmp->last > eaddr)
2272 tmp->last = eaddr;
Christian Königdc54d3d2017-03-13 10:13:38 +01002273
2274 list_add(&tmp->list, &vm->freed);
2275 trace_amdgpu_vm_bo_unmap(NULL, tmp);
2276 }
2277
Junwei Zhang27f6d612017-03-16 16:09:24 +08002278 /* Insert partial mapping before the range */
2279 if (!list_empty(&before->list)) {
Christian Königa9f87f62017-03-30 14:03:59 +02002280 amdgpu_vm_it_insert(before, &vm->va);
Christian Königdc54d3d2017-03-13 10:13:38 +01002281 if (before->flags & AMDGPU_PTE_PRT)
2282 amdgpu_vm_prt_get(adev);
2283 } else {
2284 kfree(before);
2285 }
2286
2287 /* Insert partial mapping after the range */
Junwei Zhang27f6d612017-03-16 16:09:24 +08002288 if (!list_empty(&after->list)) {
Christian Königa9f87f62017-03-30 14:03:59 +02002289 amdgpu_vm_it_insert(after, &vm->va);
Christian Königdc54d3d2017-03-13 10:13:38 +01002290 if (after->flags & AMDGPU_PTE_PRT)
2291 amdgpu_vm_prt_get(adev);
2292 } else {
2293 kfree(after);
2294 }
2295
2296 return 0;
2297}
2298
2299/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002300 * amdgpu_vm_bo_rmv - remove a bo to a specific vm
2301 *
2302 * @adev: amdgpu_device pointer
2303 * @bo_va: requested bo_va
2304 *
Christian König8843dbb2016-01-26 12:17:11 +01002305 * Remove @bo_va->bo from the requested vm.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002306 *
2307 * Object have to be reserved!
2308 */
2309void amdgpu_vm_bo_rmv(struct amdgpu_device *adev,
2310 struct amdgpu_bo_va *bo_va)
2311{
2312 struct amdgpu_bo_va_mapping *mapping, *next;
2313 struct amdgpu_vm *vm = bo_va->vm;
2314
2315 list_del(&bo_va->bo_list);
2316
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002317 spin_lock(&vm->status_lock);
2318 list_del(&bo_va->vm_status);
2319 spin_unlock(&vm->status_lock);
2320
Christian König7fc11952015-07-30 11:53:42 +02002321 list_for_each_entry_safe(mapping, next, &bo_va->valids, list) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002322 list_del(&mapping->list);
Christian Königa9f87f62017-03-30 14:03:59 +02002323 amdgpu_vm_it_remove(mapping, &vm->va);
Christian König93e3e432015-06-09 16:58:33 +02002324 trace_amdgpu_vm_bo_unmap(bo_va, mapping);
Christian König7fc11952015-07-30 11:53:42 +02002325 list_add(&mapping->list, &vm->freed);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002326 }
Christian König7fc11952015-07-30 11:53:42 +02002327 list_for_each_entry_safe(mapping, next, &bo_va->invalids, list) {
2328 list_del(&mapping->list);
Christian Königa9f87f62017-03-30 14:03:59 +02002329 amdgpu_vm_it_remove(mapping, &vm->va);
Christian König284710f2017-01-30 11:09:31 +01002330 amdgpu_vm_free_mapping(adev, vm, mapping,
2331 bo_va->last_pt_update);
Christian König7fc11952015-07-30 11:53:42 +02002332 }
Christian König32b41ac2016-03-08 18:03:27 +01002333
Chris Wilsonf54d1862016-10-25 13:00:45 +01002334 dma_fence_put(bo_va->last_pt_update);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002335 kfree(bo_va);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002336}
2337
2338/**
2339 * amdgpu_vm_bo_invalidate - mark the bo as invalid
2340 *
2341 * @adev: amdgpu_device pointer
2342 * @vm: requested vm
2343 * @bo: amdgpu buffer object
2344 *
Christian König8843dbb2016-01-26 12:17:11 +01002345 * Mark @bo as invalid.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002346 */
2347void amdgpu_vm_bo_invalidate(struct amdgpu_device *adev,
2348 struct amdgpu_bo *bo)
2349{
2350 struct amdgpu_bo_va *bo_va;
2351
2352 list_for_each_entry(bo_va, &bo->va, bo_list) {
Christian König7fc11952015-07-30 11:53:42 +02002353 spin_lock(&bo_va->vm->status_lock);
2354 if (list_empty(&bo_va->vm_status))
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002355 list_add(&bo_va->vm_status, &bo_va->vm->invalidated);
Christian König7fc11952015-07-30 11:53:42 +02002356 spin_unlock(&bo_va->vm->status_lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002357 }
2358}
2359
Junwei Zhangbab4fee2017-04-05 13:54:56 +08002360static uint32_t amdgpu_vm_get_block_size(uint64_t vm_size)
2361{
2362 /* Total bits covered by PD + PTs */
2363 unsigned bits = ilog2(vm_size) + 18;
2364
2365 /* Make sure the PD is 4K in size up to 8GB address space.
2366 Above that split equal between PD and PTs */
2367 if (vm_size <= 8)
2368 return (bits - 9);
2369 else
2370 return ((bits + 3) / 2);
2371}
2372
2373/**
2374 * amdgpu_vm_adjust_size - adjust vm size and block size
2375 *
2376 * @adev: amdgpu_device pointer
2377 * @vm_size: the default vm size if it's set auto
2378 */
2379void amdgpu_vm_adjust_size(struct amdgpu_device *adev, uint64_t vm_size)
2380{
2381 /* adjust vm size firstly */
2382 if (amdgpu_vm_size == -1)
2383 adev->vm_manager.vm_size = vm_size;
2384 else
2385 adev->vm_manager.vm_size = amdgpu_vm_size;
2386
2387 /* block size depends on vm size */
2388 if (amdgpu_vm_block_size == -1)
2389 adev->vm_manager.block_size =
2390 amdgpu_vm_get_block_size(adev->vm_manager.vm_size);
2391 else
2392 adev->vm_manager.block_size = amdgpu_vm_block_size;
2393
2394 DRM_INFO("vm size is %llu GB, block size is %u-bit\n",
2395 adev->vm_manager.vm_size, adev->vm_manager.block_size);
2396}
2397
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002398/**
2399 * amdgpu_vm_init - initialize a vm instance
2400 *
2401 * @adev: amdgpu_device pointer
2402 * @vm: requested vm
Harish Kasiviswanathan9a4b7d42017-06-09 11:26:57 -04002403 * @vm_context: Indicates if it GFX or Compute context
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002404 *
Christian König8843dbb2016-01-26 12:17:11 +01002405 * Init @vm fields.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002406 */
Harish Kasiviswanathan9a4b7d42017-06-09 11:26:57 -04002407int amdgpu_vm_init(struct amdgpu_device *adev, struct amdgpu_vm *vm,
2408 int vm_context)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002409{
2410 const unsigned align = min(AMDGPU_VM_PTB_ALIGN_SIZE,
Zhang, Jerry36b32a62017-03-29 16:08:32 +08002411 AMDGPU_VM_PTE_COUNT(adev) * 8);
Christian König2d55e452016-02-08 17:37:38 +01002412 unsigned ring_instance;
2413 struct amdgpu_ring *ring;
Christian König2bd9ccf2016-02-01 12:53:58 +01002414 struct amd_sched_rq *rq;
Chunming Zhou36bbf3b2017-04-20 16:17:34 +08002415 int r, i;
Harish Kasiviswanathan3c824172017-05-11 15:50:08 -04002416 u64 flags;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002417
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002418 vm->va = RB_ROOT;
Chunming Zhou031e2982016-04-25 10:19:13 +08002419 vm->client_id = atomic64_inc_return(&adev->vm_manager.client_counter);
Chunming Zhou36bbf3b2017-04-20 16:17:34 +08002420 for (i = 0; i < AMDGPU_MAX_VMHUBS; i++)
2421 vm->reserved_vmid[i] = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002422 spin_lock_init(&vm->status_lock);
2423 INIT_LIST_HEAD(&vm->invalidated);
Christian König7fc11952015-07-30 11:53:42 +02002424 INIT_LIST_HEAD(&vm->cleared);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002425 INIT_LIST_HEAD(&vm->freed);
Christian König20250212016-03-08 17:58:35 +01002426
Christian König2bd9ccf2016-02-01 12:53:58 +01002427 /* create scheduler entity for page table updates */
Christian König2d55e452016-02-08 17:37:38 +01002428
2429 ring_instance = atomic_inc_return(&adev->vm_manager.vm_pte_next_ring);
2430 ring_instance %= adev->vm_manager.vm_pte_num_rings;
2431 ring = adev->vm_manager.vm_pte_rings[ring_instance];
Christian König2bd9ccf2016-02-01 12:53:58 +01002432 rq = &ring->sched.sched_rq[AMD_SCHED_PRIORITY_KERNEL];
2433 r = amd_sched_entity_init(&ring->sched, &vm->entity,
2434 rq, amdgpu_sched_jobs);
2435 if (r)
Christian Königf566ceb2016-10-27 20:04:38 +02002436 return r;
Christian König2bd9ccf2016-02-01 12:53:58 +01002437
Harish Kasiviswanathan9a4b7d42017-06-09 11:26:57 -04002438 if (vm_context == AMDGPU_VM_CONTEXT_COMPUTE)
2439 vm->use_cpu_for_update = !!(adev->vm_manager.vm_update_mode &
2440 AMDGPU_VM_USE_CPU_FOR_COMPUTE);
2441 else
2442 vm->use_cpu_for_update = !!(adev->vm_manager.vm_update_mode &
2443 AMDGPU_VM_USE_CPU_FOR_GFX);
2444 DRM_DEBUG_DRIVER("VM update mode is %s\n",
2445 vm->use_cpu_for_update ? "CPU" : "SDMA");
2446 WARN_ONCE((vm->use_cpu_for_update & !amdgpu_vm_is_large_bar(adev)),
2447 "CPU update of VM recommended only for large BAR system\n");
Christian Königa24960f2016-10-12 13:20:52 +02002448 vm->last_dir_update = NULL;
Bas Nieuwenhuizen05906de2015-08-14 20:08:40 +02002449
Harish Kasiviswanathan3c824172017-05-11 15:50:08 -04002450 flags = AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS |
2451 AMDGPU_GEM_CREATE_VRAM_CLEARED;
2452 if (vm->use_cpu_for_update)
2453 flags |= AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED;
2454 else
2455 flags |= (AMDGPU_GEM_CREATE_NO_CPU_ACCESS |
2456 AMDGPU_GEM_CREATE_SHADOW);
2457
Christian Königf566ceb2016-10-27 20:04:38 +02002458 r = amdgpu_bo_create(adev, amdgpu_vm_bo_size(adev, 0), align, true,
Alex Deucher857d9132015-08-27 00:14:16 -04002459 AMDGPU_GEM_DOMAIN_VRAM,
Harish Kasiviswanathan3c824172017-05-11 15:50:08 -04002460 flags,
Christian König67003a12016-10-12 14:46:26 +02002461 NULL, NULL, &vm->root.bo);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002462 if (r)
Christian König2bd9ccf2016-02-01 12:53:58 +01002463 goto error_free_sched_entity;
2464
Christian König67003a12016-10-12 14:46:26 +02002465 r = amdgpu_bo_reserve(vm->root.bo, false);
Christian König2bd9ccf2016-02-01 12:53:58 +01002466 if (r)
Christian König67003a12016-10-12 14:46:26 +02002467 goto error_free_root;
Christian König2bd9ccf2016-02-01 12:53:58 +01002468
Christian König5a712a82016-06-21 16:28:15 +02002469 vm->last_eviction_counter = atomic64_read(&adev->num_evictions);
Christian König0a096fb2017-07-12 10:01:48 +02002470
2471 if (vm->use_cpu_for_update) {
2472 r = amdgpu_bo_kmap(vm->root.bo, NULL);
2473 if (r)
2474 goto error_free_root;
2475 }
2476
Christian König67003a12016-10-12 14:46:26 +02002477 amdgpu_bo_unreserve(vm->root.bo);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002478
2479 return 0;
Christian König2bd9ccf2016-02-01 12:53:58 +01002480
Christian König67003a12016-10-12 14:46:26 +02002481error_free_root:
2482 amdgpu_bo_unref(&vm->root.bo->shadow);
2483 amdgpu_bo_unref(&vm->root.bo);
2484 vm->root.bo = NULL;
Christian König2bd9ccf2016-02-01 12:53:58 +01002485
2486error_free_sched_entity:
2487 amd_sched_entity_fini(&ring->sched, &vm->entity);
2488
2489 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002490}
2491
2492/**
Christian Königf566ceb2016-10-27 20:04:38 +02002493 * amdgpu_vm_free_levels - free PD/PT levels
2494 *
2495 * @level: PD/PT starting level to free
2496 *
2497 * Free the page directory or page table level and all sub levels.
2498 */
2499static void amdgpu_vm_free_levels(struct amdgpu_vm_pt *level)
2500{
2501 unsigned i;
2502
2503 if (level->bo) {
2504 amdgpu_bo_unref(&level->bo->shadow);
2505 amdgpu_bo_unref(&level->bo);
2506 }
2507
2508 if (level->entries)
2509 for (i = 0; i <= level->last_entry_used; i++)
2510 amdgpu_vm_free_levels(&level->entries[i]);
2511
Michal Hocko20981052017-05-17 14:23:12 +02002512 kvfree(level->entries);
Christian Königf566ceb2016-10-27 20:04:38 +02002513}
2514
2515/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002516 * amdgpu_vm_fini - tear down a vm instance
2517 *
2518 * @adev: amdgpu_device pointer
2519 * @vm: requested vm
2520 *
Christian König8843dbb2016-01-26 12:17:11 +01002521 * Tear down @vm.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002522 * Unbind the VM and remove all bos from the vm bo list
2523 */
2524void amdgpu_vm_fini(struct amdgpu_device *adev, struct amdgpu_vm *vm)
2525{
2526 struct amdgpu_bo_va_mapping *mapping, *tmp;
Christian König4388fc22017-03-13 10:13:36 +01002527 bool prt_fini_needed = !!adev->gart.gart_funcs->set_prt;
Chunming Zhou36bbf3b2017-04-20 16:17:34 +08002528 int i;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002529
Christian König2d55e452016-02-08 17:37:38 +01002530 amd_sched_entity_fini(vm->entity.sched, &vm->entity);
Christian König2bd9ccf2016-02-01 12:53:58 +01002531
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002532 if (!RB_EMPTY_ROOT(&vm->va)) {
2533 dev_err(adev->dev, "still active bo inside vm\n");
2534 }
Christian Königa9f87f62017-03-30 14:03:59 +02002535 rbtree_postorder_for_each_entry_safe(mapping, tmp, &vm->va, rb) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002536 list_del(&mapping->list);
Christian Königa9f87f62017-03-30 14:03:59 +02002537 amdgpu_vm_it_remove(mapping, &vm->va);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002538 kfree(mapping);
2539 }
2540 list_for_each_entry_safe(mapping, tmp, &vm->freed, list) {
Christian König4388fc22017-03-13 10:13:36 +01002541 if (mapping->flags & AMDGPU_PTE_PRT && prt_fini_needed) {
Christian König451bc8e2017-02-14 16:02:52 +01002542 amdgpu_vm_prt_fini(adev, vm);
Christian König4388fc22017-03-13 10:13:36 +01002543 prt_fini_needed = false;
Christian König451bc8e2017-02-14 16:02:52 +01002544 }
Christian König284710f2017-01-30 11:09:31 +01002545
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002546 list_del(&mapping->list);
Christian König451bc8e2017-02-14 16:02:52 +01002547 amdgpu_vm_free_mapping(adev, vm, mapping, NULL);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002548 }
2549
Christian Königf566ceb2016-10-27 20:04:38 +02002550 amdgpu_vm_free_levels(&vm->root);
Christian Königa24960f2016-10-12 13:20:52 +02002551 dma_fence_put(vm->last_dir_update);
Chunming Zhou1e9ef262017-04-20 16:18:48 +08002552 for (i = 0; i < AMDGPU_MAX_VMHUBS; i++)
2553 amdgpu_vm_free_reserved_vmid(adev, vm, i);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002554}
Christian Königea89f8c2015-11-15 20:52:06 +01002555
2556/**
Christian Königa9a78b32016-01-21 10:19:11 +01002557 * amdgpu_vm_manager_init - init the VM manager
2558 *
2559 * @adev: amdgpu_device pointer
2560 *
2561 * Initialize the VM manager structures
2562 */
2563void amdgpu_vm_manager_init(struct amdgpu_device *adev)
2564{
Christian König76456702017-04-06 17:52:39 +02002565 unsigned i, j;
Christian Königa9a78b32016-01-21 10:19:11 +01002566
Christian König76456702017-04-06 17:52:39 +02002567 for (i = 0; i < AMDGPU_MAX_VMHUBS; ++i) {
2568 struct amdgpu_vm_id_manager *id_mgr =
2569 &adev->vm_manager.id_mgr[i];
Christian Königa9a78b32016-01-21 10:19:11 +01002570
Christian König76456702017-04-06 17:52:39 +02002571 mutex_init(&id_mgr->lock);
2572 INIT_LIST_HEAD(&id_mgr->ids_lru);
Chunming Zhouc3505772017-04-21 15:51:04 +08002573 atomic_set(&id_mgr->reserved_vmid_num, 0);
Christian König76456702017-04-06 17:52:39 +02002574
2575 /* skip over VMID 0, since it is the system VM */
2576 for (j = 1; j < id_mgr->num_ids; ++j) {
2577 amdgpu_vm_reset_id(adev, i, j);
2578 amdgpu_sync_create(&id_mgr->ids[i].active);
2579 list_add_tail(&id_mgr->ids[j].list, &id_mgr->ids_lru);
2580 }
Christian König971fe9a92016-03-01 15:09:25 +01002581 }
Christian König2d55e452016-02-08 17:37:38 +01002582
Chris Wilsonf54d1862016-10-25 13:00:45 +01002583 adev->vm_manager.fence_context =
2584 dma_fence_context_alloc(AMDGPU_MAX_RINGS);
Christian König1fbb2e92016-06-01 10:47:36 +02002585 for (i = 0; i < AMDGPU_MAX_RINGS; ++i)
2586 adev->vm_manager.seqno[i] = 0;
2587
Christian König2d55e452016-02-08 17:37:38 +01002588 atomic_set(&adev->vm_manager.vm_pte_next_ring, 0);
Christian Königb1c8a812016-05-04 10:34:03 +02002589 atomic64_set(&adev->vm_manager.client_counter, 0);
Christian König284710f2017-01-30 11:09:31 +01002590 spin_lock_init(&adev->vm_manager.prt_lock);
Christian König451bc8e2017-02-14 16:02:52 +01002591 atomic_set(&adev->vm_manager.num_prt_users, 0);
Harish Kasiviswanathan9a4b7d42017-06-09 11:26:57 -04002592
2593 /* If not overridden by the user, by default, only in large BAR systems
2594 * Compute VM tables will be updated by CPU
2595 */
2596#ifdef CONFIG_X86_64
2597 if (amdgpu_vm_update_mode == -1) {
2598 if (amdgpu_vm_is_large_bar(adev))
2599 adev->vm_manager.vm_update_mode =
2600 AMDGPU_VM_USE_CPU_FOR_COMPUTE;
2601 else
2602 adev->vm_manager.vm_update_mode = 0;
2603 } else
2604 adev->vm_manager.vm_update_mode = amdgpu_vm_update_mode;
2605#else
2606 adev->vm_manager.vm_update_mode = 0;
2607#endif
2608
Christian Königa9a78b32016-01-21 10:19:11 +01002609}
2610
2611/**
Christian Königea89f8c2015-11-15 20:52:06 +01002612 * amdgpu_vm_manager_fini - cleanup VM manager
2613 *
2614 * @adev: amdgpu_device pointer
2615 *
2616 * Cleanup the VM manager and free resources.
2617 */
2618void amdgpu_vm_manager_fini(struct amdgpu_device *adev)
2619{
Christian König76456702017-04-06 17:52:39 +02002620 unsigned i, j;
Christian Königea89f8c2015-11-15 20:52:06 +01002621
Christian König76456702017-04-06 17:52:39 +02002622 for (i = 0; i < AMDGPU_MAX_VMHUBS; ++i) {
2623 struct amdgpu_vm_id_manager *id_mgr =
2624 &adev->vm_manager.id_mgr[i];
Christian Königbcb1ba32016-03-08 15:40:11 +01002625
Christian König76456702017-04-06 17:52:39 +02002626 mutex_destroy(&id_mgr->lock);
2627 for (j = 0; j < AMDGPU_NUM_VM; ++j) {
2628 struct amdgpu_vm_id *id = &id_mgr->ids[j];
2629
2630 amdgpu_sync_free(&id->active);
2631 dma_fence_put(id->flushed_updates);
2632 dma_fence_put(id->last_flush);
2633 }
Christian Königbcb1ba32016-03-08 15:40:11 +01002634 }
Christian Königea89f8c2015-11-15 20:52:06 +01002635}
Chunming Zhoucfbcacf2017-04-24 11:09:04 +08002636
2637int amdgpu_vm_ioctl(struct drm_device *dev, void *data, struct drm_file *filp)
2638{
2639 union drm_amdgpu_vm *args = data;
Chunming Zhou1e9ef262017-04-20 16:18:48 +08002640 struct amdgpu_device *adev = dev->dev_private;
2641 struct amdgpu_fpriv *fpriv = filp->driver_priv;
2642 int r;
Chunming Zhoucfbcacf2017-04-24 11:09:04 +08002643
2644 switch (args->in.op) {
2645 case AMDGPU_VM_OP_RESERVE_VMID:
Chunming Zhou1e9ef262017-04-20 16:18:48 +08002646 /* current, we only have requirement to reserve vmid from gfxhub */
2647 r = amdgpu_vm_alloc_reserved_vmid(adev, &fpriv->vm,
2648 AMDGPU_GFXHUB);
2649 if (r)
2650 return r;
2651 break;
Chunming Zhoucfbcacf2017-04-24 11:09:04 +08002652 case AMDGPU_VM_OP_UNRESERVE_VMID:
Chunming Zhou1e9ef262017-04-20 16:18:48 +08002653 amdgpu_vm_free_reserved_vmid(adev, &fpriv->vm, AMDGPU_GFXHUB);
Chunming Zhoucfbcacf2017-04-24 11:09:04 +08002654 break;
2655 default:
2656 return -EINVAL;
2657 }
2658
2659 return 0;
2660}