blob: cf989cf54072d682193ff311f4c970565e3de7ca [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 */
28#include <drm/drmP.h>
29#include <drm/amdgpu_drm.h>
30#include "amdgpu.h"
31#include "amdgpu_trace.h"
32
33/*
34 * GPUVM
35 * GPUVM is similar to the legacy gart on older asics, however
36 * rather than there being a single global gart table
37 * for the entire GPU, there are multiple VM page tables active
38 * at any given time. The VM page tables can contain a mix
39 * vram pages and system memory pages and system memory pages
40 * can be mapped as snooped (cached system pages) or unsnooped
41 * (uncached system pages).
42 * Each VM has an ID associated with it and there is a page table
43 * associated with each VMID. When execting a command buffer,
44 * the kernel tells the the ring what VMID to use for that command
45 * buffer. VMIDs are allocated dynamically as commands are submitted.
46 * The userspace drivers maintain their own address space and the kernel
47 * sets up their pages tables accordingly when they submit their
48 * command buffers and a VMID is assigned.
49 * Cayman/Trinity support up to 8 active VMs at any given time;
50 * SI supports 16.
51 */
52
Christian König4ff37a82016-02-26 16:18:26 +010053/* Special value that no flush is necessary */
54#define AMDGPU_VM_NO_FLUSH (~0ll)
55
Harish Kasiviswanathanf4833c42016-04-21 10:40:18 -040056/* Local structure. Encapsulate some VM table update parameters to reduce
57 * the number of function parameters
58 */
59struct amdgpu_vm_update_params {
60 /* address where to copy page table entries from */
61 uint64_t src;
62 /* DMA addresses to use for mapping */
63 dma_addr_t *pages_addr;
64 /* indirect buffer to fill with commands */
65 struct amdgpu_ib *ib;
66};
67
Alex Deucherd38ceaf2015-04-20 16:55:21 -040068/**
69 * amdgpu_vm_num_pde - return the number of page directory entries
70 *
71 * @adev: amdgpu_device pointer
72 *
Christian König8843dbb2016-01-26 12:17:11 +010073 * Calculate the number of page directory entries.
Alex Deucherd38ceaf2015-04-20 16:55:21 -040074 */
75static unsigned amdgpu_vm_num_pdes(struct amdgpu_device *adev)
76{
77 return adev->vm_manager.max_pfn >> amdgpu_vm_block_size;
78}
79
80/**
81 * amdgpu_vm_directory_size - returns the size of the page directory in bytes
82 *
83 * @adev: amdgpu_device pointer
84 *
Christian König8843dbb2016-01-26 12:17:11 +010085 * Calculate the size of the page directory in bytes.
Alex Deucherd38ceaf2015-04-20 16:55:21 -040086 */
87static unsigned amdgpu_vm_directory_size(struct amdgpu_device *adev)
88{
89 return AMDGPU_GPU_PAGE_ALIGN(amdgpu_vm_num_pdes(adev) * 8);
90}
91
92/**
Christian König56467eb2015-12-11 15:16:32 +010093 * amdgpu_vm_get_pd_bo - add the VM PD to a validation list
Alex Deucherd38ceaf2015-04-20 16:55:21 -040094 *
95 * @vm: vm providing the BOs
Christian König3c0eea62015-12-11 14:39:05 +010096 * @validated: head of validation list
Christian König56467eb2015-12-11 15:16:32 +010097 * @entry: entry to add
Alex Deucherd38ceaf2015-04-20 16:55:21 -040098 *
99 * Add the page directory to the list of BOs to
Christian König56467eb2015-12-11 15:16:32 +0100100 * validate for command submission.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400101 */
Christian König56467eb2015-12-11 15:16:32 +0100102void amdgpu_vm_get_pd_bo(struct amdgpu_vm *vm,
103 struct list_head *validated,
104 struct amdgpu_bo_list_entry *entry)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400105{
Christian König56467eb2015-12-11 15:16:32 +0100106 entry->robj = vm->page_directory;
Christian König56467eb2015-12-11 15:16:32 +0100107 entry->priority = 0;
108 entry->tv.bo = &vm->page_directory->tbo;
109 entry->tv.shared = true;
Christian König2f568db2016-02-23 12:36:59 +0100110 entry->user_pages = NULL;
Christian König56467eb2015-12-11 15:16:32 +0100111 list_add(&entry->tv.head, validated);
112}
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400113
Christian König56467eb2015-12-11 15:16:32 +0100114/**
Christian Königee1782c2015-12-11 21:01:23 +0100115 * amdgpu_vm_get_bos - add the vm BOs to a duplicates list
Christian König56467eb2015-12-11 15:16:32 +0100116 *
117 * @vm: vm providing the BOs
Christian König3c0eea62015-12-11 14:39:05 +0100118 * @duplicates: head of duplicates list
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400119 *
Christian Königee1782c2015-12-11 21:01:23 +0100120 * Add the page directory to the BO duplicates list
121 * for command submission.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400122 */
Christian Königee1782c2015-12-11 21:01:23 +0100123void amdgpu_vm_get_pt_bos(struct amdgpu_vm *vm, struct list_head *duplicates)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400124{
Christian Königee1782c2015-12-11 21:01:23 +0100125 unsigned i;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400126
127 /* add the vm page table to the list */
Christian Königee1782c2015-12-11 21:01:23 +0100128 for (i = 0; i <= vm->max_pde_used; ++i) {
129 struct amdgpu_bo_list_entry *entry = &vm->page_tables[i].entry;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400130
Christian Königee1782c2015-12-11 21:01:23 +0100131 if (!entry->robj)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400132 continue;
133
Christian Königee1782c2015-12-11 21:01:23 +0100134 list_add(&entry->tv.head, duplicates);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400135 }
Christian Königeceb8a12016-01-11 15:35:21 +0100136
137}
138
139/**
140 * amdgpu_vm_move_pt_bos_in_lru - move the PT BOs to the LRU tail
141 *
142 * @adev: amdgpu device instance
143 * @vm: vm providing the BOs
144 *
145 * Move the PT BOs to the tail of the LRU.
146 */
147void amdgpu_vm_move_pt_bos_in_lru(struct amdgpu_device *adev,
148 struct amdgpu_vm *vm)
149{
150 struct ttm_bo_global *glob = adev->mman.bdev.glob;
151 unsigned i;
152
153 spin_lock(&glob->lru_lock);
154 for (i = 0; i <= vm->max_pde_used; ++i) {
155 struct amdgpu_bo_list_entry *entry = &vm->page_tables[i].entry;
156
157 if (!entry->robj)
158 continue;
159
160 ttm_bo_move_to_lru_tail(&entry->robj->tbo);
161 }
162 spin_unlock(&glob->lru_lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400163}
164
165/**
166 * amdgpu_vm_grab_id - allocate the next free VMID
167 *
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400168 * @vm: vm to allocate id for
Christian König7f8a5292015-07-20 16:09:40 +0200169 * @ring: ring we want to submit job to
170 * @sync: sync object where we add dependencies
Christian König94dd0a42016-01-18 17:01:42 +0100171 * @fence: fence protecting ID from reuse
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400172 *
Christian König7f8a5292015-07-20 16:09:40 +0200173 * Allocate an id for the vm, adding fences to the sync obj as necessary.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400174 */
Christian König7f8a5292015-07-20 16:09:40 +0200175int amdgpu_vm_grab_id(struct amdgpu_vm *vm, struct amdgpu_ring *ring,
Christian König4ff37a82016-02-26 16:18:26 +0100176 struct amdgpu_sync *sync, struct fence *fence,
177 unsigned *vm_id, uint64_t *vm_pd_addr)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400178{
Christian König4ff37a82016-02-26 16:18:26 +0100179 uint64_t pd_addr = amdgpu_bo_gpu_offset(vm->page_directory);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400180 struct amdgpu_device *adev = ring->adev;
Christian König4ff37a82016-02-26 16:18:26 +0100181 struct fence *updates = sync->last_vm_update;
Christian König794f50b2016-03-09 22:11:53 +0100182 struct amdgpu_vm_id *id;
183 unsigned i = ring->idx;
Christian Königa9a78b32016-01-21 10:19:11 +0100184 int r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400185
Christian König94dd0a42016-01-18 17:01:42 +0100186 mutex_lock(&adev->vm_manager.lock);
187
Christian König794f50b2016-03-09 22:11:53 +0100188 /* Check if we can use a VMID already assigned to this VM */
189 do {
190 struct fence *flushed;
Christian König1c16c0a2015-11-14 21:31:40 +0100191
Christian König794f50b2016-03-09 22:11:53 +0100192 id = vm->ids[i++];
193 if (i == AMDGPU_MAX_RINGS)
194 i = 0;
Christian Königa9a78b32016-01-21 10:19:11 +0100195
Christian König794f50b2016-03-09 22:11:53 +0100196 /* Check all the prerequisites to using this VMID */
197 if (!id)
198 continue;
Christian König4ff37a82016-02-26 16:18:26 +0100199
Christian König0ea54b92016-05-04 10:20:01 +0200200 if (atomic64_read(&id->owner) != vm->client_id)
Christian König794f50b2016-03-09 22:11:53 +0100201 continue;
202
203 if (pd_addr != id->pd_gpu_addr)
204 continue;
205
Chunming Zhou178d7cb2016-04-14 15:53:55 +0800206 if (id->last_user != ring &&
Christian König794f50b2016-03-09 22:11:53 +0100207 (!id->last_flush || !fence_is_signaled(id->last_flush)))
208 continue;
209
210 flushed = id->flushed_updates;
211 if (updates && (!flushed || fence_is_later(updates, flushed)))
212 continue;
213
214 /* Good we can use this VMID */
Chunming Zhou178d7cb2016-04-14 15:53:55 +0800215 if (id->last_user == ring) {
Christian König794f50b2016-03-09 22:11:53 +0100216 r = amdgpu_sync_fence(ring->adev, sync,
217 id->first);
Christian König832a9022016-02-15 12:33:02 +0100218 if (r)
219 goto error;
Christian König1c16c0a2015-11-14 21:31:40 +0100220 }
Christian König794f50b2016-03-09 22:11:53 +0100221
222 /* And remember this submission as user of the VMID */
223 r = amdgpu_sync_fence(ring->adev, &id->active, fence);
224 if (r)
225 goto error;
226
227 list_move_tail(&id->list, &adev->vm_manager.ids_lru);
228 vm->ids[ring->idx] = id;
229
230 *vm_id = id - adev->vm_manager.ids;
231 *vm_pd_addr = AMDGPU_VM_NO_FLUSH;
232 trace_amdgpu_vm_grab_id(vm, ring->idx, *vm_id, *vm_pd_addr);
233
234 mutex_unlock(&adev->vm_manager.lock);
235 return 0;
236
237 } while (i != ring->idx);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400238
Christian König36fd7c52016-05-23 15:30:08 +0200239 /* Check if we have an idle VMID */
240 list_for_each_entry(id, &adev->vm_manager.ids_lru, list) {
241 if (amdgpu_sync_is_idle(&id->active, ring))
242 break;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400243
Christian König36fd7c52016-05-23 15:30:08 +0200244 }
Christian Königbcb1ba32016-03-08 15:40:11 +0100245
Christian König36fd7c52016-05-23 15:30:08 +0200246 /* If we can't find a idle VMID to use, just wait for the oldest */
247 if (&id->list == &adev->vm_manager.ids_lru) {
Christian Königbcb1ba32016-03-08 15:40:11 +0100248 id = list_first_entry(&adev->vm_manager.ids_lru,
249 struct amdgpu_vm_id,
250 list);
Chunming Zhou8e9fbeb2016-03-17 11:41:37 +0800251 }
252
Christian König832a9022016-02-15 12:33:02 +0100253 r = amdgpu_sync_cycle_fences(sync, &id->active, fence);
254 if (r)
255 goto error;
Christian König4ff37a82016-02-26 16:18:26 +0100256
Christian König832a9022016-02-15 12:33:02 +0100257 fence_put(id->first);
258 id->first = fence_get(fence);
Christian König4ff37a82016-02-26 16:18:26 +0100259
Christian König41d9eb22016-03-01 16:46:18 +0100260 fence_put(id->last_flush);
261 id->last_flush = NULL;
262
Christian König832a9022016-02-15 12:33:02 +0100263 fence_put(id->flushed_updates);
264 id->flushed_updates = fence_get(updates);
Christian König4ff37a82016-02-26 16:18:26 +0100265
Christian König832a9022016-02-15 12:33:02 +0100266 id->pd_gpu_addr = pd_addr;
Christian König4ff37a82016-02-26 16:18:26 +0100267
Christian König832a9022016-02-15 12:33:02 +0100268 list_move_tail(&id->list, &adev->vm_manager.ids_lru);
Chunming Zhou68befeb2016-04-14 13:42:32 +0800269 id->last_user = ring;
Christian König0ea54b92016-05-04 10:20:01 +0200270 atomic64_set(&id->owner, vm->client_id);
Christian König832a9022016-02-15 12:33:02 +0100271 vm->ids[ring->idx] = id;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400272
Christian König832a9022016-02-15 12:33:02 +0100273 *vm_id = id - adev->vm_manager.ids;
274 *vm_pd_addr = pd_addr;
275 trace_amdgpu_vm_grab_id(vm, ring->idx, *vm_id, *vm_pd_addr);
276
277error:
Christian König94dd0a42016-01-18 17:01:42 +0100278 mutex_unlock(&adev->vm_manager.lock);
Christian Königa9a78b32016-01-21 10:19:11 +0100279 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400280}
281
282/**
283 * amdgpu_vm_flush - hardware flush the vm
284 *
285 * @ring: ring to use for flush
Christian Königcffadc82016-03-01 13:34:49 +0100286 * @vm_id: vmid number to use
Christian König4ff37a82016-02-26 16:18:26 +0100287 * @pd_addr: address of the page directory
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400288 *
Christian König4ff37a82016-02-26 16:18:26 +0100289 * Emit a VM flush when it is necessary.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400290 */
Christian König41d9eb22016-03-01 16:46:18 +0100291int amdgpu_vm_flush(struct amdgpu_ring *ring,
292 unsigned vm_id, uint64_t pd_addr,
293 uint32_t gds_base, uint32_t gds_size,
294 uint32_t gws_base, uint32_t gws_size,
295 uint32_t oa_base, uint32_t oa_size)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400296{
Christian König971fe9a92016-03-01 15:09:25 +0100297 struct amdgpu_device *adev = ring->adev;
Christian Königbcb1ba32016-03-08 15:40:11 +0100298 struct amdgpu_vm_id *id = &adev->vm_manager.ids[vm_id];
Christian Königd564a062016-03-01 15:51:53 +0100299 bool gds_switch_needed = ring->funcs->emit_gds_switch && (
Christian Königbcb1ba32016-03-08 15:40:11 +0100300 id->gds_base != gds_base ||
301 id->gds_size != gds_size ||
302 id->gws_base != gws_base ||
303 id->gws_size != gws_size ||
304 id->oa_base != oa_base ||
305 id->oa_size != oa_size);
Christian König41d9eb22016-03-01 16:46:18 +0100306 int r;
Christian Königd564a062016-03-01 15:51:53 +0100307
308 if (ring->funcs->emit_pipeline_sync && (
Chunming Zhoufe707662016-04-27 18:07:41 +0800309 pd_addr != AMDGPU_VM_NO_FLUSH || gds_switch_needed ||
310 ring->type == AMDGPU_RING_TYPE_COMPUTE))
Christian Königd564a062016-03-01 15:51:53 +0100311 amdgpu_ring_emit_pipeline_sync(ring);
Christian König971fe9a92016-03-01 15:09:25 +0100312
Monk Liuc5637832016-04-19 20:11:32 +0800313 if (ring->funcs->emit_vm_flush &&
314 pd_addr != AMDGPU_VM_NO_FLUSH) {
Christian König41d9eb22016-03-01 16:46:18 +0100315 struct fence *fence;
316
Christian Königcffadc82016-03-01 13:34:49 +0100317 trace_amdgpu_vm_flush(pd_addr, ring->idx, vm_id);
318 amdgpu_ring_emit_vm_flush(ring, vm_id, pd_addr);
Christian König41d9eb22016-03-01 16:46:18 +0100319
320 mutex_lock(&adev->vm_manager.lock);
Chunming Zhou68befeb2016-04-14 13:42:32 +0800321 if ((id->pd_gpu_addr == pd_addr) && (id->last_user == ring)) {
322 r = amdgpu_fence_emit(ring, &fence);
323 if (r) {
324 mutex_unlock(&adev->vm_manager.lock);
325 return r;
326 }
327 fence_put(id->last_flush);
328 id->last_flush = fence;
329 }
Christian König41d9eb22016-03-01 16:46:18 +0100330 mutex_unlock(&adev->vm_manager.lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400331 }
Christian Königcffadc82016-03-01 13:34:49 +0100332
Christian Königd564a062016-03-01 15:51:53 +0100333 if (gds_switch_needed) {
Christian Königbcb1ba32016-03-08 15:40:11 +0100334 id->gds_base = gds_base;
335 id->gds_size = gds_size;
336 id->gws_base = gws_base;
337 id->gws_size = gws_size;
338 id->oa_base = oa_base;
339 id->oa_size = oa_size;
Christian Königcffadc82016-03-01 13:34:49 +0100340 amdgpu_ring_emit_gds_switch(ring, vm_id,
341 gds_base, gds_size,
342 gws_base, gws_size,
343 oa_base, oa_size);
Christian König971fe9a92016-03-01 15:09:25 +0100344 }
Christian König41d9eb22016-03-01 16:46:18 +0100345
346 return 0;
Christian König971fe9a92016-03-01 15:09:25 +0100347}
348
349/**
350 * amdgpu_vm_reset_id - reset VMID to zero
351 *
352 * @adev: amdgpu device structure
353 * @vm_id: vmid number to use
354 *
355 * Reset saved GDW, GWS and OA to force switch on next flush.
356 */
357void amdgpu_vm_reset_id(struct amdgpu_device *adev, unsigned vm_id)
358{
Christian Königbcb1ba32016-03-08 15:40:11 +0100359 struct amdgpu_vm_id *id = &adev->vm_manager.ids[vm_id];
Christian König971fe9a92016-03-01 15:09:25 +0100360
Christian Königbcb1ba32016-03-08 15:40:11 +0100361 id->gds_base = 0;
362 id->gds_size = 0;
363 id->gws_base = 0;
364 id->gws_size = 0;
365 id->oa_base = 0;
366 id->oa_size = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400367}
368
369/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400370 * amdgpu_vm_bo_find - find the bo_va for a specific vm & bo
371 *
372 * @vm: requested vm
373 * @bo: requested buffer object
374 *
Christian König8843dbb2016-01-26 12:17:11 +0100375 * Find @bo inside the requested vm.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400376 * Search inside the @bos vm list for the requested vm
377 * Returns the found bo_va or NULL if none is found
378 *
379 * Object has to be reserved!
380 */
381struct amdgpu_bo_va *amdgpu_vm_bo_find(struct amdgpu_vm *vm,
382 struct amdgpu_bo *bo)
383{
384 struct amdgpu_bo_va *bo_va;
385
386 list_for_each_entry(bo_va, &bo->va, bo_list) {
387 if (bo_va->vm == vm) {
388 return bo_va;
389 }
390 }
391 return NULL;
392}
393
394/**
395 * amdgpu_vm_update_pages - helper to call the right asic function
396 *
397 * @adev: amdgpu_device pointer
Harish Kasiviswanathanf4833c42016-04-21 10:40:18 -0400398 * @vm_update_params: see amdgpu_vm_update_params definition
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400399 * @pe: addr of the page entry
400 * @addr: dst addr to write into pe
401 * @count: number of page entries to update
402 * @incr: increase next addr by incr bytes
403 * @flags: hw access flags
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400404 *
405 * Traces the parameters and calls the right asic functions
406 * to setup the page table using the DMA.
407 */
408static void amdgpu_vm_update_pages(struct amdgpu_device *adev,
Harish Kasiviswanathanf4833c42016-04-21 10:40:18 -0400409 struct amdgpu_vm_update_params
410 *vm_update_params,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400411 uint64_t pe, uint64_t addr,
412 unsigned count, uint32_t incr,
Christian König9ab21462015-11-30 14:19:26 +0100413 uint32_t flags)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400414{
415 trace_amdgpu_vm_set_page(pe, addr, count, incr, flags);
416
Harish Kasiviswanathanf4833c42016-04-21 10:40:18 -0400417 if (vm_update_params->src) {
418 amdgpu_vm_copy_pte(adev, vm_update_params->ib,
419 pe, (vm_update_params->src + (addr >> 12) * 8), count);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400420
Harish Kasiviswanathanf4833c42016-04-21 10:40:18 -0400421 } else if (vm_update_params->pages_addr) {
422 amdgpu_vm_write_pte(adev, vm_update_params->ib,
423 vm_update_params->pages_addr,
424 pe, addr, count, incr, flags);
Christian Königb07c9d22015-11-30 13:26:07 +0100425
426 } else if (count < 3) {
Harish Kasiviswanathanf4833c42016-04-21 10:40:18 -0400427 amdgpu_vm_write_pte(adev, vm_update_params->ib, NULL, pe, addr,
Christian Königb07c9d22015-11-30 13:26:07 +0100428 count, incr, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400429
430 } else {
Harish Kasiviswanathanf4833c42016-04-21 10:40:18 -0400431 amdgpu_vm_set_pte_pde(adev, vm_update_params->ib, pe, addr,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400432 count, incr, flags);
433 }
434}
435
436/**
437 * amdgpu_vm_clear_bo - initially clear the page dir/table
438 *
439 * @adev: amdgpu_device pointer
440 * @bo: bo to clear
Chunming Zhouef9f0a82015-11-13 13:43:22 +0800441 *
442 * need to reserve bo first before calling it.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400443 */
444static int amdgpu_vm_clear_bo(struct amdgpu_device *adev,
Christian König2bd9ccf2016-02-01 12:53:58 +0100445 struct amdgpu_vm *vm,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400446 struct amdgpu_bo *bo)
447{
Christian König2d55e452016-02-08 17:37:38 +0100448 struct amdgpu_ring *ring;
Chunming Zhou4af9f072015-08-03 12:57:31 +0800449 struct fence *fence = NULL;
Christian Königd71518b2016-02-01 12:20:25 +0100450 struct amdgpu_job *job;
Harish Kasiviswanathanf4833c42016-04-21 10:40:18 -0400451 struct amdgpu_vm_update_params vm_update_params;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400452 unsigned entries;
453 uint64_t addr;
454 int r;
455
Harish Kasiviswanathanf4833c42016-04-21 10:40:18 -0400456 memset(&vm_update_params, 0, sizeof(vm_update_params));
Christian König2d55e452016-02-08 17:37:38 +0100457 ring = container_of(vm->entity.sched, struct amdgpu_ring, sched);
458
monk.liuca952612015-05-25 14:44:05 +0800459 r = reservation_object_reserve_shared(bo->tbo.resv);
460 if (r)
461 return r;
462
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400463 r = ttm_bo_validate(&bo->tbo, &bo->placement, true, false);
464 if (r)
Chunming Zhouef9f0a82015-11-13 13:43:22 +0800465 goto error;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400466
467 addr = amdgpu_bo_gpu_offset(bo);
468 entries = amdgpu_bo_size(bo) / 8;
469
Christian Königd71518b2016-02-01 12:20:25 +0100470 r = amdgpu_job_alloc_with_ib(adev, 64, &job);
471 if (r)
Chunming Zhouef9f0a82015-11-13 13:43:22 +0800472 goto error;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400473
Harish Kasiviswanathanf4833c42016-04-21 10:40:18 -0400474 vm_update_params.ib = &job->ibs[0];
475 amdgpu_vm_update_pages(adev, &vm_update_params, addr, 0, entries,
Christian Königd71518b2016-02-01 12:20:25 +0100476 0, 0);
477 amdgpu_ring_pad_ib(ring, &job->ibs[0]);
478
479 WARN_ON(job->ibs[0].length_dw > 64);
Christian König2bd9ccf2016-02-01 12:53:58 +0100480 r = amdgpu_job_submit(job, ring, &vm->entity,
481 AMDGPU_FENCE_OWNER_VM, &fence);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400482 if (r)
483 goto error_free;
484
Christian Königd71518b2016-02-01 12:20:25 +0100485 amdgpu_bo_fence(bo, fence, true);
Chunming Zhou281b4222015-08-12 12:58:31 +0800486 fence_put(fence);
Chunming Zhoucadf97b2016-01-15 11:25:00 +0800487 return 0;
Chunming Zhouef9f0a82015-11-13 13:43:22 +0800488
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400489error_free:
Christian Königd71518b2016-02-01 12:20:25 +0100490 amdgpu_job_free(job);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400491
Chunming Zhouef9f0a82015-11-13 13:43:22 +0800492error:
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400493 return r;
494}
495
496/**
Christian Königb07c9d22015-11-30 13:26:07 +0100497 * amdgpu_vm_map_gart - Resolve gart mapping of addr
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400498 *
Christian Königb07c9d22015-11-30 13:26:07 +0100499 * @pages_addr: optional DMA address to use for lookup
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400500 * @addr: the unmapped addr
501 *
502 * Look up the physical address of the page that the pte resolves
Christian Königb07c9d22015-11-30 13:26:07 +0100503 * to and return the pointer for the page table entry.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400504 */
Christian Königb07c9d22015-11-30 13:26:07 +0100505uint64_t amdgpu_vm_map_gart(const dma_addr_t *pages_addr, uint64_t addr)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400506{
507 uint64_t result;
508
Christian Königb07c9d22015-11-30 13:26:07 +0100509 if (pages_addr) {
510 /* page table offset */
511 result = pages_addr[addr >> PAGE_SHIFT];
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400512
Christian Königb07c9d22015-11-30 13:26:07 +0100513 /* in case cpu page size != gpu page size*/
514 result |= addr & (~PAGE_MASK);
515
516 } else {
517 /* No mapping required */
518 result = addr;
519 }
520
521 result &= 0xFFFFFFFFFFFFF000ULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400522
523 return result;
524}
525
526/**
527 * amdgpu_vm_update_pdes - make sure that page directory is valid
528 *
529 * @adev: amdgpu_device pointer
530 * @vm: requested vm
531 * @start: start of GPU address range
532 * @end: end of GPU address range
533 *
534 * Allocates new page tables if necessary
Christian König8843dbb2016-01-26 12:17:11 +0100535 * and updates the page directory.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400536 * Returns 0 for success, error for failure.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400537 */
538int amdgpu_vm_update_page_directory(struct amdgpu_device *adev,
539 struct amdgpu_vm *vm)
540{
Christian König2d55e452016-02-08 17:37:38 +0100541 struct amdgpu_ring *ring;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400542 struct amdgpu_bo *pd = vm->page_directory;
543 uint64_t pd_addr = amdgpu_bo_gpu_offset(pd);
544 uint32_t incr = AMDGPU_VM_PTE_COUNT * 8;
545 uint64_t last_pde = ~0, last_pt = ~0;
546 unsigned count = 0, pt_idx, ndw;
Christian Königd71518b2016-02-01 12:20:25 +0100547 struct amdgpu_job *job;
Harish Kasiviswanathanf4833c42016-04-21 10:40:18 -0400548 struct amdgpu_vm_update_params vm_update_params;
Chunming Zhou4af9f072015-08-03 12:57:31 +0800549 struct fence *fence = NULL;
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800550
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400551 int r;
552
Harish Kasiviswanathanf4833c42016-04-21 10:40:18 -0400553 memset(&vm_update_params, 0, sizeof(vm_update_params));
Christian König2d55e452016-02-08 17:37:38 +0100554 ring = container_of(vm->entity.sched, struct amdgpu_ring, sched);
555
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400556 /* padding, etc. */
557 ndw = 64;
558
559 /* assume the worst case */
560 ndw += vm->max_pde_used * 6;
561
Christian Königd71518b2016-02-01 12:20:25 +0100562 r = amdgpu_job_alloc_with_ib(adev, ndw * 4, &job);
563 if (r)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400564 return r;
Christian Königd71518b2016-02-01 12:20:25 +0100565
Harish Kasiviswanathanf4833c42016-04-21 10:40:18 -0400566 vm_update_params.ib = &job->ibs[0];
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400567
568 /* walk over the address space and update the page directory */
569 for (pt_idx = 0; pt_idx <= vm->max_pde_used; ++pt_idx) {
Christian Königee1782c2015-12-11 21:01:23 +0100570 struct amdgpu_bo *bo = vm->page_tables[pt_idx].entry.robj;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400571 uint64_t pde, pt;
572
573 if (bo == NULL)
574 continue;
575
576 pt = amdgpu_bo_gpu_offset(bo);
577 if (vm->page_tables[pt_idx].addr == pt)
578 continue;
579 vm->page_tables[pt_idx].addr = pt;
580
581 pde = pd_addr + pt_idx * 8;
582 if (((last_pde + 8 * count) != pde) ||
583 ((last_pt + incr * count) != pt)) {
584
585 if (count) {
Harish Kasiviswanathanf4833c42016-04-21 10:40:18 -0400586 amdgpu_vm_update_pages(adev, &vm_update_params,
Christian König9ab21462015-11-30 14:19:26 +0100587 last_pde, last_pt,
588 count, incr,
589 AMDGPU_PTE_VALID);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400590 }
591
592 count = 1;
593 last_pde = pde;
594 last_pt = pt;
595 } else {
596 ++count;
597 }
598 }
599
600 if (count)
Harish Kasiviswanathanf4833c42016-04-21 10:40:18 -0400601 amdgpu_vm_update_pages(adev, &vm_update_params,
602 last_pde, last_pt,
603 count, incr, AMDGPU_PTE_VALID);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400604
Harish Kasiviswanathanf4833c42016-04-21 10:40:18 -0400605 if (vm_update_params.ib->length_dw != 0) {
606 amdgpu_ring_pad_ib(ring, vm_update_params.ib);
Christian Könige86f9ce2016-02-08 12:13:05 +0100607 amdgpu_sync_resv(adev, &job->sync, pd->tbo.resv,
608 AMDGPU_FENCE_OWNER_VM);
Harish Kasiviswanathanf4833c42016-04-21 10:40:18 -0400609 WARN_ON(vm_update_params.ib->length_dw > ndw);
Christian König2bd9ccf2016-02-01 12:53:58 +0100610 r = amdgpu_job_submit(job, ring, &vm->entity,
611 AMDGPU_FENCE_OWNER_VM, &fence);
Chunming Zhou4af9f072015-08-03 12:57:31 +0800612 if (r)
613 goto error_free;
Bas Nieuwenhuizen05906de2015-08-14 20:08:40 +0200614
Chunming Zhou4af9f072015-08-03 12:57:31 +0800615 amdgpu_bo_fence(pd, fence, true);
Bas Nieuwenhuizen05906de2015-08-14 20:08:40 +0200616 fence_put(vm->page_directory_fence);
617 vm->page_directory_fence = fence_get(fence);
Chunming Zhou281b4222015-08-12 12:58:31 +0800618 fence_put(fence);
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800619
Christian Königd71518b2016-02-01 12:20:25 +0100620 } else {
621 amdgpu_job_free(job);
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800622 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400623
624 return 0;
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800625
626error_free:
Christian Königd71518b2016-02-01 12:20:25 +0100627 amdgpu_job_free(job);
Chunming Zhou4af9f072015-08-03 12:57:31 +0800628 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400629}
630
631/**
632 * amdgpu_vm_frag_ptes - add fragment information to PTEs
633 *
634 * @adev: amdgpu_device pointer
Harish Kasiviswanathanf4833c42016-04-21 10:40:18 -0400635 * @vm_update_params: see amdgpu_vm_update_params definition
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400636 * @pe_start: first PTE to handle
637 * @pe_end: last PTE to handle
638 * @addr: addr those PTEs should point to
639 * @flags: hw mapping flags
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400640 */
641static void amdgpu_vm_frag_ptes(struct amdgpu_device *adev,
Harish Kasiviswanathanf4833c42016-04-21 10:40:18 -0400642 struct amdgpu_vm_update_params
643 *vm_update_params,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400644 uint64_t pe_start, uint64_t pe_end,
Christian König9ab21462015-11-30 14:19:26 +0100645 uint64_t addr, uint32_t flags)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400646{
647 /**
648 * The MC L1 TLB supports variable sized pages, based on a fragment
649 * field in the PTE. When this field is set to a non-zero value, page
650 * granularity is increased from 4KB to (1 << (12 + frag)). The PTE
651 * flags are considered valid for all PTEs within the fragment range
652 * and corresponding mappings are assumed to be physically contiguous.
653 *
654 * The L1 TLB can store a single PTE for the whole fragment,
655 * significantly increasing the space available for translation
656 * caching. This leads to large improvements in throughput when the
657 * TLB is under pressure.
658 *
659 * The L2 TLB distributes small and large fragments into two
660 * asymmetric partitions. The large fragment cache is significantly
661 * larger. Thus, we try to use large fragments wherever possible.
662 * Userspace can support this by aligning virtual base address and
663 * allocation size to the fragment size.
664 */
665
666 /* SI and newer are optimized for 64KB */
667 uint64_t frag_flags = AMDGPU_PTE_FRAG_64KB;
668 uint64_t frag_align = 0x80;
669
670 uint64_t frag_start = ALIGN(pe_start, frag_align);
671 uint64_t frag_end = pe_end & ~(frag_align - 1);
672
673 unsigned count;
674
Christian König31f6c1f2016-01-26 12:37:49 +0100675 /* Abort early if there isn't anything to do */
676 if (pe_start == pe_end)
677 return;
678
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400679 /* system pages are non continuously */
Harish Kasiviswanathanf4833c42016-04-21 10:40:18 -0400680 if (vm_update_params->src || vm_update_params->pages_addr ||
681 !(flags & AMDGPU_PTE_VALID) || (frag_start >= frag_end)) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400682
683 count = (pe_end - pe_start) / 8;
Harish Kasiviswanathanf4833c42016-04-21 10:40:18 -0400684 amdgpu_vm_update_pages(adev, vm_update_params, pe_start,
Christian König9ab21462015-11-30 14:19:26 +0100685 addr, count, AMDGPU_GPU_PAGE_SIZE,
686 flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400687 return;
688 }
689
690 /* handle the 4K area at the beginning */
691 if (pe_start != frag_start) {
692 count = (frag_start - pe_start) / 8;
Harish Kasiviswanathanf4833c42016-04-21 10:40:18 -0400693 amdgpu_vm_update_pages(adev, vm_update_params, pe_start, addr,
Christian König9ab21462015-11-30 14:19:26 +0100694 count, AMDGPU_GPU_PAGE_SIZE, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400695 addr += AMDGPU_GPU_PAGE_SIZE * count;
696 }
697
698 /* handle the area in the middle */
699 count = (frag_end - frag_start) / 8;
Harish Kasiviswanathanf4833c42016-04-21 10:40:18 -0400700 amdgpu_vm_update_pages(adev, vm_update_params, frag_start, addr, count,
Christian König9ab21462015-11-30 14:19:26 +0100701 AMDGPU_GPU_PAGE_SIZE, flags | frag_flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400702
703 /* handle the 4K area at the end */
704 if (frag_end != pe_end) {
705 addr += AMDGPU_GPU_PAGE_SIZE * count;
706 count = (pe_end - frag_end) / 8;
Harish Kasiviswanathanf4833c42016-04-21 10:40:18 -0400707 amdgpu_vm_update_pages(adev, vm_update_params, frag_end, addr,
Christian König9ab21462015-11-30 14:19:26 +0100708 count, AMDGPU_GPU_PAGE_SIZE, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400709 }
710}
711
712/**
713 * amdgpu_vm_update_ptes - make sure that page tables are valid
714 *
715 * @adev: amdgpu_device pointer
Harish Kasiviswanathanf4833c42016-04-21 10:40:18 -0400716 * @vm_update_params: see amdgpu_vm_update_params definition
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400717 * @vm: requested vm
718 * @start: start of GPU address range
719 * @end: end of GPU address range
720 * @dst: destination address to map to
721 * @flags: mapping flags
722 *
Christian König8843dbb2016-01-26 12:17:11 +0100723 * Update the page tables in the range @start - @end.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400724 */
Christian Königa1e08d32016-01-26 11:40:46 +0100725static void amdgpu_vm_update_ptes(struct amdgpu_device *adev,
Harish Kasiviswanathanf4833c42016-04-21 10:40:18 -0400726 struct amdgpu_vm_update_params
727 *vm_update_params,
Christian Königa1e08d32016-01-26 11:40:46 +0100728 struct amdgpu_vm *vm,
Christian Königa1e08d32016-01-26 11:40:46 +0100729 uint64_t start, uint64_t end,
730 uint64_t dst, uint32_t flags)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400731{
Christian König31f6c1f2016-01-26 12:37:49 +0100732 const uint64_t mask = AMDGPU_VM_PTE_COUNT - 1;
733
734 uint64_t last_pe_start = ~0, last_pe_end = ~0, last_dst = ~0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400735 uint64_t addr;
736
737 /* walk over the address space and update the page tables */
738 for (addr = start; addr < end; ) {
739 uint64_t pt_idx = addr >> amdgpu_vm_block_size;
Christian Königee1782c2015-12-11 21:01:23 +0100740 struct amdgpu_bo *pt = vm->page_tables[pt_idx].entry.robj;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400741 unsigned nptes;
Christian König31f6c1f2016-01-26 12:37:49 +0100742 uint64_t pe_start;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400743
744 if ((addr & ~mask) == (end & ~mask))
745 nptes = end - addr;
746 else
747 nptes = AMDGPU_VM_PTE_COUNT - (addr & mask);
748
Christian König31f6c1f2016-01-26 12:37:49 +0100749 pe_start = amdgpu_bo_gpu_offset(pt);
750 pe_start += (addr & mask) * 8;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400751
Christian König31f6c1f2016-01-26 12:37:49 +0100752 if (last_pe_end != pe_start) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400753
Harish Kasiviswanathanf4833c42016-04-21 10:40:18 -0400754 amdgpu_vm_frag_ptes(adev, vm_update_params,
Christian König31f6c1f2016-01-26 12:37:49 +0100755 last_pe_start, last_pe_end,
756 last_dst, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400757
Christian König31f6c1f2016-01-26 12:37:49 +0100758 last_pe_start = pe_start;
759 last_pe_end = pe_start + 8 * nptes;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400760 last_dst = dst;
761 } else {
Christian König31f6c1f2016-01-26 12:37:49 +0100762 last_pe_end += 8 * nptes;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400763 }
764
765 addr += nptes;
766 dst += nptes * AMDGPU_GPU_PAGE_SIZE;
767 }
768
Harish Kasiviswanathanf4833c42016-04-21 10:40:18 -0400769 amdgpu_vm_frag_ptes(adev, vm_update_params, last_pe_start,
Christian Königfa3ab3c2016-03-18 21:00:35 +0100770 last_pe_end, last_dst, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400771}
772
773/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400774 * amdgpu_vm_bo_update_mapping - update a mapping in the vm page table
775 *
776 * @adev: amdgpu_device pointer
Christian Königfa3ab3c2016-03-18 21:00:35 +0100777 * @src: address where to copy page table entries from
778 * @pages_addr: DMA addresses to use for mapping
Christian Königa14faa62016-01-25 14:27:31 +0100779 * @vm: requested vm
780 * @start: start of mapped range
781 * @last: last mapped entry
782 * @flags: flags for the entries
783 * @addr: addr to set the area to
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400784 * @fence: optional resulting fence
785 *
Christian Königa14faa62016-01-25 14:27:31 +0100786 * Fill in the page table entries between @start and @last.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400787 * Returns 0 for success, -EINVAL for failure.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400788 */
789static int amdgpu_vm_bo_update_mapping(struct amdgpu_device *adev,
Christian Königfa3ab3c2016-03-18 21:00:35 +0100790 uint64_t src,
791 dma_addr_t *pages_addr,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400792 struct amdgpu_vm *vm,
Christian Königa14faa62016-01-25 14:27:31 +0100793 uint64_t start, uint64_t last,
794 uint32_t flags, uint64_t addr,
795 struct fence **fence)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400796{
Christian König2d55e452016-02-08 17:37:38 +0100797 struct amdgpu_ring *ring;
Christian Königa1e08d32016-01-26 11:40:46 +0100798 void *owner = AMDGPU_FENCE_OWNER_VM;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400799 unsigned nptes, ncmds, ndw;
Christian Königd71518b2016-02-01 12:20:25 +0100800 struct amdgpu_job *job;
Harish Kasiviswanathanf4833c42016-04-21 10:40:18 -0400801 struct amdgpu_vm_update_params vm_update_params;
Chunming Zhou4af9f072015-08-03 12:57:31 +0800802 struct fence *f = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400803 int r;
804
Christian König2d55e452016-02-08 17:37:38 +0100805 ring = container_of(vm->entity.sched, struct amdgpu_ring, sched);
Harish Kasiviswanathanf4833c42016-04-21 10:40:18 -0400806 memset(&vm_update_params, 0, sizeof(vm_update_params));
807 vm_update_params.src = src;
808 vm_update_params.pages_addr = pages_addr;
Christian König2d55e452016-02-08 17:37:38 +0100809
Christian Königa1e08d32016-01-26 11:40:46 +0100810 /* sync to everything on unmapping */
811 if (!(flags & AMDGPU_PTE_VALID))
812 owner = AMDGPU_FENCE_OWNER_UNDEFINED;
813
Christian Königa14faa62016-01-25 14:27:31 +0100814 nptes = last - start + 1;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400815
816 /*
817 * reserve space for one command every (1 << BLOCK_SIZE)
818 * entries or 2k dwords (whatever is smaller)
819 */
820 ncmds = (nptes >> min(amdgpu_vm_block_size, 11)) + 1;
821
822 /* padding, etc. */
823 ndw = 64;
824
Harish Kasiviswanathanf4833c42016-04-21 10:40:18 -0400825 if (vm_update_params.src) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400826 /* only copy commands needed */
827 ndw += ncmds * 7;
828
Harish Kasiviswanathanf4833c42016-04-21 10:40:18 -0400829 } else if (vm_update_params.pages_addr) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400830 /* header for write data commands */
831 ndw += ncmds * 4;
832
833 /* body of write data command */
834 ndw += nptes * 2;
835
836 } else {
837 /* set page commands needed */
838 ndw += ncmds * 10;
839
840 /* two extra commands for begin/end of fragment */
841 ndw += 2 * 10;
842 }
843
Christian Königd71518b2016-02-01 12:20:25 +0100844 r = amdgpu_job_alloc_with_ib(adev, ndw * 4, &job);
845 if (r)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400846 return r;
Christian Königd71518b2016-02-01 12:20:25 +0100847
Harish Kasiviswanathanf4833c42016-04-21 10:40:18 -0400848 vm_update_params.ib = &job->ibs[0];
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800849
Christian Könige86f9ce2016-02-08 12:13:05 +0100850 r = amdgpu_sync_resv(adev, &job->sync, vm->page_directory->tbo.resv,
Christian Königa1e08d32016-01-26 11:40:46 +0100851 owner);
852 if (r)
853 goto error_free;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400854
Christian Königa1e08d32016-01-26 11:40:46 +0100855 r = reservation_object_reserve_shared(vm->page_directory->tbo.resv);
856 if (r)
857 goto error_free;
858
Harish Kasiviswanathanf4833c42016-04-21 10:40:18 -0400859 amdgpu_vm_update_ptes(adev, &vm_update_params, vm, start,
Christian Königfa3ab3c2016-03-18 21:00:35 +0100860 last + 1, addr, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400861
Harish Kasiviswanathanf4833c42016-04-21 10:40:18 -0400862 amdgpu_ring_pad_ib(ring, vm_update_params.ib);
863 WARN_ON(vm_update_params.ib->length_dw > ndw);
Christian König2bd9ccf2016-02-01 12:53:58 +0100864 r = amdgpu_job_submit(job, ring, &vm->entity,
865 AMDGPU_FENCE_OWNER_VM, &f);
Chunming Zhou4af9f072015-08-03 12:57:31 +0800866 if (r)
867 goto error_free;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400868
Christian Königbf60efd2015-09-04 10:47:56 +0200869 amdgpu_bo_fence(vm->page_directory, f, true);
Chunming Zhou4af9f072015-08-03 12:57:31 +0800870 if (fence) {
871 fence_put(*fence);
872 *fence = fence_get(f);
873 }
Chunming Zhou281b4222015-08-12 12:58:31 +0800874 fence_put(f);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400875 return 0;
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800876
877error_free:
Christian Königd71518b2016-02-01 12:20:25 +0100878 amdgpu_job_free(job);
Chunming Zhou4af9f072015-08-03 12:57:31 +0800879 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400880}
881
882/**
Christian Königa14faa62016-01-25 14:27:31 +0100883 * amdgpu_vm_bo_split_mapping - split a mapping into smaller chunks
884 *
885 * @adev: amdgpu_device pointer
Christian König8358dce2016-03-30 10:50:25 +0200886 * @gtt_flags: flags as they are used for GTT
887 * @pages_addr: DMA addresses to use for mapping
Christian Königa14faa62016-01-25 14:27:31 +0100888 * @vm: requested vm
889 * @mapping: mapped range and flags to use for the update
890 * @addr: addr to set the area to
Christian König8358dce2016-03-30 10:50:25 +0200891 * @flags: HW flags for the mapping
Christian Königa14faa62016-01-25 14:27:31 +0100892 * @fence: optional resulting fence
893 *
894 * Split the mapping into smaller chunks so that each update fits
895 * into a SDMA IB.
896 * Returns 0 for success, -EINVAL for failure.
897 */
898static int amdgpu_vm_bo_split_mapping(struct amdgpu_device *adev,
Christian Königa14faa62016-01-25 14:27:31 +0100899 uint32_t gtt_flags,
Christian König8358dce2016-03-30 10:50:25 +0200900 dma_addr_t *pages_addr,
Christian Königa14faa62016-01-25 14:27:31 +0100901 struct amdgpu_vm *vm,
902 struct amdgpu_bo_va_mapping *mapping,
Christian Königfa3ab3c2016-03-18 21:00:35 +0100903 uint32_t flags, uint64_t addr,
904 struct fence **fence)
Christian Königa14faa62016-01-25 14:27:31 +0100905{
906 const uint64_t max_size = 64ULL * 1024ULL * 1024ULL / AMDGPU_GPU_PAGE_SIZE;
907
Christian Königfa3ab3c2016-03-18 21:00:35 +0100908 uint64_t src = 0, start = mapping->it.start;
Christian Königa14faa62016-01-25 14:27:31 +0100909 int r;
910
911 /* normally,bo_va->flags only contians READABLE and WIRTEABLE bit go here
912 * but in case of something, we filter the flags in first place
913 */
914 if (!(mapping->flags & AMDGPU_PTE_READABLE))
915 flags &= ~AMDGPU_PTE_READABLE;
916 if (!(mapping->flags & AMDGPU_PTE_WRITEABLE))
917 flags &= ~AMDGPU_PTE_WRITEABLE;
918
919 trace_amdgpu_vm_bo_update(mapping);
920
Christian König8358dce2016-03-30 10:50:25 +0200921 if (pages_addr) {
Christian Königfa3ab3c2016-03-18 21:00:35 +0100922 if (flags == gtt_flags)
923 src = adev->gart.table_addr + (addr >> 12) * 8;
Christian Königfa3ab3c2016-03-18 21:00:35 +0100924 addr = 0;
925 }
Christian Königa14faa62016-01-25 14:27:31 +0100926 addr += mapping->offset;
927
Christian König8358dce2016-03-30 10:50:25 +0200928 if (!pages_addr || src)
Christian Königfa3ab3c2016-03-18 21:00:35 +0100929 return amdgpu_vm_bo_update_mapping(adev, src, pages_addr, vm,
Christian Königa14faa62016-01-25 14:27:31 +0100930 start, mapping->it.last,
931 flags, addr, fence);
932
933 while (start != mapping->it.last + 1) {
934 uint64_t last;
935
Felix Kuehlingfb29b572016-03-03 19:13:20 -0500936 last = min((uint64_t)mapping->it.last, start + max_size - 1);
Christian Königfa3ab3c2016-03-18 21:00:35 +0100937 r = amdgpu_vm_bo_update_mapping(adev, src, pages_addr, vm,
Christian Königa14faa62016-01-25 14:27:31 +0100938 start, last, flags, addr,
939 fence);
940 if (r)
941 return r;
942
943 start = last + 1;
Felix Kuehlingfb29b572016-03-03 19:13:20 -0500944 addr += max_size * AMDGPU_GPU_PAGE_SIZE;
Christian Königa14faa62016-01-25 14:27:31 +0100945 }
946
947 return 0;
948}
949
950/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400951 * amdgpu_vm_bo_update - update all BO mappings in the vm page table
952 *
953 * @adev: amdgpu_device pointer
954 * @bo_va: requested BO and VM object
955 * @mem: ttm mem
956 *
957 * Fill in the page table entries for @bo_va.
958 * Returns 0 for success, -EINVAL for failure.
959 *
960 * Object have to be reserved and mutex must be locked!
961 */
962int amdgpu_vm_bo_update(struct amdgpu_device *adev,
963 struct amdgpu_bo_va *bo_va,
964 struct ttm_mem_reg *mem)
965{
966 struct amdgpu_vm *vm = bo_va->vm;
967 struct amdgpu_bo_va_mapping *mapping;
Christian König8358dce2016-03-30 10:50:25 +0200968 dma_addr_t *pages_addr = NULL;
Christian Königfa3ab3c2016-03-18 21:00:35 +0100969 uint32_t gtt_flags, flags;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400970 uint64_t addr;
971 int r;
972
973 if (mem) {
Christian König8358dce2016-03-30 10:50:25 +0200974 struct ttm_dma_tt *ttm;
975
Christian Königb7d698d2015-09-07 12:32:09 +0200976 addr = (u64)mem->start << PAGE_SHIFT;
Christian König9ab21462015-11-30 14:19:26 +0100977 switch (mem->mem_type) {
978 case TTM_PL_TT:
Christian König8358dce2016-03-30 10:50:25 +0200979 ttm = container_of(bo_va->bo->tbo.ttm, struct
980 ttm_dma_tt, ttm);
981 pages_addr = ttm->dma_address;
Christian König9ab21462015-11-30 14:19:26 +0100982 break;
983
984 case TTM_PL_VRAM:
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400985 addr += adev->vm_manager.vram_base_offset;
Christian König9ab21462015-11-30 14:19:26 +0100986 break;
987
988 default:
989 break;
990 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400991 } else {
992 addr = 0;
993 }
994
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400995 flags = amdgpu_ttm_tt_pte_flags(adev, bo_va->bo->tbo.ttm, mem);
Christian Königfa3ab3c2016-03-18 21:00:35 +0100996 gtt_flags = (adev == bo_va->bo->adev) ? flags : 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400997
Christian König7fc11952015-07-30 11:53:42 +0200998 spin_lock(&vm->status_lock);
999 if (!list_empty(&bo_va->vm_status))
1000 list_splice_init(&bo_va->valids, &bo_va->invalids);
1001 spin_unlock(&vm->status_lock);
1002
1003 list_for_each_entry(mapping, &bo_va->invalids, list) {
Christian König8358dce2016-03-30 10:50:25 +02001004 r = amdgpu_vm_bo_split_mapping(adev, gtt_flags, pages_addr, vm,
1005 mapping, flags, addr,
1006 &bo_va->last_pt_update);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001007 if (r)
1008 return r;
1009 }
1010
Christian Königd6c10f62015-09-28 12:00:23 +02001011 if (trace_amdgpu_vm_bo_mapping_enabled()) {
1012 list_for_each_entry(mapping, &bo_va->valids, list)
1013 trace_amdgpu_vm_bo_mapping(mapping);
1014
1015 list_for_each_entry(mapping, &bo_va->invalids, list)
1016 trace_amdgpu_vm_bo_mapping(mapping);
1017 }
1018
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001019 spin_lock(&vm->status_lock);
monk.liu6d1d0ef2015-08-14 13:36:41 +08001020 list_splice_init(&bo_va->invalids, &bo_va->valids);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001021 list_del_init(&bo_va->vm_status);
Christian König7fc11952015-07-30 11:53:42 +02001022 if (!mem)
1023 list_add(&bo_va->vm_status, &vm->cleared);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001024 spin_unlock(&vm->status_lock);
1025
1026 return 0;
1027}
1028
1029/**
1030 * amdgpu_vm_clear_freed - clear freed BOs in the PT
1031 *
1032 * @adev: amdgpu_device pointer
1033 * @vm: requested vm
1034 *
1035 * Make sure all freed BOs are cleared in the PT.
1036 * Returns 0 for success.
1037 *
1038 * PTs have to be reserved and mutex must be locked!
1039 */
1040int amdgpu_vm_clear_freed(struct amdgpu_device *adev,
1041 struct amdgpu_vm *vm)
1042{
1043 struct amdgpu_bo_va_mapping *mapping;
1044 int r;
1045
1046 while (!list_empty(&vm->freed)) {
1047 mapping = list_first_entry(&vm->freed,
1048 struct amdgpu_bo_va_mapping, list);
1049 list_del(&mapping->list);
Christian Könige17841b2016-03-08 17:52:01 +01001050
Christian König8358dce2016-03-30 10:50:25 +02001051 r = amdgpu_vm_bo_split_mapping(adev, 0, NULL, vm, mapping,
Christian Königfa3ab3c2016-03-18 21:00:35 +01001052 0, 0, NULL);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001053 kfree(mapping);
1054 if (r)
1055 return r;
1056
1057 }
1058 return 0;
1059
1060}
1061
1062/**
1063 * amdgpu_vm_clear_invalids - clear invalidated BOs in the PT
1064 *
1065 * @adev: amdgpu_device pointer
1066 * @vm: requested vm
1067 *
1068 * Make sure all invalidated BOs are cleared in the PT.
1069 * Returns 0 for success.
1070 *
1071 * PTs have to be reserved and mutex must be locked!
1072 */
1073int amdgpu_vm_clear_invalids(struct amdgpu_device *adev,
monk.liucfe2c972015-05-26 15:01:54 +08001074 struct amdgpu_vm *vm, struct amdgpu_sync *sync)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001075{
monk.liucfe2c972015-05-26 15:01:54 +08001076 struct amdgpu_bo_va *bo_va = NULL;
Christian König91e1a522015-07-06 22:06:40 +02001077 int r = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001078
1079 spin_lock(&vm->status_lock);
1080 while (!list_empty(&vm->invalidated)) {
1081 bo_va = list_first_entry(&vm->invalidated,
1082 struct amdgpu_bo_va, vm_status);
1083 spin_unlock(&vm->status_lock);
Christian König32b41ac2016-03-08 18:03:27 +01001084
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001085 r = amdgpu_vm_bo_update(adev, bo_va, NULL);
1086 if (r)
1087 return r;
1088
1089 spin_lock(&vm->status_lock);
1090 }
1091 spin_unlock(&vm->status_lock);
1092
monk.liucfe2c972015-05-26 15:01:54 +08001093 if (bo_va)
Chunming Zhoubb1e38a42015-08-03 18:19:38 +08001094 r = amdgpu_sync_fence(adev, sync, bo_va->last_pt_update);
Christian König91e1a522015-07-06 22:06:40 +02001095
1096 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001097}
1098
1099/**
1100 * amdgpu_vm_bo_add - add a bo to a specific vm
1101 *
1102 * @adev: amdgpu_device pointer
1103 * @vm: requested vm
1104 * @bo: amdgpu buffer object
1105 *
Christian König8843dbb2016-01-26 12:17:11 +01001106 * Add @bo into the requested vm.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001107 * Add @bo to the list of bos associated with the vm
1108 * Returns newly added bo_va or NULL for failure
1109 *
1110 * Object has to be reserved!
1111 */
1112struct amdgpu_bo_va *amdgpu_vm_bo_add(struct amdgpu_device *adev,
1113 struct amdgpu_vm *vm,
1114 struct amdgpu_bo *bo)
1115{
1116 struct amdgpu_bo_va *bo_va;
1117
1118 bo_va = kzalloc(sizeof(struct amdgpu_bo_va), GFP_KERNEL);
1119 if (bo_va == NULL) {
1120 return NULL;
1121 }
1122 bo_va->vm = vm;
1123 bo_va->bo = bo;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001124 bo_va->ref_count = 1;
1125 INIT_LIST_HEAD(&bo_va->bo_list);
Christian König7fc11952015-07-30 11:53:42 +02001126 INIT_LIST_HEAD(&bo_va->valids);
1127 INIT_LIST_HEAD(&bo_va->invalids);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001128 INIT_LIST_HEAD(&bo_va->vm_status);
Christian König32b41ac2016-03-08 18:03:27 +01001129
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001130 list_add_tail(&bo_va->bo_list, &bo->va);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001131
1132 return bo_va;
1133}
1134
1135/**
1136 * amdgpu_vm_bo_map - map bo inside a vm
1137 *
1138 * @adev: amdgpu_device pointer
1139 * @bo_va: bo_va to store the address
1140 * @saddr: where to map the BO
1141 * @offset: requested offset in the BO
1142 * @flags: attributes of pages (read/write/valid/etc.)
1143 *
1144 * Add a mapping of the BO at the specefied addr into the VM.
1145 * Returns 0 for success, error for failure.
1146 *
Chunming Zhou49b02b12015-11-13 14:18:38 +08001147 * Object has to be reserved and unreserved outside!
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001148 */
1149int amdgpu_vm_bo_map(struct amdgpu_device *adev,
1150 struct amdgpu_bo_va *bo_va,
1151 uint64_t saddr, uint64_t offset,
1152 uint64_t size, uint32_t flags)
1153{
1154 struct amdgpu_bo_va_mapping *mapping;
1155 struct amdgpu_vm *vm = bo_va->vm;
1156 struct interval_tree_node *it;
1157 unsigned last_pfn, pt_idx;
1158 uint64_t eaddr;
1159 int r;
1160
Christian König0be52de2015-05-18 14:37:27 +02001161 /* validate the parameters */
1162 if (saddr & AMDGPU_GPU_PAGE_MASK || offset & AMDGPU_GPU_PAGE_MASK ||
Chunming Zhou49b02b12015-11-13 14:18:38 +08001163 size == 0 || size & AMDGPU_GPU_PAGE_MASK)
Christian König0be52de2015-05-18 14:37:27 +02001164 return -EINVAL;
Christian König0be52de2015-05-18 14:37:27 +02001165
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001166 /* make sure object fit at this offset */
Felix Kuehling005ae952015-11-23 17:43:48 -05001167 eaddr = saddr + size - 1;
Chunming Zhou49b02b12015-11-13 14:18:38 +08001168 if ((saddr >= eaddr) || (offset + size > amdgpu_bo_size(bo_va->bo)))
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001169 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001170
1171 last_pfn = eaddr / AMDGPU_GPU_PAGE_SIZE;
Felix Kuehling005ae952015-11-23 17:43:48 -05001172 if (last_pfn >= adev->vm_manager.max_pfn) {
1173 dev_err(adev->dev, "va above limit (0x%08X >= 0x%08X)\n",
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001174 last_pfn, adev->vm_manager.max_pfn);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001175 return -EINVAL;
1176 }
1177
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001178 saddr /= AMDGPU_GPU_PAGE_SIZE;
1179 eaddr /= AMDGPU_GPU_PAGE_SIZE;
1180
Felix Kuehling005ae952015-11-23 17:43:48 -05001181 it = interval_tree_iter_first(&vm->va, saddr, eaddr);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001182 if (it) {
1183 struct amdgpu_bo_va_mapping *tmp;
1184 tmp = container_of(it, struct amdgpu_bo_va_mapping, it);
1185 /* bo and tmp overlap, invalid addr */
1186 dev_err(adev->dev, "bo %p va 0x%010Lx-0x%010Lx conflict with "
1187 "0x%010lx-0x%010lx\n", bo_va->bo, saddr, eaddr,
1188 tmp->it.start, tmp->it.last + 1);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001189 r = -EINVAL;
Chunming Zhouf48b2652015-10-16 14:06:19 +08001190 goto error;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001191 }
1192
1193 mapping = kmalloc(sizeof(*mapping), GFP_KERNEL);
1194 if (!mapping) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001195 r = -ENOMEM;
Chunming Zhouf48b2652015-10-16 14:06:19 +08001196 goto error;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001197 }
1198
1199 INIT_LIST_HEAD(&mapping->list);
1200 mapping->it.start = saddr;
Felix Kuehling005ae952015-11-23 17:43:48 -05001201 mapping->it.last = eaddr;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001202 mapping->offset = offset;
1203 mapping->flags = flags;
1204
Christian König7fc11952015-07-30 11:53:42 +02001205 list_add(&mapping->list, &bo_va->invalids);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001206 interval_tree_insert(&mapping->it, &vm->va);
1207
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001208 /* Make sure the page tables are allocated */
1209 saddr >>= amdgpu_vm_block_size;
1210 eaddr >>= amdgpu_vm_block_size;
1211
1212 BUG_ON(eaddr >= amdgpu_vm_num_pdes(adev));
1213
1214 if (eaddr > vm->max_pde_used)
1215 vm->max_pde_used = eaddr;
1216
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001217 /* walk over the address space and allocate the page tables */
1218 for (pt_idx = saddr; pt_idx <= eaddr; ++pt_idx) {
Christian Königbf60efd2015-09-04 10:47:56 +02001219 struct reservation_object *resv = vm->page_directory->tbo.resv;
Christian Königee1782c2015-12-11 21:01:23 +01001220 struct amdgpu_bo_list_entry *entry;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001221 struct amdgpu_bo *pt;
1222
Christian Königee1782c2015-12-11 21:01:23 +01001223 entry = &vm->page_tables[pt_idx].entry;
1224 if (entry->robj)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001225 continue;
1226
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001227 r = amdgpu_bo_create(adev, AMDGPU_VM_PTE_COUNT * 8,
1228 AMDGPU_GPU_PAGE_SIZE, true,
Alex Deucher857d9132015-08-27 00:14:16 -04001229 AMDGPU_GEM_DOMAIN_VRAM,
1230 AMDGPU_GEM_CREATE_NO_CPU_ACCESS,
Christian Königbf60efd2015-09-04 10:47:56 +02001231 NULL, resv, &pt);
Chunming Zhou49b02b12015-11-13 14:18:38 +08001232 if (r)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001233 goto error_free;
Chunming Zhou49b02b12015-11-13 14:18:38 +08001234
Christian König82b9c552015-11-27 16:49:00 +01001235 /* Keep a reference to the page table to avoid freeing
1236 * them up in the wrong order.
1237 */
1238 pt->parent = amdgpu_bo_ref(vm->page_directory);
1239
Christian König2bd9ccf2016-02-01 12:53:58 +01001240 r = amdgpu_vm_clear_bo(adev, vm, pt);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001241 if (r) {
1242 amdgpu_bo_unref(&pt);
1243 goto error_free;
1244 }
1245
Christian Königee1782c2015-12-11 21:01:23 +01001246 entry->robj = pt;
Christian Königee1782c2015-12-11 21:01:23 +01001247 entry->priority = 0;
1248 entry->tv.bo = &entry->robj->tbo;
1249 entry->tv.shared = true;
Christian König2f568db2016-02-23 12:36:59 +01001250 entry->user_pages = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001251 vm->page_tables[pt_idx].addr = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001252 }
1253
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001254 return 0;
1255
1256error_free:
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001257 list_del(&mapping->list);
1258 interval_tree_remove(&mapping->it, &vm->va);
Christian König93e3e432015-06-09 16:58:33 +02001259 trace_amdgpu_vm_bo_unmap(bo_va, mapping);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001260 kfree(mapping);
1261
Chunming Zhouf48b2652015-10-16 14:06:19 +08001262error:
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001263 return r;
1264}
1265
1266/**
1267 * amdgpu_vm_bo_unmap - remove bo mapping from vm
1268 *
1269 * @adev: amdgpu_device pointer
1270 * @bo_va: bo_va to remove the address from
1271 * @saddr: where to the BO is mapped
1272 *
1273 * Remove a mapping of the BO at the specefied addr from the VM.
1274 * Returns 0 for success, error for failure.
1275 *
Chunming Zhou49b02b12015-11-13 14:18:38 +08001276 * Object has to be reserved and unreserved outside!
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001277 */
1278int amdgpu_vm_bo_unmap(struct amdgpu_device *adev,
1279 struct amdgpu_bo_va *bo_va,
1280 uint64_t saddr)
1281{
1282 struct amdgpu_bo_va_mapping *mapping;
1283 struct amdgpu_vm *vm = bo_va->vm;
Christian König7fc11952015-07-30 11:53:42 +02001284 bool valid = true;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001285
Christian König6c7fc502015-06-05 20:56:17 +02001286 saddr /= AMDGPU_GPU_PAGE_SIZE;
Christian König32b41ac2016-03-08 18:03:27 +01001287
Christian König7fc11952015-07-30 11:53:42 +02001288 list_for_each_entry(mapping, &bo_va->valids, list) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001289 if (mapping->it.start == saddr)
1290 break;
1291 }
1292
Christian König7fc11952015-07-30 11:53:42 +02001293 if (&mapping->list == &bo_va->valids) {
1294 valid = false;
1295
1296 list_for_each_entry(mapping, &bo_va->invalids, list) {
1297 if (mapping->it.start == saddr)
1298 break;
1299 }
1300
Christian König32b41ac2016-03-08 18:03:27 +01001301 if (&mapping->list == &bo_va->invalids)
Christian König7fc11952015-07-30 11:53:42 +02001302 return -ENOENT;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001303 }
Christian König32b41ac2016-03-08 18:03:27 +01001304
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001305 list_del(&mapping->list);
1306 interval_tree_remove(&mapping->it, &vm->va);
Christian König93e3e432015-06-09 16:58:33 +02001307 trace_amdgpu_vm_bo_unmap(bo_va, mapping);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001308
Christian Könige17841b2016-03-08 17:52:01 +01001309 if (valid)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001310 list_add(&mapping->list, &vm->freed);
Christian Könige17841b2016-03-08 17:52:01 +01001311 else
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001312 kfree(mapping);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001313
1314 return 0;
1315}
1316
1317/**
1318 * amdgpu_vm_bo_rmv - remove a bo to a specific vm
1319 *
1320 * @adev: amdgpu_device pointer
1321 * @bo_va: requested bo_va
1322 *
Christian König8843dbb2016-01-26 12:17:11 +01001323 * Remove @bo_va->bo from the requested vm.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001324 *
1325 * Object have to be reserved!
1326 */
1327void amdgpu_vm_bo_rmv(struct amdgpu_device *adev,
1328 struct amdgpu_bo_va *bo_va)
1329{
1330 struct amdgpu_bo_va_mapping *mapping, *next;
1331 struct amdgpu_vm *vm = bo_va->vm;
1332
1333 list_del(&bo_va->bo_list);
1334
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001335 spin_lock(&vm->status_lock);
1336 list_del(&bo_va->vm_status);
1337 spin_unlock(&vm->status_lock);
1338
Christian König7fc11952015-07-30 11:53:42 +02001339 list_for_each_entry_safe(mapping, next, &bo_va->valids, list) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001340 list_del(&mapping->list);
1341 interval_tree_remove(&mapping->it, &vm->va);
Christian König93e3e432015-06-09 16:58:33 +02001342 trace_amdgpu_vm_bo_unmap(bo_va, mapping);
Christian König7fc11952015-07-30 11:53:42 +02001343 list_add(&mapping->list, &vm->freed);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001344 }
Christian König7fc11952015-07-30 11:53:42 +02001345 list_for_each_entry_safe(mapping, next, &bo_va->invalids, list) {
1346 list_del(&mapping->list);
1347 interval_tree_remove(&mapping->it, &vm->va);
1348 kfree(mapping);
1349 }
Christian König32b41ac2016-03-08 18:03:27 +01001350
Chunming Zhoubb1e38a42015-08-03 18:19:38 +08001351 fence_put(bo_va->last_pt_update);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001352 kfree(bo_va);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001353}
1354
1355/**
1356 * amdgpu_vm_bo_invalidate - mark the bo as invalid
1357 *
1358 * @adev: amdgpu_device pointer
1359 * @vm: requested vm
1360 * @bo: amdgpu buffer object
1361 *
Christian König8843dbb2016-01-26 12:17:11 +01001362 * Mark @bo as invalid.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001363 */
1364void amdgpu_vm_bo_invalidate(struct amdgpu_device *adev,
1365 struct amdgpu_bo *bo)
1366{
1367 struct amdgpu_bo_va *bo_va;
1368
1369 list_for_each_entry(bo_va, &bo->va, bo_list) {
Christian König7fc11952015-07-30 11:53:42 +02001370 spin_lock(&bo_va->vm->status_lock);
1371 if (list_empty(&bo_va->vm_status))
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001372 list_add(&bo_va->vm_status, &bo_va->vm->invalidated);
Christian König7fc11952015-07-30 11:53:42 +02001373 spin_unlock(&bo_va->vm->status_lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001374 }
1375}
1376
1377/**
1378 * amdgpu_vm_init - initialize a vm instance
1379 *
1380 * @adev: amdgpu_device pointer
1381 * @vm: requested vm
1382 *
Christian König8843dbb2016-01-26 12:17:11 +01001383 * Init @vm fields.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001384 */
1385int amdgpu_vm_init(struct amdgpu_device *adev, struct amdgpu_vm *vm)
1386{
1387 const unsigned align = min(AMDGPU_VM_PTB_ALIGN_SIZE,
1388 AMDGPU_VM_PTE_COUNT * 8);
Michel Dänzer9571e1d2016-01-19 17:59:46 +09001389 unsigned pd_size, pd_entries;
Christian König2d55e452016-02-08 17:37:38 +01001390 unsigned ring_instance;
1391 struct amdgpu_ring *ring;
Christian König2bd9ccf2016-02-01 12:53:58 +01001392 struct amd_sched_rq *rq;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001393 int i, r;
1394
Christian Königbcb1ba32016-03-08 15:40:11 +01001395 for (i = 0; i < AMDGPU_MAX_RINGS; ++i)
1396 vm->ids[i] = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001397 vm->va = RB_ROOT;
Chunming Zhou031e2982016-04-25 10:19:13 +08001398 vm->client_id = atomic64_inc_return(&adev->vm_manager.client_counter);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001399 spin_lock_init(&vm->status_lock);
1400 INIT_LIST_HEAD(&vm->invalidated);
Christian König7fc11952015-07-30 11:53:42 +02001401 INIT_LIST_HEAD(&vm->cleared);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001402 INIT_LIST_HEAD(&vm->freed);
Christian König20250212016-03-08 17:58:35 +01001403
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001404 pd_size = amdgpu_vm_directory_size(adev);
1405 pd_entries = amdgpu_vm_num_pdes(adev);
1406
1407 /* allocate page table array */
Michel Dänzer9571e1d2016-01-19 17:59:46 +09001408 vm->page_tables = drm_calloc_large(pd_entries, sizeof(struct amdgpu_vm_pt));
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001409 if (vm->page_tables == NULL) {
1410 DRM_ERROR("Cannot allocate memory for page table array\n");
1411 return -ENOMEM;
1412 }
1413
Christian König2bd9ccf2016-02-01 12:53:58 +01001414 /* create scheduler entity for page table updates */
Christian König2d55e452016-02-08 17:37:38 +01001415
1416 ring_instance = atomic_inc_return(&adev->vm_manager.vm_pte_next_ring);
1417 ring_instance %= adev->vm_manager.vm_pte_num_rings;
1418 ring = adev->vm_manager.vm_pte_rings[ring_instance];
Christian König2bd9ccf2016-02-01 12:53:58 +01001419 rq = &ring->sched.sched_rq[AMD_SCHED_PRIORITY_KERNEL];
1420 r = amd_sched_entity_init(&ring->sched, &vm->entity,
1421 rq, amdgpu_sched_jobs);
1422 if (r)
1423 return r;
1424
Bas Nieuwenhuizen05906de2015-08-14 20:08:40 +02001425 vm->page_directory_fence = NULL;
1426
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001427 r = amdgpu_bo_create(adev, pd_size, align, true,
Alex Deucher857d9132015-08-27 00:14:16 -04001428 AMDGPU_GEM_DOMAIN_VRAM,
1429 AMDGPU_GEM_CREATE_NO_CPU_ACCESS,
Christian König72d76682015-09-03 17:34:59 +02001430 NULL, NULL, &vm->page_directory);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001431 if (r)
Christian König2bd9ccf2016-02-01 12:53:58 +01001432 goto error_free_sched_entity;
1433
Chunming Zhouef9f0a82015-11-13 13:43:22 +08001434 r = amdgpu_bo_reserve(vm->page_directory, false);
Christian König2bd9ccf2016-02-01 12:53:58 +01001435 if (r)
1436 goto error_free_page_directory;
1437
1438 r = amdgpu_vm_clear_bo(adev, vm, vm->page_directory);
Chunming Zhouef9f0a82015-11-13 13:43:22 +08001439 amdgpu_bo_unreserve(vm->page_directory);
Christian König2bd9ccf2016-02-01 12:53:58 +01001440 if (r)
1441 goto error_free_page_directory;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001442
1443 return 0;
Christian König2bd9ccf2016-02-01 12:53:58 +01001444
1445error_free_page_directory:
1446 amdgpu_bo_unref(&vm->page_directory);
1447 vm->page_directory = NULL;
1448
1449error_free_sched_entity:
1450 amd_sched_entity_fini(&ring->sched, &vm->entity);
1451
1452 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001453}
1454
1455/**
1456 * amdgpu_vm_fini - tear down a vm instance
1457 *
1458 * @adev: amdgpu_device pointer
1459 * @vm: requested vm
1460 *
Christian König8843dbb2016-01-26 12:17:11 +01001461 * Tear down @vm.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001462 * Unbind the VM and remove all bos from the vm bo list
1463 */
1464void amdgpu_vm_fini(struct amdgpu_device *adev, struct amdgpu_vm *vm)
1465{
1466 struct amdgpu_bo_va_mapping *mapping, *tmp;
1467 int i;
1468
Christian König2d55e452016-02-08 17:37:38 +01001469 amd_sched_entity_fini(vm->entity.sched, &vm->entity);
Christian König2bd9ccf2016-02-01 12:53:58 +01001470
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001471 if (!RB_EMPTY_ROOT(&vm->va)) {
1472 dev_err(adev->dev, "still active bo inside vm\n");
1473 }
1474 rbtree_postorder_for_each_entry_safe(mapping, tmp, &vm->va, it.rb) {
1475 list_del(&mapping->list);
1476 interval_tree_remove(&mapping->it, &vm->va);
1477 kfree(mapping);
1478 }
1479 list_for_each_entry_safe(mapping, tmp, &vm->freed, list) {
1480 list_del(&mapping->list);
1481 kfree(mapping);
1482 }
1483
1484 for (i = 0; i < amdgpu_vm_num_pdes(adev); i++)
Christian Königee1782c2015-12-11 21:01:23 +01001485 amdgpu_bo_unref(&vm->page_tables[i].entry.robj);
Michel Dänzer9571e1d2016-01-19 17:59:46 +09001486 drm_free_large(vm->page_tables);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001487
1488 amdgpu_bo_unref(&vm->page_directory);
Bas Nieuwenhuizen05906de2015-08-14 20:08:40 +02001489 fence_put(vm->page_directory_fence);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001490}
Christian Königea89f8c2015-11-15 20:52:06 +01001491
1492/**
Christian Königa9a78b32016-01-21 10:19:11 +01001493 * amdgpu_vm_manager_init - init the VM manager
1494 *
1495 * @adev: amdgpu_device pointer
1496 *
1497 * Initialize the VM manager structures
1498 */
1499void amdgpu_vm_manager_init(struct amdgpu_device *adev)
1500{
1501 unsigned i;
1502
1503 INIT_LIST_HEAD(&adev->vm_manager.ids_lru);
1504
1505 /* skip over VMID 0, since it is the system VM */
Christian König971fe9a92016-03-01 15:09:25 +01001506 for (i = 1; i < adev->vm_manager.num_ids; ++i) {
1507 amdgpu_vm_reset_id(adev, i);
Christian König832a9022016-02-15 12:33:02 +01001508 amdgpu_sync_create(&adev->vm_manager.ids[i].active);
Christian Königa9a78b32016-01-21 10:19:11 +01001509 list_add_tail(&adev->vm_manager.ids[i].list,
1510 &adev->vm_manager.ids_lru);
Christian König971fe9a92016-03-01 15:09:25 +01001511 }
Christian König2d55e452016-02-08 17:37:38 +01001512
1513 atomic_set(&adev->vm_manager.vm_pte_next_ring, 0);
Christian Königb1c8a812016-05-04 10:34:03 +02001514 atomic64_set(&adev->vm_manager.client_counter, 0);
Christian Königa9a78b32016-01-21 10:19:11 +01001515}
1516
1517/**
Christian Königea89f8c2015-11-15 20:52:06 +01001518 * amdgpu_vm_manager_fini - cleanup VM manager
1519 *
1520 * @adev: amdgpu_device pointer
1521 *
1522 * Cleanup the VM manager and free resources.
1523 */
1524void amdgpu_vm_manager_fini(struct amdgpu_device *adev)
1525{
1526 unsigned i;
1527
Christian Königbcb1ba32016-03-08 15:40:11 +01001528 for (i = 0; i < AMDGPU_NUM_VM; ++i) {
1529 struct amdgpu_vm_id *id = &adev->vm_manager.ids[i];
1530
Christian König832a9022016-02-15 12:33:02 +01001531 fence_put(adev->vm_manager.ids[i].first);
1532 amdgpu_sync_free(&adev->vm_manager.ids[i].active);
Christian Königbcb1ba32016-03-08 15:40:11 +01001533 fence_put(id->flushed_updates);
1534 }
Christian Königea89f8c2015-11-15 20:52:06 +01001535}