blob: bd5af328154f92525cea46ac8912f808d6200555 [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 */
Christian König1fbb2e92016-06-01 10:47:36 +020028#include <linux/fence-array.h>
Alex Deucherd38ceaf2015-04-20 16:55:21 -040029#include <drm/drmP.h>
30#include <drm/amdgpu_drm.h>
31#include "amdgpu.h"
32#include "amdgpu_trace.h"
33
34/*
35 * GPUVM
36 * GPUVM is similar to the legacy gart on older asics, however
37 * rather than there being a single global gart table
38 * for the entire GPU, there are multiple VM page tables active
39 * at any given time. The VM page tables can contain a mix
40 * vram pages and system memory pages and system memory pages
41 * can be mapped as snooped (cached system pages) or unsnooped
42 * (uncached system pages).
43 * Each VM has an ID associated with it and there is a page table
44 * associated with each VMID. When execting a command buffer,
45 * the kernel tells the the ring what VMID to use for that command
46 * buffer. VMIDs are allocated dynamically as commands are submitted.
47 * The userspace drivers maintain their own address space and the kernel
48 * sets up their pages tables accordingly when they submit their
49 * command buffers and a VMID is assigned.
50 * Cayman/Trinity support up to 8 active VMs at any given time;
51 * SI supports 16.
52 */
53
Harish Kasiviswanathanf4833c42016-04-21 10:40:18 -040054/* Local structure. Encapsulate some VM table update parameters to reduce
55 * the number of function parameters
56 */
Christian König29efc4f2016-08-04 14:52:50 +020057struct amdgpu_pte_update_params {
Christian König27c5f362016-08-04 15:02:49 +020058 /* amdgpu device we do this update for */
59 struct amdgpu_device *adev;
Harish Kasiviswanathanf4833c42016-04-21 10:40:18 -040060 /* address where to copy page table entries from */
61 uint64_t src;
Harish Kasiviswanathanf4833c42016-04-21 10:40:18 -040062 /* indirect buffer to fill with commands */
63 struct amdgpu_ib *ib;
Christian Königafef8b82016-08-12 13:29:18 +020064 /* Function which actually does the update */
65 void (*func)(struct amdgpu_pte_update_params *params, uint64_t pe,
66 uint64_t addr, unsigned count, uint32_t incr,
67 uint32_t flags);
Chunming Zhou4c7e8852016-08-15 11:46:21 +080068 /* indicate update pt or its shadow */
69 bool shadow;
Harish Kasiviswanathanf4833c42016-04-21 10:40:18 -040070};
71
Alex Deucherd38ceaf2015-04-20 16:55:21 -040072/**
73 * amdgpu_vm_num_pde - return the number of page directory entries
74 *
75 * @adev: amdgpu_device pointer
76 *
Christian König8843dbb2016-01-26 12:17:11 +010077 * Calculate the number of page directory entries.
Alex Deucherd38ceaf2015-04-20 16:55:21 -040078 */
79static unsigned amdgpu_vm_num_pdes(struct amdgpu_device *adev)
80{
81 return adev->vm_manager.max_pfn >> amdgpu_vm_block_size;
82}
83
84/**
85 * amdgpu_vm_directory_size - returns the size of the page directory in bytes
86 *
87 * @adev: amdgpu_device pointer
88 *
Christian König8843dbb2016-01-26 12:17:11 +010089 * Calculate the size of the page directory in bytes.
Alex Deucherd38ceaf2015-04-20 16:55:21 -040090 */
91static unsigned amdgpu_vm_directory_size(struct amdgpu_device *adev)
92{
93 return AMDGPU_GPU_PAGE_ALIGN(amdgpu_vm_num_pdes(adev) * 8);
94}
95
96/**
Christian König56467eb2015-12-11 15:16:32 +010097 * amdgpu_vm_get_pd_bo - add the VM PD to a validation list
Alex Deucherd38ceaf2015-04-20 16:55:21 -040098 *
99 * @vm: vm providing the BOs
Christian König3c0eea62015-12-11 14:39:05 +0100100 * @validated: head of validation list
Christian König56467eb2015-12-11 15:16:32 +0100101 * @entry: entry to add
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400102 *
103 * Add the page directory to the list of BOs to
Christian König56467eb2015-12-11 15:16:32 +0100104 * validate for command submission.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400105 */
Christian König56467eb2015-12-11 15:16:32 +0100106void amdgpu_vm_get_pd_bo(struct amdgpu_vm *vm,
107 struct list_head *validated,
108 struct amdgpu_bo_list_entry *entry)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400109{
Christian König56467eb2015-12-11 15:16:32 +0100110 entry->robj = vm->page_directory;
Christian König56467eb2015-12-11 15:16:32 +0100111 entry->priority = 0;
112 entry->tv.bo = &vm->page_directory->tbo;
113 entry->tv.shared = true;
Christian König2f568db2016-02-23 12:36:59 +0100114 entry->user_pages = NULL;
Christian König56467eb2015-12-11 15:16:32 +0100115 list_add(&entry->tv.head, validated);
116}
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400117
Christian König56467eb2015-12-11 15:16:32 +0100118/**
Christian Königee1782c2015-12-11 21:01:23 +0100119 * amdgpu_vm_get_bos - add the vm BOs to a duplicates list
Christian König56467eb2015-12-11 15:16:32 +0100120 *
Christian König5a712a82016-06-21 16:28:15 +0200121 * @adev: amdgpu device pointer
Christian König56467eb2015-12-11 15:16:32 +0100122 * @vm: vm providing the BOs
Christian König3c0eea62015-12-11 14:39:05 +0100123 * @duplicates: head of duplicates list
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400124 *
Christian Königee1782c2015-12-11 21:01:23 +0100125 * Add the page directory to the BO duplicates list
126 * for command submission.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400127 */
Christian König5a712a82016-06-21 16:28:15 +0200128void amdgpu_vm_get_pt_bos(struct amdgpu_device *adev, struct amdgpu_vm *vm,
129 struct list_head *duplicates)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400130{
Christian König5a712a82016-06-21 16:28:15 +0200131 uint64_t num_evictions;
Christian Königee1782c2015-12-11 21:01:23 +0100132 unsigned i;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400133
Christian König5a712a82016-06-21 16:28:15 +0200134 /* We only need to validate the page tables
135 * if they aren't already valid.
136 */
137 num_evictions = atomic64_read(&adev->num_evictions);
138 if (num_evictions == vm->last_eviction_counter)
139 return;
140
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400141 /* add the vm page table to the list */
Christian Königee1782c2015-12-11 21:01:23 +0100142 for (i = 0; i <= vm->max_pde_used; ++i) {
143 struct amdgpu_bo_list_entry *entry = &vm->page_tables[i].entry;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400144
Christian Königee1782c2015-12-11 21:01:23 +0100145 if (!entry->robj)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400146 continue;
147
Christian Königee1782c2015-12-11 21:01:23 +0100148 list_add(&entry->tv.head, duplicates);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400149 }
Christian Königeceb8a12016-01-11 15:35:21 +0100150
151}
152
153/**
154 * amdgpu_vm_move_pt_bos_in_lru - move the PT BOs to the LRU tail
155 *
156 * @adev: amdgpu device instance
157 * @vm: vm providing the BOs
158 *
159 * Move the PT BOs to the tail of the LRU.
160 */
161void amdgpu_vm_move_pt_bos_in_lru(struct amdgpu_device *adev,
162 struct amdgpu_vm *vm)
163{
164 struct ttm_bo_global *glob = adev->mman.bdev.glob;
165 unsigned i;
166
167 spin_lock(&glob->lru_lock);
168 for (i = 0; i <= vm->max_pde_used; ++i) {
169 struct amdgpu_bo_list_entry *entry = &vm->page_tables[i].entry;
170
171 if (!entry->robj)
172 continue;
173
174 ttm_bo_move_to_lru_tail(&entry->robj->tbo);
175 }
176 spin_unlock(&glob->lru_lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400177}
178
Chunming Zhou192b7dc2016-06-29 14:01:15 +0800179static bool amdgpu_vm_is_gpu_reset(struct amdgpu_device *adev,
180 struct amdgpu_vm_id *id)
181{
182 return id->current_gpu_reset_count !=
183 atomic_read(&adev->gpu_reset_counter) ? true : false;
184}
185
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400186/**
187 * amdgpu_vm_grab_id - allocate the next free VMID
188 *
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400189 * @vm: vm to allocate id for
Christian König7f8a5292015-07-20 16:09:40 +0200190 * @ring: ring we want to submit job to
191 * @sync: sync object where we add dependencies
Christian König94dd0a42016-01-18 17:01:42 +0100192 * @fence: fence protecting ID from reuse
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400193 *
Christian König7f8a5292015-07-20 16:09:40 +0200194 * Allocate an id for the vm, adding fences to the sync obj as necessary.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400195 */
Christian König7f8a5292015-07-20 16:09:40 +0200196int amdgpu_vm_grab_id(struct amdgpu_vm *vm, struct amdgpu_ring *ring,
Christian König4ff37a82016-02-26 16:18:26 +0100197 struct amdgpu_sync *sync, struct fence *fence,
Chunming Zhoufd53be32016-07-01 17:59:01 +0800198 struct amdgpu_job *job)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400199{
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400200 struct amdgpu_device *adev = ring->adev;
Christian König090b7672016-07-08 10:21:02 +0200201 uint64_t fence_context = adev->fence_context + ring->idx;
Christian König4ff37a82016-02-26 16:18:26 +0100202 struct fence *updates = sync->last_vm_update;
Christian König8d76001e2016-05-23 16:00:32 +0200203 struct amdgpu_vm_id *id, *idle;
Christian König1fbb2e92016-06-01 10:47:36 +0200204 struct fence **fences;
205 unsigned i;
206 int r = 0;
207
208 fences = kmalloc_array(sizeof(void *), adev->vm_manager.num_ids,
209 GFP_KERNEL);
210 if (!fences)
211 return -ENOMEM;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400212
Christian König94dd0a42016-01-18 17:01:42 +0100213 mutex_lock(&adev->vm_manager.lock);
214
Christian König36fd7c52016-05-23 15:30:08 +0200215 /* Check if we have an idle VMID */
Christian König1fbb2e92016-06-01 10:47:36 +0200216 i = 0;
Christian König8d76001e2016-05-23 16:00:32 +0200217 list_for_each_entry(idle, &adev->vm_manager.ids_lru, list) {
Christian König1fbb2e92016-06-01 10:47:36 +0200218 fences[i] = amdgpu_sync_peek_fence(&idle->active, ring);
219 if (!fences[i])
Christian König36fd7c52016-05-23 15:30:08 +0200220 break;
Christian König1fbb2e92016-06-01 10:47:36 +0200221 ++i;
Christian König36fd7c52016-05-23 15:30:08 +0200222 }
Christian Königbcb1ba32016-03-08 15:40:11 +0100223
Christian König1fbb2e92016-06-01 10:47:36 +0200224 /* If we can't find a idle VMID to use, wait till one becomes available */
Christian König8d76001e2016-05-23 16:00:32 +0200225 if (&idle->list == &adev->vm_manager.ids_lru) {
Christian König1fbb2e92016-06-01 10:47:36 +0200226 u64 fence_context = adev->vm_manager.fence_context + ring->idx;
227 unsigned seqno = ++adev->vm_manager.seqno[ring->idx];
228 struct fence_array *array;
229 unsigned j;
Christian König8d76001e2016-05-23 16:00:32 +0200230
Christian König1fbb2e92016-06-01 10:47:36 +0200231 for (j = 0; j < i; ++j)
232 fence_get(fences[j]);
Christian König8d76001e2016-05-23 16:00:32 +0200233
Christian König1fbb2e92016-06-01 10:47:36 +0200234 array = fence_array_create(i, fences, fence_context,
235 seqno, true);
236 if (!array) {
237 for (j = 0; j < i; ++j)
238 fence_put(fences[j]);
239 kfree(fences);
240 r = -ENOMEM;
241 goto error;
242 }
Christian König8d76001e2016-05-23 16:00:32 +0200243
Christian König8d76001e2016-05-23 16:00:32 +0200244
Christian König1fbb2e92016-06-01 10:47:36 +0200245 r = amdgpu_sync_fence(ring->adev, sync, &array->base);
246 fence_put(&array->base);
247 if (r)
248 goto error;
Christian König8d76001e2016-05-23 16:00:32 +0200249
Christian König1fbb2e92016-06-01 10:47:36 +0200250 mutex_unlock(&adev->vm_manager.lock);
251 return 0;
Christian König8d76001e2016-05-23 16:00:32 +0200252
Christian König1fbb2e92016-06-01 10:47:36 +0200253 }
254 kfree(fences);
Christian König8d76001e2016-05-23 16:00:32 +0200255
Chunming Zhoufd53be32016-07-01 17:59:01 +0800256 job->vm_needs_flush = true;
Christian König1fbb2e92016-06-01 10:47:36 +0200257 /* Check if we can use a VMID already assigned to this VM */
258 i = ring->idx;
259 do {
260 struct fence *flushed;
Christian König8d76001e2016-05-23 16:00:32 +0200261
Christian König1fbb2e92016-06-01 10:47:36 +0200262 id = vm->ids[i++];
263 if (i == AMDGPU_MAX_RINGS)
264 i = 0;
265
266 /* Check all the prerequisites to using this VMID */
267 if (!id)
268 continue;
Chunming Zhou192b7dc2016-06-29 14:01:15 +0800269 if (amdgpu_vm_is_gpu_reset(adev, id))
Chunming Zhou6adb0512016-06-27 17:06:01 +0800270 continue;
Christian König1fbb2e92016-06-01 10:47:36 +0200271
272 if (atomic64_read(&id->owner) != vm->client_id)
273 continue;
274
Chunming Zhoufd53be32016-07-01 17:59:01 +0800275 if (job->vm_pd_addr != id->pd_gpu_addr)
Christian König1fbb2e92016-06-01 10:47:36 +0200276 continue;
277
Christian König090b7672016-07-08 10:21:02 +0200278 if (!id->last_flush)
279 continue;
280
281 if (id->last_flush->context != fence_context &&
282 !fence_is_signaled(id->last_flush))
Christian König1fbb2e92016-06-01 10:47:36 +0200283 continue;
284
285 flushed = id->flushed_updates;
286 if (updates &&
287 (!flushed || fence_is_later(updates, flushed)))
288 continue;
289
Christian König3dab83b2016-06-01 13:31:17 +0200290 /* Good we can use this VMID. Remember this submission as
291 * user of the VMID.
292 */
Christian König1fbb2e92016-06-01 10:47:36 +0200293 r = amdgpu_sync_fence(ring->adev, &id->active, fence);
294 if (r)
295 goto error;
Christian König8d76001e2016-05-23 16:00:32 +0200296
Chunming Zhou6adb0512016-06-27 17:06:01 +0800297 id->current_gpu_reset_count = atomic_read(&adev->gpu_reset_counter);
Christian König1fbb2e92016-06-01 10:47:36 +0200298 list_move_tail(&id->list, &adev->vm_manager.ids_lru);
299 vm->ids[ring->idx] = id;
Christian König8d76001e2016-05-23 16:00:32 +0200300
Chunming Zhoufd53be32016-07-01 17:59:01 +0800301 job->vm_id = id - adev->vm_manager.ids;
302 job->vm_needs_flush = false;
Christian König0c0fdf12016-07-08 10:48:24 +0200303 trace_amdgpu_vm_grab_id(vm, ring->idx, job);
Christian König8d76001e2016-05-23 16:00:32 +0200304
Christian König1fbb2e92016-06-01 10:47:36 +0200305 mutex_unlock(&adev->vm_manager.lock);
306 return 0;
Christian König8d76001e2016-05-23 16:00:32 +0200307
Christian König1fbb2e92016-06-01 10:47:36 +0200308 } while (i != ring->idx);
Chunming Zhou8e9fbeb2016-03-17 11:41:37 +0800309
Christian König1fbb2e92016-06-01 10:47:36 +0200310 /* Still no ID to use? Then use the idle one found earlier */
311 id = idle;
312
313 /* Remember this submission as user of the VMID */
314 r = amdgpu_sync_fence(ring->adev, &id->active, fence);
Christian König832a9022016-02-15 12:33:02 +0100315 if (r)
316 goto error;
Christian König4ff37a82016-02-26 16:18:26 +0100317
Christian König832a9022016-02-15 12:33:02 +0100318 fence_put(id->first);
319 id->first = fence_get(fence);
Christian König4ff37a82016-02-26 16:18:26 +0100320
Christian König41d9eb22016-03-01 16:46:18 +0100321 fence_put(id->last_flush);
322 id->last_flush = NULL;
323
Christian König832a9022016-02-15 12:33:02 +0100324 fence_put(id->flushed_updates);
325 id->flushed_updates = fence_get(updates);
Christian König4ff37a82016-02-26 16:18:26 +0100326
Chunming Zhoufd53be32016-07-01 17:59:01 +0800327 id->pd_gpu_addr = job->vm_pd_addr;
Chunming Zhoub46b8a82016-06-27 17:04:23 +0800328 id->current_gpu_reset_count = atomic_read(&adev->gpu_reset_counter);
Christian König832a9022016-02-15 12:33:02 +0100329 list_move_tail(&id->list, &adev->vm_manager.ids_lru);
Christian König0ea54b92016-05-04 10:20:01 +0200330 atomic64_set(&id->owner, vm->client_id);
Christian König832a9022016-02-15 12:33:02 +0100331 vm->ids[ring->idx] = id;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400332
Chunming Zhoufd53be32016-07-01 17:59:01 +0800333 job->vm_id = id - adev->vm_manager.ids;
Christian König0c0fdf12016-07-08 10:48:24 +0200334 trace_amdgpu_vm_grab_id(vm, ring->idx, job);
Christian König832a9022016-02-15 12:33:02 +0100335
336error:
Christian König94dd0a42016-01-18 17:01:42 +0100337 mutex_unlock(&adev->vm_manager.lock);
Christian Königa9a78b32016-01-21 10:19:11 +0100338 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400339}
340
Alex Deucher93dcc372016-06-17 17:05:15 -0400341static bool amdgpu_vm_ring_has_compute_vm_bug(struct amdgpu_ring *ring)
342{
343 struct amdgpu_device *adev = ring->adev;
344 const struct amdgpu_ip_block_version *ip_block;
345
346 if (ring->type != AMDGPU_RING_TYPE_COMPUTE)
347 /* only compute rings */
348 return false;
349
350 ip_block = amdgpu_get_ip_block(adev, AMD_IP_BLOCK_TYPE_GFX);
351 if (!ip_block)
352 return false;
353
354 if (ip_block->major <= 7) {
355 /* gfx7 has no workaround */
356 return true;
357 } else if (ip_block->major == 8) {
358 if (adev->gfx.mec_fw_version >= 673)
359 /* gfx8 is fixed in MEC firmware 673 */
360 return false;
361 else
362 return true;
363 }
364 return false;
365}
366
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400367/**
368 * amdgpu_vm_flush - hardware flush the vm
369 *
370 * @ring: ring to use for flush
Christian Königcffadc82016-03-01 13:34:49 +0100371 * @vm_id: vmid number to use
Christian König4ff37a82016-02-26 16:18:26 +0100372 * @pd_addr: address of the page directory
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400373 *
Christian König4ff37a82016-02-26 16:18:26 +0100374 * Emit a VM flush when it is necessary.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400375 */
Chunming Zhoufd53be32016-07-01 17:59:01 +0800376int amdgpu_vm_flush(struct amdgpu_ring *ring, struct amdgpu_job *job)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400377{
Christian König971fe9a92016-03-01 15:09:25 +0100378 struct amdgpu_device *adev = ring->adev;
Chunming Zhoufd53be32016-07-01 17:59:01 +0800379 struct amdgpu_vm_id *id = &adev->vm_manager.ids[job->vm_id];
Christian Königd564a062016-03-01 15:51:53 +0100380 bool gds_switch_needed = ring->funcs->emit_gds_switch && (
Chunming Zhoufd53be32016-07-01 17:59:01 +0800381 id->gds_base != job->gds_base ||
382 id->gds_size != job->gds_size ||
383 id->gws_base != job->gws_base ||
384 id->gws_size != job->gws_size ||
385 id->oa_base != job->oa_base ||
386 id->oa_size != job->oa_size);
Christian König41d9eb22016-03-01 16:46:18 +0100387 int r;
Christian Königd564a062016-03-01 15:51:53 +0100388
389 if (ring->funcs->emit_pipeline_sync && (
Chunming Zhoufd53be32016-07-01 17:59:01 +0800390 job->vm_needs_flush || gds_switch_needed ||
Alex Deucher93dcc372016-06-17 17:05:15 -0400391 amdgpu_vm_ring_has_compute_vm_bug(ring)))
Christian Königd564a062016-03-01 15:51:53 +0100392 amdgpu_ring_emit_pipeline_sync(ring);
Christian König971fe9a92016-03-01 15:09:25 +0100393
Chunming Zhouaa1c8902016-06-30 13:56:02 +0800394 if (ring->funcs->emit_vm_flush && (job->vm_needs_flush ||
395 amdgpu_vm_is_gpu_reset(adev, id))) {
Christian König41d9eb22016-03-01 16:46:18 +0100396 struct fence *fence;
397
Chunming Zhoufd53be32016-07-01 17:59:01 +0800398 trace_amdgpu_vm_flush(job->vm_pd_addr, ring->idx, job->vm_id);
399 amdgpu_ring_emit_vm_flush(ring, job->vm_id, job->vm_pd_addr);
Christian König41d9eb22016-03-01 16:46:18 +0100400
Christian König3dab83b2016-06-01 13:31:17 +0200401 r = amdgpu_fence_emit(ring, &fence);
402 if (r)
403 return r;
404
Christian König41d9eb22016-03-01 16:46:18 +0100405 mutex_lock(&adev->vm_manager.lock);
Christian König3dab83b2016-06-01 13:31:17 +0200406 fence_put(id->last_flush);
407 id->last_flush = fence;
Christian König41d9eb22016-03-01 16:46:18 +0100408 mutex_unlock(&adev->vm_manager.lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400409 }
Christian Königcffadc82016-03-01 13:34:49 +0100410
Christian Königd564a062016-03-01 15:51:53 +0100411 if (gds_switch_needed) {
Chunming Zhoufd53be32016-07-01 17:59:01 +0800412 id->gds_base = job->gds_base;
413 id->gds_size = job->gds_size;
414 id->gws_base = job->gws_base;
415 id->gws_size = job->gws_size;
416 id->oa_base = job->oa_base;
417 id->oa_size = job->oa_size;
418 amdgpu_ring_emit_gds_switch(ring, job->vm_id,
419 job->gds_base, job->gds_size,
420 job->gws_base, job->gws_size,
421 job->oa_base, job->oa_size);
Christian König971fe9a92016-03-01 15:09:25 +0100422 }
Christian König41d9eb22016-03-01 16:46:18 +0100423
424 return 0;
Christian König971fe9a92016-03-01 15:09:25 +0100425}
426
427/**
428 * amdgpu_vm_reset_id - reset VMID to zero
429 *
430 * @adev: amdgpu device structure
431 * @vm_id: vmid number to use
432 *
433 * Reset saved GDW, GWS and OA to force switch on next flush.
434 */
435void amdgpu_vm_reset_id(struct amdgpu_device *adev, unsigned vm_id)
436{
Christian Königbcb1ba32016-03-08 15:40:11 +0100437 struct amdgpu_vm_id *id = &adev->vm_manager.ids[vm_id];
Christian König971fe9a92016-03-01 15:09:25 +0100438
Christian Königbcb1ba32016-03-08 15:40:11 +0100439 id->gds_base = 0;
440 id->gds_size = 0;
441 id->gws_base = 0;
442 id->gws_size = 0;
443 id->oa_base = 0;
444 id->oa_size = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400445}
446
447/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400448 * amdgpu_vm_bo_find - find the bo_va for a specific vm & bo
449 *
450 * @vm: requested vm
451 * @bo: requested buffer object
452 *
Christian König8843dbb2016-01-26 12:17:11 +0100453 * Find @bo inside the requested vm.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400454 * Search inside the @bos vm list for the requested vm
455 * Returns the found bo_va or NULL if none is found
456 *
457 * Object has to be reserved!
458 */
459struct amdgpu_bo_va *amdgpu_vm_bo_find(struct amdgpu_vm *vm,
460 struct amdgpu_bo *bo)
461{
462 struct amdgpu_bo_va *bo_va;
463
464 list_for_each_entry(bo_va, &bo->va, bo_list) {
465 if (bo_va->vm == vm) {
466 return bo_va;
467 }
468 }
469 return NULL;
470}
471
472/**
Christian Königafef8b82016-08-12 13:29:18 +0200473 * amdgpu_vm_do_set_ptes - helper to call the right asic function
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400474 *
Christian König29efc4f2016-08-04 14:52:50 +0200475 * @params: see amdgpu_pte_update_params definition
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400476 * @pe: addr of the page entry
477 * @addr: dst addr to write into pe
478 * @count: number of page entries to update
479 * @incr: increase next addr by incr bytes
480 * @flags: hw access flags
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400481 *
482 * Traces the parameters and calls the right asic functions
483 * to setup the page table using the DMA.
484 */
Christian Königafef8b82016-08-12 13:29:18 +0200485static void amdgpu_vm_do_set_ptes(struct amdgpu_pte_update_params *params,
486 uint64_t pe, uint64_t addr,
487 unsigned count, uint32_t incr,
488 uint32_t flags)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400489{
490 trace_amdgpu_vm_set_page(pe, addr, count, incr, flags);
491
Christian Königafef8b82016-08-12 13:29:18 +0200492 if (count < 3) {
Christian Königde9ea7b2016-08-12 11:33:30 +0200493 amdgpu_vm_write_pte(params->adev, params->ib, pe,
494 addr | flags, count, incr);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400495
496 } else {
Christian König27c5f362016-08-04 15:02:49 +0200497 amdgpu_vm_set_pte_pde(params->adev, params->ib, pe, addr,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400498 count, incr, flags);
499 }
500}
501
502/**
Christian Königafef8b82016-08-12 13:29:18 +0200503 * amdgpu_vm_do_copy_ptes - copy the PTEs from the GART
504 *
505 * @params: see amdgpu_pte_update_params definition
506 * @pe: addr of the page entry
507 * @addr: dst addr to write into pe
508 * @count: number of page entries to update
509 * @incr: increase next addr by incr bytes
510 * @flags: hw access flags
511 *
512 * Traces the parameters and calls the DMA function to copy the PTEs.
513 */
514static void amdgpu_vm_do_copy_ptes(struct amdgpu_pte_update_params *params,
515 uint64_t pe, uint64_t addr,
516 unsigned count, uint32_t incr,
517 uint32_t flags)
518{
519 trace_amdgpu_vm_set_page(pe, addr, count, incr, flags);
520
521 amdgpu_vm_copy_pte(params->adev, params->ib, pe,
522 (params->src + (addr >> 12) * 8), count);
523}
524
525/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400526 * amdgpu_vm_clear_bo - initially clear the page dir/table
527 *
528 * @adev: amdgpu_device pointer
529 * @bo: bo to clear
Chunming Zhouef9f0a82015-11-13 13:43:22 +0800530 *
531 * need to reserve bo first before calling it.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400532 */
533static int amdgpu_vm_clear_bo(struct amdgpu_device *adev,
Christian König2bd9ccf2016-02-01 12:53:58 +0100534 struct amdgpu_vm *vm,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400535 struct amdgpu_bo *bo)
536{
Christian König2d55e452016-02-08 17:37:38 +0100537 struct amdgpu_ring *ring;
Chunming Zhou4af9f072015-08-03 12:57:31 +0800538 struct fence *fence = NULL;
Christian Königd71518b2016-02-01 12:20:25 +0100539 struct amdgpu_job *job;
Christian König29efc4f2016-08-04 14:52:50 +0200540 struct amdgpu_pte_update_params params;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400541 unsigned entries;
542 uint64_t addr;
543 int r;
544
Christian König2d55e452016-02-08 17:37:38 +0100545 ring = container_of(vm->entity.sched, struct amdgpu_ring, sched);
546
monk.liuca952612015-05-25 14:44:05 +0800547 r = reservation_object_reserve_shared(bo->tbo.resv);
548 if (r)
549 return r;
550
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400551 r = ttm_bo_validate(&bo->tbo, &bo->placement, true, false);
552 if (r)
Chunming Zhouef9f0a82015-11-13 13:43:22 +0800553 goto error;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400554
555 addr = amdgpu_bo_gpu_offset(bo);
556 entries = amdgpu_bo_size(bo) / 8;
557
Christian Königd71518b2016-02-01 12:20:25 +0100558 r = amdgpu_job_alloc_with_ib(adev, 64, &job);
559 if (r)
Chunming Zhouef9f0a82015-11-13 13:43:22 +0800560 goto error;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400561
Christian König27c5f362016-08-04 15:02:49 +0200562 memset(&params, 0, sizeof(params));
563 params.adev = adev;
Christian König29efc4f2016-08-04 14:52:50 +0200564 params.ib = &job->ibs[0];
Christian Königafef8b82016-08-12 13:29:18 +0200565 amdgpu_vm_do_set_ptes(&params, addr, 0, entries, 0, 0);
Christian Königd71518b2016-02-01 12:20:25 +0100566 amdgpu_ring_pad_ib(ring, &job->ibs[0]);
567
568 WARN_ON(job->ibs[0].length_dw > 64);
Christian König2bd9ccf2016-02-01 12:53:58 +0100569 r = amdgpu_job_submit(job, ring, &vm->entity,
570 AMDGPU_FENCE_OWNER_VM, &fence);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400571 if (r)
572 goto error_free;
573
Christian Königd71518b2016-02-01 12:20:25 +0100574 amdgpu_bo_fence(bo, fence, true);
Chunming Zhou281b4222015-08-12 12:58:31 +0800575 fence_put(fence);
Chunming Zhoucadf97b2016-01-15 11:25:00 +0800576 return 0;
Chunming Zhouef9f0a82015-11-13 13:43:22 +0800577
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400578error_free:
Christian Königd71518b2016-02-01 12:20:25 +0100579 amdgpu_job_free(job);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400580
Chunming Zhouef9f0a82015-11-13 13:43:22 +0800581error:
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400582 return r;
583}
584
585/**
Christian Königb07c9d22015-11-30 13:26:07 +0100586 * amdgpu_vm_map_gart - Resolve gart mapping of addr
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400587 *
Christian Königb07c9d22015-11-30 13:26:07 +0100588 * @pages_addr: optional DMA address to use for lookup
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400589 * @addr: the unmapped addr
590 *
591 * Look up the physical address of the page that the pte resolves
Christian Königb07c9d22015-11-30 13:26:07 +0100592 * to and return the pointer for the page table entry.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400593 */
Christian Königde9ea7b2016-08-12 11:33:30 +0200594static uint64_t amdgpu_vm_map_gart(const dma_addr_t *pages_addr, uint64_t addr)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400595{
596 uint64_t result;
597
Christian Königde9ea7b2016-08-12 11:33:30 +0200598 /* page table offset */
599 result = pages_addr[addr >> PAGE_SHIFT];
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400600
Christian Königde9ea7b2016-08-12 11:33:30 +0200601 /* in case cpu page size != gpu page size*/
602 result |= addr & (~PAGE_MASK);
Christian Königb07c9d22015-11-30 13:26:07 +0100603
604 result &= 0xFFFFFFFFFFFFF000ULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400605
606 return result;
607}
608
Chunming Zhou6557e3d2016-08-15 11:36:54 +0800609static int amdgpu_vm_update_pd_or_shadow(struct amdgpu_device *adev,
610 struct amdgpu_vm *vm,
611 bool shadow)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400612{
Christian König2d55e452016-02-08 17:37:38 +0100613 struct amdgpu_ring *ring;
Chunming Zhou6557e3d2016-08-15 11:36:54 +0800614 struct amdgpu_bo *pd = shadow ? vm->page_directory->shadow :
615 vm->page_directory;
616 uint64_t pd_addr;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400617 uint32_t incr = AMDGPU_VM_PTE_COUNT * 8;
618 uint64_t last_pde = ~0, last_pt = ~0;
619 unsigned count = 0, pt_idx, ndw;
Christian Königd71518b2016-02-01 12:20:25 +0100620 struct amdgpu_job *job;
Christian König29efc4f2016-08-04 14:52:50 +0200621 struct amdgpu_pte_update_params params;
Chunming Zhou4af9f072015-08-03 12:57:31 +0800622 struct fence *fence = NULL;
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800623
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400624 int r;
625
Chunming Zhou6557e3d2016-08-15 11:36:54 +0800626 if (!pd)
627 return 0;
628 pd_addr = amdgpu_bo_gpu_offset(pd);
Christian König2d55e452016-02-08 17:37:38 +0100629 ring = container_of(vm->entity.sched, struct amdgpu_ring, sched);
630
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400631 /* padding, etc. */
632 ndw = 64;
633
634 /* assume the worst case */
635 ndw += vm->max_pde_used * 6;
636
Christian Königd71518b2016-02-01 12:20:25 +0100637 r = amdgpu_job_alloc_with_ib(adev, ndw * 4, &job);
638 if (r)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400639 return r;
Christian Königd71518b2016-02-01 12:20:25 +0100640
Christian König27c5f362016-08-04 15:02:49 +0200641 memset(&params, 0, sizeof(params));
642 params.adev = adev;
Christian König29efc4f2016-08-04 14:52:50 +0200643 params.ib = &job->ibs[0];
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400644
645 /* walk over the address space and update the page directory */
646 for (pt_idx = 0; pt_idx <= vm->max_pde_used; ++pt_idx) {
Christian Königee1782c2015-12-11 21:01:23 +0100647 struct amdgpu_bo *bo = vm->page_tables[pt_idx].entry.robj;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400648 uint64_t pde, pt;
649
650 if (bo == NULL)
651 continue;
652
653 pt = amdgpu_bo_gpu_offset(bo);
Chunming Zhou6557e3d2016-08-15 11:36:54 +0800654 if (!shadow) {
655 if (vm->page_tables[pt_idx].addr == pt)
656 continue;
657 vm->page_tables[pt_idx].addr = pt;
658 } else {
659 if (vm->page_tables[pt_idx].shadow_addr == pt)
660 continue;
661 vm->page_tables[pt_idx].shadow_addr = pt;
662 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400663
664 pde = pd_addr + pt_idx * 8;
665 if (((last_pde + 8 * count) != pde) ||
Christian König96105e52016-08-12 12:59:59 +0200666 ((last_pt + incr * count) != pt) ||
667 (count == AMDGPU_VM_MAX_UPDATE_SIZE)) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400668
669 if (count) {
Christian Königafef8b82016-08-12 13:29:18 +0200670 amdgpu_vm_do_set_ptes(&params, last_pde,
671 last_pt, count, incr,
672 AMDGPU_PTE_VALID);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400673 }
674
675 count = 1;
676 last_pde = pde;
677 last_pt = pt;
678 } else {
679 ++count;
680 }
681 }
682
683 if (count)
Christian Königafef8b82016-08-12 13:29:18 +0200684 amdgpu_vm_do_set_ptes(&params, last_pde, last_pt,
685 count, incr, AMDGPU_PTE_VALID);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400686
Christian König29efc4f2016-08-04 14:52:50 +0200687 if (params.ib->length_dw != 0) {
688 amdgpu_ring_pad_ib(ring, params.ib);
Christian Könige86f9ce2016-02-08 12:13:05 +0100689 amdgpu_sync_resv(adev, &job->sync, pd->tbo.resv,
690 AMDGPU_FENCE_OWNER_VM);
Christian König29efc4f2016-08-04 14:52:50 +0200691 WARN_ON(params.ib->length_dw > ndw);
Christian König2bd9ccf2016-02-01 12:53:58 +0100692 r = amdgpu_job_submit(job, ring, &vm->entity,
693 AMDGPU_FENCE_OWNER_VM, &fence);
Chunming Zhou4af9f072015-08-03 12:57:31 +0800694 if (r)
695 goto error_free;
Bas Nieuwenhuizen05906de2015-08-14 20:08:40 +0200696
Chunming Zhou4af9f072015-08-03 12:57:31 +0800697 amdgpu_bo_fence(pd, fence, true);
Bas Nieuwenhuizen05906de2015-08-14 20:08:40 +0200698 fence_put(vm->page_directory_fence);
699 vm->page_directory_fence = fence_get(fence);
Chunming Zhou281b4222015-08-12 12:58:31 +0800700 fence_put(fence);
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800701
Christian Königd71518b2016-02-01 12:20:25 +0100702 } else {
703 amdgpu_job_free(job);
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800704 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400705
706 return 0;
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800707
708error_free:
Christian Königd71518b2016-02-01 12:20:25 +0100709 amdgpu_job_free(job);
Chunming Zhou4af9f072015-08-03 12:57:31 +0800710 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400711}
712
Chunming Zhou6557e3d2016-08-15 11:36:54 +0800713/*
714 * amdgpu_vm_update_pdes - make sure that page directory is valid
715 *
716 * @adev: amdgpu_device pointer
717 * @vm: requested vm
718 * @start: start of GPU address range
719 * @end: end of GPU address range
720 *
721 * Allocates new page tables if necessary
722 * and updates the page directory.
723 * Returns 0 for success, error for failure.
724 */
725int amdgpu_vm_update_page_directory(struct amdgpu_device *adev,
726 struct amdgpu_vm *vm)
727{
728 int r;
729
730 r = amdgpu_vm_update_pd_or_shadow(adev, vm, true);
731 if (r)
732 return r;
733 return amdgpu_vm_update_pd_or_shadow(adev, vm, false);
734}
735
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400736/**
Christian König92696dd2016-08-05 13:56:35 +0200737 * amdgpu_vm_update_ptes - make sure that page tables are valid
738 *
739 * @params: see amdgpu_pte_update_params definition
740 * @vm: requested vm
741 * @start: start of GPU address range
742 * @end: end of GPU address range
743 * @dst: destination address to map to, the next dst inside the function
744 * @flags: mapping flags
745 *
746 * Update the page tables in the range @start - @end.
747 */
748static void amdgpu_vm_update_ptes(struct amdgpu_pte_update_params *params,
749 struct amdgpu_vm *vm,
750 uint64_t start, uint64_t end,
751 uint64_t dst, uint32_t flags)
752{
753 const uint64_t mask = AMDGPU_VM_PTE_COUNT - 1;
754
755 uint64_t cur_pe_start, cur_nptes, cur_dst;
756 uint64_t addr; /* next GPU address to be updated */
757 uint64_t pt_idx;
758 struct amdgpu_bo *pt;
759 unsigned nptes; /* next number of ptes to be updated */
760 uint64_t next_pe_start;
761
762 /* initialize the variables */
763 addr = start;
764 pt_idx = addr >> amdgpu_vm_block_size;
765 pt = vm->page_tables[pt_idx].entry.robj;
Chunming Zhou4c7e8852016-08-15 11:46:21 +0800766 if (params->shadow) {
767 if (!pt->shadow)
768 return;
769 pt = vm->page_tables[pt_idx].entry.robj->shadow;
770 }
Christian König92696dd2016-08-05 13:56:35 +0200771 if ((addr & ~mask) == (end & ~mask))
772 nptes = end - addr;
773 else
774 nptes = AMDGPU_VM_PTE_COUNT - (addr & mask);
775
776 cur_pe_start = amdgpu_bo_gpu_offset(pt);
777 cur_pe_start += (addr & mask) * 8;
778 cur_nptes = nptes;
779 cur_dst = dst;
780
781 /* for next ptb*/
782 addr += nptes;
783 dst += nptes * AMDGPU_GPU_PAGE_SIZE;
784
785 /* walk over the address space and update the page tables */
786 while (addr < end) {
787 pt_idx = addr >> amdgpu_vm_block_size;
788 pt = vm->page_tables[pt_idx].entry.robj;
Chunming Zhou4c7e8852016-08-15 11:46:21 +0800789 if (params->shadow) {
790 if (!pt->shadow)
791 return;
792 pt = vm->page_tables[pt_idx].entry.robj->shadow;
793 }
Christian König92696dd2016-08-05 13:56:35 +0200794
795 if ((addr & ~mask) == (end & ~mask))
796 nptes = end - addr;
797 else
798 nptes = AMDGPU_VM_PTE_COUNT - (addr & mask);
799
800 next_pe_start = amdgpu_bo_gpu_offset(pt);
801 next_pe_start += (addr & mask) * 8;
802
Christian König96105e52016-08-12 12:59:59 +0200803 if ((cur_pe_start + 8 * cur_nptes) == next_pe_start &&
804 ((cur_nptes + nptes) <= AMDGPU_VM_MAX_UPDATE_SIZE)) {
Christian König92696dd2016-08-05 13:56:35 +0200805 /* The next ptb is consecutive to current ptb.
Christian Königafef8b82016-08-12 13:29:18 +0200806 * Don't call the update function now.
Christian König92696dd2016-08-05 13:56:35 +0200807 * Will update two ptbs together in future.
808 */
809 cur_nptes += nptes;
810 } else {
Christian Königafef8b82016-08-12 13:29:18 +0200811 params->func(params, cur_pe_start, cur_dst, cur_nptes,
812 AMDGPU_GPU_PAGE_SIZE, flags);
Christian König92696dd2016-08-05 13:56:35 +0200813
814 cur_pe_start = next_pe_start;
815 cur_nptes = nptes;
816 cur_dst = dst;
817 }
818
819 /* for next ptb*/
820 addr += nptes;
821 dst += nptes * AMDGPU_GPU_PAGE_SIZE;
822 }
823
Christian Königafef8b82016-08-12 13:29:18 +0200824 params->func(params, cur_pe_start, cur_dst, cur_nptes,
825 AMDGPU_GPU_PAGE_SIZE, flags);
Christian König92696dd2016-08-05 13:56:35 +0200826}
827
828/*
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400829 * amdgpu_vm_frag_ptes - add fragment information to PTEs
830 *
Christian König29efc4f2016-08-04 14:52:50 +0200831 * @params: see amdgpu_pte_update_params definition
Christian König92696dd2016-08-05 13:56:35 +0200832 * @vm: requested vm
833 * @start: first PTE to handle
834 * @end: last PTE to handle
835 * @dst: addr those PTEs should point to
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400836 * @flags: hw mapping flags
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400837 */
Christian König27c5f362016-08-04 15:02:49 +0200838static void amdgpu_vm_frag_ptes(struct amdgpu_pte_update_params *params,
Christian König92696dd2016-08-05 13:56:35 +0200839 struct amdgpu_vm *vm,
840 uint64_t start, uint64_t end,
841 uint64_t dst, uint32_t flags)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400842{
843 /**
844 * The MC L1 TLB supports variable sized pages, based on a fragment
845 * field in the PTE. When this field is set to a non-zero value, page
846 * granularity is increased from 4KB to (1 << (12 + frag)). The PTE
847 * flags are considered valid for all PTEs within the fragment range
848 * and corresponding mappings are assumed to be physically contiguous.
849 *
850 * The L1 TLB can store a single PTE for the whole fragment,
851 * significantly increasing the space available for translation
852 * caching. This leads to large improvements in throughput when the
853 * TLB is under pressure.
854 *
855 * The L2 TLB distributes small and large fragments into two
856 * asymmetric partitions. The large fragment cache is significantly
857 * larger. Thus, we try to use large fragments wherever possible.
858 * Userspace can support this by aligning virtual base address and
859 * allocation size to the fragment size.
860 */
861
Christian Könige2b84e42016-08-08 14:40:18 +0200862 const uint64_t frag_align = 1 << AMDGPU_LOG2_PAGES_PER_FRAG;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400863
Christian König92696dd2016-08-05 13:56:35 +0200864 uint64_t frag_start = ALIGN(start, frag_align);
865 uint64_t frag_end = end & ~(frag_align - 1);
Christian König31f6c1f2016-01-26 12:37:49 +0100866
Christian Könige2b84e42016-08-08 14:40:18 +0200867 uint32_t frag;
868
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400869 /* system pages are non continuously */
Christian Königb7fc2cb2016-08-11 16:44:15 +0200870 if (params->src || !(flags & AMDGPU_PTE_VALID) ||
Christian König92696dd2016-08-05 13:56:35 +0200871 (frag_start >= frag_end)) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400872
Christian König92696dd2016-08-05 13:56:35 +0200873 amdgpu_vm_update_ptes(params, vm, start, end, dst, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400874 return;
875 }
876
Christian Könige2b84e42016-08-08 14:40:18 +0200877 /* use more than 64KB fragment size if possible */
878 frag = lower_32_bits(frag_start | frag_end);
879 frag = likely(frag) ? __ffs(frag) : 31;
880
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400881 /* handle the 4K area at the beginning */
Christian König92696dd2016-08-05 13:56:35 +0200882 if (start != frag_start) {
883 amdgpu_vm_update_ptes(params, vm, start, frag_start,
884 dst, flags);
885 dst += (frag_start - start) * AMDGPU_GPU_PAGE_SIZE;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400886 }
887
888 /* handle the area in the middle */
Christian König92696dd2016-08-05 13:56:35 +0200889 amdgpu_vm_update_ptes(params, vm, frag_start, frag_end, dst,
Christian Könige2b84e42016-08-08 14:40:18 +0200890 flags | AMDGPU_PTE_FRAG(frag));
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400891
892 /* handle the 4K area at the end */
Christian König92696dd2016-08-05 13:56:35 +0200893 if (frag_end != end) {
894 dst += (frag_end - frag_start) * AMDGPU_GPU_PAGE_SIZE;
895 amdgpu_vm_update_ptes(params, vm, frag_end, end, dst, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400896 }
897}
898
899/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400900 * amdgpu_vm_bo_update_mapping - update a mapping in the vm page table
901 *
902 * @adev: amdgpu_device pointer
Christian König3cabaa52016-06-06 10:17:58 +0200903 * @exclusive: fence we need to sync to
Christian Königfa3ab3c2016-03-18 21:00:35 +0100904 * @src: address where to copy page table entries from
905 * @pages_addr: DMA addresses to use for mapping
Christian Königa14faa62016-01-25 14:27:31 +0100906 * @vm: requested vm
907 * @start: start of mapped range
908 * @last: last mapped entry
909 * @flags: flags for the entries
910 * @addr: addr to set the area to
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400911 * @fence: optional resulting fence
912 *
Christian Königa14faa62016-01-25 14:27:31 +0100913 * Fill in the page table entries between @start and @last.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400914 * Returns 0 for success, -EINVAL for failure.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400915 */
916static int amdgpu_vm_bo_update_mapping(struct amdgpu_device *adev,
Christian König3cabaa52016-06-06 10:17:58 +0200917 struct fence *exclusive,
Christian Königfa3ab3c2016-03-18 21:00:35 +0100918 uint64_t src,
919 dma_addr_t *pages_addr,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400920 struct amdgpu_vm *vm,
Christian Königa14faa62016-01-25 14:27:31 +0100921 uint64_t start, uint64_t last,
922 uint32_t flags, uint64_t addr,
923 struct fence **fence)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400924{
Christian König2d55e452016-02-08 17:37:38 +0100925 struct amdgpu_ring *ring;
Christian Königa1e08d32016-01-26 11:40:46 +0100926 void *owner = AMDGPU_FENCE_OWNER_VM;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400927 unsigned nptes, ncmds, ndw;
Christian Königd71518b2016-02-01 12:20:25 +0100928 struct amdgpu_job *job;
Christian König29efc4f2016-08-04 14:52:50 +0200929 struct amdgpu_pte_update_params params;
Chunming Zhou4af9f072015-08-03 12:57:31 +0800930 struct fence *f = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400931 int r;
932
Christian Königafef8b82016-08-12 13:29:18 +0200933 memset(&params, 0, sizeof(params));
934 params.adev = adev;
935 params.src = src;
936
Christian König2d55e452016-02-08 17:37:38 +0100937 ring = container_of(vm->entity.sched, struct amdgpu_ring, sched);
Christian König27c5f362016-08-04 15:02:49 +0200938
Christian König29efc4f2016-08-04 14:52:50 +0200939 memset(&params, 0, sizeof(params));
Christian König27c5f362016-08-04 15:02:49 +0200940 params.adev = adev;
Christian König29efc4f2016-08-04 14:52:50 +0200941 params.src = src;
Christian König2d55e452016-02-08 17:37:38 +0100942
Christian Königa1e08d32016-01-26 11:40:46 +0100943 /* sync to everything on unmapping */
944 if (!(flags & AMDGPU_PTE_VALID))
945 owner = AMDGPU_FENCE_OWNER_UNDEFINED;
946
Christian Königa14faa62016-01-25 14:27:31 +0100947 nptes = last - start + 1;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400948
949 /*
950 * reserve space for one command every (1 << BLOCK_SIZE)
951 * entries or 2k dwords (whatever is smaller)
952 */
953 ncmds = (nptes >> min(amdgpu_vm_block_size, 11)) + 1;
954
955 /* padding, etc. */
956 ndw = 64;
957
Christian Königb0456f92016-08-11 14:06:54 +0200958 if (src) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400959 /* only copy commands needed */
960 ndw += ncmds * 7;
961
Christian Königafef8b82016-08-12 13:29:18 +0200962 params.func = amdgpu_vm_do_copy_ptes;
963
Christian Königb0456f92016-08-11 14:06:54 +0200964 } else if (pages_addr) {
965 /* copy commands needed */
966 ndw += ncmds * 7;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400967
Christian Königb0456f92016-08-11 14:06:54 +0200968 /* and also PTEs */
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400969 ndw += nptes * 2;
970
Christian Königafef8b82016-08-12 13:29:18 +0200971 params.func = amdgpu_vm_do_copy_ptes;
972
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400973 } else {
974 /* set page commands needed */
975 ndw += ncmds * 10;
976
977 /* two extra commands for begin/end of fragment */
978 ndw += 2 * 10;
Christian Königafef8b82016-08-12 13:29:18 +0200979
980 params.func = amdgpu_vm_do_set_ptes;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400981 }
982
Christian Königd71518b2016-02-01 12:20:25 +0100983 r = amdgpu_job_alloc_with_ib(adev, ndw * 4, &job);
984 if (r)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400985 return r;
Christian Königd71518b2016-02-01 12:20:25 +0100986
Christian König29efc4f2016-08-04 14:52:50 +0200987 params.ib = &job->ibs[0];
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800988
Christian Königb0456f92016-08-11 14:06:54 +0200989 if (!src && pages_addr) {
990 uint64_t *pte;
991 unsigned i;
992
993 /* Put the PTEs at the end of the IB. */
994 i = ndw - nptes * 2;
995 pte= (uint64_t *)&(job->ibs->ptr[i]);
996 params.src = job->ibs->gpu_addr + i * 4;
997
998 for (i = 0; i < nptes; ++i) {
999 pte[i] = amdgpu_vm_map_gart(pages_addr, addr + i *
1000 AMDGPU_GPU_PAGE_SIZE);
1001 pte[i] |= flags;
1002 }
1003 }
1004
Christian König3cabaa52016-06-06 10:17:58 +02001005 r = amdgpu_sync_fence(adev, &job->sync, exclusive);
1006 if (r)
1007 goto error_free;
1008
Christian Könige86f9ce2016-02-08 12:13:05 +01001009 r = amdgpu_sync_resv(adev, &job->sync, vm->page_directory->tbo.resv,
Christian Königa1e08d32016-01-26 11:40:46 +01001010 owner);
1011 if (r)
1012 goto error_free;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001013
Christian Königa1e08d32016-01-26 11:40:46 +01001014 r = reservation_object_reserve_shared(vm->page_directory->tbo.resv);
1015 if (r)
1016 goto error_free;
1017
Chunming Zhou4c7e8852016-08-15 11:46:21 +08001018 params.shadow = true;
1019 amdgpu_vm_frag_ptes(&params, vm, start, last + 1, addr, flags);
1020 params.shadow = false;
Christian König92696dd2016-08-05 13:56:35 +02001021 amdgpu_vm_frag_ptes(&params, vm, start, last + 1, addr, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001022
Christian König29efc4f2016-08-04 14:52:50 +02001023 amdgpu_ring_pad_ib(ring, params.ib);
1024 WARN_ON(params.ib->length_dw > ndw);
Christian König2bd9ccf2016-02-01 12:53:58 +01001025 r = amdgpu_job_submit(job, ring, &vm->entity,
1026 AMDGPU_FENCE_OWNER_VM, &f);
Chunming Zhou4af9f072015-08-03 12:57:31 +08001027 if (r)
1028 goto error_free;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001029
Christian Königbf60efd2015-09-04 10:47:56 +02001030 amdgpu_bo_fence(vm->page_directory, f, true);
Chunming Zhou4af9f072015-08-03 12:57:31 +08001031 if (fence) {
1032 fence_put(*fence);
1033 *fence = fence_get(f);
1034 }
Chunming Zhou281b4222015-08-12 12:58:31 +08001035 fence_put(f);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001036 return 0;
Chunming Zhoud5fc5e82015-07-21 16:52:10 +08001037
1038error_free:
Christian Königd71518b2016-02-01 12:20:25 +01001039 amdgpu_job_free(job);
Chunming Zhou4af9f072015-08-03 12:57:31 +08001040 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001041}
1042
1043/**
Christian Königa14faa62016-01-25 14:27:31 +01001044 * amdgpu_vm_bo_split_mapping - split a mapping into smaller chunks
1045 *
1046 * @adev: amdgpu_device pointer
Christian König3cabaa52016-06-06 10:17:58 +02001047 * @exclusive: fence we need to sync to
Christian König8358dce2016-03-30 10:50:25 +02001048 * @gtt_flags: flags as they are used for GTT
1049 * @pages_addr: DMA addresses to use for mapping
Christian Königa14faa62016-01-25 14:27:31 +01001050 * @vm: requested vm
1051 * @mapping: mapped range and flags to use for the update
1052 * @addr: addr to set the area to
Christian König8358dce2016-03-30 10:50:25 +02001053 * @flags: HW flags for the mapping
Christian Königa14faa62016-01-25 14:27:31 +01001054 * @fence: optional resulting fence
1055 *
1056 * Split the mapping into smaller chunks so that each update fits
1057 * into a SDMA IB.
1058 * Returns 0 for success, -EINVAL for failure.
1059 */
1060static int amdgpu_vm_bo_split_mapping(struct amdgpu_device *adev,
Christian König3cabaa52016-06-06 10:17:58 +02001061 struct fence *exclusive,
Christian Königa14faa62016-01-25 14:27:31 +01001062 uint32_t gtt_flags,
Christian König8358dce2016-03-30 10:50:25 +02001063 dma_addr_t *pages_addr,
Christian Königa14faa62016-01-25 14:27:31 +01001064 struct amdgpu_vm *vm,
1065 struct amdgpu_bo_va_mapping *mapping,
Christian Königfa3ab3c2016-03-18 21:00:35 +01001066 uint32_t flags, uint64_t addr,
1067 struct fence **fence)
Christian Königa14faa62016-01-25 14:27:31 +01001068{
1069 const uint64_t max_size = 64ULL * 1024ULL * 1024ULL / AMDGPU_GPU_PAGE_SIZE;
1070
Christian Königfa3ab3c2016-03-18 21:00:35 +01001071 uint64_t src = 0, start = mapping->it.start;
Christian Königa14faa62016-01-25 14:27:31 +01001072 int r;
1073
1074 /* normally,bo_va->flags only contians READABLE and WIRTEABLE bit go here
1075 * but in case of something, we filter the flags in first place
1076 */
1077 if (!(mapping->flags & AMDGPU_PTE_READABLE))
1078 flags &= ~AMDGPU_PTE_READABLE;
1079 if (!(mapping->flags & AMDGPU_PTE_WRITEABLE))
1080 flags &= ~AMDGPU_PTE_WRITEABLE;
1081
1082 trace_amdgpu_vm_bo_update(mapping);
1083
Christian König8358dce2016-03-30 10:50:25 +02001084 if (pages_addr) {
Christian Königfa3ab3c2016-03-18 21:00:35 +01001085 if (flags == gtt_flags)
1086 src = adev->gart.table_addr + (addr >> 12) * 8;
Christian Königfa3ab3c2016-03-18 21:00:35 +01001087 addr = 0;
1088 }
Christian Königa14faa62016-01-25 14:27:31 +01001089 addr += mapping->offset;
1090
Christian König8358dce2016-03-30 10:50:25 +02001091 if (!pages_addr || src)
Christian König3cabaa52016-06-06 10:17:58 +02001092 return amdgpu_vm_bo_update_mapping(adev, exclusive,
1093 src, pages_addr, vm,
Christian Königa14faa62016-01-25 14:27:31 +01001094 start, mapping->it.last,
1095 flags, addr, fence);
1096
1097 while (start != mapping->it.last + 1) {
1098 uint64_t last;
1099
Felix Kuehlingfb29b572016-03-03 19:13:20 -05001100 last = min((uint64_t)mapping->it.last, start + max_size - 1);
Christian König3cabaa52016-06-06 10:17:58 +02001101 r = amdgpu_vm_bo_update_mapping(adev, exclusive,
1102 src, pages_addr, vm,
Christian Königa14faa62016-01-25 14:27:31 +01001103 start, last, flags, addr,
1104 fence);
1105 if (r)
1106 return r;
1107
1108 start = last + 1;
Felix Kuehlingfb29b572016-03-03 19:13:20 -05001109 addr += max_size * AMDGPU_GPU_PAGE_SIZE;
Christian Königa14faa62016-01-25 14:27:31 +01001110 }
1111
1112 return 0;
1113}
1114
1115/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001116 * amdgpu_vm_bo_update - update all BO mappings in the vm page table
1117 *
1118 * @adev: amdgpu_device pointer
1119 * @bo_va: requested BO and VM object
Christian König99e124f2016-08-16 14:43:17 +02001120 * @clear: if true clear the entries
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001121 *
1122 * Fill in the page table entries for @bo_va.
1123 * Returns 0 for success, -EINVAL for failure.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001124 */
1125int amdgpu_vm_bo_update(struct amdgpu_device *adev,
1126 struct amdgpu_bo_va *bo_va,
Christian König99e124f2016-08-16 14:43:17 +02001127 bool clear)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001128{
1129 struct amdgpu_vm *vm = bo_va->vm;
1130 struct amdgpu_bo_va_mapping *mapping;
Christian König8358dce2016-03-30 10:50:25 +02001131 dma_addr_t *pages_addr = NULL;
Christian Königfa3ab3c2016-03-18 21:00:35 +01001132 uint32_t gtt_flags, flags;
Christian König99e124f2016-08-16 14:43:17 +02001133 struct ttm_mem_reg *mem;
Christian König3cabaa52016-06-06 10:17:58 +02001134 struct fence *exclusive;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001135 uint64_t addr;
1136 int r;
1137
Christian König99e124f2016-08-16 14:43:17 +02001138 if (clear) {
1139 mem = NULL;
1140 addr = 0;
1141 exclusive = NULL;
1142 } else {
Christian König8358dce2016-03-30 10:50:25 +02001143 struct ttm_dma_tt *ttm;
1144
Christian König99e124f2016-08-16 14:43:17 +02001145 mem = &bo_va->bo->tbo.mem;
Christian Königb7d698d2015-09-07 12:32:09 +02001146 addr = (u64)mem->start << PAGE_SHIFT;
Christian König9ab21462015-11-30 14:19:26 +01001147 switch (mem->mem_type) {
1148 case TTM_PL_TT:
Christian König8358dce2016-03-30 10:50:25 +02001149 ttm = container_of(bo_va->bo->tbo.ttm, struct
1150 ttm_dma_tt, ttm);
1151 pages_addr = ttm->dma_address;
Christian König9ab21462015-11-30 14:19:26 +01001152 break;
1153
1154 case TTM_PL_VRAM:
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001155 addr += adev->vm_manager.vram_base_offset;
Christian König9ab21462015-11-30 14:19:26 +01001156 break;
1157
1158 default:
1159 break;
1160 }
Christian König3cabaa52016-06-06 10:17:58 +02001161
1162 exclusive = reservation_object_get_excl(bo_va->bo->tbo.resv);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001163 }
1164
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001165 flags = amdgpu_ttm_tt_pte_flags(adev, bo_va->bo->tbo.ttm, mem);
Christian Königc855e252016-09-05 17:00:57 +02001166 gtt_flags = (amdgpu_ttm_is_bound(bo_va->bo->tbo.ttm) &&
1167 adev == bo_va->bo->adev) ? flags : 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001168
Christian König7fc11952015-07-30 11:53:42 +02001169 spin_lock(&vm->status_lock);
1170 if (!list_empty(&bo_va->vm_status))
1171 list_splice_init(&bo_va->valids, &bo_va->invalids);
1172 spin_unlock(&vm->status_lock);
1173
1174 list_for_each_entry(mapping, &bo_va->invalids, list) {
Christian König3cabaa52016-06-06 10:17:58 +02001175 r = amdgpu_vm_bo_split_mapping(adev, exclusive,
1176 gtt_flags, pages_addr, vm,
Christian König8358dce2016-03-30 10:50:25 +02001177 mapping, flags, addr,
1178 &bo_va->last_pt_update);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001179 if (r)
1180 return r;
1181 }
1182
Christian Königd6c10f62015-09-28 12:00:23 +02001183 if (trace_amdgpu_vm_bo_mapping_enabled()) {
1184 list_for_each_entry(mapping, &bo_va->valids, list)
1185 trace_amdgpu_vm_bo_mapping(mapping);
1186
1187 list_for_each_entry(mapping, &bo_va->invalids, list)
1188 trace_amdgpu_vm_bo_mapping(mapping);
1189 }
1190
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001191 spin_lock(&vm->status_lock);
monk.liu6d1d0ef2015-08-14 13:36:41 +08001192 list_splice_init(&bo_va->invalids, &bo_va->valids);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001193 list_del_init(&bo_va->vm_status);
Christian König99e124f2016-08-16 14:43:17 +02001194 if (clear)
Christian König7fc11952015-07-30 11:53:42 +02001195 list_add(&bo_va->vm_status, &vm->cleared);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001196 spin_unlock(&vm->status_lock);
1197
1198 return 0;
1199}
1200
1201/**
1202 * amdgpu_vm_clear_freed - clear freed BOs in the PT
1203 *
1204 * @adev: amdgpu_device pointer
1205 * @vm: requested vm
1206 *
1207 * Make sure all freed BOs are cleared in the PT.
1208 * Returns 0 for success.
1209 *
1210 * PTs have to be reserved and mutex must be locked!
1211 */
1212int amdgpu_vm_clear_freed(struct amdgpu_device *adev,
1213 struct amdgpu_vm *vm)
1214{
1215 struct amdgpu_bo_va_mapping *mapping;
1216 int r;
1217
1218 while (!list_empty(&vm->freed)) {
1219 mapping = list_first_entry(&vm->freed,
1220 struct amdgpu_bo_va_mapping, list);
1221 list_del(&mapping->list);
Christian Könige17841b2016-03-08 17:52:01 +01001222
Christian König3cabaa52016-06-06 10:17:58 +02001223 r = amdgpu_vm_bo_split_mapping(adev, NULL, 0, NULL, vm, mapping,
Christian Königfa3ab3c2016-03-18 21:00:35 +01001224 0, 0, NULL);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001225 kfree(mapping);
1226 if (r)
1227 return r;
1228
1229 }
1230 return 0;
1231
1232}
1233
1234/**
1235 * amdgpu_vm_clear_invalids - clear invalidated BOs in the PT
1236 *
1237 * @adev: amdgpu_device pointer
1238 * @vm: requested vm
1239 *
1240 * Make sure all invalidated BOs are cleared in the PT.
1241 * Returns 0 for success.
1242 *
1243 * PTs have to be reserved and mutex must be locked!
1244 */
1245int amdgpu_vm_clear_invalids(struct amdgpu_device *adev,
monk.liucfe2c972015-05-26 15:01:54 +08001246 struct amdgpu_vm *vm, struct amdgpu_sync *sync)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001247{
monk.liucfe2c972015-05-26 15:01:54 +08001248 struct amdgpu_bo_va *bo_va = NULL;
Christian König91e1a522015-07-06 22:06:40 +02001249 int r = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001250
1251 spin_lock(&vm->status_lock);
1252 while (!list_empty(&vm->invalidated)) {
1253 bo_va = list_first_entry(&vm->invalidated,
1254 struct amdgpu_bo_va, vm_status);
1255 spin_unlock(&vm->status_lock);
Christian König32b41ac2016-03-08 18:03:27 +01001256
Christian König99e124f2016-08-16 14:43:17 +02001257 r = amdgpu_vm_bo_update(adev, bo_va, true);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001258 if (r)
1259 return r;
1260
1261 spin_lock(&vm->status_lock);
1262 }
1263 spin_unlock(&vm->status_lock);
1264
monk.liucfe2c972015-05-26 15:01:54 +08001265 if (bo_va)
Chunming Zhoubb1e38a42015-08-03 18:19:38 +08001266 r = amdgpu_sync_fence(adev, sync, bo_va->last_pt_update);
Christian König91e1a522015-07-06 22:06:40 +02001267
1268 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001269}
1270
1271/**
1272 * amdgpu_vm_bo_add - add a bo to a specific vm
1273 *
1274 * @adev: amdgpu_device pointer
1275 * @vm: requested vm
1276 * @bo: amdgpu buffer object
1277 *
Christian König8843dbb2016-01-26 12:17:11 +01001278 * Add @bo into the requested vm.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001279 * Add @bo to the list of bos associated with the vm
1280 * Returns newly added bo_va or NULL for failure
1281 *
1282 * Object has to be reserved!
1283 */
1284struct amdgpu_bo_va *amdgpu_vm_bo_add(struct amdgpu_device *adev,
1285 struct amdgpu_vm *vm,
1286 struct amdgpu_bo *bo)
1287{
1288 struct amdgpu_bo_va *bo_va;
1289
1290 bo_va = kzalloc(sizeof(struct amdgpu_bo_va), GFP_KERNEL);
1291 if (bo_va == NULL) {
1292 return NULL;
1293 }
1294 bo_va->vm = vm;
1295 bo_va->bo = bo;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001296 bo_va->ref_count = 1;
1297 INIT_LIST_HEAD(&bo_va->bo_list);
Christian König7fc11952015-07-30 11:53:42 +02001298 INIT_LIST_HEAD(&bo_va->valids);
1299 INIT_LIST_HEAD(&bo_va->invalids);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001300 INIT_LIST_HEAD(&bo_va->vm_status);
Christian König32b41ac2016-03-08 18:03:27 +01001301
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001302 list_add_tail(&bo_va->bo_list, &bo->va);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001303
1304 return bo_va;
1305}
1306
1307/**
1308 * amdgpu_vm_bo_map - map bo inside a vm
1309 *
1310 * @adev: amdgpu_device pointer
1311 * @bo_va: bo_va to store the address
1312 * @saddr: where to map the BO
1313 * @offset: requested offset in the BO
1314 * @flags: attributes of pages (read/write/valid/etc.)
1315 *
1316 * Add a mapping of the BO at the specefied addr into the VM.
1317 * Returns 0 for success, error for failure.
1318 *
Chunming Zhou49b02b12015-11-13 14:18:38 +08001319 * Object has to be reserved and unreserved outside!
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001320 */
1321int amdgpu_vm_bo_map(struct amdgpu_device *adev,
1322 struct amdgpu_bo_va *bo_va,
1323 uint64_t saddr, uint64_t offset,
1324 uint64_t size, uint32_t flags)
1325{
1326 struct amdgpu_bo_va_mapping *mapping;
1327 struct amdgpu_vm *vm = bo_va->vm;
1328 struct interval_tree_node *it;
1329 unsigned last_pfn, pt_idx;
1330 uint64_t eaddr;
1331 int r;
1332
Christian König0be52de2015-05-18 14:37:27 +02001333 /* validate the parameters */
1334 if (saddr & AMDGPU_GPU_PAGE_MASK || offset & AMDGPU_GPU_PAGE_MASK ||
Chunming Zhou49b02b12015-11-13 14:18:38 +08001335 size == 0 || size & AMDGPU_GPU_PAGE_MASK)
Christian König0be52de2015-05-18 14:37:27 +02001336 return -EINVAL;
Christian König0be52de2015-05-18 14:37:27 +02001337
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001338 /* make sure object fit at this offset */
Felix Kuehling005ae952015-11-23 17:43:48 -05001339 eaddr = saddr + size - 1;
Chunming Zhou49b02b12015-11-13 14:18:38 +08001340 if ((saddr >= eaddr) || (offset + size > amdgpu_bo_size(bo_va->bo)))
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001341 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001342
1343 last_pfn = eaddr / AMDGPU_GPU_PAGE_SIZE;
Felix Kuehling005ae952015-11-23 17:43:48 -05001344 if (last_pfn >= adev->vm_manager.max_pfn) {
1345 dev_err(adev->dev, "va above limit (0x%08X >= 0x%08X)\n",
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001346 last_pfn, adev->vm_manager.max_pfn);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001347 return -EINVAL;
1348 }
1349
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001350 saddr /= AMDGPU_GPU_PAGE_SIZE;
1351 eaddr /= AMDGPU_GPU_PAGE_SIZE;
1352
Felix Kuehling005ae952015-11-23 17:43:48 -05001353 it = interval_tree_iter_first(&vm->va, saddr, eaddr);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001354 if (it) {
1355 struct amdgpu_bo_va_mapping *tmp;
1356 tmp = container_of(it, struct amdgpu_bo_va_mapping, it);
1357 /* bo and tmp overlap, invalid addr */
1358 dev_err(adev->dev, "bo %p va 0x%010Lx-0x%010Lx conflict with "
1359 "0x%010lx-0x%010lx\n", bo_va->bo, saddr, eaddr,
1360 tmp->it.start, tmp->it.last + 1);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001361 r = -EINVAL;
Chunming Zhouf48b2652015-10-16 14:06:19 +08001362 goto error;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001363 }
1364
1365 mapping = kmalloc(sizeof(*mapping), GFP_KERNEL);
1366 if (!mapping) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001367 r = -ENOMEM;
Chunming Zhouf48b2652015-10-16 14:06:19 +08001368 goto error;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001369 }
1370
1371 INIT_LIST_HEAD(&mapping->list);
1372 mapping->it.start = saddr;
Felix Kuehling005ae952015-11-23 17:43:48 -05001373 mapping->it.last = eaddr;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001374 mapping->offset = offset;
1375 mapping->flags = flags;
1376
Christian König7fc11952015-07-30 11:53:42 +02001377 list_add(&mapping->list, &bo_va->invalids);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001378 interval_tree_insert(&mapping->it, &vm->va);
1379
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001380 /* Make sure the page tables are allocated */
1381 saddr >>= amdgpu_vm_block_size;
1382 eaddr >>= amdgpu_vm_block_size;
1383
1384 BUG_ON(eaddr >= amdgpu_vm_num_pdes(adev));
1385
1386 if (eaddr > vm->max_pde_used)
1387 vm->max_pde_used = eaddr;
1388
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001389 /* walk over the address space and allocate the page tables */
1390 for (pt_idx = saddr; pt_idx <= eaddr; ++pt_idx) {
Christian Königbf60efd2015-09-04 10:47:56 +02001391 struct reservation_object *resv = vm->page_directory->tbo.resv;
Christian Königee1782c2015-12-11 21:01:23 +01001392 struct amdgpu_bo_list_entry *entry;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001393 struct amdgpu_bo *pt;
1394
Christian Königee1782c2015-12-11 21:01:23 +01001395 entry = &vm->page_tables[pt_idx].entry;
1396 if (entry->robj)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001397 continue;
1398
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001399 r = amdgpu_bo_create(adev, AMDGPU_VM_PTE_COUNT * 8,
1400 AMDGPU_GPU_PAGE_SIZE, true,
Alex Deucher857d9132015-08-27 00:14:16 -04001401 AMDGPU_GEM_DOMAIN_VRAM,
Chunming Zhou1baa4392016-08-04 13:59:32 +08001402 AMDGPU_GEM_CREATE_NO_CPU_ACCESS |
1403 AMDGPU_GEM_CREATE_SHADOW,
Christian Königbf60efd2015-09-04 10:47:56 +02001404 NULL, resv, &pt);
Chunming Zhou49b02b12015-11-13 14:18:38 +08001405 if (r)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001406 goto error_free;
Chunming Zhou49b02b12015-11-13 14:18:38 +08001407
Christian König82b9c552015-11-27 16:49:00 +01001408 /* Keep a reference to the page table to avoid freeing
1409 * them up in the wrong order.
1410 */
1411 pt->parent = amdgpu_bo_ref(vm->page_directory);
1412
Christian König2bd9ccf2016-02-01 12:53:58 +01001413 r = amdgpu_vm_clear_bo(adev, vm, pt);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001414 if (r) {
1415 amdgpu_bo_unref(&pt);
1416 goto error_free;
1417 }
1418
Christian Königee1782c2015-12-11 21:01:23 +01001419 entry->robj = pt;
Christian Königee1782c2015-12-11 21:01:23 +01001420 entry->priority = 0;
1421 entry->tv.bo = &entry->robj->tbo;
1422 entry->tv.shared = true;
Christian König2f568db2016-02-23 12:36:59 +01001423 entry->user_pages = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001424 vm->page_tables[pt_idx].addr = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001425 }
1426
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001427 return 0;
1428
1429error_free:
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001430 list_del(&mapping->list);
1431 interval_tree_remove(&mapping->it, &vm->va);
Christian König93e3e432015-06-09 16:58:33 +02001432 trace_amdgpu_vm_bo_unmap(bo_va, mapping);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001433 kfree(mapping);
1434
Chunming Zhouf48b2652015-10-16 14:06:19 +08001435error:
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001436 return r;
1437}
1438
1439/**
1440 * amdgpu_vm_bo_unmap - remove bo mapping from vm
1441 *
1442 * @adev: amdgpu_device pointer
1443 * @bo_va: bo_va to remove the address from
1444 * @saddr: where to the BO is mapped
1445 *
1446 * Remove a mapping of the BO at the specefied addr from the VM.
1447 * Returns 0 for success, error for failure.
1448 *
Chunming Zhou49b02b12015-11-13 14:18:38 +08001449 * Object has to be reserved and unreserved outside!
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001450 */
1451int amdgpu_vm_bo_unmap(struct amdgpu_device *adev,
1452 struct amdgpu_bo_va *bo_va,
1453 uint64_t saddr)
1454{
1455 struct amdgpu_bo_va_mapping *mapping;
1456 struct amdgpu_vm *vm = bo_va->vm;
Christian König7fc11952015-07-30 11:53:42 +02001457 bool valid = true;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001458
Christian König6c7fc502015-06-05 20:56:17 +02001459 saddr /= AMDGPU_GPU_PAGE_SIZE;
Christian König32b41ac2016-03-08 18:03:27 +01001460
Christian König7fc11952015-07-30 11:53:42 +02001461 list_for_each_entry(mapping, &bo_va->valids, list) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001462 if (mapping->it.start == saddr)
1463 break;
1464 }
1465
Christian König7fc11952015-07-30 11:53:42 +02001466 if (&mapping->list == &bo_va->valids) {
1467 valid = false;
1468
1469 list_for_each_entry(mapping, &bo_va->invalids, list) {
1470 if (mapping->it.start == saddr)
1471 break;
1472 }
1473
Christian König32b41ac2016-03-08 18:03:27 +01001474 if (&mapping->list == &bo_va->invalids)
Christian König7fc11952015-07-30 11:53:42 +02001475 return -ENOENT;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001476 }
Christian König32b41ac2016-03-08 18:03:27 +01001477
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001478 list_del(&mapping->list);
1479 interval_tree_remove(&mapping->it, &vm->va);
Christian König93e3e432015-06-09 16:58:33 +02001480 trace_amdgpu_vm_bo_unmap(bo_va, mapping);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001481
Christian Könige17841b2016-03-08 17:52:01 +01001482 if (valid)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001483 list_add(&mapping->list, &vm->freed);
Christian Könige17841b2016-03-08 17:52:01 +01001484 else
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001485 kfree(mapping);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001486
1487 return 0;
1488}
1489
1490/**
1491 * amdgpu_vm_bo_rmv - remove a bo to a specific vm
1492 *
1493 * @adev: amdgpu_device pointer
1494 * @bo_va: requested bo_va
1495 *
Christian König8843dbb2016-01-26 12:17:11 +01001496 * Remove @bo_va->bo from the requested vm.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001497 *
1498 * Object have to be reserved!
1499 */
1500void amdgpu_vm_bo_rmv(struct amdgpu_device *adev,
1501 struct amdgpu_bo_va *bo_va)
1502{
1503 struct amdgpu_bo_va_mapping *mapping, *next;
1504 struct amdgpu_vm *vm = bo_va->vm;
1505
1506 list_del(&bo_va->bo_list);
1507
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001508 spin_lock(&vm->status_lock);
1509 list_del(&bo_va->vm_status);
1510 spin_unlock(&vm->status_lock);
1511
Christian König7fc11952015-07-30 11:53:42 +02001512 list_for_each_entry_safe(mapping, next, &bo_va->valids, list) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001513 list_del(&mapping->list);
1514 interval_tree_remove(&mapping->it, &vm->va);
Christian König93e3e432015-06-09 16:58:33 +02001515 trace_amdgpu_vm_bo_unmap(bo_va, mapping);
Christian König7fc11952015-07-30 11:53:42 +02001516 list_add(&mapping->list, &vm->freed);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001517 }
Christian König7fc11952015-07-30 11:53:42 +02001518 list_for_each_entry_safe(mapping, next, &bo_va->invalids, list) {
1519 list_del(&mapping->list);
1520 interval_tree_remove(&mapping->it, &vm->va);
1521 kfree(mapping);
1522 }
Christian König32b41ac2016-03-08 18:03:27 +01001523
Chunming Zhoubb1e38a42015-08-03 18:19:38 +08001524 fence_put(bo_va->last_pt_update);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001525 kfree(bo_va);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001526}
1527
1528/**
1529 * amdgpu_vm_bo_invalidate - mark the bo as invalid
1530 *
1531 * @adev: amdgpu_device pointer
1532 * @vm: requested vm
1533 * @bo: amdgpu buffer object
1534 *
Christian König8843dbb2016-01-26 12:17:11 +01001535 * Mark @bo as invalid.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001536 */
1537void amdgpu_vm_bo_invalidate(struct amdgpu_device *adev,
1538 struct amdgpu_bo *bo)
1539{
1540 struct amdgpu_bo_va *bo_va;
1541
1542 list_for_each_entry(bo_va, &bo->va, bo_list) {
Christian König7fc11952015-07-30 11:53:42 +02001543 spin_lock(&bo_va->vm->status_lock);
1544 if (list_empty(&bo_va->vm_status))
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001545 list_add(&bo_va->vm_status, &bo_va->vm->invalidated);
Christian König7fc11952015-07-30 11:53:42 +02001546 spin_unlock(&bo_va->vm->status_lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001547 }
1548}
1549
1550/**
1551 * amdgpu_vm_init - initialize a vm instance
1552 *
1553 * @adev: amdgpu_device pointer
1554 * @vm: requested vm
1555 *
Christian König8843dbb2016-01-26 12:17:11 +01001556 * Init @vm fields.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001557 */
1558int amdgpu_vm_init(struct amdgpu_device *adev, struct amdgpu_vm *vm)
1559{
1560 const unsigned align = min(AMDGPU_VM_PTB_ALIGN_SIZE,
1561 AMDGPU_VM_PTE_COUNT * 8);
Michel Dänzer9571e1d2016-01-19 17:59:46 +09001562 unsigned pd_size, pd_entries;
Christian König2d55e452016-02-08 17:37:38 +01001563 unsigned ring_instance;
1564 struct amdgpu_ring *ring;
Christian König2bd9ccf2016-02-01 12:53:58 +01001565 struct amd_sched_rq *rq;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001566 int i, r;
1567
Christian Königbcb1ba32016-03-08 15:40:11 +01001568 for (i = 0; i < AMDGPU_MAX_RINGS; ++i)
1569 vm->ids[i] = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001570 vm->va = RB_ROOT;
Chunming Zhou031e2982016-04-25 10:19:13 +08001571 vm->client_id = atomic64_inc_return(&adev->vm_manager.client_counter);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001572 spin_lock_init(&vm->status_lock);
1573 INIT_LIST_HEAD(&vm->invalidated);
Christian König7fc11952015-07-30 11:53:42 +02001574 INIT_LIST_HEAD(&vm->cleared);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001575 INIT_LIST_HEAD(&vm->freed);
Christian König20250212016-03-08 17:58:35 +01001576
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001577 pd_size = amdgpu_vm_directory_size(adev);
1578 pd_entries = amdgpu_vm_num_pdes(adev);
1579
1580 /* allocate page table array */
Michel Dänzer9571e1d2016-01-19 17:59:46 +09001581 vm->page_tables = drm_calloc_large(pd_entries, sizeof(struct amdgpu_vm_pt));
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001582 if (vm->page_tables == NULL) {
1583 DRM_ERROR("Cannot allocate memory for page table array\n");
1584 return -ENOMEM;
1585 }
1586
Christian König2bd9ccf2016-02-01 12:53:58 +01001587 /* create scheduler entity for page table updates */
Christian König2d55e452016-02-08 17:37:38 +01001588
1589 ring_instance = atomic_inc_return(&adev->vm_manager.vm_pte_next_ring);
1590 ring_instance %= adev->vm_manager.vm_pte_num_rings;
1591 ring = adev->vm_manager.vm_pte_rings[ring_instance];
Christian König2bd9ccf2016-02-01 12:53:58 +01001592 rq = &ring->sched.sched_rq[AMD_SCHED_PRIORITY_KERNEL];
1593 r = amd_sched_entity_init(&ring->sched, &vm->entity,
1594 rq, amdgpu_sched_jobs);
1595 if (r)
1596 return r;
1597
Bas Nieuwenhuizen05906de2015-08-14 20:08:40 +02001598 vm->page_directory_fence = NULL;
1599
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001600 r = amdgpu_bo_create(adev, pd_size, align, true,
Alex Deucher857d9132015-08-27 00:14:16 -04001601 AMDGPU_GEM_DOMAIN_VRAM,
Chunming Zhou1baa4392016-08-04 13:59:32 +08001602 AMDGPU_GEM_CREATE_NO_CPU_ACCESS |
1603 AMDGPU_GEM_CREATE_SHADOW,
Christian König72d76682015-09-03 17:34:59 +02001604 NULL, NULL, &vm->page_directory);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001605 if (r)
Christian König2bd9ccf2016-02-01 12:53:58 +01001606 goto error_free_sched_entity;
1607
Chunming Zhouef9f0a82015-11-13 13:43:22 +08001608 r = amdgpu_bo_reserve(vm->page_directory, false);
Christian König2bd9ccf2016-02-01 12:53:58 +01001609 if (r)
1610 goto error_free_page_directory;
1611
1612 r = amdgpu_vm_clear_bo(adev, vm, vm->page_directory);
Chunming Zhouef9f0a82015-11-13 13:43:22 +08001613 amdgpu_bo_unreserve(vm->page_directory);
Christian König2bd9ccf2016-02-01 12:53:58 +01001614 if (r)
1615 goto error_free_page_directory;
Christian König5a712a82016-06-21 16:28:15 +02001616 vm->last_eviction_counter = atomic64_read(&adev->num_evictions);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001617
1618 return 0;
Christian König2bd9ccf2016-02-01 12:53:58 +01001619
1620error_free_page_directory:
1621 amdgpu_bo_unref(&vm->page_directory);
1622 vm->page_directory = NULL;
1623
1624error_free_sched_entity:
1625 amd_sched_entity_fini(&ring->sched, &vm->entity);
1626
1627 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001628}
1629
1630/**
1631 * amdgpu_vm_fini - tear down a vm instance
1632 *
1633 * @adev: amdgpu_device pointer
1634 * @vm: requested vm
1635 *
Christian König8843dbb2016-01-26 12:17:11 +01001636 * Tear down @vm.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001637 * Unbind the VM and remove all bos from the vm bo list
1638 */
1639void amdgpu_vm_fini(struct amdgpu_device *adev, struct amdgpu_vm *vm)
1640{
1641 struct amdgpu_bo_va_mapping *mapping, *tmp;
1642 int i;
1643
Christian König2d55e452016-02-08 17:37:38 +01001644 amd_sched_entity_fini(vm->entity.sched, &vm->entity);
Christian König2bd9ccf2016-02-01 12:53:58 +01001645
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001646 if (!RB_EMPTY_ROOT(&vm->va)) {
1647 dev_err(adev->dev, "still active bo inside vm\n");
1648 }
1649 rbtree_postorder_for_each_entry_safe(mapping, tmp, &vm->va, it.rb) {
1650 list_del(&mapping->list);
1651 interval_tree_remove(&mapping->it, &vm->va);
1652 kfree(mapping);
1653 }
1654 list_for_each_entry_safe(mapping, tmp, &vm->freed, list) {
1655 list_del(&mapping->list);
1656 kfree(mapping);
1657 }
1658
Chunming Zhou1baa4392016-08-04 13:59:32 +08001659 for (i = 0; i < amdgpu_vm_num_pdes(adev); i++) {
1660 if (vm->page_tables[i].entry.robj &&
1661 vm->page_tables[i].entry.robj->shadow)
1662 amdgpu_bo_unref(&vm->page_tables[i].entry.robj->shadow);
Christian Königee1782c2015-12-11 21:01:23 +01001663 amdgpu_bo_unref(&vm->page_tables[i].entry.robj);
Chunming Zhou1baa4392016-08-04 13:59:32 +08001664 }
Michel Dänzer9571e1d2016-01-19 17:59:46 +09001665 drm_free_large(vm->page_tables);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001666
Chunming Zhou1baa4392016-08-04 13:59:32 +08001667 if (vm->page_directory->shadow)
1668 amdgpu_bo_unref(&vm->page_directory->shadow);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001669 amdgpu_bo_unref(&vm->page_directory);
Bas Nieuwenhuizen05906de2015-08-14 20:08:40 +02001670 fence_put(vm->page_directory_fence);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001671}
Christian Königea89f8c2015-11-15 20:52:06 +01001672
1673/**
Christian Königa9a78b32016-01-21 10:19:11 +01001674 * amdgpu_vm_manager_init - init the VM manager
1675 *
1676 * @adev: amdgpu_device pointer
1677 *
1678 * Initialize the VM manager structures
1679 */
1680void amdgpu_vm_manager_init(struct amdgpu_device *adev)
1681{
1682 unsigned i;
1683
1684 INIT_LIST_HEAD(&adev->vm_manager.ids_lru);
1685
1686 /* skip over VMID 0, since it is the system VM */
Christian König971fe9a92016-03-01 15:09:25 +01001687 for (i = 1; i < adev->vm_manager.num_ids; ++i) {
1688 amdgpu_vm_reset_id(adev, i);
Christian König832a9022016-02-15 12:33:02 +01001689 amdgpu_sync_create(&adev->vm_manager.ids[i].active);
Christian Königa9a78b32016-01-21 10:19:11 +01001690 list_add_tail(&adev->vm_manager.ids[i].list,
1691 &adev->vm_manager.ids_lru);
Christian König971fe9a92016-03-01 15:09:25 +01001692 }
Christian König2d55e452016-02-08 17:37:38 +01001693
Christian König1fbb2e92016-06-01 10:47:36 +02001694 adev->vm_manager.fence_context = fence_context_alloc(AMDGPU_MAX_RINGS);
1695 for (i = 0; i < AMDGPU_MAX_RINGS; ++i)
1696 adev->vm_manager.seqno[i] = 0;
1697
Christian König2d55e452016-02-08 17:37:38 +01001698 atomic_set(&adev->vm_manager.vm_pte_next_ring, 0);
Christian Königb1c8a812016-05-04 10:34:03 +02001699 atomic64_set(&adev->vm_manager.client_counter, 0);
Christian Königa9a78b32016-01-21 10:19:11 +01001700}
1701
1702/**
Christian Königea89f8c2015-11-15 20:52:06 +01001703 * amdgpu_vm_manager_fini - cleanup VM manager
1704 *
1705 * @adev: amdgpu_device pointer
1706 *
1707 * Cleanup the VM manager and free resources.
1708 */
1709void amdgpu_vm_manager_fini(struct amdgpu_device *adev)
1710{
1711 unsigned i;
1712
Christian Königbcb1ba32016-03-08 15:40:11 +01001713 for (i = 0; i < AMDGPU_NUM_VM; ++i) {
1714 struct amdgpu_vm_id *id = &adev->vm_manager.ids[i];
1715
Christian König832a9022016-02-15 12:33:02 +01001716 fence_put(adev->vm_manager.ids[i].first);
1717 amdgpu_sync_free(&adev->vm_manager.ids[i].active);
Christian Königbcb1ba32016-03-08 15:40:11 +01001718 fence_put(id->flushed_updates);
1719 }
Christian Königea89f8c2015-11-15 20:52:06 +01001720}