blob: b38a8d7714c7569c25f850e9b619565469d13d2a [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 >>
Zhang, Jerry36b32a62017-03-29 16:08:32 +0800103 (adev->vm_manager.block_size *
104 adev->vm_manager.num_level);
Christian König72a7ec52016-10-19 11:03:57 +0200105 else if (level == adev->vm_manager.num_level)
106 /* For the page tables on the leaves */
Zhang, Jerry36b32a62017-03-29 16:08:32 +0800107 return AMDGPU_VM_PTE_COUNT(adev);
Christian König72a7ec52016-10-19 11:03:57 +0200108 else
109 /* Everything in between */
Zhang, Jerry36b32a62017-03-29 16:08:32 +0800110 return 1 << adev->vm_manager.block_size;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400111}
112
113/**
Christian König72a7ec52016-10-19 11:03:57 +0200114 * amdgpu_vm_bo_size - returns the size of the BOs in bytes
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400115 *
116 * @adev: amdgpu_device pointer
117 *
Christian König72a7ec52016-10-19 11:03:57 +0200118 * Calculate the size of the BO for a page directory or page table in bytes.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400119 */
Christian König72a7ec52016-10-19 11:03:57 +0200120static unsigned amdgpu_vm_bo_size(struct amdgpu_device *adev, unsigned level)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400121{
Christian König72a7ec52016-10-19 11:03:57 +0200122 return AMDGPU_GPU_PAGE_ALIGN(amdgpu_vm_num_entries(adev, level) * 8);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400123}
124
125/**
Christian König56467eb2015-12-11 15:16:32 +0100126 * amdgpu_vm_get_pd_bo - add the VM PD to a validation list
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400127 *
128 * @vm: vm providing the BOs
Christian König3c0eea62015-12-11 14:39:05 +0100129 * @validated: head of validation list
Christian König56467eb2015-12-11 15:16:32 +0100130 * @entry: entry to add
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400131 *
132 * Add the page directory to the list of BOs to
Christian König56467eb2015-12-11 15:16:32 +0100133 * validate for command submission.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400134 */
Christian König56467eb2015-12-11 15:16:32 +0100135void amdgpu_vm_get_pd_bo(struct amdgpu_vm *vm,
136 struct list_head *validated,
137 struct amdgpu_bo_list_entry *entry)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400138{
Christian König67003a12016-10-12 14:46:26 +0200139 entry->robj = vm->root.bo;
Christian König56467eb2015-12-11 15:16:32 +0100140 entry->priority = 0;
Christian König67003a12016-10-12 14:46:26 +0200141 entry->tv.bo = &entry->robj->tbo;
Christian König56467eb2015-12-11 15:16:32 +0100142 entry->tv.shared = true;
Christian König2f568db2016-02-23 12:36:59 +0100143 entry->user_pages = NULL;
Christian König56467eb2015-12-11 15:16:32 +0100144 list_add(&entry->tv.head, validated);
145}
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400146
Christian König56467eb2015-12-11 15:16:32 +0100147/**
Christian König670fecc2016-10-12 15:36:57 +0200148 * amdgpu_vm_validate_layer - validate a single page table level
149 *
150 * @parent: parent page table level
151 * @validate: callback to do the validation
152 * @param: parameter for the validation callback
153 *
154 * Validate the page table BOs on command submission if neccessary.
155 */
156static int amdgpu_vm_validate_level(struct amdgpu_vm_pt *parent,
157 int (*validate)(void *, struct amdgpu_bo *),
158 void *param)
159{
160 unsigned i;
161 int r;
162
163 if (!parent->entries)
164 return 0;
165
166 for (i = 0; i <= parent->last_entry_used; ++i) {
167 struct amdgpu_vm_pt *entry = &parent->entries[i];
168
169 if (!entry->bo)
170 continue;
171
172 r = validate(param, entry->bo);
173 if (r)
174 return r;
175
176 /*
177 * Recurse into the sub directory. This is harmless because we
178 * have only a maximum of 5 layers.
179 */
180 r = amdgpu_vm_validate_level(entry, validate, param);
181 if (r)
182 return r;
183 }
184
185 return r;
186}
187
188/**
Christian Königf7da30d2016-09-28 12:03:04 +0200189 * amdgpu_vm_validate_pt_bos - validate the page table BOs
Christian König56467eb2015-12-11 15:16:32 +0100190 *
Christian König5a712a82016-06-21 16:28:15 +0200191 * @adev: amdgpu device pointer
Christian König56467eb2015-12-11 15:16:32 +0100192 * @vm: vm providing the BOs
Christian Königf7da30d2016-09-28 12:03:04 +0200193 * @validate: callback to do the validation
194 * @param: parameter for the validation callback
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400195 *
Christian Königf7da30d2016-09-28 12:03:04 +0200196 * Validate the page table BOs on command submission if neccessary.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400197 */
Christian Königf7da30d2016-09-28 12:03:04 +0200198int amdgpu_vm_validate_pt_bos(struct amdgpu_device *adev, struct amdgpu_vm *vm,
199 int (*validate)(void *p, struct amdgpu_bo *bo),
200 void *param)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400201{
Christian König5a712a82016-06-21 16:28:15 +0200202 uint64_t num_evictions;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400203
Christian König5a712a82016-06-21 16:28:15 +0200204 /* We only need to validate the page tables
205 * if they aren't already valid.
206 */
207 num_evictions = atomic64_read(&adev->num_evictions);
208 if (num_evictions == vm->last_eviction_counter)
Christian Königf7da30d2016-09-28 12:03:04 +0200209 return 0;
Christian König5a712a82016-06-21 16:28:15 +0200210
Christian König670fecc2016-10-12 15:36:57 +0200211 return amdgpu_vm_validate_level(&vm->root, validate, param);
Christian Königeceb8a12016-01-11 15:35:21 +0100212}
213
214/**
Christian Königd711e132016-10-13 10:20:53 +0200215 * amdgpu_vm_move_level_in_lru - move one level of PT BOs to the LRU tail
216 *
217 * @adev: amdgpu device instance
218 * @vm: vm providing the BOs
219 *
220 * Move the PT BOs to the tail of the LRU.
221 */
222static void amdgpu_vm_move_level_in_lru(struct amdgpu_vm_pt *parent)
223{
224 unsigned i;
225
226 if (!parent->entries)
227 return;
228
229 for (i = 0; i <= parent->last_entry_used; ++i) {
230 struct amdgpu_vm_pt *entry = &parent->entries[i];
231
232 if (!entry->bo)
233 continue;
234
235 ttm_bo_move_to_lru_tail(&entry->bo->tbo);
236 amdgpu_vm_move_level_in_lru(entry);
237 }
238}
239
240/**
Christian Königeceb8a12016-01-11 15:35:21 +0100241 * amdgpu_vm_move_pt_bos_in_lru - move the PT BOs to the LRU tail
242 *
243 * @adev: amdgpu device instance
244 * @vm: vm providing the BOs
245 *
246 * Move the PT BOs to the tail of the LRU.
247 */
248void amdgpu_vm_move_pt_bos_in_lru(struct amdgpu_device *adev,
249 struct amdgpu_vm *vm)
250{
251 struct ttm_bo_global *glob = adev->mman.bdev.glob;
Christian Königeceb8a12016-01-11 15:35:21 +0100252
253 spin_lock(&glob->lru_lock);
Christian Königd711e132016-10-13 10:20:53 +0200254 amdgpu_vm_move_level_in_lru(&vm->root);
Christian Königeceb8a12016-01-11 15:35:21 +0100255 spin_unlock(&glob->lru_lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400256}
257
Christian Königf566ceb2016-10-27 20:04:38 +0200258 /**
259 * amdgpu_vm_alloc_levels - allocate the PD/PT levels
260 *
261 * @adev: amdgpu_device pointer
262 * @vm: requested vm
263 * @saddr: start of the address range
264 * @eaddr: end of the address range
265 *
266 * Make sure the page directories and page tables are allocated
267 */
268static int amdgpu_vm_alloc_levels(struct amdgpu_device *adev,
269 struct amdgpu_vm *vm,
270 struct amdgpu_vm_pt *parent,
271 uint64_t saddr, uint64_t eaddr,
272 unsigned level)
273{
274 unsigned shift = (adev->vm_manager.num_level - level) *
Zhang, Jerry36b32a62017-03-29 16:08:32 +0800275 adev->vm_manager.block_size;
Christian Königf566ceb2016-10-27 20:04:38 +0200276 unsigned pt_idx, from, to;
277 int r;
278
279 if (!parent->entries) {
280 unsigned num_entries = amdgpu_vm_num_entries(adev, level);
281
282 parent->entries = drm_calloc_large(num_entries,
283 sizeof(struct amdgpu_vm_pt));
284 if (!parent->entries)
285 return -ENOMEM;
286 memset(parent->entries, 0 , sizeof(struct amdgpu_vm_pt));
287 }
288
Felix Kuehling1866bac2017-03-28 20:36:12 -0400289 from = saddr >> shift;
290 to = eaddr >> shift;
291 if (from >= amdgpu_vm_num_entries(adev, level) ||
292 to >= amdgpu_vm_num_entries(adev, level))
293 return -EINVAL;
Christian Königf566ceb2016-10-27 20:04:38 +0200294
295 if (to > parent->last_entry_used)
296 parent->last_entry_used = to;
297
298 ++level;
Felix Kuehling1866bac2017-03-28 20:36:12 -0400299 saddr = saddr & ((1 << shift) - 1);
300 eaddr = eaddr & ((1 << shift) - 1);
Christian Königf566ceb2016-10-27 20:04:38 +0200301
302 /* walk over the address space and allocate the page tables */
303 for (pt_idx = from; pt_idx <= to; ++pt_idx) {
304 struct reservation_object *resv = vm->root.bo->tbo.resv;
305 struct amdgpu_vm_pt *entry = &parent->entries[pt_idx];
306 struct amdgpu_bo *pt;
307
308 if (!entry->bo) {
309 r = amdgpu_bo_create(adev,
310 amdgpu_vm_bo_size(adev, level),
311 AMDGPU_GPU_PAGE_SIZE, true,
312 AMDGPU_GEM_DOMAIN_VRAM,
313 AMDGPU_GEM_CREATE_NO_CPU_ACCESS |
314 AMDGPU_GEM_CREATE_SHADOW |
315 AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS |
316 AMDGPU_GEM_CREATE_VRAM_CLEARED,
317 NULL, resv, &pt);
318 if (r)
319 return r;
320
321 /* Keep a reference to the root directory to avoid
322 * freeing them up in the wrong order.
323 */
324 pt->parent = amdgpu_bo_ref(vm->root.bo);
325
326 entry->bo = pt;
327 entry->addr = 0;
328 }
329
330 if (level < adev->vm_manager.num_level) {
Felix Kuehling1866bac2017-03-28 20:36:12 -0400331 uint64_t sub_saddr = (pt_idx == from) ? saddr : 0;
332 uint64_t sub_eaddr = (pt_idx == to) ? eaddr :
333 ((1 << shift) - 1);
334 r = amdgpu_vm_alloc_levels(adev, vm, entry, sub_saddr,
335 sub_eaddr, level);
Christian Königf566ceb2016-10-27 20:04:38 +0200336 if (r)
337 return r;
338 }
339 }
340
341 return 0;
342}
343
Christian König663e4572017-03-13 10:13:37 +0100344/**
345 * amdgpu_vm_alloc_pts - Allocate page tables.
346 *
347 * @adev: amdgpu_device pointer
348 * @vm: VM to allocate page tables for
349 * @saddr: Start address which needs to be allocated
350 * @size: Size from start address we need.
351 *
352 * Make sure the page tables are allocated.
353 */
354int amdgpu_vm_alloc_pts(struct amdgpu_device *adev,
355 struct amdgpu_vm *vm,
356 uint64_t saddr, uint64_t size)
357{
Felix Kuehling22770e52017-03-28 20:24:53 -0400358 uint64_t last_pfn;
Christian König663e4572017-03-13 10:13:37 +0100359 uint64_t eaddr;
Christian König663e4572017-03-13 10:13:37 +0100360
361 /* validate the parameters */
362 if (saddr & AMDGPU_GPU_PAGE_MASK || size & AMDGPU_GPU_PAGE_MASK)
363 return -EINVAL;
364
365 eaddr = saddr + size - 1;
366 last_pfn = eaddr / AMDGPU_GPU_PAGE_SIZE;
367 if (last_pfn >= adev->vm_manager.max_pfn) {
Felix Kuehling22770e52017-03-28 20:24:53 -0400368 dev_err(adev->dev, "va above limit (0x%08llX >= 0x%08llX)\n",
Christian König663e4572017-03-13 10:13:37 +0100369 last_pfn, adev->vm_manager.max_pfn);
370 return -EINVAL;
371 }
372
373 saddr /= AMDGPU_GPU_PAGE_SIZE;
374 eaddr /= AMDGPU_GPU_PAGE_SIZE;
375
Christian Königf566ceb2016-10-27 20:04:38 +0200376 return amdgpu_vm_alloc_levels(adev, vm, &vm->root, saddr, eaddr, 0);
Christian König663e4572017-03-13 10:13:37 +0100377}
378
Christian König641e9402017-04-03 13:59:25 +0200379/**
380 * amdgpu_vm_had_gpu_reset - check if reset occured since last use
381 *
382 * @adev: amdgpu_device pointer
383 * @id: VMID structure
384 *
385 * Check if GPU reset occured since last use of the VMID.
386 */
387static bool amdgpu_vm_had_gpu_reset(struct amdgpu_device *adev,
388 struct amdgpu_vm_id *id)
Chunming Zhou192b7dc2016-06-29 14:01:15 +0800389{
390 return id->current_gpu_reset_count !=
Christian König641e9402017-04-03 13:59:25 +0200391 atomic_read(&adev->gpu_reset_counter);
Chunming Zhou192b7dc2016-06-29 14:01:15 +0800392}
393
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400394/**
395 * amdgpu_vm_grab_id - allocate the next free VMID
396 *
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400397 * @vm: vm to allocate id for
Christian König7f8a5292015-07-20 16:09:40 +0200398 * @ring: ring we want to submit job to
399 * @sync: sync object where we add dependencies
Christian König94dd0a42016-01-18 17:01:42 +0100400 * @fence: fence protecting ID from reuse
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400401 *
Christian König7f8a5292015-07-20 16:09:40 +0200402 * Allocate an id for the vm, adding fences to the sync obj as necessary.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400403 */
Christian König7f8a5292015-07-20 16:09:40 +0200404int amdgpu_vm_grab_id(struct amdgpu_vm *vm, struct amdgpu_ring *ring,
Chris Wilsonf54d1862016-10-25 13:00:45 +0100405 struct amdgpu_sync *sync, struct dma_fence *fence,
Chunming Zhoufd53be32016-07-01 17:59:01 +0800406 struct amdgpu_job *job)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400407{
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400408 struct amdgpu_device *adev = ring->adev;
Christian König2e819842017-03-30 16:50:47 +0200409 unsigned vmhub = ring->funcs->vmhub;
Christian König76456702017-04-06 17:52:39 +0200410 struct amdgpu_vm_id_manager *id_mgr = &adev->vm_manager.id_mgr[vmhub];
Christian König090b7672016-07-08 10:21:02 +0200411 uint64_t fence_context = adev->fence_context + ring->idx;
Chris Wilsonf54d1862016-10-25 13:00:45 +0100412 struct dma_fence *updates = sync->last_vm_update;
Christian König8d76001e2016-05-23 16:00:32 +0200413 struct amdgpu_vm_id *id, *idle;
Chris Wilsonf54d1862016-10-25 13:00:45 +0100414 struct dma_fence **fences;
Christian König1fbb2e92016-06-01 10:47:36 +0200415 unsigned i;
416 int r = 0;
417
Christian König76456702017-04-06 17:52:39 +0200418 fences = kmalloc_array(sizeof(void *), id_mgr->num_ids, GFP_KERNEL);
Christian König1fbb2e92016-06-01 10:47:36 +0200419 if (!fences)
420 return -ENOMEM;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400421
Christian König76456702017-04-06 17:52:39 +0200422 mutex_lock(&id_mgr->lock);
Christian König94dd0a42016-01-18 17:01:42 +0100423
Christian König36fd7c52016-05-23 15:30:08 +0200424 /* Check if we have an idle VMID */
Christian König1fbb2e92016-06-01 10:47:36 +0200425 i = 0;
Christian König76456702017-04-06 17:52:39 +0200426 list_for_each_entry(idle, &id_mgr->ids_lru, list) {
Christian König1fbb2e92016-06-01 10:47:36 +0200427 fences[i] = amdgpu_sync_peek_fence(&idle->active, ring);
428 if (!fences[i])
Christian König36fd7c52016-05-23 15:30:08 +0200429 break;
Christian König1fbb2e92016-06-01 10:47:36 +0200430 ++i;
Christian König36fd7c52016-05-23 15:30:08 +0200431 }
Christian Königbcb1ba32016-03-08 15:40:11 +0100432
Christian König1fbb2e92016-06-01 10:47:36 +0200433 /* If we can't find a idle VMID to use, wait till one becomes available */
Christian König76456702017-04-06 17:52:39 +0200434 if (&idle->list == &id_mgr->ids_lru) {
Christian König1fbb2e92016-06-01 10:47:36 +0200435 u64 fence_context = adev->vm_manager.fence_context + ring->idx;
436 unsigned seqno = ++adev->vm_manager.seqno[ring->idx];
Chris Wilsonf54d1862016-10-25 13:00:45 +0100437 struct dma_fence_array *array;
Christian König1fbb2e92016-06-01 10:47:36 +0200438 unsigned j;
Christian König8d76001e2016-05-23 16:00:32 +0200439
Christian König1fbb2e92016-06-01 10:47:36 +0200440 for (j = 0; j < i; ++j)
Chris Wilsonf54d1862016-10-25 13:00:45 +0100441 dma_fence_get(fences[j]);
Christian König8d76001e2016-05-23 16:00:32 +0200442
Chris Wilsonf54d1862016-10-25 13:00:45 +0100443 array = dma_fence_array_create(i, fences, fence_context,
Christian König1fbb2e92016-06-01 10:47:36 +0200444 seqno, true);
445 if (!array) {
446 for (j = 0; j < i; ++j)
Chris Wilsonf54d1862016-10-25 13:00:45 +0100447 dma_fence_put(fences[j]);
Christian König1fbb2e92016-06-01 10:47:36 +0200448 kfree(fences);
449 r = -ENOMEM;
450 goto error;
451 }
Christian König8d76001e2016-05-23 16:00:32 +0200452
Christian König8d76001e2016-05-23 16:00:32 +0200453
Christian König1fbb2e92016-06-01 10:47:36 +0200454 r = amdgpu_sync_fence(ring->adev, sync, &array->base);
Chris Wilsonf54d1862016-10-25 13:00:45 +0100455 dma_fence_put(&array->base);
Christian König1fbb2e92016-06-01 10:47:36 +0200456 if (r)
457 goto error;
Christian König8d76001e2016-05-23 16:00:32 +0200458
Christian König76456702017-04-06 17:52:39 +0200459 mutex_unlock(&id_mgr->lock);
Christian König1fbb2e92016-06-01 10:47:36 +0200460 return 0;
Christian König8d76001e2016-05-23 16:00:32 +0200461
Christian König1fbb2e92016-06-01 10:47:36 +0200462 }
463 kfree(fences);
Christian König8d76001e2016-05-23 16:00:32 +0200464
Chunming Zhoufd53be32016-07-01 17:59:01 +0800465 job->vm_needs_flush = true;
Christian König1fbb2e92016-06-01 10:47:36 +0200466 /* Check if we can use a VMID already assigned to this VM */
Christian König76456702017-04-06 17:52:39 +0200467 list_for_each_entry_reverse(id, &id_mgr->ids_lru, list) {
Chris Wilsonf54d1862016-10-25 13:00:45 +0100468 struct dma_fence *flushed;
Christian König8d76001e2016-05-23 16:00:32 +0200469
Christian König1fbb2e92016-06-01 10:47:36 +0200470 /* Check all the prerequisites to using this VMID */
Christian König641e9402017-04-03 13:59:25 +0200471 if (amdgpu_vm_had_gpu_reset(adev, id))
Chunming Zhou6adb0512016-06-27 17:06:01 +0800472 continue;
Christian König1fbb2e92016-06-01 10:47:36 +0200473
474 if (atomic64_read(&id->owner) != vm->client_id)
475 continue;
476
Chunming Zhoufd53be32016-07-01 17:59:01 +0800477 if (job->vm_pd_addr != id->pd_gpu_addr)
Christian König1fbb2e92016-06-01 10:47:36 +0200478 continue;
479
Christian König090b7672016-07-08 10:21:02 +0200480 if (!id->last_flush)
481 continue;
482
483 if (id->last_flush->context != fence_context &&
Chris Wilsonf54d1862016-10-25 13:00:45 +0100484 !dma_fence_is_signaled(id->last_flush))
Christian König1fbb2e92016-06-01 10:47:36 +0200485 continue;
486
487 flushed = id->flushed_updates;
488 if (updates &&
Chris Wilsonf54d1862016-10-25 13:00:45 +0100489 (!flushed || dma_fence_is_later(updates, flushed)))
Christian König1fbb2e92016-06-01 10:47:36 +0200490 continue;
491
Christian König3dab83b2016-06-01 13:31:17 +0200492 /* Good we can use this VMID. Remember this submission as
493 * user of the VMID.
494 */
Christian König1fbb2e92016-06-01 10:47:36 +0200495 r = amdgpu_sync_fence(ring->adev, &id->active, fence);
496 if (r)
497 goto error;
Christian König8d76001e2016-05-23 16:00:32 +0200498
Christian König76456702017-04-06 17:52:39 +0200499 list_move_tail(&id->list, &id_mgr->ids_lru);
Christian König8d76001e2016-05-23 16:00:32 +0200500
Christian König76456702017-04-06 17:52:39 +0200501 job->vm_id = id - id_mgr->ids;
Chunming Zhoufd53be32016-07-01 17:59:01 +0800502 job->vm_needs_flush = false;
Christian König0c0fdf12016-07-08 10:48:24 +0200503 trace_amdgpu_vm_grab_id(vm, ring->idx, job);
Christian König8d76001e2016-05-23 16:00:32 +0200504
Christian König76456702017-04-06 17:52:39 +0200505 mutex_unlock(&id_mgr->lock);
Christian König1fbb2e92016-06-01 10:47:36 +0200506 return 0;
Christian König8d76001e2016-05-23 16:00:32 +0200507
Christian König4f618e72017-04-06 15:18:21 +0200508 };
Chunming Zhou8e9fbeb2016-03-17 11:41:37 +0800509
Christian König1fbb2e92016-06-01 10:47:36 +0200510 /* Still no ID to use? Then use the idle one found earlier */
511 id = idle;
512
513 /* Remember this submission as user of the VMID */
514 r = amdgpu_sync_fence(ring->adev, &id->active, fence);
Christian König832a9022016-02-15 12:33:02 +0100515 if (r)
516 goto error;
Christian König4ff37a82016-02-26 16:18:26 +0100517
Chris Wilsonf54d1862016-10-25 13:00:45 +0100518 dma_fence_put(id->last_flush);
Christian König41d9eb22016-03-01 16:46:18 +0100519 id->last_flush = NULL;
520
Chris Wilsonf54d1862016-10-25 13:00:45 +0100521 dma_fence_put(id->flushed_updates);
522 id->flushed_updates = dma_fence_get(updates);
Christian König4ff37a82016-02-26 16:18:26 +0100523
Chunming Zhoufd53be32016-07-01 17:59:01 +0800524 id->pd_gpu_addr = job->vm_pd_addr;
Chunming Zhoub46b8a82016-06-27 17:04:23 +0800525 id->current_gpu_reset_count = atomic_read(&adev->gpu_reset_counter);
Christian König76456702017-04-06 17:52:39 +0200526 list_move_tail(&id->list, &id_mgr->ids_lru);
Christian König0ea54b92016-05-04 10:20:01 +0200527 atomic64_set(&id->owner, vm->client_id);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400528
Christian König76456702017-04-06 17:52:39 +0200529 job->vm_id = id - id_mgr->ids;
Christian König0c0fdf12016-07-08 10:48:24 +0200530 trace_amdgpu_vm_grab_id(vm, ring->idx, job);
Christian König832a9022016-02-15 12:33:02 +0100531
532error:
Christian König76456702017-04-06 17:52:39 +0200533 mutex_unlock(&id_mgr->lock);
Christian Königa9a78b32016-01-21 10:19:11 +0100534 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400535}
536
Alex Deucher93dcc372016-06-17 17:05:15 -0400537static bool amdgpu_vm_ring_has_compute_vm_bug(struct amdgpu_ring *ring)
538{
539 struct amdgpu_device *adev = ring->adev;
Alex Deuchera1255102016-10-13 17:41:13 -0400540 const struct amdgpu_ip_block *ip_block;
Alex Deucher93dcc372016-06-17 17:05:15 -0400541
Christian König21cd9422016-10-05 15:36:39 +0200542 if (ring->funcs->type != AMDGPU_RING_TYPE_COMPUTE)
Alex Deucher93dcc372016-06-17 17:05:15 -0400543 /* only compute rings */
544 return false;
545
546 ip_block = amdgpu_get_ip_block(adev, AMD_IP_BLOCK_TYPE_GFX);
547 if (!ip_block)
548 return false;
549
Alex Deuchera1255102016-10-13 17:41:13 -0400550 if (ip_block->version->major <= 7) {
Alex Deucher93dcc372016-06-17 17:05:15 -0400551 /* gfx7 has no workaround */
552 return true;
Alex Deuchera1255102016-10-13 17:41:13 -0400553 } else if (ip_block->version->major == 8) {
Alex Deucher93dcc372016-06-17 17:05:15 -0400554 if (adev->gfx.mec_fw_version >= 673)
555 /* gfx8 is fixed in MEC firmware 673 */
556 return false;
557 else
558 return true;
559 }
560 return false;
561}
562
Alex Xiee60f8db2017-03-09 11:36:26 -0500563static u64 amdgpu_vm_adjust_mc_addr(struct amdgpu_device *adev, u64 mc_addr)
564{
565 u64 addr = mc_addr;
566
Christian Königf75e2372017-03-30 15:55:07 +0200567 if (adev->gart.gart_funcs->adjust_mc_addr)
568 addr = adev->gart.gart_funcs->adjust_mc_addr(adev, addr);
Alex Xiee60f8db2017-03-09 11:36:26 -0500569
570 return addr;
571}
572
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400573/**
574 * amdgpu_vm_flush - hardware flush the vm
575 *
576 * @ring: ring to use for flush
Christian Königcffadc82016-03-01 13:34:49 +0100577 * @vm_id: vmid number to use
Christian König4ff37a82016-02-26 16:18:26 +0100578 * @pd_addr: address of the page directory
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400579 *
Christian König4ff37a82016-02-26 16:18:26 +0100580 * Emit a VM flush when it is necessary.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400581 */
Chunming Zhoufd53be32016-07-01 17:59:01 +0800582int amdgpu_vm_flush(struct amdgpu_ring *ring, struct amdgpu_job *job)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400583{
Christian König971fe9a92016-03-01 15:09:25 +0100584 struct amdgpu_device *adev = ring->adev;
Christian König76456702017-04-06 17:52:39 +0200585 unsigned vmhub = ring->funcs->vmhub;
586 struct amdgpu_vm_id_manager *id_mgr = &adev->vm_manager.id_mgr[vmhub];
587 struct amdgpu_vm_id *id = &id_mgr->ids[job->vm_id];
Christian Königd564a062016-03-01 15:51:53 +0100588 bool gds_switch_needed = ring->funcs->emit_gds_switch && (
Chunming Zhoufd53be32016-07-01 17:59:01 +0800589 id->gds_base != job->gds_base ||
590 id->gds_size != job->gds_size ||
591 id->gws_base != job->gws_base ||
592 id->gws_size != job->gws_size ||
593 id->oa_base != job->oa_base ||
594 id->oa_size != job->oa_size);
Christian Königf7d015b2017-04-03 14:28:26 +0200595 bool vm_flush_needed = job->vm_needs_flush ||
596 amdgpu_vm_ring_has_compute_vm_bug(ring);
Christian Königc0e51932017-04-03 14:16:07 +0200597 unsigned patch_offset = 0;
Christian König41d9eb22016-03-01 16:46:18 +0100598 int r;
Christian Königd564a062016-03-01 15:51:53 +0100599
Christian Königf7d015b2017-04-03 14:28:26 +0200600 if (amdgpu_vm_had_gpu_reset(adev, id)) {
601 gds_switch_needed = true;
602 vm_flush_needed = true;
603 }
Christian König971fe9a92016-03-01 15:09:25 +0100604
Christian Königf7d015b2017-04-03 14:28:26 +0200605 if (!vm_flush_needed && !gds_switch_needed)
606 return 0;
Christian König41d9eb22016-03-01 16:46:18 +0100607
Christian Königc0e51932017-04-03 14:16:07 +0200608 if (ring->funcs->init_cond_exec)
609 patch_offset = amdgpu_ring_init_cond_exec(ring);
Christian König41d9eb22016-03-01 16:46:18 +0100610
Christian Königf7d015b2017-04-03 14:28:26 +0200611 if (ring->funcs->emit_pipeline_sync)
Christian Königc0e51932017-04-03 14:16:07 +0200612 amdgpu_ring_emit_pipeline_sync(ring);
Christian König3dab83b2016-06-01 13:31:17 +0200613
Christian Königf7d015b2017-04-03 14:28:26 +0200614 if (ring->funcs->emit_vm_flush && vm_flush_needed) {
Christian Königc0e51932017-04-03 14:16:07 +0200615 u64 pd_addr = amdgpu_vm_adjust_mc_addr(adev, job->vm_pd_addr);
616 struct dma_fence *fence;
Monk Liue9d672b2017-03-15 12:18:57 +0800617
Christian Königc0e51932017-04-03 14:16:07 +0200618 trace_amdgpu_vm_flush(pd_addr, ring->idx, job->vm_id);
619 amdgpu_ring_emit_vm_flush(ring, job->vm_id, pd_addr);
Monk Liue9d672b2017-03-15 12:18:57 +0800620
Christian Königc0e51932017-04-03 14:16:07 +0200621 r = amdgpu_fence_emit(ring, &fence);
622 if (r)
623 return r;
Monk Liue9d672b2017-03-15 12:18:57 +0800624
Christian König76456702017-04-06 17:52:39 +0200625 mutex_lock(&id_mgr->lock);
Christian Königc0e51932017-04-03 14:16:07 +0200626 dma_fence_put(id->last_flush);
627 id->last_flush = fence;
Christian König76456702017-04-06 17:52:39 +0200628 mutex_unlock(&id_mgr->lock);
Christian Königc0e51932017-04-03 14:16:07 +0200629 }
Monk Liue9d672b2017-03-15 12:18:57 +0800630
Christian Königc0e51932017-04-03 14:16:07 +0200631 if (gds_switch_needed) {
632 id->gds_base = job->gds_base;
633 id->gds_size = job->gds_size;
634 id->gws_base = job->gws_base;
635 id->gws_size = job->gws_size;
636 id->oa_base = job->oa_base;
637 id->oa_size = job->oa_size;
638 amdgpu_ring_emit_gds_switch(ring, job->vm_id, job->gds_base,
639 job->gds_size, job->gws_base,
640 job->gws_size, job->oa_base,
641 job->oa_size);
642 }
643
644 if (ring->funcs->patch_cond_exec)
645 amdgpu_ring_patch_cond_exec(ring, patch_offset);
646
647 /* the double SWITCH_BUFFER here *cannot* be skipped by COND_EXEC */
648 if (ring->funcs->emit_switch_buffer) {
649 amdgpu_ring_emit_switch_buffer(ring);
650 amdgpu_ring_emit_switch_buffer(ring);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400651 }
Christian König41d9eb22016-03-01 16:46:18 +0100652 return 0;
Christian König971fe9a92016-03-01 15:09:25 +0100653}
654
655/**
656 * amdgpu_vm_reset_id - reset VMID to zero
657 *
658 * @adev: amdgpu device structure
659 * @vm_id: vmid number to use
660 *
661 * Reset saved GDW, GWS and OA to force switch on next flush.
662 */
Christian König76456702017-04-06 17:52:39 +0200663void amdgpu_vm_reset_id(struct amdgpu_device *adev, unsigned vmhub,
664 unsigned vmid)
Christian König971fe9a92016-03-01 15:09:25 +0100665{
Christian König76456702017-04-06 17:52:39 +0200666 struct amdgpu_vm_id_manager *id_mgr = &adev->vm_manager.id_mgr[vmhub];
667 struct amdgpu_vm_id *id = &id_mgr->ids[vmid];
Christian König971fe9a92016-03-01 15:09:25 +0100668
Christian Königbcb1ba32016-03-08 15:40:11 +0100669 id->gds_base = 0;
670 id->gds_size = 0;
671 id->gws_base = 0;
672 id->gws_size = 0;
673 id->oa_base = 0;
674 id->oa_size = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400675}
676
677/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400678 * amdgpu_vm_bo_find - find the bo_va for a specific vm & bo
679 *
680 * @vm: requested vm
681 * @bo: requested buffer object
682 *
Christian König8843dbb2016-01-26 12:17:11 +0100683 * Find @bo inside the requested vm.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400684 * Search inside the @bos vm list for the requested vm
685 * Returns the found bo_va or NULL if none is found
686 *
687 * Object has to be reserved!
688 */
689struct amdgpu_bo_va *amdgpu_vm_bo_find(struct amdgpu_vm *vm,
690 struct amdgpu_bo *bo)
691{
692 struct amdgpu_bo_va *bo_va;
693
694 list_for_each_entry(bo_va, &bo->va, bo_list) {
695 if (bo_va->vm == vm) {
696 return bo_va;
697 }
698 }
699 return NULL;
700}
701
702/**
Christian Königafef8b82016-08-12 13:29:18 +0200703 * amdgpu_vm_do_set_ptes - helper to call the right asic function
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400704 *
Christian König29efc4f2016-08-04 14:52:50 +0200705 * @params: see amdgpu_pte_update_params definition
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400706 * @pe: addr of the page entry
707 * @addr: dst addr to write into pe
708 * @count: number of page entries to update
709 * @incr: increase next addr by incr bytes
710 * @flags: hw access flags
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400711 *
712 * Traces the parameters and calls the right asic functions
713 * to setup the page table using the DMA.
714 */
Christian Königafef8b82016-08-12 13:29:18 +0200715static void amdgpu_vm_do_set_ptes(struct amdgpu_pte_update_params *params,
716 uint64_t pe, uint64_t addr,
717 unsigned count, uint32_t incr,
Chunming Zhou6b777602016-09-21 16:19:19 +0800718 uint64_t flags)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400719{
Christian Königec2f05f2016-09-25 16:11:52 +0200720 trace_amdgpu_vm_set_ptes(pe, addr, count, incr, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400721
Christian Königafef8b82016-08-12 13:29:18 +0200722 if (count < 3) {
Christian Königde9ea7b2016-08-12 11:33:30 +0200723 amdgpu_vm_write_pte(params->adev, params->ib, pe,
724 addr | flags, count, incr);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400725
726 } else {
Christian König27c5f362016-08-04 15:02:49 +0200727 amdgpu_vm_set_pte_pde(params->adev, params->ib, pe, addr,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400728 count, incr, flags);
729 }
730}
731
732/**
Christian Königafef8b82016-08-12 13:29:18 +0200733 * amdgpu_vm_do_copy_ptes - copy the PTEs from the GART
734 *
735 * @params: see amdgpu_pte_update_params definition
736 * @pe: addr of the page entry
737 * @addr: dst addr to write into pe
738 * @count: number of page entries to update
739 * @incr: increase next addr by incr bytes
740 * @flags: hw access flags
741 *
742 * Traces the parameters and calls the DMA function to copy the PTEs.
743 */
744static void amdgpu_vm_do_copy_ptes(struct amdgpu_pte_update_params *params,
745 uint64_t pe, uint64_t addr,
746 unsigned count, uint32_t incr,
Chunming Zhou6b777602016-09-21 16:19:19 +0800747 uint64_t flags)
Christian Königafef8b82016-08-12 13:29:18 +0200748{
Christian Königec2f05f2016-09-25 16:11:52 +0200749 uint64_t src = (params->src + (addr >> 12) * 8);
Christian Königafef8b82016-08-12 13:29:18 +0200750
Christian Königec2f05f2016-09-25 16:11:52 +0200751
752 trace_amdgpu_vm_copy_ptes(pe, src, count);
753
754 amdgpu_vm_copy_pte(params->adev, params->ib, pe, src, count);
Christian Königafef8b82016-08-12 13:29:18 +0200755}
756
757/**
Christian Königb07c9d22015-11-30 13:26:07 +0100758 * amdgpu_vm_map_gart - Resolve gart mapping of addr
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400759 *
Christian Königb07c9d22015-11-30 13:26:07 +0100760 * @pages_addr: optional DMA address to use for lookup
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400761 * @addr: the unmapped addr
762 *
763 * Look up the physical address of the page that the pte resolves
Christian Königb07c9d22015-11-30 13:26:07 +0100764 * to and return the pointer for the page table entry.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400765 */
Christian Königde9ea7b2016-08-12 11:33:30 +0200766static uint64_t amdgpu_vm_map_gart(const dma_addr_t *pages_addr, uint64_t addr)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400767{
768 uint64_t result;
769
Christian Königde9ea7b2016-08-12 11:33:30 +0200770 /* page table offset */
771 result = pages_addr[addr >> PAGE_SHIFT];
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400772
Christian Königde9ea7b2016-08-12 11:33:30 +0200773 /* in case cpu page size != gpu page size*/
774 result |= addr & (~PAGE_MASK);
Christian Königb07c9d22015-11-30 13:26:07 +0100775
776 result &= 0xFFFFFFFFFFFFF000ULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400777
778 return result;
779}
780
Christian Königf8991ba2016-09-16 15:36:49 +0200781/*
Christian König194d2162016-10-12 15:13:52 +0200782 * amdgpu_vm_update_level - update a single level in the hierarchy
Christian Königf8991ba2016-09-16 15:36:49 +0200783 *
784 * @adev: amdgpu_device pointer
785 * @vm: requested vm
Christian König194d2162016-10-12 15:13:52 +0200786 * @parent: parent directory
Christian Königf8991ba2016-09-16 15:36:49 +0200787 *
Christian König194d2162016-10-12 15:13:52 +0200788 * Makes sure all entries in @parent are up to date.
Christian Königf8991ba2016-09-16 15:36:49 +0200789 * Returns 0 for success, error for failure.
790 */
Christian König194d2162016-10-12 15:13:52 +0200791static int amdgpu_vm_update_level(struct amdgpu_device *adev,
792 struct amdgpu_vm *vm,
793 struct amdgpu_vm_pt *parent,
794 unsigned level)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400795{
Christian Königf8991ba2016-09-16 15:36:49 +0200796 struct amdgpu_bo *shadow;
Christian König2d55e452016-02-08 17:37:38 +0100797 struct amdgpu_ring *ring;
Christian Königf8991ba2016-09-16 15:36:49 +0200798 uint64_t pd_addr, shadow_addr;
Christian König194d2162016-10-12 15:13:52 +0200799 uint32_t incr = amdgpu_vm_bo_size(adev, level + 1);
Christian Königf8991ba2016-09-16 15:36:49 +0200800 uint64_t last_pde = ~0, last_pt = ~0, last_shadow = ~0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400801 unsigned count = 0, pt_idx, ndw;
Christian Königd71518b2016-02-01 12:20:25 +0100802 struct amdgpu_job *job;
Christian König29efc4f2016-08-04 14:52:50 +0200803 struct amdgpu_pte_update_params params;
Dave Airlie220196b2016-10-28 11:33:52 +1000804 struct dma_fence *fence = NULL;
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800805
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400806 int r;
807
Christian König194d2162016-10-12 15:13:52 +0200808 if (!parent->entries)
809 return 0;
Christian König2d55e452016-02-08 17:37:38 +0100810 ring = container_of(vm->entity.sched, struct amdgpu_ring, sched);
811
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400812 /* padding, etc. */
813 ndw = 64;
814
815 /* assume the worst case */
Christian König194d2162016-10-12 15:13:52 +0200816 ndw += parent->last_entry_used * 6;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400817
Christian König194d2162016-10-12 15:13:52 +0200818 pd_addr = amdgpu_bo_gpu_offset(parent->bo);
819
820 shadow = parent->bo->shadow;
Christian Königf8991ba2016-09-16 15:36:49 +0200821 if (shadow) {
822 r = amdgpu_ttm_bind(&shadow->tbo, &shadow->tbo.mem);
823 if (r)
824 return r;
825 shadow_addr = amdgpu_bo_gpu_offset(shadow);
826 ndw *= 2;
827 } else {
828 shadow_addr = 0;
829 }
830
Christian Königd71518b2016-02-01 12:20:25 +0100831 r = amdgpu_job_alloc_with_ib(adev, ndw * 4, &job);
832 if (r)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400833 return r;
Christian Königd71518b2016-02-01 12:20:25 +0100834
Christian König27c5f362016-08-04 15:02:49 +0200835 memset(&params, 0, sizeof(params));
836 params.adev = adev;
Christian König29efc4f2016-08-04 14:52:50 +0200837 params.ib = &job->ibs[0];
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400838
Christian König194d2162016-10-12 15:13:52 +0200839 /* walk over the address space and update the directory */
840 for (pt_idx = 0; pt_idx <= parent->last_entry_used; ++pt_idx) {
841 struct amdgpu_bo *bo = parent->entries[pt_idx].bo;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400842 uint64_t pde, pt;
843
844 if (bo == NULL)
845 continue;
846
Christian König0fc86832016-09-16 11:46:23 +0200847 if (bo->shadow) {
Christian Königf8991ba2016-09-16 15:36:49 +0200848 struct amdgpu_bo *pt_shadow = bo->shadow;
Christian König0fc86832016-09-16 11:46:23 +0200849
Christian Königf8991ba2016-09-16 15:36:49 +0200850 r = amdgpu_ttm_bind(&pt_shadow->tbo,
851 &pt_shadow->tbo.mem);
Christian König0fc86832016-09-16 11:46:23 +0200852 if (r)
853 return r;
854 }
855
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400856 pt = amdgpu_bo_gpu_offset(bo);
Christian König194d2162016-10-12 15:13:52 +0200857 if (parent->entries[pt_idx].addr == pt)
Christian Königf8991ba2016-09-16 15:36:49 +0200858 continue;
859
Christian König194d2162016-10-12 15:13:52 +0200860 parent->entries[pt_idx].addr = pt;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400861
862 pde = pd_addr + pt_idx * 8;
863 if (((last_pde + 8 * count) != pde) ||
Christian König96105e52016-08-12 12:59:59 +0200864 ((last_pt + incr * count) != pt) ||
865 (count == AMDGPU_VM_MAX_UPDATE_SIZE)) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400866
867 if (count) {
Alex Xiee60f8db2017-03-09 11:36:26 -0500868 uint64_t pt_addr =
869 amdgpu_vm_adjust_mc_addr(adev, last_pt);
870
Christian Königf8991ba2016-09-16 15:36:49 +0200871 if (shadow)
872 amdgpu_vm_do_set_ptes(&params,
873 last_shadow,
Alex Xiee60f8db2017-03-09 11:36:26 -0500874 pt_addr, count,
Christian Königf8991ba2016-09-16 15:36:49 +0200875 incr,
876 AMDGPU_PTE_VALID);
877
Christian Königafef8b82016-08-12 13:29:18 +0200878 amdgpu_vm_do_set_ptes(&params, last_pde,
Alex Xiee60f8db2017-03-09 11:36:26 -0500879 pt_addr, count, incr,
Christian Königafef8b82016-08-12 13:29:18 +0200880 AMDGPU_PTE_VALID);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400881 }
882
883 count = 1;
884 last_pde = pde;
Christian Königf8991ba2016-09-16 15:36:49 +0200885 last_shadow = shadow_addr + pt_idx * 8;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400886 last_pt = pt;
887 } else {
888 ++count;
889 }
890 }
891
Christian Königf8991ba2016-09-16 15:36:49 +0200892 if (count) {
Alex Xiee60f8db2017-03-09 11:36:26 -0500893 uint64_t pt_addr = amdgpu_vm_adjust_mc_addr(adev, last_pt);
894
Christian König67003a12016-10-12 14:46:26 +0200895 if (vm->root.bo->shadow)
Alex Xiee60f8db2017-03-09 11:36:26 -0500896 amdgpu_vm_do_set_ptes(&params, last_shadow, pt_addr,
Christian Königf8991ba2016-09-16 15:36:49 +0200897 count, incr, AMDGPU_PTE_VALID);
898
Alex Xiee60f8db2017-03-09 11:36:26 -0500899 amdgpu_vm_do_set_ptes(&params, last_pde, pt_addr,
Christian Königafef8b82016-08-12 13:29:18 +0200900 count, incr, AMDGPU_PTE_VALID);
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800901 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400902
Christian Königf8991ba2016-09-16 15:36:49 +0200903 if (params.ib->length_dw == 0) {
904 amdgpu_job_free(job);
Christian König194d2162016-10-12 15:13:52 +0200905 } else {
906 amdgpu_ring_pad_ib(ring, params.ib);
907 amdgpu_sync_resv(adev, &job->sync, parent->bo->tbo.resv,
Christian Königf8991ba2016-09-16 15:36:49 +0200908 AMDGPU_FENCE_OWNER_VM);
Christian König194d2162016-10-12 15:13:52 +0200909 if (shadow)
910 amdgpu_sync_resv(adev, &job->sync, shadow->tbo.resv,
911 AMDGPU_FENCE_OWNER_VM);
Christian Königf8991ba2016-09-16 15:36:49 +0200912
Christian König194d2162016-10-12 15:13:52 +0200913 WARN_ON(params.ib->length_dw > ndw);
914 r = amdgpu_job_submit(job, ring, &vm->entity,
915 AMDGPU_FENCE_OWNER_VM, &fence);
916 if (r)
917 goto error_free;
Christian Königf8991ba2016-09-16 15:36:49 +0200918
Christian König194d2162016-10-12 15:13:52 +0200919 amdgpu_bo_fence(parent->bo, fence, true);
920 dma_fence_put(vm->last_dir_update);
921 vm->last_dir_update = dma_fence_get(fence);
922 dma_fence_put(fence);
923 }
924 /*
925 * Recurse into the subdirectories. This recursion is harmless because
926 * we only have a maximum of 5 layers.
927 */
928 for (pt_idx = 0; pt_idx <= parent->last_entry_used; ++pt_idx) {
929 struct amdgpu_vm_pt *entry = &parent->entries[pt_idx];
930
931 if (!entry->bo)
932 continue;
933
934 r = amdgpu_vm_update_level(adev, vm, entry, level + 1);
935 if (r)
936 return r;
937 }
Christian Königf8991ba2016-09-16 15:36:49 +0200938
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400939 return 0;
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800940
941error_free:
Christian Königd71518b2016-02-01 12:20:25 +0100942 amdgpu_job_free(job);
Chunming Zhou4af9f072015-08-03 12:57:31 +0800943 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400944}
945
Christian König194d2162016-10-12 15:13:52 +0200946/*
947 * amdgpu_vm_update_directories - make sure that all directories are valid
948 *
949 * @adev: amdgpu_device pointer
950 * @vm: requested vm
951 *
952 * Makes sure all directories are up to date.
953 * Returns 0 for success, error for failure.
954 */
955int amdgpu_vm_update_directories(struct amdgpu_device *adev,
956 struct amdgpu_vm *vm)
957{
958 return amdgpu_vm_update_level(adev, vm, &vm->root, 0);
959}
960
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400961/**
Christian König4e2cb642016-10-25 15:52:28 +0200962 * amdgpu_vm_find_pt - find the page table for an address
963 *
964 * @p: see amdgpu_pte_update_params definition
965 * @addr: virtual address in question
966 *
967 * Find the page table BO for a virtual address, return NULL when none found.
968 */
969static struct amdgpu_bo *amdgpu_vm_get_pt(struct amdgpu_pte_update_params *p,
970 uint64_t addr)
971{
972 struct amdgpu_vm_pt *entry = &p->vm->root;
973 unsigned idx, level = p->adev->vm_manager.num_level;
974
975 while (entry->entries) {
Zhang, Jerry36b32a62017-03-29 16:08:32 +0800976 idx = addr >> (p->adev->vm_manager.block_size * level--);
Christian König4e2cb642016-10-25 15:52:28 +0200977 idx %= amdgpu_bo_size(entry->bo) / 8;
978 entry = &entry->entries[idx];
979 }
980
981 if (level)
982 return NULL;
983
984 return entry->bo;
985}
986
987/**
Christian König92696dd2016-08-05 13:56:35 +0200988 * amdgpu_vm_update_ptes - make sure that page tables are valid
989 *
990 * @params: see amdgpu_pte_update_params definition
991 * @vm: requested vm
992 * @start: start of GPU address range
993 * @end: end of GPU address range
994 * @dst: destination address to map to, the next dst inside the function
995 * @flags: mapping flags
996 *
997 * Update the page tables in the range @start - @end.
998 */
999static void amdgpu_vm_update_ptes(struct amdgpu_pte_update_params *params,
Christian König92696dd2016-08-05 13:56:35 +02001000 uint64_t start, uint64_t end,
Chunming Zhou6b777602016-09-21 16:19:19 +08001001 uint64_t dst, uint64_t flags)
Christian König92696dd2016-08-05 13:56:35 +02001002{
Zhang, Jerry36b32a62017-03-29 16:08:32 +08001003 struct amdgpu_device *adev = params->adev;
1004 const uint64_t mask = AMDGPU_VM_PTE_COUNT(adev) - 1;
Christian König92696dd2016-08-05 13:56:35 +02001005
1006 uint64_t cur_pe_start, cur_nptes, cur_dst;
1007 uint64_t addr; /* next GPU address to be updated */
Christian König92696dd2016-08-05 13:56:35 +02001008 struct amdgpu_bo *pt;
1009 unsigned nptes; /* next number of ptes to be updated */
1010 uint64_t next_pe_start;
1011
1012 /* initialize the variables */
1013 addr = start;
Christian König4e2cb642016-10-25 15:52:28 +02001014 pt = amdgpu_vm_get_pt(params, addr);
Felix Kuehling1866bac2017-03-28 20:36:12 -04001015 if (!pt) {
1016 pr_err("PT not found, aborting update_ptes\n");
Christian König4e2cb642016-10-25 15:52:28 +02001017 return;
Felix Kuehling1866bac2017-03-28 20:36:12 -04001018 }
Christian König4e2cb642016-10-25 15:52:28 +02001019
Chunming Zhou4c7e8852016-08-15 11:46:21 +08001020 if (params->shadow) {
1021 if (!pt->shadow)
1022 return;
Christian König914b4dc2016-09-28 12:27:37 +02001023 pt = pt->shadow;
Chunming Zhou4c7e8852016-08-15 11:46:21 +08001024 }
Christian König92696dd2016-08-05 13:56:35 +02001025 if ((addr & ~mask) == (end & ~mask))
1026 nptes = end - addr;
1027 else
Zhang, Jerry36b32a62017-03-29 16:08:32 +08001028 nptes = AMDGPU_VM_PTE_COUNT(adev) - (addr & mask);
Christian König92696dd2016-08-05 13:56:35 +02001029
1030 cur_pe_start = amdgpu_bo_gpu_offset(pt);
1031 cur_pe_start += (addr & mask) * 8;
1032 cur_nptes = nptes;
1033 cur_dst = dst;
1034
1035 /* for next ptb*/
1036 addr += nptes;
1037 dst += nptes * AMDGPU_GPU_PAGE_SIZE;
1038
1039 /* walk over the address space and update the page tables */
1040 while (addr < end) {
Christian König4e2cb642016-10-25 15:52:28 +02001041 pt = amdgpu_vm_get_pt(params, addr);
Felix Kuehling1866bac2017-03-28 20:36:12 -04001042 if (!pt) {
1043 pr_err("PT not found, aborting update_ptes\n");
Christian König4e2cb642016-10-25 15:52:28 +02001044 return;
Felix Kuehling1866bac2017-03-28 20:36:12 -04001045 }
Christian König4e2cb642016-10-25 15:52:28 +02001046
Chunming Zhou4c7e8852016-08-15 11:46:21 +08001047 if (params->shadow) {
1048 if (!pt->shadow)
1049 return;
Christian König914b4dc2016-09-28 12:27:37 +02001050 pt = pt->shadow;
Chunming Zhou4c7e8852016-08-15 11:46:21 +08001051 }
Christian König92696dd2016-08-05 13:56:35 +02001052
1053 if ((addr & ~mask) == (end & ~mask))
1054 nptes = end - addr;
1055 else
Zhang, Jerry36b32a62017-03-29 16:08:32 +08001056 nptes = AMDGPU_VM_PTE_COUNT(adev) - (addr & mask);
Christian König92696dd2016-08-05 13:56:35 +02001057
1058 next_pe_start = amdgpu_bo_gpu_offset(pt);
1059 next_pe_start += (addr & mask) * 8;
1060
Christian König96105e52016-08-12 12:59:59 +02001061 if ((cur_pe_start + 8 * cur_nptes) == next_pe_start &&
1062 ((cur_nptes + nptes) <= AMDGPU_VM_MAX_UPDATE_SIZE)) {
Christian König92696dd2016-08-05 13:56:35 +02001063 /* The next ptb is consecutive to current ptb.
Christian Königafef8b82016-08-12 13:29:18 +02001064 * Don't call the update function now.
Christian König92696dd2016-08-05 13:56:35 +02001065 * Will update two ptbs together in future.
1066 */
1067 cur_nptes += nptes;
1068 } else {
Christian Königafef8b82016-08-12 13:29:18 +02001069 params->func(params, cur_pe_start, cur_dst, cur_nptes,
1070 AMDGPU_GPU_PAGE_SIZE, flags);
Christian König92696dd2016-08-05 13:56:35 +02001071
1072 cur_pe_start = next_pe_start;
1073 cur_nptes = nptes;
1074 cur_dst = dst;
1075 }
1076
1077 /* for next ptb*/
1078 addr += nptes;
1079 dst += nptes * AMDGPU_GPU_PAGE_SIZE;
1080 }
1081
Christian Königafef8b82016-08-12 13:29:18 +02001082 params->func(params, cur_pe_start, cur_dst, cur_nptes,
1083 AMDGPU_GPU_PAGE_SIZE, flags);
Christian König92696dd2016-08-05 13:56:35 +02001084}
1085
1086/*
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001087 * amdgpu_vm_frag_ptes - add fragment information to PTEs
1088 *
Christian König29efc4f2016-08-04 14:52:50 +02001089 * @params: see amdgpu_pte_update_params definition
Christian König92696dd2016-08-05 13:56:35 +02001090 * @vm: requested vm
1091 * @start: first PTE to handle
1092 * @end: last PTE to handle
1093 * @dst: addr those PTEs should point to
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001094 * @flags: hw mapping flags
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001095 */
Christian König27c5f362016-08-04 15:02:49 +02001096static void amdgpu_vm_frag_ptes(struct amdgpu_pte_update_params *params,
Christian König92696dd2016-08-05 13:56:35 +02001097 uint64_t start, uint64_t end,
Chunming Zhou6b777602016-09-21 16:19:19 +08001098 uint64_t dst, uint64_t flags)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001099{
1100 /**
1101 * The MC L1 TLB supports variable sized pages, based on a fragment
1102 * field in the PTE. When this field is set to a non-zero value, page
1103 * granularity is increased from 4KB to (1 << (12 + frag)). The PTE
1104 * flags are considered valid for all PTEs within the fragment range
1105 * and corresponding mappings are assumed to be physically contiguous.
1106 *
1107 * The L1 TLB can store a single PTE for the whole fragment,
1108 * significantly increasing the space available for translation
1109 * caching. This leads to large improvements in throughput when the
1110 * TLB is under pressure.
1111 *
1112 * The L2 TLB distributes small and large fragments into two
1113 * asymmetric partitions. The large fragment cache is significantly
1114 * larger. Thus, we try to use large fragments wherever possible.
1115 * Userspace can support this by aligning virtual base address and
1116 * allocation size to the fragment size.
1117 */
1118
Christian König80366172016-10-04 13:39:43 +02001119 /* SI and newer are optimized for 64KB */
1120 uint64_t frag_flags = AMDGPU_PTE_FRAG(AMDGPU_LOG2_PAGES_PER_FRAG);
1121 uint64_t frag_align = 1 << AMDGPU_LOG2_PAGES_PER_FRAG;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001122
Christian König92696dd2016-08-05 13:56:35 +02001123 uint64_t frag_start = ALIGN(start, frag_align);
1124 uint64_t frag_end = end & ~(frag_align - 1);
Christian König31f6c1f2016-01-26 12:37:49 +01001125
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001126 /* system pages are non continuously */
Christian Königb7fc2cb2016-08-11 16:44:15 +02001127 if (params->src || !(flags & AMDGPU_PTE_VALID) ||
Christian König92696dd2016-08-05 13:56:35 +02001128 (frag_start >= frag_end)) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001129
Christian König49ac8a22016-10-13 15:09:08 +02001130 amdgpu_vm_update_ptes(params, start, end, dst, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001131 return;
1132 }
1133
1134 /* handle the 4K area at the beginning */
Christian König92696dd2016-08-05 13:56:35 +02001135 if (start != frag_start) {
Christian König49ac8a22016-10-13 15:09:08 +02001136 amdgpu_vm_update_ptes(params, start, frag_start,
Christian König92696dd2016-08-05 13:56:35 +02001137 dst, flags);
1138 dst += (frag_start - start) * AMDGPU_GPU_PAGE_SIZE;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001139 }
1140
1141 /* handle the area in the middle */
Christian König49ac8a22016-10-13 15:09:08 +02001142 amdgpu_vm_update_ptes(params, frag_start, frag_end, dst,
Christian König80366172016-10-04 13:39:43 +02001143 flags | frag_flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001144
1145 /* handle the 4K area at the end */
Christian König92696dd2016-08-05 13:56:35 +02001146 if (frag_end != end) {
1147 dst += (frag_end - frag_start) * AMDGPU_GPU_PAGE_SIZE;
Christian König49ac8a22016-10-13 15:09:08 +02001148 amdgpu_vm_update_ptes(params, frag_end, end, dst, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001149 }
1150}
1151
1152/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001153 * amdgpu_vm_bo_update_mapping - update a mapping in the vm page table
1154 *
1155 * @adev: amdgpu_device pointer
Christian König3cabaa52016-06-06 10:17:58 +02001156 * @exclusive: fence we need to sync to
Christian Königfa3ab3c2016-03-18 21:00:35 +01001157 * @src: address where to copy page table entries from
1158 * @pages_addr: DMA addresses to use for mapping
Christian Königa14faa62016-01-25 14:27:31 +01001159 * @vm: requested vm
1160 * @start: start of mapped range
1161 * @last: last mapped entry
1162 * @flags: flags for the entries
1163 * @addr: addr to set the area to
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001164 * @fence: optional resulting fence
1165 *
Christian Königa14faa62016-01-25 14:27:31 +01001166 * Fill in the page table entries between @start and @last.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001167 * Returns 0 for success, -EINVAL for failure.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001168 */
1169static int amdgpu_vm_bo_update_mapping(struct amdgpu_device *adev,
Chris Wilsonf54d1862016-10-25 13:00:45 +01001170 struct dma_fence *exclusive,
Christian Königfa3ab3c2016-03-18 21:00:35 +01001171 uint64_t src,
1172 dma_addr_t *pages_addr,
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001173 struct amdgpu_vm *vm,
Christian Königa14faa62016-01-25 14:27:31 +01001174 uint64_t start, uint64_t last,
Chunming Zhou6b777602016-09-21 16:19:19 +08001175 uint64_t flags, uint64_t addr,
Chris Wilsonf54d1862016-10-25 13:00:45 +01001176 struct dma_fence **fence)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001177{
Christian König2d55e452016-02-08 17:37:38 +01001178 struct amdgpu_ring *ring;
Christian Königa1e08d32016-01-26 11:40:46 +01001179 void *owner = AMDGPU_FENCE_OWNER_VM;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001180 unsigned nptes, ncmds, ndw;
Christian Königd71518b2016-02-01 12:20:25 +01001181 struct amdgpu_job *job;
Christian König29efc4f2016-08-04 14:52:50 +02001182 struct amdgpu_pte_update_params params;
Chris Wilsonf54d1862016-10-25 13:00:45 +01001183 struct dma_fence *f = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001184 int r;
1185
Christian Königafef8b82016-08-12 13:29:18 +02001186 memset(&params, 0, sizeof(params));
1187 params.adev = adev;
Christian König49ac8a22016-10-13 15:09:08 +02001188 params.vm = vm;
Christian Königafef8b82016-08-12 13:29:18 +02001189 params.src = src;
1190
Christian König2d55e452016-02-08 17:37:38 +01001191 ring = container_of(vm->entity.sched, struct amdgpu_ring, sched);
Christian König27c5f362016-08-04 15:02:49 +02001192
Christian Königa1e08d32016-01-26 11:40:46 +01001193 /* sync to everything on unmapping */
1194 if (!(flags & AMDGPU_PTE_VALID))
1195 owner = AMDGPU_FENCE_OWNER_UNDEFINED;
1196
Christian Königa14faa62016-01-25 14:27:31 +01001197 nptes = last - start + 1;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001198
1199 /*
1200 * reserve space for one command every (1 << BLOCK_SIZE)
1201 * entries or 2k dwords (whatever is smaller)
1202 */
Zhang, Jerry36b32a62017-03-29 16:08:32 +08001203 ncmds = (nptes >> min(adev->vm_manager.block_size, 11u)) + 1;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001204
1205 /* padding, etc. */
1206 ndw = 64;
1207
Christian Königb0456f92016-08-11 14:06:54 +02001208 if (src) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001209 /* only copy commands needed */
1210 ndw += ncmds * 7;
1211
Christian Königafef8b82016-08-12 13:29:18 +02001212 params.func = amdgpu_vm_do_copy_ptes;
1213
Christian Königb0456f92016-08-11 14:06:54 +02001214 } else if (pages_addr) {
1215 /* copy commands needed */
1216 ndw += ncmds * 7;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001217
Christian Königb0456f92016-08-11 14:06:54 +02001218 /* and also PTEs */
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001219 ndw += nptes * 2;
1220
Christian Königafef8b82016-08-12 13:29:18 +02001221 params.func = amdgpu_vm_do_copy_ptes;
1222
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001223 } else {
1224 /* set page commands needed */
1225 ndw += ncmds * 10;
1226
1227 /* two extra commands for begin/end of fragment */
1228 ndw += 2 * 10;
Christian Königafef8b82016-08-12 13:29:18 +02001229
1230 params.func = amdgpu_vm_do_set_ptes;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001231 }
1232
Christian Königd71518b2016-02-01 12:20:25 +01001233 r = amdgpu_job_alloc_with_ib(adev, ndw * 4, &job);
1234 if (r)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001235 return r;
Christian Königd71518b2016-02-01 12:20:25 +01001236
Christian König29efc4f2016-08-04 14:52:50 +02001237 params.ib = &job->ibs[0];
Chunming Zhoud5fc5e82015-07-21 16:52:10 +08001238
Christian Königb0456f92016-08-11 14:06:54 +02001239 if (!src && pages_addr) {
1240 uint64_t *pte;
1241 unsigned i;
1242
1243 /* Put the PTEs at the end of the IB. */
1244 i = ndw - nptes * 2;
1245 pte= (uint64_t *)&(job->ibs->ptr[i]);
1246 params.src = job->ibs->gpu_addr + i * 4;
1247
1248 for (i = 0; i < nptes; ++i) {
1249 pte[i] = amdgpu_vm_map_gart(pages_addr, addr + i *
1250 AMDGPU_GPU_PAGE_SIZE);
1251 pte[i] |= flags;
1252 }
Christian Königd7a4ac62016-09-25 11:54:00 +02001253 addr = 0;
Christian Königb0456f92016-08-11 14:06:54 +02001254 }
1255
Christian König3cabaa52016-06-06 10:17:58 +02001256 r = amdgpu_sync_fence(adev, &job->sync, exclusive);
1257 if (r)
1258 goto error_free;
1259
Christian König67003a12016-10-12 14:46:26 +02001260 r = amdgpu_sync_resv(adev, &job->sync, vm->root.bo->tbo.resv,
Christian Königa1e08d32016-01-26 11:40:46 +01001261 owner);
1262 if (r)
1263 goto error_free;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001264
Christian König67003a12016-10-12 14:46:26 +02001265 r = reservation_object_reserve_shared(vm->root.bo->tbo.resv);
Christian Königa1e08d32016-01-26 11:40:46 +01001266 if (r)
1267 goto error_free;
1268
Chunming Zhou4c7e8852016-08-15 11:46:21 +08001269 params.shadow = true;
Christian König49ac8a22016-10-13 15:09:08 +02001270 amdgpu_vm_frag_ptes(&params, start, last + 1, addr, flags);
Chunming Zhou4c7e8852016-08-15 11:46:21 +08001271 params.shadow = false;
Christian König49ac8a22016-10-13 15:09:08 +02001272 amdgpu_vm_frag_ptes(&params, start, last + 1, addr, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001273
Christian König29efc4f2016-08-04 14:52:50 +02001274 amdgpu_ring_pad_ib(ring, params.ib);
1275 WARN_ON(params.ib->length_dw > ndw);
Christian König2bd9ccf2016-02-01 12:53:58 +01001276 r = amdgpu_job_submit(job, ring, &vm->entity,
1277 AMDGPU_FENCE_OWNER_VM, &f);
Chunming Zhou4af9f072015-08-03 12:57:31 +08001278 if (r)
1279 goto error_free;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001280
Christian König67003a12016-10-12 14:46:26 +02001281 amdgpu_bo_fence(vm->root.bo, f, true);
Christian König284710f2017-01-30 11:09:31 +01001282 dma_fence_put(*fence);
1283 *fence = f;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001284 return 0;
Chunming Zhoud5fc5e82015-07-21 16:52:10 +08001285
1286error_free:
Christian Königd71518b2016-02-01 12:20:25 +01001287 amdgpu_job_free(job);
Chunming Zhou4af9f072015-08-03 12:57:31 +08001288 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001289}
1290
1291/**
Christian Königa14faa62016-01-25 14:27:31 +01001292 * amdgpu_vm_bo_split_mapping - split a mapping into smaller chunks
1293 *
1294 * @adev: amdgpu_device pointer
Christian König3cabaa52016-06-06 10:17:58 +02001295 * @exclusive: fence we need to sync to
Christian König8358dce2016-03-30 10:50:25 +02001296 * @gtt_flags: flags as they are used for GTT
1297 * @pages_addr: DMA addresses to use for mapping
Christian Königa14faa62016-01-25 14:27:31 +01001298 * @vm: requested vm
1299 * @mapping: mapped range and flags to use for the update
Christian König8358dce2016-03-30 10:50:25 +02001300 * @flags: HW flags for the mapping
Christian König63e0ba42016-08-16 17:38:37 +02001301 * @nodes: array of drm_mm_nodes with the MC addresses
Christian Königa14faa62016-01-25 14:27:31 +01001302 * @fence: optional resulting fence
1303 *
1304 * Split the mapping into smaller chunks so that each update fits
1305 * into a SDMA IB.
1306 * Returns 0 for success, -EINVAL for failure.
1307 */
1308static int amdgpu_vm_bo_split_mapping(struct amdgpu_device *adev,
Chris Wilsonf54d1862016-10-25 13:00:45 +01001309 struct dma_fence *exclusive,
Chunming Zhou6b777602016-09-21 16:19:19 +08001310 uint64_t gtt_flags,
Christian König8358dce2016-03-30 10:50:25 +02001311 dma_addr_t *pages_addr,
Christian Königa14faa62016-01-25 14:27:31 +01001312 struct amdgpu_vm *vm,
1313 struct amdgpu_bo_va_mapping *mapping,
Chunming Zhou6b777602016-09-21 16:19:19 +08001314 uint64_t flags,
Christian König63e0ba42016-08-16 17:38:37 +02001315 struct drm_mm_node *nodes,
Chris Wilsonf54d1862016-10-25 13:00:45 +01001316 struct dma_fence **fence)
Christian Königa14faa62016-01-25 14:27:31 +01001317{
Christian Königa9f87f62017-03-30 14:03:59 +02001318 uint64_t pfn, src = 0, start = mapping->start;
Christian Königa14faa62016-01-25 14:27:31 +01001319 int r;
1320
1321 /* normally,bo_va->flags only contians READABLE and WIRTEABLE bit go here
1322 * but in case of something, we filter the flags in first place
1323 */
1324 if (!(mapping->flags & AMDGPU_PTE_READABLE))
1325 flags &= ~AMDGPU_PTE_READABLE;
1326 if (!(mapping->flags & AMDGPU_PTE_WRITEABLE))
1327 flags &= ~AMDGPU_PTE_WRITEABLE;
1328
Alex Xie15b31c52017-03-03 16:47:11 -05001329 flags &= ~AMDGPU_PTE_EXECUTABLE;
1330 flags |= mapping->flags & AMDGPU_PTE_EXECUTABLE;
1331
Alex Xieb0fd18b2017-03-03 16:49:39 -05001332 flags &= ~AMDGPU_PTE_MTYPE_MASK;
1333 flags |= (mapping->flags & AMDGPU_PTE_MTYPE_MASK);
1334
Christian Königa14faa62016-01-25 14:27:31 +01001335 trace_amdgpu_vm_bo_update(mapping);
1336
Christian König63e0ba42016-08-16 17:38:37 +02001337 pfn = mapping->offset >> PAGE_SHIFT;
1338 if (nodes) {
1339 while (pfn >= nodes->size) {
1340 pfn -= nodes->size;
1341 ++nodes;
1342 }
Christian Königfa3ab3c2016-03-18 21:00:35 +01001343 }
Christian Königa14faa62016-01-25 14:27:31 +01001344
Christian König63e0ba42016-08-16 17:38:37 +02001345 do {
1346 uint64_t max_entries;
1347 uint64_t addr, last;
Christian Königa14faa62016-01-25 14:27:31 +01001348
Christian König63e0ba42016-08-16 17:38:37 +02001349 if (nodes) {
1350 addr = nodes->start << PAGE_SHIFT;
1351 max_entries = (nodes->size - pfn) *
1352 (PAGE_SIZE / AMDGPU_GPU_PAGE_SIZE);
1353 } else {
1354 addr = 0;
1355 max_entries = S64_MAX;
1356 }
Christian Königa14faa62016-01-25 14:27:31 +01001357
Christian König63e0ba42016-08-16 17:38:37 +02001358 if (pages_addr) {
1359 if (flags == gtt_flags)
1360 src = adev->gart.table_addr +
1361 (addr >> AMDGPU_GPU_PAGE_SHIFT) * 8;
1362 else
1363 max_entries = min(max_entries, 16ull * 1024ull);
1364 addr = 0;
1365 } else if (flags & AMDGPU_PTE_VALID) {
1366 addr += adev->vm_manager.vram_base_offset;
1367 }
1368 addr += pfn << PAGE_SHIFT;
1369
Christian Königa9f87f62017-03-30 14:03:59 +02001370 last = min((uint64_t)mapping->last, start + max_entries - 1);
Christian König3cabaa52016-06-06 10:17:58 +02001371 r = amdgpu_vm_bo_update_mapping(adev, exclusive,
1372 src, pages_addr, vm,
Christian Königa14faa62016-01-25 14:27:31 +01001373 start, last, flags, addr,
1374 fence);
1375 if (r)
1376 return r;
1377
Christian König63e0ba42016-08-16 17:38:37 +02001378 pfn += last - start + 1;
1379 if (nodes && nodes->size == pfn) {
1380 pfn = 0;
1381 ++nodes;
1382 }
Christian Königa14faa62016-01-25 14:27:31 +01001383 start = last + 1;
Christian König63e0ba42016-08-16 17:38:37 +02001384
Christian Königa9f87f62017-03-30 14:03:59 +02001385 } while (unlikely(start != mapping->last + 1));
Christian Königa14faa62016-01-25 14:27:31 +01001386
1387 return 0;
1388}
1389
1390/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001391 * amdgpu_vm_bo_update - update all BO mappings in the vm page table
1392 *
1393 * @adev: amdgpu_device pointer
1394 * @bo_va: requested BO and VM object
Christian König99e124f2016-08-16 14:43:17 +02001395 * @clear: if true clear the entries
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001396 *
1397 * Fill in the page table entries for @bo_va.
1398 * Returns 0 for success, -EINVAL for failure.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001399 */
1400int amdgpu_vm_bo_update(struct amdgpu_device *adev,
1401 struct amdgpu_bo_va *bo_va,
Christian König99e124f2016-08-16 14:43:17 +02001402 bool clear)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001403{
1404 struct amdgpu_vm *vm = bo_va->vm;
1405 struct amdgpu_bo_va_mapping *mapping;
Christian König8358dce2016-03-30 10:50:25 +02001406 dma_addr_t *pages_addr = NULL;
Chunming Zhou6b777602016-09-21 16:19:19 +08001407 uint64_t gtt_flags, flags;
Christian König99e124f2016-08-16 14:43:17 +02001408 struct ttm_mem_reg *mem;
Christian König63e0ba42016-08-16 17:38:37 +02001409 struct drm_mm_node *nodes;
Chris Wilsonf54d1862016-10-25 13:00:45 +01001410 struct dma_fence *exclusive;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001411 int r;
1412
Christian Königa5f6b5b2017-01-30 11:01:38 +01001413 if (clear || !bo_va->bo) {
Christian König99e124f2016-08-16 14:43:17 +02001414 mem = NULL;
Christian König63e0ba42016-08-16 17:38:37 +02001415 nodes = NULL;
Christian König99e124f2016-08-16 14:43:17 +02001416 exclusive = NULL;
1417 } else {
Christian König8358dce2016-03-30 10:50:25 +02001418 struct ttm_dma_tt *ttm;
1419
Christian König99e124f2016-08-16 14:43:17 +02001420 mem = &bo_va->bo->tbo.mem;
Christian König63e0ba42016-08-16 17:38:37 +02001421 nodes = mem->mm_node;
1422 if (mem->mem_type == TTM_PL_TT) {
Christian König8358dce2016-03-30 10:50:25 +02001423 ttm = container_of(bo_va->bo->tbo.ttm, struct
1424 ttm_dma_tt, ttm);
1425 pages_addr = ttm->dma_address;
Christian König9ab21462015-11-30 14:19:26 +01001426 }
Christian König3cabaa52016-06-06 10:17:58 +02001427 exclusive = reservation_object_get_excl(bo_va->bo->tbo.resv);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001428 }
1429
Christian Königa5f6b5b2017-01-30 11:01:38 +01001430 if (bo_va->bo) {
1431 flags = amdgpu_ttm_tt_pte_flags(adev, bo_va->bo->tbo.ttm, mem);
1432 gtt_flags = (amdgpu_ttm_is_bound(bo_va->bo->tbo.ttm) &&
1433 adev == amdgpu_ttm_adev(bo_va->bo->tbo.bdev)) ?
1434 flags : 0;
1435 } else {
1436 flags = 0x0;
1437 gtt_flags = ~0x0;
1438 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001439
Christian König7fc11952015-07-30 11:53:42 +02001440 spin_lock(&vm->status_lock);
1441 if (!list_empty(&bo_va->vm_status))
1442 list_splice_init(&bo_va->valids, &bo_va->invalids);
1443 spin_unlock(&vm->status_lock);
1444
1445 list_for_each_entry(mapping, &bo_va->invalids, list) {
Christian König3cabaa52016-06-06 10:17:58 +02001446 r = amdgpu_vm_bo_split_mapping(adev, exclusive,
1447 gtt_flags, pages_addr, vm,
Christian König63e0ba42016-08-16 17:38:37 +02001448 mapping, flags, nodes,
Christian König8358dce2016-03-30 10:50:25 +02001449 &bo_va->last_pt_update);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001450 if (r)
1451 return r;
1452 }
1453
Christian Königd6c10f62015-09-28 12:00:23 +02001454 if (trace_amdgpu_vm_bo_mapping_enabled()) {
1455 list_for_each_entry(mapping, &bo_va->valids, list)
1456 trace_amdgpu_vm_bo_mapping(mapping);
1457
1458 list_for_each_entry(mapping, &bo_va->invalids, list)
1459 trace_amdgpu_vm_bo_mapping(mapping);
1460 }
1461
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001462 spin_lock(&vm->status_lock);
monk.liu6d1d0ef2015-08-14 13:36:41 +08001463 list_splice_init(&bo_va->invalids, &bo_va->valids);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001464 list_del_init(&bo_va->vm_status);
Christian König99e124f2016-08-16 14:43:17 +02001465 if (clear)
Christian König7fc11952015-07-30 11:53:42 +02001466 list_add(&bo_va->vm_status, &vm->cleared);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001467 spin_unlock(&vm->status_lock);
1468
1469 return 0;
1470}
1471
1472/**
Christian König284710f2017-01-30 11:09:31 +01001473 * amdgpu_vm_update_prt_state - update the global PRT state
1474 */
1475static void amdgpu_vm_update_prt_state(struct amdgpu_device *adev)
1476{
1477 unsigned long flags;
1478 bool enable;
1479
1480 spin_lock_irqsave(&adev->vm_manager.prt_lock, flags);
Christian König451bc8e2017-02-14 16:02:52 +01001481 enable = !!atomic_read(&adev->vm_manager.num_prt_users);
Christian König284710f2017-01-30 11:09:31 +01001482 adev->gart.gart_funcs->set_prt(adev, enable);
1483 spin_unlock_irqrestore(&adev->vm_manager.prt_lock, flags);
1484}
1485
1486/**
Christian König4388fc22017-03-13 10:13:36 +01001487 * amdgpu_vm_prt_get - add a PRT user
Christian König451bc8e2017-02-14 16:02:52 +01001488 */
1489static void amdgpu_vm_prt_get(struct amdgpu_device *adev)
1490{
Christian König4388fc22017-03-13 10:13:36 +01001491 if (!adev->gart.gart_funcs->set_prt)
1492 return;
1493
Christian König451bc8e2017-02-14 16:02:52 +01001494 if (atomic_inc_return(&adev->vm_manager.num_prt_users) == 1)
1495 amdgpu_vm_update_prt_state(adev);
1496}
1497
1498/**
Christian König0b15f2f2017-02-14 15:47:03 +01001499 * amdgpu_vm_prt_put - drop a PRT user
1500 */
1501static void amdgpu_vm_prt_put(struct amdgpu_device *adev)
1502{
Christian König451bc8e2017-02-14 16:02:52 +01001503 if (atomic_dec_return(&adev->vm_manager.num_prt_users) == 0)
Christian König0b15f2f2017-02-14 15:47:03 +01001504 amdgpu_vm_update_prt_state(adev);
1505}
1506
1507/**
Christian König451bc8e2017-02-14 16:02:52 +01001508 * amdgpu_vm_prt_cb - callback for updating the PRT status
Christian König284710f2017-01-30 11:09:31 +01001509 */
1510static void amdgpu_vm_prt_cb(struct dma_fence *fence, struct dma_fence_cb *_cb)
1511{
1512 struct amdgpu_prt_cb *cb = container_of(_cb, struct amdgpu_prt_cb, cb);
1513
Christian König0b15f2f2017-02-14 15:47:03 +01001514 amdgpu_vm_prt_put(cb->adev);
Christian König284710f2017-01-30 11:09:31 +01001515 kfree(cb);
1516}
1517
1518/**
Christian König451bc8e2017-02-14 16:02:52 +01001519 * amdgpu_vm_add_prt_cb - add callback for updating the PRT status
1520 */
1521static void amdgpu_vm_add_prt_cb(struct amdgpu_device *adev,
1522 struct dma_fence *fence)
1523{
Christian König4388fc22017-03-13 10:13:36 +01001524 struct amdgpu_prt_cb *cb;
Christian König451bc8e2017-02-14 16:02:52 +01001525
Christian König4388fc22017-03-13 10:13:36 +01001526 if (!adev->gart.gart_funcs->set_prt)
1527 return;
1528
1529 cb = kmalloc(sizeof(struct amdgpu_prt_cb), GFP_KERNEL);
Christian König451bc8e2017-02-14 16:02:52 +01001530 if (!cb) {
1531 /* Last resort when we are OOM */
1532 if (fence)
1533 dma_fence_wait(fence, false);
1534
Dan Carpenter486a68f2017-04-03 21:41:39 +03001535 amdgpu_vm_prt_put(adev);
Christian König451bc8e2017-02-14 16:02:52 +01001536 } else {
1537 cb->adev = adev;
1538 if (!fence || dma_fence_add_callback(fence, &cb->cb,
1539 amdgpu_vm_prt_cb))
1540 amdgpu_vm_prt_cb(fence, &cb->cb);
1541 }
1542}
1543
1544/**
Christian König284710f2017-01-30 11:09:31 +01001545 * amdgpu_vm_free_mapping - free a mapping
1546 *
1547 * @adev: amdgpu_device pointer
1548 * @vm: requested vm
1549 * @mapping: mapping to be freed
1550 * @fence: fence of the unmap operation
1551 *
1552 * Free a mapping and make sure we decrease the PRT usage count if applicable.
1553 */
1554static void amdgpu_vm_free_mapping(struct amdgpu_device *adev,
1555 struct amdgpu_vm *vm,
1556 struct amdgpu_bo_va_mapping *mapping,
1557 struct dma_fence *fence)
1558{
Christian König451bc8e2017-02-14 16:02:52 +01001559 if (mapping->flags & AMDGPU_PTE_PRT)
1560 amdgpu_vm_add_prt_cb(adev, fence);
Christian König284710f2017-01-30 11:09:31 +01001561 kfree(mapping);
1562}
1563
1564/**
Christian König451bc8e2017-02-14 16:02:52 +01001565 * amdgpu_vm_prt_fini - finish all prt mappings
1566 *
1567 * @adev: amdgpu_device pointer
1568 * @vm: requested vm
1569 *
1570 * Register a cleanup callback to disable PRT support after VM dies.
1571 */
1572static void amdgpu_vm_prt_fini(struct amdgpu_device *adev, struct amdgpu_vm *vm)
1573{
Christian König67003a12016-10-12 14:46:26 +02001574 struct reservation_object *resv = vm->root.bo->tbo.resv;
Christian König451bc8e2017-02-14 16:02:52 +01001575 struct dma_fence *excl, **shared;
1576 unsigned i, shared_count;
1577 int r;
1578
1579 r = reservation_object_get_fences_rcu(resv, &excl,
1580 &shared_count, &shared);
1581 if (r) {
1582 /* Not enough memory to grab the fence list, as last resort
1583 * block for all the fences to complete.
1584 */
1585 reservation_object_wait_timeout_rcu(resv, true, false,
1586 MAX_SCHEDULE_TIMEOUT);
1587 return;
1588 }
1589
1590 /* Add a callback for each fence in the reservation object */
1591 amdgpu_vm_prt_get(adev);
1592 amdgpu_vm_add_prt_cb(adev, excl);
1593
1594 for (i = 0; i < shared_count; ++i) {
1595 amdgpu_vm_prt_get(adev);
1596 amdgpu_vm_add_prt_cb(adev, shared[i]);
1597 }
1598
1599 kfree(shared);
1600}
1601
1602/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001603 * amdgpu_vm_clear_freed - clear freed BOs in the PT
1604 *
1605 * @adev: amdgpu_device pointer
1606 * @vm: requested vm
Nicolai Hähnlef3467812017-03-23 19:36:31 +01001607 * @fence: optional resulting fence (unchanged if no work needed to be done
1608 * or if an error occurred)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001609 *
1610 * Make sure all freed BOs are cleared in the PT.
1611 * Returns 0 for success.
1612 *
1613 * PTs have to be reserved and mutex must be locked!
1614 */
1615int amdgpu_vm_clear_freed(struct amdgpu_device *adev,
Nicolai Hähnlef3467812017-03-23 19:36:31 +01001616 struct amdgpu_vm *vm,
1617 struct dma_fence **fence)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001618{
1619 struct amdgpu_bo_va_mapping *mapping;
Nicolai Hähnlef3467812017-03-23 19:36:31 +01001620 struct dma_fence *f = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001621 int r;
1622
1623 while (!list_empty(&vm->freed)) {
1624 mapping = list_first_entry(&vm->freed,
1625 struct amdgpu_bo_va_mapping, list);
1626 list_del(&mapping->list);
Christian Könige17841b2016-03-08 17:52:01 +01001627
Christian König3cabaa52016-06-06 10:17:58 +02001628 r = amdgpu_vm_bo_split_mapping(adev, NULL, 0, NULL, vm, mapping,
Nicolai Hähnlef3467812017-03-23 19:36:31 +01001629 0, 0, &f);
1630 amdgpu_vm_free_mapping(adev, vm, mapping, f);
Christian König284710f2017-01-30 11:09:31 +01001631 if (r) {
Nicolai Hähnlef3467812017-03-23 19:36:31 +01001632 dma_fence_put(f);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001633 return r;
Christian König284710f2017-01-30 11:09:31 +01001634 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001635 }
Nicolai Hähnlef3467812017-03-23 19:36:31 +01001636
1637 if (fence && f) {
1638 dma_fence_put(*fence);
1639 *fence = f;
1640 } else {
1641 dma_fence_put(f);
1642 }
1643
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001644 return 0;
1645
1646}
1647
1648/**
1649 * amdgpu_vm_clear_invalids - clear invalidated BOs in the PT
1650 *
1651 * @adev: amdgpu_device pointer
1652 * @vm: requested vm
1653 *
1654 * Make sure all invalidated BOs are cleared in the PT.
1655 * Returns 0 for success.
1656 *
1657 * PTs have to be reserved and mutex must be locked!
1658 */
1659int amdgpu_vm_clear_invalids(struct amdgpu_device *adev,
monk.liucfe2c972015-05-26 15:01:54 +08001660 struct amdgpu_vm *vm, struct amdgpu_sync *sync)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001661{
monk.liucfe2c972015-05-26 15:01:54 +08001662 struct amdgpu_bo_va *bo_va = NULL;
Christian König91e1a522015-07-06 22:06:40 +02001663 int r = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001664
1665 spin_lock(&vm->status_lock);
1666 while (!list_empty(&vm->invalidated)) {
1667 bo_va = list_first_entry(&vm->invalidated,
1668 struct amdgpu_bo_va, vm_status);
1669 spin_unlock(&vm->status_lock);
Christian König32b41ac2016-03-08 18:03:27 +01001670
Christian König99e124f2016-08-16 14:43:17 +02001671 r = amdgpu_vm_bo_update(adev, bo_va, true);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001672 if (r)
1673 return r;
1674
1675 spin_lock(&vm->status_lock);
1676 }
1677 spin_unlock(&vm->status_lock);
1678
monk.liucfe2c972015-05-26 15:01:54 +08001679 if (bo_va)
Chunming Zhoubb1e38a42015-08-03 18:19:38 +08001680 r = amdgpu_sync_fence(adev, sync, bo_va->last_pt_update);
Christian König91e1a522015-07-06 22:06:40 +02001681
1682 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001683}
1684
1685/**
1686 * amdgpu_vm_bo_add - add a bo to a specific vm
1687 *
1688 * @adev: amdgpu_device pointer
1689 * @vm: requested vm
1690 * @bo: amdgpu buffer object
1691 *
Christian König8843dbb2016-01-26 12:17:11 +01001692 * Add @bo into the requested vm.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001693 * Add @bo to the list of bos associated with the vm
1694 * Returns newly added bo_va or NULL for failure
1695 *
1696 * Object has to be reserved!
1697 */
1698struct amdgpu_bo_va *amdgpu_vm_bo_add(struct amdgpu_device *adev,
1699 struct amdgpu_vm *vm,
1700 struct amdgpu_bo *bo)
1701{
1702 struct amdgpu_bo_va *bo_va;
1703
1704 bo_va = kzalloc(sizeof(struct amdgpu_bo_va), GFP_KERNEL);
1705 if (bo_va == NULL) {
1706 return NULL;
1707 }
1708 bo_va->vm = vm;
1709 bo_va->bo = bo;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001710 bo_va->ref_count = 1;
1711 INIT_LIST_HEAD(&bo_va->bo_list);
Christian König7fc11952015-07-30 11:53:42 +02001712 INIT_LIST_HEAD(&bo_va->valids);
1713 INIT_LIST_HEAD(&bo_va->invalids);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001714 INIT_LIST_HEAD(&bo_va->vm_status);
Christian König32b41ac2016-03-08 18:03:27 +01001715
Christian Königa5f6b5b2017-01-30 11:01:38 +01001716 if (bo)
1717 list_add_tail(&bo_va->bo_list, &bo->va);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001718
1719 return bo_va;
1720}
1721
1722/**
1723 * amdgpu_vm_bo_map - map bo inside a vm
1724 *
1725 * @adev: amdgpu_device pointer
1726 * @bo_va: bo_va to store the address
1727 * @saddr: where to map the BO
1728 * @offset: requested offset in the BO
1729 * @flags: attributes of pages (read/write/valid/etc.)
1730 *
1731 * Add a mapping of the BO at the specefied addr into the VM.
1732 * Returns 0 for success, error for failure.
1733 *
Chunming Zhou49b02b12015-11-13 14:18:38 +08001734 * Object has to be reserved and unreserved outside!
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001735 */
1736int amdgpu_vm_bo_map(struct amdgpu_device *adev,
1737 struct amdgpu_bo_va *bo_va,
1738 uint64_t saddr, uint64_t offset,
Christian König268c3002017-01-18 14:49:43 +01001739 uint64_t size, uint64_t flags)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001740{
Christian Königa9f87f62017-03-30 14:03:59 +02001741 struct amdgpu_bo_va_mapping *mapping, *tmp;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001742 struct amdgpu_vm *vm = bo_va->vm;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001743 uint64_t eaddr;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001744
Christian König0be52de2015-05-18 14:37:27 +02001745 /* validate the parameters */
1746 if (saddr & AMDGPU_GPU_PAGE_MASK || offset & AMDGPU_GPU_PAGE_MASK ||
Chunming Zhou49b02b12015-11-13 14:18:38 +08001747 size == 0 || size & AMDGPU_GPU_PAGE_MASK)
Christian König0be52de2015-05-18 14:37:27 +02001748 return -EINVAL;
Christian König0be52de2015-05-18 14:37:27 +02001749
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001750 /* make sure object fit at this offset */
Felix Kuehling005ae952015-11-23 17:43:48 -05001751 eaddr = saddr + size - 1;
Christian Königa5f6b5b2017-01-30 11:01:38 +01001752 if (saddr >= eaddr ||
1753 (bo_va->bo && offset + size > amdgpu_bo_size(bo_va->bo)))
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001754 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001755
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001756 saddr /= AMDGPU_GPU_PAGE_SIZE;
1757 eaddr /= AMDGPU_GPU_PAGE_SIZE;
1758
Christian Königa9f87f62017-03-30 14:03:59 +02001759 tmp = amdgpu_vm_it_iter_first(&vm->va, saddr, eaddr);
1760 if (tmp) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001761 /* bo and tmp overlap, invalid addr */
1762 dev_err(adev->dev, "bo %p va 0x%010Lx-0x%010Lx conflict with "
Christian Königa9f87f62017-03-30 14:03:59 +02001763 "0x%010Lx-0x%010Lx\n", bo_va->bo, saddr, eaddr,
1764 tmp->start, tmp->last + 1);
Christian König663e4572017-03-13 10:13:37 +01001765 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001766 }
1767
1768 mapping = kmalloc(sizeof(*mapping), GFP_KERNEL);
Christian König663e4572017-03-13 10:13:37 +01001769 if (!mapping)
1770 return -ENOMEM;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001771
1772 INIT_LIST_HEAD(&mapping->list);
Christian Königa9f87f62017-03-30 14:03:59 +02001773 mapping->start = saddr;
1774 mapping->last = eaddr;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001775 mapping->offset = offset;
1776 mapping->flags = flags;
1777
Christian König7fc11952015-07-30 11:53:42 +02001778 list_add(&mapping->list, &bo_va->invalids);
Christian Königa9f87f62017-03-30 14:03:59 +02001779 amdgpu_vm_it_insert(mapping, &vm->va);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001780
Christian König4388fc22017-03-13 10:13:36 +01001781 if (flags & AMDGPU_PTE_PRT)
1782 amdgpu_vm_prt_get(adev);
1783
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001784 return 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001785}
1786
1787/**
Christian König80f95c52017-03-13 10:13:39 +01001788 * amdgpu_vm_bo_replace_map - map bo inside a vm, replacing existing mappings
1789 *
1790 * @adev: amdgpu_device pointer
1791 * @bo_va: bo_va to store the address
1792 * @saddr: where to map the BO
1793 * @offset: requested offset in the BO
1794 * @flags: attributes of pages (read/write/valid/etc.)
1795 *
1796 * Add a mapping of the BO at the specefied addr into the VM. Replace existing
1797 * mappings as we do so.
1798 * Returns 0 for success, error for failure.
1799 *
1800 * Object has to be reserved and unreserved outside!
1801 */
1802int amdgpu_vm_bo_replace_map(struct amdgpu_device *adev,
1803 struct amdgpu_bo_va *bo_va,
1804 uint64_t saddr, uint64_t offset,
1805 uint64_t size, uint64_t flags)
1806{
1807 struct amdgpu_bo_va_mapping *mapping;
1808 struct amdgpu_vm *vm = bo_va->vm;
1809 uint64_t eaddr;
1810 int r;
1811
1812 /* validate the parameters */
1813 if (saddr & AMDGPU_GPU_PAGE_MASK || offset & AMDGPU_GPU_PAGE_MASK ||
1814 size == 0 || size & AMDGPU_GPU_PAGE_MASK)
1815 return -EINVAL;
1816
1817 /* make sure object fit at this offset */
1818 eaddr = saddr + size - 1;
1819 if (saddr >= eaddr ||
1820 (bo_va->bo && offset + size > amdgpu_bo_size(bo_va->bo)))
1821 return -EINVAL;
1822
1823 /* Allocate all the needed memory */
1824 mapping = kmalloc(sizeof(*mapping), GFP_KERNEL);
1825 if (!mapping)
1826 return -ENOMEM;
1827
1828 r = amdgpu_vm_bo_clear_mappings(adev, bo_va->vm, saddr, size);
1829 if (r) {
1830 kfree(mapping);
1831 return r;
1832 }
1833
1834 saddr /= AMDGPU_GPU_PAGE_SIZE;
1835 eaddr /= AMDGPU_GPU_PAGE_SIZE;
1836
Christian Königa9f87f62017-03-30 14:03:59 +02001837 mapping->start = saddr;
1838 mapping->last = eaddr;
Christian König80f95c52017-03-13 10:13:39 +01001839 mapping->offset = offset;
1840 mapping->flags = flags;
1841
1842 list_add(&mapping->list, &bo_va->invalids);
Christian Königa9f87f62017-03-30 14:03:59 +02001843 amdgpu_vm_it_insert(mapping, &vm->va);
Christian König80f95c52017-03-13 10:13:39 +01001844
1845 if (flags & AMDGPU_PTE_PRT)
1846 amdgpu_vm_prt_get(adev);
1847
1848 return 0;
1849}
1850
1851/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001852 * amdgpu_vm_bo_unmap - remove bo mapping from vm
1853 *
1854 * @adev: amdgpu_device pointer
1855 * @bo_va: bo_va to remove the address from
1856 * @saddr: where to the BO is mapped
1857 *
1858 * Remove a mapping of the BO at the specefied addr from the VM.
1859 * Returns 0 for success, error for failure.
1860 *
Chunming Zhou49b02b12015-11-13 14:18:38 +08001861 * Object has to be reserved and unreserved outside!
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001862 */
1863int amdgpu_vm_bo_unmap(struct amdgpu_device *adev,
1864 struct amdgpu_bo_va *bo_va,
1865 uint64_t saddr)
1866{
1867 struct amdgpu_bo_va_mapping *mapping;
1868 struct amdgpu_vm *vm = bo_va->vm;
Christian König7fc11952015-07-30 11:53:42 +02001869 bool valid = true;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001870
Christian König6c7fc502015-06-05 20:56:17 +02001871 saddr /= AMDGPU_GPU_PAGE_SIZE;
Christian König32b41ac2016-03-08 18:03:27 +01001872
Christian König7fc11952015-07-30 11:53:42 +02001873 list_for_each_entry(mapping, &bo_va->valids, list) {
Christian Königa9f87f62017-03-30 14:03:59 +02001874 if (mapping->start == saddr)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001875 break;
1876 }
1877
Christian König7fc11952015-07-30 11:53:42 +02001878 if (&mapping->list == &bo_va->valids) {
1879 valid = false;
1880
1881 list_for_each_entry(mapping, &bo_va->invalids, list) {
Christian Königa9f87f62017-03-30 14:03:59 +02001882 if (mapping->start == saddr)
Christian König7fc11952015-07-30 11:53:42 +02001883 break;
1884 }
1885
Christian König32b41ac2016-03-08 18:03:27 +01001886 if (&mapping->list == &bo_va->invalids)
Christian König7fc11952015-07-30 11:53:42 +02001887 return -ENOENT;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001888 }
Christian König32b41ac2016-03-08 18:03:27 +01001889
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001890 list_del(&mapping->list);
Christian Königa9f87f62017-03-30 14:03:59 +02001891 amdgpu_vm_it_remove(mapping, &vm->va);
Christian König93e3e432015-06-09 16:58:33 +02001892 trace_amdgpu_vm_bo_unmap(bo_va, mapping);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001893
Christian Könige17841b2016-03-08 17:52:01 +01001894 if (valid)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001895 list_add(&mapping->list, &vm->freed);
Christian Könige17841b2016-03-08 17:52:01 +01001896 else
Christian König284710f2017-01-30 11:09:31 +01001897 amdgpu_vm_free_mapping(adev, vm, mapping,
1898 bo_va->last_pt_update);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001899
1900 return 0;
1901}
1902
1903/**
Christian Königdc54d3d2017-03-13 10:13:38 +01001904 * amdgpu_vm_bo_clear_mappings - remove all mappings in a specific range
1905 *
1906 * @adev: amdgpu_device pointer
1907 * @vm: VM structure to use
1908 * @saddr: start of the range
1909 * @size: size of the range
1910 *
1911 * Remove all mappings in a range, split them as appropriate.
1912 * Returns 0 for success, error for failure.
1913 */
1914int amdgpu_vm_bo_clear_mappings(struct amdgpu_device *adev,
1915 struct amdgpu_vm *vm,
1916 uint64_t saddr, uint64_t size)
1917{
1918 struct amdgpu_bo_va_mapping *before, *after, *tmp, *next;
Christian Königdc54d3d2017-03-13 10:13:38 +01001919 LIST_HEAD(removed);
1920 uint64_t eaddr;
1921
1922 eaddr = saddr + size - 1;
1923 saddr /= AMDGPU_GPU_PAGE_SIZE;
1924 eaddr /= AMDGPU_GPU_PAGE_SIZE;
1925
1926 /* Allocate all the needed memory */
1927 before = kzalloc(sizeof(*before), GFP_KERNEL);
1928 if (!before)
1929 return -ENOMEM;
Junwei Zhang27f6d612017-03-16 16:09:24 +08001930 INIT_LIST_HEAD(&before->list);
Christian Königdc54d3d2017-03-13 10:13:38 +01001931
1932 after = kzalloc(sizeof(*after), GFP_KERNEL);
1933 if (!after) {
1934 kfree(before);
1935 return -ENOMEM;
1936 }
Junwei Zhang27f6d612017-03-16 16:09:24 +08001937 INIT_LIST_HEAD(&after->list);
Christian Königdc54d3d2017-03-13 10:13:38 +01001938
1939 /* Now gather all removed mappings */
Christian Königa9f87f62017-03-30 14:03:59 +02001940 tmp = amdgpu_vm_it_iter_first(&vm->va, saddr, eaddr);
1941 while (tmp) {
Christian Königdc54d3d2017-03-13 10:13:38 +01001942 /* Remember mapping split at the start */
Christian Königa9f87f62017-03-30 14:03:59 +02001943 if (tmp->start < saddr) {
1944 before->start = tmp->start;
1945 before->last = saddr - 1;
Christian Königdc54d3d2017-03-13 10:13:38 +01001946 before->offset = tmp->offset;
1947 before->flags = tmp->flags;
1948 list_add(&before->list, &tmp->list);
1949 }
1950
1951 /* Remember mapping split at the end */
Christian Königa9f87f62017-03-30 14:03:59 +02001952 if (tmp->last > eaddr) {
1953 after->start = eaddr + 1;
1954 after->last = tmp->last;
Christian Königdc54d3d2017-03-13 10:13:38 +01001955 after->offset = tmp->offset;
Christian Königa9f87f62017-03-30 14:03:59 +02001956 after->offset += after->start - tmp->start;
Christian Königdc54d3d2017-03-13 10:13:38 +01001957 after->flags = tmp->flags;
1958 list_add(&after->list, &tmp->list);
1959 }
1960
1961 list_del(&tmp->list);
1962 list_add(&tmp->list, &removed);
Christian Königa9f87f62017-03-30 14:03:59 +02001963
1964 tmp = amdgpu_vm_it_iter_next(tmp, saddr, eaddr);
Christian Königdc54d3d2017-03-13 10:13:38 +01001965 }
1966
1967 /* And free them up */
1968 list_for_each_entry_safe(tmp, next, &removed, list) {
Christian Königa9f87f62017-03-30 14:03:59 +02001969 amdgpu_vm_it_remove(tmp, &vm->va);
Christian Königdc54d3d2017-03-13 10:13:38 +01001970 list_del(&tmp->list);
1971
Christian Königa9f87f62017-03-30 14:03:59 +02001972 if (tmp->start < saddr)
1973 tmp->start = saddr;
1974 if (tmp->last > eaddr)
1975 tmp->last = eaddr;
Christian Königdc54d3d2017-03-13 10:13:38 +01001976
1977 list_add(&tmp->list, &vm->freed);
1978 trace_amdgpu_vm_bo_unmap(NULL, tmp);
1979 }
1980
Junwei Zhang27f6d612017-03-16 16:09:24 +08001981 /* Insert partial mapping before the range */
1982 if (!list_empty(&before->list)) {
Christian Königa9f87f62017-03-30 14:03:59 +02001983 amdgpu_vm_it_insert(before, &vm->va);
Christian Königdc54d3d2017-03-13 10:13:38 +01001984 if (before->flags & AMDGPU_PTE_PRT)
1985 amdgpu_vm_prt_get(adev);
1986 } else {
1987 kfree(before);
1988 }
1989
1990 /* Insert partial mapping after the range */
Junwei Zhang27f6d612017-03-16 16:09:24 +08001991 if (!list_empty(&after->list)) {
Christian Königa9f87f62017-03-30 14:03:59 +02001992 amdgpu_vm_it_insert(after, &vm->va);
Christian Königdc54d3d2017-03-13 10:13:38 +01001993 if (after->flags & AMDGPU_PTE_PRT)
1994 amdgpu_vm_prt_get(adev);
1995 } else {
1996 kfree(after);
1997 }
1998
1999 return 0;
2000}
2001
2002/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002003 * amdgpu_vm_bo_rmv - remove a bo to a specific vm
2004 *
2005 * @adev: amdgpu_device pointer
2006 * @bo_va: requested bo_va
2007 *
Christian König8843dbb2016-01-26 12:17:11 +01002008 * Remove @bo_va->bo from the requested vm.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002009 *
2010 * Object have to be reserved!
2011 */
2012void amdgpu_vm_bo_rmv(struct amdgpu_device *adev,
2013 struct amdgpu_bo_va *bo_va)
2014{
2015 struct amdgpu_bo_va_mapping *mapping, *next;
2016 struct amdgpu_vm *vm = bo_va->vm;
2017
2018 list_del(&bo_va->bo_list);
2019
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002020 spin_lock(&vm->status_lock);
2021 list_del(&bo_va->vm_status);
2022 spin_unlock(&vm->status_lock);
2023
Christian König7fc11952015-07-30 11:53:42 +02002024 list_for_each_entry_safe(mapping, next, &bo_va->valids, list) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002025 list_del(&mapping->list);
Christian Königa9f87f62017-03-30 14:03:59 +02002026 amdgpu_vm_it_remove(mapping, &vm->va);
Christian König93e3e432015-06-09 16:58:33 +02002027 trace_amdgpu_vm_bo_unmap(bo_va, mapping);
Christian König7fc11952015-07-30 11:53:42 +02002028 list_add(&mapping->list, &vm->freed);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002029 }
Christian König7fc11952015-07-30 11:53:42 +02002030 list_for_each_entry_safe(mapping, next, &bo_va->invalids, list) {
2031 list_del(&mapping->list);
Christian Königa9f87f62017-03-30 14:03:59 +02002032 amdgpu_vm_it_remove(mapping, &vm->va);
Christian König284710f2017-01-30 11:09:31 +01002033 amdgpu_vm_free_mapping(adev, vm, mapping,
2034 bo_va->last_pt_update);
Christian König7fc11952015-07-30 11:53:42 +02002035 }
Christian König32b41ac2016-03-08 18:03:27 +01002036
Chris Wilsonf54d1862016-10-25 13:00:45 +01002037 dma_fence_put(bo_va->last_pt_update);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002038 kfree(bo_va);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002039}
2040
2041/**
2042 * amdgpu_vm_bo_invalidate - mark the bo as invalid
2043 *
2044 * @adev: amdgpu_device pointer
2045 * @vm: requested vm
2046 * @bo: amdgpu buffer object
2047 *
Christian König8843dbb2016-01-26 12:17:11 +01002048 * Mark @bo as invalid.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002049 */
2050void amdgpu_vm_bo_invalidate(struct amdgpu_device *adev,
2051 struct amdgpu_bo *bo)
2052{
2053 struct amdgpu_bo_va *bo_va;
2054
2055 list_for_each_entry(bo_va, &bo->va, bo_list) {
Christian König7fc11952015-07-30 11:53:42 +02002056 spin_lock(&bo_va->vm->status_lock);
2057 if (list_empty(&bo_va->vm_status))
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002058 list_add(&bo_va->vm_status, &bo_va->vm->invalidated);
Christian König7fc11952015-07-30 11:53:42 +02002059 spin_unlock(&bo_va->vm->status_lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002060 }
2061}
2062
Junwei Zhangbab4fee2017-04-05 13:54:56 +08002063static uint32_t amdgpu_vm_get_block_size(uint64_t vm_size)
2064{
2065 /* Total bits covered by PD + PTs */
2066 unsigned bits = ilog2(vm_size) + 18;
2067
2068 /* Make sure the PD is 4K in size up to 8GB address space.
2069 Above that split equal between PD and PTs */
2070 if (vm_size <= 8)
2071 return (bits - 9);
2072 else
2073 return ((bits + 3) / 2);
2074}
2075
2076/**
2077 * amdgpu_vm_adjust_size - adjust vm size and block size
2078 *
2079 * @adev: amdgpu_device pointer
2080 * @vm_size: the default vm size if it's set auto
2081 */
2082void amdgpu_vm_adjust_size(struct amdgpu_device *adev, uint64_t vm_size)
2083{
2084 /* adjust vm size firstly */
2085 if (amdgpu_vm_size == -1)
2086 adev->vm_manager.vm_size = vm_size;
2087 else
2088 adev->vm_manager.vm_size = amdgpu_vm_size;
2089
2090 /* block size depends on vm size */
2091 if (amdgpu_vm_block_size == -1)
2092 adev->vm_manager.block_size =
2093 amdgpu_vm_get_block_size(adev->vm_manager.vm_size);
2094 else
2095 adev->vm_manager.block_size = amdgpu_vm_block_size;
2096
2097 DRM_INFO("vm size is %llu GB, block size is %u-bit\n",
2098 adev->vm_manager.vm_size, adev->vm_manager.block_size);
2099}
2100
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002101/**
2102 * amdgpu_vm_init - initialize a vm instance
2103 *
2104 * @adev: amdgpu_device pointer
2105 * @vm: requested vm
2106 *
Christian König8843dbb2016-01-26 12:17:11 +01002107 * Init @vm fields.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002108 */
2109int amdgpu_vm_init(struct amdgpu_device *adev, struct amdgpu_vm *vm)
2110{
2111 const unsigned align = min(AMDGPU_VM_PTB_ALIGN_SIZE,
Zhang, Jerry36b32a62017-03-29 16:08:32 +08002112 AMDGPU_VM_PTE_COUNT(adev) * 8);
Christian König2d55e452016-02-08 17:37:38 +01002113 unsigned ring_instance;
2114 struct amdgpu_ring *ring;
Christian König2bd9ccf2016-02-01 12:53:58 +01002115 struct amd_sched_rq *rq;
Christian König4f618e72017-04-06 15:18:21 +02002116 int r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002117
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002118 vm->va = RB_ROOT;
Chunming Zhou031e2982016-04-25 10:19:13 +08002119 vm->client_id = atomic64_inc_return(&adev->vm_manager.client_counter);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002120 spin_lock_init(&vm->status_lock);
2121 INIT_LIST_HEAD(&vm->invalidated);
Christian König7fc11952015-07-30 11:53:42 +02002122 INIT_LIST_HEAD(&vm->cleared);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002123 INIT_LIST_HEAD(&vm->freed);
Christian König20250212016-03-08 17:58:35 +01002124
Christian König2bd9ccf2016-02-01 12:53:58 +01002125 /* create scheduler entity for page table updates */
Christian König2d55e452016-02-08 17:37:38 +01002126
2127 ring_instance = atomic_inc_return(&adev->vm_manager.vm_pte_next_ring);
2128 ring_instance %= adev->vm_manager.vm_pte_num_rings;
2129 ring = adev->vm_manager.vm_pte_rings[ring_instance];
Christian König2bd9ccf2016-02-01 12:53:58 +01002130 rq = &ring->sched.sched_rq[AMD_SCHED_PRIORITY_KERNEL];
2131 r = amd_sched_entity_init(&ring->sched, &vm->entity,
2132 rq, amdgpu_sched_jobs);
2133 if (r)
Christian Königf566ceb2016-10-27 20:04:38 +02002134 return r;
Christian König2bd9ccf2016-02-01 12:53:58 +01002135
Christian Königa24960f2016-10-12 13:20:52 +02002136 vm->last_dir_update = NULL;
Bas Nieuwenhuizen05906de2015-08-14 20:08:40 +02002137
Christian Königf566ceb2016-10-27 20:04:38 +02002138 r = amdgpu_bo_create(adev, amdgpu_vm_bo_size(adev, 0), align, true,
Alex Deucher857d9132015-08-27 00:14:16 -04002139 AMDGPU_GEM_DOMAIN_VRAM,
Chunming Zhou1baa4392016-08-04 13:59:32 +08002140 AMDGPU_GEM_CREATE_NO_CPU_ACCESS |
Christian König03f48dd2016-08-15 17:00:22 +02002141 AMDGPU_GEM_CREATE_SHADOW |
Christian König617859e2016-11-17 15:40:02 +01002142 AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS |
2143 AMDGPU_GEM_CREATE_VRAM_CLEARED,
Christian König67003a12016-10-12 14:46:26 +02002144 NULL, NULL, &vm->root.bo);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002145 if (r)
Christian König2bd9ccf2016-02-01 12:53:58 +01002146 goto error_free_sched_entity;
2147
Christian König67003a12016-10-12 14:46:26 +02002148 r = amdgpu_bo_reserve(vm->root.bo, false);
Christian König2bd9ccf2016-02-01 12:53:58 +01002149 if (r)
Christian König67003a12016-10-12 14:46:26 +02002150 goto error_free_root;
Christian König2bd9ccf2016-02-01 12:53:58 +01002151
Christian König5a712a82016-06-21 16:28:15 +02002152 vm->last_eviction_counter = atomic64_read(&adev->num_evictions);
Christian König67003a12016-10-12 14:46:26 +02002153 amdgpu_bo_unreserve(vm->root.bo);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002154
2155 return 0;
Christian König2bd9ccf2016-02-01 12:53:58 +01002156
Christian König67003a12016-10-12 14:46:26 +02002157error_free_root:
2158 amdgpu_bo_unref(&vm->root.bo->shadow);
2159 amdgpu_bo_unref(&vm->root.bo);
2160 vm->root.bo = NULL;
Christian König2bd9ccf2016-02-01 12:53:58 +01002161
2162error_free_sched_entity:
2163 amd_sched_entity_fini(&ring->sched, &vm->entity);
2164
2165 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002166}
2167
2168/**
Christian Königf566ceb2016-10-27 20:04:38 +02002169 * amdgpu_vm_free_levels - free PD/PT levels
2170 *
2171 * @level: PD/PT starting level to free
2172 *
2173 * Free the page directory or page table level and all sub levels.
2174 */
2175static void amdgpu_vm_free_levels(struct amdgpu_vm_pt *level)
2176{
2177 unsigned i;
2178
2179 if (level->bo) {
2180 amdgpu_bo_unref(&level->bo->shadow);
2181 amdgpu_bo_unref(&level->bo);
2182 }
2183
2184 if (level->entries)
2185 for (i = 0; i <= level->last_entry_used; i++)
2186 amdgpu_vm_free_levels(&level->entries[i]);
2187
2188 drm_free_large(level->entries);
2189}
2190
2191/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002192 * amdgpu_vm_fini - tear down a vm instance
2193 *
2194 * @adev: amdgpu_device pointer
2195 * @vm: requested vm
2196 *
Christian König8843dbb2016-01-26 12:17:11 +01002197 * Tear down @vm.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002198 * Unbind the VM and remove all bos from the vm bo list
2199 */
2200void amdgpu_vm_fini(struct amdgpu_device *adev, struct amdgpu_vm *vm)
2201{
2202 struct amdgpu_bo_va_mapping *mapping, *tmp;
Christian König4388fc22017-03-13 10:13:36 +01002203 bool prt_fini_needed = !!adev->gart.gart_funcs->set_prt;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002204
Christian König2d55e452016-02-08 17:37:38 +01002205 amd_sched_entity_fini(vm->entity.sched, &vm->entity);
Christian König2bd9ccf2016-02-01 12:53:58 +01002206
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002207 if (!RB_EMPTY_ROOT(&vm->va)) {
2208 dev_err(adev->dev, "still active bo inside vm\n");
2209 }
Christian Königa9f87f62017-03-30 14:03:59 +02002210 rbtree_postorder_for_each_entry_safe(mapping, tmp, &vm->va, rb) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002211 list_del(&mapping->list);
Christian Königa9f87f62017-03-30 14:03:59 +02002212 amdgpu_vm_it_remove(mapping, &vm->va);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002213 kfree(mapping);
2214 }
2215 list_for_each_entry_safe(mapping, tmp, &vm->freed, list) {
Christian König4388fc22017-03-13 10:13:36 +01002216 if (mapping->flags & AMDGPU_PTE_PRT && prt_fini_needed) {
Christian König451bc8e2017-02-14 16:02:52 +01002217 amdgpu_vm_prt_fini(adev, vm);
Christian König4388fc22017-03-13 10:13:36 +01002218 prt_fini_needed = false;
Christian König451bc8e2017-02-14 16:02:52 +01002219 }
Christian König284710f2017-01-30 11:09:31 +01002220
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002221 list_del(&mapping->list);
Christian König451bc8e2017-02-14 16:02:52 +01002222 amdgpu_vm_free_mapping(adev, vm, mapping, NULL);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002223 }
2224
Christian Königf566ceb2016-10-27 20:04:38 +02002225 amdgpu_vm_free_levels(&vm->root);
Christian Königa24960f2016-10-12 13:20:52 +02002226 dma_fence_put(vm->last_dir_update);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002227}
Christian Königea89f8c2015-11-15 20:52:06 +01002228
2229/**
Christian Königa9a78b32016-01-21 10:19:11 +01002230 * amdgpu_vm_manager_init - init the VM manager
2231 *
2232 * @adev: amdgpu_device pointer
2233 *
2234 * Initialize the VM manager structures
2235 */
2236void amdgpu_vm_manager_init(struct amdgpu_device *adev)
2237{
Christian König76456702017-04-06 17:52:39 +02002238 unsigned i, j;
Christian Königa9a78b32016-01-21 10:19:11 +01002239
Christian König76456702017-04-06 17:52:39 +02002240 for (i = 0; i < AMDGPU_MAX_VMHUBS; ++i) {
2241 struct amdgpu_vm_id_manager *id_mgr =
2242 &adev->vm_manager.id_mgr[i];
Christian Königa9a78b32016-01-21 10:19:11 +01002243
Christian König76456702017-04-06 17:52:39 +02002244 mutex_init(&id_mgr->lock);
2245 INIT_LIST_HEAD(&id_mgr->ids_lru);
2246
2247 /* skip over VMID 0, since it is the system VM */
2248 for (j = 1; j < id_mgr->num_ids; ++j) {
2249 amdgpu_vm_reset_id(adev, i, j);
2250 amdgpu_sync_create(&id_mgr->ids[i].active);
2251 list_add_tail(&id_mgr->ids[j].list, &id_mgr->ids_lru);
2252 }
Christian König971fe9a92016-03-01 15:09:25 +01002253 }
Christian König2d55e452016-02-08 17:37:38 +01002254
Chris Wilsonf54d1862016-10-25 13:00:45 +01002255 adev->vm_manager.fence_context =
2256 dma_fence_context_alloc(AMDGPU_MAX_RINGS);
Christian König1fbb2e92016-06-01 10:47:36 +02002257 for (i = 0; i < AMDGPU_MAX_RINGS; ++i)
2258 adev->vm_manager.seqno[i] = 0;
2259
Christian König76456702017-04-06 17:52:39 +02002260
Christian König2d55e452016-02-08 17:37:38 +01002261 atomic_set(&adev->vm_manager.vm_pte_next_ring, 0);
Christian Königb1c8a812016-05-04 10:34:03 +02002262 atomic64_set(&adev->vm_manager.client_counter, 0);
Christian König284710f2017-01-30 11:09:31 +01002263 spin_lock_init(&adev->vm_manager.prt_lock);
Christian König451bc8e2017-02-14 16:02:52 +01002264 atomic_set(&adev->vm_manager.num_prt_users, 0);
Christian Königa9a78b32016-01-21 10:19:11 +01002265}
2266
2267/**
Christian Königea89f8c2015-11-15 20:52:06 +01002268 * amdgpu_vm_manager_fini - cleanup VM manager
2269 *
2270 * @adev: amdgpu_device pointer
2271 *
2272 * Cleanup the VM manager and free resources.
2273 */
2274void amdgpu_vm_manager_fini(struct amdgpu_device *adev)
2275{
Christian König76456702017-04-06 17:52:39 +02002276 unsigned i, j;
Christian Königea89f8c2015-11-15 20:52:06 +01002277
Christian König76456702017-04-06 17:52:39 +02002278 for (i = 0; i < AMDGPU_MAX_VMHUBS; ++i) {
2279 struct amdgpu_vm_id_manager *id_mgr =
2280 &adev->vm_manager.id_mgr[i];
Christian Königbcb1ba32016-03-08 15:40:11 +01002281
Christian König76456702017-04-06 17:52:39 +02002282 mutex_destroy(&id_mgr->lock);
2283 for (j = 0; j < AMDGPU_NUM_VM; ++j) {
2284 struct amdgpu_vm_id *id = &id_mgr->ids[j];
2285
2286 amdgpu_sync_free(&id->active);
2287 dma_fence_put(id->flushed_updates);
2288 dma_fence_put(id->last_flush);
2289 }
Christian Königbcb1ba32016-03-08 15:40:11 +01002290 }
Christian Königea89f8c2015-11-15 20:52:06 +01002291}