blob: 11f49b81f653ac646ae9af7976c809a61325ba4f [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
Chunming Zhou7a63eb22017-04-21 11:13:56 +0800394static bool amdgpu_vm_reserved_vmid_ready(struct amdgpu_vm *vm, unsigned vmhub)
395{
396 return !!vm->reserved_vmid[vmhub];
397}
398
399/* idr_mgr->lock must be held */
400static int amdgpu_vm_grab_reserved_vmid_locked(struct amdgpu_vm *vm,
401 struct amdgpu_ring *ring,
402 struct amdgpu_sync *sync,
403 struct dma_fence *fence,
404 struct amdgpu_job *job)
405{
406 struct amdgpu_device *adev = ring->adev;
407 unsigned vmhub = ring->funcs->vmhub;
408 uint64_t fence_context = adev->fence_context + ring->idx;
409 struct amdgpu_vm_id *id = vm->reserved_vmid[vmhub];
410 struct amdgpu_vm_id_manager *id_mgr = &adev->vm_manager.id_mgr[vmhub];
411 struct dma_fence *updates = sync->last_vm_update;
412 int r = 0;
413 struct dma_fence *flushed, *tmp;
414 bool needs_flush = false;
415
416 flushed = id->flushed_updates;
417 if ((amdgpu_vm_had_gpu_reset(adev, id)) ||
418 (atomic64_read(&id->owner) != vm->client_id) ||
419 (job->vm_pd_addr != id->pd_gpu_addr) ||
420 (updates && (!flushed || updates->context != flushed->context ||
421 dma_fence_is_later(updates, flushed))) ||
422 (!id->last_flush || (id->last_flush->context != fence_context &&
423 !dma_fence_is_signaled(id->last_flush)))) {
424 needs_flush = true;
425 /* to prevent one context starved by another context */
426 id->pd_gpu_addr = 0;
427 tmp = amdgpu_sync_peek_fence(&id->active, ring);
428 if (tmp) {
429 r = amdgpu_sync_fence(adev, sync, tmp);
430 return r;
431 }
432 }
433
434 /* Good we can use this VMID. Remember this submission as
435 * user of the VMID.
436 */
437 r = amdgpu_sync_fence(ring->adev, &id->active, fence);
438 if (r)
439 goto out;
440
441 if (updates && (!flushed || updates->context != flushed->context ||
442 dma_fence_is_later(updates, flushed))) {
443 dma_fence_put(id->flushed_updates);
444 id->flushed_updates = dma_fence_get(updates);
445 }
446 id->pd_gpu_addr = job->vm_pd_addr;
447 id->current_gpu_reset_count = atomic_read(&adev->gpu_reset_counter);
448 atomic64_set(&id->owner, vm->client_id);
449 job->vm_needs_flush = needs_flush;
450 if (needs_flush) {
451 dma_fence_put(id->last_flush);
452 id->last_flush = NULL;
453 }
454 job->vm_id = id - id_mgr->ids;
455 trace_amdgpu_vm_grab_id(vm, ring, job);
456out:
457 return r;
458}
459
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400460/**
461 * amdgpu_vm_grab_id - allocate the next free VMID
462 *
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400463 * @vm: vm to allocate id for
Christian König7f8a5292015-07-20 16:09:40 +0200464 * @ring: ring we want to submit job to
465 * @sync: sync object where we add dependencies
Christian König94dd0a42016-01-18 17:01:42 +0100466 * @fence: fence protecting ID from reuse
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400467 *
Christian König7f8a5292015-07-20 16:09:40 +0200468 * Allocate an id for the vm, adding fences to the sync obj as necessary.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400469 */
Christian König7f8a5292015-07-20 16:09:40 +0200470int amdgpu_vm_grab_id(struct amdgpu_vm *vm, struct amdgpu_ring *ring,
Chris Wilsonf54d1862016-10-25 13:00:45 +0100471 struct amdgpu_sync *sync, struct dma_fence *fence,
Chunming Zhoufd53be32016-07-01 17:59:01 +0800472 struct amdgpu_job *job)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400473{
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400474 struct amdgpu_device *adev = ring->adev;
Christian König2e819842017-03-30 16:50:47 +0200475 unsigned vmhub = ring->funcs->vmhub;
Christian König76456702017-04-06 17:52:39 +0200476 struct amdgpu_vm_id_manager *id_mgr = &adev->vm_manager.id_mgr[vmhub];
Christian König090b7672016-07-08 10:21:02 +0200477 uint64_t fence_context = adev->fence_context + ring->idx;
Chris Wilsonf54d1862016-10-25 13:00:45 +0100478 struct dma_fence *updates = sync->last_vm_update;
Christian König8d76001e2016-05-23 16:00:32 +0200479 struct amdgpu_vm_id *id, *idle;
Chris Wilsonf54d1862016-10-25 13:00:45 +0100480 struct dma_fence **fences;
Christian König1fbb2e92016-06-01 10:47:36 +0200481 unsigned i;
482 int r = 0;
483
Christian König76456702017-04-06 17:52:39 +0200484 mutex_lock(&id_mgr->lock);
Chunming Zhou7a63eb22017-04-21 11:13:56 +0800485 if (amdgpu_vm_reserved_vmid_ready(vm, vmhub)) {
486 r = amdgpu_vm_grab_reserved_vmid_locked(vm, ring, sync, fence, job);
487 mutex_unlock(&id_mgr->lock);
488 return r;
489 }
490 fences = kmalloc_array(sizeof(void *), id_mgr->num_ids, GFP_KERNEL);
491 if (!fences) {
492 mutex_unlock(&id_mgr->lock);
493 return -ENOMEM;
494 }
Christian König36fd7c52016-05-23 15:30:08 +0200495 /* Check if we have an idle VMID */
Christian König1fbb2e92016-06-01 10:47:36 +0200496 i = 0;
Christian König76456702017-04-06 17:52:39 +0200497 list_for_each_entry(idle, &id_mgr->ids_lru, list) {
Christian König1fbb2e92016-06-01 10:47:36 +0200498 fences[i] = amdgpu_sync_peek_fence(&idle->active, ring);
499 if (!fences[i])
Christian König36fd7c52016-05-23 15:30:08 +0200500 break;
Christian König1fbb2e92016-06-01 10:47:36 +0200501 ++i;
Christian König36fd7c52016-05-23 15:30:08 +0200502 }
Christian Königbcb1ba32016-03-08 15:40:11 +0100503
Christian König1fbb2e92016-06-01 10:47:36 +0200504 /* If we can't find a idle VMID to use, wait till one becomes available */
Christian König76456702017-04-06 17:52:39 +0200505 if (&idle->list == &id_mgr->ids_lru) {
Christian König1fbb2e92016-06-01 10:47:36 +0200506 u64 fence_context = adev->vm_manager.fence_context + ring->idx;
507 unsigned seqno = ++adev->vm_manager.seqno[ring->idx];
Chris Wilsonf54d1862016-10-25 13:00:45 +0100508 struct dma_fence_array *array;
Christian König1fbb2e92016-06-01 10:47:36 +0200509 unsigned j;
Christian König8d76001e2016-05-23 16:00:32 +0200510
Christian König1fbb2e92016-06-01 10:47:36 +0200511 for (j = 0; j < i; ++j)
Chris Wilsonf54d1862016-10-25 13:00:45 +0100512 dma_fence_get(fences[j]);
Christian König8d76001e2016-05-23 16:00:32 +0200513
Chris Wilsonf54d1862016-10-25 13:00:45 +0100514 array = dma_fence_array_create(i, fences, fence_context,
Christian König1fbb2e92016-06-01 10:47:36 +0200515 seqno, true);
516 if (!array) {
517 for (j = 0; j < i; ++j)
Chris Wilsonf54d1862016-10-25 13:00:45 +0100518 dma_fence_put(fences[j]);
Christian König1fbb2e92016-06-01 10:47:36 +0200519 kfree(fences);
520 r = -ENOMEM;
521 goto error;
522 }
Christian König8d76001e2016-05-23 16:00:32 +0200523
Christian König8d76001e2016-05-23 16:00:32 +0200524
Christian König1fbb2e92016-06-01 10:47:36 +0200525 r = amdgpu_sync_fence(ring->adev, sync, &array->base);
Chris Wilsonf54d1862016-10-25 13:00:45 +0100526 dma_fence_put(&array->base);
Christian König1fbb2e92016-06-01 10:47:36 +0200527 if (r)
528 goto error;
Christian König8d76001e2016-05-23 16:00:32 +0200529
Christian König76456702017-04-06 17:52:39 +0200530 mutex_unlock(&id_mgr->lock);
Christian König1fbb2e92016-06-01 10:47:36 +0200531 return 0;
Christian König8d76001e2016-05-23 16:00:32 +0200532
Christian König1fbb2e92016-06-01 10:47:36 +0200533 }
534 kfree(fences);
Christian König8d76001e2016-05-23 16:00:32 +0200535
Christian König87c910d2017-03-30 16:56:20 +0200536 job->vm_needs_flush = false;
Christian König1fbb2e92016-06-01 10:47:36 +0200537 /* Check if we can use a VMID already assigned to this VM */
Christian König76456702017-04-06 17:52:39 +0200538 list_for_each_entry_reverse(id, &id_mgr->ids_lru, list) {
Chris Wilsonf54d1862016-10-25 13:00:45 +0100539 struct dma_fence *flushed;
Christian König87c910d2017-03-30 16:56:20 +0200540 bool needs_flush = false;
Christian König8d76001e2016-05-23 16:00:32 +0200541
Christian König1fbb2e92016-06-01 10:47:36 +0200542 /* Check all the prerequisites to using this VMID */
Christian König641e9402017-04-03 13:59:25 +0200543 if (amdgpu_vm_had_gpu_reset(adev, id))
Chunming Zhou6adb0512016-06-27 17:06:01 +0800544 continue;
Christian König1fbb2e92016-06-01 10:47:36 +0200545
546 if (atomic64_read(&id->owner) != vm->client_id)
547 continue;
548
Chunming Zhoufd53be32016-07-01 17:59:01 +0800549 if (job->vm_pd_addr != id->pd_gpu_addr)
Christian König1fbb2e92016-06-01 10:47:36 +0200550 continue;
551
Christian König87c910d2017-03-30 16:56:20 +0200552 if (!id->last_flush ||
553 (id->last_flush->context != fence_context &&
554 !dma_fence_is_signaled(id->last_flush)))
555 needs_flush = true;
Christian König1fbb2e92016-06-01 10:47:36 +0200556
557 flushed = id->flushed_updates;
Christian König87c910d2017-03-30 16:56:20 +0200558 if (updates && (!flushed || dma_fence_is_later(updates, flushed)))
559 needs_flush = true;
560
561 /* Concurrent flushes are only possible starting with Vega10 */
562 if (adev->asic_type < CHIP_VEGA10 && needs_flush)
Christian König1fbb2e92016-06-01 10:47:36 +0200563 continue;
564
Christian König3dab83b2016-06-01 13:31:17 +0200565 /* Good we can use this VMID. Remember this submission as
566 * user of the VMID.
567 */
Christian König1fbb2e92016-06-01 10:47:36 +0200568 r = amdgpu_sync_fence(ring->adev, &id->active, fence);
569 if (r)
570 goto error;
Christian König8d76001e2016-05-23 16:00:32 +0200571
Christian König87c910d2017-03-30 16:56:20 +0200572 if (updates && (!flushed || dma_fence_is_later(updates, flushed))) {
573 dma_fence_put(id->flushed_updates);
574 id->flushed_updates = dma_fence_get(updates);
575 }
Christian König8d76001e2016-05-23 16:00:32 +0200576
Christian König87c910d2017-03-30 16:56:20 +0200577 if (needs_flush)
578 goto needs_flush;
579 else
580 goto no_flush_needed;
Christian König8d76001e2016-05-23 16:00:32 +0200581
Christian König4f618e72017-04-06 15:18:21 +0200582 };
Chunming Zhou8e9fbeb2016-03-17 11:41:37 +0800583
Christian König1fbb2e92016-06-01 10:47:36 +0200584 /* Still no ID to use? Then use the idle one found earlier */
585 id = idle;
586
587 /* Remember this submission as user of the VMID */
588 r = amdgpu_sync_fence(ring->adev, &id->active, fence);
Christian König832a9022016-02-15 12:33:02 +0100589 if (r)
590 goto error;
Christian König4ff37a82016-02-26 16:18:26 +0100591
Christian König87c910d2017-03-30 16:56:20 +0200592 id->pd_gpu_addr = job->vm_pd_addr;
593 dma_fence_put(id->flushed_updates);
594 id->flushed_updates = dma_fence_get(updates);
595 id->current_gpu_reset_count = atomic_read(&adev->gpu_reset_counter);
596 atomic64_set(&id->owner, vm->client_id);
597
598needs_flush:
599 job->vm_needs_flush = true;
Chris Wilsonf54d1862016-10-25 13:00:45 +0100600 dma_fence_put(id->last_flush);
Christian König41d9eb22016-03-01 16:46:18 +0100601 id->last_flush = NULL;
602
Christian König87c910d2017-03-30 16:56:20 +0200603no_flush_needed:
Christian König76456702017-04-06 17:52:39 +0200604 list_move_tail(&id->list, &id_mgr->ids_lru);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400605
Christian König76456702017-04-06 17:52:39 +0200606 job->vm_id = id - id_mgr->ids;
Christian Königc5296d12017-04-07 15:31:13 +0200607 trace_amdgpu_vm_grab_id(vm, ring, job);
Christian König832a9022016-02-15 12:33:02 +0100608
609error:
Christian König76456702017-04-06 17:52:39 +0200610 mutex_unlock(&id_mgr->lock);
Christian Königa9a78b32016-01-21 10:19:11 +0100611 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400612}
613
Chunming Zhou1e9ef262017-04-20 16:18:48 +0800614static void amdgpu_vm_free_reserved_vmid(struct amdgpu_device *adev,
615 struct amdgpu_vm *vm,
616 unsigned vmhub)
617{
618 struct amdgpu_vm_id_manager *id_mgr = &adev->vm_manager.id_mgr[vmhub];
619
620 mutex_lock(&id_mgr->lock);
621 if (vm->reserved_vmid[vmhub]) {
622 list_add(&vm->reserved_vmid[vmhub]->list,
623 &id_mgr->ids_lru);
624 vm->reserved_vmid[vmhub] = NULL;
Chunming Zhouc3505772017-04-21 15:51:04 +0800625 atomic_dec(&id_mgr->reserved_vmid_num);
Chunming Zhou1e9ef262017-04-20 16:18:48 +0800626 }
627 mutex_unlock(&id_mgr->lock);
628}
629
630static int amdgpu_vm_alloc_reserved_vmid(struct amdgpu_device *adev,
631 struct amdgpu_vm *vm,
632 unsigned vmhub)
633{
634 struct amdgpu_vm_id_manager *id_mgr;
635 struct amdgpu_vm_id *idle;
636 int r = 0;
637
638 id_mgr = &adev->vm_manager.id_mgr[vmhub];
639 mutex_lock(&id_mgr->lock);
640 if (vm->reserved_vmid[vmhub])
641 goto unlock;
Chunming Zhouc3505772017-04-21 15:51:04 +0800642 if (atomic_inc_return(&id_mgr->reserved_vmid_num) >
643 AMDGPU_VM_MAX_RESERVED_VMID) {
644 DRM_ERROR("Over limitation of reserved vmid\n");
645 atomic_dec(&id_mgr->reserved_vmid_num);
646 r = -EINVAL;
647 goto unlock;
648 }
Chunming Zhou1e9ef262017-04-20 16:18:48 +0800649 /* Select the first entry VMID */
650 idle = list_first_entry(&id_mgr->ids_lru, struct amdgpu_vm_id, list);
651 list_del_init(&idle->list);
652 vm->reserved_vmid[vmhub] = idle;
653 mutex_unlock(&id_mgr->lock);
654
655 return 0;
656unlock:
657 mutex_unlock(&id_mgr->lock);
658 return r;
659}
660
Alex Deucher93dcc372016-06-17 17:05:15 -0400661static bool amdgpu_vm_ring_has_compute_vm_bug(struct amdgpu_ring *ring)
662{
663 struct amdgpu_device *adev = ring->adev;
Alex Deuchera1255102016-10-13 17:41:13 -0400664 const struct amdgpu_ip_block *ip_block;
Alex Deucher93dcc372016-06-17 17:05:15 -0400665
Christian König21cd9422016-10-05 15:36:39 +0200666 if (ring->funcs->type != AMDGPU_RING_TYPE_COMPUTE)
Alex Deucher93dcc372016-06-17 17:05:15 -0400667 /* only compute rings */
668 return false;
669
670 ip_block = amdgpu_get_ip_block(adev, AMD_IP_BLOCK_TYPE_GFX);
671 if (!ip_block)
672 return false;
673
Alex Deuchera1255102016-10-13 17:41:13 -0400674 if (ip_block->version->major <= 7) {
Alex Deucher93dcc372016-06-17 17:05:15 -0400675 /* gfx7 has no workaround */
676 return true;
Alex Deuchera1255102016-10-13 17:41:13 -0400677 } else if (ip_block->version->major == 8) {
Alex Deucher93dcc372016-06-17 17:05:15 -0400678 if (adev->gfx.mec_fw_version >= 673)
679 /* gfx8 is fixed in MEC firmware 673 */
680 return false;
681 else
682 return true;
683 }
684 return false;
685}
686
Alex Xiee60f8db2017-03-09 11:36:26 -0500687static u64 amdgpu_vm_adjust_mc_addr(struct amdgpu_device *adev, u64 mc_addr)
688{
689 u64 addr = mc_addr;
690
Christian Königf75e2372017-03-30 15:55:07 +0200691 if (adev->gart.gart_funcs->adjust_mc_addr)
692 addr = adev->gart.gart_funcs->adjust_mc_addr(adev, addr);
Alex Xiee60f8db2017-03-09 11:36:26 -0500693
694 return addr;
695}
696
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400697/**
698 * amdgpu_vm_flush - hardware flush the vm
699 *
700 * @ring: ring to use for flush
Christian Königcffadc82016-03-01 13:34:49 +0100701 * @vm_id: vmid number to use
Christian König4ff37a82016-02-26 16:18:26 +0100702 * @pd_addr: address of the page directory
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400703 *
Christian König4ff37a82016-02-26 16:18:26 +0100704 * Emit a VM flush when it is necessary.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400705 */
Chunming Zhoufd53be32016-07-01 17:59:01 +0800706int amdgpu_vm_flush(struct amdgpu_ring *ring, struct amdgpu_job *job)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400707{
Christian König971fe9a92016-03-01 15:09:25 +0100708 struct amdgpu_device *adev = ring->adev;
Christian König76456702017-04-06 17:52:39 +0200709 unsigned vmhub = ring->funcs->vmhub;
710 struct amdgpu_vm_id_manager *id_mgr = &adev->vm_manager.id_mgr[vmhub];
711 struct amdgpu_vm_id *id = &id_mgr->ids[job->vm_id];
Christian Königd564a062016-03-01 15:51:53 +0100712 bool gds_switch_needed = ring->funcs->emit_gds_switch && (
Chunming Zhoufd53be32016-07-01 17:59:01 +0800713 id->gds_base != job->gds_base ||
714 id->gds_size != job->gds_size ||
715 id->gws_base != job->gws_base ||
716 id->gws_size != job->gws_size ||
717 id->oa_base != job->oa_base ||
718 id->oa_size != job->oa_size);
Christian Königf7d015b2017-04-03 14:28:26 +0200719 bool vm_flush_needed = job->vm_needs_flush ||
720 amdgpu_vm_ring_has_compute_vm_bug(ring);
Christian Königc0e51932017-04-03 14:16:07 +0200721 unsigned patch_offset = 0;
Christian König41d9eb22016-03-01 16:46:18 +0100722 int r;
Christian Königd564a062016-03-01 15:51:53 +0100723
Christian Königf7d015b2017-04-03 14:28:26 +0200724 if (amdgpu_vm_had_gpu_reset(adev, id)) {
725 gds_switch_needed = true;
726 vm_flush_needed = true;
727 }
Christian König971fe9a92016-03-01 15:09:25 +0100728
Christian Königf7d015b2017-04-03 14:28:26 +0200729 if (!vm_flush_needed && !gds_switch_needed)
730 return 0;
Christian König41d9eb22016-03-01 16:46:18 +0100731
Christian Königc0e51932017-04-03 14:16:07 +0200732 if (ring->funcs->init_cond_exec)
733 patch_offset = amdgpu_ring_init_cond_exec(ring);
Christian König41d9eb22016-03-01 16:46:18 +0100734
Chunming Zhou30514de2017-05-09 13:39:40 +0800735 if (ring->funcs->emit_pipeline_sync && !job->need_pipeline_sync)
Christian Königc0e51932017-04-03 14:16:07 +0200736 amdgpu_ring_emit_pipeline_sync(ring);
Christian König3dab83b2016-06-01 13:31:17 +0200737
Christian Königf7d015b2017-04-03 14:28:26 +0200738 if (ring->funcs->emit_vm_flush && vm_flush_needed) {
Christian Königc0e51932017-04-03 14:16:07 +0200739 u64 pd_addr = amdgpu_vm_adjust_mc_addr(adev, job->vm_pd_addr);
740 struct dma_fence *fence;
Monk Liue9d672b2017-03-15 12:18:57 +0800741
Christian König5f1bcf52017-04-07 17:43:19 +0200742 trace_amdgpu_vm_flush(ring, job->vm_id, pd_addr);
Christian Königc0e51932017-04-03 14:16:07 +0200743 amdgpu_ring_emit_vm_flush(ring, job->vm_id, pd_addr);
Monk Liue9d672b2017-03-15 12:18:57 +0800744
Christian Königc0e51932017-04-03 14:16:07 +0200745 r = amdgpu_fence_emit(ring, &fence);
746 if (r)
747 return r;
Monk Liue9d672b2017-03-15 12:18:57 +0800748
Christian König76456702017-04-06 17:52:39 +0200749 mutex_lock(&id_mgr->lock);
Christian Königc0e51932017-04-03 14:16:07 +0200750 dma_fence_put(id->last_flush);
751 id->last_flush = fence;
Christian König76456702017-04-06 17:52:39 +0200752 mutex_unlock(&id_mgr->lock);
Christian Königc0e51932017-04-03 14:16:07 +0200753 }
Monk Liue9d672b2017-03-15 12:18:57 +0800754
Chunming Zhouca7962d2017-05-11 18:22:17 +0800755 if (ring->funcs->emit_gds_switch && gds_switch_needed) {
Christian Königc0e51932017-04-03 14:16:07 +0200756 id->gds_base = job->gds_base;
757 id->gds_size = job->gds_size;
758 id->gws_base = job->gws_base;
759 id->gws_size = job->gws_size;
760 id->oa_base = job->oa_base;
761 id->oa_size = job->oa_size;
762 amdgpu_ring_emit_gds_switch(ring, job->vm_id, job->gds_base,
763 job->gds_size, job->gws_base,
764 job->gws_size, job->oa_base,
765 job->oa_size);
766 }
767
768 if (ring->funcs->patch_cond_exec)
769 amdgpu_ring_patch_cond_exec(ring, patch_offset);
770
771 /* the double SWITCH_BUFFER here *cannot* be skipped by COND_EXEC */
772 if (ring->funcs->emit_switch_buffer) {
773 amdgpu_ring_emit_switch_buffer(ring);
774 amdgpu_ring_emit_switch_buffer(ring);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400775 }
Christian König41d9eb22016-03-01 16:46:18 +0100776 return 0;
Christian König971fe9a92016-03-01 15:09:25 +0100777}
778
779/**
780 * amdgpu_vm_reset_id - reset VMID to zero
781 *
782 * @adev: amdgpu device structure
783 * @vm_id: vmid number to use
784 *
785 * Reset saved GDW, GWS and OA to force switch on next flush.
786 */
Christian König76456702017-04-06 17:52:39 +0200787void amdgpu_vm_reset_id(struct amdgpu_device *adev, unsigned vmhub,
788 unsigned vmid)
Christian König971fe9a92016-03-01 15:09:25 +0100789{
Christian König76456702017-04-06 17:52:39 +0200790 struct amdgpu_vm_id_manager *id_mgr = &adev->vm_manager.id_mgr[vmhub];
791 struct amdgpu_vm_id *id = &id_mgr->ids[vmid];
Christian König971fe9a92016-03-01 15:09:25 +0100792
Christian König32601d42017-05-10 20:06:58 +0200793 atomic64_set(&id->owner, 0);
Christian Königbcb1ba32016-03-08 15:40:11 +0100794 id->gds_base = 0;
795 id->gds_size = 0;
796 id->gws_base = 0;
797 id->gws_size = 0;
798 id->oa_base = 0;
799 id->oa_size = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400800}
801
802/**
Christian König32601d42017-05-10 20:06:58 +0200803 * amdgpu_vm_reset_all_id - reset VMID to zero
804 *
805 * @adev: amdgpu device structure
806 *
807 * Reset VMID to force flush on next use
808 */
809void amdgpu_vm_reset_all_ids(struct amdgpu_device *adev)
810{
811 unsigned i, j;
812
813 for (i = 0; i < AMDGPU_MAX_VMHUBS; ++i) {
814 struct amdgpu_vm_id_manager *id_mgr =
815 &adev->vm_manager.id_mgr[i];
816
817 for (j = 1; j < id_mgr->num_ids; ++j)
818 amdgpu_vm_reset_id(adev, i, j);
819 }
820}
821
822/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400823 * amdgpu_vm_bo_find - find the bo_va for a specific vm & bo
824 *
825 * @vm: requested vm
826 * @bo: requested buffer object
827 *
Christian König8843dbb2016-01-26 12:17:11 +0100828 * Find @bo inside the requested vm.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400829 * Search inside the @bos vm list for the requested vm
830 * Returns the found bo_va or NULL if none is found
831 *
832 * Object has to be reserved!
833 */
834struct amdgpu_bo_va *amdgpu_vm_bo_find(struct amdgpu_vm *vm,
835 struct amdgpu_bo *bo)
836{
837 struct amdgpu_bo_va *bo_va;
838
839 list_for_each_entry(bo_va, &bo->va, bo_list) {
840 if (bo_va->vm == vm) {
841 return bo_va;
842 }
843 }
844 return NULL;
845}
846
847/**
Christian Königafef8b82016-08-12 13:29:18 +0200848 * amdgpu_vm_do_set_ptes - helper to call the right asic function
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400849 *
Christian König29efc4f2016-08-04 14:52:50 +0200850 * @params: see amdgpu_pte_update_params definition
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400851 * @pe: addr of the page entry
852 * @addr: dst addr to write into pe
853 * @count: number of page entries to update
854 * @incr: increase next addr by incr bytes
855 * @flags: hw access flags
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400856 *
857 * Traces the parameters and calls the right asic functions
858 * to setup the page table using the DMA.
859 */
Christian Königafef8b82016-08-12 13:29:18 +0200860static void amdgpu_vm_do_set_ptes(struct amdgpu_pte_update_params *params,
861 uint64_t pe, uint64_t addr,
862 unsigned count, uint32_t incr,
Chunming Zhou6b777602016-09-21 16:19:19 +0800863 uint64_t flags)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400864{
Christian Königec2f05f2016-09-25 16:11:52 +0200865 trace_amdgpu_vm_set_ptes(pe, addr, count, incr, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400866
Christian Königafef8b82016-08-12 13:29:18 +0200867 if (count < 3) {
Christian Königde9ea7b2016-08-12 11:33:30 +0200868 amdgpu_vm_write_pte(params->adev, params->ib, pe,
869 addr | flags, count, incr);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400870
871 } else {
Christian König27c5f362016-08-04 15:02:49 +0200872 amdgpu_vm_set_pte_pde(params->adev, params->ib, pe, addr,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400873 count, incr, flags);
874 }
875}
876
877/**
Christian Königafef8b82016-08-12 13:29:18 +0200878 * amdgpu_vm_do_copy_ptes - copy the PTEs from the GART
879 *
880 * @params: see amdgpu_pte_update_params definition
881 * @pe: addr of the page entry
882 * @addr: dst addr to write into pe
883 * @count: number of page entries to update
884 * @incr: increase next addr by incr bytes
885 * @flags: hw access flags
886 *
887 * Traces the parameters and calls the DMA function to copy the PTEs.
888 */
889static void amdgpu_vm_do_copy_ptes(struct amdgpu_pte_update_params *params,
890 uint64_t pe, uint64_t addr,
891 unsigned count, uint32_t incr,
Chunming Zhou6b777602016-09-21 16:19:19 +0800892 uint64_t flags)
Christian Königafef8b82016-08-12 13:29:18 +0200893{
Christian Königec2f05f2016-09-25 16:11:52 +0200894 uint64_t src = (params->src + (addr >> 12) * 8);
Christian Königafef8b82016-08-12 13:29:18 +0200895
Christian Königec2f05f2016-09-25 16:11:52 +0200896
897 trace_amdgpu_vm_copy_ptes(pe, src, count);
898
899 amdgpu_vm_copy_pte(params->adev, params->ib, pe, src, count);
Christian Königafef8b82016-08-12 13:29:18 +0200900}
901
902/**
Christian Königb07c9d22015-11-30 13:26:07 +0100903 * amdgpu_vm_map_gart - Resolve gart mapping of addr
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400904 *
Christian Königb07c9d22015-11-30 13:26:07 +0100905 * @pages_addr: optional DMA address to use for lookup
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400906 * @addr: the unmapped addr
907 *
908 * Look up the physical address of the page that the pte resolves
Christian Königb07c9d22015-11-30 13:26:07 +0100909 * to and return the pointer for the page table entry.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400910 */
Christian Königde9ea7b2016-08-12 11:33:30 +0200911static uint64_t amdgpu_vm_map_gart(const dma_addr_t *pages_addr, uint64_t addr)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400912{
913 uint64_t result;
914
Christian Königde9ea7b2016-08-12 11:33:30 +0200915 /* page table offset */
916 result = pages_addr[addr >> PAGE_SHIFT];
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400917
Christian Königde9ea7b2016-08-12 11:33:30 +0200918 /* in case cpu page size != gpu page size*/
919 result |= addr & (~PAGE_MASK);
Christian Königb07c9d22015-11-30 13:26:07 +0100920
921 result &= 0xFFFFFFFFFFFFF000ULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400922
923 return result;
924}
925
Christian Königf8991ba2016-09-16 15:36:49 +0200926/*
Christian König194d2162016-10-12 15:13:52 +0200927 * amdgpu_vm_update_level - update a single level in the hierarchy
Christian Königf8991ba2016-09-16 15:36:49 +0200928 *
929 * @adev: amdgpu_device pointer
930 * @vm: requested vm
Christian König194d2162016-10-12 15:13:52 +0200931 * @parent: parent directory
Christian Königf8991ba2016-09-16 15:36:49 +0200932 *
Christian König194d2162016-10-12 15:13:52 +0200933 * Makes sure all entries in @parent are up to date.
Christian Königf8991ba2016-09-16 15:36:49 +0200934 * Returns 0 for success, error for failure.
935 */
Christian König194d2162016-10-12 15:13:52 +0200936static int amdgpu_vm_update_level(struct amdgpu_device *adev,
937 struct amdgpu_vm *vm,
938 struct amdgpu_vm_pt *parent,
939 unsigned level)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400940{
Christian Königf8991ba2016-09-16 15:36:49 +0200941 struct amdgpu_bo *shadow;
Christian König2d55e452016-02-08 17:37:38 +0100942 struct amdgpu_ring *ring;
Christian Königf8991ba2016-09-16 15:36:49 +0200943 uint64_t pd_addr, shadow_addr;
Christian König194d2162016-10-12 15:13:52 +0200944 uint32_t incr = amdgpu_vm_bo_size(adev, level + 1);
Christian Königf8991ba2016-09-16 15:36:49 +0200945 uint64_t last_pde = ~0, last_pt = ~0, last_shadow = ~0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400946 unsigned count = 0, pt_idx, ndw;
Christian Königd71518b2016-02-01 12:20:25 +0100947 struct amdgpu_job *job;
Christian König29efc4f2016-08-04 14:52:50 +0200948 struct amdgpu_pte_update_params params;
Dave Airlie220196b2016-10-28 11:33:52 +1000949 struct dma_fence *fence = NULL;
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800950
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400951 int r;
952
Christian König194d2162016-10-12 15:13:52 +0200953 if (!parent->entries)
954 return 0;
Christian König2d55e452016-02-08 17:37:38 +0100955 ring = container_of(vm->entity.sched, struct amdgpu_ring, sched);
956
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400957 /* padding, etc. */
958 ndw = 64;
959
960 /* assume the worst case */
Christian König194d2162016-10-12 15:13:52 +0200961 ndw += parent->last_entry_used * 6;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400962
Christian König194d2162016-10-12 15:13:52 +0200963 pd_addr = amdgpu_bo_gpu_offset(parent->bo);
964
965 shadow = parent->bo->shadow;
Christian Königf8991ba2016-09-16 15:36:49 +0200966 if (shadow) {
967 r = amdgpu_ttm_bind(&shadow->tbo, &shadow->tbo.mem);
968 if (r)
969 return r;
970 shadow_addr = amdgpu_bo_gpu_offset(shadow);
971 ndw *= 2;
972 } else {
973 shadow_addr = 0;
974 }
975
Christian Königd71518b2016-02-01 12:20:25 +0100976 r = amdgpu_job_alloc_with_ib(adev, ndw * 4, &job);
977 if (r)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400978 return r;
Christian Königd71518b2016-02-01 12:20:25 +0100979
Christian König27c5f362016-08-04 15:02:49 +0200980 memset(&params, 0, sizeof(params));
981 params.adev = adev;
Christian König29efc4f2016-08-04 14:52:50 +0200982 params.ib = &job->ibs[0];
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400983
Christian König194d2162016-10-12 15:13:52 +0200984 /* walk over the address space and update the directory */
985 for (pt_idx = 0; pt_idx <= parent->last_entry_used; ++pt_idx) {
986 struct amdgpu_bo *bo = parent->entries[pt_idx].bo;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400987 uint64_t pde, pt;
988
989 if (bo == NULL)
990 continue;
991
Christian König0fc86832016-09-16 11:46:23 +0200992 if (bo->shadow) {
Christian Königf8991ba2016-09-16 15:36:49 +0200993 struct amdgpu_bo *pt_shadow = bo->shadow;
Christian König0fc86832016-09-16 11:46:23 +0200994
Christian Königf8991ba2016-09-16 15:36:49 +0200995 r = amdgpu_ttm_bind(&pt_shadow->tbo,
996 &pt_shadow->tbo.mem);
Christian König0fc86832016-09-16 11:46:23 +0200997 if (r)
998 return r;
999 }
1000
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001001 pt = amdgpu_bo_gpu_offset(bo);
Christian König194d2162016-10-12 15:13:52 +02001002 if (parent->entries[pt_idx].addr == pt)
Christian Königf8991ba2016-09-16 15:36:49 +02001003 continue;
1004
Christian König194d2162016-10-12 15:13:52 +02001005 parent->entries[pt_idx].addr = pt;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001006
1007 pde = pd_addr + pt_idx * 8;
1008 if (((last_pde + 8 * count) != pde) ||
Christian König96105e52016-08-12 12:59:59 +02001009 ((last_pt + incr * count) != pt) ||
1010 (count == AMDGPU_VM_MAX_UPDATE_SIZE)) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001011
1012 if (count) {
Alex Xiee60f8db2017-03-09 11:36:26 -05001013 uint64_t pt_addr =
1014 amdgpu_vm_adjust_mc_addr(adev, last_pt);
1015
Christian Königf8991ba2016-09-16 15:36:49 +02001016 if (shadow)
1017 amdgpu_vm_do_set_ptes(&params,
1018 last_shadow,
Alex Xiee60f8db2017-03-09 11:36:26 -05001019 pt_addr, count,
Christian Königf8991ba2016-09-16 15:36:49 +02001020 incr,
1021 AMDGPU_PTE_VALID);
1022
Christian Königafef8b82016-08-12 13:29:18 +02001023 amdgpu_vm_do_set_ptes(&params, last_pde,
Alex Xiee60f8db2017-03-09 11:36:26 -05001024 pt_addr, count, incr,
Christian Königafef8b82016-08-12 13:29:18 +02001025 AMDGPU_PTE_VALID);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001026 }
1027
1028 count = 1;
1029 last_pde = pde;
Christian Königf8991ba2016-09-16 15:36:49 +02001030 last_shadow = shadow_addr + pt_idx * 8;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001031 last_pt = pt;
1032 } else {
1033 ++count;
1034 }
1035 }
1036
Christian Königf8991ba2016-09-16 15:36:49 +02001037 if (count) {
Alex Xiee60f8db2017-03-09 11:36:26 -05001038 uint64_t pt_addr = amdgpu_vm_adjust_mc_addr(adev, last_pt);
1039
Christian König67003a12016-10-12 14:46:26 +02001040 if (vm->root.bo->shadow)
Alex Xiee60f8db2017-03-09 11:36:26 -05001041 amdgpu_vm_do_set_ptes(&params, last_shadow, pt_addr,
Christian Königf8991ba2016-09-16 15:36:49 +02001042 count, incr, AMDGPU_PTE_VALID);
1043
Alex Xiee60f8db2017-03-09 11:36:26 -05001044 amdgpu_vm_do_set_ptes(&params, last_pde, pt_addr,
Christian Königafef8b82016-08-12 13:29:18 +02001045 count, incr, AMDGPU_PTE_VALID);
Chunming Zhoud5fc5e82015-07-21 16:52:10 +08001046 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001047
Christian Königf8991ba2016-09-16 15:36:49 +02001048 if (params.ib->length_dw == 0) {
1049 amdgpu_job_free(job);
Christian König194d2162016-10-12 15:13:52 +02001050 } else {
1051 amdgpu_ring_pad_ib(ring, params.ib);
1052 amdgpu_sync_resv(adev, &job->sync, parent->bo->tbo.resv,
Christian Königf8991ba2016-09-16 15:36:49 +02001053 AMDGPU_FENCE_OWNER_VM);
Christian König194d2162016-10-12 15:13:52 +02001054 if (shadow)
1055 amdgpu_sync_resv(adev, &job->sync, shadow->tbo.resv,
1056 AMDGPU_FENCE_OWNER_VM);
Christian Königf8991ba2016-09-16 15:36:49 +02001057
Christian König194d2162016-10-12 15:13:52 +02001058 WARN_ON(params.ib->length_dw > ndw);
1059 r = amdgpu_job_submit(job, ring, &vm->entity,
1060 AMDGPU_FENCE_OWNER_VM, &fence);
1061 if (r)
1062 goto error_free;
Christian Königf8991ba2016-09-16 15:36:49 +02001063
Christian König194d2162016-10-12 15:13:52 +02001064 amdgpu_bo_fence(parent->bo, fence, true);
1065 dma_fence_put(vm->last_dir_update);
1066 vm->last_dir_update = dma_fence_get(fence);
1067 dma_fence_put(fence);
1068 }
1069 /*
1070 * Recurse into the subdirectories. This recursion is harmless because
1071 * we only have a maximum of 5 layers.
1072 */
1073 for (pt_idx = 0; pt_idx <= parent->last_entry_used; ++pt_idx) {
1074 struct amdgpu_vm_pt *entry = &parent->entries[pt_idx];
1075
1076 if (!entry->bo)
1077 continue;
1078
1079 r = amdgpu_vm_update_level(adev, vm, entry, level + 1);
1080 if (r)
1081 return r;
1082 }
Christian Königf8991ba2016-09-16 15:36:49 +02001083
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001084 return 0;
Chunming Zhoud5fc5e82015-07-21 16:52:10 +08001085
1086error_free:
Christian Königd71518b2016-02-01 12:20:25 +01001087 amdgpu_job_free(job);
Chunming Zhou4af9f072015-08-03 12:57:31 +08001088 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001089}
1090
Christian König194d2162016-10-12 15:13:52 +02001091/*
1092 * amdgpu_vm_update_directories - make sure that all directories are valid
1093 *
1094 * @adev: amdgpu_device pointer
1095 * @vm: requested vm
1096 *
1097 * Makes sure all directories are up to date.
1098 * Returns 0 for success, error for failure.
1099 */
1100int amdgpu_vm_update_directories(struct amdgpu_device *adev,
1101 struct amdgpu_vm *vm)
1102{
1103 return amdgpu_vm_update_level(adev, vm, &vm->root, 0);
1104}
1105
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001106/**
Christian König4e2cb642016-10-25 15:52:28 +02001107 * amdgpu_vm_find_pt - find the page table for an address
1108 *
1109 * @p: see amdgpu_pte_update_params definition
1110 * @addr: virtual address in question
1111 *
1112 * Find the page table BO for a virtual address, return NULL when none found.
1113 */
1114static struct amdgpu_bo *amdgpu_vm_get_pt(struct amdgpu_pte_update_params *p,
1115 uint64_t addr)
1116{
1117 struct amdgpu_vm_pt *entry = &p->vm->root;
1118 unsigned idx, level = p->adev->vm_manager.num_level;
1119
1120 while (entry->entries) {
Zhang, Jerry36b32a62017-03-29 16:08:32 +08001121 idx = addr >> (p->adev->vm_manager.block_size * level--);
Christian König4e2cb642016-10-25 15:52:28 +02001122 idx %= amdgpu_bo_size(entry->bo) / 8;
1123 entry = &entry->entries[idx];
1124 }
1125
1126 if (level)
1127 return NULL;
1128
1129 return entry->bo;
1130}
1131
1132/**
Christian König92696dd2016-08-05 13:56:35 +02001133 * amdgpu_vm_update_ptes - make sure that page tables are valid
1134 *
1135 * @params: see amdgpu_pte_update_params definition
1136 * @vm: requested vm
1137 * @start: start of GPU address range
1138 * @end: end of GPU address range
1139 * @dst: destination address to map to, the next dst inside the function
1140 * @flags: mapping flags
1141 *
1142 * Update the page tables in the range @start - @end.
1143 */
1144static void amdgpu_vm_update_ptes(struct amdgpu_pte_update_params *params,
Christian König92696dd2016-08-05 13:56:35 +02001145 uint64_t start, uint64_t end,
Chunming Zhou6b777602016-09-21 16:19:19 +08001146 uint64_t dst, uint64_t flags)
Christian König92696dd2016-08-05 13:56:35 +02001147{
Zhang, Jerry36b32a62017-03-29 16:08:32 +08001148 struct amdgpu_device *adev = params->adev;
1149 const uint64_t mask = AMDGPU_VM_PTE_COUNT(adev) - 1;
Christian König92696dd2016-08-05 13:56:35 +02001150
1151 uint64_t cur_pe_start, cur_nptes, cur_dst;
1152 uint64_t addr; /* next GPU address to be updated */
Christian König92696dd2016-08-05 13:56:35 +02001153 struct amdgpu_bo *pt;
1154 unsigned nptes; /* next number of ptes to be updated */
1155 uint64_t next_pe_start;
1156
1157 /* initialize the variables */
1158 addr = start;
Christian König4e2cb642016-10-25 15:52:28 +02001159 pt = amdgpu_vm_get_pt(params, addr);
Felix Kuehling1866bac2017-03-28 20:36:12 -04001160 if (!pt) {
1161 pr_err("PT not found, aborting update_ptes\n");
Christian König4e2cb642016-10-25 15:52:28 +02001162 return;
Felix Kuehling1866bac2017-03-28 20:36:12 -04001163 }
Christian König4e2cb642016-10-25 15:52:28 +02001164
Chunming Zhou4c7e8852016-08-15 11:46:21 +08001165 if (params->shadow) {
1166 if (!pt->shadow)
1167 return;
Christian König914b4dc2016-09-28 12:27:37 +02001168 pt = pt->shadow;
Chunming Zhou4c7e8852016-08-15 11:46:21 +08001169 }
Christian König92696dd2016-08-05 13:56:35 +02001170 if ((addr & ~mask) == (end & ~mask))
1171 nptes = end - addr;
1172 else
Zhang, Jerry36b32a62017-03-29 16:08:32 +08001173 nptes = AMDGPU_VM_PTE_COUNT(adev) - (addr & mask);
Christian König92696dd2016-08-05 13:56:35 +02001174
1175 cur_pe_start = amdgpu_bo_gpu_offset(pt);
1176 cur_pe_start += (addr & mask) * 8;
1177 cur_nptes = nptes;
1178 cur_dst = dst;
1179
1180 /* for next ptb*/
1181 addr += nptes;
1182 dst += nptes * AMDGPU_GPU_PAGE_SIZE;
1183
1184 /* walk over the address space and update the page tables */
1185 while (addr < end) {
Christian König4e2cb642016-10-25 15:52:28 +02001186 pt = amdgpu_vm_get_pt(params, addr);
Felix Kuehling1866bac2017-03-28 20:36:12 -04001187 if (!pt) {
1188 pr_err("PT not found, aborting update_ptes\n");
Christian König4e2cb642016-10-25 15:52:28 +02001189 return;
Felix Kuehling1866bac2017-03-28 20:36:12 -04001190 }
Christian König4e2cb642016-10-25 15:52:28 +02001191
Chunming Zhou4c7e8852016-08-15 11:46:21 +08001192 if (params->shadow) {
1193 if (!pt->shadow)
1194 return;
Christian König914b4dc2016-09-28 12:27:37 +02001195 pt = pt->shadow;
Chunming Zhou4c7e8852016-08-15 11:46:21 +08001196 }
Christian König92696dd2016-08-05 13:56:35 +02001197
1198 if ((addr & ~mask) == (end & ~mask))
1199 nptes = end - addr;
1200 else
Zhang, Jerry36b32a62017-03-29 16:08:32 +08001201 nptes = AMDGPU_VM_PTE_COUNT(adev) - (addr & mask);
Christian König92696dd2016-08-05 13:56:35 +02001202
1203 next_pe_start = amdgpu_bo_gpu_offset(pt);
1204 next_pe_start += (addr & mask) * 8;
1205
Christian König96105e52016-08-12 12:59:59 +02001206 if ((cur_pe_start + 8 * cur_nptes) == next_pe_start &&
1207 ((cur_nptes + nptes) <= AMDGPU_VM_MAX_UPDATE_SIZE)) {
Christian König92696dd2016-08-05 13:56:35 +02001208 /* The next ptb is consecutive to current ptb.
Christian Königafef8b82016-08-12 13:29:18 +02001209 * Don't call the update function now.
Christian König92696dd2016-08-05 13:56:35 +02001210 * Will update two ptbs together in future.
1211 */
1212 cur_nptes += nptes;
1213 } else {
Christian Königafef8b82016-08-12 13:29:18 +02001214 params->func(params, cur_pe_start, cur_dst, cur_nptes,
1215 AMDGPU_GPU_PAGE_SIZE, flags);
Christian König92696dd2016-08-05 13:56:35 +02001216
1217 cur_pe_start = next_pe_start;
1218 cur_nptes = nptes;
1219 cur_dst = dst;
1220 }
1221
1222 /* for next ptb*/
1223 addr += nptes;
1224 dst += nptes * AMDGPU_GPU_PAGE_SIZE;
1225 }
1226
Christian Königafef8b82016-08-12 13:29:18 +02001227 params->func(params, cur_pe_start, cur_dst, cur_nptes,
1228 AMDGPU_GPU_PAGE_SIZE, flags);
Christian König92696dd2016-08-05 13:56:35 +02001229}
1230
1231/*
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001232 * amdgpu_vm_frag_ptes - add fragment information to PTEs
1233 *
Christian König29efc4f2016-08-04 14:52:50 +02001234 * @params: see amdgpu_pte_update_params definition
Christian König92696dd2016-08-05 13:56:35 +02001235 * @vm: requested vm
1236 * @start: first PTE to handle
1237 * @end: last PTE to handle
1238 * @dst: addr those PTEs should point to
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001239 * @flags: hw mapping flags
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001240 */
Christian König27c5f362016-08-04 15:02:49 +02001241static void amdgpu_vm_frag_ptes(struct amdgpu_pte_update_params *params,
Christian König92696dd2016-08-05 13:56:35 +02001242 uint64_t start, uint64_t end,
Chunming Zhou6b777602016-09-21 16:19:19 +08001243 uint64_t dst, uint64_t flags)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001244{
1245 /**
1246 * The MC L1 TLB supports variable sized pages, based on a fragment
1247 * field in the PTE. When this field is set to a non-zero value, page
1248 * granularity is increased from 4KB to (1 << (12 + frag)). The PTE
1249 * flags are considered valid for all PTEs within the fragment range
1250 * and corresponding mappings are assumed to be physically contiguous.
1251 *
1252 * The L1 TLB can store a single PTE for the whole fragment,
1253 * significantly increasing the space available for translation
1254 * caching. This leads to large improvements in throughput when the
1255 * TLB is under pressure.
1256 *
1257 * The L2 TLB distributes small and large fragments into two
1258 * asymmetric partitions. The large fragment cache is significantly
1259 * larger. Thus, we try to use large fragments wherever possible.
1260 * Userspace can support this by aligning virtual base address and
1261 * allocation size to the fragment size.
1262 */
1263
Christian König80366172016-10-04 13:39:43 +02001264 /* SI and newer are optimized for 64KB */
1265 uint64_t frag_flags = AMDGPU_PTE_FRAG(AMDGPU_LOG2_PAGES_PER_FRAG);
1266 uint64_t frag_align = 1 << AMDGPU_LOG2_PAGES_PER_FRAG;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001267
Christian König92696dd2016-08-05 13:56:35 +02001268 uint64_t frag_start = ALIGN(start, frag_align);
1269 uint64_t frag_end = end & ~(frag_align - 1);
Christian König31f6c1f2016-01-26 12:37:49 +01001270
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001271 /* system pages are non continuously */
Christian Königb7fc2cb2016-08-11 16:44:15 +02001272 if (params->src || !(flags & AMDGPU_PTE_VALID) ||
Christian König92696dd2016-08-05 13:56:35 +02001273 (frag_start >= frag_end)) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001274
Christian König49ac8a22016-10-13 15:09:08 +02001275 amdgpu_vm_update_ptes(params, start, end, dst, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001276 return;
1277 }
1278
1279 /* handle the 4K area at the beginning */
Christian König92696dd2016-08-05 13:56:35 +02001280 if (start != frag_start) {
Christian König49ac8a22016-10-13 15:09:08 +02001281 amdgpu_vm_update_ptes(params, start, frag_start,
Christian König92696dd2016-08-05 13:56:35 +02001282 dst, flags);
1283 dst += (frag_start - start) * AMDGPU_GPU_PAGE_SIZE;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001284 }
1285
1286 /* handle the area in the middle */
Christian König49ac8a22016-10-13 15:09:08 +02001287 amdgpu_vm_update_ptes(params, frag_start, frag_end, dst,
Christian König80366172016-10-04 13:39:43 +02001288 flags | frag_flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001289
1290 /* handle the 4K area at the end */
Christian König92696dd2016-08-05 13:56:35 +02001291 if (frag_end != end) {
1292 dst += (frag_end - frag_start) * AMDGPU_GPU_PAGE_SIZE;
Christian König49ac8a22016-10-13 15:09:08 +02001293 amdgpu_vm_update_ptes(params, frag_end, end, dst, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001294 }
1295}
1296
1297/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001298 * amdgpu_vm_bo_update_mapping - update a mapping in the vm page table
1299 *
1300 * @adev: amdgpu_device pointer
Christian König3cabaa52016-06-06 10:17:58 +02001301 * @exclusive: fence we need to sync to
Christian Königfa3ab3c2016-03-18 21:00:35 +01001302 * @src: address where to copy page table entries from
1303 * @pages_addr: DMA addresses to use for mapping
Christian Königa14faa62016-01-25 14:27:31 +01001304 * @vm: requested vm
1305 * @start: start of mapped range
1306 * @last: last mapped entry
1307 * @flags: flags for the entries
1308 * @addr: addr to set the area to
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001309 * @fence: optional resulting fence
1310 *
Christian Königa14faa62016-01-25 14:27:31 +01001311 * Fill in the page table entries between @start and @last.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001312 * Returns 0 for success, -EINVAL for failure.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001313 */
1314static int amdgpu_vm_bo_update_mapping(struct amdgpu_device *adev,
Chris Wilsonf54d1862016-10-25 13:00:45 +01001315 struct dma_fence *exclusive,
Christian Königfa3ab3c2016-03-18 21:00:35 +01001316 uint64_t src,
1317 dma_addr_t *pages_addr,
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001318 struct amdgpu_vm *vm,
Christian Königa14faa62016-01-25 14:27:31 +01001319 uint64_t start, uint64_t last,
Chunming Zhou6b777602016-09-21 16:19:19 +08001320 uint64_t flags, uint64_t addr,
Chris Wilsonf54d1862016-10-25 13:00:45 +01001321 struct dma_fence **fence)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001322{
Christian König2d55e452016-02-08 17:37:38 +01001323 struct amdgpu_ring *ring;
Christian Königa1e08d32016-01-26 11:40:46 +01001324 void *owner = AMDGPU_FENCE_OWNER_VM;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001325 unsigned nptes, ncmds, ndw;
Christian Königd71518b2016-02-01 12:20:25 +01001326 struct amdgpu_job *job;
Christian König29efc4f2016-08-04 14:52:50 +02001327 struct amdgpu_pte_update_params params;
Chris Wilsonf54d1862016-10-25 13:00:45 +01001328 struct dma_fence *f = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001329 int r;
1330
Christian Königafef8b82016-08-12 13:29:18 +02001331 memset(&params, 0, sizeof(params));
1332 params.adev = adev;
Christian König49ac8a22016-10-13 15:09:08 +02001333 params.vm = vm;
Christian Königafef8b82016-08-12 13:29:18 +02001334 params.src = src;
1335
Christian König2d55e452016-02-08 17:37:38 +01001336 ring = container_of(vm->entity.sched, struct amdgpu_ring, sched);
Christian König27c5f362016-08-04 15:02:49 +02001337
Christian Königa1e08d32016-01-26 11:40:46 +01001338 /* sync to everything on unmapping */
1339 if (!(flags & AMDGPU_PTE_VALID))
1340 owner = AMDGPU_FENCE_OWNER_UNDEFINED;
1341
Christian Königa14faa62016-01-25 14:27:31 +01001342 nptes = last - start + 1;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001343
1344 /*
1345 * reserve space for one command every (1 << BLOCK_SIZE)
1346 * entries or 2k dwords (whatever is smaller)
1347 */
Zhang, Jerry36b32a62017-03-29 16:08:32 +08001348 ncmds = (nptes >> min(adev->vm_manager.block_size, 11u)) + 1;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001349
1350 /* padding, etc. */
1351 ndw = 64;
1352
Christian Königb0456f92016-08-11 14:06:54 +02001353 if (src) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001354 /* only copy commands needed */
1355 ndw += ncmds * 7;
1356
Christian Königafef8b82016-08-12 13:29:18 +02001357 params.func = amdgpu_vm_do_copy_ptes;
1358
Christian Königb0456f92016-08-11 14:06:54 +02001359 } else if (pages_addr) {
1360 /* copy commands needed */
1361 ndw += ncmds * 7;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001362
Christian Königb0456f92016-08-11 14:06:54 +02001363 /* and also PTEs */
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001364 ndw += nptes * 2;
1365
Christian Königafef8b82016-08-12 13:29:18 +02001366 params.func = amdgpu_vm_do_copy_ptes;
1367
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001368 } else {
1369 /* set page commands needed */
1370 ndw += ncmds * 10;
1371
1372 /* two extra commands for begin/end of fragment */
1373 ndw += 2 * 10;
Christian Königafef8b82016-08-12 13:29:18 +02001374
1375 params.func = amdgpu_vm_do_set_ptes;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001376 }
1377
Christian Königd71518b2016-02-01 12:20:25 +01001378 r = amdgpu_job_alloc_with_ib(adev, ndw * 4, &job);
1379 if (r)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001380 return r;
Christian Königd71518b2016-02-01 12:20:25 +01001381
Christian König29efc4f2016-08-04 14:52:50 +02001382 params.ib = &job->ibs[0];
Chunming Zhoud5fc5e82015-07-21 16:52:10 +08001383
Christian Königb0456f92016-08-11 14:06:54 +02001384 if (!src && pages_addr) {
1385 uint64_t *pte;
1386 unsigned i;
1387
1388 /* Put the PTEs at the end of the IB. */
1389 i = ndw - nptes * 2;
1390 pte= (uint64_t *)&(job->ibs->ptr[i]);
1391 params.src = job->ibs->gpu_addr + i * 4;
1392
1393 for (i = 0; i < nptes; ++i) {
1394 pte[i] = amdgpu_vm_map_gart(pages_addr, addr + i *
1395 AMDGPU_GPU_PAGE_SIZE);
1396 pte[i] |= flags;
1397 }
Christian Königd7a4ac62016-09-25 11:54:00 +02001398 addr = 0;
Christian Königb0456f92016-08-11 14:06:54 +02001399 }
1400
Christian König3cabaa52016-06-06 10:17:58 +02001401 r = amdgpu_sync_fence(adev, &job->sync, exclusive);
1402 if (r)
1403 goto error_free;
1404
Christian König67003a12016-10-12 14:46:26 +02001405 r = amdgpu_sync_resv(adev, &job->sync, vm->root.bo->tbo.resv,
Christian Königa1e08d32016-01-26 11:40:46 +01001406 owner);
1407 if (r)
1408 goto error_free;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001409
Christian König67003a12016-10-12 14:46:26 +02001410 r = reservation_object_reserve_shared(vm->root.bo->tbo.resv);
Christian Königa1e08d32016-01-26 11:40:46 +01001411 if (r)
1412 goto error_free;
1413
Chunming Zhou4c7e8852016-08-15 11:46:21 +08001414 params.shadow = true;
Christian König49ac8a22016-10-13 15:09:08 +02001415 amdgpu_vm_frag_ptes(&params, start, last + 1, addr, flags);
Chunming Zhou4c7e8852016-08-15 11:46:21 +08001416 params.shadow = false;
Christian König49ac8a22016-10-13 15:09:08 +02001417 amdgpu_vm_frag_ptes(&params, start, last + 1, addr, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001418
Christian König29efc4f2016-08-04 14:52:50 +02001419 amdgpu_ring_pad_ib(ring, params.ib);
1420 WARN_ON(params.ib->length_dw > ndw);
Christian König2bd9ccf2016-02-01 12:53:58 +01001421 r = amdgpu_job_submit(job, ring, &vm->entity,
1422 AMDGPU_FENCE_OWNER_VM, &f);
Chunming Zhou4af9f072015-08-03 12:57:31 +08001423 if (r)
1424 goto error_free;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001425
Christian König67003a12016-10-12 14:46:26 +02001426 amdgpu_bo_fence(vm->root.bo, f, true);
Christian König284710f2017-01-30 11:09:31 +01001427 dma_fence_put(*fence);
1428 *fence = f;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001429 return 0;
Chunming Zhoud5fc5e82015-07-21 16:52:10 +08001430
1431error_free:
Christian Königd71518b2016-02-01 12:20:25 +01001432 amdgpu_job_free(job);
Chunming Zhou4af9f072015-08-03 12:57:31 +08001433 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001434}
1435
1436/**
Christian Königa14faa62016-01-25 14:27:31 +01001437 * amdgpu_vm_bo_split_mapping - split a mapping into smaller chunks
1438 *
1439 * @adev: amdgpu_device pointer
Christian König3cabaa52016-06-06 10:17:58 +02001440 * @exclusive: fence we need to sync to
Christian König8358dce2016-03-30 10:50:25 +02001441 * @gtt_flags: flags as they are used for GTT
1442 * @pages_addr: DMA addresses to use for mapping
Christian Königa14faa62016-01-25 14:27:31 +01001443 * @vm: requested vm
1444 * @mapping: mapped range and flags to use for the update
Christian König8358dce2016-03-30 10:50:25 +02001445 * @flags: HW flags for the mapping
Christian König63e0ba42016-08-16 17:38:37 +02001446 * @nodes: array of drm_mm_nodes with the MC addresses
Christian Königa14faa62016-01-25 14:27:31 +01001447 * @fence: optional resulting fence
1448 *
1449 * Split the mapping into smaller chunks so that each update fits
1450 * into a SDMA IB.
1451 * Returns 0 for success, -EINVAL for failure.
1452 */
1453static int amdgpu_vm_bo_split_mapping(struct amdgpu_device *adev,
Chris Wilsonf54d1862016-10-25 13:00:45 +01001454 struct dma_fence *exclusive,
Chunming Zhou6b777602016-09-21 16:19:19 +08001455 uint64_t gtt_flags,
Christian König8358dce2016-03-30 10:50:25 +02001456 dma_addr_t *pages_addr,
Christian Königa14faa62016-01-25 14:27:31 +01001457 struct amdgpu_vm *vm,
1458 struct amdgpu_bo_va_mapping *mapping,
Chunming Zhou6b777602016-09-21 16:19:19 +08001459 uint64_t flags,
Christian König63e0ba42016-08-16 17:38:37 +02001460 struct drm_mm_node *nodes,
Chris Wilsonf54d1862016-10-25 13:00:45 +01001461 struct dma_fence **fence)
Christian Königa14faa62016-01-25 14:27:31 +01001462{
Christian Königa9f87f62017-03-30 14:03:59 +02001463 uint64_t pfn, src = 0, start = mapping->start;
Christian Königa14faa62016-01-25 14:27:31 +01001464 int r;
1465
1466 /* normally,bo_va->flags only contians READABLE and WIRTEABLE bit go here
1467 * but in case of something, we filter the flags in first place
1468 */
1469 if (!(mapping->flags & AMDGPU_PTE_READABLE))
1470 flags &= ~AMDGPU_PTE_READABLE;
1471 if (!(mapping->flags & AMDGPU_PTE_WRITEABLE))
1472 flags &= ~AMDGPU_PTE_WRITEABLE;
1473
Alex Xie15b31c52017-03-03 16:47:11 -05001474 flags &= ~AMDGPU_PTE_EXECUTABLE;
1475 flags |= mapping->flags & AMDGPU_PTE_EXECUTABLE;
1476
Alex Xieb0fd18b2017-03-03 16:49:39 -05001477 flags &= ~AMDGPU_PTE_MTYPE_MASK;
1478 flags |= (mapping->flags & AMDGPU_PTE_MTYPE_MASK);
1479
Zhang, Jerryd0766e92017-04-19 09:53:29 +08001480 if ((mapping->flags & AMDGPU_PTE_PRT) &&
1481 (adev->asic_type >= CHIP_VEGA10)) {
1482 flags |= AMDGPU_PTE_PRT;
1483 flags &= ~AMDGPU_PTE_VALID;
1484 }
1485
Christian Königa14faa62016-01-25 14:27:31 +01001486 trace_amdgpu_vm_bo_update(mapping);
1487
Christian König63e0ba42016-08-16 17:38:37 +02001488 pfn = mapping->offset >> PAGE_SHIFT;
1489 if (nodes) {
1490 while (pfn >= nodes->size) {
1491 pfn -= nodes->size;
1492 ++nodes;
1493 }
Christian Königfa3ab3c2016-03-18 21:00:35 +01001494 }
Christian Königa14faa62016-01-25 14:27:31 +01001495
Christian König63e0ba42016-08-16 17:38:37 +02001496 do {
1497 uint64_t max_entries;
1498 uint64_t addr, last;
Christian Königa14faa62016-01-25 14:27:31 +01001499
Christian König63e0ba42016-08-16 17:38:37 +02001500 if (nodes) {
1501 addr = nodes->start << PAGE_SHIFT;
1502 max_entries = (nodes->size - pfn) *
1503 (PAGE_SIZE / AMDGPU_GPU_PAGE_SIZE);
1504 } else {
1505 addr = 0;
1506 max_entries = S64_MAX;
1507 }
Christian Königa14faa62016-01-25 14:27:31 +01001508
Christian König63e0ba42016-08-16 17:38:37 +02001509 if (pages_addr) {
1510 if (flags == gtt_flags)
1511 src = adev->gart.table_addr +
1512 (addr >> AMDGPU_GPU_PAGE_SHIFT) * 8;
1513 else
1514 max_entries = min(max_entries, 16ull * 1024ull);
1515 addr = 0;
1516 } else if (flags & AMDGPU_PTE_VALID) {
1517 addr += adev->vm_manager.vram_base_offset;
1518 }
1519 addr += pfn << PAGE_SHIFT;
1520
Christian Königa9f87f62017-03-30 14:03:59 +02001521 last = min((uint64_t)mapping->last, start + max_entries - 1);
Christian König3cabaa52016-06-06 10:17:58 +02001522 r = amdgpu_vm_bo_update_mapping(adev, exclusive,
1523 src, pages_addr, vm,
Christian Königa14faa62016-01-25 14:27:31 +01001524 start, last, flags, addr,
1525 fence);
1526 if (r)
1527 return r;
1528
Christian König63e0ba42016-08-16 17:38:37 +02001529 pfn += last - start + 1;
1530 if (nodes && nodes->size == pfn) {
1531 pfn = 0;
1532 ++nodes;
1533 }
Christian Königa14faa62016-01-25 14:27:31 +01001534 start = last + 1;
Christian König63e0ba42016-08-16 17:38:37 +02001535
Christian Königa9f87f62017-03-30 14:03:59 +02001536 } while (unlikely(start != mapping->last + 1));
Christian Königa14faa62016-01-25 14:27:31 +01001537
1538 return 0;
1539}
1540
1541/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001542 * amdgpu_vm_bo_update - update all BO mappings in the vm page table
1543 *
1544 * @adev: amdgpu_device pointer
1545 * @bo_va: requested BO and VM object
Christian König99e124f2016-08-16 14:43:17 +02001546 * @clear: if true clear the entries
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001547 *
1548 * Fill in the page table entries for @bo_va.
1549 * Returns 0 for success, -EINVAL for failure.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001550 */
1551int amdgpu_vm_bo_update(struct amdgpu_device *adev,
1552 struct amdgpu_bo_va *bo_va,
Christian König99e124f2016-08-16 14:43:17 +02001553 bool clear)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001554{
1555 struct amdgpu_vm *vm = bo_va->vm;
1556 struct amdgpu_bo_va_mapping *mapping;
Christian König8358dce2016-03-30 10:50:25 +02001557 dma_addr_t *pages_addr = NULL;
Chunming Zhou6b777602016-09-21 16:19:19 +08001558 uint64_t gtt_flags, flags;
Christian König99e124f2016-08-16 14:43:17 +02001559 struct ttm_mem_reg *mem;
Christian König63e0ba42016-08-16 17:38:37 +02001560 struct drm_mm_node *nodes;
Chris Wilsonf54d1862016-10-25 13:00:45 +01001561 struct dma_fence *exclusive;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001562 int r;
1563
Christian Königa5f6b5b2017-01-30 11:01:38 +01001564 if (clear || !bo_va->bo) {
Christian König99e124f2016-08-16 14:43:17 +02001565 mem = NULL;
Christian König63e0ba42016-08-16 17:38:37 +02001566 nodes = NULL;
Christian König99e124f2016-08-16 14:43:17 +02001567 exclusive = NULL;
1568 } else {
Christian König8358dce2016-03-30 10:50:25 +02001569 struct ttm_dma_tt *ttm;
1570
Christian König99e124f2016-08-16 14:43:17 +02001571 mem = &bo_va->bo->tbo.mem;
Christian König63e0ba42016-08-16 17:38:37 +02001572 nodes = mem->mm_node;
1573 if (mem->mem_type == TTM_PL_TT) {
Christian König8358dce2016-03-30 10:50:25 +02001574 ttm = container_of(bo_va->bo->tbo.ttm, struct
1575 ttm_dma_tt, ttm);
1576 pages_addr = ttm->dma_address;
Christian König9ab21462015-11-30 14:19:26 +01001577 }
Christian König3cabaa52016-06-06 10:17:58 +02001578 exclusive = reservation_object_get_excl(bo_va->bo->tbo.resv);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001579 }
1580
Christian Königa5f6b5b2017-01-30 11:01:38 +01001581 if (bo_va->bo) {
1582 flags = amdgpu_ttm_tt_pte_flags(adev, bo_va->bo->tbo.ttm, mem);
1583 gtt_flags = (amdgpu_ttm_is_bound(bo_va->bo->tbo.ttm) &&
1584 adev == amdgpu_ttm_adev(bo_va->bo->tbo.bdev)) ?
1585 flags : 0;
1586 } else {
1587 flags = 0x0;
1588 gtt_flags = ~0x0;
1589 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001590
Christian König7fc11952015-07-30 11:53:42 +02001591 spin_lock(&vm->status_lock);
1592 if (!list_empty(&bo_va->vm_status))
1593 list_splice_init(&bo_va->valids, &bo_va->invalids);
1594 spin_unlock(&vm->status_lock);
1595
1596 list_for_each_entry(mapping, &bo_va->invalids, list) {
Christian König3cabaa52016-06-06 10:17:58 +02001597 r = amdgpu_vm_bo_split_mapping(adev, exclusive,
1598 gtt_flags, pages_addr, vm,
Christian König63e0ba42016-08-16 17:38:37 +02001599 mapping, flags, nodes,
Christian König8358dce2016-03-30 10:50:25 +02001600 &bo_va->last_pt_update);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001601 if (r)
1602 return r;
1603 }
1604
Christian Königd6c10f62015-09-28 12:00:23 +02001605 if (trace_amdgpu_vm_bo_mapping_enabled()) {
1606 list_for_each_entry(mapping, &bo_va->valids, list)
1607 trace_amdgpu_vm_bo_mapping(mapping);
1608
1609 list_for_each_entry(mapping, &bo_va->invalids, list)
1610 trace_amdgpu_vm_bo_mapping(mapping);
1611 }
1612
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001613 spin_lock(&vm->status_lock);
monk.liu6d1d0ef2015-08-14 13:36:41 +08001614 list_splice_init(&bo_va->invalids, &bo_va->valids);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001615 list_del_init(&bo_va->vm_status);
Christian König99e124f2016-08-16 14:43:17 +02001616 if (clear)
Christian König7fc11952015-07-30 11:53:42 +02001617 list_add(&bo_va->vm_status, &vm->cleared);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001618 spin_unlock(&vm->status_lock);
1619
1620 return 0;
1621}
1622
1623/**
Christian König284710f2017-01-30 11:09:31 +01001624 * amdgpu_vm_update_prt_state - update the global PRT state
1625 */
1626static void amdgpu_vm_update_prt_state(struct amdgpu_device *adev)
1627{
1628 unsigned long flags;
1629 bool enable;
1630
1631 spin_lock_irqsave(&adev->vm_manager.prt_lock, flags);
Christian König451bc8e2017-02-14 16:02:52 +01001632 enable = !!atomic_read(&adev->vm_manager.num_prt_users);
Christian König284710f2017-01-30 11:09:31 +01001633 adev->gart.gart_funcs->set_prt(adev, enable);
1634 spin_unlock_irqrestore(&adev->vm_manager.prt_lock, flags);
1635}
1636
1637/**
Christian König4388fc22017-03-13 10:13:36 +01001638 * amdgpu_vm_prt_get - add a PRT user
Christian König451bc8e2017-02-14 16:02:52 +01001639 */
1640static void amdgpu_vm_prt_get(struct amdgpu_device *adev)
1641{
Christian König4388fc22017-03-13 10:13:36 +01001642 if (!adev->gart.gart_funcs->set_prt)
1643 return;
1644
Christian König451bc8e2017-02-14 16:02:52 +01001645 if (atomic_inc_return(&adev->vm_manager.num_prt_users) == 1)
1646 amdgpu_vm_update_prt_state(adev);
1647}
1648
1649/**
Christian König0b15f2f2017-02-14 15:47:03 +01001650 * amdgpu_vm_prt_put - drop a PRT user
1651 */
1652static void amdgpu_vm_prt_put(struct amdgpu_device *adev)
1653{
Christian König451bc8e2017-02-14 16:02:52 +01001654 if (atomic_dec_return(&adev->vm_manager.num_prt_users) == 0)
Christian König0b15f2f2017-02-14 15:47:03 +01001655 amdgpu_vm_update_prt_state(adev);
1656}
1657
1658/**
Christian König451bc8e2017-02-14 16:02:52 +01001659 * amdgpu_vm_prt_cb - callback for updating the PRT status
Christian König284710f2017-01-30 11:09:31 +01001660 */
1661static void amdgpu_vm_prt_cb(struct dma_fence *fence, struct dma_fence_cb *_cb)
1662{
1663 struct amdgpu_prt_cb *cb = container_of(_cb, struct amdgpu_prt_cb, cb);
1664
Christian König0b15f2f2017-02-14 15:47:03 +01001665 amdgpu_vm_prt_put(cb->adev);
Christian König284710f2017-01-30 11:09:31 +01001666 kfree(cb);
1667}
1668
1669/**
Christian König451bc8e2017-02-14 16:02:52 +01001670 * amdgpu_vm_add_prt_cb - add callback for updating the PRT status
1671 */
1672static void amdgpu_vm_add_prt_cb(struct amdgpu_device *adev,
1673 struct dma_fence *fence)
1674{
Christian König4388fc22017-03-13 10:13:36 +01001675 struct amdgpu_prt_cb *cb;
Christian König451bc8e2017-02-14 16:02:52 +01001676
Christian König4388fc22017-03-13 10:13:36 +01001677 if (!adev->gart.gart_funcs->set_prt)
1678 return;
1679
1680 cb = kmalloc(sizeof(struct amdgpu_prt_cb), GFP_KERNEL);
Christian König451bc8e2017-02-14 16:02:52 +01001681 if (!cb) {
1682 /* Last resort when we are OOM */
1683 if (fence)
1684 dma_fence_wait(fence, false);
1685
Dan Carpenter486a68f2017-04-03 21:41:39 +03001686 amdgpu_vm_prt_put(adev);
Christian König451bc8e2017-02-14 16:02:52 +01001687 } else {
1688 cb->adev = adev;
1689 if (!fence || dma_fence_add_callback(fence, &cb->cb,
1690 amdgpu_vm_prt_cb))
1691 amdgpu_vm_prt_cb(fence, &cb->cb);
1692 }
1693}
1694
1695/**
Christian König284710f2017-01-30 11:09:31 +01001696 * amdgpu_vm_free_mapping - free a mapping
1697 *
1698 * @adev: amdgpu_device pointer
1699 * @vm: requested vm
1700 * @mapping: mapping to be freed
1701 * @fence: fence of the unmap operation
1702 *
1703 * Free a mapping and make sure we decrease the PRT usage count if applicable.
1704 */
1705static void amdgpu_vm_free_mapping(struct amdgpu_device *adev,
1706 struct amdgpu_vm *vm,
1707 struct amdgpu_bo_va_mapping *mapping,
1708 struct dma_fence *fence)
1709{
Christian König451bc8e2017-02-14 16:02:52 +01001710 if (mapping->flags & AMDGPU_PTE_PRT)
1711 amdgpu_vm_add_prt_cb(adev, fence);
Christian König284710f2017-01-30 11:09:31 +01001712 kfree(mapping);
1713}
1714
1715/**
Christian König451bc8e2017-02-14 16:02:52 +01001716 * amdgpu_vm_prt_fini - finish all prt mappings
1717 *
1718 * @adev: amdgpu_device pointer
1719 * @vm: requested vm
1720 *
1721 * Register a cleanup callback to disable PRT support after VM dies.
1722 */
1723static void amdgpu_vm_prt_fini(struct amdgpu_device *adev, struct amdgpu_vm *vm)
1724{
Christian König67003a12016-10-12 14:46:26 +02001725 struct reservation_object *resv = vm->root.bo->tbo.resv;
Christian König451bc8e2017-02-14 16:02:52 +01001726 struct dma_fence *excl, **shared;
1727 unsigned i, shared_count;
1728 int r;
1729
1730 r = reservation_object_get_fences_rcu(resv, &excl,
1731 &shared_count, &shared);
1732 if (r) {
1733 /* Not enough memory to grab the fence list, as last resort
1734 * block for all the fences to complete.
1735 */
1736 reservation_object_wait_timeout_rcu(resv, true, false,
1737 MAX_SCHEDULE_TIMEOUT);
1738 return;
1739 }
1740
1741 /* Add a callback for each fence in the reservation object */
1742 amdgpu_vm_prt_get(adev);
1743 amdgpu_vm_add_prt_cb(adev, excl);
1744
1745 for (i = 0; i < shared_count; ++i) {
1746 amdgpu_vm_prt_get(adev);
1747 amdgpu_vm_add_prt_cb(adev, shared[i]);
1748 }
1749
1750 kfree(shared);
1751}
1752
1753/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001754 * amdgpu_vm_clear_freed - clear freed BOs in the PT
1755 *
1756 * @adev: amdgpu_device pointer
1757 * @vm: requested vm
Nicolai Hähnlef3467812017-03-23 19:36:31 +01001758 * @fence: optional resulting fence (unchanged if no work needed to be done
1759 * or if an error occurred)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001760 *
1761 * Make sure all freed BOs are cleared in the PT.
1762 * Returns 0 for success.
1763 *
1764 * PTs have to be reserved and mutex must be locked!
1765 */
1766int amdgpu_vm_clear_freed(struct amdgpu_device *adev,
Nicolai Hähnlef3467812017-03-23 19:36:31 +01001767 struct amdgpu_vm *vm,
1768 struct dma_fence **fence)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001769{
1770 struct amdgpu_bo_va_mapping *mapping;
Nicolai Hähnlef3467812017-03-23 19:36:31 +01001771 struct dma_fence *f = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001772 int r;
1773
1774 while (!list_empty(&vm->freed)) {
1775 mapping = list_first_entry(&vm->freed,
1776 struct amdgpu_bo_va_mapping, list);
1777 list_del(&mapping->list);
Christian Könige17841b2016-03-08 17:52:01 +01001778
Christian Königfc6aa332017-04-19 14:41:19 +02001779 r = amdgpu_vm_bo_update_mapping(adev, NULL, 0, NULL, vm,
1780 mapping->start, mapping->last,
1781 0, 0, &f);
Nicolai Hähnlef3467812017-03-23 19:36:31 +01001782 amdgpu_vm_free_mapping(adev, vm, mapping, f);
Christian König284710f2017-01-30 11:09:31 +01001783 if (r) {
Nicolai Hähnlef3467812017-03-23 19:36:31 +01001784 dma_fence_put(f);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001785 return r;
Christian König284710f2017-01-30 11:09:31 +01001786 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001787 }
Nicolai Hähnlef3467812017-03-23 19:36:31 +01001788
1789 if (fence && f) {
1790 dma_fence_put(*fence);
1791 *fence = f;
1792 } else {
1793 dma_fence_put(f);
1794 }
1795
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001796 return 0;
1797
1798}
1799
1800/**
1801 * amdgpu_vm_clear_invalids - clear invalidated BOs in the PT
1802 *
1803 * @adev: amdgpu_device pointer
1804 * @vm: requested vm
1805 *
1806 * Make sure all invalidated BOs are cleared in the PT.
1807 * Returns 0 for success.
1808 *
1809 * PTs have to be reserved and mutex must be locked!
1810 */
1811int amdgpu_vm_clear_invalids(struct amdgpu_device *adev,
monk.liucfe2c972015-05-26 15:01:54 +08001812 struct amdgpu_vm *vm, struct amdgpu_sync *sync)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001813{
monk.liucfe2c972015-05-26 15:01:54 +08001814 struct amdgpu_bo_va *bo_va = NULL;
Christian König91e1a522015-07-06 22:06:40 +02001815 int r = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001816
1817 spin_lock(&vm->status_lock);
1818 while (!list_empty(&vm->invalidated)) {
1819 bo_va = list_first_entry(&vm->invalidated,
1820 struct amdgpu_bo_va, vm_status);
1821 spin_unlock(&vm->status_lock);
Christian König32b41ac2016-03-08 18:03:27 +01001822
Christian König99e124f2016-08-16 14:43:17 +02001823 r = amdgpu_vm_bo_update(adev, bo_va, true);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001824 if (r)
1825 return r;
1826
1827 spin_lock(&vm->status_lock);
1828 }
1829 spin_unlock(&vm->status_lock);
1830
monk.liucfe2c972015-05-26 15:01:54 +08001831 if (bo_va)
Chunming Zhoubb1e38a42015-08-03 18:19:38 +08001832 r = amdgpu_sync_fence(adev, sync, bo_va->last_pt_update);
Christian König91e1a522015-07-06 22:06:40 +02001833
1834 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001835}
1836
1837/**
1838 * amdgpu_vm_bo_add - add a bo to a specific vm
1839 *
1840 * @adev: amdgpu_device pointer
1841 * @vm: requested vm
1842 * @bo: amdgpu buffer object
1843 *
Christian König8843dbb2016-01-26 12:17:11 +01001844 * Add @bo into the requested vm.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001845 * Add @bo to the list of bos associated with the vm
1846 * Returns newly added bo_va or NULL for failure
1847 *
1848 * Object has to be reserved!
1849 */
1850struct amdgpu_bo_va *amdgpu_vm_bo_add(struct amdgpu_device *adev,
1851 struct amdgpu_vm *vm,
1852 struct amdgpu_bo *bo)
1853{
1854 struct amdgpu_bo_va *bo_va;
1855
1856 bo_va = kzalloc(sizeof(struct amdgpu_bo_va), GFP_KERNEL);
1857 if (bo_va == NULL) {
1858 return NULL;
1859 }
1860 bo_va->vm = vm;
1861 bo_va->bo = bo;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001862 bo_va->ref_count = 1;
1863 INIT_LIST_HEAD(&bo_va->bo_list);
Christian König7fc11952015-07-30 11:53:42 +02001864 INIT_LIST_HEAD(&bo_va->valids);
1865 INIT_LIST_HEAD(&bo_va->invalids);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001866 INIT_LIST_HEAD(&bo_va->vm_status);
Christian König32b41ac2016-03-08 18:03:27 +01001867
Christian Königa5f6b5b2017-01-30 11:01:38 +01001868 if (bo)
1869 list_add_tail(&bo_va->bo_list, &bo->va);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001870
1871 return bo_va;
1872}
1873
1874/**
1875 * amdgpu_vm_bo_map - map bo inside a vm
1876 *
1877 * @adev: amdgpu_device pointer
1878 * @bo_va: bo_va to store the address
1879 * @saddr: where to map the BO
1880 * @offset: requested offset in the BO
1881 * @flags: attributes of pages (read/write/valid/etc.)
1882 *
1883 * Add a mapping of the BO at the specefied addr into the VM.
1884 * Returns 0 for success, error for failure.
1885 *
Chunming Zhou49b02b12015-11-13 14:18:38 +08001886 * Object has to be reserved and unreserved outside!
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001887 */
1888int amdgpu_vm_bo_map(struct amdgpu_device *adev,
1889 struct amdgpu_bo_va *bo_va,
1890 uint64_t saddr, uint64_t offset,
Christian König268c3002017-01-18 14:49:43 +01001891 uint64_t size, uint64_t flags)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001892{
Christian Königa9f87f62017-03-30 14:03:59 +02001893 struct amdgpu_bo_va_mapping *mapping, *tmp;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001894 struct amdgpu_vm *vm = bo_va->vm;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001895 uint64_t eaddr;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001896
Christian König0be52de2015-05-18 14:37:27 +02001897 /* validate the parameters */
1898 if (saddr & AMDGPU_GPU_PAGE_MASK || offset & AMDGPU_GPU_PAGE_MASK ||
Chunming Zhou49b02b12015-11-13 14:18:38 +08001899 size == 0 || size & AMDGPU_GPU_PAGE_MASK)
Christian König0be52de2015-05-18 14:37:27 +02001900 return -EINVAL;
Christian König0be52de2015-05-18 14:37:27 +02001901
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001902 /* make sure object fit at this offset */
Felix Kuehling005ae952015-11-23 17:43:48 -05001903 eaddr = saddr + size - 1;
Christian Königa5f6b5b2017-01-30 11:01:38 +01001904 if (saddr >= eaddr ||
1905 (bo_va->bo && offset + size > amdgpu_bo_size(bo_va->bo)))
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001906 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001907
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001908 saddr /= AMDGPU_GPU_PAGE_SIZE;
1909 eaddr /= AMDGPU_GPU_PAGE_SIZE;
1910
Christian Königa9f87f62017-03-30 14:03:59 +02001911 tmp = amdgpu_vm_it_iter_first(&vm->va, saddr, eaddr);
1912 if (tmp) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001913 /* bo and tmp overlap, invalid addr */
1914 dev_err(adev->dev, "bo %p va 0x%010Lx-0x%010Lx conflict with "
Christian Königa9f87f62017-03-30 14:03:59 +02001915 "0x%010Lx-0x%010Lx\n", bo_va->bo, saddr, eaddr,
1916 tmp->start, tmp->last + 1);
Christian König663e4572017-03-13 10:13:37 +01001917 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001918 }
1919
1920 mapping = kmalloc(sizeof(*mapping), GFP_KERNEL);
Christian König663e4572017-03-13 10:13:37 +01001921 if (!mapping)
1922 return -ENOMEM;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001923
1924 INIT_LIST_HEAD(&mapping->list);
Christian Königa9f87f62017-03-30 14:03:59 +02001925 mapping->start = saddr;
1926 mapping->last = eaddr;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001927 mapping->offset = offset;
1928 mapping->flags = flags;
1929
Christian König7fc11952015-07-30 11:53:42 +02001930 list_add(&mapping->list, &bo_va->invalids);
Christian Königa9f87f62017-03-30 14:03:59 +02001931 amdgpu_vm_it_insert(mapping, &vm->va);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001932
Christian König4388fc22017-03-13 10:13:36 +01001933 if (flags & AMDGPU_PTE_PRT)
1934 amdgpu_vm_prt_get(adev);
1935
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001936 return 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001937}
1938
1939/**
Christian König80f95c52017-03-13 10:13:39 +01001940 * amdgpu_vm_bo_replace_map - map bo inside a vm, replacing existing mappings
1941 *
1942 * @adev: amdgpu_device pointer
1943 * @bo_va: bo_va to store the address
1944 * @saddr: where to map the BO
1945 * @offset: requested offset in the BO
1946 * @flags: attributes of pages (read/write/valid/etc.)
1947 *
1948 * Add a mapping of the BO at the specefied addr into the VM. Replace existing
1949 * mappings as we do so.
1950 * Returns 0 for success, error for failure.
1951 *
1952 * Object has to be reserved and unreserved outside!
1953 */
1954int amdgpu_vm_bo_replace_map(struct amdgpu_device *adev,
1955 struct amdgpu_bo_va *bo_va,
1956 uint64_t saddr, uint64_t offset,
1957 uint64_t size, uint64_t flags)
1958{
1959 struct amdgpu_bo_va_mapping *mapping;
1960 struct amdgpu_vm *vm = bo_va->vm;
1961 uint64_t eaddr;
1962 int r;
1963
1964 /* validate the parameters */
1965 if (saddr & AMDGPU_GPU_PAGE_MASK || offset & AMDGPU_GPU_PAGE_MASK ||
1966 size == 0 || size & AMDGPU_GPU_PAGE_MASK)
1967 return -EINVAL;
1968
1969 /* make sure object fit at this offset */
1970 eaddr = saddr + size - 1;
1971 if (saddr >= eaddr ||
1972 (bo_va->bo && offset + size > amdgpu_bo_size(bo_va->bo)))
1973 return -EINVAL;
1974
1975 /* Allocate all the needed memory */
1976 mapping = kmalloc(sizeof(*mapping), GFP_KERNEL);
1977 if (!mapping)
1978 return -ENOMEM;
1979
1980 r = amdgpu_vm_bo_clear_mappings(adev, bo_va->vm, saddr, size);
1981 if (r) {
1982 kfree(mapping);
1983 return r;
1984 }
1985
1986 saddr /= AMDGPU_GPU_PAGE_SIZE;
1987 eaddr /= AMDGPU_GPU_PAGE_SIZE;
1988
Christian Königa9f87f62017-03-30 14:03:59 +02001989 mapping->start = saddr;
1990 mapping->last = eaddr;
Christian König80f95c52017-03-13 10:13:39 +01001991 mapping->offset = offset;
1992 mapping->flags = flags;
1993
1994 list_add(&mapping->list, &bo_va->invalids);
Christian Königa9f87f62017-03-30 14:03:59 +02001995 amdgpu_vm_it_insert(mapping, &vm->va);
Christian König80f95c52017-03-13 10:13:39 +01001996
1997 if (flags & AMDGPU_PTE_PRT)
1998 amdgpu_vm_prt_get(adev);
1999
2000 return 0;
2001}
2002
2003/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002004 * amdgpu_vm_bo_unmap - remove bo mapping from vm
2005 *
2006 * @adev: amdgpu_device pointer
2007 * @bo_va: bo_va to remove the address from
2008 * @saddr: where to the BO is mapped
2009 *
2010 * Remove a mapping of the BO at the specefied addr from the VM.
2011 * Returns 0 for success, error for failure.
2012 *
Chunming Zhou49b02b12015-11-13 14:18:38 +08002013 * Object has to be reserved and unreserved outside!
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002014 */
2015int amdgpu_vm_bo_unmap(struct amdgpu_device *adev,
2016 struct amdgpu_bo_va *bo_va,
2017 uint64_t saddr)
2018{
2019 struct amdgpu_bo_va_mapping *mapping;
2020 struct amdgpu_vm *vm = bo_va->vm;
Christian König7fc11952015-07-30 11:53:42 +02002021 bool valid = true;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002022
Christian König6c7fc502015-06-05 20:56:17 +02002023 saddr /= AMDGPU_GPU_PAGE_SIZE;
Christian König32b41ac2016-03-08 18:03:27 +01002024
Christian König7fc11952015-07-30 11:53:42 +02002025 list_for_each_entry(mapping, &bo_va->valids, list) {
Christian Königa9f87f62017-03-30 14:03:59 +02002026 if (mapping->start == saddr)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002027 break;
2028 }
2029
Christian König7fc11952015-07-30 11:53:42 +02002030 if (&mapping->list == &bo_va->valids) {
2031 valid = false;
2032
2033 list_for_each_entry(mapping, &bo_va->invalids, list) {
Christian Königa9f87f62017-03-30 14:03:59 +02002034 if (mapping->start == saddr)
Christian König7fc11952015-07-30 11:53:42 +02002035 break;
2036 }
2037
Christian König32b41ac2016-03-08 18:03:27 +01002038 if (&mapping->list == &bo_va->invalids)
Christian König7fc11952015-07-30 11:53:42 +02002039 return -ENOENT;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002040 }
Christian König32b41ac2016-03-08 18:03:27 +01002041
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002042 list_del(&mapping->list);
Christian Königa9f87f62017-03-30 14:03:59 +02002043 amdgpu_vm_it_remove(mapping, &vm->va);
Christian König93e3e432015-06-09 16:58:33 +02002044 trace_amdgpu_vm_bo_unmap(bo_va, mapping);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002045
Christian Könige17841b2016-03-08 17:52:01 +01002046 if (valid)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002047 list_add(&mapping->list, &vm->freed);
Christian Könige17841b2016-03-08 17:52:01 +01002048 else
Christian König284710f2017-01-30 11:09:31 +01002049 amdgpu_vm_free_mapping(adev, vm, mapping,
2050 bo_va->last_pt_update);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002051
2052 return 0;
2053}
2054
2055/**
Christian Königdc54d3d2017-03-13 10:13:38 +01002056 * amdgpu_vm_bo_clear_mappings - remove all mappings in a specific range
2057 *
2058 * @adev: amdgpu_device pointer
2059 * @vm: VM structure to use
2060 * @saddr: start of the range
2061 * @size: size of the range
2062 *
2063 * Remove all mappings in a range, split them as appropriate.
2064 * Returns 0 for success, error for failure.
2065 */
2066int amdgpu_vm_bo_clear_mappings(struct amdgpu_device *adev,
2067 struct amdgpu_vm *vm,
2068 uint64_t saddr, uint64_t size)
2069{
2070 struct amdgpu_bo_va_mapping *before, *after, *tmp, *next;
Christian Königdc54d3d2017-03-13 10:13:38 +01002071 LIST_HEAD(removed);
2072 uint64_t eaddr;
2073
2074 eaddr = saddr + size - 1;
2075 saddr /= AMDGPU_GPU_PAGE_SIZE;
2076 eaddr /= AMDGPU_GPU_PAGE_SIZE;
2077
2078 /* Allocate all the needed memory */
2079 before = kzalloc(sizeof(*before), GFP_KERNEL);
2080 if (!before)
2081 return -ENOMEM;
Junwei Zhang27f6d612017-03-16 16:09:24 +08002082 INIT_LIST_HEAD(&before->list);
Christian Königdc54d3d2017-03-13 10:13:38 +01002083
2084 after = kzalloc(sizeof(*after), GFP_KERNEL);
2085 if (!after) {
2086 kfree(before);
2087 return -ENOMEM;
2088 }
Junwei Zhang27f6d612017-03-16 16:09:24 +08002089 INIT_LIST_HEAD(&after->list);
Christian Königdc54d3d2017-03-13 10:13:38 +01002090
2091 /* Now gather all removed mappings */
Christian Königa9f87f62017-03-30 14:03:59 +02002092 tmp = amdgpu_vm_it_iter_first(&vm->va, saddr, eaddr);
2093 while (tmp) {
Christian Königdc54d3d2017-03-13 10:13:38 +01002094 /* Remember mapping split at the start */
Christian Königa9f87f62017-03-30 14:03:59 +02002095 if (tmp->start < saddr) {
2096 before->start = tmp->start;
2097 before->last = saddr - 1;
Christian Königdc54d3d2017-03-13 10:13:38 +01002098 before->offset = tmp->offset;
2099 before->flags = tmp->flags;
2100 list_add(&before->list, &tmp->list);
2101 }
2102
2103 /* Remember mapping split at the end */
Christian Königa9f87f62017-03-30 14:03:59 +02002104 if (tmp->last > eaddr) {
2105 after->start = eaddr + 1;
2106 after->last = tmp->last;
Christian Königdc54d3d2017-03-13 10:13:38 +01002107 after->offset = tmp->offset;
Christian Königa9f87f62017-03-30 14:03:59 +02002108 after->offset += after->start - tmp->start;
Christian Königdc54d3d2017-03-13 10:13:38 +01002109 after->flags = tmp->flags;
2110 list_add(&after->list, &tmp->list);
2111 }
2112
2113 list_del(&tmp->list);
2114 list_add(&tmp->list, &removed);
Christian Königa9f87f62017-03-30 14:03:59 +02002115
2116 tmp = amdgpu_vm_it_iter_next(tmp, saddr, eaddr);
Christian Königdc54d3d2017-03-13 10:13:38 +01002117 }
2118
2119 /* And free them up */
2120 list_for_each_entry_safe(tmp, next, &removed, list) {
Christian Königa9f87f62017-03-30 14:03:59 +02002121 amdgpu_vm_it_remove(tmp, &vm->va);
Christian Königdc54d3d2017-03-13 10:13:38 +01002122 list_del(&tmp->list);
2123
Christian Königa9f87f62017-03-30 14:03:59 +02002124 if (tmp->start < saddr)
2125 tmp->start = saddr;
2126 if (tmp->last > eaddr)
2127 tmp->last = eaddr;
Christian Königdc54d3d2017-03-13 10:13:38 +01002128
2129 list_add(&tmp->list, &vm->freed);
2130 trace_amdgpu_vm_bo_unmap(NULL, tmp);
2131 }
2132
Junwei Zhang27f6d612017-03-16 16:09:24 +08002133 /* Insert partial mapping before the range */
2134 if (!list_empty(&before->list)) {
Christian Königa9f87f62017-03-30 14:03:59 +02002135 amdgpu_vm_it_insert(before, &vm->va);
Christian Königdc54d3d2017-03-13 10:13:38 +01002136 if (before->flags & AMDGPU_PTE_PRT)
2137 amdgpu_vm_prt_get(adev);
2138 } else {
2139 kfree(before);
2140 }
2141
2142 /* Insert partial mapping after the range */
Junwei Zhang27f6d612017-03-16 16:09:24 +08002143 if (!list_empty(&after->list)) {
Christian Königa9f87f62017-03-30 14:03:59 +02002144 amdgpu_vm_it_insert(after, &vm->va);
Christian Königdc54d3d2017-03-13 10:13:38 +01002145 if (after->flags & AMDGPU_PTE_PRT)
2146 amdgpu_vm_prt_get(adev);
2147 } else {
2148 kfree(after);
2149 }
2150
2151 return 0;
2152}
2153
2154/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002155 * amdgpu_vm_bo_rmv - remove a bo to a specific vm
2156 *
2157 * @adev: amdgpu_device pointer
2158 * @bo_va: requested bo_va
2159 *
Christian König8843dbb2016-01-26 12:17:11 +01002160 * Remove @bo_va->bo from the requested vm.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002161 *
2162 * Object have to be reserved!
2163 */
2164void amdgpu_vm_bo_rmv(struct amdgpu_device *adev,
2165 struct amdgpu_bo_va *bo_va)
2166{
2167 struct amdgpu_bo_va_mapping *mapping, *next;
2168 struct amdgpu_vm *vm = bo_va->vm;
2169
2170 list_del(&bo_va->bo_list);
2171
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002172 spin_lock(&vm->status_lock);
2173 list_del(&bo_va->vm_status);
2174 spin_unlock(&vm->status_lock);
2175
Christian König7fc11952015-07-30 11:53:42 +02002176 list_for_each_entry_safe(mapping, next, &bo_va->valids, list) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002177 list_del(&mapping->list);
Christian Königa9f87f62017-03-30 14:03:59 +02002178 amdgpu_vm_it_remove(mapping, &vm->va);
Christian König93e3e432015-06-09 16:58:33 +02002179 trace_amdgpu_vm_bo_unmap(bo_va, mapping);
Christian König7fc11952015-07-30 11:53:42 +02002180 list_add(&mapping->list, &vm->freed);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002181 }
Christian König7fc11952015-07-30 11:53:42 +02002182 list_for_each_entry_safe(mapping, next, &bo_va->invalids, list) {
2183 list_del(&mapping->list);
Christian Königa9f87f62017-03-30 14:03:59 +02002184 amdgpu_vm_it_remove(mapping, &vm->va);
Christian König284710f2017-01-30 11:09:31 +01002185 amdgpu_vm_free_mapping(adev, vm, mapping,
2186 bo_va->last_pt_update);
Christian König7fc11952015-07-30 11:53:42 +02002187 }
Christian König32b41ac2016-03-08 18:03:27 +01002188
Chris Wilsonf54d1862016-10-25 13:00:45 +01002189 dma_fence_put(bo_va->last_pt_update);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002190 kfree(bo_va);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002191}
2192
2193/**
2194 * amdgpu_vm_bo_invalidate - mark the bo as invalid
2195 *
2196 * @adev: amdgpu_device pointer
2197 * @vm: requested vm
2198 * @bo: amdgpu buffer object
2199 *
Christian König8843dbb2016-01-26 12:17:11 +01002200 * Mark @bo as invalid.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002201 */
2202void amdgpu_vm_bo_invalidate(struct amdgpu_device *adev,
2203 struct amdgpu_bo *bo)
2204{
2205 struct amdgpu_bo_va *bo_va;
2206
2207 list_for_each_entry(bo_va, &bo->va, bo_list) {
Christian König7fc11952015-07-30 11:53:42 +02002208 spin_lock(&bo_va->vm->status_lock);
2209 if (list_empty(&bo_va->vm_status))
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002210 list_add(&bo_va->vm_status, &bo_va->vm->invalidated);
Christian König7fc11952015-07-30 11:53:42 +02002211 spin_unlock(&bo_va->vm->status_lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002212 }
2213}
2214
Junwei Zhangbab4fee2017-04-05 13:54:56 +08002215static uint32_t amdgpu_vm_get_block_size(uint64_t vm_size)
2216{
2217 /* Total bits covered by PD + PTs */
2218 unsigned bits = ilog2(vm_size) + 18;
2219
2220 /* Make sure the PD is 4K in size up to 8GB address space.
2221 Above that split equal between PD and PTs */
2222 if (vm_size <= 8)
2223 return (bits - 9);
2224 else
2225 return ((bits + 3) / 2);
2226}
2227
2228/**
2229 * amdgpu_vm_adjust_size - adjust vm size and block size
2230 *
2231 * @adev: amdgpu_device pointer
2232 * @vm_size: the default vm size if it's set auto
2233 */
2234void amdgpu_vm_adjust_size(struct amdgpu_device *adev, uint64_t vm_size)
2235{
2236 /* adjust vm size firstly */
2237 if (amdgpu_vm_size == -1)
2238 adev->vm_manager.vm_size = vm_size;
2239 else
2240 adev->vm_manager.vm_size = amdgpu_vm_size;
2241
2242 /* block size depends on vm size */
2243 if (amdgpu_vm_block_size == -1)
2244 adev->vm_manager.block_size =
2245 amdgpu_vm_get_block_size(adev->vm_manager.vm_size);
2246 else
2247 adev->vm_manager.block_size = amdgpu_vm_block_size;
2248
2249 DRM_INFO("vm size is %llu GB, block size is %u-bit\n",
2250 adev->vm_manager.vm_size, adev->vm_manager.block_size);
2251}
2252
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002253/**
2254 * amdgpu_vm_init - initialize a vm instance
2255 *
2256 * @adev: amdgpu_device pointer
2257 * @vm: requested vm
2258 *
Christian König8843dbb2016-01-26 12:17:11 +01002259 * Init @vm fields.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002260 */
2261int amdgpu_vm_init(struct amdgpu_device *adev, struct amdgpu_vm *vm)
2262{
2263 const unsigned align = min(AMDGPU_VM_PTB_ALIGN_SIZE,
Zhang, Jerry36b32a62017-03-29 16:08:32 +08002264 AMDGPU_VM_PTE_COUNT(adev) * 8);
Christian König2d55e452016-02-08 17:37:38 +01002265 unsigned ring_instance;
2266 struct amdgpu_ring *ring;
Christian König2bd9ccf2016-02-01 12:53:58 +01002267 struct amd_sched_rq *rq;
Chunming Zhou36bbf3b2017-04-20 16:17:34 +08002268 int r, i;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002269
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002270 vm->va = RB_ROOT;
Chunming Zhou031e2982016-04-25 10:19:13 +08002271 vm->client_id = atomic64_inc_return(&adev->vm_manager.client_counter);
Chunming Zhou36bbf3b2017-04-20 16:17:34 +08002272 for (i = 0; i < AMDGPU_MAX_VMHUBS; i++)
2273 vm->reserved_vmid[i] = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002274 spin_lock_init(&vm->status_lock);
2275 INIT_LIST_HEAD(&vm->invalidated);
Christian König7fc11952015-07-30 11:53:42 +02002276 INIT_LIST_HEAD(&vm->cleared);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002277 INIT_LIST_HEAD(&vm->freed);
Christian König20250212016-03-08 17:58:35 +01002278
Christian König2bd9ccf2016-02-01 12:53:58 +01002279 /* create scheduler entity for page table updates */
Christian König2d55e452016-02-08 17:37:38 +01002280
2281 ring_instance = atomic_inc_return(&adev->vm_manager.vm_pte_next_ring);
2282 ring_instance %= adev->vm_manager.vm_pte_num_rings;
2283 ring = adev->vm_manager.vm_pte_rings[ring_instance];
Christian König2bd9ccf2016-02-01 12:53:58 +01002284 rq = &ring->sched.sched_rq[AMD_SCHED_PRIORITY_KERNEL];
2285 r = amd_sched_entity_init(&ring->sched, &vm->entity,
2286 rq, amdgpu_sched_jobs);
2287 if (r)
Christian Königf566ceb2016-10-27 20:04:38 +02002288 return r;
Christian König2bd9ccf2016-02-01 12:53:58 +01002289
Christian Königa24960f2016-10-12 13:20:52 +02002290 vm->last_dir_update = NULL;
Bas Nieuwenhuizen05906de2015-08-14 20:08:40 +02002291
Christian Königf566ceb2016-10-27 20:04:38 +02002292 r = amdgpu_bo_create(adev, amdgpu_vm_bo_size(adev, 0), align, true,
Alex Deucher857d9132015-08-27 00:14:16 -04002293 AMDGPU_GEM_DOMAIN_VRAM,
Chunming Zhou1baa4392016-08-04 13:59:32 +08002294 AMDGPU_GEM_CREATE_NO_CPU_ACCESS |
Christian König03f48dd2016-08-15 17:00:22 +02002295 AMDGPU_GEM_CREATE_SHADOW |
Christian König617859e2016-11-17 15:40:02 +01002296 AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS |
2297 AMDGPU_GEM_CREATE_VRAM_CLEARED,
Christian König67003a12016-10-12 14:46:26 +02002298 NULL, NULL, &vm->root.bo);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002299 if (r)
Christian König2bd9ccf2016-02-01 12:53:58 +01002300 goto error_free_sched_entity;
2301
Christian König67003a12016-10-12 14:46:26 +02002302 r = amdgpu_bo_reserve(vm->root.bo, false);
Christian König2bd9ccf2016-02-01 12:53:58 +01002303 if (r)
Christian König67003a12016-10-12 14:46:26 +02002304 goto error_free_root;
Christian König2bd9ccf2016-02-01 12:53:58 +01002305
Christian König5a712a82016-06-21 16:28:15 +02002306 vm->last_eviction_counter = atomic64_read(&adev->num_evictions);
Christian König67003a12016-10-12 14:46:26 +02002307 amdgpu_bo_unreserve(vm->root.bo);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002308
2309 return 0;
Christian König2bd9ccf2016-02-01 12:53:58 +01002310
Christian König67003a12016-10-12 14:46:26 +02002311error_free_root:
2312 amdgpu_bo_unref(&vm->root.bo->shadow);
2313 amdgpu_bo_unref(&vm->root.bo);
2314 vm->root.bo = NULL;
Christian König2bd9ccf2016-02-01 12:53:58 +01002315
2316error_free_sched_entity:
2317 amd_sched_entity_fini(&ring->sched, &vm->entity);
2318
2319 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002320}
2321
2322/**
Christian Königf566ceb2016-10-27 20:04:38 +02002323 * amdgpu_vm_free_levels - free PD/PT levels
2324 *
2325 * @level: PD/PT starting level to free
2326 *
2327 * Free the page directory or page table level and all sub levels.
2328 */
2329static void amdgpu_vm_free_levels(struct amdgpu_vm_pt *level)
2330{
2331 unsigned i;
2332
2333 if (level->bo) {
2334 amdgpu_bo_unref(&level->bo->shadow);
2335 amdgpu_bo_unref(&level->bo);
2336 }
2337
2338 if (level->entries)
2339 for (i = 0; i <= level->last_entry_used; i++)
2340 amdgpu_vm_free_levels(&level->entries[i]);
2341
2342 drm_free_large(level->entries);
2343}
2344
2345/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002346 * amdgpu_vm_fini - tear down a vm instance
2347 *
2348 * @adev: amdgpu_device pointer
2349 * @vm: requested vm
2350 *
Christian König8843dbb2016-01-26 12:17:11 +01002351 * Tear down @vm.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002352 * Unbind the VM and remove all bos from the vm bo list
2353 */
2354void amdgpu_vm_fini(struct amdgpu_device *adev, struct amdgpu_vm *vm)
2355{
2356 struct amdgpu_bo_va_mapping *mapping, *tmp;
Christian König4388fc22017-03-13 10:13:36 +01002357 bool prt_fini_needed = !!adev->gart.gart_funcs->set_prt;
Chunming Zhou36bbf3b2017-04-20 16:17:34 +08002358 int i;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002359
Christian König2d55e452016-02-08 17:37:38 +01002360 amd_sched_entity_fini(vm->entity.sched, &vm->entity);
Christian König2bd9ccf2016-02-01 12:53:58 +01002361
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002362 if (!RB_EMPTY_ROOT(&vm->va)) {
2363 dev_err(adev->dev, "still active bo inside vm\n");
2364 }
Christian Königa9f87f62017-03-30 14:03:59 +02002365 rbtree_postorder_for_each_entry_safe(mapping, tmp, &vm->va, rb) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002366 list_del(&mapping->list);
Christian Königa9f87f62017-03-30 14:03:59 +02002367 amdgpu_vm_it_remove(mapping, &vm->va);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002368 kfree(mapping);
2369 }
2370 list_for_each_entry_safe(mapping, tmp, &vm->freed, list) {
Christian König4388fc22017-03-13 10:13:36 +01002371 if (mapping->flags & AMDGPU_PTE_PRT && prt_fini_needed) {
Christian König451bc8e2017-02-14 16:02:52 +01002372 amdgpu_vm_prt_fini(adev, vm);
Christian König4388fc22017-03-13 10:13:36 +01002373 prt_fini_needed = false;
Christian König451bc8e2017-02-14 16:02:52 +01002374 }
Christian König284710f2017-01-30 11:09:31 +01002375
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002376 list_del(&mapping->list);
Christian König451bc8e2017-02-14 16:02:52 +01002377 amdgpu_vm_free_mapping(adev, vm, mapping, NULL);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002378 }
2379
Christian Königf566ceb2016-10-27 20:04:38 +02002380 amdgpu_vm_free_levels(&vm->root);
Christian Königa24960f2016-10-12 13:20:52 +02002381 dma_fence_put(vm->last_dir_update);
Chunming Zhou1e9ef262017-04-20 16:18:48 +08002382 for (i = 0; i < AMDGPU_MAX_VMHUBS; i++)
2383 amdgpu_vm_free_reserved_vmid(adev, vm, i);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002384}
Christian Königea89f8c2015-11-15 20:52:06 +01002385
2386/**
Christian Königa9a78b32016-01-21 10:19:11 +01002387 * amdgpu_vm_manager_init - init the VM manager
2388 *
2389 * @adev: amdgpu_device pointer
2390 *
2391 * Initialize the VM manager structures
2392 */
2393void amdgpu_vm_manager_init(struct amdgpu_device *adev)
2394{
Christian König76456702017-04-06 17:52:39 +02002395 unsigned i, j;
Christian Königa9a78b32016-01-21 10:19:11 +01002396
Christian König76456702017-04-06 17:52:39 +02002397 for (i = 0; i < AMDGPU_MAX_VMHUBS; ++i) {
2398 struct amdgpu_vm_id_manager *id_mgr =
2399 &adev->vm_manager.id_mgr[i];
Christian Königa9a78b32016-01-21 10:19:11 +01002400
Christian König76456702017-04-06 17:52:39 +02002401 mutex_init(&id_mgr->lock);
2402 INIT_LIST_HEAD(&id_mgr->ids_lru);
Chunming Zhouc3505772017-04-21 15:51:04 +08002403 atomic_set(&id_mgr->reserved_vmid_num, 0);
Christian König76456702017-04-06 17:52:39 +02002404
2405 /* skip over VMID 0, since it is the system VM */
2406 for (j = 1; j < id_mgr->num_ids; ++j) {
2407 amdgpu_vm_reset_id(adev, i, j);
2408 amdgpu_sync_create(&id_mgr->ids[i].active);
2409 list_add_tail(&id_mgr->ids[j].list, &id_mgr->ids_lru);
2410 }
Christian König971fe9a92016-03-01 15:09:25 +01002411 }
Christian König2d55e452016-02-08 17:37:38 +01002412
Chris Wilsonf54d1862016-10-25 13:00:45 +01002413 adev->vm_manager.fence_context =
2414 dma_fence_context_alloc(AMDGPU_MAX_RINGS);
Christian König1fbb2e92016-06-01 10:47:36 +02002415 for (i = 0; i < AMDGPU_MAX_RINGS; ++i)
2416 adev->vm_manager.seqno[i] = 0;
2417
Christian König2d55e452016-02-08 17:37:38 +01002418 atomic_set(&adev->vm_manager.vm_pte_next_ring, 0);
Christian Königb1c8a812016-05-04 10:34:03 +02002419 atomic64_set(&adev->vm_manager.client_counter, 0);
Christian König284710f2017-01-30 11:09:31 +01002420 spin_lock_init(&adev->vm_manager.prt_lock);
Christian König451bc8e2017-02-14 16:02:52 +01002421 atomic_set(&adev->vm_manager.num_prt_users, 0);
Christian Königa9a78b32016-01-21 10:19:11 +01002422}
2423
2424/**
Christian Königea89f8c2015-11-15 20:52:06 +01002425 * amdgpu_vm_manager_fini - cleanup VM manager
2426 *
2427 * @adev: amdgpu_device pointer
2428 *
2429 * Cleanup the VM manager and free resources.
2430 */
2431void amdgpu_vm_manager_fini(struct amdgpu_device *adev)
2432{
Christian König76456702017-04-06 17:52:39 +02002433 unsigned i, j;
Christian Königea89f8c2015-11-15 20:52:06 +01002434
Christian König76456702017-04-06 17:52:39 +02002435 for (i = 0; i < AMDGPU_MAX_VMHUBS; ++i) {
2436 struct amdgpu_vm_id_manager *id_mgr =
2437 &adev->vm_manager.id_mgr[i];
Christian Königbcb1ba32016-03-08 15:40:11 +01002438
Christian König76456702017-04-06 17:52:39 +02002439 mutex_destroy(&id_mgr->lock);
2440 for (j = 0; j < AMDGPU_NUM_VM; ++j) {
2441 struct amdgpu_vm_id *id = &id_mgr->ids[j];
2442
2443 amdgpu_sync_free(&id->active);
2444 dma_fence_put(id->flushed_updates);
2445 dma_fence_put(id->last_flush);
2446 }
Christian Königbcb1ba32016-03-08 15:40:11 +01002447 }
Christian Königea89f8c2015-11-15 20:52:06 +01002448}
Chunming Zhoucfbcacf2017-04-24 11:09:04 +08002449
2450int amdgpu_vm_ioctl(struct drm_device *dev, void *data, struct drm_file *filp)
2451{
2452 union drm_amdgpu_vm *args = data;
Chunming Zhou1e9ef262017-04-20 16:18:48 +08002453 struct amdgpu_device *adev = dev->dev_private;
2454 struct amdgpu_fpriv *fpriv = filp->driver_priv;
2455 int r;
Chunming Zhoucfbcacf2017-04-24 11:09:04 +08002456
2457 switch (args->in.op) {
2458 case AMDGPU_VM_OP_RESERVE_VMID:
Chunming Zhou1e9ef262017-04-20 16:18:48 +08002459 /* current, we only have requirement to reserve vmid from gfxhub */
2460 r = amdgpu_vm_alloc_reserved_vmid(adev, &fpriv->vm,
2461 AMDGPU_GFXHUB);
2462 if (r)
2463 return r;
2464 break;
Chunming Zhoucfbcacf2017-04-24 11:09:04 +08002465 case AMDGPU_VM_OP_UNRESERVE_VMID:
Chunming Zhou1e9ef262017-04-20 16:18:48 +08002466 amdgpu_vm_free_reserved_vmid(adev, &fpriv->vm, AMDGPU_GFXHUB);
Chunming Zhoucfbcacf2017-04-24 11:09:04 +08002467 break;
2468 default:
2469 return -EINVAL;
2470 }
2471
2472 return 0;
2473}