blob: 601e899005d0920fb893bdb1d4226c60316eb117 [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,
Yong Zhao2046d462017-07-20 18:49:09 -0400336 NULL, resv, 0, &pt);
Christian Königf566ceb2016-10-27 20:04:38 +0200337 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;
Alex Deuchercf2f0a32017-07-25 16:35:38 -0400355 entry->huge_page = false;
Christian Königf566ceb2016-10-27 20:04:38 +0200356 }
357
358 if (level < adev->vm_manager.num_level) {
Felix Kuehling1866bac2017-03-28 20:36:12 -0400359 uint64_t sub_saddr = (pt_idx == from) ? saddr : 0;
360 uint64_t sub_eaddr = (pt_idx == to) ? eaddr :
361 ((1 << shift) - 1);
362 r = amdgpu_vm_alloc_levels(adev, vm, entry, sub_saddr,
363 sub_eaddr, level);
Christian Königf566ceb2016-10-27 20:04:38 +0200364 if (r)
365 return r;
366 }
367 }
368
369 return 0;
370}
371
Christian König663e4572017-03-13 10:13:37 +0100372/**
373 * amdgpu_vm_alloc_pts - Allocate page tables.
374 *
375 * @adev: amdgpu_device pointer
376 * @vm: VM to allocate page tables for
377 * @saddr: Start address which needs to be allocated
378 * @size: Size from start address we need.
379 *
380 * Make sure the page tables are allocated.
381 */
382int amdgpu_vm_alloc_pts(struct amdgpu_device *adev,
383 struct amdgpu_vm *vm,
384 uint64_t saddr, uint64_t size)
385{
Felix Kuehling22770e52017-03-28 20:24:53 -0400386 uint64_t last_pfn;
Christian König663e4572017-03-13 10:13:37 +0100387 uint64_t eaddr;
Christian König663e4572017-03-13 10:13:37 +0100388
389 /* validate the parameters */
390 if (saddr & AMDGPU_GPU_PAGE_MASK || size & AMDGPU_GPU_PAGE_MASK)
391 return -EINVAL;
392
393 eaddr = saddr + size - 1;
394 last_pfn = eaddr / AMDGPU_GPU_PAGE_SIZE;
395 if (last_pfn >= adev->vm_manager.max_pfn) {
Felix Kuehling22770e52017-03-28 20:24:53 -0400396 dev_err(adev->dev, "va above limit (0x%08llX >= 0x%08llX)\n",
Christian König663e4572017-03-13 10:13:37 +0100397 last_pfn, adev->vm_manager.max_pfn);
398 return -EINVAL;
399 }
400
401 saddr /= AMDGPU_GPU_PAGE_SIZE;
402 eaddr /= AMDGPU_GPU_PAGE_SIZE;
403
Christian Königf566ceb2016-10-27 20:04:38 +0200404 return amdgpu_vm_alloc_levels(adev, vm, &vm->root, saddr, eaddr, 0);
Christian König663e4572017-03-13 10:13:37 +0100405}
406
Christian König641e9402017-04-03 13:59:25 +0200407/**
408 * amdgpu_vm_had_gpu_reset - check if reset occured since last use
409 *
410 * @adev: amdgpu_device pointer
411 * @id: VMID structure
412 *
413 * Check if GPU reset occured since last use of the VMID.
414 */
415static bool amdgpu_vm_had_gpu_reset(struct amdgpu_device *adev,
416 struct amdgpu_vm_id *id)
Chunming Zhou192b7dc2016-06-29 14:01:15 +0800417{
418 return id->current_gpu_reset_count !=
Christian König641e9402017-04-03 13:59:25 +0200419 atomic_read(&adev->gpu_reset_counter);
Chunming Zhou192b7dc2016-06-29 14:01:15 +0800420}
421
Chunming Zhou7a63eb22017-04-21 11:13:56 +0800422static bool amdgpu_vm_reserved_vmid_ready(struct amdgpu_vm *vm, unsigned vmhub)
423{
424 return !!vm->reserved_vmid[vmhub];
425}
426
427/* idr_mgr->lock must be held */
428static int amdgpu_vm_grab_reserved_vmid_locked(struct amdgpu_vm *vm,
429 struct amdgpu_ring *ring,
430 struct amdgpu_sync *sync,
431 struct dma_fence *fence,
432 struct amdgpu_job *job)
433{
434 struct amdgpu_device *adev = ring->adev;
435 unsigned vmhub = ring->funcs->vmhub;
436 uint64_t fence_context = adev->fence_context + ring->idx;
437 struct amdgpu_vm_id *id = vm->reserved_vmid[vmhub];
438 struct amdgpu_vm_id_manager *id_mgr = &adev->vm_manager.id_mgr[vmhub];
439 struct dma_fence *updates = sync->last_vm_update;
440 int r = 0;
441 struct dma_fence *flushed, *tmp;
Christian König6f1ceab2017-07-11 16:59:21 +0200442 bool needs_flush = vm->use_cpu_for_update;
Chunming Zhou7a63eb22017-04-21 11:13:56 +0800443
444 flushed = id->flushed_updates;
445 if ((amdgpu_vm_had_gpu_reset(adev, id)) ||
446 (atomic64_read(&id->owner) != vm->client_id) ||
447 (job->vm_pd_addr != id->pd_gpu_addr) ||
448 (updates && (!flushed || updates->context != flushed->context ||
449 dma_fence_is_later(updates, flushed))) ||
450 (!id->last_flush || (id->last_flush->context != fence_context &&
451 !dma_fence_is_signaled(id->last_flush)))) {
452 needs_flush = true;
453 /* to prevent one context starved by another context */
454 id->pd_gpu_addr = 0;
455 tmp = amdgpu_sync_peek_fence(&id->active, ring);
456 if (tmp) {
457 r = amdgpu_sync_fence(adev, sync, tmp);
458 return r;
459 }
460 }
461
462 /* Good we can use this VMID. Remember this submission as
463 * user of the VMID.
464 */
465 r = amdgpu_sync_fence(ring->adev, &id->active, fence);
466 if (r)
467 goto out;
468
469 if (updates && (!flushed || updates->context != flushed->context ||
470 dma_fence_is_later(updates, flushed))) {
471 dma_fence_put(id->flushed_updates);
472 id->flushed_updates = dma_fence_get(updates);
473 }
474 id->pd_gpu_addr = job->vm_pd_addr;
Chunming Zhou7a63eb22017-04-21 11:13:56 +0800475 atomic64_set(&id->owner, vm->client_id);
476 job->vm_needs_flush = needs_flush;
477 if (needs_flush) {
478 dma_fence_put(id->last_flush);
479 id->last_flush = NULL;
480 }
481 job->vm_id = id - id_mgr->ids;
482 trace_amdgpu_vm_grab_id(vm, ring, job);
483out:
484 return r;
485}
486
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400487/**
488 * amdgpu_vm_grab_id - allocate the next free VMID
489 *
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400490 * @vm: vm to allocate id for
Christian König7f8a5292015-07-20 16:09:40 +0200491 * @ring: ring we want to submit job to
492 * @sync: sync object where we add dependencies
Christian König94dd0a42016-01-18 17:01:42 +0100493 * @fence: fence protecting ID from reuse
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400494 *
Christian König7f8a5292015-07-20 16:09:40 +0200495 * Allocate an id for the vm, adding fences to the sync obj as necessary.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400496 */
Christian König7f8a5292015-07-20 16:09:40 +0200497int amdgpu_vm_grab_id(struct amdgpu_vm *vm, struct amdgpu_ring *ring,
Chris Wilsonf54d1862016-10-25 13:00:45 +0100498 struct amdgpu_sync *sync, struct dma_fence *fence,
Chunming Zhoufd53be32016-07-01 17:59:01 +0800499 struct amdgpu_job *job)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400500{
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400501 struct amdgpu_device *adev = ring->adev;
Christian König2e819842017-03-30 16:50:47 +0200502 unsigned vmhub = ring->funcs->vmhub;
Christian König76456702017-04-06 17:52:39 +0200503 struct amdgpu_vm_id_manager *id_mgr = &adev->vm_manager.id_mgr[vmhub];
Christian König090b7672016-07-08 10:21:02 +0200504 uint64_t fence_context = adev->fence_context + ring->idx;
Chris Wilsonf54d1862016-10-25 13:00:45 +0100505 struct dma_fence *updates = sync->last_vm_update;
Christian König8d76001e2016-05-23 16:00:32 +0200506 struct amdgpu_vm_id *id, *idle;
Chris Wilsonf54d1862016-10-25 13:00:45 +0100507 struct dma_fence **fences;
Christian König1fbb2e92016-06-01 10:47:36 +0200508 unsigned i;
509 int r = 0;
510
Christian König76456702017-04-06 17:52:39 +0200511 mutex_lock(&id_mgr->lock);
Chunming Zhou7a63eb22017-04-21 11:13:56 +0800512 if (amdgpu_vm_reserved_vmid_ready(vm, vmhub)) {
513 r = amdgpu_vm_grab_reserved_vmid_locked(vm, ring, sync, fence, job);
514 mutex_unlock(&id_mgr->lock);
515 return r;
516 }
517 fences = kmalloc_array(sizeof(void *), id_mgr->num_ids, GFP_KERNEL);
518 if (!fences) {
519 mutex_unlock(&id_mgr->lock);
520 return -ENOMEM;
521 }
Christian König36fd7c52016-05-23 15:30:08 +0200522 /* Check if we have an idle VMID */
Christian König1fbb2e92016-06-01 10:47:36 +0200523 i = 0;
Christian König76456702017-04-06 17:52:39 +0200524 list_for_each_entry(idle, &id_mgr->ids_lru, list) {
Christian König1fbb2e92016-06-01 10:47:36 +0200525 fences[i] = amdgpu_sync_peek_fence(&idle->active, ring);
526 if (!fences[i])
Christian König36fd7c52016-05-23 15:30:08 +0200527 break;
Christian König1fbb2e92016-06-01 10:47:36 +0200528 ++i;
Christian König36fd7c52016-05-23 15:30:08 +0200529 }
Christian Königbcb1ba32016-03-08 15:40:11 +0100530
Christian König1fbb2e92016-06-01 10:47:36 +0200531 /* If we can't find a idle VMID to use, wait till one becomes available */
Christian König76456702017-04-06 17:52:39 +0200532 if (&idle->list == &id_mgr->ids_lru) {
Christian König1fbb2e92016-06-01 10:47:36 +0200533 u64 fence_context = adev->vm_manager.fence_context + ring->idx;
534 unsigned seqno = ++adev->vm_manager.seqno[ring->idx];
Chris Wilsonf54d1862016-10-25 13:00:45 +0100535 struct dma_fence_array *array;
Christian König1fbb2e92016-06-01 10:47:36 +0200536 unsigned j;
Christian König8d76001e2016-05-23 16:00:32 +0200537
Christian König1fbb2e92016-06-01 10:47:36 +0200538 for (j = 0; j < i; ++j)
Chris Wilsonf54d1862016-10-25 13:00:45 +0100539 dma_fence_get(fences[j]);
Christian König8d76001e2016-05-23 16:00:32 +0200540
Chris Wilsonf54d1862016-10-25 13:00:45 +0100541 array = dma_fence_array_create(i, fences, fence_context,
Christian König1fbb2e92016-06-01 10:47:36 +0200542 seqno, true);
543 if (!array) {
544 for (j = 0; j < i; ++j)
Chris Wilsonf54d1862016-10-25 13:00:45 +0100545 dma_fence_put(fences[j]);
Christian König1fbb2e92016-06-01 10:47:36 +0200546 kfree(fences);
547 r = -ENOMEM;
548 goto error;
549 }
Christian König8d76001e2016-05-23 16:00:32 +0200550
Christian König8d76001e2016-05-23 16:00:32 +0200551
Christian König1fbb2e92016-06-01 10:47:36 +0200552 r = amdgpu_sync_fence(ring->adev, sync, &array->base);
Chris Wilsonf54d1862016-10-25 13:00:45 +0100553 dma_fence_put(&array->base);
Christian König1fbb2e92016-06-01 10:47:36 +0200554 if (r)
555 goto error;
Christian König8d76001e2016-05-23 16:00:32 +0200556
Christian König76456702017-04-06 17:52:39 +0200557 mutex_unlock(&id_mgr->lock);
Christian König1fbb2e92016-06-01 10:47:36 +0200558 return 0;
Christian König8d76001e2016-05-23 16:00:32 +0200559
Christian König1fbb2e92016-06-01 10:47:36 +0200560 }
561 kfree(fences);
Christian König8d76001e2016-05-23 16:00:32 +0200562
Christian König6f1ceab2017-07-11 16:59:21 +0200563 job->vm_needs_flush = vm->use_cpu_for_update;
Christian König1fbb2e92016-06-01 10:47:36 +0200564 /* Check if we can use a VMID already assigned to this VM */
Christian König76456702017-04-06 17:52:39 +0200565 list_for_each_entry_reverse(id, &id_mgr->ids_lru, list) {
Chris Wilsonf54d1862016-10-25 13:00:45 +0100566 struct dma_fence *flushed;
Christian König6f1ceab2017-07-11 16:59:21 +0200567 bool needs_flush = vm->use_cpu_for_update;
Christian König8d76001e2016-05-23 16:00:32 +0200568
Christian König1fbb2e92016-06-01 10:47:36 +0200569 /* Check all the prerequisites to using this VMID */
Christian König641e9402017-04-03 13:59:25 +0200570 if (amdgpu_vm_had_gpu_reset(adev, id))
Chunming Zhou6adb0512016-06-27 17:06:01 +0800571 continue;
Christian König1fbb2e92016-06-01 10:47:36 +0200572
573 if (atomic64_read(&id->owner) != vm->client_id)
574 continue;
575
Chunming Zhoufd53be32016-07-01 17:59:01 +0800576 if (job->vm_pd_addr != id->pd_gpu_addr)
Christian König1fbb2e92016-06-01 10:47:36 +0200577 continue;
578
Christian König87c910d2017-03-30 16:56:20 +0200579 if (!id->last_flush ||
580 (id->last_flush->context != fence_context &&
581 !dma_fence_is_signaled(id->last_flush)))
582 needs_flush = true;
Christian König1fbb2e92016-06-01 10:47:36 +0200583
584 flushed = id->flushed_updates;
Christian König87c910d2017-03-30 16:56:20 +0200585 if (updates && (!flushed || dma_fence_is_later(updates, flushed)))
586 needs_flush = true;
587
588 /* Concurrent flushes are only possible starting with Vega10 */
589 if (adev->asic_type < CHIP_VEGA10 && needs_flush)
Christian König1fbb2e92016-06-01 10:47:36 +0200590 continue;
591
Christian König3dab83b2016-06-01 13:31:17 +0200592 /* Good we can use this VMID. Remember this submission as
593 * user of the VMID.
594 */
Christian König1fbb2e92016-06-01 10:47:36 +0200595 r = amdgpu_sync_fence(ring->adev, &id->active, fence);
596 if (r)
597 goto error;
Christian König8d76001e2016-05-23 16:00:32 +0200598
Christian König87c910d2017-03-30 16:56:20 +0200599 if (updates && (!flushed || dma_fence_is_later(updates, flushed))) {
600 dma_fence_put(id->flushed_updates);
601 id->flushed_updates = dma_fence_get(updates);
602 }
Christian König8d76001e2016-05-23 16:00:32 +0200603
Christian König87c910d2017-03-30 16:56:20 +0200604 if (needs_flush)
605 goto needs_flush;
606 else
607 goto no_flush_needed;
Christian König8d76001e2016-05-23 16:00:32 +0200608
Christian König4f618e72017-04-06 15:18:21 +0200609 };
Chunming Zhou8e9fbeb2016-03-17 11:41:37 +0800610
Christian König1fbb2e92016-06-01 10:47:36 +0200611 /* Still no ID to use? Then use the idle one found earlier */
612 id = idle;
613
614 /* Remember this submission as user of the VMID */
615 r = amdgpu_sync_fence(ring->adev, &id->active, fence);
Christian König832a9022016-02-15 12:33:02 +0100616 if (r)
617 goto error;
Christian König4ff37a82016-02-26 16:18:26 +0100618
Christian König87c910d2017-03-30 16:56:20 +0200619 id->pd_gpu_addr = job->vm_pd_addr;
620 dma_fence_put(id->flushed_updates);
621 id->flushed_updates = dma_fence_get(updates);
Christian König87c910d2017-03-30 16:56:20 +0200622 atomic64_set(&id->owner, vm->client_id);
623
624needs_flush:
625 job->vm_needs_flush = true;
Chris Wilsonf54d1862016-10-25 13:00:45 +0100626 dma_fence_put(id->last_flush);
Christian König41d9eb22016-03-01 16:46:18 +0100627 id->last_flush = NULL;
628
Christian König87c910d2017-03-30 16:56:20 +0200629no_flush_needed:
Christian König76456702017-04-06 17:52:39 +0200630 list_move_tail(&id->list, &id_mgr->ids_lru);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400631
Christian König76456702017-04-06 17:52:39 +0200632 job->vm_id = id - id_mgr->ids;
Christian Königc5296d12017-04-07 15:31:13 +0200633 trace_amdgpu_vm_grab_id(vm, ring, job);
Christian König832a9022016-02-15 12:33:02 +0100634
635error:
Christian König76456702017-04-06 17:52:39 +0200636 mutex_unlock(&id_mgr->lock);
Christian Königa9a78b32016-01-21 10:19:11 +0100637 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400638}
639
Chunming Zhou1e9ef262017-04-20 16:18:48 +0800640static void amdgpu_vm_free_reserved_vmid(struct amdgpu_device *adev,
641 struct amdgpu_vm *vm,
642 unsigned vmhub)
Alex Deucher93dcc372016-06-17 17:05:15 -0400643{
Chunming Zhou1e9ef262017-04-20 16:18:48 +0800644 struct amdgpu_vm_id_manager *id_mgr = &adev->vm_manager.id_mgr[vmhub];
Alex Deucher93dcc372016-06-17 17:05:15 -0400645
Chunming Zhou1e9ef262017-04-20 16:18:48 +0800646 mutex_lock(&id_mgr->lock);
647 if (vm->reserved_vmid[vmhub]) {
648 list_add(&vm->reserved_vmid[vmhub]->list,
649 &id_mgr->ids_lru);
650 vm->reserved_vmid[vmhub] = NULL;
Chunming Zhouc3505772017-04-21 15:51:04 +0800651 atomic_dec(&id_mgr->reserved_vmid_num);
Alex Deucher93dcc372016-06-17 17:05:15 -0400652 }
Chunming Zhou1e9ef262017-04-20 16:18:48 +0800653 mutex_unlock(&id_mgr->lock);
Alex Deucher93dcc372016-06-17 17:05:15 -0400654}
655
Chunming Zhou1e9ef262017-04-20 16:18:48 +0800656static int amdgpu_vm_alloc_reserved_vmid(struct amdgpu_device *adev,
657 struct amdgpu_vm *vm,
658 unsigned vmhub)
Alex Xiee60f8db2017-03-09 11:36:26 -0500659{
Chunming Zhou1e9ef262017-04-20 16:18:48 +0800660 struct amdgpu_vm_id_manager *id_mgr;
661 struct amdgpu_vm_id *idle;
662 int r = 0;
Alex Xiee60f8db2017-03-09 11:36:26 -0500663
Chunming Zhou1e9ef262017-04-20 16:18:48 +0800664 id_mgr = &adev->vm_manager.id_mgr[vmhub];
665 mutex_lock(&id_mgr->lock);
666 if (vm->reserved_vmid[vmhub])
667 goto unlock;
Chunming Zhouc3505772017-04-21 15:51:04 +0800668 if (atomic_inc_return(&id_mgr->reserved_vmid_num) >
669 AMDGPU_VM_MAX_RESERVED_VMID) {
670 DRM_ERROR("Over limitation of reserved vmid\n");
671 atomic_dec(&id_mgr->reserved_vmid_num);
672 r = -EINVAL;
673 goto unlock;
674 }
Chunming Zhou1e9ef262017-04-20 16:18:48 +0800675 /* Select the first entry VMID */
676 idle = list_first_entry(&id_mgr->ids_lru, struct amdgpu_vm_id, list);
677 list_del_init(&idle->list);
678 vm->reserved_vmid[vmhub] = idle;
679 mutex_unlock(&id_mgr->lock);
Alex Xiee60f8db2017-03-09 11:36:26 -0500680
Chunming Zhou1e9ef262017-04-20 16:18:48 +0800681 return 0;
682unlock:
683 mutex_unlock(&id_mgr->lock);
684 return r;
685}
686
Alex Xiee59c0202017-06-01 09:42:59 -0400687/**
688 * amdgpu_vm_check_compute_bug - check whether asic has compute vm bug
689 *
690 * @adev: amdgpu_device pointer
691 */
692void amdgpu_vm_check_compute_bug(struct amdgpu_device *adev)
693{
694 const struct amdgpu_ip_block *ip_block;
695 bool has_compute_vm_bug;
696 struct amdgpu_ring *ring;
697 int i;
698
699 has_compute_vm_bug = false;
700
701 ip_block = amdgpu_get_ip_block(adev, AMD_IP_BLOCK_TYPE_GFX);
702 if (ip_block) {
703 /* Compute has a VM bug for GFX version < 7.
704 Compute has a VM bug for GFX 8 MEC firmware version < 673.*/
705 if (ip_block->version->major <= 7)
706 has_compute_vm_bug = true;
707 else if (ip_block->version->major == 8)
708 if (adev->gfx.mec_fw_version < 673)
709 has_compute_vm_bug = true;
710 }
711
712 for (i = 0; i < adev->num_rings; i++) {
713 ring = adev->rings[i];
714 if (ring->funcs->type == AMDGPU_RING_TYPE_COMPUTE)
715 /* only compute rings */
716 ring->has_compute_vm_bug = has_compute_vm_bug;
717 else
718 ring->has_compute_vm_bug = false;
719 }
720}
721
Chunming Zhoub9bf33d2017-05-11 14:52:48 -0400722bool amdgpu_vm_need_pipeline_sync(struct amdgpu_ring *ring,
723 struct amdgpu_job *job)
724{
725 struct amdgpu_device *adev = ring->adev;
726 unsigned vmhub = ring->funcs->vmhub;
727 struct amdgpu_vm_id_manager *id_mgr = &adev->vm_manager.id_mgr[vmhub];
728 struct amdgpu_vm_id *id;
729 bool gds_switch_needed;
Alex Xiee59c0202017-06-01 09:42:59 -0400730 bool vm_flush_needed = job->vm_needs_flush || ring->has_compute_vm_bug;
Chunming Zhoub9bf33d2017-05-11 14:52:48 -0400731
732 if (job->vm_id == 0)
733 return false;
734 id = &id_mgr->ids[job->vm_id];
735 gds_switch_needed = ring->funcs->emit_gds_switch && (
736 id->gds_base != job->gds_base ||
737 id->gds_size != job->gds_size ||
738 id->gws_base != job->gws_base ||
739 id->gws_size != job->gws_size ||
740 id->oa_base != job->oa_base ||
741 id->oa_size != job->oa_size);
742
743 if (amdgpu_vm_had_gpu_reset(adev, id))
744 return true;
Alex Xiebb37b672017-05-30 23:50:10 -0400745
746 return vm_flush_needed || gds_switch_needed;
Chunming Zhoub9bf33d2017-05-11 14:52:48 -0400747}
748
Harish Kasiviswanathan9a4b7d42017-06-09 11:26:57 -0400749static bool amdgpu_vm_is_large_bar(struct amdgpu_device *adev)
750{
751 return (adev->mc.real_vram_size == adev->mc.visible_vram_size);
Alex Xiee60f8db2017-03-09 11:36:26 -0500752}
753
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400754/**
755 * amdgpu_vm_flush - hardware flush the vm
756 *
757 * @ring: ring to use for flush
Christian Königcffadc82016-03-01 13:34:49 +0100758 * @vm_id: vmid number to use
Christian König4ff37a82016-02-26 16:18:26 +0100759 * @pd_addr: address of the page directory
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400760 *
Christian König4ff37a82016-02-26 16:18:26 +0100761 * Emit a VM flush when it is necessary.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400762 */
Monk Liu8fdf0742017-06-06 17:25:13 +0800763int amdgpu_vm_flush(struct amdgpu_ring *ring, struct amdgpu_job *job, bool need_pipe_sync)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400764{
Christian König971fe9a92016-03-01 15:09:25 +0100765 struct amdgpu_device *adev = ring->adev;
Christian König76456702017-04-06 17:52:39 +0200766 unsigned vmhub = ring->funcs->vmhub;
767 struct amdgpu_vm_id_manager *id_mgr = &adev->vm_manager.id_mgr[vmhub];
768 struct amdgpu_vm_id *id = &id_mgr->ids[job->vm_id];
Christian Königd564a062016-03-01 15:51:53 +0100769 bool gds_switch_needed = ring->funcs->emit_gds_switch && (
Chunming Zhoufd53be32016-07-01 17:59:01 +0800770 id->gds_base != job->gds_base ||
771 id->gds_size != job->gds_size ||
772 id->gws_base != job->gws_base ||
773 id->gws_size != job->gws_size ||
774 id->oa_base != job->oa_base ||
775 id->oa_size != job->oa_size);
Flora Cuide37e682017-05-18 13:56:22 +0800776 bool vm_flush_needed = job->vm_needs_flush;
Christian Königc0e51932017-04-03 14:16:07 +0200777 unsigned patch_offset = 0;
Christian König41d9eb22016-03-01 16:46:18 +0100778 int r;
Christian Königd564a062016-03-01 15:51:53 +0100779
Christian Königf7d015b2017-04-03 14:28:26 +0200780 if (amdgpu_vm_had_gpu_reset(adev, id)) {
781 gds_switch_needed = true;
782 vm_flush_needed = true;
783 }
Christian König971fe9a92016-03-01 15:09:25 +0100784
Monk Liu8fdf0742017-06-06 17:25:13 +0800785 if (!vm_flush_needed && !gds_switch_needed && !need_pipe_sync)
Christian Königf7d015b2017-04-03 14:28:26 +0200786 return 0;
Christian König41d9eb22016-03-01 16:46:18 +0100787
Christian Königc0e51932017-04-03 14:16:07 +0200788 if (ring->funcs->init_cond_exec)
789 patch_offset = amdgpu_ring_init_cond_exec(ring);
Christian König41d9eb22016-03-01 16:46:18 +0100790
Monk Liu8fdf0742017-06-06 17:25:13 +0800791 if (need_pipe_sync)
792 amdgpu_ring_emit_pipeline_sync(ring);
793
Christian Königf7d015b2017-04-03 14:28:26 +0200794 if (ring->funcs->emit_vm_flush && vm_flush_needed) {
Christian Königc0e51932017-04-03 14:16:07 +0200795 struct dma_fence *fence;
Monk Liue9d672b2017-03-15 12:18:57 +0800796
Christian König9a94f5a2017-05-12 14:46:23 +0200797 trace_amdgpu_vm_flush(ring, job->vm_id, job->vm_pd_addr);
798 amdgpu_ring_emit_vm_flush(ring, job->vm_id, job->vm_pd_addr);
Monk Liue9d672b2017-03-15 12:18:57 +0800799
Christian Königc0e51932017-04-03 14:16:07 +0200800 r = amdgpu_fence_emit(ring, &fence);
801 if (r)
802 return r;
Monk Liue9d672b2017-03-15 12:18:57 +0800803
Christian König76456702017-04-06 17:52:39 +0200804 mutex_lock(&id_mgr->lock);
Christian Königc0e51932017-04-03 14:16:07 +0200805 dma_fence_put(id->last_flush);
806 id->last_flush = fence;
Chunming Zhoubea396722017-05-10 13:02:39 +0800807 id->current_gpu_reset_count = atomic_read(&adev->gpu_reset_counter);
Christian König76456702017-04-06 17:52:39 +0200808 mutex_unlock(&id_mgr->lock);
Christian Königc0e51932017-04-03 14:16:07 +0200809 }
Monk Liue9d672b2017-03-15 12:18:57 +0800810
Chunming Zhou7c4378f2017-05-11 18:22:17 +0800811 if (ring->funcs->emit_gds_switch && gds_switch_needed) {
Christian Königc0e51932017-04-03 14:16:07 +0200812 id->gds_base = job->gds_base;
813 id->gds_size = job->gds_size;
814 id->gws_base = job->gws_base;
815 id->gws_size = job->gws_size;
816 id->oa_base = job->oa_base;
817 id->oa_size = job->oa_size;
818 amdgpu_ring_emit_gds_switch(ring, job->vm_id, job->gds_base,
819 job->gds_size, job->gws_base,
820 job->gws_size, job->oa_base,
821 job->oa_size);
822 }
823
824 if (ring->funcs->patch_cond_exec)
825 amdgpu_ring_patch_cond_exec(ring, patch_offset);
826
827 /* the double SWITCH_BUFFER here *cannot* be skipped by COND_EXEC */
828 if (ring->funcs->emit_switch_buffer) {
829 amdgpu_ring_emit_switch_buffer(ring);
830 amdgpu_ring_emit_switch_buffer(ring);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400831 }
Christian König41d9eb22016-03-01 16:46:18 +0100832 return 0;
Christian König971fe9a92016-03-01 15:09:25 +0100833}
834
835/**
836 * amdgpu_vm_reset_id - reset VMID to zero
837 *
838 * @adev: amdgpu device structure
839 * @vm_id: vmid number to use
840 *
841 * Reset saved GDW, GWS and OA to force switch on next flush.
842 */
Christian König76456702017-04-06 17:52:39 +0200843void amdgpu_vm_reset_id(struct amdgpu_device *adev, unsigned vmhub,
844 unsigned vmid)
Christian König971fe9a92016-03-01 15:09:25 +0100845{
Christian König76456702017-04-06 17:52:39 +0200846 struct amdgpu_vm_id_manager *id_mgr = &adev->vm_manager.id_mgr[vmhub];
847 struct amdgpu_vm_id *id = &id_mgr->ids[vmid];
Christian König971fe9a92016-03-01 15:09:25 +0100848
Christian Königb3c85a02017-05-10 20:06:58 +0200849 atomic64_set(&id->owner, 0);
Christian Königbcb1ba32016-03-08 15:40:11 +0100850 id->gds_base = 0;
851 id->gds_size = 0;
852 id->gws_base = 0;
853 id->gws_size = 0;
854 id->oa_base = 0;
855 id->oa_size = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400856}
857
858/**
Christian Königb3c85a02017-05-10 20:06:58 +0200859 * amdgpu_vm_reset_all_id - reset VMID to zero
860 *
861 * @adev: amdgpu device structure
862 *
863 * Reset VMID to force flush on next use
864 */
865void amdgpu_vm_reset_all_ids(struct amdgpu_device *adev)
866{
867 unsigned i, j;
868
869 for (i = 0; i < AMDGPU_MAX_VMHUBS; ++i) {
870 struct amdgpu_vm_id_manager *id_mgr =
871 &adev->vm_manager.id_mgr[i];
872
873 for (j = 1; j < id_mgr->num_ids; ++j)
874 amdgpu_vm_reset_id(adev, i, j);
875 }
876}
877
878/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400879 * amdgpu_vm_bo_find - find the bo_va for a specific vm & bo
880 *
881 * @vm: requested vm
882 * @bo: requested buffer object
883 *
Christian König8843dbb2016-01-26 12:17:11 +0100884 * Find @bo inside the requested vm.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400885 * Search inside the @bos vm list for the requested vm
886 * Returns the found bo_va or NULL if none is found
887 *
888 * Object has to be reserved!
889 */
890struct amdgpu_bo_va *amdgpu_vm_bo_find(struct amdgpu_vm *vm,
891 struct amdgpu_bo *bo)
892{
893 struct amdgpu_bo_va *bo_va;
894
895 list_for_each_entry(bo_va, &bo->va, bo_list) {
896 if (bo_va->vm == vm) {
897 return bo_va;
898 }
899 }
900 return NULL;
901}
902
903/**
Christian Königafef8b82016-08-12 13:29:18 +0200904 * amdgpu_vm_do_set_ptes - helper to call the right asic function
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400905 *
Christian König29efc4f2016-08-04 14:52:50 +0200906 * @params: see amdgpu_pte_update_params definition
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400907 * @pe: addr of the page entry
908 * @addr: dst addr to write into pe
909 * @count: number of page entries to update
910 * @incr: increase next addr by incr bytes
911 * @flags: hw access flags
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400912 *
913 * Traces the parameters and calls the right asic functions
914 * to setup the page table using the DMA.
915 */
Christian Königafef8b82016-08-12 13:29:18 +0200916static void amdgpu_vm_do_set_ptes(struct amdgpu_pte_update_params *params,
917 uint64_t pe, uint64_t addr,
918 unsigned count, uint32_t incr,
Chunming Zhou6b777602016-09-21 16:19:19 +0800919 uint64_t flags)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400920{
Christian Königec2f05f2016-09-25 16:11:52 +0200921 trace_amdgpu_vm_set_ptes(pe, addr, count, incr, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400922
Christian Königafef8b82016-08-12 13:29:18 +0200923 if (count < 3) {
Christian Königde9ea7b2016-08-12 11:33:30 +0200924 amdgpu_vm_write_pte(params->adev, params->ib, pe,
925 addr | flags, count, incr);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400926
927 } else {
Christian König27c5f362016-08-04 15:02:49 +0200928 amdgpu_vm_set_pte_pde(params->adev, params->ib, pe, addr,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400929 count, incr, flags);
930 }
931}
932
933/**
Christian Königafef8b82016-08-12 13:29:18 +0200934 * amdgpu_vm_do_copy_ptes - copy the PTEs from the GART
935 *
936 * @params: see amdgpu_pte_update_params definition
937 * @pe: addr of the page entry
938 * @addr: dst addr to write into pe
939 * @count: number of page entries to update
940 * @incr: increase next addr by incr bytes
941 * @flags: hw access flags
942 *
943 * Traces the parameters and calls the DMA function to copy the PTEs.
944 */
945static void amdgpu_vm_do_copy_ptes(struct amdgpu_pte_update_params *params,
946 uint64_t pe, uint64_t addr,
947 unsigned count, uint32_t incr,
Chunming Zhou6b777602016-09-21 16:19:19 +0800948 uint64_t flags)
Christian Königafef8b82016-08-12 13:29:18 +0200949{
Christian Königec2f05f2016-09-25 16:11:52 +0200950 uint64_t src = (params->src + (addr >> 12) * 8);
Christian Königafef8b82016-08-12 13:29:18 +0200951
Christian Königec2f05f2016-09-25 16:11:52 +0200952
953 trace_amdgpu_vm_copy_ptes(pe, src, count);
954
955 amdgpu_vm_copy_pte(params->adev, params->ib, pe, src, count);
Christian Königafef8b82016-08-12 13:29:18 +0200956}
957
958/**
Christian Königb07c9d22015-11-30 13:26:07 +0100959 * amdgpu_vm_map_gart - Resolve gart mapping of addr
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400960 *
Christian Königb07c9d22015-11-30 13:26:07 +0100961 * @pages_addr: optional DMA address to use for lookup
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400962 * @addr: the unmapped addr
963 *
964 * Look up the physical address of the page that the pte resolves
Christian Königb07c9d22015-11-30 13:26:07 +0100965 * to and return the pointer for the page table entry.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400966 */
Christian Königde9ea7b2016-08-12 11:33:30 +0200967static uint64_t amdgpu_vm_map_gart(const dma_addr_t *pages_addr, uint64_t addr)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400968{
969 uint64_t result;
970
Christian Königde9ea7b2016-08-12 11:33:30 +0200971 /* page table offset */
972 result = pages_addr[addr >> PAGE_SHIFT];
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400973
Christian Königde9ea7b2016-08-12 11:33:30 +0200974 /* in case cpu page size != gpu page size*/
975 result |= addr & (~PAGE_MASK);
Christian Königb07c9d22015-11-30 13:26:07 +0100976
977 result &= 0xFFFFFFFFFFFFF000ULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400978
979 return result;
980}
981
Harish Kasiviswanathan3c824172017-05-11 15:50:08 -0400982/**
983 * amdgpu_vm_cpu_set_ptes - helper to update page tables via CPU
984 *
985 * @params: see amdgpu_pte_update_params definition
986 * @pe: kmap addr of the page entry
987 * @addr: dst addr to write into pe
988 * @count: number of page entries to update
989 * @incr: increase next addr by incr bytes
990 * @flags: hw access flags
991 *
992 * Write count number of PT/PD entries directly.
993 */
994static void amdgpu_vm_cpu_set_ptes(struct amdgpu_pte_update_params *params,
995 uint64_t pe, uint64_t addr,
996 unsigned count, uint32_t incr,
997 uint64_t flags)
998{
999 unsigned int i;
Harish Kasiviswanathanb4d42512017-05-11 19:47:22 -04001000 uint64_t value;
Harish Kasiviswanathan3c824172017-05-11 15:50:08 -04001001
Christian König03918b32017-07-11 17:15:37 +02001002 trace_amdgpu_vm_set_ptes(pe, addr, count, incr, flags);
1003
Harish Kasiviswanathan3c824172017-05-11 15:50:08 -04001004 for (i = 0; i < count; i++) {
Harish Kasiviswanathanb4d42512017-05-11 19:47:22 -04001005 value = params->pages_addr ?
1006 amdgpu_vm_map_gart(params->pages_addr, addr) :
1007 addr;
Harish Kasiviswanathana19240052017-06-09 17:47:28 -04001008 amdgpu_gart_set_pte_pde(params->adev, (void *)(uintptr_t)pe,
Harish Kasiviswanathanb4d42512017-05-11 19:47:22 -04001009 i, value, flags);
Harish Kasiviswanathan3c824172017-05-11 15:50:08 -04001010 addr += incr;
1011 }
Harish Kasiviswanathan3c824172017-05-11 15:50:08 -04001012}
1013
Christian Königa33cab72017-07-11 17:13:00 +02001014static int amdgpu_vm_wait_pd(struct amdgpu_device *adev, struct amdgpu_vm *vm,
1015 void *owner)
Harish Kasiviswanathan3c824172017-05-11 15:50:08 -04001016{
1017 struct amdgpu_sync sync;
1018 int r;
1019
1020 amdgpu_sync_create(&sync);
Christian Königa33cab72017-07-11 17:13:00 +02001021 amdgpu_sync_resv(adev, &sync, vm->root.bo->tbo.resv, owner);
Harish Kasiviswanathan3c824172017-05-11 15:50:08 -04001022 r = amdgpu_sync_wait(&sync, true);
1023 amdgpu_sync_free(&sync);
1024
1025 return r;
1026}
1027
Christian Königf8991ba2016-09-16 15:36:49 +02001028/*
Christian König194d2162016-10-12 15:13:52 +02001029 * amdgpu_vm_update_level - update a single level in the hierarchy
Christian Königf8991ba2016-09-16 15:36:49 +02001030 *
1031 * @adev: amdgpu_device pointer
1032 * @vm: requested vm
Christian König194d2162016-10-12 15:13:52 +02001033 * @parent: parent directory
Christian Königf8991ba2016-09-16 15:36:49 +02001034 *
Christian König194d2162016-10-12 15:13:52 +02001035 * Makes sure all entries in @parent are up to date.
Christian Königf8991ba2016-09-16 15:36:49 +02001036 * Returns 0 for success, error for failure.
1037 */
Christian König194d2162016-10-12 15:13:52 +02001038static int amdgpu_vm_update_level(struct amdgpu_device *adev,
1039 struct amdgpu_vm *vm,
1040 struct amdgpu_vm_pt *parent,
1041 unsigned level)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001042{
Christian Königf8991ba2016-09-16 15:36:49 +02001043 struct amdgpu_bo *shadow;
Harish Kasiviswanathana19240052017-06-09 17:47:28 -04001044 struct amdgpu_ring *ring = NULL;
1045 uint64_t pd_addr, shadow_addr = 0;
Christian König194d2162016-10-12 15:13:52 +02001046 uint32_t incr = amdgpu_vm_bo_size(adev, level + 1);
Christian Königf8991ba2016-09-16 15:36:49 +02001047 uint64_t last_pde = ~0, last_pt = ~0, last_shadow = ~0;
Harish Kasiviswanathana19240052017-06-09 17:47:28 -04001048 unsigned count = 0, pt_idx, ndw = 0;
Christian Königd71518b2016-02-01 12:20:25 +01001049 struct amdgpu_job *job;
Christian König29efc4f2016-08-04 14:52:50 +02001050 struct amdgpu_pte_update_params params;
Dave Airlie220196b2016-10-28 11:33:52 +10001051 struct dma_fence *fence = NULL;
Chunming Zhoud5fc5e82015-07-21 16:52:10 +08001052
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001053 int r;
1054
Christian König194d2162016-10-12 15:13:52 +02001055 if (!parent->entries)
1056 return 0;
Christian Königd71518b2016-02-01 12:20:25 +01001057
Christian König27c5f362016-08-04 15:02:49 +02001058 memset(&params, 0, sizeof(params));
1059 params.adev = adev;
Harish Kasiviswanathan3c824172017-05-11 15:50:08 -04001060 shadow = parent->bo->shadow;
1061
Alex Deucher69277982017-07-13 15:37:11 -04001062 if (vm->use_cpu_for_update) {
Christian Königf5e1c742017-07-20 23:45:18 +02001063 pd_addr = (unsigned long)amdgpu_bo_kptr(parent->bo);
Christian Königa33cab72017-07-11 17:13:00 +02001064 r = amdgpu_vm_wait_pd(adev, vm, AMDGPU_FENCE_OWNER_VM);
Christian König0a096fb2017-07-12 10:01:48 +02001065 if (unlikely(r))
Harish Kasiviswanathan3c824172017-05-11 15:50:08 -04001066 return r;
Christian König0a096fb2017-07-12 10:01:48 +02001067
Harish Kasiviswanathan3c824172017-05-11 15:50:08 -04001068 params.func = amdgpu_vm_cpu_set_ptes;
1069 } else {
1070 if (shadow) {
1071 r = amdgpu_ttm_bind(&shadow->tbo, &shadow->tbo.mem);
1072 if (r)
1073 return r;
1074 }
1075 ring = container_of(vm->entity.sched, struct amdgpu_ring,
1076 sched);
1077
1078 /* padding, etc. */
1079 ndw = 64;
1080
1081 /* assume the worst case */
1082 ndw += parent->last_entry_used * 6;
1083
1084 pd_addr = amdgpu_bo_gpu_offset(parent->bo);
1085
1086 if (shadow) {
1087 shadow_addr = amdgpu_bo_gpu_offset(shadow);
1088 ndw *= 2;
1089 } else {
1090 shadow_addr = 0;
1091 }
1092
1093 r = amdgpu_job_alloc_with_ib(adev, ndw * 4, &job);
1094 if (r)
1095 return r;
1096
1097 params.ib = &job->ibs[0];
1098 params.func = amdgpu_vm_do_set_ptes;
1099 }
1100
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001101
Christian König194d2162016-10-12 15:13:52 +02001102 /* walk over the address space and update the directory */
1103 for (pt_idx = 0; pt_idx <= parent->last_entry_used; ++pt_idx) {
1104 struct amdgpu_bo *bo = parent->entries[pt_idx].bo;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001105 uint64_t pde, pt;
1106
1107 if (bo == NULL)
1108 continue;
1109
Christian König0fc86832016-09-16 11:46:23 +02001110 if (bo->shadow) {
Christian Königf8991ba2016-09-16 15:36:49 +02001111 struct amdgpu_bo *pt_shadow = bo->shadow;
Christian König0fc86832016-09-16 11:46:23 +02001112
Christian Königf8991ba2016-09-16 15:36:49 +02001113 r = amdgpu_ttm_bind(&pt_shadow->tbo,
1114 &pt_shadow->tbo.mem);
Christian König0fc86832016-09-16 11:46:23 +02001115 if (r)
1116 return r;
1117 }
1118
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001119 pt = amdgpu_bo_gpu_offset(bo);
Christian König53e2e912017-05-15 15:19:10 +02001120 pt = amdgpu_gart_get_vm_pde(adev, pt);
Alex Deuchercf2f0a32017-07-25 16:35:38 -04001121 if (parent->entries[pt_idx].addr == pt ||
1122 parent->entries[pt_idx].huge_page)
Christian Königf8991ba2016-09-16 15:36:49 +02001123 continue;
1124
Christian König194d2162016-10-12 15:13:52 +02001125 parent->entries[pt_idx].addr = pt;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001126
1127 pde = pd_addr + pt_idx * 8;
1128 if (((last_pde + 8 * count) != pde) ||
Christian König96105e52016-08-12 12:59:59 +02001129 ((last_pt + incr * count) != pt) ||
1130 (count == AMDGPU_VM_MAX_UPDATE_SIZE)) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001131
1132 if (count) {
Christian Königf8991ba2016-09-16 15:36:49 +02001133 if (shadow)
Harish Kasiviswanathan3c824172017-05-11 15:50:08 -04001134 params.func(&params,
1135 last_shadow,
1136 last_pt, count,
1137 incr,
1138 AMDGPU_PTE_VALID);
Christian Königf8991ba2016-09-16 15:36:49 +02001139
Harish Kasiviswanathan3c824172017-05-11 15:50:08 -04001140 params.func(&params, last_pde,
1141 last_pt, count, incr,
1142 AMDGPU_PTE_VALID);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001143 }
1144
1145 count = 1;
1146 last_pde = pde;
Christian Königf8991ba2016-09-16 15:36:49 +02001147 last_shadow = shadow_addr + pt_idx * 8;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001148 last_pt = pt;
1149 } else {
1150 ++count;
1151 }
1152 }
1153
Christian Königf8991ba2016-09-16 15:36:49 +02001154 if (count) {
Christian König67003a12016-10-12 14:46:26 +02001155 if (vm->root.bo->shadow)
Harish Kasiviswanathan3c824172017-05-11 15:50:08 -04001156 params.func(&params, last_shadow, last_pt,
1157 count, incr, AMDGPU_PTE_VALID);
Christian Königf8991ba2016-09-16 15:36:49 +02001158
Harish Kasiviswanathan3c824172017-05-11 15:50:08 -04001159 params.func(&params, last_pde, last_pt,
1160 count, incr, AMDGPU_PTE_VALID);
Chunming Zhoud5fc5e82015-07-21 16:52:10 +08001161 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001162
Christian König0a096fb2017-07-12 10:01:48 +02001163 if (!vm->use_cpu_for_update) {
1164 if (params.ib->length_dw == 0) {
1165 amdgpu_job_free(job);
1166 } else {
1167 amdgpu_ring_pad_ib(ring, params.ib);
1168 amdgpu_sync_resv(adev, &job->sync, parent->bo->tbo.resv,
Christian König194d2162016-10-12 15:13:52 +02001169 AMDGPU_FENCE_OWNER_VM);
Christian König0a096fb2017-07-12 10:01:48 +02001170 if (shadow)
1171 amdgpu_sync_resv(adev, &job->sync,
1172 shadow->tbo.resv,
1173 AMDGPU_FENCE_OWNER_VM);
Christian Königf8991ba2016-09-16 15:36:49 +02001174
Christian König0a096fb2017-07-12 10:01:48 +02001175 WARN_ON(params.ib->length_dw > ndw);
1176 r = amdgpu_job_submit(job, ring, &vm->entity,
1177 AMDGPU_FENCE_OWNER_VM, &fence);
1178 if (r)
1179 goto error_free;
Christian Königf8991ba2016-09-16 15:36:49 +02001180
Christian König0a096fb2017-07-12 10:01:48 +02001181 amdgpu_bo_fence(parent->bo, fence, true);
1182 dma_fence_put(vm->last_dir_update);
1183 vm->last_dir_update = dma_fence_get(fence);
1184 dma_fence_put(fence);
1185 }
Christian König194d2162016-10-12 15:13:52 +02001186 }
1187 /*
1188 * Recurse into the subdirectories. This recursion is harmless because
1189 * we only have a maximum of 5 layers.
1190 */
1191 for (pt_idx = 0; pt_idx <= parent->last_entry_used; ++pt_idx) {
1192 struct amdgpu_vm_pt *entry = &parent->entries[pt_idx];
1193
1194 if (!entry->bo)
1195 continue;
1196
1197 r = amdgpu_vm_update_level(adev, vm, entry, level + 1);
1198 if (r)
1199 return r;
1200 }
Christian Königf8991ba2016-09-16 15:36:49 +02001201
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001202 return 0;
Chunming Zhoud5fc5e82015-07-21 16:52:10 +08001203
1204error_free:
Christian Königd71518b2016-02-01 12:20:25 +01001205 amdgpu_job_free(job);
Chunming Zhou4af9f072015-08-03 12:57:31 +08001206 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001207}
1208
Christian König194d2162016-10-12 15:13:52 +02001209/*
Christian König92456b92017-05-12 16:09:26 +02001210 * amdgpu_vm_invalidate_level - mark all PD levels as invalid
1211 *
1212 * @parent: parent PD
1213 *
1214 * Mark all PD level as invalid after an error.
1215 */
1216static void amdgpu_vm_invalidate_level(struct amdgpu_vm_pt *parent)
1217{
1218 unsigned pt_idx;
1219
1220 /*
1221 * Recurse into the subdirectories. This recursion is harmless because
1222 * we only have a maximum of 5 layers.
1223 */
1224 for (pt_idx = 0; pt_idx <= parent->last_entry_used; ++pt_idx) {
1225 struct amdgpu_vm_pt *entry = &parent->entries[pt_idx];
1226
1227 if (!entry->bo)
1228 continue;
1229
1230 entry->addr = ~0ULL;
1231 amdgpu_vm_invalidate_level(entry);
1232 }
1233}
1234
1235/*
Christian König194d2162016-10-12 15:13:52 +02001236 * amdgpu_vm_update_directories - make sure that all directories are valid
1237 *
1238 * @adev: amdgpu_device pointer
1239 * @vm: requested vm
1240 *
1241 * Makes sure all directories are up to date.
1242 * Returns 0 for success, error for failure.
1243 */
1244int amdgpu_vm_update_directories(struct amdgpu_device *adev,
1245 struct amdgpu_vm *vm)
1246{
Christian König92456b92017-05-12 16:09:26 +02001247 int r;
1248
1249 r = amdgpu_vm_update_level(adev, vm, &vm->root, 0);
1250 if (r)
1251 amdgpu_vm_invalidate_level(&vm->root);
1252
Christian König68c62302017-07-11 17:23:29 +02001253 if (vm->use_cpu_for_update) {
1254 /* Flush HDP */
1255 mb();
1256 amdgpu_gart_flush_gpu_tlb(adev, 0);
1257 }
1258
Christian König92456b92017-05-12 16:09:26 +02001259 return r;
Christian König194d2162016-10-12 15:13:52 +02001260}
1261
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001262/**
Alex Deuchercf2f0a32017-07-25 16:35:38 -04001263 * amdgpu_vm_find_entry - find the entry for an address
Christian König4e2cb642016-10-25 15:52:28 +02001264 *
1265 * @p: see amdgpu_pte_update_params definition
1266 * @addr: virtual address in question
Alex Deuchercf2f0a32017-07-25 16:35:38 -04001267 * @entry: resulting entry or NULL
1268 * @parent: parent entry
Christian König4e2cb642016-10-25 15:52:28 +02001269 *
Alex Deuchercf2f0a32017-07-25 16:35:38 -04001270 * Find the vm_pt entry and it's parent for the given address.
Christian König4e2cb642016-10-25 15:52:28 +02001271 */
Alex Deuchercf2f0a32017-07-25 16:35:38 -04001272void amdgpu_vm_get_entry(struct amdgpu_pte_update_params *p, uint64_t addr,
1273 struct amdgpu_vm_pt **entry,
1274 struct amdgpu_vm_pt **parent)
Christian König4e2cb642016-10-25 15:52:28 +02001275{
Christian König4e2cb642016-10-25 15:52:28 +02001276 unsigned idx, level = p->adev->vm_manager.num_level;
1277
Alex Deuchercf2f0a32017-07-25 16:35:38 -04001278 *parent = NULL;
1279 *entry = &p->vm->root;
1280 while ((*entry)->entries) {
Zhang, Jerry36b32a62017-03-29 16:08:32 +08001281 idx = addr >> (p->adev->vm_manager.block_size * level--);
Alex Deuchercf2f0a32017-07-25 16:35:38 -04001282 idx %= amdgpu_bo_size((*entry)->bo) / 8;
1283 *parent = *entry;
1284 *entry = &(*entry)->entries[idx];
Christian König4e2cb642016-10-25 15:52:28 +02001285 }
1286
1287 if (level)
Alex Deuchercf2f0a32017-07-25 16:35:38 -04001288 *entry = NULL;
1289}
Christian König4e2cb642016-10-25 15:52:28 +02001290
Alex Deuchercf2f0a32017-07-25 16:35:38 -04001291/**
1292 * amdgpu_vm_handle_huge_pages - handle updating the PD with huge pages
1293 *
1294 * @p: see amdgpu_pte_update_params definition
1295 * @entry: vm_pt entry to check
1296 * @parent: parent entry
1297 * @nptes: number of PTEs updated with this operation
1298 * @dst: destination address where the PTEs should point to
1299 * @flags: access flags fro the PTEs
1300 *
1301 * Check if we can update the PD with a huge page.
1302 */
1303static int amdgpu_vm_handle_huge_pages(struct amdgpu_pte_update_params *p,
1304 struct amdgpu_vm_pt *entry,
1305 struct amdgpu_vm_pt *parent,
1306 unsigned nptes, uint64_t dst,
1307 uint64_t flags)
1308{
1309 bool use_cpu_update = (p->func == amdgpu_vm_cpu_set_ptes);
1310 uint64_t pd_addr, pde;
1311 int r;
1312
1313 /* In the case of a mixed PT the PDE must point to it*/
1314 if (p->adev->asic_type < CHIP_VEGA10 ||
1315 nptes != AMDGPU_VM_PTE_COUNT(p->adev) ||
1316 p->func == amdgpu_vm_do_copy_ptes ||
1317 !(flags & AMDGPU_PTE_VALID)) {
1318
1319 dst = amdgpu_bo_gpu_offset(entry->bo);
1320 dst = amdgpu_gart_get_vm_pde(p->adev, dst);
1321 flags = AMDGPU_PTE_VALID;
1322 } else {
1323 flags |= AMDGPU_PDE_PTE;
1324 }
1325
1326 if (entry->addr == dst &&
1327 entry->huge_page == !!(flags & AMDGPU_PDE_PTE))
1328 return 0;
1329
1330 entry->addr = dst;
1331 entry->huge_page = !!(flags & AMDGPU_PDE_PTE);
1332
1333 if (use_cpu_update) {
1334 r = amdgpu_bo_kmap(parent->bo, (void *)&pd_addr);
1335 if (r)
1336 return r;
1337
1338 pde = pd_addr + (entry - parent->entries) * 8;
1339 amdgpu_vm_cpu_set_ptes(p, pde, dst, 1, 0, flags);
1340 } else {
1341 if (parent->bo->shadow) {
1342 pd_addr = amdgpu_bo_gpu_offset(parent->bo->shadow);
1343 pde = pd_addr + (entry - parent->entries) * 8;
1344 amdgpu_vm_do_set_ptes(p, pde, dst, 1, 0, flags);
1345 }
1346 pd_addr = amdgpu_bo_gpu_offset(parent->bo);
1347 pde = pd_addr + (entry - parent->entries) * 8;
1348 amdgpu_vm_do_set_ptes(p, pde, dst, 1, 0, flags);
1349 }
1350
1351 return 0;
Christian König4e2cb642016-10-25 15:52:28 +02001352}
1353
1354/**
Christian König92696dd2016-08-05 13:56:35 +02001355 * amdgpu_vm_update_ptes - make sure that page tables are valid
1356 *
1357 * @params: see amdgpu_pte_update_params definition
1358 * @vm: requested vm
1359 * @start: start of GPU address range
1360 * @end: end of GPU address range
1361 * @dst: destination address to map to, the next dst inside the function
1362 * @flags: mapping flags
1363 *
1364 * Update the page tables in the range @start - @end.
Harish Kasiviswanathancc28c4e2017-05-11 22:39:31 -04001365 * Returns 0 for success, -EINVAL for failure.
Christian König92696dd2016-08-05 13:56:35 +02001366 */
Harish Kasiviswanathancc28c4e2017-05-11 22:39:31 -04001367static int amdgpu_vm_update_ptes(struct amdgpu_pte_update_params *params,
Christian König92696dd2016-08-05 13:56:35 +02001368 uint64_t start, uint64_t end,
Chunming Zhou6b777602016-09-21 16:19:19 +08001369 uint64_t dst, uint64_t flags)
Christian König92696dd2016-08-05 13:56:35 +02001370{
Zhang, Jerry36b32a62017-03-29 16:08:32 +08001371 struct amdgpu_device *adev = params->adev;
1372 const uint64_t mask = AMDGPU_VM_PTE_COUNT(adev) - 1;
Christian König92696dd2016-08-05 13:56:35 +02001373
Christian König301654a2017-05-16 14:30:27 +02001374 uint64_t addr, pe_start;
Christian König92696dd2016-08-05 13:56:35 +02001375 struct amdgpu_bo *pt;
Christian König301654a2017-05-16 14:30:27 +02001376 unsigned nptes;
Harish Kasiviswanathan370f0922017-06-09 17:47:27 -04001377 bool use_cpu_update = (params->func == amdgpu_vm_cpu_set_ptes);
Alex Deuchercf2f0a32017-07-25 16:35:38 -04001378 int r;
Christian König92696dd2016-08-05 13:56:35 +02001379
1380 /* walk over the address space and update the page tables */
Alex Deuchercf2f0a32017-07-25 16:35:38 -04001381 for (addr = start; addr < end; addr += nptes,
1382 dst += nptes * AMDGPU_GPU_PAGE_SIZE) {
1383 struct amdgpu_vm_pt *entry, *parent;
1384
1385 amdgpu_vm_get_entry(params, addr, &entry, &parent);
1386 if (!entry)
1387 return -ENOENT;
Christian König4e2cb642016-10-25 15:52:28 +02001388
Christian König92696dd2016-08-05 13:56:35 +02001389 if ((addr & ~mask) == (end & ~mask))
1390 nptes = end - addr;
1391 else
Zhang, Jerry36b32a62017-03-29 16:08:32 +08001392 nptes = AMDGPU_VM_PTE_COUNT(adev) - (addr & mask);
Christian König92696dd2016-08-05 13:56:35 +02001393
Alex Deuchercf2f0a32017-07-25 16:35:38 -04001394 r = amdgpu_vm_handle_huge_pages(params, entry, parent,
1395 nptes, dst, flags);
1396 if (r)
1397 return r;
1398
1399 if (entry->huge_page)
1400 continue;
1401
1402 pt = entry->bo;
Harish Kasiviswanathan370f0922017-06-09 17:47:27 -04001403 if (use_cpu_update) {
Christian Königf5e1c742017-07-20 23:45:18 +02001404 pe_start = (unsigned long)amdgpu_bo_kptr(pt);
Christian Königdd0792c2017-06-27 14:48:15 -04001405 } else {
1406 if (pt->shadow) {
1407 pe_start = amdgpu_bo_gpu_offset(pt->shadow);
1408 pe_start += (addr & mask) * 8;
1409 params->func(params, pe_start, dst, nptes,
1410 AMDGPU_GPU_PAGE_SIZE, flags);
1411 }
Harish Kasiviswanathan370f0922017-06-09 17:47:27 -04001412 pe_start = amdgpu_bo_gpu_offset(pt);
Christian Königdd0792c2017-06-27 14:48:15 -04001413 }
Christian König92696dd2016-08-05 13:56:35 +02001414
Christian König301654a2017-05-16 14:30:27 +02001415 pe_start += (addr & mask) * 8;
Christian König301654a2017-05-16 14:30:27 +02001416 params->func(params, pe_start, dst, nptes,
1417 AMDGPU_GPU_PAGE_SIZE, flags);
Christian König92696dd2016-08-05 13:56:35 +02001418 }
1419
Harish Kasiviswanathancc28c4e2017-05-11 22:39:31 -04001420 return 0;
Christian König92696dd2016-08-05 13:56:35 +02001421}
1422
1423/*
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001424 * amdgpu_vm_frag_ptes - add fragment information to PTEs
1425 *
Christian König29efc4f2016-08-04 14:52:50 +02001426 * @params: see amdgpu_pte_update_params definition
Christian König92696dd2016-08-05 13:56:35 +02001427 * @vm: requested vm
1428 * @start: first PTE to handle
1429 * @end: last PTE to handle
1430 * @dst: addr those PTEs should point to
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001431 * @flags: hw mapping flags
Harish Kasiviswanathancc28c4e2017-05-11 22:39:31 -04001432 * Returns 0 for success, -EINVAL for failure.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001433 */
Harish Kasiviswanathancc28c4e2017-05-11 22:39:31 -04001434static int amdgpu_vm_frag_ptes(struct amdgpu_pte_update_params *params,
Christian König92696dd2016-08-05 13:56:35 +02001435 uint64_t start, uint64_t end,
Chunming Zhou6b777602016-09-21 16:19:19 +08001436 uint64_t dst, uint64_t flags)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001437{
Harish Kasiviswanathancc28c4e2017-05-11 22:39:31 -04001438 int r;
1439
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001440 /**
1441 * The MC L1 TLB supports variable sized pages, based on a fragment
1442 * field in the PTE. When this field is set to a non-zero value, page
1443 * granularity is increased from 4KB to (1 << (12 + frag)). The PTE
1444 * flags are considered valid for all PTEs within the fragment range
1445 * and corresponding mappings are assumed to be physically contiguous.
1446 *
1447 * The L1 TLB can store a single PTE for the whole fragment,
1448 * significantly increasing the space available for translation
1449 * caching. This leads to large improvements in throughput when the
1450 * TLB is under pressure.
1451 *
1452 * The L2 TLB distributes small and large fragments into two
1453 * asymmetric partitions. The large fragment cache is significantly
1454 * larger. Thus, we try to use large fragments wherever possible.
1455 * Userspace can support this by aligning virtual base address and
1456 * allocation size to the fragment size.
1457 */
1458
Christian König80366172016-10-04 13:39:43 +02001459 /* SI and newer are optimized for 64KB */
Christian König6be7adb2017-05-23 18:35:22 +02001460 unsigned pages_per_frag = AMDGPU_LOG2_PAGES_PER_FRAG(params->adev);
1461 uint64_t frag_flags = AMDGPU_PTE_FRAG(pages_per_frag);
1462 uint64_t frag_align = 1 << pages_per_frag;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001463
Christian König92696dd2016-08-05 13:56:35 +02001464 uint64_t frag_start = ALIGN(start, frag_align);
1465 uint64_t frag_end = end & ~(frag_align - 1);
Christian König31f6c1f2016-01-26 12:37:49 +01001466
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001467 /* system pages are non continuously */
Christian Königb7fc2cb2016-08-11 16:44:15 +02001468 if (params->src || !(flags & AMDGPU_PTE_VALID) ||
Harish Kasiviswanathancc28c4e2017-05-11 22:39:31 -04001469 (frag_start >= frag_end))
1470 return amdgpu_vm_update_ptes(params, start, end, dst, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001471
1472 /* handle the 4K area at the beginning */
Christian König92696dd2016-08-05 13:56:35 +02001473 if (start != frag_start) {
Harish Kasiviswanathancc28c4e2017-05-11 22:39:31 -04001474 r = amdgpu_vm_update_ptes(params, start, frag_start,
1475 dst, flags);
1476 if (r)
1477 return r;
Christian König92696dd2016-08-05 13:56:35 +02001478 dst += (frag_start - start) * AMDGPU_GPU_PAGE_SIZE;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001479 }
1480
1481 /* handle the area in the middle */
Harish Kasiviswanathancc28c4e2017-05-11 22:39:31 -04001482 r = amdgpu_vm_update_ptes(params, frag_start, frag_end, dst,
1483 flags | frag_flags);
1484 if (r)
1485 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001486
1487 /* handle the 4K area at the end */
Christian König92696dd2016-08-05 13:56:35 +02001488 if (frag_end != end) {
1489 dst += (frag_end - frag_start) * AMDGPU_GPU_PAGE_SIZE;
Harish Kasiviswanathancc28c4e2017-05-11 22:39:31 -04001490 r = amdgpu_vm_update_ptes(params, frag_end, end, dst, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001491 }
Harish Kasiviswanathancc28c4e2017-05-11 22:39:31 -04001492 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001493}
1494
1495/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001496 * amdgpu_vm_bo_update_mapping - update a mapping in the vm page table
1497 *
1498 * @adev: amdgpu_device pointer
Christian König3cabaa52016-06-06 10:17:58 +02001499 * @exclusive: fence we need to sync to
Christian Königfa3ab3c2016-03-18 21:00:35 +01001500 * @src: address where to copy page table entries from
1501 * @pages_addr: DMA addresses to use for mapping
Christian Königa14faa62016-01-25 14:27:31 +01001502 * @vm: requested vm
1503 * @start: start of mapped range
1504 * @last: last mapped entry
1505 * @flags: flags for the entries
1506 * @addr: addr to set the area to
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001507 * @fence: optional resulting fence
1508 *
Christian Königa14faa62016-01-25 14:27:31 +01001509 * Fill in the page table entries between @start and @last.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001510 * Returns 0 for success, -EINVAL for failure.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001511 */
1512static int amdgpu_vm_bo_update_mapping(struct amdgpu_device *adev,
Chris Wilsonf54d1862016-10-25 13:00:45 +01001513 struct dma_fence *exclusive,
Christian Königfa3ab3c2016-03-18 21:00:35 +01001514 uint64_t src,
1515 dma_addr_t *pages_addr,
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001516 struct amdgpu_vm *vm,
Christian Königa14faa62016-01-25 14:27:31 +01001517 uint64_t start, uint64_t last,
Chunming Zhou6b777602016-09-21 16:19:19 +08001518 uint64_t flags, uint64_t addr,
Chris Wilsonf54d1862016-10-25 13:00:45 +01001519 struct dma_fence **fence)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001520{
Christian König2d55e452016-02-08 17:37:38 +01001521 struct amdgpu_ring *ring;
Christian Königa1e08d32016-01-26 11:40:46 +01001522 void *owner = AMDGPU_FENCE_OWNER_VM;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001523 unsigned nptes, ncmds, ndw;
Christian Königd71518b2016-02-01 12:20:25 +01001524 struct amdgpu_job *job;
Christian König29efc4f2016-08-04 14:52:50 +02001525 struct amdgpu_pte_update_params params;
Chris Wilsonf54d1862016-10-25 13:00:45 +01001526 struct dma_fence *f = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001527 int r;
1528
Christian Königafef8b82016-08-12 13:29:18 +02001529 memset(&params, 0, sizeof(params));
1530 params.adev = adev;
Christian König49ac8a22016-10-13 15:09:08 +02001531 params.vm = vm;
Christian Königafef8b82016-08-12 13:29:18 +02001532 params.src = src;
1533
Christian Königa33cab72017-07-11 17:13:00 +02001534 /* sync to everything on unmapping */
1535 if (!(flags & AMDGPU_PTE_VALID))
1536 owner = AMDGPU_FENCE_OWNER_UNDEFINED;
1537
Harish Kasiviswanathanb4d42512017-05-11 19:47:22 -04001538 if (vm->use_cpu_for_update) {
1539 /* params.src is used as flag to indicate system Memory */
1540 if (pages_addr)
1541 params.src = ~0;
1542
1543 /* Wait for PT BOs to be free. PTs share the same resv. object
1544 * as the root PD BO
1545 */
Christian Königa33cab72017-07-11 17:13:00 +02001546 r = amdgpu_vm_wait_pd(adev, vm, owner);
Harish Kasiviswanathanb4d42512017-05-11 19:47:22 -04001547 if (unlikely(r))
1548 return r;
1549
1550 params.func = amdgpu_vm_cpu_set_ptes;
1551 params.pages_addr = pages_addr;
Harish Kasiviswanathanb4d42512017-05-11 19:47:22 -04001552 return amdgpu_vm_frag_ptes(&params, start, last + 1,
1553 addr, flags);
1554 }
1555
Christian König2d55e452016-02-08 17:37:38 +01001556 ring = container_of(vm->entity.sched, struct amdgpu_ring, sched);
Christian König27c5f362016-08-04 15:02:49 +02001557
Christian Königa14faa62016-01-25 14:27:31 +01001558 nptes = last - start + 1;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001559
1560 /*
1561 * reserve space for one command every (1 << BLOCK_SIZE)
1562 * entries or 2k dwords (whatever is smaller)
1563 */
Zhang, Jerry36b32a62017-03-29 16:08:32 +08001564 ncmds = (nptes >> min(adev->vm_manager.block_size, 11u)) + 1;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001565
1566 /* padding, etc. */
1567 ndw = 64;
1568
Alex Deuchercf2f0a32017-07-25 16:35:38 -04001569 /* one PDE write for each huge page */
1570 ndw += ((nptes >> adev->vm_manager.block_size) + 1) * 6;
1571
Christian Königb0456f92016-08-11 14:06:54 +02001572 if (src) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001573 /* only copy commands needed */
1574 ndw += ncmds * 7;
1575
Christian Königafef8b82016-08-12 13:29:18 +02001576 params.func = amdgpu_vm_do_copy_ptes;
1577
Christian Königb0456f92016-08-11 14:06:54 +02001578 } else if (pages_addr) {
1579 /* copy commands needed */
1580 ndw += ncmds * 7;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001581
Christian Königb0456f92016-08-11 14:06:54 +02001582 /* and also PTEs */
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001583 ndw += nptes * 2;
1584
Christian Königafef8b82016-08-12 13:29:18 +02001585 params.func = amdgpu_vm_do_copy_ptes;
1586
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001587 } else {
1588 /* set page commands needed */
1589 ndw += ncmds * 10;
1590
1591 /* two extra commands for begin/end of fragment */
1592 ndw += 2 * 10;
Christian Königafef8b82016-08-12 13:29:18 +02001593
1594 params.func = amdgpu_vm_do_set_ptes;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001595 }
1596
Christian Königd71518b2016-02-01 12:20:25 +01001597 r = amdgpu_job_alloc_with_ib(adev, ndw * 4, &job);
1598 if (r)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001599 return r;
Christian Königd71518b2016-02-01 12:20:25 +01001600
Christian König29efc4f2016-08-04 14:52:50 +02001601 params.ib = &job->ibs[0];
Chunming Zhoud5fc5e82015-07-21 16:52:10 +08001602
Christian Königb0456f92016-08-11 14:06:54 +02001603 if (!src && pages_addr) {
1604 uint64_t *pte;
1605 unsigned i;
1606
1607 /* Put the PTEs at the end of the IB. */
1608 i = ndw - nptes * 2;
1609 pte= (uint64_t *)&(job->ibs->ptr[i]);
1610 params.src = job->ibs->gpu_addr + i * 4;
1611
1612 for (i = 0; i < nptes; ++i) {
1613 pte[i] = amdgpu_vm_map_gart(pages_addr, addr + i *
1614 AMDGPU_GPU_PAGE_SIZE);
1615 pte[i] |= flags;
1616 }
Christian Königd7a4ac62016-09-25 11:54:00 +02001617 addr = 0;
Christian Königb0456f92016-08-11 14:06:54 +02001618 }
1619
Christian König3cabaa52016-06-06 10:17:58 +02001620 r = amdgpu_sync_fence(adev, &job->sync, exclusive);
1621 if (r)
1622 goto error_free;
1623
Christian König67003a12016-10-12 14:46:26 +02001624 r = amdgpu_sync_resv(adev, &job->sync, vm->root.bo->tbo.resv,
Christian Königa1e08d32016-01-26 11:40:46 +01001625 owner);
1626 if (r)
1627 goto error_free;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001628
Christian König67003a12016-10-12 14:46:26 +02001629 r = reservation_object_reserve_shared(vm->root.bo->tbo.resv);
Christian Königa1e08d32016-01-26 11:40:46 +01001630 if (r)
1631 goto error_free;
1632
Harish Kasiviswanathancc28c4e2017-05-11 22:39:31 -04001633 r = amdgpu_vm_frag_ptes(&params, start, last + 1, addr, flags);
1634 if (r)
1635 goto error_free;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001636
Christian König29efc4f2016-08-04 14:52:50 +02001637 amdgpu_ring_pad_ib(ring, params.ib);
1638 WARN_ON(params.ib->length_dw > ndw);
Christian König2bd9ccf2016-02-01 12:53:58 +01001639 r = amdgpu_job_submit(job, ring, &vm->entity,
1640 AMDGPU_FENCE_OWNER_VM, &f);
Chunming Zhou4af9f072015-08-03 12:57:31 +08001641 if (r)
1642 goto error_free;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001643
Christian König67003a12016-10-12 14:46:26 +02001644 amdgpu_bo_fence(vm->root.bo, f, true);
Christian König284710f2017-01-30 11:09:31 +01001645 dma_fence_put(*fence);
1646 *fence = f;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001647 return 0;
Chunming Zhoud5fc5e82015-07-21 16:52:10 +08001648
1649error_free:
Christian Königd71518b2016-02-01 12:20:25 +01001650 amdgpu_job_free(job);
Alex Deuchercf2f0a32017-07-25 16:35:38 -04001651 amdgpu_vm_invalidate_level(&vm->root);
Chunming Zhou4af9f072015-08-03 12:57:31 +08001652 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001653}
1654
1655/**
Christian Königa14faa62016-01-25 14:27:31 +01001656 * amdgpu_vm_bo_split_mapping - split a mapping into smaller chunks
1657 *
1658 * @adev: amdgpu_device pointer
Christian König3cabaa52016-06-06 10:17:58 +02001659 * @exclusive: fence we need to sync to
Christian König8358dce2016-03-30 10:50:25 +02001660 * @gtt_flags: flags as they are used for GTT
1661 * @pages_addr: DMA addresses to use for mapping
Christian Königa14faa62016-01-25 14:27:31 +01001662 * @vm: requested vm
1663 * @mapping: mapped range and flags to use for the update
Christian König8358dce2016-03-30 10:50:25 +02001664 * @flags: HW flags for the mapping
Christian König63e0ba42016-08-16 17:38:37 +02001665 * @nodes: array of drm_mm_nodes with the MC addresses
Christian Königa14faa62016-01-25 14:27:31 +01001666 * @fence: optional resulting fence
1667 *
1668 * Split the mapping into smaller chunks so that each update fits
1669 * into a SDMA IB.
1670 * Returns 0 for success, -EINVAL for failure.
1671 */
1672static int amdgpu_vm_bo_split_mapping(struct amdgpu_device *adev,
Chris Wilsonf54d1862016-10-25 13:00:45 +01001673 struct dma_fence *exclusive,
Chunming Zhou6b777602016-09-21 16:19:19 +08001674 uint64_t gtt_flags,
Christian König8358dce2016-03-30 10:50:25 +02001675 dma_addr_t *pages_addr,
Christian Königa14faa62016-01-25 14:27:31 +01001676 struct amdgpu_vm *vm,
1677 struct amdgpu_bo_va_mapping *mapping,
Chunming Zhou6b777602016-09-21 16:19:19 +08001678 uint64_t flags,
Christian König63e0ba42016-08-16 17:38:37 +02001679 struct drm_mm_node *nodes,
Chris Wilsonf54d1862016-10-25 13:00:45 +01001680 struct dma_fence **fence)
Christian Königa14faa62016-01-25 14:27:31 +01001681{
Christian Königa9f87f62017-03-30 14:03:59 +02001682 uint64_t pfn, src = 0, start = mapping->start;
Christian Königa14faa62016-01-25 14:27:31 +01001683 int r;
1684
1685 /* normally,bo_va->flags only contians READABLE and WIRTEABLE bit go here
1686 * but in case of something, we filter the flags in first place
1687 */
1688 if (!(mapping->flags & AMDGPU_PTE_READABLE))
1689 flags &= ~AMDGPU_PTE_READABLE;
1690 if (!(mapping->flags & AMDGPU_PTE_WRITEABLE))
1691 flags &= ~AMDGPU_PTE_WRITEABLE;
1692
Alex Xie15b31c52017-03-03 16:47:11 -05001693 flags &= ~AMDGPU_PTE_EXECUTABLE;
1694 flags |= mapping->flags & AMDGPU_PTE_EXECUTABLE;
1695
Alex Xieb0fd18b2017-03-03 16:49:39 -05001696 flags &= ~AMDGPU_PTE_MTYPE_MASK;
1697 flags |= (mapping->flags & AMDGPU_PTE_MTYPE_MASK);
1698
Zhang, Jerryd0766e92017-04-19 09:53:29 +08001699 if ((mapping->flags & AMDGPU_PTE_PRT) &&
1700 (adev->asic_type >= CHIP_VEGA10)) {
1701 flags |= AMDGPU_PTE_PRT;
1702 flags &= ~AMDGPU_PTE_VALID;
1703 }
1704
Christian Königa14faa62016-01-25 14:27:31 +01001705 trace_amdgpu_vm_bo_update(mapping);
1706
Christian König63e0ba42016-08-16 17:38:37 +02001707 pfn = mapping->offset >> PAGE_SHIFT;
1708 if (nodes) {
1709 while (pfn >= nodes->size) {
1710 pfn -= nodes->size;
1711 ++nodes;
1712 }
Christian Königfa3ab3c2016-03-18 21:00:35 +01001713 }
Christian Königa14faa62016-01-25 14:27:31 +01001714
Christian König63e0ba42016-08-16 17:38:37 +02001715 do {
1716 uint64_t max_entries;
1717 uint64_t addr, last;
Christian Königa14faa62016-01-25 14:27:31 +01001718
Christian König63e0ba42016-08-16 17:38:37 +02001719 if (nodes) {
1720 addr = nodes->start << PAGE_SHIFT;
1721 max_entries = (nodes->size - pfn) *
1722 (PAGE_SIZE / AMDGPU_GPU_PAGE_SIZE);
1723 } else {
1724 addr = 0;
1725 max_entries = S64_MAX;
1726 }
Christian Königa14faa62016-01-25 14:27:31 +01001727
Christian König63e0ba42016-08-16 17:38:37 +02001728 if (pages_addr) {
1729 if (flags == gtt_flags)
1730 src = adev->gart.table_addr +
1731 (addr >> AMDGPU_GPU_PAGE_SHIFT) * 8;
1732 else
1733 max_entries = min(max_entries, 16ull * 1024ull);
1734 addr = 0;
1735 } else if (flags & AMDGPU_PTE_VALID) {
1736 addr += adev->vm_manager.vram_base_offset;
1737 }
1738 addr += pfn << PAGE_SHIFT;
1739
Christian Königa9f87f62017-03-30 14:03:59 +02001740 last = min((uint64_t)mapping->last, start + max_entries - 1);
Christian König3cabaa52016-06-06 10:17:58 +02001741 r = amdgpu_vm_bo_update_mapping(adev, exclusive,
1742 src, pages_addr, vm,
Christian Königa14faa62016-01-25 14:27:31 +01001743 start, last, flags, addr,
1744 fence);
1745 if (r)
1746 return r;
1747
Christian König63e0ba42016-08-16 17:38:37 +02001748 pfn += last - start + 1;
1749 if (nodes && nodes->size == pfn) {
1750 pfn = 0;
1751 ++nodes;
1752 }
Christian Königa14faa62016-01-25 14:27:31 +01001753 start = last + 1;
Christian König63e0ba42016-08-16 17:38:37 +02001754
Christian Königa9f87f62017-03-30 14:03:59 +02001755 } while (unlikely(start != mapping->last + 1));
Christian Königa14faa62016-01-25 14:27:31 +01001756
1757 return 0;
1758}
1759
1760/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001761 * amdgpu_vm_bo_update - update all BO mappings in the vm page table
1762 *
1763 * @adev: amdgpu_device pointer
1764 * @bo_va: requested BO and VM object
Christian König99e124f2016-08-16 14:43:17 +02001765 * @clear: if true clear the entries
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001766 *
1767 * Fill in the page table entries for @bo_va.
1768 * Returns 0 for success, -EINVAL for failure.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001769 */
1770int amdgpu_vm_bo_update(struct amdgpu_device *adev,
1771 struct amdgpu_bo_va *bo_va,
Christian König99e124f2016-08-16 14:43:17 +02001772 bool clear)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001773{
1774 struct amdgpu_vm *vm = bo_va->vm;
1775 struct amdgpu_bo_va_mapping *mapping;
Christian König8358dce2016-03-30 10:50:25 +02001776 dma_addr_t *pages_addr = NULL;
Chunming Zhou6b777602016-09-21 16:19:19 +08001777 uint64_t gtt_flags, flags;
Christian König99e124f2016-08-16 14:43:17 +02001778 struct ttm_mem_reg *mem;
Christian König63e0ba42016-08-16 17:38:37 +02001779 struct drm_mm_node *nodes;
Chris Wilsonf54d1862016-10-25 13:00:45 +01001780 struct dma_fence *exclusive;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001781 int r;
1782
Christian Königa5f6b5b2017-01-30 11:01:38 +01001783 if (clear || !bo_va->bo) {
Christian König99e124f2016-08-16 14:43:17 +02001784 mem = NULL;
Christian König63e0ba42016-08-16 17:38:37 +02001785 nodes = NULL;
Christian König99e124f2016-08-16 14:43:17 +02001786 exclusive = NULL;
1787 } else {
Christian König8358dce2016-03-30 10:50:25 +02001788 struct ttm_dma_tt *ttm;
1789
Christian König99e124f2016-08-16 14:43:17 +02001790 mem = &bo_va->bo->tbo.mem;
Christian König63e0ba42016-08-16 17:38:37 +02001791 nodes = mem->mm_node;
1792 if (mem->mem_type == TTM_PL_TT) {
Christian König8358dce2016-03-30 10:50:25 +02001793 ttm = container_of(bo_va->bo->tbo.ttm, struct
1794 ttm_dma_tt, ttm);
1795 pages_addr = ttm->dma_address;
Christian König9ab21462015-11-30 14:19:26 +01001796 }
Christian König3cabaa52016-06-06 10:17:58 +02001797 exclusive = reservation_object_get_excl(bo_va->bo->tbo.resv);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001798 }
1799
Christian Königa5f6b5b2017-01-30 11:01:38 +01001800 if (bo_va->bo) {
1801 flags = amdgpu_ttm_tt_pte_flags(adev, bo_va->bo->tbo.ttm, mem);
1802 gtt_flags = (amdgpu_ttm_is_bound(bo_va->bo->tbo.ttm) &&
1803 adev == amdgpu_ttm_adev(bo_va->bo->tbo.bdev)) ?
1804 flags : 0;
1805 } else {
1806 flags = 0x0;
1807 gtt_flags = ~0x0;
1808 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001809
Christian König7fc11952015-07-30 11:53:42 +02001810 spin_lock(&vm->status_lock);
1811 if (!list_empty(&bo_va->vm_status))
1812 list_splice_init(&bo_va->valids, &bo_va->invalids);
1813 spin_unlock(&vm->status_lock);
1814
1815 list_for_each_entry(mapping, &bo_va->invalids, list) {
Christian König3cabaa52016-06-06 10:17:58 +02001816 r = amdgpu_vm_bo_split_mapping(adev, exclusive,
1817 gtt_flags, pages_addr, vm,
Christian König63e0ba42016-08-16 17:38:37 +02001818 mapping, flags, nodes,
Christian König8358dce2016-03-30 10:50:25 +02001819 &bo_va->last_pt_update);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001820 if (r)
1821 return r;
1822 }
1823
Christian Königd6c10f62015-09-28 12:00:23 +02001824 if (trace_amdgpu_vm_bo_mapping_enabled()) {
1825 list_for_each_entry(mapping, &bo_va->valids, list)
1826 trace_amdgpu_vm_bo_mapping(mapping);
1827
1828 list_for_each_entry(mapping, &bo_va->invalids, list)
1829 trace_amdgpu_vm_bo_mapping(mapping);
1830 }
1831
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001832 spin_lock(&vm->status_lock);
monk.liu6d1d0ef2015-08-14 13:36:41 +08001833 list_splice_init(&bo_va->invalids, &bo_va->valids);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001834 list_del_init(&bo_va->vm_status);
Christian König99e124f2016-08-16 14:43:17 +02001835 if (clear)
Christian König7fc11952015-07-30 11:53:42 +02001836 list_add(&bo_va->vm_status, &vm->cleared);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001837 spin_unlock(&vm->status_lock);
1838
Christian König68c62302017-07-11 17:23:29 +02001839 if (vm->use_cpu_for_update) {
1840 /* Flush HDP */
1841 mb();
1842 amdgpu_gart_flush_gpu_tlb(adev, 0);
1843 }
1844
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001845 return 0;
1846}
1847
1848/**
Christian König284710f2017-01-30 11:09:31 +01001849 * amdgpu_vm_update_prt_state - update the global PRT state
1850 */
1851static void amdgpu_vm_update_prt_state(struct amdgpu_device *adev)
1852{
1853 unsigned long flags;
1854 bool enable;
1855
1856 spin_lock_irqsave(&adev->vm_manager.prt_lock, flags);
Christian König451bc8e2017-02-14 16:02:52 +01001857 enable = !!atomic_read(&adev->vm_manager.num_prt_users);
Christian König284710f2017-01-30 11:09:31 +01001858 adev->gart.gart_funcs->set_prt(adev, enable);
1859 spin_unlock_irqrestore(&adev->vm_manager.prt_lock, flags);
1860}
1861
1862/**
Christian König4388fc22017-03-13 10:13:36 +01001863 * amdgpu_vm_prt_get - add a PRT user
Christian König451bc8e2017-02-14 16:02:52 +01001864 */
1865static void amdgpu_vm_prt_get(struct amdgpu_device *adev)
1866{
Christian König4388fc22017-03-13 10:13:36 +01001867 if (!adev->gart.gart_funcs->set_prt)
1868 return;
1869
Christian König451bc8e2017-02-14 16:02:52 +01001870 if (atomic_inc_return(&adev->vm_manager.num_prt_users) == 1)
1871 amdgpu_vm_update_prt_state(adev);
1872}
1873
1874/**
Christian König0b15f2f2017-02-14 15:47:03 +01001875 * amdgpu_vm_prt_put - drop a PRT user
1876 */
1877static void amdgpu_vm_prt_put(struct amdgpu_device *adev)
1878{
Christian König451bc8e2017-02-14 16:02:52 +01001879 if (atomic_dec_return(&adev->vm_manager.num_prt_users) == 0)
Christian König0b15f2f2017-02-14 15:47:03 +01001880 amdgpu_vm_update_prt_state(adev);
1881}
1882
1883/**
Christian König451bc8e2017-02-14 16:02:52 +01001884 * amdgpu_vm_prt_cb - callback for updating the PRT status
Christian König284710f2017-01-30 11:09:31 +01001885 */
1886static void amdgpu_vm_prt_cb(struct dma_fence *fence, struct dma_fence_cb *_cb)
1887{
1888 struct amdgpu_prt_cb *cb = container_of(_cb, struct amdgpu_prt_cb, cb);
1889
Christian König0b15f2f2017-02-14 15:47:03 +01001890 amdgpu_vm_prt_put(cb->adev);
Christian König284710f2017-01-30 11:09:31 +01001891 kfree(cb);
1892}
1893
1894/**
Christian König451bc8e2017-02-14 16:02:52 +01001895 * amdgpu_vm_add_prt_cb - add callback for updating the PRT status
1896 */
1897static void amdgpu_vm_add_prt_cb(struct amdgpu_device *adev,
1898 struct dma_fence *fence)
1899{
Christian König4388fc22017-03-13 10:13:36 +01001900 struct amdgpu_prt_cb *cb;
Christian König451bc8e2017-02-14 16:02:52 +01001901
Christian König4388fc22017-03-13 10:13:36 +01001902 if (!adev->gart.gart_funcs->set_prt)
1903 return;
1904
1905 cb = kmalloc(sizeof(struct amdgpu_prt_cb), GFP_KERNEL);
Christian König451bc8e2017-02-14 16:02:52 +01001906 if (!cb) {
1907 /* Last resort when we are OOM */
1908 if (fence)
1909 dma_fence_wait(fence, false);
1910
Dan Carpenter486a68f2017-04-03 21:41:39 +03001911 amdgpu_vm_prt_put(adev);
Christian König451bc8e2017-02-14 16:02:52 +01001912 } else {
1913 cb->adev = adev;
1914 if (!fence || dma_fence_add_callback(fence, &cb->cb,
1915 amdgpu_vm_prt_cb))
1916 amdgpu_vm_prt_cb(fence, &cb->cb);
1917 }
1918}
1919
1920/**
Christian König284710f2017-01-30 11:09:31 +01001921 * amdgpu_vm_free_mapping - free a mapping
1922 *
1923 * @adev: amdgpu_device pointer
1924 * @vm: requested vm
1925 * @mapping: mapping to be freed
1926 * @fence: fence of the unmap operation
1927 *
1928 * Free a mapping and make sure we decrease the PRT usage count if applicable.
1929 */
1930static void amdgpu_vm_free_mapping(struct amdgpu_device *adev,
1931 struct amdgpu_vm *vm,
1932 struct amdgpu_bo_va_mapping *mapping,
1933 struct dma_fence *fence)
1934{
Christian König451bc8e2017-02-14 16:02:52 +01001935 if (mapping->flags & AMDGPU_PTE_PRT)
1936 amdgpu_vm_add_prt_cb(adev, fence);
Christian König284710f2017-01-30 11:09:31 +01001937 kfree(mapping);
1938}
1939
1940/**
Christian König451bc8e2017-02-14 16:02:52 +01001941 * amdgpu_vm_prt_fini - finish all prt mappings
1942 *
1943 * @adev: amdgpu_device pointer
1944 * @vm: requested vm
1945 *
1946 * Register a cleanup callback to disable PRT support after VM dies.
1947 */
1948static void amdgpu_vm_prt_fini(struct amdgpu_device *adev, struct amdgpu_vm *vm)
1949{
Christian König67003a12016-10-12 14:46:26 +02001950 struct reservation_object *resv = vm->root.bo->tbo.resv;
Christian König451bc8e2017-02-14 16:02:52 +01001951 struct dma_fence *excl, **shared;
1952 unsigned i, shared_count;
1953 int r;
1954
1955 r = reservation_object_get_fences_rcu(resv, &excl,
1956 &shared_count, &shared);
1957 if (r) {
1958 /* Not enough memory to grab the fence list, as last resort
1959 * block for all the fences to complete.
1960 */
1961 reservation_object_wait_timeout_rcu(resv, true, false,
1962 MAX_SCHEDULE_TIMEOUT);
1963 return;
1964 }
1965
1966 /* Add a callback for each fence in the reservation object */
1967 amdgpu_vm_prt_get(adev);
1968 amdgpu_vm_add_prt_cb(adev, excl);
1969
1970 for (i = 0; i < shared_count; ++i) {
1971 amdgpu_vm_prt_get(adev);
1972 amdgpu_vm_add_prt_cb(adev, shared[i]);
1973 }
1974
1975 kfree(shared);
1976}
1977
1978/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001979 * amdgpu_vm_clear_freed - clear freed BOs in the PT
1980 *
1981 * @adev: amdgpu_device pointer
1982 * @vm: requested vm
Nicolai Hähnlef3467812017-03-23 19:36:31 +01001983 * @fence: optional resulting fence (unchanged if no work needed to be done
1984 * or if an error occurred)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001985 *
1986 * Make sure all freed BOs are cleared in the PT.
1987 * Returns 0 for success.
1988 *
1989 * PTs have to be reserved and mutex must be locked!
1990 */
1991int amdgpu_vm_clear_freed(struct amdgpu_device *adev,
Nicolai Hähnlef3467812017-03-23 19:36:31 +01001992 struct amdgpu_vm *vm,
1993 struct dma_fence **fence)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001994{
1995 struct amdgpu_bo_va_mapping *mapping;
Nicolai Hähnlef3467812017-03-23 19:36:31 +01001996 struct dma_fence *f = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001997 int r;
1998
1999 while (!list_empty(&vm->freed)) {
2000 mapping = list_first_entry(&vm->freed,
2001 struct amdgpu_bo_va_mapping, list);
2002 list_del(&mapping->list);
Christian Könige17841b2016-03-08 17:52:01 +01002003
Christian Königfc6aa332017-04-19 14:41:19 +02002004 r = amdgpu_vm_bo_update_mapping(adev, NULL, 0, NULL, vm,
2005 mapping->start, mapping->last,
2006 0, 0, &f);
Nicolai Hähnlef3467812017-03-23 19:36:31 +01002007 amdgpu_vm_free_mapping(adev, vm, mapping, f);
Christian König284710f2017-01-30 11:09:31 +01002008 if (r) {
Nicolai Hähnlef3467812017-03-23 19:36:31 +01002009 dma_fence_put(f);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002010 return r;
Christian König284710f2017-01-30 11:09:31 +01002011 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002012 }
Nicolai Hähnlef3467812017-03-23 19:36:31 +01002013
2014 if (fence && f) {
2015 dma_fence_put(*fence);
2016 *fence = f;
2017 } else {
2018 dma_fence_put(f);
2019 }
2020
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002021 return 0;
2022
2023}
2024
2025/**
2026 * amdgpu_vm_clear_invalids - clear invalidated BOs in the PT
2027 *
2028 * @adev: amdgpu_device pointer
2029 * @vm: requested vm
2030 *
2031 * Make sure all invalidated BOs are cleared in the PT.
2032 * Returns 0 for success.
2033 *
2034 * PTs have to be reserved and mutex must be locked!
2035 */
2036int amdgpu_vm_clear_invalids(struct amdgpu_device *adev,
monk.liucfe2c972015-05-26 15:01:54 +08002037 struct amdgpu_vm *vm, struct amdgpu_sync *sync)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002038{
monk.liucfe2c972015-05-26 15:01:54 +08002039 struct amdgpu_bo_va *bo_va = NULL;
Christian König91e1a522015-07-06 22:06:40 +02002040 int r = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002041
2042 spin_lock(&vm->status_lock);
2043 while (!list_empty(&vm->invalidated)) {
2044 bo_va = list_first_entry(&vm->invalidated,
2045 struct amdgpu_bo_va, vm_status);
2046 spin_unlock(&vm->status_lock);
Christian König32b41ac2016-03-08 18:03:27 +01002047
Christian König99e124f2016-08-16 14:43:17 +02002048 r = amdgpu_vm_bo_update(adev, bo_va, true);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002049 if (r)
2050 return r;
2051
2052 spin_lock(&vm->status_lock);
2053 }
2054 spin_unlock(&vm->status_lock);
2055
monk.liucfe2c972015-05-26 15:01:54 +08002056 if (bo_va)
Chunming Zhoubb1e38a42015-08-03 18:19:38 +08002057 r = amdgpu_sync_fence(adev, sync, bo_va->last_pt_update);
Christian König91e1a522015-07-06 22:06:40 +02002058
2059 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002060}
2061
2062/**
2063 * amdgpu_vm_bo_add - add a bo to a specific vm
2064 *
2065 * @adev: amdgpu_device pointer
2066 * @vm: requested vm
2067 * @bo: amdgpu buffer object
2068 *
Christian König8843dbb2016-01-26 12:17:11 +01002069 * Add @bo into the requested vm.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002070 * Add @bo to the list of bos associated with the vm
2071 * Returns newly added bo_va or NULL for failure
2072 *
2073 * Object has to be reserved!
2074 */
2075struct amdgpu_bo_va *amdgpu_vm_bo_add(struct amdgpu_device *adev,
2076 struct amdgpu_vm *vm,
2077 struct amdgpu_bo *bo)
2078{
2079 struct amdgpu_bo_va *bo_va;
2080
2081 bo_va = kzalloc(sizeof(struct amdgpu_bo_va), GFP_KERNEL);
2082 if (bo_va == NULL) {
2083 return NULL;
2084 }
2085 bo_va->vm = vm;
2086 bo_va->bo = bo;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002087 bo_va->ref_count = 1;
2088 INIT_LIST_HEAD(&bo_va->bo_list);
Christian König7fc11952015-07-30 11:53:42 +02002089 INIT_LIST_HEAD(&bo_va->valids);
2090 INIT_LIST_HEAD(&bo_va->invalids);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002091 INIT_LIST_HEAD(&bo_va->vm_status);
Christian König32b41ac2016-03-08 18:03:27 +01002092
Christian Königa5f6b5b2017-01-30 11:01:38 +01002093 if (bo)
2094 list_add_tail(&bo_va->bo_list, &bo->va);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002095
2096 return bo_va;
2097}
2098
2099/**
2100 * amdgpu_vm_bo_map - map bo inside a vm
2101 *
2102 * @adev: amdgpu_device pointer
2103 * @bo_va: bo_va to store the address
2104 * @saddr: where to map the BO
2105 * @offset: requested offset in the BO
2106 * @flags: attributes of pages (read/write/valid/etc.)
2107 *
2108 * Add a mapping of the BO at the specefied addr into the VM.
2109 * Returns 0 for success, error for failure.
2110 *
Chunming Zhou49b02b12015-11-13 14:18:38 +08002111 * Object has to be reserved and unreserved outside!
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002112 */
2113int amdgpu_vm_bo_map(struct amdgpu_device *adev,
2114 struct amdgpu_bo_va *bo_va,
2115 uint64_t saddr, uint64_t offset,
Christian König268c3002017-01-18 14:49:43 +01002116 uint64_t size, uint64_t flags)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002117{
Christian Königa9f87f62017-03-30 14:03:59 +02002118 struct amdgpu_bo_va_mapping *mapping, *tmp;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002119 struct amdgpu_vm *vm = bo_va->vm;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002120 uint64_t eaddr;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002121
Christian König0be52de2015-05-18 14:37:27 +02002122 /* validate the parameters */
2123 if (saddr & AMDGPU_GPU_PAGE_MASK || offset & AMDGPU_GPU_PAGE_MASK ||
Chunming Zhou49b02b12015-11-13 14:18:38 +08002124 size == 0 || size & AMDGPU_GPU_PAGE_MASK)
Christian König0be52de2015-05-18 14:37:27 +02002125 return -EINVAL;
Christian König0be52de2015-05-18 14:37:27 +02002126
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002127 /* make sure object fit at this offset */
Felix Kuehling005ae952015-11-23 17:43:48 -05002128 eaddr = saddr + size - 1;
Christian Königa5f6b5b2017-01-30 11:01:38 +01002129 if (saddr >= eaddr ||
2130 (bo_va->bo && offset + size > amdgpu_bo_size(bo_va->bo)))
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002131 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002132
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002133 saddr /= AMDGPU_GPU_PAGE_SIZE;
2134 eaddr /= AMDGPU_GPU_PAGE_SIZE;
2135
Christian Königa9f87f62017-03-30 14:03:59 +02002136 tmp = amdgpu_vm_it_iter_first(&vm->va, saddr, eaddr);
2137 if (tmp) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002138 /* bo and tmp overlap, invalid addr */
2139 dev_err(adev->dev, "bo %p va 0x%010Lx-0x%010Lx conflict with "
Christian Königa9f87f62017-03-30 14:03:59 +02002140 "0x%010Lx-0x%010Lx\n", bo_va->bo, saddr, eaddr,
2141 tmp->start, tmp->last + 1);
Christian König663e4572017-03-13 10:13:37 +01002142 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002143 }
2144
2145 mapping = kmalloc(sizeof(*mapping), GFP_KERNEL);
Christian König663e4572017-03-13 10:13:37 +01002146 if (!mapping)
2147 return -ENOMEM;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002148
2149 INIT_LIST_HEAD(&mapping->list);
Christian Königa9f87f62017-03-30 14:03:59 +02002150 mapping->start = saddr;
2151 mapping->last = eaddr;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002152 mapping->offset = offset;
2153 mapping->flags = flags;
2154
Christian König7fc11952015-07-30 11:53:42 +02002155 list_add(&mapping->list, &bo_va->invalids);
Christian Königa9f87f62017-03-30 14:03:59 +02002156 amdgpu_vm_it_insert(mapping, &vm->va);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002157
Christian König4388fc22017-03-13 10:13:36 +01002158 if (flags & AMDGPU_PTE_PRT)
2159 amdgpu_vm_prt_get(adev);
2160
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002161 return 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002162}
2163
2164/**
Christian König80f95c52017-03-13 10:13:39 +01002165 * amdgpu_vm_bo_replace_map - map bo inside a vm, replacing existing mappings
2166 *
2167 * @adev: amdgpu_device pointer
2168 * @bo_va: bo_va to store the address
2169 * @saddr: where to map the BO
2170 * @offset: requested offset in the BO
2171 * @flags: attributes of pages (read/write/valid/etc.)
2172 *
2173 * Add a mapping of the BO at the specefied addr into the VM. Replace existing
2174 * mappings as we do so.
2175 * Returns 0 for success, error for failure.
2176 *
2177 * Object has to be reserved and unreserved outside!
2178 */
2179int amdgpu_vm_bo_replace_map(struct amdgpu_device *adev,
2180 struct amdgpu_bo_va *bo_va,
2181 uint64_t saddr, uint64_t offset,
2182 uint64_t size, uint64_t flags)
2183{
2184 struct amdgpu_bo_va_mapping *mapping;
2185 struct amdgpu_vm *vm = bo_va->vm;
2186 uint64_t eaddr;
2187 int r;
2188
2189 /* validate the parameters */
2190 if (saddr & AMDGPU_GPU_PAGE_MASK || offset & AMDGPU_GPU_PAGE_MASK ||
2191 size == 0 || size & AMDGPU_GPU_PAGE_MASK)
2192 return -EINVAL;
2193
2194 /* make sure object fit at this offset */
2195 eaddr = saddr + size - 1;
2196 if (saddr >= eaddr ||
2197 (bo_va->bo && offset + size > amdgpu_bo_size(bo_va->bo)))
2198 return -EINVAL;
2199
2200 /* Allocate all the needed memory */
2201 mapping = kmalloc(sizeof(*mapping), GFP_KERNEL);
2202 if (!mapping)
2203 return -ENOMEM;
2204
2205 r = amdgpu_vm_bo_clear_mappings(adev, bo_va->vm, saddr, size);
2206 if (r) {
2207 kfree(mapping);
2208 return r;
2209 }
2210
2211 saddr /= AMDGPU_GPU_PAGE_SIZE;
2212 eaddr /= AMDGPU_GPU_PAGE_SIZE;
2213
Christian Königa9f87f62017-03-30 14:03:59 +02002214 mapping->start = saddr;
2215 mapping->last = eaddr;
Christian König80f95c52017-03-13 10:13:39 +01002216 mapping->offset = offset;
2217 mapping->flags = flags;
2218
2219 list_add(&mapping->list, &bo_va->invalids);
Christian Königa9f87f62017-03-30 14:03:59 +02002220 amdgpu_vm_it_insert(mapping, &vm->va);
Christian König80f95c52017-03-13 10:13:39 +01002221
2222 if (flags & AMDGPU_PTE_PRT)
2223 amdgpu_vm_prt_get(adev);
2224
2225 return 0;
2226}
2227
2228/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002229 * amdgpu_vm_bo_unmap - remove bo mapping from vm
2230 *
2231 * @adev: amdgpu_device pointer
2232 * @bo_va: bo_va to remove the address from
2233 * @saddr: where to the BO is mapped
2234 *
2235 * Remove a mapping of the BO at the specefied addr from the VM.
2236 * Returns 0 for success, error for failure.
2237 *
Chunming Zhou49b02b12015-11-13 14:18:38 +08002238 * Object has to be reserved and unreserved outside!
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002239 */
2240int amdgpu_vm_bo_unmap(struct amdgpu_device *adev,
2241 struct amdgpu_bo_va *bo_va,
2242 uint64_t saddr)
2243{
2244 struct amdgpu_bo_va_mapping *mapping;
2245 struct amdgpu_vm *vm = bo_va->vm;
Christian König7fc11952015-07-30 11:53:42 +02002246 bool valid = true;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002247
Christian König6c7fc502015-06-05 20:56:17 +02002248 saddr /= AMDGPU_GPU_PAGE_SIZE;
Christian König32b41ac2016-03-08 18:03:27 +01002249
Christian König7fc11952015-07-30 11:53:42 +02002250 list_for_each_entry(mapping, &bo_va->valids, list) {
Christian Königa9f87f62017-03-30 14:03:59 +02002251 if (mapping->start == saddr)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002252 break;
2253 }
2254
Christian König7fc11952015-07-30 11:53:42 +02002255 if (&mapping->list == &bo_va->valids) {
2256 valid = false;
2257
2258 list_for_each_entry(mapping, &bo_va->invalids, list) {
Christian Königa9f87f62017-03-30 14:03:59 +02002259 if (mapping->start == saddr)
Christian König7fc11952015-07-30 11:53:42 +02002260 break;
2261 }
2262
Christian König32b41ac2016-03-08 18:03:27 +01002263 if (&mapping->list == &bo_va->invalids)
Christian König7fc11952015-07-30 11:53:42 +02002264 return -ENOENT;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002265 }
Christian König32b41ac2016-03-08 18:03:27 +01002266
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002267 list_del(&mapping->list);
Christian Königa9f87f62017-03-30 14:03:59 +02002268 amdgpu_vm_it_remove(mapping, &vm->va);
Christian König93e3e432015-06-09 16:58:33 +02002269 trace_amdgpu_vm_bo_unmap(bo_va, mapping);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002270
Christian Könige17841b2016-03-08 17:52:01 +01002271 if (valid)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002272 list_add(&mapping->list, &vm->freed);
Christian Könige17841b2016-03-08 17:52:01 +01002273 else
Christian König284710f2017-01-30 11:09:31 +01002274 amdgpu_vm_free_mapping(adev, vm, mapping,
2275 bo_va->last_pt_update);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002276
2277 return 0;
2278}
2279
2280/**
Christian Königdc54d3d2017-03-13 10:13:38 +01002281 * amdgpu_vm_bo_clear_mappings - remove all mappings in a specific range
2282 *
2283 * @adev: amdgpu_device pointer
2284 * @vm: VM structure to use
2285 * @saddr: start of the range
2286 * @size: size of the range
2287 *
2288 * Remove all mappings in a range, split them as appropriate.
2289 * Returns 0 for success, error for failure.
2290 */
2291int amdgpu_vm_bo_clear_mappings(struct amdgpu_device *adev,
2292 struct amdgpu_vm *vm,
2293 uint64_t saddr, uint64_t size)
2294{
2295 struct amdgpu_bo_va_mapping *before, *after, *tmp, *next;
Christian Königdc54d3d2017-03-13 10:13:38 +01002296 LIST_HEAD(removed);
2297 uint64_t eaddr;
2298
2299 eaddr = saddr + size - 1;
2300 saddr /= AMDGPU_GPU_PAGE_SIZE;
2301 eaddr /= AMDGPU_GPU_PAGE_SIZE;
2302
2303 /* Allocate all the needed memory */
2304 before = kzalloc(sizeof(*before), GFP_KERNEL);
2305 if (!before)
2306 return -ENOMEM;
Junwei Zhang27f6d612017-03-16 16:09:24 +08002307 INIT_LIST_HEAD(&before->list);
Christian Königdc54d3d2017-03-13 10:13:38 +01002308
2309 after = kzalloc(sizeof(*after), GFP_KERNEL);
2310 if (!after) {
2311 kfree(before);
2312 return -ENOMEM;
2313 }
Junwei Zhang27f6d612017-03-16 16:09:24 +08002314 INIT_LIST_HEAD(&after->list);
Christian Königdc54d3d2017-03-13 10:13:38 +01002315
2316 /* Now gather all removed mappings */
Christian Königa9f87f62017-03-30 14:03:59 +02002317 tmp = amdgpu_vm_it_iter_first(&vm->va, saddr, eaddr);
2318 while (tmp) {
Christian Königdc54d3d2017-03-13 10:13:38 +01002319 /* Remember mapping split at the start */
Christian Königa9f87f62017-03-30 14:03:59 +02002320 if (tmp->start < saddr) {
2321 before->start = tmp->start;
2322 before->last = saddr - 1;
Christian Königdc54d3d2017-03-13 10:13:38 +01002323 before->offset = tmp->offset;
2324 before->flags = tmp->flags;
2325 list_add(&before->list, &tmp->list);
2326 }
2327
2328 /* Remember mapping split at the end */
Christian Königa9f87f62017-03-30 14:03:59 +02002329 if (tmp->last > eaddr) {
2330 after->start = eaddr + 1;
2331 after->last = tmp->last;
Christian Königdc54d3d2017-03-13 10:13:38 +01002332 after->offset = tmp->offset;
Christian Königa9f87f62017-03-30 14:03:59 +02002333 after->offset += after->start - tmp->start;
Christian Königdc54d3d2017-03-13 10:13:38 +01002334 after->flags = tmp->flags;
2335 list_add(&after->list, &tmp->list);
2336 }
2337
2338 list_del(&tmp->list);
2339 list_add(&tmp->list, &removed);
Christian Königa9f87f62017-03-30 14:03:59 +02002340
2341 tmp = amdgpu_vm_it_iter_next(tmp, saddr, eaddr);
Christian Königdc54d3d2017-03-13 10:13:38 +01002342 }
2343
2344 /* And free them up */
2345 list_for_each_entry_safe(tmp, next, &removed, list) {
Christian Königa9f87f62017-03-30 14:03:59 +02002346 amdgpu_vm_it_remove(tmp, &vm->va);
Christian Königdc54d3d2017-03-13 10:13:38 +01002347 list_del(&tmp->list);
2348
Christian Königa9f87f62017-03-30 14:03:59 +02002349 if (tmp->start < saddr)
2350 tmp->start = saddr;
2351 if (tmp->last > eaddr)
2352 tmp->last = eaddr;
Christian Königdc54d3d2017-03-13 10:13:38 +01002353
2354 list_add(&tmp->list, &vm->freed);
2355 trace_amdgpu_vm_bo_unmap(NULL, tmp);
2356 }
2357
Junwei Zhang27f6d612017-03-16 16:09:24 +08002358 /* Insert partial mapping before the range */
2359 if (!list_empty(&before->list)) {
Christian Königa9f87f62017-03-30 14:03:59 +02002360 amdgpu_vm_it_insert(before, &vm->va);
Christian Königdc54d3d2017-03-13 10:13:38 +01002361 if (before->flags & AMDGPU_PTE_PRT)
2362 amdgpu_vm_prt_get(adev);
2363 } else {
2364 kfree(before);
2365 }
2366
2367 /* Insert partial mapping after the range */
Junwei Zhang27f6d612017-03-16 16:09:24 +08002368 if (!list_empty(&after->list)) {
Christian Königa9f87f62017-03-30 14:03:59 +02002369 amdgpu_vm_it_insert(after, &vm->va);
Christian Königdc54d3d2017-03-13 10:13:38 +01002370 if (after->flags & AMDGPU_PTE_PRT)
2371 amdgpu_vm_prt_get(adev);
2372 } else {
2373 kfree(after);
2374 }
2375
2376 return 0;
2377}
2378
2379/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002380 * amdgpu_vm_bo_rmv - remove a bo to a specific vm
2381 *
2382 * @adev: amdgpu_device pointer
2383 * @bo_va: requested bo_va
2384 *
Christian König8843dbb2016-01-26 12:17:11 +01002385 * Remove @bo_va->bo from the requested vm.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002386 *
2387 * Object have to be reserved!
2388 */
2389void amdgpu_vm_bo_rmv(struct amdgpu_device *adev,
2390 struct amdgpu_bo_va *bo_va)
2391{
2392 struct amdgpu_bo_va_mapping *mapping, *next;
2393 struct amdgpu_vm *vm = bo_va->vm;
2394
2395 list_del(&bo_va->bo_list);
2396
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002397 spin_lock(&vm->status_lock);
2398 list_del(&bo_va->vm_status);
2399 spin_unlock(&vm->status_lock);
2400
Christian König7fc11952015-07-30 11:53:42 +02002401 list_for_each_entry_safe(mapping, next, &bo_va->valids, list) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002402 list_del(&mapping->list);
Christian Königa9f87f62017-03-30 14:03:59 +02002403 amdgpu_vm_it_remove(mapping, &vm->va);
Christian König93e3e432015-06-09 16:58:33 +02002404 trace_amdgpu_vm_bo_unmap(bo_va, mapping);
Christian König7fc11952015-07-30 11:53:42 +02002405 list_add(&mapping->list, &vm->freed);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002406 }
Christian König7fc11952015-07-30 11:53:42 +02002407 list_for_each_entry_safe(mapping, next, &bo_va->invalids, list) {
2408 list_del(&mapping->list);
Christian Königa9f87f62017-03-30 14:03:59 +02002409 amdgpu_vm_it_remove(mapping, &vm->va);
Christian König284710f2017-01-30 11:09:31 +01002410 amdgpu_vm_free_mapping(adev, vm, mapping,
2411 bo_va->last_pt_update);
Christian König7fc11952015-07-30 11:53:42 +02002412 }
Christian König32b41ac2016-03-08 18:03:27 +01002413
Chris Wilsonf54d1862016-10-25 13:00:45 +01002414 dma_fence_put(bo_va->last_pt_update);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002415 kfree(bo_va);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002416}
2417
2418/**
2419 * amdgpu_vm_bo_invalidate - mark the bo as invalid
2420 *
2421 * @adev: amdgpu_device pointer
2422 * @vm: requested vm
2423 * @bo: amdgpu buffer object
2424 *
Christian König8843dbb2016-01-26 12:17:11 +01002425 * Mark @bo as invalid.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002426 */
2427void amdgpu_vm_bo_invalidate(struct amdgpu_device *adev,
2428 struct amdgpu_bo *bo)
2429{
2430 struct amdgpu_bo_va *bo_va;
2431
2432 list_for_each_entry(bo_va, &bo->va, bo_list) {
Christian König7fc11952015-07-30 11:53:42 +02002433 spin_lock(&bo_va->vm->status_lock);
2434 if (list_empty(&bo_va->vm_status))
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002435 list_add(&bo_va->vm_status, &bo_va->vm->invalidated);
Christian König7fc11952015-07-30 11:53:42 +02002436 spin_unlock(&bo_va->vm->status_lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002437 }
2438}
2439
Junwei Zhangbab4fee2017-04-05 13:54:56 +08002440static uint32_t amdgpu_vm_get_block_size(uint64_t vm_size)
2441{
2442 /* Total bits covered by PD + PTs */
2443 unsigned bits = ilog2(vm_size) + 18;
2444
2445 /* Make sure the PD is 4K in size up to 8GB address space.
2446 Above that split equal between PD and PTs */
2447 if (vm_size <= 8)
2448 return (bits - 9);
2449 else
2450 return ((bits + 3) / 2);
2451}
2452
2453/**
2454 * amdgpu_vm_adjust_size - adjust vm size and block size
2455 *
2456 * @adev: amdgpu_device pointer
2457 * @vm_size: the default vm size if it's set auto
2458 */
2459void amdgpu_vm_adjust_size(struct amdgpu_device *adev, uint64_t vm_size)
2460{
2461 /* adjust vm size firstly */
2462 if (amdgpu_vm_size == -1)
2463 adev->vm_manager.vm_size = vm_size;
2464 else
2465 adev->vm_manager.vm_size = amdgpu_vm_size;
2466
2467 /* block size depends on vm size */
2468 if (amdgpu_vm_block_size == -1)
2469 adev->vm_manager.block_size =
2470 amdgpu_vm_get_block_size(adev->vm_manager.vm_size);
2471 else
2472 adev->vm_manager.block_size = amdgpu_vm_block_size;
2473
2474 DRM_INFO("vm size is %llu GB, block size is %u-bit\n",
2475 adev->vm_manager.vm_size, adev->vm_manager.block_size);
2476}
2477
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002478/**
2479 * amdgpu_vm_init - initialize a vm instance
2480 *
2481 * @adev: amdgpu_device pointer
2482 * @vm: requested vm
Harish Kasiviswanathan9a4b7d42017-06-09 11:26:57 -04002483 * @vm_context: Indicates if it GFX or Compute context
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002484 *
Christian König8843dbb2016-01-26 12:17:11 +01002485 * Init @vm fields.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002486 */
Harish Kasiviswanathan9a4b7d42017-06-09 11:26:57 -04002487int amdgpu_vm_init(struct amdgpu_device *adev, struct amdgpu_vm *vm,
2488 int vm_context)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002489{
2490 const unsigned align = min(AMDGPU_VM_PTB_ALIGN_SIZE,
Zhang, Jerry36b32a62017-03-29 16:08:32 +08002491 AMDGPU_VM_PTE_COUNT(adev) * 8);
Christian König2d55e452016-02-08 17:37:38 +01002492 unsigned ring_instance;
2493 struct amdgpu_ring *ring;
Christian König2bd9ccf2016-02-01 12:53:58 +01002494 struct amd_sched_rq *rq;
Chunming Zhou36bbf3b2017-04-20 16:17:34 +08002495 int r, i;
Harish Kasiviswanathan3c824172017-05-11 15:50:08 -04002496 u64 flags;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002497
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002498 vm->va = RB_ROOT;
Chunming Zhou031e2982016-04-25 10:19:13 +08002499 vm->client_id = atomic64_inc_return(&adev->vm_manager.client_counter);
Chunming Zhou36bbf3b2017-04-20 16:17:34 +08002500 for (i = 0; i < AMDGPU_MAX_VMHUBS; i++)
2501 vm->reserved_vmid[i] = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002502 spin_lock_init(&vm->status_lock);
2503 INIT_LIST_HEAD(&vm->invalidated);
Christian König7fc11952015-07-30 11:53:42 +02002504 INIT_LIST_HEAD(&vm->cleared);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002505 INIT_LIST_HEAD(&vm->freed);
Christian König20250212016-03-08 17:58:35 +01002506
Christian König2bd9ccf2016-02-01 12:53:58 +01002507 /* create scheduler entity for page table updates */
Christian König2d55e452016-02-08 17:37:38 +01002508
2509 ring_instance = atomic_inc_return(&adev->vm_manager.vm_pte_next_ring);
2510 ring_instance %= adev->vm_manager.vm_pte_num_rings;
2511 ring = adev->vm_manager.vm_pte_rings[ring_instance];
Christian König2bd9ccf2016-02-01 12:53:58 +01002512 rq = &ring->sched.sched_rq[AMD_SCHED_PRIORITY_KERNEL];
2513 r = amd_sched_entity_init(&ring->sched, &vm->entity,
2514 rq, amdgpu_sched_jobs);
2515 if (r)
Christian Königf566ceb2016-10-27 20:04:38 +02002516 return r;
Christian König2bd9ccf2016-02-01 12:53:58 +01002517
Harish Kasiviswanathan9a4b7d42017-06-09 11:26:57 -04002518 if (vm_context == AMDGPU_VM_CONTEXT_COMPUTE)
2519 vm->use_cpu_for_update = !!(adev->vm_manager.vm_update_mode &
2520 AMDGPU_VM_USE_CPU_FOR_COMPUTE);
2521 else
2522 vm->use_cpu_for_update = !!(adev->vm_manager.vm_update_mode &
2523 AMDGPU_VM_USE_CPU_FOR_GFX);
2524 DRM_DEBUG_DRIVER("VM update mode is %s\n",
2525 vm->use_cpu_for_update ? "CPU" : "SDMA");
2526 WARN_ONCE((vm->use_cpu_for_update & !amdgpu_vm_is_large_bar(adev)),
2527 "CPU update of VM recommended only for large BAR system\n");
Christian Königa24960f2016-10-12 13:20:52 +02002528 vm->last_dir_update = NULL;
Bas Nieuwenhuizen05906de2015-08-14 20:08:40 +02002529
Harish Kasiviswanathan3c824172017-05-11 15:50:08 -04002530 flags = AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS |
2531 AMDGPU_GEM_CREATE_VRAM_CLEARED;
2532 if (vm->use_cpu_for_update)
2533 flags |= AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED;
2534 else
2535 flags |= (AMDGPU_GEM_CREATE_NO_CPU_ACCESS |
2536 AMDGPU_GEM_CREATE_SHADOW);
2537
Christian Königf566ceb2016-10-27 20:04:38 +02002538 r = amdgpu_bo_create(adev, amdgpu_vm_bo_size(adev, 0), align, true,
Alex Deucher857d9132015-08-27 00:14:16 -04002539 AMDGPU_GEM_DOMAIN_VRAM,
Harish Kasiviswanathan3c824172017-05-11 15:50:08 -04002540 flags,
Yong Zhao2046d462017-07-20 18:49:09 -04002541 NULL, NULL, 0, &vm->root.bo);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002542 if (r)
Christian König2bd9ccf2016-02-01 12:53:58 +01002543 goto error_free_sched_entity;
2544
Christian König67003a12016-10-12 14:46:26 +02002545 r = amdgpu_bo_reserve(vm->root.bo, false);
Christian König2bd9ccf2016-02-01 12:53:58 +01002546 if (r)
Christian König67003a12016-10-12 14:46:26 +02002547 goto error_free_root;
Christian König2bd9ccf2016-02-01 12:53:58 +01002548
Christian König5a712a82016-06-21 16:28:15 +02002549 vm->last_eviction_counter = atomic64_read(&adev->num_evictions);
Christian König0a096fb2017-07-12 10:01:48 +02002550
2551 if (vm->use_cpu_for_update) {
2552 r = amdgpu_bo_kmap(vm->root.bo, NULL);
2553 if (r)
2554 goto error_free_root;
2555 }
2556
Christian König67003a12016-10-12 14:46:26 +02002557 amdgpu_bo_unreserve(vm->root.bo);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002558
2559 return 0;
Christian König2bd9ccf2016-02-01 12:53:58 +01002560
Christian König67003a12016-10-12 14:46:26 +02002561error_free_root:
2562 amdgpu_bo_unref(&vm->root.bo->shadow);
2563 amdgpu_bo_unref(&vm->root.bo);
2564 vm->root.bo = NULL;
Christian König2bd9ccf2016-02-01 12:53:58 +01002565
2566error_free_sched_entity:
2567 amd_sched_entity_fini(&ring->sched, &vm->entity);
2568
2569 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002570}
2571
2572/**
Christian Königf566ceb2016-10-27 20:04:38 +02002573 * amdgpu_vm_free_levels - free PD/PT levels
2574 *
2575 * @level: PD/PT starting level to free
2576 *
2577 * Free the page directory or page table level and all sub levels.
2578 */
2579static void amdgpu_vm_free_levels(struct amdgpu_vm_pt *level)
2580{
2581 unsigned i;
2582
2583 if (level->bo) {
2584 amdgpu_bo_unref(&level->bo->shadow);
2585 amdgpu_bo_unref(&level->bo);
2586 }
2587
2588 if (level->entries)
2589 for (i = 0; i <= level->last_entry_used; i++)
2590 amdgpu_vm_free_levels(&level->entries[i]);
2591
Michal Hocko20981052017-05-17 14:23:12 +02002592 kvfree(level->entries);
Christian Königf566ceb2016-10-27 20:04:38 +02002593}
2594
2595/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002596 * amdgpu_vm_fini - tear down a vm instance
2597 *
2598 * @adev: amdgpu_device pointer
2599 * @vm: requested vm
2600 *
Christian König8843dbb2016-01-26 12:17:11 +01002601 * Tear down @vm.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002602 * Unbind the VM and remove all bos from the vm bo list
2603 */
2604void amdgpu_vm_fini(struct amdgpu_device *adev, struct amdgpu_vm *vm)
2605{
2606 struct amdgpu_bo_va_mapping *mapping, *tmp;
Christian König4388fc22017-03-13 10:13:36 +01002607 bool prt_fini_needed = !!adev->gart.gart_funcs->set_prt;
Chunming Zhou36bbf3b2017-04-20 16:17:34 +08002608 int i;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002609
Christian König2d55e452016-02-08 17:37:38 +01002610 amd_sched_entity_fini(vm->entity.sched, &vm->entity);
Christian König2bd9ccf2016-02-01 12:53:58 +01002611
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002612 if (!RB_EMPTY_ROOT(&vm->va)) {
2613 dev_err(adev->dev, "still active bo inside vm\n");
2614 }
Christian Königa9f87f62017-03-30 14:03:59 +02002615 rbtree_postorder_for_each_entry_safe(mapping, tmp, &vm->va, rb) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002616 list_del(&mapping->list);
Christian Königa9f87f62017-03-30 14:03:59 +02002617 amdgpu_vm_it_remove(mapping, &vm->va);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002618 kfree(mapping);
2619 }
2620 list_for_each_entry_safe(mapping, tmp, &vm->freed, list) {
Christian König4388fc22017-03-13 10:13:36 +01002621 if (mapping->flags & AMDGPU_PTE_PRT && prt_fini_needed) {
Christian König451bc8e2017-02-14 16:02:52 +01002622 amdgpu_vm_prt_fini(adev, vm);
Christian König4388fc22017-03-13 10:13:36 +01002623 prt_fini_needed = false;
Christian König451bc8e2017-02-14 16:02:52 +01002624 }
Christian König284710f2017-01-30 11:09:31 +01002625
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002626 list_del(&mapping->list);
Christian König451bc8e2017-02-14 16:02:52 +01002627 amdgpu_vm_free_mapping(adev, vm, mapping, NULL);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002628 }
2629
Christian Königf566ceb2016-10-27 20:04:38 +02002630 amdgpu_vm_free_levels(&vm->root);
Christian Königa24960f2016-10-12 13:20:52 +02002631 dma_fence_put(vm->last_dir_update);
Chunming Zhou1e9ef262017-04-20 16:18:48 +08002632 for (i = 0; i < AMDGPU_MAX_VMHUBS; i++)
2633 amdgpu_vm_free_reserved_vmid(adev, vm, i);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002634}
Christian Königea89f8c2015-11-15 20:52:06 +01002635
2636/**
Christian Königa9a78b32016-01-21 10:19:11 +01002637 * amdgpu_vm_manager_init - init the VM manager
2638 *
2639 * @adev: amdgpu_device pointer
2640 *
2641 * Initialize the VM manager structures
2642 */
2643void amdgpu_vm_manager_init(struct amdgpu_device *adev)
2644{
Christian König76456702017-04-06 17:52:39 +02002645 unsigned i, j;
Christian Königa9a78b32016-01-21 10:19:11 +01002646
Christian König76456702017-04-06 17:52:39 +02002647 for (i = 0; i < AMDGPU_MAX_VMHUBS; ++i) {
2648 struct amdgpu_vm_id_manager *id_mgr =
2649 &adev->vm_manager.id_mgr[i];
Christian Königa9a78b32016-01-21 10:19:11 +01002650
Christian König76456702017-04-06 17:52:39 +02002651 mutex_init(&id_mgr->lock);
2652 INIT_LIST_HEAD(&id_mgr->ids_lru);
Chunming Zhouc3505772017-04-21 15:51:04 +08002653 atomic_set(&id_mgr->reserved_vmid_num, 0);
Christian König76456702017-04-06 17:52:39 +02002654
2655 /* skip over VMID 0, since it is the system VM */
2656 for (j = 1; j < id_mgr->num_ids; ++j) {
2657 amdgpu_vm_reset_id(adev, i, j);
2658 amdgpu_sync_create(&id_mgr->ids[i].active);
2659 list_add_tail(&id_mgr->ids[j].list, &id_mgr->ids_lru);
2660 }
Christian König971fe9a92016-03-01 15:09:25 +01002661 }
Christian König2d55e452016-02-08 17:37:38 +01002662
Chris Wilsonf54d1862016-10-25 13:00:45 +01002663 adev->vm_manager.fence_context =
2664 dma_fence_context_alloc(AMDGPU_MAX_RINGS);
Christian König1fbb2e92016-06-01 10:47:36 +02002665 for (i = 0; i < AMDGPU_MAX_RINGS; ++i)
2666 adev->vm_manager.seqno[i] = 0;
2667
Christian König2d55e452016-02-08 17:37:38 +01002668 atomic_set(&adev->vm_manager.vm_pte_next_ring, 0);
Christian Königb1c8a812016-05-04 10:34:03 +02002669 atomic64_set(&adev->vm_manager.client_counter, 0);
Christian König284710f2017-01-30 11:09:31 +01002670 spin_lock_init(&adev->vm_manager.prt_lock);
Christian König451bc8e2017-02-14 16:02:52 +01002671 atomic_set(&adev->vm_manager.num_prt_users, 0);
Harish Kasiviswanathan9a4b7d42017-06-09 11:26:57 -04002672
2673 /* If not overridden by the user, by default, only in large BAR systems
2674 * Compute VM tables will be updated by CPU
2675 */
2676#ifdef CONFIG_X86_64
2677 if (amdgpu_vm_update_mode == -1) {
2678 if (amdgpu_vm_is_large_bar(adev))
2679 adev->vm_manager.vm_update_mode =
2680 AMDGPU_VM_USE_CPU_FOR_COMPUTE;
2681 else
2682 adev->vm_manager.vm_update_mode = 0;
2683 } else
2684 adev->vm_manager.vm_update_mode = amdgpu_vm_update_mode;
2685#else
2686 adev->vm_manager.vm_update_mode = 0;
2687#endif
2688
Christian Königa9a78b32016-01-21 10:19:11 +01002689}
2690
2691/**
Christian Königea89f8c2015-11-15 20:52:06 +01002692 * amdgpu_vm_manager_fini - cleanup VM manager
2693 *
2694 * @adev: amdgpu_device pointer
2695 *
2696 * Cleanup the VM manager and free resources.
2697 */
2698void amdgpu_vm_manager_fini(struct amdgpu_device *adev)
2699{
Christian König76456702017-04-06 17:52:39 +02002700 unsigned i, j;
Christian Königea89f8c2015-11-15 20:52:06 +01002701
Christian König76456702017-04-06 17:52:39 +02002702 for (i = 0; i < AMDGPU_MAX_VMHUBS; ++i) {
2703 struct amdgpu_vm_id_manager *id_mgr =
2704 &adev->vm_manager.id_mgr[i];
Christian Königbcb1ba32016-03-08 15:40:11 +01002705
Christian König76456702017-04-06 17:52:39 +02002706 mutex_destroy(&id_mgr->lock);
2707 for (j = 0; j < AMDGPU_NUM_VM; ++j) {
2708 struct amdgpu_vm_id *id = &id_mgr->ids[j];
2709
2710 amdgpu_sync_free(&id->active);
2711 dma_fence_put(id->flushed_updates);
2712 dma_fence_put(id->last_flush);
2713 }
Christian Königbcb1ba32016-03-08 15:40:11 +01002714 }
Christian Königea89f8c2015-11-15 20:52:06 +01002715}
Chunming Zhoucfbcacf2017-04-24 11:09:04 +08002716
2717int amdgpu_vm_ioctl(struct drm_device *dev, void *data, struct drm_file *filp)
2718{
2719 union drm_amdgpu_vm *args = data;
Chunming Zhou1e9ef262017-04-20 16:18:48 +08002720 struct amdgpu_device *adev = dev->dev_private;
2721 struct amdgpu_fpriv *fpriv = filp->driver_priv;
2722 int r;
Chunming Zhoucfbcacf2017-04-24 11:09:04 +08002723
2724 switch (args->in.op) {
2725 case AMDGPU_VM_OP_RESERVE_VMID:
Chunming Zhou1e9ef262017-04-20 16:18:48 +08002726 /* current, we only have requirement to reserve vmid from gfxhub */
2727 r = amdgpu_vm_alloc_reserved_vmid(adev, &fpriv->vm,
2728 AMDGPU_GFXHUB);
2729 if (r)
2730 return r;
2731 break;
Chunming Zhoucfbcacf2017-04-24 11:09:04 +08002732 case AMDGPU_VM_OP_UNRESERVE_VMID:
Chunming Zhou1e9ef262017-04-20 16:18:48 +08002733 amdgpu_vm_free_reserved_vmid(adev, &fpriv->vm, AMDGPU_GFXHUB);
Chunming Zhoucfbcacf2017-04-24 11:09:04 +08002734 break;
2735 default:
2736 return -EINVAL;
2737 }
2738
2739 return 0;
2740}