blob: 9ce36652029e9b35d967293ca9588d56cba3096e [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;
Yong Zhao51ac7ee2017-07-27 12:48:22 -0400291 uint64_t init_value = 0;
Christian Königf566ceb2016-10-27 20:04:38 +0200292
293 if (!parent->entries) {
294 unsigned num_entries = amdgpu_vm_num_entries(adev, level);
295
Michal Hocko20981052017-05-17 14:23:12 +0200296 parent->entries = kvmalloc_array(num_entries,
297 sizeof(struct amdgpu_vm_pt),
298 GFP_KERNEL | __GFP_ZERO);
Christian Königf566ceb2016-10-27 20:04:38 +0200299 if (!parent->entries)
300 return -ENOMEM;
301 memset(parent->entries, 0 , sizeof(struct amdgpu_vm_pt));
302 }
303
Felix Kuehling1866bac2017-03-28 20:36:12 -0400304 from = saddr >> shift;
305 to = eaddr >> shift;
306 if (from >= amdgpu_vm_num_entries(adev, level) ||
307 to >= amdgpu_vm_num_entries(adev, level))
308 return -EINVAL;
Christian Königf566ceb2016-10-27 20:04:38 +0200309
310 if (to > parent->last_entry_used)
311 parent->last_entry_used = to;
312
313 ++level;
Felix Kuehling1866bac2017-03-28 20:36:12 -0400314 saddr = saddr & ((1 << shift) - 1);
315 eaddr = eaddr & ((1 << shift) - 1);
Christian Königf566ceb2016-10-27 20:04:38 +0200316
Harish Kasiviswanathan3c824172017-05-11 15:50:08 -0400317 flags = AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS |
318 AMDGPU_GEM_CREATE_VRAM_CLEARED;
319 if (vm->use_cpu_for_update)
320 flags |= AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED;
321 else
322 flags |= (AMDGPU_GEM_CREATE_NO_CPU_ACCESS |
323 AMDGPU_GEM_CREATE_SHADOW);
324
Yong Zhao51ac7ee2017-07-27 12:48:22 -0400325 if (vm->pte_support_ats) {
326 init_value = AMDGPU_PTE_SYSTEM;
327 if (level != adev->vm_manager.num_level - 1)
328 init_value |= AMDGPU_PDE_PTE;
329 }
330
Christian Königf566ceb2016-10-27 20:04:38 +0200331 /* walk over the address space and allocate the page tables */
332 for (pt_idx = from; pt_idx <= to; ++pt_idx) {
333 struct reservation_object *resv = vm->root.bo->tbo.resv;
334 struct amdgpu_vm_pt *entry = &parent->entries[pt_idx];
335 struct amdgpu_bo *pt;
336
337 if (!entry->bo) {
338 r = amdgpu_bo_create(adev,
339 amdgpu_vm_bo_size(adev, level),
340 AMDGPU_GPU_PAGE_SIZE, true,
341 AMDGPU_GEM_DOMAIN_VRAM,
Harish Kasiviswanathan3c824172017-05-11 15:50:08 -0400342 flags,
Yong Zhao51ac7ee2017-07-27 12:48:22 -0400343 NULL, resv, init_value, &pt);
Christian Königf566ceb2016-10-27 20:04:38 +0200344 if (r)
345 return r;
346
Christian König0a096fb2017-07-12 10:01:48 +0200347 if (vm->use_cpu_for_update) {
348 r = amdgpu_bo_kmap(pt, NULL);
349 if (r) {
350 amdgpu_bo_unref(&pt);
351 return r;
352 }
353 }
354
Christian Königf566ceb2016-10-27 20:04:38 +0200355 /* Keep a reference to the root directory to avoid
356 * freeing them up in the wrong order.
357 */
358 pt->parent = amdgpu_bo_ref(vm->root.bo);
359
360 entry->bo = pt;
361 entry->addr = 0;
Alex Deuchercf2f0a32017-07-25 16:35:38 -0400362 entry->huge_page = false;
Christian Königf566ceb2016-10-27 20:04:38 +0200363 }
364
365 if (level < adev->vm_manager.num_level) {
Felix Kuehling1866bac2017-03-28 20:36:12 -0400366 uint64_t sub_saddr = (pt_idx == from) ? saddr : 0;
367 uint64_t sub_eaddr = (pt_idx == to) ? eaddr :
368 ((1 << shift) - 1);
369 r = amdgpu_vm_alloc_levels(adev, vm, entry, sub_saddr,
370 sub_eaddr, level);
Christian Königf566ceb2016-10-27 20:04:38 +0200371 if (r)
372 return r;
373 }
374 }
375
376 return 0;
377}
378
Christian König663e4572017-03-13 10:13:37 +0100379/**
380 * amdgpu_vm_alloc_pts - Allocate page tables.
381 *
382 * @adev: amdgpu_device pointer
383 * @vm: VM to allocate page tables for
384 * @saddr: Start address which needs to be allocated
385 * @size: Size from start address we need.
386 *
387 * Make sure the page tables are allocated.
388 */
389int amdgpu_vm_alloc_pts(struct amdgpu_device *adev,
390 struct amdgpu_vm *vm,
391 uint64_t saddr, uint64_t size)
392{
Felix Kuehling22770e52017-03-28 20:24:53 -0400393 uint64_t last_pfn;
Christian König663e4572017-03-13 10:13:37 +0100394 uint64_t eaddr;
Christian König663e4572017-03-13 10:13:37 +0100395
396 /* validate the parameters */
397 if (saddr & AMDGPU_GPU_PAGE_MASK || size & AMDGPU_GPU_PAGE_MASK)
398 return -EINVAL;
399
400 eaddr = saddr + size - 1;
401 last_pfn = eaddr / AMDGPU_GPU_PAGE_SIZE;
402 if (last_pfn >= adev->vm_manager.max_pfn) {
Felix Kuehling22770e52017-03-28 20:24:53 -0400403 dev_err(adev->dev, "va above limit (0x%08llX >= 0x%08llX)\n",
Christian König663e4572017-03-13 10:13:37 +0100404 last_pfn, adev->vm_manager.max_pfn);
405 return -EINVAL;
406 }
407
408 saddr /= AMDGPU_GPU_PAGE_SIZE;
409 eaddr /= AMDGPU_GPU_PAGE_SIZE;
410
Christian Königf566ceb2016-10-27 20:04:38 +0200411 return amdgpu_vm_alloc_levels(adev, vm, &vm->root, saddr, eaddr, 0);
Christian König663e4572017-03-13 10:13:37 +0100412}
413
Christian König641e9402017-04-03 13:59:25 +0200414/**
415 * amdgpu_vm_had_gpu_reset - check if reset occured since last use
416 *
417 * @adev: amdgpu_device pointer
418 * @id: VMID structure
419 *
420 * Check if GPU reset occured since last use of the VMID.
421 */
422static bool amdgpu_vm_had_gpu_reset(struct amdgpu_device *adev,
423 struct amdgpu_vm_id *id)
Chunming Zhou192b7dc2016-06-29 14:01:15 +0800424{
425 return id->current_gpu_reset_count !=
Christian König641e9402017-04-03 13:59:25 +0200426 atomic_read(&adev->gpu_reset_counter);
Chunming Zhou192b7dc2016-06-29 14:01:15 +0800427}
428
Chunming Zhou7a63eb22017-04-21 11:13:56 +0800429static bool amdgpu_vm_reserved_vmid_ready(struct amdgpu_vm *vm, unsigned vmhub)
430{
431 return !!vm->reserved_vmid[vmhub];
432}
433
434/* idr_mgr->lock must be held */
435static int amdgpu_vm_grab_reserved_vmid_locked(struct amdgpu_vm *vm,
436 struct amdgpu_ring *ring,
437 struct amdgpu_sync *sync,
438 struct dma_fence *fence,
439 struct amdgpu_job *job)
440{
441 struct amdgpu_device *adev = ring->adev;
442 unsigned vmhub = ring->funcs->vmhub;
443 uint64_t fence_context = adev->fence_context + ring->idx;
444 struct amdgpu_vm_id *id = vm->reserved_vmid[vmhub];
445 struct amdgpu_vm_id_manager *id_mgr = &adev->vm_manager.id_mgr[vmhub];
446 struct dma_fence *updates = sync->last_vm_update;
447 int r = 0;
448 struct dma_fence *flushed, *tmp;
Christian König6f1ceab2017-07-11 16:59:21 +0200449 bool needs_flush = vm->use_cpu_for_update;
Chunming Zhou7a63eb22017-04-21 11:13:56 +0800450
451 flushed = id->flushed_updates;
452 if ((amdgpu_vm_had_gpu_reset(adev, id)) ||
453 (atomic64_read(&id->owner) != vm->client_id) ||
454 (job->vm_pd_addr != id->pd_gpu_addr) ||
455 (updates && (!flushed || updates->context != flushed->context ||
456 dma_fence_is_later(updates, flushed))) ||
457 (!id->last_flush || (id->last_flush->context != fence_context &&
458 !dma_fence_is_signaled(id->last_flush)))) {
459 needs_flush = true;
460 /* to prevent one context starved by another context */
461 id->pd_gpu_addr = 0;
462 tmp = amdgpu_sync_peek_fence(&id->active, ring);
463 if (tmp) {
464 r = amdgpu_sync_fence(adev, sync, tmp);
465 return r;
466 }
467 }
468
469 /* Good we can use this VMID. Remember this submission as
470 * user of the VMID.
471 */
472 r = amdgpu_sync_fence(ring->adev, &id->active, fence);
473 if (r)
474 goto out;
475
476 if (updates && (!flushed || updates->context != flushed->context ||
477 dma_fence_is_later(updates, flushed))) {
478 dma_fence_put(id->flushed_updates);
479 id->flushed_updates = dma_fence_get(updates);
480 }
481 id->pd_gpu_addr = job->vm_pd_addr;
Chunming Zhou7a63eb22017-04-21 11:13:56 +0800482 atomic64_set(&id->owner, vm->client_id);
483 job->vm_needs_flush = needs_flush;
484 if (needs_flush) {
485 dma_fence_put(id->last_flush);
486 id->last_flush = NULL;
487 }
488 job->vm_id = id - id_mgr->ids;
489 trace_amdgpu_vm_grab_id(vm, ring, job);
490out:
491 return r;
492}
493
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400494/**
495 * amdgpu_vm_grab_id - allocate the next free VMID
496 *
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400497 * @vm: vm to allocate id for
Christian König7f8a5292015-07-20 16:09:40 +0200498 * @ring: ring we want to submit job to
499 * @sync: sync object where we add dependencies
Christian König94dd0a42016-01-18 17:01:42 +0100500 * @fence: fence protecting ID from reuse
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400501 *
Christian König7f8a5292015-07-20 16:09:40 +0200502 * Allocate an id for the vm, adding fences to the sync obj as necessary.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400503 */
Christian König7f8a5292015-07-20 16:09:40 +0200504int amdgpu_vm_grab_id(struct amdgpu_vm *vm, struct amdgpu_ring *ring,
Chris Wilsonf54d1862016-10-25 13:00:45 +0100505 struct amdgpu_sync *sync, struct dma_fence *fence,
Chunming Zhoufd53be32016-07-01 17:59:01 +0800506 struct amdgpu_job *job)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400507{
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400508 struct amdgpu_device *adev = ring->adev;
Christian König2e819842017-03-30 16:50:47 +0200509 unsigned vmhub = ring->funcs->vmhub;
Christian König76456702017-04-06 17:52:39 +0200510 struct amdgpu_vm_id_manager *id_mgr = &adev->vm_manager.id_mgr[vmhub];
Christian König090b7672016-07-08 10:21:02 +0200511 uint64_t fence_context = adev->fence_context + ring->idx;
Chris Wilsonf54d1862016-10-25 13:00:45 +0100512 struct dma_fence *updates = sync->last_vm_update;
Christian König8d76001e2016-05-23 16:00:32 +0200513 struct amdgpu_vm_id *id, *idle;
Chris Wilsonf54d1862016-10-25 13:00:45 +0100514 struct dma_fence **fences;
Christian König1fbb2e92016-06-01 10:47:36 +0200515 unsigned i;
516 int r = 0;
517
Christian König76456702017-04-06 17:52:39 +0200518 mutex_lock(&id_mgr->lock);
Chunming Zhou7a63eb22017-04-21 11:13:56 +0800519 if (amdgpu_vm_reserved_vmid_ready(vm, vmhub)) {
520 r = amdgpu_vm_grab_reserved_vmid_locked(vm, ring, sync, fence, job);
521 mutex_unlock(&id_mgr->lock);
522 return r;
523 }
524 fences = kmalloc_array(sizeof(void *), id_mgr->num_ids, GFP_KERNEL);
525 if (!fences) {
526 mutex_unlock(&id_mgr->lock);
527 return -ENOMEM;
528 }
Christian König36fd7c52016-05-23 15:30:08 +0200529 /* Check if we have an idle VMID */
Christian König1fbb2e92016-06-01 10:47:36 +0200530 i = 0;
Christian König76456702017-04-06 17:52:39 +0200531 list_for_each_entry(idle, &id_mgr->ids_lru, list) {
Christian König1fbb2e92016-06-01 10:47:36 +0200532 fences[i] = amdgpu_sync_peek_fence(&idle->active, ring);
533 if (!fences[i])
Christian König36fd7c52016-05-23 15:30:08 +0200534 break;
Christian König1fbb2e92016-06-01 10:47:36 +0200535 ++i;
Christian König36fd7c52016-05-23 15:30:08 +0200536 }
Christian Königbcb1ba32016-03-08 15:40:11 +0100537
Christian König1fbb2e92016-06-01 10:47:36 +0200538 /* If we can't find a idle VMID to use, wait till one becomes available */
Christian König76456702017-04-06 17:52:39 +0200539 if (&idle->list == &id_mgr->ids_lru) {
Christian König1fbb2e92016-06-01 10:47:36 +0200540 u64 fence_context = adev->vm_manager.fence_context + ring->idx;
541 unsigned seqno = ++adev->vm_manager.seqno[ring->idx];
Chris Wilsonf54d1862016-10-25 13:00:45 +0100542 struct dma_fence_array *array;
Christian König1fbb2e92016-06-01 10:47:36 +0200543 unsigned j;
Christian König8d76001e2016-05-23 16:00:32 +0200544
Christian König1fbb2e92016-06-01 10:47:36 +0200545 for (j = 0; j < i; ++j)
Chris Wilsonf54d1862016-10-25 13:00:45 +0100546 dma_fence_get(fences[j]);
Christian König8d76001e2016-05-23 16:00:32 +0200547
Chris Wilsonf54d1862016-10-25 13:00:45 +0100548 array = dma_fence_array_create(i, fences, fence_context,
Christian König1fbb2e92016-06-01 10:47:36 +0200549 seqno, true);
550 if (!array) {
551 for (j = 0; j < i; ++j)
Chris Wilsonf54d1862016-10-25 13:00:45 +0100552 dma_fence_put(fences[j]);
Christian König1fbb2e92016-06-01 10:47:36 +0200553 kfree(fences);
554 r = -ENOMEM;
555 goto error;
556 }
Christian König8d76001e2016-05-23 16:00:32 +0200557
Christian König8d76001e2016-05-23 16:00:32 +0200558
Christian König1fbb2e92016-06-01 10:47:36 +0200559 r = amdgpu_sync_fence(ring->adev, sync, &array->base);
Chris Wilsonf54d1862016-10-25 13:00:45 +0100560 dma_fence_put(&array->base);
Christian König1fbb2e92016-06-01 10:47:36 +0200561 if (r)
562 goto error;
Christian König8d76001e2016-05-23 16:00:32 +0200563
Christian König76456702017-04-06 17:52:39 +0200564 mutex_unlock(&id_mgr->lock);
Christian König1fbb2e92016-06-01 10:47:36 +0200565 return 0;
Christian König8d76001e2016-05-23 16:00:32 +0200566
Christian König1fbb2e92016-06-01 10:47:36 +0200567 }
568 kfree(fences);
Christian König8d76001e2016-05-23 16:00:32 +0200569
Christian König6f1ceab2017-07-11 16:59:21 +0200570 job->vm_needs_flush = vm->use_cpu_for_update;
Christian König1fbb2e92016-06-01 10:47:36 +0200571 /* Check if we can use a VMID already assigned to this VM */
Christian König76456702017-04-06 17:52:39 +0200572 list_for_each_entry_reverse(id, &id_mgr->ids_lru, list) {
Chris Wilsonf54d1862016-10-25 13:00:45 +0100573 struct dma_fence *flushed;
Christian König6f1ceab2017-07-11 16:59:21 +0200574 bool needs_flush = vm->use_cpu_for_update;
Christian König8d76001e2016-05-23 16:00:32 +0200575
Christian König1fbb2e92016-06-01 10:47:36 +0200576 /* Check all the prerequisites to using this VMID */
Christian König641e9402017-04-03 13:59:25 +0200577 if (amdgpu_vm_had_gpu_reset(adev, id))
Chunming Zhou6adb0512016-06-27 17:06:01 +0800578 continue;
Christian König1fbb2e92016-06-01 10:47:36 +0200579
580 if (atomic64_read(&id->owner) != vm->client_id)
581 continue;
582
Chunming Zhoufd53be32016-07-01 17:59:01 +0800583 if (job->vm_pd_addr != id->pd_gpu_addr)
Christian König1fbb2e92016-06-01 10:47:36 +0200584 continue;
585
Christian König87c910d2017-03-30 16:56:20 +0200586 if (!id->last_flush ||
587 (id->last_flush->context != fence_context &&
588 !dma_fence_is_signaled(id->last_flush)))
589 needs_flush = true;
Christian König1fbb2e92016-06-01 10:47:36 +0200590
591 flushed = id->flushed_updates;
Christian König87c910d2017-03-30 16:56:20 +0200592 if (updates && (!flushed || dma_fence_is_later(updates, flushed)))
593 needs_flush = true;
594
595 /* Concurrent flushes are only possible starting with Vega10 */
596 if (adev->asic_type < CHIP_VEGA10 && needs_flush)
Christian König1fbb2e92016-06-01 10:47:36 +0200597 continue;
598
Christian König3dab83b2016-06-01 13:31:17 +0200599 /* Good we can use this VMID. Remember this submission as
600 * user of the VMID.
601 */
Christian König1fbb2e92016-06-01 10:47:36 +0200602 r = amdgpu_sync_fence(ring->adev, &id->active, fence);
603 if (r)
604 goto error;
Christian König8d76001e2016-05-23 16:00:32 +0200605
Christian König87c910d2017-03-30 16:56:20 +0200606 if (updates && (!flushed || dma_fence_is_later(updates, flushed))) {
607 dma_fence_put(id->flushed_updates);
608 id->flushed_updates = dma_fence_get(updates);
609 }
Christian König8d76001e2016-05-23 16:00:32 +0200610
Christian König87c910d2017-03-30 16:56:20 +0200611 if (needs_flush)
612 goto needs_flush;
613 else
614 goto no_flush_needed;
Christian König8d76001e2016-05-23 16:00:32 +0200615
Christian König4f618e72017-04-06 15:18:21 +0200616 };
Chunming Zhou8e9fbeb2016-03-17 11:41:37 +0800617
Christian König1fbb2e92016-06-01 10:47:36 +0200618 /* Still no ID to use? Then use the idle one found earlier */
619 id = idle;
620
621 /* Remember this submission as user of the VMID */
622 r = amdgpu_sync_fence(ring->adev, &id->active, fence);
Christian König832a9022016-02-15 12:33:02 +0100623 if (r)
624 goto error;
Christian König4ff37a82016-02-26 16:18:26 +0100625
Christian König87c910d2017-03-30 16:56:20 +0200626 id->pd_gpu_addr = job->vm_pd_addr;
627 dma_fence_put(id->flushed_updates);
628 id->flushed_updates = dma_fence_get(updates);
Christian König87c910d2017-03-30 16:56:20 +0200629 atomic64_set(&id->owner, vm->client_id);
630
631needs_flush:
632 job->vm_needs_flush = true;
Chris Wilsonf54d1862016-10-25 13:00:45 +0100633 dma_fence_put(id->last_flush);
Christian König41d9eb22016-03-01 16:46:18 +0100634 id->last_flush = NULL;
635
Christian König87c910d2017-03-30 16:56:20 +0200636no_flush_needed:
Christian König76456702017-04-06 17:52:39 +0200637 list_move_tail(&id->list, &id_mgr->ids_lru);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400638
Christian König76456702017-04-06 17:52:39 +0200639 job->vm_id = id - id_mgr->ids;
Christian Königc5296d12017-04-07 15:31:13 +0200640 trace_amdgpu_vm_grab_id(vm, ring, job);
Christian König832a9022016-02-15 12:33:02 +0100641
642error:
Christian König76456702017-04-06 17:52:39 +0200643 mutex_unlock(&id_mgr->lock);
Christian Königa9a78b32016-01-21 10:19:11 +0100644 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400645}
646
Chunming Zhou1e9ef262017-04-20 16:18:48 +0800647static void amdgpu_vm_free_reserved_vmid(struct amdgpu_device *adev,
648 struct amdgpu_vm *vm,
649 unsigned vmhub)
Alex Deucher93dcc372016-06-17 17:05:15 -0400650{
Chunming Zhou1e9ef262017-04-20 16:18:48 +0800651 struct amdgpu_vm_id_manager *id_mgr = &adev->vm_manager.id_mgr[vmhub];
Alex Deucher93dcc372016-06-17 17:05:15 -0400652
Chunming Zhou1e9ef262017-04-20 16:18:48 +0800653 mutex_lock(&id_mgr->lock);
654 if (vm->reserved_vmid[vmhub]) {
655 list_add(&vm->reserved_vmid[vmhub]->list,
656 &id_mgr->ids_lru);
657 vm->reserved_vmid[vmhub] = NULL;
Chunming Zhouc3505772017-04-21 15:51:04 +0800658 atomic_dec(&id_mgr->reserved_vmid_num);
Alex Deucher93dcc372016-06-17 17:05:15 -0400659 }
Chunming Zhou1e9ef262017-04-20 16:18:48 +0800660 mutex_unlock(&id_mgr->lock);
Alex Deucher93dcc372016-06-17 17:05:15 -0400661}
662
Chunming Zhou1e9ef262017-04-20 16:18:48 +0800663static int amdgpu_vm_alloc_reserved_vmid(struct amdgpu_device *adev,
664 struct amdgpu_vm *vm,
665 unsigned vmhub)
Alex Xiee60f8db2017-03-09 11:36:26 -0500666{
Chunming Zhou1e9ef262017-04-20 16:18:48 +0800667 struct amdgpu_vm_id_manager *id_mgr;
668 struct amdgpu_vm_id *idle;
669 int r = 0;
Alex Xiee60f8db2017-03-09 11:36:26 -0500670
Chunming Zhou1e9ef262017-04-20 16:18:48 +0800671 id_mgr = &adev->vm_manager.id_mgr[vmhub];
672 mutex_lock(&id_mgr->lock);
673 if (vm->reserved_vmid[vmhub])
674 goto unlock;
Chunming Zhouc3505772017-04-21 15:51:04 +0800675 if (atomic_inc_return(&id_mgr->reserved_vmid_num) >
676 AMDGPU_VM_MAX_RESERVED_VMID) {
677 DRM_ERROR("Over limitation of reserved vmid\n");
678 atomic_dec(&id_mgr->reserved_vmid_num);
679 r = -EINVAL;
680 goto unlock;
681 }
Chunming Zhou1e9ef262017-04-20 16:18:48 +0800682 /* Select the first entry VMID */
683 idle = list_first_entry(&id_mgr->ids_lru, struct amdgpu_vm_id, list);
684 list_del_init(&idle->list);
685 vm->reserved_vmid[vmhub] = idle;
686 mutex_unlock(&id_mgr->lock);
Alex Xiee60f8db2017-03-09 11:36:26 -0500687
Chunming Zhou1e9ef262017-04-20 16:18:48 +0800688 return 0;
689unlock:
690 mutex_unlock(&id_mgr->lock);
691 return r;
692}
693
Alex Xiee59c0202017-06-01 09:42:59 -0400694/**
695 * amdgpu_vm_check_compute_bug - check whether asic has compute vm bug
696 *
697 * @adev: amdgpu_device pointer
698 */
699void amdgpu_vm_check_compute_bug(struct amdgpu_device *adev)
700{
701 const struct amdgpu_ip_block *ip_block;
702 bool has_compute_vm_bug;
703 struct amdgpu_ring *ring;
704 int i;
705
706 has_compute_vm_bug = false;
707
708 ip_block = amdgpu_get_ip_block(adev, AMD_IP_BLOCK_TYPE_GFX);
709 if (ip_block) {
710 /* Compute has a VM bug for GFX version < 7.
711 Compute has a VM bug for GFX 8 MEC firmware version < 673.*/
712 if (ip_block->version->major <= 7)
713 has_compute_vm_bug = true;
714 else if (ip_block->version->major == 8)
715 if (adev->gfx.mec_fw_version < 673)
716 has_compute_vm_bug = true;
717 }
718
719 for (i = 0; i < adev->num_rings; i++) {
720 ring = adev->rings[i];
721 if (ring->funcs->type == AMDGPU_RING_TYPE_COMPUTE)
722 /* only compute rings */
723 ring->has_compute_vm_bug = has_compute_vm_bug;
724 else
725 ring->has_compute_vm_bug = false;
726 }
727}
728
Chunming Zhoub9bf33d2017-05-11 14:52:48 -0400729bool amdgpu_vm_need_pipeline_sync(struct amdgpu_ring *ring,
730 struct amdgpu_job *job)
731{
732 struct amdgpu_device *adev = ring->adev;
733 unsigned vmhub = ring->funcs->vmhub;
734 struct amdgpu_vm_id_manager *id_mgr = &adev->vm_manager.id_mgr[vmhub];
735 struct amdgpu_vm_id *id;
736 bool gds_switch_needed;
Alex Xiee59c0202017-06-01 09:42:59 -0400737 bool vm_flush_needed = job->vm_needs_flush || ring->has_compute_vm_bug;
Chunming Zhoub9bf33d2017-05-11 14:52:48 -0400738
739 if (job->vm_id == 0)
740 return false;
741 id = &id_mgr->ids[job->vm_id];
742 gds_switch_needed = ring->funcs->emit_gds_switch && (
743 id->gds_base != job->gds_base ||
744 id->gds_size != job->gds_size ||
745 id->gws_base != job->gws_base ||
746 id->gws_size != job->gws_size ||
747 id->oa_base != job->oa_base ||
748 id->oa_size != job->oa_size);
749
750 if (amdgpu_vm_had_gpu_reset(adev, id))
751 return true;
Alex Xiebb37b672017-05-30 23:50:10 -0400752
753 return vm_flush_needed || gds_switch_needed;
Chunming Zhoub9bf33d2017-05-11 14:52:48 -0400754}
755
Harish Kasiviswanathan9a4b7d42017-06-09 11:26:57 -0400756static bool amdgpu_vm_is_large_bar(struct amdgpu_device *adev)
757{
758 return (adev->mc.real_vram_size == adev->mc.visible_vram_size);
Alex Xiee60f8db2017-03-09 11:36:26 -0500759}
760
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400761/**
762 * amdgpu_vm_flush - hardware flush the vm
763 *
764 * @ring: ring to use for flush
Christian Königcffadc82016-03-01 13:34:49 +0100765 * @vm_id: vmid number to use
Christian König4ff37a82016-02-26 16:18:26 +0100766 * @pd_addr: address of the page directory
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400767 *
Christian König4ff37a82016-02-26 16:18:26 +0100768 * Emit a VM flush when it is necessary.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400769 */
Monk Liu8fdf0742017-06-06 17:25:13 +0800770int amdgpu_vm_flush(struct amdgpu_ring *ring, struct amdgpu_job *job, bool need_pipe_sync)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400771{
Christian König971fe9a92016-03-01 15:09:25 +0100772 struct amdgpu_device *adev = ring->adev;
Christian König76456702017-04-06 17:52:39 +0200773 unsigned vmhub = ring->funcs->vmhub;
774 struct amdgpu_vm_id_manager *id_mgr = &adev->vm_manager.id_mgr[vmhub];
775 struct amdgpu_vm_id *id = &id_mgr->ids[job->vm_id];
Christian Königd564a062016-03-01 15:51:53 +0100776 bool gds_switch_needed = ring->funcs->emit_gds_switch && (
Chunming Zhoufd53be32016-07-01 17:59:01 +0800777 id->gds_base != job->gds_base ||
778 id->gds_size != job->gds_size ||
779 id->gws_base != job->gws_base ||
780 id->gws_size != job->gws_size ||
781 id->oa_base != job->oa_base ||
782 id->oa_size != job->oa_size);
Flora Cuide37e682017-05-18 13:56:22 +0800783 bool vm_flush_needed = job->vm_needs_flush;
Christian Königc0e51932017-04-03 14:16:07 +0200784 unsigned patch_offset = 0;
Christian König41d9eb22016-03-01 16:46:18 +0100785 int r;
Christian Königd564a062016-03-01 15:51:53 +0100786
Christian Königf7d015b2017-04-03 14:28:26 +0200787 if (amdgpu_vm_had_gpu_reset(adev, id)) {
788 gds_switch_needed = true;
789 vm_flush_needed = true;
790 }
Christian König971fe9a92016-03-01 15:09:25 +0100791
Monk Liu8fdf0742017-06-06 17:25:13 +0800792 if (!vm_flush_needed && !gds_switch_needed && !need_pipe_sync)
Christian Königf7d015b2017-04-03 14:28:26 +0200793 return 0;
Christian König41d9eb22016-03-01 16:46:18 +0100794
Christian Königc0e51932017-04-03 14:16:07 +0200795 if (ring->funcs->init_cond_exec)
796 patch_offset = amdgpu_ring_init_cond_exec(ring);
Christian König41d9eb22016-03-01 16:46:18 +0100797
Monk Liu8fdf0742017-06-06 17:25:13 +0800798 if (need_pipe_sync)
799 amdgpu_ring_emit_pipeline_sync(ring);
800
Christian Königf7d015b2017-04-03 14:28:26 +0200801 if (ring->funcs->emit_vm_flush && vm_flush_needed) {
Christian Königc0e51932017-04-03 14:16:07 +0200802 struct dma_fence *fence;
Monk Liue9d672b2017-03-15 12:18:57 +0800803
Christian König9a94f5a2017-05-12 14:46:23 +0200804 trace_amdgpu_vm_flush(ring, job->vm_id, job->vm_pd_addr);
805 amdgpu_ring_emit_vm_flush(ring, job->vm_id, job->vm_pd_addr);
Monk Liue9d672b2017-03-15 12:18:57 +0800806
Christian Königc0e51932017-04-03 14:16:07 +0200807 r = amdgpu_fence_emit(ring, &fence);
808 if (r)
809 return r;
Monk Liue9d672b2017-03-15 12:18:57 +0800810
Christian König76456702017-04-06 17:52:39 +0200811 mutex_lock(&id_mgr->lock);
Christian Königc0e51932017-04-03 14:16:07 +0200812 dma_fence_put(id->last_flush);
813 id->last_flush = fence;
Chunming Zhoubea396722017-05-10 13:02:39 +0800814 id->current_gpu_reset_count = atomic_read(&adev->gpu_reset_counter);
Christian König76456702017-04-06 17:52:39 +0200815 mutex_unlock(&id_mgr->lock);
Christian Königc0e51932017-04-03 14:16:07 +0200816 }
Monk Liue9d672b2017-03-15 12:18:57 +0800817
Chunming Zhou7c4378f2017-05-11 18:22:17 +0800818 if (ring->funcs->emit_gds_switch && gds_switch_needed) {
Christian Königc0e51932017-04-03 14:16:07 +0200819 id->gds_base = job->gds_base;
820 id->gds_size = job->gds_size;
821 id->gws_base = job->gws_base;
822 id->gws_size = job->gws_size;
823 id->oa_base = job->oa_base;
824 id->oa_size = job->oa_size;
825 amdgpu_ring_emit_gds_switch(ring, job->vm_id, job->gds_base,
826 job->gds_size, job->gws_base,
827 job->gws_size, job->oa_base,
828 job->oa_size);
829 }
830
831 if (ring->funcs->patch_cond_exec)
832 amdgpu_ring_patch_cond_exec(ring, patch_offset);
833
834 /* the double SWITCH_BUFFER here *cannot* be skipped by COND_EXEC */
835 if (ring->funcs->emit_switch_buffer) {
836 amdgpu_ring_emit_switch_buffer(ring);
837 amdgpu_ring_emit_switch_buffer(ring);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400838 }
Christian König41d9eb22016-03-01 16:46:18 +0100839 return 0;
Christian König971fe9a92016-03-01 15:09:25 +0100840}
841
842/**
843 * amdgpu_vm_reset_id - reset VMID to zero
844 *
845 * @adev: amdgpu device structure
846 * @vm_id: vmid number to use
847 *
848 * Reset saved GDW, GWS and OA to force switch on next flush.
849 */
Christian König76456702017-04-06 17:52:39 +0200850void amdgpu_vm_reset_id(struct amdgpu_device *adev, unsigned vmhub,
851 unsigned vmid)
Christian König971fe9a92016-03-01 15:09:25 +0100852{
Christian König76456702017-04-06 17:52:39 +0200853 struct amdgpu_vm_id_manager *id_mgr = &adev->vm_manager.id_mgr[vmhub];
854 struct amdgpu_vm_id *id = &id_mgr->ids[vmid];
Christian König971fe9a92016-03-01 15:09:25 +0100855
Christian Königb3c85a02017-05-10 20:06:58 +0200856 atomic64_set(&id->owner, 0);
Christian Königbcb1ba32016-03-08 15:40:11 +0100857 id->gds_base = 0;
858 id->gds_size = 0;
859 id->gws_base = 0;
860 id->gws_size = 0;
861 id->oa_base = 0;
862 id->oa_size = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400863}
864
865/**
Christian Königb3c85a02017-05-10 20:06:58 +0200866 * amdgpu_vm_reset_all_id - reset VMID to zero
867 *
868 * @adev: amdgpu device structure
869 *
870 * Reset VMID to force flush on next use
871 */
872void amdgpu_vm_reset_all_ids(struct amdgpu_device *adev)
873{
874 unsigned i, j;
875
876 for (i = 0; i < AMDGPU_MAX_VMHUBS; ++i) {
877 struct amdgpu_vm_id_manager *id_mgr =
878 &adev->vm_manager.id_mgr[i];
879
880 for (j = 1; j < id_mgr->num_ids; ++j)
881 amdgpu_vm_reset_id(adev, i, j);
882 }
883}
884
885/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400886 * amdgpu_vm_bo_find - find the bo_va for a specific vm & bo
887 *
888 * @vm: requested vm
889 * @bo: requested buffer object
890 *
Christian König8843dbb2016-01-26 12:17:11 +0100891 * Find @bo inside the requested vm.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400892 * Search inside the @bos vm list for the requested vm
893 * Returns the found bo_va or NULL if none is found
894 *
895 * Object has to be reserved!
896 */
897struct amdgpu_bo_va *amdgpu_vm_bo_find(struct amdgpu_vm *vm,
898 struct amdgpu_bo *bo)
899{
900 struct amdgpu_bo_va *bo_va;
901
902 list_for_each_entry(bo_va, &bo->va, bo_list) {
903 if (bo_va->vm == vm) {
904 return bo_va;
905 }
906 }
907 return NULL;
908}
909
910/**
Christian Königafef8b82016-08-12 13:29:18 +0200911 * amdgpu_vm_do_set_ptes - helper to call the right asic function
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400912 *
Christian König29efc4f2016-08-04 14:52:50 +0200913 * @params: see amdgpu_pte_update_params definition
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400914 * @pe: addr of the page entry
915 * @addr: dst addr to write into pe
916 * @count: number of page entries to update
917 * @incr: increase next addr by incr bytes
918 * @flags: hw access flags
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400919 *
920 * Traces the parameters and calls the right asic functions
921 * to setup the page table using the DMA.
922 */
Christian Königafef8b82016-08-12 13:29:18 +0200923static void amdgpu_vm_do_set_ptes(struct amdgpu_pte_update_params *params,
924 uint64_t pe, uint64_t addr,
925 unsigned count, uint32_t incr,
Chunming Zhou6b777602016-09-21 16:19:19 +0800926 uint64_t flags)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400927{
Christian Königec2f05f2016-09-25 16:11:52 +0200928 trace_amdgpu_vm_set_ptes(pe, addr, count, incr, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400929
Christian Königafef8b82016-08-12 13:29:18 +0200930 if (count < 3) {
Christian Königde9ea7b2016-08-12 11:33:30 +0200931 amdgpu_vm_write_pte(params->adev, params->ib, pe,
932 addr | flags, count, incr);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400933
934 } else {
Christian König27c5f362016-08-04 15:02:49 +0200935 amdgpu_vm_set_pte_pde(params->adev, params->ib, pe, addr,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400936 count, incr, flags);
937 }
938}
939
940/**
Christian Königafef8b82016-08-12 13:29:18 +0200941 * amdgpu_vm_do_copy_ptes - copy the PTEs from the GART
942 *
943 * @params: see amdgpu_pte_update_params definition
944 * @pe: addr of the page entry
945 * @addr: dst addr to write into pe
946 * @count: number of page entries to update
947 * @incr: increase next addr by incr bytes
948 * @flags: hw access flags
949 *
950 * Traces the parameters and calls the DMA function to copy the PTEs.
951 */
952static void amdgpu_vm_do_copy_ptes(struct amdgpu_pte_update_params *params,
953 uint64_t pe, uint64_t addr,
954 unsigned count, uint32_t incr,
Chunming Zhou6b777602016-09-21 16:19:19 +0800955 uint64_t flags)
Christian Königafef8b82016-08-12 13:29:18 +0200956{
Christian Königec2f05f2016-09-25 16:11:52 +0200957 uint64_t src = (params->src + (addr >> 12) * 8);
Christian Königafef8b82016-08-12 13:29:18 +0200958
Christian Königec2f05f2016-09-25 16:11:52 +0200959
960 trace_amdgpu_vm_copy_ptes(pe, src, count);
961
962 amdgpu_vm_copy_pte(params->adev, params->ib, pe, src, count);
Christian Königafef8b82016-08-12 13:29:18 +0200963}
964
965/**
Christian Königb07c9d22015-11-30 13:26:07 +0100966 * amdgpu_vm_map_gart - Resolve gart mapping of addr
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400967 *
Christian Königb07c9d22015-11-30 13:26:07 +0100968 * @pages_addr: optional DMA address to use for lookup
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400969 * @addr: the unmapped addr
970 *
971 * Look up the physical address of the page that the pte resolves
Christian Königb07c9d22015-11-30 13:26:07 +0100972 * to and return the pointer for the page table entry.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400973 */
Christian Königde9ea7b2016-08-12 11:33:30 +0200974static uint64_t amdgpu_vm_map_gart(const dma_addr_t *pages_addr, uint64_t addr)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400975{
976 uint64_t result;
977
Christian Königde9ea7b2016-08-12 11:33:30 +0200978 /* page table offset */
979 result = pages_addr[addr >> PAGE_SHIFT];
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400980
Christian Königde9ea7b2016-08-12 11:33:30 +0200981 /* in case cpu page size != gpu page size*/
982 result |= addr & (~PAGE_MASK);
Christian Königb07c9d22015-11-30 13:26:07 +0100983
984 result &= 0xFFFFFFFFFFFFF000ULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400985
986 return result;
987}
988
Harish Kasiviswanathan3c824172017-05-11 15:50:08 -0400989/**
990 * amdgpu_vm_cpu_set_ptes - helper to update page tables via CPU
991 *
992 * @params: see amdgpu_pte_update_params definition
993 * @pe: kmap addr of the page entry
994 * @addr: dst addr to write into pe
995 * @count: number of page entries to update
996 * @incr: increase next addr by incr bytes
997 * @flags: hw access flags
998 *
999 * Write count number of PT/PD entries directly.
1000 */
1001static void amdgpu_vm_cpu_set_ptes(struct amdgpu_pte_update_params *params,
1002 uint64_t pe, uint64_t addr,
1003 unsigned count, uint32_t incr,
1004 uint64_t flags)
1005{
1006 unsigned int i;
Harish Kasiviswanathanb4d42512017-05-11 19:47:22 -04001007 uint64_t value;
Harish Kasiviswanathan3c824172017-05-11 15:50:08 -04001008
Christian König03918b32017-07-11 17:15:37 +02001009 trace_amdgpu_vm_set_ptes(pe, addr, count, incr, flags);
1010
Harish Kasiviswanathan3c824172017-05-11 15:50:08 -04001011 for (i = 0; i < count; i++) {
Harish Kasiviswanathanb4d42512017-05-11 19:47:22 -04001012 value = params->pages_addr ?
1013 amdgpu_vm_map_gart(params->pages_addr, addr) :
1014 addr;
Harish Kasiviswanathana19240052017-06-09 17:47:28 -04001015 amdgpu_gart_set_pte_pde(params->adev, (void *)(uintptr_t)pe,
Harish Kasiviswanathanb4d42512017-05-11 19:47:22 -04001016 i, value, flags);
Harish Kasiviswanathan3c824172017-05-11 15:50:08 -04001017 addr += incr;
1018 }
Harish Kasiviswanathan3c824172017-05-11 15:50:08 -04001019}
1020
Christian Königa33cab72017-07-11 17:13:00 +02001021static int amdgpu_vm_wait_pd(struct amdgpu_device *adev, struct amdgpu_vm *vm,
1022 void *owner)
Harish Kasiviswanathan3c824172017-05-11 15:50:08 -04001023{
1024 struct amdgpu_sync sync;
1025 int r;
1026
1027 amdgpu_sync_create(&sync);
Christian Königa33cab72017-07-11 17:13:00 +02001028 amdgpu_sync_resv(adev, &sync, vm->root.bo->tbo.resv, owner);
Harish Kasiviswanathan3c824172017-05-11 15:50:08 -04001029 r = amdgpu_sync_wait(&sync, true);
1030 amdgpu_sync_free(&sync);
1031
1032 return r;
1033}
1034
Christian Königf8991ba2016-09-16 15:36:49 +02001035/*
Christian König194d2162016-10-12 15:13:52 +02001036 * amdgpu_vm_update_level - update a single level in the hierarchy
Christian Königf8991ba2016-09-16 15:36:49 +02001037 *
1038 * @adev: amdgpu_device pointer
1039 * @vm: requested vm
Christian König194d2162016-10-12 15:13:52 +02001040 * @parent: parent directory
Christian Königf8991ba2016-09-16 15:36:49 +02001041 *
Christian König194d2162016-10-12 15:13:52 +02001042 * Makes sure all entries in @parent are up to date.
Christian Königf8991ba2016-09-16 15:36:49 +02001043 * Returns 0 for success, error for failure.
1044 */
Christian König194d2162016-10-12 15:13:52 +02001045static int amdgpu_vm_update_level(struct amdgpu_device *adev,
1046 struct amdgpu_vm *vm,
1047 struct amdgpu_vm_pt *parent,
1048 unsigned level)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001049{
Christian Königf8991ba2016-09-16 15:36:49 +02001050 struct amdgpu_bo *shadow;
Harish Kasiviswanathana19240052017-06-09 17:47:28 -04001051 struct amdgpu_ring *ring = NULL;
1052 uint64_t pd_addr, shadow_addr = 0;
Christian König194d2162016-10-12 15:13:52 +02001053 uint32_t incr = amdgpu_vm_bo_size(adev, level + 1);
Christian Königf8991ba2016-09-16 15:36:49 +02001054 uint64_t last_pde = ~0, last_pt = ~0, last_shadow = ~0;
Harish Kasiviswanathana19240052017-06-09 17:47:28 -04001055 unsigned count = 0, pt_idx, ndw = 0;
Christian Königd71518b2016-02-01 12:20:25 +01001056 struct amdgpu_job *job;
Christian König29efc4f2016-08-04 14:52:50 +02001057 struct amdgpu_pte_update_params params;
Dave Airlie220196b2016-10-28 11:33:52 +10001058 struct dma_fence *fence = NULL;
Chunming Zhoud5fc5e82015-07-21 16:52:10 +08001059
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001060 int r;
1061
Christian König194d2162016-10-12 15:13:52 +02001062 if (!parent->entries)
1063 return 0;
Christian Königd71518b2016-02-01 12:20:25 +01001064
Christian König27c5f362016-08-04 15:02:49 +02001065 memset(&params, 0, sizeof(params));
1066 params.adev = adev;
Harish Kasiviswanathan3c824172017-05-11 15:50:08 -04001067 shadow = parent->bo->shadow;
1068
Alex Deucher69277982017-07-13 15:37:11 -04001069 if (vm->use_cpu_for_update) {
Christian Königf5e1c742017-07-20 23:45:18 +02001070 pd_addr = (unsigned long)amdgpu_bo_kptr(parent->bo);
Christian Königa33cab72017-07-11 17:13:00 +02001071 r = amdgpu_vm_wait_pd(adev, vm, AMDGPU_FENCE_OWNER_VM);
Christian König0a096fb2017-07-12 10:01:48 +02001072 if (unlikely(r))
Harish Kasiviswanathan3c824172017-05-11 15:50:08 -04001073 return r;
Christian König0a096fb2017-07-12 10:01:48 +02001074
Harish Kasiviswanathan3c824172017-05-11 15:50:08 -04001075 params.func = amdgpu_vm_cpu_set_ptes;
1076 } else {
1077 if (shadow) {
1078 r = amdgpu_ttm_bind(&shadow->tbo, &shadow->tbo.mem);
1079 if (r)
1080 return r;
1081 }
1082 ring = container_of(vm->entity.sched, struct amdgpu_ring,
1083 sched);
1084
1085 /* padding, etc. */
1086 ndw = 64;
1087
1088 /* assume the worst case */
1089 ndw += parent->last_entry_used * 6;
1090
1091 pd_addr = amdgpu_bo_gpu_offset(parent->bo);
1092
1093 if (shadow) {
1094 shadow_addr = amdgpu_bo_gpu_offset(shadow);
1095 ndw *= 2;
1096 } else {
1097 shadow_addr = 0;
1098 }
1099
1100 r = amdgpu_job_alloc_with_ib(adev, ndw * 4, &job);
1101 if (r)
1102 return r;
1103
1104 params.ib = &job->ibs[0];
1105 params.func = amdgpu_vm_do_set_ptes;
1106 }
1107
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001108
Christian König194d2162016-10-12 15:13:52 +02001109 /* walk over the address space and update the directory */
1110 for (pt_idx = 0; pt_idx <= parent->last_entry_used; ++pt_idx) {
1111 struct amdgpu_bo *bo = parent->entries[pt_idx].bo;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001112 uint64_t pde, pt;
1113
1114 if (bo == NULL)
1115 continue;
1116
Christian König0fc86832016-09-16 11:46:23 +02001117 if (bo->shadow) {
Christian Königf8991ba2016-09-16 15:36:49 +02001118 struct amdgpu_bo *pt_shadow = bo->shadow;
Christian König0fc86832016-09-16 11:46:23 +02001119
Christian Königf8991ba2016-09-16 15:36:49 +02001120 r = amdgpu_ttm_bind(&pt_shadow->tbo,
1121 &pt_shadow->tbo.mem);
Christian König0fc86832016-09-16 11:46:23 +02001122 if (r)
1123 return r;
1124 }
1125
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001126 pt = amdgpu_bo_gpu_offset(bo);
Christian König53e2e912017-05-15 15:19:10 +02001127 pt = amdgpu_gart_get_vm_pde(adev, pt);
Alex Deuchercf2f0a32017-07-25 16:35:38 -04001128 if (parent->entries[pt_idx].addr == pt ||
1129 parent->entries[pt_idx].huge_page)
Christian Königf8991ba2016-09-16 15:36:49 +02001130 continue;
1131
Christian König194d2162016-10-12 15:13:52 +02001132 parent->entries[pt_idx].addr = pt;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001133
1134 pde = pd_addr + pt_idx * 8;
1135 if (((last_pde + 8 * count) != pde) ||
Christian König96105e52016-08-12 12:59:59 +02001136 ((last_pt + incr * count) != pt) ||
1137 (count == AMDGPU_VM_MAX_UPDATE_SIZE)) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001138
1139 if (count) {
Christian Königf8991ba2016-09-16 15:36:49 +02001140 if (shadow)
Harish Kasiviswanathan3c824172017-05-11 15:50:08 -04001141 params.func(&params,
1142 last_shadow,
1143 last_pt, count,
1144 incr,
1145 AMDGPU_PTE_VALID);
Christian Königf8991ba2016-09-16 15:36:49 +02001146
Harish Kasiviswanathan3c824172017-05-11 15:50:08 -04001147 params.func(&params, last_pde,
1148 last_pt, count, incr,
1149 AMDGPU_PTE_VALID);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001150 }
1151
1152 count = 1;
1153 last_pde = pde;
Christian Königf8991ba2016-09-16 15:36:49 +02001154 last_shadow = shadow_addr + pt_idx * 8;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001155 last_pt = pt;
1156 } else {
1157 ++count;
1158 }
1159 }
1160
Christian Königf8991ba2016-09-16 15:36:49 +02001161 if (count) {
Christian König67003a12016-10-12 14:46:26 +02001162 if (vm->root.bo->shadow)
Harish Kasiviswanathan3c824172017-05-11 15:50:08 -04001163 params.func(&params, last_shadow, last_pt,
1164 count, incr, AMDGPU_PTE_VALID);
Christian Königf8991ba2016-09-16 15:36:49 +02001165
Harish Kasiviswanathan3c824172017-05-11 15:50:08 -04001166 params.func(&params, last_pde, last_pt,
1167 count, incr, AMDGPU_PTE_VALID);
Chunming Zhoud5fc5e82015-07-21 16:52:10 +08001168 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001169
Christian König0a096fb2017-07-12 10:01:48 +02001170 if (!vm->use_cpu_for_update) {
1171 if (params.ib->length_dw == 0) {
1172 amdgpu_job_free(job);
1173 } else {
1174 amdgpu_ring_pad_ib(ring, params.ib);
1175 amdgpu_sync_resv(adev, &job->sync, parent->bo->tbo.resv,
Christian König194d2162016-10-12 15:13:52 +02001176 AMDGPU_FENCE_OWNER_VM);
Christian König0a096fb2017-07-12 10:01:48 +02001177 if (shadow)
1178 amdgpu_sync_resv(adev, &job->sync,
1179 shadow->tbo.resv,
1180 AMDGPU_FENCE_OWNER_VM);
Christian Königf8991ba2016-09-16 15:36:49 +02001181
Christian König0a096fb2017-07-12 10:01:48 +02001182 WARN_ON(params.ib->length_dw > ndw);
1183 r = amdgpu_job_submit(job, ring, &vm->entity,
1184 AMDGPU_FENCE_OWNER_VM, &fence);
1185 if (r)
1186 goto error_free;
Christian Königf8991ba2016-09-16 15:36:49 +02001187
Christian König0a096fb2017-07-12 10:01:48 +02001188 amdgpu_bo_fence(parent->bo, fence, true);
1189 dma_fence_put(vm->last_dir_update);
1190 vm->last_dir_update = dma_fence_get(fence);
1191 dma_fence_put(fence);
1192 }
Christian König194d2162016-10-12 15:13:52 +02001193 }
1194 /*
1195 * Recurse into the subdirectories. This recursion is harmless because
1196 * we only have a maximum of 5 layers.
1197 */
1198 for (pt_idx = 0; pt_idx <= parent->last_entry_used; ++pt_idx) {
1199 struct amdgpu_vm_pt *entry = &parent->entries[pt_idx];
1200
1201 if (!entry->bo)
1202 continue;
1203
1204 r = amdgpu_vm_update_level(adev, vm, entry, level + 1);
1205 if (r)
1206 return r;
1207 }
Christian Königf8991ba2016-09-16 15:36:49 +02001208
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001209 return 0;
Chunming Zhoud5fc5e82015-07-21 16:52:10 +08001210
1211error_free:
Christian Königd71518b2016-02-01 12:20:25 +01001212 amdgpu_job_free(job);
Chunming Zhou4af9f072015-08-03 12:57:31 +08001213 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001214}
1215
Christian König194d2162016-10-12 15:13:52 +02001216/*
Christian König92456b92017-05-12 16:09:26 +02001217 * amdgpu_vm_invalidate_level - mark all PD levels as invalid
1218 *
1219 * @parent: parent PD
1220 *
1221 * Mark all PD level as invalid after an error.
1222 */
1223static void amdgpu_vm_invalidate_level(struct amdgpu_vm_pt *parent)
1224{
1225 unsigned pt_idx;
1226
1227 /*
1228 * Recurse into the subdirectories. This recursion is harmless because
1229 * we only have a maximum of 5 layers.
1230 */
1231 for (pt_idx = 0; pt_idx <= parent->last_entry_used; ++pt_idx) {
1232 struct amdgpu_vm_pt *entry = &parent->entries[pt_idx];
1233
1234 if (!entry->bo)
1235 continue;
1236
1237 entry->addr = ~0ULL;
1238 amdgpu_vm_invalidate_level(entry);
1239 }
1240}
1241
1242/*
Christian König194d2162016-10-12 15:13:52 +02001243 * amdgpu_vm_update_directories - make sure that all directories are valid
1244 *
1245 * @adev: amdgpu_device pointer
1246 * @vm: requested vm
1247 *
1248 * Makes sure all directories are up to date.
1249 * Returns 0 for success, error for failure.
1250 */
1251int amdgpu_vm_update_directories(struct amdgpu_device *adev,
1252 struct amdgpu_vm *vm)
1253{
Christian König92456b92017-05-12 16:09:26 +02001254 int r;
1255
1256 r = amdgpu_vm_update_level(adev, vm, &vm->root, 0);
1257 if (r)
1258 amdgpu_vm_invalidate_level(&vm->root);
1259
Christian König68c62302017-07-11 17:23:29 +02001260 if (vm->use_cpu_for_update) {
1261 /* Flush HDP */
1262 mb();
1263 amdgpu_gart_flush_gpu_tlb(adev, 0);
1264 }
1265
Christian König92456b92017-05-12 16:09:26 +02001266 return r;
Christian König194d2162016-10-12 15:13:52 +02001267}
1268
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001269/**
Alex Deuchercf2f0a32017-07-25 16:35:38 -04001270 * amdgpu_vm_find_entry - find the entry for an address
Christian König4e2cb642016-10-25 15:52:28 +02001271 *
1272 * @p: see amdgpu_pte_update_params definition
1273 * @addr: virtual address in question
Alex Deuchercf2f0a32017-07-25 16:35:38 -04001274 * @entry: resulting entry or NULL
1275 * @parent: parent entry
Christian König4e2cb642016-10-25 15:52:28 +02001276 *
Alex Deuchercf2f0a32017-07-25 16:35:38 -04001277 * Find the vm_pt entry and it's parent for the given address.
Christian König4e2cb642016-10-25 15:52:28 +02001278 */
Alex Deuchercf2f0a32017-07-25 16:35:38 -04001279void amdgpu_vm_get_entry(struct amdgpu_pte_update_params *p, uint64_t addr,
1280 struct amdgpu_vm_pt **entry,
1281 struct amdgpu_vm_pt **parent)
Christian König4e2cb642016-10-25 15:52:28 +02001282{
Christian König4e2cb642016-10-25 15:52:28 +02001283 unsigned idx, level = p->adev->vm_manager.num_level;
1284
Alex Deuchercf2f0a32017-07-25 16:35:38 -04001285 *parent = NULL;
1286 *entry = &p->vm->root;
1287 while ((*entry)->entries) {
Zhang, Jerry36b32a62017-03-29 16:08:32 +08001288 idx = addr >> (p->adev->vm_manager.block_size * level--);
Alex Deuchercf2f0a32017-07-25 16:35:38 -04001289 idx %= amdgpu_bo_size((*entry)->bo) / 8;
1290 *parent = *entry;
1291 *entry = &(*entry)->entries[idx];
Christian König4e2cb642016-10-25 15:52:28 +02001292 }
1293
1294 if (level)
Alex Deuchercf2f0a32017-07-25 16:35:38 -04001295 *entry = NULL;
1296}
Christian König4e2cb642016-10-25 15:52:28 +02001297
Alex Deuchercf2f0a32017-07-25 16:35:38 -04001298/**
1299 * amdgpu_vm_handle_huge_pages - handle updating the PD with huge pages
1300 *
1301 * @p: see amdgpu_pte_update_params definition
1302 * @entry: vm_pt entry to check
1303 * @parent: parent entry
1304 * @nptes: number of PTEs updated with this operation
1305 * @dst: destination address where the PTEs should point to
1306 * @flags: access flags fro the PTEs
1307 *
1308 * Check if we can update the PD with a huge page.
1309 */
1310static int amdgpu_vm_handle_huge_pages(struct amdgpu_pte_update_params *p,
1311 struct amdgpu_vm_pt *entry,
1312 struct amdgpu_vm_pt *parent,
1313 unsigned nptes, uint64_t dst,
1314 uint64_t flags)
1315{
1316 bool use_cpu_update = (p->func == amdgpu_vm_cpu_set_ptes);
1317 uint64_t pd_addr, pde;
1318 int r;
1319
1320 /* In the case of a mixed PT the PDE must point to it*/
1321 if (p->adev->asic_type < CHIP_VEGA10 ||
1322 nptes != AMDGPU_VM_PTE_COUNT(p->adev) ||
1323 p->func == amdgpu_vm_do_copy_ptes ||
1324 !(flags & AMDGPU_PTE_VALID)) {
1325
1326 dst = amdgpu_bo_gpu_offset(entry->bo);
1327 dst = amdgpu_gart_get_vm_pde(p->adev, dst);
1328 flags = AMDGPU_PTE_VALID;
1329 } else {
1330 flags |= AMDGPU_PDE_PTE;
1331 }
1332
1333 if (entry->addr == dst &&
1334 entry->huge_page == !!(flags & AMDGPU_PDE_PTE))
1335 return 0;
1336
1337 entry->addr = dst;
1338 entry->huge_page = !!(flags & AMDGPU_PDE_PTE);
1339
1340 if (use_cpu_update) {
1341 r = amdgpu_bo_kmap(parent->bo, (void *)&pd_addr);
1342 if (r)
1343 return r;
1344
1345 pde = pd_addr + (entry - parent->entries) * 8;
1346 amdgpu_vm_cpu_set_ptes(p, pde, dst, 1, 0, flags);
1347 } else {
1348 if (parent->bo->shadow) {
1349 pd_addr = amdgpu_bo_gpu_offset(parent->bo->shadow);
1350 pde = pd_addr + (entry - parent->entries) * 8;
1351 amdgpu_vm_do_set_ptes(p, pde, dst, 1, 0, flags);
1352 }
1353 pd_addr = amdgpu_bo_gpu_offset(parent->bo);
1354 pde = pd_addr + (entry - parent->entries) * 8;
1355 amdgpu_vm_do_set_ptes(p, pde, dst, 1, 0, flags);
1356 }
1357
1358 return 0;
Christian König4e2cb642016-10-25 15:52:28 +02001359}
1360
1361/**
Christian König92696dd2016-08-05 13:56:35 +02001362 * amdgpu_vm_update_ptes - make sure that page tables are valid
1363 *
1364 * @params: see amdgpu_pte_update_params definition
1365 * @vm: requested vm
1366 * @start: start of GPU address range
1367 * @end: end of GPU address range
1368 * @dst: destination address to map to, the next dst inside the function
1369 * @flags: mapping flags
1370 *
1371 * Update the page tables in the range @start - @end.
Harish Kasiviswanathancc28c4e2017-05-11 22:39:31 -04001372 * Returns 0 for success, -EINVAL for failure.
Christian König92696dd2016-08-05 13:56:35 +02001373 */
Harish Kasiviswanathancc28c4e2017-05-11 22:39:31 -04001374static int amdgpu_vm_update_ptes(struct amdgpu_pte_update_params *params,
Christian König92696dd2016-08-05 13:56:35 +02001375 uint64_t start, uint64_t end,
Chunming Zhou6b777602016-09-21 16:19:19 +08001376 uint64_t dst, uint64_t flags)
Christian König92696dd2016-08-05 13:56:35 +02001377{
Zhang, Jerry36b32a62017-03-29 16:08:32 +08001378 struct amdgpu_device *adev = params->adev;
1379 const uint64_t mask = AMDGPU_VM_PTE_COUNT(adev) - 1;
Christian König92696dd2016-08-05 13:56:35 +02001380
Christian König301654a2017-05-16 14:30:27 +02001381 uint64_t addr, pe_start;
Christian König92696dd2016-08-05 13:56:35 +02001382 struct amdgpu_bo *pt;
Christian König301654a2017-05-16 14:30:27 +02001383 unsigned nptes;
Harish Kasiviswanathan370f0922017-06-09 17:47:27 -04001384 bool use_cpu_update = (params->func == amdgpu_vm_cpu_set_ptes);
Alex Deuchercf2f0a32017-07-25 16:35:38 -04001385 int r;
Christian König92696dd2016-08-05 13:56:35 +02001386
1387 /* walk over the address space and update the page tables */
Alex Deuchercf2f0a32017-07-25 16:35:38 -04001388 for (addr = start; addr < end; addr += nptes,
1389 dst += nptes * AMDGPU_GPU_PAGE_SIZE) {
1390 struct amdgpu_vm_pt *entry, *parent;
1391
1392 amdgpu_vm_get_entry(params, addr, &entry, &parent);
1393 if (!entry)
1394 return -ENOENT;
Christian König4e2cb642016-10-25 15:52:28 +02001395
Christian König92696dd2016-08-05 13:56:35 +02001396 if ((addr & ~mask) == (end & ~mask))
1397 nptes = end - addr;
1398 else
Zhang, Jerry36b32a62017-03-29 16:08:32 +08001399 nptes = AMDGPU_VM_PTE_COUNT(adev) - (addr & mask);
Christian König92696dd2016-08-05 13:56:35 +02001400
Alex Deuchercf2f0a32017-07-25 16:35:38 -04001401 r = amdgpu_vm_handle_huge_pages(params, entry, parent,
1402 nptes, dst, flags);
1403 if (r)
1404 return r;
1405
1406 if (entry->huge_page)
1407 continue;
1408
1409 pt = entry->bo;
Harish Kasiviswanathan370f0922017-06-09 17:47:27 -04001410 if (use_cpu_update) {
Christian Königf5e1c742017-07-20 23:45:18 +02001411 pe_start = (unsigned long)amdgpu_bo_kptr(pt);
Christian Königdd0792c2017-06-27 14:48:15 -04001412 } else {
1413 if (pt->shadow) {
1414 pe_start = amdgpu_bo_gpu_offset(pt->shadow);
1415 pe_start += (addr & mask) * 8;
1416 params->func(params, pe_start, dst, nptes,
1417 AMDGPU_GPU_PAGE_SIZE, flags);
1418 }
Harish Kasiviswanathan370f0922017-06-09 17:47:27 -04001419 pe_start = amdgpu_bo_gpu_offset(pt);
Christian Königdd0792c2017-06-27 14:48:15 -04001420 }
Christian König92696dd2016-08-05 13:56:35 +02001421
Christian König301654a2017-05-16 14:30:27 +02001422 pe_start += (addr & mask) * 8;
Christian König301654a2017-05-16 14:30:27 +02001423 params->func(params, pe_start, dst, nptes,
1424 AMDGPU_GPU_PAGE_SIZE, flags);
Christian König92696dd2016-08-05 13:56:35 +02001425 }
1426
Harish Kasiviswanathancc28c4e2017-05-11 22:39:31 -04001427 return 0;
Christian König92696dd2016-08-05 13:56:35 +02001428}
1429
1430/*
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001431 * amdgpu_vm_frag_ptes - add fragment information to PTEs
1432 *
Christian König29efc4f2016-08-04 14:52:50 +02001433 * @params: see amdgpu_pte_update_params definition
Christian König92696dd2016-08-05 13:56:35 +02001434 * @vm: requested vm
1435 * @start: first PTE to handle
1436 * @end: last PTE to handle
1437 * @dst: addr those PTEs should point to
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001438 * @flags: hw mapping flags
Harish Kasiviswanathancc28c4e2017-05-11 22:39:31 -04001439 * Returns 0 for success, -EINVAL for failure.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001440 */
Harish Kasiviswanathancc28c4e2017-05-11 22:39:31 -04001441static int amdgpu_vm_frag_ptes(struct amdgpu_pte_update_params *params,
Christian König92696dd2016-08-05 13:56:35 +02001442 uint64_t start, uint64_t end,
Chunming Zhou6b777602016-09-21 16:19:19 +08001443 uint64_t dst, uint64_t flags)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001444{
Harish Kasiviswanathancc28c4e2017-05-11 22:39:31 -04001445 int r;
1446
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001447 /**
1448 * The MC L1 TLB supports variable sized pages, based on a fragment
1449 * field in the PTE. When this field is set to a non-zero value, page
1450 * granularity is increased from 4KB to (1 << (12 + frag)). The PTE
1451 * flags are considered valid for all PTEs within the fragment range
1452 * and corresponding mappings are assumed to be physically contiguous.
1453 *
1454 * The L1 TLB can store a single PTE for the whole fragment,
1455 * significantly increasing the space available for translation
1456 * caching. This leads to large improvements in throughput when the
1457 * TLB is under pressure.
1458 *
1459 * The L2 TLB distributes small and large fragments into two
1460 * asymmetric partitions. The large fragment cache is significantly
1461 * larger. Thus, we try to use large fragments wherever possible.
1462 * Userspace can support this by aligning virtual base address and
1463 * allocation size to the fragment size.
1464 */
1465
Christian König80366172016-10-04 13:39:43 +02001466 /* SI and newer are optimized for 64KB */
Christian König6be7adb2017-05-23 18:35:22 +02001467 unsigned pages_per_frag = AMDGPU_LOG2_PAGES_PER_FRAG(params->adev);
1468 uint64_t frag_flags = AMDGPU_PTE_FRAG(pages_per_frag);
1469 uint64_t frag_align = 1 << pages_per_frag;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001470
Christian König92696dd2016-08-05 13:56:35 +02001471 uint64_t frag_start = ALIGN(start, frag_align);
1472 uint64_t frag_end = end & ~(frag_align - 1);
Christian König31f6c1f2016-01-26 12:37:49 +01001473
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001474 /* system pages are non continuously */
Christian Königb7fc2cb2016-08-11 16:44:15 +02001475 if (params->src || !(flags & AMDGPU_PTE_VALID) ||
Harish Kasiviswanathancc28c4e2017-05-11 22:39:31 -04001476 (frag_start >= frag_end))
1477 return amdgpu_vm_update_ptes(params, start, end, dst, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001478
1479 /* handle the 4K area at the beginning */
Christian König92696dd2016-08-05 13:56:35 +02001480 if (start != frag_start) {
Harish Kasiviswanathancc28c4e2017-05-11 22:39:31 -04001481 r = amdgpu_vm_update_ptes(params, start, frag_start,
1482 dst, flags);
1483 if (r)
1484 return r;
Christian König92696dd2016-08-05 13:56:35 +02001485 dst += (frag_start - start) * AMDGPU_GPU_PAGE_SIZE;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001486 }
1487
1488 /* handle the area in the middle */
Harish Kasiviswanathancc28c4e2017-05-11 22:39:31 -04001489 r = amdgpu_vm_update_ptes(params, frag_start, frag_end, dst,
1490 flags | frag_flags);
1491 if (r)
1492 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001493
1494 /* handle the 4K area at the end */
Christian König92696dd2016-08-05 13:56:35 +02001495 if (frag_end != end) {
1496 dst += (frag_end - frag_start) * AMDGPU_GPU_PAGE_SIZE;
Harish Kasiviswanathancc28c4e2017-05-11 22:39:31 -04001497 r = amdgpu_vm_update_ptes(params, frag_end, end, dst, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001498 }
Harish Kasiviswanathancc28c4e2017-05-11 22:39:31 -04001499 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001500}
1501
1502/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001503 * amdgpu_vm_bo_update_mapping - update a mapping in the vm page table
1504 *
1505 * @adev: amdgpu_device pointer
Christian König3cabaa52016-06-06 10:17:58 +02001506 * @exclusive: fence we need to sync to
Christian Königfa3ab3c2016-03-18 21:00:35 +01001507 * @src: address where to copy page table entries from
1508 * @pages_addr: DMA addresses to use for mapping
Christian Königa14faa62016-01-25 14:27:31 +01001509 * @vm: requested vm
1510 * @start: start of mapped range
1511 * @last: last mapped entry
1512 * @flags: flags for the entries
1513 * @addr: addr to set the area to
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001514 * @fence: optional resulting fence
1515 *
Christian Königa14faa62016-01-25 14:27:31 +01001516 * Fill in the page table entries between @start and @last.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001517 * Returns 0 for success, -EINVAL for failure.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001518 */
1519static int amdgpu_vm_bo_update_mapping(struct amdgpu_device *adev,
Chris Wilsonf54d1862016-10-25 13:00:45 +01001520 struct dma_fence *exclusive,
Christian Königfa3ab3c2016-03-18 21:00:35 +01001521 uint64_t src,
1522 dma_addr_t *pages_addr,
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001523 struct amdgpu_vm *vm,
Christian Königa14faa62016-01-25 14:27:31 +01001524 uint64_t start, uint64_t last,
Chunming Zhou6b777602016-09-21 16:19:19 +08001525 uint64_t flags, uint64_t addr,
Chris Wilsonf54d1862016-10-25 13:00:45 +01001526 struct dma_fence **fence)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001527{
Christian König2d55e452016-02-08 17:37:38 +01001528 struct amdgpu_ring *ring;
Christian Königa1e08d32016-01-26 11:40:46 +01001529 void *owner = AMDGPU_FENCE_OWNER_VM;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001530 unsigned nptes, ncmds, ndw;
Christian Königd71518b2016-02-01 12:20:25 +01001531 struct amdgpu_job *job;
Christian König29efc4f2016-08-04 14:52:50 +02001532 struct amdgpu_pte_update_params params;
Chris Wilsonf54d1862016-10-25 13:00:45 +01001533 struct dma_fence *f = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001534 int r;
1535
Christian Königafef8b82016-08-12 13:29:18 +02001536 memset(&params, 0, sizeof(params));
1537 params.adev = adev;
Christian König49ac8a22016-10-13 15:09:08 +02001538 params.vm = vm;
Christian Königafef8b82016-08-12 13:29:18 +02001539 params.src = src;
1540
Christian Königa33cab72017-07-11 17:13:00 +02001541 /* sync to everything on unmapping */
1542 if (!(flags & AMDGPU_PTE_VALID))
1543 owner = AMDGPU_FENCE_OWNER_UNDEFINED;
1544
Harish Kasiviswanathanb4d42512017-05-11 19:47:22 -04001545 if (vm->use_cpu_for_update) {
1546 /* params.src is used as flag to indicate system Memory */
1547 if (pages_addr)
1548 params.src = ~0;
1549
1550 /* Wait for PT BOs to be free. PTs share the same resv. object
1551 * as the root PD BO
1552 */
Christian Königa33cab72017-07-11 17:13:00 +02001553 r = amdgpu_vm_wait_pd(adev, vm, owner);
Harish Kasiviswanathanb4d42512017-05-11 19:47:22 -04001554 if (unlikely(r))
1555 return r;
1556
1557 params.func = amdgpu_vm_cpu_set_ptes;
1558 params.pages_addr = pages_addr;
Harish Kasiviswanathanb4d42512017-05-11 19:47:22 -04001559 return amdgpu_vm_frag_ptes(&params, start, last + 1,
1560 addr, flags);
1561 }
1562
Christian König2d55e452016-02-08 17:37:38 +01001563 ring = container_of(vm->entity.sched, struct amdgpu_ring, sched);
Christian König27c5f362016-08-04 15:02:49 +02001564
Christian Königa14faa62016-01-25 14:27:31 +01001565 nptes = last - start + 1;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001566
1567 /*
1568 * reserve space for one command every (1 << BLOCK_SIZE)
1569 * entries or 2k dwords (whatever is smaller)
1570 */
Zhang, Jerry36b32a62017-03-29 16:08:32 +08001571 ncmds = (nptes >> min(adev->vm_manager.block_size, 11u)) + 1;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001572
1573 /* padding, etc. */
1574 ndw = 64;
1575
Alex Deuchercf2f0a32017-07-25 16:35:38 -04001576 /* one PDE write for each huge page */
1577 ndw += ((nptes >> adev->vm_manager.block_size) + 1) * 6;
1578
Christian Königb0456f92016-08-11 14:06:54 +02001579 if (src) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001580 /* only copy commands needed */
1581 ndw += ncmds * 7;
1582
Christian Königafef8b82016-08-12 13:29:18 +02001583 params.func = amdgpu_vm_do_copy_ptes;
1584
Christian Königb0456f92016-08-11 14:06:54 +02001585 } else if (pages_addr) {
1586 /* copy commands needed */
1587 ndw += ncmds * 7;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001588
Christian Königb0456f92016-08-11 14:06:54 +02001589 /* and also PTEs */
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001590 ndw += nptes * 2;
1591
Christian Königafef8b82016-08-12 13:29:18 +02001592 params.func = amdgpu_vm_do_copy_ptes;
1593
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001594 } else {
1595 /* set page commands needed */
1596 ndw += ncmds * 10;
1597
1598 /* two extra commands for begin/end of fragment */
1599 ndw += 2 * 10;
Christian Königafef8b82016-08-12 13:29:18 +02001600
1601 params.func = amdgpu_vm_do_set_ptes;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001602 }
1603
Christian Königd71518b2016-02-01 12:20:25 +01001604 r = amdgpu_job_alloc_with_ib(adev, ndw * 4, &job);
1605 if (r)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001606 return r;
Christian Königd71518b2016-02-01 12:20:25 +01001607
Christian König29efc4f2016-08-04 14:52:50 +02001608 params.ib = &job->ibs[0];
Chunming Zhoud5fc5e82015-07-21 16:52:10 +08001609
Christian Königb0456f92016-08-11 14:06:54 +02001610 if (!src && pages_addr) {
1611 uint64_t *pte;
1612 unsigned i;
1613
1614 /* Put the PTEs at the end of the IB. */
1615 i = ndw - nptes * 2;
1616 pte= (uint64_t *)&(job->ibs->ptr[i]);
1617 params.src = job->ibs->gpu_addr + i * 4;
1618
1619 for (i = 0; i < nptes; ++i) {
1620 pte[i] = amdgpu_vm_map_gart(pages_addr, addr + i *
1621 AMDGPU_GPU_PAGE_SIZE);
1622 pte[i] |= flags;
1623 }
Christian Königd7a4ac62016-09-25 11:54:00 +02001624 addr = 0;
Christian Königb0456f92016-08-11 14:06:54 +02001625 }
1626
Christian König3cabaa52016-06-06 10:17:58 +02001627 r = amdgpu_sync_fence(adev, &job->sync, exclusive);
1628 if (r)
1629 goto error_free;
1630
Christian König67003a12016-10-12 14:46:26 +02001631 r = amdgpu_sync_resv(adev, &job->sync, vm->root.bo->tbo.resv,
Christian Königa1e08d32016-01-26 11:40:46 +01001632 owner);
1633 if (r)
1634 goto error_free;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001635
Christian König67003a12016-10-12 14:46:26 +02001636 r = reservation_object_reserve_shared(vm->root.bo->tbo.resv);
Christian Königa1e08d32016-01-26 11:40:46 +01001637 if (r)
1638 goto error_free;
1639
Harish Kasiviswanathancc28c4e2017-05-11 22:39:31 -04001640 r = amdgpu_vm_frag_ptes(&params, start, last + 1, addr, flags);
1641 if (r)
1642 goto error_free;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001643
Christian König29efc4f2016-08-04 14:52:50 +02001644 amdgpu_ring_pad_ib(ring, params.ib);
1645 WARN_ON(params.ib->length_dw > ndw);
Christian König2bd9ccf2016-02-01 12:53:58 +01001646 r = amdgpu_job_submit(job, ring, &vm->entity,
1647 AMDGPU_FENCE_OWNER_VM, &f);
Chunming Zhou4af9f072015-08-03 12:57:31 +08001648 if (r)
1649 goto error_free;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001650
Christian König67003a12016-10-12 14:46:26 +02001651 amdgpu_bo_fence(vm->root.bo, f, true);
Christian König284710f2017-01-30 11:09:31 +01001652 dma_fence_put(*fence);
1653 *fence = f;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001654 return 0;
Chunming Zhoud5fc5e82015-07-21 16:52:10 +08001655
1656error_free:
Christian Königd71518b2016-02-01 12:20:25 +01001657 amdgpu_job_free(job);
Alex Deuchercf2f0a32017-07-25 16:35:38 -04001658 amdgpu_vm_invalidate_level(&vm->root);
Chunming Zhou4af9f072015-08-03 12:57:31 +08001659 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001660}
1661
1662/**
Christian Königa14faa62016-01-25 14:27:31 +01001663 * amdgpu_vm_bo_split_mapping - split a mapping into smaller chunks
1664 *
1665 * @adev: amdgpu_device pointer
Christian König3cabaa52016-06-06 10:17:58 +02001666 * @exclusive: fence we need to sync to
Christian König8358dce2016-03-30 10:50:25 +02001667 * @gtt_flags: flags as they are used for GTT
1668 * @pages_addr: DMA addresses to use for mapping
Christian Königa14faa62016-01-25 14:27:31 +01001669 * @vm: requested vm
1670 * @mapping: mapped range and flags to use for the update
Christian König8358dce2016-03-30 10:50:25 +02001671 * @flags: HW flags for the mapping
Christian König63e0ba42016-08-16 17:38:37 +02001672 * @nodes: array of drm_mm_nodes with the MC addresses
Christian Königa14faa62016-01-25 14:27:31 +01001673 * @fence: optional resulting fence
1674 *
1675 * Split the mapping into smaller chunks so that each update fits
1676 * into a SDMA IB.
1677 * Returns 0 for success, -EINVAL for failure.
1678 */
1679static int amdgpu_vm_bo_split_mapping(struct amdgpu_device *adev,
Chris Wilsonf54d1862016-10-25 13:00:45 +01001680 struct dma_fence *exclusive,
Chunming Zhou6b777602016-09-21 16:19:19 +08001681 uint64_t gtt_flags,
Christian König8358dce2016-03-30 10:50:25 +02001682 dma_addr_t *pages_addr,
Christian Königa14faa62016-01-25 14:27:31 +01001683 struct amdgpu_vm *vm,
1684 struct amdgpu_bo_va_mapping *mapping,
Chunming Zhou6b777602016-09-21 16:19:19 +08001685 uint64_t flags,
Christian König63e0ba42016-08-16 17:38:37 +02001686 struct drm_mm_node *nodes,
Chris Wilsonf54d1862016-10-25 13:00:45 +01001687 struct dma_fence **fence)
Christian Königa14faa62016-01-25 14:27:31 +01001688{
Christian Königa9f87f62017-03-30 14:03:59 +02001689 uint64_t pfn, src = 0, start = mapping->start;
Christian Königa14faa62016-01-25 14:27:31 +01001690 int r;
1691
1692 /* normally,bo_va->flags only contians READABLE and WIRTEABLE bit go here
1693 * but in case of something, we filter the flags in first place
1694 */
1695 if (!(mapping->flags & AMDGPU_PTE_READABLE))
1696 flags &= ~AMDGPU_PTE_READABLE;
1697 if (!(mapping->flags & AMDGPU_PTE_WRITEABLE))
1698 flags &= ~AMDGPU_PTE_WRITEABLE;
1699
Alex Xie15b31c52017-03-03 16:47:11 -05001700 flags &= ~AMDGPU_PTE_EXECUTABLE;
1701 flags |= mapping->flags & AMDGPU_PTE_EXECUTABLE;
1702
Alex Xieb0fd18b2017-03-03 16:49:39 -05001703 flags &= ~AMDGPU_PTE_MTYPE_MASK;
1704 flags |= (mapping->flags & AMDGPU_PTE_MTYPE_MASK);
1705
Zhang, Jerryd0766e92017-04-19 09:53:29 +08001706 if ((mapping->flags & AMDGPU_PTE_PRT) &&
1707 (adev->asic_type >= CHIP_VEGA10)) {
1708 flags |= AMDGPU_PTE_PRT;
1709 flags &= ~AMDGPU_PTE_VALID;
1710 }
1711
Christian Königa14faa62016-01-25 14:27:31 +01001712 trace_amdgpu_vm_bo_update(mapping);
1713
Christian König63e0ba42016-08-16 17:38:37 +02001714 pfn = mapping->offset >> PAGE_SHIFT;
1715 if (nodes) {
1716 while (pfn >= nodes->size) {
1717 pfn -= nodes->size;
1718 ++nodes;
1719 }
Christian Königfa3ab3c2016-03-18 21:00:35 +01001720 }
Christian Königa14faa62016-01-25 14:27:31 +01001721
Christian König63e0ba42016-08-16 17:38:37 +02001722 do {
1723 uint64_t max_entries;
1724 uint64_t addr, last;
Christian Königa14faa62016-01-25 14:27:31 +01001725
Christian König63e0ba42016-08-16 17:38:37 +02001726 if (nodes) {
1727 addr = nodes->start << PAGE_SHIFT;
1728 max_entries = (nodes->size - pfn) *
1729 (PAGE_SIZE / AMDGPU_GPU_PAGE_SIZE);
1730 } else {
1731 addr = 0;
1732 max_entries = S64_MAX;
1733 }
Christian Königa14faa62016-01-25 14:27:31 +01001734
Christian König63e0ba42016-08-16 17:38:37 +02001735 if (pages_addr) {
1736 if (flags == gtt_flags)
1737 src = adev->gart.table_addr +
1738 (addr >> AMDGPU_GPU_PAGE_SHIFT) * 8;
1739 else
1740 max_entries = min(max_entries, 16ull * 1024ull);
1741 addr = 0;
1742 } else if (flags & AMDGPU_PTE_VALID) {
1743 addr += adev->vm_manager.vram_base_offset;
1744 }
1745 addr += pfn << PAGE_SHIFT;
1746
Christian Königa9f87f62017-03-30 14:03:59 +02001747 last = min((uint64_t)mapping->last, start + max_entries - 1);
Christian König3cabaa52016-06-06 10:17:58 +02001748 r = amdgpu_vm_bo_update_mapping(adev, exclusive,
1749 src, pages_addr, vm,
Christian Königa14faa62016-01-25 14:27:31 +01001750 start, last, flags, addr,
1751 fence);
1752 if (r)
1753 return r;
1754
Christian König63e0ba42016-08-16 17:38:37 +02001755 pfn += last - start + 1;
1756 if (nodes && nodes->size == pfn) {
1757 pfn = 0;
1758 ++nodes;
1759 }
Christian Königa14faa62016-01-25 14:27:31 +01001760 start = last + 1;
Christian König63e0ba42016-08-16 17:38:37 +02001761
Christian Königa9f87f62017-03-30 14:03:59 +02001762 } while (unlikely(start != mapping->last + 1));
Christian Königa14faa62016-01-25 14:27:31 +01001763
1764 return 0;
1765}
1766
1767/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001768 * amdgpu_vm_bo_update - update all BO mappings in the vm page table
1769 *
1770 * @adev: amdgpu_device pointer
1771 * @bo_va: requested BO and VM object
Christian König99e124f2016-08-16 14:43:17 +02001772 * @clear: if true clear the entries
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001773 *
1774 * Fill in the page table entries for @bo_va.
1775 * Returns 0 for success, -EINVAL for failure.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001776 */
1777int amdgpu_vm_bo_update(struct amdgpu_device *adev,
1778 struct amdgpu_bo_va *bo_va,
Christian König99e124f2016-08-16 14:43:17 +02001779 bool clear)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001780{
1781 struct amdgpu_vm *vm = bo_va->vm;
1782 struct amdgpu_bo_va_mapping *mapping;
Christian König8358dce2016-03-30 10:50:25 +02001783 dma_addr_t *pages_addr = NULL;
Chunming Zhou6b777602016-09-21 16:19:19 +08001784 uint64_t gtt_flags, flags;
Christian König99e124f2016-08-16 14:43:17 +02001785 struct ttm_mem_reg *mem;
Christian König63e0ba42016-08-16 17:38:37 +02001786 struct drm_mm_node *nodes;
Chris Wilsonf54d1862016-10-25 13:00:45 +01001787 struct dma_fence *exclusive;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001788 int r;
1789
Christian Königa5f6b5b2017-01-30 11:01:38 +01001790 if (clear || !bo_va->bo) {
Christian König99e124f2016-08-16 14:43:17 +02001791 mem = NULL;
Christian König63e0ba42016-08-16 17:38:37 +02001792 nodes = NULL;
Christian König99e124f2016-08-16 14:43:17 +02001793 exclusive = NULL;
1794 } else {
Christian König8358dce2016-03-30 10:50:25 +02001795 struct ttm_dma_tt *ttm;
1796
Christian König99e124f2016-08-16 14:43:17 +02001797 mem = &bo_va->bo->tbo.mem;
Christian König63e0ba42016-08-16 17:38:37 +02001798 nodes = mem->mm_node;
1799 if (mem->mem_type == TTM_PL_TT) {
Christian König8358dce2016-03-30 10:50:25 +02001800 ttm = container_of(bo_va->bo->tbo.ttm, struct
1801 ttm_dma_tt, ttm);
1802 pages_addr = ttm->dma_address;
Christian König9ab21462015-11-30 14:19:26 +01001803 }
Christian König3cabaa52016-06-06 10:17:58 +02001804 exclusive = reservation_object_get_excl(bo_va->bo->tbo.resv);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001805 }
1806
Christian Königa5f6b5b2017-01-30 11:01:38 +01001807 if (bo_va->bo) {
1808 flags = amdgpu_ttm_tt_pte_flags(adev, bo_va->bo->tbo.ttm, mem);
1809 gtt_flags = (amdgpu_ttm_is_bound(bo_va->bo->tbo.ttm) &&
1810 adev == amdgpu_ttm_adev(bo_va->bo->tbo.bdev)) ?
1811 flags : 0;
1812 } else {
1813 flags = 0x0;
1814 gtt_flags = ~0x0;
1815 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001816
Christian König7fc11952015-07-30 11:53:42 +02001817 spin_lock(&vm->status_lock);
1818 if (!list_empty(&bo_va->vm_status))
1819 list_splice_init(&bo_va->valids, &bo_va->invalids);
1820 spin_unlock(&vm->status_lock);
1821
1822 list_for_each_entry(mapping, &bo_va->invalids, list) {
Christian König3cabaa52016-06-06 10:17:58 +02001823 r = amdgpu_vm_bo_split_mapping(adev, exclusive,
1824 gtt_flags, pages_addr, vm,
Christian König63e0ba42016-08-16 17:38:37 +02001825 mapping, flags, nodes,
Christian König8358dce2016-03-30 10:50:25 +02001826 &bo_va->last_pt_update);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001827 if (r)
1828 return r;
1829 }
1830
Christian Königd6c10f62015-09-28 12:00:23 +02001831 if (trace_amdgpu_vm_bo_mapping_enabled()) {
1832 list_for_each_entry(mapping, &bo_va->valids, list)
1833 trace_amdgpu_vm_bo_mapping(mapping);
1834
1835 list_for_each_entry(mapping, &bo_va->invalids, list)
1836 trace_amdgpu_vm_bo_mapping(mapping);
1837 }
1838
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001839 spin_lock(&vm->status_lock);
monk.liu6d1d0ef2015-08-14 13:36:41 +08001840 list_splice_init(&bo_va->invalids, &bo_va->valids);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001841 list_del_init(&bo_va->vm_status);
Christian König99e124f2016-08-16 14:43:17 +02001842 if (clear)
Christian König7fc11952015-07-30 11:53:42 +02001843 list_add(&bo_va->vm_status, &vm->cleared);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001844 spin_unlock(&vm->status_lock);
1845
Christian König68c62302017-07-11 17:23:29 +02001846 if (vm->use_cpu_for_update) {
1847 /* Flush HDP */
1848 mb();
1849 amdgpu_gart_flush_gpu_tlb(adev, 0);
1850 }
1851
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001852 return 0;
1853}
1854
1855/**
Christian König284710f2017-01-30 11:09:31 +01001856 * amdgpu_vm_update_prt_state - update the global PRT state
1857 */
1858static void amdgpu_vm_update_prt_state(struct amdgpu_device *adev)
1859{
1860 unsigned long flags;
1861 bool enable;
1862
1863 spin_lock_irqsave(&adev->vm_manager.prt_lock, flags);
Christian König451bc8e2017-02-14 16:02:52 +01001864 enable = !!atomic_read(&adev->vm_manager.num_prt_users);
Christian König284710f2017-01-30 11:09:31 +01001865 adev->gart.gart_funcs->set_prt(adev, enable);
1866 spin_unlock_irqrestore(&adev->vm_manager.prt_lock, flags);
1867}
1868
1869/**
Christian König4388fc22017-03-13 10:13:36 +01001870 * amdgpu_vm_prt_get - add a PRT user
Christian König451bc8e2017-02-14 16:02:52 +01001871 */
1872static void amdgpu_vm_prt_get(struct amdgpu_device *adev)
1873{
Christian König4388fc22017-03-13 10:13:36 +01001874 if (!adev->gart.gart_funcs->set_prt)
1875 return;
1876
Christian König451bc8e2017-02-14 16:02:52 +01001877 if (atomic_inc_return(&adev->vm_manager.num_prt_users) == 1)
1878 amdgpu_vm_update_prt_state(adev);
1879}
1880
1881/**
Christian König0b15f2f2017-02-14 15:47:03 +01001882 * amdgpu_vm_prt_put - drop a PRT user
1883 */
1884static void amdgpu_vm_prt_put(struct amdgpu_device *adev)
1885{
Christian König451bc8e2017-02-14 16:02:52 +01001886 if (atomic_dec_return(&adev->vm_manager.num_prt_users) == 0)
Christian König0b15f2f2017-02-14 15:47:03 +01001887 amdgpu_vm_update_prt_state(adev);
1888}
1889
1890/**
Christian König451bc8e2017-02-14 16:02:52 +01001891 * amdgpu_vm_prt_cb - callback for updating the PRT status
Christian König284710f2017-01-30 11:09:31 +01001892 */
1893static void amdgpu_vm_prt_cb(struct dma_fence *fence, struct dma_fence_cb *_cb)
1894{
1895 struct amdgpu_prt_cb *cb = container_of(_cb, struct amdgpu_prt_cb, cb);
1896
Christian König0b15f2f2017-02-14 15:47:03 +01001897 amdgpu_vm_prt_put(cb->adev);
Christian König284710f2017-01-30 11:09:31 +01001898 kfree(cb);
1899}
1900
1901/**
Christian König451bc8e2017-02-14 16:02:52 +01001902 * amdgpu_vm_add_prt_cb - add callback for updating the PRT status
1903 */
1904static void amdgpu_vm_add_prt_cb(struct amdgpu_device *adev,
1905 struct dma_fence *fence)
1906{
Christian König4388fc22017-03-13 10:13:36 +01001907 struct amdgpu_prt_cb *cb;
Christian König451bc8e2017-02-14 16:02:52 +01001908
Christian König4388fc22017-03-13 10:13:36 +01001909 if (!adev->gart.gart_funcs->set_prt)
1910 return;
1911
1912 cb = kmalloc(sizeof(struct amdgpu_prt_cb), GFP_KERNEL);
Christian König451bc8e2017-02-14 16:02:52 +01001913 if (!cb) {
1914 /* Last resort when we are OOM */
1915 if (fence)
1916 dma_fence_wait(fence, false);
1917
Dan Carpenter486a68f2017-04-03 21:41:39 +03001918 amdgpu_vm_prt_put(adev);
Christian König451bc8e2017-02-14 16:02:52 +01001919 } else {
1920 cb->adev = adev;
1921 if (!fence || dma_fence_add_callback(fence, &cb->cb,
1922 amdgpu_vm_prt_cb))
1923 amdgpu_vm_prt_cb(fence, &cb->cb);
1924 }
1925}
1926
1927/**
Christian König284710f2017-01-30 11:09:31 +01001928 * amdgpu_vm_free_mapping - free a mapping
1929 *
1930 * @adev: amdgpu_device pointer
1931 * @vm: requested vm
1932 * @mapping: mapping to be freed
1933 * @fence: fence of the unmap operation
1934 *
1935 * Free a mapping and make sure we decrease the PRT usage count if applicable.
1936 */
1937static void amdgpu_vm_free_mapping(struct amdgpu_device *adev,
1938 struct amdgpu_vm *vm,
1939 struct amdgpu_bo_va_mapping *mapping,
1940 struct dma_fence *fence)
1941{
Christian König451bc8e2017-02-14 16:02:52 +01001942 if (mapping->flags & AMDGPU_PTE_PRT)
1943 amdgpu_vm_add_prt_cb(adev, fence);
Christian König284710f2017-01-30 11:09:31 +01001944 kfree(mapping);
1945}
1946
1947/**
Christian König451bc8e2017-02-14 16:02:52 +01001948 * amdgpu_vm_prt_fini - finish all prt mappings
1949 *
1950 * @adev: amdgpu_device pointer
1951 * @vm: requested vm
1952 *
1953 * Register a cleanup callback to disable PRT support after VM dies.
1954 */
1955static void amdgpu_vm_prt_fini(struct amdgpu_device *adev, struct amdgpu_vm *vm)
1956{
Christian König67003a12016-10-12 14:46:26 +02001957 struct reservation_object *resv = vm->root.bo->tbo.resv;
Christian König451bc8e2017-02-14 16:02:52 +01001958 struct dma_fence *excl, **shared;
1959 unsigned i, shared_count;
1960 int r;
1961
1962 r = reservation_object_get_fences_rcu(resv, &excl,
1963 &shared_count, &shared);
1964 if (r) {
1965 /* Not enough memory to grab the fence list, as last resort
1966 * block for all the fences to complete.
1967 */
1968 reservation_object_wait_timeout_rcu(resv, true, false,
1969 MAX_SCHEDULE_TIMEOUT);
1970 return;
1971 }
1972
1973 /* Add a callback for each fence in the reservation object */
1974 amdgpu_vm_prt_get(adev);
1975 amdgpu_vm_add_prt_cb(adev, excl);
1976
1977 for (i = 0; i < shared_count; ++i) {
1978 amdgpu_vm_prt_get(adev);
1979 amdgpu_vm_add_prt_cb(adev, shared[i]);
1980 }
1981
1982 kfree(shared);
1983}
1984
1985/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001986 * amdgpu_vm_clear_freed - clear freed BOs in the PT
1987 *
1988 * @adev: amdgpu_device pointer
1989 * @vm: requested vm
Nicolai Hähnlef3467812017-03-23 19:36:31 +01001990 * @fence: optional resulting fence (unchanged if no work needed to be done
1991 * or if an error occurred)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001992 *
1993 * Make sure all freed BOs are cleared in the PT.
1994 * Returns 0 for success.
1995 *
1996 * PTs have to be reserved and mutex must be locked!
1997 */
1998int amdgpu_vm_clear_freed(struct amdgpu_device *adev,
Nicolai Hähnlef3467812017-03-23 19:36:31 +01001999 struct amdgpu_vm *vm,
2000 struct dma_fence **fence)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002001{
2002 struct amdgpu_bo_va_mapping *mapping;
Nicolai Hähnlef3467812017-03-23 19:36:31 +01002003 struct dma_fence *f = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002004 int r;
Yong Zhao51ac7ee2017-07-27 12:48:22 -04002005 uint64_t init_pte_value = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002006
2007 while (!list_empty(&vm->freed)) {
2008 mapping = list_first_entry(&vm->freed,
2009 struct amdgpu_bo_va_mapping, list);
2010 list_del(&mapping->list);
Christian Könige17841b2016-03-08 17:52:01 +01002011
Yong Zhao51ac7ee2017-07-27 12:48:22 -04002012 if (vm->pte_support_ats)
2013 init_pte_value = AMDGPU_PTE_SYSTEM;
2014
Christian Königfc6aa332017-04-19 14:41:19 +02002015 r = amdgpu_vm_bo_update_mapping(adev, NULL, 0, NULL, vm,
2016 mapping->start, mapping->last,
Yong Zhao51ac7ee2017-07-27 12:48:22 -04002017 init_pte_value, 0, &f);
Nicolai Hähnlef3467812017-03-23 19:36:31 +01002018 amdgpu_vm_free_mapping(adev, vm, mapping, f);
Christian König284710f2017-01-30 11:09:31 +01002019 if (r) {
Nicolai Hähnlef3467812017-03-23 19:36:31 +01002020 dma_fence_put(f);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002021 return r;
Christian König284710f2017-01-30 11:09:31 +01002022 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002023 }
Nicolai Hähnlef3467812017-03-23 19:36:31 +01002024
2025 if (fence && f) {
2026 dma_fence_put(*fence);
2027 *fence = f;
2028 } else {
2029 dma_fence_put(f);
2030 }
2031
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002032 return 0;
2033
2034}
2035
2036/**
2037 * amdgpu_vm_clear_invalids - clear invalidated BOs in the PT
2038 *
2039 * @adev: amdgpu_device pointer
2040 * @vm: requested vm
2041 *
2042 * Make sure all invalidated BOs are cleared in the PT.
2043 * Returns 0 for success.
2044 *
2045 * PTs have to be reserved and mutex must be locked!
2046 */
2047int amdgpu_vm_clear_invalids(struct amdgpu_device *adev,
monk.liucfe2c972015-05-26 15:01:54 +08002048 struct amdgpu_vm *vm, struct amdgpu_sync *sync)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002049{
monk.liucfe2c972015-05-26 15:01:54 +08002050 struct amdgpu_bo_va *bo_va = NULL;
Christian König91e1a522015-07-06 22:06:40 +02002051 int r = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002052
2053 spin_lock(&vm->status_lock);
2054 while (!list_empty(&vm->invalidated)) {
2055 bo_va = list_first_entry(&vm->invalidated,
2056 struct amdgpu_bo_va, vm_status);
2057 spin_unlock(&vm->status_lock);
Christian König32b41ac2016-03-08 18:03:27 +01002058
Christian König99e124f2016-08-16 14:43:17 +02002059 r = amdgpu_vm_bo_update(adev, bo_va, true);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002060 if (r)
2061 return r;
2062
2063 spin_lock(&vm->status_lock);
2064 }
2065 spin_unlock(&vm->status_lock);
2066
monk.liucfe2c972015-05-26 15:01:54 +08002067 if (bo_va)
Chunming Zhoubb1e38a42015-08-03 18:19:38 +08002068 r = amdgpu_sync_fence(adev, sync, bo_va->last_pt_update);
Christian König91e1a522015-07-06 22:06:40 +02002069
2070 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002071}
2072
2073/**
2074 * amdgpu_vm_bo_add - add a bo to a specific vm
2075 *
2076 * @adev: amdgpu_device pointer
2077 * @vm: requested vm
2078 * @bo: amdgpu buffer object
2079 *
Christian König8843dbb2016-01-26 12:17:11 +01002080 * Add @bo into the requested vm.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002081 * Add @bo to the list of bos associated with the vm
2082 * Returns newly added bo_va or NULL for failure
2083 *
2084 * Object has to be reserved!
2085 */
2086struct amdgpu_bo_va *amdgpu_vm_bo_add(struct amdgpu_device *adev,
2087 struct amdgpu_vm *vm,
2088 struct amdgpu_bo *bo)
2089{
2090 struct amdgpu_bo_va *bo_va;
2091
2092 bo_va = kzalloc(sizeof(struct amdgpu_bo_va), GFP_KERNEL);
2093 if (bo_va == NULL) {
2094 return NULL;
2095 }
2096 bo_va->vm = vm;
2097 bo_va->bo = bo;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002098 bo_va->ref_count = 1;
2099 INIT_LIST_HEAD(&bo_va->bo_list);
Christian König7fc11952015-07-30 11:53:42 +02002100 INIT_LIST_HEAD(&bo_va->valids);
2101 INIT_LIST_HEAD(&bo_va->invalids);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002102 INIT_LIST_HEAD(&bo_va->vm_status);
Christian König32b41ac2016-03-08 18:03:27 +01002103
Christian Königa5f6b5b2017-01-30 11:01:38 +01002104 if (bo)
2105 list_add_tail(&bo_va->bo_list, &bo->va);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002106
2107 return bo_va;
2108}
2109
2110/**
2111 * amdgpu_vm_bo_map - map bo inside a vm
2112 *
2113 * @adev: amdgpu_device pointer
2114 * @bo_va: bo_va to store the address
2115 * @saddr: where to map the BO
2116 * @offset: requested offset in the BO
2117 * @flags: attributes of pages (read/write/valid/etc.)
2118 *
2119 * Add a mapping of the BO at the specefied addr into the VM.
2120 * Returns 0 for success, error for failure.
2121 *
Chunming Zhou49b02b12015-11-13 14:18:38 +08002122 * Object has to be reserved and unreserved outside!
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002123 */
2124int amdgpu_vm_bo_map(struct amdgpu_device *adev,
2125 struct amdgpu_bo_va *bo_va,
2126 uint64_t saddr, uint64_t offset,
Christian König268c3002017-01-18 14:49:43 +01002127 uint64_t size, uint64_t flags)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002128{
Christian Königa9f87f62017-03-30 14:03:59 +02002129 struct amdgpu_bo_va_mapping *mapping, *tmp;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002130 struct amdgpu_vm *vm = bo_va->vm;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002131 uint64_t eaddr;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002132
Christian König0be52de2015-05-18 14:37:27 +02002133 /* validate the parameters */
2134 if (saddr & AMDGPU_GPU_PAGE_MASK || offset & AMDGPU_GPU_PAGE_MASK ||
Chunming Zhou49b02b12015-11-13 14:18:38 +08002135 size == 0 || size & AMDGPU_GPU_PAGE_MASK)
Christian König0be52de2015-05-18 14:37:27 +02002136 return -EINVAL;
Christian König0be52de2015-05-18 14:37:27 +02002137
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002138 /* make sure object fit at this offset */
Felix Kuehling005ae952015-11-23 17:43:48 -05002139 eaddr = saddr + size - 1;
Christian Königa5f6b5b2017-01-30 11:01:38 +01002140 if (saddr >= eaddr ||
2141 (bo_va->bo && offset + size > amdgpu_bo_size(bo_va->bo)))
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002142 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002143
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002144 saddr /= AMDGPU_GPU_PAGE_SIZE;
2145 eaddr /= AMDGPU_GPU_PAGE_SIZE;
2146
Christian Königa9f87f62017-03-30 14:03:59 +02002147 tmp = amdgpu_vm_it_iter_first(&vm->va, saddr, eaddr);
2148 if (tmp) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002149 /* bo and tmp overlap, invalid addr */
2150 dev_err(adev->dev, "bo %p va 0x%010Lx-0x%010Lx conflict with "
Christian Königa9f87f62017-03-30 14:03:59 +02002151 "0x%010Lx-0x%010Lx\n", bo_va->bo, saddr, eaddr,
2152 tmp->start, tmp->last + 1);
Christian König663e4572017-03-13 10:13:37 +01002153 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002154 }
2155
2156 mapping = kmalloc(sizeof(*mapping), GFP_KERNEL);
Christian König663e4572017-03-13 10:13:37 +01002157 if (!mapping)
2158 return -ENOMEM;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002159
2160 INIT_LIST_HEAD(&mapping->list);
Christian Königa9f87f62017-03-30 14:03:59 +02002161 mapping->start = saddr;
2162 mapping->last = eaddr;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002163 mapping->offset = offset;
2164 mapping->flags = flags;
2165
Christian König7fc11952015-07-30 11:53:42 +02002166 list_add(&mapping->list, &bo_va->invalids);
Christian Königa9f87f62017-03-30 14:03:59 +02002167 amdgpu_vm_it_insert(mapping, &vm->va);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002168
Christian König4388fc22017-03-13 10:13:36 +01002169 if (flags & AMDGPU_PTE_PRT)
2170 amdgpu_vm_prt_get(adev);
2171
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002172 return 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002173}
2174
2175/**
Christian König80f95c52017-03-13 10:13:39 +01002176 * amdgpu_vm_bo_replace_map - map bo inside a vm, replacing existing mappings
2177 *
2178 * @adev: amdgpu_device pointer
2179 * @bo_va: bo_va to store the address
2180 * @saddr: where to map the BO
2181 * @offset: requested offset in the BO
2182 * @flags: attributes of pages (read/write/valid/etc.)
2183 *
2184 * Add a mapping of the BO at the specefied addr into the VM. Replace existing
2185 * mappings as we do so.
2186 * Returns 0 for success, error for failure.
2187 *
2188 * Object has to be reserved and unreserved outside!
2189 */
2190int amdgpu_vm_bo_replace_map(struct amdgpu_device *adev,
2191 struct amdgpu_bo_va *bo_va,
2192 uint64_t saddr, uint64_t offset,
2193 uint64_t size, uint64_t flags)
2194{
2195 struct amdgpu_bo_va_mapping *mapping;
2196 struct amdgpu_vm *vm = bo_va->vm;
2197 uint64_t eaddr;
2198 int r;
2199
2200 /* validate the parameters */
2201 if (saddr & AMDGPU_GPU_PAGE_MASK || offset & AMDGPU_GPU_PAGE_MASK ||
2202 size == 0 || size & AMDGPU_GPU_PAGE_MASK)
2203 return -EINVAL;
2204
2205 /* make sure object fit at this offset */
2206 eaddr = saddr + size - 1;
2207 if (saddr >= eaddr ||
2208 (bo_va->bo && offset + size > amdgpu_bo_size(bo_va->bo)))
2209 return -EINVAL;
2210
2211 /* Allocate all the needed memory */
2212 mapping = kmalloc(sizeof(*mapping), GFP_KERNEL);
2213 if (!mapping)
2214 return -ENOMEM;
2215
2216 r = amdgpu_vm_bo_clear_mappings(adev, bo_va->vm, saddr, size);
2217 if (r) {
2218 kfree(mapping);
2219 return r;
2220 }
2221
2222 saddr /= AMDGPU_GPU_PAGE_SIZE;
2223 eaddr /= AMDGPU_GPU_PAGE_SIZE;
2224
Christian Königa9f87f62017-03-30 14:03:59 +02002225 mapping->start = saddr;
2226 mapping->last = eaddr;
Christian König80f95c52017-03-13 10:13:39 +01002227 mapping->offset = offset;
2228 mapping->flags = flags;
2229
2230 list_add(&mapping->list, &bo_va->invalids);
Christian Königa9f87f62017-03-30 14:03:59 +02002231 amdgpu_vm_it_insert(mapping, &vm->va);
Christian König80f95c52017-03-13 10:13:39 +01002232
2233 if (flags & AMDGPU_PTE_PRT)
2234 amdgpu_vm_prt_get(adev);
2235
2236 return 0;
2237}
2238
2239/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002240 * amdgpu_vm_bo_unmap - remove bo mapping from vm
2241 *
2242 * @adev: amdgpu_device pointer
2243 * @bo_va: bo_va to remove the address from
2244 * @saddr: where to the BO is mapped
2245 *
2246 * Remove a mapping of the BO at the specefied addr from the VM.
2247 * Returns 0 for success, error for failure.
2248 *
Chunming Zhou49b02b12015-11-13 14:18:38 +08002249 * Object has to be reserved and unreserved outside!
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002250 */
2251int amdgpu_vm_bo_unmap(struct amdgpu_device *adev,
2252 struct amdgpu_bo_va *bo_va,
2253 uint64_t saddr)
2254{
2255 struct amdgpu_bo_va_mapping *mapping;
2256 struct amdgpu_vm *vm = bo_va->vm;
Christian König7fc11952015-07-30 11:53:42 +02002257 bool valid = true;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002258
Christian König6c7fc502015-06-05 20:56:17 +02002259 saddr /= AMDGPU_GPU_PAGE_SIZE;
Christian König32b41ac2016-03-08 18:03:27 +01002260
Christian König7fc11952015-07-30 11:53:42 +02002261 list_for_each_entry(mapping, &bo_va->valids, list) {
Christian Königa9f87f62017-03-30 14:03:59 +02002262 if (mapping->start == saddr)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002263 break;
2264 }
2265
Christian König7fc11952015-07-30 11:53:42 +02002266 if (&mapping->list == &bo_va->valids) {
2267 valid = false;
2268
2269 list_for_each_entry(mapping, &bo_va->invalids, list) {
Christian Königa9f87f62017-03-30 14:03:59 +02002270 if (mapping->start == saddr)
Christian König7fc11952015-07-30 11:53:42 +02002271 break;
2272 }
2273
Christian König32b41ac2016-03-08 18:03:27 +01002274 if (&mapping->list == &bo_va->invalids)
Christian König7fc11952015-07-30 11:53:42 +02002275 return -ENOENT;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002276 }
Christian König32b41ac2016-03-08 18:03:27 +01002277
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002278 list_del(&mapping->list);
Christian Königa9f87f62017-03-30 14:03:59 +02002279 amdgpu_vm_it_remove(mapping, &vm->va);
Christian König93e3e432015-06-09 16:58:33 +02002280 trace_amdgpu_vm_bo_unmap(bo_va, mapping);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002281
Christian Könige17841b2016-03-08 17:52:01 +01002282 if (valid)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002283 list_add(&mapping->list, &vm->freed);
Christian Könige17841b2016-03-08 17:52:01 +01002284 else
Christian König284710f2017-01-30 11:09:31 +01002285 amdgpu_vm_free_mapping(adev, vm, mapping,
2286 bo_va->last_pt_update);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002287
2288 return 0;
2289}
2290
2291/**
Christian Königdc54d3d2017-03-13 10:13:38 +01002292 * amdgpu_vm_bo_clear_mappings - remove all mappings in a specific range
2293 *
2294 * @adev: amdgpu_device pointer
2295 * @vm: VM structure to use
2296 * @saddr: start of the range
2297 * @size: size of the range
2298 *
2299 * Remove all mappings in a range, split them as appropriate.
2300 * Returns 0 for success, error for failure.
2301 */
2302int amdgpu_vm_bo_clear_mappings(struct amdgpu_device *adev,
2303 struct amdgpu_vm *vm,
2304 uint64_t saddr, uint64_t size)
2305{
2306 struct amdgpu_bo_va_mapping *before, *after, *tmp, *next;
Christian Königdc54d3d2017-03-13 10:13:38 +01002307 LIST_HEAD(removed);
2308 uint64_t eaddr;
2309
2310 eaddr = saddr + size - 1;
2311 saddr /= AMDGPU_GPU_PAGE_SIZE;
2312 eaddr /= AMDGPU_GPU_PAGE_SIZE;
2313
2314 /* Allocate all the needed memory */
2315 before = kzalloc(sizeof(*before), GFP_KERNEL);
2316 if (!before)
2317 return -ENOMEM;
Junwei Zhang27f6d612017-03-16 16:09:24 +08002318 INIT_LIST_HEAD(&before->list);
Christian Königdc54d3d2017-03-13 10:13:38 +01002319
2320 after = kzalloc(sizeof(*after), GFP_KERNEL);
2321 if (!after) {
2322 kfree(before);
2323 return -ENOMEM;
2324 }
Junwei Zhang27f6d612017-03-16 16:09:24 +08002325 INIT_LIST_HEAD(&after->list);
Christian Königdc54d3d2017-03-13 10:13:38 +01002326
2327 /* Now gather all removed mappings */
Christian Königa9f87f62017-03-30 14:03:59 +02002328 tmp = amdgpu_vm_it_iter_first(&vm->va, saddr, eaddr);
2329 while (tmp) {
Christian Königdc54d3d2017-03-13 10:13:38 +01002330 /* Remember mapping split at the start */
Christian Königa9f87f62017-03-30 14:03:59 +02002331 if (tmp->start < saddr) {
2332 before->start = tmp->start;
2333 before->last = saddr - 1;
Christian Königdc54d3d2017-03-13 10:13:38 +01002334 before->offset = tmp->offset;
2335 before->flags = tmp->flags;
2336 list_add(&before->list, &tmp->list);
2337 }
2338
2339 /* Remember mapping split at the end */
Christian Königa9f87f62017-03-30 14:03:59 +02002340 if (tmp->last > eaddr) {
2341 after->start = eaddr + 1;
2342 after->last = tmp->last;
Christian Königdc54d3d2017-03-13 10:13:38 +01002343 after->offset = tmp->offset;
Christian Königa9f87f62017-03-30 14:03:59 +02002344 after->offset += after->start - tmp->start;
Christian Königdc54d3d2017-03-13 10:13:38 +01002345 after->flags = tmp->flags;
2346 list_add(&after->list, &tmp->list);
2347 }
2348
2349 list_del(&tmp->list);
2350 list_add(&tmp->list, &removed);
Christian Königa9f87f62017-03-30 14:03:59 +02002351
2352 tmp = amdgpu_vm_it_iter_next(tmp, saddr, eaddr);
Christian Königdc54d3d2017-03-13 10:13:38 +01002353 }
2354
2355 /* And free them up */
2356 list_for_each_entry_safe(tmp, next, &removed, list) {
Christian Königa9f87f62017-03-30 14:03:59 +02002357 amdgpu_vm_it_remove(tmp, &vm->va);
Christian Königdc54d3d2017-03-13 10:13:38 +01002358 list_del(&tmp->list);
2359
Christian Königa9f87f62017-03-30 14:03:59 +02002360 if (tmp->start < saddr)
2361 tmp->start = saddr;
2362 if (tmp->last > eaddr)
2363 tmp->last = eaddr;
Christian Königdc54d3d2017-03-13 10:13:38 +01002364
2365 list_add(&tmp->list, &vm->freed);
2366 trace_amdgpu_vm_bo_unmap(NULL, tmp);
2367 }
2368
Junwei Zhang27f6d612017-03-16 16:09:24 +08002369 /* Insert partial mapping before the range */
2370 if (!list_empty(&before->list)) {
Christian Königa9f87f62017-03-30 14:03:59 +02002371 amdgpu_vm_it_insert(before, &vm->va);
Christian Königdc54d3d2017-03-13 10:13:38 +01002372 if (before->flags & AMDGPU_PTE_PRT)
2373 amdgpu_vm_prt_get(adev);
2374 } else {
2375 kfree(before);
2376 }
2377
2378 /* Insert partial mapping after the range */
Junwei Zhang27f6d612017-03-16 16:09:24 +08002379 if (!list_empty(&after->list)) {
Christian Königa9f87f62017-03-30 14:03:59 +02002380 amdgpu_vm_it_insert(after, &vm->va);
Christian Königdc54d3d2017-03-13 10:13:38 +01002381 if (after->flags & AMDGPU_PTE_PRT)
2382 amdgpu_vm_prt_get(adev);
2383 } else {
2384 kfree(after);
2385 }
2386
2387 return 0;
2388}
2389
2390/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002391 * amdgpu_vm_bo_rmv - remove a bo to a specific vm
2392 *
2393 * @adev: amdgpu_device pointer
2394 * @bo_va: requested bo_va
2395 *
Christian König8843dbb2016-01-26 12:17:11 +01002396 * Remove @bo_va->bo from the requested vm.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002397 *
2398 * Object have to be reserved!
2399 */
2400void amdgpu_vm_bo_rmv(struct amdgpu_device *adev,
2401 struct amdgpu_bo_va *bo_va)
2402{
2403 struct amdgpu_bo_va_mapping *mapping, *next;
2404 struct amdgpu_vm *vm = bo_va->vm;
2405
2406 list_del(&bo_va->bo_list);
2407
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002408 spin_lock(&vm->status_lock);
2409 list_del(&bo_va->vm_status);
2410 spin_unlock(&vm->status_lock);
2411
Christian König7fc11952015-07-30 11:53:42 +02002412 list_for_each_entry_safe(mapping, next, &bo_va->valids, list) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002413 list_del(&mapping->list);
Christian Königa9f87f62017-03-30 14:03:59 +02002414 amdgpu_vm_it_remove(mapping, &vm->va);
Christian König93e3e432015-06-09 16:58:33 +02002415 trace_amdgpu_vm_bo_unmap(bo_va, mapping);
Christian König7fc11952015-07-30 11:53:42 +02002416 list_add(&mapping->list, &vm->freed);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002417 }
Christian König7fc11952015-07-30 11:53:42 +02002418 list_for_each_entry_safe(mapping, next, &bo_va->invalids, list) {
2419 list_del(&mapping->list);
Christian Königa9f87f62017-03-30 14:03:59 +02002420 amdgpu_vm_it_remove(mapping, &vm->va);
Christian König284710f2017-01-30 11:09:31 +01002421 amdgpu_vm_free_mapping(adev, vm, mapping,
2422 bo_va->last_pt_update);
Christian König7fc11952015-07-30 11:53:42 +02002423 }
Christian König32b41ac2016-03-08 18:03:27 +01002424
Chris Wilsonf54d1862016-10-25 13:00:45 +01002425 dma_fence_put(bo_va->last_pt_update);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002426 kfree(bo_va);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002427}
2428
2429/**
2430 * amdgpu_vm_bo_invalidate - mark the bo as invalid
2431 *
2432 * @adev: amdgpu_device pointer
2433 * @vm: requested vm
2434 * @bo: amdgpu buffer object
2435 *
Christian König8843dbb2016-01-26 12:17:11 +01002436 * Mark @bo as invalid.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002437 */
2438void amdgpu_vm_bo_invalidate(struct amdgpu_device *adev,
2439 struct amdgpu_bo *bo)
2440{
2441 struct amdgpu_bo_va *bo_va;
2442
2443 list_for_each_entry(bo_va, &bo->va, bo_list) {
Christian König7fc11952015-07-30 11:53:42 +02002444 spin_lock(&bo_va->vm->status_lock);
2445 if (list_empty(&bo_va->vm_status))
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002446 list_add(&bo_va->vm_status, &bo_va->vm->invalidated);
Christian König7fc11952015-07-30 11:53:42 +02002447 spin_unlock(&bo_va->vm->status_lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002448 }
2449}
2450
Junwei Zhangbab4fee2017-04-05 13:54:56 +08002451static uint32_t amdgpu_vm_get_block_size(uint64_t vm_size)
2452{
2453 /* Total bits covered by PD + PTs */
2454 unsigned bits = ilog2(vm_size) + 18;
2455
2456 /* Make sure the PD is 4K in size up to 8GB address space.
2457 Above that split equal between PD and PTs */
2458 if (vm_size <= 8)
2459 return (bits - 9);
2460 else
2461 return ((bits + 3) / 2);
2462}
2463
2464/**
2465 * amdgpu_vm_adjust_size - adjust vm size and block size
2466 *
2467 * @adev: amdgpu_device pointer
2468 * @vm_size: the default vm size if it's set auto
2469 */
2470void amdgpu_vm_adjust_size(struct amdgpu_device *adev, uint64_t vm_size)
2471{
2472 /* adjust vm size firstly */
2473 if (amdgpu_vm_size == -1)
2474 adev->vm_manager.vm_size = vm_size;
2475 else
2476 adev->vm_manager.vm_size = amdgpu_vm_size;
2477
2478 /* block size depends on vm size */
2479 if (amdgpu_vm_block_size == -1)
2480 adev->vm_manager.block_size =
2481 amdgpu_vm_get_block_size(adev->vm_manager.vm_size);
2482 else
2483 adev->vm_manager.block_size = amdgpu_vm_block_size;
2484
2485 DRM_INFO("vm size is %llu GB, block size is %u-bit\n",
2486 adev->vm_manager.vm_size, adev->vm_manager.block_size);
2487}
2488
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002489/**
2490 * amdgpu_vm_init - initialize a vm instance
2491 *
2492 * @adev: amdgpu_device pointer
2493 * @vm: requested vm
Harish Kasiviswanathan9a4b7d42017-06-09 11:26:57 -04002494 * @vm_context: Indicates if it GFX or Compute context
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002495 *
Christian König8843dbb2016-01-26 12:17:11 +01002496 * Init @vm fields.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002497 */
Harish Kasiviswanathan9a4b7d42017-06-09 11:26:57 -04002498int amdgpu_vm_init(struct amdgpu_device *adev, struct amdgpu_vm *vm,
2499 int vm_context)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002500{
2501 const unsigned align = min(AMDGPU_VM_PTB_ALIGN_SIZE,
Zhang, Jerry36b32a62017-03-29 16:08:32 +08002502 AMDGPU_VM_PTE_COUNT(adev) * 8);
Christian König2d55e452016-02-08 17:37:38 +01002503 unsigned ring_instance;
2504 struct amdgpu_ring *ring;
Christian König2bd9ccf2016-02-01 12:53:58 +01002505 struct amd_sched_rq *rq;
Chunming Zhou36bbf3b2017-04-20 16:17:34 +08002506 int r, i;
Harish Kasiviswanathan3c824172017-05-11 15:50:08 -04002507 u64 flags;
Yong Zhao51ac7ee2017-07-27 12:48:22 -04002508 uint64_t init_pde_value = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002509
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002510 vm->va = RB_ROOT;
Chunming Zhou031e2982016-04-25 10:19:13 +08002511 vm->client_id = atomic64_inc_return(&adev->vm_manager.client_counter);
Chunming Zhou36bbf3b2017-04-20 16:17:34 +08002512 for (i = 0; i < AMDGPU_MAX_VMHUBS; i++)
2513 vm->reserved_vmid[i] = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002514 spin_lock_init(&vm->status_lock);
2515 INIT_LIST_HEAD(&vm->invalidated);
Christian König7fc11952015-07-30 11:53:42 +02002516 INIT_LIST_HEAD(&vm->cleared);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002517 INIT_LIST_HEAD(&vm->freed);
Christian König20250212016-03-08 17:58:35 +01002518
Christian König2bd9ccf2016-02-01 12:53:58 +01002519 /* create scheduler entity for page table updates */
Christian König2d55e452016-02-08 17:37:38 +01002520
2521 ring_instance = atomic_inc_return(&adev->vm_manager.vm_pte_next_ring);
2522 ring_instance %= adev->vm_manager.vm_pte_num_rings;
2523 ring = adev->vm_manager.vm_pte_rings[ring_instance];
Christian König2bd9ccf2016-02-01 12:53:58 +01002524 rq = &ring->sched.sched_rq[AMD_SCHED_PRIORITY_KERNEL];
2525 r = amd_sched_entity_init(&ring->sched, &vm->entity,
2526 rq, amdgpu_sched_jobs);
2527 if (r)
Christian Königf566ceb2016-10-27 20:04:38 +02002528 return r;
Christian König2bd9ccf2016-02-01 12:53:58 +01002529
Yong Zhao51ac7ee2017-07-27 12:48:22 -04002530 vm->pte_support_ats = false;
2531
2532 if (vm_context == AMDGPU_VM_CONTEXT_COMPUTE) {
Harish Kasiviswanathan9a4b7d42017-06-09 11:26:57 -04002533 vm->use_cpu_for_update = !!(adev->vm_manager.vm_update_mode &
2534 AMDGPU_VM_USE_CPU_FOR_COMPUTE);
Yong Zhao51ac7ee2017-07-27 12:48:22 -04002535
2536 if (adev->asic_type == CHIP_RAVEN) {
2537 vm->pte_support_ats = true;
2538 init_pde_value = AMDGPU_PTE_SYSTEM | AMDGPU_PDE_PTE;
2539 }
2540 } else
Harish Kasiviswanathan9a4b7d42017-06-09 11:26:57 -04002541 vm->use_cpu_for_update = !!(adev->vm_manager.vm_update_mode &
2542 AMDGPU_VM_USE_CPU_FOR_GFX);
2543 DRM_DEBUG_DRIVER("VM update mode is %s\n",
2544 vm->use_cpu_for_update ? "CPU" : "SDMA");
2545 WARN_ONCE((vm->use_cpu_for_update & !amdgpu_vm_is_large_bar(adev)),
2546 "CPU update of VM recommended only for large BAR system\n");
Christian Königa24960f2016-10-12 13:20:52 +02002547 vm->last_dir_update = NULL;
Bas Nieuwenhuizen05906de2015-08-14 20:08:40 +02002548
Harish Kasiviswanathan3c824172017-05-11 15:50:08 -04002549 flags = AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS |
2550 AMDGPU_GEM_CREATE_VRAM_CLEARED;
2551 if (vm->use_cpu_for_update)
2552 flags |= AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED;
2553 else
2554 flags |= (AMDGPU_GEM_CREATE_NO_CPU_ACCESS |
2555 AMDGPU_GEM_CREATE_SHADOW);
2556
Christian Königf566ceb2016-10-27 20:04:38 +02002557 r = amdgpu_bo_create(adev, amdgpu_vm_bo_size(adev, 0), align, true,
Alex Deucher857d9132015-08-27 00:14:16 -04002558 AMDGPU_GEM_DOMAIN_VRAM,
Harish Kasiviswanathan3c824172017-05-11 15:50:08 -04002559 flags,
Yong Zhao51ac7ee2017-07-27 12:48:22 -04002560 NULL, NULL, init_pde_value, &vm->root.bo);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002561 if (r)
Christian König2bd9ccf2016-02-01 12:53:58 +01002562 goto error_free_sched_entity;
2563
Christian König67003a12016-10-12 14:46:26 +02002564 r = amdgpu_bo_reserve(vm->root.bo, false);
Christian König2bd9ccf2016-02-01 12:53:58 +01002565 if (r)
Christian König67003a12016-10-12 14:46:26 +02002566 goto error_free_root;
Christian König2bd9ccf2016-02-01 12:53:58 +01002567
Christian König5a712a82016-06-21 16:28:15 +02002568 vm->last_eviction_counter = atomic64_read(&adev->num_evictions);
Christian König0a096fb2017-07-12 10:01:48 +02002569
2570 if (vm->use_cpu_for_update) {
2571 r = amdgpu_bo_kmap(vm->root.bo, NULL);
2572 if (r)
2573 goto error_free_root;
2574 }
2575
Christian König67003a12016-10-12 14:46:26 +02002576 amdgpu_bo_unreserve(vm->root.bo);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002577
2578 return 0;
Christian König2bd9ccf2016-02-01 12:53:58 +01002579
Christian König67003a12016-10-12 14:46:26 +02002580error_free_root:
2581 amdgpu_bo_unref(&vm->root.bo->shadow);
2582 amdgpu_bo_unref(&vm->root.bo);
2583 vm->root.bo = NULL;
Christian König2bd9ccf2016-02-01 12:53:58 +01002584
2585error_free_sched_entity:
2586 amd_sched_entity_fini(&ring->sched, &vm->entity);
2587
2588 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002589}
2590
2591/**
Christian Königf566ceb2016-10-27 20:04:38 +02002592 * amdgpu_vm_free_levels - free PD/PT levels
2593 *
2594 * @level: PD/PT starting level to free
2595 *
2596 * Free the page directory or page table level and all sub levels.
2597 */
2598static void amdgpu_vm_free_levels(struct amdgpu_vm_pt *level)
2599{
2600 unsigned i;
2601
2602 if (level->bo) {
2603 amdgpu_bo_unref(&level->bo->shadow);
2604 amdgpu_bo_unref(&level->bo);
2605 }
2606
2607 if (level->entries)
2608 for (i = 0; i <= level->last_entry_used; i++)
2609 amdgpu_vm_free_levels(&level->entries[i]);
2610
Michal Hocko20981052017-05-17 14:23:12 +02002611 kvfree(level->entries);
Christian Königf566ceb2016-10-27 20:04:38 +02002612}
2613
2614/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002615 * amdgpu_vm_fini - tear down a vm instance
2616 *
2617 * @adev: amdgpu_device pointer
2618 * @vm: requested vm
2619 *
Christian König8843dbb2016-01-26 12:17:11 +01002620 * Tear down @vm.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002621 * Unbind the VM and remove all bos from the vm bo list
2622 */
2623void amdgpu_vm_fini(struct amdgpu_device *adev, struct amdgpu_vm *vm)
2624{
2625 struct amdgpu_bo_va_mapping *mapping, *tmp;
Christian König4388fc22017-03-13 10:13:36 +01002626 bool prt_fini_needed = !!adev->gart.gart_funcs->set_prt;
Chunming Zhou36bbf3b2017-04-20 16:17:34 +08002627 int i;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002628
Christian König2d55e452016-02-08 17:37:38 +01002629 amd_sched_entity_fini(vm->entity.sched, &vm->entity);
Christian König2bd9ccf2016-02-01 12:53:58 +01002630
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002631 if (!RB_EMPTY_ROOT(&vm->va)) {
2632 dev_err(adev->dev, "still active bo inside vm\n");
2633 }
Christian Königa9f87f62017-03-30 14:03:59 +02002634 rbtree_postorder_for_each_entry_safe(mapping, tmp, &vm->va, rb) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002635 list_del(&mapping->list);
Christian Königa9f87f62017-03-30 14:03:59 +02002636 amdgpu_vm_it_remove(mapping, &vm->va);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002637 kfree(mapping);
2638 }
2639 list_for_each_entry_safe(mapping, tmp, &vm->freed, list) {
Christian König4388fc22017-03-13 10:13:36 +01002640 if (mapping->flags & AMDGPU_PTE_PRT && prt_fini_needed) {
Christian König451bc8e2017-02-14 16:02:52 +01002641 amdgpu_vm_prt_fini(adev, vm);
Christian König4388fc22017-03-13 10:13:36 +01002642 prt_fini_needed = false;
Christian König451bc8e2017-02-14 16:02:52 +01002643 }
Christian König284710f2017-01-30 11:09:31 +01002644
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002645 list_del(&mapping->list);
Christian König451bc8e2017-02-14 16:02:52 +01002646 amdgpu_vm_free_mapping(adev, vm, mapping, NULL);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002647 }
2648
Christian Königf566ceb2016-10-27 20:04:38 +02002649 amdgpu_vm_free_levels(&vm->root);
Christian Königa24960f2016-10-12 13:20:52 +02002650 dma_fence_put(vm->last_dir_update);
Chunming Zhou1e9ef262017-04-20 16:18:48 +08002651 for (i = 0; i < AMDGPU_MAX_VMHUBS; i++)
2652 amdgpu_vm_free_reserved_vmid(adev, vm, i);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002653}
Christian Königea89f8c2015-11-15 20:52:06 +01002654
2655/**
Christian Königa9a78b32016-01-21 10:19:11 +01002656 * amdgpu_vm_manager_init - init the VM manager
2657 *
2658 * @adev: amdgpu_device pointer
2659 *
2660 * Initialize the VM manager structures
2661 */
2662void amdgpu_vm_manager_init(struct amdgpu_device *adev)
2663{
Christian König76456702017-04-06 17:52:39 +02002664 unsigned i, j;
Christian Königa9a78b32016-01-21 10:19:11 +01002665
Christian König76456702017-04-06 17:52:39 +02002666 for (i = 0; i < AMDGPU_MAX_VMHUBS; ++i) {
2667 struct amdgpu_vm_id_manager *id_mgr =
2668 &adev->vm_manager.id_mgr[i];
Christian Königa9a78b32016-01-21 10:19:11 +01002669
Christian König76456702017-04-06 17:52:39 +02002670 mutex_init(&id_mgr->lock);
2671 INIT_LIST_HEAD(&id_mgr->ids_lru);
Chunming Zhouc3505772017-04-21 15:51:04 +08002672 atomic_set(&id_mgr->reserved_vmid_num, 0);
Christian König76456702017-04-06 17:52:39 +02002673
2674 /* skip over VMID 0, since it is the system VM */
2675 for (j = 1; j < id_mgr->num_ids; ++j) {
2676 amdgpu_vm_reset_id(adev, i, j);
2677 amdgpu_sync_create(&id_mgr->ids[i].active);
2678 list_add_tail(&id_mgr->ids[j].list, &id_mgr->ids_lru);
2679 }
Christian König971fe9a92016-03-01 15:09:25 +01002680 }
Christian König2d55e452016-02-08 17:37:38 +01002681
Chris Wilsonf54d1862016-10-25 13:00:45 +01002682 adev->vm_manager.fence_context =
2683 dma_fence_context_alloc(AMDGPU_MAX_RINGS);
Christian König1fbb2e92016-06-01 10:47:36 +02002684 for (i = 0; i < AMDGPU_MAX_RINGS; ++i)
2685 adev->vm_manager.seqno[i] = 0;
2686
Christian König2d55e452016-02-08 17:37:38 +01002687 atomic_set(&adev->vm_manager.vm_pte_next_ring, 0);
Christian Königb1c8a812016-05-04 10:34:03 +02002688 atomic64_set(&adev->vm_manager.client_counter, 0);
Christian König284710f2017-01-30 11:09:31 +01002689 spin_lock_init(&adev->vm_manager.prt_lock);
Christian König451bc8e2017-02-14 16:02:52 +01002690 atomic_set(&adev->vm_manager.num_prt_users, 0);
Harish Kasiviswanathan9a4b7d42017-06-09 11:26:57 -04002691
2692 /* If not overridden by the user, by default, only in large BAR systems
2693 * Compute VM tables will be updated by CPU
2694 */
2695#ifdef CONFIG_X86_64
2696 if (amdgpu_vm_update_mode == -1) {
2697 if (amdgpu_vm_is_large_bar(adev))
2698 adev->vm_manager.vm_update_mode =
2699 AMDGPU_VM_USE_CPU_FOR_COMPUTE;
2700 else
2701 adev->vm_manager.vm_update_mode = 0;
2702 } else
2703 adev->vm_manager.vm_update_mode = amdgpu_vm_update_mode;
2704#else
2705 adev->vm_manager.vm_update_mode = 0;
2706#endif
2707
Christian Königa9a78b32016-01-21 10:19:11 +01002708}
2709
2710/**
Christian Königea89f8c2015-11-15 20:52:06 +01002711 * amdgpu_vm_manager_fini - cleanup VM manager
2712 *
2713 * @adev: amdgpu_device pointer
2714 *
2715 * Cleanup the VM manager and free resources.
2716 */
2717void amdgpu_vm_manager_fini(struct amdgpu_device *adev)
2718{
Christian König76456702017-04-06 17:52:39 +02002719 unsigned i, j;
Christian Königea89f8c2015-11-15 20:52:06 +01002720
Christian König76456702017-04-06 17:52:39 +02002721 for (i = 0; i < AMDGPU_MAX_VMHUBS; ++i) {
2722 struct amdgpu_vm_id_manager *id_mgr =
2723 &adev->vm_manager.id_mgr[i];
Christian Königbcb1ba32016-03-08 15:40:11 +01002724
Christian König76456702017-04-06 17:52:39 +02002725 mutex_destroy(&id_mgr->lock);
2726 for (j = 0; j < AMDGPU_NUM_VM; ++j) {
2727 struct amdgpu_vm_id *id = &id_mgr->ids[j];
2728
2729 amdgpu_sync_free(&id->active);
2730 dma_fence_put(id->flushed_updates);
2731 dma_fence_put(id->last_flush);
2732 }
Christian Königbcb1ba32016-03-08 15:40:11 +01002733 }
Christian Königea89f8c2015-11-15 20:52:06 +01002734}
Chunming Zhoucfbcacf2017-04-24 11:09:04 +08002735
2736int amdgpu_vm_ioctl(struct drm_device *dev, void *data, struct drm_file *filp)
2737{
2738 union drm_amdgpu_vm *args = data;
Chunming Zhou1e9ef262017-04-20 16:18:48 +08002739 struct amdgpu_device *adev = dev->dev_private;
2740 struct amdgpu_fpriv *fpriv = filp->driver_priv;
2741 int r;
Chunming Zhoucfbcacf2017-04-24 11:09:04 +08002742
2743 switch (args->in.op) {
2744 case AMDGPU_VM_OP_RESERVE_VMID:
Chunming Zhou1e9ef262017-04-20 16:18:48 +08002745 /* current, we only have requirement to reserve vmid from gfxhub */
2746 r = amdgpu_vm_alloc_reserved_vmid(adev, &fpriv->vm,
2747 AMDGPU_GFXHUB);
2748 if (r)
2749 return r;
2750 break;
Chunming Zhoucfbcacf2017-04-24 11:09:04 +08002751 case AMDGPU_VM_OP_UNRESERVE_VMID:
Chunming Zhou1e9ef262017-04-20 16:18:48 +08002752 amdgpu_vm_free_reserved_vmid(adev, &fpriv->vm, AMDGPU_GFXHUB);
Chunming Zhoucfbcacf2017-04-24 11:09:04 +08002753 break;
2754 default:
2755 return -EINVAL;
2756 }
2757
2758 return 0;
2759}