blob: 0da8a3005f6f62d45b672a592421ebcbd177531b [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
Alex Deucher93dcc372016-06-17 17:05:15 -0400659static bool amdgpu_vm_ring_has_compute_vm_bug(struct amdgpu_ring *ring)
660{
661 struct amdgpu_device *adev = ring->adev;
Alex Deuchera1255102016-10-13 17:41:13 -0400662 const struct amdgpu_ip_block *ip_block;
Alex Deucher93dcc372016-06-17 17:05:15 -0400663
Christian König21cd9422016-10-05 15:36:39 +0200664 if (ring->funcs->type != AMDGPU_RING_TYPE_COMPUTE)
Alex Deucher93dcc372016-06-17 17:05:15 -0400665 /* only compute rings */
666 return false;
667
668 ip_block = amdgpu_get_ip_block(adev, AMD_IP_BLOCK_TYPE_GFX);
669 if (!ip_block)
670 return false;
671
Alex Deuchera1255102016-10-13 17:41:13 -0400672 if (ip_block->version->major <= 7) {
Alex Deucher93dcc372016-06-17 17:05:15 -0400673 /* gfx7 has no workaround */
674 return true;
Alex Deuchera1255102016-10-13 17:41:13 -0400675 } else if (ip_block->version->major == 8) {
Alex Deucher93dcc372016-06-17 17:05:15 -0400676 if (adev->gfx.mec_fw_version >= 673)
677 /* gfx8 is fixed in MEC firmware 673 */
678 return false;
679 else
680 return true;
681 }
682 return false;
683}
684
Alex Xiee60f8db2017-03-09 11:36:26 -0500685static u64 amdgpu_vm_adjust_mc_addr(struct amdgpu_device *adev, u64 mc_addr)
686{
687 u64 addr = mc_addr;
688
Christian Königf75e2372017-03-30 15:55:07 +0200689 if (adev->gart.gart_funcs->adjust_mc_addr)
690 addr = adev->gart.gart_funcs->adjust_mc_addr(adev, addr);
Alex Xiee60f8db2017-03-09 11:36:26 -0500691
692 return addr;
693}
694
Chunming Zhoub9bf33d2017-05-11 14:52:48 -0400695bool amdgpu_vm_need_pipeline_sync(struct amdgpu_ring *ring,
696 struct amdgpu_job *job)
697{
698 struct amdgpu_device *adev = ring->adev;
699 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;
702 bool gds_switch_needed;
703 bool vm_flush_needed = job->vm_needs_flush ||
704 amdgpu_vm_ring_has_compute_vm_bug(ring);
705
706 if (job->vm_id == 0)
707 return false;
708 id = &id_mgr->ids[job->vm_id];
709 gds_switch_needed = ring->funcs->emit_gds_switch && (
710 id->gds_base != job->gds_base ||
711 id->gds_size != job->gds_size ||
712 id->gws_base != job->gws_base ||
713 id->gws_size != job->gws_size ||
714 id->oa_base != job->oa_base ||
715 id->oa_size != job->oa_size);
716
717 if (amdgpu_vm_had_gpu_reset(adev, id))
718 return true;
719 if (!vm_flush_needed && !gds_switch_needed)
720 return false;
721 return true;
722}
723
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400724/**
725 * amdgpu_vm_flush - hardware flush the vm
726 *
727 * @ring: ring to use for flush
Christian Königcffadc82016-03-01 13:34:49 +0100728 * @vm_id: vmid number to use
Christian König4ff37a82016-02-26 16:18:26 +0100729 * @pd_addr: address of the page directory
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400730 *
Christian König4ff37a82016-02-26 16:18:26 +0100731 * Emit a VM flush when it is necessary.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400732 */
Chunming Zhoufd53be32016-07-01 17:59:01 +0800733int amdgpu_vm_flush(struct amdgpu_ring *ring, struct amdgpu_job *job)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400734{
Christian König971fe9a92016-03-01 15:09:25 +0100735 struct amdgpu_device *adev = ring->adev;
Christian König76456702017-04-06 17:52:39 +0200736 unsigned vmhub = ring->funcs->vmhub;
737 struct amdgpu_vm_id_manager *id_mgr = &adev->vm_manager.id_mgr[vmhub];
738 struct amdgpu_vm_id *id = &id_mgr->ids[job->vm_id];
Christian Königd564a062016-03-01 15:51:53 +0100739 bool gds_switch_needed = ring->funcs->emit_gds_switch && (
Chunming Zhoufd53be32016-07-01 17:59:01 +0800740 id->gds_base != job->gds_base ||
741 id->gds_size != job->gds_size ||
742 id->gws_base != job->gws_base ||
743 id->gws_size != job->gws_size ||
744 id->oa_base != job->oa_base ||
745 id->oa_size != job->oa_size);
Christian Königf7d015b2017-04-03 14:28:26 +0200746 bool vm_flush_needed = job->vm_needs_flush ||
747 amdgpu_vm_ring_has_compute_vm_bug(ring);
Christian Königc0e51932017-04-03 14:16:07 +0200748 unsigned patch_offset = 0;
Christian König41d9eb22016-03-01 16:46:18 +0100749 int r;
Christian Königd564a062016-03-01 15:51:53 +0100750
Christian Königf7d015b2017-04-03 14:28:26 +0200751 if (amdgpu_vm_had_gpu_reset(adev, id)) {
752 gds_switch_needed = true;
753 vm_flush_needed = true;
754 }
Christian König971fe9a92016-03-01 15:09:25 +0100755
Christian Königf7d015b2017-04-03 14:28:26 +0200756 if (!vm_flush_needed && !gds_switch_needed)
757 return 0;
Christian König41d9eb22016-03-01 16:46:18 +0100758
Christian Königc0e51932017-04-03 14:16:07 +0200759 if (ring->funcs->init_cond_exec)
760 patch_offset = amdgpu_ring_init_cond_exec(ring);
Christian König41d9eb22016-03-01 16:46:18 +0100761
Christian Königf7d015b2017-04-03 14:28:26 +0200762 if (ring->funcs->emit_vm_flush && vm_flush_needed) {
Christian Königc0e51932017-04-03 14:16:07 +0200763 u64 pd_addr = amdgpu_vm_adjust_mc_addr(adev, job->vm_pd_addr);
764 struct dma_fence *fence;
Monk Liue9d672b2017-03-15 12:18:57 +0800765
Christian König5f1bcf52017-04-07 17:43:19 +0200766 trace_amdgpu_vm_flush(ring, job->vm_id, pd_addr);
Christian Königc0e51932017-04-03 14:16:07 +0200767 amdgpu_ring_emit_vm_flush(ring, job->vm_id, pd_addr);
Monk Liue9d672b2017-03-15 12:18:57 +0800768
Christian Königc0e51932017-04-03 14:16:07 +0200769 r = amdgpu_fence_emit(ring, &fence);
770 if (r)
771 return r;
Monk Liue9d672b2017-03-15 12:18:57 +0800772
Christian König76456702017-04-06 17:52:39 +0200773 mutex_lock(&id_mgr->lock);
Christian Königc0e51932017-04-03 14:16:07 +0200774 dma_fence_put(id->last_flush);
775 id->last_flush = fence;
Chunming Zhoubea396722017-05-10 13:02:39 +0800776 id->current_gpu_reset_count = atomic_read(&adev->gpu_reset_counter);
Christian König76456702017-04-06 17:52:39 +0200777 mutex_unlock(&id_mgr->lock);
Christian Königc0e51932017-04-03 14:16:07 +0200778 }
Monk Liue9d672b2017-03-15 12:18:57 +0800779
Chunming Zhouca7962d2017-05-11 18:22:17 +0800780 if (ring->funcs->emit_gds_switch && gds_switch_needed) {
Christian Königc0e51932017-04-03 14:16:07 +0200781 id->gds_base = job->gds_base;
782 id->gds_size = job->gds_size;
783 id->gws_base = job->gws_base;
784 id->gws_size = job->gws_size;
785 id->oa_base = job->oa_base;
786 id->oa_size = job->oa_size;
787 amdgpu_ring_emit_gds_switch(ring, job->vm_id, job->gds_base,
788 job->gds_size, job->gws_base,
789 job->gws_size, job->oa_base,
790 job->oa_size);
791 }
792
793 if (ring->funcs->patch_cond_exec)
794 amdgpu_ring_patch_cond_exec(ring, patch_offset);
795
796 /* the double SWITCH_BUFFER here *cannot* be skipped by COND_EXEC */
797 if (ring->funcs->emit_switch_buffer) {
798 amdgpu_ring_emit_switch_buffer(ring);
799 amdgpu_ring_emit_switch_buffer(ring);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400800 }
Christian König41d9eb22016-03-01 16:46:18 +0100801 return 0;
Christian König971fe9a92016-03-01 15:09:25 +0100802}
803
804/**
805 * amdgpu_vm_reset_id - reset VMID to zero
806 *
807 * @adev: amdgpu device structure
808 * @vm_id: vmid number to use
809 *
810 * Reset saved GDW, GWS and OA to force switch on next flush.
811 */
Christian König76456702017-04-06 17:52:39 +0200812void amdgpu_vm_reset_id(struct amdgpu_device *adev, unsigned vmhub,
813 unsigned vmid)
Christian König971fe9a92016-03-01 15:09:25 +0100814{
Christian König76456702017-04-06 17:52:39 +0200815 struct amdgpu_vm_id_manager *id_mgr = &adev->vm_manager.id_mgr[vmhub];
816 struct amdgpu_vm_id *id = &id_mgr->ids[vmid];
Christian König971fe9a92016-03-01 15:09:25 +0100817
Christian König32601d42017-05-10 20:06:58 +0200818 atomic64_set(&id->owner, 0);
Christian Königbcb1ba32016-03-08 15:40:11 +0100819 id->gds_base = 0;
820 id->gds_size = 0;
821 id->gws_base = 0;
822 id->gws_size = 0;
823 id->oa_base = 0;
824 id->oa_size = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400825}
826
827/**
Christian König32601d42017-05-10 20:06:58 +0200828 * amdgpu_vm_reset_all_id - reset VMID to zero
829 *
830 * @adev: amdgpu device structure
831 *
832 * Reset VMID to force flush on next use
833 */
834void amdgpu_vm_reset_all_ids(struct amdgpu_device *adev)
835{
836 unsigned i, j;
837
838 for (i = 0; i < AMDGPU_MAX_VMHUBS; ++i) {
839 struct amdgpu_vm_id_manager *id_mgr =
840 &adev->vm_manager.id_mgr[i];
841
842 for (j = 1; j < id_mgr->num_ids; ++j)
843 amdgpu_vm_reset_id(adev, i, j);
844 }
845}
846
847/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400848 * amdgpu_vm_bo_find - find the bo_va for a specific vm & bo
849 *
850 * @vm: requested vm
851 * @bo: requested buffer object
852 *
Christian König8843dbb2016-01-26 12:17:11 +0100853 * Find @bo inside the requested vm.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400854 * Search inside the @bos vm list for the requested vm
855 * Returns the found bo_va or NULL if none is found
856 *
857 * Object has to be reserved!
858 */
859struct amdgpu_bo_va *amdgpu_vm_bo_find(struct amdgpu_vm *vm,
860 struct amdgpu_bo *bo)
861{
862 struct amdgpu_bo_va *bo_va;
863
864 list_for_each_entry(bo_va, &bo->va, bo_list) {
865 if (bo_va->vm == vm) {
866 return bo_va;
867 }
868 }
869 return NULL;
870}
871
872/**
Christian Königafef8b82016-08-12 13:29:18 +0200873 * amdgpu_vm_do_set_ptes - helper to call the right asic function
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400874 *
Christian König29efc4f2016-08-04 14:52:50 +0200875 * @params: see amdgpu_pte_update_params definition
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400876 * @pe: addr of the page entry
877 * @addr: dst addr to write into pe
878 * @count: number of page entries to update
879 * @incr: increase next addr by incr bytes
880 * @flags: hw access flags
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400881 *
882 * Traces the parameters and calls the right asic functions
883 * to setup the page table using the DMA.
884 */
Christian Königafef8b82016-08-12 13:29:18 +0200885static void amdgpu_vm_do_set_ptes(struct amdgpu_pte_update_params *params,
886 uint64_t pe, uint64_t addr,
887 unsigned count, uint32_t incr,
Chunming Zhou6b777602016-09-21 16:19:19 +0800888 uint64_t flags)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400889{
Christian Königec2f05f2016-09-25 16:11:52 +0200890 trace_amdgpu_vm_set_ptes(pe, addr, count, incr, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400891
Christian Königafef8b82016-08-12 13:29:18 +0200892 if (count < 3) {
Christian Königde9ea7b2016-08-12 11:33:30 +0200893 amdgpu_vm_write_pte(params->adev, params->ib, pe,
894 addr | flags, count, incr);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400895
896 } else {
Christian König27c5f362016-08-04 15:02:49 +0200897 amdgpu_vm_set_pte_pde(params->adev, params->ib, pe, addr,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400898 count, incr, flags);
899 }
900}
901
902/**
Christian Königafef8b82016-08-12 13:29:18 +0200903 * amdgpu_vm_do_copy_ptes - copy the PTEs from the GART
904 *
905 * @params: see amdgpu_pte_update_params definition
906 * @pe: addr of the page entry
907 * @addr: dst addr to write into pe
908 * @count: number of page entries to update
909 * @incr: increase next addr by incr bytes
910 * @flags: hw access flags
911 *
912 * Traces the parameters and calls the DMA function to copy the PTEs.
913 */
914static void amdgpu_vm_do_copy_ptes(struct amdgpu_pte_update_params *params,
915 uint64_t pe, uint64_t addr,
916 unsigned count, uint32_t incr,
Chunming Zhou6b777602016-09-21 16:19:19 +0800917 uint64_t flags)
Christian Königafef8b82016-08-12 13:29:18 +0200918{
Christian Königec2f05f2016-09-25 16:11:52 +0200919 uint64_t src = (params->src + (addr >> 12) * 8);
Christian Königafef8b82016-08-12 13:29:18 +0200920
Christian Königec2f05f2016-09-25 16:11:52 +0200921
922 trace_amdgpu_vm_copy_ptes(pe, src, count);
923
924 amdgpu_vm_copy_pte(params->adev, params->ib, pe, src, count);
Christian Königafef8b82016-08-12 13:29:18 +0200925}
926
927/**
Christian Königb07c9d22015-11-30 13:26:07 +0100928 * amdgpu_vm_map_gart - Resolve gart mapping of addr
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400929 *
Christian Königb07c9d22015-11-30 13:26:07 +0100930 * @pages_addr: optional DMA address to use for lookup
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400931 * @addr: the unmapped addr
932 *
933 * Look up the physical address of the page that the pte resolves
Christian Königb07c9d22015-11-30 13:26:07 +0100934 * to and return the pointer for the page table entry.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400935 */
Christian Königde9ea7b2016-08-12 11:33:30 +0200936static uint64_t amdgpu_vm_map_gart(const dma_addr_t *pages_addr, uint64_t addr)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400937{
938 uint64_t result;
939
Christian Königde9ea7b2016-08-12 11:33:30 +0200940 /* page table offset */
941 result = pages_addr[addr >> PAGE_SHIFT];
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400942
Christian Königde9ea7b2016-08-12 11:33:30 +0200943 /* in case cpu page size != gpu page size*/
944 result |= addr & (~PAGE_MASK);
Christian Königb07c9d22015-11-30 13:26:07 +0100945
946 result &= 0xFFFFFFFFFFFFF000ULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400947
948 return result;
949}
950
Christian Königf8991ba2016-09-16 15:36:49 +0200951/*
Christian König194d2162016-10-12 15:13:52 +0200952 * amdgpu_vm_update_level - update a single level in the hierarchy
Christian Königf8991ba2016-09-16 15:36:49 +0200953 *
954 * @adev: amdgpu_device pointer
955 * @vm: requested vm
Christian König194d2162016-10-12 15:13:52 +0200956 * @parent: parent directory
Christian Königf8991ba2016-09-16 15:36:49 +0200957 *
Christian König194d2162016-10-12 15:13:52 +0200958 * Makes sure all entries in @parent are up to date.
Christian Königf8991ba2016-09-16 15:36:49 +0200959 * Returns 0 for success, error for failure.
960 */
Christian König194d2162016-10-12 15:13:52 +0200961static int amdgpu_vm_update_level(struct amdgpu_device *adev,
962 struct amdgpu_vm *vm,
963 struct amdgpu_vm_pt *parent,
964 unsigned level)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400965{
Christian Königf8991ba2016-09-16 15:36:49 +0200966 struct amdgpu_bo *shadow;
Christian König2d55e452016-02-08 17:37:38 +0100967 struct amdgpu_ring *ring;
Christian Königf8991ba2016-09-16 15:36:49 +0200968 uint64_t pd_addr, shadow_addr;
Christian König194d2162016-10-12 15:13:52 +0200969 uint32_t incr = amdgpu_vm_bo_size(adev, level + 1);
Christian Königf8991ba2016-09-16 15:36:49 +0200970 uint64_t last_pde = ~0, last_pt = ~0, last_shadow = ~0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400971 unsigned count = 0, pt_idx, ndw;
Christian Königd71518b2016-02-01 12:20:25 +0100972 struct amdgpu_job *job;
Christian König29efc4f2016-08-04 14:52:50 +0200973 struct amdgpu_pte_update_params params;
Dave Airlie220196b2016-10-28 11:33:52 +1000974 struct dma_fence *fence = NULL;
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800975
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400976 int r;
977
Christian König194d2162016-10-12 15:13:52 +0200978 if (!parent->entries)
979 return 0;
Christian König2d55e452016-02-08 17:37:38 +0100980 ring = container_of(vm->entity.sched, struct amdgpu_ring, sched);
981
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400982 /* padding, etc. */
983 ndw = 64;
984
985 /* assume the worst case */
Christian König194d2162016-10-12 15:13:52 +0200986 ndw += parent->last_entry_used * 6;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400987
Christian König194d2162016-10-12 15:13:52 +0200988 pd_addr = amdgpu_bo_gpu_offset(parent->bo);
989
990 shadow = parent->bo->shadow;
Christian Königf8991ba2016-09-16 15:36:49 +0200991 if (shadow) {
992 r = amdgpu_ttm_bind(&shadow->tbo, &shadow->tbo.mem);
993 if (r)
994 return r;
995 shadow_addr = amdgpu_bo_gpu_offset(shadow);
996 ndw *= 2;
997 } else {
998 shadow_addr = 0;
999 }
1000
Christian Königd71518b2016-02-01 12:20:25 +01001001 r = amdgpu_job_alloc_with_ib(adev, ndw * 4, &job);
1002 if (r)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001003 return r;
Christian Königd71518b2016-02-01 12:20:25 +01001004
Christian König27c5f362016-08-04 15:02:49 +02001005 memset(&params, 0, sizeof(params));
1006 params.adev = adev;
Christian König29efc4f2016-08-04 14:52:50 +02001007 params.ib = &job->ibs[0];
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001008
Christian König194d2162016-10-12 15:13:52 +02001009 /* walk over the address space and update the directory */
1010 for (pt_idx = 0; pt_idx <= parent->last_entry_used; ++pt_idx) {
1011 struct amdgpu_bo *bo = parent->entries[pt_idx].bo;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001012 uint64_t pde, pt;
1013
1014 if (bo == NULL)
1015 continue;
1016
Christian König0fc86832016-09-16 11:46:23 +02001017 if (bo->shadow) {
Christian Königf8991ba2016-09-16 15:36:49 +02001018 struct amdgpu_bo *pt_shadow = bo->shadow;
Christian König0fc86832016-09-16 11:46:23 +02001019
Christian Königf8991ba2016-09-16 15:36:49 +02001020 r = amdgpu_ttm_bind(&pt_shadow->tbo,
1021 &pt_shadow->tbo.mem);
Christian König0fc86832016-09-16 11:46:23 +02001022 if (r)
1023 return r;
1024 }
1025
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001026 pt = amdgpu_bo_gpu_offset(bo);
Christian König194d2162016-10-12 15:13:52 +02001027 if (parent->entries[pt_idx].addr == pt)
Christian Königf8991ba2016-09-16 15:36:49 +02001028 continue;
1029
Christian König194d2162016-10-12 15:13:52 +02001030 parent->entries[pt_idx].addr = pt;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001031
1032 pde = pd_addr + pt_idx * 8;
1033 if (((last_pde + 8 * count) != pde) ||
Christian König96105e52016-08-12 12:59:59 +02001034 ((last_pt + incr * count) != pt) ||
1035 (count == AMDGPU_VM_MAX_UPDATE_SIZE)) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001036
1037 if (count) {
Alex Xiee60f8db2017-03-09 11:36:26 -05001038 uint64_t pt_addr =
1039 amdgpu_vm_adjust_mc_addr(adev, last_pt);
1040
Christian Königf8991ba2016-09-16 15:36:49 +02001041 if (shadow)
1042 amdgpu_vm_do_set_ptes(&params,
1043 last_shadow,
Alex Xiee60f8db2017-03-09 11:36:26 -05001044 pt_addr, count,
Christian Königf8991ba2016-09-16 15:36:49 +02001045 incr,
1046 AMDGPU_PTE_VALID);
1047
Christian Königafef8b82016-08-12 13:29:18 +02001048 amdgpu_vm_do_set_ptes(&params, last_pde,
Alex Xiee60f8db2017-03-09 11:36:26 -05001049 pt_addr, count, incr,
Christian Königafef8b82016-08-12 13:29:18 +02001050 AMDGPU_PTE_VALID);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001051 }
1052
1053 count = 1;
1054 last_pde = pde;
Christian Königf8991ba2016-09-16 15:36:49 +02001055 last_shadow = shadow_addr + pt_idx * 8;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001056 last_pt = pt;
1057 } else {
1058 ++count;
1059 }
1060 }
1061
Christian Königf8991ba2016-09-16 15:36:49 +02001062 if (count) {
Alex Xiee60f8db2017-03-09 11:36:26 -05001063 uint64_t pt_addr = amdgpu_vm_adjust_mc_addr(adev, last_pt);
1064
Christian König67003a12016-10-12 14:46:26 +02001065 if (vm->root.bo->shadow)
Alex Xiee60f8db2017-03-09 11:36:26 -05001066 amdgpu_vm_do_set_ptes(&params, last_shadow, pt_addr,
Christian Königf8991ba2016-09-16 15:36:49 +02001067 count, incr, AMDGPU_PTE_VALID);
1068
Alex Xiee60f8db2017-03-09 11:36:26 -05001069 amdgpu_vm_do_set_ptes(&params, last_pde, pt_addr,
Christian Königafef8b82016-08-12 13:29:18 +02001070 count, incr, AMDGPU_PTE_VALID);
Chunming Zhoud5fc5e82015-07-21 16:52:10 +08001071 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001072
Christian Königf8991ba2016-09-16 15:36:49 +02001073 if (params.ib->length_dw == 0) {
1074 amdgpu_job_free(job);
Christian König194d2162016-10-12 15:13:52 +02001075 } else {
1076 amdgpu_ring_pad_ib(ring, params.ib);
1077 amdgpu_sync_resv(adev, &job->sync, parent->bo->tbo.resv,
Christian Königf8991ba2016-09-16 15:36:49 +02001078 AMDGPU_FENCE_OWNER_VM);
Christian König194d2162016-10-12 15:13:52 +02001079 if (shadow)
1080 amdgpu_sync_resv(adev, &job->sync, shadow->tbo.resv,
1081 AMDGPU_FENCE_OWNER_VM);
Christian Königf8991ba2016-09-16 15:36:49 +02001082
Christian König194d2162016-10-12 15:13:52 +02001083 WARN_ON(params.ib->length_dw > ndw);
1084 r = amdgpu_job_submit(job, ring, &vm->entity,
1085 AMDGPU_FENCE_OWNER_VM, &fence);
1086 if (r)
1087 goto error_free;
Christian Königf8991ba2016-09-16 15:36:49 +02001088
Christian König194d2162016-10-12 15:13:52 +02001089 amdgpu_bo_fence(parent->bo, fence, true);
1090 dma_fence_put(vm->last_dir_update);
1091 vm->last_dir_update = dma_fence_get(fence);
1092 dma_fence_put(fence);
1093 }
1094 /*
1095 * Recurse into the subdirectories. This recursion is harmless because
1096 * we only have a maximum of 5 layers.
1097 */
1098 for (pt_idx = 0; pt_idx <= parent->last_entry_used; ++pt_idx) {
1099 struct amdgpu_vm_pt *entry = &parent->entries[pt_idx];
1100
1101 if (!entry->bo)
1102 continue;
1103
1104 r = amdgpu_vm_update_level(adev, vm, entry, level + 1);
1105 if (r)
1106 return r;
1107 }
Christian Königf8991ba2016-09-16 15:36:49 +02001108
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001109 return 0;
Chunming Zhoud5fc5e82015-07-21 16:52:10 +08001110
1111error_free:
Christian Königd71518b2016-02-01 12:20:25 +01001112 amdgpu_job_free(job);
Chunming Zhou4af9f072015-08-03 12:57:31 +08001113 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001114}
1115
Christian König194d2162016-10-12 15:13:52 +02001116/*
1117 * amdgpu_vm_update_directories - make sure that all directories are valid
1118 *
1119 * @adev: amdgpu_device pointer
1120 * @vm: requested vm
1121 *
1122 * Makes sure all directories are up to date.
1123 * Returns 0 for success, error for failure.
1124 */
1125int amdgpu_vm_update_directories(struct amdgpu_device *adev,
1126 struct amdgpu_vm *vm)
1127{
1128 return amdgpu_vm_update_level(adev, vm, &vm->root, 0);
1129}
1130
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001131/**
Christian König4e2cb642016-10-25 15:52:28 +02001132 * amdgpu_vm_find_pt - find the page table for an address
1133 *
1134 * @p: see amdgpu_pte_update_params definition
1135 * @addr: virtual address in question
1136 *
1137 * Find the page table BO for a virtual address, return NULL when none found.
1138 */
1139static struct amdgpu_bo *amdgpu_vm_get_pt(struct amdgpu_pte_update_params *p,
1140 uint64_t addr)
1141{
1142 struct amdgpu_vm_pt *entry = &p->vm->root;
1143 unsigned idx, level = p->adev->vm_manager.num_level;
1144
1145 while (entry->entries) {
Zhang, Jerry36b32a62017-03-29 16:08:32 +08001146 idx = addr >> (p->adev->vm_manager.block_size * level--);
Christian König4e2cb642016-10-25 15:52:28 +02001147 idx %= amdgpu_bo_size(entry->bo) / 8;
1148 entry = &entry->entries[idx];
1149 }
1150
1151 if (level)
1152 return NULL;
1153
1154 return entry->bo;
1155}
1156
1157/**
Christian König92696dd2016-08-05 13:56:35 +02001158 * amdgpu_vm_update_ptes - make sure that page tables are valid
1159 *
1160 * @params: see amdgpu_pte_update_params definition
1161 * @vm: requested vm
1162 * @start: start of GPU address range
1163 * @end: end of GPU address range
1164 * @dst: destination address to map to, the next dst inside the function
1165 * @flags: mapping flags
1166 *
1167 * Update the page tables in the range @start - @end.
1168 */
1169static void amdgpu_vm_update_ptes(struct amdgpu_pte_update_params *params,
Christian König92696dd2016-08-05 13:56:35 +02001170 uint64_t start, uint64_t end,
Chunming Zhou6b777602016-09-21 16:19:19 +08001171 uint64_t dst, uint64_t flags)
Christian König92696dd2016-08-05 13:56:35 +02001172{
Zhang, Jerry36b32a62017-03-29 16:08:32 +08001173 struct amdgpu_device *adev = params->adev;
1174 const uint64_t mask = AMDGPU_VM_PTE_COUNT(adev) - 1;
Christian König92696dd2016-08-05 13:56:35 +02001175
1176 uint64_t cur_pe_start, cur_nptes, cur_dst;
1177 uint64_t addr; /* next GPU address to be updated */
Christian König92696dd2016-08-05 13:56:35 +02001178 struct amdgpu_bo *pt;
1179 unsigned nptes; /* next number of ptes to be updated */
1180 uint64_t next_pe_start;
1181
1182 /* initialize the variables */
1183 addr = start;
Christian König4e2cb642016-10-25 15:52:28 +02001184 pt = amdgpu_vm_get_pt(params, addr);
Felix Kuehling1866bac2017-03-28 20:36:12 -04001185 if (!pt) {
1186 pr_err("PT not found, aborting update_ptes\n");
Christian König4e2cb642016-10-25 15:52:28 +02001187 return;
Felix Kuehling1866bac2017-03-28 20:36:12 -04001188 }
Christian König4e2cb642016-10-25 15:52:28 +02001189
Chunming Zhou4c7e8852016-08-15 11:46:21 +08001190 if (params->shadow) {
1191 if (!pt->shadow)
1192 return;
Christian König914b4dc2016-09-28 12:27:37 +02001193 pt = pt->shadow;
Chunming Zhou4c7e8852016-08-15 11:46:21 +08001194 }
Christian König92696dd2016-08-05 13:56:35 +02001195 if ((addr & ~mask) == (end & ~mask))
1196 nptes = end - addr;
1197 else
Zhang, Jerry36b32a62017-03-29 16:08:32 +08001198 nptes = AMDGPU_VM_PTE_COUNT(adev) - (addr & mask);
Christian König92696dd2016-08-05 13:56:35 +02001199
1200 cur_pe_start = amdgpu_bo_gpu_offset(pt);
1201 cur_pe_start += (addr & mask) * 8;
1202 cur_nptes = nptes;
1203 cur_dst = dst;
1204
1205 /* for next ptb*/
1206 addr += nptes;
1207 dst += nptes * AMDGPU_GPU_PAGE_SIZE;
1208
1209 /* walk over the address space and update the page tables */
1210 while (addr < end) {
Christian König4e2cb642016-10-25 15:52:28 +02001211 pt = amdgpu_vm_get_pt(params, addr);
Felix Kuehling1866bac2017-03-28 20:36:12 -04001212 if (!pt) {
1213 pr_err("PT not found, aborting update_ptes\n");
Christian König4e2cb642016-10-25 15:52:28 +02001214 return;
Felix Kuehling1866bac2017-03-28 20:36:12 -04001215 }
Christian König4e2cb642016-10-25 15:52:28 +02001216
Chunming Zhou4c7e8852016-08-15 11:46:21 +08001217 if (params->shadow) {
1218 if (!pt->shadow)
1219 return;
Christian König914b4dc2016-09-28 12:27:37 +02001220 pt = pt->shadow;
Chunming Zhou4c7e8852016-08-15 11:46:21 +08001221 }
Christian König92696dd2016-08-05 13:56:35 +02001222
1223 if ((addr & ~mask) == (end & ~mask))
1224 nptes = end - addr;
1225 else
Zhang, Jerry36b32a62017-03-29 16:08:32 +08001226 nptes = AMDGPU_VM_PTE_COUNT(adev) - (addr & mask);
Christian König92696dd2016-08-05 13:56:35 +02001227
1228 next_pe_start = amdgpu_bo_gpu_offset(pt);
1229 next_pe_start += (addr & mask) * 8;
1230
Christian König96105e52016-08-12 12:59:59 +02001231 if ((cur_pe_start + 8 * cur_nptes) == next_pe_start &&
1232 ((cur_nptes + nptes) <= AMDGPU_VM_MAX_UPDATE_SIZE)) {
Christian König92696dd2016-08-05 13:56:35 +02001233 /* The next ptb is consecutive to current ptb.
Christian Königafef8b82016-08-12 13:29:18 +02001234 * Don't call the update function now.
Christian König92696dd2016-08-05 13:56:35 +02001235 * Will update two ptbs together in future.
1236 */
1237 cur_nptes += nptes;
1238 } else {
Christian Königafef8b82016-08-12 13:29:18 +02001239 params->func(params, cur_pe_start, cur_dst, cur_nptes,
1240 AMDGPU_GPU_PAGE_SIZE, flags);
Christian König92696dd2016-08-05 13:56:35 +02001241
1242 cur_pe_start = next_pe_start;
1243 cur_nptes = nptes;
1244 cur_dst = dst;
1245 }
1246
1247 /* for next ptb*/
1248 addr += nptes;
1249 dst += nptes * AMDGPU_GPU_PAGE_SIZE;
1250 }
1251
Christian Königafef8b82016-08-12 13:29:18 +02001252 params->func(params, cur_pe_start, cur_dst, cur_nptes,
1253 AMDGPU_GPU_PAGE_SIZE, flags);
Christian König92696dd2016-08-05 13:56:35 +02001254}
1255
1256/*
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001257 * amdgpu_vm_frag_ptes - add fragment information to PTEs
1258 *
Christian König29efc4f2016-08-04 14:52:50 +02001259 * @params: see amdgpu_pte_update_params definition
Christian König92696dd2016-08-05 13:56:35 +02001260 * @vm: requested vm
1261 * @start: first PTE to handle
1262 * @end: last PTE to handle
1263 * @dst: addr those PTEs should point to
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001264 * @flags: hw mapping flags
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001265 */
Christian König27c5f362016-08-04 15:02:49 +02001266static void amdgpu_vm_frag_ptes(struct amdgpu_pte_update_params *params,
Christian König92696dd2016-08-05 13:56:35 +02001267 uint64_t start, uint64_t end,
Chunming Zhou6b777602016-09-21 16:19:19 +08001268 uint64_t dst, uint64_t flags)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001269{
1270 /**
1271 * The MC L1 TLB supports variable sized pages, based on a fragment
1272 * field in the PTE. When this field is set to a non-zero value, page
1273 * granularity is increased from 4KB to (1 << (12 + frag)). The PTE
1274 * flags are considered valid for all PTEs within the fragment range
1275 * and corresponding mappings are assumed to be physically contiguous.
1276 *
1277 * The L1 TLB can store a single PTE for the whole fragment,
1278 * significantly increasing the space available for translation
1279 * caching. This leads to large improvements in throughput when the
1280 * TLB is under pressure.
1281 *
1282 * The L2 TLB distributes small and large fragments into two
1283 * asymmetric partitions. The large fragment cache is significantly
1284 * larger. Thus, we try to use large fragments wherever possible.
1285 * Userspace can support this by aligning virtual base address and
1286 * allocation size to the fragment size.
1287 */
1288
Christian König80366172016-10-04 13:39:43 +02001289 /* SI and newer are optimized for 64KB */
1290 uint64_t frag_flags = AMDGPU_PTE_FRAG(AMDGPU_LOG2_PAGES_PER_FRAG);
1291 uint64_t frag_align = 1 << AMDGPU_LOG2_PAGES_PER_FRAG;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001292
Christian König92696dd2016-08-05 13:56:35 +02001293 uint64_t frag_start = ALIGN(start, frag_align);
1294 uint64_t frag_end = end & ~(frag_align - 1);
Christian König31f6c1f2016-01-26 12:37:49 +01001295
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001296 /* system pages are non continuously */
Christian Königb7fc2cb2016-08-11 16:44:15 +02001297 if (params->src || !(flags & AMDGPU_PTE_VALID) ||
Christian König92696dd2016-08-05 13:56:35 +02001298 (frag_start >= frag_end)) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001299
Christian König49ac8a22016-10-13 15:09:08 +02001300 amdgpu_vm_update_ptes(params, start, end, dst, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001301 return;
1302 }
1303
1304 /* handle the 4K area at the beginning */
Christian König92696dd2016-08-05 13:56:35 +02001305 if (start != frag_start) {
Christian König49ac8a22016-10-13 15:09:08 +02001306 amdgpu_vm_update_ptes(params, start, frag_start,
Christian König92696dd2016-08-05 13:56:35 +02001307 dst, flags);
1308 dst += (frag_start - start) * AMDGPU_GPU_PAGE_SIZE;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001309 }
1310
1311 /* handle the area in the middle */
Christian König49ac8a22016-10-13 15:09:08 +02001312 amdgpu_vm_update_ptes(params, frag_start, frag_end, dst,
Christian König80366172016-10-04 13:39:43 +02001313 flags | frag_flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001314
1315 /* handle the 4K area at the end */
Christian König92696dd2016-08-05 13:56:35 +02001316 if (frag_end != end) {
1317 dst += (frag_end - frag_start) * AMDGPU_GPU_PAGE_SIZE;
Christian König49ac8a22016-10-13 15:09:08 +02001318 amdgpu_vm_update_ptes(params, frag_end, end, dst, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001319 }
1320}
1321
1322/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001323 * amdgpu_vm_bo_update_mapping - update a mapping in the vm page table
1324 *
1325 * @adev: amdgpu_device pointer
Christian König3cabaa52016-06-06 10:17:58 +02001326 * @exclusive: fence we need to sync to
Christian Königfa3ab3c2016-03-18 21:00:35 +01001327 * @src: address where to copy page table entries from
1328 * @pages_addr: DMA addresses to use for mapping
Christian Königa14faa62016-01-25 14:27:31 +01001329 * @vm: requested vm
1330 * @start: start of mapped range
1331 * @last: last mapped entry
1332 * @flags: flags for the entries
1333 * @addr: addr to set the area to
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001334 * @fence: optional resulting fence
1335 *
Christian Königa14faa62016-01-25 14:27:31 +01001336 * Fill in the page table entries between @start and @last.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001337 * Returns 0 for success, -EINVAL for failure.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001338 */
1339static int amdgpu_vm_bo_update_mapping(struct amdgpu_device *adev,
Chris Wilsonf54d1862016-10-25 13:00:45 +01001340 struct dma_fence *exclusive,
Christian Königfa3ab3c2016-03-18 21:00:35 +01001341 uint64_t src,
1342 dma_addr_t *pages_addr,
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001343 struct amdgpu_vm *vm,
Christian Königa14faa62016-01-25 14:27:31 +01001344 uint64_t start, uint64_t last,
Chunming Zhou6b777602016-09-21 16:19:19 +08001345 uint64_t flags, uint64_t addr,
Chris Wilsonf54d1862016-10-25 13:00:45 +01001346 struct dma_fence **fence)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001347{
Christian König2d55e452016-02-08 17:37:38 +01001348 struct amdgpu_ring *ring;
Christian Königa1e08d32016-01-26 11:40:46 +01001349 void *owner = AMDGPU_FENCE_OWNER_VM;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001350 unsigned nptes, ncmds, ndw;
Christian Königd71518b2016-02-01 12:20:25 +01001351 struct amdgpu_job *job;
Christian König29efc4f2016-08-04 14:52:50 +02001352 struct amdgpu_pte_update_params params;
Chris Wilsonf54d1862016-10-25 13:00:45 +01001353 struct dma_fence *f = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001354 int r;
1355
Christian Königafef8b82016-08-12 13:29:18 +02001356 memset(&params, 0, sizeof(params));
1357 params.adev = adev;
Christian König49ac8a22016-10-13 15:09:08 +02001358 params.vm = vm;
Christian Königafef8b82016-08-12 13:29:18 +02001359 params.src = src;
1360
Christian König2d55e452016-02-08 17:37:38 +01001361 ring = container_of(vm->entity.sched, struct amdgpu_ring, sched);
Christian König27c5f362016-08-04 15:02:49 +02001362
Christian Königa1e08d32016-01-26 11:40:46 +01001363 /* sync to everything on unmapping */
1364 if (!(flags & AMDGPU_PTE_VALID))
1365 owner = AMDGPU_FENCE_OWNER_UNDEFINED;
1366
Christian Königa14faa62016-01-25 14:27:31 +01001367 nptes = last - start + 1;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001368
1369 /*
1370 * reserve space for one command every (1 << BLOCK_SIZE)
1371 * entries or 2k dwords (whatever is smaller)
1372 */
Zhang, Jerry36b32a62017-03-29 16:08:32 +08001373 ncmds = (nptes >> min(adev->vm_manager.block_size, 11u)) + 1;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001374
1375 /* padding, etc. */
1376 ndw = 64;
1377
Christian Königb0456f92016-08-11 14:06:54 +02001378 if (src) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001379 /* only copy commands needed */
1380 ndw += ncmds * 7;
1381
Christian Königafef8b82016-08-12 13:29:18 +02001382 params.func = amdgpu_vm_do_copy_ptes;
1383
Christian Königb0456f92016-08-11 14:06:54 +02001384 } else if (pages_addr) {
1385 /* copy commands needed */
1386 ndw += ncmds * 7;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001387
Christian Königb0456f92016-08-11 14:06:54 +02001388 /* and also PTEs */
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001389 ndw += nptes * 2;
1390
Christian Königafef8b82016-08-12 13:29:18 +02001391 params.func = amdgpu_vm_do_copy_ptes;
1392
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001393 } else {
1394 /* set page commands needed */
1395 ndw += ncmds * 10;
1396
1397 /* two extra commands for begin/end of fragment */
1398 ndw += 2 * 10;
Christian Königafef8b82016-08-12 13:29:18 +02001399
1400 params.func = amdgpu_vm_do_set_ptes;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001401 }
1402
Christian Königd71518b2016-02-01 12:20:25 +01001403 r = amdgpu_job_alloc_with_ib(adev, ndw * 4, &job);
1404 if (r)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001405 return r;
Christian Königd71518b2016-02-01 12:20:25 +01001406
Christian König29efc4f2016-08-04 14:52:50 +02001407 params.ib = &job->ibs[0];
Chunming Zhoud5fc5e82015-07-21 16:52:10 +08001408
Christian Königb0456f92016-08-11 14:06:54 +02001409 if (!src && pages_addr) {
1410 uint64_t *pte;
1411 unsigned i;
1412
1413 /* Put the PTEs at the end of the IB. */
1414 i = ndw - nptes * 2;
1415 pte= (uint64_t *)&(job->ibs->ptr[i]);
1416 params.src = job->ibs->gpu_addr + i * 4;
1417
1418 for (i = 0; i < nptes; ++i) {
1419 pte[i] = amdgpu_vm_map_gart(pages_addr, addr + i *
1420 AMDGPU_GPU_PAGE_SIZE);
1421 pte[i] |= flags;
1422 }
Christian Königd7a4ac62016-09-25 11:54:00 +02001423 addr = 0;
Christian Königb0456f92016-08-11 14:06:54 +02001424 }
1425
Christian König3cabaa52016-06-06 10:17:58 +02001426 r = amdgpu_sync_fence(adev, &job->sync, exclusive);
1427 if (r)
1428 goto error_free;
1429
Christian König67003a12016-10-12 14:46:26 +02001430 r = amdgpu_sync_resv(adev, &job->sync, vm->root.bo->tbo.resv,
Christian Königa1e08d32016-01-26 11:40:46 +01001431 owner);
1432 if (r)
1433 goto error_free;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001434
Christian König67003a12016-10-12 14:46:26 +02001435 r = reservation_object_reserve_shared(vm->root.bo->tbo.resv);
Christian Königa1e08d32016-01-26 11:40:46 +01001436 if (r)
1437 goto error_free;
1438
Chunming Zhou4c7e8852016-08-15 11:46:21 +08001439 params.shadow = true;
Christian König49ac8a22016-10-13 15:09:08 +02001440 amdgpu_vm_frag_ptes(&params, start, last + 1, addr, flags);
Chunming Zhou4c7e8852016-08-15 11:46:21 +08001441 params.shadow = false;
Christian König49ac8a22016-10-13 15:09:08 +02001442 amdgpu_vm_frag_ptes(&params, start, last + 1, addr, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001443
Christian König29efc4f2016-08-04 14:52:50 +02001444 amdgpu_ring_pad_ib(ring, params.ib);
1445 WARN_ON(params.ib->length_dw > ndw);
Christian König2bd9ccf2016-02-01 12:53:58 +01001446 r = amdgpu_job_submit(job, ring, &vm->entity,
1447 AMDGPU_FENCE_OWNER_VM, &f);
Chunming Zhou4af9f072015-08-03 12:57:31 +08001448 if (r)
1449 goto error_free;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001450
Christian König67003a12016-10-12 14:46:26 +02001451 amdgpu_bo_fence(vm->root.bo, f, true);
Christian König284710f2017-01-30 11:09:31 +01001452 dma_fence_put(*fence);
1453 *fence = f;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001454 return 0;
Chunming Zhoud5fc5e82015-07-21 16:52:10 +08001455
1456error_free:
Christian Königd71518b2016-02-01 12:20:25 +01001457 amdgpu_job_free(job);
Chunming Zhou4af9f072015-08-03 12:57:31 +08001458 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001459}
1460
1461/**
Christian Königa14faa62016-01-25 14:27:31 +01001462 * amdgpu_vm_bo_split_mapping - split a mapping into smaller chunks
1463 *
1464 * @adev: amdgpu_device pointer
Christian König3cabaa52016-06-06 10:17:58 +02001465 * @exclusive: fence we need to sync to
Christian König8358dce2016-03-30 10:50:25 +02001466 * @gtt_flags: flags as they are used for GTT
1467 * @pages_addr: DMA addresses to use for mapping
Christian Königa14faa62016-01-25 14:27:31 +01001468 * @vm: requested vm
1469 * @mapping: mapped range and flags to use for the update
Christian König8358dce2016-03-30 10:50:25 +02001470 * @flags: HW flags for the mapping
Christian König63e0ba42016-08-16 17:38:37 +02001471 * @nodes: array of drm_mm_nodes with the MC addresses
Christian Königa14faa62016-01-25 14:27:31 +01001472 * @fence: optional resulting fence
1473 *
1474 * Split the mapping into smaller chunks so that each update fits
1475 * into a SDMA IB.
1476 * Returns 0 for success, -EINVAL for failure.
1477 */
1478static int amdgpu_vm_bo_split_mapping(struct amdgpu_device *adev,
Chris Wilsonf54d1862016-10-25 13:00:45 +01001479 struct dma_fence *exclusive,
Chunming Zhou6b777602016-09-21 16:19:19 +08001480 uint64_t gtt_flags,
Christian König8358dce2016-03-30 10:50:25 +02001481 dma_addr_t *pages_addr,
Christian Königa14faa62016-01-25 14:27:31 +01001482 struct amdgpu_vm *vm,
1483 struct amdgpu_bo_va_mapping *mapping,
Chunming Zhou6b777602016-09-21 16:19:19 +08001484 uint64_t flags,
Christian König63e0ba42016-08-16 17:38:37 +02001485 struct drm_mm_node *nodes,
Chris Wilsonf54d1862016-10-25 13:00:45 +01001486 struct dma_fence **fence)
Christian Königa14faa62016-01-25 14:27:31 +01001487{
Christian Königa9f87f62017-03-30 14:03:59 +02001488 uint64_t pfn, src = 0, start = mapping->start;
Christian Königa14faa62016-01-25 14:27:31 +01001489 int r;
1490
1491 /* normally,bo_va->flags only contians READABLE and WIRTEABLE bit go here
1492 * but in case of something, we filter the flags in first place
1493 */
1494 if (!(mapping->flags & AMDGPU_PTE_READABLE))
1495 flags &= ~AMDGPU_PTE_READABLE;
1496 if (!(mapping->flags & AMDGPU_PTE_WRITEABLE))
1497 flags &= ~AMDGPU_PTE_WRITEABLE;
1498
Alex Xie15b31c52017-03-03 16:47:11 -05001499 flags &= ~AMDGPU_PTE_EXECUTABLE;
1500 flags |= mapping->flags & AMDGPU_PTE_EXECUTABLE;
1501
Alex Xieb0fd18b2017-03-03 16:49:39 -05001502 flags &= ~AMDGPU_PTE_MTYPE_MASK;
1503 flags |= (mapping->flags & AMDGPU_PTE_MTYPE_MASK);
1504
Zhang, Jerryd0766e92017-04-19 09:53:29 +08001505 if ((mapping->flags & AMDGPU_PTE_PRT) &&
1506 (adev->asic_type >= CHIP_VEGA10)) {
1507 flags |= AMDGPU_PTE_PRT;
1508 flags &= ~AMDGPU_PTE_VALID;
1509 }
1510
Christian Königa14faa62016-01-25 14:27:31 +01001511 trace_amdgpu_vm_bo_update(mapping);
1512
Christian König63e0ba42016-08-16 17:38:37 +02001513 pfn = mapping->offset >> PAGE_SHIFT;
1514 if (nodes) {
1515 while (pfn >= nodes->size) {
1516 pfn -= nodes->size;
1517 ++nodes;
1518 }
Christian Königfa3ab3c2016-03-18 21:00:35 +01001519 }
Christian Königa14faa62016-01-25 14:27:31 +01001520
Christian König63e0ba42016-08-16 17:38:37 +02001521 do {
1522 uint64_t max_entries;
1523 uint64_t addr, last;
Christian Königa14faa62016-01-25 14:27:31 +01001524
Christian König63e0ba42016-08-16 17:38:37 +02001525 if (nodes) {
1526 addr = nodes->start << PAGE_SHIFT;
1527 max_entries = (nodes->size - pfn) *
1528 (PAGE_SIZE / AMDGPU_GPU_PAGE_SIZE);
1529 } else {
1530 addr = 0;
1531 max_entries = S64_MAX;
1532 }
Christian Königa14faa62016-01-25 14:27:31 +01001533
Christian König63e0ba42016-08-16 17:38:37 +02001534 if (pages_addr) {
1535 if (flags == gtt_flags)
1536 src = adev->gart.table_addr +
1537 (addr >> AMDGPU_GPU_PAGE_SHIFT) * 8;
1538 else
1539 max_entries = min(max_entries, 16ull * 1024ull);
1540 addr = 0;
1541 } else if (flags & AMDGPU_PTE_VALID) {
1542 addr += adev->vm_manager.vram_base_offset;
1543 }
1544 addr += pfn << PAGE_SHIFT;
1545
Christian Königa9f87f62017-03-30 14:03:59 +02001546 last = min((uint64_t)mapping->last, start + max_entries - 1);
Christian König3cabaa52016-06-06 10:17:58 +02001547 r = amdgpu_vm_bo_update_mapping(adev, exclusive,
1548 src, pages_addr, vm,
Christian Königa14faa62016-01-25 14:27:31 +01001549 start, last, flags, addr,
1550 fence);
1551 if (r)
1552 return r;
1553
Christian König63e0ba42016-08-16 17:38:37 +02001554 pfn += last - start + 1;
1555 if (nodes && nodes->size == pfn) {
1556 pfn = 0;
1557 ++nodes;
1558 }
Christian Königa14faa62016-01-25 14:27:31 +01001559 start = last + 1;
Christian König63e0ba42016-08-16 17:38:37 +02001560
Christian Königa9f87f62017-03-30 14:03:59 +02001561 } while (unlikely(start != mapping->last + 1));
Christian Königa14faa62016-01-25 14:27:31 +01001562
1563 return 0;
1564}
1565
1566/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001567 * amdgpu_vm_bo_update - update all BO mappings in the vm page table
1568 *
1569 * @adev: amdgpu_device pointer
1570 * @bo_va: requested BO and VM object
Christian König99e124f2016-08-16 14:43:17 +02001571 * @clear: if true clear the entries
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001572 *
1573 * Fill in the page table entries for @bo_va.
1574 * Returns 0 for success, -EINVAL for failure.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001575 */
1576int amdgpu_vm_bo_update(struct amdgpu_device *adev,
1577 struct amdgpu_bo_va *bo_va,
Christian König99e124f2016-08-16 14:43:17 +02001578 bool clear)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001579{
1580 struct amdgpu_vm *vm = bo_va->vm;
1581 struct amdgpu_bo_va_mapping *mapping;
Christian König8358dce2016-03-30 10:50:25 +02001582 dma_addr_t *pages_addr = NULL;
Chunming Zhou6b777602016-09-21 16:19:19 +08001583 uint64_t gtt_flags, flags;
Christian König99e124f2016-08-16 14:43:17 +02001584 struct ttm_mem_reg *mem;
Christian König63e0ba42016-08-16 17:38:37 +02001585 struct drm_mm_node *nodes;
Chris Wilsonf54d1862016-10-25 13:00:45 +01001586 struct dma_fence *exclusive;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001587 int r;
1588
Christian Königa5f6b5b2017-01-30 11:01:38 +01001589 if (clear || !bo_va->bo) {
Christian König99e124f2016-08-16 14:43:17 +02001590 mem = NULL;
Christian König63e0ba42016-08-16 17:38:37 +02001591 nodes = NULL;
Christian König99e124f2016-08-16 14:43:17 +02001592 exclusive = NULL;
1593 } else {
Christian König8358dce2016-03-30 10:50:25 +02001594 struct ttm_dma_tt *ttm;
1595
Christian König99e124f2016-08-16 14:43:17 +02001596 mem = &bo_va->bo->tbo.mem;
Christian König63e0ba42016-08-16 17:38:37 +02001597 nodes = mem->mm_node;
1598 if (mem->mem_type == TTM_PL_TT) {
Christian König8358dce2016-03-30 10:50:25 +02001599 ttm = container_of(bo_va->bo->tbo.ttm, struct
1600 ttm_dma_tt, ttm);
1601 pages_addr = ttm->dma_address;
Christian König9ab21462015-11-30 14:19:26 +01001602 }
Christian König3cabaa52016-06-06 10:17:58 +02001603 exclusive = reservation_object_get_excl(bo_va->bo->tbo.resv);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001604 }
1605
Christian Königa5f6b5b2017-01-30 11:01:38 +01001606 if (bo_va->bo) {
1607 flags = amdgpu_ttm_tt_pte_flags(adev, bo_va->bo->tbo.ttm, mem);
1608 gtt_flags = (amdgpu_ttm_is_bound(bo_va->bo->tbo.ttm) &&
1609 adev == amdgpu_ttm_adev(bo_va->bo->tbo.bdev)) ?
1610 flags : 0;
1611 } else {
1612 flags = 0x0;
1613 gtt_flags = ~0x0;
1614 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001615
Christian König7fc11952015-07-30 11:53:42 +02001616 spin_lock(&vm->status_lock);
1617 if (!list_empty(&bo_va->vm_status))
1618 list_splice_init(&bo_va->valids, &bo_va->invalids);
1619 spin_unlock(&vm->status_lock);
1620
1621 list_for_each_entry(mapping, &bo_va->invalids, list) {
Christian König3cabaa52016-06-06 10:17:58 +02001622 r = amdgpu_vm_bo_split_mapping(adev, exclusive,
1623 gtt_flags, pages_addr, vm,
Christian König63e0ba42016-08-16 17:38:37 +02001624 mapping, flags, nodes,
Christian König8358dce2016-03-30 10:50:25 +02001625 &bo_va->last_pt_update);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001626 if (r)
1627 return r;
1628 }
1629
Christian Königd6c10f62015-09-28 12:00:23 +02001630 if (trace_amdgpu_vm_bo_mapping_enabled()) {
1631 list_for_each_entry(mapping, &bo_va->valids, list)
1632 trace_amdgpu_vm_bo_mapping(mapping);
1633
1634 list_for_each_entry(mapping, &bo_va->invalids, list)
1635 trace_amdgpu_vm_bo_mapping(mapping);
1636 }
1637
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001638 spin_lock(&vm->status_lock);
monk.liu6d1d0ef2015-08-14 13:36:41 +08001639 list_splice_init(&bo_va->invalids, &bo_va->valids);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001640 list_del_init(&bo_va->vm_status);
Christian König99e124f2016-08-16 14:43:17 +02001641 if (clear)
Christian König7fc11952015-07-30 11:53:42 +02001642 list_add(&bo_va->vm_status, &vm->cleared);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001643 spin_unlock(&vm->status_lock);
1644
1645 return 0;
1646}
1647
1648/**
Christian König284710f2017-01-30 11:09:31 +01001649 * amdgpu_vm_update_prt_state - update the global PRT state
1650 */
1651static void amdgpu_vm_update_prt_state(struct amdgpu_device *adev)
1652{
1653 unsigned long flags;
1654 bool enable;
1655
1656 spin_lock_irqsave(&adev->vm_manager.prt_lock, flags);
Christian König451bc8e2017-02-14 16:02:52 +01001657 enable = !!atomic_read(&adev->vm_manager.num_prt_users);
Christian König284710f2017-01-30 11:09:31 +01001658 adev->gart.gart_funcs->set_prt(adev, enable);
1659 spin_unlock_irqrestore(&adev->vm_manager.prt_lock, flags);
1660}
1661
1662/**
Christian König4388fc22017-03-13 10:13:36 +01001663 * amdgpu_vm_prt_get - add a PRT user
Christian König451bc8e2017-02-14 16:02:52 +01001664 */
1665static void amdgpu_vm_prt_get(struct amdgpu_device *adev)
1666{
Christian König4388fc22017-03-13 10:13:36 +01001667 if (!adev->gart.gart_funcs->set_prt)
1668 return;
1669
Christian König451bc8e2017-02-14 16:02:52 +01001670 if (atomic_inc_return(&adev->vm_manager.num_prt_users) == 1)
1671 amdgpu_vm_update_prt_state(adev);
1672}
1673
1674/**
Christian König0b15f2f2017-02-14 15:47:03 +01001675 * amdgpu_vm_prt_put - drop a PRT user
1676 */
1677static void amdgpu_vm_prt_put(struct amdgpu_device *adev)
1678{
Christian König451bc8e2017-02-14 16:02:52 +01001679 if (atomic_dec_return(&adev->vm_manager.num_prt_users) == 0)
Christian König0b15f2f2017-02-14 15:47:03 +01001680 amdgpu_vm_update_prt_state(adev);
1681}
1682
1683/**
Christian König451bc8e2017-02-14 16:02:52 +01001684 * amdgpu_vm_prt_cb - callback for updating the PRT status
Christian König284710f2017-01-30 11:09:31 +01001685 */
1686static void amdgpu_vm_prt_cb(struct dma_fence *fence, struct dma_fence_cb *_cb)
1687{
1688 struct amdgpu_prt_cb *cb = container_of(_cb, struct amdgpu_prt_cb, cb);
1689
Christian König0b15f2f2017-02-14 15:47:03 +01001690 amdgpu_vm_prt_put(cb->adev);
Christian König284710f2017-01-30 11:09:31 +01001691 kfree(cb);
1692}
1693
1694/**
Christian König451bc8e2017-02-14 16:02:52 +01001695 * amdgpu_vm_add_prt_cb - add callback for updating the PRT status
1696 */
1697static void amdgpu_vm_add_prt_cb(struct amdgpu_device *adev,
1698 struct dma_fence *fence)
1699{
Christian König4388fc22017-03-13 10:13:36 +01001700 struct amdgpu_prt_cb *cb;
Christian König451bc8e2017-02-14 16:02:52 +01001701
Christian König4388fc22017-03-13 10:13:36 +01001702 if (!adev->gart.gart_funcs->set_prt)
1703 return;
1704
1705 cb = kmalloc(sizeof(struct amdgpu_prt_cb), GFP_KERNEL);
Christian König451bc8e2017-02-14 16:02:52 +01001706 if (!cb) {
1707 /* Last resort when we are OOM */
1708 if (fence)
1709 dma_fence_wait(fence, false);
1710
Dan Carpenter486a68f2017-04-03 21:41:39 +03001711 amdgpu_vm_prt_put(adev);
Christian König451bc8e2017-02-14 16:02:52 +01001712 } else {
1713 cb->adev = adev;
1714 if (!fence || dma_fence_add_callback(fence, &cb->cb,
1715 amdgpu_vm_prt_cb))
1716 amdgpu_vm_prt_cb(fence, &cb->cb);
1717 }
1718}
1719
1720/**
Christian König284710f2017-01-30 11:09:31 +01001721 * amdgpu_vm_free_mapping - free a mapping
1722 *
1723 * @adev: amdgpu_device pointer
1724 * @vm: requested vm
1725 * @mapping: mapping to be freed
1726 * @fence: fence of the unmap operation
1727 *
1728 * Free a mapping and make sure we decrease the PRT usage count if applicable.
1729 */
1730static void amdgpu_vm_free_mapping(struct amdgpu_device *adev,
1731 struct amdgpu_vm *vm,
1732 struct amdgpu_bo_va_mapping *mapping,
1733 struct dma_fence *fence)
1734{
Christian König451bc8e2017-02-14 16:02:52 +01001735 if (mapping->flags & AMDGPU_PTE_PRT)
1736 amdgpu_vm_add_prt_cb(adev, fence);
Christian König284710f2017-01-30 11:09:31 +01001737 kfree(mapping);
1738}
1739
1740/**
Christian König451bc8e2017-02-14 16:02:52 +01001741 * amdgpu_vm_prt_fini - finish all prt mappings
1742 *
1743 * @adev: amdgpu_device pointer
1744 * @vm: requested vm
1745 *
1746 * Register a cleanup callback to disable PRT support after VM dies.
1747 */
1748static void amdgpu_vm_prt_fini(struct amdgpu_device *adev, struct amdgpu_vm *vm)
1749{
Christian König67003a12016-10-12 14:46:26 +02001750 struct reservation_object *resv = vm->root.bo->tbo.resv;
Christian König451bc8e2017-02-14 16:02:52 +01001751 struct dma_fence *excl, **shared;
1752 unsigned i, shared_count;
1753 int r;
1754
1755 r = reservation_object_get_fences_rcu(resv, &excl,
1756 &shared_count, &shared);
1757 if (r) {
1758 /* Not enough memory to grab the fence list, as last resort
1759 * block for all the fences to complete.
1760 */
1761 reservation_object_wait_timeout_rcu(resv, true, false,
1762 MAX_SCHEDULE_TIMEOUT);
1763 return;
1764 }
1765
1766 /* Add a callback for each fence in the reservation object */
1767 amdgpu_vm_prt_get(adev);
1768 amdgpu_vm_add_prt_cb(adev, excl);
1769
1770 for (i = 0; i < shared_count; ++i) {
1771 amdgpu_vm_prt_get(adev);
1772 amdgpu_vm_add_prt_cb(adev, shared[i]);
1773 }
1774
1775 kfree(shared);
1776}
1777
1778/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001779 * amdgpu_vm_clear_freed - clear freed BOs in the PT
1780 *
1781 * @adev: amdgpu_device pointer
1782 * @vm: requested vm
Nicolai Hähnlef3467812017-03-23 19:36:31 +01001783 * @fence: optional resulting fence (unchanged if no work needed to be done
1784 * or if an error occurred)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001785 *
1786 * Make sure all freed BOs are cleared in the PT.
1787 * Returns 0 for success.
1788 *
1789 * PTs have to be reserved and mutex must be locked!
1790 */
1791int amdgpu_vm_clear_freed(struct amdgpu_device *adev,
Nicolai Hähnlef3467812017-03-23 19:36:31 +01001792 struct amdgpu_vm *vm,
1793 struct dma_fence **fence)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001794{
1795 struct amdgpu_bo_va_mapping *mapping;
Nicolai Hähnlef3467812017-03-23 19:36:31 +01001796 struct dma_fence *f = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001797 int r;
1798
1799 while (!list_empty(&vm->freed)) {
1800 mapping = list_first_entry(&vm->freed,
1801 struct amdgpu_bo_va_mapping, list);
1802 list_del(&mapping->list);
Christian Könige17841b2016-03-08 17:52:01 +01001803
Christian Königfc6aa332017-04-19 14:41:19 +02001804 r = amdgpu_vm_bo_update_mapping(adev, NULL, 0, NULL, vm,
1805 mapping->start, mapping->last,
1806 0, 0, &f);
Nicolai Hähnlef3467812017-03-23 19:36:31 +01001807 amdgpu_vm_free_mapping(adev, vm, mapping, f);
Christian König284710f2017-01-30 11:09:31 +01001808 if (r) {
Nicolai Hähnlef3467812017-03-23 19:36:31 +01001809 dma_fence_put(f);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001810 return r;
Christian König284710f2017-01-30 11:09:31 +01001811 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001812 }
Nicolai Hähnlef3467812017-03-23 19:36:31 +01001813
1814 if (fence && f) {
1815 dma_fence_put(*fence);
1816 *fence = f;
1817 } else {
1818 dma_fence_put(f);
1819 }
1820
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001821 return 0;
1822
1823}
1824
1825/**
1826 * amdgpu_vm_clear_invalids - clear invalidated BOs in the PT
1827 *
1828 * @adev: amdgpu_device pointer
1829 * @vm: requested vm
1830 *
1831 * Make sure all invalidated BOs are cleared in the PT.
1832 * Returns 0 for success.
1833 *
1834 * PTs have to be reserved and mutex must be locked!
1835 */
1836int amdgpu_vm_clear_invalids(struct amdgpu_device *adev,
monk.liucfe2c972015-05-26 15:01:54 +08001837 struct amdgpu_vm *vm, struct amdgpu_sync *sync)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001838{
monk.liucfe2c972015-05-26 15:01:54 +08001839 struct amdgpu_bo_va *bo_va = NULL;
Christian König91e1a522015-07-06 22:06:40 +02001840 int r = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001841
1842 spin_lock(&vm->status_lock);
1843 while (!list_empty(&vm->invalidated)) {
1844 bo_va = list_first_entry(&vm->invalidated,
1845 struct amdgpu_bo_va, vm_status);
1846 spin_unlock(&vm->status_lock);
Christian König32b41ac2016-03-08 18:03:27 +01001847
Christian König99e124f2016-08-16 14:43:17 +02001848 r = amdgpu_vm_bo_update(adev, bo_va, true);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001849 if (r)
1850 return r;
1851
1852 spin_lock(&vm->status_lock);
1853 }
1854 spin_unlock(&vm->status_lock);
1855
monk.liucfe2c972015-05-26 15:01:54 +08001856 if (bo_va)
Chunming Zhoubb1e38a42015-08-03 18:19:38 +08001857 r = amdgpu_sync_fence(adev, sync, bo_va->last_pt_update);
Christian König91e1a522015-07-06 22:06:40 +02001858
1859 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001860}
1861
1862/**
1863 * amdgpu_vm_bo_add - add a bo to a specific vm
1864 *
1865 * @adev: amdgpu_device pointer
1866 * @vm: requested vm
1867 * @bo: amdgpu buffer object
1868 *
Christian König8843dbb2016-01-26 12:17:11 +01001869 * Add @bo into the requested vm.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001870 * Add @bo to the list of bos associated with the vm
1871 * Returns newly added bo_va or NULL for failure
1872 *
1873 * Object has to be reserved!
1874 */
1875struct amdgpu_bo_va *amdgpu_vm_bo_add(struct amdgpu_device *adev,
1876 struct amdgpu_vm *vm,
1877 struct amdgpu_bo *bo)
1878{
1879 struct amdgpu_bo_va *bo_va;
1880
1881 bo_va = kzalloc(sizeof(struct amdgpu_bo_va), GFP_KERNEL);
1882 if (bo_va == NULL) {
1883 return NULL;
1884 }
1885 bo_va->vm = vm;
1886 bo_va->bo = bo;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001887 bo_va->ref_count = 1;
1888 INIT_LIST_HEAD(&bo_va->bo_list);
Christian König7fc11952015-07-30 11:53:42 +02001889 INIT_LIST_HEAD(&bo_va->valids);
1890 INIT_LIST_HEAD(&bo_va->invalids);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001891 INIT_LIST_HEAD(&bo_va->vm_status);
Christian König32b41ac2016-03-08 18:03:27 +01001892
Christian Königa5f6b5b2017-01-30 11:01:38 +01001893 if (bo)
1894 list_add_tail(&bo_va->bo_list, &bo->va);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001895
1896 return bo_va;
1897}
1898
1899/**
1900 * amdgpu_vm_bo_map - map bo inside a vm
1901 *
1902 * @adev: amdgpu_device pointer
1903 * @bo_va: bo_va to store the address
1904 * @saddr: where to map the BO
1905 * @offset: requested offset in the BO
1906 * @flags: attributes of pages (read/write/valid/etc.)
1907 *
1908 * Add a mapping of the BO at the specefied addr into the VM.
1909 * Returns 0 for success, error for failure.
1910 *
Chunming Zhou49b02b12015-11-13 14:18:38 +08001911 * Object has to be reserved and unreserved outside!
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001912 */
1913int amdgpu_vm_bo_map(struct amdgpu_device *adev,
1914 struct amdgpu_bo_va *bo_va,
1915 uint64_t saddr, uint64_t offset,
Christian König268c3002017-01-18 14:49:43 +01001916 uint64_t size, uint64_t flags)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001917{
Christian Königa9f87f62017-03-30 14:03:59 +02001918 struct amdgpu_bo_va_mapping *mapping, *tmp;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001919 struct amdgpu_vm *vm = bo_va->vm;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001920 uint64_t eaddr;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001921
Christian König0be52de2015-05-18 14:37:27 +02001922 /* validate the parameters */
1923 if (saddr & AMDGPU_GPU_PAGE_MASK || offset & AMDGPU_GPU_PAGE_MASK ||
Chunming Zhou49b02b12015-11-13 14:18:38 +08001924 size == 0 || size & AMDGPU_GPU_PAGE_MASK)
Christian König0be52de2015-05-18 14:37:27 +02001925 return -EINVAL;
Christian König0be52de2015-05-18 14:37:27 +02001926
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001927 /* make sure object fit at this offset */
Felix Kuehling005ae952015-11-23 17:43:48 -05001928 eaddr = saddr + size - 1;
Christian Königa5f6b5b2017-01-30 11:01:38 +01001929 if (saddr >= eaddr ||
1930 (bo_va->bo && offset + size > amdgpu_bo_size(bo_va->bo)))
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001931 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001932
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001933 saddr /= AMDGPU_GPU_PAGE_SIZE;
1934 eaddr /= AMDGPU_GPU_PAGE_SIZE;
1935
Christian Königa9f87f62017-03-30 14:03:59 +02001936 tmp = amdgpu_vm_it_iter_first(&vm->va, saddr, eaddr);
1937 if (tmp) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001938 /* bo and tmp overlap, invalid addr */
1939 dev_err(adev->dev, "bo %p va 0x%010Lx-0x%010Lx conflict with "
Christian Königa9f87f62017-03-30 14:03:59 +02001940 "0x%010Lx-0x%010Lx\n", bo_va->bo, saddr, eaddr,
1941 tmp->start, tmp->last + 1);
Christian König663e4572017-03-13 10:13:37 +01001942 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001943 }
1944
1945 mapping = kmalloc(sizeof(*mapping), GFP_KERNEL);
Christian König663e4572017-03-13 10:13:37 +01001946 if (!mapping)
1947 return -ENOMEM;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001948
1949 INIT_LIST_HEAD(&mapping->list);
Christian Königa9f87f62017-03-30 14:03:59 +02001950 mapping->start = saddr;
1951 mapping->last = eaddr;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001952 mapping->offset = offset;
1953 mapping->flags = flags;
1954
Christian König7fc11952015-07-30 11:53:42 +02001955 list_add(&mapping->list, &bo_va->invalids);
Christian Königa9f87f62017-03-30 14:03:59 +02001956 amdgpu_vm_it_insert(mapping, &vm->va);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001957
Christian König4388fc22017-03-13 10:13:36 +01001958 if (flags & AMDGPU_PTE_PRT)
1959 amdgpu_vm_prt_get(adev);
1960
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001961 return 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001962}
1963
1964/**
Christian König80f95c52017-03-13 10:13:39 +01001965 * amdgpu_vm_bo_replace_map - map bo inside a vm, replacing existing mappings
1966 *
1967 * @adev: amdgpu_device pointer
1968 * @bo_va: bo_va to store the address
1969 * @saddr: where to map the BO
1970 * @offset: requested offset in the BO
1971 * @flags: attributes of pages (read/write/valid/etc.)
1972 *
1973 * Add a mapping of the BO at the specefied addr into the VM. Replace existing
1974 * mappings as we do so.
1975 * Returns 0 for success, error for failure.
1976 *
1977 * Object has to be reserved and unreserved outside!
1978 */
1979int amdgpu_vm_bo_replace_map(struct amdgpu_device *adev,
1980 struct amdgpu_bo_va *bo_va,
1981 uint64_t saddr, uint64_t offset,
1982 uint64_t size, uint64_t flags)
1983{
1984 struct amdgpu_bo_va_mapping *mapping;
1985 struct amdgpu_vm *vm = bo_va->vm;
1986 uint64_t eaddr;
1987 int r;
1988
1989 /* validate the parameters */
1990 if (saddr & AMDGPU_GPU_PAGE_MASK || offset & AMDGPU_GPU_PAGE_MASK ||
1991 size == 0 || size & AMDGPU_GPU_PAGE_MASK)
1992 return -EINVAL;
1993
1994 /* make sure object fit at this offset */
1995 eaddr = saddr + size - 1;
1996 if (saddr >= eaddr ||
1997 (bo_va->bo && offset + size > amdgpu_bo_size(bo_va->bo)))
1998 return -EINVAL;
1999
2000 /* Allocate all the needed memory */
2001 mapping = kmalloc(sizeof(*mapping), GFP_KERNEL);
2002 if (!mapping)
2003 return -ENOMEM;
2004
2005 r = amdgpu_vm_bo_clear_mappings(adev, bo_va->vm, saddr, size);
2006 if (r) {
2007 kfree(mapping);
2008 return r;
2009 }
2010
2011 saddr /= AMDGPU_GPU_PAGE_SIZE;
2012 eaddr /= AMDGPU_GPU_PAGE_SIZE;
2013
Christian Königa9f87f62017-03-30 14:03:59 +02002014 mapping->start = saddr;
2015 mapping->last = eaddr;
Christian König80f95c52017-03-13 10:13:39 +01002016 mapping->offset = offset;
2017 mapping->flags = flags;
2018
2019 list_add(&mapping->list, &bo_va->invalids);
Christian Königa9f87f62017-03-30 14:03:59 +02002020 amdgpu_vm_it_insert(mapping, &vm->va);
Christian König80f95c52017-03-13 10:13:39 +01002021
2022 if (flags & AMDGPU_PTE_PRT)
2023 amdgpu_vm_prt_get(adev);
2024
2025 return 0;
2026}
2027
2028/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002029 * amdgpu_vm_bo_unmap - remove bo mapping from vm
2030 *
2031 * @adev: amdgpu_device pointer
2032 * @bo_va: bo_va to remove the address from
2033 * @saddr: where to the BO is mapped
2034 *
2035 * Remove a mapping of the BO at the specefied addr from the VM.
2036 * Returns 0 for success, error for failure.
2037 *
Chunming Zhou49b02b12015-11-13 14:18:38 +08002038 * Object has to be reserved and unreserved outside!
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002039 */
2040int amdgpu_vm_bo_unmap(struct amdgpu_device *adev,
2041 struct amdgpu_bo_va *bo_va,
2042 uint64_t saddr)
2043{
2044 struct amdgpu_bo_va_mapping *mapping;
2045 struct amdgpu_vm *vm = bo_va->vm;
Christian König7fc11952015-07-30 11:53:42 +02002046 bool valid = true;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002047
Christian König6c7fc502015-06-05 20:56:17 +02002048 saddr /= AMDGPU_GPU_PAGE_SIZE;
Christian König32b41ac2016-03-08 18:03:27 +01002049
Christian König7fc11952015-07-30 11:53:42 +02002050 list_for_each_entry(mapping, &bo_va->valids, list) {
Christian Königa9f87f62017-03-30 14:03:59 +02002051 if (mapping->start == saddr)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002052 break;
2053 }
2054
Christian König7fc11952015-07-30 11:53:42 +02002055 if (&mapping->list == &bo_va->valids) {
2056 valid = false;
2057
2058 list_for_each_entry(mapping, &bo_va->invalids, list) {
Christian Königa9f87f62017-03-30 14:03:59 +02002059 if (mapping->start == saddr)
Christian König7fc11952015-07-30 11:53:42 +02002060 break;
2061 }
2062
Christian König32b41ac2016-03-08 18:03:27 +01002063 if (&mapping->list == &bo_va->invalids)
Christian König7fc11952015-07-30 11:53:42 +02002064 return -ENOENT;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002065 }
Christian König32b41ac2016-03-08 18:03:27 +01002066
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002067 list_del(&mapping->list);
Christian Königa9f87f62017-03-30 14:03:59 +02002068 amdgpu_vm_it_remove(mapping, &vm->va);
Christian König93e3e432015-06-09 16:58:33 +02002069 trace_amdgpu_vm_bo_unmap(bo_va, mapping);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002070
Christian Könige17841b2016-03-08 17:52:01 +01002071 if (valid)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002072 list_add(&mapping->list, &vm->freed);
Christian Könige17841b2016-03-08 17:52:01 +01002073 else
Christian König284710f2017-01-30 11:09:31 +01002074 amdgpu_vm_free_mapping(adev, vm, mapping,
2075 bo_va->last_pt_update);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002076
2077 return 0;
2078}
2079
2080/**
Christian Königdc54d3d2017-03-13 10:13:38 +01002081 * amdgpu_vm_bo_clear_mappings - remove all mappings in a specific range
2082 *
2083 * @adev: amdgpu_device pointer
2084 * @vm: VM structure to use
2085 * @saddr: start of the range
2086 * @size: size of the range
2087 *
2088 * Remove all mappings in a range, split them as appropriate.
2089 * Returns 0 for success, error for failure.
2090 */
2091int amdgpu_vm_bo_clear_mappings(struct amdgpu_device *adev,
2092 struct amdgpu_vm *vm,
2093 uint64_t saddr, uint64_t size)
2094{
2095 struct amdgpu_bo_va_mapping *before, *after, *tmp, *next;
Christian Königdc54d3d2017-03-13 10:13:38 +01002096 LIST_HEAD(removed);
2097 uint64_t eaddr;
2098
2099 eaddr = saddr + size - 1;
2100 saddr /= AMDGPU_GPU_PAGE_SIZE;
2101 eaddr /= AMDGPU_GPU_PAGE_SIZE;
2102
2103 /* Allocate all the needed memory */
2104 before = kzalloc(sizeof(*before), GFP_KERNEL);
2105 if (!before)
2106 return -ENOMEM;
Junwei Zhang27f6d612017-03-16 16:09:24 +08002107 INIT_LIST_HEAD(&before->list);
Christian Königdc54d3d2017-03-13 10:13:38 +01002108
2109 after = kzalloc(sizeof(*after), GFP_KERNEL);
2110 if (!after) {
2111 kfree(before);
2112 return -ENOMEM;
2113 }
Junwei Zhang27f6d612017-03-16 16:09:24 +08002114 INIT_LIST_HEAD(&after->list);
Christian Königdc54d3d2017-03-13 10:13:38 +01002115
2116 /* Now gather all removed mappings */
Christian Königa9f87f62017-03-30 14:03:59 +02002117 tmp = amdgpu_vm_it_iter_first(&vm->va, saddr, eaddr);
2118 while (tmp) {
Christian Königdc54d3d2017-03-13 10:13:38 +01002119 /* Remember mapping split at the start */
Christian Königa9f87f62017-03-30 14:03:59 +02002120 if (tmp->start < saddr) {
2121 before->start = tmp->start;
2122 before->last = saddr - 1;
Christian Königdc54d3d2017-03-13 10:13:38 +01002123 before->offset = tmp->offset;
2124 before->flags = tmp->flags;
2125 list_add(&before->list, &tmp->list);
2126 }
2127
2128 /* Remember mapping split at the end */
Christian Königa9f87f62017-03-30 14:03:59 +02002129 if (tmp->last > eaddr) {
2130 after->start = eaddr + 1;
2131 after->last = tmp->last;
Christian Königdc54d3d2017-03-13 10:13:38 +01002132 after->offset = tmp->offset;
Christian Königa9f87f62017-03-30 14:03:59 +02002133 after->offset += after->start - tmp->start;
Christian Königdc54d3d2017-03-13 10:13:38 +01002134 after->flags = tmp->flags;
2135 list_add(&after->list, &tmp->list);
2136 }
2137
2138 list_del(&tmp->list);
2139 list_add(&tmp->list, &removed);
Christian Königa9f87f62017-03-30 14:03:59 +02002140
2141 tmp = amdgpu_vm_it_iter_next(tmp, saddr, eaddr);
Christian Königdc54d3d2017-03-13 10:13:38 +01002142 }
2143
2144 /* And free them up */
2145 list_for_each_entry_safe(tmp, next, &removed, list) {
Christian Königa9f87f62017-03-30 14:03:59 +02002146 amdgpu_vm_it_remove(tmp, &vm->va);
Christian Königdc54d3d2017-03-13 10:13:38 +01002147 list_del(&tmp->list);
2148
Christian Königa9f87f62017-03-30 14:03:59 +02002149 if (tmp->start < saddr)
2150 tmp->start = saddr;
2151 if (tmp->last > eaddr)
2152 tmp->last = eaddr;
Christian Königdc54d3d2017-03-13 10:13:38 +01002153
2154 list_add(&tmp->list, &vm->freed);
2155 trace_amdgpu_vm_bo_unmap(NULL, tmp);
2156 }
2157
Junwei Zhang27f6d612017-03-16 16:09:24 +08002158 /* Insert partial mapping before the range */
2159 if (!list_empty(&before->list)) {
Christian Königa9f87f62017-03-30 14:03:59 +02002160 amdgpu_vm_it_insert(before, &vm->va);
Christian Königdc54d3d2017-03-13 10:13:38 +01002161 if (before->flags & AMDGPU_PTE_PRT)
2162 amdgpu_vm_prt_get(adev);
2163 } else {
2164 kfree(before);
2165 }
2166
2167 /* Insert partial mapping after the range */
Junwei Zhang27f6d612017-03-16 16:09:24 +08002168 if (!list_empty(&after->list)) {
Christian Königa9f87f62017-03-30 14:03:59 +02002169 amdgpu_vm_it_insert(after, &vm->va);
Christian Königdc54d3d2017-03-13 10:13:38 +01002170 if (after->flags & AMDGPU_PTE_PRT)
2171 amdgpu_vm_prt_get(adev);
2172 } else {
2173 kfree(after);
2174 }
2175
2176 return 0;
2177}
2178
2179/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002180 * amdgpu_vm_bo_rmv - remove a bo to a specific vm
2181 *
2182 * @adev: amdgpu_device pointer
2183 * @bo_va: requested bo_va
2184 *
Christian König8843dbb2016-01-26 12:17:11 +01002185 * Remove @bo_va->bo from the requested vm.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002186 *
2187 * Object have to be reserved!
2188 */
2189void amdgpu_vm_bo_rmv(struct amdgpu_device *adev,
2190 struct amdgpu_bo_va *bo_va)
2191{
2192 struct amdgpu_bo_va_mapping *mapping, *next;
2193 struct amdgpu_vm *vm = bo_va->vm;
2194
2195 list_del(&bo_va->bo_list);
2196
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002197 spin_lock(&vm->status_lock);
2198 list_del(&bo_va->vm_status);
2199 spin_unlock(&vm->status_lock);
2200
Christian König7fc11952015-07-30 11:53:42 +02002201 list_for_each_entry_safe(mapping, next, &bo_va->valids, list) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002202 list_del(&mapping->list);
Christian Königa9f87f62017-03-30 14:03:59 +02002203 amdgpu_vm_it_remove(mapping, &vm->va);
Christian König93e3e432015-06-09 16:58:33 +02002204 trace_amdgpu_vm_bo_unmap(bo_va, mapping);
Christian König7fc11952015-07-30 11:53:42 +02002205 list_add(&mapping->list, &vm->freed);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002206 }
Christian König7fc11952015-07-30 11:53:42 +02002207 list_for_each_entry_safe(mapping, next, &bo_va->invalids, list) {
2208 list_del(&mapping->list);
Christian Königa9f87f62017-03-30 14:03:59 +02002209 amdgpu_vm_it_remove(mapping, &vm->va);
Christian König284710f2017-01-30 11:09:31 +01002210 amdgpu_vm_free_mapping(adev, vm, mapping,
2211 bo_va->last_pt_update);
Christian König7fc11952015-07-30 11:53:42 +02002212 }
Christian König32b41ac2016-03-08 18:03:27 +01002213
Chris Wilsonf54d1862016-10-25 13:00:45 +01002214 dma_fence_put(bo_va->last_pt_update);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002215 kfree(bo_va);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002216}
2217
2218/**
2219 * amdgpu_vm_bo_invalidate - mark the bo as invalid
2220 *
2221 * @adev: amdgpu_device pointer
2222 * @vm: requested vm
2223 * @bo: amdgpu buffer object
2224 *
Christian König8843dbb2016-01-26 12:17:11 +01002225 * Mark @bo as invalid.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002226 */
2227void amdgpu_vm_bo_invalidate(struct amdgpu_device *adev,
2228 struct amdgpu_bo *bo)
2229{
2230 struct amdgpu_bo_va *bo_va;
2231
2232 list_for_each_entry(bo_va, &bo->va, bo_list) {
Christian König7fc11952015-07-30 11:53:42 +02002233 spin_lock(&bo_va->vm->status_lock);
2234 if (list_empty(&bo_va->vm_status))
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002235 list_add(&bo_va->vm_status, &bo_va->vm->invalidated);
Christian König7fc11952015-07-30 11:53:42 +02002236 spin_unlock(&bo_va->vm->status_lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002237 }
2238}
2239
Junwei Zhangbab4fee2017-04-05 13:54:56 +08002240static uint32_t amdgpu_vm_get_block_size(uint64_t vm_size)
2241{
2242 /* Total bits covered by PD + PTs */
2243 unsigned bits = ilog2(vm_size) + 18;
2244
2245 /* Make sure the PD is 4K in size up to 8GB address space.
2246 Above that split equal between PD and PTs */
2247 if (vm_size <= 8)
2248 return (bits - 9);
2249 else
2250 return ((bits + 3) / 2);
2251}
2252
2253/**
2254 * amdgpu_vm_adjust_size - adjust vm size and block size
2255 *
2256 * @adev: amdgpu_device pointer
2257 * @vm_size: the default vm size if it's set auto
2258 */
2259void amdgpu_vm_adjust_size(struct amdgpu_device *adev, uint64_t vm_size)
2260{
2261 /* adjust vm size firstly */
2262 if (amdgpu_vm_size == -1)
2263 adev->vm_manager.vm_size = vm_size;
2264 else
2265 adev->vm_manager.vm_size = amdgpu_vm_size;
2266
2267 /* block size depends on vm size */
2268 if (amdgpu_vm_block_size == -1)
2269 adev->vm_manager.block_size =
2270 amdgpu_vm_get_block_size(adev->vm_manager.vm_size);
2271 else
2272 adev->vm_manager.block_size = amdgpu_vm_block_size;
2273
2274 DRM_INFO("vm size is %llu GB, block size is %u-bit\n",
2275 adev->vm_manager.vm_size, adev->vm_manager.block_size);
2276}
2277
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002278/**
2279 * amdgpu_vm_init - initialize a vm instance
2280 *
2281 * @adev: amdgpu_device pointer
2282 * @vm: requested vm
2283 *
Christian König8843dbb2016-01-26 12:17:11 +01002284 * Init @vm fields.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002285 */
2286int amdgpu_vm_init(struct amdgpu_device *adev, struct amdgpu_vm *vm)
2287{
2288 const unsigned align = min(AMDGPU_VM_PTB_ALIGN_SIZE,
Zhang, Jerry36b32a62017-03-29 16:08:32 +08002289 AMDGPU_VM_PTE_COUNT(adev) * 8);
Christian König2d55e452016-02-08 17:37:38 +01002290 unsigned ring_instance;
2291 struct amdgpu_ring *ring;
Christian König2bd9ccf2016-02-01 12:53:58 +01002292 struct amd_sched_rq *rq;
Chunming Zhou36bbf3b2017-04-20 16:17:34 +08002293 int r, i;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002294
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002295 vm->va = RB_ROOT;
Chunming Zhou031e2982016-04-25 10:19:13 +08002296 vm->client_id = atomic64_inc_return(&adev->vm_manager.client_counter);
Chunming Zhou36bbf3b2017-04-20 16:17:34 +08002297 for (i = 0; i < AMDGPU_MAX_VMHUBS; i++)
2298 vm->reserved_vmid[i] = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002299 spin_lock_init(&vm->status_lock);
2300 INIT_LIST_HEAD(&vm->invalidated);
Christian König7fc11952015-07-30 11:53:42 +02002301 INIT_LIST_HEAD(&vm->cleared);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002302 INIT_LIST_HEAD(&vm->freed);
Christian König20250212016-03-08 17:58:35 +01002303
Christian König2bd9ccf2016-02-01 12:53:58 +01002304 /* create scheduler entity for page table updates */
Christian König2d55e452016-02-08 17:37:38 +01002305
2306 ring_instance = atomic_inc_return(&adev->vm_manager.vm_pte_next_ring);
2307 ring_instance %= adev->vm_manager.vm_pte_num_rings;
2308 ring = adev->vm_manager.vm_pte_rings[ring_instance];
Christian König2bd9ccf2016-02-01 12:53:58 +01002309 rq = &ring->sched.sched_rq[AMD_SCHED_PRIORITY_KERNEL];
2310 r = amd_sched_entity_init(&ring->sched, &vm->entity,
2311 rq, amdgpu_sched_jobs);
2312 if (r)
Christian Königf566ceb2016-10-27 20:04:38 +02002313 return r;
Christian König2bd9ccf2016-02-01 12:53:58 +01002314
Christian Königa24960f2016-10-12 13:20:52 +02002315 vm->last_dir_update = NULL;
Bas Nieuwenhuizen05906de2015-08-14 20:08:40 +02002316
Christian Königf566ceb2016-10-27 20:04:38 +02002317 r = amdgpu_bo_create(adev, amdgpu_vm_bo_size(adev, 0), align, true,
Alex Deucher857d9132015-08-27 00:14:16 -04002318 AMDGPU_GEM_DOMAIN_VRAM,
Chunming Zhou1baa4392016-08-04 13:59:32 +08002319 AMDGPU_GEM_CREATE_NO_CPU_ACCESS |
Christian König03f48dd2016-08-15 17:00:22 +02002320 AMDGPU_GEM_CREATE_SHADOW |
Christian König617859e2016-11-17 15:40:02 +01002321 AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS |
2322 AMDGPU_GEM_CREATE_VRAM_CLEARED,
Christian König67003a12016-10-12 14:46:26 +02002323 NULL, NULL, &vm->root.bo);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002324 if (r)
Christian König2bd9ccf2016-02-01 12:53:58 +01002325 goto error_free_sched_entity;
2326
Christian König67003a12016-10-12 14:46:26 +02002327 r = amdgpu_bo_reserve(vm->root.bo, false);
Christian König2bd9ccf2016-02-01 12:53:58 +01002328 if (r)
Christian König67003a12016-10-12 14:46:26 +02002329 goto error_free_root;
Christian König2bd9ccf2016-02-01 12:53:58 +01002330
Christian König5a712a82016-06-21 16:28:15 +02002331 vm->last_eviction_counter = atomic64_read(&adev->num_evictions);
Christian König67003a12016-10-12 14:46:26 +02002332 amdgpu_bo_unreserve(vm->root.bo);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002333
2334 return 0;
Christian König2bd9ccf2016-02-01 12:53:58 +01002335
Christian König67003a12016-10-12 14:46:26 +02002336error_free_root:
2337 amdgpu_bo_unref(&vm->root.bo->shadow);
2338 amdgpu_bo_unref(&vm->root.bo);
2339 vm->root.bo = NULL;
Christian König2bd9ccf2016-02-01 12:53:58 +01002340
2341error_free_sched_entity:
2342 amd_sched_entity_fini(&ring->sched, &vm->entity);
2343
2344 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002345}
2346
2347/**
Christian Königf566ceb2016-10-27 20:04:38 +02002348 * amdgpu_vm_free_levels - free PD/PT levels
2349 *
2350 * @level: PD/PT starting level to free
2351 *
2352 * Free the page directory or page table level and all sub levels.
2353 */
2354static void amdgpu_vm_free_levels(struct amdgpu_vm_pt *level)
2355{
2356 unsigned i;
2357
2358 if (level->bo) {
2359 amdgpu_bo_unref(&level->bo->shadow);
2360 amdgpu_bo_unref(&level->bo);
2361 }
2362
2363 if (level->entries)
2364 for (i = 0; i <= level->last_entry_used; i++)
2365 amdgpu_vm_free_levels(&level->entries[i]);
2366
2367 drm_free_large(level->entries);
2368}
2369
2370/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002371 * amdgpu_vm_fini - tear down a vm instance
2372 *
2373 * @adev: amdgpu_device pointer
2374 * @vm: requested vm
2375 *
Christian König8843dbb2016-01-26 12:17:11 +01002376 * Tear down @vm.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002377 * Unbind the VM and remove all bos from the vm bo list
2378 */
2379void amdgpu_vm_fini(struct amdgpu_device *adev, struct amdgpu_vm *vm)
2380{
2381 struct amdgpu_bo_va_mapping *mapping, *tmp;
Christian König4388fc22017-03-13 10:13:36 +01002382 bool prt_fini_needed = !!adev->gart.gart_funcs->set_prt;
Chunming Zhou36bbf3b2017-04-20 16:17:34 +08002383 int i;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002384
Christian König2d55e452016-02-08 17:37:38 +01002385 amd_sched_entity_fini(vm->entity.sched, &vm->entity);
Christian König2bd9ccf2016-02-01 12:53:58 +01002386
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002387 if (!RB_EMPTY_ROOT(&vm->va)) {
2388 dev_err(adev->dev, "still active bo inside vm\n");
2389 }
Christian Königa9f87f62017-03-30 14:03:59 +02002390 rbtree_postorder_for_each_entry_safe(mapping, tmp, &vm->va, rb) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002391 list_del(&mapping->list);
Christian Königa9f87f62017-03-30 14:03:59 +02002392 amdgpu_vm_it_remove(mapping, &vm->va);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002393 kfree(mapping);
2394 }
2395 list_for_each_entry_safe(mapping, tmp, &vm->freed, list) {
Christian König4388fc22017-03-13 10:13:36 +01002396 if (mapping->flags & AMDGPU_PTE_PRT && prt_fini_needed) {
Christian König451bc8e2017-02-14 16:02:52 +01002397 amdgpu_vm_prt_fini(adev, vm);
Christian König4388fc22017-03-13 10:13:36 +01002398 prt_fini_needed = false;
Christian König451bc8e2017-02-14 16:02:52 +01002399 }
Christian König284710f2017-01-30 11:09:31 +01002400
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002401 list_del(&mapping->list);
Christian König451bc8e2017-02-14 16:02:52 +01002402 amdgpu_vm_free_mapping(adev, vm, mapping, NULL);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002403 }
2404
Christian Königf566ceb2016-10-27 20:04:38 +02002405 amdgpu_vm_free_levels(&vm->root);
Christian Königa24960f2016-10-12 13:20:52 +02002406 dma_fence_put(vm->last_dir_update);
Chunming Zhou1e9ef262017-04-20 16:18:48 +08002407 for (i = 0; i < AMDGPU_MAX_VMHUBS; i++)
2408 amdgpu_vm_free_reserved_vmid(adev, vm, i);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002409}
Christian Königea89f8c2015-11-15 20:52:06 +01002410
2411/**
Christian Königa9a78b32016-01-21 10:19:11 +01002412 * amdgpu_vm_manager_init - init the VM manager
2413 *
2414 * @adev: amdgpu_device pointer
2415 *
2416 * Initialize the VM manager structures
2417 */
2418void amdgpu_vm_manager_init(struct amdgpu_device *adev)
2419{
Christian König76456702017-04-06 17:52:39 +02002420 unsigned i, j;
Christian Königa9a78b32016-01-21 10:19:11 +01002421
Christian König76456702017-04-06 17:52:39 +02002422 for (i = 0; i < AMDGPU_MAX_VMHUBS; ++i) {
2423 struct amdgpu_vm_id_manager *id_mgr =
2424 &adev->vm_manager.id_mgr[i];
Christian Königa9a78b32016-01-21 10:19:11 +01002425
Christian König76456702017-04-06 17:52:39 +02002426 mutex_init(&id_mgr->lock);
2427 INIT_LIST_HEAD(&id_mgr->ids_lru);
Chunming Zhouc3505772017-04-21 15:51:04 +08002428 atomic_set(&id_mgr->reserved_vmid_num, 0);
Christian König76456702017-04-06 17:52:39 +02002429
2430 /* skip over VMID 0, since it is the system VM */
2431 for (j = 1; j < id_mgr->num_ids; ++j) {
2432 amdgpu_vm_reset_id(adev, i, j);
2433 amdgpu_sync_create(&id_mgr->ids[i].active);
2434 list_add_tail(&id_mgr->ids[j].list, &id_mgr->ids_lru);
2435 }
Christian König971fe9a92016-03-01 15:09:25 +01002436 }
Christian König2d55e452016-02-08 17:37:38 +01002437
Chris Wilsonf54d1862016-10-25 13:00:45 +01002438 adev->vm_manager.fence_context =
2439 dma_fence_context_alloc(AMDGPU_MAX_RINGS);
Christian König1fbb2e92016-06-01 10:47:36 +02002440 for (i = 0; i < AMDGPU_MAX_RINGS; ++i)
2441 adev->vm_manager.seqno[i] = 0;
2442
Christian König2d55e452016-02-08 17:37:38 +01002443 atomic_set(&adev->vm_manager.vm_pte_next_ring, 0);
Christian Königb1c8a812016-05-04 10:34:03 +02002444 atomic64_set(&adev->vm_manager.client_counter, 0);
Christian König284710f2017-01-30 11:09:31 +01002445 spin_lock_init(&adev->vm_manager.prt_lock);
Christian König451bc8e2017-02-14 16:02:52 +01002446 atomic_set(&adev->vm_manager.num_prt_users, 0);
Christian Königa9a78b32016-01-21 10:19:11 +01002447}
2448
2449/**
Christian Königea89f8c2015-11-15 20:52:06 +01002450 * amdgpu_vm_manager_fini - cleanup VM manager
2451 *
2452 * @adev: amdgpu_device pointer
2453 *
2454 * Cleanup the VM manager and free resources.
2455 */
2456void amdgpu_vm_manager_fini(struct amdgpu_device *adev)
2457{
Christian König76456702017-04-06 17:52:39 +02002458 unsigned i, j;
Christian Königea89f8c2015-11-15 20:52:06 +01002459
Christian König76456702017-04-06 17:52:39 +02002460 for (i = 0; i < AMDGPU_MAX_VMHUBS; ++i) {
2461 struct amdgpu_vm_id_manager *id_mgr =
2462 &adev->vm_manager.id_mgr[i];
Christian Königbcb1ba32016-03-08 15:40:11 +01002463
Christian König76456702017-04-06 17:52:39 +02002464 mutex_destroy(&id_mgr->lock);
2465 for (j = 0; j < AMDGPU_NUM_VM; ++j) {
2466 struct amdgpu_vm_id *id = &id_mgr->ids[j];
2467
2468 amdgpu_sync_free(&id->active);
2469 dma_fence_put(id->flushed_updates);
2470 dma_fence_put(id->last_flush);
2471 }
Christian Königbcb1ba32016-03-08 15:40:11 +01002472 }
Christian Königea89f8c2015-11-15 20:52:06 +01002473}
Chunming Zhoucfbcacf2017-04-24 11:09:04 +08002474
2475int amdgpu_vm_ioctl(struct drm_device *dev, void *data, struct drm_file *filp)
2476{
2477 union drm_amdgpu_vm *args = data;
Chunming Zhou1e9ef262017-04-20 16:18:48 +08002478 struct amdgpu_device *adev = dev->dev_private;
2479 struct amdgpu_fpriv *fpriv = filp->driver_priv;
2480 int r;
Chunming Zhoucfbcacf2017-04-24 11:09:04 +08002481
2482 switch (args->in.op) {
2483 case AMDGPU_VM_OP_RESERVE_VMID:
Chunming Zhou1e9ef262017-04-20 16:18:48 +08002484 /* current, we only have requirement to reserve vmid from gfxhub */
2485 r = amdgpu_vm_alloc_reserved_vmid(adev, &fpriv->vm,
2486 AMDGPU_GFXHUB);
2487 if (r)
2488 return r;
2489 break;
Chunming Zhoucfbcacf2017-04-24 11:09:04 +08002490 case AMDGPU_VM_OP_UNRESERVE_VMID:
Chunming Zhou1e9ef262017-04-20 16:18:48 +08002491 amdgpu_vm_free_reserved_vmid(adev, &fpriv->vm, AMDGPU_GFXHUB);
Chunming Zhoucfbcacf2017-04-24 11:09:04 +08002492 break;
2493 default:
2494 return -EINVAL;
2495 }
2496
2497 return 0;
2498}