blob: 86ef0cdfd04dfc0eb99a228e19595827ed7f9768 [file] [log] [blame]
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001/*
2 * Copyright 2008 Advanced Micro Devices, Inc.
3 * Copyright 2008 Red Hat Inc.
4 * Copyright 2009 Jerome Glisse.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
20 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22 * OTHER DEALINGS IN THE SOFTWARE.
23 *
24 * Authors: Dave Airlie
25 * Alex Deucher
26 * Jerome Glisse
27 */
Chris Wilsonf54d1862016-10-25 13:00:45 +010028#include <linux/dma-fence-array.h>
Christian Königa9f87f62017-03-30 14:03:59 +020029#include <linux/interval_tree_generic.h>
Alex Deucherd38ceaf2015-04-20 16:55:21 -040030#include <drm/drmP.h>
31#include <drm/amdgpu_drm.h>
32#include "amdgpu.h"
33#include "amdgpu_trace.h"
34
35/*
36 * GPUVM
37 * GPUVM is similar to the legacy gart on older asics, however
38 * rather than there being a single global gart table
39 * for the entire GPU, there are multiple VM page tables active
40 * at any given time. The VM page tables can contain a mix
41 * vram pages and system memory pages and system memory pages
42 * can be mapped as snooped (cached system pages) or unsnooped
43 * (uncached system pages).
44 * Each VM has an ID associated with it and there is a page table
45 * associated with each VMID. When execting a command buffer,
46 * the kernel tells the the ring what VMID to use for that command
47 * buffer. VMIDs are allocated dynamically as commands are submitted.
48 * The userspace drivers maintain their own address space and the kernel
49 * sets up their pages tables accordingly when they submit their
50 * command buffers and a VMID is assigned.
51 * Cayman/Trinity support up to 8 active VMs at any given time;
52 * SI supports 16.
53 */
54
Christian Königa9f87f62017-03-30 14:03:59 +020055#define START(node) ((node)->start)
56#define LAST(node) ((node)->last)
57
58INTERVAL_TREE_DEFINE(struct amdgpu_bo_va_mapping, rb, uint64_t, __subtree_last,
59 START, LAST, static, amdgpu_vm_it)
60
61#undef START
62#undef LAST
63
Harish Kasiviswanathanf4833c42016-04-21 10:40:18 -040064/* Local structure. Encapsulate some VM table update parameters to reduce
65 * the number of function parameters
66 */
Christian König29efc4f2016-08-04 14:52:50 +020067struct amdgpu_pte_update_params {
Christian König27c5f362016-08-04 15:02:49 +020068 /* amdgpu device we do this update for */
69 struct amdgpu_device *adev;
Christian König49ac8a22016-10-13 15:09:08 +020070 /* optional amdgpu_vm we do this update for */
71 struct amdgpu_vm *vm;
Harish Kasiviswanathanf4833c42016-04-21 10:40:18 -040072 /* address where to copy page table entries from */
73 uint64_t src;
Harish Kasiviswanathanf4833c42016-04-21 10:40:18 -040074 /* indirect buffer to fill with commands */
75 struct amdgpu_ib *ib;
Christian Königafef8b82016-08-12 13:29:18 +020076 /* Function which actually does the update */
77 void (*func)(struct amdgpu_pte_update_params *params, uint64_t pe,
78 uint64_t addr, unsigned count, uint32_t incr,
Chunming Zhou6b777602016-09-21 16:19:19 +080079 uint64_t flags);
Chunming Zhou4c7e8852016-08-15 11:46:21 +080080 /* indicate update pt or its shadow */
81 bool shadow;
Harish Kasiviswanathanf4833c42016-04-21 10:40:18 -040082};
83
Christian König284710f2017-01-30 11:09:31 +010084/* Helper to disable partial resident texture feature from a fence callback */
85struct amdgpu_prt_cb {
86 struct amdgpu_device *adev;
87 struct dma_fence_cb cb;
88};
89
Alex Deucherd38ceaf2015-04-20 16:55:21 -040090/**
Christian König72a7ec52016-10-19 11:03:57 +020091 * amdgpu_vm_num_entries - return the number of entries in a PD/PT
Alex Deucherd38ceaf2015-04-20 16:55:21 -040092 *
93 * @adev: amdgpu_device pointer
94 *
Christian König72a7ec52016-10-19 11:03:57 +020095 * Calculate the number of entries in a page directory or page table.
Alex Deucherd38ceaf2015-04-20 16:55:21 -040096 */
Christian König72a7ec52016-10-19 11:03:57 +020097static unsigned amdgpu_vm_num_entries(struct amdgpu_device *adev,
98 unsigned level)
Alex Deucherd38ceaf2015-04-20 16:55:21 -040099{
Christian König72a7ec52016-10-19 11:03:57 +0200100 if (level == 0)
101 /* For the root directory */
102 return adev->vm_manager.max_pfn >>
Zhang, Jerry36b32a62017-03-29 16:08:32 +0800103 (adev->vm_manager.block_size *
104 adev->vm_manager.num_level);
Christian König72a7ec52016-10-19 11:03:57 +0200105 else if (level == adev->vm_manager.num_level)
106 /* For the page tables on the leaves */
Zhang, Jerry36b32a62017-03-29 16:08:32 +0800107 return AMDGPU_VM_PTE_COUNT(adev);
Christian König72a7ec52016-10-19 11:03:57 +0200108 else
109 /* Everything in between */
Zhang, Jerry36b32a62017-03-29 16:08:32 +0800110 return 1 << adev->vm_manager.block_size;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400111}
112
113/**
Christian König72a7ec52016-10-19 11:03:57 +0200114 * amdgpu_vm_bo_size - returns the size of the BOs in bytes
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400115 *
116 * @adev: amdgpu_device pointer
117 *
Christian König72a7ec52016-10-19 11:03:57 +0200118 * Calculate the size of the BO for a page directory or page table in bytes.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400119 */
Christian König72a7ec52016-10-19 11:03:57 +0200120static unsigned amdgpu_vm_bo_size(struct amdgpu_device *adev, unsigned level)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400121{
Christian König72a7ec52016-10-19 11:03:57 +0200122 return AMDGPU_GPU_PAGE_ALIGN(amdgpu_vm_num_entries(adev, level) * 8);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400123}
124
125/**
Christian König56467eb2015-12-11 15:16:32 +0100126 * amdgpu_vm_get_pd_bo - add the VM PD to a validation list
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400127 *
128 * @vm: vm providing the BOs
Christian König3c0eea62015-12-11 14:39:05 +0100129 * @validated: head of validation list
Christian König56467eb2015-12-11 15:16:32 +0100130 * @entry: entry to add
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400131 *
132 * Add the page directory to the list of BOs to
Christian König56467eb2015-12-11 15:16:32 +0100133 * validate for command submission.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400134 */
Christian König56467eb2015-12-11 15:16:32 +0100135void amdgpu_vm_get_pd_bo(struct amdgpu_vm *vm,
136 struct list_head *validated,
137 struct amdgpu_bo_list_entry *entry)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400138{
Christian König67003a12016-10-12 14:46:26 +0200139 entry->robj = vm->root.bo;
Christian König56467eb2015-12-11 15:16:32 +0100140 entry->priority = 0;
Christian König67003a12016-10-12 14:46:26 +0200141 entry->tv.bo = &entry->robj->tbo;
Christian König56467eb2015-12-11 15:16:32 +0100142 entry->tv.shared = true;
Christian König2f568db2016-02-23 12:36:59 +0100143 entry->user_pages = NULL;
Christian König56467eb2015-12-11 15:16:32 +0100144 list_add(&entry->tv.head, validated);
145}
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400146
Christian König56467eb2015-12-11 15:16:32 +0100147/**
Christian König670fecc2016-10-12 15:36:57 +0200148 * amdgpu_vm_validate_layer - validate a single page table level
149 *
150 * @parent: parent page table level
151 * @validate: callback to do the validation
152 * @param: parameter for the validation callback
153 *
154 * Validate the page table BOs on command submission if neccessary.
155 */
156static int amdgpu_vm_validate_level(struct amdgpu_vm_pt *parent,
157 int (*validate)(void *, struct amdgpu_bo *),
158 void *param)
159{
160 unsigned i;
161 int r;
162
163 if (!parent->entries)
164 return 0;
165
166 for (i = 0; i <= parent->last_entry_used; ++i) {
167 struct amdgpu_vm_pt *entry = &parent->entries[i];
168
169 if (!entry->bo)
170 continue;
171
172 r = validate(param, entry->bo);
173 if (r)
174 return r;
175
176 /*
177 * Recurse into the sub directory. This is harmless because we
178 * have only a maximum of 5 layers.
179 */
180 r = amdgpu_vm_validate_level(entry, validate, param);
181 if (r)
182 return r;
183 }
184
185 return r;
186}
187
188/**
Christian Königf7da30d2016-09-28 12:03:04 +0200189 * amdgpu_vm_validate_pt_bos - validate the page table BOs
Christian König56467eb2015-12-11 15:16:32 +0100190 *
Christian König5a712a82016-06-21 16:28:15 +0200191 * @adev: amdgpu device pointer
Christian König56467eb2015-12-11 15:16:32 +0100192 * @vm: vm providing the BOs
Christian Königf7da30d2016-09-28 12:03:04 +0200193 * @validate: callback to do the validation
194 * @param: parameter for the validation callback
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400195 *
Christian Königf7da30d2016-09-28 12:03:04 +0200196 * Validate the page table BOs on command submission if neccessary.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400197 */
Christian Königf7da30d2016-09-28 12:03:04 +0200198int amdgpu_vm_validate_pt_bos(struct amdgpu_device *adev, struct amdgpu_vm *vm,
199 int (*validate)(void *p, struct amdgpu_bo *bo),
200 void *param)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400201{
Christian König5a712a82016-06-21 16:28:15 +0200202 uint64_t num_evictions;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400203
Christian König5a712a82016-06-21 16:28:15 +0200204 /* We only need to validate the page tables
205 * if they aren't already valid.
206 */
207 num_evictions = atomic64_read(&adev->num_evictions);
208 if (num_evictions == vm->last_eviction_counter)
Christian Königf7da30d2016-09-28 12:03:04 +0200209 return 0;
Christian König5a712a82016-06-21 16:28:15 +0200210
Christian König670fecc2016-10-12 15:36:57 +0200211 return amdgpu_vm_validate_level(&vm->root, validate, param);
Christian Königeceb8a12016-01-11 15:35:21 +0100212}
213
214/**
Christian Königd711e132016-10-13 10:20:53 +0200215 * amdgpu_vm_move_level_in_lru - move one level of PT BOs to the LRU tail
216 *
217 * @adev: amdgpu device instance
218 * @vm: vm providing the BOs
219 *
220 * Move the PT BOs to the tail of the LRU.
221 */
222static void amdgpu_vm_move_level_in_lru(struct amdgpu_vm_pt *parent)
223{
224 unsigned i;
225
226 if (!parent->entries)
227 return;
228
229 for (i = 0; i <= parent->last_entry_used; ++i) {
230 struct amdgpu_vm_pt *entry = &parent->entries[i];
231
232 if (!entry->bo)
233 continue;
234
235 ttm_bo_move_to_lru_tail(&entry->bo->tbo);
236 amdgpu_vm_move_level_in_lru(entry);
237 }
238}
239
240/**
Christian Königeceb8a12016-01-11 15:35:21 +0100241 * amdgpu_vm_move_pt_bos_in_lru - move the PT BOs to the LRU tail
242 *
243 * @adev: amdgpu device instance
244 * @vm: vm providing the BOs
245 *
246 * Move the PT BOs to the tail of the LRU.
247 */
248void amdgpu_vm_move_pt_bos_in_lru(struct amdgpu_device *adev,
249 struct amdgpu_vm *vm)
250{
251 struct ttm_bo_global *glob = adev->mman.bdev.glob;
Christian Königeceb8a12016-01-11 15:35:21 +0100252
253 spin_lock(&glob->lru_lock);
Christian Königd711e132016-10-13 10:20:53 +0200254 amdgpu_vm_move_level_in_lru(&vm->root);
Christian Königeceb8a12016-01-11 15:35:21 +0100255 spin_unlock(&glob->lru_lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400256}
257
Christian Königf566ceb2016-10-27 20:04:38 +0200258 /**
259 * amdgpu_vm_alloc_levels - allocate the PD/PT levels
260 *
261 * @adev: amdgpu_device pointer
262 * @vm: requested vm
263 * @saddr: start of the address range
264 * @eaddr: end of the address range
265 *
266 * Make sure the page directories and page tables are allocated
267 */
268static int amdgpu_vm_alloc_levels(struct amdgpu_device *adev,
269 struct amdgpu_vm *vm,
270 struct amdgpu_vm_pt *parent,
271 uint64_t saddr, uint64_t eaddr,
272 unsigned level)
273{
274 unsigned shift = (adev->vm_manager.num_level - level) *
Zhang, Jerry36b32a62017-03-29 16:08:32 +0800275 adev->vm_manager.block_size;
Christian Königf566ceb2016-10-27 20:04:38 +0200276 unsigned pt_idx, from, to;
277 int r;
278
279 if (!parent->entries) {
280 unsigned num_entries = amdgpu_vm_num_entries(adev, level);
281
282 parent->entries = drm_calloc_large(num_entries,
283 sizeof(struct amdgpu_vm_pt));
284 if (!parent->entries)
285 return -ENOMEM;
286 memset(parent->entries, 0 , sizeof(struct amdgpu_vm_pt));
287 }
288
Felix Kuehling1866bac2017-03-28 20:36:12 -0400289 from = saddr >> shift;
290 to = eaddr >> shift;
291 if (from >= amdgpu_vm_num_entries(adev, level) ||
292 to >= amdgpu_vm_num_entries(adev, level))
293 return -EINVAL;
Christian Königf566ceb2016-10-27 20:04:38 +0200294
295 if (to > parent->last_entry_used)
296 parent->last_entry_used = to;
297
298 ++level;
Felix Kuehling1866bac2017-03-28 20:36:12 -0400299 saddr = saddr & ((1 << shift) - 1);
300 eaddr = eaddr & ((1 << shift) - 1);
Christian Königf566ceb2016-10-27 20:04:38 +0200301
302 /* walk over the address space and allocate the page tables */
303 for (pt_idx = from; pt_idx <= to; ++pt_idx) {
304 struct reservation_object *resv = vm->root.bo->tbo.resv;
305 struct amdgpu_vm_pt *entry = &parent->entries[pt_idx];
306 struct amdgpu_bo *pt;
307
308 if (!entry->bo) {
309 r = amdgpu_bo_create(adev,
310 amdgpu_vm_bo_size(adev, level),
311 AMDGPU_GPU_PAGE_SIZE, true,
312 AMDGPU_GEM_DOMAIN_VRAM,
313 AMDGPU_GEM_CREATE_NO_CPU_ACCESS |
314 AMDGPU_GEM_CREATE_SHADOW |
315 AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS |
316 AMDGPU_GEM_CREATE_VRAM_CLEARED,
317 NULL, resv, &pt);
318 if (r)
319 return r;
320
321 /* Keep a reference to the root directory to avoid
322 * freeing them up in the wrong order.
323 */
324 pt->parent = amdgpu_bo_ref(vm->root.bo);
325
326 entry->bo = pt;
327 entry->addr = 0;
328 }
329
330 if (level < adev->vm_manager.num_level) {
Felix Kuehling1866bac2017-03-28 20:36:12 -0400331 uint64_t sub_saddr = (pt_idx == from) ? saddr : 0;
332 uint64_t sub_eaddr = (pt_idx == to) ? eaddr :
333 ((1 << shift) - 1);
334 r = amdgpu_vm_alloc_levels(adev, vm, entry, sub_saddr,
335 sub_eaddr, level);
Christian Königf566ceb2016-10-27 20:04:38 +0200336 if (r)
337 return r;
338 }
339 }
340
341 return 0;
342}
343
Christian König663e4572017-03-13 10:13:37 +0100344/**
345 * amdgpu_vm_alloc_pts - Allocate page tables.
346 *
347 * @adev: amdgpu_device pointer
348 * @vm: VM to allocate page tables for
349 * @saddr: Start address which needs to be allocated
350 * @size: Size from start address we need.
351 *
352 * Make sure the page tables are allocated.
353 */
354int amdgpu_vm_alloc_pts(struct amdgpu_device *adev,
355 struct amdgpu_vm *vm,
356 uint64_t saddr, uint64_t size)
357{
Felix Kuehling22770e52017-03-28 20:24:53 -0400358 uint64_t last_pfn;
Christian König663e4572017-03-13 10:13:37 +0100359 uint64_t eaddr;
Christian König663e4572017-03-13 10:13:37 +0100360
361 /* validate the parameters */
362 if (saddr & AMDGPU_GPU_PAGE_MASK || size & AMDGPU_GPU_PAGE_MASK)
363 return -EINVAL;
364
365 eaddr = saddr + size - 1;
366 last_pfn = eaddr / AMDGPU_GPU_PAGE_SIZE;
367 if (last_pfn >= adev->vm_manager.max_pfn) {
Felix Kuehling22770e52017-03-28 20:24:53 -0400368 dev_err(adev->dev, "va above limit (0x%08llX >= 0x%08llX)\n",
Christian König663e4572017-03-13 10:13:37 +0100369 last_pfn, adev->vm_manager.max_pfn);
370 return -EINVAL;
371 }
372
373 saddr /= AMDGPU_GPU_PAGE_SIZE;
374 eaddr /= AMDGPU_GPU_PAGE_SIZE;
375
Christian Königf566ceb2016-10-27 20:04:38 +0200376 return amdgpu_vm_alloc_levels(adev, vm, &vm->root, saddr, eaddr, 0);
Christian König663e4572017-03-13 10:13:37 +0100377}
378
Christian König641e9402017-04-03 13:59:25 +0200379/**
380 * amdgpu_vm_had_gpu_reset - check if reset occured since last use
381 *
382 * @adev: amdgpu_device pointer
383 * @id: VMID structure
384 *
385 * Check if GPU reset occured since last use of the VMID.
386 */
387static bool amdgpu_vm_had_gpu_reset(struct amdgpu_device *adev,
388 struct amdgpu_vm_id *id)
Chunming Zhou192b7dc2016-06-29 14:01:15 +0800389{
390 return id->current_gpu_reset_count !=
Christian König641e9402017-04-03 13:59:25 +0200391 atomic_read(&adev->gpu_reset_counter);
Chunming Zhou192b7dc2016-06-29 14:01:15 +0800392}
393
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400394/**
395 * amdgpu_vm_grab_id - allocate the next free VMID
396 *
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400397 * @vm: vm to allocate id for
Christian König7f8a5292015-07-20 16:09:40 +0200398 * @ring: ring we want to submit job to
399 * @sync: sync object where we add dependencies
Christian König94dd0a42016-01-18 17:01:42 +0100400 * @fence: fence protecting ID from reuse
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400401 *
Christian König7f8a5292015-07-20 16:09:40 +0200402 * Allocate an id for the vm, adding fences to the sync obj as necessary.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400403 */
Christian König7f8a5292015-07-20 16:09:40 +0200404int amdgpu_vm_grab_id(struct amdgpu_vm *vm, struct amdgpu_ring *ring,
Chris Wilsonf54d1862016-10-25 13:00:45 +0100405 struct amdgpu_sync *sync, struct dma_fence *fence,
Chunming Zhoufd53be32016-07-01 17:59:01 +0800406 struct amdgpu_job *job)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400407{
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400408 struct amdgpu_device *adev = ring->adev;
Christian König2e819842017-03-30 16:50:47 +0200409 unsigned vmhub = ring->funcs->vmhub;
Christian König76456702017-04-06 17:52:39 +0200410 struct amdgpu_vm_id_manager *id_mgr = &adev->vm_manager.id_mgr[vmhub];
Christian König090b7672016-07-08 10:21:02 +0200411 uint64_t fence_context = adev->fence_context + ring->idx;
Chris Wilsonf54d1862016-10-25 13:00:45 +0100412 struct dma_fence *updates = sync->last_vm_update;
Christian König8d76001e2016-05-23 16:00:32 +0200413 struct amdgpu_vm_id *id, *idle;
Chris Wilsonf54d1862016-10-25 13:00:45 +0100414 struct dma_fence **fences;
Christian König1fbb2e92016-06-01 10:47:36 +0200415 unsigned i;
416 int r = 0;
417
Christian König76456702017-04-06 17:52:39 +0200418 fences = kmalloc_array(sizeof(void *), id_mgr->num_ids, GFP_KERNEL);
Christian König1fbb2e92016-06-01 10:47:36 +0200419 if (!fences)
420 return -ENOMEM;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400421
Christian König76456702017-04-06 17:52:39 +0200422 mutex_lock(&id_mgr->lock);
Christian König94dd0a42016-01-18 17:01:42 +0100423
Christian König36fd7c52016-05-23 15:30:08 +0200424 /* Check if we have an idle VMID */
Christian König1fbb2e92016-06-01 10:47:36 +0200425 i = 0;
Christian König76456702017-04-06 17:52:39 +0200426 list_for_each_entry(idle, &id_mgr->ids_lru, list) {
Christian König1fbb2e92016-06-01 10:47:36 +0200427 fences[i] = amdgpu_sync_peek_fence(&idle->active, ring);
428 if (!fences[i])
Christian König36fd7c52016-05-23 15:30:08 +0200429 break;
Christian König1fbb2e92016-06-01 10:47:36 +0200430 ++i;
Christian König36fd7c52016-05-23 15:30:08 +0200431 }
Christian Königbcb1ba32016-03-08 15:40:11 +0100432
Christian König1fbb2e92016-06-01 10:47:36 +0200433 /* If we can't find a idle VMID to use, wait till one becomes available */
Christian König76456702017-04-06 17:52:39 +0200434 if (&idle->list == &id_mgr->ids_lru) {
Christian König1fbb2e92016-06-01 10:47:36 +0200435 u64 fence_context = adev->vm_manager.fence_context + ring->idx;
436 unsigned seqno = ++adev->vm_manager.seqno[ring->idx];
Chris Wilsonf54d1862016-10-25 13:00:45 +0100437 struct dma_fence_array *array;
Christian König1fbb2e92016-06-01 10:47:36 +0200438 unsigned j;
Christian König8d76001e2016-05-23 16:00:32 +0200439
Christian König1fbb2e92016-06-01 10:47:36 +0200440 for (j = 0; j < i; ++j)
Chris Wilsonf54d1862016-10-25 13:00:45 +0100441 dma_fence_get(fences[j]);
Christian König8d76001e2016-05-23 16:00:32 +0200442
Chris Wilsonf54d1862016-10-25 13:00:45 +0100443 array = dma_fence_array_create(i, fences, fence_context,
Christian König1fbb2e92016-06-01 10:47:36 +0200444 seqno, true);
445 if (!array) {
446 for (j = 0; j < i; ++j)
Chris Wilsonf54d1862016-10-25 13:00:45 +0100447 dma_fence_put(fences[j]);
Christian König1fbb2e92016-06-01 10:47:36 +0200448 kfree(fences);
449 r = -ENOMEM;
450 goto error;
451 }
Christian König8d76001e2016-05-23 16:00:32 +0200452
Christian König8d76001e2016-05-23 16:00:32 +0200453
Christian König1fbb2e92016-06-01 10:47:36 +0200454 r = amdgpu_sync_fence(ring->adev, sync, &array->base);
Chris Wilsonf54d1862016-10-25 13:00:45 +0100455 dma_fence_put(&array->base);
Christian König1fbb2e92016-06-01 10:47:36 +0200456 if (r)
457 goto error;
Christian König8d76001e2016-05-23 16:00:32 +0200458
Christian König76456702017-04-06 17:52:39 +0200459 mutex_unlock(&id_mgr->lock);
Christian König1fbb2e92016-06-01 10:47:36 +0200460 return 0;
Christian König8d76001e2016-05-23 16:00:32 +0200461
Christian König1fbb2e92016-06-01 10:47:36 +0200462 }
463 kfree(fences);
Christian König8d76001e2016-05-23 16:00:32 +0200464
Christian König87c910d2017-03-30 16:56:20 +0200465 job->vm_needs_flush = false;
Christian König1fbb2e92016-06-01 10:47:36 +0200466 /* Check if we can use a VMID already assigned to this VM */
Christian König76456702017-04-06 17:52:39 +0200467 list_for_each_entry_reverse(id, &id_mgr->ids_lru, list) {
Chris Wilsonf54d1862016-10-25 13:00:45 +0100468 struct dma_fence *flushed;
Christian König87c910d2017-03-30 16:56:20 +0200469 bool needs_flush = false;
Christian König8d76001e2016-05-23 16:00:32 +0200470
Christian König1fbb2e92016-06-01 10:47:36 +0200471 /* Check all the prerequisites to using this VMID */
Christian König641e9402017-04-03 13:59:25 +0200472 if (amdgpu_vm_had_gpu_reset(adev, id))
Chunming Zhou6adb0512016-06-27 17:06:01 +0800473 continue;
Christian König1fbb2e92016-06-01 10:47:36 +0200474
475 if (atomic64_read(&id->owner) != vm->client_id)
476 continue;
477
Chunming Zhoufd53be32016-07-01 17:59:01 +0800478 if (job->vm_pd_addr != id->pd_gpu_addr)
Christian König1fbb2e92016-06-01 10:47:36 +0200479 continue;
480
Christian König87c910d2017-03-30 16:56:20 +0200481 if (!id->last_flush ||
482 (id->last_flush->context != fence_context &&
483 !dma_fence_is_signaled(id->last_flush)))
484 needs_flush = true;
Christian König1fbb2e92016-06-01 10:47:36 +0200485
486 flushed = id->flushed_updates;
Christian König87c910d2017-03-30 16:56:20 +0200487 if (updates && (!flushed || dma_fence_is_later(updates, flushed)))
488 needs_flush = true;
489
490 /* Concurrent flushes are only possible starting with Vega10 */
491 if (adev->asic_type < CHIP_VEGA10 && needs_flush)
Christian König1fbb2e92016-06-01 10:47:36 +0200492 continue;
493
Christian König3dab83b2016-06-01 13:31:17 +0200494 /* Good we can use this VMID. Remember this submission as
495 * user of the VMID.
496 */
Christian König1fbb2e92016-06-01 10:47:36 +0200497 r = amdgpu_sync_fence(ring->adev, &id->active, fence);
498 if (r)
499 goto error;
Christian König8d76001e2016-05-23 16:00:32 +0200500
Christian König87c910d2017-03-30 16:56:20 +0200501 if (updates && (!flushed || dma_fence_is_later(updates, flushed))) {
502 dma_fence_put(id->flushed_updates);
503 id->flushed_updates = dma_fence_get(updates);
504 }
Christian König8d76001e2016-05-23 16:00:32 +0200505
Christian König87c910d2017-03-30 16:56:20 +0200506 if (needs_flush)
507 goto needs_flush;
508 else
509 goto no_flush_needed;
Christian König8d76001e2016-05-23 16:00:32 +0200510
Christian König4f618e72017-04-06 15:18:21 +0200511 };
Chunming Zhou8e9fbeb2016-03-17 11:41:37 +0800512
Christian König1fbb2e92016-06-01 10:47:36 +0200513 /* Still no ID to use? Then use the idle one found earlier */
514 id = idle;
515
516 /* Remember this submission as user of the VMID */
517 r = amdgpu_sync_fence(ring->adev, &id->active, fence);
Christian König832a9022016-02-15 12:33:02 +0100518 if (r)
519 goto error;
Christian König4ff37a82016-02-26 16:18:26 +0100520
Christian König87c910d2017-03-30 16:56:20 +0200521 id->pd_gpu_addr = job->vm_pd_addr;
522 dma_fence_put(id->flushed_updates);
523 id->flushed_updates = dma_fence_get(updates);
524 id->current_gpu_reset_count = atomic_read(&adev->gpu_reset_counter);
525 atomic64_set(&id->owner, vm->client_id);
526
527needs_flush:
528 job->vm_needs_flush = true;
Chris Wilsonf54d1862016-10-25 13:00:45 +0100529 dma_fence_put(id->last_flush);
Christian König41d9eb22016-03-01 16:46:18 +0100530 id->last_flush = NULL;
531
Christian König87c910d2017-03-30 16:56:20 +0200532no_flush_needed:
Christian König76456702017-04-06 17:52:39 +0200533 list_move_tail(&id->list, &id_mgr->ids_lru);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400534
Christian König76456702017-04-06 17:52:39 +0200535 job->vm_id = id - id_mgr->ids;
Christian Königc5296d12017-04-07 15:31:13 +0200536 trace_amdgpu_vm_grab_id(vm, ring, job);
Christian König832a9022016-02-15 12:33:02 +0100537
538error:
Christian König76456702017-04-06 17:52:39 +0200539 mutex_unlock(&id_mgr->lock);
Christian Königa9a78b32016-01-21 10:19:11 +0100540 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400541}
542
Chunming Zhou1e9ef262017-04-20 16:18:48 +0800543static void amdgpu_vm_free_reserved_vmid(struct amdgpu_device *adev,
544 struct amdgpu_vm *vm,
545 unsigned vmhub)
546{
547 struct amdgpu_vm_id_manager *id_mgr = &adev->vm_manager.id_mgr[vmhub];
548
549 mutex_lock(&id_mgr->lock);
550 if (vm->reserved_vmid[vmhub]) {
551 list_add(&vm->reserved_vmid[vmhub]->list,
552 &id_mgr->ids_lru);
553 vm->reserved_vmid[vmhub] = NULL;
554 }
555 mutex_unlock(&id_mgr->lock);
556}
557
558static int amdgpu_vm_alloc_reserved_vmid(struct amdgpu_device *adev,
559 struct amdgpu_vm *vm,
560 unsigned vmhub)
561{
562 struct amdgpu_vm_id_manager *id_mgr;
563 struct amdgpu_vm_id *idle;
564 int r = 0;
565
566 id_mgr = &adev->vm_manager.id_mgr[vmhub];
567 mutex_lock(&id_mgr->lock);
568 if (vm->reserved_vmid[vmhub])
569 goto unlock;
570 /* Select the first entry VMID */
571 idle = list_first_entry(&id_mgr->ids_lru, struct amdgpu_vm_id, list);
572 list_del_init(&idle->list);
573 vm->reserved_vmid[vmhub] = idle;
574 mutex_unlock(&id_mgr->lock);
575
576 return 0;
577unlock:
578 mutex_unlock(&id_mgr->lock);
579 return r;
580}
581
Alex Deucher93dcc372016-06-17 17:05:15 -0400582static bool amdgpu_vm_ring_has_compute_vm_bug(struct amdgpu_ring *ring)
583{
584 struct amdgpu_device *adev = ring->adev;
Alex Deuchera1255102016-10-13 17:41:13 -0400585 const struct amdgpu_ip_block *ip_block;
Alex Deucher93dcc372016-06-17 17:05:15 -0400586
Christian König21cd9422016-10-05 15:36:39 +0200587 if (ring->funcs->type != AMDGPU_RING_TYPE_COMPUTE)
Alex Deucher93dcc372016-06-17 17:05:15 -0400588 /* only compute rings */
589 return false;
590
591 ip_block = amdgpu_get_ip_block(adev, AMD_IP_BLOCK_TYPE_GFX);
592 if (!ip_block)
593 return false;
594
Alex Deuchera1255102016-10-13 17:41:13 -0400595 if (ip_block->version->major <= 7) {
Alex Deucher93dcc372016-06-17 17:05:15 -0400596 /* gfx7 has no workaround */
597 return true;
Alex Deuchera1255102016-10-13 17:41:13 -0400598 } else if (ip_block->version->major == 8) {
Alex Deucher93dcc372016-06-17 17:05:15 -0400599 if (adev->gfx.mec_fw_version >= 673)
600 /* gfx8 is fixed in MEC firmware 673 */
601 return false;
602 else
603 return true;
604 }
605 return false;
606}
607
Alex Xiee60f8db2017-03-09 11:36:26 -0500608static u64 amdgpu_vm_adjust_mc_addr(struct amdgpu_device *adev, u64 mc_addr)
609{
610 u64 addr = mc_addr;
611
Christian Königf75e2372017-03-30 15:55:07 +0200612 if (adev->gart.gart_funcs->adjust_mc_addr)
613 addr = adev->gart.gart_funcs->adjust_mc_addr(adev, addr);
Alex Xiee60f8db2017-03-09 11:36:26 -0500614
615 return addr;
616}
617
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400618/**
619 * amdgpu_vm_flush - hardware flush the vm
620 *
621 * @ring: ring to use for flush
Christian Königcffadc82016-03-01 13:34:49 +0100622 * @vm_id: vmid number to use
Christian König4ff37a82016-02-26 16:18:26 +0100623 * @pd_addr: address of the page directory
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400624 *
Christian König4ff37a82016-02-26 16:18:26 +0100625 * Emit a VM flush when it is necessary.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400626 */
Chunming Zhoufd53be32016-07-01 17:59:01 +0800627int amdgpu_vm_flush(struct amdgpu_ring *ring, struct amdgpu_job *job)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400628{
Christian König971fe9a92016-03-01 15:09:25 +0100629 struct amdgpu_device *adev = ring->adev;
Christian König76456702017-04-06 17:52:39 +0200630 unsigned vmhub = ring->funcs->vmhub;
631 struct amdgpu_vm_id_manager *id_mgr = &adev->vm_manager.id_mgr[vmhub];
632 struct amdgpu_vm_id *id = &id_mgr->ids[job->vm_id];
Christian Königd564a062016-03-01 15:51:53 +0100633 bool gds_switch_needed = ring->funcs->emit_gds_switch && (
Chunming Zhoufd53be32016-07-01 17:59:01 +0800634 id->gds_base != job->gds_base ||
635 id->gds_size != job->gds_size ||
636 id->gws_base != job->gws_base ||
637 id->gws_size != job->gws_size ||
638 id->oa_base != job->oa_base ||
639 id->oa_size != job->oa_size);
Christian Königf7d015b2017-04-03 14:28:26 +0200640 bool vm_flush_needed = job->vm_needs_flush ||
641 amdgpu_vm_ring_has_compute_vm_bug(ring);
Christian Königc0e51932017-04-03 14:16:07 +0200642 unsigned patch_offset = 0;
Christian König41d9eb22016-03-01 16:46:18 +0100643 int r;
Christian Königd564a062016-03-01 15:51:53 +0100644
Christian Königf7d015b2017-04-03 14:28:26 +0200645 if (amdgpu_vm_had_gpu_reset(adev, id)) {
646 gds_switch_needed = true;
647 vm_flush_needed = true;
648 }
Christian König971fe9a92016-03-01 15:09:25 +0100649
Christian Königf7d015b2017-04-03 14:28:26 +0200650 if (!vm_flush_needed && !gds_switch_needed)
651 return 0;
Christian König41d9eb22016-03-01 16:46:18 +0100652
Christian Königc0e51932017-04-03 14:16:07 +0200653 if (ring->funcs->init_cond_exec)
654 patch_offset = amdgpu_ring_init_cond_exec(ring);
Christian König41d9eb22016-03-01 16:46:18 +0100655
Chunming Zhou30514de2017-05-09 13:39:40 +0800656 if (ring->funcs->emit_pipeline_sync && !job->need_pipeline_sync)
Christian Königc0e51932017-04-03 14:16:07 +0200657 amdgpu_ring_emit_pipeline_sync(ring);
Christian König3dab83b2016-06-01 13:31:17 +0200658
Christian Königf7d015b2017-04-03 14:28:26 +0200659 if (ring->funcs->emit_vm_flush && vm_flush_needed) {
Christian Königc0e51932017-04-03 14:16:07 +0200660 u64 pd_addr = amdgpu_vm_adjust_mc_addr(adev, job->vm_pd_addr);
661 struct dma_fence *fence;
Monk Liue9d672b2017-03-15 12:18:57 +0800662
Christian König5f1bcf52017-04-07 17:43:19 +0200663 trace_amdgpu_vm_flush(ring, job->vm_id, pd_addr);
Christian Königc0e51932017-04-03 14:16:07 +0200664 amdgpu_ring_emit_vm_flush(ring, job->vm_id, pd_addr);
Monk Liue9d672b2017-03-15 12:18:57 +0800665
Christian Königc0e51932017-04-03 14:16:07 +0200666 r = amdgpu_fence_emit(ring, &fence);
667 if (r)
668 return r;
Monk Liue9d672b2017-03-15 12:18:57 +0800669
Christian König76456702017-04-06 17:52:39 +0200670 mutex_lock(&id_mgr->lock);
Christian Königc0e51932017-04-03 14:16:07 +0200671 dma_fence_put(id->last_flush);
672 id->last_flush = fence;
Christian König76456702017-04-06 17:52:39 +0200673 mutex_unlock(&id_mgr->lock);
Christian Königc0e51932017-04-03 14:16:07 +0200674 }
Monk Liue9d672b2017-03-15 12:18:57 +0800675
Chunming Zhouca7962d2017-05-11 18:22:17 +0800676 if (ring->funcs->emit_gds_switch && gds_switch_needed) {
Christian Königc0e51932017-04-03 14:16:07 +0200677 id->gds_base = job->gds_base;
678 id->gds_size = job->gds_size;
679 id->gws_base = job->gws_base;
680 id->gws_size = job->gws_size;
681 id->oa_base = job->oa_base;
682 id->oa_size = job->oa_size;
683 amdgpu_ring_emit_gds_switch(ring, job->vm_id, job->gds_base,
684 job->gds_size, job->gws_base,
685 job->gws_size, job->oa_base,
686 job->oa_size);
687 }
688
689 if (ring->funcs->patch_cond_exec)
690 amdgpu_ring_patch_cond_exec(ring, patch_offset);
691
692 /* the double SWITCH_BUFFER here *cannot* be skipped by COND_EXEC */
693 if (ring->funcs->emit_switch_buffer) {
694 amdgpu_ring_emit_switch_buffer(ring);
695 amdgpu_ring_emit_switch_buffer(ring);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400696 }
Christian König41d9eb22016-03-01 16:46:18 +0100697 return 0;
Christian König971fe9a92016-03-01 15:09:25 +0100698}
699
700/**
701 * amdgpu_vm_reset_id - reset VMID to zero
702 *
703 * @adev: amdgpu device structure
704 * @vm_id: vmid number to use
705 *
706 * Reset saved GDW, GWS and OA to force switch on next flush.
707 */
Christian König76456702017-04-06 17:52:39 +0200708void amdgpu_vm_reset_id(struct amdgpu_device *adev, unsigned vmhub,
709 unsigned vmid)
Christian König971fe9a92016-03-01 15:09:25 +0100710{
Christian König76456702017-04-06 17:52:39 +0200711 struct amdgpu_vm_id_manager *id_mgr = &adev->vm_manager.id_mgr[vmhub];
712 struct amdgpu_vm_id *id = &id_mgr->ids[vmid];
Christian König971fe9a92016-03-01 15:09:25 +0100713
Christian König32601d42017-05-10 20:06:58 +0200714 atomic64_set(&id->owner, 0);
Christian Königbcb1ba32016-03-08 15:40:11 +0100715 id->gds_base = 0;
716 id->gds_size = 0;
717 id->gws_base = 0;
718 id->gws_size = 0;
719 id->oa_base = 0;
720 id->oa_size = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400721}
722
723/**
Christian König32601d42017-05-10 20:06:58 +0200724 * amdgpu_vm_reset_all_id - reset VMID to zero
725 *
726 * @adev: amdgpu device structure
727 *
728 * Reset VMID to force flush on next use
729 */
730void amdgpu_vm_reset_all_ids(struct amdgpu_device *adev)
731{
732 unsigned i, j;
733
734 for (i = 0; i < AMDGPU_MAX_VMHUBS; ++i) {
735 struct amdgpu_vm_id_manager *id_mgr =
736 &adev->vm_manager.id_mgr[i];
737
738 for (j = 1; j < id_mgr->num_ids; ++j)
739 amdgpu_vm_reset_id(adev, i, j);
740 }
741}
742
743/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400744 * amdgpu_vm_bo_find - find the bo_va for a specific vm & bo
745 *
746 * @vm: requested vm
747 * @bo: requested buffer object
748 *
Christian König8843dbb2016-01-26 12:17:11 +0100749 * Find @bo inside the requested vm.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400750 * Search inside the @bos vm list for the requested vm
751 * Returns the found bo_va or NULL if none is found
752 *
753 * Object has to be reserved!
754 */
755struct amdgpu_bo_va *amdgpu_vm_bo_find(struct amdgpu_vm *vm,
756 struct amdgpu_bo *bo)
757{
758 struct amdgpu_bo_va *bo_va;
759
760 list_for_each_entry(bo_va, &bo->va, bo_list) {
761 if (bo_va->vm == vm) {
762 return bo_va;
763 }
764 }
765 return NULL;
766}
767
768/**
Christian Königafef8b82016-08-12 13:29:18 +0200769 * amdgpu_vm_do_set_ptes - helper to call the right asic function
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400770 *
Christian König29efc4f2016-08-04 14:52:50 +0200771 * @params: see amdgpu_pte_update_params definition
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400772 * @pe: addr of the page entry
773 * @addr: dst addr to write into pe
774 * @count: number of page entries to update
775 * @incr: increase next addr by incr bytes
776 * @flags: hw access flags
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400777 *
778 * Traces the parameters and calls the right asic functions
779 * to setup the page table using the DMA.
780 */
Christian Königafef8b82016-08-12 13:29:18 +0200781static void amdgpu_vm_do_set_ptes(struct amdgpu_pte_update_params *params,
782 uint64_t pe, uint64_t addr,
783 unsigned count, uint32_t incr,
Chunming Zhou6b777602016-09-21 16:19:19 +0800784 uint64_t flags)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400785{
Christian Königec2f05f2016-09-25 16:11:52 +0200786 trace_amdgpu_vm_set_ptes(pe, addr, count, incr, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400787
Christian Königafef8b82016-08-12 13:29:18 +0200788 if (count < 3) {
Christian Königde9ea7b2016-08-12 11:33:30 +0200789 amdgpu_vm_write_pte(params->adev, params->ib, pe,
790 addr | flags, count, incr);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400791
792 } else {
Christian König27c5f362016-08-04 15:02:49 +0200793 amdgpu_vm_set_pte_pde(params->adev, params->ib, pe, addr,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400794 count, incr, flags);
795 }
796}
797
798/**
Christian Königafef8b82016-08-12 13:29:18 +0200799 * amdgpu_vm_do_copy_ptes - copy the PTEs from the GART
800 *
801 * @params: see amdgpu_pte_update_params definition
802 * @pe: addr of the page entry
803 * @addr: dst addr to write into pe
804 * @count: number of page entries to update
805 * @incr: increase next addr by incr bytes
806 * @flags: hw access flags
807 *
808 * Traces the parameters and calls the DMA function to copy the PTEs.
809 */
810static void amdgpu_vm_do_copy_ptes(struct amdgpu_pte_update_params *params,
811 uint64_t pe, uint64_t addr,
812 unsigned count, uint32_t incr,
Chunming Zhou6b777602016-09-21 16:19:19 +0800813 uint64_t flags)
Christian Königafef8b82016-08-12 13:29:18 +0200814{
Christian Königec2f05f2016-09-25 16:11:52 +0200815 uint64_t src = (params->src + (addr >> 12) * 8);
Christian Königafef8b82016-08-12 13:29:18 +0200816
Christian Königec2f05f2016-09-25 16:11:52 +0200817
818 trace_amdgpu_vm_copy_ptes(pe, src, count);
819
820 amdgpu_vm_copy_pte(params->adev, params->ib, pe, src, count);
Christian Königafef8b82016-08-12 13:29:18 +0200821}
822
823/**
Christian Königb07c9d22015-11-30 13:26:07 +0100824 * amdgpu_vm_map_gart - Resolve gart mapping of addr
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400825 *
Christian Königb07c9d22015-11-30 13:26:07 +0100826 * @pages_addr: optional DMA address to use for lookup
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400827 * @addr: the unmapped addr
828 *
829 * Look up the physical address of the page that the pte resolves
Christian Königb07c9d22015-11-30 13:26:07 +0100830 * to and return the pointer for the page table entry.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400831 */
Christian Königde9ea7b2016-08-12 11:33:30 +0200832static uint64_t amdgpu_vm_map_gart(const dma_addr_t *pages_addr, uint64_t addr)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400833{
834 uint64_t result;
835
Christian Königde9ea7b2016-08-12 11:33:30 +0200836 /* page table offset */
837 result = pages_addr[addr >> PAGE_SHIFT];
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400838
Christian Königde9ea7b2016-08-12 11:33:30 +0200839 /* in case cpu page size != gpu page size*/
840 result |= addr & (~PAGE_MASK);
Christian Königb07c9d22015-11-30 13:26:07 +0100841
842 result &= 0xFFFFFFFFFFFFF000ULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400843
844 return result;
845}
846
Christian Königf8991ba2016-09-16 15:36:49 +0200847/*
Christian König194d2162016-10-12 15:13:52 +0200848 * amdgpu_vm_update_level - update a single level in the hierarchy
Christian Königf8991ba2016-09-16 15:36:49 +0200849 *
850 * @adev: amdgpu_device pointer
851 * @vm: requested vm
Christian König194d2162016-10-12 15:13:52 +0200852 * @parent: parent directory
Christian Königf8991ba2016-09-16 15:36:49 +0200853 *
Christian König194d2162016-10-12 15:13:52 +0200854 * Makes sure all entries in @parent are up to date.
Christian Königf8991ba2016-09-16 15:36:49 +0200855 * Returns 0 for success, error for failure.
856 */
Christian König194d2162016-10-12 15:13:52 +0200857static int amdgpu_vm_update_level(struct amdgpu_device *adev,
858 struct amdgpu_vm *vm,
859 struct amdgpu_vm_pt *parent,
860 unsigned level)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400861{
Christian Königf8991ba2016-09-16 15:36:49 +0200862 struct amdgpu_bo *shadow;
Christian König2d55e452016-02-08 17:37:38 +0100863 struct amdgpu_ring *ring;
Christian Königf8991ba2016-09-16 15:36:49 +0200864 uint64_t pd_addr, shadow_addr;
Christian König194d2162016-10-12 15:13:52 +0200865 uint32_t incr = amdgpu_vm_bo_size(adev, level + 1);
Christian Königf8991ba2016-09-16 15:36:49 +0200866 uint64_t last_pde = ~0, last_pt = ~0, last_shadow = ~0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400867 unsigned count = 0, pt_idx, ndw;
Christian Königd71518b2016-02-01 12:20:25 +0100868 struct amdgpu_job *job;
Christian König29efc4f2016-08-04 14:52:50 +0200869 struct amdgpu_pte_update_params params;
Dave Airlie220196b2016-10-28 11:33:52 +1000870 struct dma_fence *fence = NULL;
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800871
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400872 int r;
873
Christian König194d2162016-10-12 15:13:52 +0200874 if (!parent->entries)
875 return 0;
Christian König2d55e452016-02-08 17:37:38 +0100876 ring = container_of(vm->entity.sched, struct amdgpu_ring, sched);
877
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400878 /* padding, etc. */
879 ndw = 64;
880
881 /* assume the worst case */
Christian König194d2162016-10-12 15:13:52 +0200882 ndw += parent->last_entry_used * 6;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400883
Christian König194d2162016-10-12 15:13:52 +0200884 pd_addr = amdgpu_bo_gpu_offset(parent->bo);
885
886 shadow = parent->bo->shadow;
Christian Königf8991ba2016-09-16 15:36:49 +0200887 if (shadow) {
888 r = amdgpu_ttm_bind(&shadow->tbo, &shadow->tbo.mem);
889 if (r)
890 return r;
891 shadow_addr = amdgpu_bo_gpu_offset(shadow);
892 ndw *= 2;
893 } else {
894 shadow_addr = 0;
895 }
896
Christian Königd71518b2016-02-01 12:20:25 +0100897 r = amdgpu_job_alloc_with_ib(adev, ndw * 4, &job);
898 if (r)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400899 return r;
Christian Königd71518b2016-02-01 12:20:25 +0100900
Christian König27c5f362016-08-04 15:02:49 +0200901 memset(&params, 0, sizeof(params));
902 params.adev = adev;
Christian König29efc4f2016-08-04 14:52:50 +0200903 params.ib = &job->ibs[0];
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400904
Christian König194d2162016-10-12 15:13:52 +0200905 /* walk over the address space and update the directory */
906 for (pt_idx = 0; pt_idx <= parent->last_entry_used; ++pt_idx) {
907 struct amdgpu_bo *bo = parent->entries[pt_idx].bo;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400908 uint64_t pde, pt;
909
910 if (bo == NULL)
911 continue;
912
Christian König0fc86832016-09-16 11:46:23 +0200913 if (bo->shadow) {
Christian Königf8991ba2016-09-16 15:36:49 +0200914 struct amdgpu_bo *pt_shadow = bo->shadow;
Christian König0fc86832016-09-16 11:46:23 +0200915
Christian Königf8991ba2016-09-16 15:36:49 +0200916 r = amdgpu_ttm_bind(&pt_shadow->tbo,
917 &pt_shadow->tbo.mem);
Christian König0fc86832016-09-16 11:46:23 +0200918 if (r)
919 return r;
920 }
921
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400922 pt = amdgpu_bo_gpu_offset(bo);
Christian König194d2162016-10-12 15:13:52 +0200923 if (parent->entries[pt_idx].addr == pt)
Christian Königf8991ba2016-09-16 15:36:49 +0200924 continue;
925
Christian König194d2162016-10-12 15:13:52 +0200926 parent->entries[pt_idx].addr = pt;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400927
928 pde = pd_addr + pt_idx * 8;
929 if (((last_pde + 8 * count) != pde) ||
Christian König96105e52016-08-12 12:59:59 +0200930 ((last_pt + incr * count) != pt) ||
931 (count == AMDGPU_VM_MAX_UPDATE_SIZE)) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400932
933 if (count) {
Alex Xiee60f8db2017-03-09 11:36:26 -0500934 uint64_t pt_addr =
935 amdgpu_vm_adjust_mc_addr(adev, last_pt);
936
Christian Königf8991ba2016-09-16 15:36:49 +0200937 if (shadow)
938 amdgpu_vm_do_set_ptes(&params,
939 last_shadow,
Alex Xiee60f8db2017-03-09 11:36:26 -0500940 pt_addr, count,
Christian Königf8991ba2016-09-16 15:36:49 +0200941 incr,
942 AMDGPU_PTE_VALID);
943
Christian Königafef8b82016-08-12 13:29:18 +0200944 amdgpu_vm_do_set_ptes(&params, last_pde,
Alex Xiee60f8db2017-03-09 11:36:26 -0500945 pt_addr, count, incr,
Christian Königafef8b82016-08-12 13:29:18 +0200946 AMDGPU_PTE_VALID);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400947 }
948
949 count = 1;
950 last_pde = pde;
Christian Königf8991ba2016-09-16 15:36:49 +0200951 last_shadow = shadow_addr + pt_idx * 8;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400952 last_pt = pt;
953 } else {
954 ++count;
955 }
956 }
957
Christian Königf8991ba2016-09-16 15:36:49 +0200958 if (count) {
Alex Xiee60f8db2017-03-09 11:36:26 -0500959 uint64_t pt_addr = amdgpu_vm_adjust_mc_addr(adev, last_pt);
960
Christian König67003a12016-10-12 14:46:26 +0200961 if (vm->root.bo->shadow)
Alex Xiee60f8db2017-03-09 11:36:26 -0500962 amdgpu_vm_do_set_ptes(&params, last_shadow, pt_addr,
Christian Königf8991ba2016-09-16 15:36:49 +0200963 count, incr, AMDGPU_PTE_VALID);
964
Alex Xiee60f8db2017-03-09 11:36:26 -0500965 amdgpu_vm_do_set_ptes(&params, last_pde, pt_addr,
Christian Königafef8b82016-08-12 13:29:18 +0200966 count, incr, AMDGPU_PTE_VALID);
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800967 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400968
Christian Königf8991ba2016-09-16 15:36:49 +0200969 if (params.ib->length_dw == 0) {
970 amdgpu_job_free(job);
Christian König194d2162016-10-12 15:13:52 +0200971 } else {
972 amdgpu_ring_pad_ib(ring, params.ib);
973 amdgpu_sync_resv(adev, &job->sync, parent->bo->tbo.resv,
Christian Königf8991ba2016-09-16 15:36:49 +0200974 AMDGPU_FENCE_OWNER_VM);
Christian König194d2162016-10-12 15:13:52 +0200975 if (shadow)
976 amdgpu_sync_resv(adev, &job->sync, shadow->tbo.resv,
977 AMDGPU_FENCE_OWNER_VM);
Christian Königf8991ba2016-09-16 15:36:49 +0200978
Christian König194d2162016-10-12 15:13:52 +0200979 WARN_ON(params.ib->length_dw > ndw);
980 r = amdgpu_job_submit(job, ring, &vm->entity,
981 AMDGPU_FENCE_OWNER_VM, &fence);
982 if (r)
983 goto error_free;
Christian Königf8991ba2016-09-16 15:36:49 +0200984
Christian König194d2162016-10-12 15:13:52 +0200985 amdgpu_bo_fence(parent->bo, fence, true);
986 dma_fence_put(vm->last_dir_update);
987 vm->last_dir_update = dma_fence_get(fence);
988 dma_fence_put(fence);
989 }
990 /*
991 * Recurse into the subdirectories. This recursion is harmless because
992 * we only have a maximum of 5 layers.
993 */
994 for (pt_idx = 0; pt_idx <= parent->last_entry_used; ++pt_idx) {
995 struct amdgpu_vm_pt *entry = &parent->entries[pt_idx];
996
997 if (!entry->bo)
998 continue;
999
1000 r = amdgpu_vm_update_level(adev, vm, entry, level + 1);
1001 if (r)
1002 return r;
1003 }
Christian Königf8991ba2016-09-16 15:36:49 +02001004
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001005 return 0;
Chunming Zhoud5fc5e82015-07-21 16:52:10 +08001006
1007error_free:
Christian Königd71518b2016-02-01 12:20:25 +01001008 amdgpu_job_free(job);
Chunming Zhou4af9f072015-08-03 12:57:31 +08001009 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001010}
1011
Christian König194d2162016-10-12 15:13:52 +02001012/*
1013 * amdgpu_vm_update_directories - make sure that all directories are valid
1014 *
1015 * @adev: amdgpu_device pointer
1016 * @vm: requested vm
1017 *
1018 * Makes sure all directories are up to date.
1019 * Returns 0 for success, error for failure.
1020 */
1021int amdgpu_vm_update_directories(struct amdgpu_device *adev,
1022 struct amdgpu_vm *vm)
1023{
1024 return amdgpu_vm_update_level(adev, vm, &vm->root, 0);
1025}
1026
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001027/**
Christian König4e2cb642016-10-25 15:52:28 +02001028 * amdgpu_vm_find_pt - find the page table for an address
1029 *
1030 * @p: see amdgpu_pte_update_params definition
1031 * @addr: virtual address in question
1032 *
1033 * Find the page table BO for a virtual address, return NULL when none found.
1034 */
1035static struct amdgpu_bo *amdgpu_vm_get_pt(struct amdgpu_pte_update_params *p,
1036 uint64_t addr)
1037{
1038 struct amdgpu_vm_pt *entry = &p->vm->root;
1039 unsigned idx, level = p->adev->vm_manager.num_level;
1040
1041 while (entry->entries) {
Zhang, Jerry36b32a62017-03-29 16:08:32 +08001042 idx = addr >> (p->adev->vm_manager.block_size * level--);
Christian König4e2cb642016-10-25 15:52:28 +02001043 idx %= amdgpu_bo_size(entry->bo) / 8;
1044 entry = &entry->entries[idx];
1045 }
1046
1047 if (level)
1048 return NULL;
1049
1050 return entry->bo;
1051}
1052
1053/**
Christian König92696dd2016-08-05 13:56:35 +02001054 * amdgpu_vm_update_ptes - make sure that page tables are valid
1055 *
1056 * @params: see amdgpu_pte_update_params definition
1057 * @vm: requested vm
1058 * @start: start of GPU address range
1059 * @end: end of GPU address range
1060 * @dst: destination address to map to, the next dst inside the function
1061 * @flags: mapping flags
1062 *
1063 * Update the page tables in the range @start - @end.
1064 */
1065static void amdgpu_vm_update_ptes(struct amdgpu_pte_update_params *params,
Christian König92696dd2016-08-05 13:56:35 +02001066 uint64_t start, uint64_t end,
Chunming Zhou6b777602016-09-21 16:19:19 +08001067 uint64_t dst, uint64_t flags)
Christian König92696dd2016-08-05 13:56:35 +02001068{
Zhang, Jerry36b32a62017-03-29 16:08:32 +08001069 struct amdgpu_device *adev = params->adev;
1070 const uint64_t mask = AMDGPU_VM_PTE_COUNT(adev) - 1;
Christian König92696dd2016-08-05 13:56:35 +02001071
1072 uint64_t cur_pe_start, cur_nptes, cur_dst;
1073 uint64_t addr; /* next GPU address to be updated */
Christian König92696dd2016-08-05 13:56:35 +02001074 struct amdgpu_bo *pt;
1075 unsigned nptes; /* next number of ptes to be updated */
1076 uint64_t next_pe_start;
1077
1078 /* initialize the variables */
1079 addr = start;
Christian König4e2cb642016-10-25 15:52:28 +02001080 pt = amdgpu_vm_get_pt(params, addr);
Felix Kuehling1866bac2017-03-28 20:36:12 -04001081 if (!pt) {
1082 pr_err("PT not found, aborting update_ptes\n");
Christian König4e2cb642016-10-25 15:52:28 +02001083 return;
Felix Kuehling1866bac2017-03-28 20:36:12 -04001084 }
Christian König4e2cb642016-10-25 15:52:28 +02001085
Chunming Zhou4c7e8852016-08-15 11:46:21 +08001086 if (params->shadow) {
1087 if (!pt->shadow)
1088 return;
Christian König914b4dc2016-09-28 12:27:37 +02001089 pt = pt->shadow;
Chunming Zhou4c7e8852016-08-15 11:46:21 +08001090 }
Christian König92696dd2016-08-05 13:56:35 +02001091 if ((addr & ~mask) == (end & ~mask))
1092 nptes = end - addr;
1093 else
Zhang, Jerry36b32a62017-03-29 16:08:32 +08001094 nptes = AMDGPU_VM_PTE_COUNT(adev) - (addr & mask);
Christian König92696dd2016-08-05 13:56:35 +02001095
1096 cur_pe_start = amdgpu_bo_gpu_offset(pt);
1097 cur_pe_start += (addr & mask) * 8;
1098 cur_nptes = nptes;
1099 cur_dst = dst;
1100
1101 /* for next ptb*/
1102 addr += nptes;
1103 dst += nptes * AMDGPU_GPU_PAGE_SIZE;
1104
1105 /* walk over the address space and update the page tables */
1106 while (addr < end) {
Christian König4e2cb642016-10-25 15:52:28 +02001107 pt = amdgpu_vm_get_pt(params, addr);
Felix Kuehling1866bac2017-03-28 20:36:12 -04001108 if (!pt) {
1109 pr_err("PT not found, aborting update_ptes\n");
Christian König4e2cb642016-10-25 15:52:28 +02001110 return;
Felix Kuehling1866bac2017-03-28 20:36:12 -04001111 }
Christian König4e2cb642016-10-25 15:52:28 +02001112
Chunming Zhou4c7e8852016-08-15 11:46:21 +08001113 if (params->shadow) {
1114 if (!pt->shadow)
1115 return;
Christian König914b4dc2016-09-28 12:27:37 +02001116 pt = pt->shadow;
Chunming Zhou4c7e8852016-08-15 11:46:21 +08001117 }
Christian König92696dd2016-08-05 13:56:35 +02001118
1119 if ((addr & ~mask) == (end & ~mask))
1120 nptes = end - addr;
1121 else
Zhang, Jerry36b32a62017-03-29 16:08:32 +08001122 nptes = AMDGPU_VM_PTE_COUNT(adev) - (addr & mask);
Christian König92696dd2016-08-05 13:56:35 +02001123
1124 next_pe_start = amdgpu_bo_gpu_offset(pt);
1125 next_pe_start += (addr & mask) * 8;
1126
Christian König96105e52016-08-12 12:59:59 +02001127 if ((cur_pe_start + 8 * cur_nptes) == next_pe_start &&
1128 ((cur_nptes + nptes) <= AMDGPU_VM_MAX_UPDATE_SIZE)) {
Christian König92696dd2016-08-05 13:56:35 +02001129 /* The next ptb is consecutive to current ptb.
Christian Königafef8b82016-08-12 13:29:18 +02001130 * Don't call the update function now.
Christian König92696dd2016-08-05 13:56:35 +02001131 * Will update two ptbs together in future.
1132 */
1133 cur_nptes += nptes;
1134 } else {
Christian Königafef8b82016-08-12 13:29:18 +02001135 params->func(params, cur_pe_start, cur_dst, cur_nptes,
1136 AMDGPU_GPU_PAGE_SIZE, flags);
Christian König92696dd2016-08-05 13:56:35 +02001137
1138 cur_pe_start = next_pe_start;
1139 cur_nptes = nptes;
1140 cur_dst = dst;
1141 }
1142
1143 /* for next ptb*/
1144 addr += nptes;
1145 dst += nptes * AMDGPU_GPU_PAGE_SIZE;
1146 }
1147
Christian Königafef8b82016-08-12 13:29:18 +02001148 params->func(params, cur_pe_start, cur_dst, cur_nptes,
1149 AMDGPU_GPU_PAGE_SIZE, flags);
Christian König92696dd2016-08-05 13:56:35 +02001150}
1151
1152/*
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001153 * amdgpu_vm_frag_ptes - add fragment information to PTEs
1154 *
Christian König29efc4f2016-08-04 14:52:50 +02001155 * @params: see amdgpu_pte_update_params definition
Christian König92696dd2016-08-05 13:56:35 +02001156 * @vm: requested vm
1157 * @start: first PTE to handle
1158 * @end: last PTE to handle
1159 * @dst: addr those PTEs should point to
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001160 * @flags: hw mapping flags
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001161 */
Christian König27c5f362016-08-04 15:02:49 +02001162static void amdgpu_vm_frag_ptes(struct amdgpu_pte_update_params *params,
Christian König92696dd2016-08-05 13:56:35 +02001163 uint64_t start, uint64_t end,
Chunming Zhou6b777602016-09-21 16:19:19 +08001164 uint64_t dst, uint64_t flags)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001165{
1166 /**
1167 * The MC L1 TLB supports variable sized pages, based on a fragment
1168 * field in the PTE. When this field is set to a non-zero value, page
1169 * granularity is increased from 4KB to (1 << (12 + frag)). The PTE
1170 * flags are considered valid for all PTEs within the fragment range
1171 * and corresponding mappings are assumed to be physically contiguous.
1172 *
1173 * The L1 TLB can store a single PTE for the whole fragment,
1174 * significantly increasing the space available for translation
1175 * caching. This leads to large improvements in throughput when the
1176 * TLB is under pressure.
1177 *
1178 * The L2 TLB distributes small and large fragments into two
1179 * asymmetric partitions. The large fragment cache is significantly
1180 * larger. Thus, we try to use large fragments wherever possible.
1181 * Userspace can support this by aligning virtual base address and
1182 * allocation size to the fragment size.
1183 */
1184
Christian König80366172016-10-04 13:39:43 +02001185 /* SI and newer are optimized for 64KB */
1186 uint64_t frag_flags = AMDGPU_PTE_FRAG(AMDGPU_LOG2_PAGES_PER_FRAG);
1187 uint64_t frag_align = 1 << AMDGPU_LOG2_PAGES_PER_FRAG;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001188
Christian König92696dd2016-08-05 13:56:35 +02001189 uint64_t frag_start = ALIGN(start, frag_align);
1190 uint64_t frag_end = end & ~(frag_align - 1);
Christian König31f6c1f2016-01-26 12:37:49 +01001191
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001192 /* system pages are non continuously */
Christian Königb7fc2cb2016-08-11 16:44:15 +02001193 if (params->src || !(flags & AMDGPU_PTE_VALID) ||
Christian König92696dd2016-08-05 13:56:35 +02001194 (frag_start >= frag_end)) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001195
Christian König49ac8a22016-10-13 15:09:08 +02001196 amdgpu_vm_update_ptes(params, start, end, dst, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001197 return;
1198 }
1199
1200 /* handle the 4K area at the beginning */
Christian König92696dd2016-08-05 13:56:35 +02001201 if (start != frag_start) {
Christian König49ac8a22016-10-13 15:09:08 +02001202 amdgpu_vm_update_ptes(params, start, frag_start,
Christian König92696dd2016-08-05 13:56:35 +02001203 dst, flags);
1204 dst += (frag_start - start) * AMDGPU_GPU_PAGE_SIZE;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001205 }
1206
1207 /* handle the area in the middle */
Christian König49ac8a22016-10-13 15:09:08 +02001208 amdgpu_vm_update_ptes(params, frag_start, frag_end, dst,
Christian König80366172016-10-04 13:39:43 +02001209 flags | frag_flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001210
1211 /* handle the 4K area at the end */
Christian König92696dd2016-08-05 13:56:35 +02001212 if (frag_end != end) {
1213 dst += (frag_end - frag_start) * AMDGPU_GPU_PAGE_SIZE;
Christian König49ac8a22016-10-13 15:09:08 +02001214 amdgpu_vm_update_ptes(params, frag_end, end, dst, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001215 }
1216}
1217
1218/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001219 * amdgpu_vm_bo_update_mapping - update a mapping in the vm page table
1220 *
1221 * @adev: amdgpu_device pointer
Christian König3cabaa52016-06-06 10:17:58 +02001222 * @exclusive: fence we need to sync to
Christian Königfa3ab3c2016-03-18 21:00:35 +01001223 * @src: address where to copy page table entries from
1224 * @pages_addr: DMA addresses to use for mapping
Christian Königa14faa62016-01-25 14:27:31 +01001225 * @vm: requested vm
1226 * @start: start of mapped range
1227 * @last: last mapped entry
1228 * @flags: flags for the entries
1229 * @addr: addr to set the area to
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001230 * @fence: optional resulting fence
1231 *
Christian Königa14faa62016-01-25 14:27:31 +01001232 * Fill in the page table entries between @start and @last.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001233 * Returns 0 for success, -EINVAL for failure.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001234 */
1235static int amdgpu_vm_bo_update_mapping(struct amdgpu_device *adev,
Chris Wilsonf54d1862016-10-25 13:00:45 +01001236 struct dma_fence *exclusive,
Christian Königfa3ab3c2016-03-18 21:00:35 +01001237 uint64_t src,
1238 dma_addr_t *pages_addr,
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001239 struct amdgpu_vm *vm,
Christian Königa14faa62016-01-25 14:27:31 +01001240 uint64_t start, uint64_t last,
Chunming Zhou6b777602016-09-21 16:19:19 +08001241 uint64_t flags, uint64_t addr,
Chris Wilsonf54d1862016-10-25 13:00:45 +01001242 struct dma_fence **fence)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001243{
Christian König2d55e452016-02-08 17:37:38 +01001244 struct amdgpu_ring *ring;
Christian Königa1e08d32016-01-26 11:40:46 +01001245 void *owner = AMDGPU_FENCE_OWNER_VM;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001246 unsigned nptes, ncmds, ndw;
Christian Königd71518b2016-02-01 12:20:25 +01001247 struct amdgpu_job *job;
Christian König29efc4f2016-08-04 14:52:50 +02001248 struct amdgpu_pte_update_params params;
Chris Wilsonf54d1862016-10-25 13:00:45 +01001249 struct dma_fence *f = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001250 int r;
1251
Christian Königafef8b82016-08-12 13:29:18 +02001252 memset(&params, 0, sizeof(params));
1253 params.adev = adev;
Christian König49ac8a22016-10-13 15:09:08 +02001254 params.vm = vm;
Christian Königafef8b82016-08-12 13:29:18 +02001255 params.src = src;
1256
Christian König2d55e452016-02-08 17:37:38 +01001257 ring = container_of(vm->entity.sched, struct amdgpu_ring, sched);
Christian König27c5f362016-08-04 15:02:49 +02001258
Christian Königa1e08d32016-01-26 11:40:46 +01001259 /* sync to everything on unmapping */
1260 if (!(flags & AMDGPU_PTE_VALID))
1261 owner = AMDGPU_FENCE_OWNER_UNDEFINED;
1262
Christian Königa14faa62016-01-25 14:27:31 +01001263 nptes = last - start + 1;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001264
1265 /*
1266 * reserve space for one command every (1 << BLOCK_SIZE)
1267 * entries or 2k dwords (whatever is smaller)
1268 */
Zhang, Jerry36b32a62017-03-29 16:08:32 +08001269 ncmds = (nptes >> min(adev->vm_manager.block_size, 11u)) + 1;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001270
1271 /* padding, etc. */
1272 ndw = 64;
1273
Christian Königb0456f92016-08-11 14:06:54 +02001274 if (src) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001275 /* only copy commands needed */
1276 ndw += ncmds * 7;
1277
Christian Königafef8b82016-08-12 13:29:18 +02001278 params.func = amdgpu_vm_do_copy_ptes;
1279
Christian Königb0456f92016-08-11 14:06:54 +02001280 } else if (pages_addr) {
1281 /* copy commands needed */
1282 ndw += ncmds * 7;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001283
Christian Königb0456f92016-08-11 14:06:54 +02001284 /* and also PTEs */
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001285 ndw += nptes * 2;
1286
Christian Königafef8b82016-08-12 13:29:18 +02001287 params.func = amdgpu_vm_do_copy_ptes;
1288
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001289 } else {
1290 /* set page commands needed */
1291 ndw += ncmds * 10;
1292
1293 /* two extra commands for begin/end of fragment */
1294 ndw += 2 * 10;
Christian Königafef8b82016-08-12 13:29:18 +02001295
1296 params.func = amdgpu_vm_do_set_ptes;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001297 }
1298
Christian Königd71518b2016-02-01 12:20:25 +01001299 r = amdgpu_job_alloc_with_ib(adev, ndw * 4, &job);
1300 if (r)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001301 return r;
Christian Königd71518b2016-02-01 12:20:25 +01001302
Christian König29efc4f2016-08-04 14:52:50 +02001303 params.ib = &job->ibs[0];
Chunming Zhoud5fc5e82015-07-21 16:52:10 +08001304
Christian Königb0456f92016-08-11 14:06:54 +02001305 if (!src && pages_addr) {
1306 uint64_t *pte;
1307 unsigned i;
1308
1309 /* Put the PTEs at the end of the IB. */
1310 i = ndw - nptes * 2;
1311 pte= (uint64_t *)&(job->ibs->ptr[i]);
1312 params.src = job->ibs->gpu_addr + i * 4;
1313
1314 for (i = 0; i < nptes; ++i) {
1315 pte[i] = amdgpu_vm_map_gart(pages_addr, addr + i *
1316 AMDGPU_GPU_PAGE_SIZE);
1317 pte[i] |= flags;
1318 }
Christian Königd7a4ac62016-09-25 11:54:00 +02001319 addr = 0;
Christian Königb0456f92016-08-11 14:06:54 +02001320 }
1321
Christian König3cabaa52016-06-06 10:17:58 +02001322 r = amdgpu_sync_fence(adev, &job->sync, exclusive);
1323 if (r)
1324 goto error_free;
1325
Christian König67003a12016-10-12 14:46:26 +02001326 r = amdgpu_sync_resv(adev, &job->sync, vm->root.bo->tbo.resv,
Christian Königa1e08d32016-01-26 11:40:46 +01001327 owner);
1328 if (r)
1329 goto error_free;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001330
Christian König67003a12016-10-12 14:46:26 +02001331 r = reservation_object_reserve_shared(vm->root.bo->tbo.resv);
Christian Königa1e08d32016-01-26 11:40:46 +01001332 if (r)
1333 goto error_free;
1334
Chunming Zhou4c7e8852016-08-15 11:46:21 +08001335 params.shadow = true;
Christian König49ac8a22016-10-13 15:09:08 +02001336 amdgpu_vm_frag_ptes(&params, start, last + 1, addr, flags);
Chunming Zhou4c7e8852016-08-15 11:46:21 +08001337 params.shadow = false;
Christian König49ac8a22016-10-13 15:09:08 +02001338 amdgpu_vm_frag_ptes(&params, start, last + 1, addr, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001339
Christian König29efc4f2016-08-04 14:52:50 +02001340 amdgpu_ring_pad_ib(ring, params.ib);
1341 WARN_ON(params.ib->length_dw > ndw);
Christian König2bd9ccf2016-02-01 12:53:58 +01001342 r = amdgpu_job_submit(job, ring, &vm->entity,
1343 AMDGPU_FENCE_OWNER_VM, &f);
Chunming Zhou4af9f072015-08-03 12:57:31 +08001344 if (r)
1345 goto error_free;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001346
Christian König67003a12016-10-12 14:46:26 +02001347 amdgpu_bo_fence(vm->root.bo, f, true);
Christian König284710f2017-01-30 11:09:31 +01001348 dma_fence_put(*fence);
1349 *fence = f;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001350 return 0;
Chunming Zhoud5fc5e82015-07-21 16:52:10 +08001351
1352error_free:
Christian Königd71518b2016-02-01 12:20:25 +01001353 amdgpu_job_free(job);
Chunming Zhou4af9f072015-08-03 12:57:31 +08001354 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001355}
1356
1357/**
Christian Königa14faa62016-01-25 14:27:31 +01001358 * amdgpu_vm_bo_split_mapping - split a mapping into smaller chunks
1359 *
1360 * @adev: amdgpu_device pointer
Christian König3cabaa52016-06-06 10:17:58 +02001361 * @exclusive: fence we need to sync to
Christian König8358dce2016-03-30 10:50:25 +02001362 * @gtt_flags: flags as they are used for GTT
1363 * @pages_addr: DMA addresses to use for mapping
Christian Königa14faa62016-01-25 14:27:31 +01001364 * @vm: requested vm
1365 * @mapping: mapped range and flags to use for the update
Christian König8358dce2016-03-30 10:50:25 +02001366 * @flags: HW flags for the mapping
Christian König63e0ba42016-08-16 17:38:37 +02001367 * @nodes: array of drm_mm_nodes with the MC addresses
Christian Königa14faa62016-01-25 14:27:31 +01001368 * @fence: optional resulting fence
1369 *
1370 * Split the mapping into smaller chunks so that each update fits
1371 * into a SDMA IB.
1372 * Returns 0 for success, -EINVAL for failure.
1373 */
1374static int amdgpu_vm_bo_split_mapping(struct amdgpu_device *adev,
Chris Wilsonf54d1862016-10-25 13:00:45 +01001375 struct dma_fence *exclusive,
Chunming Zhou6b777602016-09-21 16:19:19 +08001376 uint64_t gtt_flags,
Christian König8358dce2016-03-30 10:50:25 +02001377 dma_addr_t *pages_addr,
Christian Königa14faa62016-01-25 14:27:31 +01001378 struct amdgpu_vm *vm,
1379 struct amdgpu_bo_va_mapping *mapping,
Chunming Zhou6b777602016-09-21 16:19:19 +08001380 uint64_t flags,
Christian König63e0ba42016-08-16 17:38:37 +02001381 struct drm_mm_node *nodes,
Chris Wilsonf54d1862016-10-25 13:00:45 +01001382 struct dma_fence **fence)
Christian Königa14faa62016-01-25 14:27:31 +01001383{
Christian Königa9f87f62017-03-30 14:03:59 +02001384 uint64_t pfn, src = 0, start = mapping->start;
Christian Königa14faa62016-01-25 14:27:31 +01001385 int r;
1386
1387 /* normally,bo_va->flags only contians READABLE and WIRTEABLE bit go here
1388 * but in case of something, we filter the flags in first place
1389 */
1390 if (!(mapping->flags & AMDGPU_PTE_READABLE))
1391 flags &= ~AMDGPU_PTE_READABLE;
1392 if (!(mapping->flags & AMDGPU_PTE_WRITEABLE))
1393 flags &= ~AMDGPU_PTE_WRITEABLE;
1394
Alex Xie15b31c52017-03-03 16:47:11 -05001395 flags &= ~AMDGPU_PTE_EXECUTABLE;
1396 flags |= mapping->flags & AMDGPU_PTE_EXECUTABLE;
1397
Alex Xieb0fd18b2017-03-03 16:49:39 -05001398 flags &= ~AMDGPU_PTE_MTYPE_MASK;
1399 flags |= (mapping->flags & AMDGPU_PTE_MTYPE_MASK);
1400
Zhang, Jerryd0766e92017-04-19 09:53:29 +08001401 if ((mapping->flags & AMDGPU_PTE_PRT) &&
1402 (adev->asic_type >= CHIP_VEGA10)) {
1403 flags |= AMDGPU_PTE_PRT;
1404 flags &= ~AMDGPU_PTE_VALID;
1405 }
1406
Christian Königa14faa62016-01-25 14:27:31 +01001407 trace_amdgpu_vm_bo_update(mapping);
1408
Christian König63e0ba42016-08-16 17:38:37 +02001409 pfn = mapping->offset >> PAGE_SHIFT;
1410 if (nodes) {
1411 while (pfn >= nodes->size) {
1412 pfn -= nodes->size;
1413 ++nodes;
1414 }
Christian Königfa3ab3c2016-03-18 21:00:35 +01001415 }
Christian Königa14faa62016-01-25 14:27:31 +01001416
Christian König63e0ba42016-08-16 17:38:37 +02001417 do {
1418 uint64_t max_entries;
1419 uint64_t addr, last;
Christian Königa14faa62016-01-25 14:27:31 +01001420
Christian König63e0ba42016-08-16 17:38:37 +02001421 if (nodes) {
1422 addr = nodes->start << PAGE_SHIFT;
1423 max_entries = (nodes->size - pfn) *
1424 (PAGE_SIZE / AMDGPU_GPU_PAGE_SIZE);
1425 } else {
1426 addr = 0;
1427 max_entries = S64_MAX;
1428 }
Christian Königa14faa62016-01-25 14:27:31 +01001429
Christian König63e0ba42016-08-16 17:38:37 +02001430 if (pages_addr) {
1431 if (flags == gtt_flags)
1432 src = adev->gart.table_addr +
1433 (addr >> AMDGPU_GPU_PAGE_SHIFT) * 8;
1434 else
1435 max_entries = min(max_entries, 16ull * 1024ull);
1436 addr = 0;
1437 } else if (flags & AMDGPU_PTE_VALID) {
1438 addr += adev->vm_manager.vram_base_offset;
1439 }
1440 addr += pfn << PAGE_SHIFT;
1441
Christian Königa9f87f62017-03-30 14:03:59 +02001442 last = min((uint64_t)mapping->last, start + max_entries - 1);
Christian König3cabaa52016-06-06 10:17:58 +02001443 r = amdgpu_vm_bo_update_mapping(adev, exclusive,
1444 src, pages_addr, vm,
Christian Königa14faa62016-01-25 14:27:31 +01001445 start, last, flags, addr,
1446 fence);
1447 if (r)
1448 return r;
1449
Christian König63e0ba42016-08-16 17:38:37 +02001450 pfn += last - start + 1;
1451 if (nodes && nodes->size == pfn) {
1452 pfn = 0;
1453 ++nodes;
1454 }
Christian Königa14faa62016-01-25 14:27:31 +01001455 start = last + 1;
Christian König63e0ba42016-08-16 17:38:37 +02001456
Christian Königa9f87f62017-03-30 14:03:59 +02001457 } while (unlikely(start != mapping->last + 1));
Christian Königa14faa62016-01-25 14:27:31 +01001458
1459 return 0;
1460}
1461
1462/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001463 * amdgpu_vm_bo_update - update all BO mappings in the vm page table
1464 *
1465 * @adev: amdgpu_device pointer
1466 * @bo_va: requested BO and VM object
Christian König99e124f2016-08-16 14:43:17 +02001467 * @clear: if true clear the entries
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001468 *
1469 * Fill in the page table entries for @bo_va.
1470 * Returns 0 for success, -EINVAL for failure.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001471 */
1472int amdgpu_vm_bo_update(struct amdgpu_device *adev,
1473 struct amdgpu_bo_va *bo_va,
Christian König99e124f2016-08-16 14:43:17 +02001474 bool clear)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001475{
1476 struct amdgpu_vm *vm = bo_va->vm;
1477 struct amdgpu_bo_va_mapping *mapping;
Christian König8358dce2016-03-30 10:50:25 +02001478 dma_addr_t *pages_addr = NULL;
Chunming Zhou6b777602016-09-21 16:19:19 +08001479 uint64_t gtt_flags, flags;
Christian König99e124f2016-08-16 14:43:17 +02001480 struct ttm_mem_reg *mem;
Christian König63e0ba42016-08-16 17:38:37 +02001481 struct drm_mm_node *nodes;
Chris Wilsonf54d1862016-10-25 13:00:45 +01001482 struct dma_fence *exclusive;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001483 int r;
1484
Christian Königa5f6b5b2017-01-30 11:01:38 +01001485 if (clear || !bo_va->bo) {
Christian König99e124f2016-08-16 14:43:17 +02001486 mem = NULL;
Christian König63e0ba42016-08-16 17:38:37 +02001487 nodes = NULL;
Christian König99e124f2016-08-16 14:43:17 +02001488 exclusive = NULL;
1489 } else {
Christian König8358dce2016-03-30 10:50:25 +02001490 struct ttm_dma_tt *ttm;
1491
Christian König99e124f2016-08-16 14:43:17 +02001492 mem = &bo_va->bo->tbo.mem;
Christian König63e0ba42016-08-16 17:38:37 +02001493 nodes = mem->mm_node;
1494 if (mem->mem_type == TTM_PL_TT) {
Christian König8358dce2016-03-30 10:50:25 +02001495 ttm = container_of(bo_va->bo->tbo.ttm, struct
1496 ttm_dma_tt, ttm);
1497 pages_addr = ttm->dma_address;
Christian König9ab21462015-11-30 14:19:26 +01001498 }
Christian König3cabaa52016-06-06 10:17:58 +02001499 exclusive = reservation_object_get_excl(bo_va->bo->tbo.resv);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001500 }
1501
Christian Königa5f6b5b2017-01-30 11:01:38 +01001502 if (bo_va->bo) {
1503 flags = amdgpu_ttm_tt_pte_flags(adev, bo_va->bo->tbo.ttm, mem);
1504 gtt_flags = (amdgpu_ttm_is_bound(bo_va->bo->tbo.ttm) &&
1505 adev == amdgpu_ttm_adev(bo_va->bo->tbo.bdev)) ?
1506 flags : 0;
1507 } else {
1508 flags = 0x0;
1509 gtt_flags = ~0x0;
1510 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001511
Christian König7fc11952015-07-30 11:53:42 +02001512 spin_lock(&vm->status_lock);
1513 if (!list_empty(&bo_va->vm_status))
1514 list_splice_init(&bo_va->valids, &bo_va->invalids);
1515 spin_unlock(&vm->status_lock);
1516
1517 list_for_each_entry(mapping, &bo_va->invalids, list) {
Christian König3cabaa52016-06-06 10:17:58 +02001518 r = amdgpu_vm_bo_split_mapping(adev, exclusive,
1519 gtt_flags, pages_addr, vm,
Christian König63e0ba42016-08-16 17:38:37 +02001520 mapping, flags, nodes,
Christian König8358dce2016-03-30 10:50:25 +02001521 &bo_va->last_pt_update);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001522 if (r)
1523 return r;
1524 }
1525
Christian Königd6c10f62015-09-28 12:00:23 +02001526 if (trace_amdgpu_vm_bo_mapping_enabled()) {
1527 list_for_each_entry(mapping, &bo_va->valids, list)
1528 trace_amdgpu_vm_bo_mapping(mapping);
1529
1530 list_for_each_entry(mapping, &bo_va->invalids, list)
1531 trace_amdgpu_vm_bo_mapping(mapping);
1532 }
1533
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001534 spin_lock(&vm->status_lock);
monk.liu6d1d0ef2015-08-14 13:36:41 +08001535 list_splice_init(&bo_va->invalids, &bo_va->valids);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001536 list_del_init(&bo_va->vm_status);
Christian König99e124f2016-08-16 14:43:17 +02001537 if (clear)
Christian König7fc11952015-07-30 11:53:42 +02001538 list_add(&bo_va->vm_status, &vm->cleared);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001539 spin_unlock(&vm->status_lock);
1540
1541 return 0;
1542}
1543
1544/**
Christian König284710f2017-01-30 11:09:31 +01001545 * amdgpu_vm_update_prt_state - update the global PRT state
1546 */
1547static void amdgpu_vm_update_prt_state(struct amdgpu_device *adev)
1548{
1549 unsigned long flags;
1550 bool enable;
1551
1552 spin_lock_irqsave(&adev->vm_manager.prt_lock, flags);
Christian König451bc8e2017-02-14 16:02:52 +01001553 enable = !!atomic_read(&adev->vm_manager.num_prt_users);
Christian König284710f2017-01-30 11:09:31 +01001554 adev->gart.gart_funcs->set_prt(adev, enable);
1555 spin_unlock_irqrestore(&adev->vm_manager.prt_lock, flags);
1556}
1557
1558/**
Christian König4388fc22017-03-13 10:13:36 +01001559 * amdgpu_vm_prt_get - add a PRT user
Christian König451bc8e2017-02-14 16:02:52 +01001560 */
1561static void amdgpu_vm_prt_get(struct amdgpu_device *adev)
1562{
Christian König4388fc22017-03-13 10:13:36 +01001563 if (!adev->gart.gart_funcs->set_prt)
1564 return;
1565
Christian König451bc8e2017-02-14 16:02:52 +01001566 if (atomic_inc_return(&adev->vm_manager.num_prt_users) == 1)
1567 amdgpu_vm_update_prt_state(adev);
1568}
1569
1570/**
Christian König0b15f2f2017-02-14 15:47:03 +01001571 * amdgpu_vm_prt_put - drop a PRT user
1572 */
1573static void amdgpu_vm_prt_put(struct amdgpu_device *adev)
1574{
Christian König451bc8e2017-02-14 16:02:52 +01001575 if (atomic_dec_return(&adev->vm_manager.num_prt_users) == 0)
Christian König0b15f2f2017-02-14 15:47:03 +01001576 amdgpu_vm_update_prt_state(adev);
1577}
1578
1579/**
Christian König451bc8e2017-02-14 16:02:52 +01001580 * amdgpu_vm_prt_cb - callback for updating the PRT status
Christian König284710f2017-01-30 11:09:31 +01001581 */
1582static void amdgpu_vm_prt_cb(struct dma_fence *fence, struct dma_fence_cb *_cb)
1583{
1584 struct amdgpu_prt_cb *cb = container_of(_cb, struct amdgpu_prt_cb, cb);
1585
Christian König0b15f2f2017-02-14 15:47:03 +01001586 amdgpu_vm_prt_put(cb->adev);
Christian König284710f2017-01-30 11:09:31 +01001587 kfree(cb);
1588}
1589
1590/**
Christian König451bc8e2017-02-14 16:02:52 +01001591 * amdgpu_vm_add_prt_cb - add callback for updating the PRT status
1592 */
1593static void amdgpu_vm_add_prt_cb(struct amdgpu_device *adev,
1594 struct dma_fence *fence)
1595{
Christian König4388fc22017-03-13 10:13:36 +01001596 struct amdgpu_prt_cb *cb;
Christian König451bc8e2017-02-14 16:02:52 +01001597
Christian König4388fc22017-03-13 10:13:36 +01001598 if (!adev->gart.gart_funcs->set_prt)
1599 return;
1600
1601 cb = kmalloc(sizeof(struct amdgpu_prt_cb), GFP_KERNEL);
Christian König451bc8e2017-02-14 16:02:52 +01001602 if (!cb) {
1603 /* Last resort when we are OOM */
1604 if (fence)
1605 dma_fence_wait(fence, false);
1606
Dan Carpenter486a68f2017-04-03 21:41:39 +03001607 amdgpu_vm_prt_put(adev);
Christian König451bc8e2017-02-14 16:02:52 +01001608 } else {
1609 cb->adev = adev;
1610 if (!fence || dma_fence_add_callback(fence, &cb->cb,
1611 amdgpu_vm_prt_cb))
1612 amdgpu_vm_prt_cb(fence, &cb->cb);
1613 }
1614}
1615
1616/**
Christian König284710f2017-01-30 11:09:31 +01001617 * amdgpu_vm_free_mapping - free a mapping
1618 *
1619 * @adev: amdgpu_device pointer
1620 * @vm: requested vm
1621 * @mapping: mapping to be freed
1622 * @fence: fence of the unmap operation
1623 *
1624 * Free a mapping and make sure we decrease the PRT usage count if applicable.
1625 */
1626static void amdgpu_vm_free_mapping(struct amdgpu_device *adev,
1627 struct amdgpu_vm *vm,
1628 struct amdgpu_bo_va_mapping *mapping,
1629 struct dma_fence *fence)
1630{
Christian König451bc8e2017-02-14 16:02:52 +01001631 if (mapping->flags & AMDGPU_PTE_PRT)
1632 amdgpu_vm_add_prt_cb(adev, fence);
Christian König284710f2017-01-30 11:09:31 +01001633 kfree(mapping);
1634}
1635
1636/**
Christian König451bc8e2017-02-14 16:02:52 +01001637 * amdgpu_vm_prt_fini - finish all prt mappings
1638 *
1639 * @adev: amdgpu_device pointer
1640 * @vm: requested vm
1641 *
1642 * Register a cleanup callback to disable PRT support after VM dies.
1643 */
1644static void amdgpu_vm_prt_fini(struct amdgpu_device *adev, struct amdgpu_vm *vm)
1645{
Christian König67003a12016-10-12 14:46:26 +02001646 struct reservation_object *resv = vm->root.bo->tbo.resv;
Christian König451bc8e2017-02-14 16:02:52 +01001647 struct dma_fence *excl, **shared;
1648 unsigned i, shared_count;
1649 int r;
1650
1651 r = reservation_object_get_fences_rcu(resv, &excl,
1652 &shared_count, &shared);
1653 if (r) {
1654 /* Not enough memory to grab the fence list, as last resort
1655 * block for all the fences to complete.
1656 */
1657 reservation_object_wait_timeout_rcu(resv, true, false,
1658 MAX_SCHEDULE_TIMEOUT);
1659 return;
1660 }
1661
1662 /* Add a callback for each fence in the reservation object */
1663 amdgpu_vm_prt_get(adev);
1664 amdgpu_vm_add_prt_cb(adev, excl);
1665
1666 for (i = 0; i < shared_count; ++i) {
1667 amdgpu_vm_prt_get(adev);
1668 amdgpu_vm_add_prt_cb(adev, shared[i]);
1669 }
1670
1671 kfree(shared);
1672}
1673
1674/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001675 * amdgpu_vm_clear_freed - clear freed BOs in the PT
1676 *
1677 * @adev: amdgpu_device pointer
1678 * @vm: requested vm
Nicolai Hähnlef3467812017-03-23 19:36:31 +01001679 * @fence: optional resulting fence (unchanged if no work needed to be done
1680 * or if an error occurred)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001681 *
1682 * Make sure all freed BOs are cleared in the PT.
1683 * Returns 0 for success.
1684 *
1685 * PTs have to be reserved and mutex must be locked!
1686 */
1687int amdgpu_vm_clear_freed(struct amdgpu_device *adev,
Nicolai Hähnlef3467812017-03-23 19:36:31 +01001688 struct amdgpu_vm *vm,
1689 struct dma_fence **fence)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001690{
1691 struct amdgpu_bo_va_mapping *mapping;
Nicolai Hähnlef3467812017-03-23 19:36:31 +01001692 struct dma_fence *f = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001693 int r;
1694
1695 while (!list_empty(&vm->freed)) {
1696 mapping = list_first_entry(&vm->freed,
1697 struct amdgpu_bo_va_mapping, list);
1698 list_del(&mapping->list);
Christian Könige17841b2016-03-08 17:52:01 +01001699
Christian Königfc6aa332017-04-19 14:41:19 +02001700 r = amdgpu_vm_bo_update_mapping(adev, NULL, 0, NULL, vm,
1701 mapping->start, mapping->last,
1702 0, 0, &f);
Nicolai Hähnlef3467812017-03-23 19:36:31 +01001703 amdgpu_vm_free_mapping(adev, vm, mapping, f);
Christian König284710f2017-01-30 11:09:31 +01001704 if (r) {
Nicolai Hähnlef3467812017-03-23 19:36:31 +01001705 dma_fence_put(f);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001706 return r;
Christian König284710f2017-01-30 11:09:31 +01001707 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001708 }
Nicolai Hähnlef3467812017-03-23 19:36:31 +01001709
1710 if (fence && f) {
1711 dma_fence_put(*fence);
1712 *fence = f;
1713 } else {
1714 dma_fence_put(f);
1715 }
1716
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001717 return 0;
1718
1719}
1720
1721/**
1722 * amdgpu_vm_clear_invalids - clear invalidated BOs in the PT
1723 *
1724 * @adev: amdgpu_device pointer
1725 * @vm: requested vm
1726 *
1727 * Make sure all invalidated BOs are cleared in the PT.
1728 * Returns 0 for success.
1729 *
1730 * PTs have to be reserved and mutex must be locked!
1731 */
1732int amdgpu_vm_clear_invalids(struct amdgpu_device *adev,
monk.liucfe2c972015-05-26 15:01:54 +08001733 struct amdgpu_vm *vm, struct amdgpu_sync *sync)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001734{
monk.liucfe2c972015-05-26 15:01:54 +08001735 struct amdgpu_bo_va *bo_va = NULL;
Christian König91e1a522015-07-06 22:06:40 +02001736 int r = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001737
1738 spin_lock(&vm->status_lock);
1739 while (!list_empty(&vm->invalidated)) {
1740 bo_va = list_first_entry(&vm->invalidated,
1741 struct amdgpu_bo_va, vm_status);
1742 spin_unlock(&vm->status_lock);
Christian König32b41ac2016-03-08 18:03:27 +01001743
Christian König99e124f2016-08-16 14:43:17 +02001744 r = amdgpu_vm_bo_update(adev, bo_va, true);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001745 if (r)
1746 return r;
1747
1748 spin_lock(&vm->status_lock);
1749 }
1750 spin_unlock(&vm->status_lock);
1751
monk.liucfe2c972015-05-26 15:01:54 +08001752 if (bo_va)
Chunming Zhoubb1e38a42015-08-03 18:19:38 +08001753 r = amdgpu_sync_fence(adev, sync, bo_va->last_pt_update);
Christian König91e1a522015-07-06 22:06:40 +02001754
1755 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001756}
1757
1758/**
1759 * amdgpu_vm_bo_add - add a bo to a specific vm
1760 *
1761 * @adev: amdgpu_device pointer
1762 * @vm: requested vm
1763 * @bo: amdgpu buffer object
1764 *
Christian König8843dbb2016-01-26 12:17:11 +01001765 * Add @bo into the requested vm.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001766 * Add @bo to the list of bos associated with the vm
1767 * Returns newly added bo_va or NULL for failure
1768 *
1769 * Object has to be reserved!
1770 */
1771struct amdgpu_bo_va *amdgpu_vm_bo_add(struct amdgpu_device *adev,
1772 struct amdgpu_vm *vm,
1773 struct amdgpu_bo *bo)
1774{
1775 struct amdgpu_bo_va *bo_va;
1776
1777 bo_va = kzalloc(sizeof(struct amdgpu_bo_va), GFP_KERNEL);
1778 if (bo_va == NULL) {
1779 return NULL;
1780 }
1781 bo_va->vm = vm;
1782 bo_va->bo = bo;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001783 bo_va->ref_count = 1;
1784 INIT_LIST_HEAD(&bo_va->bo_list);
Christian König7fc11952015-07-30 11:53:42 +02001785 INIT_LIST_HEAD(&bo_va->valids);
1786 INIT_LIST_HEAD(&bo_va->invalids);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001787 INIT_LIST_HEAD(&bo_va->vm_status);
Christian König32b41ac2016-03-08 18:03:27 +01001788
Christian Königa5f6b5b2017-01-30 11:01:38 +01001789 if (bo)
1790 list_add_tail(&bo_va->bo_list, &bo->va);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001791
1792 return bo_va;
1793}
1794
1795/**
1796 * amdgpu_vm_bo_map - map bo inside a vm
1797 *
1798 * @adev: amdgpu_device pointer
1799 * @bo_va: bo_va to store the address
1800 * @saddr: where to map the BO
1801 * @offset: requested offset in the BO
1802 * @flags: attributes of pages (read/write/valid/etc.)
1803 *
1804 * Add a mapping of the BO at the specefied addr into the VM.
1805 * Returns 0 for success, error for failure.
1806 *
Chunming Zhou49b02b12015-11-13 14:18:38 +08001807 * Object has to be reserved and unreserved outside!
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001808 */
1809int amdgpu_vm_bo_map(struct amdgpu_device *adev,
1810 struct amdgpu_bo_va *bo_va,
1811 uint64_t saddr, uint64_t offset,
Christian König268c3002017-01-18 14:49:43 +01001812 uint64_t size, uint64_t flags)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001813{
Christian Königa9f87f62017-03-30 14:03:59 +02001814 struct amdgpu_bo_va_mapping *mapping, *tmp;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001815 struct amdgpu_vm *vm = bo_va->vm;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001816 uint64_t eaddr;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001817
Christian König0be52de2015-05-18 14:37:27 +02001818 /* validate the parameters */
1819 if (saddr & AMDGPU_GPU_PAGE_MASK || offset & AMDGPU_GPU_PAGE_MASK ||
Chunming Zhou49b02b12015-11-13 14:18:38 +08001820 size == 0 || size & AMDGPU_GPU_PAGE_MASK)
Christian König0be52de2015-05-18 14:37:27 +02001821 return -EINVAL;
Christian König0be52de2015-05-18 14:37:27 +02001822
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001823 /* make sure object fit at this offset */
Felix Kuehling005ae952015-11-23 17:43:48 -05001824 eaddr = saddr + size - 1;
Christian Königa5f6b5b2017-01-30 11:01:38 +01001825 if (saddr >= eaddr ||
1826 (bo_va->bo && offset + size > amdgpu_bo_size(bo_va->bo)))
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001827 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001828
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001829 saddr /= AMDGPU_GPU_PAGE_SIZE;
1830 eaddr /= AMDGPU_GPU_PAGE_SIZE;
1831
Christian Königa9f87f62017-03-30 14:03:59 +02001832 tmp = amdgpu_vm_it_iter_first(&vm->va, saddr, eaddr);
1833 if (tmp) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001834 /* bo and tmp overlap, invalid addr */
1835 dev_err(adev->dev, "bo %p va 0x%010Lx-0x%010Lx conflict with "
Christian Königa9f87f62017-03-30 14:03:59 +02001836 "0x%010Lx-0x%010Lx\n", bo_va->bo, saddr, eaddr,
1837 tmp->start, tmp->last + 1);
Christian König663e4572017-03-13 10:13:37 +01001838 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001839 }
1840
1841 mapping = kmalloc(sizeof(*mapping), GFP_KERNEL);
Christian König663e4572017-03-13 10:13:37 +01001842 if (!mapping)
1843 return -ENOMEM;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001844
1845 INIT_LIST_HEAD(&mapping->list);
Christian Königa9f87f62017-03-30 14:03:59 +02001846 mapping->start = saddr;
1847 mapping->last = eaddr;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001848 mapping->offset = offset;
1849 mapping->flags = flags;
1850
Christian König7fc11952015-07-30 11:53:42 +02001851 list_add(&mapping->list, &bo_va->invalids);
Christian Königa9f87f62017-03-30 14:03:59 +02001852 amdgpu_vm_it_insert(mapping, &vm->va);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001853
Christian König4388fc22017-03-13 10:13:36 +01001854 if (flags & AMDGPU_PTE_PRT)
1855 amdgpu_vm_prt_get(adev);
1856
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001857 return 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001858}
1859
1860/**
Christian König80f95c52017-03-13 10:13:39 +01001861 * amdgpu_vm_bo_replace_map - map bo inside a vm, replacing existing mappings
1862 *
1863 * @adev: amdgpu_device pointer
1864 * @bo_va: bo_va to store the address
1865 * @saddr: where to map the BO
1866 * @offset: requested offset in the BO
1867 * @flags: attributes of pages (read/write/valid/etc.)
1868 *
1869 * Add a mapping of the BO at the specefied addr into the VM. Replace existing
1870 * mappings as we do so.
1871 * Returns 0 for success, error for failure.
1872 *
1873 * Object has to be reserved and unreserved outside!
1874 */
1875int amdgpu_vm_bo_replace_map(struct amdgpu_device *adev,
1876 struct amdgpu_bo_va *bo_va,
1877 uint64_t saddr, uint64_t offset,
1878 uint64_t size, uint64_t flags)
1879{
1880 struct amdgpu_bo_va_mapping *mapping;
1881 struct amdgpu_vm *vm = bo_va->vm;
1882 uint64_t eaddr;
1883 int r;
1884
1885 /* validate the parameters */
1886 if (saddr & AMDGPU_GPU_PAGE_MASK || offset & AMDGPU_GPU_PAGE_MASK ||
1887 size == 0 || size & AMDGPU_GPU_PAGE_MASK)
1888 return -EINVAL;
1889
1890 /* make sure object fit at this offset */
1891 eaddr = saddr + size - 1;
1892 if (saddr >= eaddr ||
1893 (bo_va->bo && offset + size > amdgpu_bo_size(bo_va->bo)))
1894 return -EINVAL;
1895
1896 /* Allocate all the needed memory */
1897 mapping = kmalloc(sizeof(*mapping), GFP_KERNEL);
1898 if (!mapping)
1899 return -ENOMEM;
1900
1901 r = amdgpu_vm_bo_clear_mappings(adev, bo_va->vm, saddr, size);
1902 if (r) {
1903 kfree(mapping);
1904 return r;
1905 }
1906
1907 saddr /= AMDGPU_GPU_PAGE_SIZE;
1908 eaddr /= AMDGPU_GPU_PAGE_SIZE;
1909
Christian Königa9f87f62017-03-30 14:03:59 +02001910 mapping->start = saddr;
1911 mapping->last = eaddr;
Christian König80f95c52017-03-13 10:13:39 +01001912 mapping->offset = offset;
1913 mapping->flags = flags;
1914
1915 list_add(&mapping->list, &bo_va->invalids);
Christian Königa9f87f62017-03-30 14:03:59 +02001916 amdgpu_vm_it_insert(mapping, &vm->va);
Christian König80f95c52017-03-13 10:13:39 +01001917
1918 if (flags & AMDGPU_PTE_PRT)
1919 amdgpu_vm_prt_get(adev);
1920
1921 return 0;
1922}
1923
1924/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001925 * amdgpu_vm_bo_unmap - remove bo mapping from vm
1926 *
1927 * @adev: amdgpu_device pointer
1928 * @bo_va: bo_va to remove the address from
1929 * @saddr: where to the BO is mapped
1930 *
1931 * Remove a mapping of the BO at the specefied addr from the VM.
1932 * Returns 0 for success, error for failure.
1933 *
Chunming Zhou49b02b12015-11-13 14:18:38 +08001934 * Object has to be reserved and unreserved outside!
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001935 */
1936int amdgpu_vm_bo_unmap(struct amdgpu_device *adev,
1937 struct amdgpu_bo_va *bo_va,
1938 uint64_t saddr)
1939{
1940 struct amdgpu_bo_va_mapping *mapping;
1941 struct amdgpu_vm *vm = bo_va->vm;
Christian König7fc11952015-07-30 11:53:42 +02001942 bool valid = true;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001943
Christian König6c7fc502015-06-05 20:56:17 +02001944 saddr /= AMDGPU_GPU_PAGE_SIZE;
Christian König32b41ac2016-03-08 18:03:27 +01001945
Christian König7fc11952015-07-30 11:53:42 +02001946 list_for_each_entry(mapping, &bo_va->valids, list) {
Christian Königa9f87f62017-03-30 14:03:59 +02001947 if (mapping->start == saddr)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001948 break;
1949 }
1950
Christian König7fc11952015-07-30 11:53:42 +02001951 if (&mapping->list == &bo_va->valids) {
1952 valid = false;
1953
1954 list_for_each_entry(mapping, &bo_va->invalids, list) {
Christian Königa9f87f62017-03-30 14:03:59 +02001955 if (mapping->start == saddr)
Christian König7fc11952015-07-30 11:53:42 +02001956 break;
1957 }
1958
Christian König32b41ac2016-03-08 18:03:27 +01001959 if (&mapping->list == &bo_va->invalids)
Christian König7fc11952015-07-30 11:53:42 +02001960 return -ENOENT;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001961 }
Christian König32b41ac2016-03-08 18:03:27 +01001962
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001963 list_del(&mapping->list);
Christian Königa9f87f62017-03-30 14:03:59 +02001964 amdgpu_vm_it_remove(mapping, &vm->va);
Christian König93e3e432015-06-09 16:58:33 +02001965 trace_amdgpu_vm_bo_unmap(bo_va, mapping);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001966
Christian Könige17841b2016-03-08 17:52:01 +01001967 if (valid)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001968 list_add(&mapping->list, &vm->freed);
Christian Könige17841b2016-03-08 17:52:01 +01001969 else
Christian König284710f2017-01-30 11:09:31 +01001970 amdgpu_vm_free_mapping(adev, vm, mapping,
1971 bo_va->last_pt_update);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001972
1973 return 0;
1974}
1975
1976/**
Christian Königdc54d3d2017-03-13 10:13:38 +01001977 * amdgpu_vm_bo_clear_mappings - remove all mappings in a specific range
1978 *
1979 * @adev: amdgpu_device pointer
1980 * @vm: VM structure to use
1981 * @saddr: start of the range
1982 * @size: size of the range
1983 *
1984 * Remove all mappings in a range, split them as appropriate.
1985 * Returns 0 for success, error for failure.
1986 */
1987int amdgpu_vm_bo_clear_mappings(struct amdgpu_device *adev,
1988 struct amdgpu_vm *vm,
1989 uint64_t saddr, uint64_t size)
1990{
1991 struct amdgpu_bo_va_mapping *before, *after, *tmp, *next;
Christian Königdc54d3d2017-03-13 10:13:38 +01001992 LIST_HEAD(removed);
1993 uint64_t eaddr;
1994
1995 eaddr = saddr + size - 1;
1996 saddr /= AMDGPU_GPU_PAGE_SIZE;
1997 eaddr /= AMDGPU_GPU_PAGE_SIZE;
1998
1999 /* Allocate all the needed memory */
2000 before = kzalloc(sizeof(*before), GFP_KERNEL);
2001 if (!before)
2002 return -ENOMEM;
Junwei Zhang27f6d612017-03-16 16:09:24 +08002003 INIT_LIST_HEAD(&before->list);
Christian Königdc54d3d2017-03-13 10:13:38 +01002004
2005 after = kzalloc(sizeof(*after), GFP_KERNEL);
2006 if (!after) {
2007 kfree(before);
2008 return -ENOMEM;
2009 }
Junwei Zhang27f6d612017-03-16 16:09:24 +08002010 INIT_LIST_HEAD(&after->list);
Christian Königdc54d3d2017-03-13 10:13:38 +01002011
2012 /* Now gather all removed mappings */
Christian Königa9f87f62017-03-30 14:03:59 +02002013 tmp = amdgpu_vm_it_iter_first(&vm->va, saddr, eaddr);
2014 while (tmp) {
Christian Königdc54d3d2017-03-13 10:13:38 +01002015 /* Remember mapping split at the start */
Christian Königa9f87f62017-03-30 14:03:59 +02002016 if (tmp->start < saddr) {
2017 before->start = tmp->start;
2018 before->last = saddr - 1;
Christian Königdc54d3d2017-03-13 10:13:38 +01002019 before->offset = tmp->offset;
2020 before->flags = tmp->flags;
2021 list_add(&before->list, &tmp->list);
2022 }
2023
2024 /* Remember mapping split at the end */
Christian Königa9f87f62017-03-30 14:03:59 +02002025 if (tmp->last > eaddr) {
2026 after->start = eaddr + 1;
2027 after->last = tmp->last;
Christian Königdc54d3d2017-03-13 10:13:38 +01002028 after->offset = tmp->offset;
Christian Königa9f87f62017-03-30 14:03:59 +02002029 after->offset += after->start - tmp->start;
Christian Königdc54d3d2017-03-13 10:13:38 +01002030 after->flags = tmp->flags;
2031 list_add(&after->list, &tmp->list);
2032 }
2033
2034 list_del(&tmp->list);
2035 list_add(&tmp->list, &removed);
Christian Königa9f87f62017-03-30 14:03:59 +02002036
2037 tmp = amdgpu_vm_it_iter_next(tmp, saddr, eaddr);
Christian Königdc54d3d2017-03-13 10:13:38 +01002038 }
2039
2040 /* And free them up */
2041 list_for_each_entry_safe(tmp, next, &removed, list) {
Christian Königa9f87f62017-03-30 14:03:59 +02002042 amdgpu_vm_it_remove(tmp, &vm->va);
Christian Königdc54d3d2017-03-13 10:13:38 +01002043 list_del(&tmp->list);
2044
Christian Königa9f87f62017-03-30 14:03:59 +02002045 if (tmp->start < saddr)
2046 tmp->start = saddr;
2047 if (tmp->last > eaddr)
2048 tmp->last = eaddr;
Christian Königdc54d3d2017-03-13 10:13:38 +01002049
2050 list_add(&tmp->list, &vm->freed);
2051 trace_amdgpu_vm_bo_unmap(NULL, tmp);
2052 }
2053
Junwei Zhang27f6d612017-03-16 16:09:24 +08002054 /* Insert partial mapping before the range */
2055 if (!list_empty(&before->list)) {
Christian Königa9f87f62017-03-30 14:03:59 +02002056 amdgpu_vm_it_insert(before, &vm->va);
Christian Königdc54d3d2017-03-13 10:13:38 +01002057 if (before->flags & AMDGPU_PTE_PRT)
2058 amdgpu_vm_prt_get(adev);
2059 } else {
2060 kfree(before);
2061 }
2062
2063 /* Insert partial mapping after the range */
Junwei Zhang27f6d612017-03-16 16:09:24 +08002064 if (!list_empty(&after->list)) {
Christian Königa9f87f62017-03-30 14:03:59 +02002065 amdgpu_vm_it_insert(after, &vm->va);
Christian Königdc54d3d2017-03-13 10:13:38 +01002066 if (after->flags & AMDGPU_PTE_PRT)
2067 amdgpu_vm_prt_get(adev);
2068 } else {
2069 kfree(after);
2070 }
2071
2072 return 0;
2073}
2074
2075/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002076 * amdgpu_vm_bo_rmv - remove a bo to a specific vm
2077 *
2078 * @adev: amdgpu_device pointer
2079 * @bo_va: requested bo_va
2080 *
Christian König8843dbb2016-01-26 12:17:11 +01002081 * Remove @bo_va->bo from the requested vm.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002082 *
2083 * Object have to be reserved!
2084 */
2085void amdgpu_vm_bo_rmv(struct amdgpu_device *adev,
2086 struct amdgpu_bo_va *bo_va)
2087{
2088 struct amdgpu_bo_va_mapping *mapping, *next;
2089 struct amdgpu_vm *vm = bo_va->vm;
2090
2091 list_del(&bo_va->bo_list);
2092
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002093 spin_lock(&vm->status_lock);
2094 list_del(&bo_va->vm_status);
2095 spin_unlock(&vm->status_lock);
2096
Christian König7fc11952015-07-30 11:53:42 +02002097 list_for_each_entry_safe(mapping, next, &bo_va->valids, list) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002098 list_del(&mapping->list);
Christian Königa9f87f62017-03-30 14:03:59 +02002099 amdgpu_vm_it_remove(mapping, &vm->va);
Christian König93e3e432015-06-09 16:58:33 +02002100 trace_amdgpu_vm_bo_unmap(bo_va, mapping);
Christian König7fc11952015-07-30 11:53:42 +02002101 list_add(&mapping->list, &vm->freed);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002102 }
Christian König7fc11952015-07-30 11:53:42 +02002103 list_for_each_entry_safe(mapping, next, &bo_va->invalids, list) {
2104 list_del(&mapping->list);
Christian Königa9f87f62017-03-30 14:03:59 +02002105 amdgpu_vm_it_remove(mapping, &vm->va);
Christian König284710f2017-01-30 11:09:31 +01002106 amdgpu_vm_free_mapping(adev, vm, mapping,
2107 bo_va->last_pt_update);
Christian König7fc11952015-07-30 11:53:42 +02002108 }
Christian König32b41ac2016-03-08 18:03:27 +01002109
Chris Wilsonf54d1862016-10-25 13:00:45 +01002110 dma_fence_put(bo_va->last_pt_update);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002111 kfree(bo_va);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002112}
2113
2114/**
2115 * amdgpu_vm_bo_invalidate - mark the bo as invalid
2116 *
2117 * @adev: amdgpu_device pointer
2118 * @vm: requested vm
2119 * @bo: amdgpu buffer object
2120 *
Christian König8843dbb2016-01-26 12:17:11 +01002121 * Mark @bo as invalid.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002122 */
2123void amdgpu_vm_bo_invalidate(struct amdgpu_device *adev,
2124 struct amdgpu_bo *bo)
2125{
2126 struct amdgpu_bo_va *bo_va;
2127
2128 list_for_each_entry(bo_va, &bo->va, bo_list) {
Christian König7fc11952015-07-30 11:53:42 +02002129 spin_lock(&bo_va->vm->status_lock);
2130 if (list_empty(&bo_va->vm_status))
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002131 list_add(&bo_va->vm_status, &bo_va->vm->invalidated);
Christian König7fc11952015-07-30 11:53:42 +02002132 spin_unlock(&bo_va->vm->status_lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002133 }
2134}
2135
Junwei Zhangbab4fee2017-04-05 13:54:56 +08002136static uint32_t amdgpu_vm_get_block_size(uint64_t vm_size)
2137{
2138 /* Total bits covered by PD + PTs */
2139 unsigned bits = ilog2(vm_size) + 18;
2140
2141 /* Make sure the PD is 4K in size up to 8GB address space.
2142 Above that split equal between PD and PTs */
2143 if (vm_size <= 8)
2144 return (bits - 9);
2145 else
2146 return ((bits + 3) / 2);
2147}
2148
2149/**
2150 * amdgpu_vm_adjust_size - adjust vm size and block size
2151 *
2152 * @adev: amdgpu_device pointer
2153 * @vm_size: the default vm size if it's set auto
2154 */
2155void amdgpu_vm_adjust_size(struct amdgpu_device *adev, uint64_t vm_size)
2156{
2157 /* adjust vm size firstly */
2158 if (amdgpu_vm_size == -1)
2159 adev->vm_manager.vm_size = vm_size;
2160 else
2161 adev->vm_manager.vm_size = amdgpu_vm_size;
2162
2163 /* block size depends on vm size */
2164 if (amdgpu_vm_block_size == -1)
2165 adev->vm_manager.block_size =
2166 amdgpu_vm_get_block_size(adev->vm_manager.vm_size);
2167 else
2168 adev->vm_manager.block_size = amdgpu_vm_block_size;
2169
2170 DRM_INFO("vm size is %llu GB, block size is %u-bit\n",
2171 adev->vm_manager.vm_size, adev->vm_manager.block_size);
2172}
2173
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002174/**
2175 * amdgpu_vm_init - initialize a vm instance
2176 *
2177 * @adev: amdgpu_device pointer
2178 * @vm: requested vm
2179 *
Christian König8843dbb2016-01-26 12:17:11 +01002180 * Init @vm fields.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002181 */
2182int amdgpu_vm_init(struct amdgpu_device *adev, struct amdgpu_vm *vm)
2183{
2184 const unsigned align = min(AMDGPU_VM_PTB_ALIGN_SIZE,
Zhang, Jerry36b32a62017-03-29 16:08:32 +08002185 AMDGPU_VM_PTE_COUNT(adev) * 8);
Christian König2d55e452016-02-08 17:37:38 +01002186 unsigned ring_instance;
2187 struct amdgpu_ring *ring;
Christian König2bd9ccf2016-02-01 12:53:58 +01002188 struct amd_sched_rq *rq;
Chunming Zhou36bbf3b2017-04-20 16:17:34 +08002189 int r, i;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002190
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002191 vm->va = RB_ROOT;
Chunming Zhou031e2982016-04-25 10:19:13 +08002192 vm->client_id = atomic64_inc_return(&adev->vm_manager.client_counter);
Chunming Zhou36bbf3b2017-04-20 16:17:34 +08002193 for (i = 0; i < AMDGPU_MAX_VMHUBS; i++)
2194 vm->reserved_vmid[i] = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002195 spin_lock_init(&vm->status_lock);
2196 INIT_LIST_HEAD(&vm->invalidated);
Christian König7fc11952015-07-30 11:53:42 +02002197 INIT_LIST_HEAD(&vm->cleared);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002198 INIT_LIST_HEAD(&vm->freed);
Christian König20250212016-03-08 17:58:35 +01002199
Christian König2bd9ccf2016-02-01 12:53:58 +01002200 /* create scheduler entity for page table updates */
Christian König2d55e452016-02-08 17:37:38 +01002201
2202 ring_instance = atomic_inc_return(&adev->vm_manager.vm_pte_next_ring);
2203 ring_instance %= adev->vm_manager.vm_pte_num_rings;
2204 ring = adev->vm_manager.vm_pte_rings[ring_instance];
Christian König2bd9ccf2016-02-01 12:53:58 +01002205 rq = &ring->sched.sched_rq[AMD_SCHED_PRIORITY_KERNEL];
2206 r = amd_sched_entity_init(&ring->sched, &vm->entity,
2207 rq, amdgpu_sched_jobs);
2208 if (r)
Christian Königf566ceb2016-10-27 20:04:38 +02002209 return r;
Christian König2bd9ccf2016-02-01 12:53:58 +01002210
Christian Königa24960f2016-10-12 13:20:52 +02002211 vm->last_dir_update = NULL;
Bas Nieuwenhuizen05906de2015-08-14 20:08:40 +02002212
Christian Königf566ceb2016-10-27 20:04:38 +02002213 r = amdgpu_bo_create(adev, amdgpu_vm_bo_size(adev, 0), align, true,
Alex Deucher857d9132015-08-27 00:14:16 -04002214 AMDGPU_GEM_DOMAIN_VRAM,
Chunming Zhou1baa4392016-08-04 13:59:32 +08002215 AMDGPU_GEM_CREATE_NO_CPU_ACCESS |
Christian König03f48dd2016-08-15 17:00:22 +02002216 AMDGPU_GEM_CREATE_SHADOW |
Christian König617859e2016-11-17 15:40:02 +01002217 AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS |
2218 AMDGPU_GEM_CREATE_VRAM_CLEARED,
Christian König67003a12016-10-12 14:46:26 +02002219 NULL, NULL, &vm->root.bo);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002220 if (r)
Christian König2bd9ccf2016-02-01 12:53:58 +01002221 goto error_free_sched_entity;
2222
Christian König67003a12016-10-12 14:46:26 +02002223 r = amdgpu_bo_reserve(vm->root.bo, false);
Christian König2bd9ccf2016-02-01 12:53:58 +01002224 if (r)
Christian König67003a12016-10-12 14:46:26 +02002225 goto error_free_root;
Christian König2bd9ccf2016-02-01 12:53:58 +01002226
Christian König5a712a82016-06-21 16:28:15 +02002227 vm->last_eviction_counter = atomic64_read(&adev->num_evictions);
Christian König67003a12016-10-12 14:46:26 +02002228 amdgpu_bo_unreserve(vm->root.bo);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002229
2230 return 0;
Christian König2bd9ccf2016-02-01 12:53:58 +01002231
Christian König67003a12016-10-12 14:46:26 +02002232error_free_root:
2233 amdgpu_bo_unref(&vm->root.bo->shadow);
2234 amdgpu_bo_unref(&vm->root.bo);
2235 vm->root.bo = NULL;
Christian König2bd9ccf2016-02-01 12:53:58 +01002236
2237error_free_sched_entity:
2238 amd_sched_entity_fini(&ring->sched, &vm->entity);
2239
2240 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002241}
2242
2243/**
Christian Königf566ceb2016-10-27 20:04:38 +02002244 * amdgpu_vm_free_levels - free PD/PT levels
2245 *
2246 * @level: PD/PT starting level to free
2247 *
2248 * Free the page directory or page table level and all sub levels.
2249 */
2250static void amdgpu_vm_free_levels(struct amdgpu_vm_pt *level)
2251{
2252 unsigned i;
2253
2254 if (level->bo) {
2255 amdgpu_bo_unref(&level->bo->shadow);
2256 amdgpu_bo_unref(&level->bo);
2257 }
2258
2259 if (level->entries)
2260 for (i = 0; i <= level->last_entry_used; i++)
2261 amdgpu_vm_free_levels(&level->entries[i]);
2262
2263 drm_free_large(level->entries);
2264}
2265
2266/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002267 * amdgpu_vm_fini - tear down a vm instance
2268 *
2269 * @adev: amdgpu_device pointer
2270 * @vm: requested vm
2271 *
Christian König8843dbb2016-01-26 12:17:11 +01002272 * Tear down @vm.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002273 * Unbind the VM and remove all bos from the vm bo list
2274 */
2275void amdgpu_vm_fini(struct amdgpu_device *adev, struct amdgpu_vm *vm)
2276{
2277 struct amdgpu_bo_va_mapping *mapping, *tmp;
Christian König4388fc22017-03-13 10:13:36 +01002278 bool prt_fini_needed = !!adev->gart.gart_funcs->set_prt;
Chunming Zhou36bbf3b2017-04-20 16:17:34 +08002279 int i;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002280
Christian König2d55e452016-02-08 17:37:38 +01002281 amd_sched_entity_fini(vm->entity.sched, &vm->entity);
Christian König2bd9ccf2016-02-01 12:53:58 +01002282
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002283 if (!RB_EMPTY_ROOT(&vm->va)) {
2284 dev_err(adev->dev, "still active bo inside vm\n");
2285 }
Christian Königa9f87f62017-03-30 14:03:59 +02002286 rbtree_postorder_for_each_entry_safe(mapping, tmp, &vm->va, rb) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002287 list_del(&mapping->list);
Christian Königa9f87f62017-03-30 14:03:59 +02002288 amdgpu_vm_it_remove(mapping, &vm->va);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002289 kfree(mapping);
2290 }
2291 list_for_each_entry_safe(mapping, tmp, &vm->freed, list) {
Christian König4388fc22017-03-13 10:13:36 +01002292 if (mapping->flags & AMDGPU_PTE_PRT && prt_fini_needed) {
Christian König451bc8e2017-02-14 16:02:52 +01002293 amdgpu_vm_prt_fini(adev, vm);
Christian König4388fc22017-03-13 10:13:36 +01002294 prt_fini_needed = false;
Christian König451bc8e2017-02-14 16:02:52 +01002295 }
Christian König284710f2017-01-30 11:09:31 +01002296
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002297 list_del(&mapping->list);
Christian König451bc8e2017-02-14 16:02:52 +01002298 amdgpu_vm_free_mapping(adev, vm, mapping, NULL);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002299 }
2300
Christian Königf566ceb2016-10-27 20:04:38 +02002301 amdgpu_vm_free_levels(&vm->root);
Christian Königa24960f2016-10-12 13:20:52 +02002302 dma_fence_put(vm->last_dir_update);
Chunming Zhou1e9ef262017-04-20 16:18:48 +08002303 for (i = 0; i < AMDGPU_MAX_VMHUBS; i++)
2304 amdgpu_vm_free_reserved_vmid(adev, vm, i);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002305}
Christian Königea89f8c2015-11-15 20:52:06 +01002306
2307/**
Christian Königa9a78b32016-01-21 10:19:11 +01002308 * amdgpu_vm_manager_init - init the VM manager
2309 *
2310 * @adev: amdgpu_device pointer
2311 *
2312 * Initialize the VM manager structures
2313 */
2314void amdgpu_vm_manager_init(struct amdgpu_device *adev)
2315{
Christian König76456702017-04-06 17:52:39 +02002316 unsigned i, j;
Christian Königa9a78b32016-01-21 10:19:11 +01002317
Christian König76456702017-04-06 17:52:39 +02002318 for (i = 0; i < AMDGPU_MAX_VMHUBS; ++i) {
2319 struct amdgpu_vm_id_manager *id_mgr =
2320 &adev->vm_manager.id_mgr[i];
Christian Königa9a78b32016-01-21 10:19:11 +01002321
Christian König76456702017-04-06 17:52:39 +02002322 mutex_init(&id_mgr->lock);
2323 INIT_LIST_HEAD(&id_mgr->ids_lru);
2324
2325 /* skip over VMID 0, since it is the system VM */
2326 for (j = 1; j < id_mgr->num_ids; ++j) {
2327 amdgpu_vm_reset_id(adev, i, j);
2328 amdgpu_sync_create(&id_mgr->ids[i].active);
2329 list_add_tail(&id_mgr->ids[j].list, &id_mgr->ids_lru);
2330 }
Christian König971fe9a92016-03-01 15:09:25 +01002331 }
Christian König2d55e452016-02-08 17:37:38 +01002332
Chris Wilsonf54d1862016-10-25 13:00:45 +01002333 adev->vm_manager.fence_context =
2334 dma_fence_context_alloc(AMDGPU_MAX_RINGS);
Christian König1fbb2e92016-06-01 10:47:36 +02002335 for (i = 0; i < AMDGPU_MAX_RINGS; ++i)
2336 adev->vm_manager.seqno[i] = 0;
2337
Christian König2d55e452016-02-08 17:37:38 +01002338 atomic_set(&adev->vm_manager.vm_pte_next_ring, 0);
Christian Königb1c8a812016-05-04 10:34:03 +02002339 atomic64_set(&adev->vm_manager.client_counter, 0);
Christian König284710f2017-01-30 11:09:31 +01002340 spin_lock_init(&adev->vm_manager.prt_lock);
Christian König451bc8e2017-02-14 16:02:52 +01002341 atomic_set(&adev->vm_manager.num_prt_users, 0);
Christian Königa9a78b32016-01-21 10:19:11 +01002342}
2343
2344/**
Christian Königea89f8c2015-11-15 20:52:06 +01002345 * amdgpu_vm_manager_fini - cleanup VM manager
2346 *
2347 * @adev: amdgpu_device pointer
2348 *
2349 * Cleanup the VM manager and free resources.
2350 */
2351void amdgpu_vm_manager_fini(struct amdgpu_device *adev)
2352{
Christian König76456702017-04-06 17:52:39 +02002353 unsigned i, j;
Christian Königea89f8c2015-11-15 20:52:06 +01002354
Christian König76456702017-04-06 17:52:39 +02002355 for (i = 0; i < AMDGPU_MAX_VMHUBS; ++i) {
2356 struct amdgpu_vm_id_manager *id_mgr =
2357 &adev->vm_manager.id_mgr[i];
Christian Königbcb1ba32016-03-08 15:40:11 +01002358
Christian König76456702017-04-06 17:52:39 +02002359 mutex_destroy(&id_mgr->lock);
2360 for (j = 0; j < AMDGPU_NUM_VM; ++j) {
2361 struct amdgpu_vm_id *id = &id_mgr->ids[j];
2362
2363 amdgpu_sync_free(&id->active);
2364 dma_fence_put(id->flushed_updates);
2365 dma_fence_put(id->last_flush);
2366 }
Christian Königbcb1ba32016-03-08 15:40:11 +01002367 }
Christian Königea89f8c2015-11-15 20:52:06 +01002368}
Chunming Zhoucfbcacf2017-04-24 11:09:04 +08002369
2370int amdgpu_vm_ioctl(struct drm_device *dev, void *data, struct drm_file *filp)
2371{
2372 union drm_amdgpu_vm *args = data;
Chunming Zhou1e9ef262017-04-20 16:18:48 +08002373 struct amdgpu_device *adev = dev->dev_private;
2374 struct amdgpu_fpriv *fpriv = filp->driver_priv;
2375 int r;
Chunming Zhoucfbcacf2017-04-24 11:09:04 +08002376
2377 switch (args->in.op) {
2378 case AMDGPU_VM_OP_RESERVE_VMID:
Chunming Zhou1e9ef262017-04-20 16:18:48 +08002379 /* current, we only have requirement to reserve vmid from gfxhub */
2380 r = amdgpu_vm_alloc_reserved_vmid(adev, &fpriv->vm,
2381 AMDGPU_GFXHUB);
2382 if (r)
2383 return r;
2384 break;
Chunming Zhoucfbcacf2017-04-24 11:09:04 +08002385 case AMDGPU_VM_OP_UNRESERVE_VMID:
Chunming Zhou1e9ef262017-04-20 16:18:48 +08002386 amdgpu_vm_free_reserved_vmid(adev, &fpriv->vm, AMDGPU_GFXHUB);
Chunming Zhoucfbcacf2017-04-24 11:09:04 +08002387 break;
2388 default:
2389 return -EINVAL;
2390 }
2391
2392 return 0;
2393}