blob: 692d0d02b644aeac6f5bc78ae4f2a438da8db878 [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
Alex Deucherd38ceaf2015-04-20 16:55:21 -040056/**
57 * amdgpu_vm_num_pde - return the number of page directory entries
58 *
59 * @adev: amdgpu_device pointer
60 *
Christian König8843dbb2016-01-26 12:17:11 +010061 * Calculate the number of page directory entries.
Alex Deucherd38ceaf2015-04-20 16:55:21 -040062 */
63static unsigned amdgpu_vm_num_pdes(struct amdgpu_device *adev)
64{
65 return adev->vm_manager.max_pfn >> amdgpu_vm_block_size;
66}
67
68/**
69 * amdgpu_vm_directory_size - returns the size of the page directory in bytes
70 *
71 * @adev: amdgpu_device pointer
72 *
Christian König8843dbb2016-01-26 12:17:11 +010073 * Calculate the size of the page directory in bytes.
Alex Deucherd38ceaf2015-04-20 16:55:21 -040074 */
75static unsigned amdgpu_vm_directory_size(struct amdgpu_device *adev)
76{
77 return AMDGPU_GPU_PAGE_ALIGN(amdgpu_vm_num_pdes(adev) * 8);
78}
79
80/**
Christian König56467eb2015-12-11 15:16:32 +010081 * amdgpu_vm_get_pd_bo - add the VM PD to a validation list
Alex Deucherd38ceaf2015-04-20 16:55:21 -040082 *
83 * @vm: vm providing the BOs
Christian König3c0eea62015-12-11 14:39:05 +010084 * @validated: head of validation list
Christian König56467eb2015-12-11 15:16:32 +010085 * @entry: entry to add
Alex Deucherd38ceaf2015-04-20 16:55:21 -040086 *
87 * Add the page directory to the list of BOs to
Christian König56467eb2015-12-11 15:16:32 +010088 * validate for command submission.
Alex Deucherd38ceaf2015-04-20 16:55:21 -040089 */
Christian König56467eb2015-12-11 15:16:32 +010090void amdgpu_vm_get_pd_bo(struct amdgpu_vm *vm,
91 struct list_head *validated,
92 struct amdgpu_bo_list_entry *entry)
Alex Deucherd38ceaf2015-04-20 16:55:21 -040093{
Christian König56467eb2015-12-11 15:16:32 +010094 entry->robj = vm->page_directory;
Christian König56467eb2015-12-11 15:16:32 +010095 entry->priority = 0;
96 entry->tv.bo = &vm->page_directory->tbo;
97 entry->tv.shared = true;
Christian König2f568db2016-02-23 12:36:59 +010098 entry->user_pages = NULL;
Christian König56467eb2015-12-11 15:16:32 +010099 list_add(&entry->tv.head, validated);
100}
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400101
Christian König56467eb2015-12-11 15:16:32 +0100102/**
Christian Königee1782c2015-12-11 21:01:23 +0100103 * amdgpu_vm_get_bos - add the vm BOs to a duplicates list
Christian König56467eb2015-12-11 15:16:32 +0100104 *
105 * @vm: vm providing the BOs
Christian König3c0eea62015-12-11 14:39:05 +0100106 * @duplicates: head of duplicates list
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400107 *
Christian Königee1782c2015-12-11 21:01:23 +0100108 * Add the page directory to the BO duplicates list
109 * for command submission.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400110 */
Christian Königee1782c2015-12-11 21:01:23 +0100111void amdgpu_vm_get_pt_bos(struct amdgpu_vm *vm, struct list_head *duplicates)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400112{
Christian Königee1782c2015-12-11 21:01:23 +0100113 unsigned i;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400114
115 /* add the vm page table to the list */
Christian Königee1782c2015-12-11 21:01:23 +0100116 for (i = 0; i <= vm->max_pde_used; ++i) {
117 struct amdgpu_bo_list_entry *entry = &vm->page_tables[i].entry;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400118
Christian Königee1782c2015-12-11 21:01:23 +0100119 if (!entry->robj)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400120 continue;
121
Christian Königee1782c2015-12-11 21:01:23 +0100122 list_add(&entry->tv.head, duplicates);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400123 }
Christian Königeceb8a12016-01-11 15:35:21 +0100124
125}
126
127/**
128 * amdgpu_vm_move_pt_bos_in_lru - move the PT BOs to the LRU tail
129 *
130 * @adev: amdgpu device instance
131 * @vm: vm providing the BOs
132 *
133 * Move the PT BOs to the tail of the LRU.
134 */
135void amdgpu_vm_move_pt_bos_in_lru(struct amdgpu_device *adev,
136 struct amdgpu_vm *vm)
137{
138 struct ttm_bo_global *glob = adev->mman.bdev.glob;
139 unsigned i;
140
141 spin_lock(&glob->lru_lock);
142 for (i = 0; i <= vm->max_pde_used; ++i) {
143 struct amdgpu_bo_list_entry *entry = &vm->page_tables[i].entry;
144
145 if (!entry->robj)
146 continue;
147
148 ttm_bo_move_to_lru_tail(&entry->robj->tbo);
149 }
150 spin_unlock(&glob->lru_lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400151}
152
153/**
154 * amdgpu_vm_grab_id - allocate the next free VMID
155 *
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400156 * @vm: vm to allocate id for
Christian König7f8a5292015-07-20 16:09:40 +0200157 * @ring: ring we want to submit job to
158 * @sync: sync object where we add dependencies
Christian König94dd0a42016-01-18 17:01:42 +0100159 * @fence: fence protecting ID from reuse
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400160 *
Christian König7f8a5292015-07-20 16:09:40 +0200161 * Allocate an id for the vm, adding fences to the sync obj as necessary.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400162 */
Christian König7f8a5292015-07-20 16:09:40 +0200163int amdgpu_vm_grab_id(struct amdgpu_vm *vm, struct amdgpu_ring *ring,
Christian König4ff37a82016-02-26 16:18:26 +0100164 struct amdgpu_sync *sync, struct fence *fence,
165 unsigned *vm_id, uint64_t *vm_pd_addr)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400166{
Christian König4ff37a82016-02-26 16:18:26 +0100167 uint64_t pd_addr = amdgpu_bo_gpu_offset(vm->page_directory);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400168 struct amdgpu_device *adev = ring->adev;
Christian König4ff37a82016-02-26 16:18:26 +0100169 struct fence *updates = sync->last_vm_update;
Christian König794f50b2016-03-09 22:11:53 +0100170 struct amdgpu_vm_id *id;
171 unsigned i = ring->idx;
Christian Königa9a78b32016-01-21 10:19:11 +0100172 int r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400173
Christian König94dd0a42016-01-18 17:01:42 +0100174 mutex_lock(&adev->vm_manager.lock);
175
Christian König794f50b2016-03-09 22:11:53 +0100176 /* Check if we can use a VMID already assigned to this VM */
177 do {
178 struct fence *flushed;
Christian König1c16c0a2015-11-14 21:31:40 +0100179
Christian König794f50b2016-03-09 22:11:53 +0100180 id = vm->ids[i++];
181 if (i == AMDGPU_MAX_RINGS)
182 i = 0;
Christian Königa9a78b32016-01-21 10:19:11 +0100183
Christian König794f50b2016-03-09 22:11:53 +0100184 /* Check all the prerequisites to using this VMID */
185 if (!id)
186 continue;
Christian König4ff37a82016-02-26 16:18:26 +0100187
Chunming Zhou1f207f82016-04-25 10:23:34 +0800188 if (atomic_long_read(&id->owner) != vm->client_id)
Christian König794f50b2016-03-09 22:11:53 +0100189 continue;
190
191 if (pd_addr != id->pd_gpu_addr)
192 continue;
193
Chunming Zhou178d7cb2016-04-14 15:53:55 +0800194 if (id->last_user != ring &&
Christian König794f50b2016-03-09 22:11:53 +0100195 (!id->last_flush || !fence_is_signaled(id->last_flush)))
196 continue;
197
198 flushed = id->flushed_updates;
199 if (updates && (!flushed || fence_is_later(updates, flushed)))
200 continue;
201
202 /* Good we can use this VMID */
Chunming Zhou178d7cb2016-04-14 15:53:55 +0800203 if (id->last_user == ring) {
Christian König794f50b2016-03-09 22:11:53 +0100204 r = amdgpu_sync_fence(ring->adev, sync,
205 id->first);
Christian König832a9022016-02-15 12:33:02 +0100206 if (r)
207 goto error;
Christian König1c16c0a2015-11-14 21:31:40 +0100208 }
Christian König794f50b2016-03-09 22:11:53 +0100209
210 /* And remember this submission as user of the VMID */
211 r = amdgpu_sync_fence(ring->adev, &id->active, fence);
212 if (r)
213 goto error;
214
215 list_move_tail(&id->list, &adev->vm_manager.ids_lru);
216 vm->ids[ring->idx] = id;
217
218 *vm_id = id - adev->vm_manager.ids;
219 *vm_pd_addr = AMDGPU_VM_NO_FLUSH;
220 trace_amdgpu_vm_grab_id(vm, ring->idx, *vm_id, *vm_pd_addr);
221
222 mutex_unlock(&adev->vm_manager.lock);
223 return 0;
224
225 } while (i != ring->idx);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400226
Christian Königbcb1ba32016-03-08 15:40:11 +0100227 id = list_first_entry(&adev->vm_manager.ids_lru,
228 struct amdgpu_vm_id,
229 list);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400230
Christian König832a9022016-02-15 12:33:02 +0100231 if (!amdgpu_sync_is_idle(&id->active)) {
Chunming Zhou8e9fbeb2016-03-17 11:41:37 +0800232 struct list_head *head = &adev->vm_manager.ids_lru;
Christian König832a9022016-02-15 12:33:02 +0100233 struct amdgpu_vm_id *tmp;
Christian Königbcb1ba32016-03-08 15:40:11 +0100234
235 list_for_each_entry_safe(id, tmp, &adev->vm_manager.ids_lru,
236 list) {
Christian König832a9022016-02-15 12:33:02 +0100237 if (amdgpu_sync_is_idle(&id->active)) {
Christian Königbcb1ba32016-03-08 15:40:11 +0100238 list_move(&id->list, head);
239 head = &id->list;
Chunming Zhou8e9fbeb2016-03-17 11:41:37 +0800240 }
241 }
Christian Königbcb1ba32016-03-08 15:40:11 +0100242 id = list_first_entry(&adev->vm_manager.ids_lru,
243 struct amdgpu_vm_id,
244 list);
Chunming Zhou8e9fbeb2016-03-17 11:41:37 +0800245 }
246
Christian König832a9022016-02-15 12:33:02 +0100247 r = amdgpu_sync_cycle_fences(sync, &id->active, fence);
248 if (r)
249 goto error;
Christian König4ff37a82016-02-26 16:18:26 +0100250
Christian König832a9022016-02-15 12:33:02 +0100251 fence_put(id->first);
252 id->first = fence_get(fence);
Christian König4ff37a82016-02-26 16:18:26 +0100253
Christian König41d9eb22016-03-01 16:46:18 +0100254 fence_put(id->last_flush);
255 id->last_flush = NULL;
256
Christian König832a9022016-02-15 12:33:02 +0100257 fence_put(id->flushed_updates);
258 id->flushed_updates = fence_get(updates);
Christian König4ff37a82016-02-26 16:18:26 +0100259
Christian König832a9022016-02-15 12:33:02 +0100260 id->pd_gpu_addr = pd_addr;
Christian König4ff37a82016-02-26 16:18:26 +0100261
Christian König832a9022016-02-15 12:33:02 +0100262 list_move_tail(&id->list, &adev->vm_manager.ids_lru);
Chunming Zhou68befeb2016-04-14 13:42:32 +0800263 id->last_user = ring;
Chunming Zhou1f207f82016-04-25 10:23:34 +0800264 atomic_long_set(&id->owner, vm->client_id);
Christian König832a9022016-02-15 12:33:02 +0100265 vm->ids[ring->idx] = id;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400266
Christian König832a9022016-02-15 12:33:02 +0100267 *vm_id = id - adev->vm_manager.ids;
268 *vm_pd_addr = pd_addr;
269 trace_amdgpu_vm_grab_id(vm, ring->idx, *vm_id, *vm_pd_addr);
270
271error:
Christian König94dd0a42016-01-18 17:01:42 +0100272 mutex_unlock(&adev->vm_manager.lock);
Christian Königa9a78b32016-01-21 10:19:11 +0100273 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400274}
275
276/**
277 * amdgpu_vm_flush - hardware flush the vm
278 *
279 * @ring: ring to use for flush
Christian Königcffadc82016-03-01 13:34:49 +0100280 * @vm_id: vmid number to use
Christian König4ff37a82016-02-26 16:18:26 +0100281 * @pd_addr: address of the page directory
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400282 *
Christian König4ff37a82016-02-26 16:18:26 +0100283 * Emit a VM flush when it is necessary.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400284 */
Christian König41d9eb22016-03-01 16:46:18 +0100285int amdgpu_vm_flush(struct amdgpu_ring *ring,
286 unsigned vm_id, uint64_t pd_addr,
287 uint32_t gds_base, uint32_t gds_size,
288 uint32_t gws_base, uint32_t gws_size,
289 uint32_t oa_base, uint32_t oa_size)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400290{
Christian König971fe9a92016-03-01 15:09:25 +0100291 struct amdgpu_device *adev = ring->adev;
Christian Königbcb1ba32016-03-08 15:40:11 +0100292 struct amdgpu_vm_id *id = &adev->vm_manager.ids[vm_id];
Christian Königd564a062016-03-01 15:51:53 +0100293 bool gds_switch_needed = ring->funcs->emit_gds_switch && (
Christian Königbcb1ba32016-03-08 15:40:11 +0100294 id->gds_base != gds_base ||
295 id->gds_size != gds_size ||
296 id->gws_base != gws_base ||
297 id->gws_size != gws_size ||
298 id->oa_base != oa_base ||
299 id->oa_size != oa_size);
Christian König41d9eb22016-03-01 16:46:18 +0100300 int r;
Christian Königd564a062016-03-01 15:51:53 +0100301
302 if (ring->funcs->emit_pipeline_sync && (
303 pd_addr != AMDGPU_VM_NO_FLUSH || gds_switch_needed))
304 amdgpu_ring_emit_pipeline_sync(ring);
Christian König971fe9a92016-03-01 15:09:25 +0100305
Monk Liuc5637832016-04-19 20:11:32 +0800306 if (ring->funcs->emit_vm_flush &&
307 pd_addr != AMDGPU_VM_NO_FLUSH) {
Christian König41d9eb22016-03-01 16:46:18 +0100308 struct fence *fence;
309
Christian Königcffadc82016-03-01 13:34:49 +0100310 trace_amdgpu_vm_flush(pd_addr, ring->idx, vm_id);
311 amdgpu_ring_emit_vm_flush(ring, vm_id, pd_addr);
Christian König41d9eb22016-03-01 16:46:18 +0100312
313 mutex_lock(&adev->vm_manager.lock);
Chunming Zhou68befeb2016-04-14 13:42:32 +0800314 if ((id->pd_gpu_addr == pd_addr) && (id->last_user == ring)) {
315 r = amdgpu_fence_emit(ring, &fence);
316 if (r) {
317 mutex_unlock(&adev->vm_manager.lock);
318 return r;
319 }
320 fence_put(id->last_flush);
321 id->last_flush = fence;
322 }
Christian König41d9eb22016-03-01 16:46:18 +0100323 mutex_unlock(&adev->vm_manager.lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400324 }
Christian Königcffadc82016-03-01 13:34:49 +0100325
Christian Königd564a062016-03-01 15:51:53 +0100326 if (gds_switch_needed) {
Christian Königbcb1ba32016-03-08 15:40:11 +0100327 id->gds_base = gds_base;
328 id->gds_size = gds_size;
329 id->gws_base = gws_base;
330 id->gws_size = gws_size;
331 id->oa_base = oa_base;
332 id->oa_size = oa_size;
Christian Königcffadc82016-03-01 13:34:49 +0100333 amdgpu_ring_emit_gds_switch(ring, vm_id,
334 gds_base, gds_size,
335 gws_base, gws_size,
336 oa_base, oa_size);
Christian König971fe9a92016-03-01 15:09:25 +0100337 }
Christian König41d9eb22016-03-01 16:46:18 +0100338
339 return 0;
Christian König971fe9a92016-03-01 15:09:25 +0100340}
341
342/**
343 * amdgpu_vm_reset_id - reset VMID to zero
344 *
345 * @adev: amdgpu device structure
346 * @vm_id: vmid number to use
347 *
348 * Reset saved GDW, GWS and OA to force switch on next flush.
349 */
350void amdgpu_vm_reset_id(struct amdgpu_device *adev, unsigned vm_id)
351{
Christian Königbcb1ba32016-03-08 15:40:11 +0100352 struct amdgpu_vm_id *id = &adev->vm_manager.ids[vm_id];
Christian König971fe9a92016-03-01 15:09:25 +0100353
Christian Königbcb1ba32016-03-08 15:40:11 +0100354 id->gds_base = 0;
355 id->gds_size = 0;
356 id->gws_base = 0;
357 id->gws_size = 0;
358 id->oa_base = 0;
359 id->oa_size = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400360}
361
362/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400363 * amdgpu_vm_bo_find - find the bo_va for a specific vm & bo
364 *
365 * @vm: requested vm
366 * @bo: requested buffer object
367 *
Christian König8843dbb2016-01-26 12:17:11 +0100368 * Find @bo inside the requested vm.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400369 * Search inside the @bos vm list for the requested vm
370 * Returns the found bo_va or NULL if none is found
371 *
372 * Object has to be reserved!
373 */
374struct amdgpu_bo_va *amdgpu_vm_bo_find(struct amdgpu_vm *vm,
375 struct amdgpu_bo *bo)
376{
377 struct amdgpu_bo_va *bo_va;
378
379 list_for_each_entry(bo_va, &bo->va, bo_list) {
380 if (bo_va->vm == vm) {
381 return bo_va;
382 }
383 }
384 return NULL;
385}
386
387/**
388 * amdgpu_vm_update_pages - helper to call the right asic function
389 *
390 * @adev: amdgpu_device pointer
Christian Königfa3ab3c2016-03-18 21:00:35 +0100391 * @src: address where to copy page table entries from
392 * @pages_addr: DMA addresses to use for mapping
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400393 * @ib: indirect buffer to fill with commands
394 * @pe: addr of the page entry
395 * @addr: dst addr to write into pe
396 * @count: number of page entries to update
397 * @incr: increase next addr by incr bytes
398 * @flags: hw access flags
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400399 *
400 * Traces the parameters and calls the right asic functions
401 * to setup the page table using the DMA.
402 */
403static void amdgpu_vm_update_pages(struct amdgpu_device *adev,
Christian Königfa3ab3c2016-03-18 21:00:35 +0100404 uint64_t src,
405 dma_addr_t *pages_addr,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400406 struct amdgpu_ib *ib,
407 uint64_t pe, uint64_t addr,
408 unsigned count, uint32_t incr,
Christian König9ab21462015-11-30 14:19:26 +0100409 uint32_t flags)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400410{
411 trace_amdgpu_vm_set_page(pe, addr, count, incr, flags);
412
Christian Königfa3ab3c2016-03-18 21:00:35 +0100413 if (src) {
414 src += (addr >> 12) * 8;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400415 amdgpu_vm_copy_pte(adev, ib, pe, src, count);
416
Christian Königfa3ab3c2016-03-18 21:00:35 +0100417 } else if (pages_addr) {
Christian Königb07c9d22015-11-30 13:26:07 +0100418 amdgpu_vm_write_pte(adev, ib, pages_addr, pe, addr,
419 count, incr, flags);
420
421 } else if (count < 3) {
422 amdgpu_vm_write_pte(adev, ib, NULL, pe, addr,
423 count, incr, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400424
425 } else {
426 amdgpu_vm_set_pte_pde(adev, ib, pe, addr,
427 count, incr, flags);
428 }
429}
430
431/**
432 * amdgpu_vm_clear_bo - initially clear the page dir/table
433 *
434 * @adev: amdgpu_device pointer
435 * @bo: bo to clear
Chunming Zhouef9f0a82015-11-13 13:43:22 +0800436 *
437 * need to reserve bo first before calling it.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400438 */
439static int amdgpu_vm_clear_bo(struct amdgpu_device *adev,
Christian König2bd9ccf2016-02-01 12:53:58 +0100440 struct amdgpu_vm *vm,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400441 struct amdgpu_bo *bo)
442{
Christian König2d55e452016-02-08 17:37:38 +0100443 struct amdgpu_ring *ring;
Chunming Zhou4af9f072015-08-03 12:57:31 +0800444 struct fence *fence = NULL;
Christian Königd71518b2016-02-01 12:20:25 +0100445 struct amdgpu_job *job;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400446 unsigned entries;
447 uint64_t addr;
448 int r;
449
Christian König2d55e452016-02-08 17:37:38 +0100450 ring = container_of(vm->entity.sched, struct amdgpu_ring, sched);
451
monk.liuca952612015-05-25 14:44:05 +0800452 r = reservation_object_reserve_shared(bo->tbo.resv);
453 if (r)
454 return r;
455
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400456 r = ttm_bo_validate(&bo->tbo, &bo->placement, true, false);
457 if (r)
Chunming Zhouef9f0a82015-11-13 13:43:22 +0800458 goto error;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400459
460 addr = amdgpu_bo_gpu_offset(bo);
461 entries = amdgpu_bo_size(bo) / 8;
462
Christian Königd71518b2016-02-01 12:20:25 +0100463 r = amdgpu_job_alloc_with_ib(adev, 64, &job);
464 if (r)
Chunming Zhouef9f0a82015-11-13 13:43:22 +0800465 goto error;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400466
Christian Königfa3ab3c2016-03-18 21:00:35 +0100467 amdgpu_vm_update_pages(adev, 0, NULL, &job->ibs[0], addr, 0, entries,
Christian Königd71518b2016-02-01 12:20:25 +0100468 0, 0);
469 amdgpu_ring_pad_ib(ring, &job->ibs[0]);
470
471 WARN_ON(job->ibs[0].length_dw > 64);
Christian König2bd9ccf2016-02-01 12:53:58 +0100472 r = amdgpu_job_submit(job, ring, &vm->entity,
473 AMDGPU_FENCE_OWNER_VM, &fence);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400474 if (r)
475 goto error_free;
476
Christian Königd71518b2016-02-01 12:20:25 +0100477 amdgpu_bo_fence(bo, fence, true);
Chunming Zhou281b4222015-08-12 12:58:31 +0800478 fence_put(fence);
Chunming Zhoucadf97b2016-01-15 11:25:00 +0800479 return 0;
Chunming Zhouef9f0a82015-11-13 13:43:22 +0800480
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400481error_free:
Christian Königd71518b2016-02-01 12:20:25 +0100482 amdgpu_job_free(job);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400483
Chunming Zhouef9f0a82015-11-13 13:43:22 +0800484error:
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400485 return r;
486}
487
488/**
Christian Königb07c9d22015-11-30 13:26:07 +0100489 * amdgpu_vm_map_gart - Resolve gart mapping of addr
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400490 *
Christian Königb07c9d22015-11-30 13:26:07 +0100491 * @pages_addr: optional DMA address to use for lookup
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400492 * @addr: the unmapped addr
493 *
494 * Look up the physical address of the page that the pte resolves
Christian Königb07c9d22015-11-30 13:26:07 +0100495 * to and return the pointer for the page table entry.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400496 */
Christian Königb07c9d22015-11-30 13:26:07 +0100497uint64_t amdgpu_vm_map_gart(const dma_addr_t *pages_addr, uint64_t addr)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400498{
499 uint64_t result;
500
Christian Königb07c9d22015-11-30 13:26:07 +0100501 if (pages_addr) {
502 /* page table offset */
503 result = pages_addr[addr >> PAGE_SHIFT];
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400504
Christian Königb07c9d22015-11-30 13:26:07 +0100505 /* in case cpu page size != gpu page size*/
506 result |= addr & (~PAGE_MASK);
507
508 } else {
509 /* No mapping required */
510 result = addr;
511 }
512
513 result &= 0xFFFFFFFFFFFFF000ULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400514
515 return result;
516}
517
518/**
519 * amdgpu_vm_update_pdes - make sure that page directory is valid
520 *
521 * @adev: amdgpu_device pointer
522 * @vm: requested vm
523 * @start: start of GPU address range
524 * @end: end of GPU address range
525 *
526 * Allocates new page tables if necessary
Christian König8843dbb2016-01-26 12:17:11 +0100527 * and updates the page directory.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400528 * Returns 0 for success, error for failure.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400529 */
530int amdgpu_vm_update_page_directory(struct amdgpu_device *adev,
531 struct amdgpu_vm *vm)
532{
Christian König2d55e452016-02-08 17:37:38 +0100533 struct amdgpu_ring *ring;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400534 struct amdgpu_bo *pd = vm->page_directory;
535 uint64_t pd_addr = amdgpu_bo_gpu_offset(pd);
536 uint32_t incr = AMDGPU_VM_PTE_COUNT * 8;
537 uint64_t last_pde = ~0, last_pt = ~0;
538 unsigned count = 0, pt_idx, ndw;
Christian Königd71518b2016-02-01 12:20:25 +0100539 struct amdgpu_job *job;
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800540 struct amdgpu_ib *ib;
Chunming Zhou4af9f072015-08-03 12:57:31 +0800541 struct fence *fence = NULL;
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800542
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400543 int r;
544
Christian König2d55e452016-02-08 17:37:38 +0100545 ring = container_of(vm->entity.sched, struct amdgpu_ring, sched);
546
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400547 /* padding, etc. */
548 ndw = 64;
549
550 /* assume the worst case */
551 ndw += vm->max_pde_used * 6;
552
Christian Königd71518b2016-02-01 12:20:25 +0100553 r = amdgpu_job_alloc_with_ib(adev, ndw * 4, &job);
554 if (r)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400555 return r;
Christian Königd71518b2016-02-01 12:20:25 +0100556
557 ib = &job->ibs[0];
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400558
559 /* walk over the address space and update the page directory */
560 for (pt_idx = 0; pt_idx <= vm->max_pde_used; ++pt_idx) {
Christian Königee1782c2015-12-11 21:01:23 +0100561 struct amdgpu_bo *bo = vm->page_tables[pt_idx].entry.robj;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400562 uint64_t pde, pt;
563
564 if (bo == NULL)
565 continue;
566
567 pt = amdgpu_bo_gpu_offset(bo);
568 if (vm->page_tables[pt_idx].addr == pt)
569 continue;
570 vm->page_tables[pt_idx].addr = pt;
571
572 pde = pd_addr + pt_idx * 8;
573 if (((last_pde + 8 * count) != pde) ||
574 ((last_pt + incr * count) != pt)) {
575
576 if (count) {
Christian Königfa3ab3c2016-03-18 21:00:35 +0100577 amdgpu_vm_update_pages(adev, 0, NULL, ib,
Christian König9ab21462015-11-30 14:19:26 +0100578 last_pde, last_pt,
579 count, incr,
580 AMDGPU_PTE_VALID);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400581 }
582
583 count = 1;
584 last_pde = pde;
585 last_pt = pt;
586 } else {
587 ++count;
588 }
589 }
590
591 if (count)
Christian Königfa3ab3c2016-03-18 21:00:35 +0100592 amdgpu_vm_update_pages(adev, 0, NULL, ib, last_pde, last_pt,
Christian König9ab21462015-11-30 14:19:26 +0100593 count, incr, AMDGPU_PTE_VALID);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400594
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800595 if (ib->length_dw != 0) {
Christian König9e5d53092016-01-31 12:20:55 +0100596 amdgpu_ring_pad_ib(ring, ib);
Christian Könige86f9ce2016-02-08 12:13:05 +0100597 amdgpu_sync_resv(adev, &job->sync, pd->tbo.resv,
598 AMDGPU_FENCE_OWNER_VM);
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800599 WARN_ON(ib->length_dw > ndw);
Christian König2bd9ccf2016-02-01 12:53:58 +0100600 r = amdgpu_job_submit(job, ring, &vm->entity,
601 AMDGPU_FENCE_OWNER_VM, &fence);
Chunming Zhou4af9f072015-08-03 12:57:31 +0800602 if (r)
603 goto error_free;
Bas Nieuwenhuizen05906de2015-08-14 20:08:40 +0200604
Chunming Zhou4af9f072015-08-03 12:57:31 +0800605 amdgpu_bo_fence(pd, fence, true);
Bas Nieuwenhuizen05906de2015-08-14 20:08:40 +0200606 fence_put(vm->page_directory_fence);
607 vm->page_directory_fence = fence_get(fence);
Chunming Zhou281b4222015-08-12 12:58:31 +0800608 fence_put(fence);
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800609
Christian Königd71518b2016-02-01 12:20:25 +0100610 } else {
611 amdgpu_job_free(job);
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800612 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400613
614 return 0;
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800615
616error_free:
Christian Königd71518b2016-02-01 12:20:25 +0100617 amdgpu_job_free(job);
Chunming Zhou4af9f072015-08-03 12:57:31 +0800618 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400619}
620
621/**
622 * amdgpu_vm_frag_ptes - add fragment information to PTEs
623 *
624 * @adev: amdgpu_device pointer
Christian Königfa3ab3c2016-03-18 21:00:35 +0100625 * @src: address where to copy page table entries from
626 * @pages_addr: DMA addresses to use for mapping
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400627 * @ib: IB for the update
628 * @pe_start: first PTE to handle
629 * @pe_end: last PTE to handle
630 * @addr: addr those PTEs should point to
631 * @flags: hw mapping flags
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400632 */
633static void amdgpu_vm_frag_ptes(struct amdgpu_device *adev,
Christian Königfa3ab3c2016-03-18 21:00:35 +0100634 uint64_t src,
635 dma_addr_t *pages_addr,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400636 struct amdgpu_ib *ib,
637 uint64_t pe_start, uint64_t pe_end,
Christian König9ab21462015-11-30 14:19:26 +0100638 uint64_t addr, uint32_t flags)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400639{
640 /**
641 * The MC L1 TLB supports variable sized pages, based on a fragment
642 * field in the PTE. When this field is set to a non-zero value, page
643 * granularity is increased from 4KB to (1 << (12 + frag)). The PTE
644 * flags are considered valid for all PTEs within the fragment range
645 * and corresponding mappings are assumed to be physically contiguous.
646 *
647 * The L1 TLB can store a single PTE for the whole fragment,
648 * significantly increasing the space available for translation
649 * caching. This leads to large improvements in throughput when the
650 * TLB is under pressure.
651 *
652 * The L2 TLB distributes small and large fragments into two
653 * asymmetric partitions. The large fragment cache is significantly
654 * larger. Thus, we try to use large fragments wherever possible.
655 * Userspace can support this by aligning virtual base address and
656 * allocation size to the fragment size.
657 */
658
659 /* SI and newer are optimized for 64KB */
660 uint64_t frag_flags = AMDGPU_PTE_FRAG_64KB;
661 uint64_t frag_align = 0x80;
662
663 uint64_t frag_start = ALIGN(pe_start, frag_align);
664 uint64_t frag_end = pe_end & ~(frag_align - 1);
665
666 unsigned count;
667
Christian König31f6c1f2016-01-26 12:37:49 +0100668 /* Abort early if there isn't anything to do */
669 if (pe_start == pe_end)
670 return;
671
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400672 /* system pages are non continuously */
Christian Königfa3ab3c2016-03-18 21:00:35 +0100673 if (src || pages_addr || !(flags & AMDGPU_PTE_VALID) ||
674 (frag_start >= frag_end)) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400675
676 count = (pe_end - pe_start) / 8;
Christian Königfa3ab3c2016-03-18 21:00:35 +0100677 amdgpu_vm_update_pages(adev, src, pages_addr, ib, pe_start,
Christian König9ab21462015-11-30 14:19:26 +0100678 addr, count, AMDGPU_GPU_PAGE_SIZE,
679 flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400680 return;
681 }
682
683 /* handle the 4K area at the beginning */
684 if (pe_start != frag_start) {
685 count = (frag_start - pe_start) / 8;
Christian Königfa3ab3c2016-03-18 21:00:35 +0100686 amdgpu_vm_update_pages(adev, 0, NULL, ib, pe_start, addr,
Christian König9ab21462015-11-30 14:19:26 +0100687 count, AMDGPU_GPU_PAGE_SIZE, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400688 addr += AMDGPU_GPU_PAGE_SIZE * count;
689 }
690
691 /* handle the area in the middle */
692 count = (frag_end - frag_start) / 8;
Christian Königfa3ab3c2016-03-18 21:00:35 +0100693 amdgpu_vm_update_pages(adev, 0, NULL, ib, frag_start, addr, count,
Christian König9ab21462015-11-30 14:19:26 +0100694 AMDGPU_GPU_PAGE_SIZE, flags | frag_flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400695
696 /* handle the 4K area at the end */
697 if (frag_end != pe_end) {
698 addr += AMDGPU_GPU_PAGE_SIZE * count;
699 count = (pe_end - frag_end) / 8;
Christian Königfa3ab3c2016-03-18 21:00:35 +0100700 amdgpu_vm_update_pages(adev, 0, NULL, ib, frag_end, addr,
Christian König9ab21462015-11-30 14:19:26 +0100701 count, AMDGPU_GPU_PAGE_SIZE, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400702 }
703}
704
705/**
706 * amdgpu_vm_update_ptes - make sure that page tables are valid
707 *
708 * @adev: amdgpu_device pointer
Christian Königfa3ab3c2016-03-18 21:00:35 +0100709 * @src: address where to copy page table entries from
710 * @pages_addr: DMA addresses to use for mapping
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400711 * @vm: requested vm
712 * @start: start of GPU address range
713 * @end: end of GPU address range
714 * @dst: destination address to map to
715 * @flags: mapping flags
716 *
Christian König8843dbb2016-01-26 12:17:11 +0100717 * Update the page tables in the range @start - @end.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400718 */
Christian Königa1e08d32016-01-26 11:40:46 +0100719static void amdgpu_vm_update_ptes(struct amdgpu_device *adev,
Christian Königfa3ab3c2016-03-18 21:00:35 +0100720 uint64_t src,
721 dma_addr_t *pages_addr,
Christian Königa1e08d32016-01-26 11:40:46 +0100722 struct amdgpu_vm *vm,
723 struct amdgpu_ib *ib,
724 uint64_t start, uint64_t end,
725 uint64_t dst, uint32_t flags)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400726{
Christian König31f6c1f2016-01-26 12:37:49 +0100727 const uint64_t mask = AMDGPU_VM_PTE_COUNT - 1;
728
729 uint64_t last_pe_start = ~0, last_pe_end = ~0, last_dst = ~0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400730 uint64_t addr;
731
732 /* walk over the address space and update the page tables */
733 for (addr = start; addr < end; ) {
734 uint64_t pt_idx = addr >> amdgpu_vm_block_size;
Christian Königee1782c2015-12-11 21:01:23 +0100735 struct amdgpu_bo *pt = vm->page_tables[pt_idx].entry.robj;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400736 unsigned nptes;
Christian König31f6c1f2016-01-26 12:37:49 +0100737 uint64_t pe_start;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400738
739 if ((addr & ~mask) == (end & ~mask))
740 nptes = end - addr;
741 else
742 nptes = AMDGPU_VM_PTE_COUNT - (addr & mask);
743
Christian König31f6c1f2016-01-26 12:37:49 +0100744 pe_start = amdgpu_bo_gpu_offset(pt);
745 pe_start += (addr & mask) * 8;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400746
Christian König31f6c1f2016-01-26 12:37:49 +0100747 if (last_pe_end != pe_start) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400748
Christian Königfa3ab3c2016-03-18 21:00:35 +0100749 amdgpu_vm_frag_ptes(adev, src, pages_addr, ib,
Christian König31f6c1f2016-01-26 12:37:49 +0100750 last_pe_start, last_pe_end,
751 last_dst, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400752
Christian König31f6c1f2016-01-26 12:37:49 +0100753 last_pe_start = pe_start;
754 last_pe_end = pe_start + 8 * nptes;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400755 last_dst = dst;
756 } else {
Christian König31f6c1f2016-01-26 12:37:49 +0100757 last_pe_end += 8 * nptes;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400758 }
759
760 addr += nptes;
761 dst += nptes * AMDGPU_GPU_PAGE_SIZE;
762 }
763
Christian Königfa3ab3c2016-03-18 21:00:35 +0100764 amdgpu_vm_frag_ptes(adev, src, pages_addr, ib, last_pe_start,
765 last_pe_end, last_dst, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400766}
767
768/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400769 * amdgpu_vm_bo_update_mapping - update a mapping in the vm page table
770 *
771 * @adev: amdgpu_device pointer
Christian Königfa3ab3c2016-03-18 21:00:35 +0100772 * @src: address where to copy page table entries from
773 * @pages_addr: DMA addresses to use for mapping
Christian Königa14faa62016-01-25 14:27:31 +0100774 * @vm: requested vm
775 * @start: start of mapped range
776 * @last: last mapped entry
777 * @flags: flags for the entries
778 * @addr: addr to set the area to
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400779 * @fence: optional resulting fence
780 *
Christian Königa14faa62016-01-25 14:27:31 +0100781 * Fill in the page table entries between @start and @last.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400782 * Returns 0 for success, -EINVAL for failure.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400783 */
784static int amdgpu_vm_bo_update_mapping(struct amdgpu_device *adev,
Christian Königfa3ab3c2016-03-18 21:00:35 +0100785 uint64_t src,
786 dma_addr_t *pages_addr,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400787 struct amdgpu_vm *vm,
Christian Königa14faa62016-01-25 14:27:31 +0100788 uint64_t start, uint64_t last,
789 uint32_t flags, uint64_t addr,
790 struct fence **fence)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400791{
Christian König2d55e452016-02-08 17:37:38 +0100792 struct amdgpu_ring *ring;
Christian Königa1e08d32016-01-26 11:40:46 +0100793 void *owner = AMDGPU_FENCE_OWNER_VM;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400794 unsigned nptes, ncmds, ndw;
Christian Königd71518b2016-02-01 12:20:25 +0100795 struct amdgpu_job *job;
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800796 struct amdgpu_ib *ib;
Chunming Zhou4af9f072015-08-03 12:57:31 +0800797 struct fence *f = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400798 int r;
799
Christian König2d55e452016-02-08 17:37:38 +0100800 ring = container_of(vm->entity.sched, struct amdgpu_ring, sched);
801
Christian Königa1e08d32016-01-26 11:40:46 +0100802 /* sync to everything on unmapping */
803 if (!(flags & AMDGPU_PTE_VALID))
804 owner = AMDGPU_FENCE_OWNER_UNDEFINED;
805
Christian Königa14faa62016-01-25 14:27:31 +0100806 nptes = last - start + 1;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400807
808 /*
809 * reserve space for one command every (1 << BLOCK_SIZE)
810 * entries or 2k dwords (whatever is smaller)
811 */
812 ncmds = (nptes >> min(amdgpu_vm_block_size, 11)) + 1;
813
814 /* padding, etc. */
815 ndw = 64;
816
Christian Königfa3ab3c2016-03-18 21:00:35 +0100817 if (src) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400818 /* only copy commands needed */
819 ndw += ncmds * 7;
820
Christian Königfa3ab3c2016-03-18 21:00:35 +0100821 } else if (pages_addr) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400822 /* header for write data commands */
823 ndw += ncmds * 4;
824
825 /* body of write data command */
826 ndw += nptes * 2;
827
828 } else {
829 /* set page commands needed */
830 ndw += ncmds * 10;
831
832 /* two extra commands for begin/end of fragment */
833 ndw += 2 * 10;
834 }
835
Christian Königd71518b2016-02-01 12:20:25 +0100836 r = amdgpu_job_alloc_with_ib(adev, ndw * 4, &job);
837 if (r)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400838 return r;
Christian Königd71518b2016-02-01 12:20:25 +0100839
840 ib = &job->ibs[0];
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800841
Christian Könige86f9ce2016-02-08 12:13:05 +0100842 r = amdgpu_sync_resv(adev, &job->sync, vm->page_directory->tbo.resv,
Christian Königa1e08d32016-01-26 11:40:46 +0100843 owner);
844 if (r)
845 goto error_free;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400846
Christian Königa1e08d32016-01-26 11:40:46 +0100847 r = reservation_object_reserve_shared(vm->page_directory->tbo.resv);
848 if (r)
849 goto error_free;
850
Christian Königfa3ab3c2016-03-18 21:00:35 +0100851 amdgpu_vm_update_ptes(adev, src, pages_addr, vm, ib, start,
852 last + 1, addr, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400853
Christian König9e5d53092016-01-31 12:20:55 +0100854 amdgpu_ring_pad_ib(ring, ib);
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800855 WARN_ON(ib->length_dw > ndw);
Christian König2bd9ccf2016-02-01 12:53:58 +0100856 r = amdgpu_job_submit(job, ring, &vm->entity,
857 AMDGPU_FENCE_OWNER_VM, &f);
Chunming Zhou4af9f072015-08-03 12:57:31 +0800858 if (r)
859 goto error_free;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400860
Christian Königbf60efd2015-09-04 10:47:56 +0200861 amdgpu_bo_fence(vm->page_directory, f, true);
Chunming Zhou4af9f072015-08-03 12:57:31 +0800862 if (fence) {
863 fence_put(*fence);
864 *fence = fence_get(f);
865 }
Chunming Zhou281b4222015-08-12 12:58:31 +0800866 fence_put(f);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400867 return 0;
Chunming Zhoud5fc5e82015-07-21 16:52:10 +0800868
869error_free:
Christian Königd71518b2016-02-01 12:20:25 +0100870 amdgpu_job_free(job);
Chunming Zhou4af9f072015-08-03 12:57:31 +0800871 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400872}
873
874/**
Christian Königa14faa62016-01-25 14:27:31 +0100875 * amdgpu_vm_bo_split_mapping - split a mapping into smaller chunks
876 *
877 * @adev: amdgpu_device pointer
Christian König8358dce2016-03-30 10:50:25 +0200878 * @gtt_flags: flags as they are used for GTT
879 * @pages_addr: DMA addresses to use for mapping
Christian Königa14faa62016-01-25 14:27:31 +0100880 * @vm: requested vm
881 * @mapping: mapped range and flags to use for the update
882 * @addr: addr to set the area to
Christian König8358dce2016-03-30 10:50:25 +0200883 * @flags: HW flags for the mapping
Christian Königa14faa62016-01-25 14:27:31 +0100884 * @fence: optional resulting fence
885 *
886 * Split the mapping into smaller chunks so that each update fits
887 * into a SDMA IB.
888 * Returns 0 for success, -EINVAL for failure.
889 */
890static int amdgpu_vm_bo_split_mapping(struct amdgpu_device *adev,
Christian Königa14faa62016-01-25 14:27:31 +0100891 uint32_t gtt_flags,
Christian König8358dce2016-03-30 10:50:25 +0200892 dma_addr_t *pages_addr,
Christian Königa14faa62016-01-25 14:27:31 +0100893 struct amdgpu_vm *vm,
894 struct amdgpu_bo_va_mapping *mapping,
Christian Königfa3ab3c2016-03-18 21:00:35 +0100895 uint32_t flags, uint64_t addr,
896 struct fence **fence)
Christian Königa14faa62016-01-25 14:27:31 +0100897{
898 const uint64_t max_size = 64ULL * 1024ULL * 1024ULL / AMDGPU_GPU_PAGE_SIZE;
899
Christian Königfa3ab3c2016-03-18 21:00:35 +0100900 uint64_t src = 0, start = mapping->it.start;
Christian Königa14faa62016-01-25 14:27:31 +0100901 int r;
902
903 /* normally,bo_va->flags only contians READABLE and WIRTEABLE bit go here
904 * but in case of something, we filter the flags in first place
905 */
906 if (!(mapping->flags & AMDGPU_PTE_READABLE))
907 flags &= ~AMDGPU_PTE_READABLE;
908 if (!(mapping->flags & AMDGPU_PTE_WRITEABLE))
909 flags &= ~AMDGPU_PTE_WRITEABLE;
910
911 trace_amdgpu_vm_bo_update(mapping);
912
Christian König8358dce2016-03-30 10:50:25 +0200913 if (pages_addr) {
Christian Königfa3ab3c2016-03-18 21:00:35 +0100914 if (flags == gtt_flags)
915 src = adev->gart.table_addr + (addr >> 12) * 8;
Christian Königfa3ab3c2016-03-18 21:00:35 +0100916 addr = 0;
917 }
Christian Königa14faa62016-01-25 14:27:31 +0100918 addr += mapping->offset;
919
Christian König8358dce2016-03-30 10:50:25 +0200920 if (!pages_addr || src)
Christian Königfa3ab3c2016-03-18 21:00:35 +0100921 return amdgpu_vm_bo_update_mapping(adev, src, pages_addr, vm,
Christian Königa14faa62016-01-25 14:27:31 +0100922 start, mapping->it.last,
923 flags, addr, fence);
924
925 while (start != mapping->it.last + 1) {
926 uint64_t last;
927
Felix Kuehlingfb29b572016-03-03 19:13:20 -0500928 last = min((uint64_t)mapping->it.last, start + max_size - 1);
Christian Königfa3ab3c2016-03-18 21:00:35 +0100929 r = amdgpu_vm_bo_update_mapping(adev, src, pages_addr, vm,
Christian Königa14faa62016-01-25 14:27:31 +0100930 start, last, flags, addr,
931 fence);
932 if (r)
933 return r;
934
935 start = last + 1;
Felix Kuehlingfb29b572016-03-03 19:13:20 -0500936 addr += max_size * AMDGPU_GPU_PAGE_SIZE;
Christian Königa14faa62016-01-25 14:27:31 +0100937 }
938
939 return 0;
940}
941
942/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400943 * amdgpu_vm_bo_update - update all BO mappings in the vm page table
944 *
945 * @adev: amdgpu_device pointer
946 * @bo_va: requested BO and VM object
947 * @mem: ttm mem
948 *
949 * Fill in the page table entries for @bo_va.
950 * Returns 0 for success, -EINVAL for failure.
951 *
952 * Object have to be reserved and mutex must be locked!
953 */
954int amdgpu_vm_bo_update(struct amdgpu_device *adev,
955 struct amdgpu_bo_va *bo_va,
956 struct ttm_mem_reg *mem)
957{
958 struct amdgpu_vm *vm = bo_va->vm;
959 struct amdgpu_bo_va_mapping *mapping;
Christian König8358dce2016-03-30 10:50:25 +0200960 dma_addr_t *pages_addr = NULL;
Christian Königfa3ab3c2016-03-18 21:00:35 +0100961 uint32_t gtt_flags, flags;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400962 uint64_t addr;
963 int r;
964
965 if (mem) {
Christian König8358dce2016-03-30 10:50:25 +0200966 struct ttm_dma_tt *ttm;
967
Christian Königb7d698d2015-09-07 12:32:09 +0200968 addr = (u64)mem->start << PAGE_SHIFT;
Christian König9ab21462015-11-30 14:19:26 +0100969 switch (mem->mem_type) {
970 case TTM_PL_TT:
Christian König8358dce2016-03-30 10:50:25 +0200971 ttm = container_of(bo_va->bo->tbo.ttm, struct
972 ttm_dma_tt, ttm);
973 pages_addr = ttm->dma_address;
Christian König9ab21462015-11-30 14:19:26 +0100974 break;
975
976 case TTM_PL_VRAM:
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400977 addr += adev->vm_manager.vram_base_offset;
Christian König9ab21462015-11-30 14:19:26 +0100978 break;
979
980 default:
981 break;
982 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400983 } else {
984 addr = 0;
985 }
986
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400987 flags = amdgpu_ttm_tt_pte_flags(adev, bo_va->bo->tbo.ttm, mem);
Christian Königfa3ab3c2016-03-18 21:00:35 +0100988 gtt_flags = (adev == bo_va->bo->adev) ? flags : 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400989
Christian König7fc11952015-07-30 11:53:42 +0200990 spin_lock(&vm->status_lock);
991 if (!list_empty(&bo_va->vm_status))
992 list_splice_init(&bo_va->valids, &bo_va->invalids);
993 spin_unlock(&vm->status_lock);
994
995 list_for_each_entry(mapping, &bo_va->invalids, list) {
Christian König8358dce2016-03-30 10:50:25 +0200996 r = amdgpu_vm_bo_split_mapping(adev, gtt_flags, pages_addr, vm,
997 mapping, flags, addr,
998 &bo_va->last_pt_update);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400999 if (r)
1000 return r;
1001 }
1002
Christian Königd6c10f62015-09-28 12:00:23 +02001003 if (trace_amdgpu_vm_bo_mapping_enabled()) {
1004 list_for_each_entry(mapping, &bo_va->valids, list)
1005 trace_amdgpu_vm_bo_mapping(mapping);
1006
1007 list_for_each_entry(mapping, &bo_va->invalids, list)
1008 trace_amdgpu_vm_bo_mapping(mapping);
1009 }
1010
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001011 spin_lock(&vm->status_lock);
monk.liu6d1d0ef2015-08-14 13:36:41 +08001012 list_splice_init(&bo_va->invalids, &bo_va->valids);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001013 list_del_init(&bo_va->vm_status);
Christian König7fc11952015-07-30 11:53:42 +02001014 if (!mem)
1015 list_add(&bo_va->vm_status, &vm->cleared);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001016 spin_unlock(&vm->status_lock);
1017
1018 return 0;
1019}
1020
1021/**
1022 * amdgpu_vm_clear_freed - clear freed BOs in the PT
1023 *
1024 * @adev: amdgpu_device pointer
1025 * @vm: requested vm
1026 *
1027 * Make sure all freed BOs are cleared in the PT.
1028 * Returns 0 for success.
1029 *
1030 * PTs have to be reserved and mutex must be locked!
1031 */
1032int amdgpu_vm_clear_freed(struct amdgpu_device *adev,
1033 struct amdgpu_vm *vm)
1034{
1035 struct amdgpu_bo_va_mapping *mapping;
1036 int r;
1037
1038 while (!list_empty(&vm->freed)) {
1039 mapping = list_first_entry(&vm->freed,
1040 struct amdgpu_bo_va_mapping, list);
1041 list_del(&mapping->list);
Christian Könige17841b2016-03-08 17:52:01 +01001042
Christian König8358dce2016-03-30 10:50:25 +02001043 r = amdgpu_vm_bo_split_mapping(adev, 0, NULL, vm, mapping,
Christian Königfa3ab3c2016-03-18 21:00:35 +01001044 0, 0, NULL);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001045 kfree(mapping);
1046 if (r)
1047 return r;
1048
1049 }
1050 return 0;
1051
1052}
1053
1054/**
1055 * amdgpu_vm_clear_invalids - clear invalidated BOs in the PT
1056 *
1057 * @adev: amdgpu_device pointer
1058 * @vm: requested vm
1059 *
1060 * Make sure all invalidated BOs are cleared in the PT.
1061 * Returns 0 for success.
1062 *
1063 * PTs have to be reserved and mutex must be locked!
1064 */
1065int amdgpu_vm_clear_invalids(struct amdgpu_device *adev,
monk.liucfe2c972015-05-26 15:01:54 +08001066 struct amdgpu_vm *vm, struct amdgpu_sync *sync)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001067{
monk.liucfe2c972015-05-26 15:01:54 +08001068 struct amdgpu_bo_va *bo_va = NULL;
Christian König91e1a522015-07-06 22:06:40 +02001069 int r = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001070
1071 spin_lock(&vm->status_lock);
1072 while (!list_empty(&vm->invalidated)) {
1073 bo_va = list_first_entry(&vm->invalidated,
1074 struct amdgpu_bo_va, vm_status);
1075 spin_unlock(&vm->status_lock);
Christian König32b41ac2016-03-08 18:03:27 +01001076
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001077 r = amdgpu_vm_bo_update(adev, bo_va, NULL);
1078 if (r)
1079 return r;
1080
1081 spin_lock(&vm->status_lock);
1082 }
1083 spin_unlock(&vm->status_lock);
1084
monk.liucfe2c972015-05-26 15:01:54 +08001085 if (bo_va)
Chunming Zhoubb1e38a42015-08-03 18:19:38 +08001086 r = amdgpu_sync_fence(adev, sync, bo_va->last_pt_update);
Christian König91e1a522015-07-06 22:06:40 +02001087
1088 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001089}
1090
1091/**
1092 * amdgpu_vm_bo_add - add a bo to a specific vm
1093 *
1094 * @adev: amdgpu_device pointer
1095 * @vm: requested vm
1096 * @bo: amdgpu buffer object
1097 *
Christian König8843dbb2016-01-26 12:17:11 +01001098 * Add @bo into the requested vm.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001099 * Add @bo to the list of bos associated with the vm
1100 * Returns newly added bo_va or NULL for failure
1101 *
1102 * Object has to be reserved!
1103 */
1104struct amdgpu_bo_va *amdgpu_vm_bo_add(struct amdgpu_device *adev,
1105 struct amdgpu_vm *vm,
1106 struct amdgpu_bo *bo)
1107{
1108 struct amdgpu_bo_va *bo_va;
1109
1110 bo_va = kzalloc(sizeof(struct amdgpu_bo_va), GFP_KERNEL);
1111 if (bo_va == NULL) {
1112 return NULL;
1113 }
1114 bo_va->vm = vm;
1115 bo_va->bo = bo;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001116 bo_va->ref_count = 1;
1117 INIT_LIST_HEAD(&bo_va->bo_list);
Christian König7fc11952015-07-30 11:53:42 +02001118 INIT_LIST_HEAD(&bo_va->valids);
1119 INIT_LIST_HEAD(&bo_va->invalids);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001120 INIT_LIST_HEAD(&bo_va->vm_status);
Christian König32b41ac2016-03-08 18:03:27 +01001121
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001122 list_add_tail(&bo_va->bo_list, &bo->va);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001123
1124 return bo_va;
1125}
1126
1127/**
1128 * amdgpu_vm_bo_map - map bo inside a vm
1129 *
1130 * @adev: amdgpu_device pointer
1131 * @bo_va: bo_va to store the address
1132 * @saddr: where to map the BO
1133 * @offset: requested offset in the BO
1134 * @flags: attributes of pages (read/write/valid/etc.)
1135 *
1136 * Add a mapping of the BO at the specefied addr into the VM.
1137 * Returns 0 for success, error for failure.
1138 *
Chunming Zhou49b02b12015-11-13 14:18:38 +08001139 * Object has to be reserved and unreserved outside!
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001140 */
1141int amdgpu_vm_bo_map(struct amdgpu_device *adev,
1142 struct amdgpu_bo_va *bo_va,
1143 uint64_t saddr, uint64_t offset,
1144 uint64_t size, uint32_t flags)
1145{
1146 struct amdgpu_bo_va_mapping *mapping;
1147 struct amdgpu_vm *vm = bo_va->vm;
1148 struct interval_tree_node *it;
1149 unsigned last_pfn, pt_idx;
1150 uint64_t eaddr;
1151 int r;
1152
Christian König0be52de2015-05-18 14:37:27 +02001153 /* validate the parameters */
1154 if (saddr & AMDGPU_GPU_PAGE_MASK || offset & AMDGPU_GPU_PAGE_MASK ||
Chunming Zhou49b02b12015-11-13 14:18:38 +08001155 size == 0 || size & AMDGPU_GPU_PAGE_MASK)
Christian König0be52de2015-05-18 14:37:27 +02001156 return -EINVAL;
Christian König0be52de2015-05-18 14:37:27 +02001157
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001158 /* make sure object fit at this offset */
Felix Kuehling005ae952015-11-23 17:43:48 -05001159 eaddr = saddr + size - 1;
Chunming Zhou49b02b12015-11-13 14:18:38 +08001160 if ((saddr >= eaddr) || (offset + size > amdgpu_bo_size(bo_va->bo)))
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001161 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001162
1163 last_pfn = eaddr / AMDGPU_GPU_PAGE_SIZE;
Felix Kuehling005ae952015-11-23 17:43:48 -05001164 if (last_pfn >= adev->vm_manager.max_pfn) {
1165 dev_err(adev->dev, "va above limit (0x%08X >= 0x%08X)\n",
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001166 last_pfn, adev->vm_manager.max_pfn);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001167 return -EINVAL;
1168 }
1169
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001170 saddr /= AMDGPU_GPU_PAGE_SIZE;
1171 eaddr /= AMDGPU_GPU_PAGE_SIZE;
1172
Felix Kuehling005ae952015-11-23 17:43:48 -05001173 it = interval_tree_iter_first(&vm->va, saddr, eaddr);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001174 if (it) {
1175 struct amdgpu_bo_va_mapping *tmp;
1176 tmp = container_of(it, struct amdgpu_bo_va_mapping, it);
1177 /* bo and tmp overlap, invalid addr */
1178 dev_err(adev->dev, "bo %p va 0x%010Lx-0x%010Lx conflict with "
1179 "0x%010lx-0x%010lx\n", bo_va->bo, saddr, eaddr,
1180 tmp->it.start, tmp->it.last + 1);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001181 r = -EINVAL;
Chunming Zhouf48b2652015-10-16 14:06:19 +08001182 goto error;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001183 }
1184
1185 mapping = kmalloc(sizeof(*mapping), GFP_KERNEL);
1186 if (!mapping) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001187 r = -ENOMEM;
Chunming Zhouf48b2652015-10-16 14:06:19 +08001188 goto error;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001189 }
1190
1191 INIT_LIST_HEAD(&mapping->list);
1192 mapping->it.start = saddr;
Felix Kuehling005ae952015-11-23 17:43:48 -05001193 mapping->it.last = eaddr;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001194 mapping->offset = offset;
1195 mapping->flags = flags;
1196
Christian König7fc11952015-07-30 11:53:42 +02001197 list_add(&mapping->list, &bo_va->invalids);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001198 interval_tree_insert(&mapping->it, &vm->va);
1199
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001200 /* Make sure the page tables are allocated */
1201 saddr >>= amdgpu_vm_block_size;
1202 eaddr >>= amdgpu_vm_block_size;
1203
1204 BUG_ON(eaddr >= amdgpu_vm_num_pdes(adev));
1205
1206 if (eaddr > vm->max_pde_used)
1207 vm->max_pde_used = eaddr;
1208
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001209 /* walk over the address space and allocate the page tables */
1210 for (pt_idx = saddr; pt_idx <= eaddr; ++pt_idx) {
Christian Königbf60efd2015-09-04 10:47:56 +02001211 struct reservation_object *resv = vm->page_directory->tbo.resv;
Christian Königee1782c2015-12-11 21:01:23 +01001212 struct amdgpu_bo_list_entry *entry;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001213 struct amdgpu_bo *pt;
1214
Christian Königee1782c2015-12-11 21:01:23 +01001215 entry = &vm->page_tables[pt_idx].entry;
1216 if (entry->robj)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001217 continue;
1218
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001219 r = amdgpu_bo_create(adev, AMDGPU_VM_PTE_COUNT * 8,
1220 AMDGPU_GPU_PAGE_SIZE, true,
Alex Deucher857d9132015-08-27 00:14:16 -04001221 AMDGPU_GEM_DOMAIN_VRAM,
1222 AMDGPU_GEM_CREATE_NO_CPU_ACCESS,
Christian Königbf60efd2015-09-04 10:47:56 +02001223 NULL, resv, &pt);
Chunming Zhou49b02b12015-11-13 14:18:38 +08001224 if (r)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001225 goto error_free;
Chunming Zhou49b02b12015-11-13 14:18:38 +08001226
Christian König82b9c552015-11-27 16:49:00 +01001227 /* Keep a reference to the page table to avoid freeing
1228 * them up in the wrong order.
1229 */
1230 pt->parent = amdgpu_bo_ref(vm->page_directory);
1231
Christian König2bd9ccf2016-02-01 12:53:58 +01001232 r = amdgpu_vm_clear_bo(adev, vm, pt);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001233 if (r) {
1234 amdgpu_bo_unref(&pt);
1235 goto error_free;
1236 }
1237
Christian Königee1782c2015-12-11 21:01:23 +01001238 entry->robj = pt;
Christian Königee1782c2015-12-11 21:01:23 +01001239 entry->priority = 0;
1240 entry->tv.bo = &entry->robj->tbo;
1241 entry->tv.shared = true;
Christian König2f568db2016-02-23 12:36:59 +01001242 entry->user_pages = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001243 vm->page_tables[pt_idx].addr = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001244 }
1245
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001246 return 0;
1247
1248error_free:
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001249 list_del(&mapping->list);
1250 interval_tree_remove(&mapping->it, &vm->va);
Christian König93e3e432015-06-09 16:58:33 +02001251 trace_amdgpu_vm_bo_unmap(bo_va, mapping);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001252 kfree(mapping);
1253
Chunming Zhouf48b2652015-10-16 14:06:19 +08001254error:
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001255 return r;
1256}
1257
1258/**
1259 * amdgpu_vm_bo_unmap - remove bo mapping from vm
1260 *
1261 * @adev: amdgpu_device pointer
1262 * @bo_va: bo_va to remove the address from
1263 * @saddr: where to the BO is mapped
1264 *
1265 * Remove a mapping of the BO at the specefied addr from the VM.
1266 * Returns 0 for success, error for failure.
1267 *
Chunming Zhou49b02b12015-11-13 14:18:38 +08001268 * Object has to be reserved and unreserved outside!
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001269 */
1270int amdgpu_vm_bo_unmap(struct amdgpu_device *adev,
1271 struct amdgpu_bo_va *bo_va,
1272 uint64_t saddr)
1273{
1274 struct amdgpu_bo_va_mapping *mapping;
1275 struct amdgpu_vm *vm = bo_va->vm;
Christian König7fc11952015-07-30 11:53:42 +02001276 bool valid = true;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001277
Christian König6c7fc502015-06-05 20:56:17 +02001278 saddr /= AMDGPU_GPU_PAGE_SIZE;
Christian König32b41ac2016-03-08 18:03:27 +01001279
Christian König7fc11952015-07-30 11:53:42 +02001280 list_for_each_entry(mapping, &bo_va->valids, list) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001281 if (mapping->it.start == saddr)
1282 break;
1283 }
1284
Christian König7fc11952015-07-30 11:53:42 +02001285 if (&mapping->list == &bo_va->valids) {
1286 valid = false;
1287
1288 list_for_each_entry(mapping, &bo_va->invalids, list) {
1289 if (mapping->it.start == saddr)
1290 break;
1291 }
1292
Christian König32b41ac2016-03-08 18:03:27 +01001293 if (&mapping->list == &bo_va->invalids)
Christian König7fc11952015-07-30 11:53:42 +02001294 return -ENOENT;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001295 }
Christian König32b41ac2016-03-08 18:03:27 +01001296
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001297 list_del(&mapping->list);
1298 interval_tree_remove(&mapping->it, &vm->va);
Christian König93e3e432015-06-09 16:58:33 +02001299 trace_amdgpu_vm_bo_unmap(bo_va, mapping);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001300
Christian Könige17841b2016-03-08 17:52:01 +01001301 if (valid)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001302 list_add(&mapping->list, &vm->freed);
Christian Könige17841b2016-03-08 17:52:01 +01001303 else
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001304 kfree(mapping);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001305
1306 return 0;
1307}
1308
1309/**
1310 * amdgpu_vm_bo_rmv - remove a bo to a specific vm
1311 *
1312 * @adev: amdgpu_device pointer
1313 * @bo_va: requested bo_va
1314 *
Christian König8843dbb2016-01-26 12:17:11 +01001315 * Remove @bo_va->bo from the requested vm.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001316 *
1317 * Object have to be reserved!
1318 */
1319void amdgpu_vm_bo_rmv(struct amdgpu_device *adev,
1320 struct amdgpu_bo_va *bo_va)
1321{
1322 struct amdgpu_bo_va_mapping *mapping, *next;
1323 struct amdgpu_vm *vm = bo_va->vm;
1324
1325 list_del(&bo_va->bo_list);
1326
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001327 spin_lock(&vm->status_lock);
1328 list_del(&bo_va->vm_status);
1329 spin_unlock(&vm->status_lock);
1330
Christian König7fc11952015-07-30 11:53:42 +02001331 list_for_each_entry_safe(mapping, next, &bo_va->valids, list) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001332 list_del(&mapping->list);
1333 interval_tree_remove(&mapping->it, &vm->va);
Christian König93e3e432015-06-09 16:58:33 +02001334 trace_amdgpu_vm_bo_unmap(bo_va, mapping);
Christian König7fc11952015-07-30 11:53:42 +02001335 list_add(&mapping->list, &vm->freed);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001336 }
Christian König7fc11952015-07-30 11:53:42 +02001337 list_for_each_entry_safe(mapping, next, &bo_va->invalids, list) {
1338 list_del(&mapping->list);
1339 interval_tree_remove(&mapping->it, &vm->va);
1340 kfree(mapping);
1341 }
Christian König32b41ac2016-03-08 18:03:27 +01001342
Chunming Zhoubb1e38a42015-08-03 18:19:38 +08001343 fence_put(bo_va->last_pt_update);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001344 kfree(bo_va);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001345}
1346
1347/**
1348 * amdgpu_vm_bo_invalidate - mark the bo as invalid
1349 *
1350 * @adev: amdgpu_device pointer
1351 * @vm: requested vm
1352 * @bo: amdgpu buffer object
1353 *
Christian König8843dbb2016-01-26 12:17:11 +01001354 * Mark @bo as invalid.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001355 */
1356void amdgpu_vm_bo_invalidate(struct amdgpu_device *adev,
1357 struct amdgpu_bo *bo)
1358{
1359 struct amdgpu_bo_va *bo_va;
1360
1361 list_for_each_entry(bo_va, &bo->va, bo_list) {
Christian König7fc11952015-07-30 11:53:42 +02001362 spin_lock(&bo_va->vm->status_lock);
1363 if (list_empty(&bo_va->vm_status))
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001364 list_add(&bo_va->vm_status, &bo_va->vm->invalidated);
Christian König7fc11952015-07-30 11:53:42 +02001365 spin_unlock(&bo_va->vm->status_lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001366 }
1367}
1368
1369/**
1370 * amdgpu_vm_init - initialize a vm instance
1371 *
1372 * @adev: amdgpu_device pointer
1373 * @vm: requested vm
1374 *
Christian König8843dbb2016-01-26 12:17:11 +01001375 * Init @vm fields.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001376 */
1377int amdgpu_vm_init(struct amdgpu_device *adev, struct amdgpu_vm *vm)
1378{
1379 const unsigned align = min(AMDGPU_VM_PTB_ALIGN_SIZE,
1380 AMDGPU_VM_PTE_COUNT * 8);
Michel Dänzer9571e1d2016-01-19 17:59:46 +09001381 unsigned pd_size, pd_entries;
Christian König2d55e452016-02-08 17:37:38 +01001382 unsigned ring_instance;
1383 struct amdgpu_ring *ring;
Christian König2bd9ccf2016-02-01 12:53:58 +01001384 struct amd_sched_rq *rq;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001385 int i, r;
1386
Christian Königbcb1ba32016-03-08 15:40:11 +01001387 for (i = 0; i < AMDGPU_MAX_RINGS; ++i)
1388 vm->ids[i] = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001389 vm->va = RB_ROOT;
Chunming Zhou031e2982016-04-25 10:19:13 +08001390 vm->client_id = atomic64_inc_return(&adev->vm_manager.client_counter);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001391 spin_lock_init(&vm->status_lock);
1392 INIT_LIST_HEAD(&vm->invalidated);
Christian König7fc11952015-07-30 11:53:42 +02001393 INIT_LIST_HEAD(&vm->cleared);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001394 INIT_LIST_HEAD(&vm->freed);
Christian König20250212016-03-08 17:58:35 +01001395
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001396 pd_size = amdgpu_vm_directory_size(adev);
1397 pd_entries = amdgpu_vm_num_pdes(adev);
1398
1399 /* allocate page table array */
Michel Dänzer9571e1d2016-01-19 17:59:46 +09001400 vm->page_tables = drm_calloc_large(pd_entries, sizeof(struct amdgpu_vm_pt));
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001401 if (vm->page_tables == NULL) {
1402 DRM_ERROR("Cannot allocate memory for page table array\n");
1403 return -ENOMEM;
1404 }
1405
Christian König2bd9ccf2016-02-01 12:53:58 +01001406 /* create scheduler entity for page table updates */
Christian König2d55e452016-02-08 17:37:38 +01001407
1408 ring_instance = atomic_inc_return(&adev->vm_manager.vm_pte_next_ring);
1409 ring_instance %= adev->vm_manager.vm_pte_num_rings;
1410 ring = adev->vm_manager.vm_pte_rings[ring_instance];
Christian König2bd9ccf2016-02-01 12:53:58 +01001411 rq = &ring->sched.sched_rq[AMD_SCHED_PRIORITY_KERNEL];
1412 r = amd_sched_entity_init(&ring->sched, &vm->entity,
1413 rq, amdgpu_sched_jobs);
1414 if (r)
1415 return r;
1416
Bas Nieuwenhuizen05906de2015-08-14 20:08:40 +02001417 vm->page_directory_fence = NULL;
1418
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001419 r = amdgpu_bo_create(adev, pd_size, align, true,
Alex Deucher857d9132015-08-27 00:14:16 -04001420 AMDGPU_GEM_DOMAIN_VRAM,
1421 AMDGPU_GEM_CREATE_NO_CPU_ACCESS,
Christian König72d76682015-09-03 17:34:59 +02001422 NULL, NULL, &vm->page_directory);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001423 if (r)
Christian König2bd9ccf2016-02-01 12:53:58 +01001424 goto error_free_sched_entity;
1425
Chunming Zhouef9f0a82015-11-13 13:43:22 +08001426 r = amdgpu_bo_reserve(vm->page_directory, false);
Christian König2bd9ccf2016-02-01 12:53:58 +01001427 if (r)
1428 goto error_free_page_directory;
1429
1430 r = amdgpu_vm_clear_bo(adev, vm, vm->page_directory);
Chunming Zhouef9f0a82015-11-13 13:43:22 +08001431 amdgpu_bo_unreserve(vm->page_directory);
Christian König2bd9ccf2016-02-01 12:53:58 +01001432 if (r)
1433 goto error_free_page_directory;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001434
1435 return 0;
Christian König2bd9ccf2016-02-01 12:53:58 +01001436
1437error_free_page_directory:
1438 amdgpu_bo_unref(&vm->page_directory);
1439 vm->page_directory = NULL;
1440
1441error_free_sched_entity:
1442 amd_sched_entity_fini(&ring->sched, &vm->entity);
1443
1444 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001445}
1446
1447/**
1448 * amdgpu_vm_fini - tear down a vm instance
1449 *
1450 * @adev: amdgpu_device pointer
1451 * @vm: requested vm
1452 *
Christian König8843dbb2016-01-26 12:17:11 +01001453 * Tear down @vm.
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001454 * Unbind the VM and remove all bos from the vm bo list
1455 */
1456void amdgpu_vm_fini(struct amdgpu_device *adev, struct amdgpu_vm *vm)
1457{
1458 struct amdgpu_bo_va_mapping *mapping, *tmp;
Chunming Zhou444066b2016-04-25 10:28:24 +08001459 struct amdgpu_vm_id *id, *id_tmp;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001460 int i;
1461
Christian König2d55e452016-02-08 17:37:38 +01001462 amd_sched_entity_fini(vm->entity.sched, &vm->entity);
Christian König2bd9ccf2016-02-01 12:53:58 +01001463
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001464 if (!RB_EMPTY_ROOT(&vm->va)) {
1465 dev_err(adev->dev, "still active bo inside vm\n");
1466 }
1467 rbtree_postorder_for_each_entry_safe(mapping, tmp, &vm->va, it.rb) {
1468 list_del(&mapping->list);
1469 interval_tree_remove(&mapping->it, &vm->va);
1470 kfree(mapping);
1471 }
1472 list_for_each_entry_safe(mapping, tmp, &vm->freed, list) {
1473 list_del(&mapping->list);
1474 kfree(mapping);
1475 }
1476
1477 for (i = 0; i < amdgpu_vm_num_pdes(adev); i++)
Christian Königee1782c2015-12-11 21:01:23 +01001478 amdgpu_bo_unref(&vm->page_tables[i].entry.robj);
Michel Dänzer9571e1d2016-01-19 17:59:46 +09001479 drm_free_large(vm->page_tables);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001480
1481 amdgpu_bo_unref(&vm->page_directory);
Bas Nieuwenhuizen05906de2015-08-14 20:08:40 +02001482 fence_put(vm->page_directory_fence);
Christian König20250212016-03-08 17:58:35 +01001483
Chunming Zhou444066b2016-04-25 10:28:24 +08001484 mutex_lock(&adev->vm_manager.lock);
1485 list_for_each_entry_safe(id, id_tmp, &adev->vm_manager.ids_lru,
1486 list) {
Christian Königbcb1ba32016-03-08 15:40:11 +01001487 if (!id)
1488 continue;
Chunming Zhou1f207f82016-04-25 10:23:34 +08001489 if (atomic_long_read(&id->owner) == vm->client_id) {
Chunming Zhou444066b2016-04-25 10:28:24 +08001490 atomic_long_set(&id->owner, 0);
1491 id->pd_gpu_addr = 0;
1492 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001493 }
Chunming Zhou444066b2016-04-25 10:28:24 +08001494 mutex_unlock(&adev->vm_manager.lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001495}
Christian Königea89f8c2015-11-15 20:52:06 +01001496
1497/**
Christian Königa9a78b32016-01-21 10:19:11 +01001498 * amdgpu_vm_manager_init - init the VM manager
1499 *
1500 * @adev: amdgpu_device pointer
1501 *
1502 * Initialize the VM manager structures
1503 */
1504void amdgpu_vm_manager_init(struct amdgpu_device *adev)
1505{
1506 unsigned i;
1507
1508 INIT_LIST_HEAD(&adev->vm_manager.ids_lru);
1509
1510 /* skip over VMID 0, since it is the system VM */
Christian König971fe9a92016-03-01 15:09:25 +01001511 for (i = 1; i < adev->vm_manager.num_ids; ++i) {
1512 amdgpu_vm_reset_id(adev, i);
Christian König832a9022016-02-15 12:33:02 +01001513 amdgpu_sync_create(&adev->vm_manager.ids[i].active);
Christian Königa9a78b32016-01-21 10:19:11 +01001514 list_add_tail(&adev->vm_manager.ids[i].list,
1515 &adev->vm_manager.ids_lru);
Christian König971fe9a92016-03-01 15:09:25 +01001516 }
Christian König2d55e452016-02-08 17:37:38 +01001517
1518 atomic_set(&adev->vm_manager.vm_pte_next_ring, 0);
Chunming Zhou031e2982016-04-25 10:19:13 +08001519 atomic64_set(&adev->vm_manager.client_counter, AMDGPU_CLIENT_ID_RESERVED);
Christian Königa9a78b32016-01-21 10:19:11 +01001520}
1521
1522/**
Christian Königea89f8c2015-11-15 20:52:06 +01001523 * amdgpu_vm_manager_fini - cleanup VM manager
1524 *
1525 * @adev: amdgpu_device pointer
1526 *
1527 * Cleanup the VM manager and free resources.
1528 */
1529void amdgpu_vm_manager_fini(struct amdgpu_device *adev)
1530{
1531 unsigned i;
1532
Christian Königbcb1ba32016-03-08 15:40:11 +01001533 for (i = 0; i < AMDGPU_NUM_VM; ++i) {
1534 struct amdgpu_vm_id *id = &adev->vm_manager.ids[i];
1535
Christian König832a9022016-02-15 12:33:02 +01001536 fence_put(adev->vm_manager.ids[i].first);
1537 amdgpu_sync_free(&adev->vm_manager.ids[i].active);
Christian Königbcb1ba32016-03-08 15:40:11 +01001538 fence_put(id->flushed_updates);
1539 }
Christian Königea89f8c2015-11-15 20:52:06 +01001540}