blob: 3d2ad3ae04bc6da4cf92622c4604ad4d51c0ae3b [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;
Chunming Zhou7a63eb22017-04-21 11:13:56 +0800447 atomic64_set(&id->owner, vm->client_id);
448 job->vm_needs_flush = needs_flush;
449 if (needs_flush) {
450 dma_fence_put(id->last_flush);
451 id->last_flush = NULL;
452 }
453 job->vm_id = id - id_mgr->ids;
454 trace_amdgpu_vm_grab_id(vm, ring, job);
455out:
456 return r;
457}
458
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400459/**
460 * amdgpu_vm_grab_id - allocate the next free VMID
461 *
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400462 * @vm: vm to allocate id for
Christian König7f8a5292015-07-20 16:09:40 +0200463 * @ring: ring we want to submit job to
464 * @sync: sync object where we add dependencies
Christian König94dd0a42016-01-18 17:01:42 +0100465 * @fence: fence protecting ID from reuse
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400466 *
Christian König7f8a5292015-07-20 16:09:40 +0200467 * Allocate an id for the vm, adding fences to the sync obj as necessary.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400468 */
Christian König7f8a5292015-07-20 16:09:40 +0200469int amdgpu_vm_grab_id(struct amdgpu_vm *vm, struct amdgpu_ring *ring,
Chris Wilsonf54d1862016-10-25 13:00:45 +0100470 struct amdgpu_sync *sync, struct dma_fence *fence,
Chunming Zhoufd53be32016-07-01 17:59:01 +0800471 struct amdgpu_job *job)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400472{
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400473 struct amdgpu_device *adev = ring->adev;
Christian König2e819842017-03-30 16:50:47 +0200474 unsigned vmhub = ring->funcs->vmhub;
Christian König76456702017-04-06 17:52:39 +0200475 struct amdgpu_vm_id_manager *id_mgr = &adev->vm_manager.id_mgr[vmhub];
Christian König090b7672016-07-08 10:21:02 +0200476 uint64_t fence_context = adev->fence_context + ring->idx;
Chris Wilsonf54d1862016-10-25 13:00:45 +0100477 struct dma_fence *updates = sync->last_vm_update;
Christian König8d76001e2016-05-23 16:00:32 +0200478 struct amdgpu_vm_id *id, *idle;
Chris Wilsonf54d1862016-10-25 13:00:45 +0100479 struct dma_fence **fences;
Christian König1fbb2e92016-06-01 10:47:36 +0200480 unsigned i;
481 int r = 0;
482
Christian König76456702017-04-06 17:52:39 +0200483 mutex_lock(&id_mgr->lock);
Chunming Zhou7a63eb22017-04-21 11:13:56 +0800484 if (amdgpu_vm_reserved_vmid_ready(vm, vmhub)) {
485 r = amdgpu_vm_grab_reserved_vmid_locked(vm, ring, sync, fence, job);
486 mutex_unlock(&id_mgr->lock);
487 return r;
488 }
489 fences = kmalloc_array(sizeof(void *), id_mgr->num_ids, GFP_KERNEL);
490 if (!fences) {
491 mutex_unlock(&id_mgr->lock);
492 return -ENOMEM;
493 }
Christian König36fd7c52016-05-23 15:30:08 +0200494 /* Check if we have an idle VMID */
Christian König1fbb2e92016-06-01 10:47:36 +0200495 i = 0;
Christian König76456702017-04-06 17:52:39 +0200496 list_for_each_entry(idle, &id_mgr->ids_lru, list) {
Christian König1fbb2e92016-06-01 10:47:36 +0200497 fences[i] = amdgpu_sync_peek_fence(&idle->active, ring);
498 if (!fences[i])
Christian König36fd7c52016-05-23 15:30:08 +0200499 break;
Christian König1fbb2e92016-06-01 10:47:36 +0200500 ++i;
Christian König36fd7c52016-05-23 15:30:08 +0200501 }
Christian Königbcb1ba32016-03-08 15:40:11 +0100502
Christian König1fbb2e92016-06-01 10:47:36 +0200503 /* If we can't find a idle VMID to use, wait till one becomes available */
Christian König76456702017-04-06 17:52:39 +0200504 if (&idle->list == &id_mgr->ids_lru) {
Christian König1fbb2e92016-06-01 10:47:36 +0200505 u64 fence_context = adev->vm_manager.fence_context + ring->idx;
506 unsigned seqno = ++adev->vm_manager.seqno[ring->idx];
Chris Wilsonf54d1862016-10-25 13:00:45 +0100507 struct dma_fence_array *array;
Christian König1fbb2e92016-06-01 10:47:36 +0200508 unsigned j;
Christian König8d76001e2016-05-23 16:00:32 +0200509
Christian König1fbb2e92016-06-01 10:47:36 +0200510 for (j = 0; j < i; ++j)
Chris Wilsonf54d1862016-10-25 13:00:45 +0100511 dma_fence_get(fences[j]);
Christian König8d76001e2016-05-23 16:00:32 +0200512
Chris Wilsonf54d1862016-10-25 13:00:45 +0100513 array = dma_fence_array_create(i, fences, fence_context,
Christian König1fbb2e92016-06-01 10:47:36 +0200514 seqno, true);
515 if (!array) {
516 for (j = 0; j < i; ++j)
Chris Wilsonf54d1862016-10-25 13:00:45 +0100517 dma_fence_put(fences[j]);
Christian König1fbb2e92016-06-01 10:47:36 +0200518 kfree(fences);
519 r = -ENOMEM;
520 goto error;
521 }
Christian König8d76001e2016-05-23 16:00:32 +0200522
Christian König8d76001e2016-05-23 16:00:32 +0200523
Christian König1fbb2e92016-06-01 10:47:36 +0200524 r = amdgpu_sync_fence(ring->adev, sync, &array->base);
Chris Wilsonf54d1862016-10-25 13:00:45 +0100525 dma_fence_put(&array->base);
Christian König1fbb2e92016-06-01 10:47:36 +0200526 if (r)
527 goto error;
Christian König8d76001e2016-05-23 16:00:32 +0200528
Christian König76456702017-04-06 17:52:39 +0200529 mutex_unlock(&id_mgr->lock);
Christian König1fbb2e92016-06-01 10:47:36 +0200530 return 0;
Christian König8d76001e2016-05-23 16:00:32 +0200531
Christian König1fbb2e92016-06-01 10:47:36 +0200532 }
533 kfree(fences);
Christian König8d76001e2016-05-23 16:00:32 +0200534
Christian König87c910d2017-03-30 16:56:20 +0200535 job->vm_needs_flush = false;
Christian König1fbb2e92016-06-01 10:47:36 +0200536 /* Check if we can use a VMID already assigned to this VM */
Christian König76456702017-04-06 17:52:39 +0200537 list_for_each_entry_reverse(id, &id_mgr->ids_lru, list) {
Chris Wilsonf54d1862016-10-25 13:00:45 +0100538 struct dma_fence *flushed;
Christian König87c910d2017-03-30 16:56:20 +0200539 bool needs_flush = false;
Christian König8d76001e2016-05-23 16:00:32 +0200540
Christian König1fbb2e92016-06-01 10:47:36 +0200541 /* Check all the prerequisites to using this VMID */
Christian König641e9402017-04-03 13:59:25 +0200542 if (amdgpu_vm_had_gpu_reset(adev, id))
Chunming Zhou6adb0512016-06-27 17:06:01 +0800543 continue;
Christian König1fbb2e92016-06-01 10:47:36 +0200544
545 if (atomic64_read(&id->owner) != vm->client_id)
546 continue;
547
Chunming Zhoufd53be32016-07-01 17:59:01 +0800548 if (job->vm_pd_addr != id->pd_gpu_addr)
Christian König1fbb2e92016-06-01 10:47:36 +0200549 continue;
550
Christian König87c910d2017-03-30 16:56:20 +0200551 if (!id->last_flush ||
552 (id->last_flush->context != fence_context &&
553 !dma_fence_is_signaled(id->last_flush)))
554 needs_flush = true;
Christian König1fbb2e92016-06-01 10:47:36 +0200555
556 flushed = id->flushed_updates;
Christian König87c910d2017-03-30 16:56:20 +0200557 if (updates && (!flushed || dma_fence_is_later(updates, flushed)))
558 needs_flush = true;
559
560 /* Concurrent flushes are only possible starting with Vega10 */
561 if (adev->asic_type < CHIP_VEGA10 && needs_flush)
Christian König1fbb2e92016-06-01 10:47:36 +0200562 continue;
563
Christian König3dab83b2016-06-01 13:31:17 +0200564 /* Good we can use this VMID. Remember this submission as
565 * user of the VMID.
566 */
Christian König1fbb2e92016-06-01 10:47:36 +0200567 r = amdgpu_sync_fence(ring->adev, &id->active, fence);
568 if (r)
569 goto error;
Christian König8d76001e2016-05-23 16:00:32 +0200570
Christian König87c910d2017-03-30 16:56:20 +0200571 if (updates && (!flushed || dma_fence_is_later(updates, flushed))) {
572 dma_fence_put(id->flushed_updates);
573 id->flushed_updates = dma_fence_get(updates);
574 }
Christian König8d76001e2016-05-23 16:00:32 +0200575
Christian König87c910d2017-03-30 16:56:20 +0200576 if (needs_flush)
577 goto needs_flush;
578 else
579 goto no_flush_needed;
Christian König8d76001e2016-05-23 16:00:32 +0200580
Christian König4f618e72017-04-06 15:18:21 +0200581 };
Chunming Zhou8e9fbeb2016-03-17 11:41:37 +0800582
Christian König1fbb2e92016-06-01 10:47:36 +0200583 /* Still no ID to use? Then use the idle one found earlier */
584 id = idle;
585
586 /* Remember this submission as user of the VMID */
587 r = amdgpu_sync_fence(ring->adev, &id->active, fence);
Christian König832a9022016-02-15 12:33:02 +0100588 if (r)
589 goto error;
Christian König4ff37a82016-02-26 16:18:26 +0100590
Christian König87c910d2017-03-30 16:56:20 +0200591 id->pd_gpu_addr = job->vm_pd_addr;
592 dma_fence_put(id->flushed_updates);
593 id->flushed_updates = dma_fence_get(updates);
Christian König87c910d2017-03-30 16:56:20 +0200594 atomic64_set(&id->owner, vm->client_id);
595
596needs_flush:
597 job->vm_needs_flush = true;
Chris Wilsonf54d1862016-10-25 13:00:45 +0100598 dma_fence_put(id->last_flush);
Christian König41d9eb22016-03-01 16:46:18 +0100599 id->last_flush = NULL;
600
Christian König87c910d2017-03-30 16:56:20 +0200601no_flush_needed:
Christian König76456702017-04-06 17:52:39 +0200602 list_move_tail(&id->list, &id_mgr->ids_lru);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400603
Christian König76456702017-04-06 17:52:39 +0200604 job->vm_id = id - id_mgr->ids;
Christian Königc5296d12017-04-07 15:31:13 +0200605 trace_amdgpu_vm_grab_id(vm, ring, job);
Christian König832a9022016-02-15 12:33:02 +0100606
607error:
Christian König76456702017-04-06 17:52:39 +0200608 mutex_unlock(&id_mgr->lock);
Christian Königa9a78b32016-01-21 10:19:11 +0100609 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400610}
611
Chunming Zhou1e9ef262017-04-20 16:18:48 +0800612static void amdgpu_vm_free_reserved_vmid(struct amdgpu_device *adev,
613 struct amdgpu_vm *vm,
614 unsigned vmhub)
615{
616 struct amdgpu_vm_id_manager *id_mgr = &adev->vm_manager.id_mgr[vmhub];
617
618 mutex_lock(&id_mgr->lock);
619 if (vm->reserved_vmid[vmhub]) {
620 list_add(&vm->reserved_vmid[vmhub]->list,
621 &id_mgr->ids_lru);
622 vm->reserved_vmid[vmhub] = NULL;
Chunming Zhouc3505772017-04-21 15:51:04 +0800623 atomic_dec(&id_mgr->reserved_vmid_num);
Chunming Zhou1e9ef262017-04-20 16:18:48 +0800624 }
625 mutex_unlock(&id_mgr->lock);
626}
627
628static int amdgpu_vm_alloc_reserved_vmid(struct amdgpu_device *adev,
629 struct amdgpu_vm *vm,
630 unsigned vmhub)
631{
632 struct amdgpu_vm_id_manager *id_mgr;
633 struct amdgpu_vm_id *idle;
634 int r = 0;
635
636 id_mgr = &adev->vm_manager.id_mgr[vmhub];
637 mutex_lock(&id_mgr->lock);
638 if (vm->reserved_vmid[vmhub])
639 goto unlock;
Chunming Zhouc3505772017-04-21 15:51:04 +0800640 if (atomic_inc_return(&id_mgr->reserved_vmid_num) >
641 AMDGPU_VM_MAX_RESERVED_VMID) {
642 DRM_ERROR("Over limitation of reserved vmid\n");
643 atomic_dec(&id_mgr->reserved_vmid_num);
644 r = -EINVAL;
645 goto unlock;
646 }
Chunming Zhou1e9ef262017-04-20 16:18:48 +0800647 /* Select the first entry VMID */
648 idle = list_first_entry(&id_mgr->ids_lru, struct amdgpu_vm_id, list);
649 list_del_init(&idle->list);
650 vm->reserved_vmid[vmhub] = idle;
651 mutex_unlock(&id_mgr->lock);
652
653 return 0;
654unlock:
655 mutex_unlock(&id_mgr->lock);
656 return r;
657}
658
Chunming Zhoub9bf33d2017-05-11 14:52:48 -0400659bool amdgpu_vm_need_pipeline_sync(struct amdgpu_ring *ring,
660 struct amdgpu_job *job)
661{
662 struct amdgpu_device *adev = ring->adev;
663 unsigned vmhub = ring->funcs->vmhub;
664 struct amdgpu_vm_id_manager *id_mgr = &adev->vm_manager.id_mgr[vmhub];
665 struct amdgpu_vm_id *id;
666 bool gds_switch_needed;
667 bool vm_flush_needed = job->vm_needs_flush ||
Alex Xiedd684d32017-05-30 17:10:16 -0400668 amdgpu_ring_has_compute_vm_bug(ring);
Chunming Zhoub9bf33d2017-05-11 14:52:48 -0400669
670 if (job->vm_id == 0)
671 return false;
672 id = &id_mgr->ids[job->vm_id];
673 gds_switch_needed = ring->funcs->emit_gds_switch && (
674 id->gds_base != job->gds_base ||
675 id->gds_size != job->gds_size ||
676 id->gws_base != job->gws_base ||
677 id->gws_size != job->gws_size ||
678 id->oa_base != job->oa_base ||
679 id->oa_size != job->oa_size);
680
681 if (amdgpu_vm_had_gpu_reset(adev, id))
682 return true;
Alex Xiebb37b672017-05-30 23:50:10 -0400683
684 return vm_flush_needed || gds_switch_needed;
Chunming Zhoub9bf33d2017-05-11 14:52:48 -0400685}
686
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400687/**
688 * amdgpu_vm_flush - hardware flush the vm
689 *
690 * @ring: ring to use for flush
Christian Königcffadc82016-03-01 13:34:49 +0100691 * @vm_id: vmid number to use
Christian König4ff37a82016-02-26 16:18:26 +0100692 * @pd_addr: address of the page directory
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400693 *
Christian König4ff37a82016-02-26 16:18:26 +0100694 * Emit a VM flush when it is necessary.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400695 */
Chunming Zhoufd53be32016-07-01 17:59:01 +0800696int amdgpu_vm_flush(struct amdgpu_ring *ring, struct amdgpu_job *job)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400697{
Christian König971fe9a92016-03-01 15:09:25 +0100698 struct amdgpu_device *adev = ring->adev;
Christian König76456702017-04-06 17:52:39 +0200699 unsigned vmhub = ring->funcs->vmhub;
700 struct amdgpu_vm_id_manager *id_mgr = &adev->vm_manager.id_mgr[vmhub];
701 struct amdgpu_vm_id *id = &id_mgr->ids[job->vm_id];
Christian Königd564a062016-03-01 15:51:53 +0100702 bool gds_switch_needed = ring->funcs->emit_gds_switch && (
Chunming Zhoufd53be32016-07-01 17:59:01 +0800703 id->gds_base != job->gds_base ||
704 id->gds_size != job->gds_size ||
705 id->gws_base != job->gws_base ||
706 id->gws_size != job->gws_size ||
707 id->oa_base != job->oa_base ||
708 id->oa_size != job->oa_size);
Flora Cuide37e682017-05-18 13:56:22 +0800709 bool vm_flush_needed = job->vm_needs_flush;
Christian Königc0e51932017-04-03 14:16:07 +0200710 unsigned patch_offset = 0;
Christian König41d9eb22016-03-01 16:46:18 +0100711 int r;
Christian Königd564a062016-03-01 15:51:53 +0100712
Christian Königf7d015b2017-04-03 14:28:26 +0200713 if (amdgpu_vm_had_gpu_reset(adev, id)) {
714 gds_switch_needed = true;
715 vm_flush_needed = true;
716 }
Christian König971fe9a92016-03-01 15:09:25 +0100717
Christian Königf7d015b2017-04-03 14:28:26 +0200718 if (!vm_flush_needed && !gds_switch_needed)
719 return 0;
Christian König41d9eb22016-03-01 16:46:18 +0100720
Christian Königc0e51932017-04-03 14:16:07 +0200721 if (ring->funcs->init_cond_exec)
722 patch_offset = amdgpu_ring_init_cond_exec(ring);
Christian König41d9eb22016-03-01 16:46:18 +0100723
Christian Königf7d015b2017-04-03 14:28:26 +0200724 if (ring->funcs->emit_vm_flush && vm_flush_needed) {
Christian Königc0e51932017-04-03 14:16:07 +0200725 struct dma_fence *fence;
Monk Liue9d672b2017-03-15 12:18:57 +0800726
Christian König9a94f5a2017-05-12 14:46:23 +0200727 trace_amdgpu_vm_flush(ring, job->vm_id, job->vm_pd_addr);
728 amdgpu_ring_emit_vm_flush(ring, job->vm_id, job->vm_pd_addr);
Monk Liue9d672b2017-03-15 12:18:57 +0800729
Christian Königc0e51932017-04-03 14:16:07 +0200730 r = amdgpu_fence_emit(ring, &fence);
731 if (r)
732 return r;
Monk Liue9d672b2017-03-15 12:18:57 +0800733
Christian König76456702017-04-06 17:52:39 +0200734 mutex_lock(&id_mgr->lock);
Christian Königc0e51932017-04-03 14:16:07 +0200735 dma_fence_put(id->last_flush);
736 id->last_flush = fence;
Chunming Zhoubea396722017-05-10 13:02:39 +0800737 id->current_gpu_reset_count = atomic_read(&adev->gpu_reset_counter);
Christian König76456702017-04-06 17:52:39 +0200738 mutex_unlock(&id_mgr->lock);
Christian Königc0e51932017-04-03 14:16:07 +0200739 }
Monk Liue9d672b2017-03-15 12:18:57 +0800740
Chunming Zhouca7962d2017-05-11 18:22:17 +0800741 if (ring->funcs->emit_gds_switch && gds_switch_needed) {
Christian Königc0e51932017-04-03 14:16:07 +0200742 id->gds_base = job->gds_base;
743 id->gds_size = job->gds_size;
744 id->gws_base = job->gws_base;
745 id->gws_size = job->gws_size;
746 id->oa_base = job->oa_base;
747 id->oa_size = job->oa_size;
748 amdgpu_ring_emit_gds_switch(ring, job->vm_id, job->gds_base,
749 job->gds_size, job->gws_base,
750 job->gws_size, job->oa_base,
751 job->oa_size);
752 }
753
754 if (ring->funcs->patch_cond_exec)
755 amdgpu_ring_patch_cond_exec(ring, patch_offset);
756
757 /* the double SWITCH_BUFFER here *cannot* be skipped by COND_EXEC */
758 if (ring->funcs->emit_switch_buffer) {
759 amdgpu_ring_emit_switch_buffer(ring);
760 amdgpu_ring_emit_switch_buffer(ring);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400761 }
Christian König41d9eb22016-03-01 16:46:18 +0100762 return 0;
Christian König971fe9a92016-03-01 15:09:25 +0100763}
764
765/**
766 * amdgpu_vm_reset_id - reset VMID to zero
767 *
768 * @adev: amdgpu device structure
769 * @vm_id: vmid number to use
770 *
771 * Reset saved GDW, GWS and OA to force switch on next flush.
772 */
Christian König76456702017-04-06 17:52:39 +0200773void amdgpu_vm_reset_id(struct amdgpu_device *adev, unsigned vmhub,
774 unsigned vmid)
Christian König971fe9a92016-03-01 15:09:25 +0100775{
Christian König76456702017-04-06 17:52:39 +0200776 struct amdgpu_vm_id_manager *id_mgr = &adev->vm_manager.id_mgr[vmhub];
777 struct amdgpu_vm_id *id = &id_mgr->ids[vmid];
Christian König971fe9a92016-03-01 15:09:25 +0100778
Christian König32601d42017-05-10 20:06:58 +0200779 atomic64_set(&id->owner, 0);
Christian Königbcb1ba32016-03-08 15:40:11 +0100780 id->gds_base = 0;
781 id->gds_size = 0;
782 id->gws_base = 0;
783 id->gws_size = 0;
784 id->oa_base = 0;
785 id->oa_size = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400786}
787
788/**
Christian König32601d42017-05-10 20:06:58 +0200789 * amdgpu_vm_reset_all_id - reset VMID to zero
790 *
791 * @adev: amdgpu device structure
792 *
793 * Reset VMID to force flush on next use
794 */
795void amdgpu_vm_reset_all_ids(struct amdgpu_device *adev)
796{
797 unsigned i, j;
798
799 for (i = 0; i < AMDGPU_MAX_VMHUBS; ++i) {
800 struct amdgpu_vm_id_manager *id_mgr =
801 &adev->vm_manager.id_mgr[i];
802
803 for (j = 1; j < id_mgr->num_ids; ++j)
804 amdgpu_vm_reset_id(adev, i, j);
805 }
806}
807
808/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400809 * amdgpu_vm_bo_find - find the bo_va for a specific vm & bo
810 *
811 * @vm: requested vm
812 * @bo: requested buffer object
813 *
Christian König8843dbb2016-01-26 12:17:11 +0100814 * Find @bo inside the requested vm.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400815 * Search inside the @bos vm list for the requested vm
816 * Returns the found bo_va or NULL if none is found
817 *
818 * Object has to be reserved!
819 */
820struct amdgpu_bo_va *amdgpu_vm_bo_find(struct amdgpu_vm *vm,
821 struct amdgpu_bo *bo)
822{
823 struct amdgpu_bo_va *bo_va;
824
825 list_for_each_entry(bo_va, &bo->va, bo_list) {
826 if (bo_va->vm == vm) {
827 return bo_va;
828 }
829 }
830 return NULL;
831}
832
833/**
Christian Königafef8b82016-08-12 13:29:18 +0200834 * amdgpu_vm_do_set_ptes - helper to call the right asic function
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400835 *
Christian König29efc4f2016-08-04 14:52:50 +0200836 * @params: see amdgpu_pte_update_params definition
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400837 * @pe: addr of the page entry
838 * @addr: dst addr to write into pe
839 * @count: number of page entries to update
840 * @incr: increase next addr by incr bytes
841 * @flags: hw access flags
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400842 *
843 * Traces the parameters and calls the right asic functions
844 * to setup the page table using the DMA.
845 */
Christian Königafef8b82016-08-12 13:29:18 +0200846static void amdgpu_vm_do_set_ptes(struct amdgpu_pte_update_params *params,
847 uint64_t pe, uint64_t addr,
848 unsigned count, uint32_t incr,
Chunming Zhou6b777602016-09-21 16:19:19 +0800849 uint64_t flags)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400850{
Christian Königec2f05f2016-09-25 16:11:52 +0200851 trace_amdgpu_vm_set_ptes(pe, addr, count, incr, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400852
Christian Königafef8b82016-08-12 13:29:18 +0200853 if (count < 3) {
Christian Königde9ea7b2016-08-12 11:33:30 +0200854 amdgpu_vm_write_pte(params->adev, params->ib, pe,
855 addr | flags, count, incr);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400856
857 } else {
Christian König27c5f362016-08-04 15:02:49 +0200858 amdgpu_vm_set_pte_pde(params->adev, params->ib, pe, addr,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400859 count, incr, flags);
860 }
861}
862
863/**
Christian Königafef8b82016-08-12 13:29:18 +0200864 * amdgpu_vm_do_copy_ptes - copy the PTEs from the GART
865 *
866 * @params: see amdgpu_pte_update_params definition
867 * @pe: addr of the page entry
868 * @addr: dst addr to write into pe
869 * @count: number of page entries to update
870 * @incr: increase next addr by incr bytes
871 * @flags: hw access flags
872 *
873 * Traces the parameters and calls the DMA function to copy the PTEs.
874 */
875static void amdgpu_vm_do_copy_ptes(struct amdgpu_pte_update_params *params,
876 uint64_t pe, uint64_t addr,
877 unsigned count, uint32_t incr,
Chunming Zhou6b777602016-09-21 16:19:19 +0800878 uint64_t flags)
Christian Königafef8b82016-08-12 13:29:18 +0200879{
Christian Königec2f05f2016-09-25 16:11:52 +0200880 uint64_t src = (params->src + (addr >> 12) * 8);
Christian Königafef8b82016-08-12 13:29:18 +0200881
Christian Königec2f05f2016-09-25 16:11:52 +0200882
883 trace_amdgpu_vm_copy_ptes(pe, src, count);
884
885 amdgpu_vm_copy_pte(params->adev, params->ib, pe, src, count);
Christian Königafef8b82016-08-12 13:29:18 +0200886}
887
888/**
Christian Königb07c9d22015-11-30 13:26:07 +0100889 * amdgpu_vm_map_gart - Resolve gart mapping of addr
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400890 *
Christian Königb07c9d22015-11-30 13:26:07 +0100891 * @pages_addr: optional DMA address to use for lookup
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400892 * @addr: the unmapped addr
893 *
894 * Look up the physical address of the page that the pte resolves
Christian Königb07c9d22015-11-30 13:26:07 +0100895 * to and return the pointer for the page table entry.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400896 */
Christian Königde9ea7b2016-08-12 11:33:30 +0200897static uint64_t amdgpu_vm_map_gart(const dma_addr_t *pages_addr, uint64_t addr)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400898{
899 uint64_t result;
900
Christian Königde9ea7b2016-08-12 11:33:30 +0200901 /* page table offset */
902 result = pages_addr[addr >> PAGE_SHIFT];
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400903
Christian Königde9ea7b2016-08-12 11:33:30 +0200904 /* in case cpu page size != gpu page size*/
905 result |= addr & (~PAGE_MASK);
Christian Königb07c9d22015-11-30 13:26:07 +0100906
907 result &= 0xFFFFFFFFFFFFF000ULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400908
909 return result;
910}
911
Christian Königf8991ba2016-09-16 15:36:49 +0200912/*
Christian König194d2162016-10-12 15:13:52 +0200913 * amdgpu_vm_update_level - update a single level in the hierarchy
Christian Königf8991ba2016-09-16 15:36:49 +0200914 *
915 * @adev: amdgpu_device pointer
916 * @vm: requested vm
Christian König194d2162016-10-12 15:13:52 +0200917 * @parent: parent directory
Christian Königf8991ba2016-09-16 15:36:49 +0200918 *
Christian König194d2162016-10-12 15:13:52 +0200919 * Makes sure all entries in @parent are up to date.
Christian Königf8991ba2016-09-16 15:36:49 +0200920 * Returns 0 for success, error for failure.
921 */
Christian König194d2162016-10-12 15:13:52 +0200922static int amdgpu_vm_update_level(struct amdgpu_device *adev,
923 struct amdgpu_vm *vm,
924 struct amdgpu_vm_pt *parent,
925 unsigned level)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400926{
Christian Königf8991ba2016-09-16 15:36:49 +0200927 struct amdgpu_bo *shadow;
Christian König2d55e452016-02-08 17:37:38 +0100928 struct amdgpu_ring *ring;
Christian Königf8991ba2016-09-16 15:36:49 +0200929 uint64_t pd_addr, shadow_addr;
Christian König194d2162016-10-12 15:13:52 +0200930 uint32_t incr = amdgpu_vm_bo_size(adev, level + 1);
Christian Königf8991ba2016-09-16 15:36:49 +0200931 uint64_t last_pde = ~0, last_pt = ~0, last_shadow = ~0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400932 unsigned count = 0, pt_idx, ndw;
Christian Königd71518b2016-02-01 12:20:25 +0100933 struct amdgpu_job *job;
Christian König29efc4f2016-08-04 14:52:50 +0200934 struct amdgpu_pte_update_params params;
Dave Airlie220196b2016-10-28 11:33:52 +1000935 struct dma_fence *fence = NULL;
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800936
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400937 int r;
938
Christian König194d2162016-10-12 15:13:52 +0200939 if (!parent->entries)
940 return 0;
Christian König2d55e452016-02-08 17:37:38 +0100941 ring = container_of(vm->entity.sched, struct amdgpu_ring, sched);
942
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400943 /* padding, etc. */
944 ndw = 64;
945
946 /* assume the worst case */
Christian König194d2162016-10-12 15:13:52 +0200947 ndw += parent->last_entry_used * 6;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400948
Christian König194d2162016-10-12 15:13:52 +0200949 pd_addr = amdgpu_bo_gpu_offset(parent->bo);
950
951 shadow = parent->bo->shadow;
Christian Königf8991ba2016-09-16 15:36:49 +0200952 if (shadow) {
953 r = amdgpu_ttm_bind(&shadow->tbo, &shadow->tbo.mem);
954 if (r)
955 return r;
956 shadow_addr = amdgpu_bo_gpu_offset(shadow);
957 ndw *= 2;
958 } else {
959 shadow_addr = 0;
960 }
961
Christian Königd71518b2016-02-01 12:20:25 +0100962 r = amdgpu_job_alloc_with_ib(adev, ndw * 4, &job);
963 if (r)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400964 return r;
Christian Königd71518b2016-02-01 12:20:25 +0100965
Christian König27c5f362016-08-04 15:02:49 +0200966 memset(&params, 0, sizeof(params));
967 params.adev = adev;
Christian König29efc4f2016-08-04 14:52:50 +0200968 params.ib = &job->ibs[0];
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400969
Christian König194d2162016-10-12 15:13:52 +0200970 /* walk over the address space and update the directory */
971 for (pt_idx = 0; pt_idx <= parent->last_entry_used; ++pt_idx) {
972 struct amdgpu_bo *bo = parent->entries[pt_idx].bo;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400973 uint64_t pde, pt;
974
975 if (bo == NULL)
976 continue;
977
Christian König0fc86832016-09-16 11:46:23 +0200978 if (bo->shadow) {
Christian Königf8991ba2016-09-16 15:36:49 +0200979 struct amdgpu_bo *pt_shadow = bo->shadow;
Christian König0fc86832016-09-16 11:46:23 +0200980
Christian Königf8991ba2016-09-16 15:36:49 +0200981 r = amdgpu_ttm_bind(&pt_shadow->tbo,
982 &pt_shadow->tbo.mem);
Christian König0fc86832016-09-16 11:46:23 +0200983 if (r)
984 return r;
985 }
986
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400987 pt = amdgpu_bo_gpu_offset(bo);
Christian König53e2e912017-05-15 15:19:10 +0200988 pt = amdgpu_gart_get_vm_pde(adev, pt);
Christian König194d2162016-10-12 15:13:52 +0200989 if (parent->entries[pt_idx].addr == pt)
Christian Königf8991ba2016-09-16 15:36:49 +0200990 continue;
991
Christian König194d2162016-10-12 15:13:52 +0200992 parent->entries[pt_idx].addr = pt;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400993
994 pde = pd_addr + pt_idx * 8;
995 if (((last_pde + 8 * count) != pde) ||
Christian König96105e52016-08-12 12:59:59 +0200996 ((last_pt + incr * count) != pt) ||
997 (count == AMDGPU_VM_MAX_UPDATE_SIZE)) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400998
999 if (count) {
Christian Königf8991ba2016-09-16 15:36:49 +02001000 if (shadow)
1001 amdgpu_vm_do_set_ptes(&params,
1002 last_shadow,
Christian König53e2e912017-05-15 15:19:10 +02001003 last_pt, count,
Christian Königf8991ba2016-09-16 15:36:49 +02001004 incr,
1005 AMDGPU_PTE_VALID);
1006
Christian Königafef8b82016-08-12 13:29:18 +02001007 amdgpu_vm_do_set_ptes(&params, last_pde,
Christian König53e2e912017-05-15 15:19:10 +02001008 last_pt, count, incr,
Christian Königafef8b82016-08-12 13:29:18 +02001009 AMDGPU_PTE_VALID);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001010 }
1011
1012 count = 1;
1013 last_pde = pde;
Christian Königf8991ba2016-09-16 15:36:49 +02001014 last_shadow = shadow_addr + pt_idx * 8;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001015 last_pt = pt;
1016 } else {
1017 ++count;
1018 }
1019 }
1020
Christian Königf8991ba2016-09-16 15:36:49 +02001021 if (count) {
Christian König67003a12016-10-12 14:46:26 +02001022 if (vm->root.bo->shadow)
Christian König53e2e912017-05-15 15:19:10 +02001023 amdgpu_vm_do_set_ptes(&params, last_shadow, last_pt,
Christian Königf8991ba2016-09-16 15:36:49 +02001024 count, incr, AMDGPU_PTE_VALID);
1025
Christian König53e2e912017-05-15 15:19:10 +02001026 amdgpu_vm_do_set_ptes(&params, last_pde, last_pt,
Christian Königafef8b82016-08-12 13:29:18 +02001027 count, incr, AMDGPU_PTE_VALID);
Chunming Zhoud5fc5e82015-07-21 16:52:10 +08001028 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001029
Christian Königf8991ba2016-09-16 15:36:49 +02001030 if (params.ib->length_dw == 0) {
1031 amdgpu_job_free(job);
Christian König194d2162016-10-12 15:13:52 +02001032 } else {
1033 amdgpu_ring_pad_ib(ring, params.ib);
1034 amdgpu_sync_resv(adev, &job->sync, parent->bo->tbo.resv,
Christian Königf8991ba2016-09-16 15:36:49 +02001035 AMDGPU_FENCE_OWNER_VM);
Christian König194d2162016-10-12 15:13:52 +02001036 if (shadow)
1037 amdgpu_sync_resv(adev, &job->sync, shadow->tbo.resv,
1038 AMDGPU_FENCE_OWNER_VM);
Christian Königf8991ba2016-09-16 15:36:49 +02001039
Christian König194d2162016-10-12 15:13:52 +02001040 WARN_ON(params.ib->length_dw > ndw);
1041 r = amdgpu_job_submit(job, ring, &vm->entity,
1042 AMDGPU_FENCE_OWNER_VM, &fence);
1043 if (r)
1044 goto error_free;
Christian Königf8991ba2016-09-16 15:36:49 +02001045
Christian König194d2162016-10-12 15:13:52 +02001046 amdgpu_bo_fence(parent->bo, fence, true);
1047 dma_fence_put(vm->last_dir_update);
1048 vm->last_dir_update = dma_fence_get(fence);
1049 dma_fence_put(fence);
1050 }
1051 /*
1052 * Recurse into the subdirectories. This recursion is harmless because
1053 * we only have a maximum of 5 layers.
1054 */
1055 for (pt_idx = 0; pt_idx <= parent->last_entry_used; ++pt_idx) {
1056 struct amdgpu_vm_pt *entry = &parent->entries[pt_idx];
1057
1058 if (!entry->bo)
1059 continue;
1060
1061 r = amdgpu_vm_update_level(adev, vm, entry, level + 1);
1062 if (r)
1063 return r;
1064 }
Christian Königf8991ba2016-09-16 15:36:49 +02001065
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001066 return 0;
Chunming Zhoud5fc5e82015-07-21 16:52:10 +08001067
1068error_free:
Christian Königd71518b2016-02-01 12:20:25 +01001069 amdgpu_job_free(job);
Chunming Zhou4af9f072015-08-03 12:57:31 +08001070 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001071}
1072
Christian König194d2162016-10-12 15:13:52 +02001073/*
Christian König92456b92017-05-12 16:09:26 +02001074 * amdgpu_vm_invalidate_level - mark all PD levels as invalid
1075 *
1076 * @parent: parent PD
1077 *
1078 * Mark all PD level as invalid after an error.
1079 */
1080static void amdgpu_vm_invalidate_level(struct amdgpu_vm_pt *parent)
1081{
1082 unsigned pt_idx;
1083
1084 /*
1085 * Recurse into the subdirectories. This recursion is harmless because
1086 * we only have a maximum of 5 layers.
1087 */
1088 for (pt_idx = 0; pt_idx <= parent->last_entry_used; ++pt_idx) {
1089 struct amdgpu_vm_pt *entry = &parent->entries[pt_idx];
1090
1091 if (!entry->bo)
1092 continue;
1093
1094 entry->addr = ~0ULL;
1095 amdgpu_vm_invalidate_level(entry);
1096 }
1097}
1098
1099/*
Christian König194d2162016-10-12 15:13:52 +02001100 * amdgpu_vm_update_directories - make sure that all directories are valid
1101 *
1102 * @adev: amdgpu_device pointer
1103 * @vm: requested vm
1104 *
1105 * Makes sure all directories are up to date.
1106 * Returns 0 for success, error for failure.
1107 */
1108int amdgpu_vm_update_directories(struct amdgpu_device *adev,
1109 struct amdgpu_vm *vm)
1110{
Christian König92456b92017-05-12 16:09:26 +02001111 int r;
1112
1113 r = amdgpu_vm_update_level(adev, vm, &vm->root, 0);
1114 if (r)
1115 amdgpu_vm_invalidate_level(&vm->root);
1116
1117 return r;
Christian König194d2162016-10-12 15:13:52 +02001118}
1119
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001120/**
Christian König4e2cb642016-10-25 15:52:28 +02001121 * amdgpu_vm_find_pt - find the page table for an address
1122 *
1123 * @p: see amdgpu_pte_update_params definition
1124 * @addr: virtual address in question
1125 *
1126 * Find the page table BO for a virtual address, return NULL when none found.
1127 */
1128static struct amdgpu_bo *amdgpu_vm_get_pt(struct amdgpu_pte_update_params *p,
1129 uint64_t addr)
1130{
1131 struct amdgpu_vm_pt *entry = &p->vm->root;
1132 unsigned idx, level = p->adev->vm_manager.num_level;
1133
1134 while (entry->entries) {
Zhang, Jerry36b32a62017-03-29 16:08:32 +08001135 idx = addr >> (p->adev->vm_manager.block_size * level--);
Christian König4e2cb642016-10-25 15:52:28 +02001136 idx %= amdgpu_bo_size(entry->bo) / 8;
1137 entry = &entry->entries[idx];
1138 }
1139
1140 if (level)
1141 return NULL;
1142
1143 return entry->bo;
1144}
1145
1146/**
Christian König92696dd2016-08-05 13:56:35 +02001147 * amdgpu_vm_update_ptes - make sure that page tables are valid
1148 *
1149 * @params: see amdgpu_pte_update_params definition
1150 * @vm: requested vm
1151 * @start: start of GPU address range
1152 * @end: end of GPU address range
1153 * @dst: destination address to map to, the next dst inside the function
1154 * @flags: mapping flags
1155 *
1156 * Update the page tables in the range @start - @end.
Harish Kasiviswanathancc28c4e2017-05-11 22:39:31 -04001157 * Returns 0 for success, -EINVAL for failure.
Christian König92696dd2016-08-05 13:56:35 +02001158 */
Harish Kasiviswanathancc28c4e2017-05-11 22:39:31 -04001159static int amdgpu_vm_update_ptes(struct amdgpu_pte_update_params *params,
Christian König92696dd2016-08-05 13:56:35 +02001160 uint64_t start, uint64_t end,
Chunming Zhou6b777602016-09-21 16:19:19 +08001161 uint64_t dst, uint64_t flags)
Christian König92696dd2016-08-05 13:56:35 +02001162{
Zhang, Jerry36b32a62017-03-29 16:08:32 +08001163 struct amdgpu_device *adev = params->adev;
1164 const uint64_t mask = AMDGPU_VM_PTE_COUNT(adev) - 1;
Christian König92696dd2016-08-05 13:56:35 +02001165
1166 uint64_t cur_pe_start, cur_nptes, cur_dst;
1167 uint64_t addr; /* next GPU address to be updated */
Christian König92696dd2016-08-05 13:56:35 +02001168 struct amdgpu_bo *pt;
1169 unsigned nptes; /* next number of ptes to be updated */
1170 uint64_t next_pe_start;
1171
1172 /* initialize the variables */
1173 addr = start;
Christian König4e2cb642016-10-25 15:52:28 +02001174 pt = amdgpu_vm_get_pt(params, addr);
Felix Kuehling1866bac2017-03-28 20:36:12 -04001175 if (!pt) {
1176 pr_err("PT not found, aborting update_ptes\n");
Harish Kasiviswanathancc28c4e2017-05-11 22:39:31 -04001177 return -EINVAL;
Felix Kuehling1866bac2017-03-28 20:36:12 -04001178 }
Christian König4e2cb642016-10-25 15:52:28 +02001179
Chunming Zhou4c7e8852016-08-15 11:46:21 +08001180 if (params->shadow) {
1181 if (!pt->shadow)
Harish Kasiviswanathancc28c4e2017-05-11 22:39:31 -04001182 return 0;
Christian König914b4dc2016-09-28 12:27:37 +02001183 pt = pt->shadow;
Chunming Zhou4c7e8852016-08-15 11:46:21 +08001184 }
Christian König92696dd2016-08-05 13:56:35 +02001185 if ((addr & ~mask) == (end & ~mask))
1186 nptes = end - addr;
1187 else
Zhang, Jerry36b32a62017-03-29 16:08:32 +08001188 nptes = AMDGPU_VM_PTE_COUNT(adev) - (addr & mask);
Christian König92696dd2016-08-05 13:56:35 +02001189
1190 cur_pe_start = amdgpu_bo_gpu_offset(pt);
1191 cur_pe_start += (addr & mask) * 8;
1192 cur_nptes = nptes;
1193 cur_dst = dst;
1194
1195 /* for next ptb*/
1196 addr += nptes;
1197 dst += nptes * AMDGPU_GPU_PAGE_SIZE;
1198
1199 /* walk over the address space and update the page tables */
1200 while (addr < end) {
Christian König4e2cb642016-10-25 15:52:28 +02001201 pt = amdgpu_vm_get_pt(params, addr);
Felix Kuehling1866bac2017-03-28 20:36:12 -04001202 if (!pt) {
1203 pr_err("PT not found, aborting update_ptes\n");
Harish Kasiviswanathancc28c4e2017-05-11 22:39:31 -04001204 return -EINVAL;
Felix Kuehling1866bac2017-03-28 20:36:12 -04001205 }
Christian König4e2cb642016-10-25 15:52:28 +02001206
Chunming Zhou4c7e8852016-08-15 11:46:21 +08001207 if (params->shadow) {
1208 if (!pt->shadow)
Harish Kasiviswanathancc28c4e2017-05-11 22:39:31 -04001209 return 0;
Christian König914b4dc2016-09-28 12:27:37 +02001210 pt = pt->shadow;
Chunming Zhou4c7e8852016-08-15 11:46:21 +08001211 }
Christian König92696dd2016-08-05 13:56:35 +02001212
1213 if ((addr & ~mask) == (end & ~mask))
1214 nptes = end - addr;
1215 else
Zhang, Jerry36b32a62017-03-29 16:08:32 +08001216 nptes = AMDGPU_VM_PTE_COUNT(adev) - (addr & mask);
Christian König92696dd2016-08-05 13:56:35 +02001217
1218 next_pe_start = amdgpu_bo_gpu_offset(pt);
1219 next_pe_start += (addr & mask) * 8;
1220
Christian König96105e52016-08-12 12:59:59 +02001221 if ((cur_pe_start + 8 * cur_nptes) == next_pe_start &&
1222 ((cur_nptes + nptes) <= AMDGPU_VM_MAX_UPDATE_SIZE)) {
Christian König92696dd2016-08-05 13:56:35 +02001223 /* The next ptb is consecutive to current ptb.
Christian Königafef8b82016-08-12 13:29:18 +02001224 * Don't call the update function now.
Christian König92696dd2016-08-05 13:56:35 +02001225 * Will update two ptbs together in future.
1226 */
1227 cur_nptes += nptes;
1228 } else {
Christian Königafef8b82016-08-12 13:29:18 +02001229 params->func(params, cur_pe_start, cur_dst, cur_nptes,
1230 AMDGPU_GPU_PAGE_SIZE, flags);
Christian König92696dd2016-08-05 13:56:35 +02001231
1232 cur_pe_start = next_pe_start;
1233 cur_nptes = nptes;
1234 cur_dst = dst;
1235 }
1236
1237 /* for next ptb*/
1238 addr += nptes;
1239 dst += nptes * AMDGPU_GPU_PAGE_SIZE;
1240 }
1241
Christian Königafef8b82016-08-12 13:29:18 +02001242 params->func(params, cur_pe_start, cur_dst, cur_nptes,
1243 AMDGPU_GPU_PAGE_SIZE, flags);
Harish Kasiviswanathancc28c4e2017-05-11 22:39:31 -04001244
1245 return 0;
Christian König92696dd2016-08-05 13:56:35 +02001246}
1247
1248/*
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001249 * amdgpu_vm_frag_ptes - add fragment information to PTEs
1250 *
Christian König29efc4f2016-08-04 14:52:50 +02001251 * @params: see amdgpu_pte_update_params definition
Christian König92696dd2016-08-05 13:56:35 +02001252 * @vm: requested vm
1253 * @start: first PTE to handle
1254 * @end: last PTE to handle
1255 * @dst: addr those PTEs should point to
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001256 * @flags: hw mapping flags
Harish Kasiviswanathancc28c4e2017-05-11 22:39:31 -04001257 * Returns 0 for success, -EINVAL for failure.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001258 */
Harish Kasiviswanathancc28c4e2017-05-11 22:39:31 -04001259static int amdgpu_vm_frag_ptes(struct amdgpu_pte_update_params *params,
Christian König92696dd2016-08-05 13:56:35 +02001260 uint64_t start, uint64_t end,
Chunming Zhou6b777602016-09-21 16:19:19 +08001261 uint64_t dst, uint64_t flags)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001262{
Harish Kasiviswanathancc28c4e2017-05-11 22:39:31 -04001263 int r;
1264
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001265 /**
1266 * The MC L1 TLB supports variable sized pages, based on a fragment
1267 * field in the PTE. When this field is set to a non-zero value, page
1268 * granularity is increased from 4KB to (1 << (12 + frag)). The PTE
1269 * flags are considered valid for all PTEs within the fragment range
1270 * and corresponding mappings are assumed to be physically contiguous.
1271 *
1272 * The L1 TLB can store a single PTE for the whole fragment,
1273 * significantly increasing the space available for translation
1274 * caching. This leads to large improvements in throughput when the
1275 * TLB is under pressure.
1276 *
1277 * The L2 TLB distributes small and large fragments into two
1278 * asymmetric partitions. The large fragment cache is significantly
1279 * larger. Thus, we try to use large fragments wherever possible.
1280 * Userspace can support this by aligning virtual base address and
1281 * allocation size to the fragment size.
1282 */
1283
Christian König80366172016-10-04 13:39:43 +02001284 /* SI and newer are optimized for 64KB */
1285 uint64_t frag_flags = AMDGPU_PTE_FRAG(AMDGPU_LOG2_PAGES_PER_FRAG);
1286 uint64_t frag_align = 1 << AMDGPU_LOG2_PAGES_PER_FRAG;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001287
Christian König92696dd2016-08-05 13:56:35 +02001288 uint64_t frag_start = ALIGN(start, frag_align);
1289 uint64_t frag_end = end & ~(frag_align - 1);
Christian König31f6c1f2016-01-26 12:37:49 +01001290
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001291 /* system pages are non continuously */
Christian Königb7fc2cb2016-08-11 16:44:15 +02001292 if (params->src || !(flags & AMDGPU_PTE_VALID) ||
Harish Kasiviswanathancc28c4e2017-05-11 22:39:31 -04001293 (frag_start >= frag_end))
1294 return amdgpu_vm_update_ptes(params, start, end, dst, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001295
1296 /* handle the 4K area at the beginning */
Christian König92696dd2016-08-05 13:56:35 +02001297 if (start != frag_start) {
Harish Kasiviswanathancc28c4e2017-05-11 22:39:31 -04001298 r = amdgpu_vm_update_ptes(params, start, frag_start,
1299 dst, flags);
1300 if (r)
1301 return r;
Christian König92696dd2016-08-05 13:56:35 +02001302 dst += (frag_start - start) * AMDGPU_GPU_PAGE_SIZE;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001303 }
1304
1305 /* handle the area in the middle */
Harish Kasiviswanathancc28c4e2017-05-11 22:39:31 -04001306 r = amdgpu_vm_update_ptes(params, frag_start, frag_end, dst,
1307 flags | frag_flags);
1308 if (r)
1309 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001310
1311 /* handle the 4K area at the end */
Christian König92696dd2016-08-05 13:56:35 +02001312 if (frag_end != end) {
1313 dst += (frag_end - frag_start) * AMDGPU_GPU_PAGE_SIZE;
Harish Kasiviswanathancc28c4e2017-05-11 22:39:31 -04001314 r = amdgpu_vm_update_ptes(params, frag_end, end, dst, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001315 }
Harish Kasiviswanathancc28c4e2017-05-11 22:39:31 -04001316 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001317}
1318
1319/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001320 * amdgpu_vm_bo_update_mapping - update a mapping in the vm page table
1321 *
1322 * @adev: amdgpu_device pointer
Christian König3cabaa52016-06-06 10:17:58 +02001323 * @exclusive: fence we need to sync to
Christian Königfa3ab3c2016-03-18 21:00:35 +01001324 * @src: address where to copy page table entries from
1325 * @pages_addr: DMA addresses to use for mapping
Christian Königa14faa62016-01-25 14:27:31 +01001326 * @vm: requested vm
1327 * @start: start of mapped range
1328 * @last: last mapped entry
1329 * @flags: flags for the entries
1330 * @addr: addr to set the area to
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001331 * @fence: optional resulting fence
1332 *
Christian Königa14faa62016-01-25 14:27:31 +01001333 * Fill in the page table entries between @start and @last.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001334 * Returns 0 for success, -EINVAL for failure.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001335 */
1336static int amdgpu_vm_bo_update_mapping(struct amdgpu_device *adev,
Chris Wilsonf54d1862016-10-25 13:00:45 +01001337 struct dma_fence *exclusive,
Christian Königfa3ab3c2016-03-18 21:00:35 +01001338 uint64_t src,
1339 dma_addr_t *pages_addr,
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001340 struct amdgpu_vm *vm,
Christian Königa14faa62016-01-25 14:27:31 +01001341 uint64_t start, uint64_t last,
Chunming Zhou6b777602016-09-21 16:19:19 +08001342 uint64_t flags, uint64_t addr,
Chris Wilsonf54d1862016-10-25 13:00:45 +01001343 struct dma_fence **fence)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001344{
Christian König2d55e452016-02-08 17:37:38 +01001345 struct amdgpu_ring *ring;
Christian Königa1e08d32016-01-26 11:40:46 +01001346 void *owner = AMDGPU_FENCE_OWNER_VM;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001347 unsigned nptes, ncmds, ndw;
Christian Königd71518b2016-02-01 12:20:25 +01001348 struct amdgpu_job *job;
Christian König29efc4f2016-08-04 14:52:50 +02001349 struct amdgpu_pte_update_params params;
Chris Wilsonf54d1862016-10-25 13:00:45 +01001350 struct dma_fence *f = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001351 int r;
1352
Christian Königafef8b82016-08-12 13:29:18 +02001353 memset(&params, 0, sizeof(params));
1354 params.adev = adev;
Christian König49ac8a22016-10-13 15:09:08 +02001355 params.vm = vm;
Christian Königafef8b82016-08-12 13:29:18 +02001356 params.src = src;
1357
Christian König2d55e452016-02-08 17:37:38 +01001358 ring = container_of(vm->entity.sched, struct amdgpu_ring, sched);
Christian König27c5f362016-08-04 15:02:49 +02001359
Christian Königa1e08d32016-01-26 11:40:46 +01001360 /* sync to everything on unmapping */
1361 if (!(flags & AMDGPU_PTE_VALID))
1362 owner = AMDGPU_FENCE_OWNER_UNDEFINED;
1363
Christian Königa14faa62016-01-25 14:27:31 +01001364 nptes = last - start + 1;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001365
1366 /*
1367 * reserve space for one command every (1 << BLOCK_SIZE)
1368 * entries or 2k dwords (whatever is smaller)
1369 */
Zhang, Jerry36b32a62017-03-29 16:08:32 +08001370 ncmds = (nptes >> min(adev->vm_manager.block_size, 11u)) + 1;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001371
1372 /* padding, etc. */
1373 ndw = 64;
1374
Christian Königb0456f92016-08-11 14:06:54 +02001375 if (src) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001376 /* only copy commands needed */
1377 ndw += ncmds * 7;
1378
Christian Königafef8b82016-08-12 13:29:18 +02001379 params.func = amdgpu_vm_do_copy_ptes;
1380
Christian Königb0456f92016-08-11 14:06:54 +02001381 } else if (pages_addr) {
1382 /* copy commands needed */
1383 ndw += ncmds * 7;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001384
Christian Königb0456f92016-08-11 14:06:54 +02001385 /* and also PTEs */
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001386 ndw += nptes * 2;
1387
Christian Königafef8b82016-08-12 13:29:18 +02001388 params.func = amdgpu_vm_do_copy_ptes;
1389
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001390 } else {
1391 /* set page commands needed */
1392 ndw += ncmds * 10;
1393
1394 /* two extra commands for begin/end of fragment */
1395 ndw += 2 * 10;
Christian Königafef8b82016-08-12 13:29:18 +02001396
1397 params.func = amdgpu_vm_do_set_ptes;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001398 }
1399
Christian Königd71518b2016-02-01 12:20:25 +01001400 r = amdgpu_job_alloc_with_ib(adev, ndw * 4, &job);
1401 if (r)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001402 return r;
Christian Königd71518b2016-02-01 12:20:25 +01001403
Christian König29efc4f2016-08-04 14:52:50 +02001404 params.ib = &job->ibs[0];
Chunming Zhoud5fc5e82015-07-21 16:52:10 +08001405
Christian Königb0456f92016-08-11 14:06:54 +02001406 if (!src && pages_addr) {
1407 uint64_t *pte;
1408 unsigned i;
1409
1410 /* Put the PTEs at the end of the IB. */
1411 i = ndw - nptes * 2;
1412 pte= (uint64_t *)&(job->ibs->ptr[i]);
1413 params.src = job->ibs->gpu_addr + i * 4;
1414
1415 for (i = 0; i < nptes; ++i) {
1416 pte[i] = amdgpu_vm_map_gart(pages_addr, addr + i *
1417 AMDGPU_GPU_PAGE_SIZE);
1418 pte[i] |= flags;
1419 }
Christian Königd7a4ac62016-09-25 11:54:00 +02001420 addr = 0;
Christian Königb0456f92016-08-11 14:06:54 +02001421 }
1422
Christian König3cabaa52016-06-06 10:17:58 +02001423 r = amdgpu_sync_fence(adev, &job->sync, exclusive);
1424 if (r)
1425 goto error_free;
1426
Christian König67003a12016-10-12 14:46:26 +02001427 r = amdgpu_sync_resv(adev, &job->sync, vm->root.bo->tbo.resv,
Christian Königa1e08d32016-01-26 11:40:46 +01001428 owner);
1429 if (r)
1430 goto error_free;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001431
Christian König67003a12016-10-12 14:46:26 +02001432 r = reservation_object_reserve_shared(vm->root.bo->tbo.resv);
Christian Königa1e08d32016-01-26 11:40:46 +01001433 if (r)
1434 goto error_free;
1435
Chunming Zhou4c7e8852016-08-15 11:46:21 +08001436 params.shadow = true;
Harish Kasiviswanathancc28c4e2017-05-11 22:39:31 -04001437 r = amdgpu_vm_frag_ptes(&params, start, last + 1, addr, flags);
1438 if (r)
1439 goto error_free;
Chunming Zhou4c7e8852016-08-15 11:46:21 +08001440 params.shadow = false;
Harish Kasiviswanathancc28c4e2017-05-11 22:39:31 -04001441 r = amdgpu_vm_frag_ptes(&params, start, last + 1, addr, flags);
1442 if (r)
1443 goto error_free;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001444
Christian König29efc4f2016-08-04 14:52:50 +02001445 amdgpu_ring_pad_ib(ring, params.ib);
1446 WARN_ON(params.ib->length_dw > ndw);
Christian König2bd9ccf2016-02-01 12:53:58 +01001447 r = amdgpu_job_submit(job, ring, &vm->entity,
1448 AMDGPU_FENCE_OWNER_VM, &f);
Chunming Zhou4af9f072015-08-03 12:57:31 +08001449 if (r)
1450 goto error_free;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001451
Christian König67003a12016-10-12 14:46:26 +02001452 amdgpu_bo_fence(vm->root.bo, f, true);
Christian König284710f2017-01-30 11:09:31 +01001453 dma_fence_put(*fence);
1454 *fence = f;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001455 return 0;
Chunming Zhoud5fc5e82015-07-21 16:52:10 +08001456
1457error_free:
Christian Königd71518b2016-02-01 12:20:25 +01001458 amdgpu_job_free(job);
Chunming Zhou4af9f072015-08-03 12:57:31 +08001459 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001460}
1461
1462/**
Christian Königa14faa62016-01-25 14:27:31 +01001463 * amdgpu_vm_bo_split_mapping - split a mapping into smaller chunks
1464 *
1465 * @adev: amdgpu_device pointer
Christian König3cabaa52016-06-06 10:17:58 +02001466 * @exclusive: fence we need to sync to
Christian König8358dce2016-03-30 10:50:25 +02001467 * @gtt_flags: flags as they are used for GTT
1468 * @pages_addr: DMA addresses to use for mapping
Christian Königa14faa62016-01-25 14:27:31 +01001469 * @vm: requested vm
1470 * @mapping: mapped range and flags to use for the update
Christian König8358dce2016-03-30 10:50:25 +02001471 * @flags: HW flags for the mapping
Christian König63e0ba42016-08-16 17:38:37 +02001472 * @nodes: array of drm_mm_nodes with the MC addresses
Christian Königa14faa62016-01-25 14:27:31 +01001473 * @fence: optional resulting fence
1474 *
1475 * Split the mapping into smaller chunks so that each update fits
1476 * into a SDMA IB.
1477 * Returns 0 for success, -EINVAL for failure.
1478 */
1479static int amdgpu_vm_bo_split_mapping(struct amdgpu_device *adev,
Chris Wilsonf54d1862016-10-25 13:00:45 +01001480 struct dma_fence *exclusive,
Chunming Zhou6b777602016-09-21 16:19:19 +08001481 uint64_t gtt_flags,
Christian König8358dce2016-03-30 10:50:25 +02001482 dma_addr_t *pages_addr,
Christian Königa14faa62016-01-25 14:27:31 +01001483 struct amdgpu_vm *vm,
1484 struct amdgpu_bo_va_mapping *mapping,
Chunming Zhou6b777602016-09-21 16:19:19 +08001485 uint64_t flags,
Christian König63e0ba42016-08-16 17:38:37 +02001486 struct drm_mm_node *nodes,
Chris Wilsonf54d1862016-10-25 13:00:45 +01001487 struct dma_fence **fence)
Christian Königa14faa62016-01-25 14:27:31 +01001488{
Christian Königa9f87f62017-03-30 14:03:59 +02001489 uint64_t pfn, src = 0, start = mapping->start;
Christian Königa14faa62016-01-25 14:27:31 +01001490 int r;
1491
1492 /* normally,bo_va->flags only contians READABLE and WIRTEABLE bit go here
1493 * but in case of something, we filter the flags in first place
1494 */
1495 if (!(mapping->flags & AMDGPU_PTE_READABLE))
1496 flags &= ~AMDGPU_PTE_READABLE;
1497 if (!(mapping->flags & AMDGPU_PTE_WRITEABLE))
1498 flags &= ~AMDGPU_PTE_WRITEABLE;
1499
Alex Xie15b31c52017-03-03 16:47:11 -05001500 flags &= ~AMDGPU_PTE_EXECUTABLE;
1501 flags |= mapping->flags & AMDGPU_PTE_EXECUTABLE;
1502
Alex Xieb0fd18b2017-03-03 16:49:39 -05001503 flags &= ~AMDGPU_PTE_MTYPE_MASK;
1504 flags |= (mapping->flags & AMDGPU_PTE_MTYPE_MASK);
1505
Zhang, Jerryd0766e92017-04-19 09:53:29 +08001506 if ((mapping->flags & AMDGPU_PTE_PRT) &&
1507 (adev->asic_type >= CHIP_VEGA10)) {
1508 flags |= AMDGPU_PTE_PRT;
1509 flags &= ~AMDGPU_PTE_VALID;
1510 }
1511
Christian Königa14faa62016-01-25 14:27:31 +01001512 trace_amdgpu_vm_bo_update(mapping);
1513
Christian König63e0ba42016-08-16 17:38:37 +02001514 pfn = mapping->offset >> PAGE_SHIFT;
1515 if (nodes) {
1516 while (pfn >= nodes->size) {
1517 pfn -= nodes->size;
1518 ++nodes;
1519 }
Christian Königfa3ab3c2016-03-18 21:00:35 +01001520 }
Christian Königa14faa62016-01-25 14:27:31 +01001521
Christian König63e0ba42016-08-16 17:38:37 +02001522 do {
1523 uint64_t max_entries;
1524 uint64_t addr, last;
Christian Königa14faa62016-01-25 14:27:31 +01001525
Christian König63e0ba42016-08-16 17:38:37 +02001526 if (nodes) {
1527 addr = nodes->start << PAGE_SHIFT;
1528 max_entries = (nodes->size - pfn) *
1529 (PAGE_SIZE / AMDGPU_GPU_PAGE_SIZE);
1530 } else {
1531 addr = 0;
1532 max_entries = S64_MAX;
1533 }
Christian Königa14faa62016-01-25 14:27:31 +01001534
Christian König63e0ba42016-08-16 17:38:37 +02001535 if (pages_addr) {
1536 if (flags == gtt_flags)
1537 src = adev->gart.table_addr +
1538 (addr >> AMDGPU_GPU_PAGE_SHIFT) * 8;
1539 else
1540 max_entries = min(max_entries, 16ull * 1024ull);
1541 addr = 0;
1542 } else if (flags & AMDGPU_PTE_VALID) {
1543 addr += adev->vm_manager.vram_base_offset;
1544 }
1545 addr += pfn << PAGE_SHIFT;
1546
Christian Königa9f87f62017-03-30 14:03:59 +02001547 last = min((uint64_t)mapping->last, start + max_entries - 1);
Christian König3cabaa52016-06-06 10:17:58 +02001548 r = amdgpu_vm_bo_update_mapping(adev, exclusive,
1549 src, pages_addr, vm,
Christian Königa14faa62016-01-25 14:27:31 +01001550 start, last, flags, addr,
1551 fence);
1552 if (r)
1553 return r;
1554
Christian König63e0ba42016-08-16 17:38:37 +02001555 pfn += last - start + 1;
1556 if (nodes && nodes->size == pfn) {
1557 pfn = 0;
1558 ++nodes;
1559 }
Christian Königa14faa62016-01-25 14:27:31 +01001560 start = last + 1;
Christian König63e0ba42016-08-16 17:38:37 +02001561
Christian Königa9f87f62017-03-30 14:03:59 +02001562 } while (unlikely(start != mapping->last + 1));
Christian Königa14faa62016-01-25 14:27:31 +01001563
1564 return 0;
1565}
1566
1567/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001568 * amdgpu_vm_bo_update - update all BO mappings in the vm page table
1569 *
1570 * @adev: amdgpu_device pointer
1571 * @bo_va: requested BO and VM object
Christian König99e124f2016-08-16 14:43:17 +02001572 * @clear: if true clear the entries
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001573 *
1574 * Fill in the page table entries for @bo_va.
1575 * Returns 0 for success, -EINVAL for failure.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001576 */
1577int amdgpu_vm_bo_update(struct amdgpu_device *adev,
1578 struct amdgpu_bo_va *bo_va,
Christian König99e124f2016-08-16 14:43:17 +02001579 bool clear)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001580{
1581 struct amdgpu_vm *vm = bo_va->vm;
1582 struct amdgpu_bo_va_mapping *mapping;
Christian König8358dce2016-03-30 10:50:25 +02001583 dma_addr_t *pages_addr = NULL;
Chunming Zhou6b777602016-09-21 16:19:19 +08001584 uint64_t gtt_flags, flags;
Christian König99e124f2016-08-16 14:43:17 +02001585 struct ttm_mem_reg *mem;
Christian König63e0ba42016-08-16 17:38:37 +02001586 struct drm_mm_node *nodes;
Chris Wilsonf54d1862016-10-25 13:00:45 +01001587 struct dma_fence *exclusive;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001588 int r;
1589
Christian Königa5f6b5b2017-01-30 11:01:38 +01001590 if (clear || !bo_va->bo) {
Christian König99e124f2016-08-16 14:43:17 +02001591 mem = NULL;
Christian König63e0ba42016-08-16 17:38:37 +02001592 nodes = NULL;
Christian König99e124f2016-08-16 14:43:17 +02001593 exclusive = NULL;
1594 } else {
Christian König8358dce2016-03-30 10:50:25 +02001595 struct ttm_dma_tt *ttm;
1596
Christian König99e124f2016-08-16 14:43:17 +02001597 mem = &bo_va->bo->tbo.mem;
Christian König63e0ba42016-08-16 17:38:37 +02001598 nodes = mem->mm_node;
1599 if (mem->mem_type == TTM_PL_TT) {
Christian König8358dce2016-03-30 10:50:25 +02001600 ttm = container_of(bo_va->bo->tbo.ttm, struct
1601 ttm_dma_tt, ttm);
1602 pages_addr = ttm->dma_address;
Christian König9ab21462015-11-30 14:19:26 +01001603 }
Christian König3cabaa52016-06-06 10:17:58 +02001604 exclusive = reservation_object_get_excl(bo_va->bo->tbo.resv);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001605 }
1606
Christian Königa5f6b5b2017-01-30 11:01:38 +01001607 if (bo_va->bo) {
1608 flags = amdgpu_ttm_tt_pte_flags(adev, bo_va->bo->tbo.ttm, mem);
1609 gtt_flags = (amdgpu_ttm_is_bound(bo_va->bo->tbo.ttm) &&
1610 adev == amdgpu_ttm_adev(bo_va->bo->tbo.bdev)) ?
1611 flags : 0;
1612 } else {
1613 flags = 0x0;
1614 gtt_flags = ~0x0;
1615 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001616
Christian König7fc11952015-07-30 11:53:42 +02001617 spin_lock(&vm->status_lock);
1618 if (!list_empty(&bo_va->vm_status))
1619 list_splice_init(&bo_va->valids, &bo_va->invalids);
1620 spin_unlock(&vm->status_lock);
1621
1622 list_for_each_entry(mapping, &bo_va->invalids, list) {
Christian König3cabaa52016-06-06 10:17:58 +02001623 r = amdgpu_vm_bo_split_mapping(adev, exclusive,
1624 gtt_flags, pages_addr, vm,
Christian König63e0ba42016-08-16 17:38:37 +02001625 mapping, flags, nodes,
Christian König8358dce2016-03-30 10:50:25 +02001626 &bo_va->last_pt_update);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001627 if (r)
1628 return r;
1629 }
1630
Christian Königd6c10f62015-09-28 12:00:23 +02001631 if (trace_amdgpu_vm_bo_mapping_enabled()) {
1632 list_for_each_entry(mapping, &bo_va->valids, list)
1633 trace_amdgpu_vm_bo_mapping(mapping);
1634
1635 list_for_each_entry(mapping, &bo_va->invalids, list)
1636 trace_amdgpu_vm_bo_mapping(mapping);
1637 }
1638
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001639 spin_lock(&vm->status_lock);
monk.liu6d1d0ef2015-08-14 13:36:41 +08001640 list_splice_init(&bo_va->invalids, &bo_va->valids);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001641 list_del_init(&bo_va->vm_status);
Christian König99e124f2016-08-16 14:43:17 +02001642 if (clear)
Christian König7fc11952015-07-30 11:53:42 +02001643 list_add(&bo_va->vm_status, &vm->cleared);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001644 spin_unlock(&vm->status_lock);
1645
1646 return 0;
1647}
1648
1649/**
Christian König284710f2017-01-30 11:09:31 +01001650 * amdgpu_vm_update_prt_state - update the global PRT state
1651 */
1652static void amdgpu_vm_update_prt_state(struct amdgpu_device *adev)
1653{
1654 unsigned long flags;
1655 bool enable;
1656
1657 spin_lock_irqsave(&adev->vm_manager.prt_lock, flags);
Christian König451bc8e2017-02-14 16:02:52 +01001658 enable = !!atomic_read(&adev->vm_manager.num_prt_users);
Christian König284710f2017-01-30 11:09:31 +01001659 adev->gart.gart_funcs->set_prt(adev, enable);
1660 spin_unlock_irqrestore(&adev->vm_manager.prt_lock, flags);
1661}
1662
1663/**
Christian König4388fc22017-03-13 10:13:36 +01001664 * amdgpu_vm_prt_get - add a PRT user
Christian König451bc8e2017-02-14 16:02:52 +01001665 */
1666static void amdgpu_vm_prt_get(struct amdgpu_device *adev)
1667{
Christian König4388fc22017-03-13 10:13:36 +01001668 if (!adev->gart.gart_funcs->set_prt)
1669 return;
1670
Christian König451bc8e2017-02-14 16:02:52 +01001671 if (atomic_inc_return(&adev->vm_manager.num_prt_users) == 1)
1672 amdgpu_vm_update_prt_state(adev);
1673}
1674
1675/**
Christian König0b15f2f2017-02-14 15:47:03 +01001676 * amdgpu_vm_prt_put - drop a PRT user
1677 */
1678static void amdgpu_vm_prt_put(struct amdgpu_device *adev)
1679{
Christian König451bc8e2017-02-14 16:02:52 +01001680 if (atomic_dec_return(&adev->vm_manager.num_prt_users) == 0)
Christian König0b15f2f2017-02-14 15:47:03 +01001681 amdgpu_vm_update_prt_state(adev);
1682}
1683
1684/**
Christian König451bc8e2017-02-14 16:02:52 +01001685 * amdgpu_vm_prt_cb - callback for updating the PRT status
Christian König284710f2017-01-30 11:09:31 +01001686 */
1687static void amdgpu_vm_prt_cb(struct dma_fence *fence, struct dma_fence_cb *_cb)
1688{
1689 struct amdgpu_prt_cb *cb = container_of(_cb, struct amdgpu_prt_cb, cb);
1690
Christian König0b15f2f2017-02-14 15:47:03 +01001691 amdgpu_vm_prt_put(cb->adev);
Christian König284710f2017-01-30 11:09:31 +01001692 kfree(cb);
1693}
1694
1695/**
Christian König451bc8e2017-02-14 16:02:52 +01001696 * amdgpu_vm_add_prt_cb - add callback for updating the PRT status
1697 */
1698static void amdgpu_vm_add_prt_cb(struct amdgpu_device *adev,
1699 struct dma_fence *fence)
1700{
Christian König4388fc22017-03-13 10:13:36 +01001701 struct amdgpu_prt_cb *cb;
Christian König451bc8e2017-02-14 16:02:52 +01001702
Christian König4388fc22017-03-13 10:13:36 +01001703 if (!adev->gart.gart_funcs->set_prt)
1704 return;
1705
1706 cb = kmalloc(sizeof(struct amdgpu_prt_cb), GFP_KERNEL);
Christian König451bc8e2017-02-14 16:02:52 +01001707 if (!cb) {
1708 /* Last resort when we are OOM */
1709 if (fence)
1710 dma_fence_wait(fence, false);
1711
Dan Carpenter486a68f2017-04-03 21:41:39 +03001712 amdgpu_vm_prt_put(adev);
Christian König451bc8e2017-02-14 16:02:52 +01001713 } else {
1714 cb->adev = adev;
1715 if (!fence || dma_fence_add_callback(fence, &cb->cb,
1716 amdgpu_vm_prt_cb))
1717 amdgpu_vm_prt_cb(fence, &cb->cb);
1718 }
1719}
1720
1721/**
Christian König284710f2017-01-30 11:09:31 +01001722 * amdgpu_vm_free_mapping - free a mapping
1723 *
1724 * @adev: amdgpu_device pointer
1725 * @vm: requested vm
1726 * @mapping: mapping to be freed
1727 * @fence: fence of the unmap operation
1728 *
1729 * Free a mapping and make sure we decrease the PRT usage count if applicable.
1730 */
1731static void amdgpu_vm_free_mapping(struct amdgpu_device *adev,
1732 struct amdgpu_vm *vm,
1733 struct amdgpu_bo_va_mapping *mapping,
1734 struct dma_fence *fence)
1735{
Christian König451bc8e2017-02-14 16:02:52 +01001736 if (mapping->flags & AMDGPU_PTE_PRT)
1737 amdgpu_vm_add_prt_cb(adev, fence);
Christian König284710f2017-01-30 11:09:31 +01001738 kfree(mapping);
1739}
1740
1741/**
Christian König451bc8e2017-02-14 16:02:52 +01001742 * amdgpu_vm_prt_fini - finish all prt mappings
1743 *
1744 * @adev: amdgpu_device pointer
1745 * @vm: requested vm
1746 *
1747 * Register a cleanup callback to disable PRT support after VM dies.
1748 */
1749static void amdgpu_vm_prt_fini(struct amdgpu_device *adev, struct amdgpu_vm *vm)
1750{
Christian König67003a12016-10-12 14:46:26 +02001751 struct reservation_object *resv = vm->root.bo->tbo.resv;
Christian König451bc8e2017-02-14 16:02:52 +01001752 struct dma_fence *excl, **shared;
1753 unsigned i, shared_count;
1754 int r;
1755
1756 r = reservation_object_get_fences_rcu(resv, &excl,
1757 &shared_count, &shared);
1758 if (r) {
1759 /* Not enough memory to grab the fence list, as last resort
1760 * block for all the fences to complete.
1761 */
1762 reservation_object_wait_timeout_rcu(resv, true, false,
1763 MAX_SCHEDULE_TIMEOUT);
1764 return;
1765 }
1766
1767 /* Add a callback for each fence in the reservation object */
1768 amdgpu_vm_prt_get(adev);
1769 amdgpu_vm_add_prt_cb(adev, excl);
1770
1771 for (i = 0; i < shared_count; ++i) {
1772 amdgpu_vm_prt_get(adev);
1773 amdgpu_vm_add_prt_cb(adev, shared[i]);
1774 }
1775
1776 kfree(shared);
1777}
1778
1779/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001780 * amdgpu_vm_clear_freed - clear freed BOs in the PT
1781 *
1782 * @adev: amdgpu_device pointer
1783 * @vm: requested vm
Nicolai Hähnlef3467812017-03-23 19:36:31 +01001784 * @fence: optional resulting fence (unchanged if no work needed to be done
1785 * or if an error occurred)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001786 *
1787 * Make sure all freed BOs are cleared in the PT.
1788 * Returns 0 for success.
1789 *
1790 * PTs have to be reserved and mutex must be locked!
1791 */
1792int amdgpu_vm_clear_freed(struct amdgpu_device *adev,
Nicolai Hähnlef3467812017-03-23 19:36:31 +01001793 struct amdgpu_vm *vm,
1794 struct dma_fence **fence)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001795{
1796 struct amdgpu_bo_va_mapping *mapping;
Nicolai Hähnlef3467812017-03-23 19:36:31 +01001797 struct dma_fence *f = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001798 int r;
1799
1800 while (!list_empty(&vm->freed)) {
1801 mapping = list_first_entry(&vm->freed,
1802 struct amdgpu_bo_va_mapping, list);
1803 list_del(&mapping->list);
Christian Könige17841b2016-03-08 17:52:01 +01001804
Christian Königfc6aa332017-04-19 14:41:19 +02001805 r = amdgpu_vm_bo_update_mapping(adev, NULL, 0, NULL, vm,
1806 mapping->start, mapping->last,
1807 0, 0, &f);
Nicolai Hähnlef3467812017-03-23 19:36:31 +01001808 amdgpu_vm_free_mapping(adev, vm, mapping, f);
Christian König284710f2017-01-30 11:09:31 +01001809 if (r) {
Nicolai Hähnlef3467812017-03-23 19:36:31 +01001810 dma_fence_put(f);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001811 return r;
Christian König284710f2017-01-30 11:09:31 +01001812 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001813 }
Nicolai Hähnlef3467812017-03-23 19:36:31 +01001814
1815 if (fence && f) {
1816 dma_fence_put(*fence);
1817 *fence = f;
1818 } else {
1819 dma_fence_put(f);
1820 }
1821
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001822 return 0;
1823
1824}
1825
1826/**
1827 * amdgpu_vm_clear_invalids - clear invalidated BOs in the PT
1828 *
1829 * @adev: amdgpu_device pointer
1830 * @vm: requested vm
1831 *
1832 * Make sure all invalidated BOs are cleared in the PT.
1833 * Returns 0 for success.
1834 *
1835 * PTs have to be reserved and mutex must be locked!
1836 */
1837int amdgpu_vm_clear_invalids(struct amdgpu_device *adev,
monk.liucfe2c972015-05-26 15:01:54 +08001838 struct amdgpu_vm *vm, struct amdgpu_sync *sync)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001839{
monk.liucfe2c972015-05-26 15:01:54 +08001840 struct amdgpu_bo_va *bo_va = NULL;
Christian König91e1a522015-07-06 22:06:40 +02001841 int r = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001842
1843 spin_lock(&vm->status_lock);
1844 while (!list_empty(&vm->invalidated)) {
1845 bo_va = list_first_entry(&vm->invalidated,
1846 struct amdgpu_bo_va, vm_status);
1847 spin_unlock(&vm->status_lock);
Christian König32b41ac2016-03-08 18:03:27 +01001848
Christian König99e124f2016-08-16 14:43:17 +02001849 r = amdgpu_vm_bo_update(adev, bo_va, true);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001850 if (r)
1851 return r;
1852
1853 spin_lock(&vm->status_lock);
1854 }
1855 spin_unlock(&vm->status_lock);
1856
monk.liucfe2c972015-05-26 15:01:54 +08001857 if (bo_va)
Chunming Zhoubb1e38a42015-08-03 18:19:38 +08001858 r = amdgpu_sync_fence(adev, sync, bo_va->last_pt_update);
Christian König91e1a522015-07-06 22:06:40 +02001859
1860 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001861}
1862
1863/**
1864 * amdgpu_vm_bo_add - add a bo to a specific vm
1865 *
1866 * @adev: amdgpu_device pointer
1867 * @vm: requested vm
1868 * @bo: amdgpu buffer object
1869 *
Christian König8843dbb2016-01-26 12:17:11 +01001870 * Add @bo into the requested vm.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001871 * Add @bo to the list of bos associated with the vm
1872 * Returns newly added bo_va or NULL for failure
1873 *
1874 * Object has to be reserved!
1875 */
1876struct amdgpu_bo_va *amdgpu_vm_bo_add(struct amdgpu_device *adev,
1877 struct amdgpu_vm *vm,
1878 struct amdgpu_bo *bo)
1879{
1880 struct amdgpu_bo_va *bo_va;
1881
1882 bo_va = kzalloc(sizeof(struct amdgpu_bo_va), GFP_KERNEL);
1883 if (bo_va == NULL) {
1884 return NULL;
1885 }
1886 bo_va->vm = vm;
1887 bo_va->bo = bo;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001888 bo_va->ref_count = 1;
1889 INIT_LIST_HEAD(&bo_va->bo_list);
Christian König7fc11952015-07-30 11:53:42 +02001890 INIT_LIST_HEAD(&bo_va->valids);
1891 INIT_LIST_HEAD(&bo_va->invalids);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001892 INIT_LIST_HEAD(&bo_va->vm_status);
Christian König32b41ac2016-03-08 18:03:27 +01001893
Christian Königa5f6b5b2017-01-30 11:01:38 +01001894 if (bo)
1895 list_add_tail(&bo_va->bo_list, &bo->va);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001896
1897 return bo_va;
1898}
1899
1900/**
1901 * amdgpu_vm_bo_map - map bo inside a vm
1902 *
1903 * @adev: amdgpu_device pointer
1904 * @bo_va: bo_va to store the address
1905 * @saddr: where to map the BO
1906 * @offset: requested offset in the BO
1907 * @flags: attributes of pages (read/write/valid/etc.)
1908 *
1909 * Add a mapping of the BO at the specefied addr into the VM.
1910 * Returns 0 for success, error for failure.
1911 *
Chunming Zhou49b02b12015-11-13 14:18:38 +08001912 * Object has to be reserved and unreserved outside!
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001913 */
1914int amdgpu_vm_bo_map(struct amdgpu_device *adev,
1915 struct amdgpu_bo_va *bo_va,
1916 uint64_t saddr, uint64_t offset,
Christian König268c3002017-01-18 14:49:43 +01001917 uint64_t size, uint64_t flags)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001918{
Christian Königa9f87f62017-03-30 14:03:59 +02001919 struct amdgpu_bo_va_mapping *mapping, *tmp;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001920 struct amdgpu_vm *vm = bo_va->vm;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001921 uint64_t eaddr;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001922
Christian König0be52de2015-05-18 14:37:27 +02001923 /* validate the parameters */
1924 if (saddr & AMDGPU_GPU_PAGE_MASK || offset & AMDGPU_GPU_PAGE_MASK ||
Chunming Zhou49b02b12015-11-13 14:18:38 +08001925 size == 0 || size & AMDGPU_GPU_PAGE_MASK)
Christian König0be52de2015-05-18 14:37:27 +02001926 return -EINVAL;
Christian König0be52de2015-05-18 14:37:27 +02001927
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001928 /* make sure object fit at this offset */
Felix Kuehling005ae952015-11-23 17:43:48 -05001929 eaddr = saddr + size - 1;
Christian Königa5f6b5b2017-01-30 11:01:38 +01001930 if (saddr >= eaddr ||
1931 (bo_va->bo && offset + size > amdgpu_bo_size(bo_va->bo)))
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001932 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001933
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001934 saddr /= AMDGPU_GPU_PAGE_SIZE;
1935 eaddr /= AMDGPU_GPU_PAGE_SIZE;
1936
Christian Königa9f87f62017-03-30 14:03:59 +02001937 tmp = amdgpu_vm_it_iter_first(&vm->va, saddr, eaddr);
1938 if (tmp) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001939 /* bo and tmp overlap, invalid addr */
1940 dev_err(adev->dev, "bo %p va 0x%010Lx-0x%010Lx conflict with "
Christian Königa9f87f62017-03-30 14:03:59 +02001941 "0x%010Lx-0x%010Lx\n", bo_va->bo, saddr, eaddr,
1942 tmp->start, tmp->last + 1);
Christian König663e4572017-03-13 10:13:37 +01001943 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001944 }
1945
1946 mapping = kmalloc(sizeof(*mapping), GFP_KERNEL);
Christian König663e4572017-03-13 10:13:37 +01001947 if (!mapping)
1948 return -ENOMEM;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001949
1950 INIT_LIST_HEAD(&mapping->list);
Christian Königa9f87f62017-03-30 14:03:59 +02001951 mapping->start = saddr;
1952 mapping->last = eaddr;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001953 mapping->offset = offset;
1954 mapping->flags = flags;
1955
Christian König7fc11952015-07-30 11:53:42 +02001956 list_add(&mapping->list, &bo_va->invalids);
Christian Königa9f87f62017-03-30 14:03:59 +02001957 amdgpu_vm_it_insert(mapping, &vm->va);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001958
Christian König4388fc22017-03-13 10:13:36 +01001959 if (flags & AMDGPU_PTE_PRT)
1960 amdgpu_vm_prt_get(adev);
1961
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001962 return 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001963}
1964
1965/**
Christian König80f95c52017-03-13 10:13:39 +01001966 * amdgpu_vm_bo_replace_map - map bo inside a vm, replacing existing mappings
1967 *
1968 * @adev: amdgpu_device pointer
1969 * @bo_va: bo_va to store the address
1970 * @saddr: where to map the BO
1971 * @offset: requested offset in the BO
1972 * @flags: attributes of pages (read/write/valid/etc.)
1973 *
1974 * Add a mapping of the BO at the specefied addr into the VM. Replace existing
1975 * mappings as we do so.
1976 * Returns 0 for success, error for failure.
1977 *
1978 * Object has to be reserved and unreserved outside!
1979 */
1980int amdgpu_vm_bo_replace_map(struct amdgpu_device *adev,
1981 struct amdgpu_bo_va *bo_va,
1982 uint64_t saddr, uint64_t offset,
1983 uint64_t size, uint64_t flags)
1984{
1985 struct amdgpu_bo_va_mapping *mapping;
1986 struct amdgpu_vm *vm = bo_va->vm;
1987 uint64_t eaddr;
1988 int r;
1989
1990 /* validate the parameters */
1991 if (saddr & AMDGPU_GPU_PAGE_MASK || offset & AMDGPU_GPU_PAGE_MASK ||
1992 size == 0 || size & AMDGPU_GPU_PAGE_MASK)
1993 return -EINVAL;
1994
1995 /* make sure object fit at this offset */
1996 eaddr = saddr + size - 1;
1997 if (saddr >= eaddr ||
1998 (bo_va->bo && offset + size > amdgpu_bo_size(bo_va->bo)))
1999 return -EINVAL;
2000
2001 /* Allocate all the needed memory */
2002 mapping = kmalloc(sizeof(*mapping), GFP_KERNEL);
2003 if (!mapping)
2004 return -ENOMEM;
2005
2006 r = amdgpu_vm_bo_clear_mappings(adev, bo_va->vm, saddr, size);
2007 if (r) {
2008 kfree(mapping);
2009 return r;
2010 }
2011
2012 saddr /= AMDGPU_GPU_PAGE_SIZE;
2013 eaddr /= AMDGPU_GPU_PAGE_SIZE;
2014
Christian Königa9f87f62017-03-30 14:03:59 +02002015 mapping->start = saddr;
2016 mapping->last = eaddr;
Christian König80f95c52017-03-13 10:13:39 +01002017 mapping->offset = offset;
2018 mapping->flags = flags;
2019
2020 list_add(&mapping->list, &bo_va->invalids);
Christian Königa9f87f62017-03-30 14:03:59 +02002021 amdgpu_vm_it_insert(mapping, &vm->va);
Christian König80f95c52017-03-13 10:13:39 +01002022
2023 if (flags & AMDGPU_PTE_PRT)
2024 amdgpu_vm_prt_get(adev);
2025
2026 return 0;
2027}
2028
2029/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002030 * amdgpu_vm_bo_unmap - remove bo mapping from vm
2031 *
2032 * @adev: amdgpu_device pointer
2033 * @bo_va: bo_va to remove the address from
2034 * @saddr: where to the BO is mapped
2035 *
2036 * Remove a mapping of the BO at the specefied addr from the VM.
2037 * Returns 0 for success, error for failure.
2038 *
Chunming Zhou49b02b12015-11-13 14:18:38 +08002039 * Object has to be reserved and unreserved outside!
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002040 */
2041int amdgpu_vm_bo_unmap(struct amdgpu_device *adev,
2042 struct amdgpu_bo_va *bo_va,
2043 uint64_t saddr)
2044{
2045 struct amdgpu_bo_va_mapping *mapping;
2046 struct amdgpu_vm *vm = bo_va->vm;
Christian König7fc11952015-07-30 11:53:42 +02002047 bool valid = true;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002048
Christian König6c7fc502015-06-05 20:56:17 +02002049 saddr /= AMDGPU_GPU_PAGE_SIZE;
Christian König32b41ac2016-03-08 18:03:27 +01002050
Christian König7fc11952015-07-30 11:53:42 +02002051 list_for_each_entry(mapping, &bo_va->valids, list) {
Christian Königa9f87f62017-03-30 14:03:59 +02002052 if (mapping->start == saddr)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002053 break;
2054 }
2055
Christian König7fc11952015-07-30 11:53:42 +02002056 if (&mapping->list == &bo_va->valids) {
2057 valid = false;
2058
2059 list_for_each_entry(mapping, &bo_va->invalids, list) {
Christian Königa9f87f62017-03-30 14:03:59 +02002060 if (mapping->start == saddr)
Christian König7fc11952015-07-30 11:53:42 +02002061 break;
2062 }
2063
Christian König32b41ac2016-03-08 18:03:27 +01002064 if (&mapping->list == &bo_va->invalids)
Christian König7fc11952015-07-30 11:53:42 +02002065 return -ENOENT;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002066 }
Christian König32b41ac2016-03-08 18:03:27 +01002067
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002068 list_del(&mapping->list);
Christian Königa9f87f62017-03-30 14:03:59 +02002069 amdgpu_vm_it_remove(mapping, &vm->va);
Christian König93e3e432015-06-09 16:58:33 +02002070 trace_amdgpu_vm_bo_unmap(bo_va, mapping);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002071
Christian Könige17841b2016-03-08 17:52:01 +01002072 if (valid)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002073 list_add(&mapping->list, &vm->freed);
Christian Könige17841b2016-03-08 17:52:01 +01002074 else
Christian König284710f2017-01-30 11:09:31 +01002075 amdgpu_vm_free_mapping(adev, vm, mapping,
2076 bo_va->last_pt_update);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002077
2078 return 0;
2079}
2080
2081/**
Christian Königdc54d3d2017-03-13 10:13:38 +01002082 * amdgpu_vm_bo_clear_mappings - remove all mappings in a specific range
2083 *
2084 * @adev: amdgpu_device pointer
2085 * @vm: VM structure to use
2086 * @saddr: start of the range
2087 * @size: size of the range
2088 *
2089 * Remove all mappings in a range, split them as appropriate.
2090 * Returns 0 for success, error for failure.
2091 */
2092int amdgpu_vm_bo_clear_mappings(struct amdgpu_device *adev,
2093 struct amdgpu_vm *vm,
2094 uint64_t saddr, uint64_t size)
2095{
2096 struct amdgpu_bo_va_mapping *before, *after, *tmp, *next;
Christian Königdc54d3d2017-03-13 10:13:38 +01002097 LIST_HEAD(removed);
2098 uint64_t eaddr;
2099
2100 eaddr = saddr + size - 1;
2101 saddr /= AMDGPU_GPU_PAGE_SIZE;
2102 eaddr /= AMDGPU_GPU_PAGE_SIZE;
2103
2104 /* Allocate all the needed memory */
2105 before = kzalloc(sizeof(*before), GFP_KERNEL);
2106 if (!before)
2107 return -ENOMEM;
Junwei Zhang27f6d612017-03-16 16:09:24 +08002108 INIT_LIST_HEAD(&before->list);
Christian Königdc54d3d2017-03-13 10:13:38 +01002109
2110 after = kzalloc(sizeof(*after), GFP_KERNEL);
2111 if (!after) {
2112 kfree(before);
2113 return -ENOMEM;
2114 }
Junwei Zhang27f6d612017-03-16 16:09:24 +08002115 INIT_LIST_HEAD(&after->list);
Christian Königdc54d3d2017-03-13 10:13:38 +01002116
2117 /* Now gather all removed mappings */
Christian Königa9f87f62017-03-30 14:03:59 +02002118 tmp = amdgpu_vm_it_iter_first(&vm->va, saddr, eaddr);
2119 while (tmp) {
Christian Königdc54d3d2017-03-13 10:13:38 +01002120 /* Remember mapping split at the start */
Christian Königa9f87f62017-03-30 14:03:59 +02002121 if (tmp->start < saddr) {
2122 before->start = tmp->start;
2123 before->last = saddr - 1;
Christian Königdc54d3d2017-03-13 10:13:38 +01002124 before->offset = tmp->offset;
2125 before->flags = tmp->flags;
2126 list_add(&before->list, &tmp->list);
2127 }
2128
2129 /* Remember mapping split at the end */
Christian Königa9f87f62017-03-30 14:03:59 +02002130 if (tmp->last > eaddr) {
2131 after->start = eaddr + 1;
2132 after->last = tmp->last;
Christian Königdc54d3d2017-03-13 10:13:38 +01002133 after->offset = tmp->offset;
Christian Königa9f87f62017-03-30 14:03:59 +02002134 after->offset += after->start - tmp->start;
Christian Königdc54d3d2017-03-13 10:13:38 +01002135 after->flags = tmp->flags;
2136 list_add(&after->list, &tmp->list);
2137 }
2138
2139 list_del(&tmp->list);
2140 list_add(&tmp->list, &removed);
Christian Königa9f87f62017-03-30 14:03:59 +02002141
2142 tmp = amdgpu_vm_it_iter_next(tmp, saddr, eaddr);
Christian Königdc54d3d2017-03-13 10:13:38 +01002143 }
2144
2145 /* And free them up */
2146 list_for_each_entry_safe(tmp, next, &removed, list) {
Christian Königa9f87f62017-03-30 14:03:59 +02002147 amdgpu_vm_it_remove(tmp, &vm->va);
Christian Königdc54d3d2017-03-13 10:13:38 +01002148 list_del(&tmp->list);
2149
Christian Königa9f87f62017-03-30 14:03:59 +02002150 if (tmp->start < saddr)
2151 tmp->start = saddr;
2152 if (tmp->last > eaddr)
2153 tmp->last = eaddr;
Christian Königdc54d3d2017-03-13 10:13:38 +01002154
2155 list_add(&tmp->list, &vm->freed);
2156 trace_amdgpu_vm_bo_unmap(NULL, tmp);
2157 }
2158
Junwei Zhang27f6d612017-03-16 16:09:24 +08002159 /* Insert partial mapping before the range */
2160 if (!list_empty(&before->list)) {
Christian Königa9f87f62017-03-30 14:03:59 +02002161 amdgpu_vm_it_insert(before, &vm->va);
Christian Königdc54d3d2017-03-13 10:13:38 +01002162 if (before->flags & AMDGPU_PTE_PRT)
2163 amdgpu_vm_prt_get(adev);
2164 } else {
2165 kfree(before);
2166 }
2167
2168 /* Insert partial mapping after the range */
Junwei Zhang27f6d612017-03-16 16:09:24 +08002169 if (!list_empty(&after->list)) {
Christian Königa9f87f62017-03-30 14:03:59 +02002170 amdgpu_vm_it_insert(after, &vm->va);
Christian Königdc54d3d2017-03-13 10:13:38 +01002171 if (after->flags & AMDGPU_PTE_PRT)
2172 amdgpu_vm_prt_get(adev);
2173 } else {
2174 kfree(after);
2175 }
2176
2177 return 0;
2178}
2179
2180/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002181 * amdgpu_vm_bo_rmv - remove a bo to a specific vm
2182 *
2183 * @adev: amdgpu_device pointer
2184 * @bo_va: requested bo_va
2185 *
Christian König8843dbb2016-01-26 12:17:11 +01002186 * Remove @bo_va->bo from the requested vm.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002187 *
2188 * Object have to be reserved!
2189 */
2190void amdgpu_vm_bo_rmv(struct amdgpu_device *adev,
2191 struct amdgpu_bo_va *bo_va)
2192{
2193 struct amdgpu_bo_va_mapping *mapping, *next;
2194 struct amdgpu_vm *vm = bo_va->vm;
2195
2196 list_del(&bo_va->bo_list);
2197
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002198 spin_lock(&vm->status_lock);
2199 list_del(&bo_va->vm_status);
2200 spin_unlock(&vm->status_lock);
2201
Christian König7fc11952015-07-30 11:53:42 +02002202 list_for_each_entry_safe(mapping, next, &bo_va->valids, list) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002203 list_del(&mapping->list);
Christian Königa9f87f62017-03-30 14:03:59 +02002204 amdgpu_vm_it_remove(mapping, &vm->va);
Christian König93e3e432015-06-09 16:58:33 +02002205 trace_amdgpu_vm_bo_unmap(bo_va, mapping);
Christian König7fc11952015-07-30 11:53:42 +02002206 list_add(&mapping->list, &vm->freed);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002207 }
Christian König7fc11952015-07-30 11:53:42 +02002208 list_for_each_entry_safe(mapping, next, &bo_va->invalids, list) {
2209 list_del(&mapping->list);
Christian Königa9f87f62017-03-30 14:03:59 +02002210 amdgpu_vm_it_remove(mapping, &vm->va);
Christian König284710f2017-01-30 11:09:31 +01002211 amdgpu_vm_free_mapping(adev, vm, mapping,
2212 bo_va->last_pt_update);
Christian König7fc11952015-07-30 11:53:42 +02002213 }
Christian König32b41ac2016-03-08 18:03:27 +01002214
Chris Wilsonf54d1862016-10-25 13:00:45 +01002215 dma_fence_put(bo_va->last_pt_update);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002216 kfree(bo_va);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002217}
2218
2219/**
2220 * amdgpu_vm_bo_invalidate - mark the bo as invalid
2221 *
2222 * @adev: amdgpu_device pointer
2223 * @vm: requested vm
2224 * @bo: amdgpu buffer object
2225 *
Christian König8843dbb2016-01-26 12:17:11 +01002226 * Mark @bo as invalid.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002227 */
2228void amdgpu_vm_bo_invalidate(struct amdgpu_device *adev,
2229 struct amdgpu_bo *bo)
2230{
2231 struct amdgpu_bo_va *bo_va;
2232
2233 list_for_each_entry(bo_va, &bo->va, bo_list) {
Christian König7fc11952015-07-30 11:53:42 +02002234 spin_lock(&bo_va->vm->status_lock);
2235 if (list_empty(&bo_va->vm_status))
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002236 list_add(&bo_va->vm_status, &bo_va->vm->invalidated);
Christian König7fc11952015-07-30 11:53:42 +02002237 spin_unlock(&bo_va->vm->status_lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002238 }
2239}
2240
Junwei Zhangbab4fee2017-04-05 13:54:56 +08002241static uint32_t amdgpu_vm_get_block_size(uint64_t vm_size)
2242{
2243 /* Total bits covered by PD + PTs */
2244 unsigned bits = ilog2(vm_size) + 18;
2245
2246 /* Make sure the PD is 4K in size up to 8GB address space.
2247 Above that split equal between PD and PTs */
2248 if (vm_size <= 8)
2249 return (bits - 9);
2250 else
2251 return ((bits + 3) / 2);
2252}
2253
2254/**
2255 * amdgpu_vm_adjust_size - adjust vm size and block size
2256 *
2257 * @adev: amdgpu_device pointer
2258 * @vm_size: the default vm size if it's set auto
2259 */
2260void amdgpu_vm_adjust_size(struct amdgpu_device *adev, uint64_t vm_size)
2261{
2262 /* adjust vm size firstly */
2263 if (amdgpu_vm_size == -1)
2264 adev->vm_manager.vm_size = vm_size;
2265 else
2266 adev->vm_manager.vm_size = amdgpu_vm_size;
2267
2268 /* block size depends on vm size */
2269 if (amdgpu_vm_block_size == -1)
2270 adev->vm_manager.block_size =
2271 amdgpu_vm_get_block_size(adev->vm_manager.vm_size);
2272 else
2273 adev->vm_manager.block_size = amdgpu_vm_block_size;
2274
2275 DRM_INFO("vm size is %llu GB, block size is %u-bit\n",
2276 adev->vm_manager.vm_size, adev->vm_manager.block_size);
2277}
2278
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002279/**
2280 * amdgpu_vm_init - initialize a vm instance
2281 *
2282 * @adev: amdgpu_device pointer
2283 * @vm: requested vm
2284 *
Christian König8843dbb2016-01-26 12:17:11 +01002285 * Init @vm fields.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002286 */
2287int amdgpu_vm_init(struct amdgpu_device *adev, struct amdgpu_vm *vm)
2288{
2289 const unsigned align = min(AMDGPU_VM_PTB_ALIGN_SIZE,
Zhang, Jerry36b32a62017-03-29 16:08:32 +08002290 AMDGPU_VM_PTE_COUNT(adev) * 8);
Christian König2d55e452016-02-08 17:37:38 +01002291 unsigned ring_instance;
2292 struct amdgpu_ring *ring;
Christian König2bd9ccf2016-02-01 12:53:58 +01002293 struct amd_sched_rq *rq;
Chunming Zhou36bbf3b2017-04-20 16:17:34 +08002294 int r, i;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002295
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002296 vm->va = RB_ROOT;
Chunming Zhou031e2982016-04-25 10:19:13 +08002297 vm->client_id = atomic64_inc_return(&adev->vm_manager.client_counter);
Chunming Zhou36bbf3b2017-04-20 16:17:34 +08002298 for (i = 0; i < AMDGPU_MAX_VMHUBS; i++)
2299 vm->reserved_vmid[i] = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002300 spin_lock_init(&vm->status_lock);
2301 INIT_LIST_HEAD(&vm->invalidated);
Christian König7fc11952015-07-30 11:53:42 +02002302 INIT_LIST_HEAD(&vm->cleared);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002303 INIT_LIST_HEAD(&vm->freed);
Christian König20250212016-03-08 17:58:35 +01002304
Christian König2bd9ccf2016-02-01 12:53:58 +01002305 /* create scheduler entity for page table updates */
Christian König2d55e452016-02-08 17:37:38 +01002306
2307 ring_instance = atomic_inc_return(&adev->vm_manager.vm_pte_next_ring);
2308 ring_instance %= adev->vm_manager.vm_pte_num_rings;
2309 ring = adev->vm_manager.vm_pte_rings[ring_instance];
Christian König2bd9ccf2016-02-01 12:53:58 +01002310 rq = &ring->sched.sched_rq[AMD_SCHED_PRIORITY_KERNEL];
2311 r = amd_sched_entity_init(&ring->sched, &vm->entity,
2312 rq, amdgpu_sched_jobs);
2313 if (r)
Christian Königf566ceb2016-10-27 20:04:38 +02002314 return r;
Christian König2bd9ccf2016-02-01 12:53:58 +01002315
Christian Königa24960f2016-10-12 13:20:52 +02002316 vm->last_dir_update = NULL;
Bas Nieuwenhuizen05906de2015-08-14 20:08:40 +02002317
Christian Königf566ceb2016-10-27 20:04:38 +02002318 r = amdgpu_bo_create(adev, amdgpu_vm_bo_size(adev, 0), align, true,
Alex Deucher857d9132015-08-27 00:14:16 -04002319 AMDGPU_GEM_DOMAIN_VRAM,
Chunming Zhou1baa4392016-08-04 13:59:32 +08002320 AMDGPU_GEM_CREATE_NO_CPU_ACCESS |
Christian König03f48dd2016-08-15 17:00:22 +02002321 AMDGPU_GEM_CREATE_SHADOW |
Christian König617859e2016-11-17 15:40:02 +01002322 AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS |
2323 AMDGPU_GEM_CREATE_VRAM_CLEARED,
Christian König67003a12016-10-12 14:46:26 +02002324 NULL, NULL, &vm->root.bo);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002325 if (r)
Christian König2bd9ccf2016-02-01 12:53:58 +01002326 goto error_free_sched_entity;
2327
Christian König67003a12016-10-12 14:46:26 +02002328 r = amdgpu_bo_reserve(vm->root.bo, false);
Christian König2bd9ccf2016-02-01 12:53:58 +01002329 if (r)
Christian König67003a12016-10-12 14:46:26 +02002330 goto error_free_root;
Christian König2bd9ccf2016-02-01 12:53:58 +01002331
Christian König5a712a82016-06-21 16:28:15 +02002332 vm->last_eviction_counter = atomic64_read(&adev->num_evictions);
Christian König67003a12016-10-12 14:46:26 +02002333 amdgpu_bo_unreserve(vm->root.bo);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002334
2335 return 0;
Christian König2bd9ccf2016-02-01 12:53:58 +01002336
Christian König67003a12016-10-12 14:46:26 +02002337error_free_root:
2338 amdgpu_bo_unref(&vm->root.bo->shadow);
2339 amdgpu_bo_unref(&vm->root.bo);
2340 vm->root.bo = NULL;
Christian König2bd9ccf2016-02-01 12:53:58 +01002341
2342error_free_sched_entity:
2343 amd_sched_entity_fini(&ring->sched, &vm->entity);
2344
2345 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002346}
2347
2348/**
Christian Königf566ceb2016-10-27 20:04:38 +02002349 * amdgpu_vm_free_levels - free PD/PT levels
2350 *
2351 * @level: PD/PT starting level to free
2352 *
2353 * Free the page directory or page table level and all sub levels.
2354 */
2355static void amdgpu_vm_free_levels(struct amdgpu_vm_pt *level)
2356{
2357 unsigned i;
2358
2359 if (level->bo) {
2360 amdgpu_bo_unref(&level->bo->shadow);
2361 amdgpu_bo_unref(&level->bo);
2362 }
2363
2364 if (level->entries)
2365 for (i = 0; i <= level->last_entry_used; i++)
2366 amdgpu_vm_free_levels(&level->entries[i]);
2367
2368 drm_free_large(level->entries);
2369}
2370
2371/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002372 * amdgpu_vm_fini - tear down a vm instance
2373 *
2374 * @adev: amdgpu_device pointer
2375 * @vm: requested vm
2376 *
Christian König8843dbb2016-01-26 12:17:11 +01002377 * Tear down @vm.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002378 * Unbind the VM and remove all bos from the vm bo list
2379 */
2380void amdgpu_vm_fini(struct amdgpu_device *adev, struct amdgpu_vm *vm)
2381{
2382 struct amdgpu_bo_va_mapping *mapping, *tmp;
Christian König4388fc22017-03-13 10:13:36 +01002383 bool prt_fini_needed = !!adev->gart.gart_funcs->set_prt;
Chunming Zhou36bbf3b2017-04-20 16:17:34 +08002384 int i;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002385
Christian König2d55e452016-02-08 17:37:38 +01002386 amd_sched_entity_fini(vm->entity.sched, &vm->entity);
Christian König2bd9ccf2016-02-01 12:53:58 +01002387
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002388 if (!RB_EMPTY_ROOT(&vm->va)) {
2389 dev_err(adev->dev, "still active bo inside vm\n");
2390 }
Christian Königa9f87f62017-03-30 14:03:59 +02002391 rbtree_postorder_for_each_entry_safe(mapping, tmp, &vm->va, rb) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002392 list_del(&mapping->list);
Christian Königa9f87f62017-03-30 14:03:59 +02002393 amdgpu_vm_it_remove(mapping, &vm->va);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002394 kfree(mapping);
2395 }
2396 list_for_each_entry_safe(mapping, tmp, &vm->freed, list) {
Christian König4388fc22017-03-13 10:13:36 +01002397 if (mapping->flags & AMDGPU_PTE_PRT && prt_fini_needed) {
Christian König451bc8e2017-02-14 16:02:52 +01002398 amdgpu_vm_prt_fini(adev, vm);
Christian König4388fc22017-03-13 10:13:36 +01002399 prt_fini_needed = false;
Christian König451bc8e2017-02-14 16:02:52 +01002400 }
Christian König284710f2017-01-30 11:09:31 +01002401
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002402 list_del(&mapping->list);
Christian König451bc8e2017-02-14 16:02:52 +01002403 amdgpu_vm_free_mapping(adev, vm, mapping, NULL);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002404 }
2405
Christian Königf566ceb2016-10-27 20:04:38 +02002406 amdgpu_vm_free_levels(&vm->root);
Christian Königa24960f2016-10-12 13:20:52 +02002407 dma_fence_put(vm->last_dir_update);
Chunming Zhou1e9ef262017-04-20 16:18:48 +08002408 for (i = 0; i < AMDGPU_MAX_VMHUBS; i++)
2409 amdgpu_vm_free_reserved_vmid(adev, vm, i);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002410}
Christian Königea89f8c2015-11-15 20:52:06 +01002411
2412/**
Christian Königa9a78b32016-01-21 10:19:11 +01002413 * amdgpu_vm_manager_init - init the VM manager
2414 *
2415 * @adev: amdgpu_device pointer
2416 *
2417 * Initialize the VM manager structures
2418 */
2419void amdgpu_vm_manager_init(struct amdgpu_device *adev)
2420{
Christian König76456702017-04-06 17:52:39 +02002421 unsigned i, j;
Christian Königa9a78b32016-01-21 10:19:11 +01002422
Christian König76456702017-04-06 17:52:39 +02002423 for (i = 0; i < AMDGPU_MAX_VMHUBS; ++i) {
2424 struct amdgpu_vm_id_manager *id_mgr =
2425 &adev->vm_manager.id_mgr[i];
Christian Königa9a78b32016-01-21 10:19:11 +01002426
Christian König76456702017-04-06 17:52:39 +02002427 mutex_init(&id_mgr->lock);
2428 INIT_LIST_HEAD(&id_mgr->ids_lru);
Chunming Zhouc3505772017-04-21 15:51:04 +08002429 atomic_set(&id_mgr->reserved_vmid_num, 0);
Christian König76456702017-04-06 17:52:39 +02002430
2431 /* skip over VMID 0, since it is the system VM */
2432 for (j = 1; j < id_mgr->num_ids; ++j) {
2433 amdgpu_vm_reset_id(adev, i, j);
2434 amdgpu_sync_create(&id_mgr->ids[i].active);
2435 list_add_tail(&id_mgr->ids[j].list, &id_mgr->ids_lru);
2436 }
Christian König971fe9a92016-03-01 15:09:25 +01002437 }
Christian König2d55e452016-02-08 17:37:38 +01002438
Chris Wilsonf54d1862016-10-25 13:00:45 +01002439 adev->vm_manager.fence_context =
2440 dma_fence_context_alloc(AMDGPU_MAX_RINGS);
Christian König1fbb2e92016-06-01 10:47:36 +02002441 for (i = 0; i < AMDGPU_MAX_RINGS; ++i)
2442 adev->vm_manager.seqno[i] = 0;
2443
Christian König2d55e452016-02-08 17:37:38 +01002444 atomic_set(&adev->vm_manager.vm_pte_next_ring, 0);
Christian Königb1c8a812016-05-04 10:34:03 +02002445 atomic64_set(&adev->vm_manager.client_counter, 0);
Christian König284710f2017-01-30 11:09:31 +01002446 spin_lock_init(&adev->vm_manager.prt_lock);
Christian König451bc8e2017-02-14 16:02:52 +01002447 atomic_set(&adev->vm_manager.num_prt_users, 0);
Christian Königa9a78b32016-01-21 10:19:11 +01002448}
2449
2450/**
Christian Königea89f8c2015-11-15 20:52:06 +01002451 * amdgpu_vm_manager_fini - cleanup VM manager
2452 *
2453 * @adev: amdgpu_device pointer
2454 *
2455 * Cleanup the VM manager and free resources.
2456 */
2457void amdgpu_vm_manager_fini(struct amdgpu_device *adev)
2458{
Christian König76456702017-04-06 17:52:39 +02002459 unsigned i, j;
Christian Königea89f8c2015-11-15 20:52:06 +01002460
Christian König76456702017-04-06 17:52:39 +02002461 for (i = 0; i < AMDGPU_MAX_VMHUBS; ++i) {
2462 struct amdgpu_vm_id_manager *id_mgr =
2463 &adev->vm_manager.id_mgr[i];
Christian Königbcb1ba32016-03-08 15:40:11 +01002464
Christian König76456702017-04-06 17:52:39 +02002465 mutex_destroy(&id_mgr->lock);
2466 for (j = 0; j < AMDGPU_NUM_VM; ++j) {
2467 struct amdgpu_vm_id *id = &id_mgr->ids[j];
2468
2469 amdgpu_sync_free(&id->active);
2470 dma_fence_put(id->flushed_updates);
2471 dma_fence_put(id->last_flush);
2472 }
Christian Königbcb1ba32016-03-08 15:40:11 +01002473 }
Christian Königea89f8c2015-11-15 20:52:06 +01002474}
Chunming Zhoucfbcacf2017-04-24 11:09:04 +08002475
2476int amdgpu_vm_ioctl(struct drm_device *dev, void *data, struct drm_file *filp)
2477{
2478 union drm_amdgpu_vm *args = data;
Chunming Zhou1e9ef262017-04-20 16:18:48 +08002479 struct amdgpu_device *adev = dev->dev_private;
2480 struct amdgpu_fpriv *fpriv = filp->driver_priv;
2481 int r;
Chunming Zhoucfbcacf2017-04-24 11:09:04 +08002482
2483 switch (args->in.op) {
2484 case AMDGPU_VM_OP_RESERVE_VMID:
Chunming Zhou1e9ef262017-04-20 16:18:48 +08002485 /* current, we only have requirement to reserve vmid from gfxhub */
2486 r = amdgpu_vm_alloc_reserved_vmid(adev, &fpriv->vm,
2487 AMDGPU_GFXHUB);
2488 if (r)
2489 return r;
2490 break;
Chunming Zhoucfbcacf2017-04-24 11:09:04 +08002491 case AMDGPU_VM_OP_UNRESERVE_VMID:
Chunming Zhou1e9ef262017-04-20 16:18:48 +08002492 amdgpu_vm_free_reserved_vmid(adev, &fpriv->vm, AMDGPU_GFXHUB);
Chunming Zhoucfbcacf2017-04-24 11:09:04 +08002493 break;
2494 default:
2495 return -EINVAL;
2496 }
2497
2498 return 0;
2499}