blob: 4e6c1e4072ca05aede0bc6a6a2587f1dbc7a6342 [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önig0c0fdf12016-07-08 10:48:24 +0200536 trace_amdgpu_vm_grab_id(vm, ring->idx, 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
Alex Deucher93dcc372016-06-17 17:05:15 -0400543static bool amdgpu_vm_ring_has_compute_vm_bug(struct amdgpu_ring *ring)
544{
545 struct amdgpu_device *adev = ring->adev;
Alex Deuchera1255102016-10-13 17:41:13 -0400546 const struct amdgpu_ip_block *ip_block;
Alex Deucher93dcc372016-06-17 17:05:15 -0400547
Christian König21cd9422016-10-05 15:36:39 +0200548 if (ring->funcs->type != AMDGPU_RING_TYPE_COMPUTE)
Alex Deucher93dcc372016-06-17 17:05:15 -0400549 /* only compute rings */
550 return false;
551
552 ip_block = amdgpu_get_ip_block(adev, AMD_IP_BLOCK_TYPE_GFX);
553 if (!ip_block)
554 return false;
555
Alex Deuchera1255102016-10-13 17:41:13 -0400556 if (ip_block->version->major <= 7) {
Alex Deucher93dcc372016-06-17 17:05:15 -0400557 /* gfx7 has no workaround */
558 return true;
Alex Deuchera1255102016-10-13 17:41:13 -0400559 } else if (ip_block->version->major == 8) {
Alex Deucher93dcc372016-06-17 17:05:15 -0400560 if (adev->gfx.mec_fw_version >= 673)
561 /* gfx8 is fixed in MEC firmware 673 */
562 return false;
563 else
564 return true;
565 }
566 return false;
567}
568
Alex Xiee60f8db2017-03-09 11:36:26 -0500569static u64 amdgpu_vm_adjust_mc_addr(struct amdgpu_device *adev, u64 mc_addr)
570{
571 u64 addr = mc_addr;
572
Christian Königf75e2372017-03-30 15:55:07 +0200573 if (adev->gart.gart_funcs->adjust_mc_addr)
574 addr = adev->gart.gart_funcs->adjust_mc_addr(adev, addr);
Alex Xiee60f8db2017-03-09 11:36:26 -0500575
576 return addr;
577}
578
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400579/**
580 * amdgpu_vm_flush - hardware flush the vm
581 *
582 * @ring: ring to use for flush
Christian Königcffadc82016-03-01 13:34:49 +0100583 * @vm_id: vmid number to use
Christian König4ff37a82016-02-26 16:18:26 +0100584 * @pd_addr: address of the page directory
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400585 *
Christian König4ff37a82016-02-26 16:18:26 +0100586 * Emit a VM flush when it is necessary.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400587 */
Chunming Zhoufd53be32016-07-01 17:59:01 +0800588int amdgpu_vm_flush(struct amdgpu_ring *ring, struct amdgpu_job *job)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400589{
Christian König971fe9a92016-03-01 15:09:25 +0100590 struct amdgpu_device *adev = ring->adev;
Christian König76456702017-04-06 17:52:39 +0200591 unsigned vmhub = ring->funcs->vmhub;
592 struct amdgpu_vm_id_manager *id_mgr = &adev->vm_manager.id_mgr[vmhub];
593 struct amdgpu_vm_id *id = &id_mgr->ids[job->vm_id];
Christian Königd564a062016-03-01 15:51:53 +0100594 bool gds_switch_needed = ring->funcs->emit_gds_switch && (
Chunming Zhoufd53be32016-07-01 17:59:01 +0800595 id->gds_base != job->gds_base ||
596 id->gds_size != job->gds_size ||
597 id->gws_base != job->gws_base ||
598 id->gws_size != job->gws_size ||
599 id->oa_base != job->oa_base ||
600 id->oa_size != job->oa_size);
Christian Königf7d015b2017-04-03 14:28:26 +0200601 bool vm_flush_needed = job->vm_needs_flush ||
602 amdgpu_vm_ring_has_compute_vm_bug(ring);
Christian Königc0e51932017-04-03 14:16:07 +0200603 unsigned patch_offset = 0;
Christian König41d9eb22016-03-01 16:46:18 +0100604 int r;
Christian Königd564a062016-03-01 15:51:53 +0100605
Christian Königf7d015b2017-04-03 14:28:26 +0200606 if (amdgpu_vm_had_gpu_reset(adev, id)) {
607 gds_switch_needed = true;
608 vm_flush_needed = true;
609 }
Christian König971fe9a92016-03-01 15:09:25 +0100610
Christian Königf7d015b2017-04-03 14:28:26 +0200611 if (!vm_flush_needed && !gds_switch_needed)
612 return 0;
Christian König41d9eb22016-03-01 16:46:18 +0100613
Christian Königc0e51932017-04-03 14:16:07 +0200614 if (ring->funcs->init_cond_exec)
615 patch_offset = amdgpu_ring_init_cond_exec(ring);
Christian König41d9eb22016-03-01 16:46:18 +0100616
Christian Königf7d015b2017-04-03 14:28:26 +0200617 if (ring->funcs->emit_pipeline_sync)
Christian Königc0e51932017-04-03 14:16:07 +0200618 amdgpu_ring_emit_pipeline_sync(ring);
Christian König3dab83b2016-06-01 13:31:17 +0200619
Christian Königf7d015b2017-04-03 14:28:26 +0200620 if (ring->funcs->emit_vm_flush && vm_flush_needed) {
Christian Königc0e51932017-04-03 14:16:07 +0200621 u64 pd_addr = amdgpu_vm_adjust_mc_addr(adev, job->vm_pd_addr);
622 struct dma_fence *fence;
Monk Liue9d672b2017-03-15 12:18:57 +0800623
Christian Königc0e51932017-04-03 14:16:07 +0200624 trace_amdgpu_vm_flush(pd_addr, ring->idx, job->vm_id);
625 amdgpu_ring_emit_vm_flush(ring, job->vm_id, pd_addr);
Monk Liue9d672b2017-03-15 12:18:57 +0800626
Christian Königc0e51932017-04-03 14:16:07 +0200627 r = amdgpu_fence_emit(ring, &fence);
628 if (r)
629 return r;
Monk Liue9d672b2017-03-15 12:18:57 +0800630
Christian König76456702017-04-06 17:52:39 +0200631 mutex_lock(&id_mgr->lock);
Christian Königc0e51932017-04-03 14:16:07 +0200632 dma_fence_put(id->last_flush);
633 id->last_flush = fence;
Christian König76456702017-04-06 17:52:39 +0200634 mutex_unlock(&id_mgr->lock);
Christian Königc0e51932017-04-03 14:16:07 +0200635 }
Monk Liue9d672b2017-03-15 12:18:57 +0800636
Christian Königc0e51932017-04-03 14:16:07 +0200637 if (gds_switch_needed) {
638 id->gds_base = job->gds_base;
639 id->gds_size = job->gds_size;
640 id->gws_base = job->gws_base;
641 id->gws_size = job->gws_size;
642 id->oa_base = job->oa_base;
643 id->oa_size = job->oa_size;
644 amdgpu_ring_emit_gds_switch(ring, job->vm_id, job->gds_base,
645 job->gds_size, job->gws_base,
646 job->gws_size, job->oa_base,
647 job->oa_size);
648 }
649
650 if (ring->funcs->patch_cond_exec)
651 amdgpu_ring_patch_cond_exec(ring, patch_offset);
652
653 /* the double SWITCH_BUFFER here *cannot* be skipped by COND_EXEC */
654 if (ring->funcs->emit_switch_buffer) {
655 amdgpu_ring_emit_switch_buffer(ring);
656 amdgpu_ring_emit_switch_buffer(ring);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400657 }
Christian König41d9eb22016-03-01 16:46:18 +0100658 return 0;
Christian König971fe9a92016-03-01 15:09:25 +0100659}
660
661/**
662 * amdgpu_vm_reset_id - reset VMID to zero
663 *
664 * @adev: amdgpu device structure
665 * @vm_id: vmid number to use
666 *
667 * Reset saved GDW, GWS and OA to force switch on next flush.
668 */
Christian König76456702017-04-06 17:52:39 +0200669void amdgpu_vm_reset_id(struct amdgpu_device *adev, unsigned vmhub,
670 unsigned vmid)
Christian König971fe9a92016-03-01 15:09:25 +0100671{
Christian König76456702017-04-06 17:52:39 +0200672 struct amdgpu_vm_id_manager *id_mgr = &adev->vm_manager.id_mgr[vmhub];
673 struct amdgpu_vm_id *id = &id_mgr->ids[vmid];
Christian König971fe9a92016-03-01 15:09:25 +0100674
Christian Königbcb1ba32016-03-08 15:40:11 +0100675 id->gds_base = 0;
676 id->gds_size = 0;
677 id->gws_base = 0;
678 id->gws_size = 0;
679 id->oa_base = 0;
680 id->oa_size = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400681}
682
683/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400684 * amdgpu_vm_bo_find - find the bo_va for a specific vm & bo
685 *
686 * @vm: requested vm
687 * @bo: requested buffer object
688 *
Christian König8843dbb2016-01-26 12:17:11 +0100689 * Find @bo inside the requested vm.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400690 * Search inside the @bos vm list for the requested vm
691 * Returns the found bo_va or NULL if none is found
692 *
693 * Object has to be reserved!
694 */
695struct amdgpu_bo_va *amdgpu_vm_bo_find(struct amdgpu_vm *vm,
696 struct amdgpu_bo *bo)
697{
698 struct amdgpu_bo_va *bo_va;
699
700 list_for_each_entry(bo_va, &bo->va, bo_list) {
701 if (bo_va->vm == vm) {
702 return bo_va;
703 }
704 }
705 return NULL;
706}
707
708/**
Christian Königafef8b82016-08-12 13:29:18 +0200709 * amdgpu_vm_do_set_ptes - helper to call the right asic function
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400710 *
Christian König29efc4f2016-08-04 14:52:50 +0200711 * @params: see amdgpu_pte_update_params definition
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400712 * @pe: addr of the page entry
713 * @addr: dst addr to write into pe
714 * @count: number of page entries to update
715 * @incr: increase next addr by incr bytes
716 * @flags: hw access flags
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400717 *
718 * Traces the parameters and calls the right asic functions
719 * to setup the page table using the DMA.
720 */
Christian Königafef8b82016-08-12 13:29:18 +0200721static void amdgpu_vm_do_set_ptes(struct amdgpu_pte_update_params *params,
722 uint64_t pe, uint64_t addr,
723 unsigned count, uint32_t incr,
Chunming Zhou6b777602016-09-21 16:19:19 +0800724 uint64_t flags)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400725{
Christian Königec2f05f2016-09-25 16:11:52 +0200726 trace_amdgpu_vm_set_ptes(pe, addr, count, incr, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400727
Christian Königafef8b82016-08-12 13:29:18 +0200728 if (count < 3) {
Christian Königde9ea7b2016-08-12 11:33:30 +0200729 amdgpu_vm_write_pte(params->adev, params->ib, pe,
730 addr | flags, count, incr);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400731
732 } else {
Christian König27c5f362016-08-04 15:02:49 +0200733 amdgpu_vm_set_pte_pde(params->adev, params->ib, pe, addr,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400734 count, incr, flags);
735 }
736}
737
738/**
Christian Königafef8b82016-08-12 13:29:18 +0200739 * amdgpu_vm_do_copy_ptes - copy the PTEs from the GART
740 *
741 * @params: see amdgpu_pte_update_params definition
742 * @pe: addr of the page entry
743 * @addr: dst addr to write into pe
744 * @count: number of page entries to update
745 * @incr: increase next addr by incr bytes
746 * @flags: hw access flags
747 *
748 * Traces the parameters and calls the DMA function to copy the PTEs.
749 */
750static void amdgpu_vm_do_copy_ptes(struct amdgpu_pte_update_params *params,
751 uint64_t pe, uint64_t addr,
752 unsigned count, uint32_t incr,
Chunming Zhou6b777602016-09-21 16:19:19 +0800753 uint64_t flags)
Christian Königafef8b82016-08-12 13:29:18 +0200754{
Christian Königec2f05f2016-09-25 16:11:52 +0200755 uint64_t src = (params->src + (addr >> 12) * 8);
Christian Königafef8b82016-08-12 13:29:18 +0200756
Christian Königec2f05f2016-09-25 16:11:52 +0200757
758 trace_amdgpu_vm_copy_ptes(pe, src, count);
759
760 amdgpu_vm_copy_pte(params->adev, params->ib, pe, src, count);
Christian Königafef8b82016-08-12 13:29:18 +0200761}
762
763/**
Christian Königb07c9d22015-11-30 13:26:07 +0100764 * amdgpu_vm_map_gart - Resolve gart mapping of addr
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400765 *
Christian Königb07c9d22015-11-30 13:26:07 +0100766 * @pages_addr: optional DMA address to use for lookup
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400767 * @addr: the unmapped addr
768 *
769 * Look up the physical address of the page that the pte resolves
Christian Königb07c9d22015-11-30 13:26:07 +0100770 * to and return the pointer for the page table entry.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400771 */
Christian Königde9ea7b2016-08-12 11:33:30 +0200772static uint64_t amdgpu_vm_map_gart(const dma_addr_t *pages_addr, uint64_t addr)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400773{
774 uint64_t result;
775
Christian Königde9ea7b2016-08-12 11:33:30 +0200776 /* page table offset */
777 result = pages_addr[addr >> PAGE_SHIFT];
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400778
Christian Königde9ea7b2016-08-12 11:33:30 +0200779 /* in case cpu page size != gpu page size*/
780 result |= addr & (~PAGE_MASK);
Christian Königb07c9d22015-11-30 13:26:07 +0100781
782 result &= 0xFFFFFFFFFFFFF000ULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400783
784 return result;
785}
786
Christian Königf8991ba2016-09-16 15:36:49 +0200787/*
Christian König194d2162016-10-12 15:13:52 +0200788 * amdgpu_vm_update_level - update a single level in the hierarchy
Christian Königf8991ba2016-09-16 15:36:49 +0200789 *
790 * @adev: amdgpu_device pointer
791 * @vm: requested vm
Christian König194d2162016-10-12 15:13:52 +0200792 * @parent: parent directory
Christian Königf8991ba2016-09-16 15:36:49 +0200793 *
Christian König194d2162016-10-12 15:13:52 +0200794 * Makes sure all entries in @parent are up to date.
Christian Königf8991ba2016-09-16 15:36:49 +0200795 * Returns 0 for success, error for failure.
796 */
Christian König194d2162016-10-12 15:13:52 +0200797static int amdgpu_vm_update_level(struct amdgpu_device *adev,
798 struct amdgpu_vm *vm,
799 struct amdgpu_vm_pt *parent,
800 unsigned level)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400801{
Christian Königf8991ba2016-09-16 15:36:49 +0200802 struct amdgpu_bo *shadow;
Christian König2d55e452016-02-08 17:37:38 +0100803 struct amdgpu_ring *ring;
Christian Königf8991ba2016-09-16 15:36:49 +0200804 uint64_t pd_addr, shadow_addr;
Christian König194d2162016-10-12 15:13:52 +0200805 uint32_t incr = amdgpu_vm_bo_size(adev, level + 1);
Christian Königf8991ba2016-09-16 15:36:49 +0200806 uint64_t last_pde = ~0, last_pt = ~0, last_shadow = ~0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400807 unsigned count = 0, pt_idx, ndw;
Christian Königd71518b2016-02-01 12:20:25 +0100808 struct amdgpu_job *job;
Christian König29efc4f2016-08-04 14:52:50 +0200809 struct amdgpu_pte_update_params params;
Dave Airlie220196b2016-10-28 11:33:52 +1000810 struct dma_fence *fence = NULL;
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800811
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400812 int r;
813
Christian König194d2162016-10-12 15:13:52 +0200814 if (!parent->entries)
815 return 0;
Christian König2d55e452016-02-08 17:37:38 +0100816 ring = container_of(vm->entity.sched, struct amdgpu_ring, sched);
817
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400818 /* padding, etc. */
819 ndw = 64;
820
821 /* assume the worst case */
Christian König194d2162016-10-12 15:13:52 +0200822 ndw += parent->last_entry_used * 6;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400823
Christian König194d2162016-10-12 15:13:52 +0200824 pd_addr = amdgpu_bo_gpu_offset(parent->bo);
825
826 shadow = parent->bo->shadow;
Christian Königf8991ba2016-09-16 15:36:49 +0200827 if (shadow) {
828 r = amdgpu_ttm_bind(&shadow->tbo, &shadow->tbo.mem);
829 if (r)
830 return r;
831 shadow_addr = amdgpu_bo_gpu_offset(shadow);
832 ndw *= 2;
833 } else {
834 shadow_addr = 0;
835 }
836
Christian Königd71518b2016-02-01 12:20:25 +0100837 r = amdgpu_job_alloc_with_ib(adev, ndw * 4, &job);
838 if (r)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400839 return r;
Christian Königd71518b2016-02-01 12:20:25 +0100840
Christian König27c5f362016-08-04 15:02:49 +0200841 memset(&params, 0, sizeof(params));
842 params.adev = adev;
Christian König29efc4f2016-08-04 14:52:50 +0200843 params.ib = &job->ibs[0];
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400844
Christian König194d2162016-10-12 15:13:52 +0200845 /* walk over the address space and update the directory */
846 for (pt_idx = 0; pt_idx <= parent->last_entry_used; ++pt_idx) {
847 struct amdgpu_bo *bo = parent->entries[pt_idx].bo;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400848 uint64_t pde, pt;
849
850 if (bo == NULL)
851 continue;
852
Christian König0fc86832016-09-16 11:46:23 +0200853 if (bo->shadow) {
Christian Königf8991ba2016-09-16 15:36:49 +0200854 struct amdgpu_bo *pt_shadow = bo->shadow;
Christian König0fc86832016-09-16 11:46:23 +0200855
Christian Königf8991ba2016-09-16 15:36:49 +0200856 r = amdgpu_ttm_bind(&pt_shadow->tbo,
857 &pt_shadow->tbo.mem);
Christian König0fc86832016-09-16 11:46:23 +0200858 if (r)
859 return r;
860 }
861
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400862 pt = amdgpu_bo_gpu_offset(bo);
Christian König194d2162016-10-12 15:13:52 +0200863 if (parent->entries[pt_idx].addr == pt)
Christian Königf8991ba2016-09-16 15:36:49 +0200864 continue;
865
Christian König194d2162016-10-12 15:13:52 +0200866 parent->entries[pt_idx].addr = pt;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400867
868 pde = pd_addr + pt_idx * 8;
869 if (((last_pde + 8 * count) != pde) ||
Christian König96105e52016-08-12 12:59:59 +0200870 ((last_pt + incr * count) != pt) ||
871 (count == AMDGPU_VM_MAX_UPDATE_SIZE)) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400872
873 if (count) {
Alex Xiee60f8db2017-03-09 11:36:26 -0500874 uint64_t pt_addr =
875 amdgpu_vm_adjust_mc_addr(adev, last_pt);
876
Christian Königf8991ba2016-09-16 15:36:49 +0200877 if (shadow)
878 amdgpu_vm_do_set_ptes(&params,
879 last_shadow,
Alex Xiee60f8db2017-03-09 11:36:26 -0500880 pt_addr, count,
Christian Königf8991ba2016-09-16 15:36:49 +0200881 incr,
882 AMDGPU_PTE_VALID);
883
Christian Königafef8b82016-08-12 13:29:18 +0200884 amdgpu_vm_do_set_ptes(&params, last_pde,
Alex Xiee60f8db2017-03-09 11:36:26 -0500885 pt_addr, count, incr,
Christian Königafef8b82016-08-12 13:29:18 +0200886 AMDGPU_PTE_VALID);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400887 }
888
889 count = 1;
890 last_pde = pde;
Christian Königf8991ba2016-09-16 15:36:49 +0200891 last_shadow = shadow_addr + pt_idx * 8;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400892 last_pt = pt;
893 } else {
894 ++count;
895 }
896 }
897
Christian Königf8991ba2016-09-16 15:36:49 +0200898 if (count) {
Alex Xiee60f8db2017-03-09 11:36:26 -0500899 uint64_t pt_addr = amdgpu_vm_adjust_mc_addr(adev, last_pt);
900
Christian König67003a12016-10-12 14:46:26 +0200901 if (vm->root.bo->shadow)
Alex Xiee60f8db2017-03-09 11:36:26 -0500902 amdgpu_vm_do_set_ptes(&params, last_shadow, pt_addr,
Christian Königf8991ba2016-09-16 15:36:49 +0200903 count, incr, AMDGPU_PTE_VALID);
904
Alex Xiee60f8db2017-03-09 11:36:26 -0500905 amdgpu_vm_do_set_ptes(&params, last_pde, pt_addr,
Christian Königafef8b82016-08-12 13:29:18 +0200906 count, incr, AMDGPU_PTE_VALID);
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800907 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400908
Christian Königf8991ba2016-09-16 15:36:49 +0200909 if (params.ib->length_dw == 0) {
910 amdgpu_job_free(job);
Christian König194d2162016-10-12 15:13:52 +0200911 } else {
912 amdgpu_ring_pad_ib(ring, params.ib);
913 amdgpu_sync_resv(adev, &job->sync, parent->bo->tbo.resv,
Christian Königf8991ba2016-09-16 15:36:49 +0200914 AMDGPU_FENCE_OWNER_VM);
Christian König194d2162016-10-12 15:13:52 +0200915 if (shadow)
916 amdgpu_sync_resv(adev, &job->sync, shadow->tbo.resv,
917 AMDGPU_FENCE_OWNER_VM);
Christian Königf8991ba2016-09-16 15:36:49 +0200918
Christian König194d2162016-10-12 15:13:52 +0200919 WARN_ON(params.ib->length_dw > ndw);
920 r = amdgpu_job_submit(job, ring, &vm->entity,
921 AMDGPU_FENCE_OWNER_VM, &fence);
922 if (r)
923 goto error_free;
Christian Königf8991ba2016-09-16 15:36:49 +0200924
Christian König194d2162016-10-12 15:13:52 +0200925 amdgpu_bo_fence(parent->bo, fence, true);
926 dma_fence_put(vm->last_dir_update);
927 vm->last_dir_update = dma_fence_get(fence);
928 dma_fence_put(fence);
929 }
930 /*
931 * Recurse into the subdirectories. This recursion is harmless because
932 * we only have a maximum of 5 layers.
933 */
934 for (pt_idx = 0; pt_idx <= parent->last_entry_used; ++pt_idx) {
935 struct amdgpu_vm_pt *entry = &parent->entries[pt_idx];
936
937 if (!entry->bo)
938 continue;
939
940 r = amdgpu_vm_update_level(adev, vm, entry, level + 1);
941 if (r)
942 return r;
943 }
Christian Königf8991ba2016-09-16 15:36:49 +0200944
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400945 return 0;
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800946
947error_free:
Christian Königd71518b2016-02-01 12:20:25 +0100948 amdgpu_job_free(job);
Chunming Zhou4af9f072015-08-03 12:57:31 +0800949 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400950}
951
Christian König194d2162016-10-12 15:13:52 +0200952/*
953 * amdgpu_vm_update_directories - make sure that all directories are valid
954 *
955 * @adev: amdgpu_device pointer
956 * @vm: requested vm
957 *
958 * Makes sure all directories are up to date.
959 * Returns 0 for success, error for failure.
960 */
961int amdgpu_vm_update_directories(struct amdgpu_device *adev,
962 struct amdgpu_vm *vm)
963{
964 return amdgpu_vm_update_level(adev, vm, &vm->root, 0);
965}
966
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400967/**
Christian König4e2cb642016-10-25 15:52:28 +0200968 * amdgpu_vm_find_pt - find the page table for an address
969 *
970 * @p: see amdgpu_pte_update_params definition
971 * @addr: virtual address in question
972 *
973 * Find the page table BO for a virtual address, return NULL when none found.
974 */
975static struct amdgpu_bo *amdgpu_vm_get_pt(struct amdgpu_pte_update_params *p,
976 uint64_t addr)
977{
978 struct amdgpu_vm_pt *entry = &p->vm->root;
979 unsigned idx, level = p->adev->vm_manager.num_level;
980
981 while (entry->entries) {
Zhang, Jerry36b32a62017-03-29 16:08:32 +0800982 idx = addr >> (p->adev->vm_manager.block_size * level--);
Christian König4e2cb642016-10-25 15:52:28 +0200983 idx %= amdgpu_bo_size(entry->bo) / 8;
984 entry = &entry->entries[idx];
985 }
986
987 if (level)
988 return NULL;
989
990 return entry->bo;
991}
992
993/**
Christian König92696dd2016-08-05 13:56:35 +0200994 * amdgpu_vm_update_ptes - make sure that page tables are valid
995 *
996 * @params: see amdgpu_pte_update_params definition
997 * @vm: requested vm
998 * @start: start of GPU address range
999 * @end: end of GPU address range
1000 * @dst: destination address to map to, the next dst inside the function
1001 * @flags: mapping flags
1002 *
1003 * Update the page tables in the range @start - @end.
1004 */
1005static void amdgpu_vm_update_ptes(struct amdgpu_pte_update_params *params,
Christian König92696dd2016-08-05 13:56:35 +02001006 uint64_t start, uint64_t end,
Chunming Zhou6b777602016-09-21 16:19:19 +08001007 uint64_t dst, uint64_t flags)
Christian König92696dd2016-08-05 13:56:35 +02001008{
Zhang, Jerry36b32a62017-03-29 16:08:32 +08001009 struct amdgpu_device *adev = params->adev;
1010 const uint64_t mask = AMDGPU_VM_PTE_COUNT(adev) - 1;
Christian König92696dd2016-08-05 13:56:35 +02001011
1012 uint64_t cur_pe_start, cur_nptes, cur_dst;
1013 uint64_t addr; /* next GPU address to be updated */
Christian König92696dd2016-08-05 13:56:35 +02001014 struct amdgpu_bo *pt;
1015 unsigned nptes; /* next number of ptes to be updated */
1016 uint64_t next_pe_start;
1017
1018 /* initialize the variables */
1019 addr = start;
Christian König4e2cb642016-10-25 15:52:28 +02001020 pt = amdgpu_vm_get_pt(params, addr);
Felix Kuehling1866bac2017-03-28 20:36:12 -04001021 if (!pt) {
1022 pr_err("PT not found, aborting update_ptes\n");
Christian König4e2cb642016-10-25 15:52:28 +02001023 return;
Felix Kuehling1866bac2017-03-28 20:36:12 -04001024 }
Christian König4e2cb642016-10-25 15:52:28 +02001025
Chunming Zhou4c7e8852016-08-15 11:46:21 +08001026 if (params->shadow) {
1027 if (!pt->shadow)
1028 return;
Christian König914b4dc2016-09-28 12:27:37 +02001029 pt = pt->shadow;
Chunming Zhou4c7e8852016-08-15 11:46:21 +08001030 }
Christian König92696dd2016-08-05 13:56:35 +02001031 if ((addr & ~mask) == (end & ~mask))
1032 nptes = end - addr;
1033 else
Zhang, Jerry36b32a62017-03-29 16:08:32 +08001034 nptes = AMDGPU_VM_PTE_COUNT(adev) - (addr & mask);
Christian König92696dd2016-08-05 13:56:35 +02001035
1036 cur_pe_start = amdgpu_bo_gpu_offset(pt);
1037 cur_pe_start += (addr & mask) * 8;
1038 cur_nptes = nptes;
1039 cur_dst = dst;
1040
1041 /* for next ptb*/
1042 addr += nptes;
1043 dst += nptes * AMDGPU_GPU_PAGE_SIZE;
1044
1045 /* walk over the address space and update the page tables */
1046 while (addr < end) {
Christian König4e2cb642016-10-25 15:52:28 +02001047 pt = amdgpu_vm_get_pt(params, addr);
Felix Kuehling1866bac2017-03-28 20:36:12 -04001048 if (!pt) {
1049 pr_err("PT not found, aborting update_ptes\n");
Christian König4e2cb642016-10-25 15:52:28 +02001050 return;
Felix Kuehling1866bac2017-03-28 20:36:12 -04001051 }
Christian König4e2cb642016-10-25 15:52:28 +02001052
Chunming Zhou4c7e8852016-08-15 11:46:21 +08001053 if (params->shadow) {
1054 if (!pt->shadow)
1055 return;
Christian König914b4dc2016-09-28 12:27:37 +02001056 pt = pt->shadow;
Chunming Zhou4c7e8852016-08-15 11:46:21 +08001057 }
Christian König92696dd2016-08-05 13:56:35 +02001058
1059 if ((addr & ~mask) == (end & ~mask))
1060 nptes = end - addr;
1061 else
Zhang, Jerry36b32a62017-03-29 16:08:32 +08001062 nptes = AMDGPU_VM_PTE_COUNT(adev) - (addr & mask);
Christian König92696dd2016-08-05 13:56:35 +02001063
1064 next_pe_start = amdgpu_bo_gpu_offset(pt);
1065 next_pe_start += (addr & mask) * 8;
1066
Christian König96105e52016-08-12 12:59:59 +02001067 if ((cur_pe_start + 8 * cur_nptes) == next_pe_start &&
1068 ((cur_nptes + nptes) <= AMDGPU_VM_MAX_UPDATE_SIZE)) {
Christian König92696dd2016-08-05 13:56:35 +02001069 /* The next ptb is consecutive to current ptb.
Christian Königafef8b82016-08-12 13:29:18 +02001070 * Don't call the update function now.
Christian König92696dd2016-08-05 13:56:35 +02001071 * Will update two ptbs together in future.
1072 */
1073 cur_nptes += nptes;
1074 } else {
Christian Königafef8b82016-08-12 13:29:18 +02001075 params->func(params, cur_pe_start, cur_dst, cur_nptes,
1076 AMDGPU_GPU_PAGE_SIZE, flags);
Christian König92696dd2016-08-05 13:56:35 +02001077
1078 cur_pe_start = next_pe_start;
1079 cur_nptes = nptes;
1080 cur_dst = dst;
1081 }
1082
1083 /* for next ptb*/
1084 addr += nptes;
1085 dst += nptes * AMDGPU_GPU_PAGE_SIZE;
1086 }
1087
Christian Königafef8b82016-08-12 13:29:18 +02001088 params->func(params, cur_pe_start, cur_dst, cur_nptes,
1089 AMDGPU_GPU_PAGE_SIZE, flags);
Christian König92696dd2016-08-05 13:56:35 +02001090}
1091
1092/*
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001093 * amdgpu_vm_frag_ptes - add fragment information to PTEs
1094 *
Christian König29efc4f2016-08-04 14:52:50 +02001095 * @params: see amdgpu_pte_update_params definition
Christian König92696dd2016-08-05 13:56:35 +02001096 * @vm: requested vm
1097 * @start: first PTE to handle
1098 * @end: last PTE to handle
1099 * @dst: addr those PTEs should point to
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001100 * @flags: hw mapping flags
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001101 */
Christian König27c5f362016-08-04 15:02:49 +02001102static void amdgpu_vm_frag_ptes(struct amdgpu_pte_update_params *params,
Christian König92696dd2016-08-05 13:56:35 +02001103 uint64_t start, uint64_t end,
Chunming Zhou6b777602016-09-21 16:19:19 +08001104 uint64_t dst, uint64_t flags)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001105{
1106 /**
1107 * The MC L1 TLB supports variable sized pages, based on a fragment
1108 * field in the PTE. When this field is set to a non-zero value, page
1109 * granularity is increased from 4KB to (1 << (12 + frag)). The PTE
1110 * flags are considered valid for all PTEs within the fragment range
1111 * and corresponding mappings are assumed to be physically contiguous.
1112 *
1113 * The L1 TLB can store a single PTE for the whole fragment,
1114 * significantly increasing the space available for translation
1115 * caching. This leads to large improvements in throughput when the
1116 * TLB is under pressure.
1117 *
1118 * The L2 TLB distributes small and large fragments into two
1119 * asymmetric partitions. The large fragment cache is significantly
1120 * larger. Thus, we try to use large fragments wherever possible.
1121 * Userspace can support this by aligning virtual base address and
1122 * allocation size to the fragment size.
1123 */
1124
Christian König80366172016-10-04 13:39:43 +02001125 /* SI and newer are optimized for 64KB */
1126 uint64_t frag_flags = AMDGPU_PTE_FRAG(AMDGPU_LOG2_PAGES_PER_FRAG);
1127 uint64_t frag_align = 1 << AMDGPU_LOG2_PAGES_PER_FRAG;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001128
Christian König92696dd2016-08-05 13:56:35 +02001129 uint64_t frag_start = ALIGN(start, frag_align);
1130 uint64_t frag_end = end & ~(frag_align - 1);
Christian König31f6c1f2016-01-26 12:37:49 +01001131
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001132 /* system pages are non continuously */
Christian Königb7fc2cb2016-08-11 16:44:15 +02001133 if (params->src || !(flags & AMDGPU_PTE_VALID) ||
Christian König92696dd2016-08-05 13:56:35 +02001134 (frag_start >= frag_end)) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001135
Christian König49ac8a22016-10-13 15:09:08 +02001136 amdgpu_vm_update_ptes(params, start, end, dst, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001137 return;
1138 }
1139
1140 /* handle the 4K area at the beginning */
Christian König92696dd2016-08-05 13:56:35 +02001141 if (start != frag_start) {
Christian König49ac8a22016-10-13 15:09:08 +02001142 amdgpu_vm_update_ptes(params, start, frag_start,
Christian König92696dd2016-08-05 13:56:35 +02001143 dst, flags);
1144 dst += (frag_start - start) * AMDGPU_GPU_PAGE_SIZE;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001145 }
1146
1147 /* handle the area in the middle */
Christian König49ac8a22016-10-13 15:09:08 +02001148 amdgpu_vm_update_ptes(params, frag_start, frag_end, dst,
Christian König80366172016-10-04 13:39:43 +02001149 flags | frag_flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001150
1151 /* handle the 4K area at the end */
Christian König92696dd2016-08-05 13:56:35 +02001152 if (frag_end != end) {
1153 dst += (frag_end - frag_start) * AMDGPU_GPU_PAGE_SIZE;
Christian König49ac8a22016-10-13 15:09:08 +02001154 amdgpu_vm_update_ptes(params, frag_end, end, dst, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001155 }
1156}
1157
1158/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001159 * amdgpu_vm_bo_update_mapping - update a mapping in the vm page table
1160 *
1161 * @adev: amdgpu_device pointer
Christian König3cabaa52016-06-06 10:17:58 +02001162 * @exclusive: fence we need to sync to
Christian Königfa3ab3c2016-03-18 21:00:35 +01001163 * @src: address where to copy page table entries from
1164 * @pages_addr: DMA addresses to use for mapping
Christian Königa14faa62016-01-25 14:27:31 +01001165 * @vm: requested vm
1166 * @start: start of mapped range
1167 * @last: last mapped entry
1168 * @flags: flags for the entries
1169 * @addr: addr to set the area to
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001170 * @fence: optional resulting fence
1171 *
Christian Königa14faa62016-01-25 14:27:31 +01001172 * Fill in the page table entries between @start and @last.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001173 * Returns 0 for success, -EINVAL for failure.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001174 */
1175static int amdgpu_vm_bo_update_mapping(struct amdgpu_device *adev,
Chris Wilsonf54d1862016-10-25 13:00:45 +01001176 struct dma_fence *exclusive,
Christian Königfa3ab3c2016-03-18 21:00:35 +01001177 uint64_t src,
1178 dma_addr_t *pages_addr,
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001179 struct amdgpu_vm *vm,
Christian Königa14faa62016-01-25 14:27:31 +01001180 uint64_t start, uint64_t last,
Chunming Zhou6b777602016-09-21 16:19:19 +08001181 uint64_t flags, uint64_t addr,
Chris Wilsonf54d1862016-10-25 13:00:45 +01001182 struct dma_fence **fence)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001183{
Christian König2d55e452016-02-08 17:37:38 +01001184 struct amdgpu_ring *ring;
Christian Königa1e08d32016-01-26 11:40:46 +01001185 void *owner = AMDGPU_FENCE_OWNER_VM;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001186 unsigned nptes, ncmds, ndw;
Christian Königd71518b2016-02-01 12:20:25 +01001187 struct amdgpu_job *job;
Christian König29efc4f2016-08-04 14:52:50 +02001188 struct amdgpu_pte_update_params params;
Chris Wilsonf54d1862016-10-25 13:00:45 +01001189 struct dma_fence *f = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001190 int r;
1191
Christian Königafef8b82016-08-12 13:29:18 +02001192 memset(&params, 0, sizeof(params));
1193 params.adev = adev;
Christian König49ac8a22016-10-13 15:09:08 +02001194 params.vm = vm;
Christian Königafef8b82016-08-12 13:29:18 +02001195 params.src = src;
1196
Christian König2d55e452016-02-08 17:37:38 +01001197 ring = container_of(vm->entity.sched, struct amdgpu_ring, sched);
Christian König27c5f362016-08-04 15:02:49 +02001198
Christian Königa1e08d32016-01-26 11:40:46 +01001199 /* sync to everything on unmapping */
1200 if (!(flags & AMDGPU_PTE_VALID))
1201 owner = AMDGPU_FENCE_OWNER_UNDEFINED;
1202
Christian Königa14faa62016-01-25 14:27:31 +01001203 nptes = last - start + 1;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001204
1205 /*
1206 * reserve space for one command every (1 << BLOCK_SIZE)
1207 * entries or 2k dwords (whatever is smaller)
1208 */
Zhang, Jerry36b32a62017-03-29 16:08:32 +08001209 ncmds = (nptes >> min(adev->vm_manager.block_size, 11u)) + 1;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001210
1211 /* padding, etc. */
1212 ndw = 64;
1213
Christian Königb0456f92016-08-11 14:06:54 +02001214 if (src) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001215 /* only copy commands needed */
1216 ndw += ncmds * 7;
1217
Christian Königafef8b82016-08-12 13:29:18 +02001218 params.func = amdgpu_vm_do_copy_ptes;
1219
Christian Königb0456f92016-08-11 14:06:54 +02001220 } else if (pages_addr) {
1221 /* copy commands needed */
1222 ndw += ncmds * 7;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001223
Christian Königb0456f92016-08-11 14:06:54 +02001224 /* and also PTEs */
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001225 ndw += nptes * 2;
1226
Christian Königafef8b82016-08-12 13:29:18 +02001227 params.func = amdgpu_vm_do_copy_ptes;
1228
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001229 } else {
1230 /* set page commands needed */
1231 ndw += ncmds * 10;
1232
1233 /* two extra commands for begin/end of fragment */
1234 ndw += 2 * 10;
Christian Königafef8b82016-08-12 13:29:18 +02001235
1236 params.func = amdgpu_vm_do_set_ptes;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001237 }
1238
Christian Königd71518b2016-02-01 12:20:25 +01001239 r = amdgpu_job_alloc_with_ib(adev, ndw * 4, &job);
1240 if (r)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001241 return r;
Christian Königd71518b2016-02-01 12:20:25 +01001242
Christian König29efc4f2016-08-04 14:52:50 +02001243 params.ib = &job->ibs[0];
Chunming Zhoud5fc5e82015-07-21 16:52:10 +08001244
Christian Königb0456f92016-08-11 14:06:54 +02001245 if (!src && pages_addr) {
1246 uint64_t *pte;
1247 unsigned i;
1248
1249 /* Put the PTEs at the end of the IB. */
1250 i = ndw - nptes * 2;
1251 pte= (uint64_t *)&(job->ibs->ptr[i]);
1252 params.src = job->ibs->gpu_addr + i * 4;
1253
1254 for (i = 0; i < nptes; ++i) {
1255 pte[i] = amdgpu_vm_map_gart(pages_addr, addr + i *
1256 AMDGPU_GPU_PAGE_SIZE);
1257 pte[i] |= flags;
1258 }
Christian Königd7a4ac62016-09-25 11:54:00 +02001259 addr = 0;
Christian Königb0456f92016-08-11 14:06:54 +02001260 }
1261
Christian König3cabaa52016-06-06 10:17:58 +02001262 r = amdgpu_sync_fence(adev, &job->sync, exclusive);
1263 if (r)
1264 goto error_free;
1265
Christian König67003a12016-10-12 14:46:26 +02001266 r = amdgpu_sync_resv(adev, &job->sync, vm->root.bo->tbo.resv,
Christian Königa1e08d32016-01-26 11:40:46 +01001267 owner);
1268 if (r)
1269 goto error_free;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001270
Christian König67003a12016-10-12 14:46:26 +02001271 r = reservation_object_reserve_shared(vm->root.bo->tbo.resv);
Christian Königa1e08d32016-01-26 11:40:46 +01001272 if (r)
1273 goto error_free;
1274
Chunming Zhou4c7e8852016-08-15 11:46:21 +08001275 params.shadow = true;
Christian König49ac8a22016-10-13 15:09:08 +02001276 amdgpu_vm_frag_ptes(&params, start, last + 1, addr, flags);
Chunming Zhou4c7e8852016-08-15 11:46:21 +08001277 params.shadow = false;
Christian König49ac8a22016-10-13 15:09:08 +02001278 amdgpu_vm_frag_ptes(&params, start, last + 1, addr, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001279
Christian König29efc4f2016-08-04 14:52:50 +02001280 amdgpu_ring_pad_ib(ring, params.ib);
1281 WARN_ON(params.ib->length_dw > ndw);
Christian König2bd9ccf2016-02-01 12:53:58 +01001282 r = amdgpu_job_submit(job, ring, &vm->entity,
1283 AMDGPU_FENCE_OWNER_VM, &f);
Chunming Zhou4af9f072015-08-03 12:57:31 +08001284 if (r)
1285 goto error_free;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001286
Christian König67003a12016-10-12 14:46:26 +02001287 amdgpu_bo_fence(vm->root.bo, f, true);
Christian König284710f2017-01-30 11:09:31 +01001288 dma_fence_put(*fence);
1289 *fence = f;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001290 return 0;
Chunming Zhoud5fc5e82015-07-21 16:52:10 +08001291
1292error_free:
Christian Königd71518b2016-02-01 12:20:25 +01001293 amdgpu_job_free(job);
Chunming Zhou4af9f072015-08-03 12:57:31 +08001294 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001295}
1296
1297/**
Christian Königa14faa62016-01-25 14:27:31 +01001298 * amdgpu_vm_bo_split_mapping - split a mapping into smaller chunks
1299 *
1300 * @adev: amdgpu_device pointer
Christian König3cabaa52016-06-06 10:17:58 +02001301 * @exclusive: fence we need to sync to
Christian König8358dce2016-03-30 10:50:25 +02001302 * @gtt_flags: flags as they are used for GTT
1303 * @pages_addr: DMA addresses to use for mapping
Christian Königa14faa62016-01-25 14:27:31 +01001304 * @vm: requested vm
1305 * @mapping: mapped range and flags to use for the update
Christian König8358dce2016-03-30 10:50:25 +02001306 * @flags: HW flags for the mapping
Christian König63e0ba42016-08-16 17:38:37 +02001307 * @nodes: array of drm_mm_nodes with the MC addresses
Christian Königa14faa62016-01-25 14:27:31 +01001308 * @fence: optional resulting fence
1309 *
1310 * Split the mapping into smaller chunks so that each update fits
1311 * into a SDMA IB.
1312 * Returns 0 for success, -EINVAL for failure.
1313 */
1314static int amdgpu_vm_bo_split_mapping(struct amdgpu_device *adev,
Chris Wilsonf54d1862016-10-25 13:00:45 +01001315 struct dma_fence *exclusive,
Chunming Zhou6b777602016-09-21 16:19:19 +08001316 uint64_t gtt_flags,
Christian König8358dce2016-03-30 10:50:25 +02001317 dma_addr_t *pages_addr,
Christian Königa14faa62016-01-25 14:27:31 +01001318 struct amdgpu_vm *vm,
1319 struct amdgpu_bo_va_mapping *mapping,
Chunming Zhou6b777602016-09-21 16:19:19 +08001320 uint64_t flags,
Christian König63e0ba42016-08-16 17:38:37 +02001321 struct drm_mm_node *nodes,
Chris Wilsonf54d1862016-10-25 13:00:45 +01001322 struct dma_fence **fence)
Christian Königa14faa62016-01-25 14:27:31 +01001323{
Christian Königa9f87f62017-03-30 14:03:59 +02001324 uint64_t pfn, src = 0, start = mapping->start;
Christian Königa14faa62016-01-25 14:27:31 +01001325 int r;
1326
1327 /* normally,bo_va->flags only contians READABLE and WIRTEABLE bit go here
1328 * but in case of something, we filter the flags in first place
1329 */
1330 if (!(mapping->flags & AMDGPU_PTE_READABLE))
1331 flags &= ~AMDGPU_PTE_READABLE;
1332 if (!(mapping->flags & AMDGPU_PTE_WRITEABLE))
1333 flags &= ~AMDGPU_PTE_WRITEABLE;
1334
Alex Xie15b31c52017-03-03 16:47:11 -05001335 flags &= ~AMDGPU_PTE_EXECUTABLE;
1336 flags |= mapping->flags & AMDGPU_PTE_EXECUTABLE;
1337
Alex Xieb0fd18b2017-03-03 16:49:39 -05001338 flags &= ~AMDGPU_PTE_MTYPE_MASK;
1339 flags |= (mapping->flags & AMDGPU_PTE_MTYPE_MASK);
1340
Christian Königa14faa62016-01-25 14:27:31 +01001341 trace_amdgpu_vm_bo_update(mapping);
1342
Christian König63e0ba42016-08-16 17:38:37 +02001343 pfn = mapping->offset >> PAGE_SHIFT;
1344 if (nodes) {
1345 while (pfn >= nodes->size) {
1346 pfn -= nodes->size;
1347 ++nodes;
1348 }
Christian Königfa3ab3c2016-03-18 21:00:35 +01001349 }
Christian Königa14faa62016-01-25 14:27:31 +01001350
Christian König63e0ba42016-08-16 17:38:37 +02001351 do {
1352 uint64_t max_entries;
1353 uint64_t addr, last;
Christian Königa14faa62016-01-25 14:27:31 +01001354
Christian König63e0ba42016-08-16 17:38:37 +02001355 if (nodes) {
1356 addr = nodes->start << PAGE_SHIFT;
1357 max_entries = (nodes->size - pfn) *
1358 (PAGE_SIZE / AMDGPU_GPU_PAGE_SIZE);
1359 } else {
1360 addr = 0;
1361 max_entries = S64_MAX;
1362 }
Christian Königa14faa62016-01-25 14:27:31 +01001363
Christian König63e0ba42016-08-16 17:38:37 +02001364 if (pages_addr) {
1365 if (flags == gtt_flags)
1366 src = adev->gart.table_addr +
1367 (addr >> AMDGPU_GPU_PAGE_SHIFT) * 8;
1368 else
1369 max_entries = min(max_entries, 16ull * 1024ull);
1370 addr = 0;
1371 } else if (flags & AMDGPU_PTE_VALID) {
1372 addr += adev->vm_manager.vram_base_offset;
1373 }
1374 addr += pfn << PAGE_SHIFT;
1375
Christian Königa9f87f62017-03-30 14:03:59 +02001376 last = min((uint64_t)mapping->last, start + max_entries - 1);
Christian König3cabaa52016-06-06 10:17:58 +02001377 r = amdgpu_vm_bo_update_mapping(adev, exclusive,
1378 src, pages_addr, vm,
Christian Königa14faa62016-01-25 14:27:31 +01001379 start, last, flags, addr,
1380 fence);
1381 if (r)
1382 return r;
1383
Christian König63e0ba42016-08-16 17:38:37 +02001384 pfn += last - start + 1;
1385 if (nodes && nodes->size == pfn) {
1386 pfn = 0;
1387 ++nodes;
1388 }
Christian Königa14faa62016-01-25 14:27:31 +01001389 start = last + 1;
Christian König63e0ba42016-08-16 17:38:37 +02001390
Christian Königa9f87f62017-03-30 14:03:59 +02001391 } while (unlikely(start != mapping->last + 1));
Christian Königa14faa62016-01-25 14:27:31 +01001392
1393 return 0;
1394}
1395
1396/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001397 * amdgpu_vm_bo_update - update all BO mappings in the vm page table
1398 *
1399 * @adev: amdgpu_device pointer
1400 * @bo_va: requested BO and VM object
Christian König99e124f2016-08-16 14:43:17 +02001401 * @clear: if true clear the entries
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001402 *
1403 * Fill in the page table entries for @bo_va.
1404 * Returns 0 for success, -EINVAL for failure.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001405 */
1406int amdgpu_vm_bo_update(struct amdgpu_device *adev,
1407 struct amdgpu_bo_va *bo_va,
Christian König99e124f2016-08-16 14:43:17 +02001408 bool clear)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001409{
1410 struct amdgpu_vm *vm = bo_va->vm;
1411 struct amdgpu_bo_va_mapping *mapping;
Christian König8358dce2016-03-30 10:50:25 +02001412 dma_addr_t *pages_addr = NULL;
Chunming Zhou6b777602016-09-21 16:19:19 +08001413 uint64_t gtt_flags, flags;
Christian König99e124f2016-08-16 14:43:17 +02001414 struct ttm_mem_reg *mem;
Christian König63e0ba42016-08-16 17:38:37 +02001415 struct drm_mm_node *nodes;
Chris Wilsonf54d1862016-10-25 13:00:45 +01001416 struct dma_fence *exclusive;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001417 int r;
1418
Christian Königa5f6b5b2017-01-30 11:01:38 +01001419 if (clear || !bo_va->bo) {
Christian König99e124f2016-08-16 14:43:17 +02001420 mem = NULL;
Christian König63e0ba42016-08-16 17:38:37 +02001421 nodes = NULL;
Christian König99e124f2016-08-16 14:43:17 +02001422 exclusive = NULL;
1423 } else {
Christian König8358dce2016-03-30 10:50:25 +02001424 struct ttm_dma_tt *ttm;
1425
Christian König99e124f2016-08-16 14:43:17 +02001426 mem = &bo_va->bo->tbo.mem;
Christian König63e0ba42016-08-16 17:38:37 +02001427 nodes = mem->mm_node;
1428 if (mem->mem_type == TTM_PL_TT) {
Christian König8358dce2016-03-30 10:50:25 +02001429 ttm = container_of(bo_va->bo->tbo.ttm, struct
1430 ttm_dma_tt, ttm);
1431 pages_addr = ttm->dma_address;
Christian König9ab21462015-11-30 14:19:26 +01001432 }
Christian König3cabaa52016-06-06 10:17:58 +02001433 exclusive = reservation_object_get_excl(bo_va->bo->tbo.resv);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001434 }
1435
Christian Königa5f6b5b2017-01-30 11:01:38 +01001436 if (bo_va->bo) {
1437 flags = amdgpu_ttm_tt_pte_flags(adev, bo_va->bo->tbo.ttm, mem);
1438 gtt_flags = (amdgpu_ttm_is_bound(bo_va->bo->tbo.ttm) &&
1439 adev == amdgpu_ttm_adev(bo_va->bo->tbo.bdev)) ?
1440 flags : 0;
1441 } else {
1442 flags = 0x0;
1443 gtt_flags = ~0x0;
1444 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001445
Christian König7fc11952015-07-30 11:53:42 +02001446 spin_lock(&vm->status_lock);
1447 if (!list_empty(&bo_va->vm_status))
1448 list_splice_init(&bo_va->valids, &bo_va->invalids);
1449 spin_unlock(&vm->status_lock);
1450
1451 list_for_each_entry(mapping, &bo_va->invalids, list) {
Christian König3cabaa52016-06-06 10:17:58 +02001452 r = amdgpu_vm_bo_split_mapping(adev, exclusive,
1453 gtt_flags, pages_addr, vm,
Christian König63e0ba42016-08-16 17:38:37 +02001454 mapping, flags, nodes,
Christian König8358dce2016-03-30 10:50:25 +02001455 &bo_va->last_pt_update);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001456 if (r)
1457 return r;
1458 }
1459
Christian Königd6c10f62015-09-28 12:00:23 +02001460 if (trace_amdgpu_vm_bo_mapping_enabled()) {
1461 list_for_each_entry(mapping, &bo_va->valids, list)
1462 trace_amdgpu_vm_bo_mapping(mapping);
1463
1464 list_for_each_entry(mapping, &bo_va->invalids, list)
1465 trace_amdgpu_vm_bo_mapping(mapping);
1466 }
1467
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001468 spin_lock(&vm->status_lock);
monk.liu6d1d0ef2015-08-14 13:36:41 +08001469 list_splice_init(&bo_va->invalids, &bo_va->valids);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001470 list_del_init(&bo_va->vm_status);
Christian König99e124f2016-08-16 14:43:17 +02001471 if (clear)
Christian König7fc11952015-07-30 11:53:42 +02001472 list_add(&bo_va->vm_status, &vm->cleared);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001473 spin_unlock(&vm->status_lock);
1474
1475 return 0;
1476}
1477
1478/**
Christian König284710f2017-01-30 11:09:31 +01001479 * amdgpu_vm_update_prt_state - update the global PRT state
1480 */
1481static void amdgpu_vm_update_prt_state(struct amdgpu_device *adev)
1482{
1483 unsigned long flags;
1484 bool enable;
1485
1486 spin_lock_irqsave(&adev->vm_manager.prt_lock, flags);
Christian König451bc8e2017-02-14 16:02:52 +01001487 enable = !!atomic_read(&adev->vm_manager.num_prt_users);
Christian König284710f2017-01-30 11:09:31 +01001488 adev->gart.gart_funcs->set_prt(adev, enable);
1489 spin_unlock_irqrestore(&adev->vm_manager.prt_lock, flags);
1490}
1491
1492/**
Christian König4388fc22017-03-13 10:13:36 +01001493 * amdgpu_vm_prt_get - add a PRT user
Christian König451bc8e2017-02-14 16:02:52 +01001494 */
1495static void amdgpu_vm_prt_get(struct amdgpu_device *adev)
1496{
Christian König4388fc22017-03-13 10:13:36 +01001497 if (!adev->gart.gart_funcs->set_prt)
1498 return;
1499
Christian König451bc8e2017-02-14 16:02:52 +01001500 if (atomic_inc_return(&adev->vm_manager.num_prt_users) == 1)
1501 amdgpu_vm_update_prt_state(adev);
1502}
1503
1504/**
Christian König0b15f2f2017-02-14 15:47:03 +01001505 * amdgpu_vm_prt_put - drop a PRT user
1506 */
1507static void amdgpu_vm_prt_put(struct amdgpu_device *adev)
1508{
Christian König451bc8e2017-02-14 16:02:52 +01001509 if (atomic_dec_return(&adev->vm_manager.num_prt_users) == 0)
Christian König0b15f2f2017-02-14 15:47:03 +01001510 amdgpu_vm_update_prt_state(adev);
1511}
1512
1513/**
Christian König451bc8e2017-02-14 16:02:52 +01001514 * amdgpu_vm_prt_cb - callback for updating the PRT status
Christian König284710f2017-01-30 11:09:31 +01001515 */
1516static void amdgpu_vm_prt_cb(struct dma_fence *fence, struct dma_fence_cb *_cb)
1517{
1518 struct amdgpu_prt_cb *cb = container_of(_cb, struct amdgpu_prt_cb, cb);
1519
Christian König0b15f2f2017-02-14 15:47:03 +01001520 amdgpu_vm_prt_put(cb->adev);
Christian König284710f2017-01-30 11:09:31 +01001521 kfree(cb);
1522}
1523
1524/**
Christian König451bc8e2017-02-14 16:02:52 +01001525 * amdgpu_vm_add_prt_cb - add callback for updating the PRT status
1526 */
1527static void amdgpu_vm_add_prt_cb(struct amdgpu_device *adev,
1528 struct dma_fence *fence)
1529{
Christian König4388fc22017-03-13 10:13:36 +01001530 struct amdgpu_prt_cb *cb;
Christian König451bc8e2017-02-14 16:02:52 +01001531
Christian König4388fc22017-03-13 10:13:36 +01001532 if (!adev->gart.gart_funcs->set_prt)
1533 return;
1534
1535 cb = kmalloc(sizeof(struct amdgpu_prt_cb), GFP_KERNEL);
Christian König451bc8e2017-02-14 16:02:52 +01001536 if (!cb) {
1537 /* Last resort when we are OOM */
1538 if (fence)
1539 dma_fence_wait(fence, false);
1540
Dan Carpenter486a68f2017-04-03 21:41:39 +03001541 amdgpu_vm_prt_put(adev);
Christian König451bc8e2017-02-14 16:02:52 +01001542 } else {
1543 cb->adev = adev;
1544 if (!fence || dma_fence_add_callback(fence, &cb->cb,
1545 amdgpu_vm_prt_cb))
1546 amdgpu_vm_prt_cb(fence, &cb->cb);
1547 }
1548}
1549
1550/**
Christian König284710f2017-01-30 11:09:31 +01001551 * amdgpu_vm_free_mapping - free a mapping
1552 *
1553 * @adev: amdgpu_device pointer
1554 * @vm: requested vm
1555 * @mapping: mapping to be freed
1556 * @fence: fence of the unmap operation
1557 *
1558 * Free a mapping and make sure we decrease the PRT usage count if applicable.
1559 */
1560static void amdgpu_vm_free_mapping(struct amdgpu_device *adev,
1561 struct amdgpu_vm *vm,
1562 struct amdgpu_bo_va_mapping *mapping,
1563 struct dma_fence *fence)
1564{
Christian König451bc8e2017-02-14 16:02:52 +01001565 if (mapping->flags & AMDGPU_PTE_PRT)
1566 amdgpu_vm_add_prt_cb(adev, fence);
Christian König284710f2017-01-30 11:09:31 +01001567 kfree(mapping);
1568}
1569
1570/**
Christian König451bc8e2017-02-14 16:02:52 +01001571 * amdgpu_vm_prt_fini - finish all prt mappings
1572 *
1573 * @adev: amdgpu_device pointer
1574 * @vm: requested vm
1575 *
1576 * Register a cleanup callback to disable PRT support after VM dies.
1577 */
1578static void amdgpu_vm_prt_fini(struct amdgpu_device *adev, struct amdgpu_vm *vm)
1579{
Christian König67003a12016-10-12 14:46:26 +02001580 struct reservation_object *resv = vm->root.bo->tbo.resv;
Christian König451bc8e2017-02-14 16:02:52 +01001581 struct dma_fence *excl, **shared;
1582 unsigned i, shared_count;
1583 int r;
1584
1585 r = reservation_object_get_fences_rcu(resv, &excl,
1586 &shared_count, &shared);
1587 if (r) {
1588 /* Not enough memory to grab the fence list, as last resort
1589 * block for all the fences to complete.
1590 */
1591 reservation_object_wait_timeout_rcu(resv, true, false,
1592 MAX_SCHEDULE_TIMEOUT);
1593 return;
1594 }
1595
1596 /* Add a callback for each fence in the reservation object */
1597 amdgpu_vm_prt_get(adev);
1598 amdgpu_vm_add_prt_cb(adev, excl);
1599
1600 for (i = 0; i < shared_count; ++i) {
1601 amdgpu_vm_prt_get(adev);
1602 amdgpu_vm_add_prt_cb(adev, shared[i]);
1603 }
1604
1605 kfree(shared);
1606}
1607
1608/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001609 * amdgpu_vm_clear_freed - clear freed BOs in the PT
1610 *
1611 * @adev: amdgpu_device pointer
1612 * @vm: requested vm
Nicolai Hähnlef3467812017-03-23 19:36:31 +01001613 * @fence: optional resulting fence (unchanged if no work needed to be done
1614 * or if an error occurred)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001615 *
1616 * Make sure all freed BOs are cleared in the PT.
1617 * Returns 0 for success.
1618 *
1619 * PTs have to be reserved and mutex must be locked!
1620 */
1621int amdgpu_vm_clear_freed(struct amdgpu_device *adev,
Nicolai Hähnlef3467812017-03-23 19:36:31 +01001622 struct amdgpu_vm *vm,
1623 struct dma_fence **fence)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001624{
1625 struct amdgpu_bo_va_mapping *mapping;
Nicolai Hähnlef3467812017-03-23 19:36:31 +01001626 struct dma_fence *f = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001627 int r;
1628
1629 while (!list_empty(&vm->freed)) {
1630 mapping = list_first_entry(&vm->freed,
1631 struct amdgpu_bo_va_mapping, list);
1632 list_del(&mapping->list);
Christian Könige17841b2016-03-08 17:52:01 +01001633
Christian König3cabaa52016-06-06 10:17:58 +02001634 r = amdgpu_vm_bo_split_mapping(adev, NULL, 0, NULL, vm, mapping,
Nicolai Hähnlef3467812017-03-23 19:36:31 +01001635 0, 0, &f);
1636 amdgpu_vm_free_mapping(adev, vm, mapping, f);
Christian König284710f2017-01-30 11:09:31 +01001637 if (r) {
Nicolai Hähnlef3467812017-03-23 19:36:31 +01001638 dma_fence_put(f);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001639 return r;
Christian König284710f2017-01-30 11:09:31 +01001640 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001641 }
Nicolai Hähnlef3467812017-03-23 19:36:31 +01001642
1643 if (fence && f) {
1644 dma_fence_put(*fence);
1645 *fence = f;
1646 } else {
1647 dma_fence_put(f);
1648 }
1649
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001650 return 0;
1651
1652}
1653
1654/**
1655 * amdgpu_vm_clear_invalids - clear invalidated BOs in the PT
1656 *
1657 * @adev: amdgpu_device pointer
1658 * @vm: requested vm
1659 *
1660 * Make sure all invalidated BOs are cleared in the PT.
1661 * Returns 0 for success.
1662 *
1663 * PTs have to be reserved and mutex must be locked!
1664 */
1665int amdgpu_vm_clear_invalids(struct amdgpu_device *adev,
monk.liucfe2c972015-05-26 15:01:54 +08001666 struct amdgpu_vm *vm, struct amdgpu_sync *sync)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001667{
monk.liucfe2c972015-05-26 15:01:54 +08001668 struct amdgpu_bo_va *bo_va = NULL;
Christian König91e1a522015-07-06 22:06:40 +02001669 int r = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001670
1671 spin_lock(&vm->status_lock);
1672 while (!list_empty(&vm->invalidated)) {
1673 bo_va = list_first_entry(&vm->invalidated,
1674 struct amdgpu_bo_va, vm_status);
1675 spin_unlock(&vm->status_lock);
Christian König32b41ac2016-03-08 18:03:27 +01001676
Christian König99e124f2016-08-16 14:43:17 +02001677 r = amdgpu_vm_bo_update(adev, bo_va, true);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001678 if (r)
1679 return r;
1680
1681 spin_lock(&vm->status_lock);
1682 }
1683 spin_unlock(&vm->status_lock);
1684
monk.liucfe2c972015-05-26 15:01:54 +08001685 if (bo_va)
Chunming Zhoubb1e38a42015-08-03 18:19:38 +08001686 r = amdgpu_sync_fence(adev, sync, bo_va->last_pt_update);
Christian König91e1a522015-07-06 22:06:40 +02001687
1688 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001689}
1690
1691/**
1692 * amdgpu_vm_bo_add - add a bo to a specific vm
1693 *
1694 * @adev: amdgpu_device pointer
1695 * @vm: requested vm
1696 * @bo: amdgpu buffer object
1697 *
Christian König8843dbb2016-01-26 12:17:11 +01001698 * Add @bo into the requested vm.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001699 * Add @bo to the list of bos associated with the vm
1700 * Returns newly added bo_va or NULL for failure
1701 *
1702 * Object has to be reserved!
1703 */
1704struct amdgpu_bo_va *amdgpu_vm_bo_add(struct amdgpu_device *adev,
1705 struct amdgpu_vm *vm,
1706 struct amdgpu_bo *bo)
1707{
1708 struct amdgpu_bo_va *bo_va;
1709
1710 bo_va = kzalloc(sizeof(struct amdgpu_bo_va), GFP_KERNEL);
1711 if (bo_va == NULL) {
1712 return NULL;
1713 }
1714 bo_va->vm = vm;
1715 bo_va->bo = bo;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001716 bo_va->ref_count = 1;
1717 INIT_LIST_HEAD(&bo_va->bo_list);
Christian König7fc11952015-07-30 11:53:42 +02001718 INIT_LIST_HEAD(&bo_va->valids);
1719 INIT_LIST_HEAD(&bo_va->invalids);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001720 INIT_LIST_HEAD(&bo_va->vm_status);
Christian König32b41ac2016-03-08 18:03:27 +01001721
Christian Königa5f6b5b2017-01-30 11:01:38 +01001722 if (bo)
1723 list_add_tail(&bo_va->bo_list, &bo->va);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001724
1725 return bo_va;
1726}
1727
1728/**
1729 * amdgpu_vm_bo_map - map bo inside a vm
1730 *
1731 * @adev: amdgpu_device pointer
1732 * @bo_va: bo_va to store the address
1733 * @saddr: where to map the BO
1734 * @offset: requested offset in the BO
1735 * @flags: attributes of pages (read/write/valid/etc.)
1736 *
1737 * Add a mapping of the BO at the specefied addr into the VM.
1738 * Returns 0 for success, error for failure.
1739 *
Chunming Zhou49b02b12015-11-13 14:18:38 +08001740 * Object has to be reserved and unreserved outside!
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001741 */
1742int amdgpu_vm_bo_map(struct amdgpu_device *adev,
1743 struct amdgpu_bo_va *bo_va,
1744 uint64_t saddr, uint64_t offset,
Christian König268c3002017-01-18 14:49:43 +01001745 uint64_t size, uint64_t flags)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001746{
Christian Königa9f87f62017-03-30 14:03:59 +02001747 struct amdgpu_bo_va_mapping *mapping, *tmp;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001748 struct amdgpu_vm *vm = bo_va->vm;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001749 uint64_t eaddr;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001750
Christian König0be52de2015-05-18 14:37:27 +02001751 /* validate the parameters */
1752 if (saddr & AMDGPU_GPU_PAGE_MASK || offset & AMDGPU_GPU_PAGE_MASK ||
Chunming Zhou49b02b12015-11-13 14:18:38 +08001753 size == 0 || size & AMDGPU_GPU_PAGE_MASK)
Christian König0be52de2015-05-18 14:37:27 +02001754 return -EINVAL;
Christian König0be52de2015-05-18 14:37:27 +02001755
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001756 /* make sure object fit at this offset */
Felix Kuehling005ae952015-11-23 17:43:48 -05001757 eaddr = saddr + size - 1;
Christian Königa5f6b5b2017-01-30 11:01:38 +01001758 if (saddr >= eaddr ||
1759 (bo_va->bo && offset + size > amdgpu_bo_size(bo_va->bo)))
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001760 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001761
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001762 saddr /= AMDGPU_GPU_PAGE_SIZE;
1763 eaddr /= AMDGPU_GPU_PAGE_SIZE;
1764
Christian Königa9f87f62017-03-30 14:03:59 +02001765 tmp = amdgpu_vm_it_iter_first(&vm->va, saddr, eaddr);
1766 if (tmp) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001767 /* bo and tmp overlap, invalid addr */
1768 dev_err(adev->dev, "bo %p va 0x%010Lx-0x%010Lx conflict with "
Christian Königa9f87f62017-03-30 14:03:59 +02001769 "0x%010Lx-0x%010Lx\n", bo_va->bo, saddr, eaddr,
1770 tmp->start, tmp->last + 1);
Christian König663e4572017-03-13 10:13:37 +01001771 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001772 }
1773
1774 mapping = kmalloc(sizeof(*mapping), GFP_KERNEL);
Christian König663e4572017-03-13 10:13:37 +01001775 if (!mapping)
1776 return -ENOMEM;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001777
1778 INIT_LIST_HEAD(&mapping->list);
Christian Königa9f87f62017-03-30 14:03:59 +02001779 mapping->start = saddr;
1780 mapping->last = eaddr;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001781 mapping->offset = offset;
1782 mapping->flags = flags;
1783
Christian König7fc11952015-07-30 11:53:42 +02001784 list_add(&mapping->list, &bo_va->invalids);
Christian Königa9f87f62017-03-30 14:03:59 +02001785 amdgpu_vm_it_insert(mapping, &vm->va);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001786
Christian König4388fc22017-03-13 10:13:36 +01001787 if (flags & AMDGPU_PTE_PRT)
1788 amdgpu_vm_prt_get(adev);
1789
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001790 return 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001791}
1792
1793/**
Christian König80f95c52017-03-13 10:13:39 +01001794 * amdgpu_vm_bo_replace_map - map bo inside a vm, replacing existing mappings
1795 *
1796 * @adev: amdgpu_device pointer
1797 * @bo_va: bo_va to store the address
1798 * @saddr: where to map the BO
1799 * @offset: requested offset in the BO
1800 * @flags: attributes of pages (read/write/valid/etc.)
1801 *
1802 * Add a mapping of the BO at the specefied addr into the VM. Replace existing
1803 * mappings as we do so.
1804 * Returns 0 for success, error for failure.
1805 *
1806 * Object has to be reserved and unreserved outside!
1807 */
1808int amdgpu_vm_bo_replace_map(struct amdgpu_device *adev,
1809 struct amdgpu_bo_va *bo_va,
1810 uint64_t saddr, uint64_t offset,
1811 uint64_t size, uint64_t flags)
1812{
1813 struct amdgpu_bo_va_mapping *mapping;
1814 struct amdgpu_vm *vm = bo_va->vm;
1815 uint64_t eaddr;
1816 int r;
1817
1818 /* validate the parameters */
1819 if (saddr & AMDGPU_GPU_PAGE_MASK || offset & AMDGPU_GPU_PAGE_MASK ||
1820 size == 0 || size & AMDGPU_GPU_PAGE_MASK)
1821 return -EINVAL;
1822
1823 /* make sure object fit at this offset */
1824 eaddr = saddr + size - 1;
1825 if (saddr >= eaddr ||
1826 (bo_va->bo && offset + size > amdgpu_bo_size(bo_va->bo)))
1827 return -EINVAL;
1828
1829 /* Allocate all the needed memory */
1830 mapping = kmalloc(sizeof(*mapping), GFP_KERNEL);
1831 if (!mapping)
1832 return -ENOMEM;
1833
1834 r = amdgpu_vm_bo_clear_mappings(adev, bo_va->vm, saddr, size);
1835 if (r) {
1836 kfree(mapping);
1837 return r;
1838 }
1839
1840 saddr /= AMDGPU_GPU_PAGE_SIZE;
1841 eaddr /= AMDGPU_GPU_PAGE_SIZE;
1842
Christian Königa9f87f62017-03-30 14:03:59 +02001843 mapping->start = saddr;
1844 mapping->last = eaddr;
Christian König80f95c52017-03-13 10:13:39 +01001845 mapping->offset = offset;
1846 mapping->flags = flags;
1847
1848 list_add(&mapping->list, &bo_va->invalids);
Christian Königa9f87f62017-03-30 14:03:59 +02001849 amdgpu_vm_it_insert(mapping, &vm->va);
Christian König80f95c52017-03-13 10:13:39 +01001850
1851 if (flags & AMDGPU_PTE_PRT)
1852 amdgpu_vm_prt_get(adev);
1853
1854 return 0;
1855}
1856
1857/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001858 * amdgpu_vm_bo_unmap - remove bo mapping from vm
1859 *
1860 * @adev: amdgpu_device pointer
1861 * @bo_va: bo_va to remove the address from
1862 * @saddr: where to the BO is mapped
1863 *
1864 * Remove a mapping of the BO at the specefied addr from the VM.
1865 * Returns 0 for success, error for failure.
1866 *
Chunming Zhou49b02b12015-11-13 14:18:38 +08001867 * Object has to be reserved and unreserved outside!
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001868 */
1869int amdgpu_vm_bo_unmap(struct amdgpu_device *adev,
1870 struct amdgpu_bo_va *bo_va,
1871 uint64_t saddr)
1872{
1873 struct amdgpu_bo_va_mapping *mapping;
1874 struct amdgpu_vm *vm = bo_va->vm;
Christian König7fc11952015-07-30 11:53:42 +02001875 bool valid = true;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001876
Christian König6c7fc502015-06-05 20:56:17 +02001877 saddr /= AMDGPU_GPU_PAGE_SIZE;
Christian König32b41ac2016-03-08 18:03:27 +01001878
Christian König7fc11952015-07-30 11:53:42 +02001879 list_for_each_entry(mapping, &bo_va->valids, list) {
Christian Königa9f87f62017-03-30 14:03:59 +02001880 if (mapping->start == saddr)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001881 break;
1882 }
1883
Christian König7fc11952015-07-30 11:53:42 +02001884 if (&mapping->list == &bo_va->valids) {
1885 valid = false;
1886
1887 list_for_each_entry(mapping, &bo_va->invalids, list) {
Christian Königa9f87f62017-03-30 14:03:59 +02001888 if (mapping->start == saddr)
Christian König7fc11952015-07-30 11:53:42 +02001889 break;
1890 }
1891
Christian König32b41ac2016-03-08 18:03:27 +01001892 if (&mapping->list == &bo_va->invalids)
Christian König7fc11952015-07-30 11:53:42 +02001893 return -ENOENT;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001894 }
Christian König32b41ac2016-03-08 18:03:27 +01001895
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001896 list_del(&mapping->list);
Christian Königa9f87f62017-03-30 14:03:59 +02001897 amdgpu_vm_it_remove(mapping, &vm->va);
Christian König93e3e432015-06-09 16:58:33 +02001898 trace_amdgpu_vm_bo_unmap(bo_va, mapping);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001899
Christian Könige17841b2016-03-08 17:52:01 +01001900 if (valid)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001901 list_add(&mapping->list, &vm->freed);
Christian Könige17841b2016-03-08 17:52:01 +01001902 else
Christian König284710f2017-01-30 11:09:31 +01001903 amdgpu_vm_free_mapping(adev, vm, mapping,
1904 bo_va->last_pt_update);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001905
1906 return 0;
1907}
1908
1909/**
Christian Königdc54d3d2017-03-13 10:13:38 +01001910 * amdgpu_vm_bo_clear_mappings - remove all mappings in a specific range
1911 *
1912 * @adev: amdgpu_device pointer
1913 * @vm: VM structure to use
1914 * @saddr: start of the range
1915 * @size: size of the range
1916 *
1917 * Remove all mappings in a range, split them as appropriate.
1918 * Returns 0 for success, error for failure.
1919 */
1920int amdgpu_vm_bo_clear_mappings(struct amdgpu_device *adev,
1921 struct amdgpu_vm *vm,
1922 uint64_t saddr, uint64_t size)
1923{
1924 struct amdgpu_bo_va_mapping *before, *after, *tmp, *next;
Christian Königdc54d3d2017-03-13 10:13:38 +01001925 LIST_HEAD(removed);
1926 uint64_t eaddr;
1927
1928 eaddr = saddr + size - 1;
1929 saddr /= AMDGPU_GPU_PAGE_SIZE;
1930 eaddr /= AMDGPU_GPU_PAGE_SIZE;
1931
1932 /* Allocate all the needed memory */
1933 before = kzalloc(sizeof(*before), GFP_KERNEL);
1934 if (!before)
1935 return -ENOMEM;
Junwei Zhang27f6d612017-03-16 16:09:24 +08001936 INIT_LIST_HEAD(&before->list);
Christian Königdc54d3d2017-03-13 10:13:38 +01001937
1938 after = kzalloc(sizeof(*after), GFP_KERNEL);
1939 if (!after) {
1940 kfree(before);
1941 return -ENOMEM;
1942 }
Junwei Zhang27f6d612017-03-16 16:09:24 +08001943 INIT_LIST_HEAD(&after->list);
Christian Königdc54d3d2017-03-13 10:13:38 +01001944
1945 /* Now gather all removed mappings */
Christian Königa9f87f62017-03-30 14:03:59 +02001946 tmp = amdgpu_vm_it_iter_first(&vm->va, saddr, eaddr);
1947 while (tmp) {
Christian Königdc54d3d2017-03-13 10:13:38 +01001948 /* Remember mapping split at the start */
Christian Königa9f87f62017-03-30 14:03:59 +02001949 if (tmp->start < saddr) {
1950 before->start = tmp->start;
1951 before->last = saddr - 1;
Christian Königdc54d3d2017-03-13 10:13:38 +01001952 before->offset = tmp->offset;
1953 before->flags = tmp->flags;
1954 list_add(&before->list, &tmp->list);
1955 }
1956
1957 /* Remember mapping split at the end */
Christian Königa9f87f62017-03-30 14:03:59 +02001958 if (tmp->last > eaddr) {
1959 after->start = eaddr + 1;
1960 after->last = tmp->last;
Christian Königdc54d3d2017-03-13 10:13:38 +01001961 after->offset = tmp->offset;
Christian Königa9f87f62017-03-30 14:03:59 +02001962 after->offset += after->start - tmp->start;
Christian Königdc54d3d2017-03-13 10:13:38 +01001963 after->flags = tmp->flags;
1964 list_add(&after->list, &tmp->list);
1965 }
1966
1967 list_del(&tmp->list);
1968 list_add(&tmp->list, &removed);
Christian Königa9f87f62017-03-30 14:03:59 +02001969
1970 tmp = amdgpu_vm_it_iter_next(tmp, saddr, eaddr);
Christian Königdc54d3d2017-03-13 10:13:38 +01001971 }
1972
1973 /* And free them up */
1974 list_for_each_entry_safe(tmp, next, &removed, list) {
Christian Königa9f87f62017-03-30 14:03:59 +02001975 amdgpu_vm_it_remove(tmp, &vm->va);
Christian Königdc54d3d2017-03-13 10:13:38 +01001976 list_del(&tmp->list);
1977
Christian Königa9f87f62017-03-30 14:03:59 +02001978 if (tmp->start < saddr)
1979 tmp->start = saddr;
1980 if (tmp->last > eaddr)
1981 tmp->last = eaddr;
Christian Königdc54d3d2017-03-13 10:13:38 +01001982
1983 list_add(&tmp->list, &vm->freed);
1984 trace_amdgpu_vm_bo_unmap(NULL, tmp);
1985 }
1986
Junwei Zhang27f6d612017-03-16 16:09:24 +08001987 /* Insert partial mapping before the range */
1988 if (!list_empty(&before->list)) {
Christian Königa9f87f62017-03-30 14:03:59 +02001989 amdgpu_vm_it_insert(before, &vm->va);
Christian Königdc54d3d2017-03-13 10:13:38 +01001990 if (before->flags & AMDGPU_PTE_PRT)
1991 amdgpu_vm_prt_get(adev);
1992 } else {
1993 kfree(before);
1994 }
1995
1996 /* Insert partial mapping after the range */
Junwei Zhang27f6d612017-03-16 16:09:24 +08001997 if (!list_empty(&after->list)) {
Christian Königa9f87f62017-03-30 14:03:59 +02001998 amdgpu_vm_it_insert(after, &vm->va);
Christian Königdc54d3d2017-03-13 10:13:38 +01001999 if (after->flags & AMDGPU_PTE_PRT)
2000 amdgpu_vm_prt_get(adev);
2001 } else {
2002 kfree(after);
2003 }
2004
2005 return 0;
2006}
2007
2008/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002009 * amdgpu_vm_bo_rmv - remove a bo to a specific vm
2010 *
2011 * @adev: amdgpu_device pointer
2012 * @bo_va: requested bo_va
2013 *
Christian König8843dbb2016-01-26 12:17:11 +01002014 * Remove @bo_va->bo from the requested vm.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002015 *
2016 * Object have to be reserved!
2017 */
2018void amdgpu_vm_bo_rmv(struct amdgpu_device *adev,
2019 struct amdgpu_bo_va *bo_va)
2020{
2021 struct amdgpu_bo_va_mapping *mapping, *next;
2022 struct amdgpu_vm *vm = bo_va->vm;
2023
2024 list_del(&bo_va->bo_list);
2025
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002026 spin_lock(&vm->status_lock);
2027 list_del(&bo_va->vm_status);
2028 spin_unlock(&vm->status_lock);
2029
Christian König7fc11952015-07-30 11:53:42 +02002030 list_for_each_entry_safe(mapping, next, &bo_va->valids, list) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002031 list_del(&mapping->list);
Christian Königa9f87f62017-03-30 14:03:59 +02002032 amdgpu_vm_it_remove(mapping, &vm->va);
Christian König93e3e432015-06-09 16:58:33 +02002033 trace_amdgpu_vm_bo_unmap(bo_va, mapping);
Christian König7fc11952015-07-30 11:53:42 +02002034 list_add(&mapping->list, &vm->freed);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002035 }
Christian König7fc11952015-07-30 11:53:42 +02002036 list_for_each_entry_safe(mapping, next, &bo_va->invalids, list) {
2037 list_del(&mapping->list);
Christian Königa9f87f62017-03-30 14:03:59 +02002038 amdgpu_vm_it_remove(mapping, &vm->va);
Christian König284710f2017-01-30 11:09:31 +01002039 amdgpu_vm_free_mapping(adev, vm, mapping,
2040 bo_va->last_pt_update);
Christian König7fc11952015-07-30 11:53:42 +02002041 }
Christian König32b41ac2016-03-08 18:03:27 +01002042
Chris Wilsonf54d1862016-10-25 13:00:45 +01002043 dma_fence_put(bo_va->last_pt_update);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002044 kfree(bo_va);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002045}
2046
2047/**
2048 * amdgpu_vm_bo_invalidate - mark the bo as invalid
2049 *
2050 * @adev: amdgpu_device pointer
2051 * @vm: requested vm
2052 * @bo: amdgpu buffer object
2053 *
Christian König8843dbb2016-01-26 12:17:11 +01002054 * Mark @bo as invalid.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002055 */
2056void amdgpu_vm_bo_invalidate(struct amdgpu_device *adev,
2057 struct amdgpu_bo *bo)
2058{
2059 struct amdgpu_bo_va *bo_va;
2060
2061 list_for_each_entry(bo_va, &bo->va, bo_list) {
Christian König7fc11952015-07-30 11:53:42 +02002062 spin_lock(&bo_va->vm->status_lock);
2063 if (list_empty(&bo_va->vm_status))
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002064 list_add(&bo_va->vm_status, &bo_va->vm->invalidated);
Christian König7fc11952015-07-30 11:53:42 +02002065 spin_unlock(&bo_va->vm->status_lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002066 }
2067}
2068
Junwei Zhangbab4fee2017-04-05 13:54:56 +08002069static uint32_t amdgpu_vm_get_block_size(uint64_t vm_size)
2070{
2071 /* Total bits covered by PD + PTs */
2072 unsigned bits = ilog2(vm_size) + 18;
2073
2074 /* Make sure the PD is 4K in size up to 8GB address space.
2075 Above that split equal between PD and PTs */
2076 if (vm_size <= 8)
2077 return (bits - 9);
2078 else
2079 return ((bits + 3) / 2);
2080}
2081
2082/**
2083 * amdgpu_vm_adjust_size - adjust vm size and block size
2084 *
2085 * @adev: amdgpu_device pointer
2086 * @vm_size: the default vm size if it's set auto
2087 */
2088void amdgpu_vm_adjust_size(struct amdgpu_device *adev, uint64_t vm_size)
2089{
2090 /* adjust vm size firstly */
2091 if (amdgpu_vm_size == -1)
2092 adev->vm_manager.vm_size = vm_size;
2093 else
2094 adev->vm_manager.vm_size = amdgpu_vm_size;
2095
2096 /* block size depends on vm size */
2097 if (amdgpu_vm_block_size == -1)
2098 adev->vm_manager.block_size =
2099 amdgpu_vm_get_block_size(adev->vm_manager.vm_size);
2100 else
2101 adev->vm_manager.block_size = amdgpu_vm_block_size;
2102
2103 DRM_INFO("vm size is %llu GB, block size is %u-bit\n",
2104 adev->vm_manager.vm_size, adev->vm_manager.block_size);
2105}
2106
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002107/**
2108 * amdgpu_vm_init - initialize a vm instance
2109 *
2110 * @adev: amdgpu_device pointer
2111 * @vm: requested vm
2112 *
Christian König8843dbb2016-01-26 12:17:11 +01002113 * Init @vm fields.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002114 */
2115int amdgpu_vm_init(struct amdgpu_device *adev, struct amdgpu_vm *vm)
2116{
2117 const unsigned align = min(AMDGPU_VM_PTB_ALIGN_SIZE,
Zhang, Jerry36b32a62017-03-29 16:08:32 +08002118 AMDGPU_VM_PTE_COUNT(adev) * 8);
Christian König2d55e452016-02-08 17:37:38 +01002119 unsigned ring_instance;
2120 struct amdgpu_ring *ring;
Christian König2bd9ccf2016-02-01 12:53:58 +01002121 struct amd_sched_rq *rq;
Christian König4f618e72017-04-06 15:18:21 +02002122 int r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002123
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002124 vm->va = RB_ROOT;
Chunming Zhou031e2982016-04-25 10:19:13 +08002125 vm->client_id = atomic64_inc_return(&adev->vm_manager.client_counter);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002126 spin_lock_init(&vm->status_lock);
2127 INIT_LIST_HEAD(&vm->invalidated);
Christian König7fc11952015-07-30 11:53:42 +02002128 INIT_LIST_HEAD(&vm->cleared);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002129 INIT_LIST_HEAD(&vm->freed);
Christian König20250212016-03-08 17:58:35 +01002130
Christian König2bd9ccf2016-02-01 12:53:58 +01002131 /* create scheduler entity for page table updates */
Christian König2d55e452016-02-08 17:37:38 +01002132
2133 ring_instance = atomic_inc_return(&adev->vm_manager.vm_pte_next_ring);
2134 ring_instance %= adev->vm_manager.vm_pte_num_rings;
2135 ring = adev->vm_manager.vm_pte_rings[ring_instance];
Christian König2bd9ccf2016-02-01 12:53:58 +01002136 rq = &ring->sched.sched_rq[AMD_SCHED_PRIORITY_KERNEL];
2137 r = amd_sched_entity_init(&ring->sched, &vm->entity,
2138 rq, amdgpu_sched_jobs);
2139 if (r)
Christian Königf566ceb2016-10-27 20:04:38 +02002140 return r;
Christian König2bd9ccf2016-02-01 12:53:58 +01002141
Christian Königa24960f2016-10-12 13:20:52 +02002142 vm->last_dir_update = NULL;
Bas Nieuwenhuizen05906de2015-08-14 20:08:40 +02002143
Christian Königf566ceb2016-10-27 20:04:38 +02002144 r = amdgpu_bo_create(adev, amdgpu_vm_bo_size(adev, 0), align, true,
Alex Deucher857d9132015-08-27 00:14:16 -04002145 AMDGPU_GEM_DOMAIN_VRAM,
Chunming Zhou1baa4392016-08-04 13:59:32 +08002146 AMDGPU_GEM_CREATE_NO_CPU_ACCESS |
Christian König03f48dd2016-08-15 17:00:22 +02002147 AMDGPU_GEM_CREATE_SHADOW |
Christian König617859e2016-11-17 15:40:02 +01002148 AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS |
2149 AMDGPU_GEM_CREATE_VRAM_CLEARED,
Christian König67003a12016-10-12 14:46:26 +02002150 NULL, NULL, &vm->root.bo);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002151 if (r)
Christian König2bd9ccf2016-02-01 12:53:58 +01002152 goto error_free_sched_entity;
2153
Christian König67003a12016-10-12 14:46:26 +02002154 r = amdgpu_bo_reserve(vm->root.bo, false);
Christian König2bd9ccf2016-02-01 12:53:58 +01002155 if (r)
Christian König67003a12016-10-12 14:46:26 +02002156 goto error_free_root;
Christian König2bd9ccf2016-02-01 12:53:58 +01002157
Christian König5a712a82016-06-21 16:28:15 +02002158 vm->last_eviction_counter = atomic64_read(&adev->num_evictions);
Christian König67003a12016-10-12 14:46:26 +02002159 amdgpu_bo_unreserve(vm->root.bo);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002160
2161 return 0;
Christian König2bd9ccf2016-02-01 12:53:58 +01002162
Christian König67003a12016-10-12 14:46:26 +02002163error_free_root:
2164 amdgpu_bo_unref(&vm->root.bo->shadow);
2165 amdgpu_bo_unref(&vm->root.bo);
2166 vm->root.bo = NULL;
Christian König2bd9ccf2016-02-01 12:53:58 +01002167
2168error_free_sched_entity:
2169 amd_sched_entity_fini(&ring->sched, &vm->entity);
2170
2171 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002172}
2173
2174/**
Christian Königf566ceb2016-10-27 20:04:38 +02002175 * amdgpu_vm_free_levels - free PD/PT levels
2176 *
2177 * @level: PD/PT starting level to free
2178 *
2179 * Free the page directory or page table level and all sub levels.
2180 */
2181static void amdgpu_vm_free_levels(struct amdgpu_vm_pt *level)
2182{
2183 unsigned i;
2184
2185 if (level->bo) {
2186 amdgpu_bo_unref(&level->bo->shadow);
2187 amdgpu_bo_unref(&level->bo);
2188 }
2189
2190 if (level->entries)
2191 for (i = 0; i <= level->last_entry_used; i++)
2192 amdgpu_vm_free_levels(&level->entries[i]);
2193
2194 drm_free_large(level->entries);
2195}
2196
2197/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002198 * amdgpu_vm_fini - tear down a vm instance
2199 *
2200 * @adev: amdgpu_device pointer
2201 * @vm: requested vm
2202 *
Christian König8843dbb2016-01-26 12:17:11 +01002203 * Tear down @vm.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002204 * Unbind the VM and remove all bos from the vm bo list
2205 */
2206void amdgpu_vm_fini(struct amdgpu_device *adev, struct amdgpu_vm *vm)
2207{
2208 struct amdgpu_bo_va_mapping *mapping, *tmp;
Christian König4388fc22017-03-13 10:13:36 +01002209 bool prt_fini_needed = !!adev->gart.gart_funcs->set_prt;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002210
Christian König2d55e452016-02-08 17:37:38 +01002211 amd_sched_entity_fini(vm->entity.sched, &vm->entity);
Christian König2bd9ccf2016-02-01 12:53:58 +01002212
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002213 if (!RB_EMPTY_ROOT(&vm->va)) {
2214 dev_err(adev->dev, "still active bo inside vm\n");
2215 }
Christian Königa9f87f62017-03-30 14:03:59 +02002216 rbtree_postorder_for_each_entry_safe(mapping, tmp, &vm->va, rb) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002217 list_del(&mapping->list);
Christian Königa9f87f62017-03-30 14:03:59 +02002218 amdgpu_vm_it_remove(mapping, &vm->va);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002219 kfree(mapping);
2220 }
2221 list_for_each_entry_safe(mapping, tmp, &vm->freed, list) {
Christian König4388fc22017-03-13 10:13:36 +01002222 if (mapping->flags & AMDGPU_PTE_PRT && prt_fini_needed) {
Christian König451bc8e2017-02-14 16:02:52 +01002223 amdgpu_vm_prt_fini(adev, vm);
Christian König4388fc22017-03-13 10:13:36 +01002224 prt_fini_needed = false;
Christian König451bc8e2017-02-14 16:02:52 +01002225 }
Christian König284710f2017-01-30 11:09:31 +01002226
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002227 list_del(&mapping->list);
Christian König451bc8e2017-02-14 16:02:52 +01002228 amdgpu_vm_free_mapping(adev, vm, mapping, NULL);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002229 }
2230
Christian Königf566ceb2016-10-27 20:04:38 +02002231 amdgpu_vm_free_levels(&vm->root);
Christian Königa24960f2016-10-12 13:20:52 +02002232 dma_fence_put(vm->last_dir_update);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002233}
Christian Königea89f8c2015-11-15 20:52:06 +01002234
2235/**
Christian Königa9a78b32016-01-21 10:19:11 +01002236 * amdgpu_vm_manager_init - init the VM manager
2237 *
2238 * @adev: amdgpu_device pointer
2239 *
2240 * Initialize the VM manager structures
2241 */
2242void amdgpu_vm_manager_init(struct amdgpu_device *adev)
2243{
Christian König76456702017-04-06 17:52:39 +02002244 unsigned i, j;
Christian Königa9a78b32016-01-21 10:19:11 +01002245
Christian König76456702017-04-06 17:52:39 +02002246 for (i = 0; i < AMDGPU_MAX_VMHUBS; ++i) {
2247 struct amdgpu_vm_id_manager *id_mgr =
2248 &adev->vm_manager.id_mgr[i];
Christian Königa9a78b32016-01-21 10:19:11 +01002249
Christian König76456702017-04-06 17:52:39 +02002250 mutex_init(&id_mgr->lock);
2251 INIT_LIST_HEAD(&id_mgr->ids_lru);
2252
2253 /* skip over VMID 0, since it is the system VM */
2254 for (j = 1; j < id_mgr->num_ids; ++j) {
2255 amdgpu_vm_reset_id(adev, i, j);
2256 amdgpu_sync_create(&id_mgr->ids[i].active);
2257 list_add_tail(&id_mgr->ids[j].list, &id_mgr->ids_lru);
2258 }
Christian König971fe9a92016-03-01 15:09:25 +01002259 }
Christian König2d55e452016-02-08 17:37:38 +01002260
Chris Wilsonf54d1862016-10-25 13:00:45 +01002261 adev->vm_manager.fence_context =
2262 dma_fence_context_alloc(AMDGPU_MAX_RINGS);
Christian König1fbb2e92016-06-01 10:47:36 +02002263 for (i = 0; i < AMDGPU_MAX_RINGS; ++i)
2264 adev->vm_manager.seqno[i] = 0;
2265
Christian König76456702017-04-06 17:52:39 +02002266
Christian König2d55e452016-02-08 17:37:38 +01002267 atomic_set(&adev->vm_manager.vm_pte_next_ring, 0);
Christian Königb1c8a812016-05-04 10:34:03 +02002268 atomic64_set(&adev->vm_manager.client_counter, 0);
Christian König284710f2017-01-30 11:09:31 +01002269 spin_lock_init(&adev->vm_manager.prt_lock);
Christian König451bc8e2017-02-14 16:02:52 +01002270 atomic_set(&adev->vm_manager.num_prt_users, 0);
Christian Königa9a78b32016-01-21 10:19:11 +01002271}
2272
2273/**
Christian Königea89f8c2015-11-15 20:52:06 +01002274 * amdgpu_vm_manager_fini - cleanup VM manager
2275 *
2276 * @adev: amdgpu_device pointer
2277 *
2278 * Cleanup the VM manager and free resources.
2279 */
2280void amdgpu_vm_manager_fini(struct amdgpu_device *adev)
2281{
Christian König76456702017-04-06 17:52:39 +02002282 unsigned i, j;
Christian Königea89f8c2015-11-15 20:52:06 +01002283
Christian König76456702017-04-06 17:52:39 +02002284 for (i = 0; i < AMDGPU_MAX_VMHUBS; ++i) {
2285 struct amdgpu_vm_id_manager *id_mgr =
2286 &adev->vm_manager.id_mgr[i];
Christian Königbcb1ba32016-03-08 15:40:11 +01002287
Christian König76456702017-04-06 17:52:39 +02002288 mutex_destroy(&id_mgr->lock);
2289 for (j = 0; j < AMDGPU_NUM_VM; ++j) {
2290 struct amdgpu_vm_id *id = &id_mgr->ids[j];
2291
2292 amdgpu_sync_free(&id->active);
2293 dma_fence_put(id->flushed_updates);
2294 dma_fence_put(id->last_flush);
2295 }
Christian Königbcb1ba32016-03-08 15:40:11 +01002296 }
Christian Königea89f8c2015-11-15 20:52:06 +01002297}