blob: 5f3d932e77f21f93a2b33da3bdf599f5b08e0928 [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);
Chunming Zhou4c7e8852016-08-15 11:46:21 +080080 /* indicate update pt or its shadow */
81 bool shadow;
Harish Kasiviswanathanf4833c42016-04-21 10:40:18 -040082};
83
Christian König284710f2017-01-30 11:09:31 +010084/* Helper to disable partial resident texture feature from a fence callback */
85struct amdgpu_prt_cb {
86 struct amdgpu_device *adev;
87 struct dma_fence_cb cb;
88};
89
Alex Deucherd38ceaf2015-04-20 16:55:21 -040090/**
Christian König72a7ec52016-10-19 11:03:57 +020091 * amdgpu_vm_num_entries - return the number of entries in a PD/PT
Alex Deucherd38ceaf2015-04-20 16:55:21 -040092 *
93 * @adev: amdgpu_device pointer
94 *
Christian König72a7ec52016-10-19 11:03:57 +020095 * Calculate the number of entries in a page directory or page table.
Alex Deucherd38ceaf2015-04-20 16:55:21 -040096 */
Christian König72a7ec52016-10-19 11:03:57 +020097static unsigned amdgpu_vm_num_entries(struct amdgpu_device *adev,
98 unsigned level)
Alex Deucherd38ceaf2015-04-20 16:55:21 -040099{
Christian König72a7ec52016-10-19 11:03:57 +0200100 if (level == 0)
101 /* For the root directory */
102 return adev->vm_manager.max_pfn >>
103 (amdgpu_vm_block_size * adev->vm_manager.num_level);
104 else if (level == adev->vm_manager.num_level)
105 /* For the page tables on the leaves */
106 return AMDGPU_VM_PTE_COUNT;
107 else
108 /* Everything in between */
109 return 1 << amdgpu_vm_block_size;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400110}
111
112/**
Christian König72a7ec52016-10-19 11:03:57 +0200113 * amdgpu_vm_bo_size - returns the size of the BOs in bytes
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400114 *
115 * @adev: amdgpu_device pointer
116 *
Christian König72a7ec52016-10-19 11:03:57 +0200117 * Calculate the size of the BO for a page directory or page table in bytes.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400118 */
Christian König72a7ec52016-10-19 11:03:57 +0200119static unsigned amdgpu_vm_bo_size(struct amdgpu_device *adev, unsigned level)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400120{
Christian König72a7ec52016-10-19 11:03:57 +0200121 return AMDGPU_GPU_PAGE_ALIGN(amdgpu_vm_num_entries(adev, level) * 8);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400122}
123
124/**
Christian König56467eb2015-12-11 15:16:32 +0100125 * amdgpu_vm_get_pd_bo - add the VM PD to a validation list
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400126 *
127 * @vm: vm providing the BOs
Christian König3c0eea62015-12-11 14:39:05 +0100128 * @validated: head of validation list
Christian König56467eb2015-12-11 15:16:32 +0100129 * @entry: entry to add
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400130 *
131 * Add the page directory to the list of BOs to
Christian König56467eb2015-12-11 15:16:32 +0100132 * validate for command submission.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400133 */
Christian König56467eb2015-12-11 15:16:32 +0100134void amdgpu_vm_get_pd_bo(struct amdgpu_vm *vm,
135 struct list_head *validated,
136 struct amdgpu_bo_list_entry *entry)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400137{
Christian König67003a12016-10-12 14:46:26 +0200138 entry->robj = vm->root.bo;
Christian König56467eb2015-12-11 15:16:32 +0100139 entry->priority = 0;
Christian König67003a12016-10-12 14:46:26 +0200140 entry->tv.bo = &entry->robj->tbo;
Christian König56467eb2015-12-11 15:16:32 +0100141 entry->tv.shared = true;
Christian König2f568db2016-02-23 12:36:59 +0100142 entry->user_pages = NULL;
Christian König56467eb2015-12-11 15:16:32 +0100143 list_add(&entry->tv.head, validated);
144}
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400145
Christian König56467eb2015-12-11 15:16:32 +0100146/**
Christian König670fecc2016-10-12 15:36:57 +0200147 * amdgpu_vm_validate_layer - validate a single page table level
148 *
149 * @parent: parent page table level
150 * @validate: callback to do the validation
151 * @param: parameter for the validation callback
152 *
153 * Validate the page table BOs on command submission if neccessary.
154 */
155static int amdgpu_vm_validate_level(struct amdgpu_vm_pt *parent,
156 int (*validate)(void *, struct amdgpu_bo *),
157 void *param)
158{
159 unsigned i;
160 int r;
161
162 if (!parent->entries)
163 return 0;
164
165 for (i = 0; i <= parent->last_entry_used; ++i) {
166 struct amdgpu_vm_pt *entry = &parent->entries[i];
167
168 if (!entry->bo)
169 continue;
170
171 r = validate(param, entry->bo);
172 if (r)
173 return r;
174
175 /*
176 * Recurse into the sub directory. This is harmless because we
177 * have only a maximum of 5 layers.
178 */
179 r = amdgpu_vm_validate_level(entry, validate, param);
180 if (r)
181 return r;
182 }
183
184 return r;
185}
186
187/**
Christian Königf7da30d2016-09-28 12:03:04 +0200188 * amdgpu_vm_validate_pt_bos - validate the page table BOs
Christian König56467eb2015-12-11 15:16:32 +0100189 *
Christian König5a712a82016-06-21 16:28:15 +0200190 * @adev: amdgpu device pointer
Christian König56467eb2015-12-11 15:16:32 +0100191 * @vm: vm providing the BOs
Christian Königf7da30d2016-09-28 12:03:04 +0200192 * @validate: callback to do the validation
193 * @param: parameter for the validation callback
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400194 *
Christian Königf7da30d2016-09-28 12:03:04 +0200195 * Validate the page table BOs on command submission if neccessary.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400196 */
Christian Königf7da30d2016-09-28 12:03:04 +0200197int amdgpu_vm_validate_pt_bos(struct amdgpu_device *adev, struct amdgpu_vm *vm,
198 int (*validate)(void *p, struct amdgpu_bo *bo),
199 void *param)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400200{
Christian König5a712a82016-06-21 16:28:15 +0200201 uint64_t num_evictions;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400202
Christian König5a712a82016-06-21 16:28:15 +0200203 /* We only need to validate the page tables
204 * if they aren't already valid.
205 */
206 num_evictions = atomic64_read(&adev->num_evictions);
207 if (num_evictions == vm->last_eviction_counter)
Christian Königf7da30d2016-09-28 12:03:04 +0200208 return 0;
Christian König5a712a82016-06-21 16:28:15 +0200209
Christian König670fecc2016-10-12 15:36:57 +0200210 return amdgpu_vm_validate_level(&vm->root, validate, param);
Christian Königeceb8a12016-01-11 15:35:21 +0100211}
212
213/**
Christian Königd711e132016-10-13 10:20:53 +0200214 * amdgpu_vm_move_level_in_lru - move one level of PT BOs to the LRU tail
215 *
216 * @adev: amdgpu device instance
217 * @vm: vm providing the BOs
218 *
219 * Move the PT BOs to the tail of the LRU.
220 */
221static void amdgpu_vm_move_level_in_lru(struct amdgpu_vm_pt *parent)
222{
223 unsigned i;
224
225 if (!parent->entries)
226 return;
227
228 for (i = 0; i <= parent->last_entry_used; ++i) {
229 struct amdgpu_vm_pt *entry = &parent->entries[i];
230
231 if (!entry->bo)
232 continue;
233
234 ttm_bo_move_to_lru_tail(&entry->bo->tbo);
235 amdgpu_vm_move_level_in_lru(entry);
236 }
237}
238
239/**
Christian Königeceb8a12016-01-11 15:35:21 +0100240 * amdgpu_vm_move_pt_bos_in_lru - move the PT BOs to the LRU tail
241 *
242 * @adev: amdgpu device instance
243 * @vm: vm providing the BOs
244 *
245 * Move the PT BOs to the tail of the LRU.
246 */
247void amdgpu_vm_move_pt_bos_in_lru(struct amdgpu_device *adev,
248 struct amdgpu_vm *vm)
249{
250 struct ttm_bo_global *glob = adev->mman.bdev.glob;
Christian Königeceb8a12016-01-11 15:35:21 +0100251
252 spin_lock(&glob->lru_lock);
Christian Königd711e132016-10-13 10:20:53 +0200253 amdgpu_vm_move_level_in_lru(&vm->root);
Christian Königeceb8a12016-01-11 15:35:21 +0100254 spin_unlock(&glob->lru_lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400255}
256
Christian Königf566ceb2016-10-27 20:04:38 +0200257 /**
258 * amdgpu_vm_alloc_levels - allocate the PD/PT levels
259 *
260 * @adev: amdgpu_device pointer
261 * @vm: requested vm
262 * @saddr: start of the address range
263 * @eaddr: end of the address range
264 *
265 * Make sure the page directories and page tables are allocated
266 */
267static int amdgpu_vm_alloc_levels(struct amdgpu_device *adev,
268 struct amdgpu_vm *vm,
269 struct amdgpu_vm_pt *parent,
270 uint64_t saddr, uint64_t eaddr,
271 unsigned level)
272{
273 unsigned shift = (adev->vm_manager.num_level - level) *
274 amdgpu_vm_block_size;
275 unsigned pt_idx, from, to;
276 int r;
277
278 if (!parent->entries) {
279 unsigned num_entries = amdgpu_vm_num_entries(adev, level);
280
281 parent->entries = drm_calloc_large(num_entries,
282 sizeof(struct amdgpu_vm_pt));
283 if (!parent->entries)
284 return -ENOMEM;
285 memset(parent->entries, 0 , sizeof(struct amdgpu_vm_pt));
286 }
287
Felix Kuehling1866bac2017-03-28 20:36:12 -0400288 from = saddr >> shift;
289 to = eaddr >> shift;
290 if (from >= amdgpu_vm_num_entries(adev, level) ||
291 to >= amdgpu_vm_num_entries(adev, level))
292 return -EINVAL;
Christian Königf566ceb2016-10-27 20:04:38 +0200293
294 if (to > parent->last_entry_used)
295 parent->last_entry_used = to;
296
297 ++level;
Felix Kuehling1866bac2017-03-28 20:36:12 -0400298 saddr = saddr & ((1 << shift) - 1);
299 eaddr = eaddr & ((1 << shift) - 1);
Christian Königf566ceb2016-10-27 20:04:38 +0200300
301 /* walk over the address space and allocate the page tables */
302 for (pt_idx = from; pt_idx <= to; ++pt_idx) {
303 struct reservation_object *resv = vm->root.bo->tbo.resv;
304 struct amdgpu_vm_pt *entry = &parent->entries[pt_idx];
305 struct amdgpu_bo *pt;
306
307 if (!entry->bo) {
308 r = amdgpu_bo_create(adev,
309 amdgpu_vm_bo_size(adev, level),
310 AMDGPU_GPU_PAGE_SIZE, true,
311 AMDGPU_GEM_DOMAIN_VRAM,
312 AMDGPU_GEM_CREATE_NO_CPU_ACCESS |
313 AMDGPU_GEM_CREATE_SHADOW |
314 AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS |
315 AMDGPU_GEM_CREATE_VRAM_CLEARED,
316 NULL, resv, &pt);
317 if (r)
318 return r;
319
320 /* Keep a reference to the root directory to avoid
321 * freeing them up in the wrong order.
322 */
323 pt->parent = amdgpu_bo_ref(vm->root.bo);
324
325 entry->bo = pt;
326 entry->addr = 0;
327 }
328
329 if (level < adev->vm_manager.num_level) {
Felix Kuehling1866bac2017-03-28 20:36:12 -0400330 uint64_t sub_saddr = (pt_idx == from) ? saddr : 0;
331 uint64_t sub_eaddr = (pt_idx == to) ? eaddr :
332 ((1 << shift) - 1);
333 r = amdgpu_vm_alloc_levels(adev, vm, entry, sub_saddr,
334 sub_eaddr, level);
Christian Königf566ceb2016-10-27 20:04:38 +0200335 if (r)
336 return r;
337 }
338 }
339
340 return 0;
341}
342
Christian König663e4572017-03-13 10:13:37 +0100343/**
344 * amdgpu_vm_alloc_pts - Allocate page tables.
345 *
346 * @adev: amdgpu_device pointer
347 * @vm: VM to allocate page tables for
348 * @saddr: Start address which needs to be allocated
349 * @size: Size from start address we need.
350 *
351 * Make sure the page tables are allocated.
352 */
353int amdgpu_vm_alloc_pts(struct amdgpu_device *adev,
354 struct amdgpu_vm *vm,
355 uint64_t saddr, uint64_t size)
356{
Felix Kuehling22770e52017-03-28 20:24:53 -0400357 uint64_t last_pfn;
Christian König663e4572017-03-13 10:13:37 +0100358 uint64_t eaddr;
Christian König663e4572017-03-13 10:13:37 +0100359
360 /* validate the parameters */
361 if (saddr & AMDGPU_GPU_PAGE_MASK || size & AMDGPU_GPU_PAGE_MASK)
362 return -EINVAL;
363
364 eaddr = saddr + size - 1;
365 last_pfn = eaddr / AMDGPU_GPU_PAGE_SIZE;
366 if (last_pfn >= adev->vm_manager.max_pfn) {
Felix Kuehling22770e52017-03-28 20:24:53 -0400367 dev_err(adev->dev, "va above limit (0x%08llX >= 0x%08llX)\n",
Christian König663e4572017-03-13 10:13:37 +0100368 last_pfn, adev->vm_manager.max_pfn);
369 return -EINVAL;
370 }
371
372 saddr /= AMDGPU_GPU_PAGE_SIZE;
373 eaddr /= AMDGPU_GPU_PAGE_SIZE;
374
Christian Königf566ceb2016-10-27 20:04:38 +0200375 return amdgpu_vm_alloc_levels(adev, vm, &vm->root, saddr, eaddr, 0);
Christian König663e4572017-03-13 10:13:37 +0100376}
377
Chunming Zhou192b7dc2016-06-29 14:01:15 +0800378static bool amdgpu_vm_is_gpu_reset(struct amdgpu_device *adev,
379 struct amdgpu_vm_id *id)
380{
381 return id->current_gpu_reset_count !=
382 atomic_read(&adev->gpu_reset_counter) ? true : false;
383}
384
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400385/**
386 * amdgpu_vm_grab_id - allocate the next free VMID
387 *
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400388 * @vm: vm to allocate id for
Christian König7f8a5292015-07-20 16:09:40 +0200389 * @ring: ring we want to submit job to
390 * @sync: sync object where we add dependencies
Christian König94dd0a42016-01-18 17:01:42 +0100391 * @fence: fence protecting ID from reuse
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400392 *
Christian König7f8a5292015-07-20 16:09:40 +0200393 * Allocate an id for the vm, adding fences to the sync obj as necessary.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400394 */
Christian König7f8a5292015-07-20 16:09:40 +0200395int amdgpu_vm_grab_id(struct amdgpu_vm *vm, struct amdgpu_ring *ring,
Chris Wilsonf54d1862016-10-25 13:00:45 +0100396 struct amdgpu_sync *sync, struct dma_fence *fence,
Chunming Zhoufd53be32016-07-01 17:59:01 +0800397 struct amdgpu_job *job)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400398{
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400399 struct amdgpu_device *adev = ring->adev;
Christian König090b7672016-07-08 10:21:02 +0200400 uint64_t fence_context = adev->fence_context + ring->idx;
Chris Wilsonf54d1862016-10-25 13:00:45 +0100401 struct dma_fence *updates = sync->last_vm_update;
Christian König8d76001e2016-05-23 16:00:32 +0200402 struct amdgpu_vm_id *id, *idle;
Chris Wilsonf54d1862016-10-25 13:00:45 +0100403 struct dma_fence **fences;
Christian König1fbb2e92016-06-01 10:47:36 +0200404 unsigned i;
405 int r = 0;
406
407 fences = kmalloc_array(sizeof(void *), adev->vm_manager.num_ids,
408 GFP_KERNEL);
409 if (!fences)
410 return -ENOMEM;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400411
Christian König94dd0a42016-01-18 17:01:42 +0100412 mutex_lock(&adev->vm_manager.lock);
413
Christian König36fd7c52016-05-23 15:30:08 +0200414 /* Check if we have an idle VMID */
Christian König1fbb2e92016-06-01 10:47:36 +0200415 i = 0;
Christian König8d76001e2016-05-23 16:00:32 +0200416 list_for_each_entry(idle, &adev->vm_manager.ids_lru, list) {
Christian König1fbb2e92016-06-01 10:47:36 +0200417 fences[i] = amdgpu_sync_peek_fence(&idle->active, ring);
418 if (!fences[i])
Christian König36fd7c52016-05-23 15:30:08 +0200419 break;
Christian König1fbb2e92016-06-01 10:47:36 +0200420 ++i;
Christian König36fd7c52016-05-23 15:30:08 +0200421 }
Christian Königbcb1ba32016-03-08 15:40:11 +0100422
Christian König1fbb2e92016-06-01 10:47:36 +0200423 /* If we can't find a idle VMID to use, wait till one becomes available */
Christian König8d76001e2016-05-23 16:00:32 +0200424 if (&idle->list == &adev->vm_manager.ids_lru) {
Christian König1fbb2e92016-06-01 10:47:36 +0200425 u64 fence_context = adev->vm_manager.fence_context + ring->idx;
426 unsigned seqno = ++adev->vm_manager.seqno[ring->idx];
Chris Wilsonf54d1862016-10-25 13:00:45 +0100427 struct dma_fence_array *array;
Christian König1fbb2e92016-06-01 10:47:36 +0200428 unsigned j;
Christian König8d76001e2016-05-23 16:00:32 +0200429
Christian König1fbb2e92016-06-01 10:47:36 +0200430 for (j = 0; j < i; ++j)
Chris Wilsonf54d1862016-10-25 13:00:45 +0100431 dma_fence_get(fences[j]);
Christian König8d76001e2016-05-23 16:00:32 +0200432
Chris Wilsonf54d1862016-10-25 13:00:45 +0100433 array = dma_fence_array_create(i, fences, fence_context,
Christian König1fbb2e92016-06-01 10:47:36 +0200434 seqno, true);
435 if (!array) {
436 for (j = 0; j < i; ++j)
Chris Wilsonf54d1862016-10-25 13:00:45 +0100437 dma_fence_put(fences[j]);
Christian König1fbb2e92016-06-01 10:47:36 +0200438 kfree(fences);
439 r = -ENOMEM;
440 goto error;
441 }
Christian König8d76001e2016-05-23 16:00:32 +0200442
Christian König8d76001e2016-05-23 16:00:32 +0200443
Christian König1fbb2e92016-06-01 10:47:36 +0200444 r = amdgpu_sync_fence(ring->adev, sync, &array->base);
Chris Wilsonf54d1862016-10-25 13:00:45 +0100445 dma_fence_put(&array->base);
Christian König1fbb2e92016-06-01 10:47:36 +0200446 if (r)
447 goto error;
Christian König8d76001e2016-05-23 16:00:32 +0200448
Christian König1fbb2e92016-06-01 10:47:36 +0200449 mutex_unlock(&adev->vm_manager.lock);
450 return 0;
Christian König8d76001e2016-05-23 16:00:32 +0200451
Christian König1fbb2e92016-06-01 10:47:36 +0200452 }
453 kfree(fences);
Christian König8d76001e2016-05-23 16:00:32 +0200454
Chunming Zhoufd53be32016-07-01 17:59:01 +0800455 job->vm_needs_flush = true;
Christian König1fbb2e92016-06-01 10:47:36 +0200456 /* Check if we can use a VMID already assigned to this VM */
457 i = ring->idx;
458 do {
Chris Wilsonf54d1862016-10-25 13:00:45 +0100459 struct dma_fence *flushed;
Christian König8d76001e2016-05-23 16:00:32 +0200460
Christian König1fbb2e92016-06-01 10:47:36 +0200461 id = vm->ids[i++];
462 if (i == AMDGPU_MAX_RINGS)
463 i = 0;
464
465 /* Check all the prerequisites to using this VMID */
466 if (!id)
467 continue;
Chunming Zhou192b7dc2016-06-29 14:01:15 +0800468 if (amdgpu_vm_is_gpu_reset(adev, id))
Chunming Zhou6adb0512016-06-27 17:06:01 +0800469 continue;
Christian König1fbb2e92016-06-01 10:47:36 +0200470
471 if (atomic64_read(&id->owner) != vm->client_id)
472 continue;
473
Chunming Zhoufd53be32016-07-01 17:59:01 +0800474 if (job->vm_pd_addr != id->pd_gpu_addr)
Christian König1fbb2e92016-06-01 10:47:36 +0200475 continue;
476
Christian König090b7672016-07-08 10:21:02 +0200477 if (!id->last_flush)
478 continue;
479
480 if (id->last_flush->context != fence_context &&
Chris Wilsonf54d1862016-10-25 13:00:45 +0100481 !dma_fence_is_signaled(id->last_flush))
Christian König1fbb2e92016-06-01 10:47:36 +0200482 continue;
483
484 flushed = id->flushed_updates;
485 if (updates &&
Chris Wilsonf54d1862016-10-25 13:00:45 +0100486 (!flushed || dma_fence_is_later(updates, flushed)))
Christian König1fbb2e92016-06-01 10:47:36 +0200487 continue;
488
Christian König3dab83b2016-06-01 13:31:17 +0200489 /* Good we can use this VMID. Remember this submission as
490 * user of the VMID.
491 */
Christian König1fbb2e92016-06-01 10:47:36 +0200492 r = amdgpu_sync_fence(ring->adev, &id->active, fence);
493 if (r)
494 goto error;
Christian König8d76001e2016-05-23 16:00:32 +0200495
Chunming Zhou6adb0512016-06-27 17:06:01 +0800496 id->current_gpu_reset_count = atomic_read(&adev->gpu_reset_counter);
Christian König1fbb2e92016-06-01 10:47:36 +0200497 list_move_tail(&id->list, &adev->vm_manager.ids_lru);
498 vm->ids[ring->idx] = id;
Christian König8d76001e2016-05-23 16:00:32 +0200499
Chunming Zhoufd53be32016-07-01 17:59:01 +0800500 job->vm_id = id - adev->vm_manager.ids;
501 job->vm_needs_flush = false;
Christian König0c0fdf12016-07-08 10:48:24 +0200502 trace_amdgpu_vm_grab_id(vm, ring->idx, job);
Christian König8d76001e2016-05-23 16:00:32 +0200503
Christian König1fbb2e92016-06-01 10:47:36 +0200504 mutex_unlock(&adev->vm_manager.lock);
505 return 0;
Christian König8d76001e2016-05-23 16:00:32 +0200506
Christian König1fbb2e92016-06-01 10:47:36 +0200507 } while (i != ring->idx);
Chunming Zhou8e9fbeb2016-03-17 11:41:37 +0800508
Christian König1fbb2e92016-06-01 10:47:36 +0200509 /* Still no ID to use? Then use the idle one found earlier */
510 id = idle;
511
512 /* Remember this submission as user of the VMID */
513 r = amdgpu_sync_fence(ring->adev, &id->active, fence);
Christian König832a9022016-02-15 12:33:02 +0100514 if (r)
515 goto error;
Christian König4ff37a82016-02-26 16:18:26 +0100516
Chris Wilsonf54d1862016-10-25 13:00:45 +0100517 dma_fence_put(id->first);
518 id->first = dma_fence_get(fence);
Christian König4ff37a82016-02-26 16:18:26 +0100519
Chris Wilsonf54d1862016-10-25 13:00:45 +0100520 dma_fence_put(id->last_flush);
Christian König41d9eb22016-03-01 16:46:18 +0100521 id->last_flush = NULL;
522
Chris Wilsonf54d1862016-10-25 13:00:45 +0100523 dma_fence_put(id->flushed_updates);
524 id->flushed_updates = dma_fence_get(updates);
Christian König4ff37a82016-02-26 16:18:26 +0100525
Chunming Zhoufd53be32016-07-01 17:59:01 +0800526 id->pd_gpu_addr = job->vm_pd_addr;
Chunming Zhoub46b8a82016-06-27 17:04:23 +0800527 id->current_gpu_reset_count = atomic_read(&adev->gpu_reset_counter);
Christian König832a9022016-02-15 12:33:02 +0100528 list_move_tail(&id->list, &adev->vm_manager.ids_lru);
Christian König0ea54b92016-05-04 10:20:01 +0200529 atomic64_set(&id->owner, vm->client_id);
Christian König832a9022016-02-15 12:33:02 +0100530 vm->ids[ring->idx] = id;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400531
Chunming Zhoufd53be32016-07-01 17:59:01 +0800532 job->vm_id = id - adev->vm_manager.ids;
Christian König0c0fdf12016-07-08 10:48:24 +0200533 trace_amdgpu_vm_grab_id(vm, ring->idx, job);
Christian König832a9022016-02-15 12:33:02 +0100534
535error:
Christian König94dd0a42016-01-18 17:01:42 +0100536 mutex_unlock(&adev->vm_manager.lock);
Christian Königa9a78b32016-01-21 10:19:11 +0100537 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400538}
539
Alex Deucher93dcc372016-06-17 17:05:15 -0400540static bool amdgpu_vm_ring_has_compute_vm_bug(struct amdgpu_ring *ring)
541{
542 struct amdgpu_device *adev = ring->adev;
Alex Deuchera1255102016-10-13 17:41:13 -0400543 const struct amdgpu_ip_block *ip_block;
Alex Deucher93dcc372016-06-17 17:05:15 -0400544
Christian König21cd9422016-10-05 15:36:39 +0200545 if (ring->funcs->type != AMDGPU_RING_TYPE_COMPUTE)
Alex Deucher93dcc372016-06-17 17:05:15 -0400546 /* only compute rings */
547 return false;
548
549 ip_block = amdgpu_get_ip_block(adev, AMD_IP_BLOCK_TYPE_GFX);
550 if (!ip_block)
551 return false;
552
Alex Deuchera1255102016-10-13 17:41:13 -0400553 if (ip_block->version->major <= 7) {
Alex Deucher93dcc372016-06-17 17:05:15 -0400554 /* gfx7 has no workaround */
555 return true;
Alex Deuchera1255102016-10-13 17:41:13 -0400556 } else if (ip_block->version->major == 8) {
Alex Deucher93dcc372016-06-17 17:05:15 -0400557 if (adev->gfx.mec_fw_version >= 673)
558 /* gfx8 is fixed in MEC firmware 673 */
559 return false;
560 else
561 return true;
562 }
563 return false;
564}
565
Alex Xiee60f8db2017-03-09 11:36:26 -0500566static u64 amdgpu_vm_adjust_mc_addr(struct amdgpu_device *adev, u64 mc_addr)
567{
568 u64 addr = mc_addr;
569
570 if (adev->mc.mc_funcs && adev->mc.mc_funcs->adjust_mc_addr)
571 addr = adev->mc.mc_funcs->adjust_mc_addr(adev, addr);
572
573 return addr;
574}
575
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400576/**
577 * amdgpu_vm_flush - hardware flush the vm
578 *
579 * @ring: ring to use for flush
Christian Königcffadc82016-03-01 13:34:49 +0100580 * @vm_id: vmid number to use
Christian König4ff37a82016-02-26 16:18:26 +0100581 * @pd_addr: address of the page directory
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400582 *
Christian König4ff37a82016-02-26 16:18:26 +0100583 * Emit a VM flush when it is necessary.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400584 */
Chunming Zhoufd53be32016-07-01 17:59:01 +0800585int amdgpu_vm_flush(struct amdgpu_ring *ring, struct amdgpu_job *job)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400586{
Christian König971fe9a92016-03-01 15:09:25 +0100587 struct amdgpu_device *adev = ring->adev;
Chunming Zhoufd53be32016-07-01 17:59:01 +0800588 struct amdgpu_vm_id *id = &adev->vm_manager.ids[job->vm_id];
Christian Königd564a062016-03-01 15:51:53 +0100589 bool gds_switch_needed = ring->funcs->emit_gds_switch && (
Chunming Zhoufd53be32016-07-01 17:59:01 +0800590 id->gds_base != job->gds_base ||
591 id->gds_size != job->gds_size ||
592 id->gws_base != job->gws_base ||
593 id->gws_size != job->gws_size ||
594 id->oa_base != job->oa_base ||
595 id->oa_size != job->oa_size);
Christian König41d9eb22016-03-01 16:46:18 +0100596 int r;
Christian Königd564a062016-03-01 15:51:53 +0100597
Monk Liue9d672b2017-03-15 12:18:57 +0800598 if (job->vm_needs_flush || gds_switch_needed ||
599 amdgpu_vm_is_gpu_reset(adev, id) ||
600 amdgpu_vm_ring_has_compute_vm_bug(ring)) {
601 unsigned patch_offset = 0;
Christian König971fe9a92016-03-01 15:09:25 +0100602
Monk Liue9d672b2017-03-15 12:18:57 +0800603 if (ring->funcs->init_cond_exec)
604 patch_offset = amdgpu_ring_init_cond_exec(ring);
Christian König41d9eb22016-03-01 16:46:18 +0100605
Monk Liue9d672b2017-03-15 12:18:57 +0800606 if (ring->funcs->emit_pipeline_sync &&
607 (job->vm_needs_flush || gds_switch_needed ||
608 amdgpu_vm_ring_has_compute_vm_bug(ring)))
609 amdgpu_ring_emit_pipeline_sync(ring);
Christian König41d9eb22016-03-01 16:46:18 +0100610
Monk Liue9d672b2017-03-15 12:18:57 +0800611 if (ring->funcs->emit_vm_flush && (job->vm_needs_flush ||
612 amdgpu_vm_is_gpu_reset(adev, id))) {
613 struct dma_fence *fence;
614 u64 pd_addr = amdgpu_vm_adjust_mc_addr(adev, job->vm_pd_addr);
Christian König3dab83b2016-06-01 13:31:17 +0200615
Monk Liue9d672b2017-03-15 12:18:57 +0800616 trace_amdgpu_vm_flush(pd_addr, ring->idx, job->vm_id);
617 amdgpu_ring_emit_vm_flush(ring, job->vm_id, pd_addr);
618
619 r = amdgpu_fence_emit(ring, &fence);
620 if (r)
621 return r;
622
623 mutex_lock(&adev->vm_manager.lock);
624 dma_fence_put(id->last_flush);
625 id->last_flush = fence;
626 mutex_unlock(&adev->vm_manager.lock);
627 }
628
629 if (gds_switch_needed) {
630 id->gds_base = job->gds_base;
631 id->gds_size = job->gds_size;
632 id->gws_base = job->gws_base;
633 id->gws_size = job->gws_size;
634 id->oa_base = job->oa_base;
635 id->oa_size = job->oa_size;
636 amdgpu_ring_emit_gds_switch(ring, job->vm_id,
637 job->gds_base, job->gds_size,
638 job->gws_base, job->gws_size,
639 job->oa_base, job->oa_size);
640 }
641
642 if (ring->funcs->patch_cond_exec)
643 amdgpu_ring_patch_cond_exec(ring, patch_offset);
644
645 /* the double SWITCH_BUFFER here *cannot* be skipped by COND_EXEC */
646 if (ring->funcs->emit_switch_buffer) {
647 amdgpu_ring_emit_switch_buffer(ring);
648 amdgpu_ring_emit_switch_buffer(ring);
649 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400650 }
Christian König41d9eb22016-03-01 16:46:18 +0100651 return 0;
Christian König971fe9a92016-03-01 15:09:25 +0100652}
653
654/**
655 * amdgpu_vm_reset_id - reset VMID to zero
656 *
657 * @adev: amdgpu device structure
658 * @vm_id: vmid number to use
659 *
660 * Reset saved GDW, GWS and OA to force switch on next flush.
661 */
662void amdgpu_vm_reset_id(struct amdgpu_device *adev, unsigned vm_id)
663{
Christian Königbcb1ba32016-03-08 15:40:11 +0100664 struct amdgpu_vm_id *id = &adev->vm_manager.ids[vm_id];
Christian König971fe9a92016-03-01 15:09:25 +0100665
Christian Königbcb1ba32016-03-08 15:40:11 +0100666 id->gds_base = 0;
667 id->gds_size = 0;
668 id->gws_base = 0;
669 id->gws_size = 0;
670 id->oa_base = 0;
671 id->oa_size = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400672}
673
674/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400675 * amdgpu_vm_bo_find - find the bo_va for a specific vm & bo
676 *
677 * @vm: requested vm
678 * @bo: requested buffer object
679 *
Christian König8843dbb2016-01-26 12:17:11 +0100680 * Find @bo inside the requested vm.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400681 * Search inside the @bos vm list for the requested vm
682 * Returns the found bo_va or NULL if none is found
683 *
684 * Object has to be reserved!
685 */
686struct amdgpu_bo_va *amdgpu_vm_bo_find(struct amdgpu_vm *vm,
687 struct amdgpu_bo *bo)
688{
689 struct amdgpu_bo_va *bo_va;
690
691 list_for_each_entry(bo_va, &bo->va, bo_list) {
692 if (bo_va->vm == vm) {
693 return bo_va;
694 }
695 }
696 return NULL;
697}
698
699/**
Christian Königafef8b82016-08-12 13:29:18 +0200700 * amdgpu_vm_do_set_ptes - helper to call the right asic function
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400701 *
Christian König29efc4f2016-08-04 14:52:50 +0200702 * @params: see amdgpu_pte_update_params definition
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400703 * @pe: addr of the page entry
704 * @addr: dst addr to write into pe
705 * @count: number of page entries to update
706 * @incr: increase next addr by incr bytes
707 * @flags: hw access flags
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400708 *
709 * Traces the parameters and calls the right asic functions
710 * to setup the page table using the DMA.
711 */
Christian Königafef8b82016-08-12 13:29:18 +0200712static void amdgpu_vm_do_set_ptes(struct amdgpu_pte_update_params *params,
713 uint64_t pe, uint64_t addr,
714 unsigned count, uint32_t incr,
Chunming Zhou6b777602016-09-21 16:19:19 +0800715 uint64_t flags)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400716{
Christian Königec2f05f2016-09-25 16:11:52 +0200717 trace_amdgpu_vm_set_ptes(pe, addr, count, incr, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400718
Christian Königafef8b82016-08-12 13:29:18 +0200719 if (count < 3) {
Christian Königde9ea7b2016-08-12 11:33:30 +0200720 amdgpu_vm_write_pte(params->adev, params->ib, pe,
721 addr | flags, count, incr);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400722
723 } else {
Christian König27c5f362016-08-04 15:02:49 +0200724 amdgpu_vm_set_pte_pde(params->adev, params->ib, pe, addr,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400725 count, incr, flags);
726 }
727}
728
729/**
Christian Königafef8b82016-08-12 13:29:18 +0200730 * amdgpu_vm_do_copy_ptes - copy the PTEs from the GART
731 *
732 * @params: see amdgpu_pte_update_params definition
733 * @pe: addr of the page entry
734 * @addr: dst addr to write into pe
735 * @count: number of page entries to update
736 * @incr: increase next addr by incr bytes
737 * @flags: hw access flags
738 *
739 * Traces the parameters and calls the DMA function to copy the PTEs.
740 */
741static void amdgpu_vm_do_copy_ptes(struct amdgpu_pte_update_params *params,
742 uint64_t pe, uint64_t addr,
743 unsigned count, uint32_t incr,
Chunming Zhou6b777602016-09-21 16:19:19 +0800744 uint64_t flags)
Christian Königafef8b82016-08-12 13:29:18 +0200745{
Christian Königec2f05f2016-09-25 16:11:52 +0200746 uint64_t src = (params->src + (addr >> 12) * 8);
Christian Königafef8b82016-08-12 13:29:18 +0200747
Christian Königec2f05f2016-09-25 16:11:52 +0200748
749 trace_amdgpu_vm_copy_ptes(pe, src, count);
750
751 amdgpu_vm_copy_pte(params->adev, params->ib, pe, src, count);
Christian Königafef8b82016-08-12 13:29:18 +0200752}
753
754/**
Christian Königb07c9d22015-11-30 13:26:07 +0100755 * amdgpu_vm_map_gart - Resolve gart mapping of addr
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400756 *
Christian Königb07c9d22015-11-30 13:26:07 +0100757 * @pages_addr: optional DMA address to use for lookup
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400758 * @addr: the unmapped addr
759 *
760 * Look up the physical address of the page that the pte resolves
Christian Königb07c9d22015-11-30 13:26:07 +0100761 * to and return the pointer for the page table entry.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400762 */
Christian Königde9ea7b2016-08-12 11:33:30 +0200763static uint64_t amdgpu_vm_map_gart(const dma_addr_t *pages_addr, uint64_t addr)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400764{
765 uint64_t result;
766
Christian Königde9ea7b2016-08-12 11:33:30 +0200767 /* page table offset */
768 result = pages_addr[addr >> PAGE_SHIFT];
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400769
Christian Königde9ea7b2016-08-12 11:33:30 +0200770 /* in case cpu page size != gpu page size*/
771 result |= addr & (~PAGE_MASK);
Christian Königb07c9d22015-11-30 13:26:07 +0100772
773 result &= 0xFFFFFFFFFFFFF000ULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400774
775 return result;
776}
777
Christian Königf8991ba2016-09-16 15:36:49 +0200778/*
Christian König194d2162016-10-12 15:13:52 +0200779 * amdgpu_vm_update_level - update a single level in the hierarchy
Christian Königf8991ba2016-09-16 15:36:49 +0200780 *
781 * @adev: amdgpu_device pointer
782 * @vm: requested vm
Christian König194d2162016-10-12 15:13:52 +0200783 * @parent: parent directory
Christian Königf8991ba2016-09-16 15:36:49 +0200784 *
Christian König194d2162016-10-12 15:13:52 +0200785 * Makes sure all entries in @parent are up to date.
Christian Königf8991ba2016-09-16 15:36:49 +0200786 * Returns 0 for success, error for failure.
787 */
Christian König194d2162016-10-12 15:13:52 +0200788static int amdgpu_vm_update_level(struct amdgpu_device *adev,
789 struct amdgpu_vm *vm,
790 struct amdgpu_vm_pt *parent,
791 unsigned level)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400792{
Christian Königf8991ba2016-09-16 15:36:49 +0200793 struct amdgpu_bo *shadow;
Christian König2d55e452016-02-08 17:37:38 +0100794 struct amdgpu_ring *ring;
Christian Königf8991ba2016-09-16 15:36:49 +0200795 uint64_t pd_addr, shadow_addr;
Christian König194d2162016-10-12 15:13:52 +0200796 uint32_t incr = amdgpu_vm_bo_size(adev, level + 1);
Christian Königf8991ba2016-09-16 15:36:49 +0200797 uint64_t last_pde = ~0, last_pt = ~0, last_shadow = ~0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400798 unsigned count = 0, pt_idx, ndw;
Christian Königd71518b2016-02-01 12:20:25 +0100799 struct amdgpu_job *job;
Christian König29efc4f2016-08-04 14:52:50 +0200800 struct amdgpu_pte_update_params params;
Dave Airlie220196b2016-10-28 11:33:52 +1000801 struct dma_fence *fence = NULL;
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800802
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400803 int r;
804
Christian König194d2162016-10-12 15:13:52 +0200805 if (!parent->entries)
806 return 0;
Christian König2d55e452016-02-08 17:37:38 +0100807 ring = container_of(vm->entity.sched, struct amdgpu_ring, sched);
808
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400809 /* padding, etc. */
810 ndw = 64;
811
812 /* assume the worst case */
Christian König194d2162016-10-12 15:13:52 +0200813 ndw += parent->last_entry_used * 6;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400814
Christian König194d2162016-10-12 15:13:52 +0200815 pd_addr = amdgpu_bo_gpu_offset(parent->bo);
816
817 shadow = parent->bo->shadow;
Christian Königf8991ba2016-09-16 15:36:49 +0200818 if (shadow) {
819 r = amdgpu_ttm_bind(&shadow->tbo, &shadow->tbo.mem);
820 if (r)
821 return r;
822 shadow_addr = amdgpu_bo_gpu_offset(shadow);
823 ndw *= 2;
824 } else {
825 shadow_addr = 0;
826 }
827
Christian Königd71518b2016-02-01 12:20:25 +0100828 r = amdgpu_job_alloc_with_ib(adev, ndw * 4, &job);
829 if (r)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400830 return r;
Christian Königd71518b2016-02-01 12:20:25 +0100831
Christian König27c5f362016-08-04 15:02:49 +0200832 memset(&params, 0, sizeof(params));
833 params.adev = adev;
Christian König29efc4f2016-08-04 14:52:50 +0200834 params.ib = &job->ibs[0];
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400835
Christian König194d2162016-10-12 15:13:52 +0200836 /* walk over the address space and update the directory */
837 for (pt_idx = 0; pt_idx <= parent->last_entry_used; ++pt_idx) {
838 struct amdgpu_bo *bo = parent->entries[pt_idx].bo;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400839 uint64_t pde, pt;
840
841 if (bo == NULL)
842 continue;
843
Christian König0fc86832016-09-16 11:46:23 +0200844 if (bo->shadow) {
Christian Königf8991ba2016-09-16 15:36:49 +0200845 struct amdgpu_bo *pt_shadow = bo->shadow;
Christian König0fc86832016-09-16 11:46:23 +0200846
Christian Königf8991ba2016-09-16 15:36:49 +0200847 r = amdgpu_ttm_bind(&pt_shadow->tbo,
848 &pt_shadow->tbo.mem);
Christian König0fc86832016-09-16 11:46:23 +0200849 if (r)
850 return r;
851 }
852
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400853 pt = amdgpu_bo_gpu_offset(bo);
Christian König194d2162016-10-12 15:13:52 +0200854 if (parent->entries[pt_idx].addr == pt)
Christian Königf8991ba2016-09-16 15:36:49 +0200855 continue;
856
Christian König194d2162016-10-12 15:13:52 +0200857 parent->entries[pt_idx].addr = pt;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400858
859 pde = pd_addr + pt_idx * 8;
860 if (((last_pde + 8 * count) != pde) ||
Christian König96105e52016-08-12 12:59:59 +0200861 ((last_pt + incr * count) != pt) ||
862 (count == AMDGPU_VM_MAX_UPDATE_SIZE)) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400863
864 if (count) {
Alex Xiee60f8db2017-03-09 11:36:26 -0500865 uint64_t pt_addr =
866 amdgpu_vm_adjust_mc_addr(adev, last_pt);
867
Christian Königf8991ba2016-09-16 15:36:49 +0200868 if (shadow)
869 amdgpu_vm_do_set_ptes(&params,
870 last_shadow,
Alex Xiee60f8db2017-03-09 11:36:26 -0500871 pt_addr, count,
Christian Königf8991ba2016-09-16 15:36:49 +0200872 incr,
873 AMDGPU_PTE_VALID);
874
Christian Königafef8b82016-08-12 13:29:18 +0200875 amdgpu_vm_do_set_ptes(&params, last_pde,
Alex Xiee60f8db2017-03-09 11:36:26 -0500876 pt_addr, count, incr,
Christian Königafef8b82016-08-12 13:29:18 +0200877 AMDGPU_PTE_VALID);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400878 }
879
880 count = 1;
881 last_pde = pde;
Christian Königf8991ba2016-09-16 15:36:49 +0200882 last_shadow = shadow_addr + pt_idx * 8;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400883 last_pt = pt;
884 } else {
885 ++count;
886 }
887 }
888
Christian Königf8991ba2016-09-16 15:36:49 +0200889 if (count) {
Alex Xiee60f8db2017-03-09 11:36:26 -0500890 uint64_t pt_addr = amdgpu_vm_adjust_mc_addr(adev, last_pt);
891
Christian König67003a12016-10-12 14:46:26 +0200892 if (vm->root.bo->shadow)
Alex Xiee60f8db2017-03-09 11:36:26 -0500893 amdgpu_vm_do_set_ptes(&params, last_shadow, pt_addr,
Christian Königf8991ba2016-09-16 15:36:49 +0200894 count, incr, AMDGPU_PTE_VALID);
895
Alex Xiee60f8db2017-03-09 11:36:26 -0500896 amdgpu_vm_do_set_ptes(&params, last_pde, pt_addr,
Christian Königafef8b82016-08-12 13:29:18 +0200897 count, incr, AMDGPU_PTE_VALID);
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800898 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400899
Christian Königf8991ba2016-09-16 15:36:49 +0200900 if (params.ib->length_dw == 0) {
901 amdgpu_job_free(job);
Christian König194d2162016-10-12 15:13:52 +0200902 } else {
903 amdgpu_ring_pad_ib(ring, params.ib);
904 amdgpu_sync_resv(adev, &job->sync, parent->bo->tbo.resv,
Christian Königf8991ba2016-09-16 15:36:49 +0200905 AMDGPU_FENCE_OWNER_VM);
Christian König194d2162016-10-12 15:13:52 +0200906 if (shadow)
907 amdgpu_sync_resv(adev, &job->sync, shadow->tbo.resv,
908 AMDGPU_FENCE_OWNER_VM);
Christian Königf8991ba2016-09-16 15:36:49 +0200909
Christian König194d2162016-10-12 15:13:52 +0200910 WARN_ON(params.ib->length_dw > ndw);
911 r = amdgpu_job_submit(job, ring, &vm->entity,
912 AMDGPU_FENCE_OWNER_VM, &fence);
913 if (r)
914 goto error_free;
Christian Königf8991ba2016-09-16 15:36:49 +0200915
Christian König194d2162016-10-12 15:13:52 +0200916 amdgpu_bo_fence(parent->bo, fence, true);
917 dma_fence_put(vm->last_dir_update);
918 vm->last_dir_update = dma_fence_get(fence);
919 dma_fence_put(fence);
920 }
921 /*
922 * Recurse into the subdirectories. This recursion is harmless because
923 * we only have a maximum of 5 layers.
924 */
925 for (pt_idx = 0; pt_idx <= parent->last_entry_used; ++pt_idx) {
926 struct amdgpu_vm_pt *entry = &parent->entries[pt_idx];
927
928 if (!entry->bo)
929 continue;
930
931 r = amdgpu_vm_update_level(adev, vm, entry, level + 1);
932 if (r)
933 return r;
934 }
Christian Königf8991ba2016-09-16 15:36:49 +0200935
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400936 return 0;
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800937
938error_free:
Christian Königd71518b2016-02-01 12:20:25 +0100939 amdgpu_job_free(job);
Chunming Zhou4af9f072015-08-03 12:57:31 +0800940 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400941}
942
Christian König194d2162016-10-12 15:13:52 +0200943/*
944 * amdgpu_vm_update_directories - make sure that all directories are valid
945 *
946 * @adev: amdgpu_device pointer
947 * @vm: requested vm
948 *
949 * Makes sure all directories are up to date.
950 * Returns 0 for success, error for failure.
951 */
952int amdgpu_vm_update_directories(struct amdgpu_device *adev,
953 struct amdgpu_vm *vm)
954{
955 return amdgpu_vm_update_level(adev, vm, &vm->root, 0);
956}
957
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400958/**
Christian König4e2cb642016-10-25 15:52:28 +0200959 * amdgpu_vm_find_pt - find the page table for an address
960 *
961 * @p: see amdgpu_pte_update_params definition
962 * @addr: virtual address in question
963 *
964 * Find the page table BO for a virtual address, return NULL when none found.
965 */
966static struct amdgpu_bo *amdgpu_vm_get_pt(struct amdgpu_pte_update_params *p,
967 uint64_t addr)
968{
969 struct amdgpu_vm_pt *entry = &p->vm->root;
970 unsigned idx, level = p->adev->vm_manager.num_level;
971
972 while (entry->entries) {
973 idx = addr >> (amdgpu_vm_block_size * level--);
974 idx %= amdgpu_bo_size(entry->bo) / 8;
975 entry = &entry->entries[idx];
976 }
977
978 if (level)
979 return NULL;
980
981 return entry->bo;
982}
983
984/**
Christian König92696dd2016-08-05 13:56:35 +0200985 * amdgpu_vm_update_ptes - make sure that page tables are valid
986 *
987 * @params: see amdgpu_pte_update_params definition
988 * @vm: requested vm
989 * @start: start of GPU address range
990 * @end: end of GPU address range
991 * @dst: destination address to map to, the next dst inside the function
992 * @flags: mapping flags
993 *
994 * Update the page tables in the range @start - @end.
995 */
996static void amdgpu_vm_update_ptes(struct amdgpu_pte_update_params *params,
Christian König92696dd2016-08-05 13:56:35 +0200997 uint64_t start, uint64_t end,
Chunming Zhou6b777602016-09-21 16:19:19 +0800998 uint64_t dst, uint64_t flags)
Christian König92696dd2016-08-05 13:56:35 +0200999{
1000 const uint64_t mask = AMDGPU_VM_PTE_COUNT - 1;
1001
1002 uint64_t cur_pe_start, cur_nptes, cur_dst;
1003 uint64_t addr; /* next GPU address to be updated */
Christian König92696dd2016-08-05 13:56:35 +02001004 struct amdgpu_bo *pt;
1005 unsigned nptes; /* next number of ptes to be updated */
1006 uint64_t next_pe_start;
1007
1008 /* initialize the variables */
1009 addr = start;
Christian König4e2cb642016-10-25 15:52:28 +02001010 pt = amdgpu_vm_get_pt(params, addr);
Felix Kuehling1866bac2017-03-28 20:36:12 -04001011 if (!pt) {
1012 pr_err("PT not found, aborting update_ptes\n");
Christian König4e2cb642016-10-25 15:52:28 +02001013 return;
Felix Kuehling1866bac2017-03-28 20:36:12 -04001014 }
Christian König4e2cb642016-10-25 15:52:28 +02001015
Chunming Zhou4c7e8852016-08-15 11:46:21 +08001016 if (params->shadow) {
1017 if (!pt->shadow)
1018 return;
Christian König914b4dc2016-09-28 12:27:37 +02001019 pt = pt->shadow;
Chunming Zhou4c7e8852016-08-15 11:46:21 +08001020 }
Christian König92696dd2016-08-05 13:56:35 +02001021 if ((addr & ~mask) == (end & ~mask))
1022 nptes = end - addr;
1023 else
1024 nptes = AMDGPU_VM_PTE_COUNT - (addr & mask);
1025
1026 cur_pe_start = amdgpu_bo_gpu_offset(pt);
1027 cur_pe_start += (addr & mask) * 8;
1028 cur_nptes = nptes;
1029 cur_dst = dst;
1030
1031 /* for next ptb*/
1032 addr += nptes;
1033 dst += nptes * AMDGPU_GPU_PAGE_SIZE;
1034
1035 /* walk over the address space and update the page tables */
1036 while (addr < end) {
Christian König4e2cb642016-10-25 15:52:28 +02001037 pt = amdgpu_vm_get_pt(params, addr);
Felix Kuehling1866bac2017-03-28 20:36:12 -04001038 if (!pt) {
1039 pr_err("PT not found, aborting update_ptes\n");
Christian König4e2cb642016-10-25 15:52:28 +02001040 return;
Felix Kuehling1866bac2017-03-28 20:36:12 -04001041 }
Christian König4e2cb642016-10-25 15:52:28 +02001042
Chunming Zhou4c7e8852016-08-15 11:46:21 +08001043 if (params->shadow) {
1044 if (!pt->shadow)
1045 return;
Christian König914b4dc2016-09-28 12:27:37 +02001046 pt = pt->shadow;
Chunming Zhou4c7e8852016-08-15 11:46:21 +08001047 }
Christian König92696dd2016-08-05 13:56:35 +02001048
1049 if ((addr & ~mask) == (end & ~mask))
1050 nptes = end - addr;
1051 else
1052 nptes = AMDGPU_VM_PTE_COUNT - (addr & mask);
1053
1054 next_pe_start = amdgpu_bo_gpu_offset(pt);
1055 next_pe_start += (addr & mask) * 8;
1056
Christian König96105e52016-08-12 12:59:59 +02001057 if ((cur_pe_start + 8 * cur_nptes) == next_pe_start &&
1058 ((cur_nptes + nptes) <= AMDGPU_VM_MAX_UPDATE_SIZE)) {
Christian König92696dd2016-08-05 13:56:35 +02001059 /* The next ptb is consecutive to current ptb.
Christian Königafef8b82016-08-12 13:29:18 +02001060 * Don't call the update function now.
Christian König92696dd2016-08-05 13:56:35 +02001061 * Will update two ptbs together in future.
1062 */
1063 cur_nptes += nptes;
1064 } else {
Christian Königafef8b82016-08-12 13:29:18 +02001065 params->func(params, cur_pe_start, cur_dst, cur_nptes,
1066 AMDGPU_GPU_PAGE_SIZE, flags);
Christian König92696dd2016-08-05 13:56:35 +02001067
1068 cur_pe_start = next_pe_start;
1069 cur_nptes = nptes;
1070 cur_dst = dst;
1071 }
1072
1073 /* for next ptb*/
1074 addr += nptes;
1075 dst += nptes * AMDGPU_GPU_PAGE_SIZE;
1076 }
1077
Christian Königafef8b82016-08-12 13:29:18 +02001078 params->func(params, cur_pe_start, cur_dst, cur_nptes,
1079 AMDGPU_GPU_PAGE_SIZE, flags);
Christian König92696dd2016-08-05 13:56:35 +02001080}
1081
1082/*
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001083 * amdgpu_vm_frag_ptes - add fragment information to PTEs
1084 *
Christian König29efc4f2016-08-04 14:52:50 +02001085 * @params: see amdgpu_pte_update_params definition
Christian König92696dd2016-08-05 13:56:35 +02001086 * @vm: requested vm
1087 * @start: first PTE to handle
1088 * @end: last PTE to handle
1089 * @dst: addr those PTEs should point to
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001090 * @flags: hw mapping flags
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001091 */
Christian König27c5f362016-08-04 15:02:49 +02001092static void amdgpu_vm_frag_ptes(struct amdgpu_pte_update_params *params,
Christian König92696dd2016-08-05 13:56:35 +02001093 uint64_t start, uint64_t end,
Chunming Zhou6b777602016-09-21 16:19:19 +08001094 uint64_t dst, uint64_t flags)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001095{
1096 /**
1097 * The MC L1 TLB supports variable sized pages, based on a fragment
1098 * field in the PTE. When this field is set to a non-zero value, page
1099 * granularity is increased from 4KB to (1 << (12 + frag)). The PTE
1100 * flags are considered valid for all PTEs within the fragment range
1101 * and corresponding mappings are assumed to be physically contiguous.
1102 *
1103 * The L1 TLB can store a single PTE for the whole fragment,
1104 * significantly increasing the space available for translation
1105 * caching. This leads to large improvements in throughput when the
1106 * TLB is under pressure.
1107 *
1108 * The L2 TLB distributes small and large fragments into two
1109 * asymmetric partitions. The large fragment cache is significantly
1110 * larger. Thus, we try to use large fragments wherever possible.
1111 * Userspace can support this by aligning virtual base address and
1112 * allocation size to the fragment size.
1113 */
1114
Christian König80366172016-10-04 13:39:43 +02001115 /* SI and newer are optimized for 64KB */
1116 uint64_t frag_flags = AMDGPU_PTE_FRAG(AMDGPU_LOG2_PAGES_PER_FRAG);
1117 uint64_t frag_align = 1 << AMDGPU_LOG2_PAGES_PER_FRAG;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001118
Christian König92696dd2016-08-05 13:56:35 +02001119 uint64_t frag_start = ALIGN(start, frag_align);
1120 uint64_t frag_end = end & ~(frag_align - 1);
Christian König31f6c1f2016-01-26 12:37:49 +01001121
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001122 /* system pages are non continuously */
Christian Königb7fc2cb2016-08-11 16:44:15 +02001123 if (params->src || !(flags & AMDGPU_PTE_VALID) ||
Christian König92696dd2016-08-05 13:56:35 +02001124 (frag_start >= frag_end)) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001125
Christian König49ac8a22016-10-13 15:09:08 +02001126 amdgpu_vm_update_ptes(params, start, end, dst, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001127 return;
1128 }
1129
1130 /* handle the 4K area at the beginning */
Christian König92696dd2016-08-05 13:56:35 +02001131 if (start != frag_start) {
Christian König49ac8a22016-10-13 15:09:08 +02001132 amdgpu_vm_update_ptes(params, start, frag_start,
Christian König92696dd2016-08-05 13:56:35 +02001133 dst, flags);
1134 dst += (frag_start - start) * AMDGPU_GPU_PAGE_SIZE;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001135 }
1136
1137 /* handle the area in the middle */
Christian König49ac8a22016-10-13 15:09:08 +02001138 amdgpu_vm_update_ptes(params, frag_start, frag_end, dst,
Christian König80366172016-10-04 13:39:43 +02001139 flags | frag_flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001140
1141 /* handle the 4K area at the end */
Christian König92696dd2016-08-05 13:56:35 +02001142 if (frag_end != end) {
1143 dst += (frag_end - frag_start) * AMDGPU_GPU_PAGE_SIZE;
Christian König49ac8a22016-10-13 15:09:08 +02001144 amdgpu_vm_update_ptes(params, frag_end, end, dst, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001145 }
1146}
1147
1148/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001149 * amdgpu_vm_bo_update_mapping - update a mapping in the vm page table
1150 *
1151 * @adev: amdgpu_device pointer
Christian König3cabaa52016-06-06 10:17:58 +02001152 * @exclusive: fence we need to sync to
Christian Königfa3ab3c2016-03-18 21:00:35 +01001153 * @src: address where to copy page table entries from
1154 * @pages_addr: DMA addresses to use for mapping
Christian Königa14faa62016-01-25 14:27:31 +01001155 * @vm: requested vm
1156 * @start: start of mapped range
1157 * @last: last mapped entry
1158 * @flags: flags for the entries
1159 * @addr: addr to set the area to
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001160 * @fence: optional resulting fence
1161 *
Christian Königa14faa62016-01-25 14:27:31 +01001162 * Fill in the page table entries between @start and @last.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001163 * Returns 0 for success, -EINVAL for failure.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001164 */
1165static int amdgpu_vm_bo_update_mapping(struct amdgpu_device *adev,
Chris Wilsonf54d1862016-10-25 13:00:45 +01001166 struct dma_fence *exclusive,
Christian Königfa3ab3c2016-03-18 21:00:35 +01001167 uint64_t src,
1168 dma_addr_t *pages_addr,
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001169 struct amdgpu_vm *vm,
Christian Königa14faa62016-01-25 14:27:31 +01001170 uint64_t start, uint64_t last,
Chunming Zhou6b777602016-09-21 16:19:19 +08001171 uint64_t flags, uint64_t addr,
Chris Wilsonf54d1862016-10-25 13:00:45 +01001172 struct dma_fence **fence)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001173{
Christian König2d55e452016-02-08 17:37:38 +01001174 struct amdgpu_ring *ring;
Christian Königa1e08d32016-01-26 11:40:46 +01001175 void *owner = AMDGPU_FENCE_OWNER_VM;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001176 unsigned nptes, ncmds, ndw;
Christian Königd71518b2016-02-01 12:20:25 +01001177 struct amdgpu_job *job;
Christian König29efc4f2016-08-04 14:52:50 +02001178 struct amdgpu_pte_update_params params;
Chris Wilsonf54d1862016-10-25 13:00:45 +01001179 struct dma_fence *f = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001180 int r;
1181
Christian Königafef8b82016-08-12 13:29:18 +02001182 memset(&params, 0, sizeof(params));
1183 params.adev = adev;
Christian König49ac8a22016-10-13 15:09:08 +02001184 params.vm = vm;
Christian Königafef8b82016-08-12 13:29:18 +02001185 params.src = src;
1186
Christian König2d55e452016-02-08 17:37:38 +01001187 ring = container_of(vm->entity.sched, struct amdgpu_ring, sched);
Christian König27c5f362016-08-04 15:02:49 +02001188
Christian Königa1e08d32016-01-26 11:40:46 +01001189 /* sync to everything on unmapping */
1190 if (!(flags & AMDGPU_PTE_VALID))
1191 owner = AMDGPU_FENCE_OWNER_UNDEFINED;
1192
Christian Königa14faa62016-01-25 14:27:31 +01001193 nptes = last - start + 1;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001194
1195 /*
1196 * reserve space for one command every (1 << BLOCK_SIZE)
1197 * entries or 2k dwords (whatever is smaller)
1198 */
1199 ncmds = (nptes >> min(amdgpu_vm_block_size, 11)) + 1;
1200
1201 /* padding, etc. */
1202 ndw = 64;
1203
Christian Königb0456f92016-08-11 14:06:54 +02001204 if (src) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001205 /* only copy commands needed */
1206 ndw += ncmds * 7;
1207
Christian Königafef8b82016-08-12 13:29:18 +02001208 params.func = amdgpu_vm_do_copy_ptes;
1209
Christian Königb0456f92016-08-11 14:06:54 +02001210 } else if (pages_addr) {
1211 /* copy commands needed */
1212 ndw += ncmds * 7;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001213
Christian Königb0456f92016-08-11 14:06:54 +02001214 /* and also PTEs */
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001215 ndw += nptes * 2;
1216
Christian Königafef8b82016-08-12 13:29:18 +02001217 params.func = amdgpu_vm_do_copy_ptes;
1218
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001219 } else {
1220 /* set page commands needed */
1221 ndw += ncmds * 10;
1222
1223 /* two extra commands for begin/end of fragment */
1224 ndw += 2 * 10;
Christian Königafef8b82016-08-12 13:29:18 +02001225
1226 params.func = amdgpu_vm_do_set_ptes;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001227 }
1228
Christian Königd71518b2016-02-01 12:20:25 +01001229 r = amdgpu_job_alloc_with_ib(adev, ndw * 4, &job);
1230 if (r)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001231 return r;
Christian Königd71518b2016-02-01 12:20:25 +01001232
Christian König29efc4f2016-08-04 14:52:50 +02001233 params.ib = &job->ibs[0];
Chunming Zhoud5fc5e82015-07-21 16:52:10 +08001234
Christian Königb0456f92016-08-11 14:06:54 +02001235 if (!src && pages_addr) {
1236 uint64_t *pte;
1237 unsigned i;
1238
1239 /* Put the PTEs at the end of the IB. */
1240 i = ndw - nptes * 2;
1241 pte= (uint64_t *)&(job->ibs->ptr[i]);
1242 params.src = job->ibs->gpu_addr + i * 4;
1243
1244 for (i = 0; i < nptes; ++i) {
1245 pte[i] = amdgpu_vm_map_gart(pages_addr, addr + i *
1246 AMDGPU_GPU_PAGE_SIZE);
1247 pte[i] |= flags;
1248 }
Christian Königd7a4ac62016-09-25 11:54:00 +02001249 addr = 0;
Christian Königb0456f92016-08-11 14:06:54 +02001250 }
1251
Christian König3cabaa52016-06-06 10:17:58 +02001252 r = amdgpu_sync_fence(adev, &job->sync, exclusive);
1253 if (r)
1254 goto error_free;
1255
Christian König67003a12016-10-12 14:46:26 +02001256 r = amdgpu_sync_resv(adev, &job->sync, vm->root.bo->tbo.resv,
Christian Königa1e08d32016-01-26 11:40:46 +01001257 owner);
1258 if (r)
1259 goto error_free;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001260
Christian König67003a12016-10-12 14:46:26 +02001261 r = reservation_object_reserve_shared(vm->root.bo->tbo.resv);
Christian Königa1e08d32016-01-26 11:40:46 +01001262 if (r)
1263 goto error_free;
1264
Chunming Zhou4c7e8852016-08-15 11:46:21 +08001265 params.shadow = true;
Christian König49ac8a22016-10-13 15:09:08 +02001266 amdgpu_vm_frag_ptes(&params, start, last + 1, addr, flags);
Chunming Zhou4c7e8852016-08-15 11:46:21 +08001267 params.shadow = false;
Christian König49ac8a22016-10-13 15:09:08 +02001268 amdgpu_vm_frag_ptes(&params, start, last + 1, addr, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001269
Christian König29efc4f2016-08-04 14:52:50 +02001270 amdgpu_ring_pad_ib(ring, params.ib);
1271 WARN_ON(params.ib->length_dw > ndw);
Christian König2bd9ccf2016-02-01 12:53:58 +01001272 r = amdgpu_job_submit(job, ring, &vm->entity,
1273 AMDGPU_FENCE_OWNER_VM, &f);
Chunming Zhou4af9f072015-08-03 12:57:31 +08001274 if (r)
1275 goto error_free;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001276
Christian König67003a12016-10-12 14:46:26 +02001277 amdgpu_bo_fence(vm->root.bo, f, true);
Christian König284710f2017-01-30 11:09:31 +01001278 dma_fence_put(*fence);
1279 *fence = f;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001280 return 0;
Chunming Zhoud5fc5e82015-07-21 16:52:10 +08001281
1282error_free:
Christian Königd71518b2016-02-01 12:20:25 +01001283 amdgpu_job_free(job);
Chunming Zhou4af9f072015-08-03 12:57:31 +08001284 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001285}
1286
1287/**
Christian Königa14faa62016-01-25 14:27:31 +01001288 * amdgpu_vm_bo_split_mapping - split a mapping into smaller chunks
1289 *
1290 * @adev: amdgpu_device pointer
Christian König3cabaa52016-06-06 10:17:58 +02001291 * @exclusive: fence we need to sync to
Christian König8358dce2016-03-30 10:50:25 +02001292 * @gtt_flags: flags as they are used for GTT
1293 * @pages_addr: DMA addresses to use for mapping
Christian Königa14faa62016-01-25 14:27:31 +01001294 * @vm: requested vm
1295 * @mapping: mapped range and flags to use for the update
Christian König8358dce2016-03-30 10:50:25 +02001296 * @flags: HW flags for the mapping
Christian König63e0ba42016-08-16 17:38:37 +02001297 * @nodes: array of drm_mm_nodes with the MC addresses
Christian Königa14faa62016-01-25 14:27:31 +01001298 * @fence: optional resulting fence
1299 *
1300 * Split the mapping into smaller chunks so that each update fits
1301 * into a SDMA IB.
1302 * Returns 0 for success, -EINVAL for failure.
1303 */
1304static int amdgpu_vm_bo_split_mapping(struct amdgpu_device *adev,
Chris Wilsonf54d1862016-10-25 13:00:45 +01001305 struct dma_fence *exclusive,
Chunming Zhou6b777602016-09-21 16:19:19 +08001306 uint64_t gtt_flags,
Christian König8358dce2016-03-30 10:50:25 +02001307 dma_addr_t *pages_addr,
Christian Königa14faa62016-01-25 14:27:31 +01001308 struct amdgpu_vm *vm,
1309 struct amdgpu_bo_va_mapping *mapping,
Chunming Zhou6b777602016-09-21 16:19:19 +08001310 uint64_t flags,
Christian König63e0ba42016-08-16 17:38:37 +02001311 struct drm_mm_node *nodes,
Chris Wilsonf54d1862016-10-25 13:00:45 +01001312 struct dma_fence **fence)
Christian Königa14faa62016-01-25 14:27:31 +01001313{
Christian Königa9f87f62017-03-30 14:03:59 +02001314 uint64_t pfn, src = 0, start = mapping->start;
Christian Königa14faa62016-01-25 14:27:31 +01001315 int r;
1316
1317 /* normally,bo_va->flags only contians READABLE and WIRTEABLE bit go here
1318 * but in case of something, we filter the flags in first place
1319 */
1320 if (!(mapping->flags & AMDGPU_PTE_READABLE))
1321 flags &= ~AMDGPU_PTE_READABLE;
1322 if (!(mapping->flags & AMDGPU_PTE_WRITEABLE))
1323 flags &= ~AMDGPU_PTE_WRITEABLE;
1324
Alex Xie15b31c52017-03-03 16:47:11 -05001325 flags &= ~AMDGPU_PTE_EXECUTABLE;
1326 flags |= mapping->flags & AMDGPU_PTE_EXECUTABLE;
1327
Alex Xieb0fd18b2017-03-03 16:49:39 -05001328 flags &= ~AMDGPU_PTE_MTYPE_MASK;
1329 flags |= (mapping->flags & AMDGPU_PTE_MTYPE_MASK);
1330
Christian Königa14faa62016-01-25 14:27:31 +01001331 trace_amdgpu_vm_bo_update(mapping);
1332
Christian König63e0ba42016-08-16 17:38:37 +02001333 pfn = mapping->offset >> PAGE_SHIFT;
1334 if (nodes) {
1335 while (pfn >= nodes->size) {
1336 pfn -= nodes->size;
1337 ++nodes;
1338 }
Christian Königfa3ab3c2016-03-18 21:00:35 +01001339 }
Christian Königa14faa62016-01-25 14:27:31 +01001340
Christian König63e0ba42016-08-16 17:38:37 +02001341 do {
1342 uint64_t max_entries;
1343 uint64_t addr, last;
Christian Königa14faa62016-01-25 14:27:31 +01001344
Christian König63e0ba42016-08-16 17:38:37 +02001345 if (nodes) {
1346 addr = nodes->start << PAGE_SHIFT;
1347 max_entries = (nodes->size - pfn) *
1348 (PAGE_SIZE / AMDGPU_GPU_PAGE_SIZE);
1349 } else {
1350 addr = 0;
1351 max_entries = S64_MAX;
1352 }
Christian Königa14faa62016-01-25 14:27:31 +01001353
Christian König63e0ba42016-08-16 17:38:37 +02001354 if (pages_addr) {
1355 if (flags == gtt_flags)
1356 src = adev->gart.table_addr +
1357 (addr >> AMDGPU_GPU_PAGE_SHIFT) * 8;
1358 else
1359 max_entries = min(max_entries, 16ull * 1024ull);
1360 addr = 0;
1361 } else if (flags & AMDGPU_PTE_VALID) {
1362 addr += adev->vm_manager.vram_base_offset;
1363 }
1364 addr += pfn << PAGE_SHIFT;
1365
Christian Königa9f87f62017-03-30 14:03:59 +02001366 last = min((uint64_t)mapping->last, start + max_entries - 1);
Christian König3cabaa52016-06-06 10:17:58 +02001367 r = amdgpu_vm_bo_update_mapping(adev, exclusive,
1368 src, pages_addr, vm,
Christian Königa14faa62016-01-25 14:27:31 +01001369 start, last, flags, addr,
1370 fence);
1371 if (r)
1372 return r;
1373
Christian König63e0ba42016-08-16 17:38:37 +02001374 pfn += last - start + 1;
1375 if (nodes && nodes->size == pfn) {
1376 pfn = 0;
1377 ++nodes;
1378 }
Christian Königa14faa62016-01-25 14:27:31 +01001379 start = last + 1;
Christian König63e0ba42016-08-16 17:38:37 +02001380
Christian Königa9f87f62017-03-30 14:03:59 +02001381 } while (unlikely(start != mapping->last + 1));
Christian Königa14faa62016-01-25 14:27:31 +01001382
1383 return 0;
1384}
1385
1386/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001387 * amdgpu_vm_bo_update - update all BO mappings in the vm page table
1388 *
1389 * @adev: amdgpu_device pointer
1390 * @bo_va: requested BO and VM object
Christian König99e124f2016-08-16 14:43:17 +02001391 * @clear: if true clear the entries
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001392 *
1393 * Fill in the page table entries for @bo_va.
1394 * Returns 0 for success, -EINVAL for failure.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001395 */
1396int amdgpu_vm_bo_update(struct amdgpu_device *adev,
1397 struct amdgpu_bo_va *bo_va,
Christian König99e124f2016-08-16 14:43:17 +02001398 bool clear)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001399{
1400 struct amdgpu_vm *vm = bo_va->vm;
1401 struct amdgpu_bo_va_mapping *mapping;
Christian König8358dce2016-03-30 10:50:25 +02001402 dma_addr_t *pages_addr = NULL;
Chunming Zhou6b777602016-09-21 16:19:19 +08001403 uint64_t gtt_flags, flags;
Christian König99e124f2016-08-16 14:43:17 +02001404 struct ttm_mem_reg *mem;
Christian König63e0ba42016-08-16 17:38:37 +02001405 struct drm_mm_node *nodes;
Chris Wilsonf54d1862016-10-25 13:00:45 +01001406 struct dma_fence *exclusive;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001407 int r;
1408
Christian Königa5f6b5b2017-01-30 11:01:38 +01001409 if (clear || !bo_va->bo) {
Christian König99e124f2016-08-16 14:43:17 +02001410 mem = NULL;
Christian König63e0ba42016-08-16 17:38:37 +02001411 nodes = NULL;
Christian König99e124f2016-08-16 14:43:17 +02001412 exclusive = NULL;
1413 } else {
Christian König8358dce2016-03-30 10:50:25 +02001414 struct ttm_dma_tt *ttm;
1415
Christian König99e124f2016-08-16 14:43:17 +02001416 mem = &bo_va->bo->tbo.mem;
Christian König63e0ba42016-08-16 17:38:37 +02001417 nodes = mem->mm_node;
1418 if (mem->mem_type == TTM_PL_TT) {
Christian König8358dce2016-03-30 10:50:25 +02001419 ttm = container_of(bo_va->bo->tbo.ttm, struct
1420 ttm_dma_tt, ttm);
1421 pages_addr = ttm->dma_address;
Christian König9ab21462015-11-30 14:19:26 +01001422 }
Christian König3cabaa52016-06-06 10:17:58 +02001423 exclusive = reservation_object_get_excl(bo_va->bo->tbo.resv);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001424 }
1425
Christian Königa5f6b5b2017-01-30 11:01:38 +01001426 if (bo_va->bo) {
1427 flags = amdgpu_ttm_tt_pte_flags(adev, bo_va->bo->tbo.ttm, mem);
1428 gtt_flags = (amdgpu_ttm_is_bound(bo_va->bo->tbo.ttm) &&
1429 adev == amdgpu_ttm_adev(bo_va->bo->tbo.bdev)) ?
1430 flags : 0;
1431 } else {
1432 flags = 0x0;
1433 gtt_flags = ~0x0;
1434 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001435
Christian König7fc11952015-07-30 11:53:42 +02001436 spin_lock(&vm->status_lock);
1437 if (!list_empty(&bo_va->vm_status))
1438 list_splice_init(&bo_va->valids, &bo_va->invalids);
1439 spin_unlock(&vm->status_lock);
1440
1441 list_for_each_entry(mapping, &bo_va->invalids, list) {
Christian König3cabaa52016-06-06 10:17:58 +02001442 r = amdgpu_vm_bo_split_mapping(adev, exclusive,
1443 gtt_flags, pages_addr, vm,
Christian König63e0ba42016-08-16 17:38:37 +02001444 mapping, flags, nodes,
Christian König8358dce2016-03-30 10:50:25 +02001445 &bo_va->last_pt_update);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001446 if (r)
1447 return r;
1448 }
1449
Christian Königd6c10f62015-09-28 12:00:23 +02001450 if (trace_amdgpu_vm_bo_mapping_enabled()) {
1451 list_for_each_entry(mapping, &bo_va->valids, list)
1452 trace_amdgpu_vm_bo_mapping(mapping);
1453
1454 list_for_each_entry(mapping, &bo_va->invalids, list)
1455 trace_amdgpu_vm_bo_mapping(mapping);
1456 }
1457
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001458 spin_lock(&vm->status_lock);
monk.liu6d1d0ef2015-08-14 13:36:41 +08001459 list_splice_init(&bo_va->invalids, &bo_va->valids);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001460 list_del_init(&bo_va->vm_status);
Christian König99e124f2016-08-16 14:43:17 +02001461 if (clear)
Christian König7fc11952015-07-30 11:53:42 +02001462 list_add(&bo_va->vm_status, &vm->cleared);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001463 spin_unlock(&vm->status_lock);
1464
1465 return 0;
1466}
1467
1468/**
Christian König284710f2017-01-30 11:09:31 +01001469 * amdgpu_vm_update_prt_state - update the global PRT state
1470 */
1471static void amdgpu_vm_update_prt_state(struct amdgpu_device *adev)
1472{
1473 unsigned long flags;
1474 bool enable;
1475
1476 spin_lock_irqsave(&adev->vm_manager.prt_lock, flags);
Christian König451bc8e2017-02-14 16:02:52 +01001477 enable = !!atomic_read(&adev->vm_manager.num_prt_users);
Christian König284710f2017-01-30 11:09:31 +01001478 adev->gart.gart_funcs->set_prt(adev, enable);
1479 spin_unlock_irqrestore(&adev->vm_manager.prt_lock, flags);
1480}
1481
1482/**
Christian König4388fc22017-03-13 10:13:36 +01001483 * amdgpu_vm_prt_get - add a PRT user
Christian König451bc8e2017-02-14 16:02:52 +01001484 */
1485static void amdgpu_vm_prt_get(struct amdgpu_device *adev)
1486{
Christian König4388fc22017-03-13 10:13:36 +01001487 if (!adev->gart.gart_funcs->set_prt)
1488 return;
1489
Christian König451bc8e2017-02-14 16:02:52 +01001490 if (atomic_inc_return(&adev->vm_manager.num_prt_users) == 1)
1491 amdgpu_vm_update_prt_state(adev);
1492}
1493
1494/**
Christian König0b15f2f2017-02-14 15:47:03 +01001495 * amdgpu_vm_prt_put - drop a PRT user
1496 */
1497static void amdgpu_vm_prt_put(struct amdgpu_device *adev)
1498{
Christian König451bc8e2017-02-14 16:02:52 +01001499 if (atomic_dec_return(&adev->vm_manager.num_prt_users) == 0)
Christian König0b15f2f2017-02-14 15:47:03 +01001500 amdgpu_vm_update_prt_state(adev);
1501}
1502
1503/**
Christian König451bc8e2017-02-14 16:02:52 +01001504 * amdgpu_vm_prt_cb - callback for updating the PRT status
Christian König284710f2017-01-30 11:09:31 +01001505 */
1506static void amdgpu_vm_prt_cb(struct dma_fence *fence, struct dma_fence_cb *_cb)
1507{
1508 struct amdgpu_prt_cb *cb = container_of(_cb, struct amdgpu_prt_cb, cb);
1509
Christian König0b15f2f2017-02-14 15:47:03 +01001510 amdgpu_vm_prt_put(cb->adev);
Christian König284710f2017-01-30 11:09:31 +01001511 kfree(cb);
1512}
1513
1514/**
Christian König451bc8e2017-02-14 16:02:52 +01001515 * amdgpu_vm_add_prt_cb - add callback for updating the PRT status
1516 */
1517static void amdgpu_vm_add_prt_cb(struct amdgpu_device *adev,
1518 struct dma_fence *fence)
1519{
Christian König4388fc22017-03-13 10:13:36 +01001520 struct amdgpu_prt_cb *cb;
Christian König451bc8e2017-02-14 16:02:52 +01001521
Christian König4388fc22017-03-13 10:13:36 +01001522 if (!adev->gart.gart_funcs->set_prt)
1523 return;
1524
1525 cb = kmalloc(sizeof(struct amdgpu_prt_cb), GFP_KERNEL);
Christian König451bc8e2017-02-14 16:02:52 +01001526 if (!cb) {
1527 /* Last resort when we are OOM */
1528 if (fence)
1529 dma_fence_wait(fence, false);
1530
1531 amdgpu_vm_prt_put(cb->adev);
1532 } else {
1533 cb->adev = adev;
1534 if (!fence || dma_fence_add_callback(fence, &cb->cb,
1535 amdgpu_vm_prt_cb))
1536 amdgpu_vm_prt_cb(fence, &cb->cb);
1537 }
1538}
1539
1540/**
Christian König284710f2017-01-30 11:09:31 +01001541 * amdgpu_vm_free_mapping - free a mapping
1542 *
1543 * @adev: amdgpu_device pointer
1544 * @vm: requested vm
1545 * @mapping: mapping to be freed
1546 * @fence: fence of the unmap operation
1547 *
1548 * Free a mapping and make sure we decrease the PRT usage count if applicable.
1549 */
1550static void amdgpu_vm_free_mapping(struct amdgpu_device *adev,
1551 struct amdgpu_vm *vm,
1552 struct amdgpu_bo_va_mapping *mapping,
1553 struct dma_fence *fence)
1554{
Christian König451bc8e2017-02-14 16:02:52 +01001555 if (mapping->flags & AMDGPU_PTE_PRT)
1556 amdgpu_vm_add_prt_cb(adev, fence);
Christian König284710f2017-01-30 11:09:31 +01001557 kfree(mapping);
1558}
1559
1560/**
Christian König451bc8e2017-02-14 16:02:52 +01001561 * amdgpu_vm_prt_fini - finish all prt mappings
1562 *
1563 * @adev: amdgpu_device pointer
1564 * @vm: requested vm
1565 *
1566 * Register a cleanup callback to disable PRT support after VM dies.
1567 */
1568static void amdgpu_vm_prt_fini(struct amdgpu_device *adev, struct amdgpu_vm *vm)
1569{
Christian König67003a12016-10-12 14:46:26 +02001570 struct reservation_object *resv = vm->root.bo->tbo.resv;
Christian König451bc8e2017-02-14 16:02:52 +01001571 struct dma_fence *excl, **shared;
1572 unsigned i, shared_count;
1573 int r;
1574
1575 r = reservation_object_get_fences_rcu(resv, &excl,
1576 &shared_count, &shared);
1577 if (r) {
1578 /* Not enough memory to grab the fence list, as last resort
1579 * block for all the fences to complete.
1580 */
1581 reservation_object_wait_timeout_rcu(resv, true, false,
1582 MAX_SCHEDULE_TIMEOUT);
1583 return;
1584 }
1585
1586 /* Add a callback for each fence in the reservation object */
1587 amdgpu_vm_prt_get(adev);
1588 amdgpu_vm_add_prt_cb(adev, excl);
1589
1590 for (i = 0; i < shared_count; ++i) {
1591 amdgpu_vm_prt_get(adev);
1592 amdgpu_vm_add_prt_cb(adev, shared[i]);
1593 }
1594
1595 kfree(shared);
1596}
1597
1598/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001599 * amdgpu_vm_clear_freed - clear freed BOs in the PT
1600 *
1601 * @adev: amdgpu_device pointer
1602 * @vm: requested vm
Nicolai Hähnlef3467812017-03-23 19:36:31 +01001603 * @fence: optional resulting fence (unchanged if no work needed to be done
1604 * or if an error occurred)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001605 *
1606 * Make sure all freed BOs are cleared in the PT.
1607 * Returns 0 for success.
1608 *
1609 * PTs have to be reserved and mutex must be locked!
1610 */
1611int amdgpu_vm_clear_freed(struct amdgpu_device *adev,
Nicolai Hähnlef3467812017-03-23 19:36:31 +01001612 struct amdgpu_vm *vm,
1613 struct dma_fence **fence)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001614{
1615 struct amdgpu_bo_va_mapping *mapping;
Nicolai Hähnlef3467812017-03-23 19:36:31 +01001616 struct dma_fence *f = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001617 int r;
1618
1619 while (!list_empty(&vm->freed)) {
1620 mapping = list_first_entry(&vm->freed,
1621 struct amdgpu_bo_va_mapping, list);
1622 list_del(&mapping->list);
Christian Könige17841b2016-03-08 17:52:01 +01001623
Christian König3cabaa52016-06-06 10:17:58 +02001624 r = amdgpu_vm_bo_split_mapping(adev, NULL, 0, NULL, vm, mapping,
Nicolai Hähnlef3467812017-03-23 19:36:31 +01001625 0, 0, &f);
1626 amdgpu_vm_free_mapping(adev, vm, mapping, f);
Christian König284710f2017-01-30 11:09:31 +01001627 if (r) {
Nicolai Hähnlef3467812017-03-23 19:36:31 +01001628 dma_fence_put(f);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001629 return r;
Christian König284710f2017-01-30 11:09:31 +01001630 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001631 }
Nicolai Hähnlef3467812017-03-23 19:36:31 +01001632
1633 if (fence && f) {
1634 dma_fence_put(*fence);
1635 *fence = f;
1636 } else {
1637 dma_fence_put(f);
1638 }
1639
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001640 return 0;
1641
1642}
1643
1644/**
1645 * amdgpu_vm_clear_invalids - clear invalidated BOs in the PT
1646 *
1647 * @adev: amdgpu_device pointer
1648 * @vm: requested vm
1649 *
1650 * Make sure all invalidated BOs are cleared in the PT.
1651 * Returns 0 for success.
1652 *
1653 * PTs have to be reserved and mutex must be locked!
1654 */
1655int amdgpu_vm_clear_invalids(struct amdgpu_device *adev,
monk.liucfe2c972015-05-26 15:01:54 +08001656 struct amdgpu_vm *vm, struct amdgpu_sync *sync)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001657{
monk.liucfe2c972015-05-26 15:01:54 +08001658 struct amdgpu_bo_va *bo_va = NULL;
Christian König91e1a522015-07-06 22:06:40 +02001659 int r = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001660
1661 spin_lock(&vm->status_lock);
1662 while (!list_empty(&vm->invalidated)) {
1663 bo_va = list_first_entry(&vm->invalidated,
1664 struct amdgpu_bo_va, vm_status);
1665 spin_unlock(&vm->status_lock);
Christian König32b41ac2016-03-08 18:03:27 +01001666
Christian König99e124f2016-08-16 14:43:17 +02001667 r = amdgpu_vm_bo_update(adev, bo_va, true);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001668 if (r)
1669 return r;
1670
1671 spin_lock(&vm->status_lock);
1672 }
1673 spin_unlock(&vm->status_lock);
1674
monk.liucfe2c972015-05-26 15:01:54 +08001675 if (bo_va)
Chunming Zhoubb1e38a42015-08-03 18:19:38 +08001676 r = amdgpu_sync_fence(adev, sync, bo_va->last_pt_update);
Christian König91e1a522015-07-06 22:06:40 +02001677
1678 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001679}
1680
1681/**
1682 * amdgpu_vm_bo_add - add a bo to a specific vm
1683 *
1684 * @adev: amdgpu_device pointer
1685 * @vm: requested vm
1686 * @bo: amdgpu buffer object
1687 *
Christian König8843dbb2016-01-26 12:17:11 +01001688 * Add @bo into the requested vm.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001689 * Add @bo to the list of bos associated with the vm
1690 * Returns newly added bo_va or NULL for failure
1691 *
1692 * Object has to be reserved!
1693 */
1694struct amdgpu_bo_va *amdgpu_vm_bo_add(struct amdgpu_device *adev,
1695 struct amdgpu_vm *vm,
1696 struct amdgpu_bo *bo)
1697{
1698 struct amdgpu_bo_va *bo_va;
1699
1700 bo_va = kzalloc(sizeof(struct amdgpu_bo_va), GFP_KERNEL);
1701 if (bo_va == NULL) {
1702 return NULL;
1703 }
1704 bo_va->vm = vm;
1705 bo_va->bo = bo;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001706 bo_va->ref_count = 1;
1707 INIT_LIST_HEAD(&bo_va->bo_list);
Christian König7fc11952015-07-30 11:53:42 +02001708 INIT_LIST_HEAD(&bo_va->valids);
1709 INIT_LIST_HEAD(&bo_va->invalids);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001710 INIT_LIST_HEAD(&bo_va->vm_status);
Christian König32b41ac2016-03-08 18:03:27 +01001711
Christian Königa5f6b5b2017-01-30 11:01:38 +01001712 if (bo)
1713 list_add_tail(&bo_va->bo_list, &bo->va);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001714
1715 return bo_va;
1716}
1717
1718/**
1719 * amdgpu_vm_bo_map - map bo inside a vm
1720 *
1721 * @adev: amdgpu_device pointer
1722 * @bo_va: bo_va to store the address
1723 * @saddr: where to map the BO
1724 * @offset: requested offset in the BO
1725 * @flags: attributes of pages (read/write/valid/etc.)
1726 *
1727 * Add a mapping of the BO at the specefied addr into the VM.
1728 * Returns 0 for success, error for failure.
1729 *
Chunming Zhou49b02b12015-11-13 14:18:38 +08001730 * Object has to be reserved and unreserved outside!
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001731 */
1732int amdgpu_vm_bo_map(struct amdgpu_device *adev,
1733 struct amdgpu_bo_va *bo_va,
1734 uint64_t saddr, uint64_t offset,
Christian König268c3002017-01-18 14:49:43 +01001735 uint64_t size, uint64_t flags)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001736{
Christian Königa9f87f62017-03-30 14:03:59 +02001737 struct amdgpu_bo_va_mapping *mapping, *tmp;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001738 struct amdgpu_vm *vm = bo_va->vm;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001739 uint64_t eaddr;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001740
Christian König0be52de2015-05-18 14:37:27 +02001741 /* validate the parameters */
1742 if (saddr & AMDGPU_GPU_PAGE_MASK || offset & AMDGPU_GPU_PAGE_MASK ||
Chunming Zhou49b02b12015-11-13 14:18:38 +08001743 size == 0 || size & AMDGPU_GPU_PAGE_MASK)
Christian König0be52de2015-05-18 14:37:27 +02001744 return -EINVAL;
Christian König0be52de2015-05-18 14:37:27 +02001745
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001746 /* make sure object fit at this offset */
Felix Kuehling005ae952015-11-23 17:43:48 -05001747 eaddr = saddr + size - 1;
Christian Königa5f6b5b2017-01-30 11:01:38 +01001748 if (saddr >= eaddr ||
1749 (bo_va->bo && offset + size > amdgpu_bo_size(bo_va->bo)))
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001750 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001751
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001752 saddr /= AMDGPU_GPU_PAGE_SIZE;
1753 eaddr /= AMDGPU_GPU_PAGE_SIZE;
1754
Christian Königa9f87f62017-03-30 14:03:59 +02001755 tmp = amdgpu_vm_it_iter_first(&vm->va, saddr, eaddr);
1756 if (tmp) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001757 /* bo and tmp overlap, invalid addr */
1758 dev_err(adev->dev, "bo %p va 0x%010Lx-0x%010Lx conflict with "
Christian Königa9f87f62017-03-30 14:03:59 +02001759 "0x%010Lx-0x%010Lx\n", bo_va->bo, saddr, eaddr,
1760 tmp->start, tmp->last + 1);
Christian König663e4572017-03-13 10:13:37 +01001761 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001762 }
1763
1764 mapping = kmalloc(sizeof(*mapping), GFP_KERNEL);
Christian König663e4572017-03-13 10:13:37 +01001765 if (!mapping)
1766 return -ENOMEM;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001767
1768 INIT_LIST_HEAD(&mapping->list);
Christian Königa9f87f62017-03-30 14:03:59 +02001769 mapping->start = saddr;
1770 mapping->last = eaddr;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001771 mapping->offset = offset;
1772 mapping->flags = flags;
1773
Christian König7fc11952015-07-30 11:53:42 +02001774 list_add(&mapping->list, &bo_va->invalids);
Christian Königa9f87f62017-03-30 14:03:59 +02001775 amdgpu_vm_it_insert(mapping, &vm->va);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001776
Christian König4388fc22017-03-13 10:13:36 +01001777 if (flags & AMDGPU_PTE_PRT)
1778 amdgpu_vm_prt_get(adev);
1779
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001780 return 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001781}
1782
1783/**
Christian König80f95c52017-03-13 10:13:39 +01001784 * amdgpu_vm_bo_replace_map - map bo inside a vm, replacing existing mappings
1785 *
1786 * @adev: amdgpu_device pointer
1787 * @bo_va: bo_va to store the address
1788 * @saddr: where to map the BO
1789 * @offset: requested offset in the BO
1790 * @flags: attributes of pages (read/write/valid/etc.)
1791 *
1792 * Add a mapping of the BO at the specefied addr into the VM. Replace existing
1793 * mappings as we do so.
1794 * Returns 0 for success, error for failure.
1795 *
1796 * Object has to be reserved and unreserved outside!
1797 */
1798int amdgpu_vm_bo_replace_map(struct amdgpu_device *adev,
1799 struct amdgpu_bo_va *bo_va,
1800 uint64_t saddr, uint64_t offset,
1801 uint64_t size, uint64_t flags)
1802{
1803 struct amdgpu_bo_va_mapping *mapping;
1804 struct amdgpu_vm *vm = bo_va->vm;
1805 uint64_t eaddr;
1806 int r;
1807
1808 /* validate the parameters */
1809 if (saddr & AMDGPU_GPU_PAGE_MASK || offset & AMDGPU_GPU_PAGE_MASK ||
1810 size == 0 || size & AMDGPU_GPU_PAGE_MASK)
1811 return -EINVAL;
1812
1813 /* make sure object fit at this offset */
1814 eaddr = saddr + size - 1;
1815 if (saddr >= eaddr ||
1816 (bo_va->bo && offset + size > amdgpu_bo_size(bo_va->bo)))
1817 return -EINVAL;
1818
1819 /* Allocate all the needed memory */
1820 mapping = kmalloc(sizeof(*mapping), GFP_KERNEL);
1821 if (!mapping)
1822 return -ENOMEM;
1823
1824 r = amdgpu_vm_bo_clear_mappings(adev, bo_va->vm, saddr, size);
1825 if (r) {
1826 kfree(mapping);
1827 return r;
1828 }
1829
1830 saddr /= AMDGPU_GPU_PAGE_SIZE;
1831 eaddr /= AMDGPU_GPU_PAGE_SIZE;
1832
Christian Königa9f87f62017-03-30 14:03:59 +02001833 mapping->start = saddr;
1834 mapping->last = eaddr;
Christian König80f95c52017-03-13 10:13:39 +01001835 mapping->offset = offset;
1836 mapping->flags = flags;
1837
1838 list_add(&mapping->list, &bo_va->invalids);
Christian Königa9f87f62017-03-30 14:03:59 +02001839 amdgpu_vm_it_insert(mapping, &vm->va);
Christian König80f95c52017-03-13 10:13:39 +01001840
1841 if (flags & AMDGPU_PTE_PRT)
1842 amdgpu_vm_prt_get(adev);
1843
1844 return 0;
1845}
1846
1847/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001848 * amdgpu_vm_bo_unmap - remove bo mapping from vm
1849 *
1850 * @adev: amdgpu_device pointer
1851 * @bo_va: bo_va to remove the address from
1852 * @saddr: where to the BO is mapped
1853 *
1854 * Remove a mapping of the BO at the specefied addr from the VM.
1855 * Returns 0 for success, error for failure.
1856 *
Chunming Zhou49b02b12015-11-13 14:18:38 +08001857 * Object has to be reserved and unreserved outside!
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001858 */
1859int amdgpu_vm_bo_unmap(struct amdgpu_device *adev,
1860 struct amdgpu_bo_va *bo_va,
1861 uint64_t saddr)
1862{
1863 struct amdgpu_bo_va_mapping *mapping;
1864 struct amdgpu_vm *vm = bo_va->vm;
Christian König7fc11952015-07-30 11:53:42 +02001865 bool valid = true;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001866
Christian König6c7fc502015-06-05 20:56:17 +02001867 saddr /= AMDGPU_GPU_PAGE_SIZE;
Christian König32b41ac2016-03-08 18:03:27 +01001868
Christian König7fc11952015-07-30 11:53:42 +02001869 list_for_each_entry(mapping, &bo_va->valids, list) {
Christian Königa9f87f62017-03-30 14:03:59 +02001870 if (mapping->start == saddr)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001871 break;
1872 }
1873
Christian König7fc11952015-07-30 11:53:42 +02001874 if (&mapping->list == &bo_va->valids) {
1875 valid = false;
1876
1877 list_for_each_entry(mapping, &bo_va->invalids, list) {
Christian Königa9f87f62017-03-30 14:03:59 +02001878 if (mapping->start == saddr)
Christian König7fc11952015-07-30 11:53:42 +02001879 break;
1880 }
1881
Christian König32b41ac2016-03-08 18:03:27 +01001882 if (&mapping->list == &bo_va->invalids)
Christian König7fc11952015-07-30 11:53:42 +02001883 return -ENOENT;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001884 }
Christian König32b41ac2016-03-08 18:03:27 +01001885
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001886 list_del(&mapping->list);
Christian Königa9f87f62017-03-30 14:03:59 +02001887 amdgpu_vm_it_remove(mapping, &vm->va);
Christian König93e3e432015-06-09 16:58:33 +02001888 trace_amdgpu_vm_bo_unmap(bo_va, mapping);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001889
Christian Könige17841b2016-03-08 17:52:01 +01001890 if (valid)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001891 list_add(&mapping->list, &vm->freed);
Christian Könige17841b2016-03-08 17:52:01 +01001892 else
Christian König284710f2017-01-30 11:09:31 +01001893 amdgpu_vm_free_mapping(adev, vm, mapping,
1894 bo_va->last_pt_update);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001895
1896 return 0;
1897}
1898
1899/**
Christian Königdc54d3d2017-03-13 10:13:38 +01001900 * amdgpu_vm_bo_clear_mappings - remove all mappings in a specific range
1901 *
1902 * @adev: amdgpu_device pointer
1903 * @vm: VM structure to use
1904 * @saddr: start of the range
1905 * @size: size of the range
1906 *
1907 * Remove all mappings in a range, split them as appropriate.
1908 * Returns 0 for success, error for failure.
1909 */
1910int amdgpu_vm_bo_clear_mappings(struct amdgpu_device *adev,
1911 struct amdgpu_vm *vm,
1912 uint64_t saddr, uint64_t size)
1913{
1914 struct amdgpu_bo_va_mapping *before, *after, *tmp, *next;
Christian Königdc54d3d2017-03-13 10:13:38 +01001915 LIST_HEAD(removed);
1916 uint64_t eaddr;
1917
1918 eaddr = saddr + size - 1;
1919 saddr /= AMDGPU_GPU_PAGE_SIZE;
1920 eaddr /= AMDGPU_GPU_PAGE_SIZE;
1921
1922 /* Allocate all the needed memory */
1923 before = kzalloc(sizeof(*before), GFP_KERNEL);
1924 if (!before)
1925 return -ENOMEM;
Junwei Zhang27f6d612017-03-16 16:09:24 +08001926 INIT_LIST_HEAD(&before->list);
Christian Königdc54d3d2017-03-13 10:13:38 +01001927
1928 after = kzalloc(sizeof(*after), GFP_KERNEL);
1929 if (!after) {
1930 kfree(before);
1931 return -ENOMEM;
1932 }
Junwei Zhang27f6d612017-03-16 16:09:24 +08001933 INIT_LIST_HEAD(&after->list);
Christian Königdc54d3d2017-03-13 10:13:38 +01001934
1935 /* Now gather all removed mappings */
Christian Königa9f87f62017-03-30 14:03:59 +02001936 tmp = amdgpu_vm_it_iter_first(&vm->va, saddr, eaddr);
1937 while (tmp) {
Christian Königdc54d3d2017-03-13 10:13:38 +01001938 /* Remember mapping split at the start */
Christian Königa9f87f62017-03-30 14:03:59 +02001939 if (tmp->start < saddr) {
1940 before->start = tmp->start;
1941 before->last = saddr - 1;
Christian Königdc54d3d2017-03-13 10:13:38 +01001942 before->offset = tmp->offset;
1943 before->flags = tmp->flags;
1944 list_add(&before->list, &tmp->list);
1945 }
1946
1947 /* Remember mapping split at the end */
Christian Königa9f87f62017-03-30 14:03:59 +02001948 if (tmp->last > eaddr) {
1949 after->start = eaddr + 1;
1950 after->last = tmp->last;
Christian Königdc54d3d2017-03-13 10:13:38 +01001951 after->offset = tmp->offset;
Christian Königa9f87f62017-03-30 14:03:59 +02001952 after->offset += after->start - tmp->start;
Christian Königdc54d3d2017-03-13 10:13:38 +01001953 after->flags = tmp->flags;
1954 list_add(&after->list, &tmp->list);
1955 }
1956
1957 list_del(&tmp->list);
1958 list_add(&tmp->list, &removed);
Christian Königa9f87f62017-03-30 14:03:59 +02001959
1960 tmp = amdgpu_vm_it_iter_next(tmp, saddr, eaddr);
Christian Königdc54d3d2017-03-13 10:13:38 +01001961 }
1962
1963 /* And free them up */
1964 list_for_each_entry_safe(tmp, next, &removed, list) {
Christian Königa9f87f62017-03-30 14:03:59 +02001965 amdgpu_vm_it_remove(tmp, &vm->va);
Christian Königdc54d3d2017-03-13 10:13:38 +01001966 list_del(&tmp->list);
1967
Christian Königa9f87f62017-03-30 14:03:59 +02001968 if (tmp->start < saddr)
1969 tmp->start = saddr;
1970 if (tmp->last > eaddr)
1971 tmp->last = eaddr;
Christian Königdc54d3d2017-03-13 10:13:38 +01001972
1973 list_add(&tmp->list, &vm->freed);
1974 trace_amdgpu_vm_bo_unmap(NULL, tmp);
1975 }
1976
Junwei Zhang27f6d612017-03-16 16:09:24 +08001977 /* Insert partial mapping before the range */
1978 if (!list_empty(&before->list)) {
Christian Königa9f87f62017-03-30 14:03:59 +02001979 amdgpu_vm_it_insert(before, &vm->va);
Christian Königdc54d3d2017-03-13 10:13:38 +01001980 if (before->flags & AMDGPU_PTE_PRT)
1981 amdgpu_vm_prt_get(adev);
1982 } else {
1983 kfree(before);
1984 }
1985
1986 /* Insert partial mapping after the range */
Junwei Zhang27f6d612017-03-16 16:09:24 +08001987 if (!list_empty(&after->list)) {
Christian Königa9f87f62017-03-30 14:03:59 +02001988 amdgpu_vm_it_insert(after, &vm->va);
Christian Königdc54d3d2017-03-13 10:13:38 +01001989 if (after->flags & AMDGPU_PTE_PRT)
1990 amdgpu_vm_prt_get(adev);
1991 } else {
1992 kfree(after);
1993 }
1994
1995 return 0;
1996}
1997
1998/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001999 * amdgpu_vm_bo_rmv - remove a bo to a specific vm
2000 *
2001 * @adev: amdgpu_device pointer
2002 * @bo_va: requested bo_va
2003 *
Christian König8843dbb2016-01-26 12:17:11 +01002004 * Remove @bo_va->bo from the requested vm.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002005 *
2006 * Object have to be reserved!
2007 */
2008void amdgpu_vm_bo_rmv(struct amdgpu_device *adev,
2009 struct amdgpu_bo_va *bo_va)
2010{
2011 struct amdgpu_bo_va_mapping *mapping, *next;
2012 struct amdgpu_vm *vm = bo_va->vm;
2013
2014 list_del(&bo_va->bo_list);
2015
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002016 spin_lock(&vm->status_lock);
2017 list_del(&bo_va->vm_status);
2018 spin_unlock(&vm->status_lock);
2019
Christian König7fc11952015-07-30 11:53:42 +02002020 list_for_each_entry_safe(mapping, next, &bo_va->valids, list) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002021 list_del(&mapping->list);
Christian Königa9f87f62017-03-30 14:03:59 +02002022 amdgpu_vm_it_remove(mapping, &vm->va);
Christian König93e3e432015-06-09 16:58:33 +02002023 trace_amdgpu_vm_bo_unmap(bo_va, mapping);
Christian König7fc11952015-07-30 11:53:42 +02002024 list_add(&mapping->list, &vm->freed);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002025 }
Christian König7fc11952015-07-30 11:53:42 +02002026 list_for_each_entry_safe(mapping, next, &bo_va->invalids, list) {
2027 list_del(&mapping->list);
Christian Königa9f87f62017-03-30 14:03:59 +02002028 amdgpu_vm_it_remove(mapping, &vm->va);
Christian König284710f2017-01-30 11:09:31 +01002029 amdgpu_vm_free_mapping(adev, vm, mapping,
2030 bo_va->last_pt_update);
Christian König7fc11952015-07-30 11:53:42 +02002031 }
Christian König32b41ac2016-03-08 18:03:27 +01002032
Chris Wilsonf54d1862016-10-25 13:00:45 +01002033 dma_fence_put(bo_va->last_pt_update);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002034 kfree(bo_va);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002035}
2036
2037/**
2038 * amdgpu_vm_bo_invalidate - mark the bo as invalid
2039 *
2040 * @adev: amdgpu_device pointer
2041 * @vm: requested vm
2042 * @bo: amdgpu buffer object
2043 *
Christian König8843dbb2016-01-26 12:17:11 +01002044 * Mark @bo as invalid.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002045 */
2046void amdgpu_vm_bo_invalidate(struct amdgpu_device *adev,
2047 struct amdgpu_bo *bo)
2048{
2049 struct amdgpu_bo_va *bo_va;
2050
2051 list_for_each_entry(bo_va, &bo->va, bo_list) {
Christian König7fc11952015-07-30 11:53:42 +02002052 spin_lock(&bo_va->vm->status_lock);
2053 if (list_empty(&bo_va->vm_status))
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002054 list_add(&bo_va->vm_status, &bo_va->vm->invalidated);
Christian König7fc11952015-07-30 11:53:42 +02002055 spin_unlock(&bo_va->vm->status_lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002056 }
2057}
2058
2059/**
2060 * amdgpu_vm_init - initialize a vm instance
2061 *
2062 * @adev: amdgpu_device pointer
2063 * @vm: requested vm
2064 *
Christian König8843dbb2016-01-26 12:17:11 +01002065 * Init @vm fields.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002066 */
2067int amdgpu_vm_init(struct amdgpu_device *adev, struct amdgpu_vm *vm)
2068{
2069 const unsigned align = min(AMDGPU_VM_PTB_ALIGN_SIZE,
2070 AMDGPU_VM_PTE_COUNT * 8);
Christian König2d55e452016-02-08 17:37:38 +01002071 unsigned ring_instance;
2072 struct amdgpu_ring *ring;
Christian König2bd9ccf2016-02-01 12:53:58 +01002073 struct amd_sched_rq *rq;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002074 int i, r;
2075
Christian Königbcb1ba32016-03-08 15:40:11 +01002076 for (i = 0; i < AMDGPU_MAX_RINGS; ++i)
2077 vm->ids[i] = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002078 vm->va = RB_ROOT;
Chunming Zhou031e2982016-04-25 10:19:13 +08002079 vm->client_id = atomic64_inc_return(&adev->vm_manager.client_counter);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002080 spin_lock_init(&vm->status_lock);
2081 INIT_LIST_HEAD(&vm->invalidated);
Christian König7fc11952015-07-30 11:53:42 +02002082 INIT_LIST_HEAD(&vm->cleared);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002083 INIT_LIST_HEAD(&vm->freed);
Christian König20250212016-03-08 17:58:35 +01002084
Christian König2bd9ccf2016-02-01 12:53:58 +01002085 /* create scheduler entity for page table updates */
Christian König2d55e452016-02-08 17:37:38 +01002086
2087 ring_instance = atomic_inc_return(&adev->vm_manager.vm_pte_next_ring);
2088 ring_instance %= adev->vm_manager.vm_pte_num_rings;
2089 ring = adev->vm_manager.vm_pte_rings[ring_instance];
Christian König2bd9ccf2016-02-01 12:53:58 +01002090 rq = &ring->sched.sched_rq[AMD_SCHED_PRIORITY_KERNEL];
2091 r = amd_sched_entity_init(&ring->sched, &vm->entity,
2092 rq, amdgpu_sched_jobs);
2093 if (r)
Christian Königf566ceb2016-10-27 20:04:38 +02002094 return r;
Christian König2bd9ccf2016-02-01 12:53:58 +01002095
Christian Königa24960f2016-10-12 13:20:52 +02002096 vm->last_dir_update = NULL;
Bas Nieuwenhuizen05906de2015-08-14 20:08:40 +02002097
Christian Königf566ceb2016-10-27 20:04:38 +02002098 r = amdgpu_bo_create(adev, amdgpu_vm_bo_size(adev, 0), align, true,
Alex Deucher857d9132015-08-27 00:14:16 -04002099 AMDGPU_GEM_DOMAIN_VRAM,
Chunming Zhou1baa4392016-08-04 13:59:32 +08002100 AMDGPU_GEM_CREATE_NO_CPU_ACCESS |
Christian König03f48dd2016-08-15 17:00:22 +02002101 AMDGPU_GEM_CREATE_SHADOW |
Christian König617859e2016-11-17 15:40:02 +01002102 AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS |
2103 AMDGPU_GEM_CREATE_VRAM_CLEARED,
Christian König67003a12016-10-12 14:46:26 +02002104 NULL, NULL, &vm->root.bo);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002105 if (r)
Christian König2bd9ccf2016-02-01 12:53:58 +01002106 goto error_free_sched_entity;
2107
Christian König67003a12016-10-12 14:46:26 +02002108 r = amdgpu_bo_reserve(vm->root.bo, false);
Christian König2bd9ccf2016-02-01 12:53:58 +01002109 if (r)
Christian König67003a12016-10-12 14:46:26 +02002110 goto error_free_root;
Christian König2bd9ccf2016-02-01 12:53:58 +01002111
Christian König5a712a82016-06-21 16:28:15 +02002112 vm->last_eviction_counter = atomic64_read(&adev->num_evictions);
Christian König67003a12016-10-12 14:46:26 +02002113 amdgpu_bo_unreserve(vm->root.bo);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002114
2115 return 0;
Christian König2bd9ccf2016-02-01 12:53:58 +01002116
Christian König67003a12016-10-12 14:46:26 +02002117error_free_root:
2118 amdgpu_bo_unref(&vm->root.bo->shadow);
2119 amdgpu_bo_unref(&vm->root.bo);
2120 vm->root.bo = NULL;
Christian König2bd9ccf2016-02-01 12:53:58 +01002121
2122error_free_sched_entity:
2123 amd_sched_entity_fini(&ring->sched, &vm->entity);
2124
2125 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002126}
2127
2128/**
Christian Königf566ceb2016-10-27 20:04:38 +02002129 * amdgpu_vm_free_levels - free PD/PT levels
2130 *
2131 * @level: PD/PT starting level to free
2132 *
2133 * Free the page directory or page table level and all sub levels.
2134 */
2135static void amdgpu_vm_free_levels(struct amdgpu_vm_pt *level)
2136{
2137 unsigned i;
2138
2139 if (level->bo) {
2140 amdgpu_bo_unref(&level->bo->shadow);
2141 amdgpu_bo_unref(&level->bo);
2142 }
2143
2144 if (level->entries)
2145 for (i = 0; i <= level->last_entry_used; i++)
2146 amdgpu_vm_free_levels(&level->entries[i]);
2147
2148 drm_free_large(level->entries);
2149}
2150
2151/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002152 * amdgpu_vm_fini - tear down a vm instance
2153 *
2154 * @adev: amdgpu_device pointer
2155 * @vm: requested vm
2156 *
Christian König8843dbb2016-01-26 12:17:11 +01002157 * Tear down @vm.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002158 * Unbind the VM and remove all bos from the vm bo list
2159 */
2160void amdgpu_vm_fini(struct amdgpu_device *adev, struct amdgpu_vm *vm)
2161{
2162 struct amdgpu_bo_va_mapping *mapping, *tmp;
Christian König4388fc22017-03-13 10:13:36 +01002163 bool prt_fini_needed = !!adev->gart.gart_funcs->set_prt;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002164
Christian König2d55e452016-02-08 17:37:38 +01002165 amd_sched_entity_fini(vm->entity.sched, &vm->entity);
Christian König2bd9ccf2016-02-01 12:53:58 +01002166
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002167 if (!RB_EMPTY_ROOT(&vm->va)) {
2168 dev_err(adev->dev, "still active bo inside vm\n");
2169 }
Christian Königa9f87f62017-03-30 14:03:59 +02002170 rbtree_postorder_for_each_entry_safe(mapping, tmp, &vm->va, rb) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002171 list_del(&mapping->list);
Christian Königa9f87f62017-03-30 14:03:59 +02002172 amdgpu_vm_it_remove(mapping, &vm->va);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002173 kfree(mapping);
2174 }
2175 list_for_each_entry_safe(mapping, tmp, &vm->freed, list) {
Christian König4388fc22017-03-13 10:13:36 +01002176 if (mapping->flags & AMDGPU_PTE_PRT && prt_fini_needed) {
Christian König451bc8e2017-02-14 16:02:52 +01002177 amdgpu_vm_prt_fini(adev, vm);
Christian König4388fc22017-03-13 10:13:36 +01002178 prt_fini_needed = false;
Christian König451bc8e2017-02-14 16:02:52 +01002179 }
Christian König284710f2017-01-30 11:09:31 +01002180
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002181 list_del(&mapping->list);
Christian König451bc8e2017-02-14 16:02:52 +01002182 amdgpu_vm_free_mapping(adev, vm, mapping, NULL);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002183 }
2184
Christian Königf566ceb2016-10-27 20:04:38 +02002185 amdgpu_vm_free_levels(&vm->root);
Christian Königa24960f2016-10-12 13:20:52 +02002186 dma_fence_put(vm->last_dir_update);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002187}
Christian Königea89f8c2015-11-15 20:52:06 +01002188
2189/**
Christian Königa9a78b32016-01-21 10:19:11 +01002190 * amdgpu_vm_manager_init - init the VM manager
2191 *
2192 * @adev: amdgpu_device pointer
2193 *
2194 * Initialize the VM manager structures
2195 */
2196void amdgpu_vm_manager_init(struct amdgpu_device *adev)
2197{
2198 unsigned i;
2199
2200 INIT_LIST_HEAD(&adev->vm_manager.ids_lru);
2201
2202 /* skip over VMID 0, since it is the system VM */
Christian König971fe9a92016-03-01 15:09:25 +01002203 for (i = 1; i < adev->vm_manager.num_ids; ++i) {
2204 amdgpu_vm_reset_id(adev, i);
Christian König832a9022016-02-15 12:33:02 +01002205 amdgpu_sync_create(&adev->vm_manager.ids[i].active);
Christian Königa9a78b32016-01-21 10:19:11 +01002206 list_add_tail(&adev->vm_manager.ids[i].list,
2207 &adev->vm_manager.ids_lru);
Christian König971fe9a92016-03-01 15:09:25 +01002208 }
Christian König2d55e452016-02-08 17:37:38 +01002209
Chris Wilsonf54d1862016-10-25 13:00:45 +01002210 adev->vm_manager.fence_context =
2211 dma_fence_context_alloc(AMDGPU_MAX_RINGS);
Christian König1fbb2e92016-06-01 10:47:36 +02002212 for (i = 0; i < AMDGPU_MAX_RINGS; ++i)
2213 adev->vm_manager.seqno[i] = 0;
2214
Christian König2d55e452016-02-08 17:37:38 +01002215 atomic_set(&adev->vm_manager.vm_pte_next_ring, 0);
Christian Königb1c8a812016-05-04 10:34:03 +02002216 atomic64_set(&adev->vm_manager.client_counter, 0);
Christian König284710f2017-01-30 11:09:31 +01002217 spin_lock_init(&adev->vm_manager.prt_lock);
Christian König451bc8e2017-02-14 16:02:52 +01002218 atomic_set(&adev->vm_manager.num_prt_users, 0);
Christian Königa9a78b32016-01-21 10:19:11 +01002219}
2220
2221/**
Christian Königea89f8c2015-11-15 20:52:06 +01002222 * amdgpu_vm_manager_fini - cleanup VM manager
2223 *
2224 * @adev: amdgpu_device pointer
2225 *
2226 * Cleanup the VM manager and free resources.
2227 */
2228void amdgpu_vm_manager_fini(struct amdgpu_device *adev)
2229{
2230 unsigned i;
2231
Christian Königbcb1ba32016-03-08 15:40:11 +01002232 for (i = 0; i < AMDGPU_NUM_VM; ++i) {
2233 struct amdgpu_vm_id *id = &adev->vm_manager.ids[i];
2234
Chris Wilsonf54d1862016-10-25 13:00:45 +01002235 dma_fence_put(adev->vm_manager.ids[i].first);
Christian König832a9022016-02-15 12:33:02 +01002236 amdgpu_sync_free(&adev->vm_manager.ids[i].active);
Chris Wilsonf54d1862016-10-25 13:00:45 +01002237 dma_fence_put(id->flushed_updates);
Dave Airlie7b624ad2016-11-07 09:37:09 +10002238 dma_fence_put(id->last_flush);
Christian Königbcb1ba32016-03-08 15:40:11 +01002239 }
Christian Königea89f8c2015-11-15 20:52:06 +01002240}